From 75cbf0d457bdc2b3096cb9d860e7058d5e178415 Mon Sep 17 00:00:00 2001 From: Stephen S Date: Tue, 12 Jan 2016 22:15:15 -0500 Subject: [PATCH 01/20] Chapter 1 -- Using Lists (Part 1) --- test.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 test.py diff --git a/test.py b/test.py new file mode 100644 index 0000000..0d6ce95 --- /dev/null +++ b/test.py @@ -0,0 +1,18 @@ +bob = ['Bob Smith', 42, 30000, 'software'] +sue = ['Sue Jones', 45, 40000, 'hardware'] + +# basic statements +print(bob[0]) +print(sue[2]) +print(bob[0].split()[-1]) + +people = [bob, sue] +for person in people: + print(person[0].split()[-1]) + person[2] *= 1.20 + +pays = [person[2] for person in people] +print(pays) + +pays = map((lambda x: x[2]), people) +print(list(pays)) \ No newline at end of file From ec6c3dab1b2621eae08b422791b685f464f6967c Mon Sep 17 00:00:00 2001 From: sys Date: Sun, 10 Mar 2019 22:28:49 +0000 Subject: [PATCH 02/20] Remove HardPython project --- HardPathon/ex1.py | 30 ------------------------------ HardPathon/ex11.py | 9 --------- HardPathon/ex13.py | 27 --------------------------- test.py | 18 ------------------ 4 files changed, 84 deletions(-) delete mode 100644 HardPathon/ex1.py delete mode 100644 HardPathon/ex11.py delete mode 100644 HardPathon/ex13.py delete mode 100644 test.py diff --git a/HardPathon/ex1.py b/HardPathon/ex1.py deleted file mode 100644 index 08bf3a4..0000000 --- a/HardPathon/ex1.py +++ /dev/null @@ -1,30 +0,0 @@ -#Basic Exceises -print("Hello World!") -#print("I'd much rather you 'not'.") -print('I "said" do not touch this.') - -print(3+2) - -cars = "100" -print("There are", cars, "cars available.") - -my_name = "Zed A. Shaw" -my_age = 35.0 # not a lie - -print("Let's talk about %r. He's %d years old." % (my_name, my_age)) - -x = "There are %d types of people." % 10 -print(x) -print("I said: %r." % x) - -print("."*10) - -formatter = "%r %r %r %r" -print(formatter % (1, 2, 3, 4)) -print(formatter % ("one", "two", "three", "four")) -print(formatter % (formatter, formatter, formatter, formatter % (1, 2, 3, formatter))) - -months = "Jan\nFeb\nMar\nApr\nMay\nJun\nAug" -print("Here are the months: ", months) - -print('''There's something going on here.''') \ No newline at end of file diff --git a/HardPathon/ex11.py b/HardPathon/ex11.py deleted file mode 100644 index 7437c18..0000000 --- a/HardPathon/ex11.py +++ /dev/null @@ -1,9 +0,0 @@ -#print("How old are you?") -age = input("How old are you?") -#print("How tall are you?") -height = input("How tall are you?") -#print("How much do you weight?") -weight = input("How much do you weight?") - -print("So, you're %s old, %s tall and %s heavy." % (age, height, weight)) - diff --git a/HardPathon/ex13.py b/HardPathon/ex13.py deleted file mode 100644 index 92eb3cd..0000000 --- a/HardPathon/ex13.py +++ /dev/null @@ -1,27 +0,0 @@ -from sys import argv - -script, user_name = argv - -#print("The script is called:", script) -#print("Your first variable is:", first) -#print("Your second variable is:", second) -#print("Your third variable is:", third) - -prompt = "> " - -print("Hi %s, I'm the %s script." % (user_name, script)) -print("I'd like to ask you a few questions.") -print("Do you like me %s?" % user_name) -likes = input(prompt) - -print("Where do you live %s?" % user_name) -lives = input(prompt) - -print("What kind of computer do you have?") -computer = input(prompt) - -print(""" -Alright, so you said %r about liking me. -You live in %r. Not sure where that is. -And you have a %r computer. Nice. -""" % (likes, lives, computer)) \ No newline at end of file diff --git a/test.py b/test.py deleted file mode 100644 index 0d6ce95..0000000 --- a/test.py +++ /dev/null @@ -1,18 +0,0 @@ -bob = ['Bob Smith', 42, 30000, 'software'] -sue = ['Sue Jones', 45, 40000, 'hardware'] - -# basic statements -print(bob[0]) -print(sue[2]) -print(bob[0].split()[-1]) - -people = [bob, sue] -for person in people: - print(person[0].split()[-1]) - person[2] *= 1.20 - -pays = [person[2] for person in people] -print(pays) - -pays = map((lambda x: x[2]), people) -print(list(pays)) \ No newline at end of file From 1c8b40baeec3fa817c8f3cccf78640c110aba32a Mon Sep 17 00:00:00 2001 From: sys Date: Sun, 21 Apr 2019 21:19:52 +0000 Subject: [PATCH 03/20] Ignor Virtual Environment folder --- .gitignore | 2 ++ GeekyProjects/ParsingMusicList/data.xml | 35 +++++++++++++++++++++++++ 2 files changed, 37 insertions(+) create mode 100644 GeekyProjects/ParsingMusicList/data.xml diff --git a/.gitignore b/.gitignore index 9f11b75..3b5fac5 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,3 @@ .idea/ + +my_env/ diff --git a/GeekyProjects/ParsingMusicList/data.xml b/GeekyProjects/ParsingMusicList/data.xml new file mode 100644 index 0000000..4b7b964 --- /dev/null +++ b/GeekyProjects/ParsingMusicList/data.xml @@ -0,0 +1,35 @@ + + + + +Major Version1 + Minor Version1 + --snip-- +Tracks + + 2438 + + Track ID2438 + NameYesterday + ArtistThe Beatles + ComposerLennon [John], McCartney [Paul] + AlbumHelp! + + --snip-- + +Playlists + + + NameNow + Playlist ID21348 + --snip-- + + + Track ID6382 + + --snip-- + + + + + \ No newline at end of file From 92866d24d6754882c0ffabdb6b0799723d4b5977 Mon Sep 17 00:00:00 2001 From: syone Date: Sat, 11 May 2019 03:02:16 +0000 Subject: [PATCH 04/20] add a new folder --- .gitignore | 125 ++++++++++++++++++++++++++++++++++++++++++++- leetcode/readme.md | 0 2 files changed, 124 insertions(+), 1 deletion(-) create mode 100644 leetcode/readme.md diff --git a/.gitignore b/.gitignore index 9f11b75..c2b2043 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,124 @@ -.idea/ +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class + +# C extensions +*.so + +# Distribution / packaging +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +pip-wheel-metadata/ +share/python-wheels/ +*.egg-info/ +.installed.cfg +*.egg +MANIFEST + +# PyInstaller +# Usually these files are written by a python script from a template +# before PyInstaller builds the exe, so as to inject date/other infos into it. +*.manifest +*.spec + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +htmlcov/ +.tox/ +.nox/ +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*.cover +.hypothesis/ +.pytest_cache/ + +# Translations +*.mo +*.pot + +# Django stuff: +*.log +local_settings.py +db.sqlite3 + +# Flask stuff: +instance/ +.webassets-cache + +# Scrapy stuff: +.scrapy + +# Sphinx documentation +docs/_build/ + +# PyBuilder +target/ + +# Jupyter Notebook +.ipynb_checkpoints + +# IPython +profile_default/ +ipython_config.py + +# pyenv +.python-version + +# pipenv +# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. +# However, in case of collaboration, if having platform-specific dependencies or dependencies +# having no cross-platform support, pipenv may install dependencies that don't work, or not +# install all needed dependencies. +#Pipfile.lock + +# celery beat schedule file +celerybeat-schedule + +# SageMath parsed files +*.sage.py + +# Environments +.env +.venv +**/my_env/ +env/ +venv/ +ENV/ +env.bak/ +venv.bak/ + +# Spyder project settings +.spyderproject +.spyproject + +# Rope project settings +.ropeproject + +# mkdocs documentation +/site + +# mypy +.mypy_cache/ +.dmypy.json +dmypy.json + +# Pyre type checker +.pyre/ diff --git a/leetcode/readme.md b/leetcode/readme.md new file mode 100644 index 0000000..e69de29 From 937650885eda4c9ba4af787f6ad651ee3e92fab3 Mon Sep 17 00:00:00 2001 From: syone Date: Mon, 13 May 2019 23:28:48 -0400 Subject: [PATCH 05/20] Add sidekickname project --- .gitignore | 3 + .../SidekickNameGenerator/pig_latin.py | 38 ++ .../poor_man_bar_chart.py | 23 + .../SidekickNameGenerator/pseudonyms.py | 30 + .../SidekickNameGenerator/pseudonyms.pylintrc | 570 ++++++++++++++++++ GeekyProjects/SidekickNameGenerator/readme.md | 89 +++ fundation/chainmap.py | 11 + 7 files changed, 764 insertions(+) create mode 100644 GeekyProjects/SidekickNameGenerator/pig_latin.py create mode 100644 GeekyProjects/SidekickNameGenerator/poor_man_bar_chart.py create mode 100644 GeekyProjects/SidekickNameGenerator/pseudonyms.py create mode 100644 GeekyProjects/SidekickNameGenerator/pseudonyms.pylintrc create mode 100644 GeekyProjects/SidekickNameGenerator/readme.md create mode 100644 fundation/chainmap.py diff --git a/.gitignore b/.gitignore index ded73da..4179e0d 100644 --- a/.gitignore +++ b/.gitignore @@ -123,3 +123,6 @@ dmypy.json # Pyre type checker .pyre/ .idea/ + +# vs code setting +**/.vscode/ diff --git a/GeekyProjects/SidekickNameGenerator/pig_latin.py b/GeekyProjects/SidekickNameGenerator/pig_latin.py new file mode 100644 index 0000000..813fc52 --- /dev/null +++ b/GeekyProjects/SidekickNameGenerator/pig_latin.py @@ -0,0 +1,38 @@ +""" Pig Latin Practice Project """ + +def main(): + """ + If start with a vowel character, then add "way" at the end of word; + If start with a consonant, move the consonant to the end of word, and add "ay" at the end of word as well. + """ + + vowel_chars = ['a','e','i','o','u'] + + while True: + words = input("Please input a word and press enter to finish the input:\n ") + + wordList = words.split(' ') + + for i in range(len(wordList)): + if wordList[i][0:1].lower() in vowel_chars: + wordList[i] = wordList[i] + 'way' + elif not wordList[i]: + wordList[i] = wordList[0] + else: + wordList[i] = ''.join(wordList[i][1:]) + ''.join(wordList[i][0:1]) + 'ay' + + newWords = ' '.join(wordList) + + print("The Pig Latin of [{}] is [{}]".format(words,newWords)) + + print("\n\n") + + exit_key = input("Press any key to continue unless type n ...\n") + if exit_key.lower() == 'n': + break + + + input("Press any key to exit.") + +if __name__ == "__main__": + main() \ No newline at end of file diff --git a/GeekyProjects/SidekickNameGenerator/poor_man_bar_chart.py b/GeekyProjects/SidekickNameGenerator/poor_man_bar_chart.py new file mode 100644 index 0000000..8109574 --- /dev/null +++ b/GeekyProjects/SidekickNameGenerator/poor_man_bar_chart.py @@ -0,0 +1,23 @@ +import pprint +from collections import defaultdict + +def main(): + result = defaultdict(list) + #chars = ['a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','s','t','u','v','w','x','y','z'] + # for c in chars: + # result[c]=0 + + sentence = input("Please input a sentence: \n") + + for c in sentence: + c = c.lower() + if c.isalpha(): + result[c].append(c) + + print("Poor man's bar chart: \n") + + pprint.pprint(result) + +if __name__ == '__main__': + main() + diff --git a/GeekyProjects/SidekickNameGenerator/pseudonyms.py b/GeekyProjects/SidekickNameGenerator/pseudonyms.py new file mode 100644 index 0000000..97c22ca --- /dev/null +++ b/GeekyProjects/SidekickNameGenerator/pseudonyms.py @@ -0,0 +1,30 @@ +"""Generate funny names by randomly combining names from 2 separate lists.""" +import sys +import random + +def main(): + """Choose names at random from 2 tuples of names and print to screen.""" + + print("Welcome to the Psych 'Sidekick Name Picker.'\n") + print("A name just like Sean would pick for Gus:\n\n") + + firstnames = ('Baby Oil', 'Bad News', 'Big Burps', "Bill Beenie_Weenie", "Bob Stinkbug", 'Bowel Noises', 'Boxelder', "BudLite", 'Butterbean', 'Buttermilk', 'Buttocks', 'Chad', 'Chesterfield', 'Chewy', 'Chigger", "Cinnabuns', 'Cleet', 'Cornbread', 'Crab Meat', 'Crapps', 'Dark Skies', 'Dennis Clawhammer', 'Dicman', 'Elphonso', 'Fancypants', 'Figgs', 'Foncy', 'Gootsy', 'Greasy Jim', 'Huckleberry') + + surnames = ('Appleyard', 'Bigmeat', 'Bloominshine', 'Boogerbottom', 'Breedslovetrout', 'Butterbaugh', 'Clovenhoof', 'Clutterbuck', 'Cocktoasten', 'Endicott', 'Fewhairs', 'Gooberdapple', 'Goodensmith', 'Goodpasture', 'Guster', 'Henderson', 'Hooperbag', 'Hoosenater', 'Hootkins', 'Jefferson', 'Jenkins', 'JingleySchmidt', 'Johnson', 'Kingfish', 'Listenbee', "M'Bembo", 'McFadden', 'Moonshine', 'Nettles', 'Noseworthy', 'Olivetti', 'Outerbridge', 'Overpeck', 'Overturf', 'Oxhandler', 'Pealike', 'Pennywhistle', 'Peterson', 'Pieplow', 'Pinkerton', 'Porkins', 'Putney', 'Quakenbush', 'Rainwater', 'Rosenthal', 'Rubbins', 'Sackrider', 'Snuggleshine', 'Splern', 'Stevens', 'Stroganoff', 'SugarGold', 'Swackhamer', 'Tippins', 'Turnipseed', 'Vinaigrette', 'Walkingstick', 'Wallbanger', 'Weewax', 'Weiners', 'Whipkey', 'Wigglesworth', 'Wimplesnatch', 'Winterkorn', 'Woolysocks') + + while True: + first_name = random.choice(firstnames) + surname = random.choice(surnames) + + print("\n\n") + print("{} {}".format(first_name, surname), file=sys.stderr) + print("\n\n") + + try_again = input("\n\nTry again? (Presss enter else n to quit)\n") + if try_again.lower() == "n": + break + + input("Press enter to exit") + +if __name__ == '__main__': + main() diff --git a/GeekyProjects/SidekickNameGenerator/pseudonyms.pylintrc b/GeekyProjects/SidekickNameGenerator/pseudonyms.pylintrc new file mode 100644 index 0000000..82e99e5 --- /dev/null +++ b/GeekyProjects/SidekickNameGenerator/pseudonyms.pylintrc @@ -0,0 +1,570 @@ +[MASTER] + +# A comma-separated list of package or module names from where C extensions may +# be loaded. Extensions are loading into the active Python interpreter and may +# run arbitrary code. +extension-pkg-whitelist= + +# Add files or directories to the blacklist. They should be base names, not +# paths. +ignore=CVS + +# Add files or directories matching the regex patterns to the blacklist. The +# regex matches against base names, not paths. +ignore-patterns= + +# Python code to execute, usually for sys.path manipulation such as +# pygtk.require(). +#init-hook= + +# Use multiple processes to speed up Pylint. Specifying 0 will auto-detect the +# number of processors available to use. +jobs=1 + +# Control the amount of potential inferred values when inferring a single +# object. This can help the performance when dealing with large functions or +# complex, nested conditions. +limit-inference-results=100 + +# List of plugins (as comma separated values of python modules names) to load, +# usually to register additional checkers. +load-plugins= + +# Pickle collected data for later comparisons. +persistent=yes + +# Specify a configuration file. +#rcfile= + +# When enabled, pylint would attempt to guess common misconfiguration and emit +# user-friendly hints instead of false-positive error messages. +suggestion-mode=yes + +# Allow loading of arbitrary C extensions. Extensions are imported into the +# active Python interpreter and may run arbitrary code. +unsafe-load-any-extension=no + + +[MESSAGES CONTROL] + +# Only show warnings with the listed confidence levels. Leave empty to show +# all. Valid levels: HIGH, INFERENCE, INFERENCE_FAILURE, UNDEFINED. +confidence= + +# Disable the message, report, category or checker with the given id(s). You +# can either give multiple identifiers separated by comma (,) or put this +# option multiple times (only on the command line, not in the configuration +# file where it should appear only once). You can also use "--disable=all" to +# disable everything first and then reenable specific checks. For example, if +# you want to run only the similarities checker, you can use "--disable=all +# --enable=similarities". If you want to run only the classes checker, but have +# no Warning level messages displayed, use "--disable=all --enable=classes +# --disable=W". +disable=print-statement, + parameter-unpacking, + unpacking-in-except, + old-raise-syntax, + backtick, + long-suffix, + old-ne-operator, + old-octal-literal, + import-star-module-level, + non-ascii-bytes-literal, + raw-checker-failed, + bad-inline-option, + locally-disabled, + file-ignored, + suppressed-message, + useless-suppression, + deprecated-pragma, + use-symbolic-message-instead, + apply-builtin, + basestring-builtin, + buffer-builtin, + cmp-builtin, + coerce-builtin, + execfile-builtin, + file-builtin, + long-builtin, + raw_input-builtin, + reduce-builtin, + standarderror-builtin, + unicode-builtin, + xrange-builtin, + coerce-method, + delslice-method, + getslice-method, + setslice-method, + no-absolute-import, + old-division, + dict-iter-method, + dict-view-method, + next-method-called, + metaclass-assignment, + indexing-exception, + raising-string, + reload-builtin, + oct-method, + hex-method, + nonzero-method, + cmp-method, + input-builtin, + round-builtin, + intern-builtin, + unichr-builtin, + map-builtin-not-iterating, + zip-builtin-not-iterating, + range-builtin-not-iterating, + filter-builtin-not-iterating, + using-cmp-argument, + eq-without-hash, + div-method, + idiv-method, + rdiv-method, + exception-message-attribute, + invalid-str-codec, + sys-max-int, + bad-python3-import, + deprecated-string-function, + deprecated-str-translate-call, + deprecated-itertools-function, + deprecated-types-field, + next-method-defined, + dict-items-not-iterating, + dict-keys-not-iterating, + dict-values-not-iterating, + deprecated-operator-function, + deprecated-urllib-function, + xreadlines-attribute, + deprecated-sys-function, + exception-escape, + comprehension-escape + +# Enable the message, report, category or checker with the given id(s). You can +# either give multiple identifier separated by comma (,) or put this option +# multiple time (only on the command line, not in the configuration file where +# it should appear only once). See also the "--disable" option for examples. +enable=c-extension-no-member + + +[REPORTS] + +# Python expression which should return a note less than 10 (10 is the highest +# note). You have access to the variables errors warning, statement which +# respectively contain the number of errors / warnings messages and the total +# number of statements analyzed. This is used by the global evaluation report +# (RP0004). +evaluation=10.0 - ((float(5 * error + warning + refactor + convention) / statement) * 10) + +# Template used to display messages. This is a python new-style format string +# used to format the message information. See doc for all details. +#msg-template= + +# Set the output format. Available formats are text, parseable, colorized, json +# and msvs (visual studio). You can also give a reporter class, e.g. +# mypackage.mymodule.MyReporterClass. +output-format=text + +# Tells whether to display a full report or only the messages. +reports=no + +# Activate the evaluation score. +score=yes + + +[REFACTORING] + +# Maximum number of nested blocks for function / method body +max-nested-blocks=5 + +# Complete name of functions that never returns. When checking for +# inconsistent-return-statements if a never returning function is called then +# it will be considered as an explicit return statement and no message will be +# printed. +never-returning-functions=sys.exit + + +[BASIC] + +# Naming style matching correct argument names. +argument-naming-style=snake_case + +# Regular expression matching correct argument names. Overrides argument- +# naming-style. +#argument-rgx= + +# Naming style matching correct attribute names. +attr-naming-style=snake_case + +# Regular expression matching correct attribute names. Overrides attr-naming- +# style. +#attr-rgx= + +# Bad variable names which should always be refused, separated by a comma. +bad-names=foo, + bar, + baz, + toto, + tutu, + tata + +# Naming style matching correct class attribute names. +class-attribute-naming-style=any + +# Regular expression matching correct class attribute names. Overrides class- +# attribute-naming-style. +#class-attribute-rgx= + +# Naming style matching correct class names. +class-naming-style=PascalCase + +# Regular expression matching correct class names. Overrides class-naming- +# style. +#class-rgx= + +# Naming style matching correct constant names. +const-naming-style=UPPER_CASE + +# Regular expression matching correct constant names. Overrides const-naming- +# style. +#const-rgx= + +# Minimum line length for functions/classes that require docstrings, shorter +# ones are exempt. +docstring-min-length=-1 + +# Naming style matching correct function names. +function-naming-style=snake_case + +# Regular expression matching correct function names. Overrides function- +# naming-style. +#function-rgx= + +# Good variable names which should always be accepted, separated by a comma. +good-names=i, + j, + k, + ex, + Run, + _ + +# Include a hint for the correct naming format with invalid-name. +include-naming-hint=no + +# Naming style matching correct inline iteration names. +inlinevar-naming-style=any + +# Regular expression matching correct inline iteration names. Overrides +# inlinevar-naming-style. +#inlinevar-rgx= + +# Naming style matching correct method names. +method-naming-style=snake_case + +# Regular expression matching correct method names. Overrides method-naming- +# style. +#method-rgx= + +# Naming style matching correct module names. +module-naming-style=snake_case + +# Regular expression matching correct module names. Overrides module-naming- +# style. +#module-rgx= + +# Colon-delimited sets of names that determine each other's naming style when +# the name regexes allow several styles. +name-group= + +# Regular expression which should only match function or class names that do +# not require a docstring. +no-docstring-rgx=^_ + +# List of decorators that produce properties, such as abc.abstractproperty. Add +# to this list to register other decorators that produce valid properties. +# These decorators are taken in consideration only for invalid-name. +property-classes=abc.abstractproperty + +# Naming style matching correct variable names. +variable-naming-style=snake_case + +# Regular expression matching correct variable names. Overrides variable- +# naming-style. +#variable-rgx= + + +[FORMAT] + +# Expected format of line ending, e.g. empty (any line ending), LF or CRLF. +expected-line-ending-format= + +# Regexp for a line that is allowed to be longer than the limit. +ignore-long-lines=^\s*(# )??$ + +# Number of spaces of indent required inside a hanging or continued line. +indent-after-paren=4 + +# String used as indentation unit. This is usually " " (4 spaces) or "\t" (1 +# tab). +indent-string=' ' + +# Maximum number of characters on a single line. +max-line-length=100 + +# Maximum number of lines in a module. +max-module-lines=1000 + +# List of optional constructs for which whitespace checking is disabled. `dict- +# separator` is used to allow tabulation in dicts, etc.: {1 : 1,\n222: 2}. +# `trailing-comma` allows a space between comma and closing bracket: (a, ). +# `empty-line` allows space-only lines. +no-space-check=trailing-comma, + dict-separator + +# Allow the body of a class to be on the same line as the declaration if body +# contains single statement. +single-line-class-stmt=no + +# Allow the body of an if to be on the same line as the test if there is no +# else. +single-line-if-stmt=no + + +[LOGGING] + +# Format style used to check logging format string. `old` means using % +# formatting, while `new` is for `{}` formatting. +logging-format-style=old + +# Logging modules to check that the string format arguments are in logging +# function parameter format. +logging-modules=logging + + +[MISCELLANEOUS] + +# List of note tags to take in consideration, separated by a comma. +notes=FIXME, + XXX, + TODO + + +[SIMILARITIES] + +# Ignore comments when computing similarities. +ignore-comments=yes + +# Ignore docstrings when computing similarities. +ignore-docstrings=yes + +# Ignore imports when computing similarities. +ignore-imports=no + +# Minimum lines number of a similarity. +min-similarity-lines=4 + + +[SPELLING] + +# Limits count of emitted suggestions for spelling mistakes. +max-spelling-suggestions=4 + +# Spelling dictionary name. Available dictionaries: none. To make it working +# install python-enchant package.. +spelling-dict= + +# List of comma separated words that should not be checked. +spelling-ignore-words= + +# A path to a file that contains private dictionary; one word per line. +spelling-private-dict-file= + +# Tells whether to store unknown words to indicated private dictionary in +# --spelling-private-dict-file option instead of raising a message. +spelling-store-unknown-words=no + + +[STRING] + +# This flag controls whether the implicit-str-concat-in-sequence should +# generate a warning on implicit string concatenation in sequences defined over +# several lines. +check-str-concat-over-line-jumps=no + + +[TYPECHECK] + +# List of decorators that produce context managers, such as +# contextlib.contextmanager. Add to this list to register other decorators that +# produce valid context managers. +contextmanager-decorators=contextlib.contextmanager + +# List of members which are set dynamically and missed by pylint inference +# system, and so shouldn't trigger E1101 when accessed. Python regular +# expressions are accepted. +generated-members= + +# Tells whether missing members accessed in mixin class should be ignored. A +# mixin class is detected if its name ends with "mixin" (case insensitive). +ignore-mixin-members=yes + +# Tells whether to warn about missing members when the owner of the attribute +# is inferred to be None. +ignore-none=yes + +# This flag controls whether pylint should warn about no-member and similar +# checks whenever an opaque object is returned when inferring. The inference +# can return multiple potential results while evaluating a Python object, but +# some branches might not be evaluated, which results in partial inference. In +# that case, it might be useful to still emit no-member and other checks for +# the rest of the inferred objects. +ignore-on-opaque-inference=yes + +# List of class names for which member attributes should not be checked (useful +# for classes with dynamically set attributes). This supports the use of +# qualified names. +ignored-classes=optparse.Values,thread._local,_thread._local + +# List of module names for which member attributes should not be checked +# (useful for modules/projects where namespaces are manipulated during runtime +# and thus existing member attributes cannot be deduced by static analysis. It +# supports qualified module names, as well as Unix pattern matching. +ignored-modules= + +# Show a hint with possible names when a member name was not found. The aspect +# of finding the hint is based on edit distance. +missing-member-hint=yes + +# The minimum edit distance a name should have in order to be considered a +# similar match for a missing member name. +missing-member-hint-distance=1 + +# The total number of similar names that should be taken in consideration when +# showing a hint for a missing member. +missing-member-max-choices=1 + + +[VARIABLES] + +# List of additional names supposed to be defined in builtins. Remember that +# you should avoid defining new builtins when possible. +additional-builtins= + +# Tells whether unused global variables should be treated as a violation. +allow-global-unused-variables=yes + +# List of strings which can identify a callback function by name. A callback +# name must start or end with one of those strings. +callbacks=cb_, + _cb + +# A regular expression matching the name of dummy variables (i.e. expected to +# not be used). +dummy-variables-rgx=_+$|(_[a-zA-Z0-9_]*[a-zA-Z0-9]+?$)|dummy|^ignored_|^unused_ + +# Argument names that match this expression will be ignored. Default to name +# with leading underscore. +ignored-argument-names=_.*|^ignored_|^unused_ + +# Tells whether we should check for unused import in __init__ files. +init-import=no + +# List of qualified module names which can have objects that can redefine +# builtins. +redefining-builtins-modules=six.moves,past.builtins,future.builtins,builtins,io + + +[CLASSES] + +# List of method names used to declare (i.e. assign) instance attributes. +defining-attr-methods=__init__, + __new__, + setUp + +# List of member names, which should be excluded from the protected access +# warning. +exclude-protected=_asdict, + _fields, + _replace, + _source, + _make + +# List of valid names for the first argument in a class method. +valid-classmethod-first-arg=cls + +# List of valid names for the first argument in a metaclass class method. +valid-metaclass-classmethod-first-arg=cls + + +[DESIGN] + +# Maximum number of arguments for function / method. +max-args=5 + +# Maximum number of attributes for a class (see R0902). +max-attributes=7 + +# Maximum number of boolean expressions in an if statement. +max-bool-expr=5 + +# Maximum number of branch for function / method body. +max-branches=12 + +# Maximum number of locals for function / method body. +max-locals=15 + +# Maximum number of parents for a class (see R0901). +max-parents=7 + +# Maximum number of public methods for a class (see R0904). +max-public-methods=20 + +# Maximum number of return / yield for function / method body. +max-returns=6 + +# Maximum number of statements in function / method body. +max-statements=50 + +# Minimum number of public methods for a class (see R0903). +min-public-methods=2 + + +[IMPORTS] + +# Allow wildcard imports from modules that define __all__. +allow-wildcard-with-all=no + +# Analyse import fallback blocks. This can be used to support both Python 2 and +# 3 compatible code, which means that the block might have code that exists +# only in one or another interpreter, leading to false positives when analysed. +analyse-fallback-blocks=no + +# Deprecated modules which should not be used, separated by a comma. +deprecated-modules=optparse,tkinter.tix + +# Create a graph of external dependencies in the given file (report RP0402 must +# not be disabled). +ext-import-graph= + +# Create a graph of every (i.e. internal and external) dependencies in the +# given file (report RP0402 must not be disabled). +import-graph= + +# Create a graph of internal dependencies in the given file (report RP0402 must +# not be disabled). +int-import-graph= + +# Force import order to recognize a module as part of the standard +# compatibility libraries. +known-standard-library= + +# Force import order to recognize a module as part of a third party library. +known-third-party=enchant + + +[EXCEPTIONS] + +# Exceptions that will emit a warning when being caught. Defaults to +# "BaseException, Exception". +overgeneral-exceptions=BaseException, + Exception diff --git a/GeekyProjects/SidekickNameGenerator/readme.md b/GeekyProjects/SidekickNameGenerator/readme.md new file mode 100644 index 0000000..89cc44a --- /dev/null +++ b/GeekyProjects/SidekickNameGenerator/readme.md @@ -0,0 +1,89 @@ +## The Objective +Randomly generate funny sidekick names + +### Pseudocodes +* Load a list of firstnames +* Load a list of surnames + +* Choose one firstname at random +* Assign the firstname to a variable +* Choose one surname at random +* Assign the surname to a varibale + +* Print the combined names to the screen in order and in red font +* Ask user to quit or play again +* If user play again: + repeat + +* If user quit: + end and exit + + +### Details +For the collection of firstnames & surnames, here we are using tuple instead of list. Why? + +**tuple** _vs_ **list**: +The main deference between turple and list is that a list is mutable, whereas a tuple is immutable. This means that a list can be changed, but tuple cannot. + +Then the syntax is a little different. +e.g. +```python +# Define a list with square brackets +list1 = [0, 1, 2, 3, 4] + +# Define a tuple with parentheses +tuple1 = (1, 2, 3, 'abc') +``` + +Notice: Can't use a list as a key of a dictionary. Because only immutable value can be hashed. Hence, we can only set immutable values like tuple as keys + +### Checking code with Pylint +Other such of programs like pycodestyle, Flake8 can easily help you to follow the PEP 8 style recommendations. +``` python +> pip install pylint +``` +Then call `> pylint xxxx.py` to execute code + +### Describe code with DocStrings +Here, in triple quotes, is an example of a single­line docstring for a function: + +```python +def circ(r): + """Return the circumference of a circle with radius of r.""" + c = 2 * r * math.pi + return c +``` + +More complex example below: + +```python +def circ(r): + """Return the circumference of a circle with radius of r. + + Arguments: + r – radius of circle + + Returns: + float: circumference of circle + """ + c = 2 * r * math.pi + return c +``` + +Reference: +1. Google has its own format and style guide at https://google.github.io/styleguide/pyguide.html. + +2. Examples of Google style can be found at https://sphinxcontribnapoleon.readthedocs.io/en/latest/example_google.html. + +3. Details on Pylint are at https://docs.pylint.org/en/1.8/tutorial.html. + +4. Details on pydocstyle can be found at http://www.pydocstyle.org/en/latest/. + + +### Practice Projects +1. Pig Latin +To form a Pig Latin, take a English word that begins with a consonant, move that consonant to the end, and then add "ay" to the end of the word. If the word begins with a vowel, then simply add "way" to the end of the word. + +2. Poor Man's Bar Chart +Write a python script to take a sentence as input and returns a simple bar chart-type display +Hint: two modules will be used here --- "pprint" & "defaultdict" \ No newline at end of file diff --git a/fundation/chainmap.py b/fundation/chainmap.py new file mode 100644 index 0000000..71ef466 --- /dev/null +++ b/fundation/chainmap.py @@ -0,0 +1,11 @@ +import collections + +dict1 = {'day1':'Mon','day2':'Tue'} +dict2 = {'day3':'Wed','day1':'Thu'} + +res = collections.ChainMap(dict1, dict2) + +print(res.maps, '\n') + +print('Keys = {}'.format(list(res.keys()))) +print('Values = {}'.format(list(res.values()))) \ No newline at end of file From 4029b8764d3a45345d575987b518611a119e00a7 Mon Sep 17 00:00:00 2001 From: syone Date: Wed, 22 May 2019 21:51:07 -0400 Subject: [PATCH 06/20] Add palindromes & anagram projects --- GeekyProjects/anagram/2of4brif.txt | 60388 ++++++++++++++++ GeekyProjects/anagram/anagrams.py | 25 + GeekyProjects/anagram/load_dictionary.py | 30 + GeekyProjects/anagram/phrase_anagrams.py | 88 + GeekyProjects/anagram/readme.md | 89 + GeekyProjects/palindromes/2of4brif.txt | 60388 ++++++++++++++++ GeekyProjects/palindromes/cprofile_test.py | 4 + GeekyProjects/palindromes/load_dictionary.py | 30 + GeekyProjects/palindromes/palindromes.py | 12 + GeekyProjects/palindromes/palingrams.py | 32 + .../palindromes/palingrams_optimized.py | 42 + .../palindromes/palingrams_recursive.py | 0 GeekyProjects/palindromes/palingrams_time.py | 37 + GeekyProjects/palindromes/readme.md | 58 + 14 files changed, 121223 insertions(+) create mode 100644 GeekyProjects/anagram/2of4brif.txt create mode 100644 GeekyProjects/anagram/anagrams.py create mode 100644 GeekyProjects/anagram/load_dictionary.py create mode 100644 GeekyProjects/anagram/phrase_anagrams.py create mode 100644 GeekyProjects/anagram/readme.md create mode 100644 GeekyProjects/palindromes/2of4brif.txt create mode 100644 GeekyProjects/palindromes/cprofile_test.py create mode 100644 GeekyProjects/palindromes/load_dictionary.py create mode 100644 GeekyProjects/palindromes/palindromes.py create mode 100644 GeekyProjects/palindromes/palingrams.py create mode 100644 GeekyProjects/palindromes/palingrams_optimized.py create mode 100644 GeekyProjects/palindromes/palingrams_recursive.py create mode 100644 GeekyProjects/palindromes/palingrams_time.py create mode 100644 GeekyProjects/palindromes/readme.md diff --git a/GeekyProjects/anagram/2of4brif.txt b/GeekyProjects/anagram/2of4brif.txt new file mode 100644 index 0000000..80fb45b --- /dev/null +++ b/GeekyProjects/anagram/2of4brif.txt @@ -0,0 +1,60388 @@ +aah +aardvark +aardvarks +abacus +abacuses +abalone +abalones +abandon +abandoned +abandoning +abandonment +abandons +abase +abased +abasement +abases +abashed +abasing +abate +abated +abatement +abates +abating +abattoir +abattoirs +abbess +abbesses +abbey +abbeys +abbot +abbots +abbreviate +abbreviated +abbreviates +abbreviating +abbreviation +abbreviations +abdicate +abdicated +abdicates +abdicating +abdication +abdications +abdomen +abdomens +abdominal +abduct +abducted +abducting +abduction +abductions +abductor +abductors +abducts +abed +aberrant +aberration +aberrations +abet +abets +abetted +abetting +abhor +abhorred +abhorrence +abhorrent +abhorring +abhors +abide +abided +abides +abiding +abilities +ability +abject +abjectly +abjure +abjured +abjures +abjuring +ablaze +able +abler +ablest +ablutions +ably +abnegation +abnormal +abnormalities +abnormality +abnormally +aboard +abode +abodes +abolish +abolished +abolishes +abolishing +abolition +abolitionist +abolitionists +abominable +abominably +abominate +abominated +abominates +abominating +abomination +abominations +aboriginal +aboriginals +aborigine +aborigines +abort +aborted +aborting +abortion +abortionist +abortionists +abortions +abortive +aborts +abound +abounded +abounding +abounds +about +above +aboveboard +abracadabra +abrade +abraded +abrades +abrading +abrasion +abrasions +abrasive +abrasively +abrasiveness +abrasives +abreast +abridge +abridged +abridgement +abridgements +abridges +abridging +abridgment +abridgments +abroad +abrogate +abrogated +abrogates +abrogating +abrogation +abrupt +abruptly +abruptness +abscess +abscesses +abscond +absconded +absconding +absconds +abseil +abseiled +abseiling +abseils +absence +absences +absent +absented +absentee +absenteeism +absentees +absenting +absently +absents +absinth +absinthe +absolute +absolutely +absolutes +absolution +absolutism +absolutist +absolutists +absolve +absolved +absolves +absolving +absorb +absorbed +absorbency +absorbent +absorbing +absorbs +absorption +abstain +abstained +abstainer +abstainers +abstaining +abstains +abstemious +abstention +abstentions +abstinence +abstinent +abstract +abstracted +abstractedly +abstracting +abstraction +abstractions +abstracts +abstruse +absurd +absurdities +absurdity +absurdly +abundance +abundant +abundantly +abuse +abused +abuser +abusers +abuses +abusing +abusive +abusively +abut +abuts +abutted +abutting +abuzz +abysmal +abysmally +abyss +abysses +acacia +acacias +academe +academia +academic +academically +academician +academicians +academics +academies +academy +accede +acceded +accedes +acceding +accelerate +accelerated +accelerates +accelerating +acceleration +accelerator +accelerators +accent +accented +accenting +accents +accentuate +accentuated +accentuates +accentuating +accentuation +accept +acceptability +acceptable +acceptably +acceptance +acceptances +accepted +accepting +accepts +access +accessed +accesses +accessibility +accessible +accessing +accession +accessions +accessories +accessorise +accessorised +accessorises +accessorising +accessorize +accessorized +accessorizes +accessorizing +accessory +accident +accidental +accidentally +accidents +acclaim +acclaimed +acclaiming +acclaims +acclamation +acclimate +acclimated +acclimates +acclimating +acclimatisation +acclimatise +acclimatised +acclimatises +acclimatising +acclimatization +acclimatize +acclimatized +acclimatizes +acclimatizing +accolade +accolades +accommodate +accommodated +accommodates +accommodating +accommodation +accommodations +accompanied +accompanies +accompaniment +accompaniments +accompanist +accompanists +accompany +accompanying +accomplice +accomplices +accomplish +accomplished +accomplishes +accomplishing +accomplishment +accomplishments +accord +accorded +according +accordingly +accordion +accordions +accords +accost +accosted +accosting +accosts +account +accountability +accountable +accountancy +accountant +accountants +accounted +accounting +accounts +accouterments +accoutrements +accredit +accreditation +accredited +accrediting +accredits +accretion +accretions +accrual +accruals +accrue +accrued +accrues +accruing +accumulate +accumulated +accumulates +accumulating +accumulation +accumulations +accumulative +accumulator +accumulators +accuracy +accurate +accurately +accursed +accusation +accusations +accusative +accusatives +accusatory +accuse +accused +accuser +accusers +accuses +accusing +accusingly +accustom +accustomed +accustoming +accustoms +ace +acerbic +acerbity +aces +acetaminophen +acetate +acetone +acetylene +ache +ached +aches +achievable +achieve +achieved +achievement +achievements +achiever +achievers +achieves +achieving +aching +achingly +achy +acid +acidic +acidified +acidifies +acidify +acidifying +acidity +acidly +acids +acknowledge +acknowledged +acknowledgement +acknowledgements +acknowledges +acknowledging +acknowledgment +acknowledgments +acme +acne +acolyte +acolytes +acorn +acorns +acoustic +acoustically +acoustics +acquaint +acquaintance +acquaintances +acquaintanceship +acquainted +acquainting +acquaints +acquiesce +acquiesced +acquiescence +acquiescent +acquiesces +acquiescing +acquire +acquired +acquirer +acquirers +acquires +acquiring +acquisition +acquisitions +acquisitive +acquisitiveness +acquit +acquits +acquittal +acquittals +acquitted +acquitting +acre +acreage +acreages +acres +acrid +acrimonious +acrimoniously +acrimony +acrobat +acrobatic +acrobatics +acrobats +acronym +acronyms +across +acrostic +acrostics +acrylic +acrylics +act +acted +acting +action +actionable +actions +activate +activated +activates +activating +activation +active +actively +activism +activist +activists +activities +activity +actor +actors +actress +actresses +acts +actual +actualities +actuality +actualize +actualized +actualizes +actualizing +actually +actuarial +actuaries +actuary +actuate +actuated +actuates +actuating +acuity +acumen +acupressure +acupuncture +acupuncturist +acupuncturists +acute +acutely +acuteness +ad +adage +adages +adagio +adagios +adamant +adamantly +adapt +adaptability +adaptable +adaptation +adaptations +adapted +adapter +adapters +adapting +adaption +adaptions +adaptive +adaptor +adaptors +adapts +add +added +addenda +addendum +adder +adders +addict +addicted +addiction +addictions +addictive +addicts +adding +addition +additional +additionally +additions +additive +additives +addle +addled +addles +addling +address +addressed +addressee +addressees +addresses +addressing +adds +adduce +adduced +adduces +adducing +adenoidal +adenoids +adept +adeptly +adepts +adequacy +adequate +adequately +adhere +adhered +adherence +adherent +adherents +adheres +adhering +adhesion +adhesive +adhesives +adieu +adieus +adieux +adios +adipose +adjacent +adjectival +adjectivally +adjective +adjectives +adjoin +adjoined +adjoining +adjoins +adjourn +adjourned +adjourning +adjournment +adjournments +adjourns +adjudge +adjudged +adjudges +adjudging +adjudicate +adjudicated +adjudicates +adjudicating +adjudication +adjudications +adjudicator +adjudicators +adjunct +adjuncts +adjure +adjured +adjures +adjuring +adjust +adjustable +adjusted +adjuster +adjusters +adjusting +adjustment +adjustments +adjusts +adjutant +adjutants +adman +admen +admin +administer +administered +administering +administers +administration +administrations +administrative +administratively +administrator +administrators +admirable +admirably +admiral +admirals +admiration +admire +admired +admirer +admirers +admires +admiring +admiringly +admissibility +admissible +admission +admissions +admit +admits +admittance +admitted +admittedly +admitting +admixture +admixtures +admonish +admonished +admonishes +admonishing +admonishment +admonishments +admonition +admonitions +admonitory +adobe +adolescence +adolescent +adolescents +adopt +adopted +adopting +adoption +adoptions +adoptive +adopts +adorable +adoration +adore +adored +adores +adoring +adoringly +adorn +adorned +adorning +adornment +adornments +adorns +adrenal +adrenalin +adrenaline +adrift +adroit +adroitly +adroitness +ads +adulation +adulatory +adult +adulterate +adulterated +adulterates +adulterating +adulteration +adulterer +adulterers +adulteress +adulteresses +adulterous +adultery +adulthood +adults +adumbrate +adumbrated +adumbrates +adumbrating +adumbration +advance +advanced +advancement +advancements +advances +advancing +advantage +advantaged +advantageous +advantageously +advantages +advent +adventitious +adventitiously +adventure +adventurer +adventurers +adventures +adventuresome +adventurism +adventurist +adventurists +adventurous +adventurously +adverb +adverbial +adverbs +adversarial +adversaries +adversary +adverse +adversely +adversities +adversity +advert +advertise +advertised +advertisement +advertisements +advertiser +advertisers +advertises +advertising +advertorial +advertorials +adverts +advice +advisability +advisable +advise +advised +advisedly +adviser +advisers +advises +advising +advisor +advisories +advisors +advisory +advocacy +advocate +advocated +advocates +advocating +adz +adze +adzes +aeon +aeons +aerate +aerated +aerates +aerating +aeration +aerial +aerials +aerie +aeries +aerobatic +aerobatics +aerobic +aerobics +aerodrome +aerodromes +aerodynamic +aerodynamically +aerodynamics +aerogram +aerogramme +aerogrammes +aerograms +aeronautic +aeronautical +aeronautics +aeroplane +aeroplanes +aerosol +aerosols +aerospace +aesthete +aesthetes +aesthetic +aesthetically +aesthetics +aetiology +afar +affability +affable +affably +affair +affairs +affect +affectation +affectations +affected +affectedly +affecting +affection +affectionate +affectionately +affections +affects +affidavit +affidavits +affiliate +affiliated +affiliates +affiliating +affiliation +affiliations +affinities +affinity +affirm +affirmation +affirmations +affirmative +affirmatively +affirmatives +affirmed +affirming +affirms +affix +affixed +affixes +affixing +afflict +afflicted +afflicting +affliction +afflictions +afflicts +affluence +affluent +afford +affordability +affordable +afforded +affording +affords +afforest +afforestation +afforested +afforesting +afforests +affray +affrays +affront +affronted +affronting +affronts +aficionado +aficionados +afire +aflame +afloat +afoot +aforementioned +aforesaid +afraid +afresh +aft +after +afterbirth +aftercare +aftereffect +aftereffects +afterglow +afterglows +afterlife +aftermath +afternoon +afternoons +afters +aftershave +aftershaves +aftershock +aftershocks +aftertaste +aftertastes +afterthought +afterthoughts +afterward +afterwards +afterword +afterwords +again +against +agape +agate +agates +age +aged +ageing +ageism +ageist +ageists +ageless +agencies +agency +agenda +agendas +agent +agents +ages +agglomerate +agglomerates +agglomeration +agglomerations +aggrandisement +aggrandizement +aggravate +aggravated +aggravates +aggravating +aggravation +aggravations +aggregate +aggregated +aggregates +aggregating +aggregation +aggression +aggressive +aggressively +aggressiveness +aggressor +aggressors +aggrieved +aggro +aghast +agile +agility +aging +agism +agitate +agitated +agitates +agitating +agitation +agitations +agitator +agitators +agitprop +aglow +agnostic +agnosticism +agnostics +ago +agog +agonies +agonise +agonised +agonises +agonising +agonisingly +agonize +agonized +agonizes +agonizing +agonizingly +agony +agoraphobia +agoraphobic +agoraphobics +agrarian +agree +agreeable +agreeably +agreed +agreeing +agreement +agreements +agrees +agribusiness +agribusinesses +agricultural +agriculturalist +agriculturalists +agriculture +agronomist +agronomists +agronomy +aground +ah +aha +ahchoo +ahead +ahem +ahoy +aid +aide +aided +aides +aiding +aids +ail +ailed +aileron +ailerons +ailing +ailment +ailments +ails +aim +aimed +aiming +aimless +aimlessly +aimlessness +aims +air +airbag +airbags +airbase +airbases +airbed +airbeds +airborne +airbrush +airbrushed +airbrushes +airbrushing +aircraft +aircraftman +aircraftmen +aircrew +aircrews +airdrome +airdromes +airdrop +airdrops +aired +airfare +airfares +airfield +airfields +airflow +airgun +airguns +airhead +airheads +airier +airiest +airily +airing +airings +airless +airletter +airletters +airlift +airlifted +airlifting +airlifts +airline +airliner +airliners +airlines +airlock +airlocks +airmail +airman +airmen +airplane +airplanes +airplay +airport +airports +airs +airship +airships +airshow +airshows +airsick +airsickness +airspace +airspeed +airstrike +airstrikes +airstrip +airstrips +airtight +airtime +airwaves +airway +airways +airwoman +airwomen +airworthiness +airworthy +airy +aisle +aisles +aitch +aitches +ajar +akin +alabaster +alacrity +alarm +alarmed +alarming +alarmingly +alarmist +alarmists +alarms +alas +albatross +albatrosses +albeit +albino +albinos +album +albumen +albums +alchemist +alchemists +alchemy +alcohol +alcoholic +alcoholics +alcoholism +alcohols +alcove +alcoves +alder +alderman +aldermen +alders +ale +alehouse +alehouses +alert +alerted +alerting +alertness +alerts +ales +alfalfa +alfresco +algae +algal +algebra +algebraic +algorithm +algorithms +alias +aliases +alibi +alibis +alien +alienate +alienated +alienates +alienating +alienation +aliens +alight +alighted +alighting +alights +align +aligned +aligning +alignment +alignments +aligns +alike +alimony +alit +alive +alkali +alkaline +alkalis +all +allay +allayed +allaying +allays +allegation +allegations +allege +alleged +allegedly +alleges +allegiance +allegiances +alleging +allegorical +allegorically +allegories +allegory +allegro +allegros +alleluia +alleluias +allergen +allergens +allergic +allergies +allergist +allergists +allergy +alleviate +alleviated +alleviates +alleviating +alleviation +alley +alleys +alleyway +alleyways +alliance +alliances +allied +allies +alligator +alligators +alliteration +alliterative +allocate +allocated +allocates +allocating +allocation +allocations +allot +allotment +allotments +allots +allotted +allotting +allow +allowable +allowance +allowances +allowed +allowing +allows +alloy +alloyed +alloying +alloys +allspice +allude +alluded +alludes +alluding +allure +allures +alluring +alluringly +allusion +allusions +allusive +alluvial +ally +allying +almanac +almanack +almanacks +almanacs +almighty +almond +almonds +almoner +almoners +almost +alms +almshouse +almshouses +aloe +aloes +aloft +alone +along +alongside +aloof +aloofness +aloud +alpaca +alpacas +alpha +alphabet +alphabetical +alphabetically +alphabetize +alphabetized +alphabetizes +alphabetizing +alphabets +alphas +alpine +alpines +already +alright +also +altar +altarpiece +altarpieces +altars +alter +alteration +alterations +altercation +altercations +altered +altering +alternate +alternated +alternately +alternates +alternating +alternation +alternations +alternative +alternatively +alternatives +alternator +alternators +alters +although +altimeter +altimeters +altitude +altitudes +alto +altogether +altos +altruism +altruist +altruistic +altruistically +altruists +aluminium +aluminum +alumna +alumnae +alumni +alumnus +alveolar +alveolars +always +am +amalgam +amalgamate +amalgamated +amalgamates +amalgamating +amalgamation +amalgamations +amalgams +amanuensis +amass +amassed +amasses +amassing +amateur +amateurish +amateurishly +amateurishness +amateurism +amateurs +amatory +amaze +amazed +amazement +amazes +amazing +amazingly +amazon +amazonian +amazons +ambassador +ambassadorial +ambassadors +amber +ambiance +ambidextrous +ambience +ambient +ambiguities +ambiguity +ambiguous +ambiguously +ambit +ambition +ambitions +ambitious +ambitiously +ambivalence +ambivalent +ambivalently +amble +ambled +ambles +ambling +ambrosia +ambulance +ambulanceman +ambulancemen +ambulances +ambulancewoman +ambulancewomen +ambush +ambushed +ambushes +ambushing +ameba +amebae +amebas +amebic +ameliorate +ameliorated +ameliorates +ameliorating +amelioration +amen +amenable +amend +amended +amending +amendment +amendments +amends +amenities +amenity +amethyst +amethysts +amiability +amiable +amiably +amicable +amicably +amid +amidships +amidst +amiss +amity +ammeter +ammeters +ammo +ammonia +ammunition +amnesia +amnesiac +amnesiacs +amnesties +amnesty +amniocentesis +amoeba +amoebae +amoebas +amoebic +among +amongst +amoral +amorality +amorous +amorously +amorphous +amortisable +amortisation +amortisations +amortise +amortised +amortises +amortising +amortizable +amortization +amortizations +amortize +amortized +amortizes +amortizing +amount +amounted +amounting +amounts +amour +amours +amp +amperage +ampere +amperes +ampersand +ampersands +amphetamine +amphetamines +amphibian +amphibians +amphibious +amphitheater +amphitheaters +amphitheatre +amphitheatres +amphora +amphoras +ample +amplification +amplified +amplifier +amplifiers +amplifies +amplify +amplifying +amplitude +amplitudes +amply +ampoule +ampoules +amps +ampule +ampules +amputate +amputated +amputates +amputating +amputation +amputations +amputee +amputees +amulet +amulets +amuse +amused +amusement +amusements +amuses +amusing +amusingly +an +anachronism +anachronisms +anachronistic +anachronistically +anaconda +anacondas +anaemia +anaemic +anaerobic +anaesthesia +anaesthetic +anaesthetics +anaesthetise +anaesthetised +anaesthetises +anaesthetising +anaesthetist +anaesthetists +anaesthetize +anaesthetized +anaesthetizes +anaesthetizing +anagram +anagrams +anal +analgesia +analgesic +analgesics +anally +analog +analogies +analogous +analogs +analogue +analogues +analogy +analyse +analysed +analyses +analysing +analysis +analyst +analysts +analytic +analytical +analytically +analyze +analyzed +analyzes +analyzing +anarchic +anarchism +anarchist +anarchistic +anarchists +anarchy +anathema +anatomical +anatomically +anatomies +anatomist +anatomists +anatomy +ancestor +ancestors +ancestral +ancestries +ancestry +anchor +anchorage +anchorages +anchored +anchoring +anchorite +anchorites +anchorman +anchormen +anchors +anchorwoman +anchorwomen +anchovies +anchovy +ancient +anciently +ancients +ancillary +and +andante +andantes +androgynous +androgyny +android +androids +anecdotal +anecdote +anecdotes +anemia +anemic +anemone +anemones +anesthesia +anesthesiologist +anesthesiologists +anesthetic +anesthetics +anesthetist +anesthetists +anesthetize +anesthetized +anesthetizes +anesthetizing +anew +angel +angelic +angelica +angelically +angels +anger +angered +angering +angers +angina +angioplasties +angioplasty +angle +angled +angler +anglers +angles +anglicise +anglicised +anglicises +anglicising +anglicism +anglicisms +anglicize +anglicized +anglicizes +anglicizing +angling +anglophile +anglophiles +anglophone +anglophones +angora +angoras +angostura +angrier +angriest +angrily +angry +angst +anguish +anguished +angular +angularity +animal +animals +animate +animated +animatedly +animates +animating +animation +animations +animator +animators +animism +animist +animists +animosities +animosity +animus +anise +aniseed +ankle +ankles +anklet +anklets +annals +anneal +annealed +annealing +anneals +annex +annexation +annexations +annexe +annexed +annexes +annexing +annihilate +annihilated +annihilates +annihilating +annihilation +anniversaries +anniversary +annotate +annotated +annotates +annotating +annotation +annotations +announce +announced +announcement +announcements +announcer +announcers +announces +announcing +annoy +annoyance +annoyances +annoyed +annoying +annoyingly +annoys +annual +annualised +annualized +annually +annuals +annuities +annuity +annul +annulled +annulling +annulment +annulments +annuls +anode +anodes +anodyne +anoint +anointed +anointing +anointment +anoints +anomalies +anomalous +anomalously +anomaly +anon +anonymity +anonymous +anonymously +anopheles +anorak +anoraks +anorexia +anorexic +anorexics +another +answer +answerable +answered +answering +answerphone +answerphones +answers +ant +antacid +antacids +antagonise +antagonised +antagonises +antagonising +antagonism +antagonisms +antagonist +antagonistic +antagonists +antagonize +antagonized +antagonizes +antagonizing +ante +anteater +anteaters +antecedent +antecedents +antechamber +antechambers +antedate +antedated +antedates +antedating +antediluvian +antelope +antelopes +antenatal +antenna +antennae +antennas +anterior +anteroom +anterooms +antes +anthem +anthems +anther +anthers +anthill +anthills +anthologies +anthologist +anthologists +anthology +anthracite +anthrax +anthropoid +anthropoids +anthropological +anthropologist +anthropologists +anthropology +anthropomorphic +anthropomorphism +anti +antibacterial +antibiotic +antibiotics +antibodies +antibody +anticipate +anticipated +anticipates +anticipating +anticipation +anticipatory +anticlimactic +anticlimax +anticlimaxes +anticlockwise +anticoagulant +anticoagulants +antics +anticyclone +anticyclones +antidepressant +antidepressants +antidote +antidotes +antifreeze +antigen +antigens +antihero +antiheroes +antihistamine +antihistamines +antiknock +antimacassar +antimacassars +antimatter +antimony +antipasti +antipasto +antipathetic +antipathies +antipathy +antiperspirant +antiperspirants +antiquarian +antiquarians +antiquaries +antiquary +antiquated +antique +antiques +antiquities +antiquity +antirrhinum +antirrhinums +antis +antiseptic +antiseptics +antisocial +antitheses +antithesis +antithetic +antithetical +antitrust +antler +antlers +antonym +antonymous +antonyms +ants +antsy +anus +anuses +anvil +anvils +anxieties +anxiety +anxious +anxiously +any +anybody +anyhow +anymore +anyone +anyplace +anything +anytime +anyway +anyways +anywhere +aorta +aortas +apace +apart +apartheid +apartment +apartments +apathetic +apathetically +apathy +ape +aped +aperitif +aperitifs +aperture +apertures +apes +apex +apexes +aphasia +aphid +aphids +aphorism +aphorisms +aphoristic +aphrodisiac +aphrodisiacs +apiary +apiece +aping +aplenty +aplomb +apocalypse +apocalyptic +apocryphal +apogee +apolitical +apologetic +apologetically +apologia +apologias +apologies +apologise +apologised +apologises +apologising +apologist +apologists +apologize +apologized +apologizes +apologizing +apology +apoplectic +apoplexy +apostasy +apostate +apostates +apostle +apostles +apostolic +apostrophe +apostrophes +apothecaries +apothecary +apotheoses +apotheosis +appal +appall +appalled +appalling +appallingly +appalls +appals +apparatchik +apparatchiks +apparatus +apparatuses +apparel +apparent +apparently +apparition +apparitions +appeal +appealed +appealing +appealingly +appeals +appear +appearance +appearances +appeared +appearing +appears +appease +appeased +appeasement +appeases +appeasing +appellant +appellants +appellation +appellations +append +appendage +appendages +appendectomies +appendectomy +appended +appendices +appendicitis +appending +appendix +appendixes +appends +appertain +appertained +appertaining +appertains +appetiser +appetisers +appetising +appetite +appetites +appetizer +appetizers +appetizing +appetizingly +applaud +applauded +applauding +applauds +applause +apple +applejack +apples +applesauce +applet +applets +appliance +appliances +applicability +applicable +applicant +applicants +application +applications +applicator +applicators +applied +applies +applique +appliqued +appliqueing +appliques +apply +applying +appoint +appointed +appointee +appointees +appointing +appointment +appointments +appoints +apportion +apportioned +apportioning +apportionment +apportions +apposite +apposition +appraisal +appraisals +appraise +appraised +appraiser +appraisers +appraises +appraising +appreciable +appreciably +appreciate +appreciated +appreciates +appreciating +appreciation +appreciations +appreciative +appreciatively +apprehend +apprehended +apprehending +apprehends +apprehension +apprehensions +apprehensive +apprehensively +apprentice +apprenticed +apprentices +apprenticeship +apprenticeships +apprenticing +apprise +apprised +apprises +apprising +approach +approachable +approached +approaches +approaching +approbation +appropriate +appropriated +appropriately +appropriateness +appropriates +appropriating +appropriation +appropriations +approval +approvals +approve +approved +approves +approving +approvingly +approximate +approximated +approximately +approximates +approximating +approximation +approximations +appurtenance +appurtenances +apricot +apricots +apron +aprons +apropos +apse +apses +apt +aptitude +aptitudes +aptly +aptness +aqua +aquamarine +aquamarines +aquaplane +aquaplaned +aquaplanes +aquaplaning +aquaria +aquarium +aquariums +aquatic +aquatically +aquatint +aquatints +aqueduct +aqueducts +aqueous +aquifer +aquifers +aquiline +arabesque +arabesques +arable +arachnid +arachnids +arachnophobia +arbiter +arbiters +arbitrage +arbitrager +arbitragers +arbitrageur +arbitrageurs +arbitrarily +arbitrariness +arbitrary +arbitrate +arbitrated +arbitrates +arbitrating +arbitration +arbitrator +arbitrators +arbor +arboreal +arboreta +arboretum +arboretums +arbors +arbour +arbours +arc +arcade +arcades +arcane +arced +arch +archaeological +archaeologically +archaeologist +archaeologists +archaeology +archaic +archaism +archaisms +archangel +archangels +archbishop +archbishopric +archbishoprics +archbishops +archdeacon +archdeacons +archdiocese +archdioceses +archduchess +archduchesses +archduke +archdukes +arched +archenemies +archenemy +archeological +archeologist +archeologists +archeology +archer +archers +archery +arches +archetypal +archetype +archetypes +archetypical +arching +archipelago +archipelagoes +archipelagos +architect +architects +architectural +architecturally +architecture +architectures +archival +archive +archives +archivist +archivists +archly +archway +archways +arcing +arcs +arctic +ardent +ardently +ardor +ardour +arduous +arduously +arduousness +are +area +areas +arena +arenas +ares +argon +argot +argots +arguable +arguably +argue +argued +argues +arguing +argument +argumentation +argumentative +arguments +aria +arias +arid +aridity +aright +arise +arisen +arises +arising +aristocracies +aristocracy +aristocrat +aristocratic +aristocrats +arithmetic +arithmetical +arithmetically +ark +arm +armada +armadas +armadillo +armadillos +armament +armaments +armband +armbands +armchair +armchairs +armed +armful +armfuls +armhole +armholes +armies +arming +armistice +armistices +armload +armloads +armor +armored +armorer +armorers +armories +armory +armour +armoured +armourer +armourers +armouries +armoury +armpit +armpits +armrest +armrests +arms +army +aroma +aromas +aromatherapist +aromatherapists +aromatherapy +aromatic +arose +around +arousal +arouse +aroused +arouses +arousing +arpeggio +arpeggios +arraign +arraigned +arraigning +arraignment +arraignments +arraigns +arrange +arranged +arrangement +arrangements +arranger +arrangers +arranges +arranging +arrant +array +arrayed +arraying +arrays +arrears +arrest +arrested +arresting +arrests +arrival +arrivals +arrive +arrived +arrives +arriving +arrogance +arrogant +arrogantly +arrogate +arrogated +arrogates +arrogating +arrow +arrowhead +arrowheads +arrowroot +arrows +arse +arsed +arsehole +arseholes +arsenal +arsenals +arsenic +arses +arsing +arson +arsonist +arsonists +art +artefact +artefacts +arterial +arteries +arteriosclerosis +artery +artful +artfully +artfulness +arthritic +arthritis +artichoke +artichokes +article +articled +articles +articulacy +articulate +articulated +articulately +articulateness +articulates +articulating +articulation +articulations +artifact +artifacts +artifice +artifices +artificial +artificiality +artificially +artillery +artisan +artisans +artist +artiste +artistes +artistic +artistically +artistry +artists +artless +artlessly +artlessness +arts +artsy +artwork +artworks +arty +arugula +as +asbestos +ascend +ascendancy +ascended +ascendency +ascending +ascends +ascension +ascent +ascents +ascertain +ascertained +ascertaining +ascertains +ascetic +ascetically +asceticism +ascetics +ascot +ascots +ascribable +ascribe +ascribed +ascribes +ascribing +aseptic +asexual +asexually +ash +ashamed +ashcan +ashcans +ashen +ashes +ashore +ashram +ashrams +ashtray +ashtrays +ashy +aside +asides +asinine +ask +asked +askew +asking +asks +asleep +asp +asparagus +aspect +aspects +aspen +aspens +asperities +asperity +aspersions +asphalt +asphalted +asphalting +asphalts +asphyxia +asphyxiate +asphyxiated +asphyxiates +asphyxiating +asphyxiation +aspic +aspidistra +aspidistras +aspirant +aspirants +aspirate +aspirated +aspirates +aspirating +aspiration +aspirations +aspire +aspired +aspires +aspirin +aspiring +aspirins +asps +ass +assail +assailant +assailants +assailed +assailing +assails +assassin +assassinate +assassinated +assassinates +assassinating +assassination +assassinations +assassins +assault +assaulted +assaulting +assaults +assay +assayed +assaying +assays +assemblage +assemblages +assemble +assembled +assembler +assemblers +assembles +assemblies +assembling +assembly +assemblyman +assemblymen +assemblywoman +assemblywomen +assent +assented +assenting +assents +assert +asserted +asserting +assertion +assertions +assertive +assertively +assertiveness +asserts +asses +assess +assessed +assesses +assessing +assessment +assessments +assessor +assessors +asset +assets +asshole +assholes +assiduity +assiduous +assiduously +assign +assignation +assignations +assigned +assigning +assignment +assignments +assigns +assimilate +assimilated +assimilates +assimilating +assimilation +assist +assistance +assistant +assistants +assisted +assisting +assists +assize +assizes +associate +associated +associates +associating +association +associations +assonance +assorted +assortment +assortments +assuage +assuaged +assuages +assuaging +assume +assumed +assumes +assuming +assumption +assumptions +assurance +assurances +assure +assured +assuredly +assures +assuring +asterisk +asterisked +asterisking +asterisks +astern +asteroid +asteroids +asthma +asthmatic +asthmatically +asthmatics +astigmatic +astigmatism +astonish +astonished +astonishes +astonishing +astonishingly +astonishment +astound +astounded +astounding +astoundingly +astounds +astrakhan +astral +astride +astringency +astringent +astringents +astrologer +astrologers +astrological +astrologically +astrology +astronaut +astronauts +astronomer +astronomers +astronomic +astronomical +astronomically +astronomy +astrophysical +astrophysicist +astrophysicists +astrophysics +astute +astutely +astuteness +asunder +asylum +asylums +asymmetric +asymmetrical +asymmetrically +asymmetries +asymmetry +asymptomatic +at +atavistic +ate +atelier +ateliers +atheism +atheist +atheistic +atheists +athlete +athletes +athletic +athletically +athleticism +athletics +atishoo +atlas +atlases +atmosphere +atmospheres +atmospheric +atmospherics +atoll +atolls +atom +atomic +atomizer +atomizers +atoms +atonal +atone +atoned +atonement +atones +atoning +atop +atrium +atriums +atrocious +atrociously +atrocities +atrocity +atrophied +atrophies +atrophy +atrophying +attach +attache +attached +attaches +attaching +attachment +attachments +attack +attacked +attacker +attackers +attacking +attacks +attain +attainable +attained +attaining +attainment +attainments +attains +attempt +attempted +attempting +attempts +attend +attendance +attendances +attendant +attendants +attended +attendee +attendees +attender +attenders +attending +attends +attention +attentions +attentive +attentively +attentiveness +attenuate +attenuated +attenuates +attenuating +attenuation +attest +attestation +attestations +attested +attesting +attests +attic +attics +attire +attired +attitude +attitudes +attitudinal +attorney +attorneys +attract +attracted +attracting +attraction +attractions +attractive +attractively +attractiveness +attracts +attributable +attribute +attributed +attributes +attributing +attribution +attributive +attributively +attrition +attuned +atypical +aubergine +aubergines +auburn +auction +auctioned +auctioneer +auctioneers +auctioning +auctions +audacious +audaciously +audacity +audibility +audible +audibly +audience +audiences +audio +audiotape +audiotapes +audiovisual +audit +audited +auditing +audition +auditioned +auditioning +auditions +auditor +auditoria +auditorium +auditoriums +auditors +auditory +audits +auger +augers +aught +augment +augmentation +augmentations +augmented +augmenting +augments +augur +augured +auguries +auguring +augurs +augury +august +auk +auks +aunt +auntie +aunties +aunts +aunty +aura +aural +aurally +auras +aureole +aureoles +auricle +auricles +auspicious +austere +austerely +austerities +austerity +authentic +authentically +authenticate +authenticated +authenticates +authenticating +authentication +authenticity +author +authored +authoress +authoresses +authorial +authoring +authorisation +authorisations +authorise +authorised +authorises +authorising +authoritarian +authoritarianism +authoritarians +authoritative +authoritatively +authorities +authority +authorization +authorizations +authorize +authorized +authorizes +authorizing +authors +authorship +autism +autistic +auto +autobahn +autobahns +autobiographical +autobiographies +autobiography +autocracies +autocracy +autocrat +autocratic +autocratically +autocrats +autocross +autograph +autographed +autographing +autographs +automaker +automakers +automata +automate +automated +automates +automatic +automatically +automatics +automating +automation +automaton +automatons +automobile +automobiles +automotive +autonomous +autonomously +autonomy +autopilot +autopilots +autopsies +autopsy +autos +autosuggestion +autumn +autumnal +autumns +auxiliaries +auxiliary +avail +availability +available +availed +availing +avails +avalanche +avalanches +avarice +avaricious +avariciously +avenge +avenged +avenger +avengers +avenges +avenging +avenue +avenues +aver +average +averaged +averagely +averages +averaging +averred +averring +avers +averse +aversion +aversions +avert +averted +averting +averts +aviaries +aviary +aviation +aviator +aviators +avid +avidity +avidly +avionic +avionics +avocado +avocados +avoid +avoidable +avoidance +avoided +avoiding +avoids +avoirdupois +avow +avowal +avowals +avowed +avowedly +avowing +avows +avuncular +avuncularly +await +awaited +awaiting +awaits +awake +awaken +awakened +awakening +awakenings +awakens +awakes +awaking +award +awarded +awarding +awards +aware +awareness +awash +away +awe +awed +awes +awesome +awesomely +awestricken +awestruck +awful +awfully +awfulness +awhile +awing +awkward +awkwardly +awkwardness +awl +awls +awning +awnings +awoke +awoken +awry +ax +axe +axed +axes +axing +axiom +axiomatic +axiomatically +axioms +axis +axle +axles +ay +ayatollah +ayatollahs +aye +ayes +azalea +azaleas +azure +baa +baaed +baaing +baas +babble +babbled +babbles +babbling +babe +babel +babes +babied +babies +baboon +baboons +baby +babyhood +babying +babyish +babysat +babysit +babysits +babysitter +babysitters +babysitting +baccalaureate +baccalaureates +bacchanalian +baccy +bachelor +bachelors +bacilli +bacillus +back +backache +backaches +backbench +backbencher +backbenchers +backbenches +backbiting +backboard +backboards +backbone +backbones +backbreaking +backchat +backcloth +backcloths +backcomb +backcombed +backcombing +backcombs +backdate +backdated +backdates +backdating +backdoor +backdrop +backdrops +backed +backer +backers +backfire +backfired +backfires +backfiring +backgammon +background +backgrounds +backhand +backhanded +backhander +backhanders +backhands +backhoe +backhoes +backing +backings +backlash +backlashes +backless +backlog +backlogs +backpack +backpacked +backpacker +backpackers +backpacking +backpacks +backpedal +backpedaled +backpedaling +backpedalled +backpedalling +backpedals +backrest +backrests +backroom +backrooms +backs +backscratching +backside +backsides +backslapping +backslash +backslashes +backslid +backslide +backslides +backsliding +backstage +backstop +backstops +backstreet +backstreets +backstroke +backtrack +backtracked +backtracking +backtracks +backup +backups +backward +backwardness +backwards +backwash +backwater +backwaters +backwoods +backwoodsman +backwoodsmen +backyard +backyards +bacon +bacteria +bacterial +bacteriological +bacteriologist +bacteriologists +bacteriology +bacterium +bad +baddie +baddies +baddy +bade +badge +badger +badgered +badgering +badgers +badges +badinage +badlands +badly +badminton +badness +baffle +baffled +bafflement +baffles +baffling +bag +bagatelle +bagatelles +bagel +bagels +bagful +bagfuls +baggage +bagged +baggier +baggiest +bagging +baggy +bagpipe +bagpipes +bags +baguette +baguettes +bah +bail +bailed +bailey +baileys +bailiff +bailiffs +bailing +bails +bairn +bairns +bait +baited +baiting +baits +baize +bake +baked +baker +bakeries +bakers +bakery +bakes +baking +balaclava +balaclavas +balalaika +balalaikas +balance +balanced +balances +balancing +balconies +balcony +bald +balder +balderdash +baldest +baldies +balding +baldly +baldness +baldy +bale +baled +baleful +balefully +bales +baling +balk +balked +balking +balks +ball +ballad +ballads +ballast +ballcock +ballcocks +balled +ballerina +ballerinas +ballet +balletic +ballets +ballgirl +ballgirls +ballgown +ballgowns +balling +ballistic +ballistics +balloon +ballooned +ballooning +balloonist +balloonists +balloons +ballot +balloted +balloting +ballots +ballpark +ballparks +ballplayer +ballplayers +ballpoint +ballpoints +ballroom +ballrooms +balls +ballsed +ballses +ballsing +ballsy +bally +ballyhoo +ballyhooed +ballyhooing +ballyhoos +balm +balmier +balmiest +balms +balmy +baloney +balsa +balsam +balsams +balustrade +balustrades +bamboo +bamboos +bamboozle +bamboozled +bamboozles +bamboozling +ban +banal +banalities +banality +banana +bananas +band +bandage +bandaged +bandages +bandaging +bandanna +bandannas +banded +bandied +bandies +banding +bandit +banditry +bandits +bandleader +bandleaders +bandmaster +bandmasters +bandolier +bandoliers +bands +bandsman +bandsmen +bandstand +bandstands +bandwagon +bandwagons +bandwidth +bandy +bandying +bane +baneful +bang +banged +banger +bangers +banging +bangle +bangles +bangs +banish +banished +banishes +banishing +banishment +banister +banisters +banjo +banjos +bank +bankable +banked +banker +bankers +banking +banknote +banknotes +bankroll +bankrolled +bankrolling +bankrolls +bankrupt +bankruptcies +bankruptcy +bankrupted +bankrupting +bankrupts +banks +banned +banner +banners +banning +bannister +bannisters +bannock +bannocks +banns +banquet +banqueting +banquets +banquette +banquettes +bans +banshee +banshees +bantam +bantams +bantamweight +bantamweights +banter +bantered +bantering +banters +banyan +banyans +bap +baps +baptise +baptised +baptises +baptising +baptism +baptismal +baptisms +baptize +baptized +baptizes +baptizing +bar +barb +barbarian +barbarians +barbaric +barbarism +barbarities +barbarity +barbarous +barbarously +barbecue +barbecued +barbecues +barbecuing +barbed +barbell +barbells +barbeque +barbequed +barbeques +barbequing +barber +barbers +barbershop +barbershops +barbie +barbies +barbiturate +barbiturates +barbs +bard +bards +bare +bareback +bared +barefaced +barefoot +barefooted +bareheaded +barely +bareness +barer +bares +barest +barf +barfed +barfing +barflies +barfly +barfs +bargain +bargained +bargaining +bargains +barge +barged +barges +barging +baring +baritone +baritones +barium +bark +barked +barkeeper +barkeepers +barker +barkers +barking +barks +barley +barmaid +barmaids +barman +barmen +barmier +barmiest +barmy +barn +barnacle +barnacles +barney +barneys +barns +barnstorm +barnstormed +barnstorming +barnstorms +barnyard +barnyards +barometer +barometers +barometric +baron +baroness +baronesses +baronet +baronetcies +baronetcy +baronets +baronial +baronies +barons +barony +baroque +barque +barques +barrack +barracked +barracking +barracks +barracuda +barracudas +barrage +barrages +barred +barrel +barreled +barreling +barrels +barren +barrenness +barrette +barrettes +barricade +barricaded +barricades +barricading +barrier +barriers +barring +barrio +barrios +barrister +barristers +barroom +barrooms +barrow +barrows +bars +bartender +bartenders +barter +bartered +bartering +barters +basalt +base +baseball +baseballs +baseboard +baseboards +based +baseless +baseline +baselines +basely +basement +basements +baser +bases +basest +bash +bashed +bashes +bashful +bashfully +bashfulness +bashing +basic +basically +basics +basil +basilica +basilicas +basilisk +basilisks +basin +basing +basins +basis +bask +basked +basket +basketball +basketballs +basketry +baskets +basketwork +basking +basks +basque +basques +bass +basses +basset +bassets +bassinet +bassinets +bassist +bassists +bassoon +bassoonist +bassoonists +bassoons +bastard +bastardise +bastardised +bastardises +bastardising +bastardize +bastardized +bastardizes +bastardizing +bastards +baste +basted +bastes +basting +bastion +bastions +bat +batch +batches +bath +bathe +bathed +bather +bathers +bathes +bathing +bathos +bathrobe +bathrobes +bathroom +bathrooms +baths +bathtub +bathtubs +bathwater +batik +batiks +batman +batmen +baton +batons +bats +batsman +batsmen +battalion +battalions +batted +batten +battened +battening +battens +batter +battered +batteries +battering +batterings +batters +battery +battier +battiest +batting +battle +battleax +battleaxe +battleaxes +battled +battledress +battlefield +battlefields +battleground +battlegrounds +battlements +battler +battlers +battles +battleship +battleships +battling +batty +bauble +baubles +baulk +baulked +baulking +baulks +bauxite +bawdier +bawdiest +bawdily +bawdiness +bawdy +bawl +bawled +bawling +bawls +bay +bayed +baying +bayonet +bayoneted +bayoneting +bayonets +bayou +bayous +bays +bazaar +bazaars +bazooka +bazookas +be +beach +beachcomber +beachcombers +beached +beaches +beachfront +beachhead +beachheads +beaching +beachwear +beacon +beacons +bead +beaded +beading +beads +beady +beagle +beagles +beak +beaker +beakers +beaks +beam +beamed +beaming +beams +bean +beanbag +beanbags +beanfeast +beanfeasts +beanie +beanies +beanpole +beanpoles +beans +beansprout +beansprouts +bear +bearable +beard +bearded +beards +bearer +bearers +bearing +bearings +bearish +bears +bearskin +bearskins +beast +beastliness +beastly +beasts +beat +beaten +beater +beaters +beatific +beatifically +beatification +beatifications +beatified +beatifies +beatify +beatifying +beating +beatings +beatnik +beatniks +beats +beau +beaus +beaut +beauteous +beautician +beauticians +beauties +beautified +beautifies +beautiful +beautifully +beautify +beautifying +beauts +beauty +beaux +beaver +beavered +beavering +beavers +bebop +becalmed +became +because +beck +beckon +beckoned +beckoning +beckons +becks +become +becomes +becoming +becomingly +becquerel +becquerels +bed +bedaub +bedaubed +bedaubing +bedaubs +bedazzled +bedbug +bedbugs +bedchamber +bedchambers +bedclothes +bedded +bedding +bedeck +bedecked +bedecking +bedecks +bedevil +bedeviled +bedeviling +bedevilled +bedevilling +bedevils +bedfellow +bedfellows +bedhead +bedheads +bedlam +bedpan +bedpans +bedpost +bedposts +bedraggled +bedridden +bedrock +bedroll +bedrolls +bedroom +bedrooms +beds +bedside +bedsides +bedsit +bedsits +bedsitter +bedsitters +bedsore +bedsores +bedspread +bedspreads +bedstead +bedsteads +bedtime +bee +beech +beeches +beef +beefburger +beefburgers +beefcake +beefcakes +beefed +beefier +beefiest +beefing +beefs +beefsteak +beefsteaks +beefy +beehive +beehives +beekeeper +beekeepers +beekeeping +been +beep +beeped +beeper +beepers +beeping +beeps +beer +beers +beery +bees +beeswax +beet +beetle +beetled +beetles +beetling +beetroot +beetroots +beets +befall +befallen +befalling +befalls +befell +befit +befits +befitted +befitting +before +beforehand +befriend +befriended +befriending +befriends +befuddled +beg +began +begat +beget +begets +begetter +begetters +begetting +beggar +beggared +beggaring +beggarly +beggars +begged +begging +begin +beginner +beginners +beginning +beginnings +begins +begone +begonia +begonias +begot +begotten +begrudge +begrudged +begrudges +begrudging +begrudgingly +begs +beguile +beguiled +beguiles +beguiling +beguilingly +begum +begums +begun +behalf +behave +behaved +behaves +behaving +behavior +behavioral +behaviorism +behaviorist +behaviorists +behaviors +behaviour +behavioural +behaviourism +behaviourist +behaviourists +behaviours +behead +beheaded +beheading +beheads +beheld +behest +behind +behindhand +behinds +behold +beholden +beholder +beholders +beholding +beholds +behoove +behooved +behooves +behove +behoved +behoves +beige +being +beings +bejeweled +bejewelled +belabor +belabored +belaboring +belabors +belabour +belaboured +belabouring +belabours +belated +belatedly +belay +belayed +belaying +belays +belch +belched +belches +belching +beleaguered +belfries +belfry +belie +belied +belief +beliefs +belies +believable +believe +believed +believer +believers +believes +believing +belittle +belittled +belittles +belittling +bell +belladonna +bellboy +bellboys +belle +belles +bellhop +bellhops +bellicose +bellicosity +bellied +bellies +belligerence +belligerency +belligerent +belligerently +belligerents +bellow +bellowed +bellowing +bellows +bells +bellwether +bellwethers +belly +bellyache +bellyached +bellyaches +bellyaching +bellying +belong +belonged +belonging +belongings +belongs +beloved +below +belt +belted +belting +belts +beltway +beltways +belying +bemoan +bemoaned +bemoaning +bemoans +bemused +bench +benches +benchmark +benchmarks +bend +bendable +bender +benders +bendier +bendiest +bending +bends +bendy +beneath +benedictine +benediction +benedictions +benefaction +benefactions +benefactor +benefactors +benefactress +benefactresses +benefice +beneficence +beneficent +benefices +beneficial +beneficiaries +beneficiary +benefit +benefited +benefiting +benefits +benefitted +benefitting +benevolence +benevolent +benevolently +benighted +benign +benignly +bent +bents +benumbed +benzene +bequeath +bequeathed +bequeathing +bequeaths +bequest +bequests +berate +berated +berates +berating +bereaved +bereavement +bereavements +bereft +beret +berets +berk +berks +berries +berry +berserk +berth +berthed +berthing +berths +beseech +beseeched +beseeches +beseeching +beseechingly +beset +besets +besetting +beside +besides +besiege +besieged +besieges +besieging +besmirch +besmirched +besmirches +besmirching +besotted +besought +bespeak +bespeaking +bespeaks +bespectacled +bespoke +bespoken +best +bested +bestial +bestiality +bestiaries +bestiary +besting +bestir +bestirred +bestirring +bestirs +bestow +bestowed +bestowing +bestows +bestridden +bestride +bestrides +bestriding +bestrode +bests +bestseller +bestsellers +bestselling +bet +beta +betas +betel +betoken +betokened +betokening +betokens +betray +betrayal +betrayals +betrayed +betrayer +betrayers +betraying +betrays +betroth +betrothal +betrothals +betrothed +betrothing +betroths +bets +betted +better +bettered +bettering +betterment +betters +betting +between +betwixt +bevel +beveled +bevelled +bevels +beverage +beverages +bevies +bevvies +bevvy +bevy +bewail +bewailed +bewailing +bewails +beware +bewigged +bewilder +bewildered +bewildering +bewilderingly +bewilderment +bewilders +bewitch +bewitched +bewitches +bewitching +beyond +bhaji +biannual +bias +biased +biases +biasing +biassed +biassing +biathlon +bib +bible +bibles +biblical +bibliographer +bibliographers +bibliographies +bibliography +bibliophile +bibliophiles +bibs +bicameral +bicarb +bicarbonate +bicentenaries +bicentenary +bicentennial +bicentennials +biceps +bicker +bickered +bickering +bickers +bicycle +bicycled +bicycles +bicycling +bicyclist +bicyclists +bid +bidden +bidder +bidders +biddies +bidding +biddy +bide +bided +bides +bidet +bidets +biding +bids +biennial +biennially +biennials +bier +biers +biff +biffed +biffing +biffs +bifocal +bifocals +bifurcate +bifurcated +bifurcates +bifurcating +bifurcation +bifurcations +big +bigamist +bigamists +bigamous +bigamy +bigger +biggest +biggie +biggies +bight +bights +bigness +bigot +bigoted +bigotry +bigots +bigwig +bigwigs +bijou +bike +biked +biker +bikers +bikes +biking +bikini +bikinis +bilabial +bilabials +bilateral +bilaterally +bilberries +bilberry +bile +bilge +bilges +bilingual +bilinguals +bilious +bilk +bilked +bilking +bilks +bill +billboard +billboards +billed +billet +billeted +billeting +billets +billfold +billfolds +billhook +billhooks +billiard +billiards +billies +billing +billion +billionaire +billionaires +billions +billionth +billionths +billow +billowed +billowing +billows +bills +billy +billycan +billycans +bimbo +bimbos +bimonthly +bin +binary +bind +binder +binders +binding +bindings +binds +bindweed +binge +binged +bingeing +binges +binging +bingo +binman +binmen +binned +binning +binoculars +binomial +binomials +bins +biochemical +biochemist +biochemistry +biochemists +biodegradable +biodegrade +biodegraded +biodegrades +biodegrading +biodiversity +biographer +biographers +biographical +biographies +biography +biological +biologically +biologist +biologists +biology +biomass +bionic +biophysics +biopic +biopics +biopsies +biopsy +biorhythms +biosphere +biotechnology +bipartisan +biped +bipeds +biplane +biplanes +birch +birched +birches +birching +bird +birdbrain +birdbrains +birdcage +birdcages +birdie +birdied +birdies +birdlike +birds +birdseed +birdsong +birdying +birth +birthday +birthdays +birthing +birthmark +birthmarks +birthplace +birthplaces +birthright +birthrights +births +biscuit +biscuits +bisect +bisected +bisecting +bisects +bisexual +bisexuality +bisexuals +bishop +bishopric +bishoprics +bishops +bison +bisons +bisque +bistro +bistros +bit +bitch +bitched +bitches +bitchier +bitchiest +bitchiness +bitching +bitchy +bite +bites +biting +bitingly +bitmap +bitmaps +bits +bitten +bitter +bitterest +bitterly +bittern +bitterness +bitterns +bitters +bittersweet +bitty +bitumen +bituminous +bivalve +bivalves +bivouac +bivouacked +bivouacking +bivouacs +biweekly +biz +bizarre +bizarrely +blab +blabbed +blabber +blabbered +blabbering +blabbermouth +blabbermouths +blabbers +blabbing +blabs +black +blackball +blackballed +blackballing +blackballs +blackberries +blackberry +blackberrying +blackbird +blackbirds +blackboard +blackboards +blackcurrant +blackcurrants +blacked +blacken +blackened +blackening +blackens +blacker +blackest +blackguard +blackguards +blackhead +blackheads +blacking +blackjack +blackjacks +blackleg +blacklegs +blacklist +blacklisted +blacklisting +blacklists +blackmail +blackmailed +blackmailer +blackmailers +blackmailing +blackmails +blackness +blackout +blackouts +blacks +blacksmith +blacksmiths +blackthorn +blackthorns +blacktop +bladder +bladders +blade +blades +blag +blagged +blagging +blags +blah +blame +blamed +blameless +blamelessly +blames +blameworthy +blaming +blanch +blanched +blanches +blanching +blancmange +blancmanges +bland +blander +blandest +blandishments +blandly +blandness +blank +blanked +blanket +blanketed +blanketing +blankets +blanking +blankly +blankness +blanks +blare +blared +blares +blaring +blarney +blase +blaspheme +blasphemed +blasphemer +blasphemers +blasphemes +blasphemies +blaspheming +blasphemous +blasphemously +blasphemy +blast +blasted +blasting +blasts +blatant +blatantly +blather +blathered +blathering +blathers +blaze +blazed +blazer +blazers +blazes +blazing +blazon +blazoned +blazoning +blazons +bleach +bleached +bleachers +bleaches +bleaching +bleak +bleaker +bleakest +bleakly +bleakness +blearily +bleary +bleat +bleated +bleating +bleats +bled +bleed +bleeder +bleeders +bleeding +bleeds +bleep +bleeped +bleeper +bleepers +bleeping +bleeps +blemish +blemished +blemishes +blemishing +blench +blenched +blenches +blenching +blend +blended +blender +blenders +blending +blends +bless +blessed +blessedly +blessedness +blesses +blessing +blessings +blest +blether +blethered +blethering +blethers +blew +blight +blighted +blighter +blighters +blighting +blights +blimey +blimp +blimpish +blimps +blind +blinded +blinder +blinders +blindfold +blindfolded +blindfolding +blindfolds +blinding +blindingly +blindly +blindness +blinds +blindside +blindsided +blindsides +blindsiding +blink +blinked +blinkered +blinkers +blinking +blinks +blip +blips +bliss +blissful +blissfully +blister +blistered +blistering +blisters +blithe +blithely +blitz +blitzed +blitzes +blitzing +blitzkrieg +blitzkriegs +blizzard +blizzards +bloated +bloater +bloaters +bloating +blob +blobs +bloc +block +blockade +blockaded +blockades +blockading +blockage +blockages +blockbuster +blockbusters +blockbusting +blocked +blockhead +blockheads +blocking +blocks +blocs +bloke +blokes +blokish +blond +blonde +blonder +blondes +blonds +blood +bloodbath +bloodbaths +bloodcurdling +blooded +bloodhound +bloodhounds +bloodied +bloodier +bloodiest +bloodily +blooding +bloodless +bloodlessly +bloodletting +bloodline +bloodlines +bloods +bloodshed +bloodshot +bloodstain +bloodstained +bloodstains +bloodstock +bloodstream +bloodstreams +bloodsucker +bloodsuckers +bloodthirsty +bloody +bloodying +bloom +bloomed +bloomer +bloomers +blooming +blooms +blooper +bloopers +blossom +blossomed +blossoming +blossoms +blot +blotch +blotched +blotches +blotchy +blots +blotted +blotter +blotters +blotting +blotto +blouse +blouses +blow +blower +blowers +blowhard +blowhards +blowhole +blowholes +blowing +blowlamp +blowlamps +blown +blowout +blowouts +blowpipe +blowpipes +blows +blowsier +blowsiest +blowsy +blowtorch +blowtorches +blowup +blowups +blowy +blowzier +blowziest +blowzy +blub +blubbed +blubber +blubbered +blubbering +blubbers +blubbing +blubs +bludgeon +bludgeoned +bludgeoning +bludgeons +blue +bluebell +bluebells +blueberries +blueberry +bluebird +bluebirds +bluebottle +bluebottles +bluegrass +blueish +bluejay +bluejays +blueprint +blueprints +bluer +blues +bluest +bluestocking +bluestockings +bluesy +bluff +bluffed +bluffing +bluffs +bluish +blunder +blunderbuss +blunderbusses +blundered +blunderer +blunderers +blundering +blunders +blunt +blunted +blunter +bluntest +blunting +bluntly +bluntness +blunts +blur +blurb +blurbs +blurred +blurring +blurry +blurs +blurt +blurted +blurting +blurts +blush +blushed +blusher +blushers +blushes +blushing +bluster +blustered +blustering +blusters +blustery +boa +boar +board +boarded +boarder +boarders +boarding +boardroom +boardrooms +boards +boardwalk +boardwalks +boars +boas +boast +boasted +boastful +boastfully +boastfulness +boasting +boasts +boat +boater +boaters +boathouse +boathouses +boating +boatload +boatloads +boatman +boatmen +boats +boatswain +boatswains +boatyard +boatyards +bob +bobbed +bobbies +bobbin +bobbing +bobbins +bobble +bobbles +bobby +bobcat +bobcats +bobs +bobsled +bobsleds +bobsleigh +bobsleighs +bod +bodacious +bode +boded +bodega +bodegas +bodes +bodge +bodged +bodges +bodging +bodice +bodices +bodies +bodily +boding +bodkin +bodkins +bods +body +bodybuilding +bodyguard +bodyguards +bodysuit +bodysuits +bodywork +boffin +boffins +bog +bogey +bogeyman +bogeymen +bogeys +bogged +boggier +boggiest +bogging +boggle +boggled +boggles +boggling +boggy +bogie +bogies +bogs +bogus +bogy +bohemian +bohemians +boil +boiled +boiler +boilers +boiling +boils +boisterous +boisterously +bold +bolder +boldest +boldly +boldness +bole +bolero +boleros +boles +boll +bollard +bollards +bollocking +bollockings +bollocks +bolls +bologna +boloney +bolshie +bolshy +bolster +bolstered +bolstering +bolsters +bolt +bolted +bolthole +boltholes +bolting +bolts +bomb +bombard +bombarded +bombardier +bombardiers +bombarding +bombardment +bombardments +bombards +bombast +bombastic +bombed +bomber +bombers +bombing +bombings +bombs +bombshell +bombshells +bombsite +bombsites +bonanza +bonanzas +bonbon +bonbons +bonce +bonces +bond +bondage +bonded +bondholder +bondholders +bonding +bonds +bone +boned +bonehead +boneheads +bonemeal +boner +boners +bones +boneshaker +boneshakers +bonfire +bonfires +bong +bongo +bongoes +bongos +bongs +bonhomie +bonier +boniest +boning +bonk +bonked +bonkers +bonking +bonks +bonnet +bonnets +bonnier +bonniest +bonny +bonsai +bonus +bonuses +bony +boo +boob +boobed +boobies +boobing +boobs +booby +booed +booger +boogers +boogeyman +boogeymen +boogie +boogied +boogieing +boogies +boohoo +booing +book +bookable +bookbinder +bookbinders +bookbinding +bookcase +bookcases +booked +bookend +bookends +bookie +bookies +booking +bookings +bookish +bookkeeper +bookkeepers +bookkeeping +booklet +booklets +bookmaker +bookmakers +bookmaking +bookmark +bookmarked +bookmarking +bookmarks +bookmobile +bookmobiles +bookplate +bookplates +books +bookseller +booksellers +bookshelf +bookshelves +bookshop +bookshops +bookstall +bookstalls +bookstore +bookstores +bookworm +bookworms +boom +boomed +boomer +boomerang +boomeranged +boomeranging +boomerangs +boomers +booming +booms +boon +boondocks +boondoggle +boonies +boons +boor +boorish +boors +boos +boost +boosted +booster +boosters +boosting +boosts +boot +booted +bootee +bootees +booth +booths +bootie +booties +booting +bootlace +bootlaces +bootleg +bootlegged +bootlegger +bootleggers +bootlegging +bootlegs +boots +booty +booze +boozed +boozer +boozers +boozes +boozing +boozy +bop +bopped +bopping +bops +borax +bordello +bordellos +border +bordered +bordering +borderland +borderlands +borderline +borderlines +borders +bore +bored +boredom +borehole +boreholes +bores +boring +boringly +born +borne +borough +boroughs +borrow +borrowed +borrower +borrowers +borrowing +borrowings +borrows +borscht +borstal +borstals +bosh +bosom +bosoms +bosomy +boss +bossed +bosses +bossily +bossiness +bossing +bossy +bosun +bosuns +botanical +botanist +botanists +botany +botch +botched +botches +botching +both +bother +botheration +bothered +bothering +bothers +bothersome +bottle +bottled +bottleneck +bottlenecks +bottler +bottlers +bottles +bottling +bottom +bottomed +bottoming +bottomless +bottoms +botulism +boudoir +boudoirs +bouffant +bouffants +bougainvillaea +bougainvillaeas +bougainvillea +bougainvilleas +bough +boughs +bought +bouillabaisse +bouillon +bouillons +boulder +boulders +boules +boulevard +boulevards +bounce +bounced +bouncer +bouncers +bounces +bouncier +bounciest +bouncing +bouncy +bound +boundaries +boundary +bounded +bounder +bounders +bounding +boundless +bounds +bounteous +bounties +bountiful +bounty +bouquet +bouquets +bourbon +bourbons +bourgeois +bourgeoisie +bout +boutique +boutiques +boutonniere +boutonnieres +bouts +bovine +bovver +bow +bowdlerise +bowdlerised +bowdlerises +bowdlerising +bowdlerize +bowdlerized +bowdlerizes +bowdlerizing +bowed +bowel +bowels +bower +bowers +bowing +bowl +bowled +bowler +bowlers +bowling +bowls +bowman +bowmen +bows +box +boxcar +boxcars +boxed +boxer +boxers +boxes +boxing +boxroom +boxrooms +boxwood +boxy +boy +boycott +boycotted +boycotting +boycotts +boyfriend +boyfriends +boyhood +boyish +boyishly +boys +bozo +bozos +bra +brace +braced +bracelet +bracelets +braces +bracing +bracken +bracket +bracketed +bracketing +brackets +brackish +bradawl +bradawls +brae +brag +braggart +braggarts +bragged +bragging +brags +braid +braided +braiding +braids +braille +brain +brainchild +brained +brainier +brainiest +braining +brainless +brainpower +brains +brainstorm +brainstormed +brainstorming +brainstorms +brainteaser +brainteasers +brainwash +brainwashed +brainwashes +brainwashing +brainwave +brainwaves +brainy +braise +braised +braises +braising +brake +braked +brakes +braking +bramble +brambles +bran +branch +branched +branches +branching +brand +branded +brandies +branding +brandish +brandished +brandishes +brandishing +brands +brandy +bras +brash +brasher +brashest +brashly +brashness +brass +brasserie +brasseries +brasses +brassier +brassiere +brassieres +brassiest +brassy +brat +brats +bravado +brave +braved +bravely +braver +bravery +braves +bravest +braving +bravo +bravura +brawl +brawled +brawler +brawlers +brawling +brawls +brawn +brawnier +brawniest +brawny +bray +brayed +braying +brays +brazen +brazened +brazening +brazenly +brazens +brazier +braziers +breach +breached +breaches +breaching +bread +breadbasket +breadbaskets +breadboard +breadboards +breadbox +breadboxes +breadcrumb +breadcrumbs +breaded +breadfruit +breadfruits +breading +breadline +breads +breadth +breadths +breadwinner +breadwinners +break +breakable +breakage +breakages +breakaway +breakaways +breakdown +breakdowns +breaker +breakers +breakfast +breakfasted +breakfasting +breakfasts +breaking +breakneck +breakout +breakouts +breaks +breakthrough +breakthroughs +breakup +breakups +breakwater +breakwaters +bream +breast +breastbone +breastbones +breasted +breastfed +breastfeed +breastfeeding +breastfeeds +breasting +breastplate +breastplates +breasts +breaststroke +breath +breathable +breathalyse +breathalysed +breathalyser +breathalysers +breathalyses +breathalysing +breathalyze +breathalyzed +breathalyzer +breathalyzers +breathalyzes +breathalyzing +breathe +breathed +breather +breathers +breathes +breathing +breathless +breathlessly +breathlessness +breaths +breathtaking +breathtakingly +breathy +bred +breech +breeches +breed +breeder +breeders +breeding +breeds +breeze +breezed +breezes +breezily +breeziness +breezing +breezy +brethren +brevity +brew +brewed +brewer +breweries +brewers +brewery +brewing +brews +briar +briars +bribe +bribed +bribery +bribes +bribing +brick +brickbat +brickbats +bricked +brickie +brickies +bricking +bricklayer +bricklayers +bricklaying +bricks +brickwork +brickyard +brickyards +bridal +bride +bridegroom +bridegrooms +brides +bridesmaid +bridesmaids +bridge +bridged +bridgehead +bridgeheads +bridges +bridging +bridle +bridled +bridles +bridleway +bridleways +bridling +brie +brief +briefcase +briefcases +briefed +briefer +briefest +briefing +briefings +briefly +briefs +brier +briers +brig +brigade +brigades +brigadier +brigadiers +brigand +brigands +bright +brighten +brightened +brightening +brightens +brighter +brightest +brightly +brightness +brights +brigs +brill +brilliance +brilliant +brilliantine +brilliantly +brim +brimful +brimmed +brimming +brims +brimstone +brindled +brine +bring +bringing +brings +brink +brinkmanship +brinksmanship +briny +brioche +brioches +briquette +briquettes +brisk +brisker +briskest +brisket +briskly +briskness +bristle +bristled +bristles +bristling +bristly +britches +brittle +bro +broach +broached +broaches +broaching +broad +broadcast +broadcaster +broadcasters +broadcasting +broadcasts +broaden +broadened +broadening +broadens +broader +broadest +broadly +broadminded +broadness +broads +broadsheet +broadsheets +broadside +broadsides +broadsword +broadswords +brocade +brocades +broccoli +brochure +brochures +brogue +brogues +broil +broiled +broiler +broilers +broiling +broils +broke +broken +broker +brokerage +brokered +brokering +brokers +brollies +brolly +bromide +bromides +bronchial +bronchitic +bronchitis +bronco +broncos +brontosaurus +brontosauruses +bronze +bronzed +bronzes +brooch +brooches +brood +brooded +broodily +broodiness +brooding +broods +broody +brook +brooked +brooking +brooks +broom +brooms +broomstick +broomsticks +bros +broth +brothel +brothels +brother +brotherhood +brotherhoods +brotherly +brothers +broths +brougham +broughams +brought +brouhaha +brow +browbeat +browbeaten +browbeating +browbeats +brown +browned +browner +brownest +brownfield +brownie +brownies +browning +brownish +browns +brownstone +brownstones +brows +browse +browsed +browser +browsers +browses +browsing +bruise +bruised +bruiser +bruisers +bruises +bruising +bruit +bruited +bruiting +bruits +brunch +brunches +brunette +brunettes +brush +brushed +brushes +brushing +brushstroke +brushstrokes +brushwood +brushwork +brusque +brusquely +brusqueness +brutal +brutalise +brutalised +brutalises +brutalising +brutalities +brutality +brutalize +brutalized +brutalizes +brutalizing +brutally +brute +brutes +brutish +brutishness +bub +bubble +bubbled +bubblegum +bubbles +bubbling +bubbly +bubs +buccaneer +buccaneers +buck +bucked +bucket +bucketed +bucketful +bucketfuls +bucketing +buckets +bucking +buckle +buckled +buckles +buckling +buckram +bucks +buckshot +buckskin +buckwheat +bucolic +bud +budded +buddies +budding +buddy +budge +budged +budgerigar +budgerigars +budges +budget +budgetary +budgeted +budgeting +budgets +budgie +budgies +budging +buds +buff +buffalo +buffaloes +buffed +buffer +buffered +buffering +buffers +buffet +buffeted +buffeting +buffetings +buffets +buffing +buffoon +buffoonery +buffoons +buffs +bug +bugbear +bugbears +bugged +bugger +buggered +buggering +buggers +buggery +buggies +bugging +buggy +bugle +bugler +buglers +bugles +bugs +build +builder +builders +building +buildings +builds +built +bulb +bulbous +bulbs +bulge +bulged +bulges +bulging +bulgy +bulimia +bulimic +bulimics +bulk +bulked +bulkhead +bulkheads +bulkier +bulkiest +bulking +bulks +bulky +bull +bulldog +bulldogs +bulldoze +bulldozed +bulldozer +bulldozers +bulldozes +bulldozing +bullet +bulletin +bulletins +bulletproof +bullets +bullfight +bullfighter +bullfighters +bullfighting +bullfights +bullfinch +bullfinches +bullfrog +bullfrogs +bullhorn +bullhorns +bullied +bullies +bullion +bullish +bullock +bullocks +bullring +bullrings +bulls +bullshit +bullshits +bullshitted +bullshitter +bullshitters +bullshitting +bullwhip +bullwhips +bully +bullying +bulrush +bulrushes +bulwark +bulwarks +bum +bumbag +bumbags +bumble +bumblebee +bumblebees +bumbled +bumbles +bumbling +bumf +bummed +bummer +bummers +bumming +bump +bumped +bumper +bumpers +bumph +bumpier +bumpiest +bumping +bumpkin +bumpkins +bumps +bumptious +bumptiousness +bumpy +bums +bun +bunch +bunched +bunches +bunching +bundle +bundled +bundles +bundling +bung +bungalow +bungalows +bunged +bungee +bungees +bunging +bungle +bungled +bungler +bunglers +bungles +bungling +bungs +bunion +bunions +bunk +bunked +bunker +bunkers +bunkhouse +bunkhouses +bunking +bunks +bunkum +bunnies +bunny +buns +bunt +bunted +bunting +bunts +buoy +buoyancy +buoyant +buoyantly +buoyed +buoying +buoys +bur +burble +burbled +burbles +burbling +burden +burdened +burdening +burdens +burdensome +bureau +bureaucracies +bureaucracy +bureaucrat +bureaucratic +bureaucratically +bureaucrats +bureaus +bureaux +burgeon +burgeoned +burgeoning +burgeons +burger +burgers +burgh +burgher +burghers +burghs +burglar +burglaries +burglarize +burglarized +burglarizes +burglarizing +burglars +burglary +burgle +burgled +burgles +burgling +burgundies +burgundy +burial +burials +buried +buries +burk +burks +burlap +burlesque +burlesques +burlier +burliest +burly +burn +burned +burner +burners +burning +burnish +burnished +burnishes +burnishing +burnout +burnouts +burns +burnt +burp +burped +burping +burps +burr +burrito +burritos +burrow +burrowed +burrowing +burrows +burrs +burs +bursar +bursaries +bursars +bursary +burst +bursting +bursts +bury +burying +bus +busbies +busboy +busboys +busby +bused +buses +bush +bushed +bushel +bushels +bushes +bushier +bushiest +bushman +bushmen +bushy +busied +busier +busies +busiest +busily +business +businesses +businesslike +businessman +businessmen +businesswoman +businesswomen +busing +busk +busked +busker +buskers +busking +busks +busload +busloads +bussed +busses +bussing +bust +busted +buster +bustier +bustiers +busting +bustle +bustled +bustles +bustling +busts +busty +busy +busybodies +busybody +busying +busywork +but +butane +butch +butcher +butchered +butchering +butchers +butchery +butler +butlers +buts +butt +butted +butter +buttercup +buttercups +buttered +butterfingers +butterflies +butterfly +buttering +buttermilk +butters +butterscotch +buttery +butties +butting +buttock +buttocks +button +buttoned +buttonhole +buttonholed +buttonholes +buttonholing +buttoning +buttons +buttress +buttressed +buttresses +buttressing +butts +butty +buxom +buy +buyer +buyers +buying +buyout +buyouts +buys +buzz +buzzard +buzzards +buzzed +buzzer +buzzers +buzzes +buzzing +buzzword +buzzwords +by +bye +byes +bygone +bygones +bylaw +bylaws +byline +bylines +bypass +bypassed +bypasses +bypassing +byplay +byproduct +byproducts +byre +byres +bystander +bystanders +byte +bytes +byway +byways +byword +bywords +byzantine +cab +cabal +cabals +cabaret +cabarets +cabbage +cabbages +cabbie +cabbies +cabby +cabdriver +cabdrivers +caber +cabers +cabin +cabinet +cabinetmaker +cabinetmakers +cabinets +cabins +cable +cabled +cablegram +cablegrams +cables +cabling +caboose +cabooses +cabs +cacao +cache +caches +cachet +cackle +cackled +cackles +cackling +cacophonies +cacophonous +cacophony +cacti +cactus +cactuses +cad +cadaver +cadaverous +cadavers +caddie +caddied +caddies +caddy +caddying +cadence +cadences +cadenza +cadenzas +cadet +cadets +cadge +cadged +cadger +cadgers +cadges +cadging +cadmium +cadre +cadres +cads +caesarean +caesareans +caesura +caesuras +cafe +cafes +cafeteria +cafeterias +cafetiere +cafetieres +caff +caffeine +caffs +caftan +caftans +cage +caged +cages +cagey +cagier +cagiest +cagily +caginess +caging +cagoule +cagoules +caiman +caimans +cairn +cairns +cajole +cajoled +cajoles +cajoling +cake +caked +cakes +cakewalk +caking +calabash +calabashes +calamine +calamities +calamitous +calamitously +calamity +calcified +calcifies +calcify +calcifying +calcium +calculable +calculate +calculated +calculates +calculating +calculation +calculations +calculator +calculators +calculus +caldron +caldrons +calendar +calendars +calf +calfskin +caliber +calibers +calibrate +calibrated +calibrates +calibrating +calibration +calibrations +calibre +calibres +calico +calif +califs +caliper +calipers +caliph +caliphate +caliphates +caliphs +calisthenics +call +called +caller +callers +calligrapher +calligraphers +calligraphy +calling +callings +calliper +callipers +callisthenics +callous +calloused +callously +callousness +callow +calls +callus +calluses +calm +calmed +calmer +calmest +calming +calmly +calmness +calms +caloric +calorie +calories +calorific +calumnies +calumny +calve +calved +calves +calving +calyces +calypso +calypsos +calyx +calyxes +cam +camaraderie +camber +cambers +cambric +camcorder +camcorders +came +camel +camellia +camellias +camels +cameo +cameos +camera +cameraman +cameramen +cameras +camerawoman +camerawomen +camerawork +camiknickers +camisole +camisoles +camomile +camomiles +camouflage +camouflaged +camouflages +camouflaging +camp +campaign +campaigned +campaigner +campaigners +campaigning +campaigns +campanile +campaniles +campanologist +campanologists +campanology +camped +camper +campers +campfire +campfires +campground +campgrounds +camphor +camping +camps +campsite +campsites +campus +campuses +campy +cams +camshaft +camshafts +can +canal +canalisation +canalise +canalised +canalises +canalising +canalization +canalize +canalized +canalizes +canalizing +canals +canape +canapes +canard +canards +canaries +canary +canasta +cancan +cancans +cancel +canceled +canceling +cancellation +cancellations +cancelled +cancelling +cancels +cancer +cancerous +cancers +candelabra +candelabras +candelabrum +candelabrums +candid +candida +candidacies +candidacy +candidate +candidates +candidature +candidatures +candidly +candied +candies +candle +candlelight +candlelit +candles +candlestick +candlesticks +candlewick +candor +candour +candy +candyfloss +cane +caned +canes +canine +canines +caning +canister +canisters +canker +cankers +cannabis +canned +cannelloni +canneries +cannery +cannibal +cannibalise +cannibalised +cannibalises +cannibalising +cannibalism +cannibalistic +cannibalize +cannibalized +cannibalizes +cannibalizing +cannibals +cannier +canniest +cannily +canning +cannon +cannonade +cannonades +cannonball +cannonballs +cannoned +cannoning +cannons +cannot +canny +canoe +canoed +canoeing +canoeist +canoeists +canoes +canon +canonical +canonisation +canonisations +canonise +canonised +canonises +canonising +canonization +canonizations +canonize +canonized +canonizes +canonizing +canons +canoodle +canoodled +canoodles +canoodling +canopied +canopies +canopy +cans +cant +cantaloup +cantaloupe +cantaloupes +cantaloups +cantankerous +cantata +cantatas +canted +canteen +canteens +canter +cantered +cantering +canters +canticle +canticles +cantilever +cantilevers +canting +canto +canton +cantonment +cantonments +cantons +cantor +cantors +cantos +cants +canvas +canvases +canvass +canvassed +canvasser +canvassers +canvasses +canvassing +canyon +canyoning +canyons +cap +capabilities +capability +capable +capably +capacious +capacities +capacitor +capacitors +capacity +cape +caped +caper +capered +capering +capers +capes +capillaries +capillary +capital +capitalisation +capitalise +capitalised +capitalises +capitalising +capitalism +capitalist +capitalistic +capitalists +capitalization +capitalize +capitalized +capitalizes +capitalizing +capitals +capitation +capitations +capitulate +capitulated +capitulates +capitulating +capitulation +capitulations +capon +capons +capped +capping +cappuccino +cappuccinos +caprice +caprices +capricious +capriciously +capriciousness +caps +capsicum +capsicums +capsize +capsized +capsizes +capsizing +capstan +capstans +capsule +capsules +captain +captaincies +captaincy +captained +captaining +captains +caption +captioned +captioning +captions +captious +captivate +captivated +captivates +captivating +captive +captives +captivity +captor +captors +capture +captured +captures +capturing +car +carafe +carafes +caramel +caramelise +caramelised +caramelises +caramelising +caramelize +caramelized +caramelizes +caramelizing +caramels +carapace +carapaces +carat +carats +caravan +caravanning +caravans +caraway +caraways +carbine +carbines +carbohydrate +carbohydrates +carbolic +carbon +carbonated +carboniferous +carbonise +carbonised +carbonises +carbonising +carbonize +carbonized +carbonizes +carbonizing +carbons +carboy +carboys +carbuncle +carbuncles +carburetor +carburetors +carburettor +carburettors +carcase +carcases +carcass +carcasses +carcinogen +carcinogenic +carcinogens +carcinoma +carcinomas +card +cardamom +cardamoms +cardamon +cardamons +cardboard +carded +cardholder +cardholders +cardiac +cardie +cardies +cardigan +cardigans +cardinal +cardinals +carding +cardiologist +cardiologists +cardiology +cardiovascular +cards +cardsharp +cardsharps +care +cared +careen +careened +careening +careens +career +careered +careering +careerism +careerist +careerists +careers +carefree +careful +carefully +carefulness +caregiver +caregivers +careless +carelessly +carelessness +carer +carers +cares +caress +caressed +caresses +caressing +caretaker +caretakers +careworn +carfare +cargo +cargoes +cargos +carhop +carhops +caribou +caribous +caricature +caricatured +caricatures +caricaturing +caricaturist +caricaturists +caries +carillon +carillons +caring +carjack +carjacked +carjacker +carjackers +carjacking +carjackings +carjacks +carload +carloads +carmine +carnage +carnal +carnally +carnation +carnations +carnival +carnivals +carnivore +carnivores +carnivorous +carob +carobs +carol +caroled +caroling +carolled +carolling +carols +carouse +caroused +carousel +carousels +carouses +carousing +carp +carped +carpenter +carpenters +carpentry +carpet +carpetbagger +carpetbaggers +carpeted +carpeting +carpets +carping +carpool +carpooled +carpooling +carpools +carport +carports +carps +carrel +carrels +carriage +carriages +carriageway +carriageways +carried +carrier +carriers +carries +carrion +carrot +carrots +carroty +carry +carryall +carryalls +carrycot +carrycots +carrying +carryout +cars +carsick +carsickness +cart +carted +cartel +cartels +carter +carters +carthorse +carthorses +cartilage +cartilages +carting +cartload +cartloads +cartographer +cartographers +cartography +carton +cartons +cartoon +cartoonist +cartoonists +cartoons +cartridge +cartridges +carts +cartwheel +cartwheeled +cartwheeling +cartwheels +carve +carved +carver +carveries +carvers +carvery +carves +carving +carvings +cascade +cascaded +cascades +cascading +case +casebook +casebooks +cased +caseload +caseloads +casement +casements +cases +casework +caseworker +caseworkers +cash +cashed +cashes +cashew +cashews +cashier +cashiered +cashiering +cashiers +cashing +cashless +cashmere +cashpoint +cashpoints +casing +casings +casino +casinos +cask +casket +caskets +casks +cassava +casserole +casseroled +casseroles +casseroling +cassette +cassettes +cassock +cassocks +cast +castanets +castaway +castaways +caste +castellated +caster +casters +castes +castigate +castigated +castigates +castigating +castigation +casting +castings +castle +castles +castoff +castoffs +castor +castors +castrate +castrated +castrates +castrating +castration +castrations +casts +casual +casually +casualness +casuals +casualties +casualty +casuistry +cat +cataclysm +cataclysmic +cataclysms +catacomb +catacombs +catalepsy +cataleptic +catalog +cataloged +cataloging +catalogs +catalogue +catalogued +catalogues +cataloguing +catalyse +catalysed +catalyses +catalysing +catalysis +catalyst +catalysts +catalytic +catalyze +catalyzed +catalyzes +catalyzing +catamaran +catamarans +catapult +catapulted +catapulting +catapults +cataract +cataracts +catarrh +catastrophe +catastrophes +catastrophic +catastrophically +catatonic +catcall +catcalls +catch +catchall +catchalls +catcher +catchers +catches +catchier +catchiest +catching +catchment +catchments +catchphrase +catchphrases +catchword +catchwords +catchy +catechism +catechisms +categorical +categorically +categories +categorisation +categorisations +categorise +categorised +categorises +categorising +categorization +categorizations +categorize +categorized +categorizes +categorizing +category +cater +catered +caterer +caterers +catering +caterpillar +caterpillars +caters +caterwaul +caterwauled +caterwauling +caterwauls +catfish +catfishes +catgut +catharses +catharsis +cathartic +cathedral +cathedrals +catheter +catheters +cathode +cathodes +catholic +catkin +catkins +catnap +catnapped +catnapping +catnaps +catnip +cats +catsuit +catsuits +catsup +catsups +catteries +cattery +cattier +cattiest +cattily +cattiness +cattle +cattleman +cattlemen +catty +catwalk +catwalks +caucus +caucuses +caught +cauldron +cauldrons +cauliflower +cauliflowers +caulk +caulked +caulking +caulks +causal +causality +causation +causative +cause +caused +causes +causeway +causeways +causing +caustic +caustically +cauterise +cauterised +cauterises +cauterising +cauterize +cauterized +cauterizes +cauterizing +caution +cautionary +cautioned +cautioning +cautions +cautious +cautiously +cautiousness +cavalcade +cavalcades +cavalier +cavalry +cavalryman +cavalrymen +cave +caveat +caveats +caved +caveman +cavemen +caver +cavern +cavernous +caverns +cavers +caves +caviar +caviare +cavil +caviled +caviling +cavilled +cavilling +cavils +caving +cavities +cavity +cavort +cavorted +cavorting +cavorts +caw +cawed +cawing +caws +cayman +caymans +cease +ceased +ceasefire +ceasefires +ceaseless +ceaselessly +ceases +ceasing +cedar +cedars +cedarwood +cede +ceded +cedes +cedilla +cedillas +ceding +ceilidh +ceilidhs +ceiling +ceilings +celeb +celebrant +celebrants +celebrate +celebrated +celebrates +celebrating +celebration +celebrations +celebratory +celebrities +celebrity +celebs +celeriac +celerity +celery +celestial +celibacy +celibate +celibates +cell +cellar +cellars +cellist +cellists +cellmate +cellmates +cello +cellophane +cellos +cellphone +cellphones +cells +cellular +cellulite +celluloid +cellulose +cement +cemented +cementing +cements +cemeteries +cemetery +cenotaph +cenotaphs +censor +censored +censoring +censorious +censors +censorship +censure +censured +censures +censuring +census +censuses +cent +centaur +centaurs +centenarian +centenarians +centenaries +centenary +centennial +centennials +center +centered +centerfold +centerfolds +centering +centerpiece +centerpieces +centers +centigrade +centigram +centigramme +centigrammes +centigrams +centiliter +centiliters +centilitre +centilitres +centimeter +centimeters +centimetre +centimetres +centipede +centipedes +central +centralisation +centralise +centralised +centralises +centralising +centralism +centralist +centrality +centralization +centralize +centralized +centralizes +centralizing +centrally +centre +centred +centrefold +centrefolds +centrepiece +centrepieces +centres +centrifugal +centrifuge +centrifuges +centring +centripetal +centrist +centrists +cents +centuries +centurion +centurions +century +ceramic +ceramics +cereal +cereals +cerebellum +cerebellums +cerebra +cerebral +cerebration +cerebrum +cerebrums +ceremonial +ceremonially +ceremonials +ceremonies +ceremonious +ceremoniously +ceremony +cerise +cert +certain +certainly +certainties +certainty +certifiable +certificate +certificated +certificates +certification +certifications +certified +certifies +certify +certifying +certitude +certitudes +certs +cervical +cervices +cervix +cervixes +cesarean +cesareans +cessation +cessations +cession +cessions +cesspit +cesspits +cesspool +cesspools +cetacean +cetaceans +chafe +chafed +chafes +chaff +chaffed +chaffinch +chaffinches +chaffing +chaffs +chafing +chagrin +chagrined +chain +chained +chaining +chains +chainsaw +chainsaws +chair +chaired +chairing +chairlift +chairlifts +chairman +chairmanship +chairmanships +chairmen +chairperson +chairpersons +chairs +chairwoman +chairwomen +chalet +chalets +chalice +chalices +chalk +chalkboard +chalkboards +chalked +chalkiness +chalking +chalks +chalky +challenge +challenged +challenger +challengers +challenges +challenging +chamber +chamberlain +chamberlains +chambermaid +chambermaids +chambers +chameleon +chameleons +chamois +chamomile +champ +champagne +champagnes +champed +champers +champing +champion +championed +championing +champions +championship +championships +champs +chance +chanced +chancel +chancelleries +chancellery +chancellor +chancellors +chancels +chancery +chances +chancier +chanciest +chancing +chancy +chandelier +chandeliers +chandler +chandlers +change +changeability +changeable +changed +changeless +changeling +changelings +changeover +changeovers +changes +changing +channel +channeled +channeling +channelled +channelling +channels +chant +chanted +chantey +chanteys +chanties +chanting +chants +chanty +chaos +chaotic +chaotically +chap +chaparral +chapati +chapatis +chapatti +chapattis +chapel +chapels +chaperon +chaperone +chaperoned +chaperones +chaperoning +chaperons +chaplain +chaplaincies +chaplaincy +chaplains +chapped +chappies +chapping +chappy +chaps +chapter +chapters +char +charabanc +charabancs +character +characterful +characterisation +characterisations +characterise +characterised +characterises +characterising +characteristic +characteristically +characteristics +characterization +characterizations +characterize +characterized +characterizes +characterizing +characterless +characters +charade +charades +charcoal +chard +charge +chargeable +charged +charger +chargers +charges +charging +chariot +charioteer +charioteers +chariots +charisma +charismatic +charismatics +charitable +charitably +charities +charity +charladies +charlady +charlatan +charlatans +charlie +charlies +charm +charmed +charmer +charmers +charming +charmingly +charmless +charms +charred +charring +chars +chart +charted +charter +chartered +chartering +charters +charting +chartreuse +charts +charwoman +charwomen +chary +chase +chased +chaser +chasers +chases +chasing +chasm +chasms +chassis +chaste +chastely +chasten +chastened +chastening +chastens +chastise +chastised +chastisement +chastises +chastising +chastity +chasuble +chasubles +chat +chateau +chateaus +chateaux +chatelaine +chatelaines +chatline +chatlines +chats +chatted +chattel +chattels +chatter +chatterbox +chatterboxes +chattered +chattering +chatters +chattier +chattiest +chatting +chatty +chauffeur +chauffeured +chauffeuring +chauffeurs +chauvinism +chauvinist +chauvinistic +chauvinistically +chauvinists +cheap +cheapen +cheapened +cheapening +cheapens +cheaper +cheapest +cheaply +cheapness +cheapo +cheapskate +cheapskates +cheat +cheated +cheating +cheats +check +checkbook +checkbooks +checked +checker +checkerboard +checkerboards +checkered +checkers +checking +checklist +checklists +checkmate +checkmated +checkmates +checkmating +checkout +checkouts +checkpoint +checkpoints +checkroom +checkrooms +checks +checkup +checkups +cheddar +cheek +cheekbone +cheekbones +cheeked +cheekier +cheekiest +cheekily +cheekiness +cheeking +cheeks +cheeky +cheep +cheeped +cheeping +cheeps +cheer +cheered +cheerful +cheerfully +cheerfulness +cheerier +cheeriest +cheerily +cheering +cheerio +cheerleader +cheerleaders +cheerless +cheerlessness +cheers +cheery +cheese +cheeseboard +cheeseboards +cheeseburger +cheeseburgers +cheesecake +cheesecakes +cheesecloth +cheeseparing +cheeses +cheesier +cheesiest +cheesy +cheetah +cheetahs +chef +chefs +chemical +chemically +chemicals +chemise +chemises +chemist +chemistry +chemists +chemotherapy +chenille +cheque +chequebook +chequebooks +chequered +cheques +cherish +cherished +cherishes +cherishing +cheroot +cheroots +cherries +cherry +cherub +cherubic +cherubim +cherubs +chervil +chess +chessboard +chessboards +chessman +chessmen +chest +chestnut +chestnuts +chests +chesty +chevron +chevrons +chew +chewed +chewier +chewiest +chewing +chews +chewy +chiaroscuro +chic +chicane +chicanery +chicanes +chick +chickadee +chickadees +chicken +chickened +chickenfeed +chickening +chickenpox +chickens +chickenshit +chickenshits +chickpea +chickpeas +chicks +chickweed +chicory +chide +chided +chides +chiding +chief +chiefly +chiefs +chieftain +chieftains +chiffon +chignon +chignons +chihuahua +chihuahuas +chilblain +chilblains +child +childbearing +childbirth +childcare +childhood +childhoods +childish +childishly +childishness +childless +childlessness +childlike +childminder +childminders +childminding +childproof +children +chili +chilies +chill +chilled +chiller +chillers +chilli +chillier +chillies +chilliest +chilling +chillingly +chills +chilly +chimaera +chimaeras +chime +chimed +chimera +chimeras +chimerical +chimes +chiming +chimney +chimneys +chimp +chimpanzee +chimpanzees +chimps +chin +china +chinchilla +chinchillas +chink +chinked +chinking +chinks +chinless +chinos +chins +chinstrap +chinstraps +chintz +chintzier +chintziest +chintzy +chinwag +chinwags +chip +chipboard +chipmunk +chipmunks +chipolata +chipolatas +chipped +chipper +chippie +chippies +chipping +chippings +chippy +chips +chiropodist +chiropodists +chiropody +chiropractic +chiropractor +chiropractors +chirp +chirped +chirpier +chirpiest +chirpily +chirpiness +chirping +chirps +chirpy +chirrup +chirruped +chirruping +chirrups +chisel +chiseled +chiseler +chiselers +chiseling +chiselled +chiselling +chisels +chit +chitlins +chits +chitterlings +chivalrous +chivalrously +chivalry +chive +chives +chivied +chivies +chivvied +chivvies +chivvy +chivvying +chivy +chivying +chloride +chlorides +chlorinate +chlorinated +chlorinates +chlorinating +chlorine +chlorofluorocarbon +chlorofluorocarbons +chloroform +chloroformed +chloroforming +chloroforms +chlorophyll +choc +chocaholic +chocaholics +chock +chocks +chocoholic +chocoholics +chocolate +chocolates +chocs +choice +choicer +choices +choicest +choir +choirboy +choirboys +choirmaster +choirmasters +choirs +choke +choked +choker +chokers +chokes +choking +cholera +choleric +cholesterol +chomp +chomped +chomping +chomps +choose +chooses +choosier +choosiest +choosing +choosy +chop +chopped +chopper +choppers +choppier +choppiest +chopping +choppy +chops +chopstick +chopsticks +choral +chorale +chorales +chord +chords +chore +choreograph +choreographed +choreographer +choreographers +choreographic +choreographing +choreographs +choreography +chores +chorister +choristers +chortle +chortled +chortles +chortling +chorus +chorused +choruses +chorusing +chose +chosen +chow +chowder +chows +christen +christened +christening +christenings +christens +christian +chromatic +chrome +chromium +chromosomal +chromosome +chromosomes +chronic +chronically +chronicle +chronicled +chronicler +chroniclers +chronicles +chronicling +chronograph +chronographs +chronological +chronologically +chronologies +chronology +chronometer +chronometers +chrysalis +chrysalises +chrysanthemum +chrysanthemums +chubbier +chubbiest +chubbiness +chubby +chuck +chucked +chucking +chuckle +chuckled +chuckles +chuckling +chucks +chuffed +chug +chugged +chugging +chugs +chum +chummed +chummier +chummiest +chummily +chumminess +chumming +chummy +chump +chumps +chums +chunder +chundered +chundering +chunders +chunk +chunkier +chunkiest +chunks +chunky +chunter +chuntered +chuntering +chunters +church +churches +churchgoer +churchgoers +churchgoing +churchman +churchmen +churchwarden +churchwardens +churchwoman +churchwomen +churchyard +churchyards +churlish +churlishly +churlishness +churn +churned +churning +churns +chute +chutes +chutney +chutneys +chutzpah +ciao +cicada +cicadas +cider +ciders +cigar +cigarette +cigarettes +cigars +ciggies +ciggy +cilantro +cinch +cinched +cinches +cinching +cinder +cinders +cine +cinema +cinemas +cinematic +cinematographer +cinematographers +cinematography +cinnamon +cipher +ciphers +circa +circadian +circle +circled +circles +circlet +circlets +circling +circuit +circuitous +circuitously +circuitry +circuits +circular +circularise +circularised +circularises +circularising +circularity +circularize +circularized +circularizes +circularizing +circulars +circulate +circulated +circulates +circulating +circulation +circulations +circulatory +circumcise +circumcised +circumcises +circumcising +circumcision +circumcisions +circumference +circumferences +circumflex +circumflexes +circumlocution +circumlocutions +circumlocutory +circumnavigate +circumnavigated +circumnavigates +circumnavigating +circumnavigation +circumnavigations +circumscribe +circumscribed +circumscribes +circumscribing +circumscription +circumspect +circumspection +circumspectly +circumstance +circumstances +circumstantial +circumvent +circumvented +circumventing +circumvention +circumvents +circus +circuses +cirrhosis +cirrus +cissies +cissy +cistern +cisterns +citadel +citadels +citation +citations +cite +cited +cites +cities +citing +citizen +citizenry +citizens +citizenship +citrus +citruses +city +citywide +civet +civets +civic +civics +civil +civilian +civilians +civilisation +civilisations +civilise +civilised +civilises +civilising +civilities +civility +civilization +civilizations +civilize +civilized +civilizes +civilizing +civilly +civvies +clack +clacked +clacking +clacks +clad +cladding +claim +claimant +claimants +claimed +claiming +claims +clairvoyance +clairvoyant +clairvoyants +clam +clambake +clambakes +clamber +clambered +clambering +clambers +clammed +clammier +clammiest +clamminess +clamming +clammy +clamor +clamored +clamoring +clamorous +clamors +clamour +clamoured +clamouring +clamours +clamp +clampdown +clampdowns +clamped +clamping +clamps +clams +clan +clandestine +clandestinely +clang +clanged +clanger +clangers +clanging +clangor +clangour +clangs +clank +clanked +clanking +clanks +clannish +clans +clansman +clansmen +clanswoman +clanswomen +clap +clapboard +clapboards +clapped +clapper +clapperboard +clapperboards +clappers +clapping +claps +claptrap +claret +clarets +clarification +clarifications +clarified +clarifies +clarify +clarifying +clarinet +clarinetist +clarinetists +clarinets +clarinettist +clarinettists +clarity +clash +clashed +clashes +clashing +clasp +clasped +clasping +clasps +class +classed +classes +classic +classical +classically +classicism +classicist +classicists +classics +classier +classiest +classifiable +classification +classifications +classified +classifieds +classifies +classify +classifying +classing +classless +classlessness +classmate +classmates +classroom +classrooms +classy +clatter +clattered +clattering +clatters +clause +clauses +claustrophobia +claustrophobic +clavichord +clavichords +clavicle +clavicles +claw +clawed +clawing +claws +clay +clayey +clean +cleaned +cleaner +cleaners +cleanest +cleaning +cleanliness +cleanly +cleanness +cleans +cleanse +cleansed +cleanser +cleansers +cleanses +cleansing +cleanup +cleanups +clear +clearance +clearances +cleared +clearer +clearest +clearing +clearings +clearly +clears +clearway +clearways +cleat +cleats +cleavage +cleavages +cleave +cleaved +cleaver +cleavers +cleaves +cleaving +clef +clefs +cleft +clefts +clematis +clematises +clemency +clement +clementine +clementines +clench +clenched +clenches +clenching +clergy +clergyman +clergymen +clergywoman +clergywomen +cleric +clerical +clerics +clerk +clerked +clerking +clerks +clever +cleverer +cleverest +cleverly +cleverness +cliche +cliched +cliches +click +clicked +clicking +clicks +client +clientele +clients +cliff +cliffhanger +cliffhangers +cliffhanging +cliffs +clifftop +clifftops +climactic +climate +climates +climatic +climatologist +climatologists +climatology +climax +climaxed +climaxes +climaxing +climb +climbed +climber +climbers +climbing +climbs +clime +climes +clinch +clinched +clincher +clinchers +clinches +clinching +cling +clingfilm +clinging +clings +clingy +clinic +clinical +clinically +clinician +clinicians +clinics +clink +clinked +clinker +clinkers +clinking +clinks +clip +clipboard +clipboards +clipped +clipper +clippers +clipping +clippings +clips +clique +cliques +cliquey +cliquish +clitoral +clitoris +clitorises +cloak +cloaked +cloaking +cloakroom +cloakrooms +cloaks +clobber +clobbered +clobbering +clobbers +cloche +cloches +clock +clocked +clocking +clocks +clockwise +clockwork +clod +clodhopper +clodhoppers +clods +clog +clogged +clogging +clogs +cloister +cloistered +cloisters +clone +cloned +clones +cloning +clonk +clonked +clonking +clonks +close +closed +closely +closeness +closeout +closeouts +closer +closes +closest +closet +closeted +closeting +closets +closing +closure +closures +clot +cloth +clothe +clothed +clothes +clothesline +clotheslines +clothespin +clothespins +clothing +cloths +clots +clotted +clotting +cloud +cloudburst +cloudbursts +clouded +cloudier +cloudiest +clouding +cloudless +clouds +cloudy +clout +clouted +clouting +clouts +clove +cloven +clover +cloves +clown +clowned +clowning +clownish +clowns +cloying +cloyingly +club +clubbable +clubbed +clubber +clubbers +clubbing +clubhouse +clubhouses +clubland +clubs +cluck +clucked +clucking +clucks +clue +clued +clueless +clues +cluing +clump +clumped +clumping +clumps +clumpy +clumsier +clumsiest +clumsily +clumsiness +clumsy +clung +clunk +clunked +clunker +clunkers +clunking +clunks +clunky +cluster +clustered +clustering +clusters +clutch +clutched +clutches +clutching +clutter +cluttered +cluttering +clutters +coach +coached +coaches +coaching +coachload +coachloads +coachman +coachmen +coachwork +coagulate +coagulated +coagulates +coagulating +coagulation +coal +coalesce +coalesced +coalescence +coalesces +coalescing +coalface +coalfaces +coalfield +coalfields +coalition +coalitions +coalmine +coalmines +coals +coarse +coarsely +coarsen +coarsened +coarseness +coarsening +coarsens +coarser +coarsest +coast +coastal +coasted +coaster +coasters +coastguard +coastguards +coasting +coastline +coastlines +coasts +coat +coated +coating +coatings +coatroom +coatrooms +coats +coattails +coax +coaxed +coaxes +coaxing +coaxingly +cob +cobalt +cobber +cobbers +cobble +cobbled +cobbler +cobblers +cobbles +cobblestone +cobblestones +cobbling +cobnut +cobnuts +cobra +cobras +cobs +cobweb +cobwebbed +cobwebs +cocaine +coccyges +coccyx +coccyxes +cochineal +cochlea +cochleae +cochleas +cock +cockade +cockades +cockamamie +cockatoo +cockatoos +cockchafer +cockchafers +cocked +cockerel +cockerels +cockeyed +cockfight +cockfighting +cockfights +cockier +cockiest +cockiness +cocking +cockle +cockles +cockney +cockneys +cockpit +cockpits +cockroach +cockroaches +cocks +cockscomb +cockscombs +cocksure +cocktail +cocktails +cocky +cocoa +coconut +coconuts +cocoon +cocooned +cocooning +cocoons +cod +coda +codas +coddle +coddled +coddles +coddling +code +coded +codeine +codes +codex +codger +codgers +codices +codicil +codicils +codification +codified +codifies +codify +codifying +coding +codpiece +codpieces +cods +codswallop +coed +coeds +coefficient +coefficients +coequal +coerce +coerced +coerces +coercing +coercion +coercive +coeval +coexist +coexisted +coexistence +coexisting +coexists +coffee +coffees +coffer +cofferdam +cofferdams +coffers +coffin +coffins +cog +cogency +cogent +cogently +cogitate +cogitated +cogitates +cogitating +cogitation +cogitations +cognac +cognacs +cognate +cognates +cognisance +cognisant +cognition +cognitive +cognizance +cognizant +cognoscenti +cogs +cogwheel +cogwheels +cohabit +cohabitation +cohabited +cohabiting +cohabits +cohere +cohered +coherence +coherent +coherently +coheres +cohering +cohesion +cohesive +cohesiveness +cohort +cohorts +coiffed +coiffure +coiffured +coiffures +coil +coiled +coiling +coils +coin +coinage +coinages +coincide +coincided +coincidence +coincidences +coincident +coincidental +coincidentally +coincides +coinciding +coined +coining +coins +coir +coital +coitus +coke +col +cola +colander +colanders +colas +cold +colder +coldest +coldly +coldness +colds +coleslaw +coley +coleys +colic +colicky +colitis +collaborate +collaborated +collaborates +collaborating +collaboration +collaborationist +collaborations +collaborative +collaboratively +collaborator +collaborators +collage +collagen +collages +collapse +collapsed +collapses +collapsible +collapsing +collar +collarbone +collarbones +collared +collaring +collarless +collars +collate +collated +collateral +collates +collating +collation +collations +colleague +colleagues +collect +collectable +collectables +collected +collectible +collectibles +collecting +collection +collections +collective +collectively +collectives +collectivisation +collectivise +collectivised +collectivises +collectivising +collectivism +collectivist +collectivization +collectivize +collectivized +collectivizes +collectivizing +collector +collectors +collects +colleen +colleens +college +colleges +collegiate +collide +collided +collides +colliding +collie +collier +collieries +colliers +colliery +collies +collision +collisions +collocate +collocated +collocates +collocating +collocation +collocations +colloquia +colloquial +colloquialism +colloquialisms +colloquially +colloquies +colloquium +colloquy +collude +colluded +colludes +colluding +collusion +collusive +cologne +colon +colonel +colonels +colonial +colonialism +colonialist +colonialists +colonials +colonies +colonisation +colonise +colonised +coloniser +colonisers +colonises +colonising +colonist +colonists +colonization +colonize +colonized +colonizer +colonizers +colonizes +colonizing +colonnade +colonnaded +colonnades +colons +colony +color +colorant +colorants +coloration +coloratura +coloraturas +colored +coloreds +colorfast +colorful +colorfully +coloring +colorist +colorists +colorization +colorize +colorized +colorizes +colorizing +colorless +colors +colossal +colossally +colossi +colossus +colossuses +colour +colourant +colourants +coloured +coloureds +colourful +colourfully +colouring +colourize +colourized +colourizes +colourizing +colourless +colours +colourway +colourways +cols +colt +coltish +colts +columbine +columbines +column +columnist +columnists +columns +coma +comas +comatose +comb +combat +combatant +combatants +combated +combating +combative +combativeness +combats +combatted +combatting +combed +combination +combinations +combine +combined +combines +combing +combining +combo +combos +combs +combustible +combustion +come +comeback +comebacks +comedian +comedians +comedic +comedienne +comediennes +comedies +comedown +comedowns +comedy +comelier +comeliest +comely +comer +comers +comes +comestibles +comet +comets +comfier +comfiest +comfort +comfortable +comfortably +comforted +comforter +comforters +comforting +comfortingly +comfortless +comforts +comfy +comic +comical +comically +comics +coming +comma +command +commandant +commandants +commanded +commandeer +commandeered +commandeering +commandeers +commander +commanders +commanding +commandment +commandments +commando +commandoes +commandos +commands +commas +commemorate +commemorated +commemorates +commemorating +commemoration +commemorations +commemorative +commence +commenced +commencement +commencements +commences +commencing +commend +commendable +commendably +commendation +commendations +commended +commending +commends +commensurate +commensurately +comment +commentaries +commentary +commentate +commentated +commentates +commentating +commentator +commentators +commented +commenting +comments +commerce +commercial +commercialisation +commercialise +commercialised +commercialises +commercialising +commercialism +commercialization +commercialize +commercialized +commercializes +commercializing +commercially +commercials +commie +commies +commiserate +commiserated +commiserates +commiserating +commiseration +commiserations +commissar +commissariat +commissariats +commissaries +commissars +commissary +commission +commissionaire +commissionaires +commissioned +commissioner +commissioners +commissioning +commissions +commit +commitment +commitments +commits +committal +committals +committed +committee +committees +committing +commode +commodes +commodious +commodities +commodity +commodore +commodores +common +commonalities +commonality +commoner +commoners +commonest +commonly +commonplace +commonplaces +commons +commonwealth +commonwealths +commotion +commotions +communal +communally +commune +communed +communes +communicable +communicant +communicants +communicate +communicated +communicates +communicating +communication +communications +communicative +communicator +communicators +communing +communion +communions +communique +communiques +communism +communist +communists +communities +community +commutable +commutation +commutations +commute +commuted +commuter +commuters +commutes +commuting +compact +compacted +compacting +compactly +compactness +compacts +companies +companion +companionable +companionably +companions +companionship +companionway +companionways +company +comparability +comparable +comparably +comparative +comparatively +comparatives +compare +compared +compares +comparing +comparison +comparisons +compartment +compartmentalise +compartmentalised +compartmentalises +compartmentalising +compartmentalize +compartmentalized +compartmentalizes +compartmentalizing +compartments +compass +compasses +compassion +compassionate +compassionately +compatibility +compatible +compatriot +compatriots +compel +compelled +compelling +compellingly +compels +compendia +compendium +compendiums +compensate +compensated +compensates +compensating +compensation +compensations +compensatory +compere +compered +comperes +compering +compete +competed +competence +competences +competencies +competency +competent +competently +competes +competing +competition +competitions +competitive +competitively +competitiveness +competitor +competitors +compilation +compilations +compile +compiled +compiler +compilers +compiles +compiling +complacence +complacency +complacent +complacently +complain +complainant +complainants +complained +complaining +complains +complaint +complaints +complaisance +complaisant +complement +complementary +complemented +complementing +complements +complete +completed +completely +completeness +completes +completing +completion +completions +complex +complexes +complexion +complexions +complexities +complexity +compliance +compliant +complicate +complicated +complicates +complicating +complication +complications +complicity +complied +complies +compliment +complimentary +complimented +complimenting +compliments +comply +complying +component +components +comport +comported +comporting +comportment +comports +compose +composed +composer +composers +composes +composing +composite +composites +composition +compositions +compositor +compositors +compost +composted +composting +composts +composure +compote +compotes +compound +compounded +compounding +compounds +comprehend +comprehended +comprehending +comprehends +comprehensibility +comprehensible +comprehensibly +comprehension +comprehensions +comprehensive +comprehensively +comprehensiveness +comprehensives +compress +compressed +compresses +compressible +compressing +compression +compressor +compressors +comprise +comprised +comprises +comprising +compromise +compromised +compromises +compromising +comptroller +comptrollers +compulsion +compulsions +compulsive +compulsively +compulsiveness +compulsorily +compulsory +compunction +computation +computational +computations +compute +computed +computer +computerate +computerisation +computerise +computerised +computerises +computerising +computerization +computerize +computerized +computerizes +computerizing +computers +computes +computing +comrade +comradely +comrades +comradeship +con +concatenation +concatenations +concave +concavities +concavity +conceal +concealed +concealing +concealment +conceals +concede +conceded +concedes +conceding +conceit +conceited +conceitedly +conceits +conceivable +conceivably +conceive +conceived +conceives +conceiving +concentrate +concentrated +concentrates +concentrating +concentration +concentrations +concentric +concept +conception +conceptions +concepts +conceptual +conceptualisation +conceptualisations +conceptualise +conceptualised +conceptualises +conceptualising +conceptualization +conceptualizations +conceptualize +conceptualized +conceptualizes +conceptualizing +conceptually +concern +concerned +concernedly +concerning +concerns +concert +concerted +concertgoer +concertgoers +concertina +concertinaed +concertinaing +concertinas +concertmaster +concertmasters +concerto +concertos +concerts +concession +concessionaire +concessionaires +concessionary +concessions +conch +conches +conchie +conchies +conchs +conciliate +conciliated +conciliates +conciliating +conciliation +conciliator +conciliators +conciliatory +concise +concisely +conciseness +concision +conclave +conclaves +conclude +concluded +concludes +concluding +conclusion +conclusions +conclusive +conclusively +concoct +concocted +concocting +concoction +concoctions +concocts +concomitant +concomitantly +concomitants +concord +concordance +concordances +concordat +concordats +concourse +concourses +concrete +concreted +concretely +concretes +concreting +concubine +concubines +concur +concurred +concurrence +concurrences +concurrent +concurrently +concurring +concurs +concuss +concussed +concusses +concussing +concussion +concussions +condemn +condemnation +condemnations +condemnatory +condemned +condemning +condemns +condensation +condensations +condense +condensed +condenser +condensers +condenses +condensing +condescend +condescended +condescending +condescendingly +condescends +condescension +condiment +condiments +condition +conditional +conditionally +conditioned +conditioner +conditioners +conditioning +conditions +condo +condolence +condolences +condom +condominium +condominiums +condoms +condone +condoned +condones +condoning +condor +condors +condos +conduce +conduced +conduces +conducing +conducive +conduct +conducted +conducting +conduction +conductive +conductivity +conductor +conductors +conductress +conductresses +conducts +conduit +conduits +cone +coned +cones +coney +coneys +confab +confabs +confection +confectioner +confectioneries +confectioners +confectionery +confections +confederacies +confederacy +confederate +confederates +confederation +confederations +confer +conference +conferences +conferment +conferments +conferred +conferring +confers +confess +confessed +confesses +confessing +confession +confessional +confessionals +confessions +confessor +confessors +confetti +confidant +confidante +confidantes +confidants +confide +confided +confidence +confidences +confident +confidential +confidentiality +confidentially +confidently +confides +confiding +confidingly +configuration +configurations +configure +configured +configures +configuring +confine +confined +confinement +confinements +confines +confining +confirm +confirmation +confirmations +confirmed +confirming +confirms +confiscate +confiscated +confiscates +confiscating +confiscation +confiscations +conflagration +conflagrations +conflate +conflated +conflates +conflating +conflation +conflations +conflict +conflicted +conflicting +conflicts +confluence +confluences +conform +conformation +conformations +conformed +conforming +conformist +conformists +conformity +conforms +confound +confounded +confounding +confounds +confront +confrontation +confrontational +confrontations +confronted +confronting +confronts +confuse +confused +confusedly +confuses +confusing +confusingly +confusion +confusions +confute +confuted +confutes +confuting +conga +congas +congeal +congealed +congealing +congeals +congenial +congenital +congenitally +conger +congers +congested +congestion +conglomerate +conglomerates +conglomeration +conglomerations +congratulate +congratulated +congratulates +congratulating +congratulation +congratulations +congratulatory +congregant +congregants +congregate +congregated +congregates +congregating +congregation +congregational +congregations +congress +congresses +congressional +congressman +congressmen +congresswoman +congresswomen +congruence +congruent +conical +conies +conifer +coniferous +conifers +coning +conjectural +conjecture +conjectured +conjectures +conjecturing +conjoin +conjoined +conjoining +conjoins +conjugal +conjugate +conjugated +conjugates +conjugating +conjugation +conjugations +conjunction +conjunctions +conjunctivitis +conjuncture +conjunctures +conjure +conjured +conjurer +conjurers +conjures +conjuring +conjuror +conjurors +conk +conked +conker +conkers +conking +conks +connect +connected +connecting +connection +connections +connective +connectives +connector +connectors +connects +conned +connexion +connexions +conning +connivance +connive +connived +connives +conniving +connoisseur +connoisseurs +connotation +connotations +connote +connoted +connotes +connoting +connubial +conquer +conquered +conquering +conqueror +conquerors +conquers +conquest +conquests +conquistador +conquistadores +conquistadors +cons +consanguinity +conscience +consciences +conscientious +conscientiously +conscientiousness +conscious +consciously +consciousness +conscript +conscripted +conscripting +conscription +conscripts +consecrate +consecrated +consecrates +consecrating +consecration +consecutive +consecutively +consensual +consensus +consent +consented +consenting +consents +consequence +consequences +consequent +consequential +consequentially +consequently +conservancies +conservancy +conservation +conservationist +conservationists +conservatism +conservative +conservatively +conservatives +conservatoire +conservatoires +conservator +conservatories +conservators +conservatory +conserve +conserved +conserves +conserving +consider +considerable +considerably +considerate +considerately +consideration +considerations +considered +considering +considers +consign +consigned +consignee +consignees +consigning +consignment +consignments +consigns +consist +consisted +consistencies +consistency +consistent +consistently +consisting +consists +consolation +consolations +consolatory +console +consoled +consoles +consolidate +consolidated +consolidates +consolidating +consolidation +consolidations +consoling +consomme +consonance +consonances +consonant +consonants +consort +consorted +consortia +consorting +consortium +consortiums +consorts +conspicuous +conspicuously +conspicuousness +conspiracies +conspiracy +conspirator +conspiratorial +conspiratorially +conspirators +conspire +conspired +conspires +conspiring +constable +constables +constabularies +constabulary +constancy +constant +constantly +constants +constellation +constellations +consternation +constipated +constipation +constituencies +constituency +constituent +constituents +constitute +constituted +constitutes +constituting +constitution +constitutional +constitutionalism +constitutionality +constitutionally +constitutionals +constitutions +constrain +constrained +constraining +constrains +constraint +constraints +constrict +constricted +constricting +constriction +constrictions +constricts +construct +constructed +constructing +construction +constructions +constructive +constructively +constructor +constructors +constructs +construe +construed +construes +construing +consul +consular +consulate +consulates +consuls +consult +consultancies +consultancy +consultant +consultants +consultation +consultations +consultative +consulted +consulting +consults +consumables +consume +consumed +consumer +consumerism +consumerist +consumers +consumes +consuming +consummate +consummated +consummately +consummates +consummating +consummation +consumption +consumptive +consumptives +contact +contacted +contacting +contacts +contagion +contagions +contagious +contagiously +contain +contained +container +containers +containing +containment +contains +contaminant +contaminants +contaminate +contaminated +contaminates +contaminating +contamination +contemplate +contemplated +contemplates +contemplating +contemplation +contemplative +contemplatively +contemporaneous +contemporaneously +contemporaries +contemporary +contempt +contemptible +contemptibly +contemptuous +contemptuously +contend +contended +contender +contenders +contending +contends +content +contented +contentedly +contenting +contention +contentions +contentious +contentiously +contentiousness +contentment +contents +contest +contestant +contestants +contested +contesting +contests +context +contexts +contextual +contextualisation +contextualise +contextualised +contextualises +contextualising +contextualization +contextualize +contextualized +contextualizes +contextualizing +contextually +contiguity +contiguous +continence +continent +continental +continentals +continents +contingencies +contingency +contingent +contingently +contingents +continua +continual +continually +continuance +continuances +continuation +continuations +continue +continued +continues +continuing +continuities +continuity +continuous +continuously +continuum +continuums +contort +contorted +contorting +contortion +contortionist +contortionists +contortions +contorts +contour +contoured +contours +contraband +contraception +contraceptive +contraceptives +contract +contracted +contracting +contraction +contractions +contractor +contractors +contracts +contractual +contractually +contradict +contradicted +contradicting +contradiction +contradictions +contradictory +contradicts +contraflow +contraflows +contraindication +contraindications +contralto +contraltos +contraption +contraptions +contrapuntal +contrarily +contrariness +contrariwise +contrary +contrast +contrasted +contrasting +contrasts +contravene +contravened +contravenes +contravening +contravention +contraventions +contretemps +contribute +contributed +contributes +contributing +contribution +contributions +contributor +contributors +contributory +contrite +contritely +contrition +contrivance +contrivances +contrive +contrived +contrives +contriving +control +controllable +controlled +controller +controllers +controlling +controls +controversial +controversially +controversies +controversy +contuse +contused +contuses +contusing +contusion +contusions +conundrum +conundrums +conurbation +conurbations +convalesce +convalesced +convalescence +convalescent +convalescents +convalesces +convalescing +convection +convector +convectors +convene +convened +convener +conveners +convenes +convenience +conveniences +convenient +conveniently +convening +convenor +convenors +convent +convention +conventional +conventionality +conventionally +conventioneer +conventioneers +conventions +convents +converge +converged +convergence +convergences +convergent +converges +converging +conversant +conversation +conversational +conversationalist +conversationalists +conversationally +conversations +converse +conversed +conversely +converses +conversing +conversion +conversions +convert +converted +converter +converters +convertibility +convertible +convertibles +converting +convertor +convertors +converts +convex +convexity +convey +conveyance +conveyances +conveyancing +conveyed +conveyer +conveyers +conveying +conveyor +conveyors +conveys +convict +convicted +convicting +conviction +convictions +convicts +convince +convinced +convinces +convincing +convincingly +convivial +conviviality +convivially +convocation +convocations +convoluted +convolution +convolutions +convoy +convoyed +convoying +convoys +convulse +convulsed +convulses +convulsing +convulsion +convulsions +convulsive +convulsively +cony +coo +cooed +cooing +cook +cookbook +cookbooks +cooked +cooker +cookers +cookery +cookhouse +cookhouses +cookie +cookies +cooking +cookout +cookouts +cooks +cookware +cool +coolant +coolants +cooled +cooler +coolers +coolest +coolie +coolies +cooling +coolly +coolness +cools +coon +coons +coop +cooped +cooper +cooperate +cooperated +cooperates +cooperating +cooperation +cooperative +cooperatives +coopers +cooping +coops +coordinate +coordinated +coordinates +coordinating +coordination +coordinator +coordinators +coos +coot +coots +cop +cope +coped +copes +copied +copier +copiers +copies +copilot +copilots +coping +copings +copious +copiously +copped +copper +copperplate +coppers +coppery +coppice +coppiced +coppices +coppicing +copping +cops +copse +copses +copter +copters +copula +copulas +copulate +copulated +copulates +copulating +copulation +copy +copybook +copycat +copycats +copying +copyist +copyists +copyright +copyrighted +copyrighting +copyrights +copywriter +copywriters +coquetry +coquette +coquettes +coquettish +coquettishly +cor +coracle +coracles +coral +corals +cord +corded +cordial +cordiality +cordially +cordials +cordite +cordless +cordon +cordoned +cordoning +cordons +cords +corduroy +corduroys +core +cored +coreligionist +coreligionists +cores +corgi +corgis +coriander +coring +cork +corkage +corked +corker +corkers +corking +corks +corkscrew +corkscrews +corm +cormorant +cormorants +corms +corn +cornball +corncob +corncobs +corncrake +corncrakes +cornea +corneal +corneas +corner +cornered +cornering +corners +cornerstone +cornerstones +cornet +cornets +cornfield +cornfields +cornflakes +cornflour +cornflower +cornflowers +cornice +cornices +cornier +corniest +cornmeal +cornrow +cornrows +corns +cornstarch +cornucopia +corny +corollaries +corollary +corona +coronae +coronaries +coronary +coronas +coronation +coronations +coroner +coroners +coronet +coronets +corpora +corporal +corporals +corporate +corporation +corporations +corporatism +corporeal +corps +corpse +corpses +corpulence +corpulent +corpus +corpuscle +corpuscles +corpuses +corral +corralled +corralling +corrals +correct +corrected +correcting +correction +correctional +corrections +corrective +correctives +correctly +correctness +corrects +correlate +correlated +correlates +correlating +correlation +correlations +correlative +correlatives +correspond +corresponded +correspondence +correspondences +correspondent +correspondents +corresponding +correspondingly +corresponds +corridor +corridors +corrie +corries +corroborate +corroborated +corroborates +corroborating +corroboration +corroborative +corrode +corroded +corrodes +corroding +corrosion +corrosive +corrugated +corrupt +corrupted +corruptible +corrupting +corruption +corruptions +corruptly +corrupts +corsage +corsages +corset +corseted +corsets +cortege +corteges +cortex +cortical +cortices +cortisone +coruscating +corvette +cos +cosh +coshed +coshes +coshing +cosier +cosies +cosiest +cosignatories +cosignatory +cosily +cosine +cosines +cosiness +cosmetic +cosmetically +cosmetics +cosmic +cosmically +cosmological +cosmologies +cosmologist +cosmology +cosmonaut +cosmonauts +cosmopolitan +cosmopolitans +cosmos +cosset +cosseted +cosseting +cossets +cossetted +cossetting +cost +costed +costing +costings +costlier +costliest +costliness +costly +costs +costume +costumer +costumers +costumes +costumier +costumiers +cosy +cot +coterie +coteries +coterminous +cots +cottage +cottager +cottagers +cottages +cottaging +cotton +cottoned +cottoning +cottons +cottonwood +cottonwoods +couch +couched +couches +couchette +couchettes +couching +cougar +cougars +cough +coughed +coughing +coughs +could +coulis +council +councillor +councillors +councilman +councilmen +councilor +councilors +councils +councilwoman +councilwomen +counsel +counseled +counseling +counselled +counselling +counsellor +counsellors +counselor +counselors +counsels +count +countable +countdown +countdowns +counted +countenance +countenanced +countenances +countenancing +counter +counteract +counteracted +counteracting +counteracts +counterargument +counterarguments +counterattack +counterattacked +counterattacking +counterattacks +counterbalance +counterbalanced +counterbalances +counterbalancing +counterblast +counterblasts +counterclockwise +counterculture +countercultures +countered +counterespionage +counterfeit +counterfeited +counterfeiter +counterfeiters +counterfeiting +counterfeits +counterfoil +counterfoils +countering +counterinsurgency +counterintelligence +countermand +countermanded +countermanding +countermands +countermeasure +countermeasures +counteroffensive +counteroffensives +counterpane +counterpanes +counterpart +counterparts +counterpoint +counterpointed +counterpointing +counterpoints +counterproductive +counterrevolution +counterrevolutions +counters +countersign +countersigned +countersigning +countersigns +countertenor +countertenors +countervailing +countess +countesses +counties +counting +countless +countries +countrified +country +countryman +countrymen +countryside +countrywide +countrywoman +countrywomen +counts +county +countywide +coup +coupe +coupes +couple +coupled +couples +couplet +couplets +coupling +couplings +coupon +coupons +coups +courage +courageous +courageously +courgette +courgettes +courier +couriered +couriering +couriers +course +coursebook +coursebooks +coursed +courses +coursework +coursing +court +courted +courteous +courteously +courtesan +courtesans +courtesies +courtesy +courthouse +courthouses +courtier +courtiers +courting +courtlier +courtliest +courtliness +courtly +courtroom +courtrooms +courts +courtship +courtships +courtyard +courtyards +couscous +cousin +cousins +couture +couturier +couturiers +cove +coven +covenant +covenanted +covenanting +covenants +covens +cover +coverage +coveralls +covered +covering +coverings +coverlet +coverlets +covers +covert +covertly +coverts +coves +covet +coveted +coveting +covetous +covetously +covetousness +covets +cow +coward +cowardice +cowardly +cowards +cowbell +cowbells +cowboy +cowboys +cowcatcher +cowcatchers +cowed +cower +cowered +cowering +cowers +cowgirl +cowgirls +cowhand +cowhands +cowhide +cowhides +cowing +cowl +cowlick +cowlicks +cowling +cowlings +cowls +cowpat +cowpats +cowpox +cowrie +cowries +cows +cowshed +cowsheds +cowslip +cowslips +cox +coxcomb +coxcombs +coxed +coxes +coxing +coxswain +coxswains +coy +coyly +coyness +coyote +coyotes +coypu +coypus +cozier +coziest +cozily +coziness +cozy +crab +crabbed +crabbier +crabbiest +crabby +crabgrass +crabs +crabwise +crack +crackdown +crackdowns +cracked +cracker +crackerjack +crackers +cracking +crackle +crackled +crackles +crackling +cracklings +crackly +crackpot +crackpots +cracks +cradle +cradled +cradles +cradling +craft +crafted +craftier +craftiest +craftily +craftiness +crafting +crafts +craftsman +craftsmanship +craftsmen +craftspeople +craftswoman +craftswomen +crafty +crag +craggier +craggiest +craggy +crags +cram +crammed +crammer +crammers +cramming +cramp +cramped +cramping +crampon +crampons +cramps +crams +cranberries +cranberry +crane +craned +cranes +crania +cranial +craning +cranium +craniums +crank +cranked +crankier +crankiest +cranking +cranks +crankshaft +crankshafts +cranky +crannies +cranny +crap +crape +crapped +crapper +crappers +crappier +crappiest +crapping +crappy +craps +crash +crashed +crashes +crashing +crass +crasser +crassest +crassly +crassness +crate +crated +crater +cratered +craters +crates +crating +cravat +cravats +crave +craved +craven +cravenly +craves +craving +cravings +crawfish +crawl +crawled +crawler +crawlers +crawling +crawls +crayfish +crayon +crayoned +crayoning +crayons +craze +crazed +crazes +crazier +crazies +craziest +crazily +craziness +crazy +creak +creaked +creakier +creakiest +creakily +creakiness +creaking +creaks +creaky +cream +creamed +creamer +creameries +creamers +creamery +creamier +creamiest +creaming +creams +creamy +crease +creased +creases +creasing +create +created +creates +creating +creation +creationism +creationist +creationists +creations +creative +creatively +creativeness +creativity +creator +creators +creature +creatures +creche +creches +cred +credence +credential +credentialed +credentialing +credentials +credibility +credible +credibly +credit +creditable +creditably +credited +crediting +creditor +creditors +credits +creditworthiness +creditworthy +credo +credos +credulity +credulous +credulously +credulousness +creed +creeds +creek +creeks +creel +creels +creep +creeper +creepers +creepier +creepiest +creeping +creeps +creepy +cremate +cremated +cremates +cremating +cremation +cremations +crematoria +crematories +crematorium +crematoriums +crematory +crenelated +crenellated +creole +creoles +creosote +creosoted +creosotes +creosoting +crepe +crepes +crept +crepuscular +crescendo +crescendos +crescent +crescents +cress +crest +crested +crestfallen +cresting +crests +cretin +cretinous +cretins +crevasse +crevasses +crevice +crevices +crew +crewed +crewing +crewman +crewmen +crews +crib +cribbage +cribbed +cribbing +cribs +crick +cricked +cricket +cricketer +cricketers +cricketing +crickets +cricking +cricks +cried +crier +criers +cries +crikey +crime +crimes +criminal +criminalise +criminalised +criminalises +criminalising +criminality +criminalize +criminalized +criminalizes +criminalizing +criminally +criminals +criminologist +criminologists +criminology +crimp +crimped +crimping +crimps +crimson +crimsons +cringe +cringed +cringes +cringing +crinkle +crinkled +crinkles +crinkling +crinkly +crinoline +crinolines +cripes +cripple +crippled +cripples +crippling +cripplingly +crises +crisis +crisp +crispbread +crispbreads +crisped +crisper +crispest +crispier +crispiest +crisping +crisply +crispness +crisps +crispy +crisscross +crisscrossed +crisscrosses +crisscrossing +criteria +criterion +critic +critical +critically +criticise +criticised +criticises +criticising +criticism +criticisms +criticize +criticized +criticizes +criticizing +critics +critique +critiques +critter +critters +croak +croaked +croaking +croaks +crochet +crocheted +crocheting +crochets +crock +crocked +crockery +crocks +crocodile +crocodiles +crocus +crocuses +croft +crofter +crofters +crofting +crofts +croissant +croissants +crone +crones +cronies +crony +cronyism +crook +crooked +crookedly +crooking +crooks +croon +crooned +crooner +crooners +crooning +croons +crop +cropped +cropping +crops +croquet +croquette +croquettes +crosier +crosiers +cross +crossbar +crossbars +crossbones +crossbow +crossbows +crossbred +crossbreed +crossbreeding +crossbreeds +crosscheck +crosschecked +crosschecking +crosschecks +crosscurrent +crosscurrents +crossed +crosser +crosses +crossest +crossfire +crossing +crossings +crossly +crossover +crossovers +crosspatch +crosspatches +crosspiece +crosspieces +crossroads +crosstown +crosswalk +crosswalks +crosswind +crosswinds +crosswise +crossword +crosswords +crotch +crotches +crotchet +crotchets +crotchety +crouch +crouched +crouches +crouching +croup +croupier +croupiers +crouton +croutons +crow +crowbar +crowbars +crowd +crowded +crowding +crowds +crowed +crowing +crown +crowned +crowning +crowns +crows +crozier +croziers +crucial +crucially +crucible +crucibles +crucified +crucifies +crucifix +crucifixes +crucifixion +crucifixions +cruciform +crucify +crucifying +crud +cruddier +cruddiest +cruddy +crude +crudely +crudeness +cruder +crudest +crudites +crudity +cruel +crueler +cruelest +crueller +cruellest +cruelly +cruelties +cruelty +cruet +cruets +cruise +cruised +cruiser +cruisers +cruises +cruising +crumb +crumble +crumbled +crumbles +crumblier +crumbliest +crumbling +crumbly +crumbs +crummier +crummiest +crummy +crumpet +crumpets +crumple +crumpled +crumples +crumpling +crunch +crunched +crunches +crunchier +crunchiest +crunching +crunchy +crusade +crusaded +crusader +crusaders +crusades +crusading +crush +crushed +crusher +crushers +crushes +crushing +crushingly +crust +crustacean +crustaceans +crusted +crustier +crustiest +crusts +crusty +crutch +crutches +crux +cry +crybabies +crybaby +crying +cryogenic +cryogenics +cryonics +crypt +cryptic +cryptically +crypts +crystal +crystalline +crystallisation +crystallise +crystallised +crystallises +crystallising +crystallization +crystallize +crystallized +crystallizes +crystallizing +crystals +cub +cubbyhole +cubbyholes +cube +cubed +cubes +cubic +cubicle +cubicles +cubing +cubism +cubist +cubists +cuboid +cuboids +cubs +cuckold +cuckolded +cuckolding +cuckolds +cuckoo +cuckoos +cucumber +cucumbers +cud +cuddle +cuddled +cuddles +cuddlier +cuddliest +cuddling +cuddly +cudgel +cudgeled +cudgeling +cudgelled +cudgelling +cudgels +cue +cued +cueing +cues +cuff +cuffed +cuffing +cufflink +cufflinks +cuffs +cuing +cuisine +cuisines +culinary +cull +culled +cullender +cullenders +culling +culls +culminate +culminated +culminates +culminating +culmination +culottes +culpability +culpable +culpably +culprit +culprits +cult +cultivable +cultivate +cultivated +cultivates +cultivating +cultivation +cultivator +cultivators +cults +cultural +culturally +culture +cultured +cultures +culturing +culvert +culverts +cum +cumbersome +cumin +cummerbund +cummerbunds +cumming +cumquat +cumquats +cums +cumulative +cumulatively +cumulus +cuneiform +cunnilingus +cunning +cunningly +cunt +cunts +cup +cupboard +cupboards +cupcake +cupcakes +cupful +cupfuls +cupid +cupidity +cupids +cupola +cupolas +cuppa +cuppas +cupped +cupping +cups +cur +curable +curacao +curacies +curacy +curate +curated +curates +curating +curative +curator +curators +curb +curbed +curbing +curbs +curbside +curd +curdle +curdled +curdles +curdling +curds +cure +cured +cures +curfew +curfews +curing +curio +curios +curiosities +curiosity +curious +curiously +curl +curled +curler +curlers +curlew +curlews +curlicue +curlicues +curlier +curliest +curliness +curling +curls +curly +curmudgeon +curmudgeonly +curmudgeons +currant +currants +currencies +currency +current +currently +currents +curricula +curricular +curriculum +curriculums +curried +curries +curry +currying +curs +curse +cursed +curses +cursing +cursive +cursor +cursorily +cursors +cursory +curt +curtail +curtailed +curtailing +curtailment +curtailments +curtails +curtain +curtained +curtaining +curtains +curtly +curtness +curtsey +curtseyed +curtseying +curtseys +curtsied +curtsies +curtsy +curtsying +curvaceous +curvature +curve +curved +curves +curving +curvy +cushier +cushiest +cushion +cushioned +cushioning +cushions +cushy +cusp +cuspidor +cuspidors +cusps +cuss +cussed +cussedly +cussedness +cusses +cussing +custard +custards +custodial +custodian +custodians +custody +custom +customarily +customary +customer +customers +customise +customised +customises +customising +customize +customized +customizes +customizing +customs +cut +cutaway +cutaways +cutback +cutbacks +cute +cutely +cuteness +cuter +cutest +cutesy +cutey +cuteys +cuticle +cuticles +cutie +cuties +cutlass +cutlasses +cutlery +cutlet +cutlets +cutoff +cutoffs +cutout +cutouts +cuts +cutter +cutters +cutthroat +cutting +cuttings +cuttlefish +cutup +cutups +cyan +cyanide +cybercafe +cybercafes +cybernetic +cybernetics +cyberpunk +cyberspace +cyborg +cyborgs +cyclamen +cyclamens +cycle +cycled +cycles +cyclic +cyclical +cyclically +cycling +cyclist +cyclists +cyclone +cyclones +cygnet +cygnets +cylinder +cylinders +cylindrical +cymbal +cymbals +cynic +cynical +cynically +cynicism +cynics +cynosure +cynosures +cypher +cyphers +cypress +cypresses +cyst +cystitis +cysts +cytology +czar +czarina +czarinas +czarism +czarist +czarists +czars +dab +dabbed +dabbing +dabble +dabbled +dabbles +dabbling +dabs +dacha +dachas +dachshund +dachshunds +dad +daddies +daddy +dado +dadoes +dados +dads +daemon +daemons +daffier +daffiest +daffodil +daffodils +daffy +daft +dafter +daftest +daftness +dag +dagger +daggers +dago +dagoes +dagos +dags +dahlia +dahlias +dailies +daily +daintier +daintiest +daintily +daintiness +dainty +daiquiri +daiquiris +dairies +dairy +dairymaid +dairymaids +dairyman +dairymen +dais +daises +daisies +daisy +dale +dales +dalliance +dalliances +dallied +dallies +dally +dallying +dalmatian +dalmatians +dam +damage +damaged +damages +damaging +damask +dame +dames +dammed +damming +dammit +damn +damnable +damnably +damnation +damned +damnedest +damning +damns +damp +damped +dampen +dampened +dampening +dampens +damper +dampers +dampest +damping +damply +dampness +damps +dams +damsel +damsels +damson +damsons +dance +danced +dancer +dancers +dances +dancing +dandelion +dandelions +dandies +dandified +dandle +dandled +dandles +dandling +dandruff +dandy +dang +danger +dangerous +dangerously +dangers +dangle +dangled +dangles +dangling +dank +dankness +dapper +dappled +dare +dared +daredevil +daredevils +dares +daresay +daring +daringly +dark +darken +darkened +darkening +darkens +darker +darkest +darkie +darkies +darkly +darkness +darkroom +darkrooms +darling +darlings +darn +darned +darning +darns +dart +dartboard +dartboards +darted +darting +darts +dash +dashboard +dashboards +dashed +dashes +dashing +dashingly +dastardly +data +databank +databanks +database +databases +date +datebook +datebooks +dated +dateline +datelines +dates +dating +dative +datives +datum +daub +daubed +daubing +daubs +daughter +daughters +daunt +daunted +daunting +dauntingly +dauntless +daunts +dauphin +dawdle +dawdled +dawdler +dawdlers +dawdles +dawdling +dawn +dawned +dawning +dawns +day +daybreak +daycare +daydream +daydreamed +daydreamer +daydreamers +daydreaming +daydreams +daylight +daylong +days +daytime +daze +dazed +dazzle +dazzled +dazzles +dazzling +dazzlingly +deacon +deaconess +deaconesses +deacons +deactivate +deactivated +deactivates +deactivating +dead +deadbeat +deadbeats +deadbolt +deadbolts +deaden +deadened +deadening +deadens +deadhead +deadheaded +deadheading +deadheads +deadlier +deadliest +deadline +deadlines +deadlock +deadlocked +deadlocks +deadly +deadpan +deaf +deafen +deafened +deafening +deafens +deafer +deafest +deafness +deal +dealer +dealers +dealership +dealerships +dealing +dealings +deals +dealt +dean +deaneries +deanery +deans +dear +dearer +dearest +dearests +dearie +dearies +dearly +dears +dearth +deary +death +deathbed +deathbeds +deathless +deathly +deaths +deb +debacle +debacles +debar +debarred +debarring +debars +debase +debased +debasement +debasements +debases +debasing +debatable +debate +debated +debater +debaters +debates +debating +debauched +debauchee +debauchees +debauchery +debenture +debentures +debilitate +debilitated +debilitates +debilitating +debilities +debility +debit +debited +debiting +debits +debonair +debrief +debriefed +debriefing +debriefings +debriefs +debris +debs +debt +debtor +debtors +debts +debug +debugged +debugging +debugs +debunk +debunked +debunking +debunks +debut +debutante +debutantes +debuted +debuting +debuts +decade +decadence +decadent +decades +decaf +decaff +decaffeinated +decaffs +decafs +decal +decals +decamp +decamped +decamping +decamps +decant +decanted +decanter +decanters +decanting +decants +decapitate +decapitated +decapitates +decapitating +decapitation +decapitations +decathlete +decathletes +decathlon +decathlons +decay +decayed +decaying +decays +decease +deceased +deceit +deceitful +deceitfully +deceitfulness +deceits +deceive +deceived +deceiver +deceivers +deceives +deceiving +decelerate +decelerated +decelerates +decelerating +deceleration +decencies +decency +decent +decently +decentralisation +decentralise +decentralised +decentralises +decentralising +decentralization +decentralize +decentralized +decentralizes +decentralizing +deception +deceptions +deceptive +deceptively +deceptiveness +decibel +decibels +decide +decided +decidedly +decider +deciders +decides +deciding +deciduous +decimal +decimalization +decimals +decimate +decimated +decimates +decimating +decimation +decipher +deciphered +deciphering +deciphers +decision +decisions +decisive +decisively +decisiveness +deck +deckchair +deckchairs +decked +deckhand +deckhands +decking +decks +declaim +declaimed +declaiming +declaims +declamation +declamations +declamatory +declarable +declaration +declarations +declare +declared +declares +declaring +declassification +declassified +declassifies +declassify +declassifying +decline +declined +declines +declining +decode +decoded +decoder +decoders +decodes +decoding +decolletage +decolletages +decollete +decolonisation +decolonization +decommission +decommissioned +decommissioning +decommissions +decompose +decomposed +decomposes +decomposing +decomposition +decompress +decompressed +decompresses +decompressing +decompression +decongestant +decongestants +deconstruct +deconstructed +deconstructing +deconstruction +deconstructionism +deconstructionist +deconstructionists +deconstructs +decontaminate +decontaminated +decontaminates +decontaminating +decontamination +decontrol +decontrolled +decontrolling +decontrols +decor +decorate +decorated +decorates +decorating +decoration +decorations +decorative +decoratively +decorator +decorators +decorous +decorously +decors +decorum +decouple +decoupled +decouples +decoupling +decoy +decoyed +decoying +decoys +decrease +decreased +decreases +decreasing +decree +decreed +decreeing +decrees +decrepit +decrepitude +decried +decries +decriminalisation +decriminalise +decriminalised +decriminalises +decriminalising +decriminalization +decriminalize +decriminalized +decriminalizes +decriminalizing +decry +decrying +dedicate +dedicated +dedicates +dedicating +dedication +dedications +deduce +deduced +deduces +deducible +deducing +deduct +deducted +deductible +deducting +deduction +deductions +deductive +deducts +deed +deeds +deem +deemed +deeming +deems +deep +deepen +deepened +deepening +deepens +deeper +deepest +deeply +deer +deerstalker +deerstalkers +deface +defaced +defacement +defaces +defacing +defamation +defamatory +defame +defamed +defames +defaming +default +defaulted +defaulter +defaulters +defaulting +defaults +defeat +defeated +defeating +defeatism +defeatist +defeatists +defeats +defecate +defecated +defecates +defecating +defecation +defect +defected +defecting +defection +defections +defective +defectively +defectiveness +defector +defectors +defects +defence +defenceless +defences +defend +defendant +defendants +defended +defender +defenders +defending +defends +defense +defenseless +defenses +defensible +defensive +defensively +defensiveness +defer +deference +deferential +deferentially +deferment +deferments +deferral +deferrals +deferred +deferring +defers +defiance +defiant +defiantly +defibrillator +defibrillators +deficiencies +deficiency +deficient +deficit +deficits +defied +defies +defile +defiled +defilement +defiles +defiling +definable +define +defined +defines +defining +definite +definitely +definition +definitions +definitive +definitively +deflate +deflated +deflates +deflating +deflation +deflationary +deflect +deflected +deflecting +deflection +deflections +deflects +deflower +deflowered +deflowering +deflowers +defog +defogged +defogger +defoggers +defogging +defogs +defoliant +defoliants +defoliate +defoliated +defoliates +defoliating +defoliation +deforest +deforestation +deforested +deforesting +deforests +deform +deformation +deformations +deformed +deforming +deformities +deformity +deforms +defraud +defrauded +defrauding +defrauds +defray +defrayed +defraying +defrays +defrock +defrocked +defrocking +defrocks +defrost +defrosted +defroster +defrosters +defrosting +defrosts +deft +defter +deftest +deftly +deftness +defunct +defuse +defused +defuses +defusing +defy +defying +degeneracy +degenerate +degenerated +degenerates +degenerating +degeneration +degenerative +degradable +degradation +degrade +degraded +degrades +degrading +degree +degrees +dehumanisation +dehumanise +dehumanised +dehumanises +dehumanising +dehumanization +dehumanize +dehumanized +dehumanizes +dehumanizing +dehumidifier +dehumidifiers +dehydrate +dehydrated +dehydrates +dehydrating +dehydration +deification +deified +deifies +deify +deifying +deign +deigned +deigning +deigns +deism +deities +deity +dejected +dejectedly +dejection +delay +delayed +delaying +delays +delectable +delectably +delectation +delegate +delegated +delegates +delegating +delegation +delegations +delete +deleted +deleterious +deletes +deleting +deletion +deletions +deli +deliberate +deliberated +deliberately +deliberates +deliberating +deliberation +deliberations +deliberative +delicacies +delicacy +delicate +delicately +delicatessen +delicatessens +delicious +deliciously +delight +delighted +delightedly +delightful +delightfully +delighting +delights +delimit +delimited +delimiting +delimits +delineate +delineated +delineates +delineating +delineation +delineations +delinquencies +delinquency +delinquent +delinquents +delirious +deliriously +delirium +delis +deliver +deliverable +deliverance +delivered +deliverer +deliverers +deliveries +delivering +delivers +delivery +deliveryman +deliverymen +dell +dells +delouse +deloused +delouses +delousing +delphinium +delphiniums +delta +deltas +delude +deluded +deludes +deluding +deluge +deluged +deluges +deluging +delusion +delusions +delusive +delusively +deluxe +delve +delved +delves +delving +demagog +demagogic +demagogically +demagogs +demagogue +demagoguery +demagogues +demagogy +demand +demanded +demanding +demands +demarcate +demarcated +demarcates +demarcating +demarcation +demarcations +demean +demeaned +demeaning +demeanor +demeanour +demeans +demented +dementedly +dementia +demerit +demerits +demigod +demigoddess +demigoddesses +demigods +demilitarisation +demilitarise +demilitarised +demilitarises +demilitarising +demilitarization +demilitarize +demilitarized +demilitarizes +demilitarizing +demise +demist +demisted +demister +demisters +demisting +demists +demo +demob +demobbed +demobbing +demobilisation +demobilise +demobilised +demobilises +demobilising +demobilization +demobilize +demobilized +demobilizes +demobilizing +demobs +democracies +democracy +democrat +democratic +democratically +democratisation +democratise +democratised +democratises +democratising +democratization +democratize +democratized +democratizes +democratizing +democrats +demographer +demographers +demographic +demographics +demography +demolish +demolished +demolishes +demolishing +demolition +demolitions +demon +demoniac +demoniacal +demoniacally +demonic +demonically +demonise +demonised +demonises +demonising +demonize +demonized +demonizes +demonizing +demonology +demons +demonstrability +demonstrable +demonstrably +demonstrate +demonstrated +demonstrates +demonstrating +demonstration +demonstrations +demonstrative +demonstratively +demonstratives +demonstrator +demonstrators +demoralisation +demoralise +demoralised +demoralises +demoralising +demoralization +demoralize +demoralized +demoralizes +demoralizing +demos +demote +demoted +demotes +demotic +demoting +demotion +demotions +demotivate +demotivated +demotivates +demotivating +demur +demure +demurely +demureness +demurred +demurring +demurs +demystification +demystified +demystifies +demystify +demystifying +den +denationalisation +denationalise +denationalised +denationalises +denationalising +denationalization +denationalize +denationalized +denationalizes +denationalizing +deniable +denial +denials +denied +denier +denies +denigrate +denigrated +denigrates +denigrating +denigration +denim +denims +denizen +denizens +denomination +denominational +denominations +denominator +denominators +denote +denoted +denotes +denoting +denouement +denouements +denounce +denounced +denounces +denouncing +dens +dense +densely +denseness +denser +densest +densities +density +dent +dental +dented +denting +dentist +dentistry +dentists +dents +denture +dentures +denude +denuded +denudes +denuding +denunciation +denunciations +deny +denying +deodorant +deodorants +deodorise +deodorised +deodorises +deodorising +deodorize +deodorized +deodorizes +deodorizing +depart +departed +departing +department +departmental +departments +departs +departure +departures +depend +dependability +dependable +dependably +dependant +dependants +depended +dependence +dependencies +dependency +dependent +dependents +depending +depends +depersonalise +depersonalised +depersonalises +depersonalising +depersonalize +depersonalized +depersonalizes +depersonalizing +depict +depicted +depicting +depiction +depictions +depicts +depilatories +depilatory +deplane +deplaned +deplanes +deplaning +deplete +depleted +depletes +depleting +depletion +deplorable +deplorably +deplore +deplored +deplores +deploring +deploy +deployed +deploying +deployment +deployments +deploys +depoliticize +depoliticized +depoliticizes +depoliticizing +depopulate +depopulated +depopulates +depopulating +depopulation +deport +deportation +deportations +deported +deportee +deportees +deporting +deportment +deports +depose +deposed +deposes +deposing +deposit +deposited +depositing +deposition +depositions +depositor +depositories +depositors +depository +deposits +depot +depots +deprave +depraved +depraves +depraving +depravity +deprecate +deprecated +deprecates +deprecating +deprecatingly +deprecation +deprecatory +depreciate +depreciated +depreciates +depreciating +depreciation +depredation +depredations +depress +depressant +depressants +depressed +depresses +depressing +depressingly +depression +depressions +depressive +depressives +depressurization +depressurize +depressurized +depressurizes +depressurizing +deprivation +deprivations +deprive +deprived +deprives +depriving +depth +depths +deputation +deputations +depute +deputed +deputes +deputies +deputing +deputise +deputised +deputises +deputising +deputize +deputized +deputizes +deputizing +deputy +derail +derailed +derailing +derailment +derailments +derails +deranged +derangement +derbies +derby +deregulate +deregulated +deregulates +deregulating +deregulation +derelict +dereliction +derelicts +deride +derided +derides +deriding +derision +derisive +derisively +derisory +derivation +derivations +derivative +derivatives +derive +derived +derives +deriving +dermatitis +dermatologist +dermatologists +dermatology +derogatory +derrick +derricks +derv +dervish +dervishes +desalinate +desalinated +desalinates +desalinating +desalination +descale +descaled +descales +descaling +descant +descants +descend +descendant +descendants +descended +descending +descends +descent +descents +describe +described +describes +describing +description +descriptions +descriptive +desecrate +desecrated +desecrates +desecrating +desecration +desegregate +desegregated +desegregates +desegregating +desegregation +deselect +deselected +deselecting +deselection +deselects +desensitisation +desensitise +desensitised +desensitises +desensitising +desensitization +desensitize +desensitized +desensitizes +desensitizing +desert +deserted +deserter +deserters +desertification +deserting +desertion +desertions +deserts +deserve +deserved +deservedly +deserves +deserving +desiccated +desiccation +design +designate +designated +designates +designating +designation +designations +designed +designer +designers +designing +designs +desirability +desirable +desirably +desire +desired +desires +desiring +desirous +desist +desisted +desisting +desists +desk +deskill +deskilled +deskilling +deskills +desks +desktop +desktops +desolate +desolated +desolately +desolates +desolating +desolation +despair +despaired +despairing +despairingly +despairs +despatch +despatched +despatches +despatching +desperado +desperadoes +desperados +desperate +desperately +desperation +despicable +despicably +despise +despised +despises +despising +despite +despoil +despoiled +despoiling +despoils +despondency +despondent +despondently +despot +despotic +despotically +despotism +despots +dessert +desserts +dessertspoon +dessertspoonful +dessertspoonfuls +dessertspoons +dessertspoonsful +destabilisation +destabilise +destabilised +destabilises +destabilising +destabilization +destabilize +destabilized +destabilizes +destabilizing +destination +destinations +destined +destinies +destiny +destitute +destitution +destroy +destroyed +destroyer +destroyers +destroying +destroys +destruction +destructive +destructively +destructiveness +desultorily +desultory +detach +detachable +detached +detaches +detaching +detachment +detachments +detail +detailed +detailing +details +detain +detained +detainee +detainees +detaining +detains +detect +detectable +detected +detecting +detection +detective +detectives +detector +detectors +detects +detente +detention +detentions +deter +detergent +detergents +deteriorate +deteriorated +deteriorates +deteriorating +deterioration +determinant +determinants +determinate +determination +determinations +determine +determined +determinedly +determiner +determiners +determines +determining +determinism +deterministic +deterred +deterrence +deterrent +deterrents +deterring +deters +detest +detestable +detestably +detestation +detested +detesting +detests +dethrone +dethroned +dethrones +dethroning +detonate +detonated +detonates +detonating +detonation +detonations +detonator +detonators +detour +detoured +detouring +detours +detox +detoxification +detoxified +detoxifies +detoxify +detoxifying +detract +detracted +detracting +detractor +detractors +detracts +detriment +detrimental +detrimentally +detritus +deuce +deuces +devaluation +devaluations +devalue +devalued +devalues +devaluing +devastate +devastated +devastates +devastating +devastatingly +devastation +develop +developed +developer +developers +developing +development +developmental +developments +develops +deviance +deviancy +deviant +deviants +deviate +deviated +deviates +deviating +deviation +deviations +device +devices +devil +devilish +devilishly +devilment +devilries +devilry +devils +devious +deviously +deviousness +devise +devised +devises +devising +devoid +devolution +devolve +devolved +devolves +devolving +devote +devoted +devotedly +devotee +devotees +devotes +devoting +devotion +devotional +devotions +devour +devoured +devouring +devours +devout +devoutly +devoutness +dew +dewdrop +dewdrops +dewlap +dewlaps +dewy +dexterity +dexterous +dexterously +dextrose +dextrous +dextrously +dhoti +dhotis +dhow +dhows +diabetes +diabetic +diabetics +diabolic +diabolical +diabolically +diacritic +diacritical +diacritics +diadem +diadems +diagnose +diagnosed +diagnoses +diagnosing +diagnosis +diagnostic +diagnostics +diagonal +diagonally +diagonals +diagram +diagrammatic +diagrammatically +diagrammed +diagramming +diagrams +dial +dialect +dialectic +dialectical +dialectics +dialects +dialed +dialing +dialled +dialling +dialog +dialogs +dialogue +dialogues +dials +dialysis +diamante +diameter +diameters +diametrically +diamond +diamonds +diaper +diapers +diaphanous +diaphragm +diaphragms +diaries +diarist +diarists +diarrhea +diarrhoea +diary +diaspora +diatonic +diatribe +diatribes +dice +diced +dices +dicey +dichotomies +dichotomy +dicier +diciest +dicing +dick +dickens +dicker +dickered +dickering +dickers +dickey +dickeys +dickhead +dickheads +dickies +dicks +dicky +dickybird +dickybirds +dicta +dictate +dictated +dictates +dictating +dictation +dictations +dictator +dictatorial +dictatorially +dictators +dictatorship +dictatorships +diction +dictionaries +dictionary +dictum +dictums +did +didactic +didactically +diddle +diddled +diddles +diddling +diddly +diddlysquat +diddums +didgeridoo +didgeridoos +die +died +diehard +diehards +dies +diesel +diesels +diet +dietary +dieted +dieter +dieters +dietetic +dietetics +dietician +dieticians +dieting +dietitian +dietitians +diets +differ +differed +difference +differences +different +differential +differentials +differentiate +differentiated +differentiates +differentiating +differentiation +differently +differing +differs +difficult +difficulties +difficulty +diffidence +diffident +diffidently +diffract +diffracted +diffracting +diffraction +diffracts +diffuse +diffused +diffusely +diffuseness +diffuses +diffusing +diffusion +dig +digest +digested +digestible +digesting +digestion +digestions +digestive +digestives +digests +digger +diggers +digging +digit +digital +digitally +digitise +digitised +digitises +digitising +digitize +digitized +digitizes +digitizing +digits +dignified +dignifies +dignify +dignifying +dignitaries +dignitary +dignity +digress +digressed +digresses +digressing +digression +digressions +digs +dike +dikes +diktat +diktats +dilapidated +dilapidation +dilate +dilated +dilates +dilating +dilation +dilatory +dildo +dildos +dilemma +dilemmas +dilettante +dilettantes +dilettanti +diligence +diligent +diligently +dill +dilute +diluted +dilutes +diluting +dilution +dilutions +dim +dime +dimension +dimensions +dimes +diminish +diminished +diminishes +diminishing +diminuendo +diminuendos +diminution +diminutions +diminutive +diminutives +dimly +dimmed +dimmer +dimmers +dimmest +dimming +dimness +dimple +dimpled +dimples +dims +dimwit +dimwits +dimwitted +din +dinar +dinars +dine +dined +diner +diners +dines +dinette +dinettes +dingbat +dingbats +dinghies +dinghy +dingier +dingiest +dingily +dinginess +dingo +dingoes +dingy +dining +dinkier +dinkies +dinkiest +dinky +dinned +dinner +dinners +dinnertime +dinnerware +dinning +dinosaur +dinosaurs +dins +dint +diocesan +diocese +dioceses +diode +diodes +diorama +dioramas +dioxide +dioxides +dioxin +dioxins +dip +diphtheria +diphthong +diphthongs +diploma +diplomacy +diplomas +diplomat +diplomatic +diplomatically +diplomatist +diplomatists +diplomats +dipped +dipper +dippers +dippier +dippiest +dipping +dippy +dips +dipso +dipsomania +dipsomaniac +dipsomaniacs +dipsos +dipstick +dipsticks +dire +direct +directed +directing +direction +directional +directionless +directions +directive +directives +directly +directness +director +directorate +directorates +directorial +directories +directors +directorship +directorships +directory +directs +dirge +dirges +dirk +dirks +dirt +dirtied +dirtier +dirties +dirtiest +dirty +dirtying +dis +disabilities +disability +disable +disabled +disablement +disables +disabling +disabuse +disabused +disabuses +disabusing +disadvantage +disadvantaged +disadvantageous +disadvantages +disadvantaging +disaffected +disaffection +disafforest +disafforested +disafforesting +disafforests +disagree +disagreeable +disagreeably +disagreed +disagreeing +disagreement +disagreements +disagrees +disallow +disallowed +disallowing +disallows +disappear +disappearance +disappearances +disappeared +disappearing +disappears +disappoint +disappointed +disappointing +disappointingly +disappointment +disappointments +disappoints +disapprobation +disapproval +disapprove +disapproved +disapproves +disapproving +disapprovingly +disarm +disarmament +disarmed +disarming +disarmingly +disarms +disarrange +disarranged +disarranges +disarranging +disarray +disassemble +disassembled +disassembles +disassembling +disassociate +disassociated +disassociates +disassociating +disaster +disasters +disastrous +disastrously +disavow +disavowal +disavowals +disavowed +disavowing +disavows +disband +disbanded +disbanding +disbands +disbar +disbarred +disbarring +disbars +disbelief +disbelieve +disbelieved +disbelieves +disbelieving +disbelievingly +disburse +disbursed +disbursement +disbursements +disburses +disbursing +disc +discard +discarded +discarding +discards +discern +discerned +discernible +discernibly +discerning +discernment +discerns +discharge +discharged +discharges +discharging +disciple +disciples +disciplinarian +disciplinarians +disciplinary +discipline +disciplined +disciplines +disciplining +disclaim +disclaimed +disclaimer +disclaimers +disclaiming +disclaims +disclose +disclosed +discloses +disclosing +disclosure +disclosures +disco +discographies +discography +discolor +discoloration +discolorations +discolored +discoloring +discolors +discolour +discoloured +discolouring +discolours +discomfit +discomfited +discomfiting +discomfits +discomfiture +discomfort +discomforts +discompose +discomposed +discomposes +discomposing +discomposure +disconcert +disconcerted +disconcerting +disconcertingly +disconcerts +disconnect +disconnected +disconnecting +disconnection +disconnections +disconnects +disconsolate +disconsolately +discontent +discontented +discontentedly +discontentment +discontents +discontinuance +discontinuation +discontinue +discontinued +discontinues +discontinuing +discontinuities +discontinuity +discontinuous +discord +discordant +discords +discos +discotheque +discotheques +discount +discounted +discounter +discounters +discounting +discounts +discourage +discouraged +discouragement +discouragements +discourages +discouraging +discouragingly +discourse +discoursed +discourses +discoursing +discourteous +discourtesies +discourtesy +discover +discovered +discoverer +discoverers +discoveries +discovering +discovers +discovery +discredit +discreditable +discreditably +discredited +discrediting +discredits +discreet +discreetly +discrepancies +discrepancy +discrete +discretely +discreteness +discretion +discretionary +discriminate +discriminated +discriminates +discriminating +discrimination +discriminatory +discs +discursive +discus +discuses +discuss +discussed +discusses +discussing +discussion +discussions +disdain +disdained +disdainful +disdainfully +disdaining +disdains +disease +diseased +diseases +disembark +disembarkation +disembarked +disembarking +disembarks +disembodied +disembowel +disemboweled +disemboweling +disembowelled +disembowelling +disembowels +disenchanted +disenchantment +disenfranchise +disenfranchised +disenfranchises +disenfranchising +disengage +disengaged +disengagement +disengages +disengaging +disentangle +disentangled +disentangles +disentangling +disequilibrium +disestablish +disestablished +disestablishes +disestablishing +disestablishment +disfavor +disfavour +disfigure +disfigured +disfigurement +disfigurements +disfigures +disfiguring +disfranchise +disfranchised +disfranchises +disfranchising +disgorge +disgorged +disgorges +disgorging +disgrace +disgraced +disgraceful +disgracefully +disgraces +disgracing +disgruntled +disguise +disguised +disguises +disguising +disgust +disgusted +disgustedly +disgusting +disgustingly +disgusts +dish +disharmony +dishcloth +dishcloths +dishearten +disheartened +disheartening +disheartens +dished +dishes +disheveled +dishevelled +dishing +dishonest +dishonestly +dishonesty +dishonor +dishonorable +dishonored +dishonoring +dishonors +dishonour +dishonourable +dishonourably +dishonoured +dishonouring +dishonours +dishpan +dishpans +dishrag +dishrags +dishwasher +dishwashers +dishwater +dishy +disillusion +disillusioned +disillusioning +disillusionment +disillusions +disincentive +disincentives +disinclination +disinclined +disinfect +disinfectant +disinfectants +disinfected +disinfecting +disinfects +disinformation +disingenuous +disingenuously +disinherit +disinherited +disinheriting +disinherits +disintegrate +disintegrated +disintegrates +disintegrating +disintegration +disinter +disinterest +disinterested +disinterestedly +disinterred +disinterring +disinters +disinvestment +disjointed +disjuncture +disk +diskette +diskettes +disks +dislike +disliked +dislikes +disliking +dislocate +dislocated +dislocates +dislocating +dislocation +dislocations +dislodge +dislodged +dislodges +dislodging +disloyal +disloyalty +dismal +dismally +dismantle +dismantled +dismantles +dismantling +dismay +dismayed +dismaying +dismays +dismember +dismembered +dismembering +dismemberment +dismembers +dismiss +dismissal +dismissals +dismissed +dismisses +dismissing +dismissive +dismissively +dismount +dismounted +dismounting +dismounts +disobedience +disobedient +disobediently +disobey +disobeyed +disobeying +disobeys +disobliging +disorder +disordered +disorderly +disorders +disorganisation +disorganised +disorganization +disorganized +disorient +disorientate +disorientated +disorientates +disorientating +disorientation +disoriented +disorienting +disorients +disown +disowned +disowning +disowns +disparage +disparaged +disparagement +disparages +disparaging +disparagingly +disparate +disparities +disparity +dispassionate +dispassionately +dispatch +dispatched +dispatcher +dispatchers +dispatches +dispatching +dispel +dispelled +dispelling +dispels +dispensable +dispensaries +dispensary +dispensation +dispensations +dispense +dispensed +dispenser +dispensers +dispenses +dispensing +dispersal +disperse +dispersed +disperses +dispersing +dispersion +dispirited +dispiriting +displace +displaced +displacement +displaces +displacing +display +displayed +displaying +displays +displease +displeased +displeases +displeasing +displeasure +disport +disported +disporting +disports +disposable +disposables +disposal +disposals +dispose +disposed +disposes +disposing +disposition +dispositions +dispossess +dispossessed +dispossesses +dispossessing +dispossession +disproportion +disproportionate +disproportionately +disproportions +disprove +disproved +disproves +disproving +disputable +disputation +disputations +disputatious +dispute +disputed +disputes +disputing +disqualification +disqualifications +disqualified +disqualifies +disqualify +disqualifying +disquiet +disquieted +disquieting +disquiets +disquisition +disquisitions +disregard +disregarded +disregarding +disregards +disrepair +disreputable +disreputably +disrepute +disrespect +disrespectful +disrespectfully +disrobe +disrobed +disrobes +disrobing +disrupt +disrupted +disrupting +disruption +disruptions +disruptive +disruptively +disrupts +diss +dissatisfaction +dissatisfied +dissect +dissected +dissecting +dissection +dissections +dissects +dissed +dissemble +dissembled +dissembles +dissembling +disseminate +disseminated +disseminates +disseminating +dissemination +dissension +dissensions +dissent +dissented +dissenter +dissenters +dissenting +dissents +dissertation +dissertations +disservice +disses +dissidence +dissident +dissidents +dissimilar +dissimilarities +dissimilarity +dissimulate +dissimulated +dissimulates +dissimulating +dissing +dissipate +dissipated +dissipates +dissipating +dissipation +dissociate +dissociated +dissociates +dissociating +dissociation +dissolute +dissolutely +dissoluteness +dissolution +dissolve +dissolved +dissolves +dissolving +dissonance +dissonances +dissonant +dissuade +dissuaded +dissuades +dissuading +distance +distanced +distances +distancing +distant +distantly +distaste +distasteful +distastefully +distastefulness +distemper +distend +distended +distending +distends +distension +distention +distil +distill +distillation +distillations +distilled +distiller +distilleries +distillers +distillery +distilling +distills +distils +distinct +distinction +distinctions +distinctive +distinctively +distinctiveness +distinctly +distinguish +distinguishable +distinguished +distinguishes +distinguishing +distort +distorted +distorting +distortion +distortions +distorts +distract +distracted +distractedly +distracting +distraction +distractions +distracts +distraught +distress +distressed +distresses +distressful +distressing +distressingly +distribute +distributed +distributes +distributing +distribution +distributional +distributions +distributive +distributor +distributors +distributorship +distributorships +district +districts +distrust +distrusted +distrustful +distrusting +distrusts +disturb +disturbance +disturbances +disturbed +disturbing +disturbingly +disturbs +disunite +disunited +disunites +disuniting +disunity +disuse +disused +disyllabic +ditch +ditched +ditches +ditching +dither +dithered +ditherer +ditherers +dithering +dithers +ditransitive +ditties +ditto +dittos +ditty +ditzy +diuretic +diuretics +diurnal +diva +divan +divans +divas +dive +dived +diver +diverge +diverged +divergence +divergences +divergent +diverges +diverging +divers +diverse +diversification +diversified +diversifies +diversify +diversifying +diversion +diversionary +diversions +diversities +diversity +divert +diverted +diverting +diverts +dives +divest +divested +divesting +divestiture +divestment +divests +divide +divided +dividend +dividends +divider +dividers +divides +dividing +divination +divine +divined +divinely +diviner +diviners +divines +diving +divining +divinities +divinity +divisible +division +divisional +divisions +divisive +divisiveness +divisor +divisors +divorce +divorced +divorcee +divorcees +divorces +divorcing +divot +divots +divulge +divulged +divulges +divulging +divvied +divvies +divvy +divvying +dixieland +dizzied +dizzier +dizzies +dizziest +dizzily +dizziness +dizzy +dizzying +djinn +djinns +do +doable +dob +dobbed +dobbing +doberman +dobermans +dobs +doc +docile +docilely +docility +dock +docked +docker +dockers +docket +docketed +docketing +dockets +docking +dockland +docklands +docks +dockside +dockworker +dockworkers +dockyard +dockyards +docs +doctor +doctoral +doctorate +doctorates +doctored +doctoring +doctors +doctrinaire +doctrinal +doctrine +doctrines +docudrama +docudramas +document +documentaries +documentary +documentation +documented +documenting +documents +dodder +doddered +doddering +dodders +doddery +doddle +dodge +dodged +dodgem +dodgems +dodger +dodgers +dodges +dodgier +dodgiest +dodging +dodgy +dodo +dodoes +dodos +doe +doer +doers +does +doff +doffed +doffing +doffs +dog +dogcart +dogcarts +dogcatcher +dogcatchers +dogfight +dogfights +dogfish +dogged +doggedly +doggedness +doggerel +doggie +doggies +dogging +doggone +doggy +doghouse +doghouses +dogie +dogies +dogleg +doglegs +dogma +dogmas +dogmatic +dogmatically +dogmatism +dogmatist +dogmatists +dogs +dogsbodies +dogsbody +dogsled +dogsleds +dogwood +dogwoods +doh +doilies +doily +doing +doings +doldrums +dole +doled +doleful +dolefully +doles +doling +doll +dollar +dollars +dolled +dollhouse +dollhouses +dollies +dolling +dollop +dollops +dolls +dolly +dolmen +dolmens +dolorous +dolphin +dolphins +dolt +doltish +dolts +domain +domains +dome +domed +domes +domestic +domestically +domesticate +domesticated +domesticates +domesticating +domestication +domesticity +domestics +domicile +domiciled +domiciles +domiciliary +dominance +dominant +dominate +dominated +dominates +dominating +domination +dominatrices +dominatrix +domineering +dominion +dominions +domino +dominoes +don +donate +donated +donates +donating +donation +donations +done +donkey +donkeys +donned +donning +donnish +donor +donors +dons +donut +donuts +doodad +doodads +doodah +doodahs +doodle +doodled +doodles +doodling +doohickey +doohickeys +doolally +doom +doomed +dooming +dooms +doomsayer +doomsayers +doomsday +doomster +doomsters +door +doorbell +doorbells +doorjamb +doorjambs +doorkeeper +doorkeepers +doorknob +doorknobs +doorknocker +doorknockers +doorman +doormat +doormats +doormen +doorpost +doorposts +doors +doorstep +doorstepped +doorstepping +doorsteps +doorstop +doorstops +doorway +doorways +dope +doped +dopes +dopey +doping +doppelganger +doppelgangers +dories +dork +dorks +dorky +dorm +dormancy +dormant +dormer +dormers +dormice +dormitories +dormitory +dormouse +dorms +dorsal +dory +dos +dosage +dosages +dose +dosed +doses +dosh +dosing +doss +dossed +dosser +dossers +dosses +dosshouse +dosshouses +dossier +dossiers +dossing +dost +dot +dote +doted +dotes +doth +doting +dots +dotted +dottier +dottiest +dotting +dotty +double +doubled +doubles +doublespeak +doublet +doublets +doubling +doubly +doubt +doubted +doubter +doubters +doubtful +doubtfully +doubting +doubtless +doubts +douche +douched +douches +douching +dough +doughnut +doughnuts +doughty +doughy +dour +dourly +douse +doused +douses +dousing +dove +dovecot +dovecote +dovecotes +dovecots +doves +dovetail +dovetailed +dovetailing +dovetails +dovish +dowager +dowagers +dowdier +dowdiest +dowdy +dowel +dowels +down +downbeat +downbeats +downcast +downed +downer +downers +downfall +downfalls +downgrade +downgraded +downgrades +downgrading +downhearted +downhill +downier +downiest +downing +download +downloaded +downloading +downloads +downmarket +downplay +downplayed +downplaying +downplays +downpour +downpours +downright +downriver +downs +downscale +downshift +downshifted +downshifting +downshifts +downside +downsize +downsized +downsizes +downsizing +downspout +downspouts +downstage +downstairs +downstream +downswing +downswings +downtime +downtown +downtrend +downtrodden +downturn +downturns +downward +downwards +downwind +downy +dowries +dowry +dowse +dowsed +dowser +dowsers +dowses +dowsing +doyen +doyenne +doyennes +doyens +doze +dozed +dozen +dozens +dozes +dozier +doziest +dozily +doziness +dozing +dozy +drab +drabber +drabbest +drabness +drachma +drachmae +drachmas +draconian +draft +drafted +draftee +draftees +draftier +draftiest +drafting +drafts +draftsman +draftsmanship +draftsmen +draftswoman +draftswomen +drafty +drag +dragged +dragging +dragnet +dragnets +dragon +dragonflies +dragonfly +dragons +dragoon +dragooned +dragooning +dragoons +drags +dragster +dragsters +drain +drainage +drainboard +drainboards +drained +draining +drainpipe +drainpipes +drains +drake +drakes +dram +drama +dramas +dramatic +dramatically +dramatics +dramatisation +dramatisations +dramatise +dramatised +dramatises +dramatising +dramatist +dramatists +dramatization +dramatizations +dramatize +dramatized +dramatizes +dramatizing +drams +drank +drape +draped +draper +draperies +drapers +drapery +drapes +draping +drastic +drastically +drat +dratted +draught +draughtboard +draughtboards +draughtier +draughtiest +draughts +draughtsman +draughtsmanship +draughtsmen +draughtswoman +draughtswomen +draughty +draw +drawback +drawbacks +drawbridge +drawbridges +drawer +drawers +drawing +drawings +drawl +drawled +drawling +drawls +drawn +draws +drawstring +drawstrings +dray +drays +dread +dreaded +dreadful +dreadfully +dreading +dreadlocks +dreads +dream +dreamboat +dreamboats +dreamed +dreamer +dreamers +dreamier +dreamiest +dreamily +dreaminess +dreaming +dreamland +dreamless +dreamlike +dreams +dreamt +dreamy +drear +drearier +dreariest +drearily +dreariness +dreary +dredge +dredged +dredger +dredgers +dredges +dredging +dregs +drench +drenched +drenches +drenching +dress +dressage +dressed +dresser +dressers +dresses +dressier +dressiest +dressing +dressings +dressmaker +dressmakers +dressmaking +dressy +drew +dribble +dribbled +dribbles +dribbling +dried +drier +driers +dries +driest +drift +drifted +drifter +drifters +drifting +driftnet +driftnets +drifts +driftwood +drill +drilled +drilling +drills +drily +drink +drinkable +drinker +drinkers +drinking +drinks +drip +dripped +drippier +drippiest +dripping +drippings +drippy +drips +drive +drivel +driveled +driveling +drivelled +drivelling +drivels +driven +driver +drivers +drives +driveway +driveways +driving +drizzle +drizzled +drizzles +drizzling +drizzly +droll +drolly +dromedaries +dromedary +drone +droned +drones +droning +drool +drooled +drooling +drools +droop +drooped +droopier +droopiest +drooping +droops +droopy +drop +droplet +droplets +dropout +dropouts +dropped +dropper +droppers +dropping +droppings +drops +dross +drought +droughts +drove +drover +drovers +droves +drown +drowned +drowning +drowns +drowsier +drowsiest +drowsily +drowsiness +drowsy +drubbing +drubbings +drudge +drudgery +drudges +drug +drugged +druggie +druggies +drugging +druggist +druggists +drugs +drugstore +drugstores +druid +druids +drum +drumbeat +drumbeats +drummed +drummer +drummers +drumming +drums +drumstick +drumsticks +drunk +drunkard +drunkards +drunken +drunkenly +drunkenness +drunks +dry +dryad +dryads +dryer +dryers +dryest +drying +dryly +dryness +dual +dualism +duality +dub +dubbed +dubbin +dubbing +dubious +dubiously +dubs +ducal +duchess +duchesses +duchies +duchy +duck +duckboards +ducked +duckies +ducking +duckling +ducklings +ducks +duckweed +ducky +duct +ductile +ducts +dud +dude +dudes +duds +due +duel +dueled +dueling +duelled +duelling +duels +dues +duet +duets +duff +duffed +duffer +duffers +duffing +duffs +dug +dugout +dugouts +duke +dukedom +dukedoms +dukes +dulcet +dulcimer +dulcimers +dull +dullard +dullards +dulled +duller +dullest +dulling +dullness +dulls +dully +duly +dumb +dumbbell +dumbbells +dumber +dumbest +dumbfound +dumbfounded +dumbfounding +dumbfounds +dumbly +dumbness +dumbo +dumbos +dumbstruck +dumbwaiter +dumbwaiters +dummies +dummy +dump +dumped +dumper +dumpers +dumping +dumpling +dumplings +dumps +dumpy +dun +dunce +dunces +dunderhead +dunderheads +dune +dunes +dung +dungarees +dungeon +dungeons +dunk +dunked +dunking +dunks +dunno +duo +duodena +duodenal +duodenum +duodenums +duopolies +duopoly +duos +dupe +duped +dupes +duping +duplex +duplexes +duplicate +duplicated +duplicates +duplicating +duplication +duplicitous +duplicity +durability +durable +duration +duress +during +dusk +dusky +dust +dustbin +dustbins +dustcart +dustcarts +dusted +duster +dusters +dustier +dustiest +dusting +dustman +dustmen +dustpan +dustpans +dusts +dustsheet +dustsheets +dusty +dutiable +duties +dutiful +dutifully +duty +duvet +duvets +dwarf +dwarfed +dwarfing +dwarfs +dwarves +dweeb +dweebs +dwell +dwelled +dweller +dwellers +dwelling +dwellings +dwells +dwelt +dwindle +dwindled +dwindles +dwindling +dye +dyed +dyeing +dyes +dying +dyke +dykes +dynamic +dynamically +dynamics +dynamism +dynamite +dynamited +dynamites +dynamiting +dynamo +dynamos +dynastic +dynasties +dynasty +dysentery +dysfunction +dysfunctional +dysfunctions +dyslexia +dyslexic +dyspepsia +dyspeptic +each +eager +eagerly +eagerness +eagle +eagles +ear +earache +earaches +eardrum +eardrums +earl +earldom +earldoms +earlier +earliest +earliness +earlobe +earlobes +earls +early +earmark +earmarked +earmarking +earmarks +earmuffs +earn +earned +earner +earners +earnest +earnestly +earnestness +earning +earnings +earns +earphone +earphones +earpiece +earpieces +earplug +earplugs +earring +earrings +ears +earshot +earth +earthbound +earthed +earthen +earthenware +earthier +earthiest +earthiness +earthing +earthling +earthlings +earthly +earthquake +earthquakes +earths +earthward +earthwards +earthwork +earthworks +earthworm +earthworms +earthy +earwig +earwigs +ease +eased +easel +easels +eases +easier +easiest +easily +easiness +easing +east +eastbound +easterlies +easterly +eastern +easterner +easterners +easternmost +eastward +eastwards +easy +eat +eatable +eaten +eater +eateries +eaters +eatery +eating +eats +eaves +eavesdrop +eavesdropped +eavesdropper +eavesdroppers +eavesdropping +eavesdrops +ebb +ebbed +ebbing +ebbs +ebony +ebullience +ebullient +eccentric +eccentrically +eccentricities +eccentricity +eccentrics +ecclesiastic +ecclesiastical +ecclesiastics +echelon +echelons +echo +echoed +echoes +echoing +eclair +eclairs +eclat +eclectic +eclectically +eclecticism +eclipse +eclipsed +eclipses +eclipsing +ecological +ecologically +ecologist +ecologists +ecology +economic +economical +economically +economics +economies +economise +economised +economises +economising +economist +economists +economize +economized +economizes +economizing +economy +ecosystem +ecosystems +ecru +ecstasies +ecstasy +ecstatic +ecstatically +ecu +ecumenical +ecumenism +ecus +eczema +eddied +eddies +eddy +eddying +edge +edged +edges +edgeways +edgewise +edgier +edgiest +edgily +edging +edgings +edgy +edible +edict +edicts +edification +edifice +edifices +edified +edifies +edify +edifying +edit +edited +editing +edition +editions +editor +editorial +editorialise +editorialised +editorialises +editorialising +editorialize +editorialized +editorializes +editorializing +editorials +editors +editorship +edits +educate +educated +educates +educating +education +educational +educationalist +educationalists +educationally +educationist +educationists +educative +educator +educators +edutainment +eek +eel +eels +eerie +eerier +eeriest +eerily +eff +efface +effaced +effaces +effacing +effect +effected +effecting +effective +effectively +effectiveness +effects +effectual +effectually +effed +effeminacy +effeminate +effervesce +effervesced +effervescence +effervescent +effervesces +effervescing +effete +efficacious +efficacy +efficiency +efficient +efficiently +effigies +effigy +effing +efflorescence +effluent +effluents +effort +effortless +effortlessly +efforts +effrontery +effs +effusion +effusions +effusive +effusively +egalitarian +egalitarianism +egalitarians +egg +eggcup +eggcups +egged +egghead +eggheads +egging +eggnog +eggplant +eggplants +eggs +eggshell +eggshells +ego +egocentric +egocentrically +egocentricity +egoism +egoist +egoistic +egoists +egomania +egomaniac +egomaniacs +egos +egotism +egotist +egotistical +egotistically +egotists +egregious +egret +egrets +eh +eiderdown +eiderdowns +eight +eighteen +eighteens +eighteenth +eighteenths +eighth +eighths +eighties +eightieth +eightieths +eights +eighty +eisteddfod +eisteddfods +either +ejaculate +ejaculated +ejaculates +ejaculating +ejaculation +ejaculations +eject +ejected +ejecting +ejection +ejections +ejects +eke +eked +ekes +eking +elaborate +elaborated +elaborately +elaborates +elaborating +elaboration +elaborations +elan +elapse +elapsed +elapses +elapsing +elastic +elasticated +elasticity +elasticized +elastics +elated +elation +elbow +elbowed +elbowing +elbows +elder +elderberries +elderberry +elderly +elders +eldest +elect +elected +electing +election +electioneering +elections +elective +electives +elector +electoral +electorally +electorate +electorates +electors +electric +electrical +electrically +electrician +electricians +electricity +electrics +electrification +electrified +electrifies +electrify +electrifying +electrocardiogram +electrocardiograms +electrocute +electrocuted +electrocutes +electrocuting +electrocution +electrocutions +electrode +electrodes +electroencephalogram +electroencephalograms +electrolysis +electrolyte +electrolytes +electromagnet +electromagnetic +electromagnetism +electromagnets +electron +electronic +electronically +electronics +electrons +electroplate +electroplated +electroplates +electroplating +elects +elegance +elegant +elegantly +elegiac +elegies +elegy +element +elemental +elementary +elements +elephant +elephantine +elephants +elevate +elevated +elevates +elevating +elevation +elevations +elevator +elevators +eleven +elevens +elevenses +eleventh +elevenths +elf +elfin +elicit +elicited +eliciting +elicits +elide +elided +elides +eliding +eligibility +eligible +eliminate +eliminated +eliminates +eliminating +elimination +eliminations +eliminator +eliminators +elision +elisions +elite +elites +elitism +elitist +elitists +elixir +elixirs +elk +elks +ellipse +ellipses +ellipsis +elliptic +elliptical +elliptically +elm +elms +elocution +elongate +elongated +elongates +elongating +elongation +elongations +elope +eloped +elopement +elopements +elopes +eloping +eloquence +eloquent +eloquently +else +elsewhere +elucidate +elucidated +elucidates +elucidating +elucidation +elucidations +elude +eluded +eludes +eluding +elusive +elusively +elusiveness +elves +emaciated +emaciation +email +emailed +emailing +emails +emanate +emanated +emanates +emanating +emanation +emanations +emancipate +emancipated +emancipates +emancipating +emancipation +emasculate +emasculated +emasculates +emasculating +emasculation +embalm +embalmed +embalmer +embalmers +embalming +embalms +embankment +embankments +embargo +embargoed +embargoes +embargoing +embark +embarkation +embarkations +embarked +embarking +embarks +embarrass +embarrassed +embarrasses +embarrassing +embarrassingly +embarrassment +embarrassments +embassies +embassy +embattled +embed +embedded +embedding +embeds +embellish +embellished +embellishes +embellishing +embellishment +embellishments +ember +embers +embezzle +embezzled +embezzlement +embezzler +embezzlers +embezzles +embezzling +embitter +embittered +embittering +embitters +emblazon +emblazoned +emblazoning +emblazons +emblem +emblematic +emblematically +emblems +embodied +embodies +embodiment +embody +embodying +embolden +emboldened +emboldening +emboldens +embolism +embolisms +emboss +embossed +embosses +embossing +embrace +embraced +embraces +embracing +embrocation +embrocations +embroider +embroidered +embroideries +embroidering +embroiders +embroidery +embroil +embroiled +embroiling +embroils +embryo +embryological +embryologist +embryologists +embryology +embryonic +embryos +emcee +emceed +emceeing +emcees +emend +emendation +emendations +emended +emending +emends +emerald +emeralds +emerge +emerged +emergence +emergencies +emergency +emergent +emerges +emerging +emeritus +emery +emetic +emetics +emigrant +emigrants +emigrate +emigrated +emigrates +emigrating +emigration +emigrations +emigre +emigres +eminence +eminences +eminent +eminently +emir +emirate +emirates +emirs +emissaries +emissary +emission +emissions +emit +emits +emitted +emitting +emollient +emollients +emolument +emoluments +emote +emoted +emotes +emoting +emotion +emotional +emotionalism +emotionally +emotionless +emotions +emotive +emotively +empanel +empaneled +empaneling +empanelled +empanelling +empanels +empathetic +empathise +empathised +empathises +empathising +empathize +empathized +empathizes +empathizing +empathy +emperor +emperors +emphases +emphasis +emphasise +emphasised +emphasises +emphasising +emphasize +emphasized +emphasizes +emphasizing +emphatic +emphatically +emphysema +empire +empires +empirical +empirically +empiricism +empiricist +empiricists +emplacement +emplacements +employ +employable +employed +employee +employees +employer +employers +employing +employment +employments +employs +emporia +emporium +emporiums +empower +empowered +empowering +empowerment +empowers +empress +empresses +emptied +emptier +empties +emptiest +emptily +emptiness +empty +emptying +emu +emulate +emulated +emulates +emulating +emulation +emulations +emulsified +emulsifier +emulsifiers +emulsifies +emulsify +emulsifying +emulsion +emulsions +emus +enable +enabled +enabler +enablers +enables +enabling +enact +enacted +enacting +enactment +enactments +enacts +enamel +enameled +enameling +enamelled +enamelling +enamels +enamored +enamoured +encamp +encamped +encamping +encampment +encampments +encamps +encapsulate +encapsulated +encapsulates +encapsulating +encapsulation +encapsulations +encase +encased +encases +encasing +encephalitis +enchant +enchanted +enchanter +enchanters +enchanting +enchantment +enchantments +enchantress +enchantresses +enchants +enchilada +enchiladas +encircle +encircled +encirclement +encircles +encircling +enclave +enclaves +enclose +enclosed +encloses +enclosing +enclosure +enclosures +encode +encoded +encodes +encoding +encompass +encompassed +encompasses +encompassing +encore +encores +encounter +encountered +encountering +encounters +encourage +encouraged +encouragement +encouragements +encourages +encouraging +encouragingly +encroach +encroached +encroaches +encroaching +encroachment +encroachments +encrustation +encrustations +encrusted +encrypt +encrypted +encrypting +encryption +encrypts +encumber +encumbered +encumbering +encumbers +encumbrance +encumbrances +encyclical +encyclicals +encyclopaedia +encyclopaedias +encyclopaedic +encyclopedia +encyclopedias +encyclopedic +end +endanger +endangered +endangering +endangers +endear +endeared +endearing +endearingly +endearment +endearments +endears +endeavor +endeavored +endeavoring +endeavors +endeavour +endeavoured +endeavouring +endeavours +ended +endemic +endgame +endgames +ending +endings +endive +endives +endless +endlessly +endocrine +endorphin +endorse +endorsed +endorsement +endorsements +endorses +endorsing +endow +endowed +endowing +endowment +endowments +endows +endpoint +endpoints +ends +endurable +endurance +endure +endured +endures +enduring +endways +endwise +enema +enemas +enemies +enemy +energetic +energetically +energies +energise +energised +energises +energising +energize +energized +energizes +energizing +energy +enervate +enervated +enervates +enervating +enfeeble +enfeebled +enfeebles +enfeebling +enfold +enfolded +enfolding +enfolds +enforce +enforceable +enforced +enforcement +enforces +enforcing +enfranchise +enfranchised +enfranchisement +enfranchises +enfranchising +engage +engaged +engagement +engagements +engages +engaging +engender +engendered +engendering +engenders +engine +engineer +engineered +engineering +engineers +engines +engorge +engorged +engorgement +engorges +engorging +engrave +engraved +engraver +engravers +engraves +engraving +engravings +engross +engrossed +engrosses +engrossing +engulf +engulfed +engulfing +engulfs +enhance +enhanced +enhancement +enhancements +enhancer +enhancers +enhances +enhancing +enigma +enigmas +enigmatic +enigmatically +enjoin +enjoined +enjoining +enjoins +enjoy +enjoyable +enjoyably +enjoyed +enjoying +enjoyment +enjoyments +enjoys +enlarge +enlarged +enlargement +enlargements +enlarger +enlargers +enlarges +enlarging +enlighten +enlightened +enlightening +enlightenment +enlightens +enlist +enlisted +enlisting +enlistment +enlistments +enlists +enliven +enlivened +enlivening +enlivens +enmesh +enmeshed +enmeshes +enmeshing +enmities +enmity +ennoble +ennobled +ennobles +ennobling +ennui +enormities +enormity +enormous +enormously +enormousness +enough +enquire +enquired +enquirer +enquirers +enquires +enquiries +enquiring +enquiringly +enquiry +enrage +enraged +enrages +enraging +enrapture +enraptured +enraptures +enrapturing +enrich +enriched +enriches +enriching +enrichment +enrol +enroll +enrolled +enrolling +enrollment +enrollments +enrolls +enrolment +enrolments +enrols +ensconce +ensconced +ensconces +ensconcing +ensemble +ensembles +enshrine +enshrined +enshrines +enshrining +enshroud +enshrouded +enshrouding +enshrouds +ensign +ensigns +enslave +enslaved +enslavement +enslaves +enslaving +ensnare +ensnared +ensnares +ensnaring +ensue +ensued +ensues +ensuing +ensure +ensured +ensures +ensuring +entail +entailed +entailing +entails +entangle +entangled +entanglement +entanglements +entangles +entangling +entente +ententes +enter +entered +entering +enteritis +enterprise +enterprises +enterprising +enters +entertain +entertained +entertainer +entertainers +entertaining +entertainment +entertainments +entertains +enthral +enthrall +enthralled +enthralling +enthralls +enthrals +enthrone +enthroned +enthronement +enthronements +enthrones +enthroning +enthuse +enthused +enthuses +enthusiasm +enthusiasms +enthusiast +enthusiastic +enthusiastically +enthusiasts +enthusing +entice +enticed +enticement +enticements +entices +enticing +enticingly +entire +entirely +entirety +entities +entitle +entitled +entitlement +entitlements +entitles +entitling +entity +entomb +entombed +entombing +entombs +entomological +entomologist +entomologists +entomology +entourage +entourages +entrails +entrance +entranced +entrances +entrancing +entrant +entrants +entrap +entrapment +entrapped +entrapping +entraps +entreat +entreated +entreaties +entreating +entreats +entreaty +entree +entrees +entrench +entrenched +entrenches +entrenching +entrenchment +entrenchments +entrepreneur +entrepreneurial +entrepreneurs +entrepreneurship +entries +entropy +entrust +entrusted +entrusting +entrusts +entry +entryphone +entryphones +entryway +entryways +entwine +entwined +entwines +entwining +enumerate +enumerated +enumerates +enumerating +enunciate +enunciated +enunciates +enunciating +enunciation +envelop +envelope +enveloped +envelopes +enveloping +envelops +enviable +enviably +envied +envies +envious +enviously +environment +environmental +environmentalism +environmentalist +environmentalists +environmentally +environments +environs +envisage +envisaged +envisages +envisaging +envision +envisioned +envisioning +envisions +envoy +envoys +envy +envying +enzyme +enzymes +eon +eons +epaulet +epaulets +epaulette +epaulettes +epee +epees +ephemera +ephemeral +epic +epicenter +epicenters +epicentre +epicentres +epics +epicure +epicurean +epicureans +epicures +epidemic +epidemics +epidemiological +epidemiologist +epidemiologists +epidemiology +epidermis +epidermises +epidural +epidurals +epiglottis +epiglottises +epigram +epigrammatic +epigrams +epigraph +epigraphs +epilepsy +epileptic +epileptics +epilog +epilogs +epilogue +epilogues +epiphany +episcopal +episode +episodes +episodic +epistle +epistles +epistolary +epitaph +epitaphs +epithet +epithets +epitome +epitomise +epitomised +epitomises +epitomising +epitomize +epitomized +epitomizes +epitomizing +epoch +epochs +eponymous +epoxies +epoxy +equable +equably +equal +equaled +equaling +equalisation +equalise +equalised +equaliser +equalisers +equalises +equalising +equality +equalization +equalize +equalized +equalizer +equalizers +equalizes +equalizing +equalled +equalling +equally +equals +equanimity +equate +equated +equates +equating +equation +equations +equator +equatorial +equerries +equerry +equestrian +equestrians +equidistant +equilateral +equilibrium +equine +equinoctial +equinox +equinoxes +equip +equipment +equipped +equipping +equips +equitable +equitably +equities +equity +equivalence +equivalent +equivalents +equivocal +equivocally +equivocate +equivocated +equivocates +equivocating +equivocation +equivocations +er +era +eradicate +eradicated +eradicates +eradicating +eradication +eras +erase +erased +eraser +erasers +erases +erasing +erasure +erasures +ere +erect +erected +erectile +erecting +erection +erections +erects +ergo +ergonomic +ergonomically +ergonomics +ermine +erode +eroded +erodes +eroding +erogenous +erosion +erotic +erotica +erotically +eroticism +err +errand +errands +errant +errata +erratic +erratically +erratum +erred +erring +erroneous +erroneously +error +errors +errs +ersatz +erstwhile +erudite +erudition +erupt +erupted +erupting +eruption +eruptions +erupts +escalate +escalated +escalates +escalating +escalation +escalations +escalator +escalators +escalope +escalopes +escapade +escapades +escape +escaped +escapee +escapees +escapes +escaping +escapism +escapist +escapologist +escapologists +escapology +escarpment +escarpments +eschew +eschewed +eschewing +eschews +escort +escorted +escorting +escorts +escrow +escudo +escudos +esophagus +esophaguses +esoteric +espadrille +espadrilles +especial +especially +espied +espies +espionage +esplanade +esplanades +espousal +espouse +espoused +espouses +espousing +espresso +espressos +espy +espying +esquire +essay +essayed +essaying +essayist +essayists +essays +essence +essences +essential +essentially +essentials +establish +established +establishes +establishing +establishment +establishments +estate +estates +esteem +esteemed +esteeming +esteems +esthete +esthetes +esthetic +esthetically +esthetics +estimable +estimate +estimated +estimates +estimating +estimation +estimations +estranged +estrangement +estrangements +estrogen +estuaries +estuary +etch +etched +etcher +etchers +etches +etching +etchings +eternal +eternally +eternity +ethanol +ether +ethereal +ethic +ethical +ethically +ethics +ethnic +ethnically +ethnicity +ethnics +ethnocentric +ethnocentrism +ethnographer +ethnographers +ethnographic +ethnographically +ethnography +ethnological +ethnologically +ethnologist +ethnologists +ethnology +ethos +etiolated +etiologies +etiology +etiquette +etymological +etymologically +etymologies +etymologist +etymologists +etymology +eucalypti +eucalyptus +eucalyptuses +eugenic +eugenics +eulogies +eulogise +eulogised +eulogises +eulogising +eulogist +eulogistic +eulogists +eulogize +eulogized +eulogizes +eulogizing +eulogy +eunuch +eunuchs +euphemism +euphemisms +euphemistic +euphemistically +euphonious +euphoria +euphoric +euphorically +eureka +euro +euros +euthanasia +evacuate +evacuated +evacuates +evacuating +evacuation +evacuations +evacuee +evacuees +evade +evaded +evades +evading +evaluate +evaluated +evaluates +evaluating +evaluation +evaluations +evaluative +evanescent +evangelical +evangelicals +evangelise +evangelised +evangelises +evangelising +evangelism +evangelist +evangelistic +evangelists +evangelize +evangelized +evangelizes +evangelizing +evaporate +evaporated +evaporates +evaporating +evaporation +evasion +evasions +evasive +evasively +evasiveness +eve +even +evened +evening +evenings +evenly +evens +evensong +event +eventful +eventide +events +eventual +eventualities +eventuality +eventually +ever +evergreen +evergreens +everlasting +everlastingly +evermore +every +everybody +everyday +everyone +everyplace +everything +everywhere +eves +evict +evicted +evicting +eviction +evictions +evicts +evidence +evidenced +evidences +evidencing +evident +evidently +evil +evildoer +evildoers +evilly +evils +evince +evinced +evinces +evincing +eviscerate +eviscerated +eviscerates +eviscerating +evocation +evocations +evocative +evocatively +evoke +evoked +evokes +evoking +evolution +evolutionary +evolve +evolved +evolves +evolving +ewe +ewer +ewers +ewes +ex +exacerbate +exacerbated +exacerbates +exacerbating +exacerbation +exact +exacted +exacting +exactitude +exactly +exactness +exacts +exaggerate +exaggerated +exaggeratedly +exaggerates +exaggerating +exaggeration +exaggerations +exalt +exaltation +exalted +exalting +exalts +exam +examination +examinations +examine +examined +examiner +examiners +examines +examining +example +examples +exams +exasperate +exasperated +exasperatedly +exasperates +exasperating +exasperatingly +exasperation +excavate +excavated +excavates +excavating +excavation +excavations +excavator +excavators +exceed +exceeded +exceeding +exceedingly +exceeds +excel +excelled +excellence +excellent +excellently +excelling +excels +except +excepted +excepting +exception +exceptionable +exceptional +exceptionally +exceptions +excepts +excerpt +excerpted +excerpting +excerpts +excess +excesses +excessive +excessively +exchange +exchangeable +exchanged +exchanges +exchanging +exchequer +excise +excised +excises +excising +excision +excisions +excitability +excitable +excite +excited +excitedly +excitement +excitements +excites +exciting +excitingly +exclaim +exclaimed +exclaiming +exclaims +exclamation +exclamations +exclude +excluded +excludes +excluding +exclusion +exclusionary +exclusions +exclusive +exclusively +exclusiveness +exclusives +exclusivity +excommunicate +excommunicated +excommunicates +excommunicating +excommunication +excommunications +excoriate +excoriated +excoriates +excoriating +excoriation +excoriations +excrement +excrescence +excrescences +excreta +excrete +excreted +excretes +excreting +excretion +excretions +excruciating +excruciatingly +exculpate +exculpated +exculpates +exculpating +exculpation +exculpatory +excursion +excursions +excusable +excuse +excused +excuses +excusing +exec +execrable +execrably +execs +execute +executed +executes +executing +execution +executioner +executioners +executions +executive +executives +executor +executors +exegeses +exegesis +exemplar +exemplars +exemplary +exemplification +exemplifications +exemplified +exemplifies +exemplify +exemplifying +exempt +exempted +exempting +exemption +exemptions +exempts +exercise +exercised +exercises +exercising +exert +exerted +exerting +exertion +exertions +exerts +exes +exeunt +exfoliate +exfoliated +exfoliates +exfoliating +exfoliation +exhalation +exhalations +exhale +exhaled +exhales +exhaling +exhaust +exhausted +exhausting +exhaustion +exhaustive +exhaustively +exhausts +exhibit +exhibited +exhibiting +exhibition +exhibitionism +exhibitionist +exhibitionists +exhibitions +exhibitor +exhibitors +exhibits +exhilarate +exhilarated +exhilarates +exhilarating +exhilaration +exhort +exhortation +exhortations +exhorted +exhorting +exhorts +exhumation +exhumations +exhume +exhumed +exhumes +exhuming +exigencies +exigency +exigent +exile +exiled +exiles +exiling +exist +existed +existence +existences +existent +existential +existentialism +existentialist +existentialists +existing +exists +exit +exited +exiting +exits +exodus +exoduses +exonerate +exonerated +exonerates +exonerating +exoneration +exorbitant +exorbitantly +exorcise +exorcised +exorcises +exorcising +exorcism +exorcisms +exorcist +exorcists +exorcize +exorcized +exorcizes +exorcizing +exotic +exotica +exotically +exoticism +expand +expandable +expanded +expanding +expands +expanse +expanses +expansion +expansionary +expansionism +expansionist +expansionists +expansions +expansive +expansively +expansiveness +expat +expatiate +expatiated +expatiates +expatiating +expatriate +expatriated +expatriates +expatriating +expats +expect +expectancy +expectant +expectantly +expectation +expectations +expected +expecting +expectorant +expectorants +expectorate +expectorated +expectorates +expectorating +expects +expedience +expediency +expedient +expediently +expedients +expedite +expedited +expedites +expediting +expedition +expeditionary +expeditions +expeditious +expeditiously +expel +expelled +expelling +expels +expend +expendable +expended +expending +expenditure +expenditures +expends +expense +expenses +expensive +expensively +experience +experienced +experiences +experiencing +experiential +experiment +experimental +experimentally +experimentation +experimented +experimenter +experimenters +experimenting +experiments +expert +expertise +expertly +experts +expiate +expiated +expiates +expiating +expiation +expiration +expire +expired +expires +expiring +expiry +explain +explained +explaining +explains +explanation +explanations +explanatory +expletive +expletives +explicable +explicate +explicated +explicates +explicating +explication +explications +explicit +explicitly +explicitness +explode +exploded +explodes +exploding +exploit +exploitable +exploitation +exploitative +exploited +exploiter +exploiters +exploiting +exploits +exploration +explorations +exploratory +explore +explored +explorer +explorers +explores +exploring +explosion +explosions +explosive +explosively +explosiveness +explosives +expo +exponent +exponential +exponentially +exponents +export +exportable +exportation +exported +exporter +exporters +exporting +exports +expos +expose +exposed +exposes +exposing +exposition +expositions +expostulate +expostulated +expostulates +expostulating +expostulation +expostulations +exposure +exposures +expound +expounded +expounding +expounds +express +expressed +expresses +expressing +expression +expressionism +expressionist +expressionists +expressionless +expressionlessly +expressions +expressive +expressively +expressiveness +expressly +expressway +expressways +expropriate +expropriated +expropriates +expropriating +expropriation +expropriations +expropriator +expropriators +expulsion +expulsions +expunge +expunged +expunges +expunging +expurgate +expurgated +expurgates +expurgating +expurgation +expurgations +exquisite +exquisitely +exquisiteness +extant +extemporaneous +extempore +extemporisation +extemporise +extemporised +extemporises +extemporising +extemporization +extemporize +extemporized +extemporizes +extemporizing +extend +extendable +extended +extending +extends +extension +extensions +extensive +extensively +extent +extenuate +extenuated +extenuates +extenuating +extenuation +exterior +exteriors +exterminate +exterminated +exterminates +exterminating +extermination +exterminator +exterminators +external +externalisation +externalisations +externalise +externalised +externalises +externalising +externalization +externalizations +externalize +externalized +externalizes +externalizing +externally +externals +extinct +extinction +extinguish +extinguished +extinguisher +extinguishers +extinguishes +extinguishing +extirpate +extirpated +extirpates +extirpating +extirpation +extol +extolled +extolling +extols +extort +extorted +extorting +extortion +extortionate +extortionately +extortioner +extortioners +extortionist +extortionists +extorts +extra +extract +extracted +extracting +extraction +extractions +extractor +extractors +extracts +extracurricular +extraditable +extradite +extradited +extradites +extraditing +extradition +extraditions +extrajudicial +extramarital +extramural +extraneous +extraordinaire +extraordinarily +extraordinary +extrapolate +extrapolated +extrapolates +extrapolating +extrapolation +extrapolations +extras +extraterrestrial +extraterrestrials +extraterritorial +extravagance +extravagances +extravagant +extravagantly +extravaganza +extravaganzas +extravert +extraverts +extreme +extremely +extremes +extremism +extremist +extremists +extremities +extremity +extricate +extricated +extricates +extricating +extrication +extrinsic +extrovert +extroverted +extroverts +extrude +extruded +extrudes +extruding +extrusion +extrusions +exuberance +exuberant +exuberantly +exude +exuded +exudes +exuding +exult +exultant +exultantly +exultation +exulted +exulting +exults +eye +eyeball +eyeballed +eyeballing +eyeballs +eyebrow +eyebrows +eyed +eyeful +eyefuls +eyeglass +eyeglasses +eyeing +eyelash +eyelashes +eyelet +eyelets +eyelid +eyelids +eyeliner +eyeliners +eyepiece +eyepieces +eyes +eyesight +eyesore +eyesores +eyewitness +eyewitnesses +eying +eyrie +eyries +fa +fab +fable +fabled +fables +fabric +fabricate +fabricated +fabricates +fabricating +fabrication +fabrications +fabrics +fabulous +fabulously +facade +facades +face +facecloth +facecloths +faced +faceless +facelift +facelifts +faces +facet +facetious +facetiously +facetiousness +facets +facial +facially +facials +facile +facilitate +facilitated +facilitates +facilitating +facilitation +facilitator +facilitators +facilities +facility +facing +facings +facsimile +facsimiles +fact +faction +factional +factionalism +factions +factitious +factor +factored +factorial +factories +factoring +factorise +factorised +factorises +factorising +factorize +factorized +factorizes +factorizing +factors +factory +factotum +factotums +facts +factual +factually +faculties +faculty +fad +faddiness +faddish +faddishness +faddy +fade +faded +fades +fading +fads +faecal +faeces +faff +faffed +faffing +faffs +fag +fagged +fagging +faggot +faggots +fags +fail +failed +failing +failings +fails +failure +failures +faint +fainted +fainter +faintest +fainthearted +fainting +faintly +faintness +faints +fair +fairer +fairest +fairground +fairgrounds +fairies +fairly +fairness +fairs +fairway +fairways +fairy +fairyland +fairylands +faith +faithful +faithfully +faithfulness +faithfuls +faithless +faithlessly +faithlessness +faiths +fake +faked +faker +fakers +fakes +faking +fakir +fakirs +falcon +falconer +falconers +falconry +falcons +fall +fallacies +fallacious +fallaciously +fallacy +fallback +fallen +fallibility +fallible +falling +fallout +fallow +falls +false +falsehood +falsehoods +falsely +falsetto +falsettos +falsies +falsification +falsifications +falsified +falsifies +falsify +falsifying +falsity +falter +faltered +faltering +falteringly +falters +fame +famed +familial +familiar +familiarisation +familiarise +familiarised +familiarises +familiarising +familiarity +familiarization +familiarize +familiarized +familiarizes +familiarizing +familiarly +familiars +families +family +famine +famines +famished +famous +famously +fan +fanatic +fanatical +fanatically +fanaticism +fanatics +fanciable +fancied +fancier +fanciers +fancies +fanciest +fanciful +fancifully +fancy +fancying +fandango +fandangos +fanfare +fanfares +fang +fangs +fanlight +fanlights +fanned +fannies +fanning +fanny +fans +fantasia +fantasias +fantasies +fantasise +fantasised +fantasises +fantasising +fantasist +fantasists +fantasize +fantasized +fantasizes +fantasizing +fantastic +fantastical +fantastically +fantasy +fanzine +fanzines +far +faraway +farce +farces +farcical +farcically +fare +fared +fares +farewell +farewells +faring +farm +farmed +farmer +farmers +farmhand +farmhands +farmhouse +farmhouses +farming +farmland +farmlands +farms +farmstead +farmsteads +farmyard +farmyards +farrago +farragoes +farragos +farrier +farriers +fart +farted +farther +farthest +farthing +farthings +farting +farts +fascia +fascias +fascinate +fascinated +fascinates +fascinating +fascinatingly +fascination +fascinations +fascism +fascist +fascists +fashion +fashionable +fashionably +fashioned +fashioning +fashions +fast +fastball +fastballs +fasted +fasten +fastened +fastener +fasteners +fastening +fastenings +fastens +faster +fastest +fastidious +fastidiously +fastidiousness +fasting +fastness +fastnesses +fasts +fat +fatal +fatalism +fatalist +fatalistic +fatalistically +fatalists +fatalities +fatality +fatally +fate +fated +fateful +fates +fathead +fatheaded +fatheads +father +fathered +fatherhood +fathering +fatherland +fatherlands +fatherless +fatherly +fathers +fathom +fathomed +fathoming +fathomless +fathoms +fatigue +fatigued +fatigues +fatiguing +fatness +fats +fatso +fatsos +fatten +fattened +fattening +fattens +fatter +fattest +fattier +fatties +fattiest +fatty +fatuous +fatuously +fatuousness +fatwa +fatwas +faucet +faucets +fault +faulted +faulting +faultless +faultlessly +faults +faulty +faun +fauna +faunas +fauns +fave +faves +favor +favorable +favorably +favored +favoring +favorite +favorites +favoritism +favors +favour +favourable +favourably +favoured +favouring +favourite +favourites +favouritism +favours +fawn +fawned +fawning +fawns +fax +faxed +faxes +faxing +faze +fazed +fazes +fazing +fealty +fear +feared +fearful +fearfully +fearfulness +fearing +fearless +fearlessly +fearlessness +fears +fearsome +feasibility +feasible +feasibly +feast +feasted +feasting +feasts +feat +feather +featherbrained +feathered +feathering +feathers +featherweight +featherweights +feathery +feats +feature +featured +featureless +features +featuring +febrile +fecal +feces +feckless +fecklessness +fecund +fecundity +fed +federal +federalism +federalist +federalists +federally +federate +federated +federates +federating +federation +federations +fedora +fedoras +feds +fee +feeble +feebler +feeblest +feebly +feed +feedback +feedbag +feedbags +feeder +feeders +feeding +feeds +feel +feeler +feelers +feelgood +feeling +feelingly +feelings +feels +fees +feet +feign +feigned +feigning +feigns +feint +feinted +feinting +feints +feistier +feistiest +feisty +felafel +felafels +felicitations +felicities +felicitous +felicitously +felicity +feline +felines +fell +fella +fellas +fellatio +felled +feller +fellers +felling +fellow +fellows +fellowship +fellowships +fells +felon +felonies +felons +felony +felt +female +femaleness +females +feminine +femininity +feminise +feminised +feminises +feminising +feminism +feminist +feminists +feminize +feminized +feminizes +feminizing +femora +femoral +femur +femurs +fen +fence +fenced +fencer +fencers +fences +fencing +fend +fended +fender +fenders +fending +fends +fennel +fens +feral +ferment +fermentation +fermented +fermenting +ferments +fern +ferns +ferny +ferocious +ferociously +ferociousness +ferocity +ferret +ferreted +ferreting +ferrets +ferried +ferries +ferrous +ferrule +ferrules +ferry +ferryboat +ferryboats +ferrying +ferryman +ferrymen +fertile +fertilisation +fertilise +fertilised +fertiliser +fertilisers +fertilises +fertilising +fertility +fertilization +fertilize +fertilized +fertilizer +fertilizers +fertilizes +fertilizing +fervency +fervent +fervently +fervid +fervidly +fervor +fervour +fess +fessed +fesses +fessing +fester +festered +festering +festers +festival +festivals +festive +festivities +festivity +festoon +festooned +festooning +festoons +feta +fetal +fetch +fetched +fetches +fetching +fetchingly +fete +feted +fetes +fetid +feting +fetish +fetishes +fetishism +fetishist +fetishistic +fetishists +fetlock +fetlocks +fetter +fettered +fettering +fetters +fetus +fetuses +feud +feudal +feudalism +feudalistic +feuded +feuding +feuds +fever +fevered +feverish +feverishly +fevers +few +fewer +fewest +fey +fez +fezzes +fiance +fiancee +fiancees +fiances +fiasco +fiascoes +fiascos +fiat +fiats +fib +fibbed +fibber +fibbers +fibbing +fiber +fiberglass +fibers +fibre +fibreglass +fibres +fibrous +fibs +fibula +fibulae +fibulas +fiche +fiches +fickle +fickleness +fiction +fictional +fictionalisation +fictionalisations +fictionalise +fictionalised +fictionalises +fictionalising +fictionalization +fictionalizations +fictionalize +fictionalized +fictionalizes +fictionalizing +fictions +fictitious +fiddle +fiddled +fiddler +fiddlers +fiddles +fiddlesticks +fiddlier +fiddliest +fiddling +fiddly +fidelity +fidget +fidgeted +fidgeting +fidgets +fidgety +fiduciary +fief +fiefs +field +fielded +fielder +fielders +fielding +fields +fieldsman +fieldsmen +fieldwork +fieldworker +fieldworkers +fiend +fiendish +fiendishly +fiends +fierce +fiercely +fierceness +fiercer +fiercest +fieriest +fiery +fiesta +fiestas +fife +fifes +fifteen +fifteens +fifteenth +fifteenths +fifth +fifths +fifties +fiftieth +fiftieths +fifty +fig +fight +fightback +fighter +fighters +fighting +fights +figs +figurative +figuratively +figure +figured +figurehead +figureheads +figures +figurine +figurines +figuring +filament +filaments +filbert +filberts +filch +filched +filches +filching +file +filed +files +filet +fileted +fileting +filets +filial +filibuster +filibustered +filibustering +filibusters +filigree +filing +filings +fill +filled +filler +fillers +fillet +filleted +filleting +fillets +fillies +filling +fillings +fillip +fillips +fills +filly +film +filmed +filming +filmmaker +filmmakers +films +filmy +filo +filter +filtered +filtering +filters +filth +filthier +filthiest +filthily +filthiness +filthy +filtration +fin +finagle +finagled +finagles +finagling +final +finale +finales +finalisation +finalise +finalised +finalises +finalising +finalist +finalists +finality +finalization +finalize +finalized +finalizes +finalizing +finally +finals +finance +financed +finances +financial +financially +financier +financiers +financing +finch +finches +find +finder +finders +finding +findings +finds +fine +fined +finely +fineness +finer +finery +fines +finesse +finessed +finesses +finessing +finest +finger +fingered +fingering +fingermark +fingermarks +fingernail +fingernails +fingerprint +fingerprinted +fingerprinting +fingerprints +fingers +fingertip +fingertips +finicky +fining +finish +finished +finisher +finishers +finishes +finishing +finite +fink +finked +finking +finks +fins +fiord +fiords +fir +fire +firearm +firearms +fireball +fireballs +firebomb +firebombed +firebombing +firebombings +firebombs +firebrand +firebrands +firebreak +firebreaks +firebrick +firebricks +firecracker +firecrackers +fired +firefight +firefighter +firefighters +firefighting +firefights +fireflies +firefly +fireguard +fireguards +firehouse +firehouses +firelight +firelighter +firelighters +fireman +firemen +fireplace +fireplaces +firepower +fireproof +fires +firescreen +firescreens +fireside +firesides +firestorm +firestorms +firetrap +firetraps +firewall +firewalls +firewater +firewood +firework +fireworks +firing +firings +firm +firmament +firmed +firmer +firmest +firming +firmly +firmness +firms +firmware +firs +first +firstborn +firstly +firsts +firth +firths +fiscal +fiscally +fish +fishbowl +fishbowls +fishcake +fishcakes +fished +fisheries +fisherman +fishermen +fishery +fishes +fishier +fishiest +fishing +fishmonger +fishmongers +fishnet +fishwife +fishwives +fishy +fissile +fission +fissure +fissures +fist +fistful +fistfuls +fisticuffs +fists +fit +fitful +fitfully +fitment +fitments +fitness +fits +fitted +fitter +fitters +fittest +fitting +fittings +five +fiver +fivers +fives +fix +fixated +fixation +fixations +fixative +fixatives +fixed +fixedly +fixer +fixers +fixes +fixing +fixings +fixity +fixture +fixtures +fizz +fizzed +fizzes +fizzier +fizziest +fizzing +fizzle +fizzled +fizzles +fizzling +fizzy +fjord +fjords +flab +flabbergasted +flabbier +flabbiest +flabbiness +flabby +flaccid +flack +flag +flagellant +flagellants +flagellate +flagellated +flagellates +flagellating +flagellation +flagged +flagging +flagon +flagons +flagpole +flagpoles +flagrant +flagrantly +flags +flagship +flagships +flagstaff +flagstaffs +flagstone +flagstones +flail +flailed +flailing +flails +flair +flak +flake +flaked +flakes +flakier +flakiest +flakiness +flaking +flaky +flambe +flambeed +flamboyance +flamboyant +flamboyantly +flame +flamed +flamenco +flamencos +flameproof +flames +flaming +flamingo +flamingoes +flamingos +flammable +flan +flange +flanges +flank +flanked +flanking +flanks +flannel +flannelette +flannelled +flannelling +flannels +flans +flap +flapjack +flapjacks +flapped +flapper +flappers +flapping +flaps +flare +flared +flares +flaring +flash +flashback +flashbacks +flashbulb +flashbulbs +flashcard +flashcards +flashed +flasher +flashers +flashes +flashgun +flashguns +flashier +flashiest +flashing +flashlight +flashlights +flashpoint +flashpoints +flashy +flask +flasks +flat +flatbed +flatbeds +flatcar +flatcars +flatfish +flatfishes +flatlet +flatlets +flatly +flatmate +flatmates +flatness +flats +flatten +flattened +flattening +flattens +flatter +flattered +flatterer +flatterers +flattering +flatteringly +flatters +flattery +flattest +flatulence +flatulent +flatware +flaunt +flaunted +flaunting +flaunts +flautist +flautists +flavor +flavored +flavorful +flavoring +flavorings +flavorless +flavors +flavorsome +flavour +flavoured +flavouring +flavourings +flavourless +flavours +flavoursome +flaw +flawed +flawless +flawlessly +flaws +flax +flaxen +flay +flayed +flaying +flays +flea +fleabag +fleabags +fleabite +fleabites +fleapit +fleapits +fleas +fleck +flecked +flecking +flecks +fled +fledged +fledgeling +fledgelings +fledgling +fledglings +flee +fleece +fleeced +fleeces +fleecing +fleecy +fleeing +flees +fleet +fleeting +fleetingly +fleets +flesh +fleshed +fleshes +fleshing +fleshly +fleshpots +fleshy +flew +flex +flexed +flexes +flexibility +flexible +flexibly +flexing +flexitime +flextime +flick +flicked +flicker +flickered +flickering +flickers +flicking +flicks +flier +fliers +flies +flight +flightier +flightiest +flightiness +flightless +flights +flighty +flimsier +flimsiest +flimsily +flimsiness +flimsy +flinch +flinched +flinches +flinching +fling +flinging +flings +flint +flintlock +flintlocks +flints +flinty +flip +flippancy +flippant +flippantly +flipped +flipper +flippers +flipping +flips +flirt +flirtation +flirtations +flirtatious +flirtatiously +flirtatiousness +flirted +flirting +flirts +flirty +flit +flits +flitted +flitting +float +floatation +floated +floating +floats +flock +flocked +flocking +flocks +floe +floes +flog +flogged +flogging +floggings +flogs +flood +flooded +floodgate +floodgates +flooding +floodlight +floodlighting +floodlights +floodlit +floods +floor +floorboard +floorboards +floored +flooring +floors +floozie +floozies +floozy +flop +flophouse +flophouses +flopped +floppier +floppiest +floppiness +flopping +floppy +flops +flora +floral +floret +florets +florid +floridly +florin +florins +florist +florists +floss +flossed +flosses +flossing +flotation +flotations +flotilla +flotillas +flotsam +flounce +flounced +flounces +flouncing +flounder +floundered +floundering +flounders +flour +floured +flouring +flourish +flourished +flourishes +flourishing +flours +floury +flout +flouted +flouting +flouts +flow +flowed +flower +flowerbed +flowerbeds +flowered +flowering +flowerings +flowerpot +flowerpots +flowers +flowery +flowing +flown +flows +flu +flub +flubbed +flubbing +flubs +fluctuate +fluctuated +fluctuates +fluctuating +fluctuation +fluctuations +flue +fluency +fluent +fluently +flues +fluff +fluffed +fluffier +fluffiest +fluffiness +fluffing +fluffs +fluffy +fluid +fluidity +fluids +fluke +flukes +flukey +fluky +flummox +flummoxed +flummoxes +flummoxing +flung +flunk +flunked +flunkey +flunkeys +flunkies +flunking +flunks +flunky +fluorescence +fluorescent +fluoridate +fluoridated +fluoridates +fluoridating +fluoridation +fluoride +fluorine +fluorocarbon +fluorocarbons +flurried +flurries +flurry +flush +flushed +flushes +flushing +fluster +flustered +flustering +flusters +flute +fluted +flutes +fluting +flutist +flutists +flutter +fluttered +fluttering +flutters +fluvial +flux +fly +flyaway +flyblown +flyby +flybys +flycatcher +flycatchers +flyer +flyers +flying +flyleaf +flyleaves +flyover +flyovers +flypaper +flypapers +flypast +flypasts +flysheet +flysheets +flyweight +flyweights +flywheel +flywheels +foal +foaled +foaling +foals +foam +foamed +foaming +foams +foamy +fob +fobbed +fobbing +fobs +focal +foci +focus +focused +focuses +focusing +focussed +focussing +fodder +foe +foes +foetal +foetid +foetus +foetuses +fog +fogbound +fogey +fogeys +fogged +foggier +foggiest +fogging +foggy +foghorn +foghorns +fogies +fogs +fogy +foible +foibles +foil +foiled +foiling +foils +foist +foisted +foisting +foists +fold +foldaway +folded +folder +folders +folding +folds +foliage +folio +folios +folk +folklore +folks +folksy +follicle +follicles +follies +follow +followed +follower +followers +following +followings +follows +folly +foment +fomented +fomenting +foments +fond +fondant +fondants +fonder +fondest +fondle +fondled +fondles +fondling +fondly +fondness +fondue +fondues +font +fonts +food +foodie +foodies +foods +foodstuff +foodstuffs +fool +fooled +fooleries +foolery +foolhardiness +foolhardy +fooling +foolish +foolishly +foolishness +foolproof +fools +foolscap +foot +footage +football +footballer +footballers +footballing +footballs +footbridge +footbridges +footer +footers +footfall +footfalls +foothill +foothills +foothold +footholds +footie +footing +footlights +footling +footloose +footman +footmen +footnote +footnotes +footpath +footpaths +footplate +footplates +footprint +footprints +footrest +footrests +footslogging +footsore +footstep +footsteps +footstool +footstools +footwear +footwork +footy +fop +foppish +fops +for +forage +foraged +forages +foraging +foray +forays +forbade +forbear +forbearance +forbearing +forbears +forbid +forbidden +forbidding +forbiddingly +forbids +forbore +forborne +force +forced +forceful +forcefully +forcefulness +forceps +forces +forcible +forcibly +forcing +ford +forded +fording +fords +fore +forearm +forearms +forebear +forebears +foreboding +forebodings +forecast +forecasted +forecaster +forecasters +forecasting +forecastle +forecastles +forecasts +foreclose +foreclosed +forecloses +foreclosing +foreclosure +foreclosures +forecourt +forecourts +foredoomed +forefather +forefathers +forefeet +forefinger +forefingers +forefoot +forefront +foregather +foregathered +foregathering +foregathers +forego +foregoes +foregoing +foregone +foreground +foregrounded +foregrounding +foregrounds +forehand +forehands +forehead +foreheads +foreign +foreigner +foreigners +foreknowledge +foreleg +forelegs +forelock +forelocks +foreman +foremen +foremost +forename +forenames +forenoon +forensic +forensics +foreplay +forerunner +forerunners +foresaw +foresee +foreseeable +foreseeing +foreseen +foresees +foreshadow +foreshadowed +foreshadowing +foreshadows +foreshore +foreshores +foreshorten +foreshortened +foreshortening +foreshortens +foresight +foreskin +foreskins +forest +forestall +forestalled +forestalling +forestalls +forested +forester +foresters +forestry +forests +foretaste +foretastes +foretell +foretelling +foretells +forethought +foretold +forever +forewarn +forewarned +forewarning +forewarns +forewent +forewoman +forewomen +foreword +forewords +forfeit +forfeited +forfeiting +forfeits +forfeiture +forfeitures +forgather +forgathered +forgathering +forgathers +forgave +forge +forged +forger +forgeries +forgers +forgery +forges +forget +forgetful +forgetfully +forgetfulness +forgets +forgettable +forgetting +forging +forgivable +forgive +forgiven +forgiveness +forgives +forgiving +forgo +forgoes +forgoing +forgone +forgot +forgotten +fork +forked +forkful +forkfuls +forking +forks +forlorn +forlornly +form +formal +formaldehyde +formalin +formalisation +formalise +formalised +formalises +formalising +formalism +formalist +formalists +formalities +formality +formalization +formalize +formalized +formalizes +formalizing +formally +formals +format +formation +formations +formative +formats +formatted +formatting +formed +former +formerly +formidable +formidably +forming +formless +formlessness +forms +formula +formulae +formulaic +formulas +formulate +formulated +formulates +formulating +formulation +formulations +fornicate +fornicated +fornicates +fornicating +fornication +fornicator +fornicators +forsake +forsaken +forsakes +forsaking +forsook +forswear +forswearing +forswears +forswore +forsworn +forsythia +forsythias +fort +forte +fortes +forth +forthcoming +forthright +forthrightness +forthwith +forties +fortieth +fortieths +fortification +fortifications +fortified +fortifies +fortify +fortifying +fortissimo +fortitude +fortnight +fortnightly +fortnights +fortress +fortresses +forts +fortuitous +fortuitously +fortunate +fortunately +fortune +fortunes +forty +forum +forums +forward +forwarded +forwarding +forwardness +forwards +forwent +fossil +fossilisation +fossilise +fossilised +fossilises +fossilising +fossilization +fossilize +fossilized +fossilizes +fossilizing +fossils +foster +fostered +fostering +fosters +fought +foul +fouled +fouler +foulest +fouling +fouls +found +foundation +foundations +founded +founder +foundered +foundering +founders +founding +foundling +foundlings +foundries +foundry +founds +fount +fountain +fountains +founts +four +fours +foursome +foursomes +foursquare +fourteen +fourteens +fourteenth +fourteenths +fourth +fourthly +fourths +fowl +fowls +fox +foxed +foxes +foxglove +foxgloves +foxhole +foxholes +foxhound +foxhounds +foxhunt +foxhunting +foxhunts +foxier +foxiest +foxing +foxtrot +foxtrots +foxy +foyer +foyers +fracas +fracases +fractal +fractals +fraction +fractional +fractionally +fractions +fractious +fractiousness +fracture +fractured +fractures +fracturing +fragile +fragility +fragment +fragmentary +fragmentation +fragmented +fragmenting +fragments +fragrance +fragrances +fragrant +fragrantly +frail +frailer +frailest +frailties +frailty +frame +framed +frames +framework +frameworks +framing +franc +franchise +franchised +franchisee +franchisees +franchiser +franchisers +franchises +franchising +francophone +francs +frank +franked +franker +frankest +frankfurter +frankfurters +frankincense +franking +frankly +frankness +franks +frantic +frantically +frappe +frappes +frat +fraternal +fraternally +fraternisation +fraternise +fraternised +fraternises +fraternising +fraternities +fraternity +fraternization +fraternize +fraternized +fraternizes +fraternizing +fratricidal +fratricide +frats +fraud +frauds +fraudster +fraudsters +fraudulence +fraudulent +fraudulently +fraught +fray +frayed +fraying +frays +frazzled +freak +freaked +freakier +freakiest +freaking +freakish +freakishly +freakishness +freaks +freaky +freckle +freckled +freckles +free +freebase +freebased +freebases +freebasing +freebie +freebies +freebooter +freebooters +freed +freedom +freedoms +freehand +freehold +freeholder +freeholders +freeholds +freeing +freelance +freelanced +freelancer +freelancers +freelances +freelancing +freeload +freeloaded +freeloader +freeloaders +freeloading +freeloads +freely +freeman +freemasonry +freemen +freephone +freer +frees +freesia +freesias +freest +freestyle +freethinker +freethinkers +freethinking +freeware +freeway +freeways +freewheel +freewheeled +freewheeling +freewheels +freeze +freezer +freezers +freezes +freezing +freight +freighted +freighter +freighters +freighting +freights +frenetic +frenetically +frenzied +frenziedly +frenzies +frenzy +frequencies +frequency +frequent +frequented +frequenting +frequently +frequents +fresco +frescoes +frescos +fresh +freshen +freshened +freshening +freshens +fresher +freshers +freshest +freshly +freshman +freshmen +freshness +freshwater +fret +fretful +fretfully +frets +fretted +fretting +fretwork +friable +friar +friaries +friars +friary +fricassee +fricassees +fricative +fricatives +friction +frictions +fridge +fridges +fried +friend +friendless +friendlier +friendlies +friendliest +friendliness +friendly +friends +friendship +friendships +frier +friers +fries +frieze +friezes +frig +frigate +frigates +frigged +frigging +fright +frighten +frightened +frightening +frighteningly +frightens +frightful +frightfully +frights +frigid +frigidity +frigidly +frigs +frill +frilled +frillier +frilliest +frills +frilly +fringe +fringed +fringes +fringing +fripperies +frippery +frisk +frisked +friskier +friskiest +friskily +friskiness +frisking +frisks +frisky +frisson +frissons +fritter +frittered +frittering +fritters +frivolities +frivolity +frivolous +frivolously +frizz +frizzed +frizzes +frizzier +frizziest +frizzing +frizzled +frizzy +frock +frocks +frog +frogman +frogmarch +frogmarched +frogmarches +frogmarching +frogmen +frogs +frogspawn +frolic +frolicked +frolicking +frolics +frolicsome +from +frond +fronds +front +frontage +frontages +frontal +frontbench +frontbencher +frontbenchers +frontbenches +fronted +frontier +frontiers +frontiersman +frontiersmen +frontierswoman +frontierswomen +fronting +frontispiece +frontispieces +fronts +frosh +frost +frostbite +frostbitten +frosted +frostier +frostiest +frostily +frostiness +frosting +frosts +frosty +froth +frothed +frothier +frothiest +frothing +froths +frothy +frown +frowned +frowning +frowns +frowsty +froze +frozen +fructose +frugal +frugality +frugally +fruit +fruitcake +fruitcakes +fruited +fruiterer +fruiterers +fruitful +fruitfully +fruitfulness +fruitier +fruitiest +fruiting +fruition +fruitless +fruitlessly +fruitlessness +fruits +fruity +frump +frumpier +frumpiest +frumpish +frumps +frumpy +frustrate +frustrated +frustrates +frustrating +frustration +frustrations +fry +fryer +fryers +frying +fuchsia +fuchsias +fuck +fucked +fucker +fuckers +fuckhead +fuckheads +fucking +fucks +fuddle +fuddled +fuddles +fuddling +fudge +fudged +fudges +fudging +fuel +fueled +fueling +fuelled +fuelling +fuels +fug +fuggy +fugitive +fugitives +fugue +fugues +fulcra +fulcrum +fulcrums +fulfil +fulfill +fulfilled +fulfilling +fulfillment +fulfills +fulfilment +fulfils +full +fullback +fullbacks +fuller +fullest +fullness +fully +fulminate +fulminated +fulminates +fulminating +fulmination +fulminations +fulness +fulsome +fulsomely +fulsomeness +fumble +fumbled +fumbles +fumbling +fume +fumed +fumes +fumigate +fumigated +fumigates +fumigating +fumigation +fuming +fun +function +functional +functionalism +functionalist +functionalists +functionality +functionally +functionaries +functionary +functioned +functioning +functions +fund +fundamental +fundamentalism +fundamentalist +fundamentalists +fundamentally +fundamentals +funded +funding +funds +funeral +funerals +funerary +funereal +funereally +funfair +funfairs +fungal +fungi +fungicide +fungicides +fungoid +fungus +funguses +funicular +funiculars +funk +funked +funkier +funkiest +funking +funks +funky +funnel +funneled +funneling +funnelled +funnelling +funnels +funnier +funnies +funniest +funnily +funny +funnyman +funnymen +fur +furious +furiously +furl +furled +furling +furlong +furlongs +furlough +furloughed +furloughing +furloughs +furls +furnace +furnaces +furnish +furnished +furnishes +furnishing +furnishings +furniture +furor +furore +furred +furrier +furriers +furriest +furring +furrow +furrowed +furrowing +furrows +furry +furs +further +furtherance +furthered +furthering +furthermore +furthermost +furthers +furthest +furtive +furtively +furtiveness +fury +furze +fuse +fused +fuselage +fuselages +fuses +fusilier +fusiliers +fusillade +fusillades +fusing +fusion +fuss +fussbudget +fussbudgets +fussed +fusses +fussier +fussiest +fussily +fussiness +fussing +fusspot +fusspots +fussy +fustian +fustier +fustiest +fusty +futile +futility +futon +futons +future +futures +futurism +futurist +futuristic +futurists +futurity +fuze +fuzes +fuzz +fuzzier +fuzziest +fuzzily +fuzziness +fuzzy +gab +gabardine +gabardines +gabbed +gabbing +gabble +gabbled +gabbles +gabbling +gaberdine +gaberdines +gable +gabled +gables +gabs +gad +gadabout +gadabouts +gadded +gadding +gadflies +gadfly +gadget +gadgetry +gadgets +gads +gaff +gaffe +gaffer +gaffers +gaffes +gaffs +gag +gaga +gage +gaged +gages +gagged +gagging +gaggle +gaggles +gaging +gags +gaiety +gaily +gain +gained +gainer +gainers +gainful +gainfully +gaining +gains +gainsaid +gainsay +gainsaying +gainsays +gait +gaiter +gaiters +gaits +gal +gala +galactic +galas +galaxies +galaxy +gale +gales +gall +gallant +gallantly +gallantry +gallants +galled +galleon +galleons +galleries +gallery +galley +galleys +galling +gallivant +gallivanted +gallivanting +gallivants +gallon +gallons +gallop +galloped +galloping +gallops +gallows +galls +gallstone +gallstones +galore +galoshes +gals +galumphing +galvanic +galvanise +galvanised +galvanises +galvanising +galvanize +galvanized +galvanizes +galvanizing +gambit +gambits +gamble +gambled +gambler +gamblers +gambles +gambling +gambol +gamboled +gamboling +gambolled +gambolling +gambols +game +gamekeeper +gamekeepers +gamely +games +gamesmanship +gamete +gametes +gamey +gamier +gamiest +gamine +gamines +gaming +gamma +gammas +gammon +gammy +gamut +gander +ganders +gang +ganged +ganging +gangland +ganglia +gangling +ganglion +ganglions +gangly +gangplank +gangplanks +gangrene +gangrenous +gangs +gangsta +gangstas +gangster +gangsters +gangway +gangways +ganja +gannet +gannets +gantries +gantry +gaol +gaolbird +gaolbirds +gaolbreak +gaolbreaks +gaoled +gaoler +gaolers +gaoling +gaols +gap +gape +gaped +gapes +gaping +gaps +garage +garages +garb +garbage +garbanzo +garbanzos +garbed +garbled +garcon +garcons +garden +gardened +gardener +gardeners +gardenia +gardenias +gardening +gardens +gargantuan +gargle +gargled +gargles +gargling +gargoyle +gargoyles +garish +garishly +garland +garlanded +garlanding +garlands +garlic +garlicky +garment +garments +garner +garnered +garnering +garners +garnet +garnets +garnish +garnished +garnishes +garnishing +garotte +garotted +garottes +garotting +garret +garrets +garrison +garrisoned +garrisoning +garrisons +garrote +garroted +garrotes +garroting +garrotte +garrotted +garrottes +garrotting +garrulous +garrulously +garrulousness +garter +garters +gas +gasbag +gasbags +gaseous +gases +gash +gashed +gashes +gashing +gasholder +gasholders +gasket +gaskets +gaslight +gaslights +gasman +gasmen +gasohol +gasolene +gasoline +gasometer +gasometers +gasp +gasped +gasping +gasps +gassed +gasses +gassier +gassiest +gassing +gassy +gastric +gastritis +gastroenteritis +gastrointestinal +gastronome +gastronomes +gastronomic +gastronomically +gastronomy +gasworks +gate +gateau +gateaux +gatecrash +gatecrashed +gatecrasher +gatecrashers +gatecrashes +gatecrashing +gated +gatehouse +gatehouses +gatekeeper +gatekeepers +gatepost +gateposts +gates +gateway +gateways +gather +gathered +gatherer +gatherers +gathering +gatherings +gathers +gator +gators +gauche +gaucheness +gaucho +gauchos +gaudier +gaudiest +gaudily +gaudiness +gaudy +gauge +gauged +gauges +gauging +gaunt +gauntlet +gauntlets +gauntness +gauze +gauzy +gave +gavel +gavels +gavotte +gavottes +gawd +gawk +gawked +gawkier +gawkiest +gawkiness +gawking +gawks +gawky +gawp +gawped +gawping +gawps +gay +gayer +gayest +gayness +gays +gaze +gazebo +gazebos +gazed +gazelle +gazelles +gazes +gazette +gazetteer +gazetteers +gazettes +gazing +gazpacho +gazump +gazumped +gazumping +gazumps +gear +gearbox +gearboxes +geared +gearing +gears +gearshift +gearshifts +gecko +geckoes +geckos +geddit +gee +geed +geeing +geek +geeks +geeky +gees +geese +geezer +geezers +geisha +geishas +gel +gelatin +gelatine +gelatinous +geld +gelded +gelding +geldings +gelds +gelignite +gelled +gelling +gels +gem +gems +gemstone +gemstones +gen +gendarme +gendarmes +gender +genders +gene +genealogical +genealogically +genealogies +genealogist +genealogists +genealogy +genera +general +generalisation +generalisations +generalise +generalised +generalises +generalising +generalist +generalists +generalities +generality +generalization +generalizations +generalize +generalized +generalizes +generalizing +generally +generals +generate +generated +generates +generating +generation +generational +generations +generative +generator +generators +generic +generically +generics +generosity +generous +generously +genes +genesis +genetic +genetically +geneticist +geneticists +genetics +genial +geniality +genially +genie +genies +genii +genital +genitalia +genitals +genitive +genitives +genius +geniuses +genned +genning +genocidal +genocide +genocides +genome +genomes +genre +genres +gens +gent +genteel +genteelly +gentian +gentians +gentile +gentiles +gentility +gentle +gentleman +gentlemanly +gentlemen +gentleness +gentler +gentlest +gentlewoman +gentlewomen +gently +gentrification +gentrified +gentrifies +gentrify +gentrifying +gentry +gents +genuflect +genuflected +genuflecting +genuflection +genuflections +genuflects +genuine +genuinely +genuineness +genus +geocentric +geographer +geographers +geographic +geographical +geographically +geography +geological +geologically +geologist +geologists +geology +geometric +geometrical +geometrically +geometry +geophysical +geophysicist +geophysicists +geophysics +geopolitical +geopolitics +geothermal +geranium +geraniums +gerbil +gerbils +geriatric +geriatrician +geriatricians +geriatrics +germ +germane +germicide +germicides +germinate +germinated +germinates +germinating +germination +germs +gerontological +gerontologist +gerontologists +gerontology +gerrymander +gerrymandered +gerrymandering +gerrymanders +gerund +gerunds +gestalt +gestalts +gestation +gesticulate +gesticulated +gesticulates +gesticulating +gesticulation +gesticulations +gesture +gestured +gestures +gesturing +gesundheit +get +getaway +getaways +gets +getting +geyser +geysers +ghastlier +ghastliest +ghastliness +ghastly +ghee +gherkin +gherkins +ghetto +ghettoes +ghettoise +ghettoised +ghettoises +ghettoising +ghettoize +ghettoized +ghettoizes +ghettoizing +ghettos +ghost +ghosted +ghosting +ghostliness +ghostly +ghosts +ghostwrite +ghostwriter +ghostwriters +ghostwrites +ghostwriting +ghostwritten +ghostwrote +ghoul +ghoulish +ghouls +giant +giantess +giantesses +giants +gibber +gibbered +gibbering +gibberish +gibbers +gibbet +gibbets +gibbon +gibbons +gibe +gibed +gibes +gibing +giblets +giddier +giddiest +giddily +giddiness +giddy +gift +gifted +gifts +gig +gigabyte +gigabytes +gigantic +gigantically +gigged +gigging +giggle +giggled +giggles +giggling +giggly +gigolo +gigolos +gigs +gild +gilded +gilding +gilds +gill +gillie +gillies +gills +gilt +gilts +gimcrack +gimlet +gimlets +gimme +gimmick +gimmickry +gimmicks +gimmicky +gin +ginger +gingerbread +gingered +gingering +gingerly +gingers +gingery +gingham +gingivitis +ginormous +gins +ginseng +gipsies +gipsy +giraffe +giraffes +gird +girded +girder +girders +girding +girdle +girdled +girdles +girdling +girds +girl +girlfriend +girlfriends +girlhood +girlie +girlies +girlish +girlishly +girls +girly +giro +giros +girt +girth +girths +gismo +gismos +gist +git +gite +gites +gits +give +giveaway +giveaways +given +givens +giver +givers +gives +giving +gizmo +gizmos +gizzard +gizzards +glace +glacial +glaciation +glacier +glaciers +glad +gladden +gladdened +gladdening +gladdens +gladder +gladdest +glade +glades +gladiator +gladiatorial +gladiators +gladiola +gladiolas +gladioli +gladiolus +gladly +gladness +glam +glamor +glamorise +glamorised +glamorises +glamorising +glamorize +glamorized +glamorizes +glamorizing +glamorous +glamorously +glamour +glance +glanced +glances +glancing +gland +glands +glandular +glare +glared +glares +glaring +glaringly +glasnost +glass +glassed +glasses +glassful +glassfuls +glasshouse +glasshouses +glassier +glassiest +glassing +glassware +glassy +glaucoma +glaze +glazed +glazes +glazier +glaziers +glazing +gleam +gleamed +gleaming +gleams +glean +gleaned +gleaning +gleans +glee +gleeful +gleefully +glen +glens +glib +glibber +glibbest +glibly +glibness +glide +glided +glider +gliders +glides +gliding +glimmer +glimmered +glimmering +glimmerings +glimmers +glimpse +glimpsed +glimpses +glimpsing +glint +glinted +glinting +glints +glisten +glistened +glistening +glistens +glitch +glitches +glitter +glitterati +glittered +glittering +glitters +glittery +glitz +glitzier +glitziest +glitzy +gloaming +gloat +gloated +gloating +gloatingly +gloats +glob +global +globalisation +globalise +globalised +globalises +globalising +globalization +globalize +globalized +globalizes +globalizing +globally +globe +globes +globetrotter +globetrotters +globetrotting +globs +globular +globule +globules +glockenspiel +glockenspiels +gloom +gloomier +gloomiest +gloomily +gloominess +gloomy +glop +gloried +glories +glorification +glorified +glorifies +glorify +glorifying +glorious +gloriously +glory +glorying +gloss +glossaries +glossary +glossed +glosses +glossier +glossies +glossiest +glossiness +glossing +glossy +glottis +glottises +glove +gloved +gloves +glow +glowed +glower +glowered +glowering +glowers +glowing +glowingly +glows +glucose +glue +glued +glueing +glues +gluey +gluing +glum +glumly +glummer +glummest +glumness +glut +gluten +glutinous +gluts +glutted +glutting +glutton +gluttonous +gluttonously +gluttons +gluttony +glycerin +glycerine +glycerol +gnarled +gnarly +gnash +gnashes +gnat +gnats +gnaw +gnawed +gnawing +gnaws +gnocchi +gnome +gnomes +gnomic +gnu +gnus +go +goad +goaded +goading +goads +goal +goalie +goalies +goalkeeper +goalkeepers +goalless +goalmouth +goalmouths +goalpost +goalposts +goals +goalscorer +goalscorers +goaltender +goaltenders +goat +goatee +goatees +goatherd +goatherds +goats +goatskin +goatskins +gob +gobbed +gobbet +gobbets +gobbing +gobble +gobbled +gobbledegook +gobbledygook +gobbles +gobbling +goblet +goblets +goblin +goblins +gobs +gobsmacked +gobstopper +gobstoppers +god +godawful +godchild +godchildren +goddam +goddammit +goddamn +goddamned +goddaughter +goddaughters +goddess +goddesses +godfather +godfathers +godless +godlessly +godlessness +godlike +godliness +godly +godmother +godmothers +godparent +godparents +gods +godsend +godson +godsons +godspeed +goer +goers +goes +gofer +gofers +goggle +goggled +goggles +goggling +going +goiter +goiters +goitre +goitres +gold +golden +goldfield +goldfields +goldfinch +goldfinches +goldfish +goldfishes +goldmine +goldmines +golds +goldsmith +goldsmiths +golf +golfer +golfers +golfing +gollies +golliwog +golliwogs +golly +gonad +gonads +gondola +gondolas +gondolier +gondoliers +gone +goner +goners +gong +gongs +gonna +gonorrhea +gonorrhoea +goo +good +goodbye +goodbyes +goodie +goodies +goodish +goodly +goodness +goods +goodwill +goody +gooey +goof +goofed +goofier +goofiest +goofing +goofs +goofy +googlies +googly +gooier +gooiest +goon +goons +goose +gooseberries +gooseberry +goosed +gooseflesh +gooses +goosestep +goosestepped +goosestepping +goosesteps +goosing +gopher +gophers +gore +gored +gores +gorge +gorged +gorgeous +gorgeously +gorgeousness +gorges +gorging +gorgon +gorgons +gorier +goriest +gorilla +gorillas +goring +gormless +gorse +gory +gosh +gosling +goslings +gospel +gospels +gossamer +gossip +gossiped +gossiping +gossips +gossipy +got +gotcha +goth +goths +gotta +gotten +gouache +gouaches +gouge +gouged +gouges +gouging +goulash +goulashes +gourd +gourds +gourmand +gourmands +gourmet +gourmets +gout +gouty +govern +governance +governed +governess +governesses +governing +government +governmental +governments +governor +governors +governorship +governs +gown +gowned +gowns +grab +grabbed +grabbier +grabbiest +grabbing +grabby +grabs +grace +graced +graceful +gracefully +gracefulness +graceless +gracelessly +gracelessness +graces +gracing +gracious +graciously +graciousness +grad +gradable +gradation +gradations +grade +graded +grades +gradient +gradients +grading +grads +gradual +gradually +graduate +graduated +graduates +graduating +graduation +graduations +graffiti +graft +grafted +grafting +grafts +grail +grain +grainier +grainiest +grains +grainy +gram +grammar +grammarian +grammarians +grammars +grammatical +grammatically +gramme +grammes +gramophone +gramophones +grams +gran +granaries +granary +grand +grandad +grandaddies +grandaddy +grandads +grandchild +grandchildren +granddad +granddaddies +granddaddy +granddads +granddaughter +granddaughters +grandee +grandees +grander +grandest +grandeur +grandfather +grandfathers +grandiloquence +grandiloquent +grandiose +grandly +grandma +grandmas +grandmother +grandmothers +grandness +grandpa +grandparent +grandparents +grandpas +grands +grandson +grandsons +grandstand +grandstanding +grandstands +grange +granges +granite +grannie +grannies +granny +granola +grans +grant +granted +granting +grants +granular +granulated +granule +granules +grape +grapefruit +grapefruits +grapes +grapevine +grapevines +graph +graphic +graphical +graphically +graphics +graphite +graphologist +graphologists +graphology +graphs +grapnel +grapnels +grapple +grappled +grapples +grappling +grasp +grasped +grasping +grasps +grass +grassed +grasses +grasshopper +grasshoppers +grassier +grassiest +grassing +grassland +grasslands +grassroots +grassy +grate +grated +grateful +gratefully +gratefulness +grater +graters +grates +gratification +gratifications +gratified +gratifies +gratify +gratifying +gratifyingly +gratin +grating +gratings +gratins +gratis +gratitude +gratuities +gratuitous +gratuitously +gratuitousness +gratuity +grave +gravedigger +gravediggers +gravel +graveled +gravelled +gravelly +gravely +graver +graves +graveside +gravesides +gravest +gravestone +gravestones +graveyard +graveyards +gravies +gravitas +gravitate +gravitated +gravitates +gravitating +gravitation +gravitational +gravity +gravy +gray +grayed +grayer +grayest +graying +grayish +grays +graze +grazed +grazes +grazing +grease +greased +greasepaint +greaser +greasers +greases +greasier +greasiest +greasiness +greasing +greasy +great +greatcoat +greatcoats +greater +greatest +greatly +greatness +greats +grebe +grebes +greed +greedier +greediest +greedily +greediness +greedy +green +greenback +greenbacks +greener +greenery +greenest +greenfield +greenflies +greenfly +greengage +greengages +greengrocer +greengrocers +greenhorn +greenhorns +greenhouse +greenhouses +greening +greenish +greenness +greens +greet +greeted +greeting +greetings +greets +gregarious +gregariously +gregariousness +gremlin +gremlins +grenade +grenades +grenadier +grenadiers +grenadine +grew +grey +greyed +greyhound +greyhounds +greying +greyish +greyness +greys +grid +griddle +griddles +gridiron +gridirons +gridlock +grids +grief +griefs +grievance +grievances +grieve +grieved +grieves +grieving +grievous +grievously +griffin +griffins +griffon +griffons +grill +grille +grilled +grilles +grilling +grillings +grills +grim +grimace +grimaced +grimaces +grimacing +grime +grimier +grimiest +grimly +grimmer +grimmest +grimness +grimy +grin +grind +grinder +grinders +grinding +grinds +grindstone +grindstones +gringo +gringos +grinned +grinning +grins +grip +gripe +griped +gripes +griping +gripped +gripping +grips +grislier +grisliest +grisly +gristle +gristly +grit +grits +gritted +gritter +gritters +grittier +grittiest +gritting +gritty +grizzle +grizzled +grizzles +grizzlies +grizzling +grizzly +groan +groaned +groaning +groans +grocer +groceries +grocers +grocery +grog +groggier +groggiest +groggy +groin +groins +grommet +grommets +groom +groomed +grooming +grooms +groomsman +groomsmen +groove +grooved +grooves +groovier +grooviest +groovy +grope +groped +gropes +groping +gross +grossed +grosser +grosses +grossest +grossing +grossly +grossness +grotesque +grotesquely +grotesques +grottier +grottiest +grotto +grottoes +grottos +grotty +grouch +grouched +grouches +grouchier +grouchiest +grouchiness +grouching +grouchy +ground +groundbreaking +groundcloth +groundcloths +grounded +grounder +grounders +groundhog +groundhogs +grounding +groundings +groundless +groundnut +groundnuts +grounds +groundsheet +groundsheets +groundskeeper +groundskeepers +groundsman +groundsmen +groundswell +groundwater +groundwork +group +grouped +groupie +groupies +grouping +groupings +groups +grouse +groused +grouses +grousing +grout +grouted +grouting +grouts +grove +grovel +groveled +groveling +grovelled +grovelling +grovels +groves +grow +grower +growers +growing +growl +growled +growling +growls +grown +grows +growth +growths +groyne +groynes +grub +grubbed +grubbier +grubbiest +grubbiness +grubbing +grubby +grubs +grudge +grudged +grudges +grudging +grudgingly +gruel +grueling +gruelingly +gruelling +gruellingly +gruesome +gruesomely +gruff +gruffly +gruffness +grumble +grumbled +grumbler +grumblers +grumbles +grumbling +grumblings +grump +grumpier +grumpiest +grumpily +grumpiness +grumps +grumpy +grunge +grungy +grunt +grunted +grunting +grunts +gryphon +gryphons +guacamole +guano +guarantee +guaranteed +guaranteeing +guarantees +guarantor +guarantors +guard +guarded +guardedly +guardhouse +guardhouses +guardian +guardians +guardianship +guarding +guardrail +guardrails +guardroom +guardrooms +guards +guardsman +guardsmen +guava +guavas +gubernatorial +guerilla +guerillas +guerrilla +guerrillas +guess +guessed +guesses +guessing +guesstimate +guesstimates +guesswork +guest +guested +guesthouse +guesthouses +guesting +guestroom +guestrooms +guests +guff +guffaw +guffawed +guffawing +guffaws +guidance +guide +guidebook +guidebooks +guided +guideline +guidelines +guides +guiding +guild +guilder +guilders +guildhall +guildhalls +guilds +guile +guileful +guileless +guilelessly +guillemot +guillemots +guillotine +guillotined +guillotines +guillotining +guilt +guiltier +guiltiest +guiltily +guiltless +guilty +guinea +guineas +guise +guises +guitar +guitarist +guitarists +guitars +gulag +gulags +gulch +gulches +gulf +gulfs +gull +gullet +gullets +gulley +gulleys +gullibility +gullible +gullies +gulls +gully +gulp +gulped +gulping +gulps +gum +gumball +gumballs +gumbo +gumboot +gumboots +gumbos +gumdrop +gumdrops +gummed +gummier +gummiest +gumming +gummy +gumption +gums +gumshoe +gumshoes +gun +gunboat +gunboats +gunfight +gunfighter +gunfighters +gunfights +gunfire +gunge +gungy +gunk +gunman +gunmen +gunmetal +gunned +gunnel +gunnels +gunner +gunners +gunnery +gunning +gunnysack +gunnysacks +gunpowder +gunrunner +gunrunners +guns +gunshot +gunshots +gunslinger +gunslingers +gunsmith +gunsmiths +gunwale +gunwales +guppies +guppy +gurgle +gurgled +gurgles +gurgling +gurney +gurneys +guru +gurus +gush +gushed +gusher +gushers +gushes +gushing +gushingly +gushy +gusset +gussets +gust +gustatory +gusted +gusting +gusto +gusts +gusty +gut +gutless +guts +gutsier +gutsiest +gutsy +gutted +gutter +guttered +guttering +gutters +guttersnipe +guttersnipes +gutting +guttural +guv +guvnor +guvnors +guvs +guy +guys +guzzle +guzzled +guzzler +guzzlers +guzzles +guzzling +gym +gymkhana +gymkhanas +gymnasia +gymnasium +gymnasiums +gymnast +gymnastic +gymnastics +gymnasts +gyms +gymslip +gymslips +gynaecological +gynaecologist +gynaecologists +gynaecology +gynecological +gynecologist +gynecologists +gynecology +gyp +gypped +gypping +gyps +gypsies +gypsum +gypsy +gyrate +gyrated +gyrates +gyrating +gyration +gyrations +gyro +gyros +gyroscope +gyroscopes +gyroscopic +ha +haberdasher +haberdasheries +haberdashers +haberdashery +habit +habitable +habitat +habitation +habitations +habitats +habits +habitual +habitually +habituated +habitue +habitues +hack +hacked +hacker +hackers +hacking +hackles +hackneyed +hacks +hacksaw +hacksaws +had +haddock +hadj +hadjes +haematological +haematologist +haematologists +haematology +haemoglobin +haemophilia +haemophiliac +haemophiliacs +haemorrhage +haemorrhaged +haemorrhages +haemorrhaging +haemorrhoids +hag +haggard +haggis +haggises +haggle +haggled +haggles +haggling +hagiographies +hagiography +hags +hah +haiku +hail +hailed +hailing +hails +hailstone +hailstones +hailstorm +hailstorms +hair +hairband +hairbands +hairbrush +hairbrushes +haircut +haircuts +hairdo +hairdos +hairdresser +hairdressers +hairdressing +hairdrier +hairdriers +hairdryer +hairdryers +hairgrip +hairgrips +hairier +hairiest +hairiness +hairless +hairline +hairlines +hairnet +hairnets +hairpiece +hairpieces +hairpin +hairpins +hairs +hairspray +hairsprays +hairstyle +hairstyles +hairy +haj +hajj +hajjes +hake +hakes +halal +halcyon +hale +half +halfback +halfbacks +halfpennies +halfpenny +halftone +halftones +halfway +halfwit +halfwits +halibut +halibuts +halitosis +hall +hallelujah +hallelujahs +hallmark +hallmarked +hallmarking +hallmarks +hallo +hallos +hallowed +halls +hallucinate +hallucinated +hallucinates +hallucinating +hallucination +hallucinations +hallucinatory +hallucinogen +hallucinogenic +hallucinogens +hallway +hallways +halo +haloes +halogen +halogens +halos +halt +halted +halter +halterneck +halternecks +halters +halting +haltingly +halts +halve +halved +halves +halving +ham +hamburger +hamburgers +hamlet +hamlets +hammed +hammer +hammered +hammering +hammerings +hammers +hamming +hammock +hammocks +hammy +hamper +hampered +hampering +hampers +hams +hamster +hamsters +hamstring +hamstringing +hamstrings +hamstrung +hand +handbag +handbags +handball +handbill +handbills +handbook +handbooks +handbrake +handbrakes +handcart +handcarts +handcraft +handcrafted +handcrafts +handcuff +handcuffed +handcuffing +handcuffs +handed +handful +handfuls +handgun +handguns +handhold +handholds +handicap +handicapped +handicapping +handicaps +handicraft +handicrafts +handier +handiest +handily +handing +handiwork +handkerchief +handkerchiefs +handle +handlebar +handlebars +handled +handler +handlers +handles +handling +handmade +handmaid +handmaiden +handmaidens +handmaids +handout +handouts +handover +handovers +handrail +handrails +hands +handsaw +handsaws +handset +handsets +handshake +handshakes +handsome +handsomely +handstand +handstands +handwriting +handwritten +handy +handyman +handymen +hang +hangar +hangars +hangdog +hanged +hanger +hangers +hanging +hangings +hangman +hangmen +hangout +hangouts +hangover +hangovers +hangs +hank +hanker +hankered +hankering +hankerings +hankers +hankie +hankies +hanks +hanky +hansom +hansoms +haphazard +haphazardly +hapless +happen +happened +happening +happenings +happens +happenstance +happenstances +happier +happiest +happily +happiness +happy +harangue +harangued +harangues +haranguing +harass +harassed +harasses +harassing +harassment +harbinger +harbingers +harbor +harbored +harboring +harbormaster +harbormasters +harbors +harbour +harboured +harbouring +harbours +hard +hardback +hardbacks +hardball +hardboard +hardcore +hardcover +hardcovers +harden +hardened +hardening +hardens +harder +hardest +hardier +hardiest +hardiness +hardliner +hardliners +hardly +hardness +hardscrabble +hardship +hardships +hardtop +hardtops +hardware +hardwood +hardwoods +hardy +hare +harebell +harebells +harebrained +hared +harelip +harelips +harem +harems +hares +haricot +haricots +haring +hark +harked +harken +harkened +harkening +harkens +harking +harks +harlequin +harlequins +harlot +harlots +harm +harmed +harmful +harmfully +harmfulness +harming +harmless +harmlessly +harmlessness +harmonic +harmonica +harmonicas +harmonics +harmonies +harmonious +harmoniously +harmoniousness +harmonisation +harmonise +harmonised +harmonises +harmonising +harmonization +harmonize +harmonized +harmonizes +harmonizing +harmony +harms +harness +harnessed +harnesses +harnessing +harp +harped +harpies +harping +harpist +harpists +harpoon +harpooned +harpooning +harpoons +harps +harpsichord +harpsichords +harpy +harridan +harridans +harried +harries +harrow +harrowed +harrowing +harrows +harrumph +harrumphed +harrumphing +harrumphs +harry +harrying +harsh +harsher +harshest +harshly +harshness +hart +harts +harvest +harvested +harvester +harvesters +harvesting +harvests +has +hash +hashed +hashes +hashing +hashish +hasp +hasps +hassle +hassled +hassles +hassling +hassock +hassocks +hast +haste +hasten +hastened +hastening +hastens +hastier +hastiest +hastily +hastiness +hasty +hat +hatband +hatbands +hatbox +hatboxes +hatch +hatchback +hatchbacks +hatched +hatcheries +hatchery +hatches +hatchet +hatchets +hatching +hatchway +hatchways +hate +hated +hateful +hater +haters +hates +hath +hating +hatpin +hatpins +hatred +hatreds +hats +hatstand +hatstands +hatter +hatters +haughtier +haughtiest +haughtily +haughtiness +haughty +haul +haulage +hauled +hauler +haulers +haulier +hauliers +hauling +hauls +haunch +haunches +haunt +haunted +haunting +hauntingly +haunts +hauteur +have +haven +havens +haversack +haversacks +having +havoc +haw +hawed +hawing +hawk +hawked +hawker +hawkers +hawking +hawkish +hawkishness +hawks +haws +hawser +hawsers +hawthorn +hawthorns +hay +haymaking +hayrick +hayricks +hayride +hayrides +haystack +haystacks +haywire +hazard +hazarded +hazarding +hazardous +hazards +haze +hazed +hazel +hazelnut +hazelnuts +hazels +hazes +hazier +haziest +hazily +hazing +hazy +he +head +headache +headaches +headband +headbands +headbanger +headbangers +headbanging +headboard +headboards +headbutt +headbutted +headbutting +headbutts +headcase +headcases +headcheese +headcount +headcounts +headdress +headdresses +headed +header +headers +headfirst +headgear +headhunt +headhunted +headhunter +headhunters +headhunting +headhunts +headier +headiest +heading +headings +headlamp +headlamps +headland +headlands +headless +headlight +headlights +headline +headlined +headliner +headliners +headlines +headlining +headlock +headlocks +headlong +headman +headmaster +headmasters +headmen +headmistress +headmistresses +headphones +headquartered +headquarters +headrest +headrests +headroom +heads +headscarf +headscarves +headset +headsets +headship +headships +headstone +headstones +headstrong +headteacher +headteachers +headwaters +headwind +headwinds +headword +headwords +heady +heal +healed +healer +healers +healing +heals +health +healthcare +healthful +healthier +healthiest +healthily +healthiness +healthy +heap +heaped +heaping +heaps +hear +heard +hearer +hearers +hearing +hearings +hearken +hearkened +hearkening +hearkens +hears +hearsay +hearse +hearses +heart +heartache +heartaches +heartbeat +heartbeats +heartbreak +heartbreaking +heartbreaks +heartbroken +heartburn +hearten +heartened +heartening +heartens +heartfelt +hearth +hearthrug +hearthrugs +hearths +heartier +heartiest +heartily +heartiness +heartland +heartlands +heartless +heartlessly +heartlessness +heartrending +hearts +heartsick +heartthrob +heartthrobs +heartwarming +hearty +heat +heated +heatedly +heater +heaters +heath +heathen +heathens +heather +heaths +heating +heatproof +heats +heatstroke +heatwave +heatwaves +heave +heaved +heaven +heavenly +heavens +heavenward +heavenwards +heaves +heavier +heavies +heaviest +heavily +heaviness +heaving +heavy +heavyweight +heavyweights +heck +heckle +heckled +heckler +hecklers +heckles +heckling +hectare +hectares +hectic +hector +hectored +hectoring +hectors +hedge +hedged +hedgehog +hedgehogs +hedgerow +hedgerows +hedges +hedging +hedonism +hedonist +hedonistic +hedonists +heed +heeded +heeding +heedless +heedlessly +heeds +heel +heeled +heeling +heels +heft +hefted +heftier +heftiest +heftily +hefting +hefts +hefty +hegemonic +hegemony +heifer +heifers +height +heighten +heightened +heightening +heightens +heights +heinous +heinousness +heir +heiress +heiresses +heirloom +heirlooms +heirs +heist +heisted +heisting +heists +held +helical +helices +helicopter +helicopters +heliotrope +heliotropes +helipad +helipads +heliport +heliports +helium +helix +helixes +hell +hellhole +hellholes +hellish +hellishly +hello +hellos +helluva +helm +helmet +helmeted +helmets +helms +helmsman +helmsmen +help +helped +helper +helpers +helpful +helpfully +helpfulness +helping +helpings +helpless +helplessly +helplessness +helpline +helplines +helpmate +helpmates +helpmeet +helpmeets +helps +hem +hematological +hematologist +hematologists +hematology +hemisphere +hemispheres +hemline +hemlines +hemlock +hemlocks +hemmed +hemming +hemoglobin +hemophilia +hemophiliac +hemophiliacs +hemorrhage +hemorrhaged +hemorrhages +hemorrhaging +hemorrhoid +hemorrhoids +hemp +hems +hen +hence +henceforth +henceforward +henchman +henchmen +henna +hennaed +hennaing +hennas +henpecked +hens +hepatic +hepatitis +heptagon +heptagonal +heptagons +heptathlon +heptathlons +her +herald +heralded +heraldic +heralding +heraldry +heralds +herb +herbaceous +herbal +herbalist +herbalists +herbals +herbicide +herbicides +herbivore +herbivores +herbivorous +herbs +herculean +herd +herded +herding +herds +herdsman +herdsmen +here +hereabout +hereabouts +hereafter +hereby +hereditary +heredity +herein +hereinafter +hereof +heresies +heresy +heretic +heretical +heretics +hereto +heretofore +hereupon +herewith +heritage +heritages +hermaphrodite +hermaphrodites +hermetic +hermetically +hermit +hermitage +hermitages +hermits +hernia +hernias +hero +heroes +heroic +heroically +heroics +heroin +heroine +heroines +heroism +heron +herons +herpes +herring +herringbone +herrings +hers +herself +hertz +hesitancy +hesitant +hesitantly +hesitate +hesitated +hesitates +hesitating +hesitation +hesitations +hessian +hetero +heterodox +heterodoxy +heterogeneity +heterogeneous +heteros +heterosexual +heterosexuality +heterosexually +heterosexuals +heuristic +heuristics +hew +hewed +hewing +hewn +hews +hex +hexagon +hexagonal +hexagons +hexameter +hexameters +hexed +hexes +hexing +hey +heyday +heydays +hi +hiatus +hiatuses +hibernate +hibernated +hibernates +hibernating +hibernation +hibiscus +hibiscuses +hiccough +hiccoughed +hiccoughing +hiccoughs +hiccup +hiccuped +hiccuping +hiccupped +hiccupping +hiccups +hick +hickey +hickeys +hickories +hickory +hicks +hid +hidden +hide +hideaway +hideaways +hidebound +hideous +hideously +hideousness +hideout +hideouts +hides +hiding +hidings +hie +hied +hierarchical +hierarchically +hierarchies +hierarchy +hieroglyph +hieroglyphic +hieroglyphics +hieroglyphs +hies +high +highball +highballs +highboy +highboys +highbrow +highbrows +highchair +highchairs +higher +highers +highest +highfalutin +highland +highlander +highlanders +highlands +highlight +highlighted +highlighter +highlighters +highlighting +highlights +highly +highs +highway +highwayman +highwaymen +highways +hijack +hijacked +hijacker +hijackers +hijacking +hijackings +hijacks +hijinks +hike +hiked +hiker +hikers +hikes +hiking +hilarious +hilariously +hilarity +hill +hillbillies +hillbilly +hillier +hilliest +hillock +hillocks +hills +hillside +hillsides +hilltop +hilltops +hilly +hilt +hilts +him +himself +hind +hinder +hindered +hindering +hinders +hindquarters +hindrance +hindrances +hinds +hindsight +hinge +hinged +hinges +hinging +hint +hinted +hinterland +hinterlands +hinting +hints +hip +hipbath +hipbaths +hiphuggers +hipper +hippest +hippie +hippies +hippo +hippopotami +hippopotamus +hippopotamuses +hippos +hippy +hips +hipster +hipsters +hire +hired +hireling +hirelings +hires +hiring +hirsute +his +hiss +hissed +hisses +hissing +histamine +histogram +histograms +historian +historians +historic +historical +historically +histories +history +histrionic +histrionically +histrionics +hit +hitch +hitched +hitches +hitchhike +hitchhiked +hitchhiker +hitchhikers +hitchhikes +hitchhiking +hitching +hither +hitherto +hits +hitter +hitters +hitting +hive +hived +hives +hiving +hiya +hm +hmm +hoagie +hoagies +hoard +hoarded +hoarder +hoarders +hoarding +hoardings +hoards +hoarier +hoariest +hoarse +hoarsely +hoarseness +hoarser +hoarsest +hoary +hoax +hoaxed +hoaxer +hoaxers +hoaxes +hoaxing +hob +hobbies +hobble +hobbled +hobbles +hobbling +hobby +hobbyhorse +hobbyhorses +hobbyist +hobbyists +hobgoblin +hobgoblins +hobnail +hobnails +hobnob +hobnobbed +hobnobbing +hobnobs +hobo +hoboes +hobos +hobs +hock +hocked +hockey +hocking +hocks +hod +hodgepodge +hods +hoe +hoed +hoedown +hoedowns +hoeing +hoes +hog +hogged +hogging +hoggish +hogs +hogwash +hoick +hoicked +hoicking +hoicks +hoist +hoisted +hoisting +hoists +hokey +hokum +hold +holdall +holdalls +holder +holders +holding +holdings +holdover +holdovers +holds +holdup +holdups +hole +holed +holes +holiday +holidayed +holidaying +holidaymaker +holidaymakers +holidays +holier +holiest +holiness +holing +holism +holistic +holistically +holler +hollered +hollering +hollers +hollies +hollow +hollowed +hollowing +hollowly +hollowness +hollows +holly +hollyhock +hollyhocks +holocaust +holocausts +hologram +holograms +holographic +holography +hols +holster +holsters +holy +homage +homburg +homburgs +home +homebodies +homebody +homeboy +homeboys +homecoming +homecomings +homed +homeland +homelands +homeless +homelessness +homelier +homeliest +homely +homemade +homemaker +homemakers +homeopath +homeopathic +homeopaths +homeopathy +homeowner +homeowners +homer +homers +homes +homesick +homesickness +homespun +homestead +homesteaded +homesteader +homesteaders +homesteading +homesteads +hometown +hometowns +homeward +homewards +homework +homeworker +homeworkers +homeworking +homey +homicidal +homicide +homicides +homier +homiest +homilies +homily +homing +hominy +homoeopath +homoeopathic +homoeopaths +homoeopathy +homoerotic +homogeneity +homogeneous +homogenise +homogenised +homogenises +homogenising +homogenize +homogenized +homogenizes +homogenizing +homogenous +homograph +homographs +homonym +homonyms +homophobia +homophobic +homophone +homophones +homosexual +homosexuality +homosexuals +homy +honcho +honchos +hone +honed +hones +honest +honestly +honesty +honey +honeybee +honeybees +honeycomb +honeycombed +honeycombs +honeyed +honeymoon +honeymooned +honeymooner +honeymooners +honeymooning +honeymoons +honeypot +honeypots +honeys +honeysuckle +honeysuckles +honing +honk +honked +honkies +honking +honks +honky +honor +honorable +honorably +honoraria +honorarium +honorariums +honorary +honored +honorific +honoring +honors +honour +honourable +honourably +honoured +honouring +honours +hooch +hood +hooded +hoodlum +hoodlums +hoods +hoodwink +hoodwinked +hoodwinking +hoodwinks +hooey +hoof +hoofed +hoofer +hoofers +hoofing +hoofs +hook +hookah +hookahs +hooked +hooker +hookers +hooking +hooks +hooligan +hooliganism +hooligans +hoop +hooped +hoopla +hoops +hooray +hoorays +hoot +hooted +hooter +hooters +hooting +hoots +hoover +hoovered +hoovering +hoovers +hooves +hop +hope +hoped +hopeful +hopefully +hopefuls +hopeless +hopelessly +hopelessness +hopes +hoping +hopped +hopper +hoppers +hopping +hops +hopscotch +horde +hordes +horizon +horizons +horizontal +horizontally +horizontals +hormonal +hormone +hormones +horn +horned +hornet +hornets +hornier +horniest +hornpipe +hornpipes +horns +horny +horoscope +horoscopes +horrendous +horrendously +horrible +horribly +horrid +horridly +horrific +horrifically +horrified +horrifies +horrify +horrifying +horrifyingly +horror +horrors +horse +horseback +horsebox +horseboxes +horsed +horseflies +horsefly +horsehair +horseman +horsemanship +horsemen +horseplay +horsepower +horseradish +horses +horseshit +horseshoe +horseshoes +horsetrading +horsewhip +horsewhipped +horsewhipping +horsewhips +horsewoman +horsewomen +horsey +horsing +horsy +horticultural +horticulturalist +horticulturalists +horticulture +horticulturist +horticulturists +hosanna +hose +hosed +hosepipe +hosepipes +hoses +hosiery +hosing +hospice +hospices +hospitable +hospitably +hospital +hospitalisation +hospitalise +hospitalised +hospitalises +hospitalising +hospitality +hospitalization +hospitalize +hospitalized +hospitalizes +hospitalizing +hospitals +host +hostage +hostages +hosted +hostel +hostelries +hostelry +hostels +hostess +hostesses +hostile +hostilities +hostility +hosting +hosts +hot +hotbed +hotbeds +hotchpotch +hotel +hotelier +hoteliers +hotels +hotfoot +hotfooted +hotfooting +hotfoots +hothead +hotheaded +hotheadedly +hotheads +hothouse +hothouses +hotline +hotlines +hotly +hotplate +hotplates +hotpot +hotpots +hots +hotshot +hotshots +hotspot +hotspots +hotted +hotter +hottest +hotting +houmous +houmus +hound +hounded +hounding +hounds +hour +hourglass +hourglasses +hourly +hours +house +houseboat +houseboats +housebound +houseboy +houseboys +housebreaker +housebreakers +housebreaking +housebroken +housecoat +housecoats +housed +houseflies +housefly +houseful +household +householder +householders +households +housekeeper +housekeepers +housekeeping +housemaid +housemaids +houseman +housemaster +housemasters +housemate +housemates +housemen +housemistress +housemistresses +houseplant +houseplants +houseproud +houseroom +houses +housewares +housewarming +housewarmings +housewife +housewifely +housewives +housework +housing +housings +hove +hovel +hovels +hover +hovercraft +hovercrafts +hovered +hovering +hovers +how +howdy +however +howitzer +howitzers +howl +howled +howler +howlers +howling +howls +howsoever +hub +hubbies +hubbub +hubby +hubcap +hubcaps +hubris +hubs +huckleberries +huckleberry +huckster +hucksters +huddle +huddled +huddles +huddling +hue +hues +huff +huffed +huffier +huffiest +huffily +huffing +huffs +huffy +hug +huge +hugely +huger +hugest +hugged +hugging +hugs +huh +hulk +hulking +hulks +hull +hullabaloo +hullabaloos +hulled +hulling +hullo +hullos +hulls +hum +human +humane +humanely +humanise +humanised +humanises +humanising +humanism +humanist +humanistic +humanists +humanitarian +humanitarianism +humanitarians +humanities +humanity +humanize +humanized +humanizes +humanizing +humankind +humanly +humanoid +humanoids +humans +humble +humbled +humbler +humbles +humblest +humbling +humbug +humbugs +humdinger +humdingers +humdrum +humeri +humerus +humid +humidified +humidifier +humidifiers +humidifies +humidify +humidifying +humidity +humiliate +humiliated +humiliates +humiliating +humiliation +humiliations +humility +hummed +humming +hummingbird +hummingbirds +hummock +hummocks +hummus +humongous +humor +humored +humoring +humorist +humorists +humorless +humorous +humorously +humors +humour +humoured +humouring +humourless +humours +hump +humpback +humpbacks +humped +humph +humping +humps +hums +humus +hunch +hunchback +hunchbacks +hunched +hunches +hunching +hundred +hundreds +hundredth +hundredths +hundredweight +hundredweights +hung +hunger +hungered +hungering +hungers +hungover +hungrier +hungriest +hungrily +hungry +hunk +hunker +hunkered +hunkering +hunkers +hunkier +hunkiest +hunks +hunky +hunt +hunted +hunter +hunters +hunting +huntress +huntresses +hunts +huntsman +huntsmen +hurdle +hurdled +hurdler +hurdlers +hurdles +hurdling +hurl +hurled +hurling +hurls +hurrah +hurray +hurricane +hurricanes +hurried +hurriedly +hurries +hurry +hurrying +hurt +hurtful +hurtfully +hurtfulness +hurting +hurtle +hurtled +hurtles +hurtling +hurts +husband +husbanded +husbanding +husbandry +husbands +hush +hushed +hushes +hushing +husk +husked +huskier +huskies +huskiest +huskily +huskiness +husking +husks +husky +hussar +hussars +hussies +hussy +hustings +hustle +hustled +hustler +hustlers +hustles +hustling +hut +hutch +hutches +huts +hyacinth +hyacinths +hyaena +hyaenas +hybrid +hybridise +hybridised +hybridises +hybridising +hybridize +hybridized +hybridizes +hybridizing +hybrids +hydra +hydrangea +hydrangeas +hydrant +hydrants +hydras +hydrate +hydrated +hydrates +hydrating +hydration +hydraulic +hydraulically +hydraulics +hydrocarbon +hydrocarbons +hydroelectric +hydroelectricity +hydrofoil +hydrofoils +hydrogen +hydrophobia +hydroplane +hydroplaned +hydroplanes +hydroplaning +hydroponics +hydrotherapy +hyena +hyenas +hygiene +hygienic +hygienically +hygienist +hygienists +hying +hymen +hymens +hymn +hymnal +hymnals +hymns +hype +hyped +hyper +hyperactive +hyperactivity +hyperbole +hyperbolic +hypercritical +hyperinflation +hyperlink +hyperlinks +hypermarket +hypermarkets +hypersensitive +hypersensitivity +hypertension +hypertext +hyperventilate +hyperventilated +hyperventilates +hyperventilating +hyperventilation +hypes +hyphen +hyphenate +hyphenated +hyphenates +hyphenating +hyphenation +hyphens +hyping +hypnosis +hypnotherapist +hypnotherapists +hypnotherapy +hypnotic +hypnotise +hypnotised +hypnotises +hypnotising +hypnotism +hypnotist +hypnotists +hypnotize +hypnotized +hypnotizes +hypnotizing +hypochondria +hypochondriac +hypochondriacs +hypocrisies +hypocrisy +hypocrite +hypocrites +hypocritical +hypodermic +hypodermics +hypoglycemia +hypoglycemic +hypotenuse +hypotenuses +hypothermia +hypotheses +hypothesis +hypothesise +hypothesised +hypothesises +hypothesising +hypothesize +hypothesized +hypothesizes +hypothesizing +hypothetical +hypothetically +hysterectomies +hysterectomy +hysteria +hysterical +hysterically +hysterics +iambic +ibex +ibid +ibis +ibises +ibuprofen +ice +iceberg +icebergs +icebox +iceboxes +icebreaker +icebreakers +iced +ices +icicle +icicles +icier +iciest +icily +iciness +icing +icky +icon +iconic +iconoclasm +iconoclast +iconoclastic +iconoclasts +iconography +icons +icy +id +idea +ideal +idealisation +idealise +idealised +idealises +idealising +idealism +idealist +idealistic +idealistically +idealists +idealization +idealizations +idealize +idealized +idealizes +idealizing +ideally +ideals +ideas +idem +identical +identically +identifiable +identification +identifications +identified +identifies +identify +identifying +identikit +identikits +identities +identity +ideogram +ideograms +ideograph +ideographs +ideological +ideologically +ideologies +ideologist +ideologists +ideologue +ideologues +ideology +idiocies +idiocy +idiom +idiomatic +idiomatically +idioms +idiosyncrasies +idiosyncrasy +idiosyncratic +idiot +idiotic +idiotically +idiots +idle +idled +idleness +idler +idlers +idles +idling +idly +idol +idolatrous +idolatry +idolise +idolised +idolises +idolising +idolize +idolized +idolizes +idolizing +idols +ids +idyll +idyllic +idyllically +idylls +if +iffy +ifs +igloo +igloos +igneous +ignite +ignited +ignites +igniting +ignition +ignitions +ignoble +ignobly +ignominious +ignominiously +ignominy +ignoramus +ignoramuses +ignorance +ignorant +ignore +ignored +ignores +ignoring +iguana +iguanas +ikon +ikons +ilk +ill +illegal +illegalities +illegality +illegally +illegals +illegible +illegibly +illegitimacy +illegitimate +illegitimately +illiberal +illicit +illicitly +illiteracy +illiterate +illiterates +illness +illnesses +illogical +illogicality +illogically +ills +illuminate +illuminated +illuminates +illuminating +illumination +illuminations +illumine +illumined +illumines +illumining +illusion +illusionist +illusionists +illusions +illusive +illusory +illustrate +illustrated +illustrates +illustrating +illustration +illustrations +illustrative +illustrator +illustrators +illustrious +image +imagery +images +imaginable +imaginary +imagination +imaginations +imaginative +imaginatively +imagine +imagined +imagines +imaging +imagining +imaginings +imam +imams +imbalance +imbalances +imbecile +imbeciles +imbecilic +imbecilities +imbecility +imbed +imbedded +imbedding +imbeds +imbibe +imbibed +imbibes +imbibing +imbroglio +imbroglios +imbue +imbued +imbues +imbuing +imitate +imitated +imitates +imitating +imitation +imitations +imitative +imitator +imitators +immaculate +immaculately +immanent +immaterial +immature +immaturity +immeasurable +immeasurably +immediacy +immediate +immediately +immemorial +immense +immensely +immensities +immensity +immerse +immersed +immerses +immersing +immersion +immigrant +immigrants +immigrate +immigrated +immigrates +immigrating +immigration +imminence +imminent +imminently +immobile +immobilisation +immobilise +immobilised +immobiliser +immobilisers +immobilises +immobilising +immobility +immobilization +immobilize +immobilized +immobilizer +immobilizers +immobilizes +immobilizing +immoderate +immoderately +immodest +immodesty +immolate +immolated +immolates +immolating +immolation +immoral +immorality +immorally +immortal +immortalise +immortalised +immortalises +immortalising +immortality +immortalize +immortalized +immortalizes +immortalizing +immortals +immovable +immune +immunisation +immunise +immunised +immunises +immunising +immunity +immunization +immunizations +immunize +immunized +immunizes +immunizing +immunodeficiency +immunology +immure +immured +immures +immuring +immutability +immutable +imp +impact +impacted +impacting +impacts +impair +impaired +impairing +impairment +impairments +impairs +impale +impaled +impales +impaling +impalpable +impanel +impaneled +impaneling +impanelled +impanelling +impanels +impart +imparted +impartial +impartiality +impartially +imparting +imparts +impassable +impasse +impasses +impassioned +impassive +impassively +impassivity +impatience +impatient +impatiently +impeach +impeachable +impeached +impeaches +impeaching +impeachment +impeachments +impeccable +impeccably +impecunious +impedance +impede +impeded +impedes +impediment +impedimenta +impediments +impeding +impel +impelled +impelling +impels +impending +impenetrability +impenetrable +impenetrably +impenitent +imperative +imperatives +imperceptible +imperceptibly +imperfect +imperfection +imperfections +imperfectly +imperial +imperialism +imperialist +imperialistic +imperialists +imperil +imperiled +imperiling +imperilled +imperilling +imperils +imperious +imperiously +imperiousness +imperishable +impermanence +impermanent +impermeable +impermissible +impersonal +impersonally +impersonate +impersonated +impersonates +impersonating +impersonation +impersonations +impersonator +impersonators +impertinence +impertinences +impertinent +impertinently +imperturbability +imperturbable +imperturbably +impervious +impetigo +impetuosity +impetuous +impetuously +impetuousness +impetus +impiety +impinge +impinged +impinges +impinging +impious +impiously +impiousness +impish +impishly +impishness +implacable +implacably +implant +implantation +implanted +implanting +implants +implausibility +implausible +implausibly +implement +implementation +implemented +implementing +implements +implicate +implicated +implicates +implicating +implication +implications +implicit +implicitly +implied +implies +implode +imploded +implodes +imploding +implore +implored +implores +imploring +imploringly +implosion +implosions +imply +implying +impolite +impolitely +impoliteness +impolitic +imponderable +imponderables +import +importance +important +importantly +importation +importations +imported +importer +importers +importing +imports +importunate +importune +importuned +importunes +importuning +impose +imposed +imposes +imposing +imposition +impositions +impossibilities +impossibility +impossible +impossibly +imposter +imposters +impostor +impostors +imposture +impostures +impotence +impotent +impotently +impound +impounded +impounding +impounds +impoverish +impoverished +impoverishes +impoverishing +impoverishment +impracticability +impracticable +impractical +impracticality +imprecation +imprecations +imprecise +imprecisely +imprecision +impregnable +impregnate +impregnated +impregnates +impregnating +impresario +impresarios +impress +impressed +impresses +impressing +impression +impressionable +impressionism +impressionist +impressionistic +impressionists +impressions +impressive +impressively +imprimatur +imprimaturs +imprint +imprinted +imprinting +imprints +imprison +imprisoned +imprisoning +imprisonment +imprisons +improbabilities +improbability +improbable +improbably +impromptu +improper +improperly +improprieties +impropriety +improve +improved +improvement +improvements +improves +improvidence +improvident +improving +improvisation +improvisations +improvise +improvised +improvises +improvising +imprudence +imprudent +imprudently +imps +impudence +impudent +impugn +impugned +impugning +impugns +impulse +impulses +impulsive +impulsively +impulsiveness +impunity +impure +impurities +impurity +imputation +imputations +impute +imputed +imputes +imputing +in +inability +inaccessibility +inaccessible +inaccuracies +inaccuracy +inaccurate +inaccurately +inaction +inactive +inactivity +inadequacies +inadequacy +inadequate +inadequately +inadmissible +inadvertence +inadvertent +inadvertently +inadvisable +inalienable +inamorata +inamoratas +inane +inanely +inanimate +inanities +inanity +inapplicable +inappropriate +inappropriately +inappropriateness +inarticulacy +inarticulate +inarticulately +inarticulateness +inattention +inattentive +inattentively +inaudibility +inaudible +inaudibly +inaugural +inaugurate +inaugurated +inaugurates +inaugurating +inauguration +inaugurations +inauspicious +inauspiciously +inboard +inborn +inbound +inbred +inbreeding +inbuilt +incalculable +incalculably +incandescence +incandescent +incantation +incantations +incapable +incapacitate +incapacitated +incapacitates +incapacitating +incapacity +incarcerate +incarcerated +incarcerates +incarcerating +incarceration +incarnate +incarnated +incarnates +incarnating +incarnation +incarnations +incautious +incautiously +incendiaries +incendiary +incense +incensed +incenses +incensing +incentive +incentives +inception +incessant +incessantly +incest +incestuous +incestuously +incestuousness +inch +inched +inches +inching +inchoate +incidence +incidences +incident +incidental +incidentally +incidentals +incidents +incinerate +incinerated +incinerates +incinerating +incineration +incinerator +incinerators +incipient +incise +incised +incises +incising +incision +incisions +incisive +incisively +incisiveness +incisor +incisors +incite +incited +incitement +incitements +incites +inciting +incivility +inclemency +inclement +inclination +inclinations +incline +inclined +inclines +inclining +inclose +inclosed +incloses +inclosing +include +included +includes +including +inclusion +inclusions +inclusive +incognito +incoherence +incoherent +incoherently +income +incomer +incomers +incomes +incoming +incommunicado +incomparable +incomparably +incompatibility +incompatible +incompetence +incompetent +incompetently +incompetents +incomplete +incompletely +incompleteness +incomprehensibility +incomprehensible +incomprehensibly +incomprehension +inconceivable +inconceivably +inconclusive +inconclusively +incongruities +incongruity +incongruous +incongruously +inconsequential +inconsequentially +inconsiderable +inconsiderate +inconsiderately +inconsistencies +inconsistency +inconsistent +inconsistently +inconsolable +inconsolably +inconspicuous +inconspicuously +inconstancy +inconstant +incontestable +incontestably +incontinence +incontinent +incontrovertible +incontrovertibly +inconvenience +inconvenienced +inconveniences +inconveniencing +inconvenient +inconveniently +incorporate +incorporated +incorporates +incorporating +incorporation +incorporeal +incorrect +incorrectly +incorrectness +incorrigible +incorrigibly +incorruptibility +incorruptible +incorruptibly +increase +increased +increases +increasing +increasingly +incredible +incredibly +incredulity +incredulous +incredulously +increment +incremental +incrementally +increments +incriminate +incriminated +incriminates +incriminating +incrimination +incrustation +incrustations +incubate +incubated +incubates +incubating +incubation +incubator +incubators +incubus +incubuses +inculcate +inculcated +inculcates +inculcating +inculcation +incumbencies +incumbency +incumbent +incumbents +incur +incurable +incurably +incurious +incurred +incurring +incurs +incursion +incursions +indebted +indebtedness +indecency +indecent +indecently +indecipherable +indecision +indecisive +indecisively +indecisiveness +indecorous +indecorously +indeed +indefatigable +indefatigably +indefensible +indefensibly +indefinable +indefinably +indefinite +indefinitely +indelible +indelibly +indelicacy +indelicate +indemnification +indemnified +indemnifies +indemnify +indemnifying +indemnities +indemnity +indent +indentation +indentations +indented +indenting +indents +indenture +indentured +indentures +independence +independent +independently +independents +indescribable +indescribably +indestructibility +indestructible +indeterminacy +indeterminate +index +indexation +indexations +indexed +indexes +indexing +indicate +indicated +indicates +indicating +indication +indications +indicative +indicator +indicators +indices +indict +indictable +indicted +indicting +indictment +indictments +indicts +indie +indies +indifference +indifferent +indifferently +indigence +indigenous +indigent +indigestible +indigestion +indignant +indignantly +indignation +indignities +indignity +indigo +indirect +indirectly +indiscernible +indiscipline +indiscreet +indiscreetly +indiscretion +indiscretions +indiscriminate +indiscriminately +indispensability +indispensable +indisposed +indisposition +indispositions +indisputable +indisputably +indissolubility +indissoluble +indissolubly +indistinct +indistinctly +indistinguishable +individual +individualise +individualised +individualises +individualising +individualism +individualist +individualistic +individualistically +individualists +individuality +individualize +individualized +individualizes +individualizing +individually +individuals +indivisibility +indivisible +indivisibly +indoctrinate +indoctrinated +indoctrinates +indoctrinating +indoctrination +indolence +indolent +indolently +indomitable +indomitably +indoor +indoors +indubitable +indubitably +induce +induced +inducement +inducements +induces +inducing +induct +inducted +inductee +inductees +inducting +induction +inductions +inductive +inductively +inducts +indulge +indulged +indulgence +indulgences +indulgent +indulgently +indulges +indulging +industrial +industrialisation +industrialise +industrialised +industrialises +industrialising +industrialism +industrialist +industrialists +industrialization +industrialize +industrialized +industrializes +industrializing +industrially +industries +industrious +industriously +industriousness +industry +inebriated +inebriation +inedible +ineffable +ineffably +ineffective +ineffectively +ineffectiveness +ineffectual +ineffectually +inefficiencies +inefficiency +inefficient +inefficiently +inelegant +inelegantly +ineligibility +ineligible +ineluctable +inept +ineptitude +ineptly +inequalities +inequality +inequitable +inequities +inequity +ineradicable +inert +inertia +inertial +inescapable +inescapably +inessential +inessentials +inestimable +inestimably +inevitability +inevitable +inevitably +inexact +inexcusable +inexcusably +inexhaustible +inexorability +inexorable +inexorably +inexpedient +inexpensive +inexpensively +inexperience +inexperienced +inexpert +inexpertly +inexplicable +inexplicably +inexpressible +inexpressibly +inexpressive +inextinguishable +inextricable +inextricably +infallibility +infallible +infallibly +infamies +infamous +infamy +infancy +infant +infanticide +infantile +infantry +infantryman +infantrymen +infants +infatuated +infatuation +infatuations +infect +infected +infecting +infection +infections +infectious +infectiously +infects +infelicities +infelicitous +infelicity +infer +inference +inferences +inferior +inferiority +inferiors +infernal +inferno +infernos +inferred +inferring +infers +infertile +infertility +infest +infestation +infestations +infested +infesting +infests +infidel +infidelities +infidelity +infidels +infield +infielder +infielders +infighting +infill +infilled +infilling +infills +infiltrate +infiltrated +infiltrates +infiltrating +infiltration +infiltrator +infiltrators +infinite +infinitely +infinitesimal +infinitesimally +infinitive +infinitives +infinity +infirm +infirmaries +infirmary +infirmities +infirmity +inflame +inflamed +inflames +inflaming +inflammable +inflammation +inflammations +inflammatory +inflatable +inflatables +inflate +inflated +inflates +inflating +inflation +inflationary +inflect +inflected +inflecting +inflection +inflections +inflects +inflexibility +inflexible +inflexibly +inflexion +inflexions +inflict +inflicted +inflicting +infliction +inflicts +inflow +inflows +influence +influenced +influences +influencing +influential +influenza +influx +influxes +info +infomercial +infomercials +inform +informal +informality +informally +informant +informants +information +informational +informative +informed +informer +informers +informing +informs +infotainment +infraction +infractions +infrared +infrastructural +infrastructure +infrastructures +infrequent +infrequently +infringe +infringed +infringement +infringements +infringes +infringing +infuriate +infuriated +infuriates +infuriating +infuriatingly +infuse +infused +infuses +infusing +infusion +infusions +ingenious +ingeniously +ingenue +ingenues +ingenuity +ingenuous +ingenuously +ingest +ingested +ingesting +ingestion +ingests +inglenook +inglenooks +inglorious +ingloriously +ingot +ingots +ingrained +ingrate +ingrates +ingratiate +ingratiated +ingratiates +ingratiating +ingratiatingly +ingratitude +ingredient +ingredients +ingress +ingrowing +ingrown +inhabit +inhabitable +inhabitant +inhabitants +inhabited +inhabiting +inhabits +inhalant +inhalants +inhalation +inhalations +inhale +inhaled +inhaler +inhalers +inhales +inhaling +inhere +inhered +inherent +inherently +inheres +inhering +inherit +inheritance +inheritances +inherited +inheriting +inheritor +inheritors +inherits +inhibit +inhibited +inhibiting +inhibition +inhibitions +inhibits +inhospitable +inhuman +inhumane +inhumanely +inhumanities +inhumanity +inimical +inimitable +iniquities +iniquitous +iniquity +initial +initialed +initialing +initialled +initialling +initially +initials +initiate +initiated +initiates +initiating +initiation +initiations +initiative +initiatives +inject +injected +injecting +injection +injections +injects +injudicious +injudiciously +injunction +injunctions +injure +injured +injures +injuries +injuring +injurious +injury +injustice +injustices +ink +inked +inkier +inkiest +inking +inkling +inklings +inks +inkstand +inkstands +inkwell +inkwells +inky +inlaid +inland +inlay +inlays +inlet +inlets +inmate +inmates +inmost +inn +innards +innate +innately +inner +innermost +inning +innings +innit +innkeeper +innkeepers +innocence +innocent +innocently +innocents +innocuous +innocuously +innocuousness +innovate +innovated +innovates +innovating +innovation +innovations +innovative +innovator +innovators +innovatory +inns +innuendo +innuendoes +innuendos +innumerable +innumeracy +innumerate +inoculate +inoculated +inoculates +inoculating +inoculation +inoculations +inoffensive +inoperable +inoperative +inopportune +inopportunely +inordinate +inordinately +inorganic +inpatient +inpatients +input +inputs +inputted +inputting +inquest +inquests +inquire +inquired +inquirer +inquirers +inquires +inquiries +inquiring +inquiringly +inquiry +inquisition +inquisitions +inquisitive +inquisitively +inquisitiveness +inquisitor +inquisitorial +inquisitors +inquorate +insalubrious +insane +insanely +insanitary +insanity +insatiable +insatiably +inscribe +inscribed +inscribes +inscribing +inscription +inscriptions +inscrutability +inscrutable +inscrutably +inseam +inseams +insect +insecticidal +insecticide +insecticides +insectivore +insectivores +insectivorous +insects +insecure +insecurely +insecurities +insecurity +inseminate +inseminated +inseminates +inseminating +insemination +insensibility +insensible +insensibly +insensitive +insensitively +insensitivity +inseparability +inseparable +inseparably +insert +inserted +inserting +insertion +insertions +inserts +inset +insets +insetting +inshore +inside +insider +insiders +insides +insidious +insidiously +insight +insightful +insights +insignia +insignificance +insignificant +insignificantly +insincere +insincerely +insincerity +insinuate +insinuated +insinuates +insinuating +insinuation +insinuations +insipid +insipidity +insipidly +insipidness +insist +insisted +insistence +insistent +insistently +insisting +insists +insole +insolence +insolent +insolently +insoles +insoluble +insolvable +insolvencies +insolvency +insolvent +insomnia +insomniac +insomniacs +insouciance +insouciant +inspect +inspected +inspecting +inspection +inspections +inspector +inspectorate +inspectorates +inspectors +inspects +inspiration +inspirational +inspirations +inspire +inspired +inspires +inspiring +instabilities +instability +instal +install +installation +installations +installed +installing +installment +installments +installs +instalment +instalments +instals +instance +instanced +instances +instancing +instant +instantaneous +instantaneously +instantly +instants +instead +instep +insteps +instigate +instigated +instigates +instigating +instigation +instigator +instigators +instil +instill +instilled +instilling +instills +instils +instinct +instinctive +instinctively +instincts +instinctual +institute +instituted +institutes +instituting +institution +institutional +institutionalisation +institutionalise +institutionalised +institutionalises +institutionalising +institutionalization +institutionalize +institutionalized +institutionalizes +institutionalizing +institutions +instruct +instructed +instructing +instruction +instructional +instructions +instructive +instructor +instructors +instructs +instrument +instrumental +instrumentalist +instrumentalists +instrumentals +instrumentation +instruments +insubordinate +insubordination +insubstantial +insufferable +insufferably +insufficiency +insufficient +insufficiently +insular +insularity +insulate +insulated +insulates +insulating +insulation +insulator +insulators +insulin +insult +insulted +insulting +insultingly +insults +insuperable +insuperably +insupportable +insurance +insurances +insure +insured +insurer +insurers +insures +insurgencies +insurgency +insurgent +insurgents +insuring +insurmountable +insurrection +insurrections +intact +intake +intakes +intangible +intangibles +intangibly +integer +integers +integral +integrally +integrate +integrated +integrates +integrating +integration +integrity +intellect +intellects +intellectual +intellectualise +intellectualised +intellectualises +intellectualising +intellectualism +intellectualize +intellectualized +intellectualizes +intellectualizing +intellectually +intellectuals +intelligence +intelligent +intelligently +intelligentsia +intelligibility +intelligible +intelligibly +intemperance +intemperate +intemperately +intend +intended +intending +intends +intense +intensely +intensification +intensified +intensifier +intensifiers +intensifies +intensify +intensifying +intensities +intensity +intensive +intensively +intent +intention +intentional +intentionally +intentions +intently +intents +inter +interact +interacted +interacting +interaction +interactions +interactive +interactively +interactivity +interacts +interbred +interbreed +interbreeding +interbreeds +intercede +interceded +intercedes +interceding +intercept +intercepted +intercepting +interception +interceptions +interceptor +interceptors +intercepts +intercession +intercessions +interchange +interchangeability +interchangeable +interchangeably +interchanged +interchanges +interchanging +intercity +intercollegiate +intercom +intercommunication +intercoms +interconnect +interconnected +interconnecting +interconnection +interconnections +interconnects +intercontinental +intercourse +interdenominational +interdepartmental +interdependence +interdependent +interdict +interdicted +interdicting +interdiction +interdicts +interdisciplinary +interest +interested +interesting +interestingly +interests +interface +interfaced +interfaces +interfacing +interfere +interfered +interference +interferes +interfering +interferon +intergalactic +intergovernmental +interim +interior +interiors +interject +interjected +interjecting +interjection +interjections +interjects +interlace +interlaced +interlaces +interlacing +interlink +interlinked +interlinking +interlinks +interlock +interlocked +interlocking +interlocks +interlocutor +interlocutors +interloper +interlopers +interlude +interludes +intermarriage +intermarriages +intermarried +intermarries +intermarry +intermarrying +intermediaries +intermediary +intermediate +intermediates +interment +interments +intermezzo +intermezzos +interminable +interminably +intermingle +intermingled +intermingles +intermingling +intermission +intermissions +intermittent +intermittently +intern +internal +internalisation +internalise +internalised +internalises +internalising +internalization +internalize +internalized +internalizes +internalizing +internally +international +internationalisation +internationalise +internationalised +internationalises +internationalising +internationalism +internationalist +internationalists +internationalization +internationalize +internationalized +internationalizes +internationalizing +internationally +internationals +internecine +interned +internee +internees +interning +internist +internists +internment +interns +internship +internships +interpenetrate +interpenetrated +interpenetrates +interpenetrating +interpenetration +interpersonal +interplanetary +interplay +interpolate +interpolated +interpolates +interpolating +interpolation +interpolations +interpose +interposed +interposes +interposing +interpret +interpretation +interpretations +interpretative +interpreted +interpreter +interpreters +interpreting +interpretive +interprets +interracial +interred +interregna +interregnum +interregnums +interrelate +interrelated +interrelates +interrelating +interrelation +interrelations +interrelationship +interrelationships +interring +interrogate +interrogated +interrogates +interrogating +interrogation +interrogations +interrogative +interrogatives +interrogator +interrogators +interrupt +interrupted +interrupting +interruption +interruptions +interrupts +inters +interscholastic +intersect +intersected +intersecting +intersection +intersections +intersects +intersperse +interspersed +intersperses +interspersing +interstate +interstates +interstellar +interstice +interstices +intertwine +intertwined +intertwines +intertwining +interval +intervals +intervene +intervened +intervenes +intervening +intervention +interventionism +interventionist +interventionists +interventions +interview +interviewed +interviewee +interviewees +interviewer +interviewers +interviewing +interviews +interwar +interweave +interweaves +interweaving +interwove +interwoven +intestate +intestinal +intestine +intestines +intimacies +intimacy +intimate +intimated +intimately +intimates +intimating +intimation +intimations +intimidate +intimidated +intimidates +intimidating +intimidation +into +intolerable +intolerably +intolerance +intolerant +intolerantly +intonation +intonations +intone +intoned +intones +intoning +intoxicant +intoxicants +intoxicate +intoxicated +intoxicates +intoxicating +intoxication +intractability +intractable +intractably +intramural +intranet +intranets +intransigence +intransigent +intransigently +intransitive +intransitively +intransitives +intrauterine +intravenous +intravenously +intrepid +intricacies +intricacy +intricate +intricately +intrigue +intrigued +intrigues +intriguing +intriguingly +intrinsic +intrinsically +intro +introduce +introduced +introduces +introducing +introduction +introductions +introductory +intros +introspection +introspective +introspectively +introversion +introvert +introverted +introverts +intrude +intruded +intruder +intruders +intrudes +intruding +intrusion +intrusions +intrusive +intuit +intuited +intuiting +intuition +intuitions +intuitive +intuitively +intuits +inundate +inundated +inundates +inundating +inundation +inundations +inure +inured +inures +inuring +invade +invaded +invader +invaders +invades +invading +invalid +invalidate +invalidated +invalidates +invalidating +invalidation +invalided +invaliding +invalidity +invalids +invaluable +invariable +invariably +invasion +invasions +invasive +invective +inveigh +inveighed +inveighing +inveighs +inveigle +inveigled +inveigles +inveigling +invent +invented +inventing +invention +inventions +inventive +inventively +inventiveness +inventor +inventories +inventors +inventory +invents +inverse +inversely +inversion +inversions +invert +invertebrate +invertebrates +inverted +inverting +inverts +invest +invested +investigate +investigated +investigates +investigating +investigation +investigations +investigative +investigator +investigators +investigatory +investing +investiture +investitures +investment +investments +investor +investors +invests +inveterate +invidious +invidiously +invidiousness +invigilate +invigilated +invigilates +invigilating +invigilation +invigilator +invigilators +invigorate +invigorated +invigorates +invigorating +invincibility +invincible +invincibly +inviolability +inviolable +inviolate +invisibility +invisible +invisibly +invitation +invitational +invitationals +invitations +invite +invited +invites +inviting +invitingly +invocation +invocations +invoice +invoiced +invoices +invoicing +invoke +invoked +invokes +invoking +involuntarily +involuntary +involve +involved +involvement +involvements +involves +involving +invulnerability +invulnerable +inward +inwardly +inwards +iodine +iodized +ion +ionisation +ionise +ionised +ioniser +ionisers +ionises +ionising +ionization +ionize +ionized +ionizer +ionizers +ionizes +ionizing +ionosphere +ions +iota +irascibility +irascible +irascibly +irate +ire +iridescence +iridescent +iridium +iris +irises +irk +irked +irking +irks +irksome +iron +ironclad +ironed +ironic +ironical +ironically +ironies +ironing +ironmonger +ironmongers +ironmongery +irons +ironstone +ironwork +irony +irradiate +irradiated +irradiates +irradiating +irradiation +irrational +irrationality +irrationally +irreconcilable +irreconcilably +irrecoverable +irrecoverably +irredeemable +irredeemably +irreducible +irreducibly +irrefutable +irrefutably +irregular +irregularities +irregularity +irregularly +irregulars +irrelevance +irrelevances +irrelevancies +irrelevancy +irrelevant +irrelevantly +irreligious +irremediable +irremediably +irreparable +irreparably +irreplaceable +irrepressible +irrepressibly +irreproachable +irreproachably +irresistible +irresistibly +irresolute +irresolutely +irresolution +irresponsibility +irresponsible +irresponsibly +irretrievable +irretrievably +irreverence +irreverent +irreverently +irreversible +irreversibly +irrevocable +irrevocably +irrigate +irrigated +irrigates +irrigating +irrigation +irritability +irritable +irritably +irritant +irritants +irritate +irritated +irritates +irritating +irritatingly +irritation +irritations +irruption +irruptions +is +island +islander +islanders +islands +isle +isles +islet +islets +ism +isms +isobar +isobars +isolate +isolated +isolates +isolating +isolation +isolationism +isolationist +isolationists +isometric +isometrics +isotherm +isotherms +isotope +isotopes +issue +issued +issues +issuing +isthmus +isthmuses +it +italic +italicise +italicised +italicises +italicising +italicize +italicized +italicizes +italicizing +italics +itch +itched +itches +itchier +itchiest +itchiness +itching +itchy +item +itemise +itemised +itemises +itemising +itemize +itemized +itemizes +itemizing +items +itinerant +itinerants +itineraries +itinerary +its +itself +ivied +ivies +ivories +ivory +ivy +jab +jabbed +jabber +jabbered +jabbering +jabbers +jabbing +jabs +jack +jackal +jackals +jackass +jackasses +jackboot +jackbooted +jackboots +jackdaw +jackdaws +jacked +jacket +jackets +jackhammer +jackhammers +jacking +jackknife +jackknives +jackpot +jackpots +jackrabbit +jackrabbits +jacks +jade +jaded +jagged +jaggedly +jaguar +jaguars +jail +jailbird +jailbirds +jailbreak +jailbreaks +jailed +jailer +jailers +jailhouse +jailhouses +jailing +jails +jalapeno +jalapenos +jalopies +jalopy +jam +jamb +jamboree +jamborees +jambs +jammed +jammier +jammiest +jamming +jammy +jams +jangle +jangled +jangles +jangling +janitor +janitors +jape +japes +jar +jargon +jarred +jarring +jars +jasmine +jasmines +jaundice +jaundiced +jaunt +jaunted +jauntier +jauntiest +jauntily +jauntiness +jaunting +jaunts +jaunty +javelin +javelins +jaw +jawbone +jawbones +jawbreaker +jawbreakers +jawed +jawing +jawline +jawlines +jaws +jay +jays +jaywalk +jaywalked +jaywalker +jaywalkers +jaywalking +jaywalks +jazz +jazzed +jazzes +jazzier +jazziest +jazzing +jazzy +jealous +jealousies +jealously +jealousy +jeans +jeep +jeeps +jeer +jeered +jeering +jeeringly +jeers +jeez +jejune +jell +jelled +jellied +jellies +jelling +jello +jells +jelly +jellyfish +jellyfishes +jemmied +jemmies +jemmy +jemmying +jeopardise +jeopardised +jeopardises +jeopardising +jeopardize +jeopardized +jeopardizes +jeopardizing +jeopardy +jerk +jerked +jerkier +jerkiest +jerkily +jerkin +jerkiness +jerking +jerkins +jerks +jerkwater +jerky +jeroboam +jeroboams +jerrycan +jerrycans +jersey +jerseys +jest +jested +jester +jesters +jesting +jests +jet +jetliner +jetliners +jets +jetsam +jetted +jetties +jetting +jettison +jettisoned +jettisoning +jettisons +jetty +jewel +jeweled +jeweler +jewelers +jewelled +jeweller +jewellers +jewellery +jewelry +jewels +jib +jibbed +jibbing +jibe +jibed +jibes +jibing +jibs +jiffy +jig +jigged +jigger +jiggers +jigging +jiggle +jiggled +jiggles +jiggling +jigs +jigsaw +jigsaws +jihad +jihads +jilt +jilted +jilting +jilts +jimmied +jimmies +jimmy +jimmying +jingle +jingled +jingles +jingling +jingoism +jingoistic +jink +jinked +jinking +jinks +jinx +jinxed +jinxes +jitters +jittery +jive +jived +jives +jiving +job +jobbing +jobless +joblessness +jobs +jobshare +jobshares +jobsworth +jobsworths +jock +jockey +jockeyed +jockeying +jockeys +jocks +jockstrap +jockstraps +jocose +jocosely +jocular +jocularity +jocularly +jodhpurs +joey +joeys +jog +jogged +jogger +joggers +jogging +joggle +joggled +joggles +joggling +jogs +john +johnnies +johnny +johns +join +joined +joiner +joiners +joinery +joining +joins +joint +jointed +jointing +jointly +joints +joist +joists +jojoba +joke +joked +joker +jokers +jokes +jokey +jokier +jokiest +joking +jokingly +joky +jollied +jollier +jollies +jolliest +jollification +jollifications +jollity +jolly +jollying +jolt +jolted +jolting +jolts +josh +joshed +joshes +joshing +jostle +jostled +jostles +jostling +jot +jots +jotted +jotter +jotters +jotting +jottings +joule +joules +journal +journalese +journalism +journalist +journalistic +journalists +journals +journey +journeyed +journeying +journeyman +journeymen +journeys +journo +journos +joust +jousted +jousting +jousts +jovial +joviality +jovially +jowl +jowls +jowly +joy +joyful +joyfully +joyfulness +joyless +joylessly +joylessness +joyous +joyously +joyousness +joyride +joyrider +joyriders +joyrides +joyriding +joys +joystick +joysticks +jubilant +jubilantly +jubilation +jubilee +jubilees +judder +juddered +juddering +judders +judge +judged +judgement +judgemental +judgements +judges +judging +judgment +judgmental +judgments +judicature +judicial +judicially +judiciary +judicious +judiciously +judo +jug +jugful +jugfuls +juggernaut +juggernauts +juggle +juggled +juggler +jugglers +juggles +juggling +jugs +jugular +jugulars +juice +juicer +juicers +juices +juicier +juiciest +juiciness +juicy +jukebox +jukeboxes +julep +juleps +jumble +jumbled +jumbles +jumbling +jumbo +jumbos +jump +jumped +jumper +jumpers +jumpier +jumpiest +jumping +jumps +jumpsuit +jumpsuits +jumpy +junction +junctions +juncture +junctures +jungle +jungles +junior +juniors +juniper +junipers +junk +junked +junket +junkets +junkie +junkies +junking +junks +junky +junkyard +junkyards +junta +juntas +juridical +juries +jurisdiction +jurisdictions +jurisprudence +jurist +jurists +juror +jurors +jury +juryman +jurymen +jurywoman +jurywomen +just +justice +justices +justifiable +justifiably +justification +justifications +justified +justifies +justify +justifying +justly +jut +jute +juts +jutted +jutting +juvenile +juveniles +juxtapose +juxtaposed +juxtaposes +juxtaposing +juxtaposition +juxtapositions +kabob +kabobs +kabuki +kaftan +kaftans +kale +kaleidoscope +kaleidoscopes +kaleidoscopic +kaleidoscopically +kamikaze +kangaroo +kangaroos +kaolin +kapok +kaput +karaoke +karat +karate +karats +karma +kart +karts +kayak +kayaked +kayaking +kayaks +kazoo +kazoos +kebab +kebabs +kedgeree +keel +keeled +keelhaul +keelhauled +keelhauling +keelhauls +keeling +keels +keen +keened +keener +keenest +keening +keenly +keenness +keens +keep +keeper +keepers +keeping +keeps +keepsake +keepsakes +keg +kegs +kelp +kelvin +kelvins +ken +kenned +kennel +kennels +kenning +kens +kept +kerb +kerbs +kerbside +kerchief +kerchiefs +kerfuffle +kerfuffles +kernel +kernels +kerosene +kerosine +kestrel +kestrels +ketch +ketches +ketchup +kettle +kettledrum +kettledrums +kettles +key +keyboard +keyboarded +keyboarder +keyboarders +keyboarding +keyboardist +keyboardists +keyboards +keyed +keyhole +keyholes +keying +keynote +keynotes +keypad +keypads +keypunch +keypunches +keys +keystone +keystones +keystroke +keystrokes +khaki +khalif +khalifs +kibbutz +kibbutzes +kibbutzim +kick +kickback +kickbacks +kickboxing +kicked +kicking +kickoff +kickoffs +kicks +kid +kidded +kiddie +kiddies +kidding +kiddo +kiddos +kiddy +kidnap +kidnaped +kidnaping +kidnapped +kidnapper +kidnappers +kidnapping +kidnappings +kidnaps +kidney +kidneys +kids +kike +kikes +kill +killed +killer +killers +killing +killings +killjoy +killjoys +kills +kiln +kilns +kilo +kilobyte +kilobytes +kilogram +kilogramme +kilogrammes +kilograms +kilohertz +kilometer +kilometers +kilometre +kilometres +kilos +kilowatt +kilowatts +kilt +kilted +kilts +kimono +kimonos +kin +kind +kinda +kinder +kindergarten +kindergartens +kindest +kindle +kindled +kindles +kindliness +kindling +kindly +kindness +kindnesses +kindred +kinds +kinetic +kinetics +kinfolk +kinfolks +king +kingdom +kingdoms +kingfisher +kingfishers +kingly +kingmaker +kingmakers +kingpin +kingpins +kings +kingship +kink +kinked +kinkier +kinkiest +kinking +kinks +kinky +kinsfolk +kinship +kinsman +kinsmen +kinswoman +kinswomen +kiosk +kiosks +kip +kipped +kipper +kippers +kipping +kips +kirk +kirks +kirsch +kirsches +kiss +kissagram +kissagrams +kissed +kisser +kissers +kisses +kissing +kissogram +kissograms +kit +kitbag +kitbags +kitchen +kitchenette +kitchenettes +kitchens +kitchenware +kite +kites +kits +kitsch +kitschy +kitted +kitten +kittenish +kittens +kitties +kitting +kitty +kiwi +kiwis +klaxon +klaxons +kleptomania +kleptomaniac +kleptomaniacs +klutz +klutzes +knack +knacker +knackered +knackering +knackers +knapsack +knapsacks +knave +knaves +knead +kneaded +kneading +kneads +knee +kneecap +kneecapped +kneecapping +kneecaps +kneed +kneeing +kneel +kneeled +kneeling +kneels +knees +knell +knelt +knew +knicker +knickerbockers +knickers +knickknack +knickknacks +knife +knifed +knifes +knifing +knight +knighted +knighthood +knighthoods +knighting +knightly +knights +knit +knits +knitted +knitter +knitters +knitting +knitwear +knives +knob +knobbly +knobby +knobs +knock +knockabout +knockdown +knocked +knocker +knockers +knocking +knockoff +knockoffs +knockout +knockouts +knocks +knoll +knolls +knot +knots +knotted +knottier +knottiest +knotting +knotty +know +knowing +knowingly +knowledge +knowledgeable +knowledgeably +known +knows +knuckle +knuckled +knuckleduster +knuckledusters +knucklehead +knuckleheads +knuckles +knuckling +koala +koalas +kohl +kook +kookaburra +kookaburras +kooks +kooky +korma +kosher +kowtow +kowtowed +kowtowing +kowtows +krill +krona +krone +kroner +kronor +krypton +kudos +kumquat +kumquats +kvetch +kvetched +kvetches +kvetching +lab +label +labeled +labeling +labelled +labelling +labels +labia +labial +labials +labor +laboratories +laboratory +labored +laborer +laborers +laboring +laborious +laboriously +laboriousness +labors +labour +laboured +labourer +labourers +labouring +labours +labs +laburnum +laburnums +labyrinth +labyrinthine +labyrinths +lace +laced +lacerate +lacerated +lacerates +lacerating +laceration +lacerations +laces +lachrymose +lacier +laciest +lacing +lack +lackadaisical +lackadaisically +lacked +lackey +lackeys +lacking +lackluster +lacklustre +lacks +laconic +laconically +lacquer +lacquered +lacquering +lacquers +lacrosse +lactate +lactated +lactates +lactating +lactation +lactic +lactose +lacuna +lacunae +lacunas +lacy +lad +ladder +laddered +laddering +ladders +laddie +laddies +laddish +laddishness +laden +ladies +ladle +ladled +ladles +ladling +lads +lady +ladybird +ladybirds +ladybug +ladybugs +ladylike +ladyship +ladyships +lag +lager +lagers +laggard +laggards +lagged +lagging +lagoon +lagoons +lags +laid +lain +lair +laird +lairds +lairs +laity +lake +lakes +lakeside +lama +lamas +lamb +lambada +lambadas +lambast +lambaste +lambasted +lambastes +lambasting +lambasts +lambed +lambent +lambing +lambs +lambskin +lambswool +lame +lamely +lameness +lament +lamentable +lamentably +lamentation +lamentations +lamented +lamenting +laments +lamer +lamest +laminate +laminated +laminates +lamp +lamplight +lampoon +lampooned +lampooning +lampoons +lamppost +lampposts +lamprey +lampreys +lamps +lampshade +lampshades +lance +lanced +lancer +lancers +lances +lancet +lancets +lancing +land +landed +landfall +landfalls +landfill +landfills +landholder +landholders +landholding +landholdings +landing +landings +landladies +landlady +landless +landlocked +landlord +landlords +landlubber +landlubbers +landmark +landmarks +landmass +landmasses +landmine +landmines +landowner +landowners +landownership +landowning +lands +landscape +landscaped +landscaper +landscapers +landscapes +landscaping +landslide +landslides +landslip +landslips +landward +landwards +lane +lanes +language +languages +languid +languidly +languish +languished +languishes +languishing +languor +languorous +languorously +lank +lankier +lankiest +lanky +lanolin +lantern +lanterns +lap +lapdog +lapdogs +lapel +lapels +lapidary +lapped +lapping +laps +lapse +lapsed +lapses +lapsing +laptop +laptops +lapwing +lapwings +larcenies +larcenous +larceny +larch +larches +lard +larded +larder +larders +larding +lards +large +largely +largeness +larger +largess +largesse +largest +largish +largo +largos +lark +larked +larking +larks +larkspur +larkspurs +larva +larvae +larval +laryngitis +larynx +larynxes +lasagna +lasagnas +lasagne +lasagnes +lascivious +lasciviously +lasciviousness +laser +lasers +lash +lashed +lashes +lashing +lashings +lass +lasses +lassie +lassies +lassitude +lasso +lassoed +lassoes +lassoing +lassos +last +lasted +lasting +lastly +lasts +latch +latched +latches +latching +latchkey +latchkeys +late +latecomer +latecomers +lately +latency +lateness +latent +later +lateral +laterally +latest +latex +lath +lathe +lather +lathered +lathering +lathers +lathery +lathes +laths +latitude +latitudes +latitudinal +latrine +latrines +latte +latter +latterly +lattes +lattice +latticed +lattices +latticework +latticeworks +laud +laudable +laudably +laudanum +laudatory +lauded +lauding +lauds +laugh +laughable +laughably +laughed +laughing +laughingly +laughs +laughter +launch +launched +launcher +launchers +launches +launching +launder +laundered +launderette +launderettes +laundering +launders +laundrette +laundrettes +laundries +laundromat +laundromats +laundry +laureate +laureates +laurel +laurels +lav +lava +lavatorial +lavatories +lavatory +lavender +lavenders +lavish +lavished +lavishes +lavishing +lavishly +lavishness +lavs +law +lawbreaker +lawbreakers +lawful +lawfully +lawless +lawlessly +lawlessness +lawmaker +lawmakers +lawman +lawmen +lawn +lawnmower +lawnmowers +lawns +laws +lawsuit +lawsuits +lawyer +lawyers +lax +laxative +laxatives +laxer +laxest +laxity +laxly +laxness +lay +layabout +layabouts +layaway +layer +layered +layering +layers +layette +layettes +laying +layman +laymen +layoff +layoffs +layout +layouts +layover +layovers +laypeople +layperson +laypersons +lays +laywoman +laywomen +laze +lazed +lazes +lazier +laziest +lazily +laziness +lazing +lazy +lazybones +lbw +leach +leached +leaches +leaching +lead +leaded +leaden +leader +leaders +leadership +leaderships +leading +leads +leaf +leafed +leafier +leafiest +leafing +leafless +leaflet +leafleted +leafleting +leaflets +leafs +leafy +league +leagues +leak +leakage +leakages +leaked +leakier +leakiest +leaking +leaks +leaky +lean +leaned +leaner +leanest +leaning +leanings +leans +leant +leap +leaped +leapfrog +leapfrogged +leapfrogging +leapfrogs +leaping +leaps +leapt +learn +learned +learner +learners +learning +learns +learnt +lease +leaseback +leasebacks +leased +leasehold +leaseholder +leaseholders +leaseholds +leases +leash +leashed +leashes +leashing +leasing +least +leastways +leather +leatherette +leatherneck +leathernecks +leathers +leathery +leave +leaven +leavened +leavening +leavens +leaver +leavers +leaves +leaving +lech +leched +lecher +lecherous +lechers +lechery +leches +leching +lectern +lecterns +lecture +lectured +lecturer +lecturers +lectures +lectureship +lectureships +lecturing +led +ledge +ledger +ledgers +ledges +lee +leech +leeches +leek +leeks +leer +leered +leering +leers +leery +lees +leeward +leeway +left +leftie +lefties +leftism +leftist +leftists +leftover +leftovers +lefts +leftward +leftwards +lefty +leg +legacies +legacy +legal +legalese +legalisation +legalise +legalised +legalises +legalising +legalistic +legalistically +legalities +legality +legalization +legalize +legalized +legalizes +legalizing +legally +legate +legatee +legatees +legates +legation +legations +legato +legend +legendary +legends +legged +leggier +leggiest +legging +leggings +leggy +legibility +legible +legibly +legion +legionaries +legionary +legionnaire +legionnaires +legions +legislate +legislated +legislates +legislating +legislation +legislative +legislator +legislators +legislature +legislatures +legit +legitimacy +legitimate +legitimated +legitimately +legitimates +legitimating +legitimise +legitimised +legitimises +legitimising +legitimize +legitimized +legitimizes +legitimizing +legless +legroom +legs +legume +legumes +leguminous +legwarmer +legwarmers +legwork +leisure +leisured +leisurely +leisurewear +leitmotif +leitmotifs +leitmotiv +leitmotivs +lemming +lemmings +lemon +lemonade +lemonades +lemongrass +lemons +lemony +lemur +lemurs +lend +lender +lenders +lending +lends +length +lengthen +lengthened +lengthening +lengthens +lengthier +lengthiest +lengths +lengthways +lengthwise +lengthy +leniency +lenient +leniently +lens +lenses +lent +lentil +lentils +leonine +leopard +leopards +leotard +leotards +leper +lepers +leprechaun +leprechauns +leprosy +lesbian +lesbianism +lesbians +lesion +lesions +less +lessee +lessees +lessen +lessened +lessening +lessens +lesser +lesson +lessons +lessor +lessors +lest +let +letch +letches +letdown +letdowns +lethal +lethally +lethargic +lethargy +lets +letter +letterbox +letterboxes +lettered +letterhead +letterheads +lettering +letters +letting +lettings +lettuce +lettuces +letup +leucotomies +leucotomy +leukaemia +leukemia +levee +levees +level +leveled +leveler +levelers +leveling +levelled +leveller +levellers +levelling +levels +lever +leverage +leveraged +leverages +leveraging +levered +levering +levers +leviathan +leviathans +levied +levies +levitate +levitated +levitates +levitating +levitation +levity +levy +levying +lewd +lewdly +lewdness +lexical +lexicographer +lexicographers +lexicography +lexicon +lexicons +lexis +liabilities +liability +liable +liaise +liaised +liaises +liaising +liaison +liaisons +liar +liars +lib +libation +libations +libel +libeled +libeling +libelled +libelling +libellous +libelous +libels +liberal +liberalisation +liberalise +liberalised +liberalises +liberalising +liberalism +liberality +liberalization +liberalize +liberalized +liberalizes +liberalizing +liberally +liberals +liberate +liberated +liberates +liberating +liberation +liberator +liberators +libertarian +libertarians +liberties +libertine +libertines +liberty +libidinous +libido +libidos +librarian +librarians +librarianship +libraries +library +libretti +librettist +librettists +libretto +librettos +lice +licence +licenced +licences +licencing +license +licensed +licensee +licensees +licenses +licensing +licentiate +licentiates +licentious +licentiously +licentiousness +lichen +lichens +lick +licked +licking +lickings +licks +licorice +lid +lidded +lido +lidos +lids +lie +lied +lien +liens +lies +lieutenant +lieutenants +life +lifebelt +lifebelts +lifeblood +lifeboat +lifeboats +lifeguard +lifeguards +lifeless +lifelike +lifeline +lifelines +lifelong +lifer +lifers +lifesaver +lifesavers +lifespan +lifespans +lifestyle +lifestyles +lifetime +lifetimes +lifework +lift +lifted +lifting +lifts +ligament +ligaments +ligature +ligatures +light +lighted +lighten +lightened +lightening +lightens +lighter +lighters +lightest +lighthouse +lighthouses +lighting +lightly +lightness +lightning +lights +lightship +lightships +lightweight +lightweights +lignite +likable +like +likeable +liked +likelier +likeliest +likelihood +likely +liken +likened +likeness +likenesses +likening +likens +likes +likewise +liking +lilac +lilacs +lilies +lilliputian +lilo +lilos +lilt +lilting +lily +limb +limber +limbered +limbering +limbers +limbo +limbs +lime +limed +limelight +limerick +limericks +limes +limescale +limestone +limey +limeys +liming +limit +limitation +limitations +limited +limiting +limitless +limits +limo +limos +limousine +limousines +limp +limped +limper +limpest +limpet +limpets +limpid +limpidly +limping +limply +limpness +limps +limy +linchpin +linchpins +linctus +linden +lindens +line +lineage +lineages +lineal +lineally +lineaments +linear +linearity +linearly +linebacker +linebackers +lined +lineman +linemen +linen +liner +liners +lines +linesman +linesmen +ling +linger +lingered +lingerer +lingerers +lingerie +lingering +lingeringly +lingers +lingo +lingos +linguist +linguistic +linguistically +linguistics +linguists +liniment +liniments +lining +linings +link +linkage +linkages +linked +linking +linkman +linkmen +links +linnet +linnets +lino +linoleum +linseed +lint +lintel +lintels +lion +lioness +lionesses +lionisation +lionise +lionised +lionises +lionising +lionization +lionize +lionized +lionizes +lionizing +lions +lip +lipid +lipids +liposuction +lippy +lips +lipstick +lipsticks +liquefied +liquefies +liquefy +liquefying +liqueur +liqueurs +liquid +liquidate +liquidated +liquidates +liquidating +liquidation +liquidations +liquidator +liquidators +liquidise +liquidised +liquidiser +liquidisers +liquidises +liquidising +liquidity +liquidize +liquidized +liquidizer +liquidizers +liquidizes +liquidizing +liquids +liquor +liquorice +liquorices +lira +lire +lisp +lisped +lisping +lisps +lissom +lissome +list +listed +listen +listenable +listened +listener +listeners +listening +listens +listeria +listing +listings +listless +listlessly +listlessness +lists +lit +litanies +litany +lite +liter +literacy +literal +literally +literalness +literary +literate +literati +literature +liters +lithe +lithely +lithium +lithograph +lithographic +lithographs +lithography +litigant +litigants +litigate +litigated +litigates +litigating +litigation +litigator +litigators +litigious +litigiousness +litmus +litre +litres +litter +litterbug +litterbugs +littered +littering +litters +little +littler +littlest +littoral +littorals +liturgical +liturgically +liturgies +liturgy +livable +live +liveable +lived +livelier +liveliest +livelihood +livelihoods +liveliness +lively +liven +livened +livening +livens +liver +liveried +liveries +liverish +livers +liverwurst +livery +lives +livestock +livid +lividly +living +livings +lizard +lizards +llama +llamas +lo +load +loaded +loading +loads +loadstar +loadstars +loadstone +loadstones +loaf +loafed +loafer +loafers +loafing +loafs +loam +loamy +loan +loaned +loaning +loans +loanword +loanwords +loath +loathe +loathed +loathes +loathing +loathsome +loathsomeness +loaves +lob +lobbed +lobbied +lobbies +lobbing +lobby +lobbying +lobbyist +lobbyists +lobe +lobed +lobes +lobotomies +lobotomy +lobs +lobster +lobsters +local +locale +locales +localise +localised +localises +localising +localities +locality +localize +localized +localizes +localizing +locally +locals +locate +located +locates +locating +location +locations +loch +lochs +loci +lock +lockable +locked +locker +lockers +locket +lockets +locking +lockjaw +lockout +lockouts +locks +locksmith +locksmiths +lockup +lockups +loco +locomotion +locomotive +locomotives +locos +locum +locums +locus +locust +locusts +locution +locutions +lode +lodes +lodestar +lodestars +lodestone +lodestones +lodge +lodged +lodger +lodgers +lodges +lodging +lodgings +loft +lofted +loftier +loftiest +loftily +loftiness +lofting +lofts +lofty +log +loganberries +loganberry +logarithm +logarithmic +logarithms +logged +logger +loggers +logging +logic +logical +logically +logician +logicians +logistic +logistical +logistically +logistics +logjam +logjams +logo +logos +logs +loin +loincloth +loincloths +loins +loiter +loitered +loiterer +loiterers +loitering +loiters +loll +lolled +lollies +lolling +lollipop +lollipops +lollop +lolloped +lolloping +lollops +lolls +lolly +lone +lonelier +loneliest +loneliness +lonely +loner +loners +lonesome +long +longboat +longboats +longbow +longbows +longed +longer +longest +longevity +longhand +longhorn +longhorns +longhouse +longhouses +longing +longingly +longings +longish +longitude +longitudes +longitudinal +longitudinally +longs +longshoreman +longshoremen +longueurs +longways +longwise +loo +loofah +loofahs +look +lookalike +lookalikes +looked +looker +lookers +looking +lookout +lookouts +looks +loom +loomed +looming +looms +loon +loonier +loonies +looniest +loons +loony +loop +looped +loophole +loopholes +loopier +loopiest +looping +loops +loopy +loos +loose +loosed +loosely +loosen +loosened +looseness +loosening +loosens +looser +looses +loosest +loosing +loot +looted +looter +looters +looting +loots +lop +lope +loped +lopes +loping +lopped +lopping +lops +lopsided +loquacious +loquaciously +loquacity +lord +lorded +lording +lordly +lords +lordship +lordships +lore +lorgnette +lorgnettes +lorries +lorry +lose +loser +losers +loses +losing +loss +losses +lost +lot +loth +lotion +lotions +lots +lotteries +lottery +lotus +lotuses +louche +loud +louder +loudest +loudhailer +loudhailers +loudly +loudmouth +loudmouths +loudness +loudspeaker +loudspeakers +lough +loughs +lounge +lounged +lounger +loungers +lounges +lounging +lour +loured +louring +lours +louse +loused +louses +lousier +lousiest +lousing +lousy +lout +loutish +loutishness +louts +louver +louvers +louvre +louvred +louvres +lovable +love +loveable +lovebird +lovebirds +loved +loveless +lovelier +lovelies +loveliest +loveliness +lovelorn +lovely +lovemaking +lover +lovers +loves +lovesick +lovey +loveys +loving +lovingly +low +lowbrow +lowdown +lowed +lower +lowered +lowering +lowers +lowest +lowing +lowland +lowlander +lowlanders +lowlands +lowlier +lowliest +lowly +lows +lox +loyal +loyalist +loyalists +loyally +loyalties +loyalty +lozenge +lozenges +luau +lube +lubes +lubricant +lubricants +lubricate +lubricated +lubricates +lubricating +lubrication +lubricious +lubriciously +lucid +lucidity +lucidly +luck +lucked +luckier +luckiest +luckily +lucking +luckless +lucks +lucky +lucrative +lucratively +lucre +ludicrous +ludicrously +ludicrousness +ludo +lug +luge +luges +luggage +lugged +lugging +lughole +lugholes +lugs +lugubrious +lugubriously +lugubriousness +lukewarm +lull +lullabies +lullaby +lulled +lulling +lulls +lulu +lulus +lumbago +lumbar +lumber +lumbered +lumbering +lumberjack +lumberjacks +lumberman +lumbermen +lumbers +lumberyard +lumberyards +luminaries +luminary +luminescence +luminescent +luminosity +luminous +luminously +lummox +lummoxes +lump +lumpectomies +lumpectomy +lumped +lumpen +lumpier +lumpiest +lumping +lumpish +lumps +lumpy +lunacy +lunar +lunatic +lunatics +lunch +lunchbox +lunchboxes +lunched +luncheon +luncheonette +luncheonettes +luncheons +lunches +lunching +lunchroom +lunchrooms +lunchtime +lunchtimes +lung +lunge +lunged +lunges +lungful +lungfuls +lunging +lungs +lupin +lupine +lupines +lupins +lurch +lurched +lurches +lurching +lure +lured +lures +lurgy +lurid +luridly +luridness +luring +lurk +lurked +lurking +lurks +luscious +lush +lusher +lushes +lushest +lushness +lust +lusted +luster +lustful +lustfully +lustier +lustiest +lustily +lustiness +lusting +lustre +lustrous +lusts +lusty +lute +lutes +luv +luvs +luvvie +luvvies +luxuriance +luxuriant +luxuriantly +luxuriate +luxuriated +luxuriates +luxuriating +luxuries +luxurious +luxuriously +luxury +lychee +lychees +lychgate +lychgates +lying +lymph +lymphatic +lynch +lynched +lynches +lynching +lynchings +lynchpin +lynchpins +lynx +lynxes +lyre +lyrebird +lyrebirds +lyres +lyric +lyrical +lyrically +lyricism +lyricist +lyricists +lyrics +ma +mac +macabre +macadam +macadamia +macadamias +macaroni +macaroon +macaroons +macaw +macaws +mace +macerate +macerated +macerates +macerating +maces +machete +machetes +machinations +machine +machined +machinery +machines +machining +machinist +machinists +machismo +macho +mack +mackerel +mackintosh +mackintoshes +macks +macrame +macro +macrobiotic +macrocosm +macrocosms +macroeconomic +macroeconomics +macros +macs +mad +madam +madams +madcap +madden +maddened +maddening +maddeningly +maddens +madder +maddest +made +madhouse +madhouses +madly +madman +madmen +madness +madrigal +madrigals +madwoman +madwomen +maelstrom +maelstroms +maestro +maestros +mafia +mafias +mafiosi +mafioso +mag +magazine +magazines +magenta +maggot +maggots +magic +magical +magically +magician +magicians +magicked +magicking +magics +magisterial +magisterially +magistracy +magistrate +magistrates +magma +magnanimity +magnanimous +magnanimously +magnate +magnates +magnesia +magnesium +magnet +magnetic +magnetically +magnetise +magnetised +magnetises +magnetising +magnetism +magnetize +magnetized +magnetizes +magnetizing +magneto +magnetos +magnets +magnification +magnifications +magnificence +magnificent +magnificently +magnified +magnifier +magnifiers +magnifies +magnify +magnifying +magnitude +magnitudes +magnolia +magnolias +magnum +magnums +magpie +magpies +mags +maharaja +maharajah +maharajahs +maharajas +maharanee +maharanees +maharani +maharanis +mahjong +mahogany +maid +maiden +maidenhair +maidenhead +maidenheads +maidens +maids +mail +mailbag +mailbags +mailbox +mailboxes +mailed +mailer +mailers +mailing +mailings +mailman +mailmen +mails +mailshot +mailshots +maim +maimed +maiming +maims +main +mainframe +mainframes +mainland +mainline +mainlined +mainlines +mainlining +mainly +mains +mainsail +mainsails +mainspring +mainsprings +mainstay +mainstays +mainstream +mainstreams +maintain +maintained +maintaining +maintains +maintenance +maisonette +maisonettes +maize +majestic +majestically +majesties +majesty +major +majordomo +majordomos +majored +majorette +majorettes +majoring +majorities +majority +majors +make +makeover +makeovers +maker +makers +makes +makeshift +makeup +makeweight +makeweights +making +makings +malachite +maladies +maladjusted +maladjustment +maladministration +maladroit +maladroitly +maladroitness +malady +malaise +malapropism +malapropisms +malaria +malarial +malarkey +malcontent +malcontents +male +malefactor +malefactors +maleness +males +malevolence +malevolent +malevolently +malfeasance +malformation +malformations +malformed +malfunction +malfunctioned +malfunctioning +malfunctions +malice +malicious +maliciously +malign +malignancies +malignancy +malignant +malignantly +maligned +maligning +malignity +maligns +malinger +malingered +malingerer +malingerers +malingering +malingers +mall +mallard +mallards +malleability +malleable +mallet +mallets +malls +malnourished +malnutrition +malodorous +malpractice +malpractices +malt +malted +malting +maltreat +maltreated +maltreating +maltreatment +maltreats +malts +mam +mama +mamas +mamba +mambas +mamma +mammal +mammalian +mammals +mammary +mammas +mammies +mammogram +mammograms +mammography +mammoth +mammoths +mammy +mams +man +manacle +manacled +manacles +manacling +manage +manageable +managed +management +managements +manager +manageress +manageresses +managerial +managers +manages +managing +manana +manatee +manatees +mandala +mandalas +mandarin +mandarins +mandate +mandated +mandates +mandating +mandatory +mandible +mandibles +mandolin +mandolins +mandrake +mandrakes +mandrill +mandrills +mane +manes +maneuver +maneuverability +maneuverable +maneuvered +maneuvering +maneuverings +maneuvers +manful +manfully +manganese +mange +manger +mangers +mangetout +mangetouts +mangier +mangiest +mangle +mangled +mangles +mangling +mango +mangoes +mangos +mangrove +mangroves +mangy +manhandle +manhandled +manhandles +manhandling +manhole +manholes +manhood +manhunt +manhunts +mania +maniac +maniacal +maniacally +maniacs +manias +manic +manically +manicure +manicured +manicures +manicuring +manicurist +manicurists +manifest +manifestation +manifestations +manifested +manifesting +manifestly +manifesto +manifestoes +manifestos +manifests +manifold +manifolds +manikin +manikins +manila +manilla +manioc +manipulate +manipulated +manipulates +manipulating +manipulation +manipulations +manipulative +manipulator +manipulators +mankind +manky +manlier +manliest +manliness +manly +manna +manned +mannequin +mannequins +manner +mannered +mannerism +mannerisms +manners +mannikin +mannikins +manning +mannish +mannishly +manoeuvrability +manoeuvrable +manoeuvre +manoeuvred +manoeuvres +manoeuvring +manoeuvrings +manor +manorial +manors +manpower +manque +mans +mansard +mansards +manse +manservant +manses +mansion +mansions +manslaughter +mantel +mantelpiece +mantelpieces +mantels +mantelshelf +mantelshelves +mantis +mantises +mantle +mantled +mantlepiece +mantlepieces +mantles +mantling +mantra +mantras +manual +manually +manuals +manufacture +manufactured +manufacturer +manufacturers +manufactures +manufacturing +manure +manured +manures +manuring +manuscript +manuscripts +many +map +maple +maples +mapped +mapping +maps +mar +maracas +maraschino +marathon +marathons +marauder +marauders +marauding +marble +marbled +marbles +march +marched +marcher +marchers +marches +marching +marchioness +marchionesses +mare +mares +margarine +margarita +margaritas +marge +margin +marginal +marginalisation +marginalise +marginalised +marginalises +marginalising +marginalization +marginalize +marginalized +marginalizes +marginalizing +marginally +marginals +margins +marigold +marigolds +marihuana +marijuana +marimba +marimbas +marina +marinade +marinaded +marinades +marinading +marinas +marinate +marinated +marinates +marinating +marine +mariner +mariners +marines +marionette +marionettes +marital +maritime +marjoram +mark +markdown +markdowns +marked +markedly +marker +markers +market +marketability +marketable +marketed +marketeer +marketeers +marketer +marketers +marketing +marketplace +marketplaces +markets +marking +markings +marks +marksman +marksmanship +marksmen +markup +markups +marlin +marlins +marmalade +marmoset +marmosets +marmot +marmots +maroon +marooned +marooning +maroons +marque +marquee +marquees +marques +marquess +marquesses +marquetry +marquis +marquises +marred +marriage +marriageable +marriages +married +marries +marring +marrow +marrows +marry +marrying +mars +marsh +marshal +marshaled +marshaling +marshalled +marshalling +marshals +marshes +marshland +marshlands +marshmallow +marshmallows +marshy +marsupial +marsupials +mart +marten +martens +martial +martin +martinet +martinets +martini +martinis +martins +marts +martyr +martyrdom +martyred +martyring +martyrs +marvel +marveled +marveling +marvelled +marvelling +marvellous +marvellously +marvelous +marvelously +marvels +marzipan +mas +mascara +mascaras +mascot +mascots +masculine +masculinity +mash +mashed +masher +mashers +mashes +mashing +mask +masked +masking +masks +masochism +masochist +masochistic +masochists +mason +masonry +masons +masque +masquerade +masqueraded +masquerades +masquerading +masques +mass +massacre +massacred +massacres +massacring +massage +massaged +massages +massaging +massed +masses +masseur +masseurs +masseuse +masseuses +massif +massifs +massing +massive +massively +mast +mastectomies +mastectomy +master +masterclass +masterclasses +mastered +masterful +masterfully +mastering +masterly +mastermind +masterminded +masterminding +masterminds +masterpiece +masterpieces +masters +masterstroke +masterstrokes +masterwork +masterworks +mastery +masthead +mastheads +mastic +masticate +masticated +masticates +masticating +mastication +mastiff +mastiffs +mastitis +masts +masturbate +masturbated +masturbates +masturbating +masturbation +masturbatory +mat +matador +matadors +match +matchbox +matchboxes +matched +matches +matching +matchless +matchmaker +matchmakers +matchmaking +matchstick +matchsticks +matchwood +mate +mated +mater +material +materialisation +materialise +materialised +materialises +materialising +materialism +materialist +materialistic +materialists +materialization +materialize +materialized +materializes +materializing +materially +materials +maternal +maternally +maternity +maters +mates +matey +mateys +math +mathematical +mathematically +mathematician +mathematicians +mathematics +maths +matinee +matinees +mating +matins +matriarch +matriarchal +matriarchies +matriarchs +matriarchy +matrices +matricide +matriculate +matriculated +matriculates +matriculating +matriculation +matrimonial +matrimony +matrix +matrixes +matron +matronly +matrons +mats +matt +matte +matted +matter +mattered +mattering +matters +matting +mattins +mattress +mattresses +maturation +mature +matured +maturely +maturer +matures +maturest +maturing +maturity +matzo +matzos +maudlin +maul +mauled +mauling +mauls +mausoleum +mausoleums +mauve +maven +mavens +maverick +mavericks +maw +mawkish +mawkishly +mawkishness +maws +max +maxed +maxes +maxim +maxima +maximal +maximisation +maximise +maximised +maximises +maximising +maximization +maximize +maximized +maximizes +maximizing +maxims +maximum +maximums +maxing +may +maybe +mayday +maydays +mayflies +mayfly +mayhem +mayo +mayonnaise +mayor +mayoral +mayoralty +mayoress +mayoresses +mayors +maypole +maypoles +maze +mazes +me +mead +meadow +meadows +meager +meagre +meal +meals +mealtime +mealtimes +mealy +mean +meander +meandered +meandering +meanderings +meanders +meaner +meanest +meanie +meanies +meaning +meaningful +meaningfully +meaningfulness +meaningless +meaninglessly +meaninglessness +meanings +meanly +meanness +means +meant +meantime +meanwhile +meany +measles +measlier +measliest +measly +measurable +measurably +measure +measured +measurement +measurements +measures +measuring +meat +meatball +meatballs +meatier +meatiest +meatloaf +meatloaves +meats +meaty +mecca +meccas +mechanic +mechanical +mechanically +mechanics +mechanisation +mechanise +mechanised +mechanises +mechanising +mechanism +mechanisms +mechanistic +mechanistically +mechanization +mechanize +mechanized +mechanizes +mechanizing +med +medal +medalist +medalists +medallion +medallions +medallist +medallists +medals +meddle +meddled +meddler +meddlers +meddles +meddlesome +meddling +media +mediaeval +median +medians +mediate +mediated +mediates +mediating +mediation +mediator +mediators +medic +medical +medically +medicals +medicated +medication +medications +medicinal +medicinally +medicine +medicines +medico +medicos +medics +medieval +mediocre +mediocrities +mediocrity +meditate +meditated +meditates +meditating +meditation +meditations +meditative +meditatively +medium +mediums +medley +medleys +meek +meeker +meekest +meekly +meekness +meet +meeting +meetings +meets +mega +megabucks +megabyte +megabytes +megahertz +megalith +megalithic +megaliths +megalomania +megalomaniac +megalomaniacs +megaphone +megaphones +megastar +megastars +megaton +megatons +megawatt +megawatts +melamine +melancholia +melancholic +melancholy +melange +melanges +melanin +melanoma +melanomas +melee +melees +mellifluous +mellow +mellowed +mellower +mellowest +mellowing +mellows +melodic +melodies +melodious +melodiously +melodrama +melodramas +melodramatic +melodramatically +melody +melon +melons +melt +meltdown +meltdowns +melted +melting +melts +member +members +membership +memberships +membrane +membranes +memento +mementoes +mementos +memo +memoir +memoirs +memorabilia +memorable +memorably +memoranda +memorandum +memorandums +memorial +memorialise +memorialised +memorialises +memorialising +memorialize +memorialized +memorializes +memorializing +memorials +memories +memorise +memorised +memorises +memorising +memorize +memorized +memorizes +memorizing +memory +memos +memsahib +memsahibs +men +menace +menaced +menaces +menacing +menacingly +menage +menagerie +menageries +menages +mend +mendacious +mendacity +mended +mender +menders +mendicant +mendicants +mending +mends +menfolk +menial +meningitis +menopausal +menopause +menorah +menorahs +menses +menstrual +menstruate +menstruated +menstruates +menstruating +menstruation +menswear +mental +mentalities +mentality +mentally +menthol +mentholated +mention +mentioned +mentioning +mentions +mentor +mentoring +mentors +menu +menus +meow +meowed +meowing +meows +mercantile +mercenaries +mercenary +merchandise +merchandised +merchandises +merchandising +merchant +merchants +mercies +merciful +mercifully +merciless +mercilessly +mercurial +mercury +mercy +mere +merely +meres +merest +meretricious +merge +merged +merger +mergers +merges +merging +meridian +meridians +meringue +meringues +merino +merinos +merit +merited +meriting +meritocracies +meritocracy +meritocratic +meritorious +merits +mermaid +mermaids +merrier +merriest +merrily +merriment +merry +mesa +mesas +mescalin +mescaline +mesh +meshed +meshes +meshing +mesmeric +mesmerise +mesmerised +mesmerises +mesmerising +mesmerize +mesmerized +mesmerizes +mesmerizing +mess +message +messaged +messages +messaging +messed +messenger +messengers +messes +messiah +messiahs +messianic +messier +messiest +messily +messing +messy +met +metabolic +metabolise +metabolised +metabolises +metabolising +metabolism +metabolisms +metabolize +metabolized +metabolizes +metabolizing +metal +metalanguage +metalanguages +metalled +metallic +metallurgical +metallurgist +metallurgists +metallurgy +metals +metalwork +metamorphose +metamorphosed +metamorphoses +metamorphosing +metamorphosis +metaphor +metaphorical +metaphorically +metaphors +metaphysical +metaphysics +mete +meted +meteor +meteoric +meteorite +meteorites +meteorological +meteorologist +meteorologists +meteorology +meteors +meter +metered +metering +meters +metes +methadone +methane +methanol +methinks +method +methodical +methodically +methodological +methodologically +methodologies +methodology +methods +methought +meths +meticulous +meticulously +meticulousness +metier +metiers +meting +metre +metres +metric +metrical +metrication +metro +metronome +metronomes +metropolis +metropolises +metropolitan +metros +mettle +mew +mewed +mewing +mews +mezzanine +mezzanines +mezzo +mezzos +mi +miaow +miaowed +miaowing +miaows +miasma +miasmas +mic +mica +mice +mick +mickey +mickeys +micks +micro +microbe +microbes +microbiological +microbiologist +microbiologists +microbiology +microchip +microchips +microcomputer +microcomputers +microcosm +microcosms +microeconomics +microelectronic +microelectronics +microfiche +microfiches +microfilm +microfilmed +microfilming +microfilms +microlight +microlights +micrometer +micrometers +micrometre +micrometres +micron +microns +microorganism +microorganisms +microphone +microphones +microprocessor +microprocessors +micros +microscope +microscopes +microscopic +microscopically +microsecond +microseconds +microsurgery +microwavable +microwave +microwaveable +microwaved +microwaves +microwaving +mics +mid +midair +midday +middle +middlebrow +middleman +middlemen +middles +middleweight +middleweights +middling +midfield +midfielder +midfielders +midge +midges +midget +midgets +midnight +midpoint +midpoints +midriff +midriffs +midsection +midsections +midshipman +midshipmen +midsize +midsized +midst +midstream +midsummer +midterm +midtown +midway +midways +midweek +midwife +midwifery +midwinter +midwives +mien +miffed +might +mightier +mightiest +mightily +mighty +migraine +migraines +migrant +migrants +migrate +migrated +migrates +migrating +migration +migrations +migratory +mike +mikes +mild +milder +mildest +mildew +mildewed +mildly +mildness +mile +mileage +mileages +mileometer +mileometers +milepost +mileposts +miles +milestone +milestones +milieu +milieus +milieux +militancy +militant +militantly +militants +militaries +militarily +militarise +militarised +militarises +militarising +militarism +militarist +militaristic +militarists +militarize +militarized +militarizes +militarizing +military +militate +militated +militates +militating +militia +militiaman +militiamen +militias +milk +milked +milkier +milkiest +milking +milkmaid +milkmaids +milkman +milkmen +milks +milkshake +milkshakes +milky +mill +milled +millennia +millennial +millennium +millenniums +millepede +millepedes +miller +millers +millet +millibar +millibars +milligram +milligramme +milligrammes +milligrams +milliliter +milliliters +millilitre +millilitres +millimeter +millimeters +millimetre +millimetres +milliner +milliners +millinery +milling +million +millionaire +millionaires +millionairess +millionairesses +millions +millionth +millionths +millipede +millipedes +millisecond +milliseconds +millpond +millponds +mills +millstone +millstones +milometer +milometers +mime +mimed +mimes +mimetic +mimic +mimicked +mimicking +mimicry +mimics +miming +mimosa +mimosas +minaret +minarets +mince +minced +mincemeat +mincer +mincers +minces +mincing +mind +minded +minder +minders +mindful +minding +mindless +mindlessly +mindlessness +minds +mindset +mindsets +mine +mined +minefield +minefields +miner +mineral +mineralogist +mineralogists +mineralogy +minerals +miners +mines +minestrone +minesweeper +minesweepers +mingle +mingled +mingles +mingling +mingy +mini +miniature +miniatures +miniaturisation +miniaturise +miniaturised +miniaturises +miniaturising +miniaturization +miniaturize +miniaturized +miniaturizes +miniaturizing +minibar +minibars +minibus +minibuses +minicab +minicabs +minicam +minicams +minicomputer +minicomputers +minim +minima +minimal +minimalism +minimalist +minimalists +minimally +minimise +minimised +minimises +minimising +minimize +minimized +minimizes +minimizing +minims +minimum +minimums +mining +minion +minions +minis +miniscule +miniseries +miniskirt +miniskirts +minister +ministered +ministerial +ministering +ministers +ministrations +ministries +ministry +minivan +minivans +mink +minks +minnow +minnows +minor +minored +minoring +minorities +minority +minors +minster +minsters +minstrel +minstrels +mint +minted +minting +mints +minty +minuet +minuets +minus +minuscule +minuses +minute +minuted +minutely +minutes +minutest +minutiae +minuting +minx +minxes +miracle +miracles +miraculous +miraculously +mirage +mirages +mire +mired +mires +mirror +mirrored +mirroring +mirrors +mirth +mirthless +mirthlessly +misadventure +misadventures +misanthrope +misanthropes +misanthropic +misanthropist +misanthropists +misanthropy +misapplication +misapplications +misapplied +misapplies +misapply +misapplying +misapprehension +misapprehensions +misappropriate +misappropriated +misappropriates +misappropriating +misappropriation +misbegotten +misbehave +misbehaved +misbehaves +misbehaving +misbehavior +misbehaviour +miscalculate +miscalculated +miscalculates +miscalculating +miscalculation +miscalculations +miscarriage +miscarriages +miscarried +miscarries +miscarry +miscarrying +miscast +miscasting +miscasts +miscegenation +miscellaneous +miscellanies +miscellany +mischance +mischances +mischief +mischievous +mischievously +mischievousness +misconceived +misconception +misconceptions +misconduct +misconstruction +misconstructions +misconstrue +misconstrued +misconstrues +misconstruing +miscount +miscounted +miscounting +miscounts +miscreant +miscreants +misdeed +misdeeds +misdemeanor +misdemeanors +misdemeanour +misdemeanours +misdiagnose +misdiagnosed +misdiagnoses +misdiagnosing +misdiagnosis +misdirect +misdirected +misdirecting +misdirection +misdirects +miser +miserable +miserably +miseries +miserliness +miserly +misers +misery +misfire +misfired +misfires +misfiring +misfit +misfits +misfortune +misfortunes +misgiving +misgivings +misguided +misguidedly +mishandle +mishandled +mishandles +mishandling +mishap +mishaps +mishear +misheard +mishearing +mishears +mishit +mishits +mishitting +mishmash +misinform +misinformation +misinformed +misinforming +misinforms +misinterpret +misinterpretation +misinterpretations +misinterpreted +misinterpreting +misinterprets +misjudge +misjudged +misjudgement +misjudgements +misjudges +misjudging +misjudgment +misjudgments +mislaid +mislay +mislaying +mislays +mislead +misleading +misleadingly +misleads +misled +mismanage +mismanaged +mismanagement +mismanages +mismanaging +mismatch +mismatched +mismatches +mismatching +misnamed +misnomer +misnomers +misogynist +misogynistic +misogynists +misogyny +misplace +misplaced +misplaces +misplacing +misprint +misprints +mispronounce +mispronounced +mispronounces +mispronouncing +mispronunciation +mispronunciations +misquotation +misquotations +misquote +misquoted +misquotes +misquoting +misread +misreading +misreadings +misreads +misreport +misreported +misreporting +misreports +misrepresent +misrepresentation +misrepresentations +misrepresented +misrepresenting +misrepresents +misrule +miss +missal +missals +missed +misses +misshapen +missile +missiles +missing +mission +missionaries +missionary +missions +missis +missive +missives +misspell +misspelled +misspelling +misspellings +misspells +misspelt +misspend +misspending +misspends +misspent +misstate +misstated +misstatement +misstatements +misstates +misstating +misstep +missteps +missus +mist +mistake +mistaken +mistakenly +mistakes +mistaking +misted +mister +misters +mistier +mistiest +mistime +mistimed +mistimes +mistiming +misting +mistletoe +mistook +mistreat +mistreated +mistreating +mistreatment +mistreats +mistress +mistresses +mistrial +mistrials +mistrust +mistrusted +mistrustful +mistrustfully +mistrusting +mistrusts +mists +misty +misunderstand +misunderstanding +misunderstandings +misunderstands +misunderstood +misuse +misused +misuses +misusing +mite +miter +miters +mites +mitigate +mitigated +mitigates +mitigating +mitigation +mitre +mitres +mitt +mitten +mittens +mitts +mix +mixed +mixer +mixers +mixes +mixing +mixture +mixtures +mnemonic +mnemonics +mo +moan +moaned +moaner +moaners +moaning +moans +moat +moated +moats +mob +mobbed +mobbing +mobile +mobiles +mobilisation +mobilise +mobilised +mobilises +mobilising +mobility +mobilization +mobilize +mobilized +mobilizes +mobilizing +mobs +mobster +mobsters +moccasin +moccasins +mocha +mock +mocked +mockery +mocking +mockingbird +mockingbirds +mockingly +mocks +mod +modal +modals +mode +model +modeled +modeler +modelers +modeling +modelled +modeller +modellers +modelling +models +modem +modems +moderate +moderated +moderately +moderates +moderating +moderation +moderator +moderators +modern +modernise +modernised +modernises +modernising +modernism +modernist +modernistic +modernists +modernity +modernization +modernize +modernized +modernizes +modernizing +modes +modest +modestly +modesty +modicum +modification +modifications +modified +modifier +modifiers +modifies +modify +modifying +modish +modishly +mods +modular +modulate +modulated +modulates +modulating +modulation +modulations +module +modules +moggie +moggies +moggy +mogul +moguls +mohair +moi +moist +moisten +moistened +moistening +moistens +moister +moistest +moistness +moisture +moisturise +moisturised +moisturiser +moisturisers +moisturises +moisturising +moisturize +moisturized +moisturizer +moisturizers +moisturizes +moisturizing +molar +molars +molasses +mold +molded +molder +moldered +moldering +molders +moldier +moldiest +molding +moldings +molds +moldy +mole +molecular +molecule +molecules +molehill +molehills +moles +moleskin +molest +molestation +molested +molester +molesters +molesting +molests +moll +mollified +mollifies +mollify +mollifying +molls +mollusc +molluscs +mollusk +mollusks +mollycoddle +mollycoddled +mollycoddles +mollycoddling +molt +molted +molten +molting +molts +molybdenum +mom +moment +momentarily +momentary +momentous +moments +momentum +momma +mommas +mommies +mommy +moms +monarch +monarchic +monarchical +monarchies +monarchist +monarchists +monarchs +monarchy +monasteries +monastery +monastic +monasticism +monetarism +monetarist +monetarists +monetary +money +moneybags +moneybox +moneyboxes +moneyed +moneylender +moneylenders +moneymaker +moneymakers +moneys +mongol +mongolism +mongols +mongoose +mongooses +mongrel +mongrels +monied +monies +moniker +monikers +monitor +monitored +monitoring +monitors +monk +monkey +monkeyed +monkeying +monkeys +monks +mono +monochromatic +monochrome +monocle +monocles +monogamous +monogamy +monogram +monogrammed +monograms +monograph +monographs +monolingual +monolith +monolithic +monoliths +monolog +monologs +monologue +monologues +mononucleosis +monoplane +monoplanes +monopolies +monopolisation +monopolise +monopolised +monopolises +monopolising +monopolistic +monopolization +monopolize +monopolized +monopolizes +monopolizing +monopoly +monorail +monorails +monosyllabic +monosyllable +monosyllables +monotheism +monotheist +monotheistic +monotheists +monotone +monotones +monotonous +monotonously +monotony +monsoon +monsoons +monster +monsters +monstrosities +monstrosity +monstrous +monstrously +montage +montages +month +monthlies +monthly +months +monument +monumental +monumentally +monuments +moo +mooch +mooched +mooches +mooching +mood +moodier +moodiest +moodily +moodiness +moods +moody +mooed +mooing +moon +moonbeam +moonbeams +mooned +mooning +moonless +moonlight +moonlighted +moonlighting +moonlights +moonlit +moons +moonscape +moonscapes +moonshine +moonstruck +moor +moored +moorhen +moorhens +mooring +moorings +moorland +moorlands +moors +moos +moose +moot +mooted +mooting +moots +mop +mope +moped +mopeds +mopes +moping +mopped +moppet +moppets +mopping +mops +moraine +moraines +moral +morale +moralise +moralised +moralises +moralising +moralist +moralistic +moralists +moralities +morality +moralize +moralized +moralizes +moralizing +morally +morals +morass +morasses +moratoria +moratorium +moratoriums +morbid +morbidity +morbidly +mordant +mordantly +more +moreish +moreover +mores +morgue +morgues +moribund +morn +morning +mornings +morns +morocco +moron +moronic +morons +morose +morosely +moroseness +morph +morphed +morpheme +morphemes +morphia +morphine +morphing +morphological +morphology +morphs +morrow +morsel +morsels +mortal +mortality +mortally +mortals +mortar +mortarboard +mortarboards +mortars +mortgage +mortgaged +mortgagee +mortgagees +mortgages +mortgaging +mortice +mortices +mortician +morticians +mortification +mortified +mortifies +mortify +mortifying +mortise +mortises +mortuaries +mortuary +mosaic +mosaics +mosey +moseyed +moseying +moseys +mosh +moshed +moshes +moshing +mosque +mosques +mosquito +mosquitoes +mosquitos +moss +mosses +mossy +most +mostly +mote +motel +motels +motes +motet +motets +moth +mothball +mothballed +mothballing +mothballs +mother +motherboard +motherboards +mothered +motherfucker +motherfuckers +motherhood +mothering +motherland +motherlands +motherless +motherly +mothers +moths +motif +motifs +motion +motioned +motioning +motionless +motions +motivate +motivated +motivates +motivating +motivation +motivations +motivator +motivators +motive +motiveless +motives +motley +motocross +motor +motorbike +motorbikes +motorboat +motorboats +motorcade +motorcades +motorcycle +motorcycles +motorcyclist +motorcyclists +motored +motoring +motorised +motorist +motorists +motorized +motorman +motormen +motormouth +motormouths +motors +motorway +motorways +mottled +motto +mottoes +mottos +mould +moulded +moulder +mouldered +mouldering +moulders +mouldier +mouldiest +moulding +mouldings +moulds +mouldy +moult +moulted +moulting +moults +mound +mounds +mount +mountain +mountaineer +mountaineering +mountaineers +mountainous +mountains +mountainside +mountainsides +mountaintop +mountaintops +mounted +mounting +mountings +mounts +mourn +mourned +mourner +mourners +mournful +mournfully +mournfulness +mourning +mourns +mouse +mouser +mousers +mousetrap +mousetraps +mousey +moussaka +moussakas +mousse +mousses +moustache +moustached +moustaches +moustachioed +mousy +mouth +mouthed +mouthful +mouthfuls +mouthing +mouthpiece +mouthpieces +mouths +mouthwash +mouthwashes +mouthy +movable +move +moveable +moved +movement +movements +mover +movers +moves +movie +moviegoer +moviegoers +movies +moving +movingly +mow +mowed +mower +mowers +mowing +mown +mows +moxie +mozzarella +much +muck +mucked +muckier +muckiest +mucking +muckraking +mucks +mucky +mucous +mucus +mud +muddied +muddier +muddies +muddiest +muddle +muddled +muddles +muddling +muddy +muddying +mudflap +mudflaps +mudflat +mudflats +mudguard +mudguards +mudpack +mudpacks +mudslide +mudslides +muesli +muezzin +muezzins +muff +muffed +muffin +muffing +muffins +muffle +muffled +muffler +mufflers +muffles +muffling +muffs +mufti +muftis +mug +mugged +mugger +muggers +muggier +muggiest +mugging +muggings +muggins +muggy +mugs +mujaheddin +mulatto +mulattoes +mulattos +mulberries +mulberry +mulch +mulched +mulches +mulching +mule +mules +mulish +mull +mullah +mullahs +mulled +mullet +mullets +mulligatawny +mulling +mullion +mullioned +mullions +mulls +multicolored +multicoloured +multicultural +multiculturalism +multifaceted +multifarious +multilateral +multilingual +multimedia +multimillionaire +multimillionaires +multinational +multinationals +multiparty +multiple +multiples +multiplex +multiplexes +multiplication +multiplicity +multiplied +multiplies +multiply +multiplying +multiracial +multitasking +multitude +multitudes +multitudinous +mum +mumble +mumbled +mumbles +mumbling +mummies +mummified +mummifies +mummify +mummifying +mummy +mumps +mums +munch +munched +munches +munchies +munching +mundane +municipal +municipalities +municipality +munificence +munificent +munition +munitions +mural +murals +murder +murdered +murderer +murderers +murderess +murderesses +murdering +murderous +murderously +murders +murk +murkier +murkiest +murky +murmur +murmured +murmuring +murmurings +murmurs +muscle +muscled +muscleman +musclemen +muscles +muscling +muscly +muscular +musculature +muse +mused +muses +museum +museums +mush +musher +mushers +mushier +mushiest +mushroom +mushroomed +mushrooming +mushrooms +mushy +music +musical +musicality +musically +musicals +musician +musicians +musicianship +musicologist +musicologists +musicology +musing +musk +musket +musketeer +musketeers +muskets +muskrat +muskrats +musky +muslin +muss +mussed +mussel +mussels +musses +mussing +must +mustache +mustaches +mustachioed +mustang +mustangs +mustard +muster +mustered +mustering +musters +musts +musty +mutability +mutable +mutant +mutants +mutate +mutated +mutates +mutating +mutation +mutations +mute +muted +mutely +mutes +mutilate +mutilated +mutilates +mutilating +mutilation +mutilations +mutineer +mutineers +muting +mutinied +mutinies +mutinous +mutinously +mutiny +mutinying +mutt +mutter +muttered +muttering +mutterings +mutters +mutton +mutts +mutual +mutuality +mutually +muzak +muzzily +muzziness +muzzle +muzzled +muzzles +muzzling +muzzy +my +mycology +mynah +mynahs +myopia +myopic +myopically +myriad +myriads +myrrh +myrtle +myrtles +myself +mysteries +mysterious +mysteriously +mystery +mystic +mystical +mystically +mysticism +mystics +mystification +mystified +mystifies +mystify +mystifying +mystique +myth +mythic +mythical +mythological +mythologies +mythology +myths +myxomatosis +naan +naans +nab +nabbed +nabbing +nabob +nabobs +nabs +nacho +nachos +nadir +nae +naff +naffer +naffest +nag +nagged +nagging +nags +nah +nail +nailed +nailing +nails +naive +naively +naivete +naivety +naked +nakedly +nakedness +name +named +nameless +namely +nameplate +nameplates +names +namesake +namesakes +naming +nan +nannies +nanny +nanosecond +nanoseconds +nans +nap +napalm +nape +napes +naphtha +napkin +napkins +napped +nappies +napping +nappy +naps +narc +narcissi +narcissism +narcissist +narcissistic +narcissists +narcissus +narcissuses +narcolepsy +narcoleptic +narcotic +narcotics +narcs +nark +narked +narking +narks +narky +narrate +narrated +narrates +narrating +narration +narrations +narrative +narratives +narrator +narrators +narrow +narrowed +narrower +narrowest +narrowing +narrowly +narrowness +narrows +narwhal +narwhals +nasal +nasally +nascent +nastier +nastiest +nastily +nastiness +nasturtium +nasturtiums +nasty +natch +nation +national +nationalisation +nationalisations +nationalise +nationalised +nationalises +nationalising +nationalism +nationalist +nationalistic +nationalists +nationalities +nationality +nationalization +nationalizations +nationalize +nationalized +nationalizes +nationalizing +nationally +nationals +nationhood +nations +nationwide +native +natives +nativity +natter +nattered +nattering +natters +nattier +nattiest +nattily +natty +natural +naturalisation +naturalise +naturalised +naturalises +naturalising +naturalism +naturalist +naturalistic +naturalists +naturalization +naturalize +naturalized +naturalizes +naturalizing +naturally +naturalness +naturals +nature +natures +naturism +naturist +naturists +naught +naughtier +naughtiest +naughtily +naughtiness +naughty +nausea +nauseate +nauseated +nauseates +nauseating +nauseatingly +nauseous +nauseously +nauseousness +nautical +nautically +naval +nave +navel +navels +naves +navies +navigability +navigable +navigate +navigated +navigates +navigating +navigation +navigational +navigator +navigators +navvies +navvy +navy +nay +neanderthal +neanderthals +near +nearby +neared +nearer +nearest +nearing +nearly +nearness +nears +nearside +nearsighted +neat +neaten +neatened +neatening +neatens +neater +neatest +neatly +neatness +nebula +nebulae +nebular +nebulas +nebulous +nebulousness +necessaries +necessarily +necessary +necessitate +necessitated +necessitates +necessitating +necessities +necessity +neck +neckband +neckbands +necked +neckerchief +neckerchiefs +necking +necklace +necklaced +necklaces +necklacing +necklacings +neckline +necklines +necks +necktie +neckties +necromancer +necromancers +necromancy +necrophilia +necrophiliac +necrophiliacs +necropolis +necropolises +nectar +nectarine +nectarines +nee +need +needed +needful +needier +neediest +needing +needle +needled +needlepoint +needles +needless +needlessly +needlewoman +needlewomen +needlework +needling +needs +needy +nefarious +nefariously +nefariousness +negate +negated +negates +negating +negation +negative +negatived +negatively +negatives +negativing +negativity +neglect +neglected +neglectful +neglecting +neglects +negligee +negligees +negligence +negligent +negligently +negligible +negligibly +negotiable +negotiate +negotiated +negotiates +negotiating +negotiation +negotiations +negotiator +negotiators +negro +negroid +neigh +neighbor +neighborhood +neighborhoods +neighboring +neighborliness +neighborly +neighbors +neighbour +neighbourhood +neighbourhoods +neighbouring +neighbourliness +neighbourly +neighbours +neighed +neighing +neighs +neither +nemesis +neoclassical +neocolonialism +neocolonialist +neolithic +neologism +neologisms +neon +neonatal +neophyte +neophytes +nephew +nephews +nepotism +nepotistic +nerd +nerdier +nerdiest +nerds +nerdy +nerve +nerved +nerveless +nerves +nerving +nervous +nervously +nervousness +nervy +nest +nested +nesting +nestle +nestled +nestles +nestling +nestlings +nests +net +netball +nether +netherworld +nets +nett +netted +netting +nettle +nettled +nettles +nettling +network +networked +networking +networks +neural +neuralgia +neuralgic +neurological +neurologist +neurologists +neurology +neuron +neurone +neurones +neurons +neuroses +neurosis +neurotic +neurotically +neurotics +neuter +neutered +neutering +neuters +neutral +neutralisation +neutralise +neutralised +neutralises +neutralising +neutralist +neutralists +neutrality +neutralization +neutralize +neutralized +neutralizes +neutralizing +neutrally +neutrals +neutron +neutrons +never +nevermore +nevertheless +new +newborn +newborns +newcomer +newcomers +newer +newest +newfangled +newly +newlywed +newlyweds +newness +news +newsagent +newsagents +newscast +newscaster +newscasters +newscasts +newsflash +newsflashes +newsgroup +newsgroups +newshound +newshounds +newsletter +newsletters +newspaper +newspaperman +newspapermen +newspapers +newsprint +newsreader +newsreaders +newsreel +newsreels +newsroom +newsrooms +newsstand +newsstands +newsworthy +newsy +newt +newts +next +nexus +nexuses +niacin +nib +nibble +nibbled +nibbles +nibbling +nibs +nice +nicely +niceness +nicer +nicest +niceties +nicety +niche +niches +nick +nicked +nickel +nickels +nicking +nickname +nicknamed +nicknames +nicknaming +nicks +nicotine +niece +nieces +niff +niffy +niftier +niftiest +nifty +niggardly +nigger +niggers +niggle +niggled +niggles +niggling +nigh +night +nightcap +nightcaps +nightclothes +nightclub +nightclubbing +nightclubs +nightdress +nightdresses +nightfall +nightgown +nightgowns +nightie +nighties +nightingale +nightingales +nightlife +nightlight +nightlights +nightlong +nightly +nightmare +nightmares +nightmarish +nights +nightshirt +nightshirts +nightspot +nightspots +nightstand +nightstands +nightstick +nightsticks +nightwatchman +nightwatchmen +nightwear +nihilism +nihilist +nihilistic +nihilists +nil +nimble +nimbleness +nimbler +nimblest +nimbly +nimbus +nimbuses +nimby +nincompoop +nincompoops +nine +ninepins +nines +nineteen +nineteens +nineteenth +nineteenths +nineties +ninetieth +ninetieths +ninety +ninja +ninjas +ninnies +ninny +ninth +ninths +nip +nipped +nipper +nippers +nipping +nipple +nipples +nippy +nips +nirvana +nit +nitpick +nitpicked +nitpicker +nitpickers +nitpicking +nitpicks +nitrate +nitrates +nitrogen +nitroglycerin +nitroglycerine +nits +nitwit +nitwits +nix +nixed +nixes +nixing +no +nob +nobble +nobbled +nobbles +nobbling +nobility +noble +nobleman +noblemen +nobler +nobles +noblest +noblewoman +noblewomen +nobly +nobodies +nobody +nobs +nocturnal +nocturnally +nocturne +nocturnes +nod +nodal +nodded +nodding +noddle +noddles +node +nodes +nods +nodular +nodule +nodules +noes +noggin +noggins +nohow +noise +noiseless +noiselessly +noisemaker +noisemakers +noises +noisier +noisiest +noisily +noisiness +noisome +noisy +nomad +nomadic +nomads +nomenclature +nomenclatures +nominal +nominally +nominate +nominated +nominates +nominating +nomination +nominations +nominative +nominatives +nominee +nominees +nonagenarian +nonagenarians +nonalcoholic +nonaligned +nonchalance +nonchalant +nonchalantly +noncombatant +noncombatants +noncommittal +noncommittally +nonconformism +nonconformist +nonconformists +nonconformity +nondescript +none +nonentities +nonentity +nonessential +nonetheless +nonexistence +nonexistent +nonfat +nonfiction +nonintervention +nonpayment +nonplused +nonplussed +nonprofit +nonresident +nonresidents +nonsense +nonsensical +nonsmoker +nonsmokers +nonsmoking +nonspecific +nonstandard +nonstarter +nonstarters +nonstick +nonstop +nonunion +nonverbal +nonviolent +nonwhite +nonwhites +noodle +noodled +noodles +noodling +nook +nookie +nooks +nooky +noon +noonday +noose +nooses +nope +nor +norm +normal +normalcy +normalisation +normalise +normalised +normalises +normalising +normality +normalization +normalize +normalized +normalizes +normalizing +normally +normative +norms +north +northbound +northeast +northeasterly +northeastern +northeastward +northeastwards +northerly +northern +northerner +northerners +northernmost +northward +northwards +northwest +northwesterly +northwestern +northwestward +northwestwards +nose +nosebag +nosebags +nosebleed +nosebleeds +nosed +nosedive +nosedived +nosedives +nosediving +nosegay +nosegays +noses +nosey +nosh +noshed +noshes +noshing +nosier +nosiest +nosiness +nosing +nostalgia +nostalgic +nostalgically +nostril +nostrils +nostrum +nostrums +nosy +not +notable +notables +notably +notaries +notary +notation +notations +notch +notched +notches +notching +note +notebook +notebooks +noted +notelet +notelets +notepad +notepads +notepaper +notes +noteworthy +nothing +nothingness +nothings +notice +noticeable +noticeably +noticeboard +noticeboards +noticed +notices +noticing +notifiable +notification +notifications +notified +notifies +notify +notifying +noting +notion +notional +notionally +notions +notoriety +notorious +notoriously +notwithstanding +nougat +nought +noughts +noun +nouns +nourish +nourished +nourishes +nourishing +nourishment +nous +nova +novae +novel +novelette +novelettes +novelist +novelists +novella +novellas +novels +novelties +novelty +novice +novices +now +nowadays +nowhere +nowt +noxious +nozzle +nozzles +nth +nuance +nuances +nub +nubile +nuclear +nuclei +nucleus +nude +nudes +nudge +nudged +nudges +nudging +nudism +nudist +nudists +nudity +nugatory +nugget +nuggets +nuisance +nuisances +nuke +nuked +nukes +nuking +nullified +nullifies +nullify +nullifying +nullity +numb +numbed +number +numbered +numbering +numberless +numbers +numbing +numbly +numbness +numbs +numbskull +numbskulls +numeracy +numeral +numerals +numerate +numerator +numerators +numerical +numerically +numerology +numerous +numinous +numismatic +numismatics +numismatist +numismatists +numskull +numskulls +nun +nuncio +nuncios +nunneries +nunnery +nuns +nuptial +nuptials +nurse +nursed +nursemaid +nursemaids +nurseries +nursery +nurseryman +nurserymen +nurses +nursing +nurture +nurtured +nurtures +nurturing +nut +nutcase +nutcases +nutcracker +nutcrackers +nuthouse +nuthouses +nutmeg +nutmegs +nutrient +nutrients +nutrition +nutritional +nutritionally +nutritionist +nutritionists +nutritious +nutritive +nuts +nutted +nutter +nutters +nuttier +nuttiest +nuttiness +nutting +nutty +nuzzle +nuzzled +nuzzles +nuzzling +nylon +nylons +nymph +nymphet +nymphets +nympho +nymphomania +nymphomaniac +nymphomaniacs +nymphos +nymphs +oaf +oafish +oafishness +oafs +oak +oaken +oaks +oakum +oar +oarlock +oarlocks +oars +oarsman +oarsmen +oarswoman +oarswomen +oases +oasis +oatcake +oatcakes +oath +oaths +oatmeal +oats +obduracy +obdurate +obdurately +obedience +obedient +obediently +obeisance +obeisances +obelisk +obelisks +obese +obesity +obey +obeyed +obeying +obeys +obfuscate +obfuscated +obfuscates +obfuscating +obfuscation +obfuscations +obit +obits +obituaries +obituary +object +objected +objectification +objecting +objection +objectionable +objections +objective +objectively +objectives +objectivity +objector +objectors +objects +obligate +obligated +obligates +obligating +obligation +obligations +obligatory +oblige +obliged +obliges +obliging +obligingly +oblique +obliquely +obliques +obliterate +obliterated +obliterates +obliterating +obliteration +oblivion +oblivious +obliviously +obliviousness +oblong +oblongs +obloquy +obnoxious +obnoxiously +obnoxiousness +oboe +oboes +oboist +oboists +obscene +obscenely +obscenities +obscenity +obscurantism +obscurantist +obscure +obscured +obscurely +obscurer +obscures +obscurest +obscuring +obscurities +obscurity +obsequies +obsequious +obsequiously +obsequiousness +observable +observably +observance +observances +observant +observation +observations +observatories +observatory +observe +observed +observer +observers +observes +observing +obsess +obsessed +obsesses +obsessing +obsession +obsessional +obsessionally +obsessions +obsessive +obsessively +obsessives +obsidian +obsolescence +obsolescent +obsolete +obstacle +obstacles +obstetric +obstetrician +obstetricians +obstetrics +obstinacy +obstinate +obstinately +obstreperous +obstreperousness +obstruct +obstructed +obstructing +obstruction +obstructionism +obstructionist +obstructionists +obstructions +obstructive +obstructively +obstructiveness +obstructs +obtain +obtainable +obtained +obtaining +obtains +obtrude +obtruded +obtrudes +obtruding +obtrusive +obtrusively +obtrusiveness +obtuse +obtusely +obtuseness +obverse +obviate +obviated +obviates +obviating +obvious +obviously +obviousness +occasion +occasional +occasionally +occasioned +occasioning +occasions +occidental +occult +occultist +occultists +occupancy +occupant +occupants +occupation +occupational +occupationally +occupations +occupied +occupier +occupiers +occupies +occupy +occupying +occur +occurred +occurrence +occurrences +occurring +occurs +ocean +oceanfront +oceangoing +oceanic +oceanographer +oceanographers +oceanography +oceans +ocelot +ocelots +och +ocher +ochre +ocker +ockers +octagon +octagonal +octagons +octane +octanes +octave +octaves +octet +octets +octogenarian +octogenarians +octopi +octopus +octopuses +ocular +oculist +oculists +odd +oddball +oddballs +odder +oddest +oddities +oddity +oddly +oddment +oddments +oddness +odds +ode +odes +odious +odium +odometer +odometers +odor +odorless +odorous +odors +odour +odourless +odours +odyssey +odysseys +oesophagus +oesophaguses +oestrogen +oeuvre +oeuvres +of +off +offal +offbeat +offed +offence +offences +offend +offended +offender +offenders +offending +offends +offense +offenses +offensive +offensively +offensiveness +offensives +offer +offered +offering +offerings +offers +offertories +offertory +offhand +offhandedly +offhandedness +office +officer +officers +offices +official +officialdom +officialese +officially +officials +officiate +officiated +officiates +officiating +officious +officiously +officiousness +offing +offish +offline +offload +offloaded +offloading +offloads +offs +offset +offsets +offsetting +offshoot +offshoots +offshore +offside +offspring +offstage +oft +often +oftentimes +ogle +ogled +ogles +ogling +ogre +ogres +oh +ohm +ohms +ohs +oi +oik +oiks +oil +oilcan +oilcans +oilcloth +oiled +oilfield +oilfields +oilier +oiliest +oiling +oilman +oilmen +oils +oilskin +oilskins +oily +oink +oinks +ointment +ointments +okay +okayed +okaying +okays +okra +old +olde +olden +older +oldest +oldie +oldies +oldish +oldster +ole +oleaginous +oleander +oleanders +olfactory +oligarch +oligarchies +oligarchs +oligarchy +olive +olives +ombudsman +ombudsmen +omega +omegas +omelet +omelets +omelette +omelettes +omen +omens +ominous +ominously +omission +omissions +omit +omits +omitted +omitting +omnibus +omnibuses +omnipotence +omnipotent +omnipresence +omnipresent +omniscience +omniscient +omnivore +omnivores +omnivorous +on +once +oncologist +oncologists +oncology +oncoming +one +oneness +onerous +onerousness +ones +oneself +onetime +ongoing +onion +onions +online +onlooker +onlookers +only +onomatopoeia +onomatopoeic +onrush +onset +onshore +onside +onslaught +onslaughts +onstage +onto +ontological +ontology +onus +onward +onwards +onyx +oodles +ooh +oohed +oohing +oohs +oomph +oops +ooze +oozed +oozes +oozing +oozy +op +opacity +opal +opalescence +opalescent +opals +opaque +opaquely +open +opencast +opened +opener +openers +opening +openings +openly +openness +opens +opera +operable +operas +operate +operated +operates +operatic +operatically +operating +operation +operational +operationally +operations +operative +operatives +operator +operators +operetta +operettas +ophthalmic +ophthalmologist +ophthalmologists +ophthalmology +opiate +opiates +opine +opined +opines +opining +opinion +opinionated +opinions +opium +opossum +opossums +opponent +opponents +opportune +opportunely +opportunism +opportunist +opportunistic +opportunistically +opportunists +opportunities +opportunity +oppose +opposed +opposes +opposing +opposite +opposites +opposition +oppositions +oppress +oppressed +oppresses +oppressing +oppression +oppressive +oppressively +oppressiveness +oppressor +oppressors +opprobrious +opprobrium +ops +opt +opted +optic +optical +optically +optician +opticians +optics +optimal +optimise +optimised +optimises +optimising +optimism +optimist +optimistic +optimistically +optimists +optimize +optimized +optimizes +optimizing +optimum +opting +option +optional +options +optometrist +optometrists +optometry +opts +opulence +opulent +opus +opuses +or +oracle +oracles +oracular +oral +orally +orals +orange +orangeade +orangeness +orangeries +orangery +oranges +orangutan +orangutans +oration +orations +orator +oratorical +oratories +oratorio +oratorios +orators +oratory +orb +orbit +orbital +orbitals +orbited +orbiting +orbits +orbs +orchard +orchards +orchestra +orchestral +orchestras +orchestrate +orchestrated +orchestrates +orchestrating +orchestration +orchestrations +orchid +orchids +ordain +ordained +ordaining +ordains +ordeal +ordeals +order +ordered +ordering +orderlies +orderliness +orderly +orders +ordinal +ordinals +ordinance +ordinances +ordinarily +ordinariness +ordinary +ordination +ordinations +ordnance +ordure +ore +oregano +ores +organ +organdy +organic +organically +organisation +organisational +organisations +organise +organised +organiser +organisers +organises +organising +organism +organisms +organist +organists +organization +organizational +organizations +organize +organized +organizer +organizers +organizes +organizing +organs +orgasm +orgasmic +orgasms +orgiastic +orgies +orgy +orient +oriental +orientalist +orientalists +orientals +orientate +orientated +orientates +orientating +orientation +orientations +oriented +orienteering +orienting +orients +orifice +orifices +origami +origin +original +originality +originally +originals +originate +originated +originates +originating +originator +originators +origins +oriole +orioles +ormolu +ornament +ornamental +ornamentation +ornamented +ornamenting +ornaments +ornate +ornately +ornery +ornithological +ornithologist +ornithologists +ornithology +orphan +orphanage +orphanages +orphaned +orphaning +orphans +orthodontic +orthodontics +orthodontist +orthodontists +orthodox +orthodoxies +orthodoxy +orthographic +orthographically +orthography +orthopaedic +orthopaedics +orthopedic +orthopedics +oscillate +oscillated +oscillates +oscillating +oscillation +oscillations +oscillator +oscillators +oscilloscope +oscilloscopes +osier +osiers +osmosis +osmotic +osprey +ospreys +ossification +ossified +ossifies +ossify +ossifying +ostensible +ostensibly +ostentation +ostentatious +ostentatiously +osteoarthritis +osteopath +osteopaths +osteopathy +osteoporosis +ostler +ostlers +ostracise +ostracised +ostracises +ostracising +ostracism +ostracize +ostracized +ostracizes +ostracizing +ostrich +ostriches +other +otherness +others +otherwise +otherworldly +otiose +otter +otters +ottoman +ottomans +ouch +ought +ounce +ounces +our +ours +ourselves +oust +ousted +ouster +ousters +ousting +ousts +out +outage +outages +outback +outbid +outbidding +outbids +outboard +outbound +outbreak +outbreaks +outbuilding +outbuildings +outburst +outbursts +outcast +outcasts +outclass +outclassed +outclasses +outclassing +outcome +outcomes +outcries +outcrop +outcropping +outcroppings +outcrops +outcry +outdated +outdid +outdistance +outdistanced +outdistances +outdistancing +outdo +outdoes +outdoing +outdone +outdoor +outdoors +outed +outer +outermost +outerwear +outface +outfaced +outfaces +outfacing +outfall +outfalls +outfield +outfielder +outfielders +outfit +outfits +outfitted +outfitter +outfitters +outfitting +outflank +outflanked +outflanking +outflanks +outflow +outflows +outfox +outfoxed +outfoxes +outfoxing +outgoing +outgoings +outgrew +outgrow +outgrowing +outgrown +outgrows +outgrowth +outgrowths +outguess +outguessed +outguesses +outguessing +outgun +outgunned +outgunning +outguns +outhouse +outhouses +outing +outings +outlandish +outlandishly +outlandishness +outlast +outlasted +outlasting +outlasts +outlaw +outlawed +outlawing +outlaws +outlay +outlays +outlet +outlets +outline +outlined +outlines +outlining +outlive +outlived +outlives +outliving +outlook +outlooks +outlying +outmaneuver +outmaneuvered +outmaneuvering +outmaneuvers +outmanoeuvre +outmanoeuvred +outmanoeuvres +outmanoeuvring +outmoded +outnumber +outnumbered +outnumbering +outnumbers +outpace +outpaced +outpaces +outpacing +outpatient +outpatients +outperform +outperformed +outperforming +outperforms +outplacement +outplay +outplayed +outplaying +outplays +outpoint +outpointed +outpointing +outpoints +outpost +outposts +outpouring +outpourings +output +outputs +outputting +outrage +outraged +outrageous +outrageously +outrages +outraging +outran +outrank +outranked +outranking +outranks +outre +outreach +outrider +outriders +outrigger +outriggers +outright +outrun +outrunning +outruns +outs +outsell +outselling +outsells +outshine +outshines +outshining +outshone +outside +outsider +outsiders +outsides +outsize +outsized +outskirts +outsmart +outsmarted +outsmarting +outsmarts +outsold +outsource +outsourced +outsources +outsourcing +outspoken +outspokenly +outspokenness +outspread +outstanding +outstandingly +outstretched +outstrip +outstripped +outstripping +outstrips +outta +outtake +outtakes +outvote +outvoted +outvotes +outvoting +outward +outwardly +outwards +outweigh +outweighed +outweighing +outweighs +outwit +outwith +outwits +outwitted +outwitting +outwork +outworker +outworkers +outworn +ouzo +ouzos +ova +oval +ovals +ovarian +ovaries +ovary +ovation +ovations +oven +ovenproof +ovens +ovenware +over +overachiever +overachievers +overact +overacted +overacting +overacts +overall +overalls +overarching +overarm +overate +overawe +overawed +overawes +overawing +overbalance +overbalanced +overbalances +overbalancing +overbearing +overbid +overbidding +overbids +overblown +overboard +overbook +overbooked +overbooking +overbooks +overburden +overburdened +overburdening +overburdens +overcame +overcast +overcharge +overcharged +overcharges +overcharging +overcoat +overcoats +overcome +overcomes +overcoming +overcompensate +overcompensated +overcompensates +overcompensating +overcook +overcooked +overcooking +overcooks +overcrowd +overcrowded +overcrowding +overcrowds +overdeveloped +overdid +overdo +overdoes +overdoing +overdone +overdose +overdosed +overdoses +overdosing +overdraft +overdrafts +overdraw +overdrawing +overdrawn +overdraws +overdressed +overdrew +overdrive +overdrives +overdue +overeat +overeaten +overeating +overeats +overemphasis +overemphasise +overemphasised +overemphasises +overemphasising +overemphasize +overemphasized +overemphasizes +overemphasizing +overestimate +overestimated +overestimates +overestimating +overestimation +overexcited +overexpose +overexposed +overexposes +overexposing +overexposure +overextend +overextended +overextending +overextends +overflew +overflies +overflight +overflights +overflow +overflowed +overflowing +overflown +overflows +overfly +overflying +overground +overgrown +overgrowth +overhand +overhang +overhanging +overhangs +overhaul +overhauled +overhauling +overhauls +overhead +overheads +overhear +overheard +overhearing +overhears +overheat +overheated +overheating +overheats +overhung +overindulge +overindulged +overindulgence +overindulges +overindulging +overjoyed +overkill +overladen +overlaid +overlain +overland +overlap +overlapped +overlapping +overlaps +overlay +overlaying +overlays +overleaf +overlie +overlies +overload +overloaded +overloading +overloads +overlong +overlook +overlooked +overlooking +overlooks +overlord +overlords +overly +overlying +overmanned +overmanning +overmuch +overnight +overpaid +overpass +overpasses +overpay +overpaying +overpays +overplay +overplayed +overplaying +overplays +overpopulated +overpopulation +overpower +overpowered +overpowering +overpoweringly +overpowers +overpriced +overproduce +overproduced +overproduces +overproducing +overproduction +overprotective +overqualified +overran +overrate +overrated +overrates +overrating +overreach +overreached +overreaches +overreaching +overreact +overreacted +overreacting +overreaction +overreactions +overreacts +overridden +override +overrides +overriding +overripe +overrode +overrule +overruled +overrules +overruling +overrun +overrunning +overruns +overs +oversaw +overseas +oversee +overseeing +overseen +overseer +overseers +oversees +oversell +overselling +oversells +oversensitive +oversexed +overshadow +overshadowed +overshadowing +overshadows +overshoes +overshoot +overshooting +overshoots +overshot +oversight +oversights +oversimplification +oversimplifications +oversimplified +oversimplifies +oversimplify +oversimplifying +oversize +oversized +oversleep +oversleeping +oversleeps +overslept +oversold +overspend +overspending +overspends +overspent +overspill +overstaffed +overstate +overstated +overstatement +overstatements +overstates +overstating +overstay +overstayed +overstaying +overstays +overstep +overstepped +overstepping +oversteps +overstock +overstocked +overstocking +overstocks +overstretch +overstretched +overstretches +overstretching +oversubscribed +oversupplies +oversupply +overt +overtake +overtaken +overtakes +overtaking +overtax +overtaxed +overtaxes +overtaxing +overthrew +overthrow +overthrowing +overthrown +overthrows +overtime +overtired +overtly +overtone +overtones +overtook +overture +overtures +overturn +overturned +overturning +overturns +overuse +overused +overuses +overusing +overvaluation +overvaluations +overvalue +overvalued +overvalues +overvaluing +overview +overviews +overweening +overweeningly +overweight +overwhelm +overwhelmed +overwhelming +overwhelmingly +overwhelms +overwinter +overwintered +overwintering +overwinters +overwork +overworked +overworking +overworks +overwrite +overwrites +overwriting +overwritten +overwrote +overwrought +ovoid +ovoids +ovulate +ovulated +ovulates +ovulating +ovulation +ovum +ow +owe +owed +owes +owing +owl +owlish +owlishly +owls +own +owned +owner +owners +ownership +owning +owns +ox +oxcart +oxcarts +oxen +oxford +oxfords +oxidation +oxide +oxides +oxidisation +oxidise +oxidised +oxidises +oxidising +oxidization +oxidize +oxidized +oxidizes +oxidizing +oxtail +oxtails +oxyacetylene +oxygen +oxygenate +oxygenated +oxygenates +oxygenating +oxygenation +oxymoron +oxymorons +oyster +oysters +ozone +pa +pace +paced +pacemaker +pacemakers +paces +pacesetter +pacesetters +pacey +pachyderm +pachyderms +pacier +paciest +pacific +pacifically +pacification +pacified +pacifier +pacifiers +pacifies +pacifism +pacifist +pacifists +pacify +pacifying +pacing +pack +package +packaged +packages +packaging +packed +packer +packers +packet +packets +packing +packs +pact +pacts +pacy +pad +padded +paddies +padding +paddle +paddled +paddles +paddling +paddock +paddocks +paddy +padlock +padlocked +padlocking +padlocks +padre +padres +pads +paean +paeans +paederast +paederasts +paediatric +paediatrician +paediatricians +paediatrics +paedophile +paedophiles +paedophilia +paella +paellas +pagan +paganism +pagans +page +pageant +pageantry +pageants +pageboy +pageboys +paged +pager +pagers +pages +paginate +paginated +paginates +paginating +pagination +paging +pagoda +pagodas +pah +paid +pail +pailful +pailfuls +pails +pain +pained +painful +painfully +paining +painkiller +painkillers +painkilling +painless +painlessly +pains +painstaking +painstakingly +paint +paintball +paintbox +paintboxes +paintbrush +paintbrushes +painted +painter +painterly +painters +painting +paintings +paints +paintwork +pair +paired +pairing +pairings +pairs +paisley +paisleys +pajamas +pal +palace +palaces +palaeolithic +palaeontologist +palaeontologists +palaeontology +palatable +palatal +palatals +palate +palates +palatial +palaver +pale +paled +paleface +palefaces +paleness +paleolithic +paleontologist +paleontologists +paleontology +paler +pales +palest +palette +palettes +palimony +palimpsest +palimpsests +palindrome +palindromes +paling +palings +palisade +palisades +palish +pall +pallbearer +pallbearers +palled +pallet +pallets +palliative +palliatives +pallid +palling +pallor +palls +pally +palm +palmed +palming +palmist +palmistry +palmists +palms +palmtop +palmtops +palomino +palominos +palpable +palpably +palpate +palpated +palpates +palpating +palpation +palpitate +palpitated +palpitates +palpitating +palpitation +palpitations +pals +palsied +palsy +paltry +pampas +pamper +pampered +pampering +pampers +pamphlet +pamphleteer +pamphleteers +pamphlets +pan +panacea +panaceas +panache +panama +panamas +panatella +panatellas +pancake +pancakes +pancreas +pancreases +pancreatic +panda +pandas +pandemic +pandemics +pandemonium +pander +pandered +pandering +panders +pane +panegyric +panegyrics +panel +paneled +paneling +panelist +panelists +panelled +panelling +panellist +panellists +panels +panes +pang +pangs +panhandle +panhandled +panhandler +panhandlers +panhandles +panhandling +panic +panicked +panicking +panicky +panics +panned +pannier +panniers +panning +panoply +panorama +panoramas +panoramic +panpipes +pans +pansies +pansy +pant +pantaloons +pantechnicon +pantechnicons +panted +pantheism +pantheist +pantheistic +pantheists +pantheon +pantheons +panther +panthers +panties +panting +panto +pantomime +pantomimes +pantos +pantries +pantry +pants +pantsuit +pantsuits +pantyhose +pap +papa +papacy +papal +paparazzi +paparazzo +papas +papaya +papayas +paper +paperback +paperbacks +paperbark +paperbarks +paperclip +paperclips +papered +papering +paperless +papers +paperweight +paperweights +paperwork +papery +papist +papists +papoose +papooses +pappy +paprika +papyri +papyrus +papyruses +par +para +parable +parables +parabola +parabolas +parabolic +paracetamol +paracetamols +parachute +parachuted +parachutes +parachuting +parachutist +parachutists +parade +paraded +parades +paradigm +paradigmatic +paradigms +parading +paradise +paradises +paradox +paradoxes +paradoxical +paradoxically +paraffin +paragliding +paragon +paragons +paragraph +paragraphs +parakeet +parakeets +paralegal +paralegals +parallel +paralleled +paralleling +parallelism +parallelisms +parallelogram +parallelograms +parallels +paralyse +paralysed +paralyses +paralysing +paralysis +paralytic +paralyze +paralyzed +paralyzes +paralyzing +paramedic +paramedical +paramedics +parameter +parameters +paramilitaries +paramilitary +paramount +paramountcy +paramour +paramours +paranoia +paranoiac +paranoiacs +paranoid +paranoids +paranormal +parapet +parapets +paraphernalia +paraphrase +paraphrased +paraphrases +paraphrasing +paraplegia +paraplegic +paraplegics +parapsychology +paraquat +paras +parascending +parasite +parasites +parasitic +parasitical +parasitically +parasol +parasols +paratroop +paratrooper +paratroopers +paratroops +parboil +parboiled +parboiling +parboils +parcel +parceled +parceling +parcelled +parcelling +parcels +parch +parched +parches +parching +parchment +parchments +pardner +pardners +pardon +pardonable +pardonably +pardoned +pardoning +pardons +pare +pared +parent +parentage +parental +parentheses +parenthesis +parenthetic +parenthetical +parenthetically +parenthood +parenting +parents +pares +pariah +pariahs +paring +parings +parish +parishes +parishioner +parishioners +parities +parity +park +parka +parkas +parked +parking +parkland +parks +parkway +parkways +parky +parlance +parlay +parlayed +parlaying +parlays +parley +parleyed +parleying +parleys +parliament +parliamentarian +parliamentarians +parliamentary +parliaments +parlor +parlors +parlour +parlours +parlous +parochial +parochialism +parochially +parodied +parodies +parodist +parodists +parody +parodying +parole +paroled +paroles +paroling +paroxysm +paroxysms +parquet +parricide +parricides +parried +parries +parrot +parroted +parroting +parrots +parry +parrying +parse +parsed +parses +parsimonious +parsimoniously +parsimony +parsing +parsley +parsnip +parsnips +parson +parsonage +parsonages +parsons +part +partake +partaken +partakes +partaking +parted +parthenogenesis +partial +partiality +partially +participant +participants +participate +participated +participates +participating +participation +participatory +participial +participle +participles +particle +particles +particular +particularise +particularised +particularises +particularising +particularities +particularity +particularize +particularized +particularizes +particularizing +particularly +particulars +partied +parties +parting +partings +partisan +partisans +partisanship +partition +partitioned +partitioning +partitions +partitive +partitives +partly +partner +partnered +partnering +partners +partnership +partnerships +partook +partridge +partridges +parts +parturition +party +partying +parvenu +parvenus +pas +pass +passable +passably +passage +passages +passageway +passageways +passbook +passbooks +passe +passed +passenger +passengers +passerby +passersby +passes +passim +passing +passion +passionate +passionately +passionflower +passionflowers +passionless +passions +passive +passively +passivisation +passivise +passivised +passivises +passivising +passivity +passivization +passivize +passivized +passivizes +passivizing +passkey +passkeys +passport +passports +password +passwords +past +pasta +paste +pasteboard +pasted +pastel +pastels +pastes +pasteurisation +pasteurise +pasteurised +pasteurises +pasteurising +pasteurization +pasteurize +pasteurized +pasteurizes +pasteurizing +pastiche +pastiches +pasties +pastille +pastilles +pastime +pastimes +pasting +pastor +pastoral +pastors +pastrami +pastries +pastry +pasts +pasturage +pasture +pastured +pastureland +pastures +pasturing +pasty +pat +patch +patched +patches +patchily +patchiness +patching +patchouli +patchwork +patchy +pate +patella +patellae +patent +patented +patenting +patently +patents +pater +paterfamilias +paternal +paternalism +paternalist +paternalistic +paternalists +paternally +paternity +paters +pates +path +pathetic +pathetically +pathfinder +pathfinders +pathogen +pathogenic +pathogens +pathological +pathologically +pathologist +pathologists +pathology +pathos +paths +pathway +pathways +patience +patient +patiently +patients +patina +patio +patios +patisserie +patisseries +patois +patriarch +patriarchal +patriarchies +patriarchs +patriarchy +patrician +patricians +patricide +patrimony +patriot +patriotic +patriotism +patriots +patrol +patrolled +patrolling +patrolman +patrolmen +patrols +patron +patronage +patroness +patronesses +patronise +patronised +patronises +patronising +patronisingly +patronize +patronized +patronizes +patronizing +patronizingly +patrons +pats +patsies +patsy +patted +patter +pattered +pattering +pattern +patterned +patterning +patterns +patters +patties +patting +patty +paucity +paunch +paunches +paunchier +paunchiest +paunchy +pauper +paupers +pause +paused +pauses +pausing +pave +paved +pavement +pavements +paves +pavilion +pavilions +paving +pavlova +pavlovas +paw +pawed +pawing +pawn +pawnbroker +pawnbrokers +pawned +pawning +pawns +pawnshop +pawnshops +pawpaw +pawpaws +paws +pay +payable +payback +paybacks +paycheck +paychecks +payday +payee +payees +payer +payers +paying +payload +payloads +paymaster +paymasters +payment +payments +payoff +payoffs +payola +payout +payouts +payphone +payphones +payroll +payrolls +pays +payslip +payslips +pea +peace +peaceable +peaceably +peaceful +peacefully +peacefulness +peacekeeper +peacekeepers +peacekeeping +peacemaker +peacemakers +peacetime +peach +peaches +peachy +peacock +peacocks +peahen +peahens +peak +peaked +peaking +peaks +peaky +peal +pealed +pealing +peals +peanut +peanuts +pear +pearl +pearls +pearly +pears +peas +peasant +peasantry +peasants +peashooter +peashooters +peat +peaty +pebble +pebbles +pebbly +pecan +pecans +peccadillo +peccadilloes +peccadillos +peck +pecked +pecker +peckers +pecking +peckish +pecks +pecs +pectin +pectoral +pectorals +peculiar +peculiarities +peculiarity +peculiarly +pecuniary +pedagogic +pedagogical +pedagogically +pedagogue +pedagogues +pedagogy +pedal +pedaled +pedaling +pedalled +pedalling +pedalo +pedalos +pedals +pedant +pedantic +pedantically +pedantry +pedants +peddle +peddled +peddler +peddlers +peddles +peddling +pederast +pederasts +pedestal +pedestals +pedestrian +pedestrianisation +pedestrianise +pedestrianised +pedestrianises +pedestrianising +pedestrianization +pedestrianize +pedestrianized +pedestrianizes +pedestrianizing +pedestrians +pediatric +pediatrician +pediatricians +pediatrics +pedicure +pedicures +pedigree +pedigreed +pedigrees +pediment +pediments +pedlar +pedlars +pedometer +pedometers +pedophile +pedophiles +pedophilia +pee +peed +peeing +peek +peekaboo +peeked +peeking +peeks +peel +peeled +peeler +peelers +peeling +peelings +peels +peep +peepbo +peeped +peephole +peepholes +peeping +peeps +peepshow +peepshows +peer +peerage +peerages +peered +peeress +peeresses +peering +peerless +peers +pees +peeve +peeved +peeves +peevish +peevishly +peevishness +peewee +peewees +peewit +peewits +peg +pegged +pegging +pegs +pejorative +pejoratively +peke +pekes +pekinese +pekineses +pekingese +pekingeses +pelagic +pelican +pelicans +pellet +pelleted +pellets +pellucid +pelmet +pelmets +pelt +pelted +pelting +pelts +pelvic +pelvis +pelvises +pen +penal +penalise +penalised +penalises +penalising +penalize +penalized +penalizes +penalizing +penalties +penalty +penance +penances +pence +penchant +penchants +pencil +penciled +penciling +pencilled +pencilling +pencils +pendant +pendants +pendent +pending +pendulous +pendulum +pendulums +penetrable +penetrate +penetrated +penetrates +penetrating +penetration +penetrative +penfriend +penfriends +penguin +penguins +penicillin +penile +peninsula +peninsular +peninsulas +penis +penises +penitence +penitent +penitential +penitentiaries +penitentiary +penitently +penitents +penknife +penknives +penlight +penlights +penmanship +pennant +pennants +penned +pennies +penniless +penning +penny +pennyworth +penologist +penologists +penology +pens +pension +pensionable +pensioned +pensioner +pensioners +pensioning +pensions +pensive +pensively +pentagon +pentagonal +pentagons +pentameter +pentameters +pentathlon +pentathlons +penthouse +penthouses +penultimate +penumbra +penumbras +penurious +penury +peonies +peony +people +peopled +peoples +peopling +pep +pepped +pepper +peppercorn +peppercorns +peppered +peppering +peppermint +peppermints +pepperoni +peppers +peppery +pepping +peps +per +perambulate +perambulated +perambulates +perambulating +perambulation +perambulations +perambulator +perambulators +perceive +perceived +perceives +perceiving +percent +percentage +percentages +percentile +percentiles +perceptible +perceptibly +perception +perceptions +perceptive +perceptively +perceptiveness +perceptual +perch +perchance +perched +perches +perching +percipient +percolate +percolated +percolates +percolating +percolator +percolators +percussion +percussionist +percussionists +percussive +perdition +peregrination +peregrinations +peregrine +peregrines +peremptorily +peremptory +perennial +perennially +perennials +perestroika +perfect +perfected +perfecting +perfection +perfectionism +perfectionist +perfectionists +perfectly +perfects +perfidious +perfidy +perforate +perforated +perforates +perforating +perforation +perforations +perforce +perform +performance +performances +performed +performer +performers +performing +performs +perfume +perfumed +perfumeries +perfumery +perfumes +perfuming +perfunctorily +perfunctory +pergola +pergolas +perhaps +peril +perilous +perilously +perils +perimeter +perimeters +perinatal +period +periodic +periodical +periodically +periodicals +periodontal +periods +peripatetic +peripheral +peripherally +peripherals +peripheries +periphery +periscope +periscopes +perish +perishable +perishables +perished +perisher +perishers +perishes +perishing +peritonitis +periwinkle +periwinkles +perjure +perjured +perjurer +perjurers +perjures +perjuring +perjury +perk +perked +perkier +perkiest +perkily +perkiness +perking +perks +perky +perm +permafrost +permanence +permanency +permanent +permanently +permanents +permeability +permeable +permeate +permeated +permeates +permeating +permeation +permed +perming +permissible +permission +permissions +permissive +permissiveness +permit +permits +permitted +permitting +perms +permutation +permutations +pernicious +pernickety +peroration +perorations +peroxide +peroxides +perpendicular +perpendicularly +perpendiculars +perpetrate +perpetrated +perpetrates +perpetrating +perpetration +perpetrator +perpetrators +perpetual +perpetually +perpetuate +perpetuated +perpetuates +perpetuating +perpetuation +perpetuity +perplex +perplexed +perplexedly +perplexes +perplexing +perplexities +perplexity +perquisite +perquisites +persecute +persecuted +persecutes +persecuting +persecution +persecutions +persecutor +persecutors +perseverance +persevere +persevered +perseveres +persevering +persimmon +persimmons +persist +persisted +persistence +persistent +persistently +persisting +persists +persnickety +person +persona +personable +personae +personage +personages +personal +personalise +personalised +personalises +personalising +personalities +personality +personalize +personalized +personalizes +personalizing +personally +personals +personas +personification +personifications +personified +personifies +personify +personifying +personnel +persons +perspective +perspectives +perspex +perspicacious +perspicacity +perspiration +perspire +perspired +perspires +perspiring +persuade +persuaded +persuades +persuading +persuasion +persuasions +persuasive +persuasively +persuasiveness +pert +pertain +pertained +pertaining +pertains +pertinacious +pertinacity +pertinence +pertinent +pertinently +pertly +perturb +perturbation +perturbations +perturbed +perturbing +perturbs +pertussis +perusal +peruse +perused +peruses +perusing +perv +pervade +pervaded +pervades +pervading +pervasive +pervasively +pervasiveness +perverse +perversely +perversion +perversions +perversity +pervert +perverted +perverting +perverts +pervs +peseta +pesetas +peskier +peskiest +pesky +peso +pesos +pessaries +pessary +pessimism +pessimist +pessimistic +pessimistically +pessimists +pest +pester +pestered +pestering +pesters +pesticide +pesticides +pestilence +pestilences +pestilential +pestle +pestles +pesto +pests +pet +petal +petals +peter +petered +petering +peters +petite +petition +petitioned +petitioner +petitioners +petitioning +petitions +petrel +petrels +petrifaction +petrified +petrifies +petrify +petrifying +petrochemical +petrochemicals +petrodollar +petrodollars +petrol +petrolatum +petroleum +petrology +pets +petted +petticoat +petticoats +pettier +pettiest +pettifogging +pettiness +petting +petty +petulance +petulant +petulantly +petunia +petunias +pew +pews +pewter +peyote +pfennig +pfennigs +phagocyte +phagocytes +phalanges +phalanx +phalanxes +phallic +phallus +phalluses +phantasies +phantasm +phantasmagoria +phantasmagorias +phantasmagorical +phantasms +phantasy +phantom +phantoms +pharaoh +pharaohs +pharmaceutical +pharmaceuticals +pharmacies +pharmacist +pharmacists +pharmacological +pharmacologist +pharmacologists +pharmacology +pharmacopeia +pharmacopeias +pharmacopoeia +pharmacopoeias +pharmacy +pharynx +pharynxes +phase +phased +phases +phasing +pheasant +pheasants +phenom +phenomena +phenomenal +phenomenally +phenomenological +phenomenology +phenomenon +phenomenons +phenoms +pheromone +pheromones +phew +phial +phials +philanderer +philanderers +philandering +philanthropic +philanthropist +philanthropists +philanthropy +philatelist +philatelists +philately +philharmonic +philistine +philistines +philistinism +philological +philologist +philology +philosopher +philosophers +philosophic +philosophical +philosophically +philosophies +philosophise +philosophised +philosophises +philosophising +philosophize +philosophized +philosophizes +philosophizing +philosophy +philter +philters +philtre +philtres +phlegm +phlegmatic +phobia +phobias +phobic +phobics +phoenix +phoenixes +phone +phonecard +phonecards +phoned +phoneme +phonemes +phonemic +phones +phonetic +phonetically +phonetician +phoneticians +phonetics +phoney +phoneys +phonic +phonics +phonier +phonies +phoniest +phoning +phonograph +phonographs +phonological +phonologist +phonologists +phonology +phony +phooey +phosphate +phosphates +phosphorescence +phosphorescent +phosphoric +phosphorus +photo +photocell +photocells +photocopied +photocopier +photocopiers +photocopies +photocopy +photocopying +photoelectric +photogenic +photograph +photographed +photographer +photographers +photographic +photographically +photographing +photographs +photography +photojournalism +photojournalist +photojournalists +photon +photons +photos +photosensitive +photostat +photostats +photostatted +photostatting +photosynthesis +phrasal +phrase +phrasebook +phrasebooks +phrased +phraseology +phrases +phrasing +phrenologist +phrenologists +phrenology +physical +physicality +physically +physicals +physician +physicians +physicist +physicists +physics +physio +physiognomies +physiognomy +physiological +physiologically +physiologist +physiologists +physiology +physios +physiotherapist +physiotherapists +physiotherapy +physique +physiques +pi +pianissimo +pianist +pianists +piano +pianoforte +pianofortes +pianola +pianolas +pianos +piazza +piazzas +pic +picador +picadors +picaresque +picayune +piccalilli +piccolo +piccolos +pick +pickax +pickaxe +pickaxes +picked +picker +pickers +picket +picketed +picketer +picketers +picketing +pickets +pickier +pickiest +picking +pickings +pickle +pickled +pickles +pickling +pickpocket +pickpockets +picks +picky +picnic +picnicked +picnicker +picnickers +picnicking +picnics +pics +pictorial +pictorially +picture +pictured +pictures +picturesque +picturesquely +picturesqueness +picturing +piddle +piddled +piddles +piddling +pidgin +pidgins +pie +piebald +piece +pieced +piecemeal +pieces +piecework +piecing +pied +pier +pierce +pierced +pierces +piercing +piercingly +piers +pies +piety +piezoelectric +piffle +piffling +pig +pigeon +pigeonhole +pigeonholed +pigeonholes +pigeonholing +pigeons +pigged +piggeries +piggery +piggies +pigging +piggy +piggyback +piggybacked +piggybacking +piggybacks +pigheaded +pigheadedly +pigheadedness +piglet +piglets +pigment +pigmentation +pigmented +pigments +pigmies +pigmy +pigpen +pigpens +pigs +pigskin +pigsties +pigsty +pigswill +pigtail +pigtails +pike +pikes +pilaf +pilaff +pilaffs +pilafs +pilaster +pilasters +pilau +pilaus +pilchard +pilchards +pile +piled +piles +pilfer +pilfered +pilfering +pilfers +pilgrim +pilgrimage +pilgrimages +pilgrims +piling +pilings +pill +pillage +pillaged +pillages +pillaging +pillar +pillared +pillars +pillbox +pillboxes +pillion +pillions +pillock +pillocks +pilloried +pillories +pillory +pillorying +pillow +pillowcase +pillowcases +pillowed +pillowing +pillows +pillowslip +pillowslips +pills +pilot +piloted +piloting +pilots +pimento +pimentos +pimiento +pimientos +pimp +pimped +pimpernel +pimpernels +pimping +pimple +pimpled +pimples +pimply +pimps +pin +pinafore +pinafores +pinball +pincer +pincers +pinch +pinched +pinches +pinching +pincushion +pincushions +pine +pineapple +pineapples +pined +pines +pinewood +pinewoods +piney +ping +pinged +pinging +pings +pinhead +pinheads +pinhole +pinholes +pining +pinion +pinioned +pinioning +pinions +pink +pinked +pinker +pinkest +pinkie +pinkies +pinking +pinkish +pinkness +pinko +pinkoes +pinkos +pinks +pinky +pinnacle +pinnacles +pinned +pinnies +pinning +pinny +pinpoint +pinpointed +pinpointing +pinpoints +pinprick +pinpricks +pins +pinstripe +pinstriped +pinstripes +pint +pints +pinwheel +pinwheels +piny +pioneer +pioneered +pioneering +pioneers +pious +piously +piousness +pip +pipe +piped +pipeline +pipelines +piper +pipers +pipes +pipette +pipettes +pipework +piping +pipit +pipits +pipped +pipping +pips +pipsqueak +pipsqueaks +piquancy +piquant +piquantly +pique +piqued +piques +piquing +piracy +piranha +piranhas +pirate +pirated +pirates +piratical +pirating +pirouette +pirouetted +pirouettes +pirouetting +piss +pissed +pisser +pissers +pisses +pissing +pissoir +pissoirs +pistachio +pistachios +piste +pistes +pistil +pistils +pistol +pistols +piston +pistons +pit +pita +pitas +pitch +pitched +pitcher +pitchers +pitches +pitchfork +pitchforked +pitchforking +pitchforks +pitching +piteous +piteously +pitfall +pitfalls +pith +pithead +pitheads +pithier +pithiest +pithily +pithy +pitiable +pitiably +pitied +pities +pitiful +pitifully +pitiless +pitilessly +pitilessness +piton +pitons +pits +pitta +pittance +pittances +pittas +pitted +pitting +pituitaries +pituitary +pity +pitying +pityingly +pivot +pivotal +pivoted +pivoting +pivots +pix +pixel +pixels +pixie +pixies +pixy +pizza +pizzas +pizzazz +pizzeria +pizzerias +pizzicato +placard +placards +placate +placated +placates +placating +placatory +place +placebo +placebos +placed +placement +placements +placenta +placentas +places +placid +placidity +placidly +placing +placings +plagiarise +plagiarised +plagiarises +plagiarising +plagiarism +plagiarisms +plagiarist +plagiarists +plagiarize +plagiarized +plagiarizes +plagiarizing +plague +plagued +plagues +plaguing +plaice +plaid +plaids +plain +plainchant +plainer +plainest +plainly +plainness +plains +plainsong +plainspoken +plaint +plaintiff +plaintiffs +plaintive +plaintively +plaints +plait +plaited +plaiting +plaits +plan +plane +planed +planeload +planeloads +planer +planers +planes +planet +planetarium +planetariums +planetary +planets +plangent +planing +plank +planking +planks +plankton +planned +planner +planners +planning +plans +plant +plantain +plantains +plantation +plantations +planted +planter +planters +planting +plantings +plants +plaque +plaques +plasma +plaster +plasterboard +plastered +plasterer +plasterers +plastering +plasters +plastic +plasticity +plastics +plate +plateau +plateaued +plateauing +plateaus +plateaux +plated +plateful +platefuls +platelet +platelets +plates +platform +platforms +plating +platinum +platitude +platitudes +platitudinous +platonic +platoon +platoons +platter +platters +platypus +platypuses +plaudits +plausibility +plausible +plausibly +play +playable +playback +playbacks +playbill +playbills +playboy +playboys +played +player +players +playful +playfully +playfulness +playground +playgrounds +playgroup +playgroups +playhouse +playhouses +playing +playmate +playmates +playpen +playpens +playroom +playrooms +plays +playschool +playschools +plaything +playthings +playtime +playwright +playwrights +plaza +plazas +plea +plead +pleaded +pleading +pleadingly +pleadings +pleads +pleas +pleasant +pleasanter +pleasantest +pleasantly +pleasantries +pleasantry +please +pleased +pleases +pleasing +pleasingly +pleasurable +pleasurably +pleasure +pleasures +pleat +pleated +pleats +pleb +plebby +plebe +plebeian +plebeians +plebes +plebiscite +plebiscites +plebs +plectra +plectrum +plectrums +pled +pledge +pledged +pledges +pledging +plenaries +plenary +plenipotentiaries +plenipotentiary +plenitude +plenteous +plentiful +plentifully +plenty +plenum +plenums +plethora +pleurisy +pliability +pliable +pliancy +pliant +pliantly +plied +pliers +plies +plight +plights +plimsoll +plimsolls +plinth +plinths +plod +plodded +plodder +plodders +plodding +plods +plonk +plonked +plonker +plonkers +plonking +plonks +plop +plopped +plopping +plops +plosive +plosives +plot +plots +plotted +plotter +plotters +plotting +plough +ploughed +ploughing +ploughman +ploughmen +ploughs +ploughshare +ploughshares +plover +plovers +plow +plowed +plowing +plowman +plowmen +plows +plowshare +plowshares +ploy +ploys +pluck +plucked +pluckier +pluckiest +plucking +plucks +plucky +plug +plugged +plugging +plughole +plugholes +plugs +plum +plumage +plumb +plumbed +plumber +plumbers +plumbing +plumbs +plume +plumed +plumes +plummet +plummeted +plummeting +plummets +plummy +plump +plumped +plumper +plumpest +plumping +plumpness +plumps +plums +plunder +plundered +plunderer +plunderers +plundering +plunders +plunge +plunged +plunger +plungers +plunges +plunging +plunk +plunked +plunking +plunks +pluperfect +pluperfects +plural +pluralism +pluralist +pluralistic +pluralists +pluralities +plurality +plurals +plus +pluses +plush +plusher +plushest +plushy +plusses +plutocracies +plutocracy +plutocrat +plutocratic +plutocrats +plutonium +ply +plying +plywood +pneumatic +pneumatically +pneumonia +poach +poached +poacher +poachers +poaches +poaching +pocked +pocket +pocketbook +pocketbooks +pocketed +pocketful +pocketfuls +pocketing +pocketknife +pocketknives +pockets +pockmark +pockmarked +pockmarks +pod +podgy +podiatrist +podiatrists +podiatry +podium +podiums +pods +poem +poems +poet +poetess +poetesses +poetic +poetical +poetically +poetry +poets +pogrom +pogroms +poignancy +poignant +poignantly +poinsettia +poinsettias +point +pointed +pointedly +pointer +pointers +pointier +pointiest +pointillism +pointillist +pointillists +pointing +pointless +pointlessly +pointlessness +points +pointy +poise +poised +poises +poising +poison +poisoned +poisoner +poisoners +poisoning +poisonous +poisons +poke +poked +poker +pokers +pokes +pokey +pokeys +pokier +pokiest +poking +poky +polar +polarisation +polarise +polarised +polarises +polarising +polarities +polarity +polarization +polarize +polarized +polarizes +polarizing +pole +poleaxe +poleaxed +poleaxes +poleaxing +polecat +polecats +polemic +polemical +polemicist +polemicists +polemics +poles +police +policed +policeman +policemen +polices +policewoman +policewomen +policies +policing +policy +policyholder +policyholders +policymaker +policymakers +polio +poliomyelitis +polish +polished +polishes +polishing +politburo +politburos +polite +politely +politeness +politer +politest +politic +political +politically +politician +politicians +politicisation +politicise +politicised +politicises +politicising +politicization +politicize +politicized +politicizes +politicizing +politicking +politico +politicos +politics +polities +polity +polka +polkas +poll +pollard +pollards +polled +pollen +pollinate +pollinated +pollinates +pollinating +pollination +polling +polls +pollster +pollsters +pollutant +pollutants +pollute +polluted +polluter +polluters +pollutes +polluting +pollution +polo +poltergeist +poltergeists +poly +polyandrous +polyandry +polyester +polyesters +polyethylene +polygamous +polygamy +polyglot +polyglots +polygon +polygonal +polygons +polygraph +polygraphs +polyhedron +polyhedrons +polymath +polymaths +polymer +polymers +polymorphic +polymorphous +polyp +polyphonic +polyphony +polypropylene +polyps +polys +polysemous +polystyrene +polysyllabic +polysyllable +polysyllables +polytechnic +polytechnics +polytheism +polytheistic +polythene +polyunsaturate +polyunsaturated +polyunsaturates +polyurethane +pom +pomander +pomanders +pomegranate +pomegranates +pommel +pommeled +pommeling +pommels +pommies +pommy +pomp +pompadour +pompadours +pompom +pompoms +pompon +pompons +pomposity +pompous +pompously +pompousness +poms +ponce +ponced +ponces +poncey +poncho +ponchos +poncing +poncy +pond +ponder +pondered +pondering +ponderous +ponderously +ponderousness +ponders +ponds +pone +pong +ponged +ponging +pongs +ponied +ponies +pontiff +pontiffs +pontifical +pontificate +pontificated +pontificates +pontificating +pontoon +pontoons +pony +ponying +ponytail +ponytails +poo +pooch +pooches +poodle +poodles +pooed +poof +poofs +poofter +poofters +pooh +poohed +poohing +poohs +pooing +pool +pooled +pooling +pools +poolside +poolsides +poop +pooped +pooping +poops +poor +poorer +poorest +poorhouse +poorhouses +poorly +poos +pop +popcorn +pope +popes +poplar +poplars +poplin +poppadom +poppadoms +poppadum +poppadums +popped +popper +poppers +poppet +poppets +poppies +popping +poppy +poppycock +pops +populace +popular +popularisation +popularise +popularised +popularises +popularising +popularity +popularization +popularize +popularized +popularizes +popularizing +popularly +populate +populated +populates +populating +population +populations +populism +populist +populists +populous +porcelain +porcelains +porch +porches +porcine +porcupine +porcupines +pore +pored +pores +poring +pork +porker +porkers +porkies +porky +porn +porno +pornographer +pornographers +pornographic +pornography +porosity +porous +porpoise +porpoises +porridge +port +portability +portable +portables +portal +portals +portcullis +portcullises +portend +portended +portending +portends +portent +portentous +portentously +portentousness +portents +porter +porterhouse +porterhouses +porters +portfolio +portfolios +porthole +portholes +portico +porticoes +porticos +portion +portioned +portioning +portions +portly +portmanteau +portmanteaus +portmanteaux +portrait +portraitist +portraitists +portraits +portraiture +portray +portrayal +portrayals +portrayed +portraying +portrays +ports +pose +posed +poser +posers +poses +poseur +poseurs +posh +posher +poshest +posies +posing +posit +posited +positing +position +positional +positioned +positioning +positions +positive +positively +positiveness +positives +positivism +positivist +positivists +positron +positrons +posits +poss +posse +posses +possess +possessed +possesses +possessing +possession +possessions +possessive +possessively +possessiveness +possessives +possessor +possessors +possibilities +possibility +possible +possibles +possibly +possum +possums +post +postage +postal +postbag +postbags +postbox +postboxes +postcard +postcards +postcode +postcodes +postdate +postdated +postdates +postdating +postdoctoral +posted +poster +posterior +posteriors +posterity +posters +postgraduate +postgraduates +posthaste +posthumous +posthumously +postie +posties +postindustrial +posting +postings +postman +postmark +postmarked +postmarking +postmarks +postmaster +postmasters +postmen +postmistress +postmistresses +postmodern +postmodernism +postmodernist +postmodernists +postmortem +postmortems +postnatal +postoperative +postpone +postponed +postponement +postponements +postpones +postponing +postprandial +posts +postscript +postscripts +postseason +postulate +postulated +postulates +postulating +postural +posture +postured +postures +posturing +postwar +postwoman +postwomen +posy +pot +potable +potash +potassium +potato +potatoes +potbellied +potbellies +potbelly +potboiler +potboilers +potency +potent +potentate +potentates +potential +potentialities +potentiality +potentially +potentials +potently +pothead +potheads +potholder +potholders +pothole +potholed +potholer +potholers +potholes +potholing +potion +potions +potluck +potlucks +potpourri +potpourris +pots +potted +potter +pottered +potteries +pottering +potters +pottery +potties +pottiness +potting +potty +pouch +pouches +pouf +pouffe +pouffes +poufs +poultice +poultices +poultry +pounce +pounced +pounces +pouncing +pound +poundage +pounded +pounding +poundings +pounds +pour +poured +pouring +pours +pout +pouted +pouting +pouts +poverty +pow +powder +powdered +powdering +powders +powdery +power +powerboat +powerboats +powered +powerful +powerfully +powerhouse +powerhouses +powering +powerless +powerlessness +powers +powwow +powwows +pox +poxy +practicability +practicable +practicably +practical +practicalities +practicality +practically +practicals +practice +practiced +practices +practicing +practise +practised +practises +practising +practitioner +practitioners +praesidium +praesidiums +pragmatic +pragmatically +pragmatics +pragmatism +pragmatist +pragmatists +prairie +prairies +praise +praised +praises +praiseworthy +praising +praline +pralines +pram +prams +prance +pranced +prances +prancing +prang +pranged +pranging +prangs +prank +pranks +prankster +pranksters +prat +prate +prated +prates +pratfall +pratfalls +prating +prats +prattle +prattled +prattler +prattlers +prattles +prattling +prawn +prawns +pray +prayed +prayer +prayers +praying +prays +preach +preached +preacher +preachers +preaches +preaching +preachy +preamble +preambles +prearrange +prearranged +prearranges +prearranging +precarious +precariously +precariousness +precast +precaution +precautionary +precautions +precede +preceded +precedence +precedent +precedents +precedes +preceding +precept +precepts +precinct +precincts +precious +preciously +preciousness +precipice +precipices +precipitate +precipitated +precipitately +precipitates +precipitating +precipitation +precipitations +precipitous +precipitously +precis +precise +precised +precisely +precises +precising +precision +preclude +precluded +precludes +precluding +preclusion +precocious +precociously +precociousness +precocity +precognition +preconceived +preconception +preconceptions +precondition +preconditions +precook +precooked +precooking +precooks +precursor +precursors +predate +predated +predates +predating +predator +predators +predatory +predecease +predeceased +predeceases +predeceasing +predecessor +predecessors +predestination +predestined +predetermination +predetermine +predetermined +predeterminer +predeterminers +predetermines +predetermining +predicament +predicaments +predicate +predicated +predicates +predicating +predicative +predicatively +predict +predictability +predictable +predictably +predicted +predicting +prediction +predictions +predictive +predictor +predictors +predicts +predigested +predilection +predilections +predispose +predisposed +predisposes +predisposing +predisposition +predispositions +predominance +predominant +predominantly +predominate +predominated +predominately +predominates +predominating +preemie +preemies +preeminent +preeminently +preempt +preempted +preempting +preemption +preemptive +preempts +preen +preened +preening +preens +prefab +prefabricated +prefabrication +prefabs +preface +prefaced +prefaces +prefacing +prefatory +prefect +prefects +prefecture +prefectures +prefer +preferable +preferably +preference +preferences +preferential +preferentially +preferment +preferred +preferring +prefers +prefigure +prefigured +prefigures +prefiguring +prefix +prefixed +prefixes +prefixing +pregnancies +pregnancy +pregnant +preheat +preheated +preheating +preheats +prehensile +prehistoric +prehistory +prejudge +prejudged +prejudges +prejudging +prejudgment +prejudgments +prejudice +prejudiced +prejudices +prejudicial +prejudicing +prelate +prelates +prelim +preliminaries +preliminary +prelims +preliterate +prelude +preludes +premarital +premature +prematurely +premeditated +premeditation +premenstrual +premier +premiere +premiered +premieres +premiering +premiers +premiership +premise +premised +premises +premiss +premisses +premium +premiums +premonition +premonitions +premonitory +prenatal +preoccupation +preoccupations +preoccupied +preoccupies +preoccupy +preoccupying +preordained +prep +prepackaged +prepacked +prepaid +preparation +preparations +preparatory +prepare +prepared +preparedness +prepares +preparing +preponderance +preponderant +preponderantly +preponderate +preponderated +preponderates +preponderating +preposition +prepositional +prepositions +prepossessing +preposterous +preposterously +prepped +preppie +preppies +prepping +preppy +preps +prepubescent +prequel +prequels +prerecord +prerecorded +prerecording +prerecords +preregister +preregistered +preregistering +preregisters +preregistration +prerequisite +prerequisites +prerogative +prerogatives +presage +presaged +presages +presaging +presbyteries +presbytery +preschool +preschooler +preschoolers +preschools +prescience +prescient +prescribe +prescribed +prescribes +prescribing +prescription +prescriptions +prescriptive +presence +presences +present +presentable +presentation +presentations +presented +presenter +presenters +presentiment +presentiments +presenting +presently +presents +preservation +preservationist +preservationists +preservative +preservatives +preserve +preserved +preserves +preserving +preset +presets +presetting +preside +presided +presidencies +presidency +president +presidential +presidents +presides +presiding +presidium +presidiums +press +pressed +presses +pressie +pressies +pressing +pressman +pressmen +pressure +pressured +pressures +pressuring +pressurisation +pressurise +pressurised +pressurises +pressurising +pressurization +pressurize +pressurized +pressurizes +pressurizing +prestige +prestigious +presto +presumably +presume +presumed +presumes +presuming +presumption +presumptions +presumptive +presumptuous +presumptuously +presumptuousness +presuppose +presupposed +presupposes +presupposing +presupposition +presuppositions +pretax +preteen +preteens +pretence +pretences +pretend +pretended +pretender +pretenders +pretending +pretends +pretense +pretenses +pretension +pretensions +pretentious +pretentiously +pretentiousness +preternatural +preternaturally +pretext +pretexts +prettier +prettiest +prettified +prettifies +prettify +prettifying +prettily +prettiness +pretty +pretzel +pretzels +prevail +prevailed +prevailing +prevails +prevalence +prevalent +prevaricate +prevaricated +prevaricates +prevaricating +prevarication +prevarications +prevent +preventable +preventative +prevented +preventing +prevention +preventive +prevents +preview +previewed +previewing +previews +previous +previously +prewar +prey +preyed +preying +preys +prezzie +prezzies +price +priced +priceless +prices +pricey +pricier +priciest +pricing +prick +pricked +pricking +prickle +prickled +prickles +prickling +prickly +pricks +pricy +pride +prided +prides +priding +pried +pries +priest +priestess +priestesses +priesthood +priestly +priests +prig +priggish +priggishness +prigs +prim +primacy +primaeval +primal +primaries +primarily +primary +primate +primates +prime +primed +primer +primers +primes +primeval +priming +primitive +primitiveness +primly +primogeniture +primordial +primp +primped +primping +primps +primrose +primroses +primula +primulas +prince +princely +princes +princess +princesses +principal +principalities +principality +principally +principals +principle +principled +principles +print +printable +printed +printer +printers +printing +printings +printmaking +printout +printouts +prints +prion +prions +prior +prioress +prioresses +priories +priorities +prioritisation +prioritise +prioritised +prioritises +prioritising +prioritization +prioritize +prioritized +prioritizes +prioritizing +priority +priors +priory +prise +prised +prises +prising +prism +prismatic +prisms +prison +prisoner +prisoners +prisons +prissier +prissiest +prissily +prissy +pristine +privacy +private +privateer +privateers +privately +privates +privation +privations +privatisation +privatisations +privatise +privatised +privatises +privatising +privatization +privatizations +privatize +privatized +privatizes +privatizing +privet +privies +privilege +privileged +privileges +privileging +privy +prize +prized +prizefight +prizefighter +prizefighters +prizefighting +prizefights +prizes +prizewinning +prizing +pro +proactive +proactively +probabilistic +probabilities +probability +probable +probably +probate +probated +probates +probating +probation +probationary +probationer +probationers +probe +probed +probes +probing +probings +probity +problem +problematic +problematical +problematically +problems +probosces +proboscis +proboscises +procedural +procedure +procedures +proceed +proceeded +proceeding +proceedings +proceeds +process +processed +processes +processing +procession +processional +processions +processor +processors +proclaim +proclaimed +proclaiming +proclaims +proclamation +proclamations +proclivities +proclivity +procrastinate +procrastinated +procrastinates +procrastinating +procrastination +procreate +procreated +procreates +procreating +procreation +proctor +proctored +proctoring +proctors +procurator +procurators +procure +procured +procurement +procurer +procurers +procures +procuring +prod +prodded +prodding +prodigal +prodigality +prodigally +prodigals +prodigies +prodigious +prodigiously +prodigy +prods +produce +produced +producer +producers +produces +producing +product +production +productions +productive +productively +productivity +products +prof +profanation +profane +profaned +profanes +profaning +profanities +profanity +profess +professed +professes +professing +profession +professional +professionalisation +professionalise +professionalised +professionalises +professionalising +professionalism +professionalization +professionalize +professionalized +professionalizes +professionalizing +professionally +professionals +professions +professor +professorial +professors +professorship +professorships +proffer +proffered +proffering +proffers +proficiency +proficient +profile +profiled +profiles +profiling +profit +profitability +profitable +profitably +profited +profiteer +profiteering +profiteers +profiterole +profiteroles +profiting +profits +profligacy +profligate +profound +profoundly +profs +profundities +profundity +profuse +profusely +profusion +progenitor +progenitors +progeny +progesterone +prognoses +prognosis +prognostication +prognostications +program +programmable +programmatic +programme +programmed +programmer +programmers +programmes +programming +programs +progress +progressed +progresses +progressing +progression +progressions +progressive +progressively +progressives +prohibit +prohibited +prohibiting +prohibition +prohibitions +prohibitive +prohibitively +prohibits +project +projected +projectile +projectiles +projecting +projection +projectionist +projectionists +projections +projector +projectors +projects +prolapse +prolapsed +prolapses +prole +proles +proletarian +proletarians +proletariat +proliferate +proliferated +proliferates +proliferating +proliferation +prolific +prolix +prolog +prologs +prologue +prologues +prolong +prolongation +prolongations +prolonged +prolonging +prolongs +prom +promenade +promenaded +promenades +promenading +prominence +prominent +prominently +promiscuity +promiscuous +promiscuously +promise +promised +promises +promising +promisingly +promo +promontories +promontory +promos +promote +promoted +promoter +promoters +promotes +promoting +promotion +promotional +promotions +prompt +prompted +prompter +prompters +prompting +promptings +promptly +prompts +proms +promulgate +promulgated +promulgates +promulgating +promulgation +prone +proneness +prong +prongs +pronominal +pronoun +pronounce +pronounceable +pronounced +pronouncement +pronouncements +pronounces +pronouncing +pronouns +pronto +pronunciation +pronunciations +proof +proofed +proofing +proofread +proofreader +proofreaders +proofreading +proofreads +proofs +prop +propaganda +propagandise +propagandised +propagandises +propagandising +propagandist +propagandists +propagandize +propagandized +propagandizes +propagandizing +propagate +propagated +propagates +propagating +propagation +propagator +propagators +propane +propel +propellant +propellants +propelled +propeller +propellers +propelling +propels +propensities +propensity +proper +properly +propertied +properties +property +prophecies +prophecy +prophesied +prophesies +prophesy +prophesying +prophet +prophetess +prophetesses +prophetic +prophetically +prophets +prophylactic +prophylactics +propinquity +propitiate +propitiated +propitiates +propitiating +propitiation +propitiatory +propitious +propitiously +proponent +proponents +proportion +proportional +proportionality +proportionally +proportionate +proportionately +proportioned +proportions +proposal +proposals +propose +proposed +proposer +proposers +proposes +proposing +proposition +propositioned +propositioning +propositions +propound +propounded +propounding +propounds +propped +propping +proprietary +proprieties +proprietor +proprietorial +proprietorially +proprietors +proprietress +proprietresses +propriety +props +propulsion +propulsive +pros +prosaic +prosaically +proscenium +prosceniums +prosciutto +proscribe +proscribed +proscribes +proscribing +proscription +proscriptions +prose +prosecute +prosecuted +prosecutes +prosecuting +prosecution +prosecutions +prosecutor +prosecutors +proselytise +proselytised +proselytiser +proselytisers +proselytises +proselytising +proselytize +proselytized +proselytizer +proselytizers +proselytizes +proselytizing +prosody +prospect +prospected +prospecting +prospective +prospector +prospectors +prospects +prospectus +prospectuses +prosper +prospered +prospering +prosperity +prosperous +prosperously +prospers +prostate +prostates +prostheses +prosthesis +prosthetic +prostitute +prostituted +prostitutes +prostituting +prostitution +prostrate +prostrated +prostrates +prostrating +prostration +prostrations +protagonist +protagonists +protean +protect +protected +protecting +protection +protectionism +protectionist +protectionists +protections +protective +protectively +protectiveness +protector +protectorate +protectorates +protectors +protects +protege +protegee +protegees +proteges +protein +proteins +protest +protestation +protestations +protested +protester +protesters +protesting +protestor +protestors +protests +protocol +protocols +proton +protons +protoplasm +prototype +prototypes +prototypical +protozoa +protozoan +protozoans +protozoon +protract +protracted +protracting +protraction +protractor +protractors +protracts +protrude +protruded +protrudes +protruding +protrusion +protrusions +protuberance +protuberances +protuberant +proud +prouder +proudest +proudly +prove +proved +proven +provenance +provenances +proverb +proverbial +proverbially +proverbs +proves +provide +provided +providence +provident +providential +providentially +providently +provider +providers +provides +providing +province +provinces +provincial +provincialism +provincially +provincials +proving +provision +provisional +provisionally +provisioned +provisioning +provisions +proviso +provisos +provocateur +provocateurs +provocation +provocations +provocative +provocatively +provoke +provoked +provokes +provoking +provost +provosts +prow +prowess +prowl +prowled +prowler +prowlers +prowling +prowls +prows +proxies +proximate +proximity +proxy +prude +prudence +prudent +prudently +prudery +prudes +prudish +prudishly +prudishness +prune +pruned +prunes +pruning +prurience +prurient +pruriently +pry +prying +psalm +psalms +psephologist +psephologists +psephology +pseud +pseudonym +pseudonymous +pseudonyms +pseuds +pseudy +psoriasis +psst +psych +psyche +psyched +psychedelia +psychedelic +psyches +psychiatric +psychiatrist +psychiatrists +psychiatry +psychic +psychical +psychically +psychics +psyching +psycho +psychoactive +psychoanalyse +psychoanalysed +psychoanalyses +psychoanalysing +psychoanalysis +psychoanalyst +psychoanalysts +psychoanalytic +psychoanalytically +psychoanalyze +psychoanalyzed +psychoanalyzes +psychoanalyzing +psychobabble +psychodrama +psychodramas +psychokinesis +psychokinetic +psychological +psychologically +psychologist +psychologists +psychology +psychometric +psychopath +psychopathic +psychopathology +psychopaths +psychos +psychoses +psychosis +psychosomatic +psychotherapist +psychotherapists +psychotherapy +psychotic +psychotics +psychotropic +psychs +pterodactyl +pterodactyls +pub +puberty +pubes +pubescent +pubic +public +publican +publicans +publication +publications +publicise +publicised +publicises +publicising +publicist +publicists +publicity +publicize +publicized +publicizes +publicizing +publicly +publish +published +publisher +publishers +publishes +publishing +pubs +puce +puck +pucker +puckered +puckering +puckers +puckish +pucks +pud +pudding +puddings +puddle +puddles +pudenda +pudgier +pudgiest +pudginess +pudgy +puds +puerile +puerility +puff +puffball +puffballs +puffed +puffer +puffers +puffier +puffiest +puffin +puffiness +puffing +puffins +puffs +puffy +pug +pugilism +pugilist +pugilistic +pugilists +pugnacious +pugnaciously +pugnacity +pugs +puke +puked +pukes +puking +pukka +pull +pulled +pullet +pullets +pulley +pulleys +pulling +pullover +pullovers +pulls +pulmonary +pulp +pulped +pulping +pulpit +pulpits +pulps +pulsar +pulsars +pulsate +pulsated +pulsates +pulsating +pulsation +pulsations +pulse +pulsed +pulses +pulsing +pulverisation +pulverise +pulverised +pulverises +pulverising +pulverization +pulverize +pulverized +pulverizes +pulverizing +puma +pumas +pumice +pummel +pummeled +pummeling +pummelled +pummelling +pummels +pump +pumped +pumpernickel +pumping +pumpkin +pumpkins +pumps +pun +punch +punchbag +punchbags +punched +punches +punchier +punchiest +punching +punchline +punchlines +punchy +punctilious +punctiliously +punctiliousness +punctual +punctuality +punctually +punctuate +punctuated +punctuates +punctuating +punctuation +puncture +punctured +punctures +puncturing +pundit +pundits +pungency +pungent +pungently +punier +puniest +punish +punishable +punished +punishes +punishing +punishingly +punishment +punishments +punitive +punitively +punk +punks +punned +punnet +punnets +punning +puns +punster +punsters +punt +punted +punter +punters +punting +punts +puny +pup +pupa +pupae +pupal +pupas +pupate +pupated +pupates +pupating +pupil +pupils +puppet +puppeteer +puppeteers +puppetry +puppets +puppies +puppy +pups +purchase +purchased +purchaser +purchasers +purchases +purchasing +purdah +pure +purebred +puree +pureed +pureeing +purees +purely +purer +purest +purgative +purgatives +purgatory +purge +purged +purges +purging +purification +purified +purifier +purifiers +purifies +purify +purifying +purism +purist +purists +puritan +puritanical +puritanically +puritanism +puritans +purity +purl +purled +purling +purloin +purloined +purloining +purloins +purls +purple +purples +purplish +purport +purported +purportedly +purporting +purports +purpose +purposeful +purposefully +purposefulness +purposeless +purposelessly +purposelessness +purposely +purposes +purr +purred +purring +purrs +purse +pursed +purser +pursers +purses +pursing +pursuance +pursuant +pursue +pursued +pursuer +pursuers +pursues +pursuing +pursuit +pursuits +purulent +purvey +purveyed +purveying +purveyor +purveyors +purveys +purview +pus +push +pushbike +pushbikes +pushcart +pushcarts +pushchair +pushchairs +pushed +pusher +pushers +pushes +pushier +pushiest +pushily +pushiness +pushing +pushover +pushovers +pushpin +pushpins +pushy +pusillanimity +pusillanimous +pusillanimously +puss +pusses +pussies +pussy +pussycat +pussycats +pussyfoot +pussyfooted +pussyfooting +pussyfoots +pustule +pustules +put +putative +putrefaction +putrefied +putrefies +putrefy +putrefying +putrid +puts +putsch +putsches +putt +putted +putter +puttered +puttering +putters +putting +putts +putty +putz +putzes +puzzle +puzzled +puzzlement +puzzler +puzzlers +puzzles +puzzling +pygmies +pygmy +pyjama +pyjamas +pylon +pylons +pyramid +pyramidal +pyramids +pyre +pyres +pyrites +pyromania +pyromaniac +pyromaniacs +pyrotechnic +pyrotechnics +python +pythons +pzazz +qua +quack +quacked +quackery +quacking +quacks +quad +quadrangle +quadrangles +quadrant +quadrants +quadraphonic +quadrilateral +quadrilaterals +quadrille +quadrilles +quadriplegic +quadriplegics +quadrophonic +quadruped +quadrupeds +quadruple +quadrupled +quadruples +quadruplet +quadruplets +quadrupling +quads +quaff +quaffed +quaffing +quaffs +quagmire +quagmires +quail +quailed +quailing +quails +quaint +quainter +quaintest +quaintly +quaintness +quake +quaked +quakes +quaking +qualification +qualifications +qualified +qualifier +qualifiers +qualifies +qualify +qualifying +qualitative +qualitatively +qualities +quality +qualm +qualms +quandaries +quandary +quango +quangos +quanta +quantifiable +quantification +quantified +quantifier +quantifiers +quantifies +quantify +quantifying +quantitative +quantitatively +quantities +quantity +quantum +quarantine +quarantined +quarantines +quarantining +quark +quarks +quarrel +quarreled +quarreling +quarrelled +quarrelling +quarrels +quarrelsome +quarried +quarries +quarry +quarrying +quart +quarter +quarterback +quarterbacked +quarterbacking +quarterbacks +quarterdeck +quarterdecks +quartered +quarterfinal +quarterfinals +quartering +quarterlies +quarterly +quartermaster +quartermasters +quarters +quartet +quartets +quarto +quartos +quarts +quartz +quasar +quasars +quash +quashed +quashes +quashing +quatrain +quatrains +quaver +quavered +quavering +quavers +quavery +quay +quays +quayside +quaysides +queasier +queasiest +queasily +queasiness +queasy +queen +queenly +queens +queer +queerer +queerest +queers +quell +quelled +quelling +quells +quench +quenched +quenches +quenching +queried +queries +querulous +querulously +query +querying +quest +quested +questing +question +questionable +questioned +questioner +questioners +questioning +questioningly +questionnaire +questionnaires +questions +quests +queue +queued +queueing +queues +queuing +quibble +quibbled +quibbles +quibbling +quiche +quiches +quick +quicken +quickened +quickening +quickens +quicker +quickest +quickfire +quickie +quickies +quicklime +quickly +quickness +quicksand +quicksands +quicksilver +quickstep +quicksteps +quid +quiescence +quiescent +quiet +quieted +quieten +quietened +quietening +quietens +quieter +quietest +quieting +quietism +quietly +quietness +quiets +quietude +quiff +quiffs +quill +quills +quilt +quilted +quilting +quilts +quin +quince +quinces +quinine +quins +quint +quintessence +quintessential +quintessentially +quintet +quintets +quints +quintuplet +quintuplets +quip +quipped +quipping +quips +quirk +quirkier +quirkiest +quirks +quirky +quisling +quislings +quit +quite +quits +quitted +quitter +quitters +quitting +quiver +quivered +quivering +quivers +quixotic +quiz +quizzed +quizzes +quizzical +quizzically +quizzing +quoit +quoits +quorate +quorum +quorums +quota +quotable +quotas +quotation +quotations +quote +quoted +quotes +quoth +quotidian +quotient +quotients +quoting +qwerty +rabbi +rabbinic +rabbinical +rabbis +rabbit +rabbited +rabbiting +rabbits +rabble +rabid +rabidly +rabies +raccoon +raccoons +race +racecourse +racecourses +raced +racegoer +racegoers +racehorse +racehorses +racer +racers +races +racetrack +racetracks +racial +racialism +racialist +racialists +racially +racier +raciest +racily +raciness +racing +racism +racist +racists +rack +racked +racket +racketeer +racketeering +racketeers +rackets +racking +racks +raconteur +raconteurs +racoon +racoons +racquet +racquets +racy +radar +radars +raddled +radial +radially +radials +radiance +radiant +radiantly +radiate +radiated +radiates +radiating +radiation +radiations +radiator +radiators +radical +radicalise +radicalised +radicalises +radicalising +radicalism +radicalize +radicalized +radicalizes +radicalizing +radically +radicals +radicchio +radii +radio +radioactive +radioactivity +radiocarbon +radioed +radiographer +radiographers +radiography +radioing +radiologist +radiologists +radiology +radios +radiotherapist +radiotherapists +radiotherapy +radish +radishes +radium +radius +radon +raffia +raffish +raffishness +raffle +raffled +raffles +raffling +raft +rafted +rafter +rafters +rafting +rafts +rag +raga +ragamuffin +ragamuffins +ragas +ragbag +rage +raged +rages +ragga +ragged +raggedly +raggedness +raggedy +ragging +raging +raglan +ragout +ragouts +rags +ragtag +ragtime +ragwort +raid +raided +raider +raiders +raiding +raids +rail +railcard +railcards +railed +railing +railings +raillery +railroad +railroaded +railroading +railroads +rails +railway +railwayman +railwaymen +railways +raiment +rain +rainbow +rainbows +raincoat +raincoats +raindrop +raindrops +rained +rainfall +rainfalls +rainforest +rainforests +rainier +rainiest +raining +rainproof +rains +rainstorm +rainstorms +rainwater +rainy +raise +raised +raises +raisin +raising +raisins +raja +rajah +rajahs +rajas +rake +raked +rakes +raking +rakish +rakishly +rakishness +rallied +rallies +rally +rallying +ram +ramble +rambled +rambler +ramblers +rambles +rambling +ramblings +rambunctious +ramekin +ramekins +ramification +ramifications +rammed +ramming +ramp +rampage +rampaged +rampages +rampaging +rampant +rampantly +rampart +ramparts +ramps +ramrod +ramrods +rams +ramshackle +ran +ranch +rancher +ranchers +ranches +ranching +rancid +rancor +rancorous +rancour +rand +randier +randiest +randiness +random +randomise +randomised +randomises +randomising +randomize +randomized +randomizes +randomizing +randomly +randomness +randy +ranee +ranees +rang +range +ranged +rangefinder +rangefinders +ranger +rangers +ranges +ranging +rani +ranis +rank +ranked +ranking +rankings +rankle +rankled +rankles +rankling +ranks +ransack +ransacked +ransacking +ransacks +ransom +ransomed +ransoming +ransoms +rant +ranted +ranting +rantings +rants +rap +rapacious +rapaciously +rapaciousness +rapacity +rape +raped +rapes +rapid +rapidity +rapidly +rapids +rapier +rapiers +raping +rapist +rapists +rapped +rappel +rappelled +rappelling +rappels +rapper +rappers +rapping +rapport +rapporteur +rapporteurs +rapprochement +raps +rapt +raptor +raptors +rapture +raptures +rapturous +rapturously +rare +rarefied +rarely +rarer +rarest +raring +rarities +rarity +rascal +rascally +rascals +rash +rasher +rashers +rashes +rashly +rashness +rasp +raspberries +raspberry +rasped +rasping +rasps +raspy +rat +ratatouille +ratbag +ratbags +ratchet +ratcheted +ratcheting +ratchets +rate +rated +ratepayer +ratepayers +rates +rather +ratification +ratified +ratifies +ratify +ratifying +rating +ratings +ratio +ration +rational +rationale +rationales +rationalisation +rationalisations +rationalise +rationalised +rationalises +rationalising +rationalism +rationalist +rationalistic +rationalists +rationality +rationalization +rationalizations +rationalize +rationalized +rationalizes +rationalizing +rationally +rationed +rationing +rations +ratios +rats +rattan +ratted +rattier +rattiest +ratting +rattle +rattled +rattler +rattlers +rattles +rattlesnake +rattlesnakes +rattling +ratty +raucous +raucously +raucousness +raunchier +raunchiest +raunchily +raunchiness +raunchy +ravage +ravaged +ravages +ravaging +rave +raved +ravel +raveled +raveling +ravelled +ravelling +ravels +raven +ravening +ravenous +ravenously +ravens +raver +ravers +raves +ravine +ravines +raving +ravings +ravioli +ravish +ravished +ravishes +ravishing +ravishingly +raw +rawhide +rawness +ray +rayon +rays +raze +razed +razes +razing +razor +razors +razz +razzamatazz +razzed +razzes +razzing +razzmatazz +re +reach +reached +reaches +reaching +react +reactant +reactants +reacted +reacting +reaction +reactionaries +reactionary +reactions +reactivate +reactivated +reactivates +reactivating +reactive +reactor +reactors +reacts +read +readability +readable +readdress +readdressed +readdresses +readdressing +reader +readers +readership +readerships +readied +readier +readies +readiest +readily +readiness +reading +readings +readjust +readjusted +readjusting +readjustment +readjustments +readjusts +reads +ready +readying +reaffirm +reaffirmation +reaffirmations +reaffirmed +reaffirming +reaffirms +reafforestation +reagent +reagents +real +realign +realigned +realigning +realignment +realignments +realigns +realisable +realisation +realisations +realise +realised +realises +realising +realism +realist +realistic +realistically +realists +realities +reality +realizable +realization +realizations +realize +realized +realizes +realizing +reallocate +reallocated +reallocates +reallocating +really +realm +realms +realpolitik +realtor +realtors +realty +ream +reamed +reaming +reams +reanimate +reanimated +reanimates +reanimating +reap +reaped +reaper +reapers +reaping +reappear +reappearance +reappearances +reappeared +reappearing +reappears +reappraisal +reappraisals +reappraise +reappraised +reappraises +reappraising +reaps +rear +reared +rearguard +rearing +rearm +rearmament +rearmed +rearming +rearmost +rearms +rearrange +rearranged +rearrangement +rearrangements +rearranges +rearranging +rears +rearward +reason +reasonable +reasonableness +reasonably +reasoned +reasoning +reasons +reassemble +reassembled +reassembles +reassembling +reassert +reasserted +reasserting +reasserts +reassess +reassessed +reassesses +reassessing +reassessment +reassessments +reassurance +reassurances +reassure +reassured +reassures +reassuring +reassuringly +reawaken +reawakened +reawakening +reawakens +rebate +rebates +rebel +rebelled +rebelling +rebellion +rebellions +rebellious +rebelliously +rebelliousness +rebels +rebirth +reboot +rebooted +rebooting +reboots +reborn +rebound +rebounded +rebounding +rebounds +rebuff +rebuffed +rebuffing +rebuffs +rebuild +rebuilding +rebuilds +rebuilt +rebuke +rebuked +rebukes +rebuking +rebut +rebuts +rebuttal +rebuttals +rebutted +rebutting +recalcitrance +recalcitrant +recall +recalled +recalling +recalls +recant +recantation +recantations +recanted +recanting +recants +recap +recapitalization +recapitalize +recapitalized +recapitalizes +recapitalizing +recapitulate +recapitulated +recapitulates +recapitulating +recapitulation +recapitulations +recapped +recapping +recaps +recapture +recaptured +recaptures +recapturing +recast +recasting +recasts +recce +recces +recede +receded +recedes +receding +receipt +receipts +receivable +receivables +receive +received +receiver +receivers +receivership +receives +receiving +recent +recently +receptacle +receptacles +reception +receptionist +receptionists +receptions +receptive +receptiveness +receptivity +receptor +receptors +recess +recessed +recesses +recessing +recession +recessionary +recessions +recessive +recharge +rechargeable +recharged +recharges +recharging +recherche +recidivism +recidivist +recidivists +recipe +recipes +recipient +recipients +reciprocal +reciprocally +reciprocate +reciprocated +reciprocates +reciprocating +reciprocation +reciprocity +recital +recitals +recitation +recitations +recitative +recitatives +recite +recited +recites +reciting +reckless +recklessly +recklessness +reckon +reckoned +reckoning +reckonings +reckons +reclaim +reclaimed +reclaiming +reclaims +reclamation +recline +reclined +recliner +recliners +reclines +reclining +recluse +recluses +reclusive +recognisable +recognisably +recognisance +recognise +recognised +recognises +recognising +recognition +recognizable +recognizably +recognizance +recognize +recognized +recognizes +recognizing +recoil +recoiled +recoiling +recoils +recollect +recollected +recollecting +recollection +recollections +recollects +recommence +recommenced +recommences +recommencing +recommend +recommendation +recommendations +recommended +recommending +recommends +recompense +recompensed +recompenses +recompensing +recon +reconcile +reconciled +reconciles +reconciliation +reconciliations +reconciling +recondite +recondition +reconditioned +reconditioning +reconditions +reconnaissance +reconnaissances +reconnoiter +reconnoitered +reconnoitering +reconnoiters +reconnoitre +reconnoitred +reconnoitres +reconnoitring +recons +reconsider +reconsideration +reconsidered +reconsidering +reconsiders +reconstitute +reconstituted +reconstitutes +reconstituting +reconstitution +reconstruct +reconstructed +reconstructing +reconstruction +reconstructions +reconstructive +reconstructs +reconvene +reconvened +reconvenes +reconvening +record +recorded +recorder +recorders +recording +recordings +records +recount +recounted +recounting +recounts +recoup +recouped +recouping +recoups +recourse +recover +recoverable +recovered +recoveries +recovering +recovers +recovery +recreate +recreated +recreates +recreating +recreation +recreational +recreations +recrimination +recriminations +recriminatory +recrudescence +recruit +recruited +recruiter +recruiters +recruiting +recruitment +recruits +rectal +rectangle +rectangles +rectangular +rectification +rectifications +rectified +rectifier +rectifiers +rectifies +rectify +rectifying +rectilinear +rectitude +recto +rector +rectories +rectors +rectory +rectos +rectum +rectums +recumbent +recuperate +recuperated +recuperates +recuperating +recuperation +recuperative +recur +recurred +recurrence +recurrences +recurrent +recurring +recurs +recyclable +recycle +recycled +recycles +recycling +red +redbrick +redcurrant +redcurrants +redden +reddened +reddening +reddens +redder +reddest +reddish +redecorate +redecorated +redecorates +redecorating +redecoration +redeem +redeemable +redeemed +redeeming +redeems +redefine +redefined +redefines +redefining +redefinition +redemption +redemptive +redeploy +redeployed +redeploying +redeployment +redeploys +redesign +redesigned +redesigning +redesigns +redevelop +redeveloped +redeveloping +redevelopment +redevelopments +redevelops +redhead +redheads +redid +redirect +redirected +redirecting +redirection +redirects +rediscover +rediscovered +rediscoveries +rediscovering +rediscovers +rediscovery +redistribute +redistributed +redistributes +redistributing +redistribution +redneck +rednecks +redness +redo +redoes +redoing +redolence +redolent +redone +redouble +redoubled +redoubles +redoubling +redoubt +redoubtable +redoubts +redound +redounded +redounding +redounds +redraft +redrafted +redrafting +redrafts +redraw +redrawing +redrawn +redraws +redress +redressed +redresses +redressing +redrew +reds +redskin +redskins +reduce +reduced +reduces +reducible +reducing +reduction +reductionist +reductions +reductive +redundancies +redundancy +redundant +redwood +redwoods +reed +reeds +reedy +reef +reefed +reefer +reefers +reefing +reefs +reek +reeked +reeking +reeks +reel +reelect +reelected +reelecting +reelects +reeled +reeling +reels +ref +refectories +refectory +refer +referable +referee +refereed +refereeing +referees +reference +referenced +references +referencing +referenda +referendum +referendums +referral +referrals +referred +referring +refers +refill +refillable +refilled +refilling +refills +refinance +refinanced +refinances +refinancing +refine +refined +refinement +refinements +refiner +refineries +refiners +refinery +refines +refining +refit +refits +refitted +refitting +reflate +reflated +reflates +reflating +reflation +reflationary +reflations +reflect +reflected +reflecting +reflection +reflections +reflective +reflectively +reflector +reflectors +reflects +reflex +reflexes +reflexive +reflexively +reflexology +reforest +reforestation +reforested +reforesting +reforests +reform +reformation +reformations +reformatories +reformatory +reformed +reformer +reformers +reforming +reformist +reformists +reforms +refract +refracted +refracting +refraction +refractory +refracts +refrain +refrained +refraining +refrains +refresh +refreshed +refresher +refreshers +refreshes +refreshing +refreshingly +refreshment +refreshments +refrigerate +refrigerated +refrigerates +refrigerating +refrigeration +refrigerator +refrigerators +refs +refuel +refueled +refueling +refuelled +refuelling +refuels +refuge +refugee +refugees +refuges +refund +refundable +refunded +refunding +refunds +refurbish +refurbished +refurbishes +refurbishing +refurbishment +refurbishments +refusal +refusals +refuse +refused +refuses +refusing +refutable +refutation +refutations +refute +refuted +refutes +refuting +regain +regained +regaining +regains +regal +regale +regaled +regales +regalia +regaling +regally +regard +regarded +regarding +regardless +regards +regatta +regattas +regencies +regency +regenerate +regenerated +regenerates +regenerating +regeneration +regenerative +regent +regents +reggae +regicide +regicides +regime +regimen +regimens +regiment +regimental +regimentation +regimented +regiments +regimes +region +regional +regionalism +regionally +regions +register +registered +registering +registers +registrar +registrars +registration +registrations +registries +registry +regress +regressed +regresses +regressing +regression +regressions +regressive +regret +regretful +regretfully +regrets +regrettable +regrettably +regretted +regretting +regroup +regrouped +regrouping +regroups +regular +regularisation +regularise +regularised +regularises +regularising +regularities +regularity +regularization +regularize +regularized +regularizes +regularizing +regularly +regulars +regulate +regulated +regulates +regulating +regulation +regulations +regulator +regulators +regulatory +regurgitate +regurgitated +regurgitates +regurgitating +regurgitation +rehab +rehabilitate +rehabilitated +rehabilitates +rehabilitating +rehabilitation +rehash +rehashed +rehashes +rehashing +rehearsal +rehearsals +rehearse +rehearsed +rehearses +rehearsing +reheat +reheated +reheating +reheats +rehouse +rehoused +rehouses +rehousing +reign +reigned +reigning +reigns +reimburse +reimbursed +reimbursement +reimbursements +reimburses +reimbursing +rein +reincarnate +reincarnated +reincarnates +reincarnating +reincarnation +reincarnations +reindeer +reined +reinforce +reinforced +reinforcement +reinforcements +reinforces +reinforcing +reining +reins +reinstate +reinstated +reinstatement +reinstates +reinstating +reinsurance +reinterpret +reinterpretation +reinterpretations +reinterpreted +reinterpreting +reinterprets +reinvent +reinvented +reinventing +reinvents +reissue +reissued +reissues +reissuing +reiterate +reiterated +reiterates +reiterating +reiteration +reiterations +reject +rejected +rejecting +rejection +rejections +rejects +rejig +rejigged +rejigger +rejiggered +rejiggering +rejiggers +rejigging +rejigs +rejoice +rejoiced +rejoices +rejoicing +rejoicings +rejoin +rejoinder +rejoinders +rejoined +rejoining +rejoins +rejuvenate +rejuvenated +rejuvenates +rejuvenating +rejuvenation +rekindle +rekindled +rekindles +rekindling +relapse +relapsed +relapses +relapsing +relate +related +relatedness +relates +relating +relation +relational +relations +relationship +relationships +relative +relatively +relatives +relativism +relativist +relativists +relativity +relaunch +relaunched +relaunches +relaunching +relax +relaxation +relaxations +relaxed +relaxes +relaxing +relay +relayed +relaying +relays +release +released +releases +releasing +relegate +relegated +relegates +relegating +relegation +relent +relented +relenting +relentless +relentlessly +relents +relevance +relevancy +relevant +relevantly +reliability +reliable +reliably +reliance +reliant +relic +relics +relied +relief +reliefs +relies +relieve +relieved +relieves +relieving +religion +religions +religiosity +religious +religiously +relinquish +relinquished +relinquishes +relinquishing +reliquaries +reliquary +relish +relished +relishes +relishing +relive +relived +relives +reliving +reload +reloaded +reloading +reloads +relocate +relocated +relocates +relocating +relocation +reluctance +reluctant +reluctantly +rely +relying +remade +remain +remainder +remaindered +remaindering +remainders +remained +remaining +remains +remake +remakes +remaking +remand +remanded +remanding +remands +remark +remarkable +remarkably +remarked +remarking +remarks +remarriage +remarriages +remarried +remarries +remarry +remarrying +remaster +remastered +remastering +remasters +rematch +rematches +remediable +remedial +remedied +remedies +remedy +remedying +remember +remembered +remembering +remembers +remembrance +remembrances +remind +reminded +reminder +reminders +reminding +reminds +reminisce +reminisced +reminiscence +reminiscences +reminiscent +reminiscently +reminisces +reminiscing +remiss +remission +remissions +remit +remits +remittance +remittances +remitted +remitting +remix +remixed +remixes +remixing +remnant +remnants +remodel +remodeled +remodeling +remodelled +remodelling +remodels +remold +remolded +remolding +remolds +remonstrance +remonstrances +remonstrate +remonstrated +remonstrates +remonstrating +remorse +remorseful +remorsefully +remorseless +remorselessly +remortgage +remortgaged +remortgages +remortgaging +remote +remotely +remoteness +remoter +remotes +remotest +remould +remoulded +remoulding +remoulds +remount +remounted +remounting +remounts +removable +removal +removals +remove +removed +remover +removers +removes +removing +remunerate +remunerated +remunerates +remunerating +remuneration +remunerations +remunerative +renaissance +renaissances +renal +rename +renamed +renames +renaming +rend +render +rendered +rendering +renderings +renders +rendezvous +rendezvoused +rendezvouses +rendezvousing +rending +rendition +renditions +rends +renegade +renegades +renege +reneged +reneges +reneging +renew +renewable +renewal +renewals +renewed +renewing +renews +rennet +renounce +renounced +renounces +renouncing +renovate +renovated +renovates +renovating +renovation +renovations +renown +renowned +rent +rental +rentals +rented +renting +rents +renunciation +renunciations +reopen +reopened +reopening +reopens +reorder +reordered +reordering +reorders +reorganisation +reorganisations +reorganise +reorganised +reorganises +reorganising +reorganization +reorganizations +reorganize +reorganized +reorganizes +reorganizing +rep +repaid +repair +repairable +repaired +repairer +repairers +repairing +repairman +repairmen +repairs +reparation +reparations +repartee +repast +repasts +repatriate +repatriated +repatriates +repatriating +repatriation +repatriations +repay +repayable +repaying +repayment +repayments +repays +repeal +repealed +repealing +repeals +repeat +repeated +repeatedly +repeater +repeaters +repeating +repeats +repel +repellant +repellants +repelled +repellent +repellents +repelling +repels +repent +repentance +repentant +repented +repenting +repents +repercussion +repercussions +repertoire +repertoires +repertories +repertory +repetition +repetitions +repetitious +repetitive +repetitively +rephrase +rephrased +rephrases +rephrasing +replace +replaceable +replaced +replacement +replacements +replaces +replacing +replay +replayed +replaying +replays +replenish +replenished +replenishes +replenishing +replenishment +replete +replica +replicas +replicate +replicated +replicates +replicating +replication +replications +replied +replies +reply +replying +report +reportage +reported +reportedly +reporter +reporters +reporting +reports +repose +reposed +reposes +reposing +repositories +repository +repossess +repossessed +repossesses +repossessing +repossession +repossessions +reprehensible +represent +representation +representational +representations +representative +representatives +represented +representing +represents +repress +repressed +represses +repressing +repression +repressions +repressive +repressively +repressiveness +reprieve +reprieved +reprieves +reprieving +reprimand +reprimanded +reprimanding +reprimands +reprint +reprinted +reprinting +reprints +reprisal +reprisals +reprise +reprises +reproach +reproached +reproaches +reproachful +reproachfully +reproaching +reprobate +reprobates +reprocess +reprocessed +reprocesses +reprocessing +reproduce +reproduced +reproduces +reproducible +reproducing +reproduction +reproductions +reproductive +reproof +reproofs +reprove +reproved +reproves +reproving +reprovingly +reps +reptile +reptiles +reptilian +republic +republican +republicanism +republicans +republics +repudiate +repudiated +repudiates +repudiating +repudiation +repugnance +repugnant +repulse +repulsed +repulses +repulsing +repulsion +repulsive +repulsively +reputable +reputably +reputation +reputations +repute +reputed +reputedly +request +requested +requesting +requests +requiem +requiems +require +required +requirement +requirements +requires +requiring +requisite +requisites +requisition +requisitioned +requisitioning +requisitions +requite +requited +requites +requiting +reran +reroute +rerouted +reroutes +rerouting +rerun +rerunning +reruns +resat +reschedule +rescheduled +reschedules +rescheduling +rescind +rescinded +rescinding +rescinds +rescue +rescued +rescuer +rescuers +rescues +rescuing +research +researched +researcher +researchers +researches +researching +resell +reselling +resells +resemblance +resemblances +resemble +resembled +resembles +resembling +resent +resented +resentful +resentfully +resentfulness +resenting +resentment +resentments +resents +reservation +reservations +reserve +reserved +reserves +reserving +reservist +reservists +reservoir +reservoirs +reset +resets +resetting +resettle +resettled +resettlement +resettles +resettling +reshape +reshaped +reshapes +reshaping +reshuffle +reshuffled +reshuffles +reshuffling +reside +resided +residence +residences +residencies +residency +resident +residential +residents +resides +residing +residual +residue +residues +resign +resignation +resignations +resigned +resignedly +resigning +resigns +resilience +resiliency +resilient +resiliently +resin +resinous +resins +resist +resistance +resistances +resistant +resisted +resisting +resistor +resistors +resists +resit +resits +resitting +resold +resolute +resolutely +resoluteness +resolution +resolutions +resolve +resolved +resolves +resolving +resonance +resonances +resonant +resonantly +resonate +resonated +resonates +resonating +resonator +resonators +resort +resorted +resorting +resorts +resound +resounded +resounding +resoundingly +resounds +resource +resourced +resourceful +resourcefully +resourcefulness +resources +resourcing +respect +respectability +respectable +respectably +respected +respecter +respecters +respectful +respectfully +respecting +respective +respectively +respects +respiration +respirator +respirators +respiratory +respire +respired +respires +respiring +respite +resplendence +resplendent +resplendently +respond +responded +respondent +respondents +responding +responds +response +responses +responsibilities +responsibility +responsible +responsibly +responsive +responsively +responsiveness +rest +restart +restarted +restarting +restarts +restate +restated +restatement +restatements +restates +restating +restaurant +restaurants +restaurateur +restaurateurs +rested +restful +restfully +resting +restitution +restive +restively +restiveness +restless +restlessly +restlessness +restock +restocked +restocking +restocks +restoration +restorations +restorative +restoratives +restore +restored +restorer +restorers +restores +restoring +restrain +restrained +restraining +restrains +restraint +restraints +restrict +restricted +restricting +restriction +restrictions +restrictive +restricts +restroom +restrooms +restructure +restructured +restructures +restructuring +restructurings +rests +result +resultant +resulted +resulting +results +resume +resumed +resumes +resuming +resumption +resurface +resurfaced +resurfaces +resurfacing +resurgence +resurgent +resurrect +resurrected +resurrecting +resurrection +resurrects +resuscitate +resuscitated +resuscitates +resuscitating +resuscitation +retail +retailed +retailer +retailers +retailing +retails +retain +retained +retainer +retainers +retaining +retains +retake +retaken +retakes +retaking +retaliate +retaliated +retaliates +retaliating +retaliation +retaliatory +retard +retardation +retarded +retarding +retards +retch +retched +retches +retching +retell +retelling +retells +retention +retentive +rethink +rethinking +rethinks +rethought +reticence +reticent +reticently +reticulated +reticulation +reticulations +retina +retinae +retinal +retinas +retinue +retinues +retire +retired +retiree +retirees +retirement +retirements +retires +retiring +retold +retook +retool +retooled +retooling +retools +retort +retorted +retorting +retorts +retouch +retouched +retouches +retouching +retrace +retraced +retraces +retracing +retract +retractable +retracted +retracting +retraction +retractions +retracts +retrain +retrained +retraining +retrains +retread +retreaded +retreading +retreads +retreat +retreated +retreating +retreats +retrench +retrenched +retrenches +retrenching +retrenchment +retrenchments +retrial +retrials +retribution +retributive +retried +retries +retrievable +retrieval +retrieve +retrieved +retriever +retrievers +retrieves +retrieving +retro +retroactive +retroactively +retrofit +retrofits +retrofitted +retrofitting +retrograde +retrogress +retrogressed +retrogresses +retrogressing +retrogression +retrogressive +retrospection +retrospective +retrospectively +retrospectives +retry +retrying +retsina +return +returnable +returned +returnee +returnees +returner +returners +returning +returns +reunification +reunified +reunifies +reunify +reunifying +reunion +reunions +reunite +reunited +reunites +reuniting +reusable +reuse +reused +reuses +reusing +rev +revaluation +revaluations +revalue +revalued +revalues +revaluing +revamp +revamped +revamping +revamps +reveal +revealed +revealing +revealingly +reveals +reveille +revel +revelation +revelations +reveled +reveler +revelers +reveling +revelled +reveller +revellers +revelling +revelries +revelry +revels +revenge +revenged +revenges +revenging +revenue +revenues +reverberate +reverberated +reverberates +reverberating +reverberation +reverberations +revere +revered +reverence +reverend +reverent +reverential +reverentially +reverently +reveres +reverie +reveries +revering +reversal +reversals +reverse +reversed +reverses +reversibility +reversible +reversing +reversion +reversions +revert +reverted +reverting +reverts +review +reviewed +reviewer +reviewers +reviewing +reviews +revile +reviled +reviles +reviling +revise +revised +revises +revising +revision +revisionism +revisionist +revisionists +revisions +revisit +revisited +revisiting +revisits +revitalise +revitalised +revitalises +revitalising +revitalize +revitalized +revitalizes +revitalizing +revival +revivalism +revivalist +revivalists +revivals +revive +revived +revives +revivified +revivifies +revivify +revivifying +reviving +revocation +revocations +revoke +revoked +revokes +revoking +revolt +revolted +revolting +revoltingly +revolts +revolution +revolutionaries +revolutionary +revolutionise +revolutionised +revolutionises +revolutionising +revolutionize +revolutionized +revolutionizes +revolutionizing +revolutions +revolve +revolved +revolver +revolvers +revolves +revolving +revs +revue +revues +revulsion +revved +revving +reward +rewarded +rewarding +rewards +rewind +rewinding +rewinds +rewire +rewired +rewires +rewiring +reword +reworded +rewording +rewords +rework +reworked +reworking +reworkings +reworks +rewound +rewrite +rewrites +rewriting +rewritten +rewrote +rhapsodic +rhapsodies +rhapsodise +rhapsodised +rhapsodises +rhapsodising +rhapsodize +rhapsodized +rhapsodizes +rhapsodizing +rhapsody +rheostat +rheostats +rhetoric +rhetorical +rhetorically +rhetorician +rhetoricians +rheumatic +rheumatism +rheumy +rhinestone +rhinestones +rhino +rhinoceros +rhinoceroses +rhinos +rhizome +rhizomes +rhododendron +rhododendrons +rhombus +rhombuses +rhubarb +rhubarbs +rhyme +rhymed +rhymes +rhyming +rhythm +rhythmic +rhythmical +rhythmically +rhythms +rib +ribald +ribaldry +ribbed +ribbing +ribbon +ribbons +riboflavin +ribs +rice +rich +richer +riches +richest +richly +richness +rick +ricked +rickets +rickety +ricking +ricks +rickshaw +rickshaws +ricochet +ricocheted +ricocheting +ricochets +rid +ridded +ridden +ridding +riddle +riddled +riddles +riddling +ride +rider +riders +rides +ridge +ridged +ridges +ridging +ridicule +ridiculed +ridicules +ridiculing +ridiculous +ridiculously +ridiculousness +riding +rids +rife +riff +riffle +riffled +riffles +riffling +riffs +rifle +rifled +rifleman +riflemen +rifles +rifling +rift +rifts +rig +rigged +rigging +right +righted +righteous +righteously +righteousness +rightful +rightfully +righting +rightist +rightists +rightly +rightness +righto +rights +rightward +rightwards +rigid +rigidity +rigidly +rigmarole +rigor +rigorous +rigorously +rigors +rigour +rigours +rigs +rile +riled +riles +riling +rim +rimless +rimmed +rimming +rims +rind +rinds +ring +ringed +ringer +ringers +ringing +ringleader +ringleaders +ringlet +ringlets +ringmaster +ringmasters +rings +ringside +ringworm +rink +rinks +rinse +rinsed +rinses +rinsing +riot +rioted +rioter +rioters +rioting +riotous +riotously +riotousness +riots +rip +ripcord +ripcords +ripe +ripen +ripened +ripeness +ripening +ripens +riper +ripest +riposte +riposted +ripostes +riposting +ripped +ripping +ripple +rippled +ripples +rippling +rips +rise +risen +riser +risers +rises +risible +rising +risings +risk +risked +riskier +riskiest +riskily +riskiness +risking +risks +risky +risotto +risottos +risque +rissole +rissoles +rite +rites +ritual +ritualised +ritualistic +ritualistically +ritualized +ritually +rituals +ritzier +ritziest +ritzy +rival +rivaled +rivaling +rivalled +rivalling +rivalries +rivalry +rivals +riven +river +riverfront +rivers +riverside +rivet +riveted +riveting +rivets +riviera +rivieras +rivulet +rivulets +roach +roaches +road +roadblock +roadblocks +roadhouse +roadhouses +roadie +roadies +roadrunner +roadrunners +roads +roadshow +roadshows +roadside +roadsides +roadster +roadsters +roadway +roadways +roadwork +roadworks +roadworthy +roam +roamed +roaming +roams +roan +roans +roar +roared +roaring +roars +roast +roasted +roasting +roasts +rob +robbed +robber +robberies +robbers +robbery +robbing +robe +robed +robes +robin +robing +robins +robot +robotic +robotics +robots +robs +robust +robustly +robustness +rock +rockabilly +rocked +rocker +rockeries +rockers +rockery +rocket +rocketed +rocketing +rockets +rockfall +rockfalls +rockier +rockiest +rocking +rocks +rocky +rococo +rod +rode +rodent +rodents +rodeo +rodeos +rods +roe +roentgen +roentgens +roes +roger +rogered +rogering +rogers +rogue +rogues +roguish +roguishly +roguishness +roil +roiled +roiling +roils +roistering +role +roles +roll +rollback +rollbacks +rolled +roller +rollerblading +rollers +rollicking +rolling +rollmop +rollmops +rollover +rollovers +rolls +romaine +romaines +roman +romance +romanced +romances +romancing +romantic +romantically +romanticise +romanticised +romanticises +romanticising +romanticism +romanticize +romanticized +romanticizes +romanticizing +romantics +romp +romped +rompers +romping +romps +rondo +rondos +rontgen +rontgens +roof +roofed +roofer +roofers +roofing +roofless +roofs +rooftop +rooftops +rook +rooked +rookeries +rookery +rookie +rookies +rooking +rooks +room +roomed +roomer +roomers +roomful +roomfuls +roomier +roomiest +roominess +rooming +roommate +roommates +rooms +roomy +roost +roosted +rooster +roosters +roosting +roosts +root +rooted +rooting +rootless +rootlessness +roots +rope +roped +ropes +ropey +ropier +ropiest +roping +ropy +rosaries +rosary +rose +roseate +rosebud +rosebuds +rosemary +roses +rosette +rosettes +rosewater +rosewood +rosier +rosiest +rosin +rosined +rosining +rosins +roster +rosters +rostra +rostrum +rostrums +rosy +rot +rota +rotaries +rotary +rotas +rotate +rotated +rotates +rotating +rotation +rotations +rote +rotisserie +rotisseries +rotor +rotors +rots +rotted +rotten +rotter +rotters +rotting +rottweiler +rottweilers +rotund +rotunda +rotundas +rotundity +rouble +roubles +rouge +rouged +rouges +rough +roughage +roughcast +roughed +roughen +roughened +roughening +roughens +rougher +roughest +roughhouse +roughhoused +roughhouses +roughhousing +roughing +roughly +roughneck +roughnecks +roughness +roughs +rouging +roulette +round +roundabout +roundabouts +rounded +roundel +roundels +rounder +rounders +roundest +rounding +roundly +rounds +roundup +roundups +roundworm +roundworms +rouse +roused +rouses +rousing +roust +roustabout +roustabouts +rousted +rousting +rousts +rout +route +routed +routes +routine +routinely +routines +routing +routs +roux +rove +roved +rover +rovers +roves +roving +row +rowan +rowans +rowboat +rowboats +rowdier +rowdies +rowdiest +rowdily +rowdiness +rowdy +rowdyism +rowed +rower +rowers +rowing +rowlock +rowlocks +rows +royal +royalist +royalists +royally +royals +royalties +royalty +rub +rubbed +rubber +rubberneck +rubbernecked +rubbernecker +rubberneckers +rubbernecking +rubbernecks +rubbers +rubbery +rubbing +rubbings +rubbish +rubbished +rubbishes +rubbishing +rubbishy +rubble +rube +rubella +rubes +rubicund +rubies +ruble +rubles +rubric +rubrics +rubs +ruby +ruched +ruck +rucked +rucking +rucks +rucksack +rucksacks +ruckus +ructions +rudder +rudderless +rudders +ruddier +ruddiest +ruddy +rude +rudely +rudeness +ruder +rudest +rudimentary +rudiments +rue +rued +rueful +ruefully +rues +ruff +ruffian +ruffians +ruffle +ruffled +ruffles +ruffling +ruffs +rug +rugby +rugged +ruggedly +ruggedness +rugger +rugs +ruin +ruination +ruined +ruing +ruining +ruinous +ruinously +ruins +rule +ruled +ruler +rulers +rules +ruling +rulings +rum +rumba +rumbas +rumble +rumbled +rumbles +rumbling +rumblings +rumbustious +ruminant +ruminants +ruminate +ruminated +ruminates +ruminating +rumination +ruminations +ruminative +ruminatively +rummage +rummaged +rummages +rummaging +rummy +rumor +rumored +rumormonger +rumormongers +rumors +rumour +rumoured +rumours +rump +rumple +rumpled +rumples +rumpling +rumps +rumpus +rumpuses +rums +run +runabout +runabouts +runaway +runaways +rundown +rundowns +rune +runes +rung +rungs +runic +runner +runners +runnier +runniest +running +runny +runs +runt +runts +runway +runways +rupee +rupees +rupture +ruptured +ruptures +rupturing +rural +ruse +ruses +rush +rushed +rushes +rushing +rusk +rusks +russet +rust +rusted +rustic +rusticity +rustics +rustier +rustiest +rustiness +rusting +rustle +rustled +rustler +rustlers +rustles +rustling +rustlings +rustproof +rusts +rusty +rut +rutabaga +rutabagas +ruthless +ruthlessly +ruthlessness +ruts +rutted +rutting +rye +sabbatical +sabbaticals +saber +sabers +sable +sables +sabotage +sabotaged +sabotages +sabotaging +saboteur +saboteurs +sabre +sabres +sac +saccharin +saccharine +sachet +sachets +sack +sackcloth +sacked +sackful +sackfuls +sacking +sackings +sacks +sacrament +sacramental +sacraments +sacred +sacredness +sacrifice +sacrificed +sacrifices +sacrificial +sacrificially +sacrificing +sacrilege +sacrileges +sacrilegious +sacrilegiously +sacristan +sacristans +sacristies +sacristy +sacrosanct +sacs +sad +sadden +saddened +saddening +saddens +sadder +saddest +saddle +saddlebag +saddlebags +saddled +saddler +saddlers +saddlery +saddles +saddling +sadhu +sadhus +sadism +sadist +sadistic +sadistically +sadists +sadly +sadness +sadomasochism +sadomasochist +sadomasochistic +sadomasochists +safari +safaris +safe +safeguard +safeguarded +safeguarding +safeguards +safely +safer +safes +safest +safeties +safety +safflower +safflowers +saffron +sag +saga +sagacious +sagaciously +sagacity +sagas +sage +sagely +sages +sagged +sagging +saggy +sago +sags +sahib +sahibs +said +sail +sailboard +sailboards +sailboat +sailboats +sailed +sailing +sailings +sailor +sailors +sails +saint +sainted +sainthood +saintliness +saintly +saints +saith +sake +saki +salaam +salaamed +salaaming +salaams +salable +salacious +salaciously +salaciousness +salad +salads +salamander +salamanders +salami +salamis +salaried +salaries +salary +sale +saleable +saleroom +salerooms +sales +salesclerk +salesclerks +salesgirl +salesgirls +salesman +salesmanship +salesmen +salespeople +salesperson +salesroom +salesrooms +saleswoman +saleswomen +salience +salient +saline +salinity +saliva +salivary +salivate +salivated +salivates +salivating +salivation +sallied +sallies +sallow +sallowness +sally +sallying +salmon +salmonella +salon +salons +saloon +saloons +salsa +salsas +salt +saltbox +saltboxes +salted +saltier +saltiest +saltiness +salting +saltpeter +saltpetre +salts +saltwater +salty +salubrious +salutary +salutation +salutations +salute +saluted +salutes +saluting +salvage +salvaged +salvages +salvaging +salvation +salve +salved +salver +salvers +salves +salving +salvo +salvoes +salvos +samba +sambas +same +sameness +samey +samosa +samosas +samovar +samovars +sampan +sampans +sample +sampled +sampler +samplers +samples +sampling +samurai +sanatoria +sanatorium +sanatoriums +sanctification +sanctified +sanctifies +sanctify +sanctifying +sanctimonious +sanctimoniously +sanctimoniousness +sanction +sanctioned +sanctioning +sanctions +sanctity +sanctuaries +sanctuary +sanctum +sanctums +sand +sandal +sandals +sandalwood +sandbag +sandbagged +sandbagging +sandbags +sandbank +sandbanks +sandbar +sandbars +sandblast +sandblasted +sandblasting +sandblasts +sandbox +sandboxes +sandcastle +sandcastles +sanded +sander +sanders +sandier +sandiest +sanding +sandman +sandpaper +sandpapered +sandpapering +sandpapers +sandpiper +sandpipers +sandpit +sandpits +sands +sandstone +sandstorm +sandstorms +sandwich +sandwiched +sandwiches +sandwiching +sandy +sane +saner +sanest +sang +sangfroid +sangria +sanguine +sanitaria +sanitarium +sanitariums +sanitary +sanitation +sanitise +sanitised +sanitises +sanitising +sanitize +sanitized +sanitizes +sanitizing +sanity +sank +sap +sapling +saplings +sapped +sapper +sappers +sapphire +sapphires +sappier +sappiest +sapping +sappy +saps +sarcasm +sarcastic +sarcastically +sarcoma +sarcomas +sarcophagi +sarcophagus +sarcophaguses +sardine +sardines +sardonic +sardonically +saree +sarees +sarge +sarges +sari +saris +sarky +sarnie +sarnies +sarong +sarongs +sarsaparilla +sartorial +sartorially +sash +sashay +sashayed +sashaying +sashays +sashes +sass +sassed +sasses +sassier +sassiest +sassing +sassy +sat +satanic +satanism +satanist +satanists +satay +satchel +satchels +sated +satellite +satellites +satiate +satiated +satiates +satiating +satin +satinwood +satiny +satire +satires +satiric +satirical +satirically +satirise +satirised +satirises +satirising +satirist +satirists +satirize +satirized +satirizes +satirizing +satisfaction +satisfactions +satisfactorily +satisfactory +satisfied +satisfies +satisfy +satisfying +satisfyingly +satsuma +satsumas +saturate +saturated +saturates +saturating +saturation +saturnine +satyr +satyrs +sauce +saucepan +saucepans +saucer +saucers +sauces +saucier +sauciest +saucily +saucy +sauerkraut +sauna +saunas +saunter +sauntered +sauntering +saunters +sausage +sausages +saute +sauted +sauteed +sauteing +sautes +savage +savaged +savagely +savageries +savagery +savages +savaging +savanna +savannah +savannahs +savannas +save +saved +saver +savers +saves +saving +savings +savior +saviors +saviour +saviours +savor +savored +savories +savoring +savors +savory +savour +savoured +savouries +savouring +savours +savoury +savoy +savoys +savvy +saw +sawdust +sawed +sawing +sawmill +sawmills +sawn +saws +sax +saxes +saxophone +saxophones +saxophonist +saxophonists +say +saying +sayings +says +scab +scabbard +scabbards +scabbier +scabbiest +scabby +scabies +scabrous +scabs +scads +scaffold +scaffolding +scaffolds +scalawag +scalawags +scald +scalded +scalding +scalds +scale +scaled +scales +scalier +scaliest +scaliness +scaling +scallion +scallions +scallop +scalloped +scalloping +scallops +scallywag +scallywags +scalp +scalped +scalpel +scalpels +scalper +scalpers +scalping +scalps +scaly +scam +scamp +scamper +scampered +scampering +scampers +scampi +scamps +scams +scan +scandal +scandalise +scandalised +scandalises +scandalising +scandalize +scandalized +scandalizes +scandalizing +scandalmonger +scandalmongers +scandalous +scandalously +scandals +scanned +scanner +scanners +scanning +scans +scant +scantier +scantiest +scantily +scanty +scapegoat +scapegoated +scapegoating +scapegoats +scapula +scapulae +scapulas +scar +scarab +scarabs +scarce +scarcely +scarcer +scarcest +scarcities +scarcity +scare +scarecrow +scarecrows +scared +scaremonger +scaremongering +scaremongers +scares +scarey +scarf +scarfed +scarfing +scarfs +scarier +scariest +scarified +scarifies +scarify +scarifying +scaring +scarlatina +scarlet +scarp +scarper +scarpered +scarpering +scarpers +scarps +scarred +scarring +scars +scarves +scary +scat +scathing +scathingly +scatological +scatter +scatterbrain +scatterbrained +scatterbrains +scattered +scattering +scatterings +scatters +scatty +scavenge +scavenged +scavenger +scavengers +scavenges +scavenging +scenario +scenarios +scene +scenery +scenes +scenic +scenically +scent +scented +scenting +scents +scepter +scepters +sceptic +sceptical +sceptically +scepticism +sceptics +sceptre +sceptres +schadenfreude +schedule +scheduled +scheduler +schedulers +schedules +scheduling +schema +schemas +schemata +schematic +schematically +schematize +schematized +schematizes +schematizing +scheme +schemed +schemer +schemers +schemes +scheming +scherzo +scherzos +schism +schismatic +schisms +schist +schizo +schizoid +schizophrenia +schizophrenic +schizophrenics +schizos +schlep +schlepp +schlepped +schlepping +schlepps +schleps +schlock +schlocky +schmaltz +schmaltzier +schmaltziest +schmaltzy +schmalz +schmooze +schmoozed +schmoozer +schmoozers +schmoozes +schmoozing +schmuck +schmucks +schnapps +schnitzel +schnitzels +schnook +schnooks +scholar +scholarly +scholars +scholarship +scholarships +scholastic +scholasticism +school +schoolbag +schoolbags +schoolboy +schoolboys +schoolchild +schoolchildren +schooldays +schooled +schoolgirl +schoolgirls +schoolhouse +schoolhouses +schooling +schoolkid +schoolkids +schoolmarm +schoolmarmish +schoolmarms +schoolmaster +schoolmasters +schoolmate +schoolmates +schoolmistress +schoolmistresses +schools +schoolteacher +schoolteachers +schoolwork +schoolyard +schoolyards +schooner +schooners +schtick +schwa +schwas +sciatic +sciatica +science +sciences +scientific +scientifically +scientist +scientists +scimitar +scimitars +scintilla +scintillate +scintillated +scintillates +scintillating +scion +scions +scissor +scissors +sclerosis +sclerotic +scoff +scoffed +scoffing +scoffs +scold +scolded +scolding +scoldings +scolds +sconce +sconces +scone +scones +scoop +scooped +scooping +scoops +scoot +scooted +scooter +scooters +scooting +scoots +scope +scorch +scorched +scorcher +scorchers +scorches +scorching +score +scoreboard +scoreboards +scorecard +scorecards +scored +scorekeeper +scorekeepers +scoreless +scoreline +scorelines +scorer +scorers +scores +scoring +scorn +scorned +scornful +scornfully +scorning +scorns +scorpion +scorpions +scotch +scotched +scotches +scotching +scoundrel +scoundrels +scour +scoured +scourer +scourers +scourge +scourged +scourges +scourging +scouring +scours +scout +scouted +scouter +scouters +scouting +scoutmaster +scoutmasters +scouts +scowl +scowled +scowling +scowls +scrabble +scrabbled +scrabbles +scrabbling +scraggier +scraggiest +scragglier +scraggliest +scraggly +scraggy +scram +scramble +scrambled +scrambler +scramblers +scrambles +scrambling +scrammed +scramming +scrams +scrap +scrapbook +scrapbooks +scrape +scraped +scraper +scrapers +scrapes +scrapheap +scrapheaps +scrapie +scraping +scrapings +scrapped +scrappier +scrappiest +scrapping +scrappy +scraps +scrapyard +scrapyards +scratch +scratchcard +scratchcards +scratched +scratches +scratchier +scratchiest +scratching +scratchpad +scratchpads +scratchy +scrawl +scrawled +scrawling +scrawls +scrawnier +scrawniest +scrawny +scream +screamed +screaming +screamingly +screams +scree +screech +screeched +screeches +screeching +screed +screeds +screen +screened +screening +screenings +screenplay +screenplays +screens +screenwriter +screenwriters +screenwriting +screes +screw +screwball +screwballs +screwdriver +screwdrivers +screwed +screwier +screwiest +screwing +screws +screwy +scribble +scribbled +scribbler +scribblers +scribbles +scribbling +scribe +scribes +scrimmage +scrimmages +scrimp +scrimped +scrimping +scrimps +scrip +script +scripted +scripting +scripts +scriptural +scripture +scriptures +scriptwriter +scriptwriters +scroll +scrolled +scrolling +scrolls +scrooge +scrooges +scrota +scrotum +scrotums +scrounge +scrounged +scrounger +scroungers +scrounges +scrounging +scrub +scrubbed +scrubber +scrubbers +scrubbing +scrubby +scrubs +scruff +scruffier +scruffiest +scruffily +scruffiness +scruffs +scruffy +scrum +scrumhalf +scrumhalves +scrummage +scrummages +scrummed +scrumming +scrump +scrumped +scrumping +scrumps +scrumptious +scrumpy +scrums +scrunch +scrunched +scrunches +scrunchie +scrunchies +scrunching +scrunchy +scruple +scrupled +scruples +scrupling +scrupulous +scrupulously +scrutineer +scrutineers +scrutinise +scrutinised +scrutinises +scrutinising +scrutinize +scrutinized +scrutinizes +scrutinizing +scrutiny +scud +scudded +scudding +scuds +scuff +scuffed +scuffing +scuffle +scuffled +scuffles +scuffling +scuffs +scull +sculled +sculleries +scullery +sculling +sculls +sculpt +sculpted +sculpting +sculptor +sculptors +sculpts +sculptural +sculpture +sculptured +sculptures +scum +scumbag +scumbags +scummy +scupper +scuppered +scuppering +scuppers +scurried +scurries +scurrilous +scurrilously +scurry +scurrying +scurvy +scuttle +scuttlebutt +scuttled +scuttles +scuttling +scuzzier +scuzziest +scuzzy +scythe +scythed +scythes +scything +sea +seabed +seabird +seabirds +seaboard +seaboards +seaborne +seafarer +seafarers +seafaring +seafloor +seafood +seafront +seafronts +seagoing +seagull +seagulls +seahorse +seahorses +seal +sealant +sealants +sealed +sealer +sealers +sealing +seals +sealskin +seam +seaman +seamanship +seamed +seamen +seamier +seamiest +seamless +seamlessly +seams +seamstress +seamstresses +seamy +seance +seances +seaplane +seaplanes +seaport +seaports +sear +search +searched +searcher +searchers +searches +searching +searchingly +searchlight +searchlights +seared +searing +searingly +sears +seas +seascape +seascapes +seashell +seashells +seashore +seashores +seasick +seasickness +seaside +season +seasonable +seasonal +seasonality +seasonally +seasoned +seasoning +seasonings +seasons +seat +seated +seating +seats +seaward +seawards +seaweed +seaweeds +seaworthiness +seaworthy +sebaceous +sebum +sec +secateurs +secede +seceded +secedes +seceding +secession +secessionist +secessionists +secluded +seclusion +second +secondarily +secondary +seconded +seconder +seconders +seconding +secondly +secondment +secondments +seconds +secrecy +secret +secretarial +secretariat +secretariats +secretaries +secretary +secrete +secreted +secretes +secreting +secretion +secretions +secretive +secretively +secretiveness +secretly +secrets +secs +sect +sectarian +sectarianism +section +sectional +sectioned +sectioning +sections +sector +sectors +sects +secular +secularisation +secularise +secularised +secularises +secularising +secularism +secularist +secularists +secularization +secularize +secularized +secularizes +secularizing +secure +secured +securely +secures +securing +securities +security +sedan +sedans +sedate +sedated +sedately +sedates +sedating +sedation +sedative +sedatives +sedentary +sedge +sediment +sedimentary +sedimentation +sediments +sedition +seditious +seduce +seduced +seducer +seducers +seduces +seducing +seduction +seductions +seductive +seductively +seductiveness +seductress +seductresses +see +seed +seedbed +seedbeds +seeded +seedier +seediest +seediness +seeding +seedless +seedling +seedlings +seeds +seedy +seeing +seek +seeker +seekers +seeking +seeks +seem +seemed +seeming +seemingly +seemlier +seemliest +seemly +seems +seen +seep +seepage +seeped +seeping +seeps +seer +seers +seersucker +sees +seesaw +seesawed +seesawing +seesaws +seethe +seethed +seethes +seething +segment +segmentation +segmented +segmenting +segments +segregate +segregated +segregates +segregating +segregation +segregationist +segregationists +segue +segued +segues +seguing +seismic +seismograph +seismographs +seismological +seismologist +seismologists +seismology +seize +seized +seizes +seizing +seizure +seizures +seldom +select +selected +selecting +selection +selections +selective +selectively +selectivity +selector +selectors +selects +self +selfish +selfishly +selfishness +selfless +selflessly +selflessness +selfsame +sell +seller +sellers +selling +sellotape +sellotaped +sellotapes +sellotaping +sellout +sellouts +sells +seltzer +seltzers +selves +semantic +semantically +semantics +semaphore +semblance +semen +semester +semesters +semi +semibreve +semibreves +semicircle +semicircles +semicircular +semicolon +semicolons +semiconducting +semiconductor +semiconductors +semifinal +semifinalist +semifinalists +semifinals +seminal +seminar +seminarian +seminarians +seminaries +seminars +seminary +semiotic +semiotics +semiprecious +semiquaver +semiquavers +semis +semitone +semitones +semitrailer +semitrailers +semitropical +semivowel +semivowels +semolina +senate +senates +senator +senatorial +senators +send +sender +senders +sending +sends +senescence +senescent +senile +senility +senior +seniority +seniors +sensation +sensational +sensationalise +sensationalised +sensationalises +sensationalising +sensationalism +sensationalist +sensationalize +sensationalized +sensationalizes +sensationalizing +sensationally +sensations +sense +sensed +senseless +senselessly +senses +sensibilities +sensibility +sensible +sensibly +sensing +sensitise +sensitised +sensitises +sensitising +sensitive +sensitively +sensitiveness +sensitivities +sensitivity +sensitization +sensitize +sensitized +sensitizes +sensitizing +sensor +sensors +sensory +sensual +sensuality +sensually +sensuous +sensuously +sensuousness +sent +sentence +sentenced +sentences +sentencing +sententious +sententiously +sentient +sentiment +sentimental +sentimentalise +sentimentalised +sentimentalises +sentimentalising +sentimentalism +sentimentalist +sentimentalists +sentimentality +sentimentalize +sentimentalized +sentimentalizes +sentimentalizing +sentimentally +sentiments +sentinel +sentinels +sentries +sentry +sepal +sepals +separability +separable +separate +separated +separately +separates +separating +separation +separations +separatism +separatist +separatists +sepia +sepsis +septet +septets +septic +septicaemia +septicemia +septuagenarian +septuagenarians +sepulcher +sepulchers +sepulchral +sepulchre +sepulchres +sequel +sequels +sequence +sequences +sequencing +sequential +sequentially +sequester +sequestered +sequestering +sequesters +sequestrate +sequestrated +sequestrates +sequestrating +sequestration +sequestrations +sequin +sequined +sequinned +sequins +sequoia +sequoias +sera +seraph +seraphic +seraphim +seraphs +serenade +serenaded +serenades +serenading +serendipitous +serendipity +serene +serenely +serenity +serf +serfdom +serfs +serge +sergeant +sergeants +serial +serialisation +serialisations +serialise +serialised +serialises +serialising +serialization +serializations +serialize +serialized +serializes +serializing +serials +series +serif +serifs +serious +seriously +seriousness +sermon +sermonise +sermonised +sermonises +sermonising +sermonize +sermonized +sermonizes +sermonizing +sermons +serotonin +serpent +serpentine +serpents +serrated +serried +serum +serums +servant +servants +serve +served +server +serveries +servers +servery +serves +service +serviceable +serviced +serviceman +servicemen +services +servicewoman +servicewomen +servicing +serviette +serviettes +servile +servility +serving +servings +servitude +sesame +session +sessions +set +setback +setbacks +sets +setsquare +setsquares +sett +settee +settees +setter +setters +setting +settings +settle +settled +settlement +settlements +settler +settlers +settles +settling +setts +seven +sevens +seventeen +seventeens +seventeenth +seventeenths +seventh +sevenths +seventies +seventieth +seventieths +seventy +sever +several +severally +severance +severe +severed +severely +severer +severest +severing +severity +severs +sew +sewage +sewed +sewer +sewerage +sewers +sewing +sewn +sews +sex +sexagenarian +sexagenarians +sexed +sexes +sexier +sexiest +sexily +sexiness +sexing +sexism +sexist +sexists +sexless +sexologist +sexologists +sexology +sexpot +sexpots +sextant +sextants +sextet +sextets +sexton +sextons +sextuplet +sextuplets +sexual +sexuality +sexually +sexy +sh +shabbier +shabbiest +shabbily +shabbiness +shabby +shack +shacked +shacking +shackle +shackled +shackles +shackling +shacks +shade +shaded +shades +shadier +shadiest +shading +shadings +shadow +shadowed +shadowing +shadows +shadowy +shady +shaft +shafted +shafting +shafts +shag +shagged +shaggier +shaggiest +shagginess +shagging +shaggy +shags +shaikh +shaikhs +shake +shakedown +shakedowns +shaken +shakeout +shakeouts +shaker +shakers +shakes +shakeup +shakeups +shakier +shakiest +shakily +shakiness +shaking +shaky +shale +shall +shallot +shallots +shallow +shallower +shallowest +shallowly +shallowness +shallows +shalom +shalt +sham +shaman +shamanism +shamanistic +shamans +shamble +shambled +shambles +shambling +shambolic +shame +shamed +shamefaced +shamefacedly +shameful +shamefully +shamefulness +shameless +shamelessly +shamelessness +shames +shaming +shammed +shammies +shamming +shammy +shampoo +shampooed +shampooing +shampoos +shamrock +shamrocks +shams +shandies +shandy +shanghai +shanghaied +shanghaiing +shanghais +shank +shanks +shanties +shanty +shantytown +shantytowns +shape +shaped +shapeless +shapelessly +shapelessness +shapeliness +shapely +shapes +shaping +shard +shards +share +sharecropper +sharecroppers +shared +shareholder +shareholders +shareholding +shareholdings +shares +shareware +sharia +shariah +sharing +shark +sharks +sharkskin +sharp +sharpen +sharpened +sharpener +sharpeners +sharpening +sharpens +sharper +sharpest +sharpish +sharply +sharpness +sharps +sharpshooter +sharpshooters +shat +shatter +shattered +shattering +shatterproof +shatters +shave +shaved +shaven +shaver +shavers +shaves +shaving +shavings +shawl +shawls +she +sheaf +shear +sheared +shearing +shears +sheath +sheathe +sheathed +sheathes +sheathing +sheathings +sheaths +sheaves +shebeen +shebeens +shed +shedding +sheds +sheen +sheep +sheepdog +sheepdogs +sheepish +sheepishly +sheepishness +sheepskin +sheepskins +sheer +sheered +sheerer +sheerest +sheering +sheers +sheet +sheeting +sheets +sheik +sheikdom +sheikdoms +sheikh +sheikhdom +sheikhdoms +sheikhs +sheiks +sheila +sheilas +shekel +shekels +shelf +shell +shellac +shellacking +shelled +shellfire +shellfish +shelling +shells +shelter +sheltered +sheltering +shelters +shelve +shelved +shelves +shelving +shenanigans +shepherd +shepherded +shepherdess +shepherdesses +shepherding +shepherds +sherbet +sherbets +sherd +sherds +sheriff +sheriffs +sherries +sherry +shes +shh +shiatsu +shibboleth +shibboleths +shied +shield +shielded +shielding +shields +shies +shift +shifted +shiftily +shiftiness +shifting +shiftless +shifts +shifty +shilling +shillings +shimmer +shimmered +shimmering +shimmers +shimmied +shimmies +shimmy +shimmying +shin +shinbone +shinbones +shindig +shindigs +shine +shined +shiner +shiners +shines +shingle +shingled +shingles +shinier +shiniest +shininess +shining +shinned +shinnied +shinnies +shinning +shinny +shinnying +shins +shiny +ship +shipboard +shipbuilder +shipbuilders +shipbuilding +shipload +shiploads +shipmate +shipmates +shipment +shipments +shipowner +shipowners +shipped +shipper +shippers +shipping +ships +shipshape +shipwreck +shipwrecked +shipwrecks +shipwright +shipwrights +shipyard +shipyards +shire +shires +shirk +shirked +shirker +shirkers +shirking +shirks +shirt +shirts +shirtsleeve +shirtsleeves +shirttail +shirttails +shirty +shit +shite +shites +shitfaced +shithead +shitheads +shitload +shits +shitted +shittier +shittiest +shitting +shitty +shiver +shivered +shivering +shivers +shivery +shoal +shoals +shock +shocked +shocker +shockers +shocking +shockingly +shockproof +shocks +shod +shoddier +shoddiest +shoddily +shoddiness +shoddy +shoe +shoed +shoehorn +shoehorned +shoehorning +shoehorns +shoeing +shoelace +shoelaces +shoemaker +shoemakers +shoes +shoeshine +shoeshines +shoestring +shoestrings +shoetree +shoetrees +shogun +shoguns +shone +shoo +shooed +shooing +shook +shoos +shoot +shooter +shooters +shooting +shootings +shoots +shop +shopaholic +shopaholics +shopfitter +shopfitters +shopfitting +shopfront +shopfronts +shopkeeper +shopkeepers +shoplift +shoplifted +shoplifter +shoplifters +shoplifting +shoplifts +shopped +shopper +shoppers +shopping +shops +shopworn +shore +shored +shoreline +shorelines +shores +shoring +shorn +short +shortage +shortages +shortbread +shortcake +shortcoming +shortcomings +shortcrust +shortcut +shortcuts +shorted +shorten +shortened +shortening +shortens +shorter +shortest +shortfall +shortfalls +shorthand +shorthanded +shorties +shorting +shortish +shortlist +shortlisted +shortlisting +shortlists +shortly +shortness +shorts +shortwave +shorty +shot +shotgun +shotguns +shots +should +shoulder +shouldered +shouldering +shoulders +shout +shouted +shouting +shouts +shove +shoved +shovel +shoveled +shovelful +shovelfuls +shoveling +shovelled +shovelling +shovels +shoves +shoving +show +showbiz +showboat +showboating +showboats +showcase +showcased +showcases +showcasing +showdown +showdowns +showed +shower +showered +showering +showerproof +showers +showery +showgirl +showgirls +showground +showgrounds +showier +showiest +showily +showiness +showing +showings +showjumping +showman +showmanship +showmen +shown +showoff +showoffs +showpiece +showpieces +showplace +showplaces +showroom +showrooms +shows +showstopper +showstoppers +showstopping +showtime +showy +shrank +shrapnel +shred +shredded +shredder +shredders +shredding +shreds +shrew +shrewd +shrewder +shrewdest +shrewdly +shrewdness +shrewish +shrews +shriek +shrieked +shrieking +shrieks +shrill +shrilled +shriller +shrillest +shrilling +shrillness +shrilly +shrimp +shrimper +shrimpers +shrimping +shrimps +shrine +shrines +shrink +shrinkage +shrinking +shrinks +shrivel +shriveled +shriveling +shrivelled +shrivelling +shrivels +shroud +shrouded +shrouding +shrouds +shrub +shrubberies +shrubbery +shrubs +shrug +shrugged +shrugging +shrugs +shrunk +shrunken +shtick +shticks +shuck +shucked +shucking +shucks +shudder +shuddered +shuddering +shudders +shuffle +shuffled +shuffles +shuffling +shun +shunned +shunning +shuns +shunt +shunted +shunting +shunts +shush +shushed +shushes +shushing +shut +shutdown +shutdowns +shuteye +shutout +shutouts +shuts +shutter +shuttered +shutters +shutting +shuttle +shuttlecock +shuttlecocks +shuttled +shuttles +shuttling +shy +shyer +shyest +shying +shyly +shyness +shyster +shysters +sibilant +sibilants +sibling +siblings +sibyl +sibyls +sic +sicced +siccing +sick +sickbay +sickbays +sickbed +sickbeds +sicked +sicken +sickened +sickening +sickeningly +sickens +sicker +sickest +sickie +sickies +sicking +sickle +sickles +sicklier +sickliest +sickly +sickness +sicknesses +sicko +sickos +sickout +sickouts +sickroom +sickrooms +sicks +sics +side +sidearm +sidearms +sidebar +sidebars +sideboard +sideboards +sideburns +sidecar +sidecars +sided +sidekick +sidekicks +sidelight +sidelights +sideline +sidelined +sidelines +sidelining +sidelong +sidereal +sides +sideshow +sideshows +sidesplitting +sidestep +sidestepped +sidestepping +sidesteps +sideswipe +sideswiped +sideswipes +sideswiping +sidetrack +sidetracked +sidetracking +sidetracks +sidewalk +sidewalks +sideways +siding +sidings +sidle +sidled +sidles +sidling +siege +sieges +sienna +sierra +sierras +siesta +siestas +sieve +sieved +sieves +sieving +sift +sifted +sifter +sifters +sifting +sifts +sigh +sighed +sighing +sighs +sight +sighted +sighting +sightings +sightless +sights +sightseeing +sightseer +sightseers +sign +signal +signaled +signaling +signalise +signalised +signalises +signalising +signalize +signalized +signalizes +signalizing +signalled +signalling +signally +signalman +signalmen +signals +signatories +signatory +signature +signatures +signboard +signboards +signed +signer +signers +significance +significant +significantly +signification +significations +signified +signifies +signify +signifying +signing +signings +signpost +signposted +signposting +signposts +signs +silage +silence +silenced +silencer +silencers +silences +silencing +silent +silently +silhouette +silhouetted +silhouettes +silhouetting +silica +silicate +silicates +silicon +silicone +silicosis +silk +silken +silkier +silkiest +silkiness +silks +silkworm +silkworms +silky +sill +sillier +silliest +silliness +sills +silly +silo +silos +silt +silted +silting +silts +silvan +silver +silvered +silverfish +silverfishes +silvering +silvers +silversmith +silversmiths +silverware +silvery +simian +simians +similar +similarities +similarity +similarly +simile +similes +simmer +simmered +simmering +simmers +simper +simpered +simpering +simperingly +simpers +simple +simpler +simplest +simpleton +simpletons +simplicity +simplification +simplifications +simplified +simplifies +simplify +simplifying +simplistic +simplistically +simply +simulacra +simulacrum +simulacrums +simulate +simulated +simulates +simulating +simulation +simulations +simulator +simulators +simulcast +simulcasting +simulcasts +simultaneity +simultaneous +simultaneously +sin +since +sincere +sincerely +sincerity +sine +sinecure +sinecures +sines +sinew +sinews +sinewy +sinful +sinfully +sinfulness +sing +singalong +singalongs +singe +singed +singeing +singer +singers +singes +singing +single +singled +singleness +singles +singlet +singleton +singletons +singlets +singling +singly +sings +singsong +singsongs +singular +singularity +singularly +singulars +sinister +sink +sinking +sinks +sinned +sinner +sinners +sinning +sinology +sins +sinuous +sinuously +sinus +sinuses +sinusitis +sip +siphon +siphoned +siphoning +siphons +sipped +sipping +sips +sir +sire +sired +siren +sirens +sires +siring +sirloin +sirloins +sirocco +siroccos +sirrah +sirs +sis +sisal +sissies +sissy +sister +sisterhood +sisterhoods +sisterly +sisters +sit +sitar +sitars +sitcom +sitcoms +site +sited +sites +siting +sits +sitter +sitters +sitting +sittings +situate +situated +situates +situating +situation +situations +six +sixes +sixfold +sixpence +sixpences +sixteen +sixteens +sixteenth +sixteenths +sixth +sixths +sixties +sixtieth +sixtieths +sixty +sizable +size +sizeable +sized +sizes +sizing +sizzle +sizzled +sizzler +sizzlers +sizzles +sizzling +ska +skate +skateboard +skateboarder +skateboarders +skateboarding +skateboards +skated +skater +skaters +skates +skating +skedaddle +skedaddled +skedaddles +skedaddling +skeeter +skeeters +skein +skeins +skeletal +skeleton +skeletons +skeptic +skeptical +skeptically +skepticism +skeptics +sketch +sketchbook +sketchbooks +sketched +sketches +sketchier +sketchiest +sketchily +sketching +sketchpad +sketchpads +sketchy +skew +skewbald +skewbalds +skewed +skewer +skewered +skewering +skewers +skewing +skews +ski +skibob +skibobs +skid +skidded +skidding +skidpan +skidpans +skids +skied +skier +skiers +skies +skiff +skiffle +skiffs +skiing +skilful +skilfully +skill +skilled +skillet +skillets +skillful +skillfully +skills +skim +skimmed +skimming +skimp +skimped +skimpier +skimpiest +skimping +skimps +skimpy +skims +skin +skincare +skinflint +skinflints +skinful +skinhead +skinheads +skinless +skinned +skinnier +skinniest +skinning +skinny +skins +skint +skintight +skip +skipped +skipper +skippered +skippering +skippers +skipping +skips +skirmish +skirmished +skirmisher +skirmishers +skirmishes +skirmishing +skirt +skirted +skirting +skirts +skis +skit +skits +skitter +skittered +skittering +skitters +skittish +skittishly +skittishness +skittle +skittles +skive +skived +skiver +skivers +skives +skiving +skivvied +skivvies +skivvy +skivvying +skua +skuas +skulduggery +skulk +skulked +skulking +skulks +skull +skullcap +skullcaps +skullduggery +skulls +skunk +skunks +sky +skycap +skycaps +skydiver +skydivers +skydiving +skyjack +skyjacked +skyjacker +skyjackers +skyjacking +skyjacks +skylark +skylarks +skylight +skylights +skyline +skylines +skyrocket +skyrocketed +skyrocketing +skyrockets +skyscraper +skyscrapers +skyward +skywards +slab +slabs +slack +slacked +slacken +slackened +slackening +slackens +slacker +slackers +slackest +slacking +slackly +slackness +slacks +slag +slagged +slagging +slagheap +slagheaps +slags +slain +slake +slaked +slakes +slaking +slalom +slaloms +slam +slammed +slammer +slamming +slams +slander +slandered +slanderer +slanderers +slandering +slanderous +slanders +slang +slangy +slant +slanted +slanting +slants +slap +slapdash +slaphappy +slapped +slapper +slappers +slapping +slaps +slapstick +slash +slashed +slashes +slashing +slat +slate +slated +slates +slather +slathered +slathering +slathers +slating +slats +slatted +slattern +slatternly +slatterns +slaughter +slaughtered +slaughterhouse +slaughterhouses +slaughtering +slaughters +slave +slaved +slaver +slavered +slavering +slavers +slavery +slaves +slaving +slavish +slavishly +slaw +slay +slayed +slayer +slayers +slaying +slayings +slays +sleaze +sleazebag +sleazebags +sleazeball +sleazeballs +sleazes +sleazier +sleaziest +sleaziness +sleazy +sled +sledded +sledding +sledge +sledged +sledgehammer +sledgehammers +sledges +sledging +sleds +sleek +sleeked +sleeker +sleekest +sleeking +sleekly +sleekness +sleeks +sleep +sleeper +sleepers +sleepier +sleepiest +sleepily +sleepiness +sleeping +sleepless +sleeplessly +sleeplessness +sleepover +sleepovers +sleeps +sleepwalk +sleepwalked +sleepwalker +sleepwalkers +sleepwalking +sleepwalks +sleepy +sleepyhead +sleepyheads +sleet +sleeted +sleeting +sleets +sleety +sleeve +sleeveless +sleeves +sleigh +sleighs +slender +slenderness +slept +sleuth +sleuthing +sleuths +slew +slewed +slewing +slews +slice +sliced +slices +slicing +slick +slicked +slicker +slickers +slickest +slicking +slickly +slickness +slicks +slid +slide +slides +sliding +slight +slighted +slighter +slightest +slighting +slightly +slights +slim +slime +slimier +slimiest +sliminess +slimline +slimmed +slimmer +slimmers +slimmest +slimming +slimness +slims +slimy +sling +slingback +slingbacks +slinging +slings +slingshot +slingshots +slink +slinkier +slinkiest +slinking +slinks +slinky +slip +slipcase +slipcases +slipknot +slipknots +slippage +slippages +slipped +slipper +slipperier +slipperiest +slippers +slippery +slipping +slippy +slips +slipshod +slipstream +slipstreams +slipway +slipways +slit +slither +slithered +slithering +slithers +slithery +slits +slitting +sliver +slivers +slob +slobbed +slobber +slobbered +slobbering +slobbers +slobbery +slobbing +slobs +sloe +sloes +slog +slogan +sloganeering +slogans +slogged +slogging +slogs +sloop +sloops +slop +slope +sloped +slopes +sloping +slopped +sloppier +sloppiest +sloppily +sloppiness +slopping +sloppy +slops +slosh +sloshed +sloshes +sloshing +slot +sloth +slothful +sloths +slots +slotted +slotting +slouch +slouched +slouches +slouching +slough +sloughed +sloughing +sloughs +slovenliness +slovenly +slow +slowcoach +slowcoaches +slowdown +slowdowns +slowed +slower +slowest +slowing +slowly +slowness +slowpoke +slowpokes +slows +sludge +sludgy +slug +slugged +slugger +sluggers +slugging +sluggish +sluggishly +sluggishness +slugs +sluice +sluiced +sluices +sluicing +slum +slumber +slumbered +slumbering +slumbers +slummed +slumming +slummy +slump +slumped +slumping +slumps +slums +slung +slunk +slur +slurp +slurped +slurping +slurps +slurred +slurring +slurry +slurs +slush +slushier +slushiest +slushy +slut +sluts +sluttish +slutty +sly +slyer +slyest +slyly +slyness +smack +smacked +smacker +smackers +smacking +smacks +small +smaller +smallest +smallholder +smallholders +smallholding +smallholdings +smallish +smallness +smallpox +smalls +smarmier +smarmiest +smarmy +smart +smarted +smarten +smartened +smartening +smartens +smarter +smartest +smarting +smartly +smartness +smarts +smash +smashed +smasher +smashers +smashes +smashing +smattering +smatterings +smear +smeared +smearing +smears +smell +smelled +smellier +smelliest +smelling +smells +smelly +smelt +smelted +smelter +smelters +smelting +smelts +smidgen +smidgens +smidgeon +smidgeons +smidgin +smidgins +smile +smiled +smiles +smiley +smiling +smilingly +smirk +smirked +smirking +smirks +smite +smites +smith +smithereens +smithies +smiths +smithy +smiting +smitten +smock +smocked +smocking +smocks +smog +smoggier +smoggiest +smoggy +smogs +smoke +smoked +smokeless +smoker +smokers +smokes +smokescreen +smokescreens +smokestack +smokestacks +smokey +smokier +smokiest +smoking +smoky +smolder +smoldered +smoldering +smolders +smooch +smooched +smooches +smooching +smoochy +smooth +smoothed +smoother +smoothest +smoothie +smoothies +smoothing +smoothly +smoothness +smooths +smoothy +smorgasbord +smorgasbords +smote +smother +smothered +smothering +smothers +smoulder +smouldered +smouldering +smoulders +smudge +smudged +smudges +smudgier +smudgiest +smudging +smudgy +smug +smugger +smuggest +smuggle +smuggled +smuggler +smugglers +smuggles +smuggling +smugly +smugness +smut +smuts +smuttier +smuttiest +smuttiness +smutty +snack +snacked +snacking +snacks +snaffle +snaffled +snaffles +snaffling +snafu +snafus +snag +snagged +snagging +snags +snail +snails +snake +snakebite +snakebites +snaked +snakes +snakeskin +snaking +snaky +snap +snapdragon +snapdragons +snapped +snapper +snappers +snappier +snappiest +snappily +snappiness +snapping +snappish +snappishly +snappy +snaps +snapshot +snapshots +snare +snared +snares +snaring +snarl +snarled +snarling +snarls +snatch +snatched +snatcher +snatchers +snatches +snatching +snazzier +snazziest +snazzily +snazzy +sneak +sneaked +sneaker +sneakers +sneakier +sneakiest +sneakily +sneaking +sneaks +sneaky +sneer +sneered +sneering +sneeringly +sneers +sneeze +sneezed +sneezes +sneezing +snick +snicked +snicker +snickered +snickering +snickers +snicking +snicks +snide +snidely +sniff +sniffed +sniffer +sniffers +sniffier +sniffiest +sniffing +sniffle +sniffled +sniffles +sniffling +sniffs +sniffy +snifter +snifters +snigger +sniggered +sniggering +sniggers +snip +snipe +sniped +sniper +snipers +snipes +sniping +snipped +snippet +snippets +snipping +snippy +snips +snitch +snitched +snitches +snitching +snivel +sniveled +sniveling +snivelled +snivelling +snivels +snob +snobbery +snobbish +snobbishly +snobbishness +snobby +snobs +snog +snogged +snogging +snogs +snooker +snookered +snookering +snookers +snoop +snooped +snooper +snoopers +snooping +snoops +snoot +snootier +snootiest +snootily +snootiness +snoots +snooty +snooze +snoozed +snoozes +snoozing +snore +snored +snorer +snorers +snores +snoring +snorkel +snorkeled +snorkeling +snorkelled +snorkelling +snorkels +snort +snorted +snorting +snorts +snot +snottier +snottiest +snotty +snout +snouts +snow +snowball +snowballed +snowballing +snowballs +snowboard +snowboarder +snowboarders +snowboarding +snowboards +snowbound +snowdrift +snowdrifts +snowdrop +snowdrops +snowed +snowfall +snowfalls +snowfield +snowfields +snowflake +snowflakes +snowier +snowiest +snowing +snowline +snowman +snowmen +snowmobile +snowmobiles +snowplough +snowploughs +snowplow +snowplows +snows +snowshoe +snowshoes +snowstorm +snowstorms +snowsuit +snowsuits +snowy +snub +snubbed +snubbing +snubs +snuck +snuff +snuffed +snuffing +snuffle +snuffled +snuffles +snuffling +snuffs +snug +snugger +snuggest +snuggle +snuggled +snuggles +snuggling +snugly +snugness +snugs +so +soak +soaked +soaking +soaks +soap +soapbox +soapboxes +soaped +soapier +soapiest +soaping +soaps +soapstone +soapsuds +soapy +soar +soared +soaring +soars +sob +sobbed +sobbing +sober +sobered +sobering +soberly +sobers +sobriety +sobriquet +sobriquets +sobs +soccer +sociability +sociable +sociables +social +socialisation +socialise +socialised +socialises +socialising +socialism +socialist +socialistic +socialists +socialite +socialites +socialization +socialize +socialized +socializes +socializing +socially +socials +societal +societies +society +socioeconomic +socioeconomically +sociological +sociologically +sociologist +sociologists +sociology +sociopath +sociopaths +sociopolitical +sock +socked +socket +sockets +socking +socks +sod +soda +sodas +sodden +sodding +sodium +sodomise +sodomised +sodomises +sodomising +sodomite +sodomites +sodomize +sodomized +sodomizes +sodomizing +sodomy +sods +sofa +sofas +soft +softback +softball +softballs +softcover +soften +softened +softener +softeners +softening +softens +softer +softest +softie +softies +softly +softness +software +softwood +softwoods +softy +soggier +soggiest +soggily +sogginess +soggy +soh +soignee +soil +soiled +soiling +soils +soiree +soirees +sojourn +sojourned +sojourning +sojourns +sol +solace +solaced +solaces +solacing +solar +solarium +solariums +sold +solder +soldered +soldering +solders +soldier +soldiered +soldiering +soldierly +soldiers +soldiery +sole +solecism +solecisms +soled +solely +solemn +solemnise +solemnised +solemnises +solemnising +solemnities +solemnity +solemnization +solemnize +solemnized +solemnizes +solemnizing +solemnly +solemnness +soles +solicit +solicitation +solicitations +solicited +soliciting +solicitor +solicitors +solicitous +solicitously +solicitousness +solicits +solicitude +solid +solidarity +solidification +solidified +solidifies +solidify +solidifying +solidity +solidly +solidness +solids +soliloquies +soliloquize +soliloquized +soliloquizes +soliloquizing +soliloquy +soling +solipsism +solipsistic +solitaire +solitaires +solitaries +solitariness +solitary +solitude +solo +soloist +soloists +solos +solstice +solstices +solubility +soluble +solution +solutions +solvable +solve +solved +solvency +solvent +solvents +solves +solving +somber +somberly +somberness +sombre +sombrely +sombreness +sombrero +sombreros +some +somebody +someday +somehow +someone +someplace +somersault +somersaulted +somersaulting +somersaults +something +sometime +sometimes +someway +someways +somewhat +somewhere +somnambulism +somnambulist +somnambulists +somnolence +somnolent +son +sonar +sonata +sonatas +song +songbird +songbirds +songbook +songbooks +songs +songster +songsters +songstress +songstresses +songwriter +songwriters +songwriting +sonic +sonnet +sonnets +sonny +sonofabitch +sonogram +sonograms +sonorous +sonorously +sons +sonsofbitches +soon +sooner +soonest +soot +soothe +soothed +soothes +soothing +soothingly +soothsayer +soothsayers +sooty +sop +sophisticate +sophisticated +sophisticates +sophistication +sophistries +sophistry +sophomore +sophomores +soporific +soporifically +sopped +soppier +soppiest +sopping +soppy +soprano +sopranos +sops +sorbet +sorbets +sorcerer +sorcerers +sorceress +sorceresses +sorcery +sordid +sore +sorehead +soreheads +sorely +soreness +sorer +sores +sorest +sorghum +sororities +sorority +sorrel +sorrier +sorriest +sorrow +sorrowed +sorrowful +sorrowfully +sorrowing +sorrows +sorry +sort +sorted +sortie +sorties +sorting +sorts +sou +soubriquet +soubriquets +souffle +souffles +sought +souk +souks +soul +soulful +soulfully +soulfulness +soulless +soullessly +soullessness +souls +sound +soundbite +soundbites +sounded +sounder +soundest +sounding +soundings +soundless +soundlessly +soundly +soundness +soundproof +soundproofed +soundproofing +soundproofs +sounds +soundtrack +soundtracks +soup +soupcon +souped +souping +soups +soupy +sour +source +sourced +sources +sourcing +sourdough +soured +souring +sourly +sourness +sourpuss +sourpusses +sours +sousaphone +sousaphones +souse +soused +souses +sousing +south +southbound +southeast +southeasterly +southeastern +southeastward +southeastwards +southerly +southern +southerner +southerners +southernmost +southpaw +southpaws +southward +southwards +southwest +southwesterly +southwestern +southwestward +southwestwards +souvenir +souvenirs +sovereign +sovereigns +sovereignty +soviet +soviets +sow +sowed +sower +sowers +sowing +sown +sows +sox +soy +soya +soybean +soybeans +sozzled +spa +space +spacecraft +spaced +spaceman +spacemen +spaces +spaceship +spaceships +spacesuit +spacesuits +spacewalk +spacewalks +spacewoman +spacewomen +spacey +spacing +spacious +spaciously +spaciousness +spade +spades +spadework +spaghetti +spake +spam +spammed +spamming +spams +span +spandex +spangle +spangled +spangles +spangling +spangly +spaniel +spaniels +spank +spanked +spanking +spankings +spanks +spanned +spanner +spanners +spanning +spans +spar +spare +spared +spareribs +spares +sparing +sparingly +spark +sparked +sparkier +sparkiest +sparking +sparkle +sparkled +sparkler +sparklers +sparkles +sparkling +sparkly +sparks +sparky +sparred +sparring +sparrow +sparrowhawk +sparrowhawks +sparrows +spars +sparse +sparsely +sparseness +sparser +sparsest +spartan +spas +spasm +spasmodic +spasmodically +spasms +spastic +spastics +spat +spate +spates +spatial +spatially +spats +spatter +spattered +spattering +spatters +spatula +spatulas +spawn +spawned +spawning +spawns +spay +spayed +spaying +spays +speak +speakeasies +speakeasy +speaker +speakerphone +speakerphones +speakers +speaking +speaks +spear +speared +spearhead +spearheaded +spearheading +spearheads +spearing +spearmint +spears +spec +special +specialisation +specialisations +specialise +specialised +specialises +specialising +specialism +specialisms +specialist +specialists +specialities +speciality +specialization +specializations +specialize +specialized +specializes +specializing +specially +specials +specialties +specialty +species +specific +specifically +specification +specifications +specificity +specifics +specified +specifies +specify +specifying +specimen +specimens +specious +speciously +speciousness +speck +speckle +speckled +speckles +specks +specs +spectacle +spectacles +spectacular +spectacularly +spectaculars +spectate +spectated +spectates +spectating +spectator +spectators +specter +specters +spectra +spectral +spectre +spectres +spectroscope +spectroscopes +spectroscopic +spectroscopy +spectrum +spectrums +speculate +speculated +speculates +speculating +speculation +speculations +speculative +speculatively +speculator +speculators +sped +speech +speeches +speechified +speechifies +speechify +speechifying +speechless +speechlessly +speechlessness +speechwriter +speechwriters +speed +speedboat +speedboats +speeded +speedier +speediest +speedily +speediness +speeding +speedometer +speedometers +speeds +speedway +speedways +speedy +speleological +speleologist +speleologists +speleology +spell +spellbinder +spellbinders +spellbinding +spellbound +spellchecker +spellcheckers +spelled +speller +spellers +spelling +spellings +spells +spelt +spelunker +spelunkers +spelunking +spend +spender +spenders +spending +spends +spendthrift +spendthrifts +spent +sperm +spermatozoa +spermatozoon +spermicidal +spermicide +spermicides +sperms +spew +spewed +spewing +spews +sphagnum +sphere +spheres +spherical +spheroid +spheroids +sphincter +sphincters +sphinx +sphinxes +spic +spice +spiced +spices +spicier +spiciest +spiciness +spicing +spics +spicy +spider +spiders +spiderweb +spiderwebs +spidery +spied +spiel +spiels +spies +spiff +spiffed +spiffing +spiffs +spiffy +spigot +spigots +spik +spike +spiked +spikes +spikiness +spiking +spiks +spiky +spill +spillage +spillages +spilled +spilling +spillover +spillovers +spills +spilt +spin +spinach +spinal +spindle +spindles +spindlier +spindliest +spindly +spine +spineless +spinelessly +spinelessness +spines +spinet +spinets +spinier +spiniest +spinnaker +spinnakers +spinner +spinners +spinney +spinneys +spinning +spins +spinster +spinsterhood +spinsters +spiny +spiral +spiraled +spiraling +spiralled +spiralling +spirally +spirals +spire +spires +spirit +spirited +spiritedly +spiriting +spiritless +spirits +spiritual +spiritualism +spiritualist +spiritualists +spirituality +spiritually +spirituals +spit +spitball +spitballs +spite +spited +spiteful +spitefully +spitefulness +spites +spiting +spits +spitting +spittle +spittoon +spittoons +spiv +spivs +splash +splashdown +splashdowns +splashed +splashes +splashier +splashiest +splashing +splashy +splat +splats +splatter +splattered +splattering +splatters +splay +splayed +splaying +splays +spleen +spleens +splendid +splendidly +splendor +splendors +splendour +splendours +splenetic +splice +spliced +splicer +splicers +splices +splicing +spliff +spliffs +splint +splinter +splintered +splintering +splinters +splints +split +splits +splitting +splodge +splodges +splosh +sploshed +sploshes +sploshing +splotch +splotches +splurge +splurged +splurges +splurging +splutter +spluttered +spluttering +splutters +spoil +spoilage +spoiled +spoiler +spoilers +spoiling +spoils +spoilsport +spoilsports +spoilt +spoke +spoken +spokes +spokesman +spokesmen +spokespeople +spokesperson +spokespersons +spokeswoman +spokeswomen +sponge +sponged +sponger +spongers +sponges +spongier +spongiest +sponginess +sponging +spongy +sponsor +sponsored +sponsoring +sponsors +sponsorship +spontaneity +spontaneous +spontaneously +spoof +spoofed +spoofing +spoofs +spook +spooked +spookier +spookiest +spooking +spooks +spooky +spool +spools +spoon +spooned +spoonerism +spoonerisms +spoonful +spoonfuls +spooning +spoons +spoor +spoors +sporadic +sporadically +spore +spores +sporran +sporrans +sport +sported +sportier +sportiest +sporting +sportingly +sports +sportscast +sportscaster +sportscasters +sportscasts +sportsman +sportsmanlike +sportsmanship +sportsmen +sportspeople +sportsperson +sportswear +sportswoman +sportswomen +sporty +spot +spotless +spotlessly +spotlight +spotlighted +spotlighting +spotlights +spotlit +spots +spotted +spotter +spotters +spottier +spottiest +spotting +spotty +spousal +spouse +spouses +spout +spouted +spouting +spouts +sprain +sprained +spraining +sprains +sprang +sprat +sprats +sprawl +sprawled +sprawling +sprawls +spray +sprayed +sprayer +sprayers +spraying +sprays +spread +spreadeagled +spreading +spreads +spreadsheet +spreadsheets +spree +sprees +sprig +sprigged +sprightlier +sprightliest +sprightliness +sprightly +sprigs +spring +springboard +springboards +springbok +springboks +springier +springiest +springing +springs +springtime +springy +sprinkle +sprinkled +sprinkler +sprinklers +sprinkles +sprinkling +sprinklings +sprint +sprinted +sprinter +sprinters +sprinting +sprints +sprite +sprites +spritz +spritzed +spritzer +spritzers +spritzes +spritzing +sprocket +sprockets +sprog +sprogs +sprout +sprouted +sprouting +sprouts +spruce +spruced +spruces +sprucing +sprung +spry +spud +spuds +spume +spun +spunk +spunkier +spunkiest +spunks +spunky +spur +spurious +spuriously +spurn +spurned +spurning +spurns +spurred +spurring +spurs +spurt +spurted +spurting +spurts +sputter +sputtered +sputtering +sputters +sputum +spy +spying +spymaster +spymasters +squab +squabble +squabbled +squabbles +squabbling +squad +squaddie +squaddies +squadron +squadrons +squads +squalid +squall +squalled +squalling +squalls +squally +squalor +squander +squandered +squandering +squanders +square +squared +squarely +squares +squaring +squarish +squash +squashed +squashes +squashing +squashy +squat +squats +squatted +squatter +squatters +squatting +squaw +squawk +squawked +squawking +squawks +squaws +squeak +squeaked +squeakier +squeakiest +squeaking +squeaks +squeaky +squeal +squealed +squealing +squeals +squeamish +squeamishly +squeamishness +squeegee +squeegees +squeeze +squeezebox +squeezeboxes +squeezed +squeezer +squeezers +squeezes +squeezing +squelch +squelched +squelches +squelching +squelchy +squib +squibs +squid +squidgy +squids +squiffy +squiggle +squiggles +squiggly +squint +squinted +squinting +squints +squire +squires +squirm +squirmed +squirming +squirms +squirrel +squirreled +squirreling +squirrelled +squirrelling +squirrels +squirt +squirted +squirting +squirts +squish +squished +squishes +squishier +squishiest +squishing +squishy +ssh +stab +stabbed +stabbing +stabbings +stabilisation +stabilise +stabilised +stabiliser +stabilisers +stabilises +stabilising +stability +stabilization +stabilize +stabilized +stabilizer +stabilizers +stabilizes +stabilizing +stable +stabled +stableman +stablemate +stablemates +stablemen +stabler +stables +stablest +stabling +stably +stabs +staccato +stack +stacked +stacking +stacks +stadia +stadium +stadiums +staff +staffed +staffer +staffers +staffing +staffs +stag +stage +stagecoach +stagecoaches +stagecraft +staged +stagehand +stagehands +stages +stagestruck +stagey +stagflation +stagger +staggered +staggering +staggeringly +staggers +staging +stagings +stagnant +stagnate +stagnated +stagnates +stagnating +stagnation +stags +stagy +staid +stain +stained +staining +stainless +stains +stair +staircase +staircases +stairs +stairway +stairways +stairwell +stairwells +stake +staked +stakeholder +stakeholders +stakeout +stakeouts +stakes +staking +stalactite +stalactites +stalagmite +stalagmites +stale +stalemate +stalemates +staleness +staler +stalest +stalk +stalked +stalker +stalkers +stalking +stalks +stall +stalled +stallholder +stallholders +stalling +stallion +stallions +stalls +stalwart +stalwartly +stalwarts +stamen +stamens +stamina +stammer +stammered +stammerer +stammerers +stammering +stammeringly +stammers +stamp +stamped +stampede +stampeded +stampedes +stampeding +stamping +stamps +stance +stances +stanch +stanched +stanches +stanching +stanchion +stanchions +stand +standard +standardisation +standardise +standardised +standardises +standardising +standardization +standardize +standardized +standardizes +standardizing +standards +standby +standbys +standing +standings +standoff +standoffish +standoffs +standout +standouts +standpipe +standpipes +standpoint +standpoints +stands +standstill +standup +stank +stanza +stanzas +staple +stapled +stapler +staplers +staples +stapling +star +starboard +starch +starched +starches +starchier +starchiest +starchily +starching +starchy +stardom +stardust +stare +stared +stares +starfish +starfishes +starfruit +stargazer +stargazers +stargazing +staring +stark +starker +starkers +starkest +starkly +starkness +starless +starlet +starlets +starlight +starling +starlings +starlit +starred +starring +starry +stars +starstruck +start +started +starter +starters +starting +startle +startled +startles +startling +startlingly +starts +starvation +starve +starved +starves +starving +stash +stashed +stashes +stashing +stasis +state +stated +statehood +statehouse +statehouses +stateless +statelessness +stateliness +stately +statement +statemented +statementing +statements +stateroom +staterooms +states +stateside +statesman +statesmanlike +statesmanship +statesmen +stateswoman +stateswomen +statewide +static +statics +stating +station +stationary +stationed +stationer +stationers +stationery +stationing +stationmaster +stationmasters +stations +statistic +statistical +statistically +statistician +statisticians +statistics +stats +statuary +statue +statues +statuesque +statuette +statuettes +stature +statures +status +statuses +statute +statutes +statutorily +statutory +staunch +staunched +stauncher +staunches +staunchest +staunching +staunchly +staunchness +stave +staved +staves +staving +stay +stayed +stayer +stayers +staying +stays +steadfast +steadfastly +steadfastness +steadied +steadier +steadies +steadiest +steadily +steadiness +steady +steadying +steak +steakhouse +steakhouses +steaks +steal +stealing +steals +stealth +stealthier +stealthiest +stealthily +stealthy +steam +steamboat +steamboats +steamed +steamer +steamers +steaming +steamroller +steamrollered +steamrollering +steamrollers +steams +steamship +steamships +steamy +steed +steeds +steel +steeled +steeling +steelmaker +steelmakers +steels +steelworker +steelworkers +steelworks +steely +steep +steeped +steepen +steepened +steepening +steepens +steeper +steepest +steeping +steeple +steeplechase +steeplechases +steeplejack +steeplejacks +steeples +steeply +steepness +steeps +steer +steerage +steered +steering +steers +stein +steins +stellar +stem +stemmed +stemming +stems +stench +stenches +stencil +stenciled +stenciling +stencilled +stencilling +stencils +steno +stenographer +stenographers +stenography +stenos +stentorian +step +stepbrother +stepbrothers +stepchild +stepchildren +stepdaughter +stepdaughters +stepfather +stepfathers +stepladder +stepladders +stepmother +stepmothers +stepparent +stepparents +steppe +stepped +steppes +stepping +steps +stepsister +stepsisters +stepson +stepsons +stereo +stereophonic +stereos +stereoscopic +stereotype +stereotyped +stereotypes +stereotypical +stereotyping +sterile +sterilisation +sterilisations +sterilise +sterilised +steriliser +sterilisers +sterilises +sterilising +sterility +sterilization +sterilizations +sterilize +sterilized +sterilizer +sterilizers +sterilizes +sterilizing +sterling +stern +sterna +sterner +sternest +sternly +sternness +sterns +sternum +sternums +steroid +steroids +stethoscope +stethoscopes +stetson +stetsons +stevedore +stevedores +stew +steward +stewardess +stewardesses +stewards +stewardship +stewed +stewing +stews +stick +sticker +stickers +stickier +stickiest +stickiness +sticking +stickleback +sticklebacks +stickler +sticklers +stickpin +stickpins +sticks +sticky +sties +stiff +stiffen +stiffened +stiffening +stiffens +stiffer +stiffest +stiffly +stiffness +stiffs +stifle +stifled +stifles +stifling +stiflingly +stigma +stigmas +stigmata +stigmatisation +stigmatise +stigmatised +stigmatises +stigmatising +stigmatization +stigmatize +stigmatized +stigmatizes +stigmatizing +stile +stiles +stiletto +stilettoes +stilettos +still +stillbirth +stillbirths +stillborn +stilled +stiller +stillest +stilling +stillness +stills +stilt +stilted +stiltedly +stilts +stimulant +stimulants +stimulate +stimulated +stimulates +stimulating +stimulation +stimulative +stimuli +stimulus +sting +stinger +stingers +stingier +stingiest +stingily +stinginess +stinging +stingray +stingrays +stings +stingy +stink +stinker +stinkers +stinking +stinks +stint +stinted +stinting +stints +stipend +stipendiaries +stipendiary +stipends +stipple +stippled +stipples +stippling +stipulate +stipulated +stipulates +stipulating +stipulation +stipulations +stir +stirred +stirrer +stirrers +stirring +stirringly +stirrings +stirrup +stirrups +stirs +stitch +stitched +stitches +stitching +stoat +stoats +stock +stockade +stockades +stockbroker +stockbrokers +stockbroking +stocked +stockholder +stockholders +stockier +stockiest +stockily +stockiness +stocking +stockings +stockist +stockists +stockpile +stockpiled +stockpiles +stockpiling +stockroom +stockrooms +stocks +stocktaking +stocky +stockyard +stockyards +stodge +stodgier +stodgiest +stodginess +stodgy +stogie +stogies +stoic +stoical +stoically +stoicism +stoics +stoke +stoked +stoker +stokers +stokes +stoking +stole +stolen +stoles +stolid +stolidity +stolidly +stomach +stomached +stomaching +stomachs +stomp +stomped +stomping +stomps +stone +stoned +stonemason +stonemasons +stones +stonewall +stonewalled +stonewalling +stonewalls +stoneware +stonewashed +stonework +stonier +stoniest +stonily +stoning +stonkered +stonking +stony +stood +stooge +stooges +stool +stools +stoop +stooped +stooping +stoops +stop +stopcock +stopcocks +stopgap +stopgaps +stoplight +stoplights +stopover +stopovers +stoppage +stoppages +stopped +stopper +stoppers +stopping +stops +stopwatch +stopwatches +storage +store +stored +storefront +storefronts +storehouse +storehouses +storekeeper +storekeepers +storeroom +storerooms +stores +storey +storeys +storied +stories +storing +stork +storks +storm +stormed +stormier +stormiest +storming +storms +stormy +story +storyboard +storyboards +storybook +storybooks +storyteller +storytellers +storytelling +stoup +stoups +stout +stouter +stoutest +stouthearted +stoutly +stoutness +stouts +stove +stoves +stow +stowage +stowaway +stowaways +stowed +stowing +stows +straddle +straddled +straddles +straddling +strafe +strafed +strafes +strafing +straggle +straggled +straggler +stragglers +straggles +stragglier +straggliest +straggling +straggly +straight +straightaway +straightaways +straighten +straightened +straightening +straightens +straighter +straightest +straightforward +straightforwardly +straightforwardness +straightjacket +straightjackets +straights +strain +strained +strainer +strainers +straining +strains +strait +straitened +straitjacket +straitjackets +straitlaced +straits +strand +stranded +stranding +strands +strange +strangely +strangeness +stranger +strangers +strangest +strangle +strangled +stranglehold +strangler +stranglers +strangles +strangling +strangulated +strangulation +strap +strapless +strapped +strapping +straps +strata +stratagem +stratagems +strategic +strategical +strategically +strategies +strategist +strategists +strategy +stratification +stratified +stratifies +stratify +stratifying +stratosphere +stratospheric +stratum +straw +strawberries +strawberry +straws +stray +strayed +straying +strays +streak +streaked +streaker +streakers +streakier +streakiest +streaking +streaks +streaky +stream +streamed +streamer +streamers +streaming +streamline +streamlined +streamlines +streamlining +streams +street +streetcar +streetcars +streetlamp +streetlamps +streetlight +streetlights +streets +streetwalker +streetwalkers +streetwise +strength +strengthen +strengthened +strengthening +strengthens +strengths +strenuous +strenuously +strep +streptococcal +streptococci +streptococcus +stress +stressed +stresses +stressful +stressing +stretch +stretched +stretcher +stretchered +stretchering +stretchers +stretches +stretchier +stretchiest +stretching +stretchmarks +stretchy +strew +strewed +strewing +strewn +strews +strewth +striated +striation +striations +stricken +strict +stricter +strictest +strictly +strictness +stricture +strictures +stridden +stride +stridency +strident +stridently +strides +striding +strife +strike +strikebound +strikebreaker +strikebreakers +strikebreaking +strikeout +strikeouts +striker +strikers +strikes +striking +strikingly +string +stringency +stringent +stringently +stringer +stringers +stringier +stringiest +stringing +strings +stringy +strip +stripe +striped +stripes +stripey +stripling +striplings +stripped +stripper +strippers +stripping +strips +striptease +stripteases +stripy +strive +strived +striven +strives +striving +strobe +strobes +strode +stroke +stroked +strokes +stroking +stroll +strolled +stroller +strollers +strolling +strolls +strong +strongbox +strongboxes +stronger +strongest +stronghold +strongholds +strongly +strongman +strongmen +strongroom +strongrooms +strontium +strop +stroppier +stroppiest +stroppily +stroppiness +stroppy +strops +strove +struck +structural +structuralism +structuralist +structuralists +structurally +structure +structured +structures +structuring +strudel +strudels +struggle +struggled +struggles +struggling +strum +strummed +strumming +strumpet +strumpets +strums +strung +strut +struts +strutted +strutting +strychnine +stub +stubbed +stubbier +stubbiest +stubbing +stubble +stubbly +stubborn +stubbornly +stubbornness +stubby +stubs +stucco +stuccoed +stuck +stud +studbook +studbooks +studded +studding +student +students +studied +studies +studio +studios +studious +studiously +studiousness +studs +study +studying +stuff +stuffed +stuffier +stuffiest +stuffily +stuffiness +stuffing +stuffs +stuffy +stultified +stultifies +stultify +stultifying +stumble +stumbled +stumbles +stumbling +stump +stumped +stumpier +stumpiest +stumping +stumps +stumpy +stun +stung +stunk +stunned +stunner +stunners +stunning +stunningly +stuns +stunt +stunted +stunting +stuntman +stuntmen +stunts +stupefaction +stupefied +stupefies +stupefy +stupefying +stupendous +stupendously +stupid +stupider +stupidest +stupidities +stupidity +stupidly +stupor +stupors +sturdier +sturdiest +sturdily +sturdiness +sturdy +sturgeon +sturgeons +stutter +stuttered +stuttering +stutters +sty +stye +styes +style +styled +styles +styling +stylised +stylish +stylishly +stylishness +stylist +stylistic +stylistically +stylistics +stylists +stylized +stylus +styluses +stymie +stymied +stymieing +stymies +suave +suavely +suavity +sub +subaltern +subalterns +subaqua +subarctic +subatomic +subbed +subbing +subcommittee +subcommittees +subcompact +subcompacts +subconscious +subconsciously +subcontinent +subcontinents +subcontract +subcontracted +subcontracting +subcontractor +subcontractors +subcontracts +subculture +subcultures +subcutaneous +subcutaneously +subdivide +subdivided +subdivides +subdividing +subdivision +subdivisions +subdue +subdued +subdues +subduing +subeditor +subeditors +subgroup +subgroups +subheading +subheadings +subhuman +subject +subjected +subjecting +subjection +subjective +subjectively +subjectivity +subjects +subjugate +subjugated +subjugates +subjugating +subjugation +subjunctive +subjunctives +sublet +sublets +subletting +sublieutenant +sublieutenants +sublimate +sublimated +sublimates +sublimating +sublimation +sublime +sublimely +subliminal +subliminally +sublimity +submarine +submariner +submariners +submarines +submerge +submerged +submerges +submerging +submersible +submersibles +submersion +submission +submissions +submissive +submissively +submissiveness +submit +submits +submitted +submitting +subnormal +subordinate +subordinated +subordinates +subordinating +subordination +suborn +suborned +suborning +suborns +subplot +subplots +subpoena +subpoenaed +subpoenaing +subpoenas +subs +subscribe +subscribed +subscriber +subscribers +subscribes +subscribing +subscription +subscriptions +subsection +subsections +subsequent +subsequently +subservience +subservient +subserviently +subset +subsets +subside +subsided +subsidence +subsides +subsidiaries +subsidiarity +subsidiary +subsidies +subsiding +subsidisation +subsidise +subsidised +subsidiser +subsidisers +subsidises +subsidising +subsidization +subsidize +subsidized +subsidizer +subsidizers +subsidizes +subsidizing +subsidy +subsist +subsisted +subsistence +subsisting +subsists +subsoil +subsonic +subspecies +substance +substances +substandard +substantial +substantially +substantiate +substantiated +substantiates +substantiating +substantiation +substantive +substantives +substation +substations +substitute +substituted +substitutes +substituting +substitution +substitutions +substrata +substratum +substructure +substructures +subsume +subsumed +subsumes +subsuming +subtenant +subtenants +subtend +subtended +subtending +subtends +subterfuge +subterfuges +subterranean +subtext +subtexts +subtitle +subtitled +subtitles +subtitling +subtle +subtler +subtlest +subtleties +subtlety +subtly +subtotal +subtotals +subtract +subtracted +subtracting +subtraction +subtractions +subtracts +subtropical +suburb +suburban +suburbanite +suburbanites +suburbia +suburbs +subvention +subventions +subversion +subversive +subversively +subversiveness +subversives +subvert +subverted +subverting +subverts +subway +subways +subzero +succeed +succeeded +succeeding +succeeds +success +successes +successful +successfully +succession +successions +successive +successively +successor +successors +succinct +succinctly +succinctness +succor +succored +succoring +succors +succour +succoured +succouring +succours +succubi +succubus +succulence +succulent +succulents +succumb +succumbed +succumbing +succumbs +such +suchlike +suck +sucked +sucker +suckered +suckering +suckers +sucking +suckle +suckled +suckles +suckling +sucklings +sucks +sucrose +suction +suctioned +suctioning +suctions +sudden +suddenly +suddenness +suds +sudsy +sue +sued +suede +sues +suet +suffer +suffered +sufferer +sufferers +suffering +sufferings +suffers +suffice +sufficed +suffices +sufficiency +sufficient +sufficiently +sufficing +suffix +suffixes +suffocate +suffocated +suffocates +suffocating +suffocation +suffragan +suffragans +suffrage +suffragette +suffragettes +suffragist +suffragists +suffuse +suffused +suffuses +suffusing +sugar +sugared +sugaring +sugars +sugary +suggest +suggested +suggestible +suggesting +suggestion +suggestions +suggestive +suggestively +suggests +suicidal +suicide +suicides +suing +suit +suitability +suitable +suitably +suitcase +suitcases +suite +suited +suites +suiting +suitor +suitors +suits +sulfate +sulfates +sulfide +sulfides +sulfur +sulfurous +sulk +sulked +sulkily +sulkiness +sulking +sulks +sulky +sullen +sullenly +sullenness +sullied +sullies +sully +sullying +sulphate +sulphates +sulphide +sulphides +sulphur +sulphurous +sultan +sultana +sultanas +sultanate +sultanates +sultans +sultrier +sultriest +sultriness +sultry +sum +summaries +summarily +summarise +summarised +summarises +summarising +summarize +summarized +summarizes +summarizing +summary +summat +summation +summations +summed +summer +summered +summerhouse +summerhouses +summering +summers +summertime +summery +summing +summit +summitry +summits +summon +summoned +summoning +summons +summonsed +summonses +summonsing +sumo +sump +sumps +sumptuous +sumptuously +sumptuousness +sums +sun +sunbathe +sunbathed +sunbathes +sunbathing +sunbeam +sunbeams +sunbed +sunbeds +sunbelt +sunblock +sunblocks +sunburn +sunburned +sunburns +sunburnt +sundae +sundaes +sundeck +sundecks +sunder +sundered +sundering +sunders +sundial +sundials +sundown +sundress +sundresses +sundries +sundry +sunflower +sunflowers +sung +sunglasses +sunhat +sunhats +sunk +sunken +sunlamp +sunlamps +sunless +sunlight +sunlit +sunned +sunnier +sunniest +sunning +sunny +sunrise +sunrises +sunroof +sunroofs +suns +sunscreen +sunscreens +sunset +sunsets +sunshade +sunshades +sunshine +sunspot +sunspots +sunstroke +suntan +suntanned +suntans +suntrap +suntraps +sunup +sup +super +superabundance +superabundances +superabundant +superannuated +superannuation +superb +superbly +supercharged +supercharger +superchargers +supercilious +superciliously +superciliousness +supercomputer +supercomputers +superconductivity +superconductor +superconductors +superego +superegos +superficial +superficiality +superficially +superfluity +superfluous +superfluously +superfluousness +superglue +supergrass +supergrasses +superhero +superheroes +superhighway +superhighways +superhuman +superimpose +superimposed +superimposes +superimposing +superintend +superintended +superintendence +superintendent +superintendents +superintending +superintends +superior +superiority +superiors +superlative +superlatively +superlatives +superman +supermarket +supermarkets +supermen +supermodel +supermodels +supernatural +supernaturally +supernova +supernovae +supernovas +supernumerary +superpower +superpowers +supers +superscript +supersede +superseded +supersedes +superseding +supersonic +superstar +superstars +superstate +superstates +superstition +superstitions +superstitious +superstitiously +superstore +superstores +superstructure +superstructures +supertanker +supertankers +supervene +supervened +supervenes +supervening +supervise +supervised +supervises +supervising +supervision +supervisor +supervisors +supervisory +superwoman +superwomen +supine +supinely +supped +supper +suppers +suppertime +supping +supplant +supplanted +supplanting +supplants +supple +supplement +supplemental +supplementary +supplementation +supplemented +supplementing +supplements +suppleness +suppler +supplest +suppliant +suppliants +supplicant +supplicants +supplicate +supplicated +supplicates +supplicating +supplication +supplications +supplied +supplier +suppliers +supplies +supply +supplying +support +supportable +supported +supporter +supporters +supporting +supportive +supports +suppose +supposed +supposedly +supposes +supposing +supposition +suppositions +suppositories +suppository +suppress +suppressant +suppressants +suppressed +suppresses +suppressing +suppression +suppressor +suppressors +suppurate +suppurated +suppurates +suppurating +supranational +supremacist +supremacists +supremacy +supreme +supremely +supremo +supremos +sups +surcharge +surcharged +surcharges +surcharging +sure +surefire +surefooted +surely +sureness +surer +surest +sureties +surety +surf +surface +surfaced +surfaces +surfacing +surfboard +surfboards +surfed +surfeit +surfer +surfers +surfing +surfs +surge +surged +surgeon +surgeons +surgeries +surgery +surges +surgical +surgically +surging +surlier +surliest +surliness +surly +surmise +surmised +surmises +surmising +surmount +surmountable +surmounted +surmounting +surmounts +surname +surnames +surpass +surpassed +surpasses +surpassing +surplice +surplices +surplus +surpluses +surprise +surprised +surprises +surprising +surprisingly +surreal +surrealism +surrealist +surrealistic +surrealists +surrender +surrendered +surrendering +surrenders +surreptitious +surreptitiously +surreptitiousness +surrogacy +surrogate +surrogates +surround +surrounded +surrounding +surroundings +surrounds +surtax +surtitle +surtitles +surveillance +survey +surveyed +surveying +surveyor +surveyors +surveys +survivable +survival +survivals +survive +survived +survives +surviving +survivor +survivors +susceptibilities +susceptibility +susceptible +sushi +suspect +suspected +suspecting +suspects +suspend +suspended +suspender +suspenders +suspending +suspends +suspense +suspension +suspensions +suspicion +suspicions +suspicious +suspiciously +suss +sussed +susses +sussing +sustain +sustainability +sustainable +sustained +sustaining +sustains +sustenance +suttee +suture +sutured +sutures +suturing +suzerainty +svelte +swab +swabbed +swabbing +swabs +swaddle +swaddled +swaddles +swaddling +swag +swagger +swaggered +swaggering +swaggers +swags +swain +swains +swallow +swallowed +swallowing +swallows +swam +swami +swamis +swamp +swamped +swampier +swampiest +swamping +swamps +swampy +swan +swank +swanked +swankier +swankiest +swanking +swanks +swanky +swanned +swanning +swans +swansong +swansongs +swap +swapped +swapping +swaps +sward +swards +swarm +swarmed +swarming +swarms +swarthier +swarthiest +swarthy +swashbuckler +swashbucklers +swashbuckling +swastika +swastikas +swat +swatch +swatches +swath +swathe +swathed +swathes +swathing +swaths +swats +swatted +swatting +sway +swayed +swaying +sways +swear +swearing +swears +sweat +sweatband +sweatbands +sweated +sweater +sweaters +sweatier +sweatiest +sweating +sweatpants +sweats +sweatshirt +sweatshirts +sweatshop +sweatshops +sweatsuit +sweatsuits +sweaty +swede +swedes +sweep +sweeper +sweepers +sweeping +sweeps +sweepstake +sweepstakes +sweet +sweetbread +sweetbreads +sweetcorn +sweeten +sweetened +sweetener +sweeteners +sweetening +sweetens +sweeter +sweetest +sweetheart +sweethearts +sweetie +sweeties +sweetish +sweetly +sweetmeat +sweetmeats +sweetness +sweets +swell +swelled +swelling +swellings +swells +swelter +sweltered +sweltering +swelters +swept +swerve +swerved +swerves +swerving +swift +swifter +swiftest +swiftly +swiftness +swifts +swig +swigged +swigging +swigs +swill +swilled +swilling +swills +swim +swimmer +swimmers +swimming +swimmingly +swims +swimsuit +swimsuits +swimwear +swindle +swindled +swindler +swindlers +swindles +swindling +swine +swines +swing +swingeing +swinger +swingers +swinging +swings +swinish +swipe +swiped +swipes +swiping +swirl +swirled +swirling +swirls +swish +swished +swisher +swishes +swishest +swishing +switch +switchback +switchbacks +switchblade +switchblades +switchboard +switchboards +switched +switches +switching +swivel +swiveled +swiveling +swivelled +swivelling +swivels +swiz +swizz +swollen +swoon +swooned +swooning +swoons +swoop +swooped +swooping +swoops +swoosh +swooshed +swooshes +swooshing +swop +swopped +swopping +swops +sword +swordfish +swordfishes +swords +swordsman +swordsmanship +swordsmen +swore +sworn +swot +swots +swotted +swotting +swum +swung +sybarite +sybarites +sybaritic +sycamore +sycamores +sycophancy +sycophant +sycophantic +sycophants +syllabi +syllabic +syllable +syllables +syllabub +syllabubs +syllabus +syllabuses +syllogism +syllogisms +syllogistic +sylphlike +sylvan +symbiosis +symbiotic +symbiotically +symbol +symbolic +symbolical +symbolically +symbolise +symbolised +symbolises +symbolising +symbolism +symbolize +symbolized +symbolizes +symbolizing +symbols +symmetric +symmetrical +symmetrically +symmetry +sympathetic +sympathetically +sympathies +sympathise +sympathised +sympathiser +sympathisers +sympathises +sympathising +sympathize +sympathized +sympathizer +sympathizers +sympathizes +sympathizing +sympathy +symphonic +symphonies +symphony +symposia +symposium +symposiums +symptom +symptomatic +symptoms +synagogue +synagogues +synapse +synapses +synaptic +sync +synch +synchronicity +synchronisation +synchronise +synchronised +synchronises +synchronising +synchronization +synchronize +synchronized +synchronizes +synchronizing +synchronous +syncopated +syncopation +syndicalism +syndicalist +syndicalists +syndicate +syndicated +syndicates +syndicating +syndication +syndrome +syndromes +synergies +synergy +synod +synods +synonym +synonymous +synonyms +synopses +synopsis +syntactic +syntactically +syntax +syntheses +synthesis +synthesise +synthesised +synthesiser +synthesisers +synthesises +synthesising +synthesize +synthesized +synthesizer +synthesizers +synthesizes +synthesizing +synthetic +synthetically +synthetics +syphilis +syphon +syphoned +syphoning +syphons +syringe +syringed +syringes +syringing +syrup +syrupy +system +systematic +systematically +systematisation +systematise +systematised +systematises +systematising +systematization +systematize +systematized +systematizes +systematizing +systemic +systemically +systems +ta +tab +tabbies +tabby +tabernacle +tabernacles +table +tableau +tableaux +tablecloth +tablecloths +tabled +tables +tablespoon +tablespoonful +tablespoonfuls +tablespoons +tablespoonsful +tablet +tablets +tableware +tabling +tabloid +tabloids +taboo +taboos +tabs +tabular +tabulate +tabulated +tabulates +tabulating +tabulation +tabulations +tachograph +tachographs +tachometer +tachometers +tacit +tacitly +taciturn +taciturnity +tack +tacked +tackier +tackiest +tackiness +tacking +tackle +tackled +tackles +tackling +tacks +tacky +taco +tacos +tact +tactful +tactfully +tactic +tactical +tactically +tactician +tacticians +tactics +tactile +tactless +tactlessly +tactlessness +tadpole +tadpoles +taffeta +taffy +tag +tagged +tagging +tagliatelle +tags +tail +tailback +tailbacks +tailboard +tailboards +tailbone +tailbones +tailcoat +tailcoats +tailed +tailgate +tailgated +tailgates +tailgating +tailing +taillight +taillights +tailor +tailored +tailoring +tailors +tailpiece +tailpieces +tailpipe +tailpipes +tails +tailspin +tailspins +tailwind +tailwinds +taint +tainted +tainting +taints +take +takeaway +takeaways +taken +takeoff +takeoffs +takeout +takeouts +takeover +takeovers +taker +takers +takes +taking +takings +talc +tale +talent +talented +talents +tales +talisman +talismans +talk +talkative +talked +talker +talkers +talkie +talkies +talking +talks +tall +tallboy +tallboys +taller +tallest +tallied +tallies +tallness +tallow +tally +tallying +talon +talons +tamarind +tamarinds +tambourine +tambourines +tame +tamed +tamely +tameness +tamer +tamers +tames +tamest +taming +tamoxifen +tamp +tamped +tamper +tampered +tampering +tampers +tamping +tampon +tampons +tamps +tan +tandem +tandems +tandoori +tang +tangent +tangential +tangents +tangerine +tangerines +tangible +tangibly +tangier +tangiest +tangle +tangled +tangles +tangling +tango +tangoed +tangoing +tangos +tangs +tangy +tank +tankard +tankards +tanked +tanker +tankers +tankful +tankfuls +tanks +tanned +tanner +tanneries +tanners +tannery +tannin +tanning +tans +tantalise +tantalised +tantalises +tantalising +tantalisingly +tantalize +tantalized +tantalizes +tantalizing +tantalizingly +tantamount +tantrum +tantrums +tap +tapas +tape +taped +taper +tapered +tapering +tapers +tapes +tapestries +tapestry +tapeworm +tapeworms +taping +tapioca +tapir +tapirs +tapped +tappet +tappets +tapping +taproot +taproots +taps +tar +taramasalata +tarantula +tarantulas +tardier +tardiest +tardily +tardiness +tardy +target +targeted +targeting +targets +tariff +tariffs +tarmac +tarmacadam +tarmacked +tarmacking +tarmacs +tarn +tarnish +tarnished +tarnishes +tarnishing +tarns +taro +taros +tarot +tarp +tarpaulin +tarpaulins +tarps +tarragon +tarred +tarried +tarries +tarring +tarry +tarrying +tars +tart +tartan +tartans +tartar +tartars +tarted +tartiest +tarting +tartly +tartness +tarts +tarty +task +tasked +tasking +taskmaster +taskmasters +tasks +tassel +tasseled +tasselled +tassels +taste +tasted +tasteful +tastefully +tasteless +tastelessly +taster +tasters +tastes +tastier +tastiest +tasting +tastings +tasty +tat +tater +taters +tattered +tatters +tattie +tattier +tatties +tattiest +tattle +tattled +tattles +tattletale +tattletales +tattling +tattoo +tattooed +tattooing +tattooist +tattooists +tattoos +tatty +taught +taunt +taunted +taunting +taunts +taupe +taut +tauten +tautened +tautening +tautens +tauter +tautest +tautly +tautness +tautological +tautologically +tautologies +tautology +tavern +taverns +tawdrier +tawdriest +tawdriness +tawdry +tawny +tax +taxable +taxation +taxed +taxes +taxi +taxicab +taxicabs +taxidermist +taxidermists +taxidermy +taxied +taxiing +taxing +taxis +taxiway +taxiways +taxman +taxmen +taxonomies +taxonomy +taxpayer +taxpayers +tea +teabag +teabags +teacake +teacakes +teach +teacher +teachers +teaches +teaching +teachings +teacup +teacups +teak +teal +teals +team +teamed +teaming +teammate +teammates +teams +teamster +teamsters +teamwork +teapot +teapots +tear +tearaway +tearaways +teardrop +teardrops +tearful +tearfully +tearing +tearoom +tearooms +tears +teas +tease +teased +teasel +teasels +teaser +teasers +teases +teasing +teasingly +teaspoon +teaspoonful +teaspoonfuls +teaspoons +teat +teatime +teatimes +teats +teazel +teazels +teazle +teazles +tech +techie +techies +technical +technicalities +technicality +technically +technician +technicians +technicolor +technicolour +technique +techniques +techno +technocracies +technocracy +technocrat +technocratic +technocrats +technological +technologically +technologies +technologist +technologists +technology +technophobe +technophobes +techs +tectonic +ted +teddies +teddy +tedious +tediously +tediousness +tedium +teds +tee +teed +teeing +teem +teemed +teeming +teems +teen +teenage +teenaged +teenager +teenagers +teenier +teeniest +teens +teensier +teensiest +teensy +teeny +teenybopper +teenyboppers +teepee +teepees +tees +teeter +teetered +teetering +teeters +teeth +teethe +teethed +teethes +teething +teetotal +teetotaler +teetotalers +teetotalism +teetotaller +teetotallers +telecast +telecasting +telecasts +telecommunication +telecommunications +telecommuter +telecommuters +telecommuting +teleconference +teleconferences +teleconferencing +telegenic +telegram +telegrams +telegraph +telegraphed +telegraphese +telegraphic +telegraphing +telegraphs +telegraphy +telemarketing +telemetry +teleological +teleology +telepathic +telepathically +telepathy +telephone +telephoned +telephones +telephoning +telephonist +telephonists +telephony +teleprinter +teleprinters +telesales +telescope +telescoped +telescopes +telescopic +telescoping +teletext +telethon +telethons +teletypewriter +teletypewriters +televangelism +televangelist +televangelists +televise +televised +televises +televising +television +televisions +teleworker +teleworkers +teleworking +telex +telexed +telexes +telexing +tell +teller +tellers +tellies +telling +tellingly +tells +telltale +telltales +telly +temerity +temp +temped +temper +tempera +temperament +temperamental +temperamentally +temperaments +temperance +temperate +temperature +temperatures +tempered +tempering +tempers +tempest +tempests +tempestuous +tempestuously +tempi +temping +template +templates +temple +temples +tempo +temporal +temporarily +temporariness +temporary +temporise +temporised +temporises +temporising +temporize +temporized +temporizes +temporizing +tempos +temps +tempt +temptation +temptations +tempted +tempting +temptingly +temptress +temptresses +tempts +ten +tenable +tenacious +tenaciously +tenacity +tenancies +tenancy +tenant +tenants +tench +tend +tended +tendencies +tendency +tendentious +tendentiously +tendentiousness +tender +tendered +tenderer +tenderest +tenderfoot +tendering +tenderise +tenderised +tenderises +tenderising +tenderize +tenderized +tenderizes +tenderizing +tenderloin +tenderly +tenderness +tenders +tending +tendon +tendons +tendril +tendrils +tends +tenement +tenements +tenet +tenets +tenfold +tenner +tenners +tennis +tenon +tenons +tenor +tenors +tenpin +tenpins +tens +tense +tensed +tensely +tenseness +tenser +tenses +tensest +tensile +tensing +tension +tensions +tent +tentacle +tentacles +tentative +tentatively +tentativeness +tented +tenth +tenths +tents +tenuous +tenuously +tenure +tenured +tepee +tepees +tepid +tequila +tequilas +tercentenaries +tercentenary +term +termagant +termagants +termed +terminal +terminally +terminals +terminate +terminated +terminates +terminating +termination +terminations +terming +termini +terminological +terminologies +terminology +terminus +terminuses +termite +termites +termly +terms +tern +terns +terrace +terraced +terraces +terracing +terracotta +terrain +terrains +terrapin +terrapins +terrestrial +terrible +terribly +terrier +terriers +terrific +terrifically +terrified +terrifies +terrify +terrifying +terrifyingly +terrine +terrines +territorial +territoriality +territorials +territories +territory +terror +terrorise +terrorised +terrorises +terrorising +terrorism +terrorist +terrorists +terrorize +terrorized +terrorizes +terrorizing +terrors +terry +terse +tersely +terseness +terser +tersest +tertiary +tessellated +tessellation +tessellations +test +testament +testaments +tested +tester +testers +testes +testicle +testicles +testicular +testier +testiest +testified +testifies +testify +testifying +testily +testimonial +testimonials +testimonies +testimony +testiness +testing +testis +testosterone +tests +testy +tetanus +tetchier +tetchiest +tetchily +tetchiness +tetchy +tether +tethered +tethering +tethers +text +textbook +textbooks +textile +textiles +texts +textual +textural +texture +textured +textures +thalidomide +than +thank +thanked +thankful +thankfully +thankfulness +thanking +thankless +thanks +thanksgiving +thanksgivings +that +thatch +thatched +thatcher +thatchers +thatches +thatching +thaw +thawed +thawing +thaws +the +theater +theatergoer +theatergoers +theaters +theatre +theatregoer +theatregoers +theatres +theatrical +theatricality +theatrically +theatricals +thee +theft +thefts +their +theirs +theism +them +thematic +thematically +theme +themed +themes +themselves +then +thence +thenceforth +thenceforward +theocracies +theocracy +theocratic +theodolite +theodolites +theologian +theologians +theological +theologically +theologies +theology +theorem +theorems +theoretic +theoretical +theoretically +theoretician +theoreticians +theories +theorise +theorised +theorises +theorising +theorist +theorists +theorize +theorized +theorizes +theorizing +theory +therapeutic +therapeutically +therapeutics +therapies +therapist +therapists +therapy +there +thereabouts +thereafter +thereby +therefore +therein +thereof +thereon +thereupon +therm +thermal +thermally +thermals +thermodynamic +thermodynamics +thermometer +thermometers +thermonuclear +thermoplastic +thermostat +thermostatically +thermostats +therms +thesauri +thesaurus +thesauruses +these +theses +thesis +thespian +thespians +they +thick +thicken +thickened +thickener +thickeners +thickening +thickenings +thickens +thicker +thickest +thicket +thickets +thickly +thickness +thicknesses +thicko +thickos +thickset +thief +thieves +thieving +thigh +thighs +thimble +thimbleful +thimblefuls +thimbles +thin +thine +thing +thingamabob +thingamabobs +thingamajig +thingamajigs +thingies +things +thingumabob +thingumabobs +thingummies +thingummy +thingy +think +thinkable +thinker +thinkers +thinking +thinks +thinly +thinned +thinner +thinnest +thinning +thins +third +thirdly +thirds +thirst +thirsted +thirstier +thirstiest +thirstily +thirsting +thirsts +thirsty +thirteen +thirteens +thirteenth +thirteenths +thirties +thirtieth +thirtieths +thirty +this +thistle +thistledown +thistles +thither +thong +thongs +thoraces +thoracic +thorax +thoraxes +thorn +thornier +thorniest +thorns +thorny +thorough +thoroughbred +thoroughbreds +thoroughfare +thoroughfares +thoroughgoing +thoroughly +thoroughness +those +thou +though +thought +thoughtful +thoughtfully +thoughtfulness +thoughtless +thoughtlessly +thoughtlessness +thoughts +thousand +thousands +thousandth +thousandths +thrash +thrashed +thrashes +thrashing +thrashings +thread +threadbare +threaded +threading +threads +threat +threaten +threatened +threatening +threateningly +threatens +threats +three +threepence +threes +threesome +threesomes +thresh +threshed +threshes +threshing +threshold +thresholds +threw +thrice +thrift +thriftier +thriftiest +thriftily +thriftiness +thrifty +thrill +thrilled +thriller +thrillers +thrilling +thrillingly +thrills +thrive +thrived +thrives +thriving +throat +throatily +throatiness +throats +throaty +throb +throbbed +throbbing +throbs +throes +thromboses +thrombosis +throne +thrones +throng +thronged +thronging +throngs +throttle +throttled +throttles +throttling +through +throughout +throughput +throughway +throughways +throve +throw +throwaway +throwaways +throwback +throwbacks +throwing +thrown +throws +thru +thrum +thrummed +thrumming +thrums +thrush +thrushes +thrust +thrusting +thrusts +thruway +thruways +thud +thudded +thudding +thuds +thug +thuggery +thuggish +thugs +thumb +thumbed +thumbing +thumbnail +thumbnails +thumbprint +thumbprints +thumbs +thumbscrew +thumbscrews +thumbtack +thumbtacks +thump +thumped +thumping +thumps +thunder +thunderbolt +thunderbolts +thunderclap +thunderclaps +thundercloud +thunderclouds +thundered +thundering +thunderous +thunderously +thunders +thunderstorm +thunderstorms +thunderstruck +thundery +thus +thwack +thwacked +thwacking +thwacks +thwart +thwarted +thwarting +thwarts +thy +thyme +thyroid +thyroids +thyself +ti +tiara +tiaras +tibia +tibiae +tibias +tic +tick +ticked +ticker +tickers +ticket +ticketed +ticketing +tickets +ticking +tickle +tickled +tickles +tickling +ticklish +ticks +tics +tidal +tidbit +tidbits +tiddler +tiddlers +tiddly +tiddlywink +tiddlywinks +tide +tided +tidemark +tidemarks +tides +tidewater +tidewaters +tidied +tidier +tidies +tidiest +tidily +tidiness +tiding +tidings +tidy +tidying +tie +tiebreak +tiebreaker +tiebreakers +tiebreaks +tied +tiepin +tiepins +tier +tiered +tiers +ties +tiff +tiffs +tiger +tigers +tight +tighten +tightened +tightening +tightens +tighter +tightest +tightly +tightness +tightrope +tightropes +tights +tightwad +tightwads +tigress +tigresses +tike +tikes +til +tilde +tildes +tile +tiled +tiler +tilers +tiles +tiling +till +tilled +tiller +tillers +tilling +tills +tilt +tilted +tilting +tilts +timber +timbered +timberline +timbers +timbre +timbres +time +timed +timekeeper +timekeepers +timekeeping +timeless +timelessly +timelessness +timelier +timeliest +timeliness +timely +timepiece +timepieces +timer +timers +times +timeserver +timeservers +timeserving +timeshare +timeshares +timetable +timetabled +timetables +timetabling +timeworn +timid +timidity +timidly +timing +timorous +timorously +timorousness +timpani +timpanist +timpanists +tin +tincture +tinctures +tinder +tinderbox +tinderboxes +tine +tines +tinfoil +ting +tinge +tinged +tinges +tinging +tingle +tingled +tingles +tingling +tingly +tings +tinier +tiniest +tinker +tinkered +tinkering +tinkers +tinkle +tinkled +tinkles +tinkling +tinned +tinnier +tinniest +tinnitus +tinny +tinplate +tinpot +tins +tinsel +tint +tinted +tinting +tints +tiny +tip +tipped +tippex +tippexed +tippexes +tippexing +tipping +tipple +tippled +tippler +tipplers +tipples +tippling +tips +tipsier +tipsiest +tipsily +tipsiness +tipster +tipsters +tipsy +tiptoe +tiptoed +tiptoeing +tiptoes +tirade +tirades +tire +tired +tiredly +tiredness +tireless +tirelessly +tires +tiresome +tiresomely +tiring +tissue +tissues +tit +titan +titanic +titanium +titans +titbit +titbits +titch +titches +titchy +tithe +tithes +titian +titillate +titillated +titillates +titillating +titillation +titivate +titivated +titivates +titivating +title +titled +titles +titling +tits +titter +tittered +tittering +titters +titties +titty +titular +tizz +tizzy +to +toad +toadied +toadies +toads +toadstool +toadstools +toady +toadying +toast +toasted +toaster +toasters +toastier +toasties +toastiest +toasting +toastmaster +toastmasters +toasts +toasty +tobacco +tobacconist +tobacconists +tobaccos +toboggan +tobogganed +tobogganing +toboggans +toccata +toccatas +today +toddies +toddle +toddled +toddler +toddlers +toddles +toddling +toddy +toe +toecap +toecaps +toed +toehold +toeholds +toeing +toenail +toenails +toerag +toerags +toes +toff +toffee +toffees +toffs +tofu +tog +toga +togas +together +togetherness +togged +togging +toggle +toggled +toggles +toggling +togs +toil +toiled +toilet +toiletries +toilets +toiling +toils +token +tokenism +tokens +told +tolerable +tolerably +tolerance +tolerances +tolerant +tolerantly +tolerate +tolerated +tolerates +tolerating +toleration +toll +tollbooth +tollbooths +tolled +tollgate +tollgates +tolling +tolls +tom +tomahawk +tomahawks +tomato +tomatoes +tomb +tombola +tombolas +tomboy +tomboys +tombs +tombstone +tombstones +tomcat +tomcats +tome +tomes +tomfooleries +tomfoolery +tomorrow +tomorrows +toms +ton +tonal +tonalities +tonality +tone +toned +toneless +tonelessly +toner +toners +tones +tongs +tongue +tongues +tonic +tonics +tonier +toniest +tonight +toning +tonnage +tonnages +tonne +tonnes +tons +tonsil +tonsillitis +tonsils +tonsure +tonsures +tony +too +took +tool +tooled +tooling +tools +toot +tooted +tooth +toothache +toothaches +toothbrush +toothbrushes +toothless +toothpaste +toothpastes +toothpick +toothpicks +toothsome +toothy +tooting +tootle +tootled +tootles +tootling +toots +tootsie +tootsies +top +topaz +topazes +topcoat +topcoats +topee +topees +topi +topiary +topic +topical +topicality +topically +topics +topis +topknot +topknots +topless +topmost +topographer +topographers +topographical +topographically +topographies +topography +topped +topper +toppers +topping +toppings +topple +toppled +topples +toppling +tops +topside +topsides +topsoil +topspin +tor +torch +torched +torches +torching +torchlight +tore +toreador +toreadors +torment +tormented +tormenting +tormentor +tormentors +torments +torn +tornado +tornadoes +tornados +torpedo +torpedoed +torpedoes +torpedoing +torpid +torpidity +torpidly +torpor +torque +torrent +torrential +torrents +torrid +tors +torsion +torso +torsos +tort +tortilla +tortillas +tortoise +tortoises +tortoiseshell +tortoiseshells +torts +tortuous +tortuously +tortuousness +torture +tortured +torturer +torturers +tortures +torturing +torturous +tosh +toss +tossed +tosser +tossers +tosses +tossing +tot +total +totaled +totaling +totalitarian +totalitarianism +totality +totalled +totalling +totally +totals +tote +toted +totem +totemic +totems +totes +toting +tots +totted +totter +tottered +tottering +totters +totting +toucan +toucans +touch +touchdown +touchdowns +touche +touched +touches +touchier +touchiest +touchily +touchiness +touching +touchingly +touchline +touchlines +touchpaper +touchpapers +touchstone +touchstones +touchy +tough +toughed +toughen +toughened +toughening +toughens +tougher +toughest +toughie +toughies +toughing +toughly +toughness +toughs +toupee +toupees +tour +toured +touring +tourism +tourist +tourists +touristy +tournament +tournaments +tourney +tourneys +tourniquet +tourniquets +tours +tousle +tousled +tousles +tousling +tout +touted +touting +touts +tow +toward +towards +towed +towel +toweled +towelette +towelettes +toweling +towelled +towelling +towels +tower +towered +towering +towers +towing +town +townee +townees +townhouse +townhouses +townie +townies +towns +townsfolk +township +townships +townspeople +towpath +towpaths +towrope +towropes +tows +toxaemia +toxemia +toxic +toxicities +toxicity +toxicological +toxicologist +toxicologists +toxicology +toxin +toxins +toy +toyboy +toyboys +toyed +toying +toys +trace +traceable +traced +tracer +traceries +tracers +tracery +traces +trachea +tracheae +tracheas +tracing +tracings +track +trackball +trackballs +tracked +tracker +trackers +tracking +tracks +tracksuit +tracksuits +tract +tractability +tractable +traction +tractor +tractors +tracts +trad +trade +traded +trademark +trademarks +trader +traders +trades +tradesman +tradesmen +tradespeople +trading +tradition +traditional +traditionalism +traditionalist +traditionalists +traditionally +traditions +traduce +traduced +traduces +traducing +traffic +trafficked +trafficker +traffickers +trafficking +traffics +tragedian +tragedians +tragedies +tragedy +tragic +tragically +tragicomedies +tragicomedy +tragicomic +trail +trailblazer +trailblazers +trailed +trailer +trailers +trailing +trails +train +trained +trainee +trainees +trainer +trainers +training +trains +trainspotter +trainspotters +trainspotting +traipse +traipsed +traipses +traipsing +trait +traitor +traitorous +traitorously +traitors +traits +trajectories +trajectory +tram +tramcar +tramcars +tramlines +trammel +trammeled +trammeling +trammels +tramp +tramped +tramping +trample +trampled +tramples +trampling +trampoline +trampolined +trampolines +trampolining +tramps +trams +tramway +tramways +trance +trances +tranche +tranches +tranquil +tranquility +tranquilize +tranquilized +tranquilizer +tranquilizers +tranquilizes +tranquilizing +tranquillise +tranquillised +tranquilliser +tranquillisers +tranquillises +tranquillising +tranquillity +tranquillize +tranquillized +tranquillizer +tranquillizers +tranquillizes +tranquillizing +tranquilly +transact +transacted +transacting +transaction +transactions +transacts +transatlantic +transceiver +transceivers +transcend +transcended +transcendence +transcendent +transcendental +transcending +transcends +transcontinental +transcribe +transcribed +transcribes +transcribing +transcript +transcription +transcriptions +transcripts +transducer +transducers +transept +transepts +transfer +transferable +transference +transferred +transferring +transfers +transfiguration +transfigure +transfigured +transfigures +transfiguring +transfix +transfixed +transfixes +transfixing +transform +transformation +transformations +transformed +transformer +transformers +transforming +transforms +transfusion +transfusions +transgenic +transgress +transgressed +transgresses +transgressing +transgression +transgressions +transgressor +transgressors +transience +transient +transients +transistor +transistorised +transistorized +transistors +transit +transition +transitional +transitions +transitive +transitively +transitives +transitivity +transitory +transits +translate +translated +translates +translating +translation +translations +translator +translators +transliterate +transliterated +transliterates +transliterating +transliteration +transliterations +translucence +translucent +transmigration +transmission +transmissions +transmit +transmits +transmitted +transmitter +transmitters +transmitting +transmogrified +transmogrifies +transmogrify +transmogrifying +transmutation +transmutations +transmute +transmuted +transmutes +transmuting +transnational +transom +transoms +transparencies +transparency +transparent +transparently +transpiration +transpire +transpired +transpires +transpiring +transplant +transplantation +transplanted +transplanting +transplants +transponder +transponders +transport +transportation +transported +transporter +transporters +transporting +transports +transpose +transposed +transposes +transposing +transposition +transpositions +transsexual +transsexuals +transubstantiation +transverse +transvestism +transvestite +transvestites +trap +trapdoor +trapdoors +trapeze +trapezes +trapezia +trapezium +trapeziums +trapezoid +trapezoids +trapped +trapper +trappers +trapping +trappings +traps +trapshooting +trash +trashcan +trashcans +trashed +trashes +trashier +trashiest +trashing +trashy +trauma +traumas +traumatic +traumatically +traumatise +traumatised +traumatises +traumatising +traumatize +traumatized +traumatizes +traumatizing +travails +travel +traveled +traveler +travelers +traveling +travelled +traveller +travellers +travelling +travelog +travelogs +travelogue +travelogues +travels +traverse +traversed +traverses +traversing +travesties +travesty +trawl +trawled +trawler +trawlers +trawling +trawls +tray +trays +treacheries +treacherous +treacherously +treachery +treacle +treacly +tread +treading +treadle +treadles +treadmill +treadmills +treads +treason +treasonable +treasonous +treasure +treasured +treasurer +treasurers +treasures +treasuries +treasuring +treasury +treat +treatable +treated +treaties +treating +treatise +treatises +treatment +treatments +treats +treaty +treble +trebled +trebles +trebling +tree +treeless +treeline +trees +treetop +treetops +trefoil +trefoils +trek +trekked +trekking +treks +trellis +trellises +tremble +trembled +trembles +trembling +tremendous +tremendously +tremolo +tremolos +tremor +tremors +tremulous +tremulously +trench +trenchancy +trenchant +trenchantly +trencher +trenchers +trenches +trend +trendier +trendies +trendiest +trendily +trendiness +trends +trendsetter +trendsetters +trendsetting +trendy +trepidation +trespass +trespassed +trespasser +trespassers +trespasses +trespassing +tresses +trestle +trestles +trews +triad +triads +triage +trial +trialed +trialing +trialled +trialling +trials +triangle +triangles +triangular +triangulation +triathlete +triathletes +triathlon +triathlons +tribal +tribalism +tribe +tribes +tribesman +tribesmen +tribeswoman +tribeswomen +tribulation +tribulations +tribunal +tribunals +tributaries +tributary +tribute +tributes +triceps +tricepses +trick +tricked +trickery +trickier +trickiest +tricking +trickle +trickled +trickles +trickling +tricks +trickster +tricksters +tricky +tricolor +tricolors +tricolour +tricolours +tricycle +tricycles +trident +tridents +tried +triennial +trier +triers +tries +trifle +trifled +trifles +trifling +trig +trigger +triggered +triggering +triggers +trigonometrical +trigonometry +trike +trikes +trilbies +trilby +trill +trilled +trilling +trillion +trillions +trills +trilogies +trilogy +trim +trimaran +trimarans +trimmed +trimmer +trimmers +trimmest +trimming +trimmings +trims +trinities +trinity +trinket +trinkets +trio +trios +trip +tripartite +tripe +triple +tripled +triples +triplet +triplets +tripling +tripod +tripods +tripped +tripper +trippers +tripping +trips +triptych +triptychs +tripwire +tripwires +trite +tritely +triteness +triumph +triumphal +triumphalism +triumphalist +triumphant +triumphantly +triumphed +triumphing +triumphs +triumvirate +triumvirates +trivet +trivets +trivia +trivial +trivialise +trivialised +trivialises +trivialising +trivialities +triviality +trivialize +trivialized +trivializes +trivializing +trivially +trod +trodden +troglodyte +troglodytes +troika +troikas +troll +trolled +trolley +trolleybus +trolleybuses +trolleys +trolling +trollop +trollops +trolls +trombone +trombones +trombonist +trombonists +tromp +tromped +tromping +tromps +troop +trooped +trooper +troopers +trooping +troops +troopship +troopships +trope +tropes +trophies +trophy +tropic +tropical +tropics +trot +trots +trotted +trotter +trotters +trotting +troubadour +troubadours +trouble +troubled +troublemaker +troublemakers +troubles +troubleshooter +troubleshooters +troubleshooting +troublesome +troubling +trough +troughs +trounce +trounced +trounces +trouncing +troupe +trouper +troupers +troupes +trouser +trousers +trousseau +trousseaus +trousseaux +trout +trouts +trowel +trowels +truancy +truant +truanted +truanting +truants +truce +truces +truck +trucked +trucker +truckers +trucking +truckle +truckles +truckload +truckloads +trucks +truculence +truculent +truculently +trudge +trudged +trudges +trudging +true +truelove +trueloves +truer +truest +truffle +truffles +trug +trugs +truism +truisms +truly +trump +trumped +trumpet +trumpeted +trumpeter +trumpeters +trumpeting +trumpets +trumping +trumps +truncate +truncated +truncates +truncating +truncation +truncheon +truncheons +trundle +trundled +trundles +trundling +trunk +trunks +truss +trussed +trusses +trussing +trust +trusted +trustee +trustees +trusteeship +trusteeships +trustful +trustfully +trustfulness +trusties +trusting +trusts +trustworthiness +trustworthy +trusty +truth +truthful +truthfully +truthfulness +truths +try +trying +tryout +tryst +trysts +tsar +tsarina +tsarinas +tsarism +tsarist +tsarists +tsars +tsunami +tsunamis +tub +tuba +tubas +tubbier +tubbiest +tubby +tube +tuber +tubercular +tuberculosis +tuberous +tubers +tubes +tubing +tubs +tubular +tuck +tucked +tucker +tuckered +tucking +tucks +tuft +tufted +tufts +tug +tugged +tugging +tugs +tuition +tulip +tulips +tulle +tum +tumble +tumbled +tumbledown +tumbler +tumblers +tumbles +tumbleweed +tumbling +tumescence +tumescent +tummies +tummy +tumor +tumors +tumour +tumours +tums +tumult +tumults +tumultuous +tumultuously +tuna +tunas +tundra +tundras +tune +tuned +tuneful +tunefully +tunefulness +tuneless +tunelessly +tuner +tuners +tunes +tungsten +tunic +tunics +tuning +tunnel +tunneled +tunneling +tunnelled +tunnelling +tunnels +tuppence +tuppenny +tuque +tuques +turban +turbaned +turbans +turbid +turbidity +turbine +turbines +turbo +turbocharge +turbocharged +turbocharger +turbochargers +turbocharges +turbocharging +turbojet +turbojets +turboprop +turboprops +turbos +turbot +turbots +turbulence +turbulent +turd +turds +tureen +tureens +turf +turfed +turfing +turfs +turgid +turgidity +turgidly +turkey +turkeys +turmeric +turmoil +turmoils +turn +turnabout +turnabouts +turnaround +turnarounds +turncoat +turncoats +turned +turning +turnings +turnip +turnips +turnkey +turnout +turnouts +turnover +turnovers +turnpike +turnpikes +turnround +turnrounds +turns +turnstile +turnstiles +turntable +turntables +turpentine +turpitude +turps +turquoise +turquoises +turret +turreted +turrets +turtle +turtledove +turtledoves +turtleneck +turtlenecks +turtles +turves +tush +tushes +tusk +tusks +tussle +tussled +tussles +tussling +tussock +tussocks +tut +tutelage +tutor +tutored +tutorial +tutorials +tutoring +tutors +tuts +tutted +tutting +tutu +tutus +tux +tuxedo +tuxedos +tuxes +twaddle +twang +twanged +twanging +twangs +twat +twats +tweak +tweaked +tweaking +tweaks +twee +tweed +tweeds +tweedy +tweet +tweeter +tweeters +tweets +tweezers +twelfth +twelfths +twelve +twelves +twenties +twentieth +twentieths +twenty +twerp +twerps +twice +twiddle +twiddled +twiddles +twiddling +twiddly +twig +twigged +twigging +twiggy +twigs +twilight +twilit +twill +twin +twine +twined +twines +twinge +twinges +twining +twinkle +twinkled +twinkles +twinkling +twinned +twinning +twins +twinset +twinsets +twirl +twirled +twirling +twirls +twirly +twist +twisted +twister +twisters +twisting +twists +twisty +twit +twitch +twitched +twitches +twitchier +twitchiest +twitching +twitchy +twits +twitter +twittered +twittering +twitters +twixt +two +twofold +twopence +twopenny +twos +twosome +twosomes +tycoon +tycoons +tying +tyke +tykes +type +typecast +typecasting +typecasts +typed +typeface +typefaces +types +typescript +typescripts +typeset +typesets +typesetter +typesetters +typesetting +typewriter +typewriters +typewritten +typhoid +typhoon +typhoons +typhus +typical +typically +typified +typifies +typify +typifying +typing +typist +typists +typo +typographer +typographers +typographic +typographical +typographically +typography +typologies +typology +typos +tyrannical +tyrannies +tyrannise +tyrannised +tyrannises +tyrannising +tyrannize +tyrannized +tyrannizes +tyrannizing +tyrannosaurus +tyrannosauruses +tyrannous +tyranny +tyrant +tyrants +tyre +tyres +tyro +tyros +tzar +tzarina +tzarinas +tzarism +tzarist +tzarists +tzars +ubiquitous +ubiquitously +ubiquity +udder +udders +ugh +uglier +ugliest +ugliness +ugly +uh +ukelele +ukeleles +ukulele +ukuleles +ulcer +ulcerate +ulcerated +ulcerates +ulcerating +ulceration +ulcerous +ulcers +ulna +ulterior +ultimata +ultimate +ultimately +ultimatum +ultimatums +ultramarine +ultrasonic +ultrasound +ultrasounds +ultraviolet +ululate +ululated +ululates +ululating +ululation +ululations +um +umber +umbrella +umbrellas +umlaut +umlauts +ump +umpire +umpired +umpires +umpiring +umps +umpteen +umpteenth +unabashed +unabated +unable +unabridged +unacceptable +unacceptably +unaccompanied +unaccountable +unaccountably +unaccustomed +unacknowledged +unacquainted +unadorned +unadulterated +unaffected +unaffectedly +unafraid +unaided +unalloyed +unalterable +unaltered +unambiguous +unambiguously +unambitious +unanimity +unanimous +unanimously +unannounced +unanswerable +unanswered +unapologetic +unappealing +unappetising +unappetizing +unapproachable +unarguable +unarguably +unarmed +unashamed +unashamedly +unasked +unassailable +unassisted +unassuming +unattached +unattainable +unattended +unattractive +unattractively +unauthorised +unauthorized +unavailable +unavailing +unavoidable +unavoidably +unaware +unawareness +unawares +unbalance +unbalanced +unbalances +unbalancing +unbearable +unbearably +unbeatable +unbeaten +unbecoming +unbeknown +unbeknownst +unbelief +unbelievable +unbelievably +unbeliever +unbelievers +unbelieving +unbend +unbending +unbends +unbent +unbiased +unbiassed +unbidden +unbind +unbinding +unbinds +unbleached +unblemished +unblinking +unblinkingly +unborn +unbound +unbounded +unbowed +unbreakable +unbridgeable +unbridled +unbroken +unbuckle +unbuckled +unbuckles +unbuckling +unburden +unburdened +unburdening +unburdens +unbutton +unbuttoned +unbuttoning +unbuttons +uncannier +uncanniest +uncannily +uncanny +uncaring +unceasing +unceasingly +unceremonious +unceremoniously +uncertain +uncertainly +uncertainties +uncertainty +unchallenged +unchangeable +unchanged +unchanging +uncharacteristic +uncharacteristically +uncharitable +uncharted +unchecked +uncivil +uncivilised +uncivilized +unclaimed +unclassified +uncle +unclean +unclear +uncles +unclothed +uncluttered +uncoil +uncoiled +uncoiling +uncoils +uncomfortable +uncomfortably +uncommitted +uncommon +uncommonly +uncommunicative +uncomplaining +uncomplainingly +uncomplicated +uncomplimentary +uncomprehending +uncomprehendingly +uncompromising +uncompromisingly +unconcern +unconcerned +unconcernedly +unconditional +unconditionally +unconfirmed +uncongenial +unconnected +unconscionable +unconscionably +unconscious +unconsciously +unconsciousness +unconsidered +unconstitutional +unconstitutionally +uncontested +uncontrollable +uncontrollably +uncontrolled +unconventional +unconventionally +unconvinced +unconvincing +unconvincingly +uncooked +uncool +uncooperative +uncoordinated +uncork +uncorked +uncorking +uncorks +uncorroborated +uncountable +uncouple +uncoupled +uncouples +uncoupling +uncouth +uncover +uncovered +uncovering +uncovers +uncritical +uncritically +uncrushable +unctuous +unctuously +uncultivated +uncurl +uncurled +uncurling +uncurls +uncut +undamaged +undated +undaunted +undecided +undeclared +undefeated +undefined +undemanding +undemocratic +undemonstrative +undeniable +undeniably +under +underachieve +underachieved +underachievement +underachiever +underachievers +underachieves +underachieving +underage +underarm +underarms +underbellies +underbelly +underbrush +undercarriage +undercarriages +undercharge +undercharged +undercharges +undercharging +underclass +underclasses +underclassman +underclassmen +underclothes +underclothing +undercoat +undercoats +undercover +undercurrent +undercurrents +undercut +undercuts +undercutting +underdeveloped +underdog +underdogs +underdone +underemployed +underestimate +underestimated +underestimates +underestimating +underestimation +underestimations +underexpose +underexposed +underexposes +underexposing +underfed +underfloor +underfoot +underfunded +undergarment +undergarments +undergo +undergoes +undergoing +undergone +undergraduate +undergraduates +underground +undergrowth +underhand +underhanded +underlain +underlay +underlays +underlie +underlies +underline +underlined +underlines +underling +underlings +underlining +underlying +undermanned +undermentioned +undermine +undermined +undermines +undermining +underneath +undernourished +undernourishment +underpaid +underpants +underpass +underpasses +underpay +underpaying +underpays +underpin +underpinned +underpinning +underpinnings +underpins +underplay +underplayed +underplaying +underplays +underprivileged +underrate +underrated +underrates +underrating +underscore +underscored +underscores +underscoring +undersea +undersecretaries +undersecretary +undersell +underselling +undersells +undershirt +undershirts +underside +undersides +undersigned +undersize +undersized +undersold +understaffed +understand +understandable +understandably +understanding +understandings +understands +understate +understated +understatement +understatements +understates +understating +understood +understudied +understudies +understudy +understudying +undertake +undertaken +undertaker +undertakers +undertakes +undertaking +undertakings +undertone +undertones +undertook +undertow +undertows +underused +underutilised +underutilized +undervalue +undervalued +undervalues +undervaluing +underwater +underway +underwear +underweight +underwent +underwhelmed +underwhelming +underworld +underwrite +underwriter +underwriters +underwrites +underwriting +underwritten +underwrote +undeserved +undesirable +undesirables +undetectable +undetected +undeterred +undeveloped +undid +undies +undignified +undiluted +undiminished +undischarged +undisciplined +undisclosed +undiscovered +undisguised +undismayed +undisputed +undistinguished +undisturbed +undivided +undo +undoes +undoing +undone +undoubted +undoubtedly +undress +undressed +undresses +undressing +undue +undulate +undulated +undulates +undulating +undulation +undulations +unduly +undying +unearned +unearth +unearthed +unearthing +unearthly +unearths +unease +uneasier +uneasiest +uneasily +uneasiness +uneasy +uneatable +uneconomic +uneconomical +unedifying +uneducated +unemotional +unemotionally +unemployable +unemployed +unemployment +unending +unendurable +unenviable +unequal +unequaled +unequalled +unequally +unequivocal +unequivocally +unerring +unerringly +unethical +unethically +uneven +unevenly +unevenness +uneventful +uneventfully +unexceptionable +unexceptional +unexciting +unexpected +unexpectedly +unexpectedness +unexplained +unexpurgated +unfailing +unfailingly +unfair +unfairly +unfairness +unfaithful +unfaithfulness +unfaltering +unfamiliar +unfamiliarity +unfashionable +unfashionably +unfasten +unfastened +unfastening +unfastens +unfathomable +unfathomably +unfavorable +unfavorably +unfavourable +unfavourably +unfazed +unfeasible +unfeeling +unfettered +unfilled +unfinished +unfit +unflagging +unflappable +unflattering +unflinching +unflinchingly +unfocused +unfocussed +unfold +unfolded +unfolding +unfolds +unforeseeable +unforeseen +unforgettable +unforgettably +unforgivable +unforgivably +unforgiving +unformed +unfortunate +unfortunately +unfortunates +unfounded +unfriendlier +unfriendliest +unfriendliness +unfriendly +unfulfilled +unfunny +unfurl +unfurled +unfurling +unfurls +unfurnished +ungainly +ungodly +ungovernable +ungracious +ungraciously +ungrammatical +ungrateful +ungratefully +unguarded +unguent +unguents +unhand +unhanded +unhanding +unhands +unhappier +unhappiest +unhappily +unhappiness +unhappy +unharmed +unhealthier +unhealthiest +unhealthily +unhealthy +unheard +unheeded +unhelpful +unhelpfully +unheralded +unhesitatingly +unhinge +unhinged +unhinges +unhinging +unhitch +unhitched +unhitches +unhitching +unholy +unhook +unhooked +unhooking +unhooks +unhurried +unhurriedly +unhurt +unhygienic +uni +unicameral +unicorn +unicorns +unicycle +unicycles +unidentifiable +unidentified +unification +unified +unifies +uniform +uniformed +uniformity +uniformly +uniforms +unify +unifying +unilateral +unilateralism +unilaterally +unimaginable +unimaginably +unimaginative +unimpaired +unimpeachable +unimpeded +unimportant +unimpressed +unimpressive +uninformed +uninhabitable +uninhabited +uninhibited +uninitiated +uninjured +uninspired +uninspiring +unintelligent +unintelligible +unintelligibly +unintended +unintentional +unintentionally +uninterested +uninteresting +uninterrupted +uninterruptedly +uninvited +union +unionisation +unionise +unionised +unionises +unionising +unionism +unionist +unionists +unionization +unionize +unionized +unionizes +unionizing +unions +unique +uniquely +uniqueness +unis +unisex +unit +unitary +unite +united +unites +unities +uniting +units +unity +universal +universality +universally +universe +universes +universities +university +unjust +unjustifiable +unjustifiably +unjustified +unjustly +unkempt +unkind +unkinder +unkindest +unkindly +unkindness +unknowable +unknowing +unknowingly +unknown +unknowns +unlawful +unlawfully +unleaded +unlearn +unlearned +unlearning +unlearns +unleash +unleashed +unleashes +unleashing +unleavened +unless +unlicensed +unlike +unlikelier +unlikeliest +unlikely +unlimited +unlisted +unlit +unload +unloaded +unloading +unloads +unlock +unlocked +unlocking +unlocks +unloose +unloosed +unlooses +unloosing +unloved +unlovely +unluckier +unluckiest +unluckily +unlucky +unmade +unmanageable +unmanly +unmanned +unmarked +unmarried +unmask +unmasked +unmasking +unmasks +unmatched +unmentionable +unmet +unmindful +unmissable +unmistakable +unmistakably +unmitigated +unmolested +unmoved +unmusical +unnamed +unnatural +unnaturally +unnecessarily +unnecessary +unnerve +unnerved +unnerves +unnerving +unnervingly +unnoticed +unnumbered +unobserved +unobtainable +unobtrusive +unobtrusively +unoccupied +unofficial +unofficially +unopened +unopposed +unorganised +unorganized +unorthodox +unpack +unpacked +unpacking +unpacks +unpaid +unpalatable +unparalleled +unpardonable +unperturbed +unpick +unpicked +unpicking +unpicks +unplaced +unplanned +unplayable +unpleasant +unpleasantly +unpleasantness +unplug +unplugged +unplugging +unplugs +unpolluted +unpopular +unpopularity +unprecedented +unprecedentedly +unpredictability +unpredictable +unpredictably +unprejudiced +unprepared +unprepossessing +unpretentious +unprincipled +unprintable +unproductive +unprofessional +unprofessionally +unprofitable +unpromising +unprompted +unpronounceable +unprotected +unproven +unprovoked +unpublished +unpunished +unqualified +unquenchable +unquestionable +unquestionably +unquestioned +unquestioning +unquestioningly +unquiet +unravel +unraveled +unraveling +unravelled +unravelling +unravels +unread +unreadable +unreal +unrealistic +unrealistically +unreality +unreasonable +unreasonableness +unreasonably +unreasoning +unrecognisable +unrecognised +unrecognizable +unrecognized +unreconstructed +unrecorded +unrefined +unrelated +unrelenting +unrelentingly +unreliability +unreliable +unrelieved +unrelievedly +unremarkable +unremarked +unremitting +unremittingly +unrepeatable +unrepentant +unrepresentative +unrequited +unreserved +unreservedly +unresolved +unresponsive +unrest +unrestrained +unrestricted +unrewarded +unrewarding +unripe +unrivaled +unrivalled +unroll +unrolled +unrolling +unrolls +unruffled +unruliness +unruly +unsaddle +unsaddled +unsaddles +unsaddling +unsafe +unsaid +unsalable +unsaleable +unsanitary +unsatisfactory +unsatisfied +unsavory +unsavoury +unscathed +unscheduled +unscientific +unscramble +unscrambled +unscrambles +unscrambling +unscrew +unscrewed +unscrewing +unscrews +unscripted +unscrupulous +unscrupulously +unscrupulousness +unseasonable +unseasonably +unseat +unseated +unseating +unseats +unsecured +unseeded +unseeing +unseeingly +unseemliness +unseemly +unseen +unselfish +unselfishly +unselfishness +unsentimental +unsettle +unsettled +unsettles +unsettling +unshakable +unshakeable +unshaken +unshaven +unsightly +unsigned +unskilled +unsmiling +unsociable +unsocial +unsold +unsolicited +unsolved +unsophisticated +unsound +unsparing +unspeakable +unspeakably +unspecified +unspectacular +unspoiled +unspoilt +unspoken +unsporting +unstable +unstated +unsteadily +unsteady +unstinting +unstintingly +unstoppable +unstressed +unstructured +unstuck +unsubstantiated +unsuccessful +unsuccessfully +unsuitable +unsuitably +unsuited +unsullied +unsung +unsupported +unsure +unsurpassed +unsurprising +unsurprisingly +unsuspected +unsuspecting +unsustainable +unsweetened +unswerving +unsympathetic +untainted +untamed +untangle +untangled +untangles +untangling +untapped +untenable +untested +unthinkable +unthinking +unthinkingly +untidily +untidiness +untidy +untie +untied +unties +until +untimely +untiring +untitled +unto +untold +untouchable +untouchables +untouched +untoward +untrained +untrammeled +untrammelled +untreated +untried +untrue +untrustworthy +untruth +untruthful +untruths +untutored +untying +untypical +untypically +unusable +unused +unusual +unusually +unutterable +unutterably +unvarnished +unvarying +unveil +unveiled +unveiling +unveils +unversed +unvoiced +unwaged +unwanted +unwarranted +unwary +unwashed +unwavering +unwelcome +unwelcoming +unwell +unwholesome +unwieldy +unwilling +unwillingly +unwillingness +unwind +unwinding +unwinds +unwise +unwisely +unwitting +unwittingly +unwonted +unworkable +unworldly +unworthy +unwound +unwrap +unwrapped +unwrapping +unwraps +unwritten +unyielding +unzip +unzipped +unzipping +unzips +up +upbeat +upbraid +upbraided +upbraiding +upbraids +upbringing +upchuck +upchucked +upchucking +upchucks +upcoming +upcountry +update +updated +updates +updating +upend +upended +upending +upends +upfront +upgrade +upgraded +upgrades +upgrading +upheaval +upheavals +upheld +uphill +uphold +upholder +upholders +upholding +upholds +upholster +upholstered +upholsterer +upholsterers +upholstering +upholsters +upholstery +upkeep +upland +uplands +uplift +uplifted +uplifting +uplifts +upload +uploaded +uploading +uploads +upmarket +upon +upped +upper +upperclassman +upperclassmen +upperclasswoman +upperclasswomen +uppercut +uppercuts +uppermost +uppers +upping +uppity +upraised +upright +uprightness +uprights +uprising +uprisings +upriver +uproar +uproarious +uproariously +uproot +uprooted +uprooting +uproots +ups +upscale +upset +upsets +upsetting +upshot +upside +upstage +upstaged +upstages +upstaging +upstairs +upstanding +upstart +upstarts +upstate +upstream +upsurge +upsurges +upswing +upswings +uptake +uptempo +uptight +uptown +uptrend +upturn +upturned +upturns +upward +upwards +upwind +uranium +urban +urbane +urbanely +urbanisation +urbanise +urbanised +urbanises +urbanising +urbanity +urbanization +urbanize +urbanized +urbanizes +urbanizing +urchin +urchins +urethra +urethras +urge +urged +urgency +urgent +urgently +urges +urging +uric +urinal +urinals +urinary +urinate +urinated +urinates +urinating +urination +urine +urn +urns +urological +urologist +urologists +urology +us +usable +usage +usages +use +used +useful +usefully +usefulness +useless +uselessly +uselessness +user +users +uses +usher +ushered +usherette +usherettes +ushering +ushers +using +usual +usually +usurer +usurers +usurious +usurp +usurpation +usurped +usurper +usurpers +usurping +usurps +usury +utensil +utensils +uteri +uterine +uterus +uteruses +utilisable +utilisation +utilise +utilised +utilises +utilising +utilitarian +utilitarianism +utilities +utility +utilizable +utilization +utilize +utilized +utilizes +utilizing +utmost +utopia +utopian +utopias +utter +utterance +utterances +uttered +uttering +utterly +uttermost +utters +uvula +vac +vacancies +vacancy +vacant +vacantly +vacate +vacated +vacates +vacating +vacation +vacationed +vacationer +vacationers +vacationing +vacations +vaccinate +vaccinated +vaccinates +vaccinating +vaccination +vaccinations +vaccine +vaccines +vacillate +vacillated +vacillates +vacillating +vacillation +vacillations +vacs +vacuity +vacuous +vacuously +vacuousness +vacuum +vacuumed +vacuuming +vacuums +vagabond +vagabonds +vagaries +vagary +vagina +vaginal +vaginas +vagrancy +vagrant +vagrants +vague +vaguely +vagueness +vaguer +vaguest +vain +vainer +vainest +vainglorious +vainglory +vainly +valance +valances +vale +valedictorian +valedictorians +valedictories +valedictory +valence +valences +valencies +valency +valentine +valentines +vales +valet +valeted +valeting +valets +valiant +valiantly +valid +validate +validated +validates +validating +validation +validations +validity +validly +valise +valises +valley +valleys +valor +valorous +valour +valuable +valuables +valuation +valuations +value +valued +valueless +valuer +valuers +values +valuing +valve +valves +vamp +vamped +vamping +vampire +vampires +vamps +van +vandal +vandalise +vandalised +vandalises +vandalising +vandalism +vandalize +vandalized +vandalizes +vandalizing +vandals +vane +vanes +vanguard +vanilla +vanish +vanished +vanishes +vanishing +vanities +vanity +vanquish +vanquished +vanquishes +vanquishing +vans +vantage +vantages +vapid +vapidity +vapor +vaporisation +vaporise +vaporised +vaporises +vaporising +vaporization +vaporize +vaporized +vaporizes +vaporizing +vaporous +vapors +vapour +vapours +variability +variable +variables +variably +variance +variances +variant +variants +variation +variations +varied +variegated +variegation +varies +varieties +variety +various +variously +varnish +varnished +varnishes +varnishing +varsities +varsity +vary +varying +vascular +vase +vasectomies +vasectomy +vases +vassal +vassals +vast +vaster +vastest +vastly +vastness +vat +vats +vaudeville +vault +vaulted +vaulting +vaults +vaunted +veal +vector +vectors +veep +veeps +veer +veered +veering +veers +veg +vegan +vegans +vegeburger +vegeburgers +vegetable +vegetables +vegetarian +vegetarianism +vegetarians +vegetate +vegetated +vegetates +vegetating +vegetation +vegged +vegges +veggie +veggieburger +veggieburgers +veggies +vegging +vehemence +vehement +vehemently +vehicle +vehicles +vehicular +veil +veiled +veiling +veils +vein +veined +veins +velar +velars +veld +veldt +vellum +velocities +velocity +velodrome +velodromes +velour +velours +velvet +velveteen +velvety +venal +venality +vendetta +vendettas +vending +vendor +vendors +veneer +veneered +veneering +veneers +venerable +venerate +venerated +venerates +venerating +veneration +vengeance +vengeful +vengefully +venial +venison +venom +venomous +venomously +venous +vent +vented +ventilate +ventilated +ventilates +ventilating +ventilation +ventilator +ventilators +venting +ventricle +ventricles +ventriloquism +ventriloquist +ventriloquists +vents +venture +ventured +ventures +venturesome +venturing +venue +venues +veracity +veranda +verandah +verandahs +verandas +verb +verbal +verbalise +verbalised +verbalises +verbalising +verbalize +verbalized +verbalizes +verbalizing +verbally +verbatim +verbiage +verbose +verbosely +verbosity +verbs +verdant +verdict +verdicts +verdigris +verdure +verge +verged +verger +vergers +verges +verging +verifiable +verification +verified +verifies +verify +verifying +verily +verisimilitude +veritable +veritably +verities +verity +vermicelli +vermilion +vermillion +vermin +verminous +vermouth +vernacular +vernaculars +vernal +verruca +verrucae +verrucas +versatile +versatility +verse +versed +verses +versification +version +versions +verso +versos +versus +vertebra +vertebrae +vertebral +vertebrate +vertebrates +vertex +vertexes +vertical +vertically +vertices +vertiginous +vertigo +verve +very +vespers +vessel +vessels +vest +vested +vestibule +vestibules +vestige +vestiges +vestigial +vestigially +vesting +vestment +vestments +vestries +vestry +vests +vet +vetch +vetches +veteran +veterans +veterinarian +veterinarians +veterinary +veto +vetoed +vetoes +vetoing +vets +vetted +vetting +vex +vexation +vexations +vexatious +vexatiously +vexed +vexes +vexing +via +viability +viable +viably +viaduct +viaducts +vial +vials +vibe +vibes +vibrancy +vibrant +vibrantly +vibraphone +vibraphones +vibrate +vibrated +vibrates +vibrating +vibration +vibrations +vibrato +vibrator +vibrators +vibratos +vicar +vicarage +vicarages +vicarious +vicariously +vicars +vice +viceroy +viceroys +vices +vicinity +vicious +viciously +viciousness +vicissitudes +victim +victimisation +victimise +victimised +victimises +victimising +victimization +victimize +victimized +victimizes +victimizing +victims +victor +victories +victorious +victoriously +victors +victory +victuals +video +videoconferencing +videodisc +videodiscs +videoed +videoing +videophone +videophones +videos +videotape +videotaped +videotapes +videotaping +vie +vied +vies +view +viewed +viewer +viewers +viewfinder +viewfinders +viewing +viewpoint +viewpoints +views +vigil +vigilance +vigilant +vigilante +vigilantes +vigilantism +vigilantly +vigils +vignette +vignettes +vigor +vigorous +vigorously +vigour +vile +vilely +vileness +viler +vilest +vilification +vilified +vilifies +vilify +vilifying +villa +village +villager +villagers +villages +villain +villainous +villains +villainy +villas +villein +villeins +vim +vinaigrette +vindicate +vindicated +vindicates +vindicating +vindication +vindictive +vindictively +vindictiveness +vine +vinegar +vinegary +vines +vineyard +vineyards +vino +vintage +vintages +vintner +vintners +vinyl +vinyls +viol +viola +violas +violate +violated +violates +violating +violation +violations +violator +violators +violence +violent +violently +violet +violets +violin +violincello +violincellos +violinist +violinists +violins +viols +viper +vipers +virago +viragos +viral +virgin +virginal +virginity +virgins +virile +virility +virology +virtual +virtually +virtue +virtues +virtuosi +virtuosity +virtuoso +virtuosos +virtuous +virtuously +virulence +virulent +virulently +virus +viruses +visa +visage +visages +visas +viscera +visceral +viscose +viscosity +viscount +viscountcies +viscountcy +viscountess +viscountesses +viscounts +viscous +vise +vises +visibility +visible +visibly +vision +visionaries +visionary +visions +visit +visitation +visitations +visited +visiting +visitor +visitors +visits +visor +visors +vista +vistas +visual +visualisation +visualisations +visualise +visualised +visualises +visualising +visualization +visualizations +visualize +visualized +visualizes +visualizing +visually +visuals +vital +vitality +vitally +vitamin +vitamins +vitiate +vitiated +vitiates +vitiating +viticulture +vitreous +vitriol +vitriolic +vitriolically +vituperation +vituperative +viva +vivacious +vivaciously +vivacity +vivas +vivid +vividly +vividness +vivisection +vivisectionist +vivisectionists +vixen +vixens +viz +vizier +viziers +vocab +vocabularies +vocabulary +vocal +vocalisation +vocalisations +vocalise +vocalised +vocalises +vocalising +vocalist +vocalists +vocalization +vocalizations +vocalize +vocalized +vocalizes +vocalizing +vocally +vocals +vocation +vocational +vocationally +vocations +vocative +vocatives +vociferous +vociferously +vodka +vodkas +vogue +vogues +voice +voiced +voiceless +voices +voicing +void +voided +voiding +voids +voila +voile +volatile +volatility +volcanic +volcano +volcanoes +volcanos +vole +voles +volition +volley +volleyball +volleyed +volleying +volleys +volt +voltage +voltages +voltmeter +voltmeters +volts +voluble +volubly +volume +volumes +voluminous +voluntaries +voluntarily +voluntary +volunteer +volunteered +volunteering +volunteers +voluptuous +voluptuously +voluptuousness +vomit +vomited +vomiting +vomits +voodoo +voracious +voraciously +voraciousness +voracity +vortex +vortexes +vortices +vote +voted +voter +voters +votes +voting +votive +vouch +vouched +voucher +vouchers +vouches +vouching +vouchsafe +vouchsafed +vouchsafes +vouchsafing +vow +vowed +vowel +vowels +vowing +vows +voyage +voyaged +voyager +voyagers +voyages +voyaging +voyeur +voyeurism +voyeuristic +voyeurs +vulcanised +vulcanized +vulgar +vulgarisation +vulgarise +vulgarised +vulgarises +vulgarising +vulgarities +vulgarity +vulgarization +vulgarize +vulgarized +vulgarizes +vulgarizing +vulgarly +vulnerability +vulnerable +vulnerably +vulture +vultures +vulva +vulvas +vying +wackier +wackiest +wackiness +wacko +wacky +wad +wadded +wadding +waddle +waddled +waddles +waddling +wade +waded +wader +waders +wades +wadge +wadges +wadi +wading +wadis +wads +wafer +wafers +waffle +waffled +waffles +waffling +waft +wafted +wafting +wafts +wag +wage +waged +wager +wagered +wagering +wagers +wages +wagged +wagging +waggish +waggle +waggled +waggles +waggling +waggon +waggons +waging +wagon +wagons +wags +wagtail +wagtails +waif +waifs +wail +wailed +wailing +wails +wainscot +wainscots +waist +waistband +waistbands +waistcoat +waistcoats +waistline +waistlines +waists +wait +waited +waiter +waiters +waiting +waitress +waitresses +waits +waive +waived +waiver +waivers +waives +waiving +wake +waked +wakeful +wakefulness +waken +wakened +wakening +wakens +wakes +waking +walk +walkabout +walkabouts +walkaway +walkaways +walked +walker +walkers +walkies +walking +walkout +walkouts +walkover +walkovers +walks +walkway +walkways +wall +walla +wallabies +wallaby +wallah +wallahs +wallas +wallboard +walled +wallet +wallets +wallflower +wallflowers +wallies +walling +wallop +walloped +walloping +wallops +wallow +wallowed +wallowing +wallows +wallpaper +wallpapered +wallpapering +wallpapers +walls +wally +walnut +walnuts +walrus +walruses +waltz +waltzed +waltzes +waltzing +wan +wand +wander +wandered +wanderer +wanderers +wandering +wanderings +wanderlust +wanders +wands +wane +waned +wanes +wangle +wangled +wangles +wangling +waning +wank +wanked +wanker +wankers +wanking +wanks +wanly +wanna +wannabe +wannabee +wannabees +wannabes +want +wanted +wanting +wanton +wantonly +wantonness +wants +wapiti +war +warble +warbled +warbler +warblers +warbles +warbling +ward +warded +warden +wardens +warder +warders +warding +wardress +wardresses +wardrobe +wardrobes +wardroom +wardrooms +wards +warehouse +warehouses +warehousing +wares +warfare +warhead +warheads +warhorse +warhorses +warier +wariest +warily +wariness +warlike +warlock +warlocks +warlord +warlords +warm +warmed +warmer +warmest +warming +warmly +warmonger +warmongering +warmongers +warms +warmth +warn +warned +warning +warnings +warns +warp +warpaint +warped +warping +warplane +warplanes +warps +warrant +warranted +warranties +warranting +warrants +warranty +warren +warrens +warring +warrior +warriors +wars +warship +warships +wart +warthog +warthogs +wartime +warts +warty +wary +was +wash +washable +washbasin +washbasins +washbowl +washbowls +washcloth +washcloths +washed +washer +washers +washes +washing +washout +washouts +washroom +washrooms +washstand +washstands +wasp +waspish +waspishly +wasps +wastage +waste +wastebasket +wastebaskets +wasted +wasteful +wastefully +wastefulness +wasteland +wastelands +waster +wasters +wastes +wasting +wastrel +wastrels +watch +watchable +watchband +watchbands +watchdog +watchdogs +watched +watcher +watchers +watches +watchful +watchfully +watchfulness +watching +watchmaker +watchmakers +watchman +watchmen +watchstrap +watchstraps +watchtower +watchtowers +watchword +watchwords +water +waterbed +waterbeds +waterborne +watercolor +watercolors +watercolour +watercolours +watercourse +watercourses +watercress +watered +waterfall +waterfalls +waterfowl +waterfront +waterfronts +waterhole +waterholes +watering +waterline +waterlogged +watermark +watermarks +watermelon +watermelons +watermill +watermills +waterproof +waterproofed +waterproofing +waterproofs +waters +watershed +watersheds +waterside +waterspout +waterspouts +watertight +waterway +waterways +waterwheel +waterwheels +waterworks +watery +watt +wattage +wattle +watts +wave +waveband +wavebands +waved +wavelength +wavelengths +wavelet +wavelets +waver +wavered +wavering +wavers +waves +wavier +waviest +waving +wavy +wax +waxed +waxen +waxes +waxier +waxiest +waxing +waxwork +waxworks +waxy +way +wayfarer +wayfarers +waylaid +waylay +waylaying +waylays +ways +wayside +wayward +waywardness +wazoo +wazoos +we +weak +weaken +weakened +weakening +weakens +weaker +weakest +weakling +weaklings +weakly +weakness +weaknesses +weal +weals +wealth +wealthier +wealthiest +wealthy +wean +weaned +weaning +weans +weapon +weaponry +weapons +wear +wearable +wearer +wearers +wearied +wearier +wearies +weariest +wearily +weariness +wearing +wearisome +wears +weary +wearying +weasel +weaseled +weaseling +weaselled +weaselling +weasels +weather +weatherboard +weatherboarding +weatherboards +weathercock +weathercocks +weathered +weathering +weatherize +weatherized +weatherizes +weatherizing +weatherman +weathermen +weatherproof +weathers +weave +weaved +weaver +weavers +weaves +weaving +web +webbed +webbing +webmaster +webmasters +webs +website +websites +wed +wedded +wedding +weddings +wedge +wedged +wedges +wedging +wedlock +weds +wee +weed +weeded +weedier +weediest +weeding +weedkiller +weedkillers +weeds +weedy +weeing +week +weekday +weekdays +weekend +weekended +weekender +weekenders +weekending +weekends +weeklies +weekly +weeknight +weeknights +weeks +weenie +weenies +weeny +weep +weepie +weepier +weepies +weepiest +weeping +weeps +weepy +wees +weevil +weevils +weft +weigh +weighbridge +weighbridges +weighed +weighing +weighs +weight +weighted +weightier +weightiest +weightily +weightiness +weighting +weightings +weightless +weightlessly +weightlessness +weightlifter +weightlifters +weightlifting +weights +weighty +weir +weird +weirder +weirdest +weirdly +weirdness +weirdo +weirdos +weirs +welch +welched +welches +welching +welcome +welcomed +welcomes +welcoming +weld +welded +welder +welders +welding +welds +welfare +well +welled +wellie +wellies +welling +wellington +wellingtons +wellness +wells +wellspring +wellsprings +welly +welsh +welshed +welshes +welshing +welt +welter +welterweight +welterweights +welts +wench +wenches +wend +wended +wending +wends +went +wept +were +werewolf +werewolves +west +westbound +westerly +western +westerner +westerners +westernisation +westernise +westernised +westernises +westernising +westernization +westernize +westernized +westernizes +westernizing +westernmost +westerns +westward +westwards +wet +wetback +wetbacks +wetland +wetlands +wetly +wetness +wets +wetted +wetter +wettest +wetting +whack +whacked +whackier +whackiest +whacking +whackings +whacks +whacky +whale +whalebone +whaler +whalers +whales +whaling +wham +whammies +whammy +whams +wharf +wharfs +wharves +what +whatchamacallit +whatchamacallits +whatever +whatshername +whatshisname +whatsit +whatsits +whatsoever +wheat +wheatgerm +wheatmeal +wheedle +wheedled +wheedles +wheedling +wheel +wheelbarrow +wheelbarrows +wheelbase +wheelbases +wheelchair +wheelchairs +wheeled +wheelhouse +wheelhouses +wheelie +wheelies +wheeling +wheels +wheelwright +wheelwrights +wheeze +wheezed +wheezes +wheezier +wheeziest +wheezily +wheeziness +wheezing +wheezy +whelk +whelks +whelp +whelped +whelping +whelps +when +whence +whenever +where +whereabouts +whereas +whereby +wherein +whereof +wheresoever +whereupon +wherever +wherewithal +whet +whether +whets +whetstone +whetstones +whetted +whetting +whew +whey +which +whichever +whiff +whiffs +while +whiled +whiles +whiling +whilst +whim +whimper +whimpered +whimpering +whimpers +whims +whimsical +whimsicality +whimsically +whimsies +whimsy +whine +whined +whiner +whiners +whines +whinge +whinged +whingeing +whinger +whingers +whinges +whinging +whining +whinnied +whinnies +whinny +whinnying +whip +whiplash +whiplashes +whipped +whippersnapper +whippersnappers +whippet +whippets +whipping +whippings +whippoorwill +whippoorwills +whips +whir +whirl +whirled +whirligig +whirligigs +whirling +whirlpool +whirlpools +whirls +whirlwind +whirlwinds +whirlybird +whirlybirds +whirr +whirred +whirring +whirrs +whirs +whisk +whisked +whisker +whiskered +whiskers +whiskery +whiskey +whiskeys +whiskies +whisking +whisks +whisky +whisper +whispered +whispering +whispers +whist +whistle +whistled +whistles +whistling +white +whitebait +whiteboard +whiteboards +whitecaps +whited +whiten +whitened +whitener +whiteness +whitening +whitens +whiteout +whiter +whites +whitest +whitewash +whitewashed +whitewashes +whitewashing +whitey +whiteys +whither +whiting +whitings +whitish +whittle +whittled +whittles +whittling +whiz +whizz +whizzed +whizzes +whizzing +who +whoa +whodunit +whodunits +whodunnit +whodunnits +whoever +whole +wholefood +wholefoods +wholegrain +wholehearted +wholeheartedly +wholemeal +wholeness +wholes +wholesale +wholesaler +wholesalers +wholesaling +wholesome +wholesomeness +wholewheat +wholly +whom +whomever +whoop +whooped +whoopee +whooping +whoops +whoosh +whooshed +whooshes +whooshing +whop +whopped +whopper +whoppers +whopping +whops +whore +whorehouse +whorehouses +whores +whoring +whorl +whorls +whose +whosoever +whup +whupped +whupping +whups +why +wick +wicked +wickeder +wickedest +wickedly +wickedness +wicker +wickerwork +wicket +wickets +wicks +wide +widely +widen +widened +widening +widens +wider +widespread +widest +widget +widgets +widow +widowed +widower +widowers +widowhood +widows +width +widths +wield +wielded +wielding +wields +wiener +wieners +wienie +wienies +wife +wifely +wig +wiggle +wiggled +wiggles +wiggling +wiggly +wigs +wigwam +wigwams +wild +wildcat +wildcats +wildcatted +wildcatter +wildcatters +wildcatting +wildebeest +wildebeests +wilder +wilderness +wildernesses +wildest +wildfire +wildfires +wildflower +wildflowers +wildfowl +wildlife +wildly +wildness +wiles +wilful +wilfully +wilfulness +wilier +wiliest +will +willed +willful +willfully +willfulness +willie +willies +willing +willingly +willingness +willow +willows +willowy +willpower +wills +willy +wilt +wilted +wilting +wilts +wily +wimp +wimped +wimping +wimpish +wimple +wimples +wimps +wimpy +win +wince +winced +winces +winch +winched +winches +winching +wincing +wind +windbag +windbags +windblown +windbreak +windbreaker +windbreakers +windbreaks +windcheater +windcheaters +winded +windfall +windfalls +windier +windiest +winding +windlass +windlasses +windless +windmill +windmills +window +windowpane +windowpanes +windows +windowsill +windowsills +windpipe +windpipes +winds +windscreen +windscreens +windshield +windshields +windsock +windsocks +windsurf +windsurfed +windsurfer +windsurfers +windsurfing +windsurfs +windswept +windward +windy +wine +wineries +winery +wines +wing +winged +winger +wingers +winging +wings +wingspan +wingspans +wingtips +wink +winked +winking +winkle +winkled +winkles +winkling +winks +winner +winners +winning +winnings +winnow +winnowed +winnowing +winnows +wino +winos +wins +winsome +winsomely +winter +wintered +wintering +winters +wintertime +wintry +wipe +wiped +wiper +wipers +wipes +wiping +wire +wired +wireless +wirelesses +wires +wiretap +wiretapped +wiretapping +wiretaps +wiring +wiry +wisdom +wise +wisecrack +wisecracked +wisecracking +wisecracks +wised +wiseguy +wiseguys +wisely +wiser +wises +wisest +wish +wishbone +wishbones +wished +wishes +wishing +wising +wisp +wisps +wispy +wisteria +wisterias +wistful +wistfully +wistfulness +wit +witch +witchcraft +witches +with +withdraw +withdrawal +withdrawals +withdrawing +withdrawn +withdraws +withdrew +wither +withered +withering +witheringly +withers +withheld +withhold +withholding +withholds +within +without +withstand +withstanding +withstands +withstood +witless +witness +witnessed +witnesses +witnessing +wits +witter +wittered +wittering +witters +witticism +witticisms +wittier +wittiest +wittily +wittingly +witty +wives +wizard +wizardry +wizards +wizened +woad +wobble +wobbled +wobbles +wobbling +wobbly +wodge +wodges +woe +woebegone +woeful +woefully +woes +wog +wogs +wok +woke +woken +woks +wolds +wolf +wolfed +wolfhound +wolfhounds +wolfing +wolfish +wolfs +wolves +woman +womanhood +womanise +womanised +womaniser +womanisers +womanises +womanising +womanize +womanized +womanizer +womanizers +womanizes +womanizing +womankind +womanliness +womanly +womb +wombat +wombats +wombs +women +womenfolk +won +wonder +wondered +wonderful +wonderfully +wondering +wonderingly +wonderland +wonderlands +wonderment +wonders +wondrous +wondrously +wonk +wonks +wonky +wont +wonted +woo +wood +woodbine +woodblock +woodblocks +woodcarving +woodcarvings +woodchuck +woodchucks +woodcock +woodcocks +woodcut +woodcuts +woodcutter +woodcutters +wooded +wooden +woodenly +woodenness +woodier +woodiest +woodland +woodlands +woodlice +woodlouse +woodpecker +woodpeckers +woodpile +woodpiles +woods +woodshed +woodsheds +woodsman +woodsmen +woodsy +woodwind +woodwinds +woodwork +woodworking +woodworm +woodworms +woody +wooed +wooer +wooers +woof +woofed +woofing +woofs +wooing +wool +woolen +woolens +woolies +wooliness +woollen +woollens +woollies +woolly +wooly +woos +woozy +wop +wops +word +worded +wordiness +wording +wordless +wordlessly +wordplay +words +wordsmith +wordsmiths +wordy +wore +work +workable +workaday +workaholic +workaholics +workbasket +workbaskets +workbench +workbenches +workbook +workbooks +workday +workdays +worked +worker +workers +workfare +workforce +workhorse +workhorses +workhouse +workhouses +working +workings +workload +workloads +workman +workmanlike +workmanship +workmate +workmates +workmen +workout +workouts +workplace +workplaces +workroom +workrooms +works +worksheet +worksheets +workshop +workshops +workshy +workstation +workstations +worktop +worktops +workweek +workweeks +world +worldliness +worldly +worlds +worldwide +worm +wormed +wormhole +wormholes +worming +worms +wormwood +wormy +worn +worried +worriedly +worrier +worriers +worries +worrisome +worry +worrying +worryingly +worrywart +worrywarts +worse +worsen +worsened +worsening +worsens +worship +worshiped +worshiper +worshipers +worshipful +worshiping +worshipped +worshipper +worshippers +worshipping +worships +worst +worsted +worsting +worsts +worth +worthier +worthies +worthiest +worthily +worthiness +worthless +worthlessness +worthwhile +worthy +wot +wotcha +would +wound +wounded +wounding +wounds +wove +woven +wow +wowed +wowing +wows +wrack +wracked +wracking +wracks +wraith +wraiths +wrangle +wrangled +wrangler +wranglers +wrangles +wrangling +wranglings +wrap +wraparound +wrapped +wrapper +wrappers +wrapping +wrappings +wraps +wrath +wrathful +wrathfully +wreak +wreaked +wreaking +wreaks +wreath +wreathe +wreathed +wreathes +wreathing +wreaths +wreck +wreckage +wrecked +wrecker +wreckers +wrecking +wrecks +wren +wrench +wrenched +wrenches +wrenching +wrens +wrest +wrested +wresting +wrestle +wrestled +wrestler +wrestlers +wrestles +wrestling +wrests +wretch +wretched +wretchedly +wretchedness +wretches +wriggle +wriggled +wriggles +wriggling +wring +wringer +wringers +wringing +wrings +wrinkle +wrinkled +wrinkles +wrinklies +wrinkling +wrinkly +wrist +wrists +wristwatch +wristwatches +writ +write +writer +writers +writes +writhe +writhed +writhes +writhing +writing +writings +writs +written +wrong +wrongdoer +wrongdoers +wrongdoing +wrongdoings +wronged +wrongful +wrongfully +wronging +wrongly +wrongs +wrote +wrought +wrung +wry +wryly +wunderkind +wunderkinds +wuss +wusses +xenon +xenophobe +xenophobes +xenophobia +xenophobic +xerox +xeroxed +xeroxes +xeroxing +xylophone +xylophones +yacht +yachting +yachts +yachtsman +yachtsmen +yachtswoman +yachtswomen +yack +yacked +yacking +yacks +yahoo +yahoos +yak +yakked +yakking +yaks +yam +yammer +yammered +yammering +yammers +yams +yang +yank +yanked +yanking +yanks +yap +yapped +yapping +yaps +yard +yardage +yardages +yardarm +yardarms +yards +yardstick +yardsticks +yarmulke +yarmulkes +yarn +yarns +yashmak +yashmaks +yaw +yawed +yawing +yawn +yawned +yawning +yawns +yaws +ye +yea +yeah +year +yearbook +yearbooks +yearling +yearlings +yearly +yearn +yearned +yearning +yearnings +yearns +years +yeast +yeasts +yeasty +yell +yelled +yelling +yellow +yellowed +yellower +yellowest +yellowhammer +yellowhammers +yellowing +yellowish +yellowness +yellows +yellowy +yells +yelp +yelped +yelping +yelps +yen +yens +yeoman +yeomen +yep +yer +yes +yeses +yesterday +yesterdays +yesteryear +yet +yeti +yetis +yew +yews +yid +yids +yield +yielded +yielding +yields +yikes +yin +yip +yipped +yippee +yipping +yips +yo +yob +yobbo +yobbos +yobs +yodel +yodeled +yodeling +yodelled +yodelling +yodels +yoga +yoghourt +yoghourts +yoghurt +yoghurts +yogi +yogic +yogis +yogurt +yogurts +yoke +yoked +yokel +yokels +yokes +yoking +yolk +yolks +yon +yonder +yonks +you +young +younger +youngest +youngish +youngster +youngsters +your +yours +yourself +yourselves +youth +youthful +youthfully +youthfulness +youths +yowl +yowled +yowling +yowls +yuan +yucca +yuccas +yuck +yucky +yuk +yukky +yum +yummier +yummiest +yummy +yuppie +yuppies +yuppified +yuppifies +yuppify +yuppifying +yuppy +zanier +zaniest +zany +zap +zapped +zapper +zappers +zapping +zappy +zaps +zeal +zealot +zealotry +zealots +zealous +zealously +zealousness +zebra +zebras +zeitgeist +zenith +zeniths +zephyr +zephyrs +zeppelin +zeppelins +zero +zeroed +zeroes +zeroing +zeros +zest +zestful +zestfully +zigzag +zigzagged +zigzagging +zigzags +zilch +zillion +zillions +zinc +zine +zines +zing +zinged +zinger +zingers +zinging +zings +zingy +zip +zipped +zipper +zippers +zipping +zippy +zips +zit +zither +zithers +zits +zodiac +zodiacal +zodiacs +zombie +zombies +zonal +zonally +zone +zoned +zones +zoning +zonked +zoo +zookeeper +zookeepers +zoological +zoologist +zoologists +zoology +zoom +zoomed +zooming +zooms +zoos +zucchini +zucchinis +zydeco +zygote +zygotes diff --git a/GeekyProjects/anagram/anagrams.py b/GeekyProjects/anagram/anagrams.py new file mode 100644 index 0000000..0732495 --- /dev/null +++ b/GeekyProjects/anagram/anagrams.py @@ -0,0 +1,25 @@ +import load_dictionary + +word_list = load_dictionary.loadfile('2of4brif.txt') + +anagram_list = [] + +# Input a single name +name = 'Foster' +print('Input name = {}'.format(name)) + +name = name.lower() +print('Using name = {}'.format(name)) + +# sort the name & find anagrams +name_sorted = sorted(name) + +for word in word_list: + if len(word) == len(name_sorted) and name_sorted == sorted(word): + anagram_list.append(word) + +# print out the list +if len(anagram_list) == 0: + print('You need a larger dictionary or a new name!') +else: + print('Anagrams = ', *anagram_list, sep='\n') \ No newline at end of file diff --git a/GeekyProjects/anagram/load_dictionary.py b/GeekyProjects/anagram/load_dictionary.py new file mode 100644 index 0000000..46df053 --- /dev/null +++ b/GeekyProjects/anagram/load_dictionary.py @@ -0,0 +1,30 @@ +""" Load dictionary file + + + Arguments: + - the txt file name (add path if needed) + + Exception: + IOError if the file doesn't exist + + Returns: + A list of all words from txt file in low case + + Require: + import sys + +""" + + +import sys + +def loadfile(file): + """ Load file and return a list of lowercase strings """ + try: + with open(file) as in_file: + loaded_text = in_file.read().strip().split('\n') + loaded_text = [x.lower() for x in loaded_text] + return loaded_text + except IOError as e: + print("{}\nError opening {}. Terminating program.".format(e, file), file=sys.stderr) + sys.exit(1) \ No newline at end of file diff --git a/GeekyProjects/anagram/phrase_anagrams.py b/GeekyProjects/anagram/phrase_anagrams.py new file mode 100644 index 0000000..2d449ae --- /dev/null +++ b/GeekyProjects/anagram/phrase_anagrams.py @@ -0,0 +1,88 @@ +import sys +from collections import Counter +import load_dictionary + +dict_file = load_dictionary.loadfile('2of4brif.txt') +# ensure "a" & "I" (both lowercase) are included (single character words) +dict_file.append('a') +dict_file.append('i') +dict_file = sorted(dict_file) + +ini_name = input('Enter a name: ') + +def find_anagrams(name, word_list): + """ Read name & dictionary file & display all anagrams IN name. """ + name_letter_map = Counter(name) + anagrams = [] + + for word in word_list: + test = '' + word_letter_map = Counter(word) + for letter in word: + if word_letter_map[letter] <= name_letter_map[letter]: + test += letter + if Counter(test) == word_letter_map: + anagrams.append(word) + + print(*anagrams, sep='\n') + print() + print('Remaining letters = {}'.format(name)) + print('Number of remaining letters = {}'.format(len(name))) + print("Number of remaining (real word) anagrams = {}".format(len(anagrams))) + +def process_choice(name): + """ Check user's choice for validity, return choice & leftover letters """ + while True: + choice = input('\nMake a choice else Enter to start over or # to end: ') + if choice == '': + main() + elif choice == '#': + sys.exit() + else: + candidate = ''.join(choice.lower().split()) + left_over_list = list(name) + for letter in candidate: + if letter in left_over_list: + left_over_list.remove(letter) + if len(name) - len(left_over_list) == len(candidate): + break + else: + print("Won't work! Please make another choice!", file=sys.stderr) + name = ''.join(left_over_list) # make display more readable + return choice, name + +def main(): + """ Help user to build anagram phrase from their name """ + name = ''.join(ini_name.lower().split()) + name.replace('-','') + limit = len(name) + + phrase = '' + + running = True + + while running: + temp_phrase = phrase.replace(' ', '') + if len(temp_phrase) < limit: + print('Length of anagram phrase = {}'.format(len(temp_phrase))) + + find_anagrams(name, dict_file) + print('Current phrase = {}'.format(phrase)) + + choice, name = process_choice(name) + phrase += choice + ' ' + elif len(temp_phrase) == limit: + print('\n******FINISHED******\n') + print('Anagram of name = {}'.format(phrase)) + print() + try_again = input('\n\nTry again? (Press Enter else "n" to quit)\n') + if try_again.lower() == 'n': + running = False + sys.exit() + else: + main() + +if __name__ == "__main__": + main() + + diff --git a/GeekyProjects/anagram/readme.md b/GeekyProjects/anagram/readme.md new file mode 100644 index 0000000..916bd8d --- /dev/null +++ b/GeekyProjects/anagram/readme.md @@ -0,0 +1,89 @@ +# Solving Anagrams + +An anagram is a word formed by rearranging the letters of other word. + +e.g. + +***Elvis*** ==> ***lives*** or ***veils***, ***evils*** + +### Project #1 Finding Single-Word Anagrams + +**The Objective**: Use Python and a dictionary file to find all the single-word anagrams for a given English word or single name. + +**The Strategy & Pseudocode**: The key of the problem -- the anagrams have the same number of the same letters. + +1. Same length; + +2. Instead of retreating two words as two string, regard them as two lists containing single-character strings. + +```python +> word=sorted(word) +> word +['o', 'p', 's', 't'] +> anagram=sorted(anagram) +> anagram +['o', 'p', 's', 't'] +> anagram==word +True +``` + + **Pseudocode**: + ++ Load dictionary file as a list of words ++ Accept a word from user ++ Create an empty list to hold anagrams ++ Sort the user-word ++ Loop through each word in the word list: + + + Sort the word + + + if word sorted is equal to user-word sorted: + + + Append word to anagrams list + ++ Print anagrams list + +### Project #2 Finding Phrase Anagrams + +**The Objective**: Write a Python program that lets a user interactively build an anagram phrase from the letters in the name. + +**The Strategy & Pseudocode**: A strategic challenge here: how does a computer handle contextual content? + +The brute-force method is a common approach used in online anagram generators. But most of the returned phrases are nonsense. + +So an alternative approach is to acknowledge that humans are best at contextual issues and write a program that helps the human work through the problem. "word by word" + +Python ships with a module named *collection* that includes several container data types. One of these types, *counter*, counts the occurrences of an item. + +***Note***: In python, the dictionary is unsorted, but Python correctly identifies each dictionary as being equal if the dictionaries contain the same keys and the same values. + +***Pseudocode***: +2 design decisions: +(1) let the user interactively build their anagram one word at a time; +(2) use the ***Counter*** method to find anagrams. +Load a dictionary file +Accept a name from user +Set Limit = length of name +Start empty list to hold anagram phrase +While length of phrase < limit: + Generate list of dictionary words that fit in name + Present words to user + Present renaming letters to user + Present current phrase to user + Ask user to input word or start over + If user input can be made from remaining letters: + Accept choice of new word or words from user + Remove letters in choice from letters in name + Return choice and remaining letters in name + If choice is not a valid selection: + Ask user for new choice and remaining letters in name + Add choice to phrase and show to user + Generate new list of words and repeat process +When phrase length equal limit value: + Display final phrase + Ask user to start over or to exit + +***Tips***: When draw flowchart, marking the different steps in the different color will be helpful to locate the different method and scope. + +​ + diff --git a/GeekyProjects/palindromes/2of4brif.txt b/GeekyProjects/palindromes/2of4brif.txt new file mode 100644 index 0000000..80fb45b --- /dev/null +++ b/GeekyProjects/palindromes/2of4brif.txt @@ -0,0 +1,60388 @@ +aah +aardvark +aardvarks +abacus +abacuses +abalone +abalones +abandon +abandoned +abandoning +abandonment +abandons +abase +abased +abasement +abases +abashed +abasing +abate +abated +abatement +abates +abating +abattoir +abattoirs +abbess +abbesses +abbey +abbeys +abbot +abbots +abbreviate +abbreviated +abbreviates +abbreviating +abbreviation +abbreviations +abdicate +abdicated +abdicates +abdicating +abdication +abdications +abdomen +abdomens +abdominal +abduct +abducted +abducting +abduction +abductions +abductor +abductors +abducts +abed +aberrant +aberration +aberrations +abet +abets +abetted +abetting +abhor +abhorred +abhorrence +abhorrent +abhorring +abhors +abide +abided +abides +abiding +abilities +ability +abject +abjectly +abjure +abjured +abjures +abjuring +ablaze +able +abler +ablest +ablutions +ably +abnegation +abnormal +abnormalities +abnormality +abnormally +aboard +abode +abodes +abolish +abolished +abolishes +abolishing +abolition +abolitionist +abolitionists +abominable +abominably +abominate +abominated +abominates +abominating +abomination +abominations +aboriginal +aboriginals +aborigine +aborigines +abort +aborted +aborting +abortion +abortionist +abortionists +abortions +abortive +aborts +abound +abounded +abounding +abounds +about +above +aboveboard +abracadabra +abrade +abraded +abrades +abrading +abrasion +abrasions +abrasive +abrasively +abrasiveness +abrasives +abreast +abridge +abridged +abridgement +abridgements +abridges +abridging +abridgment +abridgments +abroad +abrogate +abrogated +abrogates +abrogating +abrogation +abrupt +abruptly +abruptness +abscess +abscesses +abscond +absconded +absconding +absconds +abseil +abseiled +abseiling +abseils +absence +absences +absent +absented +absentee +absenteeism +absentees +absenting +absently +absents +absinth +absinthe +absolute +absolutely +absolutes +absolution +absolutism +absolutist +absolutists +absolve +absolved +absolves +absolving +absorb +absorbed +absorbency +absorbent +absorbing +absorbs +absorption +abstain +abstained +abstainer +abstainers +abstaining +abstains +abstemious +abstention +abstentions +abstinence +abstinent +abstract +abstracted +abstractedly +abstracting +abstraction +abstractions +abstracts +abstruse +absurd +absurdities +absurdity +absurdly +abundance +abundant +abundantly +abuse +abused +abuser +abusers +abuses +abusing +abusive +abusively +abut +abuts +abutted +abutting +abuzz +abysmal +abysmally +abyss +abysses +acacia +acacias +academe +academia +academic +academically +academician +academicians +academics +academies +academy +accede +acceded +accedes +acceding +accelerate +accelerated +accelerates +accelerating +acceleration +accelerator +accelerators +accent +accented +accenting +accents +accentuate +accentuated +accentuates +accentuating +accentuation +accept +acceptability +acceptable +acceptably +acceptance +acceptances +accepted +accepting +accepts +access +accessed +accesses +accessibility +accessible +accessing +accession +accessions +accessories +accessorise +accessorised +accessorises +accessorising +accessorize +accessorized +accessorizes +accessorizing +accessory +accident +accidental +accidentally +accidents +acclaim +acclaimed +acclaiming +acclaims +acclamation +acclimate +acclimated +acclimates +acclimating +acclimatisation +acclimatise +acclimatised +acclimatises +acclimatising +acclimatization +acclimatize +acclimatized +acclimatizes +acclimatizing +accolade +accolades +accommodate +accommodated +accommodates +accommodating +accommodation +accommodations +accompanied +accompanies +accompaniment +accompaniments +accompanist +accompanists +accompany +accompanying +accomplice +accomplices +accomplish +accomplished +accomplishes +accomplishing +accomplishment +accomplishments +accord +accorded +according +accordingly +accordion +accordions +accords +accost +accosted +accosting +accosts +account +accountability +accountable +accountancy +accountant +accountants +accounted +accounting +accounts +accouterments +accoutrements +accredit +accreditation +accredited +accrediting +accredits +accretion +accretions +accrual +accruals +accrue +accrued +accrues +accruing +accumulate +accumulated +accumulates +accumulating +accumulation +accumulations +accumulative +accumulator +accumulators +accuracy +accurate +accurately +accursed +accusation +accusations +accusative +accusatives +accusatory +accuse +accused +accuser +accusers +accuses +accusing +accusingly +accustom +accustomed +accustoming +accustoms +ace +acerbic +acerbity +aces +acetaminophen +acetate +acetone +acetylene +ache +ached +aches +achievable +achieve +achieved +achievement +achievements +achiever +achievers +achieves +achieving +aching +achingly +achy +acid +acidic +acidified +acidifies +acidify +acidifying +acidity +acidly +acids +acknowledge +acknowledged +acknowledgement +acknowledgements +acknowledges +acknowledging +acknowledgment +acknowledgments +acme +acne +acolyte +acolytes +acorn +acorns +acoustic +acoustically +acoustics +acquaint +acquaintance +acquaintances +acquaintanceship +acquainted +acquainting +acquaints +acquiesce +acquiesced +acquiescence +acquiescent +acquiesces +acquiescing +acquire +acquired +acquirer +acquirers +acquires +acquiring +acquisition +acquisitions +acquisitive +acquisitiveness +acquit +acquits +acquittal +acquittals +acquitted +acquitting +acre +acreage +acreages +acres +acrid +acrimonious +acrimoniously +acrimony +acrobat +acrobatic +acrobatics +acrobats +acronym +acronyms +across +acrostic +acrostics +acrylic +acrylics +act +acted +acting +action +actionable +actions +activate +activated +activates +activating +activation +active +actively +activism +activist +activists +activities +activity +actor +actors +actress +actresses +acts +actual +actualities +actuality +actualize +actualized +actualizes +actualizing +actually +actuarial +actuaries +actuary +actuate +actuated +actuates +actuating +acuity +acumen +acupressure +acupuncture +acupuncturist +acupuncturists +acute +acutely +acuteness +ad +adage +adages +adagio +adagios +adamant +adamantly +adapt +adaptability +adaptable +adaptation +adaptations +adapted +adapter +adapters +adapting +adaption +adaptions +adaptive +adaptor +adaptors +adapts +add +added +addenda +addendum +adder +adders +addict +addicted +addiction +addictions +addictive +addicts +adding +addition +additional +additionally +additions +additive +additives +addle +addled +addles +addling +address +addressed +addressee +addressees +addresses +addressing +adds +adduce +adduced +adduces +adducing +adenoidal +adenoids +adept +adeptly +adepts +adequacy +adequate +adequately +adhere +adhered +adherence +adherent +adherents +adheres +adhering +adhesion +adhesive +adhesives +adieu +adieus +adieux +adios +adipose +adjacent +adjectival +adjectivally +adjective +adjectives +adjoin +adjoined +adjoining +adjoins +adjourn +adjourned +adjourning +adjournment +adjournments +adjourns +adjudge +adjudged +adjudges +adjudging +adjudicate +adjudicated +adjudicates +adjudicating +adjudication +adjudications +adjudicator +adjudicators +adjunct +adjuncts +adjure +adjured +adjures +adjuring +adjust +adjustable +adjusted +adjuster +adjusters +adjusting +adjustment +adjustments +adjusts +adjutant +adjutants +adman +admen +admin +administer +administered +administering +administers +administration +administrations +administrative +administratively +administrator +administrators +admirable +admirably +admiral +admirals +admiration +admire +admired +admirer +admirers +admires +admiring +admiringly +admissibility +admissible +admission +admissions +admit +admits +admittance +admitted +admittedly +admitting +admixture +admixtures +admonish +admonished +admonishes +admonishing +admonishment +admonishments +admonition +admonitions +admonitory +adobe +adolescence +adolescent +adolescents +adopt +adopted +adopting +adoption +adoptions +adoptive +adopts +adorable +adoration +adore +adored +adores +adoring +adoringly +adorn +adorned +adorning +adornment +adornments +adorns +adrenal +adrenalin +adrenaline +adrift +adroit +adroitly +adroitness +ads +adulation +adulatory +adult +adulterate +adulterated +adulterates +adulterating +adulteration +adulterer +adulterers +adulteress +adulteresses +adulterous +adultery +adulthood +adults +adumbrate +adumbrated +adumbrates +adumbrating +adumbration +advance +advanced +advancement +advancements +advances +advancing +advantage +advantaged +advantageous +advantageously +advantages +advent +adventitious +adventitiously +adventure +adventurer +adventurers +adventures +adventuresome +adventurism +adventurist +adventurists +adventurous +adventurously +adverb +adverbial +adverbs +adversarial +adversaries +adversary +adverse +adversely +adversities +adversity +advert +advertise +advertised +advertisement +advertisements +advertiser +advertisers +advertises +advertising +advertorial +advertorials +adverts +advice +advisability +advisable +advise +advised +advisedly +adviser +advisers +advises +advising +advisor +advisories +advisors +advisory +advocacy +advocate +advocated +advocates +advocating +adz +adze +adzes +aeon +aeons +aerate +aerated +aerates +aerating +aeration +aerial +aerials +aerie +aeries +aerobatic +aerobatics +aerobic +aerobics +aerodrome +aerodromes +aerodynamic +aerodynamically +aerodynamics +aerogram +aerogramme +aerogrammes +aerograms +aeronautic +aeronautical +aeronautics +aeroplane +aeroplanes +aerosol +aerosols +aerospace +aesthete +aesthetes +aesthetic +aesthetically +aesthetics +aetiology +afar +affability +affable +affably +affair +affairs +affect +affectation +affectations +affected +affectedly +affecting +affection +affectionate +affectionately +affections +affects +affidavit +affidavits +affiliate +affiliated +affiliates +affiliating +affiliation +affiliations +affinities +affinity +affirm +affirmation +affirmations +affirmative +affirmatively +affirmatives +affirmed +affirming +affirms +affix +affixed +affixes +affixing +afflict +afflicted +afflicting +affliction +afflictions +afflicts +affluence +affluent +afford +affordability +affordable +afforded +affording +affords +afforest +afforestation +afforested +afforesting +afforests +affray +affrays +affront +affronted +affronting +affronts +aficionado +aficionados +afire +aflame +afloat +afoot +aforementioned +aforesaid +afraid +afresh +aft +after +afterbirth +aftercare +aftereffect +aftereffects +afterglow +afterglows +afterlife +aftermath +afternoon +afternoons +afters +aftershave +aftershaves +aftershock +aftershocks +aftertaste +aftertastes +afterthought +afterthoughts +afterward +afterwards +afterword +afterwords +again +against +agape +agate +agates +age +aged +ageing +ageism +ageist +ageists +ageless +agencies +agency +agenda +agendas +agent +agents +ages +agglomerate +agglomerates +agglomeration +agglomerations +aggrandisement +aggrandizement +aggravate +aggravated +aggravates +aggravating +aggravation +aggravations +aggregate +aggregated +aggregates +aggregating +aggregation +aggression +aggressive +aggressively +aggressiveness +aggressor +aggressors +aggrieved +aggro +aghast +agile +agility +aging +agism +agitate +agitated +agitates +agitating +agitation +agitations +agitator +agitators +agitprop +aglow +agnostic +agnosticism +agnostics +ago +agog +agonies +agonise +agonised +agonises +agonising +agonisingly +agonize +agonized +agonizes +agonizing +agonizingly +agony +agoraphobia +agoraphobic +agoraphobics +agrarian +agree +agreeable +agreeably +agreed +agreeing +agreement +agreements +agrees +agribusiness +agribusinesses +agricultural +agriculturalist +agriculturalists +agriculture +agronomist +agronomists +agronomy +aground +ah +aha +ahchoo +ahead +ahem +ahoy +aid +aide +aided +aides +aiding +aids +ail +ailed +aileron +ailerons +ailing +ailment +ailments +ails +aim +aimed +aiming +aimless +aimlessly +aimlessness +aims +air +airbag +airbags +airbase +airbases +airbed +airbeds +airborne +airbrush +airbrushed +airbrushes +airbrushing +aircraft +aircraftman +aircraftmen +aircrew +aircrews +airdrome +airdromes +airdrop +airdrops +aired +airfare +airfares +airfield +airfields +airflow +airgun +airguns +airhead +airheads +airier +airiest +airily +airing +airings +airless +airletter +airletters +airlift +airlifted +airlifting +airlifts +airline +airliner +airliners +airlines +airlock +airlocks +airmail +airman +airmen +airplane +airplanes +airplay +airport +airports +airs +airship +airships +airshow +airshows +airsick +airsickness +airspace +airspeed +airstrike +airstrikes +airstrip +airstrips +airtight +airtime +airwaves +airway +airways +airwoman +airwomen +airworthiness +airworthy +airy +aisle +aisles +aitch +aitches +ajar +akin +alabaster +alacrity +alarm +alarmed +alarming +alarmingly +alarmist +alarmists +alarms +alas +albatross +albatrosses +albeit +albino +albinos +album +albumen +albums +alchemist +alchemists +alchemy +alcohol +alcoholic +alcoholics +alcoholism +alcohols +alcove +alcoves +alder +alderman +aldermen +alders +ale +alehouse +alehouses +alert +alerted +alerting +alertness +alerts +ales +alfalfa +alfresco +algae +algal +algebra +algebraic +algorithm +algorithms +alias +aliases +alibi +alibis +alien +alienate +alienated +alienates +alienating +alienation +aliens +alight +alighted +alighting +alights +align +aligned +aligning +alignment +alignments +aligns +alike +alimony +alit +alive +alkali +alkaline +alkalis +all +allay +allayed +allaying +allays +allegation +allegations +allege +alleged +allegedly +alleges +allegiance +allegiances +alleging +allegorical +allegorically +allegories +allegory +allegro +allegros +alleluia +alleluias +allergen +allergens +allergic +allergies +allergist +allergists +allergy +alleviate +alleviated +alleviates +alleviating +alleviation +alley +alleys +alleyway +alleyways +alliance +alliances +allied +allies +alligator +alligators +alliteration +alliterative +allocate +allocated +allocates +allocating +allocation +allocations +allot +allotment +allotments +allots +allotted +allotting +allow +allowable +allowance +allowances +allowed +allowing +allows +alloy +alloyed +alloying +alloys +allspice +allude +alluded +alludes +alluding +allure +allures +alluring +alluringly +allusion +allusions +allusive +alluvial +ally +allying +almanac +almanack +almanacks +almanacs +almighty +almond +almonds +almoner +almoners +almost +alms +almshouse +almshouses +aloe +aloes +aloft +alone +along +alongside +aloof +aloofness +aloud +alpaca +alpacas +alpha +alphabet +alphabetical +alphabetically +alphabetize +alphabetized +alphabetizes +alphabetizing +alphabets +alphas +alpine +alpines +already +alright +also +altar +altarpiece +altarpieces +altars +alter +alteration +alterations +altercation +altercations +altered +altering +alternate +alternated +alternately +alternates +alternating +alternation +alternations +alternative +alternatively +alternatives +alternator +alternators +alters +although +altimeter +altimeters +altitude +altitudes +alto +altogether +altos +altruism +altruist +altruistic +altruistically +altruists +aluminium +aluminum +alumna +alumnae +alumni +alumnus +alveolar +alveolars +always +am +amalgam +amalgamate +amalgamated +amalgamates +amalgamating +amalgamation +amalgamations +amalgams +amanuensis +amass +amassed +amasses +amassing +amateur +amateurish +amateurishly +amateurishness +amateurism +amateurs +amatory +amaze +amazed +amazement +amazes +amazing +amazingly +amazon +amazonian +amazons +ambassador +ambassadorial +ambassadors +amber +ambiance +ambidextrous +ambience +ambient +ambiguities +ambiguity +ambiguous +ambiguously +ambit +ambition +ambitions +ambitious +ambitiously +ambivalence +ambivalent +ambivalently +amble +ambled +ambles +ambling +ambrosia +ambulance +ambulanceman +ambulancemen +ambulances +ambulancewoman +ambulancewomen +ambush +ambushed +ambushes +ambushing +ameba +amebae +amebas +amebic +ameliorate +ameliorated +ameliorates +ameliorating +amelioration +amen +amenable +amend +amended +amending +amendment +amendments +amends +amenities +amenity +amethyst +amethysts +amiability +amiable +amiably +amicable +amicably +amid +amidships +amidst +amiss +amity +ammeter +ammeters +ammo +ammonia +ammunition +amnesia +amnesiac +amnesiacs +amnesties +amnesty +amniocentesis +amoeba +amoebae +amoebas +amoebic +among +amongst +amoral +amorality +amorous +amorously +amorphous +amortisable +amortisation +amortisations +amortise +amortised +amortises +amortising +amortizable +amortization +amortizations +amortize +amortized +amortizes +amortizing +amount +amounted +amounting +amounts +amour +amours +amp +amperage +ampere +amperes +ampersand +ampersands +amphetamine +amphetamines +amphibian +amphibians +amphibious +amphitheater +amphitheaters +amphitheatre +amphitheatres +amphora +amphoras +ample +amplification +amplified +amplifier +amplifiers +amplifies +amplify +amplifying +amplitude +amplitudes +amply +ampoule +ampoules +amps +ampule +ampules +amputate +amputated +amputates +amputating +amputation +amputations +amputee +amputees +amulet +amulets +amuse +amused +amusement +amusements +amuses +amusing +amusingly +an +anachronism +anachronisms +anachronistic +anachronistically +anaconda +anacondas +anaemia +anaemic +anaerobic +anaesthesia +anaesthetic +anaesthetics +anaesthetise +anaesthetised +anaesthetises +anaesthetising +anaesthetist +anaesthetists +anaesthetize +anaesthetized +anaesthetizes +anaesthetizing +anagram +anagrams +anal +analgesia +analgesic +analgesics +anally +analog +analogies +analogous +analogs +analogue +analogues +analogy +analyse +analysed +analyses +analysing +analysis +analyst +analysts +analytic +analytical +analytically +analyze +analyzed +analyzes +analyzing +anarchic +anarchism +anarchist +anarchistic +anarchists +anarchy +anathema +anatomical +anatomically +anatomies +anatomist +anatomists +anatomy +ancestor +ancestors +ancestral +ancestries +ancestry +anchor +anchorage +anchorages +anchored +anchoring +anchorite +anchorites +anchorman +anchormen +anchors +anchorwoman +anchorwomen +anchovies +anchovy +ancient +anciently +ancients +ancillary +and +andante +andantes +androgynous +androgyny +android +androids +anecdotal +anecdote +anecdotes +anemia +anemic +anemone +anemones +anesthesia +anesthesiologist +anesthesiologists +anesthetic +anesthetics +anesthetist +anesthetists +anesthetize +anesthetized +anesthetizes +anesthetizing +anew +angel +angelic +angelica +angelically +angels +anger +angered +angering +angers +angina +angioplasties +angioplasty +angle +angled +angler +anglers +angles +anglicise +anglicised +anglicises +anglicising +anglicism +anglicisms +anglicize +anglicized +anglicizes +anglicizing +angling +anglophile +anglophiles +anglophone +anglophones +angora +angoras +angostura +angrier +angriest +angrily +angry +angst +anguish +anguished +angular +angularity +animal +animals +animate +animated +animatedly +animates +animating +animation +animations +animator +animators +animism +animist +animists +animosities +animosity +animus +anise +aniseed +ankle +ankles +anklet +anklets +annals +anneal +annealed +annealing +anneals +annex +annexation +annexations +annexe +annexed +annexes +annexing +annihilate +annihilated +annihilates +annihilating +annihilation +anniversaries +anniversary +annotate +annotated +annotates +annotating +annotation +annotations +announce +announced +announcement +announcements +announcer +announcers +announces +announcing +annoy +annoyance +annoyances +annoyed +annoying +annoyingly +annoys +annual +annualised +annualized +annually +annuals +annuities +annuity +annul +annulled +annulling +annulment +annulments +annuls +anode +anodes +anodyne +anoint +anointed +anointing +anointment +anoints +anomalies +anomalous +anomalously +anomaly +anon +anonymity +anonymous +anonymously +anopheles +anorak +anoraks +anorexia +anorexic +anorexics +another +answer +answerable +answered +answering +answerphone +answerphones +answers +ant +antacid +antacids +antagonise +antagonised +antagonises +antagonising +antagonism +antagonisms +antagonist +antagonistic +antagonists +antagonize +antagonized +antagonizes +antagonizing +ante +anteater +anteaters +antecedent +antecedents +antechamber +antechambers +antedate +antedated +antedates +antedating +antediluvian +antelope +antelopes +antenatal +antenna +antennae +antennas +anterior +anteroom +anterooms +antes +anthem +anthems +anther +anthers +anthill +anthills +anthologies +anthologist +anthologists +anthology +anthracite +anthrax +anthropoid +anthropoids +anthropological +anthropologist +anthropologists +anthropology +anthropomorphic +anthropomorphism +anti +antibacterial +antibiotic +antibiotics +antibodies +antibody +anticipate +anticipated +anticipates +anticipating +anticipation +anticipatory +anticlimactic +anticlimax +anticlimaxes +anticlockwise +anticoagulant +anticoagulants +antics +anticyclone +anticyclones +antidepressant +antidepressants +antidote +antidotes +antifreeze +antigen +antigens +antihero +antiheroes +antihistamine +antihistamines +antiknock +antimacassar +antimacassars +antimatter +antimony +antipasti +antipasto +antipathetic +antipathies +antipathy +antiperspirant +antiperspirants +antiquarian +antiquarians +antiquaries +antiquary +antiquated +antique +antiques +antiquities +antiquity +antirrhinum +antirrhinums +antis +antiseptic +antiseptics +antisocial +antitheses +antithesis +antithetic +antithetical +antitrust +antler +antlers +antonym +antonymous +antonyms +ants +antsy +anus +anuses +anvil +anvils +anxieties +anxiety +anxious +anxiously +any +anybody +anyhow +anymore +anyone +anyplace +anything +anytime +anyway +anyways +anywhere +aorta +aortas +apace +apart +apartheid +apartment +apartments +apathetic +apathetically +apathy +ape +aped +aperitif +aperitifs +aperture +apertures +apes +apex +apexes +aphasia +aphid +aphids +aphorism +aphorisms +aphoristic +aphrodisiac +aphrodisiacs +apiary +apiece +aping +aplenty +aplomb +apocalypse +apocalyptic +apocryphal +apogee +apolitical +apologetic +apologetically +apologia +apologias +apologies +apologise +apologised +apologises +apologising +apologist +apologists +apologize +apologized +apologizes +apologizing +apology +apoplectic +apoplexy +apostasy +apostate +apostates +apostle +apostles +apostolic +apostrophe +apostrophes +apothecaries +apothecary +apotheoses +apotheosis +appal +appall +appalled +appalling +appallingly +appalls +appals +apparatchik +apparatchiks +apparatus +apparatuses +apparel +apparent +apparently +apparition +apparitions +appeal +appealed +appealing +appealingly +appeals +appear +appearance +appearances +appeared +appearing +appears +appease +appeased +appeasement +appeases +appeasing +appellant +appellants +appellation +appellations +append +appendage +appendages +appendectomies +appendectomy +appended +appendices +appendicitis +appending +appendix +appendixes +appends +appertain +appertained +appertaining +appertains +appetiser +appetisers +appetising +appetite +appetites +appetizer +appetizers +appetizing +appetizingly +applaud +applauded +applauding +applauds +applause +apple +applejack +apples +applesauce +applet +applets +appliance +appliances +applicability +applicable +applicant +applicants +application +applications +applicator +applicators +applied +applies +applique +appliqued +appliqueing +appliques +apply +applying +appoint +appointed +appointee +appointees +appointing +appointment +appointments +appoints +apportion +apportioned +apportioning +apportionment +apportions +apposite +apposition +appraisal +appraisals +appraise +appraised +appraiser +appraisers +appraises +appraising +appreciable +appreciably +appreciate +appreciated +appreciates +appreciating +appreciation +appreciations +appreciative +appreciatively +apprehend +apprehended +apprehending +apprehends +apprehension +apprehensions +apprehensive +apprehensively +apprentice +apprenticed +apprentices +apprenticeship +apprenticeships +apprenticing +apprise +apprised +apprises +apprising +approach +approachable +approached +approaches +approaching +approbation +appropriate +appropriated +appropriately +appropriateness +appropriates +appropriating +appropriation +appropriations +approval +approvals +approve +approved +approves +approving +approvingly +approximate +approximated +approximately +approximates +approximating +approximation +approximations +appurtenance +appurtenances +apricot +apricots +apron +aprons +apropos +apse +apses +apt +aptitude +aptitudes +aptly +aptness +aqua +aquamarine +aquamarines +aquaplane +aquaplaned +aquaplanes +aquaplaning +aquaria +aquarium +aquariums +aquatic +aquatically +aquatint +aquatints +aqueduct +aqueducts +aqueous +aquifer +aquifers +aquiline +arabesque +arabesques +arable +arachnid +arachnids +arachnophobia +arbiter +arbiters +arbitrage +arbitrager +arbitragers +arbitrageur +arbitrageurs +arbitrarily +arbitrariness +arbitrary +arbitrate +arbitrated +arbitrates +arbitrating +arbitration +arbitrator +arbitrators +arbor +arboreal +arboreta +arboretum +arboretums +arbors +arbour +arbours +arc +arcade +arcades +arcane +arced +arch +archaeological +archaeologically +archaeologist +archaeologists +archaeology +archaic +archaism +archaisms +archangel +archangels +archbishop +archbishopric +archbishoprics +archbishops +archdeacon +archdeacons +archdiocese +archdioceses +archduchess +archduchesses +archduke +archdukes +arched +archenemies +archenemy +archeological +archeologist +archeologists +archeology +archer +archers +archery +arches +archetypal +archetype +archetypes +archetypical +arching +archipelago +archipelagoes +archipelagos +architect +architects +architectural +architecturally +architecture +architectures +archival +archive +archives +archivist +archivists +archly +archway +archways +arcing +arcs +arctic +ardent +ardently +ardor +ardour +arduous +arduously +arduousness +are +area +areas +arena +arenas +ares +argon +argot +argots +arguable +arguably +argue +argued +argues +arguing +argument +argumentation +argumentative +arguments +aria +arias +arid +aridity +aright +arise +arisen +arises +arising +aristocracies +aristocracy +aristocrat +aristocratic +aristocrats +arithmetic +arithmetical +arithmetically +ark +arm +armada +armadas +armadillo +armadillos +armament +armaments +armband +armbands +armchair +armchairs +armed +armful +armfuls +armhole +armholes +armies +arming +armistice +armistices +armload +armloads +armor +armored +armorer +armorers +armories +armory +armour +armoured +armourer +armourers +armouries +armoury +armpit +armpits +armrest +armrests +arms +army +aroma +aromas +aromatherapist +aromatherapists +aromatherapy +aromatic +arose +around +arousal +arouse +aroused +arouses +arousing +arpeggio +arpeggios +arraign +arraigned +arraigning +arraignment +arraignments +arraigns +arrange +arranged +arrangement +arrangements +arranger +arrangers +arranges +arranging +arrant +array +arrayed +arraying +arrays +arrears +arrest +arrested +arresting +arrests +arrival +arrivals +arrive +arrived +arrives +arriving +arrogance +arrogant +arrogantly +arrogate +arrogated +arrogates +arrogating +arrow +arrowhead +arrowheads +arrowroot +arrows +arse +arsed +arsehole +arseholes +arsenal +arsenals +arsenic +arses +arsing +arson +arsonist +arsonists +art +artefact +artefacts +arterial +arteries +arteriosclerosis +artery +artful +artfully +artfulness +arthritic +arthritis +artichoke +artichokes +article +articled +articles +articulacy +articulate +articulated +articulately +articulateness +articulates +articulating +articulation +articulations +artifact +artifacts +artifice +artifices +artificial +artificiality +artificially +artillery +artisan +artisans +artist +artiste +artistes +artistic +artistically +artistry +artists +artless +artlessly +artlessness +arts +artsy +artwork +artworks +arty +arugula +as +asbestos +ascend +ascendancy +ascended +ascendency +ascending +ascends +ascension +ascent +ascents +ascertain +ascertained +ascertaining +ascertains +ascetic +ascetically +asceticism +ascetics +ascot +ascots +ascribable +ascribe +ascribed +ascribes +ascribing +aseptic +asexual +asexually +ash +ashamed +ashcan +ashcans +ashen +ashes +ashore +ashram +ashrams +ashtray +ashtrays +ashy +aside +asides +asinine +ask +asked +askew +asking +asks +asleep +asp +asparagus +aspect +aspects +aspen +aspens +asperities +asperity +aspersions +asphalt +asphalted +asphalting +asphalts +asphyxia +asphyxiate +asphyxiated +asphyxiates +asphyxiating +asphyxiation +aspic +aspidistra +aspidistras +aspirant +aspirants +aspirate +aspirated +aspirates +aspirating +aspiration +aspirations +aspire +aspired +aspires +aspirin +aspiring +aspirins +asps +ass +assail +assailant +assailants +assailed +assailing +assails +assassin +assassinate +assassinated +assassinates +assassinating +assassination +assassinations +assassins +assault +assaulted +assaulting +assaults +assay +assayed +assaying +assays +assemblage +assemblages +assemble +assembled +assembler +assemblers +assembles +assemblies +assembling +assembly +assemblyman +assemblymen +assemblywoman +assemblywomen +assent +assented +assenting +assents +assert +asserted +asserting +assertion +assertions +assertive +assertively +assertiveness +asserts +asses +assess +assessed +assesses +assessing +assessment +assessments +assessor +assessors +asset +assets +asshole +assholes +assiduity +assiduous +assiduously +assign +assignation +assignations +assigned +assigning +assignment +assignments +assigns +assimilate +assimilated +assimilates +assimilating +assimilation +assist +assistance +assistant +assistants +assisted +assisting +assists +assize +assizes +associate +associated +associates +associating +association +associations +assonance +assorted +assortment +assortments +assuage +assuaged +assuages +assuaging +assume +assumed +assumes +assuming +assumption +assumptions +assurance +assurances +assure +assured +assuredly +assures +assuring +asterisk +asterisked +asterisking +asterisks +astern +asteroid +asteroids +asthma +asthmatic +asthmatically +asthmatics +astigmatic +astigmatism +astonish +astonished +astonishes +astonishing +astonishingly +astonishment +astound +astounded +astounding +astoundingly +astounds +astrakhan +astral +astride +astringency +astringent +astringents +astrologer +astrologers +astrological +astrologically +astrology +astronaut +astronauts +astronomer +astronomers +astronomic +astronomical +astronomically +astronomy +astrophysical +astrophysicist +astrophysicists +astrophysics +astute +astutely +astuteness +asunder +asylum +asylums +asymmetric +asymmetrical +asymmetrically +asymmetries +asymmetry +asymptomatic +at +atavistic +ate +atelier +ateliers +atheism +atheist +atheistic +atheists +athlete +athletes +athletic +athletically +athleticism +athletics +atishoo +atlas +atlases +atmosphere +atmospheres +atmospheric +atmospherics +atoll +atolls +atom +atomic +atomizer +atomizers +atoms +atonal +atone +atoned +atonement +atones +atoning +atop +atrium +atriums +atrocious +atrociously +atrocities +atrocity +atrophied +atrophies +atrophy +atrophying +attach +attache +attached +attaches +attaching +attachment +attachments +attack +attacked +attacker +attackers +attacking +attacks +attain +attainable +attained +attaining +attainment +attainments +attains +attempt +attempted +attempting +attempts +attend +attendance +attendances +attendant +attendants +attended +attendee +attendees +attender +attenders +attending +attends +attention +attentions +attentive +attentively +attentiveness +attenuate +attenuated +attenuates +attenuating +attenuation +attest +attestation +attestations +attested +attesting +attests +attic +attics +attire +attired +attitude +attitudes +attitudinal +attorney +attorneys +attract +attracted +attracting +attraction +attractions +attractive +attractively +attractiveness +attracts +attributable +attribute +attributed +attributes +attributing +attribution +attributive +attributively +attrition +attuned +atypical +aubergine +aubergines +auburn +auction +auctioned +auctioneer +auctioneers +auctioning +auctions +audacious +audaciously +audacity +audibility +audible +audibly +audience +audiences +audio +audiotape +audiotapes +audiovisual +audit +audited +auditing +audition +auditioned +auditioning +auditions +auditor +auditoria +auditorium +auditoriums +auditors +auditory +audits +auger +augers +aught +augment +augmentation +augmentations +augmented +augmenting +augments +augur +augured +auguries +auguring +augurs +augury +august +auk +auks +aunt +auntie +aunties +aunts +aunty +aura +aural +aurally +auras +aureole +aureoles +auricle +auricles +auspicious +austere +austerely +austerities +austerity +authentic +authentically +authenticate +authenticated +authenticates +authenticating +authentication +authenticity +author +authored +authoress +authoresses +authorial +authoring +authorisation +authorisations +authorise +authorised +authorises +authorising +authoritarian +authoritarianism +authoritarians +authoritative +authoritatively +authorities +authority +authorization +authorizations +authorize +authorized +authorizes +authorizing +authors +authorship +autism +autistic +auto +autobahn +autobahns +autobiographical +autobiographies +autobiography +autocracies +autocracy +autocrat +autocratic +autocratically +autocrats +autocross +autograph +autographed +autographing +autographs +automaker +automakers +automata +automate +automated +automates +automatic +automatically +automatics +automating +automation +automaton +automatons +automobile +automobiles +automotive +autonomous +autonomously +autonomy +autopilot +autopilots +autopsies +autopsy +autos +autosuggestion +autumn +autumnal +autumns +auxiliaries +auxiliary +avail +availability +available +availed +availing +avails +avalanche +avalanches +avarice +avaricious +avariciously +avenge +avenged +avenger +avengers +avenges +avenging +avenue +avenues +aver +average +averaged +averagely +averages +averaging +averred +averring +avers +averse +aversion +aversions +avert +averted +averting +averts +aviaries +aviary +aviation +aviator +aviators +avid +avidity +avidly +avionic +avionics +avocado +avocados +avoid +avoidable +avoidance +avoided +avoiding +avoids +avoirdupois +avow +avowal +avowals +avowed +avowedly +avowing +avows +avuncular +avuncularly +await +awaited +awaiting +awaits +awake +awaken +awakened +awakening +awakenings +awakens +awakes +awaking +award +awarded +awarding +awards +aware +awareness +awash +away +awe +awed +awes +awesome +awesomely +awestricken +awestruck +awful +awfully +awfulness +awhile +awing +awkward +awkwardly +awkwardness +awl +awls +awning +awnings +awoke +awoken +awry +ax +axe +axed +axes +axing +axiom +axiomatic +axiomatically +axioms +axis +axle +axles +ay +ayatollah +ayatollahs +aye +ayes +azalea +azaleas +azure +baa +baaed +baaing +baas +babble +babbled +babbles +babbling +babe +babel +babes +babied +babies +baboon +baboons +baby +babyhood +babying +babyish +babysat +babysit +babysits +babysitter +babysitters +babysitting +baccalaureate +baccalaureates +bacchanalian +baccy +bachelor +bachelors +bacilli +bacillus +back +backache +backaches +backbench +backbencher +backbenchers +backbenches +backbiting +backboard +backboards +backbone +backbones +backbreaking +backchat +backcloth +backcloths +backcomb +backcombed +backcombing +backcombs +backdate +backdated +backdates +backdating +backdoor +backdrop +backdrops +backed +backer +backers +backfire +backfired +backfires +backfiring +backgammon +background +backgrounds +backhand +backhanded +backhander +backhanders +backhands +backhoe +backhoes +backing +backings +backlash +backlashes +backless +backlog +backlogs +backpack +backpacked +backpacker +backpackers +backpacking +backpacks +backpedal +backpedaled +backpedaling +backpedalled +backpedalling +backpedals +backrest +backrests +backroom +backrooms +backs +backscratching +backside +backsides +backslapping +backslash +backslashes +backslid +backslide +backslides +backsliding +backstage +backstop +backstops +backstreet +backstreets +backstroke +backtrack +backtracked +backtracking +backtracks +backup +backups +backward +backwardness +backwards +backwash +backwater +backwaters +backwoods +backwoodsman +backwoodsmen +backyard +backyards +bacon +bacteria +bacterial +bacteriological +bacteriologist +bacteriologists +bacteriology +bacterium +bad +baddie +baddies +baddy +bade +badge +badger +badgered +badgering +badgers +badges +badinage +badlands +badly +badminton +badness +baffle +baffled +bafflement +baffles +baffling +bag +bagatelle +bagatelles +bagel +bagels +bagful +bagfuls +baggage +bagged +baggier +baggiest +bagging +baggy +bagpipe +bagpipes +bags +baguette +baguettes +bah +bail +bailed +bailey +baileys +bailiff +bailiffs +bailing +bails +bairn +bairns +bait +baited +baiting +baits +baize +bake +baked +baker +bakeries +bakers +bakery +bakes +baking +balaclava +balaclavas +balalaika +balalaikas +balance +balanced +balances +balancing +balconies +balcony +bald +balder +balderdash +baldest +baldies +balding +baldly +baldness +baldy +bale +baled +baleful +balefully +bales +baling +balk +balked +balking +balks +ball +ballad +ballads +ballast +ballcock +ballcocks +balled +ballerina +ballerinas +ballet +balletic +ballets +ballgirl +ballgirls +ballgown +ballgowns +balling +ballistic +ballistics +balloon +ballooned +ballooning +balloonist +balloonists +balloons +ballot +balloted +balloting +ballots +ballpark +ballparks +ballplayer +ballplayers +ballpoint +ballpoints +ballroom +ballrooms +balls +ballsed +ballses +ballsing +ballsy +bally +ballyhoo +ballyhooed +ballyhooing +ballyhoos +balm +balmier +balmiest +balms +balmy +baloney +balsa +balsam +balsams +balustrade +balustrades +bamboo +bamboos +bamboozle +bamboozled +bamboozles +bamboozling +ban +banal +banalities +banality +banana +bananas +band +bandage +bandaged +bandages +bandaging +bandanna +bandannas +banded +bandied +bandies +banding +bandit +banditry +bandits +bandleader +bandleaders +bandmaster +bandmasters +bandolier +bandoliers +bands +bandsman +bandsmen +bandstand +bandstands +bandwagon +bandwagons +bandwidth +bandy +bandying +bane +baneful +bang +banged +banger +bangers +banging +bangle +bangles +bangs +banish +banished +banishes +banishing +banishment +banister +banisters +banjo +banjos +bank +bankable +banked +banker +bankers +banking +banknote +banknotes +bankroll +bankrolled +bankrolling +bankrolls +bankrupt +bankruptcies +bankruptcy +bankrupted +bankrupting +bankrupts +banks +banned +banner +banners +banning +bannister +bannisters +bannock +bannocks +banns +banquet +banqueting +banquets +banquette +banquettes +bans +banshee +banshees +bantam +bantams +bantamweight +bantamweights +banter +bantered +bantering +banters +banyan +banyans +bap +baps +baptise +baptised +baptises +baptising +baptism +baptismal +baptisms +baptize +baptized +baptizes +baptizing +bar +barb +barbarian +barbarians +barbaric +barbarism +barbarities +barbarity +barbarous +barbarously +barbecue +barbecued +barbecues +barbecuing +barbed +barbell +barbells +barbeque +barbequed +barbeques +barbequing +barber +barbers +barbershop +barbershops +barbie +barbies +barbiturate +barbiturates +barbs +bard +bards +bare +bareback +bared +barefaced +barefoot +barefooted +bareheaded +barely +bareness +barer +bares +barest +barf +barfed +barfing +barflies +barfly +barfs +bargain +bargained +bargaining +bargains +barge +barged +barges +barging +baring +baritone +baritones +barium +bark +barked +barkeeper +barkeepers +barker +barkers +barking +barks +barley +barmaid +barmaids +barman +barmen +barmier +barmiest +barmy +barn +barnacle +barnacles +barney +barneys +barns +barnstorm +barnstormed +barnstorming +barnstorms +barnyard +barnyards +barometer +barometers +barometric +baron +baroness +baronesses +baronet +baronetcies +baronetcy +baronets +baronial +baronies +barons +barony +baroque +barque +barques +barrack +barracked +barracking +barracks +barracuda +barracudas +barrage +barrages +barred +barrel +barreled +barreling +barrels +barren +barrenness +barrette +barrettes +barricade +barricaded +barricades +barricading +barrier +barriers +barring +barrio +barrios +barrister +barristers +barroom +barrooms +barrow +barrows +bars +bartender +bartenders +barter +bartered +bartering +barters +basalt +base +baseball +baseballs +baseboard +baseboards +based +baseless +baseline +baselines +basely +basement +basements +baser +bases +basest +bash +bashed +bashes +bashful +bashfully +bashfulness +bashing +basic +basically +basics +basil +basilica +basilicas +basilisk +basilisks +basin +basing +basins +basis +bask +basked +basket +basketball +basketballs +basketry +baskets +basketwork +basking +basks +basque +basques +bass +basses +basset +bassets +bassinet +bassinets +bassist +bassists +bassoon +bassoonist +bassoonists +bassoons +bastard +bastardise +bastardised +bastardises +bastardising +bastardize +bastardized +bastardizes +bastardizing +bastards +baste +basted +bastes +basting +bastion +bastions +bat +batch +batches +bath +bathe +bathed +bather +bathers +bathes +bathing +bathos +bathrobe +bathrobes +bathroom +bathrooms +baths +bathtub +bathtubs +bathwater +batik +batiks +batman +batmen +baton +batons +bats +batsman +batsmen +battalion +battalions +batted +batten +battened +battening +battens +batter +battered +batteries +battering +batterings +batters +battery +battier +battiest +batting +battle +battleax +battleaxe +battleaxes +battled +battledress +battlefield +battlefields +battleground +battlegrounds +battlements +battler +battlers +battles +battleship +battleships +battling +batty +bauble +baubles +baulk +baulked +baulking +baulks +bauxite +bawdier +bawdiest +bawdily +bawdiness +bawdy +bawl +bawled +bawling +bawls +bay +bayed +baying +bayonet +bayoneted +bayoneting +bayonets +bayou +bayous +bays +bazaar +bazaars +bazooka +bazookas +be +beach +beachcomber +beachcombers +beached +beaches +beachfront +beachhead +beachheads +beaching +beachwear +beacon +beacons +bead +beaded +beading +beads +beady +beagle +beagles +beak +beaker +beakers +beaks +beam +beamed +beaming +beams +bean +beanbag +beanbags +beanfeast +beanfeasts +beanie +beanies +beanpole +beanpoles +beans +beansprout +beansprouts +bear +bearable +beard +bearded +beards +bearer +bearers +bearing +bearings +bearish +bears +bearskin +bearskins +beast +beastliness +beastly +beasts +beat +beaten +beater +beaters +beatific +beatifically +beatification +beatifications +beatified +beatifies +beatify +beatifying +beating +beatings +beatnik +beatniks +beats +beau +beaus +beaut +beauteous +beautician +beauticians +beauties +beautified +beautifies +beautiful +beautifully +beautify +beautifying +beauts +beauty +beaux +beaver +beavered +beavering +beavers +bebop +becalmed +became +because +beck +beckon +beckoned +beckoning +beckons +becks +become +becomes +becoming +becomingly +becquerel +becquerels +bed +bedaub +bedaubed +bedaubing +bedaubs +bedazzled +bedbug +bedbugs +bedchamber +bedchambers +bedclothes +bedded +bedding +bedeck +bedecked +bedecking +bedecks +bedevil +bedeviled +bedeviling +bedevilled +bedevilling +bedevils +bedfellow +bedfellows +bedhead +bedheads +bedlam +bedpan +bedpans +bedpost +bedposts +bedraggled +bedridden +bedrock +bedroll +bedrolls +bedroom +bedrooms +beds +bedside +bedsides +bedsit +bedsits +bedsitter +bedsitters +bedsore +bedsores +bedspread +bedspreads +bedstead +bedsteads +bedtime +bee +beech +beeches +beef +beefburger +beefburgers +beefcake +beefcakes +beefed +beefier +beefiest +beefing +beefs +beefsteak +beefsteaks +beefy +beehive +beehives +beekeeper +beekeepers +beekeeping +been +beep +beeped +beeper +beepers +beeping +beeps +beer +beers +beery +bees +beeswax +beet +beetle +beetled +beetles +beetling +beetroot +beetroots +beets +befall +befallen +befalling +befalls +befell +befit +befits +befitted +befitting +before +beforehand +befriend +befriended +befriending +befriends +befuddled +beg +began +begat +beget +begets +begetter +begetters +begetting +beggar +beggared +beggaring +beggarly +beggars +begged +begging +begin +beginner +beginners +beginning +beginnings +begins +begone +begonia +begonias +begot +begotten +begrudge +begrudged +begrudges +begrudging +begrudgingly +begs +beguile +beguiled +beguiles +beguiling +beguilingly +begum +begums +begun +behalf +behave +behaved +behaves +behaving +behavior +behavioral +behaviorism +behaviorist +behaviorists +behaviors +behaviour +behavioural +behaviourism +behaviourist +behaviourists +behaviours +behead +beheaded +beheading +beheads +beheld +behest +behind +behindhand +behinds +behold +beholden +beholder +beholders +beholding +beholds +behoove +behooved +behooves +behove +behoved +behoves +beige +being +beings +bejeweled +bejewelled +belabor +belabored +belaboring +belabors +belabour +belaboured +belabouring +belabours +belated +belatedly +belay +belayed +belaying +belays +belch +belched +belches +belching +beleaguered +belfries +belfry +belie +belied +belief +beliefs +belies +believable +believe +believed +believer +believers +believes +believing +belittle +belittled +belittles +belittling +bell +belladonna +bellboy +bellboys +belle +belles +bellhop +bellhops +bellicose +bellicosity +bellied +bellies +belligerence +belligerency +belligerent +belligerently +belligerents +bellow +bellowed +bellowing +bellows +bells +bellwether +bellwethers +belly +bellyache +bellyached +bellyaches +bellyaching +bellying +belong +belonged +belonging +belongings +belongs +beloved +below +belt +belted +belting +belts +beltway +beltways +belying +bemoan +bemoaned +bemoaning +bemoans +bemused +bench +benches +benchmark +benchmarks +bend +bendable +bender +benders +bendier +bendiest +bending +bends +bendy +beneath +benedictine +benediction +benedictions +benefaction +benefactions +benefactor +benefactors +benefactress +benefactresses +benefice +beneficence +beneficent +benefices +beneficial +beneficiaries +beneficiary +benefit +benefited +benefiting +benefits +benefitted +benefitting +benevolence +benevolent +benevolently +benighted +benign +benignly +bent +bents +benumbed +benzene +bequeath +bequeathed +bequeathing +bequeaths +bequest +bequests +berate +berated +berates +berating +bereaved +bereavement +bereavements +bereft +beret +berets +berk +berks +berries +berry +berserk +berth +berthed +berthing +berths +beseech +beseeched +beseeches +beseeching +beseechingly +beset +besets +besetting +beside +besides +besiege +besieged +besieges +besieging +besmirch +besmirched +besmirches +besmirching +besotted +besought +bespeak +bespeaking +bespeaks +bespectacled +bespoke +bespoken +best +bested +bestial +bestiality +bestiaries +bestiary +besting +bestir +bestirred +bestirring +bestirs +bestow +bestowed +bestowing +bestows +bestridden +bestride +bestrides +bestriding +bestrode +bests +bestseller +bestsellers +bestselling +bet +beta +betas +betel +betoken +betokened +betokening +betokens +betray +betrayal +betrayals +betrayed +betrayer +betrayers +betraying +betrays +betroth +betrothal +betrothals +betrothed +betrothing +betroths +bets +betted +better +bettered +bettering +betterment +betters +betting +between +betwixt +bevel +beveled +bevelled +bevels +beverage +beverages +bevies +bevvies +bevvy +bevy +bewail +bewailed +bewailing +bewails +beware +bewigged +bewilder +bewildered +bewildering +bewilderingly +bewilderment +bewilders +bewitch +bewitched +bewitches +bewitching +beyond +bhaji +biannual +bias +biased +biases +biasing +biassed +biassing +biathlon +bib +bible +bibles +biblical +bibliographer +bibliographers +bibliographies +bibliography +bibliophile +bibliophiles +bibs +bicameral +bicarb +bicarbonate +bicentenaries +bicentenary +bicentennial +bicentennials +biceps +bicker +bickered +bickering +bickers +bicycle +bicycled +bicycles +bicycling +bicyclist +bicyclists +bid +bidden +bidder +bidders +biddies +bidding +biddy +bide +bided +bides +bidet +bidets +biding +bids +biennial +biennially +biennials +bier +biers +biff +biffed +biffing +biffs +bifocal +bifocals +bifurcate +bifurcated +bifurcates +bifurcating +bifurcation +bifurcations +big +bigamist +bigamists +bigamous +bigamy +bigger +biggest +biggie +biggies +bight +bights +bigness +bigot +bigoted +bigotry +bigots +bigwig +bigwigs +bijou +bike +biked +biker +bikers +bikes +biking +bikini +bikinis +bilabial +bilabials +bilateral +bilaterally +bilberries +bilberry +bile +bilge +bilges +bilingual +bilinguals +bilious +bilk +bilked +bilking +bilks +bill +billboard +billboards +billed +billet +billeted +billeting +billets +billfold +billfolds +billhook +billhooks +billiard +billiards +billies +billing +billion +billionaire +billionaires +billions +billionth +billionths +billow +billowed +billowing +billows +bills +billy +billycan +billycans +bimbo +bimbos +bimonthly +bin +binary +bind +binder +binders +binding +bindings +binds +bindweed +binge +binged +bingeing +binges +binging +bingo +binman +binmen +binned +binning +binoculars +binomial +binomials +bins +biochemical +biochemist +biochemistry +biochemists +biodegradable +biodegrade +biodegraded +biodegrades +biodegrading +biodiversity +biographer +biographers +biographical +biographies +biography +biological +biologically +biologist +biologists +biology +biomass +bionic +biophysics +biopic +biopics +biopsies +biopsy +biorhythms +biosphere +biotechnology +bipartisan +biped +bipeds +biplane +biplanes +birch +birched +birches +birching +bird +birdbrain +birdbrains +birdcage +birdcages +birdie +birdied +birdies +birdlike +birds +birdseed +birdsong +birdying +birth +birthday +birthdays +birthing +birthmark +birthmarks +birthplace +birthplaces +birthright +birthrights +births +biscuit +biscuits +bisect +bisected +bisecting +bisects +bisexual +bisexuality +bisexuals +bishop +bishopric +bishoprics +bishops +bison +bisons +bisque +bistro +bistros +bit +bitch +bitched +bitches +bitchier +bitchiest +bitchiness +bitching +bitchy +bite +bites +biting +bitingly +bitmap +bitmaps +bits +bitten +bitter +bitterest +bitterly +bittern +bitterness +bitterns +bitters +bittersweet +bitty +bitumen +bituminous +bivalve +bivalves +bivouac +bivouacked +bivouacking +bivouacs +biweekly +biz +bizarre +bizarrely +blab +blabbed +blabber +blabbered +blabbering +blabbermouth +blabbermouths +blabbers +blabbing +blabs +black +blackball +blackballed +blackballing +blackballs +blackberries +blackberry +blackberrying +blackbird +blackbirds +blackboard +blackboards +blackcurrant +blackcurrants +blacked +blacken +blackened +blackening +blackens +blacker +blackest +blackguard +blackguards +blackhead +blackheads +blacking +blackjack +blackjacks +blackleg +blacklegs +blacklist +blacklisted +blacklisting +blacklists +blackmail +blackmailed +blackmailer +blackmailers +blackmailing +blackmails +blackness +blackout +blackouts +blacks +blacksmith +blacksmiths +blackthorn +blackthorns +blacktop +bladder +bladders +blade +blades +blag +blagged +blagging +blags +blah +blame +blamed +blameless +blamelessly +blames +blameworthy +blaming +blanch +blanched +blanches +blanching +blancmange +blancmanges +bland +blander +blandest +blandishments +blandly +blandness +blank +blanked +blanket +blanketed +blanketing +blankets +blanking +blankly +blankness +blanks +blare +blared +blares +blaring +blarney +blase +blaspheme +blasphemed +blasphemer +blasphemers +blasphemes +blasphemies +blaspheming +blasphemous +blasphemously +blasphemy +blast +blasted +blasting +blasts +blatant +blatantly +blather +blathered +blathering +blathers +blaze +blazed +blazer +blazers +blazes +blazing +blazon +blazoned +blazoning +blazons +bleach +bleached +bleachers +bleaches +bleaching +bleak +bleaker +bleakest +bleakly +bleakness +blearily +bleary +bleat +bleated +bleating +bleats +bled +bleed +bleeder +bleeders +bleeding +bleeds +bleep +bleeped +bleeper +bleepers +bleeping +bleeps +blemish +blemished +blemishes +blemishing +blench +blenched +blenches +blenching +blend +blended +blender +blenders +blending +blends +bless +blessed +blessedly +blessedness +blesses +blessing +blessings +blest +blether +blethered +blethering +blethers +blew +blight +blighted +blighter +blighters +blighting +blights +blimey +blimp +blimpish +blimps +blind +blinded +blinder +blinders +blindfold +blindfolded +blindfolding +blindfolds +blinding +blindingly +blindly +blindness +blinds +blindside +blindsided +blindsides +blindsiding +blink +blinked +blinkered +blinkers +blinking +blinks +blip +blips +bliss +blissful +blissfully +blister +blistered +blistering +blisters +blithe +blithely +blitz +blitzed +blitzes +blitzing +blitzkrieg +blitzkriegs +blizzard +blizzards +bloated +bloater +bloaters +bloating +blob +blobs +bloc +block +blockade +blockaded +blockades +blockading +blockage +blockages +blockbuster +blockbusters +blockbusting +blocked +blockhead +blockheads +blocking +blocks +blocs +bloke +blokes +blokish +blond +blonde +blonder +blondes +blonds +blood +bloodbath +bloodbaths +bloodcurdling +blooded +bloodhound +bloodhounds +bloodied +bloodier +bloodiest +bloodily +blooding +bloodless +bloodlessly +bloodletting +bloodline +bloodlines +bloods +bloodshed +bloodshot +bloodstain +bloodstained +bloodstains +bloodstock +bloodstream +bloodstreams +bloodsucker +bloodsuckers +bloodthirsty +bloody +bloodying +bloom +bloomed +bloomer +bloomers +blooming +blooms +blooper +bloopers +blossom +blossomed +blossoming +blossoms +blot +blotch +blotched +blotches +blotchy +blots +blotted +blotter +blotters +blotting +blotto +blouse +blouses +blow +blower +blowers +blowhard +blowhards +blowhole +blowholes +blowing +blowlamp +blowlamps +blown +blowout +blowouts +blowpipe +blowpipes +blows +blowsier +blowsiest +blowsy +blowtorch +blowtorches +blowup +blowups +blowy +blowzier +blowziest +blowzy +blub +blubbed +blubber +blubbered +blubbering +blubbers +blubbing +blubs +bludgeon +bludgeoned +bludgeoning +bludgeons +blue +bluebell +bluebells +blueberries +blueberry +bluebird +bluebirds +bluebottle +bluebottles +bluegrass +blueish +bluejay +bluejays +blueprint +blueprints +bluer +blues +bluest +bluestocking +bluestockings +bluesy +bluff +bluffed +bluffing +bluffs +bluish +blunder +blunderbuss +blunderbusses +blundered +blunderer +blunderers +blundering +blunders +blunt +blunted +blunter +bluntest +blunting +bluntly +bluntness +blunts +blur +blurb +blurbs +blurred +blurring +blurry +blurs +blurt +blurted +blurting +blurts +blush +blushed +blusher +blushers +blushes +blushing +bluster +blustered +blustering +blusters +blustery +boa +boar +board +boarded +boarder +boarders +boarding +boardroom +boardrooms +boards +boardwalk +boardwalks +boars +boas +boast +boasted +boastful +boastfully +boastfulness +boasting +boasts +boat +boater +boaters +boathouse +boathouses +boating +boatload +boatloads +boatman +boatmen +boats +boatswain +boatswains +boatyard +boatyards +bob +bobbed +bobbies +bobbin +bobbing +bobbins +bobble +bobbles +bobby +bobcat +bobcats +bobs +bobsled +bobsleds +bobsleigh +bobsleighs +bod +bodacious +bode +boded +bodega +bodegas +bodes +bodge +bodged +bodges +bodging +bodice +bodices +bodies +bodily +boding +bodkin +bodkins +bods +body +bodybuilding +bodyguard +bodyguards +bodysuit +bodysuits +bodywork +boffin +boffins +bog +bogey +bogeyman +bogeymen +bogeys +bogged +boggier +boggiest +bogging +boggle +boggled +boggles +boggling +boggy +bogie +bogies +bogs +bogus +bogy +bohemian +bohemians +boil +boiled +boiler +boilers +boiling +boils +boisterous +boisterously +bold +bolder +boldest +boldly +boldness +bole +bolero +boleros +boles +boll +bollard +bollards +bollocking +bollockings +bollocks +bolls +bologna +boloney +bolshie +bolshy +bolster +bolstered +bolstering +bolsters +bolt +bolted +bolthole +boltholes +bolting +bolts +bomb +bombard +bombarded +bombardier +bombardiers +bombarding +bombardment +bombardments +bombards +bombast +bombastic +bombed +bomber +bombers +bombing +bombings +bombs +bombshell +bombshells +bombsite +bombsites +bonanza +bonanzas +bonbon +bonbons +bonce +bonces +bond +bondage +bonded +bondholder +bondholders +bonding +bonds +bone +boned +bonehead +boneheads +bonemeal +boner +boners +bones +boneshaker +boneshakers +bonfire +bonfires +bong +bongo +bongoes +bongos +bongs +bonhomie +bonier +boniest +boning +bonk +bonked +bonkers +bonking +bonks +bonnet +bonnets +bonnier +bonniest +bonny +bonsai +bonus +bonuses +bony +boo +boob +boobed +boobies +boobing +boobs +booby +booed +booger +boogers +boogeyman +boogeymen +boogie +boogied +boogieing +boogies +boohoo +booing +book +bookable +bookbinder +bookbinders +bookbinding +bookcase +bookcases +booked +bookend +bookends +bookie +bookies +booking +bookings +bookish +bookkeeper +bookkeepers +bookkeeping +booklet +booklets +bookmaker +bookmakers +bookmaking +bookmark +bookmarked +bookmarking +bookmarks +bookmobile +bookmobiles +bookplate +bookplates +books +bookseller +booksellers +bookshelf +bookshelves +bookshop +bookshops +bookstall +bookstalls +bookstore +bookstores +bookworm +bookworms +boom +boomed +boomer +boomerang +boomeranged +boomeranging +boomerangs +boomers +booming +booms +boon +boondocks +boondoggle +boonies +boons +boor +boorish +boors +boos +boost +boosted +booster +boosters +boosting +boosts +boot +booted +bootee +bootees +booth +booths +bootie +booties +booting +bootlace +bootlaces +bootleg +bootlegged +bootlegger +bootleggers +bootlegging +bootlegs +boots +booty +booze +boozed +boozer +boozers +boozes +boozing +boozy +bop +bopped +bopping +bops +borax +bordello +bordellos +border +bordered +bordering +borderland +borderlands +borderline +borderlines +borders +bore +bored +boredom +borehole +boreholes +bores +boring +boringly +born +borne +borough +boroughs +borrow +borrowed +borrower +borrowers +borrowing +borrowings +borrows +borscht +borstal +borstals +bosh +bosom +bosoms +bosomy +boss +bossed +bosses +bossily +bossiness +bossing +bossy +bosun +bosuns +botanical +botanist +botanists +botany +botch +botched +botches +botching +both +bother +botheration +bothered +bothering +bothers +bothersome +bottle +bottled +bottleneck +bottlenecks +bottler +bottlers +bottles +bottling +bottom +bottomed +bottoming +bottomless +bottoms +botulism +boudoir +boudoirs +bouffant +bouffants +bougainvillaea +bougainvillaeas +bougainvillea +bougainvilleas +bough +boughs +bought +bouillabaisse +bouillon +bouillons +boulder +boulders +boules +boulevard +boulevards +bounce +bounced +bouncer +bouncers +bounces +bouncier +bounciest +bouncing +bouncy +bound +boundaries +boundary +bounded +bounder +bounders +bounding +boundless +bounds +bounteous +bounties +bountiful +bounty +bouquet +bouquets +bourbon +bourbons +bourgeois +bourgeoisie +bout +boutique +boutiques +boutonniere +boutonnieres +bouts +bovine +bovver +bow +bowdlerise +bowdlerised +bowdlerises +bowdlerising +bowdlerize +bowdlerized +bowdlerizes +bowdlerizing +bowed +bowel +bowels +bower +bowers +bowing +bowl +bowled +bowler +bowlers +bowling +bowls +bowman +bowmen +bows +box +boxcar +boxcars +boxed +boxer +boxers +boxes +boxing +boxroom +boxrooms +boxwood +boxy +boy +boycott +boycotted +boycotting +boycotts +boyfriend +boyfriends +boyhood +boyish +boyishly +boys +bozo +bozos +bra +brace +braced +bracelet +bracelets +braces +bracing +bracken +bracket +bracketed +bracketing +brackets +brackish +bradawl +bradawls +brae +brag +braggart +braggarts +bragged +bragging +brags +braid +braided +braiding +braids +braille +brain +brainchild +brained +brainier +brainiest +braining +brainless +brainpower +brains +brainstorm +brainstormed +brainstorming +brainstorms +brainteaser +brainteasers +brainwash +brainwashed +brainwashes +brainwashing +brainwave +brainwaves +brainy +braise +braised +braises +braising +brake +braked +brakes +braking +bramble +brambles +bran +branch +branched +branches +branching +brand +branded +brandies +branding +brandish +brandished +brandishes +brandishing +brands +brandy +bras +brash +brasher +brashest +brashly +brashness +brass +brasserie +brasseries +brasses +brassier +brassiere +brassieres +brassiest +brassy +brat +brats +bravado +brave +braved +bravely +braver +bravery +braves +bravest +braving +bravo +bravura +brawl +brawled +brawler +brawlers +brawling +brawls +brawn +brawnier +brawniest +brawny +bray +brayed +braying +brays +brazen +brazened +brazening +brazenly +brazens +brazier +braziers +breach +breached +breaches +breaching +bread +breadbasket +breadbaskets +breadboard +breadboards +breadbox +breadboxes +breadcrumb +breadcrumbs +breaded +breadfruit +breadfruits +breading +breadline +breads +breadth +breadths +breadwinner +breadwinners +break +breakable +breakage +breakages +breakaway +breakaways +breakdown +breakdowns +breaker +breakers +breakfast +breakfasted +breakfasting +breakfasts +breaking +breakneck +breakout +breakouts +breaks +breakthrough +breakthroughs +breakup +breakups +breakwater +breakwaters +bream +breast +breastbone +breastbones +breasted +breastfed +breastfeed +breastfeeding +breastfeeds +breasting +breastplate +breastplates +breasts +breaststroke +breath +breathable +breathalyse +breathalysed +breathalyser +breathalysers +breathalyses +breathalysing +breathalyze +breathalyzed +breathalyzer +breathalyzers +breathalyzes +breathalyzing +breathe +breathed +breather +breathers +breathes +breathing +breathless +breathlessly +breathlessness +breaths +breathtaking +breathtakingly +breathy +bred +breech +breeches +breed +breeder +breeders +breeding +breeds +breeze +breezed +breezes +breezily +breeziness +breezing +breezy +brethren +brevity +brew +brewed +brewer +breweries +brewers +brewery +brewing +brews +briar +briars +bribe +bribed +bribery +bribes +bribing +brick +brickbat +brickbats +bricked +brickie +brickies +bricking +bricklayer +bricklayers +bricklaying +bricks +brickwork +brickyard +brickyards +bridal +bride +bridegroom +bridegrooms +brides +bridesmaid +bridesmaids +bridge +bridged +bridgehead +bridgeheads +bridges +bridging +bridle +bridled +bridles +bridleway +bridleways +bridling +brie +brief +briefcase +briefcases +briefed +briefer +briefest +briefing +briefings +briefly +briefs +brier +briers +brig +brigade +brigades +brigadier +brigadiers +brigand +brigands +bright +brighten +brightened +brightening +brightens +brighter +brightest +brightly +brightness +brights +brigs +brill +brilliance +brilliant +brilliantine +brilliantly +brim +brimful +brimmed +brimming +brims +brimstone +brindled +brine +bring +bringing +brings +brink +brinkmanship +brinksmanship +briny +brioche +brioches +briquette +briquettes +brisk +brisker +briskest +brisket +briskly +briskness +bristle +bristled +bristles +bristling +bristly +britches +brittle +bro +broach +broached +broaches +broaching +broad +broadcast +broadcaster +broadcasters +broadcasting +broadcasts +broaden +broadened +broadening +broadens +broader +broadest +broadly +broadminded +broadness +broads +broadsheet +broadsheets +broadside +broadsides +broadsword +broadswords +brocade +brocades +broccoli +brochure +brochures +brogue +brogues +broil +broiled +broiler +broilers +broiling +broils +broke +broken +broker +brokerage +brokered +brokering +brokers +brollies +brolly +bromide +bromides +bronchial +bronchitic +bronchitis +bronco +broncos +brontosaurus +brontosauruses +bronze +bronzed +bronzes +brooch +brooches +brood +brooded +broodily +broodiness +brooding +broods +broody +brook +brooked +brooking +brooks +broom +brooms +broomstick +broomsticks +bros +broth +brothel +brothels +brother +brotherhood +brotherhoods +brotherly +brothers +broths +brougham +broughams +brought +brouhaha +brow +browbeat +browbeaten +browbeating +browbeats +brown +browned +browner +brownest +brownfield +brownie +brownies +browning +brownish +browns +brownstone +brownstones +brows +browse +browsed +browser +browsers +browses +browsing +bruise +bruised +bruiser +bruisers +bruises +bruising +bruit +bruited +bruiting +bruits +brunch +brunches +brunette +brunettes +brush +brushed +brushes +brushing +brushstroke +brushstrokes +brushwood +brushwork +brusque +brusquely +brusqueness +brutal +brutalise +brutalised +brutalises +brutalising +brutalities +brutality +brutalize +brutalized +brutalizes +brutalizing +brutally +brute +brutes +brutish +brutishness +bub +bubble +bubbled +bubblegum +bubbles +bubbling +bubbly +bubs +buccaneer +buccaneers +buck +bucked +bucket +bucketed +bucketful +bucketfuls +bucketing +buckets +bucking +buckle +buckled +buckles +buckling +buckram +bucks +buckshot +buckskin +buckwheat +bucolic +bud +budded +buddies +budding +buddy +budge +budged +budgerigar +budgerigars +budges +budget +budgetary +budgeted +budgeting +budgets +budgie +budgies +budging +buds +buff +buffalo +buffaloes +buffed +buffer +buffered +buffering +buffers +buffet +buffeted +buffeting +buffetings +buffets +buffing +buffoon +buffoonery +buffoons +buffs +bug +bugbear +bugbears +bugged +bugger +buggered +buggering +buggers +buggery +buggies +bugging +buggy +bugle +bugler +buglers +bugles +bugs +build +builder +builders +building +buildings +builds +built +bulb +bulbous +bulbs +bulge +bulged +bulges +bulging +bulgy +bulimia +bulimic +bulimics +bulk +bulked +bulkhead +bulkheads +bulkier +bulkiest +bulking +bulks +bulky +bull +bulldog +bulldogs +bulldoze +bulldozed +bulldozer +bulldozers +bulldozes +bulldozing +bullet +bulletin +bulletins +bulletproof +bullets +bullfight +bullfighter +bullfighters +bullfighting +bullfights +bullfinch +bullfinches +bullfrog +bullfrogs +bullhorn +bullhorns +bullied +bullies +bullion +bullish +bullock +bullocks +bullring +bullrings +bulls +bullshit +bullshits +bullshitted +bullshitter +bullshitters +bullshitting +bullwhip +bullwhips +bully +bullying +bulrush +bulrushes +bulwark +bulwarks +bum +bumbag +bumbags +bumble +bumblebee +bumblebees +bumbled +bumbles +bumbling +bumf +bummed +bummer +bummers +bumming +bump +bumped +bumper +bumpers +bumph +bumpier +bumpiest +bumping +bumpkin +bumpkins +bumps +bumptious +bumptiousness +bumpy +bums +bun +bunch +bunched +bunches +bunching +bundle +bundled +bundles +bundling +bung +bungalow +bungalows +bunged +bungee +bungees +bunging +bungle +bungled +bungler +bunglers +bungles +bungling +bungs +bunion +bunions +bunk +bunked +bunker +bunkers +bunkhouse +bunkhouses +bunking +bunks +bunkum +bunnies +bunny +buns +bunt +bunted +bunting +bunts +buoy +buoyancy +buoyant +buoyantly +buoyed +buoying +buoys +bur +burble +burbled +burbles +burbling +burden +burdened +burdening +burdens +burdensome +bureau +bureaucracies +bureaucracy +bureaucrat +bureaucratic +bureaucratically +bureaucrats +bureaus +bureaux +burgeon +burgeoned +burgeoning +burgeons +burger +burgers +burgh +burgher +burghers +burghs +burglar +burglaries +burglarize +burglarized +burglarizes +burglarizing +burglars +burglary +burgle +burgled +burgles +burgling +burgundies +burgundy +burial +burials +buried +buries +burk +burks +burlap +burlesque +burlesques +burlier +burliest +burly +burn +burned +burner +burners +burning +burnish +burnished +burnishes +burnishing +burnout +burnouts +burns +burnt +burp +burped +burping +burps +burr +burrito +burritos +burrow +burrowed +burrowing +burrows +burrs +burs +bursar +bursaries +bursars +bursary +burst +bursting +bursts +bury +burying +bus +busbies +busboy +busboys +busby +bused +buses +bush +bushed +bushel +bushels +bushes +bushier +bushiest +bushman +bushmen +bushy +busied +busier +busies +busiest +busily +business +businesses +businesslike +businessman +businessmen +businesswoman +businesswomen +busing +busk +busked +busker +buskers +busking +busks +busload +busloads +bussed +busses +bussing +bust +busted +buster +bustier +bustiers +busting +bustle +bustled +bustles +bustling +busts +busty +busy +busybodies +busybody +busying +busywork +but +butane +butch +butcher +butchered +butchering +butchers +butchery +butler +butlers +buts +butt +butted +butter +buttercup +buttercups +buttered +butterfingers +butterflies +butterfly +buttering +buttermilk +butters +butterscotch +buttery +butties +butting +buttock +buttocks +button +buttoned +buttonhole +buttonholed +buttonholes +buttonholing +buttoning +buttons +buttress +buttressed +buttresses +buttressing +butts +butty +buxom +buy +buyer +buyers +buying +buyout +buyouts +buys +buzz +buzzard +buzzards +buzzed +buzzer +buzzers +buzzes +buzzing +buzzword +buzzwords +by +bye +byes +bygone +bygones +bylaw +bylaws +byline +bylines +bypass +bypassed +bypasses +bypassing +byplay +byproduct +byproducts +byre +byres +bystander +bystanders +byte +bytes +byway +byways +byword +bywords +byzantine +cab +cabal +cabals +cabaret +cabarets +cabbage +cabbages +cabbie +cabbies +cabby +cabdriver +cabdrivers +caber +cabers +cabin +cabinet +cabinetmaker +cabinetmakers +cabinets +cabins +cable +cabled +cablegram +cablegrams +cables +cabling +caboose +cabooses +cabs +cacao +cache +caches +cachet +cackle +cackled +cackles +cackling +cacophonies +cacophonous +cacophony +cacti +cactus +cactuses +cad +cadaver +cadaverous +cadavers +caddie +caddied +caddies +caddy +caddying +cadence +cadences +cadenza +cadenzas +cadet +cadets +cadge +cadged +cadger +cadgers +cadges +cadging +cadmium +cadre +cadres +cads +caesarean +caesareans +caesura +caesuras +cafe +cafes +cafeteria +cafeterias +cafetiere +cafetieres +caff +caffeine +caffs +caftan +caftans +cage +caged +cages +cagey +cagier +cagiest +cagily +caginess +caging +cagoule +cagoules +caiman +caimans +cairn +cairns +cajole +cajoled +cajoles +cajoling +cake +caked +cakes +cakewalk +caking +calabash +calabashes +calamine +calamities +calamitous +calamitously +calamity +calcified +calcifies +calcify +calcifying +calcium +calculable +calculate +calculated +calculates +calculating +calculation +calculations +calculator +calculators +calculus +caldron +caldrons +calendar +calendars +calf +calfskin +caliber +calibers +calibrate +calibrated +calibrates +calibrating +calibration +calibrations +calibre +calibres +calico +calif +califs +caliper +calipers +caliph +caliphate +caliphates +caliphs +calisthenics +call +called +caller +callers +calligrapher +calligraphers +calligraphy +calling +callings +calliper +callipers +callisthenics +callous +calloused +callously +callousness +callow +calls +callus +calluses +calm +calmed +calmer +calmest +calming +calmly +calmness +calms +caloric +calorie +calories +calorific +calumnies +calumny +calve +calved +calves +calving +calyces +calypso +calypsos +calyx +calyxes +cam +camaraderie +camber +cambers +cambric +camcorder +camcorders +came +camel +camellia +camellias +camels +cameo +cameos +camera +cameraman +cameramen +cameras +camerawoman +camerawomen +camerawork +camiknickers +camisole +camisoles +camomile +camomiles +camouflage +camouflaged +camouflages +camouflaging +camp +campaign +campaigned +campaigner +campaigners +campaigning +campaigns +campanile +campaniles +campanologist +campanologists +campanology +camped +camper +campers +campfire +campfires +campground +campgrounds +camphor +camping +camps +campsite +campsites +campus +campuses +campy +cams +camshaft +camshafts +can +canal +canalisation +canalise +canalised +canalises +canalising +canalization +canalize +canalized +canalizes +canalizing +canals +canape +canapes +canard +canards +canaries +canary +canasta +cancan +cancans +cancel +canceled +canceling +cancellation +cancellations +cancelled +cancelling +cancels +cancer +cancerous +cancers +candelabra +candelabras +candelabrum +candelabrums +candid +candida +candidacies +candidacy +candidate +candidates +candidature +candidatures +candidly +candied +candies +candle +candlelight +candlelit +candles +candlestick +candlesticks +candlewick +candor +candour +candy +candyfloss +cane +caned +canes +canine +canines +caning +canister +canisters +canker +cankers +cannabis +canned +cannelloni +canneries +cannery +cannibal +cannibalise +cannibalised +cannibalises +cannibalising +cannibalism +cannibalistic +cannibalize +cannibalized +cannibalizes +cannibalizing +cannibals +cannier +canniest +cannily +canning +cannon +cannonade +cannonades +cannonball +cannonballs +cannoned +cannoning +cannons +cannot +canny +canoe +canoed +canoeing +canoeist +canoeists +canoes +canon +canonical +canonisation +canonisations +canonise +canonised +canonises +canonising +canonization +canonizations +canonize +canonized +canonizes +canonizing +canons +canoodle +canoodled +canoodles +canoodling +canopied +canopies +canopy +cans +cant +cantaloup +cantaloupe +cantaloupes +cantaloups +cantankerous +cantata +cantatas +canted +canteen +canteens +canter +cantered +cantering +canters +canticle +canticles +cantilever +cantilevers +canting +canto +canton +cantonment +cantonments +cantons +cantor +cantors +cantos +cants +canvas +canvases +canvass +canvassed +canvasser +canvassers +canvasses +canvassing +canyon +canyoning +canyons +cap +capabilities +capability +capable +capably +capacious +capacities +capacitor +capacitors +capacity +cape +caped +caper +capered +capering +capers +capes +capillaries +capillary +capital +capitalisation +capitalise +capitalised +capitalises +capitalising +capitalism +capitalist +capitalistic +capitalists +capitalization +capitalize +capitalized +capitalizes +capitalizing +capitals +capitation +capitations +capitulate +capitulated +capitulates +capitulating +capitulation +capitulations +capon +capons +capped +capping +cappuccino +cappuccinos +caprice +caprices +capricious +capriciously +capriciousness +caps +capsicum +capsicums +capsize +capsized +capsizes +capsizing +capstan +capstans +capsule +capsules +captain +captaincies +captaincy +captained +captaining +captains +caption +captioned +captioning +captions +captious +captivate +captivated +captivates +captivating +captive +captives +captivity +captor +captors +capture +captured +captures +capturing +car +carafe +carafes +caramel +caramelise +caramelised +caramelises +caramelising +caramelize +caramelized +caramelizes +caramelizing +caramels +carapace +carapaces +carat +carats +caravan +caravanning +caravans +caraway +caraways +carbine +carbines +carbohydrate +carbohydrates +carbolic +carbon +carbonated +carboniferous +carbonise +carbonised +carbonises +carbonising +carbonize +carbonized +carbonizes +carbonizing +carbons +carboy +carboys +carbuncle +carbuncles +carburetor +carburetors +carburettor +carburettors +carcase +carcases +carcass +carcasses +carcinogen +carcinogenic +carcinogens +carcinoma +carcinomas +card +cardamom +cardamoms +cardamon +cardamons +cardboard +carded +cardholder +cardholders +cardiac +cardie +cardies +cardigan +cardigans +cardinal +cardinals +carding +cardiologist +cardiologists +cardiology +cardiovascular +cards +cardsharp +cardsharps +care +cared +careen +careened +careening +careens +career +careered +careering +careerism +careerist +careerists +careers +carefree +careful +carefully +carefulness +caregiver +caregivers +careless +carelessly +carelessness +carer +carers +cares +caress +caressed +caresses +caressing +caretaker +caretakers +careworn +carfare +cargo +cargoes +cargos +carhop +carhops +caribou +caribous +caricature +caricatured +caricatures +caricaturing +caricaturist +caricaturists +caries +carillon +carillons +caring +carjack +carjacked +carjacker +carjackers +carjacking +carjackings +carjacks +carload +carloads +carmine +carnage +carnal +carnally +carnation +carnations +carnival +carnivals +carnivore +carnivores +carnivorous +carob +carobs +carol +caroled +caroling +carolled +carolling +carols +carouse +caroused +carousel +carousels +carouses +carousing +carp +carped +carpenter +carpenters +carpentry +carpet +carpetbagger +carpetbaggers +carpeted +carpeting +carpets +carping +carpool +carpooled +carpooling +carpools +carport +carports +carps +carrel +carrels +carriage +carriages +carriageway +carriageways +carried +carrier +carriers +carries +carrion +carrot +carrots +carroty +carry +carryall +carryalls +carrycot +carrycots +carrying +carryout +cars +carsick +carsickness +cart +carted +cartel +cartels +carter +carters +carthorse +carthorses +cartilage +cartilages +carting +cartload +cartloads +cartographer +cartographers +cartography +carton +cartons +cartoon +cartoonist +cartoonists +cartoons +cartridge +cartridges +carts +cartwheel +cartwheeled +cartwheeling +cartwheels +carve +carved +carver +carveries +carvers +carvery +carves +carving +carvings +cascade +cascaded +cascades +cascading +case +casebook +casebooks +cased +caseload +caseloads +casement +casements +cases +casework +caseworker +caseworkers +cash +cashed +cashes +cashew +cashews +cashier +cashiered +cashiering +cashiers +cashing +cashless +cashmere +cashpoint +cashpoints +casing +casings +casino +casinos +cask +casket +caskets +casks +cassava +casserole +casseroled +casseroles +casseroling +cassette +cassettes +cassock +cassocks +cast +castanets +castaway +castaways +caste +castellated +caster +casters +castes +castigate +castigated +castigates +castigating +castigation +casting +castings +castle +castles +castoff +castoffs +castor +castors +castrate +castrated +castrates +castrating +castration +castrations +casts +casual +casually +casualness +casuals +casualties +casualty +casuistry +cat +cataclysm +cataclysmic +cataclysms +catacomb +catacombs +catalepsy +cataleptic +catalog +cataloged +cataloging +catalogs +catalogue +catalogued +catalogues +cataloguing +catalyse +catalysed +catalyses +catalysing +catalysis +catalyst +catalysts +catalytic +catalyze +catalyzed +catalyzes +catalyzing +catamaran +catamarans +catapult +catapulted +catapulting +catapults +cataract +cataracts +catarrh +catastrophe +catastrophes +catastrophic +catastrophically +catatonic +catcall +catcalls +catch +catchall +catchalls +catcher +catchers +catches +catchier +catchiest +catching +catchment +catchments +catchphrase +catchphrases +catchword +catchwords +catchy +catechism +catechisms +categorical +categorically +categories +categorisation +categorisations +categorise +categorised +categorises +categorising +categorization +categorizations +categorize +categorized +categorizes +categorizing +category +cater +catered +caterer +caterers +catering +caterpillar +caterpillars +caters +caterwaul +caterwauled +caterwauling +caterwauls +catfish +catfishes +catgut +catharses +catharsis +cathartic +cathedral +cathedrals +catheter +catheters +cathode +cathodes +catholic +catkin +catkins +catnap +catnapped +catnapping +catnaps +catnip +cats +catsuit +catsuits +catsup +catsups +catteries +cattery +cattier +cattiest +cattily +cattiness +cattle +cattleman +cattlemen +catty +catwalk +catwalks +caucus +caucuses +caught +cauldron +cauldrons +cauliflower +cauliflowers +caulk +caulked +caulking +caulks +causal +causality +causation +causative +cause +caused +causes +causeway +causeways +causing +caustic +caustically +cauterise +cauterised +cauterises +cauterising +cauterize +cauterized +cauterizes +cauterizing +caution +cautionary +cautioned +cautioning +cautions +cautious +cautiously +cautiousness +cavalcade +cavalcades +cavalier +cavalry +cavalryman +cavalrymen +cave +caveat +caveats +caved +caveman +cavemen +caver +cavern +cavernous +caverns +cavers +caves +caviar +caviare +cavil +caviled +caviling +cavilled +cavilling +cavils +caving +cavities +cavity +cavort +cavorted +cavorting +cavorts +caw +cawed +cawing +caws +cayman +caymans +cease +ceased +ceasefire +ceasefires +ceaseless +ceaselessly +ceases +ceasing +cedar +cedars +cedarwood +cede +ceded +cedes +cedilla +cedillas +ceding +ceilidh +ceilidhs +ceiling +ceilings +celeb +celebrant +celebrants +celebrate +celebrated +celebrates +celebrating +celebration +celebrations +celebratory +celebrities +celebrity +celebs +celeriac +celerity +celery +celestial +celibacy +celibate +celibates +cell +cellar +cellars +cellist +cellists +cellmate +cellmates +cello +cellophane +cellos +cellphone +cellphones +cells +cellular +cellulite +celluloid +cellulose +cement +cemented +cementing +cements +cemeteries +cemetery +cenotaph +cenotaphs +censor +censored +censoring +censorious +censors +censorship +censure +censured +censures +censuring +census +censuses +cent +centaur +centaurs +centenarian +centenarians +centenaries +centenary +centennial +centennials +center +centered +centerfold +centerfolds +centering +centerpiece +centerpieces +centers +centigrade +centigram +centigramme +centigrammes +centigrams +centiliter +centiliters +centilitre +centilitres +centimeter +centimeters +centimetre +centimetres +centipede +centipedes +central +centralisation +centralise +centralised +centralises +centralising +centralism +centralist +centrality +centralization +centralize +centralized +centralizes +centralizing +centrally +centre +centred +centrefold +centrefolds +centrepiece +centrepieces +centres +centrifugal +centrifuge +centrifuges +centring +centripetal +centrist +centrists +cents +centuries +centurion +centurions +century +ceramic +ceramics +cereal +cereals +cerebellum +cerebellums +cerebra +cerebral +cerebration +cerebrum +cerebrums +ceremonial +ceremonially +ceremonials +ceremonies +ceremonious +ceremoniously +ceremony +cerise +cert +certain +certainly +certainties +certainty +certifiable +certificate +certificated +certificates +certification +certifications +certified +certifies +certify +certifying +certitude +certitudes +certs +cervical +cervices +cervix +cervixes +cesarean +cesareans +cessation +cessations +cession +cessions +cesspit +cesspits +cesspool +cesspools +cetacean +cetaceans +chafe +chafed +chafes +chaff +chaffed +chaffinch +chaffinches +chaffing +chaffs +chafing +chagrin +chagrined +chain +chained +chaining +chains +chainsaw +chainsaws +chair +chaired +chairing +chairlift +chairlifts +chairman +chairmanship +chairmanships +chairmen +chairperson +chairpersons +chairs +chairwoman +chairwomen +chalet +chalets +chalice +chalices +chalk +chalkboard +chalkboards +chalked +chalkiness +chalking +chalks +chalky +challenge +challenged +challenger +challengers +challenges +challenging +chamber +chamberlain +chamberlains +chambermaid +chambermaids +chambers +chameleon +chameleons +chamois +chamomile +champ +champagne +champagnes +champed +champers +champing +champion +championed +championing +champions +championship +championships +champs +chance +chanced +chancel +chancelleries +chancellery +chancellor +chancellors +chancels +chancery +chances +chancier +chanciest +chancing +chancy +chandelier +chandeliers +chandler +chandlers +change +changeability +changeable +changed +changeless +changeling +changelings +changeover +changeovers +changes +changing +channel +channeled +channeling +channelled +channelling +channels +chant +chanted +chantey +chanteys +chanties +chanting +chants +chanty +chaos +chaotic +chaotically +chap +chaparral +chapati +chapatis +chapatti +chapattis +chapel +chapels +chaperon +chaperone +chaperoned +chaperones +chaperoning +chaperons +chaplain +chaplaincies +chaplaincy +chaplains +chapped +chappies +chapping +chappy +chaps +chapter +chapters +char +charabanc +charabancs +character +characterful +characterisation +characterisations +characterise +characterised +characterises +characterising +characteristic +characteristically +characteristics +characterization +characterizations +characterize +characterized +characterizes +characterizing +characterless +characters +charade +charades +charcoal +chard +charge +chargeable +charged +charger +chargers +charges +charging +chariot +charioteer +charioteers +chariots +charisma +charismatic +charismatics +charitable +charitably +charities +charity +charladies +charlady +charlatan +charlatans +charlie +charlies +charm +charmed +charmer +charmers +charming +charmingly +charmless +charms +charred +charring +chars +chart +charted +charter +chartered +chartering +charters +charting +chartreuse +charts +charwoman +charwomen +chary +chase +chased +chaser +chasers +chases +chasing +chasm +chasms +chassis +chaste +chastely +chasten +chastened +chastening +chastens +chastise +chastised +chastisement +chastises +chastising +chastity +chasuble +chasubles +chat +chateau +chateaus +chateaux +chatelaine +chatelaines +chatline +chatlines +chats +chatted +chattel +chattels +chatter +chatterbox +chatterboxes +chattered +chattering +chatters +chattier +chattiest +chatting +chatty +chauffeur +chauffeured +chauffeuring +chauffeurs +chauvinism +chauvinist +chauvinistic +chauvinistically +chauvinists +cheap +cheapen +cheapened +cheapening +cheapens +cheaper +cheapest +cheaply +cheapness +cheapo +cheapskate +cheapskates +cheat +cheated +cheating +cheats +check +checkbook +checkbooks +checked +checker +checkerboard +checkerboards +checkered +checkers +checking +checklist +checklists +checkmate +checkmated +checkmates +checkmating +checkout +checkouts +checkpoint +checkpoints +checkroom +checkrooms +checks +checkup +checkups +cheddar +cheek +cheekbone +cheekbones +cheeked +cheekier +cheekiest +cheekily +cheekiness +cheeking +cheeks +cheeky +cheep +cheeped +cheeping +cheeps +cheer +cheered +cheerful +cheerfully +cheerfulness +cheerier +cheeriest +cheerily +cheering +cheerio +cheerleader +cheerleaders +cheerless +cheerlessness +cheers +cheery +cheese +cheeseboard +cheeseboards +cheeseburger +cheeseburgers +cheesecake +cheesecakes +cheesecloth +cheeseparing +cheeses +cheesier +cheesiest +cheesy +cheetah +cheetahs +chef +chefs +chemical +chemically +chemicals +chemise +chemises +chemist +chemistry +chemists +chemotherapy +chenille +cheque +chequebook +chequebooks +chequered +cheques +cherish +cherished +cherishes +cherishing +cheroot +cheroots +cherries +cherry +cherub +cherubic +cherubim +cherubs +chervil +chess +chessboard +chessboards +chessman +chessmen +chest +chestnut +chestnuts +chests +chesty +chevron +chevrons +chew +chewed +chewier +chewiest +chewing +chews +chewy +chiaroscuro +chic +chicane +chicanery +chicanes +chick +chickadee +chickadees +chicken +chickened +chickenfeed +chickening +chickenpox +chickens +chickenshit +chickenshits +chickpea +chickpeas +chicks +chickweed +chicory +chide +chided +chides +chiding +chief +chiefly +chiefs +chieftain +chieftains +chiffon +chignon +chignons +chihuahua +chihuahuas +chilblain +chilblains +child +childbearing +childbirth +childcare +childhood +childhoods +childish +childishly +childishness +childless +childlessness +childlike +childminder +childminders +childminding +childproof +children +chili +chilies +chill +chilled +chiller +chillers +chilli +chillier +chillies +chilliest +chilling +chillingly +chills +chilly +chimaera +chimaeras +chime +chimed +chimera +chimeras +chimerical +chimes +chiming +chimney +chimneys +chimp +chimpanzee +chimpanzees +chimps +chin +china +chinchilla +chinchillas +chink +chinked +chinking +chinks +chinless +chinos +chins +chinstrap +chinstraps +chintz +chintzier +chintziest +chintzy +chinwag +chinwags +chip +chipboard +chipmunk +chipmunks +chipolata +chipolatas +chipped +chipper +chippie +chippies +chipping +chippings +chippy +chips +chiropodist +chiropodists +chiropody +chiropractic +chiropractor +chiropractors +chirp +chirped +chirpier +chirpiest +chirpily +chirpiness +chirping +chirps +chirpy +chirrup +chirruped +chirruping +chirrups +chisel +chiseled +chiseler +chiselers +chiseling +chiselled +chiselling +chisels +chit +chitlins +chits +chitterlings +chivalrous +chivalrously +chivalry +chive +chives +chivied +chivies +chivvied +chivvies +chivvy +chivvying +chivy +chivying +chloride +chlorides +chlorinate +chlorinated +chlorinates +chlorinating +chlorine +chlorofluorocarbon +chlorofluorocarbons +chloroform +chloroformed +chloroforming +chloroforms +chlorophyll +choc +chocaholic +chocaholics +chock +chocks +chocoholic +chocoholics +chocolate +chocolates +chocs +choice +choicer +choices +choicest +choir +choirboy +choirboys +choirmaster +choirmasters +choirs +choke +choked +choker +chokers +chokes +choking +cholera +choleric +cholesterol +chomp +chomped +chomping +chomps +choose +chooses +choosier +choosiest +choosing +choosy +chop +chopped +chopper +choppers +choppier +choppiest +chopping +choppy +chops +chopstick +chopsticks +choral +chorale +chorales +chord +chords +chore +choreograph +choreographed +choreographer +choreographers +choreographic +choreographing +choreographs +choreography +chores +chorister +choristers +chortle +chortled +chortles +chortling +chorus +chorused +choruses +chorusing +chose +chosen +chow +chowder +chows +christen +christened +christening +christenings +christens +christian +chromatic +chrome +chromium +chromosomal +chromosome +chromosomes +chronic +chronically +chronicle +chronicled +chronicler +chroniclers +chronicles +chronicling +chronograph +chronographs +chronological +chronologically +chronologies +chronology +chronometer +chronometers +chrysalis +chrysalises +chrysanthemum +chrysanthemums +chubbier +chubbiest +chubbiness +chubby +chuck +chucked +chucking +chuckle +chuckled +chuckles +chuckling +chucks +chuffed +chug +chugged +chugging +chugs +chum +chummed +chummier +chummiest +chummily +chumminess +chumming +chummy +chump +chumps +chums +chunder +chundered +chundering +chunders +chunk +chunkier +chunkiest +chunks +chunky +chunter +chuntered +chuntering +chunters +church +churches +churchgoer +churchgoers +churchgoing +churchman +churchmen +churchwarden +churchwardens +churchwoman +churchwomen +churchyard +churchyards +churlish +churlishly +churlishness +churn +churned +churning +churns +chute +chutes +chutney +chutneys +chutzpah +ciao +cicada +cicadas +cider +ciders +cigar +cigarette +cigarettes +cigars +ciggies +ciggy +cilantro +cinch +cinched +cinches +cinching +cinder +cinders +cine +cinema +cinemas +cinematic +cinematographer +cinematographers +cinematography +cinnamon +cipher +ciphers +circa +circadian +circle +circled +circles +circlet +circlets +circling +circuit +circuitous +circuitously +circuitry +circuits +circular +circularise +circularised +circularises +circularising +circularity +circularize +circularized +circularizes +circularizing +circulars +circulate +circulated +circulates +circulating +circulation +circulations +circulatory +circumcise +circumcised +circumcises +circumcising +circumcision +circumcisions +circumference +circumferences +circumflex +circumflexes +circumlocution +circumlocutions +circumlocutory +circumnavigate +circumnavigated +circumnavigates +circumnavigating +circumnavigation +circumnavigations +circumscribe +circumscribed +circumscribes +circumscribing +circumscription +circumspect +circumspection +circumspectly +circumstance +circumstances +circumstantial +circumvent +circumvented +circumventing +circumvention +circumvents +circus +circuses +cirrhosis +cirrus +cissies +cissy +cistern +cisterns +citadel +citadels +citation +citations +cite +cited +cites +cities +citing +citizen +citizenry +citizens +citizenship +citrus +citruses +city +citywide +civet +civets +civic +civics +civil +civilian +civilians +civilisation +civilisations +civilise +civilised +civilises +civilising +civilities +civility +civilization +civilizations +civilize +civilized +civilizes +civilizing +civilly +civvies +clack +clacked +clacking +clacks +clad +cladding +claim +claimant +claimants +claimed +claiming +claims +clairvoyance +clairvoyant +clairvoyants +clam +clambake +clambakes +clamber +clambered +clambering +clambers +clammed +clammier +clammiest +clamminess +clamming +clammy +clamor +clamored +clamoring +clamorous +clamors +clamour +clamoured +clamouring +clamours +clamp +clampdown +clampdowns +clamped +clamping +clamps +clams +clan +clandestine +clandestinely +clang +clanged +clanger +clangers +clanging +clangor +clangour +clangs +clank +clanked +clanking +clanks +clannish +clans +clansman +clansmen +clanswoman +clanswomen +clap +clapboard +clapboards +clapped +clapper +clapperboard +clapperboards +clappers +clapping +claps +claptrap +claret +clarets +clarification +clarifications +clarified +clarifies +clarify +clarifying +clarinet +clarinetist +clarinetists +clarinets +clarinettist +clarinettists +clarity +clash +clashed +clashes +clashing +clasp +clasped +clasping +clasps +class +classed +classes +classic +classical +classically +classicism +classicist +classicists +classics +classier +classiest +classifiable +classification +classifications +classified +classifieds +classifies +classify +classifying +classing +classless +classlessness +classmate +classmates +classroom +classrooms +classy +clatter +clattered +clattering +clatters +clause +clauses +claustrophobia +claustrophobic +clavichord +clavichords +clavicle +clavicles +claw +clawed +clawing +claws +clay +clayey +clean +cleaned +cleaner +cleaners +cleanest +cleaning +cleanliness +cleanly +cleanness +cleans +cleanse +cleansed +cleanser +cleansers +cleanses +cleansing +cleanup +cleanups +clear +clearance +clearances +cleared +clearer +clearest +clearing +clearings +clearly +clears +clearway +clearways +cleat +cleats +cleavage +cleavages +cleave +cleaved +cleaver +cleavers +cleaves +cleaving +clef +clefs +cleft +clefts +clematis +clematises +clemency +clement +clementine +clementines +clench +clenched +clenches +clenching +clergy +clergyman +clergymen +clergywoman +clergywomen +cleric +clerical +clerics +clerk +clerked +clerking +clerks +clever +cleverer +cleverest +cleverly +cleverness +cliche +cliched +cliches +click +clicked +clicking +clicks +client +clientele +clients +cliff +cliffhanger +cliffhangers +cliffhanging +cliffs +clifftop +clifftops +climactic +climate +climates +climatic +climatologist +climatologists +climatology +climax +climaxed +climaxes +climaxing +climb +climbed +climber +climbers +climbing +climbs +clime +climes +clinch +clinched +clincher +clinchers +clinches +clinching +cling +clingfilm +clinging +clings +clingy +clinic +clinical +clinically +clinician +clinicians +clinics +clink +clinked +clinker +clinkers +clinking +clinks +clip +clipboard +clipboards +clipped +clipper +clippers +clipping +clippings +clips +clique +cliques +cliquey +cliquish +clitoral +clitoris +clitorises +cloak +cloaked +cloaking +cloakroom +cloakrooms +cloaks +clobber +clobbered +clobbering +clobbers +cloche +cloches +clock +clocked +clocking +clocks +clockwise +clockwork +clod +clodhopper +clodhoppers +clods +clog +clogged +clogging +clogs +cloister +cloistered +cloisters +clone +cloned +clones +cloning +clonk +clonked +clonking +clonks +close +closed +closely +closeness +closeout +closeouts +closer +closes +closest +closet +closeted +closeting +closets +closing +closure +closures +clot +cloth +clothe +clothed +clothes +clothesline +clotheslines +clothespin +clothespins +clothing +cloths +clots +clotted +clotting +cloud +cloudburst +cloudbursts +clouded +cloudier +cloudiest +clouding +cloudless +clouds +cloudy +clout +clouted +clouting +clouts +clove +cloven +clover +cloves +clown +clowned +clowning +clownish +clowns +cloying +cloyingly +club +clubbable +clubbed +clubber +clubbers +clubbing +clubhouse +clubhouses +clubland +clubs +cluck +clucked +clucking +clucks +clue +clued +clueless +clues +cluing +clump +clumped +clumping +clumps +clumpy +clumsier +clumsiest +clumsily +clumsiness +clumsy +clung +clunk +clunked +clunker +clunkers +clunking +clunks +clunky +cluster +clustered +clustering +clusters +clutch +clutched +clutches +clutching +clutter +cluttered +cluttering +clutters +coach +coached +coaches +coaching +coachload +coachloads +coachman +coachmen +coachwork +coagulate +coagulated +coagulates +coagulating +coagulation +coal +coalesce +coalesced +coalescence +coalesces +coalescing +coalface +coalfaces +coalfield +coalfields +coalition +coalitions +coalmine +coalmines +coals +coarse +coarsely +coarsen +coarsened +coarseness +coarsening +coarsens +coarser +coarsest +coast +coastal +coasted +coaster +coasters +coastguard +coastguards +coasting +coastline +coastlines +coasts +coat +coated +coating +coatings +coatroom +coatrooms +coats +coattails +coax +coaxed +coaxes +coaxing +coaxingly +cob +cobalt +cobber +cobbers +cobble +cobbled +cobbler +cobblers +cobbles +cobblestone +cobblestones +cobbling +cobnut +cobnuts +cobra +cobras +cobs +cobweb +cobwebbed +cobwebs +cocaine +coccyges +coccyx +coccyxes +cochineal +cochlea +cochleae +cochleas +cock +cockade +cockades +cockamamie +cockatoo +cockatoos +cockchafer +cockchafers +cocked +cockerel +cockerels +cockeyed +cockfight +cockfighting +cockfights +cockier +cockiest +cockiness +cocking +cockle +cockles +cockney +cockneys +cockpit +cockpits +cockroach +cockroaches +cocks +cockscomb +cockscombs +cocksure +cocktail +cocktails +cocky +cocoa +coconut +coconuts +cocoon +cocooned +cocooning +cocoons +cod +coda +codas +coddle +coddled +coddles +coddling +code +coded +codeine +codes +codex +codger +codgers +codices +codicil +codicils +codification +codified +codifies +codify +codifying +coding +codpiece +codpieces +cods +codswallop +coed +coeds +coefficient +coefficients +coequal +coerce +coerced +coerces +coercing +coercion +coercive +coeval +coexist +coexisted +coexistence +coexisting +coexists +coffee +coffees +coffer +cofferdam +cofferdams +coffers +coffin +coffins +cog +cogency +cogent +cogently +cogitate +cogitated +cogitates +cogitating +cogitation +cogitations +cognac +cognacs +cognate +cognates +cognisance +cognisant +cognition +cognitive +cognizance +cognizant +cognoscenti +cogs +cogwheel +cogwheels +cohabit +cohabitation +cohabited +cohabiting +cohabits +cohere +cohered +coherence +coherent +coherently +coheres +cohering +cohesion +cohesive +cohesiveness +cohort +cohorts +coiffed +coiffure +coiffured +coiffures +coil +coiled +coiling +coils +coin +coinage +coinages +coincide +coincided +coincidence +coincidences +coincident +coincidental +coincidentally +coincides +coinciding +coined +coining +coins +coir +coital +coitus +coke +col +cola +colander +colanders +colas +cold +colder +coldest +coldly +coldness +colds +coleslaw +coley +coleys +colic +colicky +colitis +collaborate +collaborated +collaborates +collaborating +collaboration +collaborationist +collaborations +collaborative +collaboratively +collaborator +collaborators +collage +collagen +collages +collapse +collapsed +collapses +collapsible +collapsing +collar +collarbone +collarbones +collared +collaring +collarless +collars +collate +collated +collateral +collates +collating +collation +collations +colleague +colleagues +collect +collectable +collectables +collected +collectible +collectibles +collecting +collection +collections +collective +collectively +collectives +collectivisation +collectivise +collectivised +collectivises +collectivising +collectivism +collectivist +collectivization +collectivize +collectivized +collectivizes +collectivizing +collector +collectors +collects +colleen +colleens +college +colleges +collegiate +collide +collided +collides +colliding +collie +collier +collieries +colliers +colliery +collies +collision +collisions +collocate +collocated +collocates +collocating +collocation +collocations +colloquia +colloquial +colloquialism +colloquialisms +colloquially +colloquies +colloquium +colloquy +collude +colluded +colludes +colluding +collusion +collusive +cologne +colon +colonel +colonels +colonial +colonialism +colonialist +colonialists +colonials +colonies +colonisation +colonise +colonised +coloniser +colonisers +colonises +colonising +colonist +colonists +colonization +colonize +colonized +colonizer +colonizers +colonizes +colonizing +colonnade +colonnaded +colonnades +colons +colony +color +colorant +colorants +coloration +coloratura +coloraturas +colored +coloreds +colorfast +colorful +colorfully +coloring +colorist +colorists +colorization +colorize +colorized +colorizes +colorizing +colorless +colors +colossal +colossally +colossi +colossus +colossuses +colour +colourant +colourants +coloured +coloureds +colourful +colourfully +colouring +colourize +colourized +colourizes +colourizing +colourless +colours +colourway +colourways +cols +colt +coltish +colts +columbine +columbines +column +columnist +columnists +columns +coma +comas +comatose +comb +combat +combatant +combatants +combated +combating +combative +combativeness +combats +combatted +combatting +combed +combination +combinations +combine +combined +combines +combing +combining +combo +combos +combs +combustible +combustion +come +comeback +comebacks +comedian +comedians +comedic +comedienne +comediennes +comedies +comedown +comedowns +comedy +comelier +comeliest +comely +comer +comers +comes +comestibles +comet +comets +comfier +comfiest +comfort +comfortable +comfortably +comforted +comforter +comforters +comforting +comfortingly +comfortless +comforts +comfy +comic +comical +comically +comics +coming +comma +command +commandant +commandants +commanded +commandeer +commandeered +commandeering +commandeers +commander +commanders +commanding +commandment +commandments +commando +commandoes +commandos +commands +commas +commemorate +commemorated +commemorates +commemorating +commemoration +commemorations +commemorative +commence +commenced +commencement +commencements +commences +commencing +commend +commendable +commendably +commendation +commendations +commended +commending +commends +commensurate +commensurately +comment +commentaries +commentary +commentate +commentated +commentates +commentating +commentator +commentators +commented +commenting +comments +commerce +commercial +commercialisation +commercialise +commercialised +commercialises +commercialising +commercialism +commercialization +commercialize +commercialized +commercializes +commercializing +commercially +commercials +commie +commies +commiserate +commiserated +commiserates +commiserating +commiseration +commiserations +commissar +commissariat +commissariats +commissaries +commissars +commissary +commission +commissionaire +commissionaires +commissioned +commissioner +commissioners +commissioning +commissions +commit +commitment +commitments +commits +committal +committals +committed +committee +committees +committing +commode +commodes +commodious +commodities +commodity +commodore +commodores +common +commonalities +commonality +commoner +commoners +commonest +commonly +commonplace +commonplaces +commons +commonwealth +commonwealths +commotion +commotions +communal +communally +commune +communed +communes +communicable +communicant +communicants +communicate +communicated +communicates +communicating +communication +communications +communicative +communicator +communicators +communing +communion +communions +communique +communiques +communism +communist +communists +communities +community +commutable +commutation +commutations +commute +commuted +commuter +commuters +commutes +commuting +compact +compacted +compacting +compactly +compactness +compacts +companies +companion +companionable +companionably +companions +companionship +companionway +companionways +company +comparability +comparable +comparably +comparative +comparatively +comparatives +compare +compared +compares +comparing +comparison +comparisons +compartment +compartmentalise +compartmentalised +compartmentalises +compartmentalising +compartmentalize +compartmentalized +compartmentalizes +compartmentalizing +compartments +compass +compasses +compassion +compassionate +compassionately +compatibility +compatible +compatriot +compatriots +compel +compelled +compelling +compellingly +compels +compendia +compendium +compendiums +compensate +compensated +compensates +compensating +compensation +compensations +compensatory +compere +compered +comperes +compering +compete +competed +competence +competences +competencies +competency +competent +competently +competes +competing +competition +competitions +competitive +competitively +competitiveness +competitor +competitors +compilation +compilations +compile +compiled +compiler +compilers +compiles +compiling +complacence +complacency +complacent +complacently +complain +complainant +complainants +complained +complaining +complains +complaint +complaints +complaisance +complaisant +complement +complementary +complemented +complementing +complements +complete +completed +completely +completeness +completes +completing +completion +completions +complex +complexes +complexion +complexions +complexities +complexity +compliance +compliant +complicate +complicated +complicates +complicating +complication +complications +complicity +complied +complies +compliment +complimentary +complimented +complimenting +compliments +comply +complying +component +components +comport +comported +comporting +comportment +comports +compose +composed +composer +composers +composes +composing +composite +composites +composition +compositions +compositor +compositors +compost +composted +composting +composts +composure +compote +compotes +compound +compounded +compounding +compounds +comprehend +comprehended +comprehending +comprehends +comprehensibility +comprehensible +comprehensibly +comprehension +comprehensions +comprehensive +comprehensively +comprehensiveness +comprehensives +compress +compressed +compresses +compressible +compressing +compression +compressor +compressors +comprise +comprised +comprises +comprising +compromise +compromised +compromises +compromising +comptroller +comptrollers +compulsion +compulsions +compulsive +compulsively +compulsiveness +compulsorily +compulsory +compunction +computation +computational +computations +compute +computed +computer +computerate +computerisation +computerise +computerised +computerises +computerising +computerization +computerize +computerized +computerizes +computerizing +computers +computes +computing +comrade +comradely +comrades +comradeship +con +concatenation +concatenations +concave +concavities +concavity +conceal +concealed +concealing +concealment +conceals +concede +conceded +concedes +conceding +conceit +conceited +conceitedly +conceits +conceivable +conceivably +conceive +conceived +conceives +conceiving +concentrate +concentrated +concentrates +concentrating +concentration +concentrations +concentric +concept +conception +conceptions +concepts +conceptual +conceptualisation +conceptualisations +conceptualise +conceptualised +conceptualises +conceptualising +conceptualization +conceptualizations +conceptualize +conceptualized +conceptualizes +conceptualizing +conceptually +concern +concerned +concernedly +concerning +concerns +concert +concerted +concertgoer +concertgoers +concertina +concertinaed +concertinaing +concertinas +concertmaster +concertmasters +concerto +concertos +concerts +concession +concessionaire +concessionaires +concessionary +concessions +conch +conches +conchie +conchies +conchs +conciliate +conciliated +conciliates +conciliating +conciliation +conciliator +conciliators +conciliatory +concise +concisely +conciseness +concision +conclave +conclaves +conclude +concluded +concludes +concluding +conclusion +conclusions +conclusive +conclusively +concoct +concocted +concocting +concoction +concoctions +concocts +concomitant +concomitantly +concomitants +concord +concordance +concordances +concordat +concordats +concourse +concourses +concrete +concreted +concretely +concretes +concreting +concubine +concubines +concur +concurred +concurrence +concurrences +concurrent +concurrently +concurring +concurs +concuss +concussed +concusses +concussing +concussion +concussions +condemn +condemnation +condemnations +condemnatory +condemned +condemning +condemns +condensation +condensations +condense +condensed +condenser +condensers +condenses +condensing +condescend +condescended +condescending +condescendingly +condescends +condescension +condiment +condiments +condition +conditional +conditionally +conditioned +conditioner +conditioners +conditioning +conditions +condo +condolence +condolences +condom +condominium +condominiums +condoms +condone +condoned +condones +condoning +condor +condors +condos +conduce +conduced +conduces +conducing +conducive +conduct +conducted +conducting +conduction +conductive +conductivity +conductor +conductors +conductress +conductresses +conducts +conduit +conduits +cone +coned +cones +coney +coneys +confab +confabs +confection +confectioner +confectioneries +confectioners +confectionery +confections +confederacies +confederacy +confederate +confederates +confederation +confederations +confer +conference +conferences +conferment +conferments +conferred +conferring +confers +confess +confessed +confesses +confessing +confession +confessional +confessionals +confessions +confessor +confessors +confetti +confidant +confidante +confidantes +confidants +confide +confided +confidence +confidences +confident +confidential +confidentiality +confidentially +confidently +confides +confiding +confidingly +configuration +configurations +configure +configured +configures +configuring +confine +confined +confinement +confinements +confines +confining +confirm +confirmation +confirmations +confirmed +confirming +confirms +confiscate +confiscated +confiscates +confiscating +confiscation +confiscations +conflagration +conflagrations +conflate +conflated +conflates +conflating +conflation +conflations +conflict +conflicted +conflicting +conflicts +confluence +confluences +conform +conformation +conformations +conformed +conforming +conformist +conformists +conformity +conforms +confound +confounded +confounding +confounds +confront +confrontation +confrontational +confrontations +confronted +confronting +confronts +confuse +confused +confusedly +confuses +confusing +confusingly +confusion +confusions +confute +confuted +confutes +confuting +conga +congas +congeal +congealed +congealing +congeals +congenial +congenital +congenitally +conger +congers +congested +congestion +conglomerate +conglomerates +conglomeration +conglomerations +congratulate +congratulated +congratulates +congratulating +congratulation +congratulations +congratulatory +congregant +congregants +congregate +congregated +congregates +congregating +congregation +congregational +congregations +congress +congresses +congressional +congressman +congressmen +congresswoman +congresswomen +congruence +congruent +conical +conies +conifer +coniferous +conifers +coning +conjectural +conjecture +conjectured +conjectures +conjecturing +conjoin +conjoined +conjoining +conjoins +conjugal +conjugate +conjugated +conjugates +conjugating +conjugation +conjugations +conjunction +conjunctions +conjunctivitis +conjuncture +conjunctures +conjure +conjured +conjurer +conjurers +conjures +conjuring +conjuror +conjurors +conk +conked +conker +conkers +conking +conks +connect +connected +connecting +connection +connections +connective +connectives +connector +connectors +connects +conned +connexion +connexions +conning +connivance +connive +connived +connives +conniving +connoisseur +connoisseurs +connotation +connotations +connote +connoted +connotes +connoting +connubial +conquer +conquered +conquering +conqueror +conquerors +conquers +conquest +conquests +conquistador +conquistadores +conquistadors +cons +consanguinity +conscience +consciences +conscientious +conscientiously +conscientiousness +conscious +consciously +consciousness +conscript +conscripted +conscripting +conscription +conscripts +consecrate +consecrated +consecrates +consecrating +consecration +consecutive +consecutively +consensual +consensus +consent +consented +consenting +consents +consequence +consequences +consequent +consequential +consequentially +consequently +conservancies +conservancy +conservation +conservationist +conservationists +conservatism +conservative +conservatively +conservatives +conservatoire +conservatoires +conservator +conservatories +conservators +conservatory +conserve +conserved +conserves +conserving +consider +considerable +considerably +considerate +considerately +consideration +considerations +considered +considering +considers +consign +consigned +consignee +consignees +consigning +consignment +consignments +consigns +consist +consisted +consistencies +consistency +consistent +consistently +consisting +consists +consolation +consolations +consolatory +console +consoled +consoles +consolidate +consolidated +consolidates +consolidating +consolidation +consolidations +consoling +consomme +consonance +consonances +consonant +consonants +consort +consorted +consortia +consorting +consortium +consortiums +consorts +conspicuous +conspicuously +conspicuousness +conspiracies +conspiracy +conspirator +conspiratorial +conspiratorially +conspirators +conspire +conspired +conspires +conspiring +constable +constables +constabularies +constabulary +constancy +constant +constantly +constants +constellation +constellations +consternation +constipated +constipation +constituencies +constituency +constituent +constituents +constitute +constituted +constitutes +constituting +constitution +constitutional +constitutionalism +constitutionality +constitutionally +constitutionals +constitutions +constrain +constrained +constraining +constrains +constraint +constraints +constrict +constricted +constricting +constriction +constrictions +constricts +construct +constructed +constructing +construction +constructions +constructive +constructively +constructor +constructors +constructs +construe +construed +construes +construing +consul +consular +consulate +consulates +consuls +consult +consultancies +consultancy +consultant +consultants +consultation +consultations +consultative +consulted +consulting +consults +consumables +consume +consumed +consumer +consumerism +consumerist +consumers +consumes +consuming +consummate +consummated +consummately +consummates +consummating +consummation +consumption +consumptive +consumptives +contact +contacted +contacting +contacts +contagion +contagions +contagious +contagiously +contain +contained +container +containers +containing +containment +contains +contaminant +contaminants +contaminate +contaminated +contaminates +contaminating +contamination +contemplate +contemplated +contemplates +contemplating +contemplation +contemplative +contemplatively +contemporaneous +contemporaneously +contemporaries +contemporary +contempt +contemptible +contemptibly +contemptuous +contemptuously +contend +contended +contender +contenders +contending +contends +content +contented +contentedly +contenting +contention +contentions +contentious +contentiously +contentiousness +contentment +contents +contest +contestant +contestants +contested +contesting +contests +context +contexts +contextual +contextualisation +contextualise +contextualised +contextualises +contextualising +contextualization +contextualize +contextualized +contextualizes +contextualizing +contextually +contiguity +contiguous +continence +continent +continental +continentals +continents +contingencies +contingency +contingent +contingently +contingents +continua +continual +continually +continuance +continuances +continuation +continuations +continue +continued +continues +continuing +continuities +continuity +continuous +continuously +continuum +continuums +contort +contorted +contorting +contortion +contortionist +contortionists +contortions +contorts +contour +contoured +contours +contraband +contraception +contraceptive +contraceptives +contract +contracted +contracting +contraction +contractions +contractor +contractors +contracts +contractual +contractually +contradict +contradicted +contradicting +contradiction +contradictions +contradictory +contradicts +contraflow +contraflows +contraindication +contraindications +contralto +contraltos +contraption +contraptions +contrapuntal +contrarily +contrariness +contrariwise +contrary +contrast +contrasted +contrasting +contrasts +contravene +contravened +contravenes +contravening +contravention +contraventions +contretemps +contribute +contributed +contributes +contributing +contribution +contributions +contributor +contributors +contributory +contrite +contritely +contrition +contrivance +contrivances +contrive +contrived +contrives +contriving +control +controllable +controlled +controller +controllers +controlling +controls +controversial +controversially +controversies +controversy +contuse +contused +contuses +contusing +contusion +contusions +conundrum +conundrums +conurbation +conurbations +convalesce +convalesced +convalescence +convalescent +convalescents +convalesces +convalescing +convection +convector +convectors +convene +convened +convener +conveners +convenes +convenience +conveniences +convenient +conveniently +convening +convenor +convenors +convent +convention +conventional +conventionality +conventionally +conventioneer +conventioneers +conventions +convents +converge +converged +convergence +convergences +convergent +converges +converging +conversant +conversation +conversational +conversationalist +conversationalists +conversationally +conversations +converse +conversed +conversely +converses +conversing +conversion +conversions +convert +converted +converter +converters +convertibility +convertible +convertibles +converting +convertor +convertors +converts +convex +convexity +convey +conveyance +conveyances +conveyancing +conveyed +conveyer +conveyers +conveying +conveyor +conveyors +conveys +convict +convicted +convicting +conviction +convictions +convicts +convince +convinced +convinces +convincing +convincingly +convivial +conviviality +convivially +convocation +convocations +convoluted +convolution +convolutions +convoy +convoyed +convoying +convoys +convulse +convulsed +convulses +convulsing +convulsion +convulsions +convulsive +convulsively +cony +coo +cooed +cooing +cook +cookbook +cookbooks +cooked +cooker +cookers +cookery +cookhouse +cookhouses +cookie +cookies +cooking +cookout +cookouts +cooks +cookware +cool +coolant +coolants +cooled +cooler +coolers +coolest +coolie +coolies +cooling +coolly +coolness +cools +coon +coons +coop +cooped +cooper +cooperate +cooperated +cooperates +cooperating +cooperation +cooperative +cooperatives +coopers +cooping +coops +coordinate +coordinated +coordinates +coordinating +coordination +coordinator +coordinators +coos +coot +coots +cop +cope +coped +copes +copied +copier +copiers +copies +copilot +copilots +coping +copings +copious +copiously +copped +copper +copperplate +coppers +coppery +coppice +coppiced +coppices +coppicing +copping +cops +copse +copses +copter +copters +copula +copulas +copulate +copulated +copulates +copulating +copulation +copy +copybook +copycat +copycats +copying +copyist +copyists +copyright +copyrighted +copyrighting +copyrights +copywriter +copywriters +coquetry +coquette +coquettes +coquettish +coquettishly +cor +coracle +coracles +coral +corals +cord +corded +cordial +cordiality +cordially +cordials +cordite +cordless +cordon +cordoned +cordoning +cordons +cords +corduroy +corduroys +core +cored +coreligionist +coreligionists +cores +corgi +corgis +coriander +coring +cork +corkage +corked +corker +corkers +corking +corks +corkscrew +corkscrews +corm +cormorant +cormorants +corms +corn +cornball +corncob +corncobs +corncrake +corncrakes +cornea +corneal +corneas +corner +cornered +cornering +corners +cornerstone +cornerstones +cornet +cornets +cornfield +cornfields +cornflakes +cornflour +cornflower +cornflowers +cornice +cornices +cornier +corniest +cornmeal +cornrow +cornrows +corns +cornstarch +cornucopia +corny +corollaries +corollary +corona +coronae +coronaries +coronary +coronas +coronation +coronations +coroner +coroners +coronet +coronets +corpora +corporal +corporals +corporate +corporation +corporations +corporatism +corporeal +corps +corpse +corpses +corpulence +corpulent +corpus +corpuscle +corpuscles +corpuses +corral +corralled +corralling +corrals +correct +corrected +correcting +correction +correctional +corrections +corrective +correctives +correctly +correctness +corrects +correlate +correlated +correlates +correlating +correlation +correlations +correlative +correlatives +correspond +corresponded +correspondence +correspondences +correspondent +correspondents +corresponding +correspondingly +corresponds +corridor +corridors +corrie +corries +corroborate +corroborated +corroborates +corroborating +corroboration +corroborative +corrode +corroded +corrodes +corroding +corrosion +corrosive +corrugated +corrupt +corrupted +corruptible +corrupting +corruption +corruptions +corruptly +corrupts +corsage +corsages +corset +corseted +corsets +cortege +corteges +cortex +cortical +cortices +cortisone +coruscating +corvette +cos +cosh +coshed +coshes +coshing +cosier +cosies +cosiest +cosignatories +cosignatory +cosily +cosine +cosines +cosiness +cosmetic +cosmetically +cosmetics +cosmic +cosmically +cosmological +cosmologies +cosmologist +cosmology +cosmonaut +cosmonauts +cosmopolitan +cosmopolitans +cosmos +cosset +cosseted +cosseting +cossets +cossetted +cossetting +cost +costed +costing +costings +costlier +costliest +costliness +costly +costs +costume +costumer +costumers +costumes +costumier +costumiers +cosy +cot +coterie +coteries +coterminous +cots +cottage +cottager +cottagers +cottages +cottaging +cotton +cottoned +cottoning +cottons +cottonwood +cottonwoods +couch +couched +couches +couchette +couchettes +couching +cougar +cougars +cough +coughed +coughing +coughs +could +coulis +council +councillor +councillors +councilman +councilmen +councilor +councilors +councils +councilwoman +councilwomen +counsel +counseled +counseling +counselled +counselling +counsellor +counsellors +counselor +counselors +counsels +count +countable +countdown +countdowns +counted +countenance +countenanced +countenances +countenancing +counter +counteract +counteracted +counteracting +counteracts +counterargument +counterarguments +counterattack +counterattacked +counterattacking +counterattacks +counterbalance +counterbalanced +counterbalances +counterbalancing +counterblast +counterblasts +counterclockwise +counterculture +countercultures +countered +counterespionage +counterfeit +counterfeited +counterfeiter +counterfeiters +counterfeiting +counterfeits +counterfoil +counterfoils +countering +counterinsurgency +counterintelligence +countermand +countermanded +countermanding +countermands +countermeasure +countermeasures +counteroffensive +counteroffensives +counterpane +counterpanes +counterpart +counterparts +counterpoint +counterpointed +counterpointing +counterpoints +counterproductive +counterrevolution +counterrevolutions +counters +countersign +countersigned +countersigning +countersigns +countertenor +countertenors +countervailing +countess +countesses +counties +counting +countless +countries +countrified +country +countryman +countrymen +countryside +countrywide +countrywoman +countrywomen +counts +county +countywide +coup +coupe +coupes +couple +coupled +couples +couplet +couplets +coupling +couplings +coupon +coupons +coups +courage +courageous +courageously +courgette +courgettes +courier +couriered +couriering +couriers +course +coursebook +coursebooks +coursed +courses +coursework +coursing +court +courted +courteous +courteously +courtesan +courtesans +courtesies +courtesy +courthouse +courthouses +courtier +courtiers +courting +courtlier +courtliest +courtliness +courtly +courtroom +courtrooms +courts +courtship +courtships +courtyard +courtyards +couscous +cousin +cousins +couture +couturier +couturiers +cove +coven +covenant +covenanted +covenanting +covenants +covens +cover +coverage +coveralls +covered +covering +coverings +coverlet +coverlets +covers +covert +covertly +coverts +coves +covet +coveted +coveting +covetous +covetously +covetousness +covets +cow +coward +cowardice +cowardly +cowards +cowbell +cowbells +cowboy +cowboys +cowcatcher +cowcatchers +cowed +cower +cowered +cowering +cowers +cowgirl +cowgirls +cowhand +cowhands +cowhide +cowhides +cowing +cowl +cowlick +cowlicks +cowling +cowlings +cowls +cowpat +cowpats +cowpox +cowrie +cowries +cows +cowshed +cowsheds +cowslip +cowslips +cox +coxcomb +coxcombs +coxed +coxes +coxing +coxswain +coxswains +coy +coyly +coyness +coyote +coyotes +coypu +coypus +cozier +coziest +cozily +coziness +cozy +crab +crabbed +crabbier +crabbiest +crabby +crabgrass +crabs +crabwise +crack +crackdown +crackdowns +cracked +cracker +crackerjack +crackers +cracking +crackle +crackled +crackles +crackling +cracklings +crackly +crackpot +crackpots +cracks +cradle +cradled +cradles +cradling +craft +crafted +craftier +craftiest +craftily +craftiness +crafting +crafts +craftsman +craftsmanship +craftsmen +craftspeople +craftswoman +craftswomen +crafty +crag +craggier +craggiest +craggy +crags +cram +crammed +crammer +crammers +cramming +cramp +cramped +cramping +crampon +crampons +cramps +crams +cranberries +cranberry +crane +craned +cranes +crania +cranial +craning +cranium +craniums +crank +cranked +crankier +crankiest +cranking +cranks +crankshaft +crankshafts +cranky +crannies +cranny +crap +crape +crapped +crapper +crappers +crappier +crappiest +crapping +crappy +craps +crash +crashed +crashes +crashing +crass +crasser +crassest +crassly +crassness +crate +crated +crater +cratered +craters +crates +crating +cravat +cravats +crave +craved +craven +cravenly +craves +craving +cravings +crawfish +crawl +crawled +crawler +crawlers +crawling +crawls +crayfish +crayon +crayoned +crayoning +crayons +craze +crazed +crazes +crazier +crazies +craziest +crazily +craziness +crazy +creak +creaked +creakier +creakiest +creakily +creakiness +creaking +creaks +creaky +cream +creamed +creamer +creameries +creamers +creamery +creamier +creamiest +creaming +creams +creamy +crease +creased +creases +creasing +create +created +creates +creating +creation +creationism +creationist +creationists +creations +creative +creatively +creativeness +creativity +creator +creators +creature +creatures +creche +creches +cred +credence +credential +credentialed +credentialing +credentials +credibility +credible +credibly +credit +creditable +creditably +credited +crediting +creditor +creditors +credits +creditworthiness +creditworthy +credo +credos +credulity +credulous +credulously +credulousness +creed +creeds +creek +creeks +creel +creels +creep +creeper +creepers +creepier +creepiest +creeping +creeps +creepy +cremate +cremated +cremates +cremating +cremation +cremations +crematoria +crematories +crematorium +crematoriums +crematory +crenelated +crenellated +creole +creoles +creosote +creosoted +creosotes +creosoting +crepe +crepes +crept +crepuscular +crescendo +crescendos +crescent +crescents +cress +crest +crested +crestfallen +cresting +crests +cretin +cretinous +cretins +crevasse +crevasses +crevice +crevices +crew +crewed +crewing +crewman +crewmen +crews +crib +cribbage +cribbed +cribbing +cribs +crick +cricked +cricket +cricketer +cricketers +cricketing +crickets +cricking +cricks +cried +crier +criers +cries +crikey +crime +crimes +criminal +criminalise +criminalised +criminalises +criminalising +criminality +criminalize +criminalized +criminalizes +criminalizing +criminally +criminals +criminologist +criminologists +criminology +crimp +crimped +crimping +crimps +crimson +crimsons +cringe +cringed +cringes +cringing +crinkle +crinkled +crinkles +crinkling +crinkly +crinoline +crinolines +cripes +cripple +crippled +cripples +crippling +cripplingly +crises +crisis +crisp +crispbread +crispbreads +crisped +crisper +crispest +crispier +crispiest +crisping +crisply +crispness +crisps +crispy +crisscross +crisscrossed +crisscrosses +crisscrossing +criteria +criterion +critic +critical +critically +criticise +criticised +criticises +criticising +criticism +criticisms +criticize +criticized +criticizes +criticizing +critics +critique +critiques +critter +critters +croak +croaked +croaking +croaks +crochet +crocheted +crocheting +crochets +crock +crocked +crockery +crocks +crocodile +crocodiles +crocus +crocuses +croft +crofter +crofters +crofting +crofts +croissant +croissants +crone +crones +cronies +crony +cronyism +crook +crooked +crookedly +crooking +crooks +croon +crooned +crooner +crooners +crooning +croons +crop +cropped +cropping +crops +croquet +croquette +croquettes +crosier +crosiers +cross +crossbar +crossbars +crossbones +crossbow +crossbows +crossbred +crossbreed +crossbreeding +crossbreeds +crosscheck +crosschecked +crosschecking +crosschecks +crosscurrent +crosscurrents +crossed +crosser +crosses +crossest +crossfire +crossing +crossings +crossly +crossover +crossovers +crosspatch +crosspatches +crosspiece +crosspieces +crossroads +crosstown +crosswalk +crosswalks +crosswind +crosswinds +crosswise +crossword +crosswords +crotch +crotches +crotchet +crotchets +crotchety +crouch +crouched +crouches +crouching +croup +croupier +croupiers +crouton +croutons +crow +crowbar +crowbars +crowd +crowded +crowding +crowds +crowed +crowing +crown +crowned +crowning +crowns +crows +crozier +croziers +crucial +crucially +crucible +crucibles +crucified +crucifies +crucifix +crucifixes +crucifixion +crucifixions +cruciform +crucify +crucifying +crud +cruddier +cruddiest +cruddy +crude +crudely +crudeness +cruder +crudest +crudites +crudity +cruel +crueler +cruelest +crueller +cruellest +cruelly +cruelties +cruelty +cruet +cruets +cruise +cruised +cruiser +cruisers +cruises +cruising +crumb +crumble +crumbled +crumbles +crumblier +crumbliest +crumbling +crumbly +crumbs +crummier +crummiest +crummy +crumpet +crumpets +crumple +crumpled +crumples +crumpling +crunch +crunched +crunches +crunchier +crunchiest +crunching +crunchy +crusade +crusaded +crusader +crusaders +crusades +crusading +crush +crushed +crusher +crushers +crushes +crushing +crushingly +crust +crustacean +crustaceans +crusted +crustier +crustiest +crusts +crusty +crutch +crutches +crux +cry +crybabies +crybaby +crying +cryogenic +cryogenics +cryonics +crypt +cryptic +cryptically +crypts +crystal +crystalline +crystallisation +crystallise +crystallised +crystallises +crystallising +crystallization +crystallize +crystallized +crystallizes +crystallizing +crystals +cub +cubbyhole +cubbyholes +cube +cubed +cubes +cubic +cubicle +cubicles +cubing +cubism +cubist +cubists +cuboid +cuboids +cubs +cuckold +cuckolded +cuckolding +cuckolds +cuckoo +cuckoos +cucumber +cucumbers +cud +cuddle +cuddled +cuddles +cuddlier +cuddliest +cuddling +cuddly +cudgel +cudgeled +cudgeling +cudgelled +cudgelling +cudgels +cue +cued +cueing +cues +cuff +cuffed +cuffing +cufflink +cufflinks +cuffs +cuing +cuisine +cuisines +culinary +cull +culled +cullender +cullenders +culling +culls +culminate +culminated +culminates +culminating +culmination +culottes +culpability +culpable +culpably +culprit +culprits +cult +cultivable +cultivate +cultivated +cultivates +cultivating +cultivation +cultivator +cultivators +cults +cultural +culturally +culture +cultured +cultures +culturing +culvert +culverts +cum +cumbersome +cumin +cummerbund +cummerbunds +cumming +cumquat +cumquats +cums +cumulative +cumulatively +cumulus +cuneiform +cunnilingus +cunning +cunningly +cunt +cunts +cup +cupboard +cupboards +cupcake +cupcakes +cupful +cupfuls +cupid +cupidity +cupids +cupola +cupolas +cuppa +cuppas +cupped +cupping +cups +cur +curable +curacao +curacies +curacy +curate +curated +curates +curating +curative +curator +curators +curb +curbed +curbing +curbs +curbside +curd +curdle +curdled +curdles +curdling +curds +cure +cured +cures +curfew +curfews +curing +curio +curios +curiosities +curiosity +curious +curiously +curl +curled +curler +curlers +curlew +curlews +curlicue +curlicues +curlier +curliest +curliness +curling +curls +curly +curmudgeon +curmudgeonly +curmudgeons +currant +currants +currencies +currency +current +currently +currents +curricula +curricular +curriculum +curriculums +curried +curries +curry +currying +curs +curse +cursed +curses +cursing +cursive +cursor +cursorily +cursors +cursory +curt +curtail +curtailed +curtailing +curtailment +curtailments +curtails +curtain +curtained +curtaining +curtains +curtly +curtness +curtsey +curtseyed +curtseying +curtseys +curtsied +curtsies +curtsy +curtsying +curvaceous +curvature +curve +curved +curves +curving +curvy +cushier +cushiest +cushion +cushioned +cushioning +cushions +cushy +cusp +cuspidor +cuspidors +cusps +cuss +cussed +cussedly +cussedness +cusses +cussing +custard +custards +custodial +custodian +custodians +custody +custom +customarily +customary +customer +customers +customise +customised +customises +customising +customize +customized +customizes +customizing +customs +cut +cutaway +cutaways +cutback +cutbacks +cute +cutely +cuteness +cuter +cutest +cutesy +cutey +cuteys +cuticle +cuticles +cutie +cuties +cutlass +cutlasses +cutlery +cutlet +cutlets +cutoff +cutoffs +cutout +cutouts +cuts +cutter +cutters +cutthroat +cutting +cuttings +cuttlefish +cutup +cutups +cyan +cyanide +cybercafe +cybercafes +cybernetic +cybernetics +cyberpunk +cyberspace +cyborg +cyborgs +cyclamen +cyclamens +cycle +cycled +cycles +cyclic +cyclical +cyclically +cycling +cyclist +cyclists +cyclone +cyclones +cygnet +cygnets +cylinder +cylinders +cylindrical +cymbal +cymbals +cynic +cynical +cynically +cynicism +cynics +cynosure +cynosures +cypher +cyphers +cypress +cypresses +cyst +cystitis +cysts +cytology +czar +czarina +czarinas +czarism +czarist +czarists +czars +dab +dabbed +dabbing +dabble +dabbled +dabbles +dabbling +dabs +dacha +dachas +dachshund +dachshunds +dad +daddies +daddy +dado +dadoes +dados +dads +daemon +daemons +daffier +daffiest +daffodil +daffodils +daffy +daft +dafter +daftest +daftness +dag +dagger +daggers +dago +dagoes +dagos +dags +dahlia +dahlias +dailies +daily +daintier +daintiest +daintily +daintiness +dainty +daiquiri +daiquiris +dairies +dairy +dairymaid +dairymaids +dairyman +dairymen +dais +daises +daisies +daisy +dale +dales +dalliance +dalliances +dallied +dallies +dally +dallying +dalmatian +dalmatians +dam +damage +damaged +damages +damaging +damask +dame +dames +dammed +damming +dammit +damn +damnable +damnably +damnation +damned +damnedest +damning +damns +damp +damped +dampen +dampened +dampening +dampens +damper +dampers +dampest +damping +damply +dampness +damps +dams +damsel +damsels +damson +damsons +dance +danced +dancer +dancers +dances +dancing +dandelion +dandelions +dandies +dandified +dandle +dandled +dandles +dandling +dandruff +dandy +dang +danger +dangerous +dangerously +dangers +dangle +dangled +dangles +dangling +dank +dankness +dapper +dappled +dare +dared +daredevil +daredevils +dares +daresay +daring +daringly +dark +darken +darkened +darkening +darkens +darker +darkest +darkie +darkies +darkly +darkness +darkroom +darkrooms +darling +darlings +darn +darned +darning +darns +dart +dartboard +dartboards +darted +darting +darts +dash +dashboard +dashboards +dashed +dashes +dashing +dashingly +dastardly +data +databank +databanks +database +databases +date +datebook +datebooks +dated +dateline +datelines +dates +dating +dative +datives +datum +daub +daubed +daubing +daubs +daughter +daughters +daunt +daunted +daunting +dauntingly +dauntless +daunts +dauphin +dawdle +dawdled +dawdler +dawdlers +dawdles +dawdling +dawn +dawned +dawning +dawns +day +daybreak +daycare +daydream +daydreamed +daydreamer +daydreamers +daydreaming +daydreams +daylight +daylong +days +daytime +daze +dazed +dazzle +dazzled +dazzles +dazzling +dazzlingly +deacon +deaconess +deaconesses +deacons +deactivate +deactivated +deactivates +deactivating +dead +deadbeat +deadbeats +deadbolt +deadbolts +deaden +deadened +deadening +deadens +deadhead +deadheaded +deadheading +deadheads +deadlier +deadliest +deadline +deadlines +deadlock +deadlocked +deadlocks +deadly +deadpan +deaf +deafen +deafened +deafening +deafens +deafer +deafest +deafness +deal +dealer +dealers +dealership +dealerships +dealing +dealings +deals +dealt +dean +deaneries +deanery +deans +dear +dearer +dearest +dearests +dearie +dearies +dearly +dears +dearth +deary +death +deathbed +deathbeds +deathless +deathly +deaths +deb +debacle +debacles +debar +debarred +debarring +debars +debase +debased +debasement +debasements +debases +debasing +debatable +debate +debated +debater +debaters +debates +debating +debauched +debauchee +debauchees +debauchery +debenture +debentures +debilitate +debilitated +debilitates +debilitating +debilities +debility +debit +debited +debiting +debits +debonair +debrief +debriefed +debriefing +debriefings +debriefs +debris +debs +debt +debtor +debtors +debts +debug +debugged +debugging +debugs +debunk +debunked +debunking +debunks +debut +debutante +debutantes +debuted +debuting +debuts +decade +decadence +decadent +decades +decaf +decaff +decaffeinated +decaffs +decafs +decal +decals +decamp +decamped +decamping +decamps +decant +decanted +decanter +decanters +decanting +decants +decapitate +decapitated +decapitates +decapitating +decapitation +decapitations +decathlete +decathletes +decathlon +decathlons +decay +decayed +decaying +decays +decease +deceased +deceit +deceitful +deceitfully +deceitfulness +deceits +deceive +deceived +deceiver +deceivers +deceives +deceiving +decelerate +decelerated +decelerates +decelerating +deceleration +decencies +decency +decent +decently +decentralisation +decentralise +decentralised +decentralises +decentralising +decentralization +decentralize +decentralized +decentralizes +decentralizing +deception +deceptions +deceptive +deceptively +deceptiveness +decibel +decibels +decide +decided +decidedly +decider +deciders +decides +deciding +deciduous +decimal +decimalization +decimals +decimate +decimated +decimates +decimating +decimation +decipher +deciphered +deciphering +deciphers +decision +decisions +decisive +decisively +decisiveness +deck +deckchair +deckchairs +decked +deckhand +deckhands +decking +decks +declaim +declaimed +declaiming +declaims +declamation +declamations +declamatory +declarable +declaration +declarations +declare +declared +declares +declaring +declassification +declassified +declassifies +declassify +declassifying +decline +declined +declines +declining +decode +decoded +decoder +decoders +decodes +decoding +decolletage +decolletages +decollete +decolonisation +decolonization +decommission +decommissioned +decommissioning +decommissions +decompose +decomposed +decomposes +decomposing +decomposition +decompress +decompressed +decompresses +decompressing +decompression +decongestant +decongestants +deconstruct +deconstructed +deconstructing +deconstruction +deconstructionism +deconstructionist +deconstructionists +deconstructs +decontaminate +decontaminated +decontaminates +decontaminating +decontamination +decontrol +decontrolled +decontrolling +decontrols +decor +decorate +decorated +decorates +decorating +decoration +decorations +decorative +decoratively +decorator +decorators +decorous +decorously +decors +decorum +decouple +decoupled +decouples +decoupling +decoy +decoyed +decoying +decoys +decrease +decreased +decreases +decreasing +decree +decreed +decreeing +decrees +decrepit +decrepitude +decried +decries +decriminalisation +decriminalise +decriminalised +decriminalises +decriminalising +decriminalization +decriminalize +decriminalized +decriminalizes +decriminalizing +decry +decrying +dedicate +dedicated +dedicates +dedicating +dedication +dedications +deduce +deduced +deduces +deducible +deducing +deduct +deducted +deductible +deducting +deduction +deductions +deductive +deducts +deed +deeds +deem +deemed +deeming +deems +deep +deepen +deepened +deepening +deepens +deeper +deepest +deeply +deer +deerstalker +deerstalkers +deface +defaced +defacement +defaces +defacing +defamation +defamatory +defame +defamed +defames +defaming +default +defaulted +defaulter +defaulters +defaulting +defaults +defeat +defeated +defeating +defeatism +defeatist +defeatists +defeats +defecate +defecated +defecates +defecating +defecation +defect +defected +defecting +defection +defections +defective +defectively +defectiveness +defector +defectors +defects +defence +defenceless +defences +defend +defendant +defendants +defended +defender +defenders +defending +defends +defense +defenseless +defenses +defensible +defensive +defensively +defensiveness +defer +deference +deferential +deferentially +deferment +deferments +deferral +deferrals +deferred +deferring +defers +defiance +defiant +defiantly +defibrillator +defibrillators +deficiencies +deficiency +deficient +deficit +deficits +defied +defies +defile +defiled +defilement +defiles +defiling +definable +define +defined +defines +defining +definite +definitely +definition +definitions +definitive +definitively +deflate +deflated +deflates +deflating +deflation +deflationary +deflect +deflected +deflecting +deflection +deflections +deflects +deflower +deflowered +deflowering +deflowers +defog +defogged +defogger +defoggers +defogging +defogs +defoliant +defoliants +defoliate +defoliated +defoliates +defoliating +defoliation +deforest +deforestation +deforested +deforesting +deforests +deform +deformation +deformations +deformed +deforming +deformities +deformity +deforms +defraud +defrauded +defrauding +defrauds +defray +defrayed +defraying +defrays +defrock +defrocked +defrocking +defrocks +defrost +defrosted +defroster +defrosters +defrosting +defrosts +deft +defter +deftest +deftly +deftness +defunct +defuse +defused +defuses +defusing +defy +defying +degeneracy +degenerate +degenerated +degenerates +degenerating +degeneration +degenerative +degradable +degradation +degrade +degraded +degrades +degrading +degree +degrees +dehumanisation +dehumanise +dehumanised +dehumanises +dehumanising +dehumanization +dehumanize +dehumanized +dehumanizes +dehumanizing +dehumidifier +dehumidifiers +dehydrate +dehydrated +dehydrates +dehydrating +dehydration +deification +deified +deifies +deify +deifying +deign +deigned +deigning +deigns +deism +deities +deity +dejected +dejectedly +dejection +delay +delayed +delaying +delays +delectable +delectably +delectation +delegate +delegated +delegates +delegating +delegation +delegations +delete +deleted +deleterious +deletes +deleting +deletion +deletions +deli +deliberate +deliberated +deliberately +deliberates +deliberating +deliberation +deliberations +deliberative +delicacies +delicacy +delicate +delicately +delicatessen +delicatessens +delicious +deliciously +delight +delighted +delightedly +delightful +delightfully +delighting +delights +delimit +delimited +delimiting +delimits +delineate +delineated +delineates +delineating +delineation +delineations +delinquencies +delinquency +delinquent +delinquents +delirious +deliriously +delirium +delis +deliver +deliverable +deliverance +delivered +deliverer +deliverers +deliveries +delivering +delivers +delivery +deliveryman +deliverymen +dell +dells +delouse +deloused +delouses +delousing +delphinium +delphiniums +delta +deltas +delude +deluded +deludes +deluding +deluge +deluged +deluges +deluging +delusion +delusions +delusive +delusively +deluxe +delve +delved +delves +delving +demagog +demagogic +demagogically +demagogs +demagogue +demagoguery +demagogues +demagogy +demand +demanded +demanding +demands +demarcate +demarcated +demarcates +demarcating +demarcation +demarcations +demean +demeaned +demeaning +demeanor +demeanour +demeans +demented +dementedly +dementia +demerit +demerits +demigod +demigoddess +demigoddesses +demigods +demilitarisation +demilitarise +demilitarised +demilitarises +demilitarising +demilitarization +demilitarize +demilitarized +demilitarizes +demilitarizing +demise +demist +demisted +demister +demisters +demisting +demists +demo +demob +demobbed +demobbing +demobilisation +demobilise +demobilised +demobilises +demobilising +demobilization +demobilize +demobilized +demobilizes +demobilizing +demobs +democracies +democracy +democrat +democratic +democratically +democratisation +democratise +democratised +democratises +democratising +democratization +democratize +democratized +democratizes +democratizing +democrats +demographer +demographers +demographic +demographics +demography +demolish +demolished +demolishes +demolishing +demolition +demolitions +demon +demoniac +demoniacal +demoniacally +demonic +demonically +demonise +demonised +demonises +demonising +demonize +demonized +demonizes +demonizing +demonology +demons +demonstrability +demonstrable +demonstrably +demonstrate +demonstrated +demonstrates +demonstrating +demonstration +demonstrations +demonstrative +demonstratively +demonstratives +demonstrator +demonstrators +demoralisation +demoralise +demoralised +demoralises +demoralising +demoralization +demoralize +demoralized +demoralizes +demoralizing +demos +demote +demoted +demotes +demotic +demoting +demotion +demotions +demotivate +demotivated +demotivates +demotivating +demur +demure +demurely +demureness +demurred +demurring +demurs +demystification +demystified +demystifies +demystify +demystifying +den +denationalisation +denationalise +denationalised +denationalises +denationalising +denationalization +denationalize +denationalized +denationalizes +denationalizing +deniable +denial +denials +denied +denier +denies +denigrate +denigrated +denigrates +denigrating +denigration +denim +denims +denizen +denizens +denomination +denominational +denominations +denominator +denominators +denote +denoted +denotes +denoting +denouement +denouements +denounce +denounced +denounces +denouncing +dens +dense +densely +denseness +denser +densest +densities +density +dent +dental +dented +denting +dentist +dentistry +dentists +dents +denture +dentures +denude +denuded +denudes +denuding +denunciation +denunciations +deny +denying +deodorant +deodorants +deodorise +deodorised +deodorises +deodorising +deodorize +deodorized +deodorizes +deodorizing +depart +departed +departing +department +departmental +departments +departs +departure +departures +depend +dependability +dependable +dependably +dependant +dependants +depended +dependence +dependencies +dependency +dependent +dependents +depending +depends +depersonalise +depersonalised +depersonalises +depersonalising +depersonalize +depersonalized +depersonalizes +depersonalizing +depict +depicted +depicting +depiction +depictions +depicts +depilatories +depilatory +deplane +deplaned +deplanes +deplaning +deplete +depleted +depletes +depleting +depletion +deplorable +deplorably +deplore +deplored +deplores +deploring +deploy +deployed +deploying +deployment +deployments +deploys +depoliticize +depoliticized +depoliticizes +depoliticizing +depopulate +depopulated +depopulates +depopulating +depopulation +deport +deportation +deportations +deported +deportee +deportees +deporting +deportment +deports +depose +deposed +deposes +deposing +deposit +deposited +depositing +deposition +depositions +depositor +depositories +depositors +depository +deposits +depot +depots +deprave +depraved +depraves +depraving +depravity +deprecate +deprecated +deprecates +deprecating +deprecatingly +deprecation +deprecatory +depreciate +depreciated +depreciates +depreciating +depreciation +depredation +depredations +depress +depressant +depressants +depressed +depresses +depressing +depressingly +depression +depressions +depressive +depressives +depressurization +depressurize +depressurized +depressurizes +depressurizing +deprivation +deprivations +deprive +deprived +deprives +depriving +depth +depths +deputation +deputations +depute +deputed +deputes +deputies +deputing +deputise +deputised +deputises +deputising +deputize +deputized +deputizes +deputizing +deputy +derail +derailed +derailing +derailment +derailments +derails +deranged +derangement +derbies +derby +deregulate +deregulated +deregulates +deregulating +deregulation +derelict +dereliction +derelicts +deride +derided +derides +deriding +derision +derisive +derisively +derisory +derivation +derivations +derivative +derivatives +derive +derived +derives +deriving +dermatitis +dermatologist +dermatologists +dermatology +derogatory +derrick +derricks +derv +dervish +dervishes +desalinate +desalinated +desalinates +desalinating +desalination +descale +descaled +descales +descaling +descant +descants +descend +descendant +descendants +descended +descending +descends +descent +descents +describe +described +describes +describing +description +descriptions +descriptive +desecrate +desecrated +desecrates +desecrating +desecration +desegregate +desegregated +desegregates +desegregating +desegregation +deselect +deselected +deselecting +deselection +deselects +desensitisation +desensitise +desensitised +desensitises +desensitising +desensitization +desensitize +desensitized +desensitizes +desensitizing +desert +deserted +deserter +deserters +desertification +deserting +desertion +desertions +deserts +deserve +deserved +deservedly +deserves +deserving +desiccated +desiccation +design +designate +designated +designates +designating +designation +designations +designed +designer +designers +designing +designs +desirability +desirable +desirably +desire +desired +desires +desiring +desirous +desist +desisted +desisting +desists +desk +deskill +deskilled +deskilling +deskills +desks +desktop +desktops +desolate +desolated +desolately +desolates +desolating +desolation +despair +despaired +despairing +despairingly +despairs +despatch +despatched +despatches +despatching +desperado +desperadoes +desperados +desperate +desperately +desperation +despicable +despicably +despise +despised +despises +despising +despite +despoil +despoiled +despoiling +despoils +despondency +despondent +despondently +despot +despotic +despotically +despotism +despots +dessert +desserts +dessertspoon +dessertspoonful +dessertspoonfuls +dessertspoons +dessertspoonsful +destabilisation +destabilise +destabilised +destabilises +destabilising +destabilization +destabilize +destabilized +destabilizes +destabilizing +destination +destinations +destined +destinies +destiny +destitute +destitution +destroy +destroyed +destroyer +destroyers +destroying +destroys +destruction +destructive +destructively +destructiveness +desultorily +desultory +detach +detachable +detached +detaches +detaching +detachment +detachments +detail +detailed +detailing +details +detain +detained +detainee +detainees +detaining +detains +detect +detectable +detected +detecting +detection +detective +detectives +detector +detectors +detects +detente +detention +detentions +deter +detergent +detergents +deteriorate +deteriorated +deteriorates +deteriorating +deterioration +determinant +determinants +determinate +determination +determinations +determine +determined +determinedly +determiner +determiners +determines +determining +determinism +deterministic +deterred +deterrence +deterrent +deterrents +deterring +deters +detest +detestable +detestably +detestation +detested +detesting +detests +dethrone +dethroned +dethrones +dethroning +detonate +detonated +detonates +detonating +detonation +detonations +detonator +detonators +detour +detoured +detouring +detours +detox +detoxification +detoxified +detoxifies +detoxify +detoxifying +detract +detracted +detracting +detractor +detractors +detracts +detriment +detrimental +detrimentally +detritus +deuce +deuces +devaluation +devaluations +devalue +devalued +devalues +devaluing +devastate +devastated +devastates +devastating +devastatingly +devastation +develop +developed +developer +developers +developing +development +developmental +developments +develops +deviance +deviancy +deviant +deviants +deviate +deviated +deviates +deviating +deviation +deviations +device +devices +devil +devilish +devilishly +devilment +devilries +devilry +devils +devious +deviously +deviousness +devise +devised +devises +devising +devoid +devolution +devolve +devolved +devolves +devolving +devote +devoted +devotedly +devotee +devotees +devotes +devoting +devotion +devotional +devotions +devour +devoured +devouring +devours +devout +devoutly +devoutness +dew +dewdrop +dewdrops +dewlap +dewlaps +dewy +dexterity +dexterous +dexterously +dextrose +dextrous +dextrously +dhoti +dhotis +dhow +dhows +diabetes +diabetic +diabetics +diabolic +diabolical +diabolically +diacritic +diacritical +diacritics +diadem +diadems +diagnose +diagnosed +diagnoses +diagnosing +diagnosis +diagnostic +diagnostics +diagonal +diagonally +diagonals +diagram +diagrammatic +diagrammatically +diagrammed +diagramming +diagrams +dial +dialect +dialectic +dialectical +dialectics +dialects +dialed +dialing +dialled +dialling +dialog +dialogs +dialogue +dialogues +dials +dialysis +diamante +diameter +diameters +diametrically +diamond +diamonds +diaper +diapers +diaphanous +diaphragm +diaphragms +diaries +diarist +diarists +diarrhea +diarrhoea +diary +diaspora +diatonic +diatribe +diatribes +dice +diced +dices +dicey +dichotomies +dichotomy +dicier +diciest +dicing +dick +dickens +dicker +dickered +dickering +dickers +dickey +dickeys +dickhead +dickheads +dickies +dicks +dicky +dickybird +dickybirds +dicta +dictate +dictated +dictates +dictating +dictation +dictations +dictator +dictatorial +dictatorially +dictators +dictatorship +dictatorships +diction +dictionaries +dictionary +dictum +dictums +did +didactic +didactically +diddle +diddled +diddles +diddling +diddly +diddlysquat +diddums +didgeridoo +didgeridoos +die +died +diehard +diehards +dies +diesel +diesels +diet +dietary +dieted +dieter +dieters +dietetic +dietetics +dietician +dieticians +dieting +dietitian +dietitians +diets +differ +differed +difference +differences +different +differential +differentials +differentiate +differentiated +differentiates +differentiating +differentiation +differently +differing +differs +difficult +difficulties +difficulty +diffidence +diffident +diffidently +diffract +diffracted +diffracting +diffraction +diffracts +diffuse +diffused +diffusely +diffuseness +diffuses +diffusing +diffusion +dig +digest +digested +digestible +digesting +digestion +digestions +digestive +digestives +digests +digger +diggers +digging +digit +digital +digitally +digitise +digitised +digitises +digitising +digitize +digitized +digitizes +digitizing +digits +dignified +dignifies +dignify +dignifying +dignitaries +dignitary +dignity +digress +digressed +digresses +digressing +digression +digressions +digs +dike +dikes +diktat +diktats +dilapidated +dilapidation +dilate +dilated +dilates +dilating +dilation +dilatory +dildo +dildos +dilemma +dilemmas +dilettante +dilettantes +dilettanti +diligence +diligent +diligently +dill +dilute +diluted +dilutes +diluting +dilution +dilutions +dim +dime +dimension +dimensions +dimes +diminish +diminished +diminishes +diminishing +diminuendo +diminuendos +diminution +diminutions +diminutive +diminutives +dimly +dimmed +dimmer +dimmers +dimmest +dimming +dimness +dimple +dimpled +dimples +dims +dimwit +dimwits +dimwitted +din +dinar +dinars +dine +dined +diner +diners +dines +dinette +dinettes +dingbat +dingbats +dinghies +dinghy +dingier +dingiest +dingily +dinginess +dingo +dingoes +dingy +dining +dinkier +dinkies +dinkiest +dinky +dinned +dinner +dinners +dinnertime +dinnerware +dinning +dinosaur +dinosaurs +dins +dint +diocesan +diocese +dioceses +diode +diodes +diorama +dioramas +dioxide +dioxides +dioxin +dioxins +dip +diphtheria +diphthong +diphthongs +diploma +diplomacy +diplomas +diplomat +diplomatic +diplomatically +diplomatist +diplomatists +diplomats +dipped +dipper +dippers +dippier +dippiest +dipping +dippy +dips +dipso +dipsomania +dipsomaniac +dipsomaniacs +dipsos +dipstick +dipsticks +dire +direct +directed +directing +direction +directional +directionless +directions +directive +directives +directly +directness +director +directorate +directorates +directorial +directories +directors +directorship +directorships +directory +directs +dirge +dirges +dirk +dirks +dirt +dirtied +dirtier +dirties +dirtiest +dirty +dirtying +dis +disabilities +disability +disable +disabled +disablement +disables +disabling +disabuse +disabused +disabuses +disabusing +disadvantage +disadvantaged +disadvantageous +disadvantages +disadvantaging +disaffected +disaffection +disafforest +disafforested +disafforesting +disafforests +disagree +disagreeable +disagreeably +disagreed +disagreeing +disagreement +disagreements +disagrees +disallow +disallowed +disallowing +disallows +disappear +disappearance +disappearances +disappeared +disappearing +disappears +disappoint +disappointed +disappointing +disappointingly +disappointment +disappointments +disappoints +disapprobation +disapproval +disapprove +disapproved +disapproves +disapproving +disapprovingly +disarm +disarmament +disarmed +disarming +disarmingly +disarms +disarrange +disarranged +disarranges +disarranging +disarray +disassemble +disassembled +disassembles +disassembling +disassociate +disassociated +disassociates +disassociating +disaster +disasters +disastrous +disastrously +disavow +disavowal +disavowals +disavowed +disavowing +disavows +disband +disbanded +disbanding +disbands +disbar +disbarred +disbarring +disbars +disbelief +disbelieve +disbelieved +disbelieves +disbelieving +disbelievingly +disburse +disbursed +disbursement +disbursements +disburses +disbursing +disc +discard +discarded +discarding +discards +discern +discerned +discernible +discernibly +discerning +discernment +discerns +discharge +discharged +discharges +discharging +disciple +disciples +disciplinarian +disciplinarians +disciplinary +discipline +disciplined +disciplines +disciplining +disclaim +disclaimed +disclaimer +disclaimers +disclaiming +disclaims +disclose +disclosed +discloses +disclosing +disclosure +disclosures +disco +discographies +discography +discolor +discoloration +discolorations +discolored +discoloring +discolors +discolour +discoloured +discolouring +discolours +discomfit +discomfited +discomfiting +discomfits +discomfiture +discomfort +discomforts +discompose +discomposed +discomposes +discomposing +discomposure +disconcert +disconcerted +disconcerting +disconcertingly +disconcerts +disconnect +disconnected +disconnecting +disconnection +disconnections +disconnects +disconsolate +disconsolately +discontent +discontented +discontentedly +discontentment +discontents +discontinuance +discontinuation +discontinue +discontinued +discontinues +discontinuing +discontinuities +discontinuity +discontinuous +discord +discordant +discords +discos +discotheque +discotheques +discount +discounted +discounter +discounters +discounting +discounts +discourage +discouraged +discouragement +discouragements +discourages +discouraging +discouragingly +discourse +discoursed +discourses +discoursing +discourteous +discourtesies +discourtesy +discover +discovered +discoverer +discoverers +discoveries +discovering +discovers +discovery +discredit +discreditable +discreditably +discredited +discrediting +discredits +discreet +discreetly +discrepancies +discrepancy +discrete +discretely +discreteness +discretion +discretionary +discriminate +discriminated +discriminates +discriminating +discrimination +discriminatory +discs +discursive +discus +discuses +discuss +discussed +discusses +discussing +discussion +discussions +disdain +disdained +disdainful +disdainfully +disdaining +disdains +disease +diseased +diseases +disembark +disembarkation +disembarked +disembarking +disembarks +disembodied +disembowel +disemboweled +disemboweling +disembowelled +disembowelling +disembowels +disenchanted +disenchantment +disenfranchise +disenfranchised +disenfranchises +disenfranchising +disengage +disengaged +disengagement +disengages +disengaging +disentangle +disentangled +disentangles +disentangling +disequilibrium +disestablish +disestablished +disestablishes +disestablishing +disestablishment +disfavor +disfavour +disfigure +disfigured +disfigurement +disfigurements +disfigures +disfiguring +disfranchise +disfranchised +disfranchises +disfranchising +disgorge +disgorged +disgorges +disgorging +disgrace +disgraced +disgraceful +disgracefully +disgraces +disgracing +disgruntled +disguise +disguised +disguises +disguising +disgust +disgusted +disgustedly +disgusting +disgustingly +disgusts +dish +disharmony +dishcloth +dishcloths +dishearten +disheartened +disheartening +disheartens +dished +dishes +disheveled +dishevelled +dishing +dishonest +dishonestly +dishonesty +dishonor +dishonorable +dishonored +dishonoring +dishonors +dishonour +dishonourable +dishonourably +dishonoured +dishonouring +dishonours +dishpan +dishpans +dishrag +dishrags +dishwasher +dishwashers +dishwater +dishy +disillusion +disillusioned +disillusioning +disillusionment +disillusions +disincentive +disincentives +disinclination +disinclined +disinfect +disinfectant +disinfectants +disinfected +disinfecting +disinfects +disinformation +disingenuous +disingenuously +disinherit +disinherited +disinheriting +disinherits +disintegrate +disintegrated +disintegrates +disintegrating +disintegration +disinter +disinterest +disinterested +disinterestedly +disinterred +disinterring +disinters +disinvestment +disjointed +disjuncture +disk +diskette +diskettes +disks +dislike +disliked +dislikes +disliking +dislocate +dislocated +dislocates +dislocating +dislocation +dislocations +dislodge +dislodged +dislodges +dislodging +disloyal +disloyalty +dismal +dismally +dismantle +dismantled +dismantles +dismantling +dismay +dismayed +dismaying +dismays +dismember +dismembered +dismembering +dismemberment +dismembers +dismiss +dismissal +dismissals +dismissed +dismisses +dismissing +dismissive +dismissively +dismount +dismounted +dismounting +dismounts +disobedience +disobedient +disobediently +disobey +disobeyed +disobeying +disobeys +disobliging +disorder +disordered +disorderly +disorders +disorganisation +disorganised +disorganization +disorganized +disorient +disorientate +disorientated +disorientates +disorientating +disorientation +disoriented +disorienting +disorients +disown +disowned +disowning +disowns +disparage +disparaged +disparagement +disparages +disparaging +disparagingly +disparate +disparities +disparity +dispassionate +dispassionately +dispatch +dispatched +dispatcher +dispatchers +dispatches +dispatching +dispel +dispelled +dispelling +dispels +dispensable +dispensaries +dispensary +dispensation +dispensations +dispense +dispensed +dispenser +dispensers +dispenses +dispensing +dispersal +disperse +dispersed +disperses +dispersing +dispersion +dispirited +dispiriting +displace +displaced +displacement +displaces +displacing +display +displayed +displaying +displays +displease +displeased +displeases +displeasing +displeasure +disport +disported +disporting +disports +disposable +disposables +disposal +disposals +dispose +disposed +disposes +disposing +disposition +dispositions +dispossess +dispossessed +dispossesses +dispossessing +dispossession +disproportion +disproportionate +disproportionately +disproportions +disprove +disproved +disproves +disproving +disputable +disputation +disputations +disputatious +dispute +disputed +disputes +disputing +disqualification +disqualifications +disqualified +disqualifies +disqualify +disqualifying +disquiet +disquieted +disquieting +disquiets +disquisition +disquisitions +disregard +disregarded +disregarding +disregards +disrepair +disreputable +disreputably +disrepute +disrespect +disrespectful +disrespectfully +disrobe +disrobed +disrobes +disrobing +disrupt +disrupted +disrupting +disruption +disruptions +disruptive +disruptively +disrupts +diss +dissatisfaction +dissatisfied +dissect +dissected +dissecting +dissection +dissections +dissects +dissed +dissemble +dissembled +dissembles +dissembling +disseminate +disseminated +disseminates +disseminating +dissemination +dissension +dissensions +dissent +dissented +dissenter +dissenters +dissenting +dissents +dissertation +dissertations +disservice +disses +dissidence +dissident +dissidents +dissimilar +dissimilarities +dissimilarity +dissimulate +dissimulated +dissimulates +dissimulating +dissing +dissipate +dissipated +dissipates +dissipating +dissipation +dissociate +dissociated +dissociates +dissociating +dissociation +dissolute +dissolutely +dissoluteness +dissolution +dissolve +dissolved +dissolves +dissolving +dissonance +dissonances +dissonant +dissuade +dissuaded +dissuades +dissuading +distance +distanced +distances +distancing +distant +distantly +distaste +distasteful +distastefully +distastefulness +distemper +distend +distended +distending +distends +distension +distention +distil +distill +distillation +distillations +distilled +distiller +distilleries +distillers +distillery +distilling +distills +distils +distinct +distinction +distinctions +distinctive +distinctively +distinctiveness +distinctly +distinguish +distinguishable +distinguished +distinguishes +distinguishing +distort +distorted +distorting +distortion +distortions +distorts +distract +distracted +distractedly +distracting +distraction +distractions +distracts +distraught +distress +distressed +distresses +distressful +distressing +distressingly +distribute +distributed +distributes +distributing +distribution +distributional +distributions +distributive +distributor +distributors +distributorship +distributorships +district +districts +distrust +distrusted +distrustful +distrusting +distrusts +disturb +disturbance +disturbances +disturbed +disturbing +disturbingly +disturbs +disunite +disunited +disunites +disuniting +disunity +disuse +disused +disyllabic +ditch +ditched +ditches +ditching +dither +dithered +ditherer +ditherers +dithering +dithers +ditransitive +ditties +ditto +dittos +ditty +ditzy +diuretic +diuretics +diurnal +diva +divan +divans +divas +dive +dived +diver +diverge +diverged +divergence +divergences +divergent +diverges +diverging +divers +diverse +diversification +diversified +diversifies +diversify +diversifying +diversion +diversionary +diversions +diversities +diversity +divert +diverted +diverting +diverts +dives +divest +divested +divesting +divestiture +divestment +divests +divide +divided +dividend +dividends +divider +dividers +divides +dividing +divination +divine +divined +divinely +diviner +diviners +divines +diving +divining +divinities +divinity +divisible +division +divisional +divisions +divisive +divisiveness +divisor +divisors +divorce +divorced +divorcee +divorcees +divorces +divorcing +divot +divots +divulge +divulged +divulges +divulging +divvied +divvies +divvy +divvying +dixieland +dizzied +dizzier +dizzies +dizziest +dizzily +dizziness +dizzy +dizzying +djinn +djinns +do +doable +dob +dobbed +dobbing +doberman +dobermans +dobs +doc +docile +docilely +docility +dock +docked +docker +dockers +docket +docketed +docketing +dockets +docking +dockland +docklands +docks +dockside +dockworker +dockworkers +dockyard +dockyards +docs +doctor +doctoral +doctorate +doctorates +doctored +doctoring +doctors +doctrinaire +doctrinal +doctrine +doctrines +docudrama +docudramas +document +documentaries +documentary +documentation +documented +documenting +documents +dodder +doddered +doddering +dodders +doddery +doddle +dodge +dodged +dodgem +dodgems +dodger +dodgers +dodges +dodgier +dodgiest +dodging +dodgy +dodo +dodoes +dodos +doe +doer +doers +does +doff +doffed +doffing +doffs +dog +dogcart +dogcarts +dogcatcher +dogcatchers +dogfight +dogfights +dogfish +dogged +doggedly +doggedness +doggerel +doggie +doggies +dogging +doggone +doggy +doghouse +doghouses +dogie +dogies +dogleg +doglegs +dogma +dogmas +dogmatic +dogmatically +dogmatism +dogmatist +dogmatists +dogs +dogsbodies +dogsbody +dogsled +dogsleds +dogwood +dogwoods +doh +doilies +doily +doing +doings +doldrums +dole +doled +doleful +dolefully +doles +doling +doll +dollar +dollars +dolled +dollhouse +dollhouses +dollies +dolling +dollop +dollops +dolls +dolly +dolmen +dolmens +dolorous +dolphin +dolphins +dolt +doltish +dolts +domain +domains +dome +domed +domes +domestic +domestically +domesticate +domesticated +domesticates +domesticating +domestication +domesticity +domestics +domicile +domiciled +domiciles +domiciliary +dominance +dominant +dominate +dominated +dominates +dominating +domination +dominatrices +dominatrix +domineering +dominion +dominions +domino +dominoes +don +donate +donated +donates +donating +donation +donations +done +donkey +donkeys +donned +donning +donnish +donor +donors +dons +donut +donuts +doodad +doodads +doodah +doodahs +doodle +doodled +doodles +doodling +doohickey +doohickeys +doolally +doom +doomed +dooming +dooms +doomsayer +doomsayers +doomsday +doomster +doomsters +door +doorbell +doorbells +doorjamb +doorjambs +doorkeeper +doorkeepers +doorknob +doorknobs +doorknocker +doorknockers +doorman +doormat +doormats +doormen +doorpost +doorposts +doors +doorstep +doorstepped +doorstepping +doorsteps +doorstop +doorstops +doorway +doorways +dope +doped +dopes +dopey +doping +doppelganger +doppelgangers +dories +dork +dorks +dorky +dorm +dormancy +dormant +dormer +dormers +dormice +dormitories +dormitory +dormouse +dorms +dorsal +dory +dos +dosage +dosages +dose +dosed +doses +dosh +dosing +doss +dossed +dosser +dossers +dosses +dosshouse +dosshouses +dossier +dossiers +dossing +dost +dot +dote +doted +dotes +doth +doting +dots +dotted +dottier +dottiest +dotting +dotty +double +doubled +doubles +doublespeak +doublet +doublets +doubling +doubly +doubt +doubted +doubter +doubters +doubtful +doubtfully +doubting +doubtless +doubts +douche +douched +douches +douching +dough +doughnut +doughnuts +doughty +doughy +dour +dourly +douse +doused +douses +dousing +dove +dovecot +dovecote +dovecotes +dovecots +doves +dovetail +dovetailed +dovetailing +dovetails +dovish +dowager +dowagers +dowdier +dowdiest +dowdy +dowel +dowels +down +downbeat +downbeats +downcast +downed +downer +downers +downfall +downfalls +downgrade +downgraded +downgrades +downgrading +downhearted +downhill +downier +downiest +downing +download +downloaded +downloading +downloads +downmarket +downplay +downplayed +downplaying +downplays +downpour +downpours +downright +downriver +downs +downscale +downshift +downshifted +downshifting +downshifts +downside +downsize +downsized +downsizes +downsizing +downspout +downspouts +downstage +downstairs +downstream +downswing +downswings +downtime +downtown +downtrend +downtrodden +downturn +downturns +downward +downwards +downwind +downy +dowries +dowry +dowse +dowsed +dowser +dowsers +dowses +dowsing +doyen +doyenne +doyennes +doyens +doze +dozed +dozen +dozens +dozes +dozier +doziest +dozily +doziness +dozing +dozy +drab +drabber +drabbest +drabness +drachma +drachmae +drachmas +draconian +draft +drafted +draftee +draftees +draftier +draftiest +drafting +drafts +draftsman +draftsmanship +draftsmen +draftswoman +draftswomen +drafty +drag +dragged +dragging +dragnet +dragnets +dragon +dragonflies +dragonfly +dragons +dragoon +dragooned +dragooning +dragoons +drags +dragster +dragsters +drain +drainage +drainboard +drainboards +drained +draining +drainpipe +drainpipes +drains +drake +drakes +dram +drama +dramas +dramatic +dramatically +dramatics +dramatisation +dramatisations +dramatise +dramatised +dramatises +dramatising +dramatist +dramatists +dramatization +dramatizations +dramatize +dramatized +dramatizes +dramatizing +drams +drank +drape +draped +draper +draperies +drapers +drapery +drapes +draping +drastic +drastically +drat +dratted +draught +draughtboard +draughtboards +draughtier +draughtiest +draughts +draughtsman +draughtsmanship +draughtsmen +draughtswoman +draughtswomen +draughty +draw +drawback +drawbacks +drawbridge +drawbridges +drawer +drawers +drawing +drawings +drawl +drawled +drawling +drawls +drawn +draws +drawstring +drawstrings +dray +drays +dread +dreaded +dreadful +dreadfully +dreading +dreadlocks +dreads +dream +dreamboat +dreamboats +dreamed +dreamer +dreamers +dreamier +dreamiest +dreamily +dreaminess +dreaming +dreamland +dreamless +dreamlike +dreams +dreamt +dreamy +drear +drearier +dreariest +drearily +dreariness +dreary +dredge +dredged +dredger +dredgers +dredges +dredging +dregs +drench +drenched +drenches +drenching +dress +dressage +dressed +dresser +dressers +dresses +dressier +dressiest +dressing +dressings +dressmaker +dressmakers +dressmaking +dressy +drew +dribble +dribbled +dribbles +dribbling +dried +drier +driers +dries +driest +drift +drifted +drifter +drifters +drifting +driftnet +driftnets +drifts +driftwood +drill +drilled +drilling +drills +drily +drink +drinkable +drinker +drinkers +drinking +drinks +drip +dripped +drippier +drippiest +dripping +drippings +drippy +drips +drive +drivel +driveled +driveling +drivelled +drivelling +drivels +driven +driver +drivers +drives +driveway +driveways +driving +drizzle +drizzled +drizzles +drizzling +drizzly +droll +drolly +dromedaries +dromedary +drone +droned +drones +droning +drool +drooled +drooling +drools +droop +drooped +droopier +droopiest +drooping +droops +droopy +drop +droplet +droplets +dropout +dropouts +dropped +dropper +droppers +dropping +droppings +drops +dross +drought +droughts +drove +drover +drovers +droves +drown +drowned +drowning +drowns +drowsier +drowsiest +drowsily +drowsiness +drowsy +drubbing +drubbings +drudge +drudgery +drudges +drug +drugged +druggie +druggies +drugging +druggist +druggists +drugs +drugstore +drugstores +druid +druids +drum +drumbeat +drumbeats +drummed +drummer +drummers +drumming +drums +drumstick +drumsticks +drunk +drunkard +drunkards +drunken +drunkenly +drunkenness +drunks +dry +dryad +dryads +dryer +dryers +dryest +drying +dryly +dryness +dual +dualism +duality +dub +dubbed +dubbin +dubbing +dubious +dubiously +dubs +ducal +duchess +duchesses +duchies +duchy +duck +duckboards +ducked +duckies +ducking +duckling +ducklings +ducks +duckweed +ducky +duct +ductile +ducts +dud +dude +dudes +duds +due +duel +dueled +dueling +duelled +duelling +duels +dues +duet +duets +duff +duffed +duffer +duffers +duffing +duffs +dug +dugout +dugouts +duke +dukedom +dukedoms +dukes +dulcet +dulcimer +dulcimers +dull +dullard +dullards +dulled +duller +dullest +dulling +dullness +dulls +dully +duly +dumb +dumbbell +dumbbells +dumber +dumbest +dumbfound +dumbfounded +dumbfounding +dumbfounds +dumbly +dumbness +dumbo +dumbos +dumbstruck +dumbwaiter +dumbwaiters +dummies +dummy +dump +dumped +dumper +dumpers +dumping +dumpling +dumplings +dumps +dumpy +dun +dunce +dunces +dunderhead +dunderheads +dune +dunes +dung +dungarees +dungeon +dungeons +dunk +dunked +dunking +dunks +dunno +duo +duodena +duodenal +duodenum +duodenums +duopolies +duopoly +duos +dupe +duped +dupes +duping +duplex +duplexes +duplicate +duplicated +duplicates +duplicating +duplication +duplicitous +duplicity +durability +durable +duration +duress +during +dusk +dusky +dust +dustbin +dustbins +dustcart +dustcarts +dusted +duster +dusters +dustier +dustiest +dusting +dustman +dustmen +dustpan +dustpans +dusts +dustsheet +dustsheets +dusty +dutiable +duties +dutiful +dutifully +duty +duvet +duvets +dwarf +dwarfed +dwarfing +dwarfs +dwarves +dweeb +dweebs +dwell +dwelled +dweller +dwellers +dwelling +dwellings +dwells +dwelt +dwindle +dwindled +dwindles +dwindling +dye +dyed +dyeing +dyes +dying +dyke +dykes +dynamic +dynamically +dynamics +dynamism +dynamite +dynamited +dynamites +dynamiting +dynamo +dynamos +dynastic +dynasties +dynasty +dysentery +dysfunction +dysfunctional +dysfunctions +dyslexia +dyslexic +dyspepsia +dyspeptic +each +eager +eagerly +eagerness +eagle +eagles +ear +earache +earaches +eardrum +eardrums +earl +earldom +earldoms +earlier +earliest +earliness +earlobe +earlobes +earls +early +earmark +earmarked +earmarking +earmarks +earmuffs +earn +earned +earner +earners +earnest +earnestly +earnestness +earning +earnings +earns +earphone +earphones +earpiece +earpieces +earplug +earplugs +earring +earrings +ears +earshot +earth +earthbound +earthed +earthen +earthenware +earthier +earthiest +earthiness +earthing +earthling +earthlings +earthly +earthquake +earthquakes +earths +earthward +earthwards +earthwork +earthworks +earthworm +earthworms +earthy +earwig +earwigs +ease +eased +easel +easels +eases +easier +easiest +easily +easiness +easing +east +eastbound +easterlies +easterly +eastern +easterner +easterners +easternmost +eastward +eastwards +easy +eat +eatable +eaten +eater +eateries +eaters +eatery +eating +eats +eaves +eavesdrop +eavesdropped +eavesdropper +eavesdroppers +eavesdropping +eavesdrops +ebb +ebbed +ebbing +ebbs +ebony +ebullience +ebullient +eccentric +eccentrically +eccentricities +eccentricity +eccentrics +ecclesiastic +ecclesiastical +ecclesiastics +echelon +echelons +echo +echoed +echoes +echoing +eclair +eclairs +eclat +eclectic +eclectically +eclecticism +eclipse +eclipsed +eclipses +eclipsing +ecological +ecologically +ecologist +ecologists +ecology +economic +economical +economically +economics +economies +economise +economised +economises +economising +economist +economists +economize +economized +economizes +economizing +economy +ecosystem +ecosystems +ecru +ecstasies +ecstasy +ecstatic +ecstatically +ecu +ecumenical +ecumenism +ecus +eczema +eddied +eddies +eddy +eddying +edge +edged +edges +edgeways +edgewise +edgier +edgiest +edgily +edging +edgings +edgy +edible +edict +edicts +edification +edifice +edifices +edified +edifies +edify +edifying +edit +edited +editing +edition +editions +editor +editorial +editorialise +editorialised +editorialises +editorialising +editorialize +editorialized +editorializes +editorializing +editorials +editors +editorship +edits +educate +educated +educates +educating +education +educational +educationalist +educationalists +educationally +educationist +educationists +educative +educator +educators +edutainment +eek +eel +eels +eerie +eerier +eeriest +eerily +eff +efface +effaced +effaces +effacing +effect +effected +effecting +effective +effectively +effectiveness +effects +effectual +effectually +effed +effeminacy +effeminate +effervesce +effervesced +effervescence +effervescent +effervesces +effervescing +effete +efficacious +efficacy +efficiency +efficient +efficiently +effigies +effigy +effing +efflorescence +effluent +effluents +effort +effortless +effortlessly +efforts +effrontery +effs +effusion +effusions +effusive +effusively +egalitarian +egalitarianism +egalitarians +egg +eggcup +eggcups +egged +egghead +eggheads +egging +eggnog +eggplant +eggplants +eggs +eggshell +eggshells +ego +egocentric +egocentrically +egocentricity +egoism +egoist +egoistic +egoists +egomania +egomaniac +egomaniacs +egos +egotism +egotist +egotistical +egotistically +egotists +egregious +egret +egrets +eh +eiderdown +eiderdowns +eight +eighteen +eighteens +eighteenth +eighteenths +eighth +eighths +eighties +eightieth +eightieths +eights +eighty +eisteddfod +eisteddfods +either +ejaculate +ejaculated +ejaculates +ejaculating +ejaculation +ejaculations +eject +ejected +ejecting +ejection +ejections +ejects +eke +eked +ekes +eking +elaborate +elaborated +elaborately +elaborates +elaborating +elaboration +elaborations +elan +elapse +elapsed +elapses +elapsing +elastic +elasticated +elasticity +elasticized +elastics +elated +elation +elbow +elbowed +elbowing +elbows +elder +elderberries +elderberry +elderly +elders +eldest +elect +elected +electing +election +electioneering +elections +elective +electives +elector +electoral +electorally +electorate +electorates +electors +electric +electrical +electrically +electrician +electricians +electricity +electrics +electrification +electrified +electrifies +electrify +electrifying +electrocardiogram +electrocardiograms +electrocute +electrocuted +electrocutes +electrocuting +electrocution +electrocutions +electrode +electrodes +electroencephalogram +electroencephalograms +electrolysis +electrolyte +electrolytes +electromagnet +electromagnetic +electromagnetism +electromagnets +electron +electronic +electronically +electronics +electrons +electroplate +electroplated +electroplates +electroplating +elects +elegance +elegant +elegantly +elegiac +elegies +elegy +element +elemental +elementary +elements +elephant +elephantine +elephants +elevate +elevated +elevates +elevating +elevation +elevations +elevator +elevators +eleven +elevens +elevenses +eleventh +elevenths +elf +elfin +elicit +elicited +eliciting +elicits +elide +elided +elides +eliding +eligibility +eligible +eliminate +eliminated +eliminates +eliminating +elimination +eliminations +eliminator +eliminators +elision +elisions +elite +elites +elitism +elitist +elitists +elixir +elixirs +elk +elks +ellipse +ellipses +ellipsis +elliptic +elliptical +elliptically +elm +elms +elocution +elongate +elongated +elongates +elongating +elongation +elongations +elope +eloped +elopement +elopements +elopes +eloping +eloquence +eloquent +eloquently +else +elsewhere +elucidate +elucidated +elucidates +elucidating +elucidation +elucidations +elude +eluded +eludes +eluding +elusive +elusively +elusiveness +elves +emaciated +emaciation +email +emailed +emailing +emails +emanate +emanated +emanates +emanating +emanation +emanations +emancipate +emancipated +emancipates +emancipating +emancipation +emasculate +emasculated +emasculates +emasculating +emasculation +embalm +embalmed +embalmer +embalmers +embalming +embalms +embankment +embankments +embargo +embargoed +embargoes +embargoing +embark +embarkation +embarkations +embarked +embarking +embarks +embarrass +embarrassed +embarrasses +embarrassing +embarrassingly +embarrassment +embarrassments +embassies +embassy +embattled +embed +embedded +embedding +embeds +embellish +embellished +embellishes +embellishing +embellishment +embellishments +ember +embers +embezzle +embezzled +embezzlement +embezzler +embezzlers +embezzles +embezzling +embitter +embittered +embittering +embitters +emblazon +emblazoned +emblazoning +emblazons +emblem +emblematic +emblematically +emblems +embodied +embodies +embodiment +embody +embodying +embolden +emboldened +emboldening +emboldens +embolism +embolisms +emboss +embossed +embosses +embossing +embrace +embraced +embraces +embracing +embrocation +embrocations +embroider +embroidered +embroideries +embroidering +embroiders +embroidery +embroil +embroiled +embroiling +embroils +embryo +embryological +embryologist +embryologists +embryology +embryonic +embryos +emcee +emceed +emceeing +emcees +emend +emendation +emendations +emended +emending +emends +emerald +emeralds +emerge +emerged +emergence +emergencies +emergency +emergent +emerges +emerging +emeritus +emery +emetic +emetics +emigrant +emigrants +emigrate +emigrated +emigrates +emigrating +emigration +emigrations +emigre +emigres +eminence +eminences +eminent +eminently +emir +emirate +emirates +emirs +emissaries +emissary +emission +emissions +emit +emits +emitted +emitting +emollient +emollients +emolument +emoluments +emote +emoted +emotes +emoting +emotion +emotional +emotionalism +emotionally +emotionless +emotions +emotive +emotively +empanel +empaneled +empaneling +empanelled +empanelling +empanels +empathetic +empathise +empathised +empathises +empathising +empathize +empathized +empathizes +empathizing +empathy +emperor +emperors +emphases +emphasis +emphasise +emphasised +emphasises +emphasising +emphasize +emphasized +emphasizes +emphasizing +emphatic +emphatically +emphysema +empire +empires +empirical +empirically +empiricism +empiricist +empiricists +emplacement +emplacements +employ +employable +employed +employee +employees +employer +employers +employing +employment +employments +employs +emporia +emporium +emporiums +empower +empowered +empowering +empowerment +empowers +empress +empresses +emptied +emptier +empties +emptiest +emptily +emptiness +empty +emptying +emu +emulate +emulated +emulates +emulating +emulation +emulations +emulsified +emulsifier +emulsifiers +emulsifies +emulsify +emulsifying +emulsion +emulsions +emus +enable +enabled +enabler +enablers +enables +enabling +enact +enacted +enacting +enactment +enactments +enacts +enamel +enameled +enameling +enamelled +enamelling +enamels +enamored +enamoured +encamp +encamped +encamping +encampment +encampments +encamps +encapsulate +encapsulated +encapsulates +encapsulating +encapsulation +encapsulations +encase +encased +encases +encasing +encephalitis +enchant +enchanted +enchanter +enchanters +enchanting +enchantment +enchantments +enchantress +enchantresses +enchants +enchilada +enchiladas +encircle +encircled +encirclement +encircles +encircling +enclave +enclaves +enclose +enclosed +encloses +enclosing +enclosure +enclosures +encode +encoded +encodes +encoding +encompass +encompassed +encompasses +encompassing +encore +encores +encounter +encountered +encountering +encounters +encourage +encouraged +encouragement +encouragements +encourages +encouraging +encouragingly +encroach +encroached +encroaches +encroaching +encroachment +encroachments +encrustation +encrustations +encrusted +encrypt +encrypted +encrypting +encryption +encrypts +encumber +encumbered +encumbering +encumbers +encumbrance +encumbrances +encyclical +encyclicals +encyclopaedia +encyclopaedias +encyclopaedic +encyclopedia +encyclopedias +encyclopedic +end +endanger +endangered +endangering +endangers +endear +endeared +endearing +endearingly +endearment +endearments +endears +endeavor +endeavored +endeavoring +endeavors +endeavour +endeavoured +endeavouring +endeavours +ended +endemic +endgame +endgames +ending +endings +endive +endives +endless +endlessly +endocrine +endorphin +endorse +endorsed +endorsement +endorsements +endorses +endorsing +endow +endowed +endowing +endowment +endowments +endows +endpoint +endpoints +ends +endurable +endurance +endure +endured +endures +enduring +endways +endwise +enema +enemas +enemies +enemy +energetic +energetically +energies +energise +energised +energises +energising +energize +energized +energizes +energizing +energy +enervate +enervated +enervates +enervating +enfeeble +enfeebled +enfeebles +enfeebling +enfold +enfolded +enfolding +enfolds +enforce +enforceable +enforced +enforcement +enforces +enforcing +enfranchise +enfranchised +enfranchisement +enfranchises +enfranchising +engage +engaged +engagement +engagements +engages +engaging +engender +engendered +engendering +engenders +engine +engineer +engineered +engineering +engineers +engines +engorge +engorged +engorgement +engorges +engorging +engrave +engraved +engraver +engravers +engraves +engraving +engravings +engross +engrossed +engrosses +engrossing +engulf +engulfed +engulfing +engulfs +enhance +enhanced +enhancement +enhancements +enhancer +enhancers +enhances +enhancing +enigma +enigmas +enigmatic +enigmatically +enjoin +enjoined +enjoining +enjoins +enjoy +enjoyable +enjoyably +enjoyed +enjoying +enjoyment +enjoyments +enjoys +enlarge +enlarged +enlargement +enlargements +enlarger +enlargers +enlarges +enlarging +enlighten +enlightened +enlightening +enlightenment +enlightens +enlist +enlisted +enlisting +enlistment +enlistments +enlists +enliven +enlivened +enlivening +enlivens +enmesh +enmeshed +enmeshes +enmeshing +enmities +enmity +ennoble +ennobled +ennobles +ennobling +ennui +enormities +enormity +enormous +enormously +enormousness +enough +enquire +enquired +enquirer +enquirers +enquires +enquiries +enquiring +enquiringly +enquiry +enrage +enraged +enrages +enraging +enrapture +enraptured +enraptures +enrapturing +enrich +enriched +enriches +enriching +enrichment +enrol +enroll +enrolled +enrolling +enrollment +enrollments +enrolls +enrolment +enrolments +enrols +ensconce +ensconced +ensconces +ensconcing +ensemble +ensembles +enshrine +enshrined +enshrines +enshrining +enshroud +enshrouded +enshrouding +enshrouds +ensign +ensigns +enslave +enslaved +enslavement +enslaves +enslaving +ensnare +ensnared +ensnares +ensnaring +ensue +ensued +ensues +ensuing +ensure +ensured +ensures +ensuring +entail +entailed +entailing +entails +entangle +entangled +entanglement +entanglements +entangles +entangling +entente +ententes +enter +entered +entering +enteritis +enterprise +enterprises +enterprising +enters +entertain +entertained +entertainer +entertainers +entertaining +entertainment +entertainments +entertains +enthral +enthrall +enthralled +enthralling +enthralls +enthrals +enthrone +enthroned +enthronement +enthronements +enthrones +enthroning +enthuse +enthused +enthuses +enthusiasm +enthusiasms +enthusiast +enthusiastic +enthusiastically +enthusiasts +enthusing +entice +enticed +enticement +enticements +entices +enticing +enticingly +entire +entirely +entirety +entities +entitle +entitled +entitlement +entitlements +entitles +entitling +entity +entomb +entombed +entombing +entombs +entomological +entomologist +entomologists +entomology +entourage +entourages +entrails +entrance +entranced +entrances +entrancing +entrant +entrants +entrap +entrapment +entrapped +entrapping +entraps +entreat +entreated +entreaties +entreating +entreats +entreaty +entree +entrees +entrench +entrenched +entrenches +entrenching +entrenchment +entrenchments +entrepreneur +entrepreneurial +entrepreneurs +entrepreneurship +entries +entropy +entrust +entrusted +entrusting +entrusts +entry +entryphone +entryphones +entryway +entryways +entwine +entwined +entwines +entwining +enumerate +enumerated +enumerates +enumerating +enunciate +enunciated +enunciates +enunciating +enunciation +envelop +envelope +enveloped +envelopes +enveloping +envelops +enviable +enviably +envied +envies +envious +enviously +environment +environmental +environmentalism +environmentalist +environmentalists +environmentally +environments +environs +envisage +envisaged +envisages +envisaging +envision +envisioned +envisioning +envisions +envoy +envoys +envy +envying +enzyme +enzymes +eon +eons +epaulet +epaulets +epaulette +epaulettes +epee +epees +ephemera +ephemeral +epic +epicenter +epicenters +epicentre +epicentres +epics +epicure +epicurean +epicureans +epicures +epidemic +epidemics +epidemiological +epidemiologist +epidemiologists +epidemiology +epidermis +epidermises +epidural +epidurals +epiglottis +epiglottises +epigram +epigrammatic +epigrams +epigraph +epigraphs +epilepsy +epileptic +epileptics +epilog +epilogs +epilogue +epilogues +epiphany +episcopal +episode +episodes +episodic +epistle +epistles +epistolary +epitaph +epitaphs +epithet +epithets +epitome +epitomise +epitomised +epitomises +epitomising +epitomize +epitomized +epitomizes +epitomizing +epoch +epochs +eponymous +epoxies +epoxy +equable +equably +equal +equaled +equaling +equalisation +equalise +equalised +equaliser +equalisers +equalises +equalising +equality +equalization +equalize +equalized +equalizer +equalizers +equalizes +equalizing +equalled +equalling +equally +equals +equanimity +equate +equated +equates +equating +equation +equations +equator +equatorial +equerries +equerry +equestrian +equestrians +equidistant +equilateral +equilibrium +equine +equinoctial +equinox +equinoxes +equip +equipment +equipped +equipping +equips +equitable +equitably +equities +equity +equivalence +equivalent +equivalents +equivocal +equivocally +equivocate +equivocated +equivocates +equivocating +equivocation +equivocations +er +era +eradicate +eradicated +eradicates +eradicating +eradication +eras +erase +erased +eraser +erasers +erases +erasing +erasure +erasures +ere +erect +erected +erectile +erecting +erection +erections +erects +ergo +ergonomic +ergonomically +ergonomics +ermine +erode +eroded +erodes +eroding +erogenous +erosion +erotic +erotica +erotically +eroticism +err +errand +errands +errant +errata +erratic +erratically +erratum +erred +erring +erroneous +erroneously +error +errors +errs +ersatz +erstwhile +erudite +erudition +erupt +erupted +erupting +eruption +eruptions +erupts +escalate +escalated +escalates +escalating +escalation +escalations +escalator +escalators +escalope +escalopes +escapade +escapades +escape +escaped +escapee +escapees +escapes +escaping +escapism +escapist +escapologist +escapologists +escapology +escarpment +escarpments +eschew +eschewed +eschewing +eschews +escort +escorted +escorting +escorts +escrow +escudo +escudos +esophagus +esophaguses +esoteric +espadrille +espadrilles +especial +especially +espied +espies +espionage +esplanade +esplanades +espousal +espouse +espoused +espouses +espousing +espresso +espressos +espy +espying +esquire +essay +essayed +essaying +essayist +essayists +essays +essence +essences +essential +essentially +essentials +establish +established +establishes +establishing +establishment +establishments +estate +estates +esteem +esteemed +esteeming +esteems +esthete +esthetes +esthetic +esthetically +esthetics +estimable +estimate +estimated +estimates +estimating +estimation +estimations +estranged +estrangement +estrangements +estrogen +estuaries +estuary +etch +etched +etcher +etchers +etches +etching +etchings +eternal +eternally +eternity +ethanol +ether +ethereal +ethic +ethical +ethically +ethics +ethnic +ethnically +ethnicity +ethnics +ethnocentric +ethnocentrism +ethnographer +ethnographers +ethnographic +ethnographically +ethnography +ethnological +ethnologically +ethnologist +ethnologists +ethnology +ethos +etiolated +etiologies +etiology +etiquette +etymological +etymologically +etymologies +etymologist +etymologists +etymology +eucalypti +eucalyptus +eucalyptuses +eugenic +eugenics +eulogies +eulogise +eulogised +eulogises +eulogising +eulogist +eulogistic +eulogists +eulogize +eulogized +eulogizes +eulogizing +eulogy +eunuch +eunuchs +euphemism +euphemisms +euphemistic +euphemistically +euphonious +euphoria +euphoric +euphorically +eureka +euro +euros +euthanasia +evacuate +evacuated +evacuates +evacuating +evacuation +evacuations +evacuee +evacuees +evade +evaded +evades +evading +evaluate +evaluated +evaluates +evaluating +evaluation +evaluations +evaluative +evanescent +evangelical +evangelicals +evangelise +evangelised +evangelises +evangelising +evangelism +evangelist +evangelistic +evangelists +evangelize +evangelized +evangelizes +evangelizing +evaporate +evaporated +evaporates +evaporating +evaporation +evasion +evasions +evasive +evasively +evasiveness +eve +even +evened +evening +evenings +evenly +evens +evensong +event +eventful +eventide +events +eventual +eventualities +eventuality +eventually +ever +evergreen +evergreens +everlasting +everlastingly +evermore +every +everybody +everyday +everyone +everyplace +everything +everywhere +eves +evict +evicted +evicting +eviction +evictions +evicts +evidence +evidenced +evidences +evidencing +evident +evidently +evil +evildoer +evildoers +evilly +evils +evince +evinced +evinces +evincing +eviscerate +eviscerated +eviscerates +eviscerating +evocation +evocations +evocative +evocatively +evoke +evoked +evokes +evoking +evolution +evolutionary +evolve +evolved +evolves +evolving +ewe +ewer +ewers +ewes +ex +exacerbate +exacerbated +exacerbates +exacerbating +exacerbation +exact +exacted +exacting +exactitude +exactly +exactness +exacts +exaggerate +exaggerated +exaggeratedly +exaggerates +exaggerating +exaggeration +exaggerations +exalt +exaltation +exalted +exalting +exalts +exam +examination +examinations +examine +examined +examiner +examiners +examines +examining +example +examples +exams +exasperate +exasperated +exasperatedly +exasperates +exasperating +exasperatingly +exasperation +excavate +excavated +excavates +excavating +excavation +excavations +excavator +excavators +exceed +exceeded +exceeding +exceedingly +exceeds +excel +excelled +excellence +excellent +excellently +excelling +excels +except +excepted +excepting +exception +exceptionable +exceptional +exceptionally +exceptions +excepts +excerpt +excerpted +excerpting +excerpts +excess +excesses +excessive +excessively +exchange +exchangeable +exchanged +exchanges +exchanging +exchequer +excise +excised +excises +excising +excision +excisions +excitability +excitable +excite +excited +excitedly +excitement +excitements +excites +exciting +excitingly +exclaim +exclaimed +exclaiming +exclaims +exclamation +exclamations +exclude +excluded +excludes +excluding +exclusion +exclusionary +exclusions +exclusive +exclusively +exclusiveness +exclusives +exclusivity +excommunicate +excommunicated +excommunicates +excommunicating +excommunication +excommunications +excoriate +excoriated +excoriates +excoriating +excoriation +excoriations +excrement +excrescence +excrescences +excreta +excrete +excreted +excretes +excreting +excretion +excretions +excruciating +excruciatingly +exculpate +exculpated +exculpates +exculpating +exculpation +exculpatory +excursion +excursions +excusable +excuse +excused +excuses +excusing +exec +execrable +execrably +execs +execute +executed +executes +executing +execution +executioner +executioners +executions +executive +executives +executor +executors +exegeses +exegesis +exemplar +exemplars +exemplary +exemplification +exemplifications +exemplified +exemplifies +exemplify +exemplifying +exempt +exempted +exempting +exemption +exemptions +exempts +exercise +exercised +exercises +exercising +exert +exerted +exerting +exertion +exertions +exerts +exes +exeunt +exfoliate +exfoliated +exfoliates +exfoliating +exfoliation +exhalation +exhalations +exhale +exhaled +exhales +exhaling +exhaust +exhausted +exhausting +exhaustion +exhaustive +exhaustively +exhausts +exhibit +exhibited +exhibiting +exhibition +exhibitionism +exhibitionist +exhibitionists +exhibitions +exhibitor +exhibitors +exhibits +exhilarate +exhilarated +exhilarates +exhilarating +exhilaration +exhort +exhortation +exhortations +exhorted +exhorting +exhorts +exhumation +exhumations +exhume +exhumed +exhumes +exhuming +exigencies +exigency +exigent +exile +exiled +exiles +exiling +exist +existed +existence +existences +existent +existential +existentialism +existentialist +existentialists +existing +exists +exit +exited +exiting +exits +exodus +exoduses +exonerate +exonerated +exonerates +exonerating +exoneration +exorbitant +exorbitantly +exorcise +exorcised +exorcises +exorcising +exorcism +exorcisms +exorcist +exorcists +exorcize +exorcized +exorcizes +exorcizing +exotic +exotica +exotically +exoticism +expand +expandable +expanded +expanding +expands +expanse +expanses +expansion +expansionary +expansionism +expansionist +expansionists +expansions +expansive +expansively +expansiveness +expat +expatiate +expatiated +expatiates +expatiating +expatriate +expatriated +expatriates +expatriating +expats +expect +expectancy +expectant +expectantly +expectation +expectations +expected +expecting +expectorant +expectorants +expectorate +expectorated +expectorates +expectorating +expects +expedience +expediency +expedient +expediently +expedients +expedite +expedited +expedites +expediting +expedition +expeditionary +expeditions +expeditious +expeditiously +expel +expelled +expelling +expels +expend +expendable +expended +expending +expenditure +expenditures +expends +expense +expenses +expensive +expensively +experience +experienced +experiences +experiencing +experiential +experiment +experimental +experimentally +experimentation +experimented +experimenter +experimenters +experimenting +experiments +expert +expertise +expertly +experts +expiate +expiated +expiates +expiating +expiation +expiration +expire +expired +expires +expiring +expiry +explain +explained +explaining +explains +explanation +explanations +explanatory +expletive +expletives +explicable +explicate +explicated +explicates +explicating +explication +explications +explicit +explicitly +explicitness +explode +exploded +explodes +exploding +exploit +exploitable +exploitation +exploitative +exploited +exploiter +exploiters +exploiting +exploits +exploration +explorations +exploratory +explore +explored +explorer +explorers +explores +exploring +explosion +explosions +explosive +explosively +explosiveness +explosives +expo +exponent +exponential +exponentially +exponents +export +exportable +exportation +exported +exporter +exporters +exporting +exports +expos +expose +exposed +exposes +exposing +exposition +expositions +expostulate +expostulated +expostulates +expostulating +expostulation +expostulations +exposure +exposures +expound +expounded +expounding +expounds +express +expressed +expresses +expressing +expression +expressionism +expressionist +expressionists +expressionless +expressionlessly +expressions +expressive +expressively +expressiveness +expressly +expressway +expressways +expropriate +expropriated +expropriates +expropriating +expropriation +expropriations +expropriator +expropriators +expulsion +expulsions +expunge +expunged +expunges +expunging +expurgate +expurgated +expurgates +expurgating +expurgation +expurgations +exquisite +exquisitely +exquisiteness +extant +extemporaneous +extempore +extemporisation +extemporise +extemporised +extemporises +extemporising +extemporization +extemporize +extemporized +extemporizes +extemporizing +extend +extendable +extended +extending +extends +extension +extensions +extensive +extensively +extent +extenuate +extenuated +extenuates +extenuating +extenuation +exterior +exteriors +exterminate +exterminated +exterminates +exterminating +extermination +exterminator +exterminators +external +externalisation +externalisations +externalise +externalised +externalises +externalising +externalization +externalizations +externalize +externalized +externalizes +externalizing +externally +externals +extinct +extinction +extinguish +extinguished +extinguisher +extinguishers +extinguishes +extinguishing +extirpate +extirpated +extirpates +extirpating +extirpation +extol +extolled +extolling +extols +extort +extorted +extorting +extortion +extortionate +extortionately +extortioner +extortioners +extortionist +extortionists +extorts +extra +extract +extracted +extracting +extraction +extractions +extractor +extractors +extracts +extracurricular +extraditable +extradite +extradited +extradites +extraditing +extradition +extraditions +extrajudicial +extramarital +extramural +extraneous +extraordinaire +extraordinarily +extraordinary +extrapolate +extrapolated +extrapolates +extrapolating +extrapolation +extrapolations +extras +extraterrestrial +extraterrestrials +extraterritorial +extravagance +extravagances +extravagant +extravagantly +extravaganza +extravaganzas +extravert +extraverts +extreme +extremely +extremes +extremism +extremist +extremists +extremities +extremity +extricate +extricated +extricates +extricating +extrication +extrinsic +extrovert +extroverted +extroverts +extrude +extruded +extrudes +extruding +extrusion +extrusions +exuberance +exuberant +exuberantly +exude +exuded +exudes +exuding +exult +exultant +exultantly +exultation +exulted +exulting +exults +eye +eyeball +eyeballed +eyeballing +eyeballs +eyebrow +eyebrows +eyed +eyeful +eyefuls +eyeglass +eyeglasses +eyeing +eyelash +eyelashes +eyelet +eyelets +eyelid +eyelids +eyeliner +eyeliners +eyepiece +eyepieces +eyes +eyesight +eyesore +eyesores +eyewitness +eyewitnesses +eying +eyrie +eyries +fa +fab +fable +fabled +fables +fabric +fabricate +fabricated +fabricates +fabricating +fabrication +fabrications +fabrics +fabulous +fabulously +facade +facades +face +facecloth +facecloths +faced +faceless +facelift +facelifts +faces +facet +facetious +facetiously +facetiousness +facets +facial +facially +facials +facile +facilitate +facilitated +facilitates +facilitating +facilitation +facilitator +facilitators +facilities +facility +facing +facings +facsimile +facsimiles +fact +faction +factional +factionalism +factions +factitious +factor +factored +factorial +factories +factoring +factorise +factorised +factorises +factorising +factorize +factorized +factorizes +factorizing +factors +factory +factotum +factotums +facts +factual +factually +faculties +faculty +fad +faddiness +faddish +faddishness +faddy +fade +faded +fades +fading +fads +faecal +faeces +faff +faffed +faffing +faffs +fag +fagged +fagging +faggot +faggots +fags +fail +failed +failing +failings +fails +failure +failures +faint +fainted +fainter +faintest +fainthearted +fainting +faintly +faintness +faints +fair +fairer +fairest +fairground +fairgrounds +fairies +fairly +fairness +fairs +fairway +fairways +fairy +fairyland +fairylands +faith +faithful +faithfully +faithfulness +faithfuls +faithless +faithlessly +faithlessness +faiths +fake +faked +faker +fakers +fakes +faking +fakir +fakirs +falcon +falconer +falconers +falconry +falcons +fall +fallacies +fallacious +fallaciously +fallacy +fallback +fallen +fallibility +fallible +falling +fallout +fallow +falls +false +falsehood +falsehoods +falsely +falsetto +falsettos +falsies +falsification +falsifications +falsified +falsifies +falsify +falsifying +falsity +falter +faltered +faltering +falteringly +falters +fame +famed +familial +familiar +familiarisation +familiarise +familiarised +familiarises +familiarising +familiarity +familiarization +familiarize +familiarized +familiarizes +familiarizing +familiarly +familiars +families +family +famine +famines +famished +famous +famously +fan +fanatic +fanatical +fanatically +fanaticism +fanatics +fanciable +fancied +fancier +fanciers +fancies +fanciest +fanciful +fancifully +fancy +fancying +fandango +fandangos +fanfare +fanfares +fang +fangs +fanlight +fanlights +fanned +fannies +fanning +fanny +fans +fantasia +fantasias +fantasies +fantasise +fantasised +fantasises +fantasising +fantasist +fantasists +fantasize +fantasized +fantasizes +fantasizing +fantastic +fantastical +fantastically +fantasy +fanzine +fanzines +far +faraway +farce +farces +farcical +farcically +fare +fared +fares +farewell +farewells +faring +farm +farmed +farmer +farmers +farmhand +farmhands +farmhouse +farmhouses +farming +farmland +farmlands +farms +farmstead +farmsteads +farmyard +farmyards +farrago +farragoes +farragos +farrier +farriers +fart +farted +farther +farthest +farthing +farthings +farting +farts +fascia +fascias +fascinate +fascinated +fascinates +fascinating +fascinatingly +fascination +fascinations +fascism +fascist +fascists +fashion +fashionable +fashionably +fashioned +fashioning +fashions +fast +fastball +fastballs +fasted +fasten +fastened +fastener +fasteners +fastening +fastenings +fastens +faster +fastest +fastidious +fastidiously +fastidiousness +fasting +fastness +fastnesses +fasts +fat +fatal +fatalism +fatalist +fatalistic +fatalistically +fatalists +fatalities +fatality +fatally +fate +fated +fateful +fates +fathead +fatheaded +fatheads +father +fathered +fatherhood +fathering +fatherland +fatherlands +fatherless +fatherly +fathers +fathom +fathomed +fathoming +fathomless +fathoms +fatigue +fatigued +fatigues +fatiguing +fatness +fats +fatso +fatsos +fatten +fattened +fattening +fattens +fatter +fattest +fattier +fatties +fattiest +fatty +fatuous +fatuously +fatuousness +fatwa +fatwas +faucet +faucets +fault +faulted +faulting +faultless +faultlessly +faults +faulty +faun +fauna +faunas +fauns +fave +faves +favor +favorable +favorably +favored +favoring +favorite +favorites +favoritism +favors +favour +favourable +favourably +favoured +favouring +favourite +favourites +favouritism +favours +fawn +fawned +fawning +fawns +fax +faxed +faxes +faxing +faze +fazed +fazes +fazing +fealty +fear +feared +fearful +fearfully +fearfulness +fearing +fearless +fearlessly +fearlessness +fears +fearsome +feasibility +feasible +feasibly +feast +feasted +feasting +feasts +feat +feather +featherbrained +feathered +feathering +feathers +featherweight +featherweights +feathery +feats +feature +featured +featureless +features +featuring +febrile +fecal +feces +feckless +fecklessness +fecund +fecundity +fed +federal +federalism +federalist +federalists +federally +federate +federated +federates +federating +federation +federations +fedora +fedoras +feds +fee +feeble +feebler +feeblest +feebly +feed +feedback +feedbag +feedbags +feeder +feeders +feeding +feeds +feel +feeler +feelers +feelgood +feeling +feelingly +feelings +feels +fees +feet +feign +feigned +feigning +feigns +feint +feinted +feinting +feints +feistier +feistiest +feisty +felafel +felafels +felicitations +felicities +felicitous +felicitously +felicity +feline +felines +fell +fella +fellas +fellatio +felled +feller +fellers +felling +fellow +fellows +fellowship +fellowships +fells +felon +felonies +felons +felony +felt +female +femaleness +females +feminine +femininity +feminise +feminised +feminises +feminising +feminism +feminist +feminists +feminize +feminized +feminizes +feminizing +femora +femoral +femur +femurs +fen +fence +fenced +fencer +fencers +fences +fencing +fend +fended +fender +fenders +fending +fends +fennel +fens +feral +ferment +fermentation +fermented +fermenting +ferments +fern +ferns +ferny +ferocious +ferociously +ferociousness +ferocity +ferret +ferreted +ferreting +ferrets +ferried +ferries +ferrous +ferrule +ferrules +ferry +ferryboat +ferryboats +ferrying +ferryman +ferrymen +fertile +fertilisation +fertilise +fertilised +fertiliser +fertilisers +fertilises +fertilising +fertility +fertilization +fertilize +fertilized +fertilizer +fertilizers +fertilizes +fertilizing +fervency +fervent +fervently +fervid +fervidly +fervor +fervour +fess +fessed +fesses +fessing +fester +festered +festering +festers +festival +festivals +festive +festivities +festivity +festoon +festooned +festooning +festoons +feta +fetal +fetch +fetched +fetches +fetching +fetchingly +fete +feted +fetes +fetid +feting +fetish +fetishes +fetishism +fetishist +fetishistic +fetishists +fetlock +fetlocks +fetter +fettered +fettering +fetters +fetus +fetuses +feud +feudal +feudalism +feudalistic +feuded +feuding +feuds +fever +fevered +feverish +feverishly +fevers +few +fewer +fewest +fey +fez +fezzes +fiance +fiancee +fiancees +fiances +fiasco +fiascoes +fiascos +fiat +fiats +fib +fibbed +fibber +fibbers +fibbing +fiber +fiberglass +fibers +fibre +fibreglass +fibres +fibrous +fibs +fibula +fibulae +fibulas +fiche +fiches +fickle +fickleness +fiction +fictional +fictionalisation +fictionalisations +fictionalise +fictionalised +fictionalises +fictionalising +fictionalization +fictionalizations +fictionalize +fictionalized +fictionalizes +fictionalizing +fictions +fictitious +fiddle +fiddled +fiddler +fiddlers +fiddles +fiddlesticks +fiddlier +fiddliest +fiddling +fiddly +fidelity +fidget +fidgeted +fidgeting +fidgets +fidgety +fiduciary +fief +fiefs +field +fielded +fielder +fielders +fielding +fields +fieldsman +fieldsmen +fieldwork +fieldworker +fieldworkers +fiend +fiendish +fiendishly +fiends +fierce +fiercely +fierceness +fiercer +fiercest +fieriest +fiery +fiesta +fiestas +fife +fifes +fifteen +fifteens +fifteenth +fifteenths +fifth +fifths +fifties +fiftieth +fiftieths +fifty +fig +fight +fightback +fighter +fighters +fighting +fights +figs +figurative +figuratively +figure +figured +figurehead +figureheads +figures +figurine +figurines +figuring +filament +filaments +filbert +filberts +filch +filched +filches +filching +file +filed +files +filet +fileted +fileting +filets +filial +filibuster +filibustered +filibustering +filibusters +filigree +filing +filings +fill +filled +filler +fillers +fillet +filleted +filleting +fillets +fillies +filling +fillings +fillip +fillips +fills +filly +film +filmed +filming +filmmaker +filmmakers +films +filmy +filo +filter +filtered +filtering +filters +filth +filthier +filthiest +filthily +filthiness +filthy +filtration +fin +finagle +finagled +finagles +finagling +final +finale +finales +finalisation +finalise +finalised +finalises +finalising +finalist +finalists +finality +finalization +finalize +finalized +finalizes +finalizing +finally +finals +finance +financed +finances +financial +financially +financier +financiers +financing +finch +finches +find +finder +finders +finding +findings +finds +fine +fined +finely +fineness +finer +finery +fines +finesse +finessed +finesses +finessing +finest +finger +fingered +fingering +fingermark +fingermarks +fingernail +fingernails +fingerprint +fingerprinted +fingerprinting +fingerprints +fingers +fingertip +fingertips +finicky +fining +finish +finished +finisher +finishers +finishes +finishing +finite +fink +finked +finking +finks +fins +fiord +fiords +fir +fire +firearm +firearms +fireball +fireballs +firebomb +firebombed +firebombing +firebombings +firebombs +firebrand +firebrands +firebreak +firebreaks +firebrick +firebricks +firecracker +firecrackers +fired +firefight +firefighter +firefighters +firefighting +firefights +fireflies +firefly +fireguard +fireguards +firehouse +firehouses +firelight +firelighter +firelighters +fireman +firemen +fireplace +fireplaces +firepower +fireproof +fires +firescreen +firescreens +fireside +firesides +firestorm +firestorms +firetrap +firetraps +firewall +firewalls +firewater +firewood +firework +fireworks +firing +firings +firm +firmament +firmed +firmer +firmest +firming +firmly +firmness +firms +firmware +firs +first +firstborn +firstly +firsts +firth +firths +fiscal +fiscally +fish +fishbowl +fishbowls +fishcake +fishcakes +fished +fisheries +fisherman +fishermen +fishery +fishes +fishier +fishiest +fishing +fishmonger +fishmongers +fishnet +fishwife +fishwives +fishy +fissile +fission +fissure +fissures +fist +fistful +fistfuls +fisticuffs +fists +fit +fitful +fitfully +fitment +fitments +fitness +fits +fitted +fitter +fitters +fittest +fitting +fittings +five +fiver +fivers +fives +fix +fixated +fixation +fixations +fixative +fixatives +fixed +fixedly +fixer +fixers +fixes +fixing +fixings +fixity +fixture +fixtures +fizz +fizzed +fizzes +fizzier +fizziest +fizzing +fizzle +fizzled +fizzles +fizzling +fizzy +fjord +fjords +flab +flabbergasted +flabbier +flabbiest +flabbiness +flabby +flaccid +flack +flag +flagellant +flagellants +flagellate +flagellated +flagellates +flagellating +flagellation +flagged +flagging +flagon +flagons +flagpole +flagpoles +flagrant +flagrantly +flags +flagship +flagships +flagstaff +flagstaffs +flagstone +flagstones +flail +flailed +flailing +flails +flair +flak +flake +flaked +flakes +flakier +flakiest +flakiness +flaking +flaky +flambe +flambeed +flamboyance +flamboyant +flamboyantly +flame +flamed +flamenco +flamencos +flameproof +flames +flaming +flamingo +flamingoes +flamingos +flammable +flan +flange +flanges +flank +flanked +flanking +flanks +flannel +flannelette +flannelled +flannelling +flannels +flans +flap +flapjack +flapjacks +flapped +flapper +flappers +flapping +flaps +flare +flared +flares +flaring +flash +flashback +flashbacks +flashbulb +flashbulbs +flashcard +flashcards +flashed +flasher +flashers +flashes +flashgun +flashguns +flashier +flashiest +flashing +flashlight +flashlights +flashpoint +flashpoints +flashy +flask +flasks +flat +flatbed +flatbeds +flatcar +flatcars +flatfish +flatfishes +flatlet +flatlets +flatly +flatmate +flatmates +flatness +flats +flatten +flattened +flattening +flattens +flatter +flattered +flatterer +flatterers +flattering +flatteringly +flatters +flattery +flattest +flatulence +flatulent +flatware +flaunt +flaunted +flaunting +flaunts +flautist +flautists +flavor +flavored +flavorful +flavoring +flavorings +flavorless +flavors +flavorsome +flavour +flavoured +flavouring +flavourings +flavourless +flavours +flavoursome +flaw +flawed +flawless +flawlessly +flaws +flax +flaxen +flay +flayed +flaying +flays +flea +fleabag +fleabags +fleabite +fleabites +fleapit +fleapits +fleas +fleck +flecked +flecking +flecks +fled +fledged +fledgeling +fledgelings +fledgling +fledglings +flee +fleece +fleeced +fleeces +fleecing +fleecy +fleeing +flees +fleet +fleeting +fleetingly +fleets +flesh +fleshed +fleshes +fleshing +fleshly +fleshpots +fleshy +flew +flex +flexed +flexes +flexibility +flexible +flexibly +flexing +flexitime +flextime +flick +flicked +flicker +flickered +flickering +flickers +flicking +flicks +flier +fliers +flies +flight +flightier +flightiest +flightiness +flightless +flights +flighty +flimsier +flimsiest +flimsily +flimsiness +flimsy +flinch +flinched +flinches +flinching +fling +flinging +flings +flint +flintlock +flintlocks +flints +flinty +flip +flippancy +flippant +flippantly +flipped +flipper +flippers +flipping +flips +flirt +flirtation +flirtations +flirtatious +flirtatiously +flirtatiousness +flirted +flirting +flirts +flirty +flit +flits +flitted +flitting +float +floatation +floated +floating +floats +flock +flocked +flocking +flocks +floe +floes +flog +flogged +flogging +floggings +flogs +flood +flooded +floodgate +floodgates +flooding +floodlight +floodlighting +floodlights +floodlit +floods +floor +floorboard +floorboards +floored +flooring +floors +floozie +floozies +floozy +flop +flophouse +flophouses +flopped +floppier +floppiest +floppiness +flopping +floppy +flops +flora +floral +floret +florets +florid +floridly +florin +florins +florist +florists +floss +flossed +flosses +flossing +flotation +flotations +flotilla +flotillas +flotsam +flounce +flounced +flounces +flouncing +flounder +floundered +floundering +flounders +flour +floured +flouring +flourish +flourished +flourishes +flourishing +flours +floury +flout +flouted +flouting +flouts +flow +flowed +flower +flowerbed +flowerbeds +flowered +flowering +flowerings +flowerpot +flowerpots +flowers +flowery +flowing +flown +flows +flu +flub +flubbed +flubbing +flubs +fluctuate +fluctuated +fluctuates +fluctuating +fluctuation +fluctuations +flue +fluency +fluent +fluently +flues +fluff +fluffed +fluffier +fluffiest +fluffiness +fluffing +fluffs +fluffy +fluid +fluidity +fluids +fluke +flukes +flukey +fluky +flummox +flummoxed +flummoxes +flummoxing +flung +flunk +flunked +flunkey +flunkeys +flunkies +flunking +flunks +flunky +fluorescence +fluorescent +fluoridate +fluoridated +fluoridates +fluoridating +fluoridation +fluoride +fluorine +fluorocarbon +fluorocarbons +flurried +flurries +flurry +flush +flushed +flushes +flushing +fluster +flustered +flustering +flusters +flute +fluted +flutes +fluting +flutist +flutists +flutter +fluttered +fluttering +flutters +fluvial +flux +fly +flyaway +flyblown +flyby +flybys +flycatcher +flycatchers +flyer +flyers +flying +flyleaf +flyleaves +flyover +flyovers +flypaper +flypapers +flypast +flypasts +flysheet +flysheets +flyweight +flyweights +flywheel +flywheels +foal +foaled +foaling +foals +foam +foamed +foaming +foams +foamy +fob +fobbed +fobbing +fobs +focal +foci +focus +focused +focuses +focusing +focussed +focussing +fodder +foe +foes +foetal +foetid +foetus +foetuses +fog +fogbound +fogey +fogeys +fogged +foggier +foggiest +fogging +foggy +foghorn +foghorns +fogies +fogs +fogy +foible +foibles +foil +foiled +foiling +foils +foist +foisted +foisting +foists +fold +foldaway +folded +folder +folders +folding +folds +foliage +folio +folios +folk +folklore +folks +folksy +follicle +follicles +follies +follow +followed +follower +followers +following +followings +follows +folly +foment +fomented +fomenting +foments +fond +fondant +fondants +fonder +fondest +fondle +fondled +fondles +fondling +fondly +fondness +fondue +fondues +font +fonts +food +foodie +foodies +foods +foodstuff +foodstuffs +fool +fooled +fooleries +foolery +foolhardiness +foolhardy +fooling +foolish +foolishly +foolishness +foolproof +fools +foolscap +foot +footage +football +footballer +footballers +footballing +footballs +footbridge +footbridges +footer +footers +footfall +footfalls +foothill +foothills +foothold +footholds +footie +footing +footlights +footling +footloose +footman +footmen +footnote +footnotes +footpath +footpaths +footplate +footplates +footprint +footprints +footrest +footrests +footslogging +footsore +footstep +footsteps +footstool +footstools +footwear +footwork +footy +fop +foppish +fops +for +forage +foraged +forages +foraging +foray +forays +forbade +forbear +forbearance +forbearing +forbears +forbid +forbidden +forbidding +forbiddingly +forbids +forbore +forborne +force +forced +forceful +forcefully +forcefulness +forceps +forces +forcible +forcibly +forcing +ford +forded +fording +fords +fore +forearm +forearms +forebear +forebears +foreboding +forebodings +forecast +forecasted +forecaster +forecasters +forecasting +forecastle +forecastles +forecasts +foreclose +foreclosed +forecloses +foreclosing +foreclosure +foreclosures +forecourt +forecourts +foredoomed +forefather +forefathers +forefeet +forefinger +forefingers +forefoot +forefront +foregather +foregathered +foregathering +foregathers +forego +foregoes +foregoing +foregone +foreground +foregrounded +foregrounding +foregrounds +forehand +forehands +forehead +foreheads +foreign +foreigner +foreigners +foreknowledge +foreleg +forelegs +forelock +forelocks +foreman +foremen +foremost +forename +forenames +forenoon +forensic +forensics +foreplay +forerunner +forerunners +foresaw +foresee +foreseeable +foreseeing +foreseen +foresees +foreshadow +foreshadowed +foreshadowing +foreshadows +foreshore +foreshores +foreshorten +foreshortened +foreshortening +foreshortens +foresight +foreskin +foreskins +forest +forestall +forestalled +forestalling +forestalls +forested +forester +foresters +forestry +forests +foretaste +foretastes +foretell +foretelling +foretells +forethought +foretold +forever +forewarn +forewarned +forewarning +forewarns +forewent +forewoman +forewomen +foreword +forewords +forfeit +forfeited +forfeiting +forfeits +forfeiture +forfeitures +forgather +forgathered +forgathering +forgathers +forgave +forge +forged +forger +forgeries +forgers +forgery +forges +forget +forgetful +forgetfully +forgetfulness +forgets +forgettable +forgetting +forging +forgivable +forgive +forgiven +forgiveness +forgives +forgiving +forgo +forgoes +forgoing +forgone +forgot +forgotten +fork +forked +forkful +forkfuls +forking +forks +forlorn +forlornly +form +formal +formaldehyde +formalin +formalisation +formalise +formalised +formalises +formalising +formalism +formalist +formalists +formalities +formality +formalization +formalize +formalized +formalizes +formalizing +formally +formals +format +formation +formations +formative +formats +formatted +formatting +formed +former +formerly +formidable +formidably +forming +formless +formlessness +forms +formula +formulae +formulaic +formulas +formulate +formulated +formulates +formulating +formulation +formulations +fornicate +fornicated +fornicates +fornicating +fornication +fornicator +fornicators +forsake +forsaken +forsakes +forsaking +forsook +forswear +forswearing +forswears +forswore +forsworn +forsythia +forsythias +fort +forte +fortes +forth +forthcoming +forthright +forthrightness +forthwith +forties +fortieth +fortieths +fortification +fortifications +fortified +fortifies +fortify +fortifying +fortissimo +fortitude +fortnight +fortnightly +fortnights +fortress +fortresses +forts +fortuitous +fortuitously +fortunate +fortunately +fortune +fortunes +forty +forum +forums +forward +forwarded +forwarding +forwardness +forwards +forwent +fossil +fossilisation +fossilise +fossilised +fossilises +fossilising +fossilization +fossilize +fossilized +fossilizes +fossilizing +fossils +foster +fostered +fostering +fosters +fought +foul +fouled +fouler +foulest +fouling +fouls +found +foundation +foundations +founded +founder +foundered +foundering +founders +founding +foundling +foundlings +foundries +foundry +founds +fount +fountain +fountains +founts +four +fours +foursome +foursomes +foursquare +fourteen +fourteens +fourteenth +fourteenths +fourth +fourthly +fourths +fowl +fowls +fox +foxed +foxes +foxglove +foxgloves +foxhole +foxholes +foxhound +foxhounds +foxhunt +foxhunting +foxhunts +foxier +foxiest +foxing +foxtrot +foxtrots +foxy +foyer +foyers +fracas +fracases +fractal +fractals +fraction +fractional +fractionally +fractions +fractious +fractiousness +fracture +fractured +fractures +fracturing +fragile +fragility +fragment +fragmentary +fragmentation +fragmented +fragmenting +fragments +fragrance +fragrances +fragrant +fragrantly +frail +frailer +frailest +frailties +frailty +frame +framed +frames +framework +frameworks +framing +franc +franchise +franchised +franchisee +franchisees +franchiser +franchisers +franchises +franchising +francophone +francs +frank +franked +franker +frankest +frankfurter +frankfurters +frankincense +franking +frankly +frankness +franks +frantic +frantically +frappe +frappes +frat +fraternal +fraternally +fraternisation +fraternise +fraternised +fraternises +fraternising +fraternities +fraternity +fraternization +fraternize +fraternized +fraternizes +fraternizing +fratricidal +fratricide +frats +fraud +frauds +fraudster +fraudsters +fraudulence +fraudulent +fraudulently +fraught +fray +frayed +fraying +frays +frazzled +freak +freaked +freakier +freakiest +freaking +freakish +freakishly +freakishness +freaks +freaky +freckle +freckled +freckles +free +freebase +freebased +freebases +freebasing +freebie +freebies +freebooter +freebooters +freed +freedom +freedoms +freehand +freehold +freeholder +freeholders +freeholds +freeing +freelance +freelanced +freelancer +freelancers +freelances +freelancing +freeload +freeloaded +freeloader +freeloaders +freeloading +freeloads +freely +freeman +freemasonry +freemen +freephone +freer +frees +freesia +freesias +freest +freestyle +freethinker +freethinkers +freethinking +freeware +freeway +freeways +freewheel +freewheeled +freewheeling +freewheels +freeze +freezer +freezers +freezes +freezing +freight +freighted +freighter +freighters +freighting +freights +frenetic +frenetically +frenzied +frenziedly +frenzies +frenzy +frequencies +frequency +frequent +frequented +frequenting +frequently +frequents +fresco +frescoes +frescos +fresh +freshen +freshened +freshening +freshens +fresher +freshers +freshest +freshly +freshman +freshmen +freshness +freshwater +fret +fretful +fretfully +frets +fretted +fretting +fretwork +friable +friar +friaries +friars +friary +fricassee +fricassees +fricative +fricatives +friction +frictions +fridge +fridges +fried +friend +friendless +friendlier +friendlies +friendliest +friendliness +friendly +friends +friendship +friendships +frier +friers +fries +frieze +friezes +frig +frigate +frigates +frigged +frigging +fright +frighten +frightened +frightening +frighteningly +frightens +frightful +frightfully +frights +frigid +frigidity +frigidly +frigs +frill +frilled +frillier +frilliest +frills +frilly +fringe +fringed +fringes +fringing +fripperies +frippery +frisk +frisked +friskier +friskiest +friskily +friskiness +frisking +frisks +frisky +frisson +frissons +fritter +frittered +frittering +fritters +frivolities +frivolity +frivolous +frivolously +frizz +frizzed +frizzes +frizzier +frizziest +frizzing +frizzled +frizzy +frock +frocks +frog +frogman +frogmarch +frogmarched +frogmarches +frogmarching +frogmen +frogs +frogspawn +frolic +frolicked +frolicking +frolics +frolicsome +from +frond +fronds +front +frontage +frontages +frontal +frontbench +frontbencher +frontbenchers +frontbenches +fronted +frontier +frontiers +frontiersman +frontiersmen +frontierswoman +frontierswomen +fronting +frontispiece +frontispieces +fronts +frosh +frost +frostbite +frostbitten +frosted +frostier +frostiest +frostily +frostiness +frosting +frosts +frosty +froth +frothed +frothier +frothiest +frothing +froths +frothy +frown +frowned +frowning +frowns +frowsty +froze +frozen +fructose +frugal +frugality +frugally +fruit +fruitcake +fruitcakes +fruited +fruiterer +fruiterers +fruitful +fruitfully +fruitfulness +fruitier +fruitiest +fruiting +fruition +fruitless +fruitlessly +fruitlessness +fruits +fruity +frump +frumpier +frumpiest +frumpish +frumps +frumpy +frustrate +frustrated +frustrates +frustrating +frustration +frustrations +fry +fryer +fryers +frying +fuchsia +fuchsias +fuck +fucked +fucker +fuckers +fuckhead +fuckheads +fucking +fucks +fuddle +fuddled +fuddles +fuddling +fudge +fudged +fudges +fudging +fuel +fueled +fueling +fuelled +fuelling +fuels +fug +fuggy +fugitive +fugitives +fugue +fugues +fulcra +fulcrum +fulcrums +fulfil +fulfill +fulfilled +fulfilling +fulfillment +fulfills +fulfilment +fulfils +full +fullback +fullbacks +fuller +fullest +fullness +fully +fulminate +fulminated +fulminates +fulminating +fulmination +fulminations +fulness +fulsome +fulsomely +fulsomeness +fumble +fumbled +fumbles +fumbling +fume +fumed +fumes +fumigate +fumigated +fumigates +fumigating +fumigation +fuming +fun +function +functional +functionalism +functionalist +functionalists +functionality +functionally +functionaries +functionary +functioned +functioning +functions +fund +fundamental +fundamentalism +fundamentalist +fundamentalists +fundamentally +fundamentals +funded +funding +funds +funeral +funerals +funerary +funereal +funereally +funfair +funfairs +fungal +fungi +fungicide +fungicides +fungoid +fungus +funguses +funicular +funiculars +funk +funked +funkier +funkiest +funking +funks +funky +funnel +funneled +funneling +funnelled +funnelling +funnels +funnier +funnies +funniest +funnily +funny +funnyman +funnymen +fur +furious +furiously +furl +furled +furling +furlong +furlongs +furlough +furloughed +furloughing +furloughs +furls +furnace +furnaces +furnish +furnished +furnishes +furnishing +furnishings +furniture +furor +furore +furred +furrier +furriers +furriest +furring +furrow +furrowed +furrowing +furrows +furry +furs +further +furtherance +furthered +furthering +furthermore +furthermost +furthers +furthest +furtive +furtively +furtiveness +fury +furze +fuse +fused +fuselage +fuselages +fuses +fusilier +fusiliers +fusillade +fusillades +fusing +fusion +fuss +fussbudget +fussbudgets +fussed +fusses +fussier +fussiest +fussily +fussiness +fussing +fusspot +fusspots +fussy +fustian +fustier +fustiest +fusty +futile +futility +futon +futons +future +futures +futurism +futurist +futuristic +futurists +futurity +fuze +fuzes +fuzz +fuzzier +fuzziest +fuzzily +fuzziness +fuzzy +gab +gabardine +gabardines +gabbed +gabbing +gabble +gabbled +gabbles +gabbling +gaberdine +gaberdines +gable +gabled +gables +gabs +gad +gadabout +gadabouts +gadded +gadding +gadflies +gadfly +gadget +gadgetry +gadgets +gads +gaff +gaffe +gaffer +gaffers +gaffes +gaffs +gag +gaga +gage +gaged +gages +gagged +gagging +gaggle +gaggles +gaging +gags +gaiety +gaily +gain +gained +gainer +gainers +gainful +gainfully +gaining +gains +gainsaid +gainsay +gainsaying +gainsays +gait +gaiter +gaiters +gaits +gal +gala +galactic +galas +galaxies +galaxy +gale +gales +gall +gallant +gallantly +gallantry +gallants +galled +galleon +galleons +galleries +gallery +galley +galleys +galling +gallivant +gallivanted +gallivanting +gallivants +gallon +gallons +gallop +galloped +galloping +gallops +gallows +galls +gallstone +gallstones +galore +galoshes +gals +galumphing +galvanic +galvanise +galvanised +galvanises +galvanising +galvanize +galvanized +galvanizes +galvanizing +gambit +gambits +gamble +gambled +gambler +gamblers +gambles +gambling +gambol +gamboled +gamboling +gambolled +gambolling +gambols +game +gamekeeper +gamekeepers +gamely +games +gamesmanship +gamete +gametes +gamey +gamier +gamiest +gamine +gamines +gaming +gamma +gammas +gammon +gammy +gamut +gander +ganders +gang +ganged +ganging +gangland +ganglia +gangling +ganglion +ganglions +gangly +gangplank +gangplanks +gangrene +gangrenous +gangs +gangsta +gangstas +gangster +gangsters +gangway +gangways +ganja +gannet +gannets +gantries +gantry +gaol +gaolbird +gaolbirds +gaolbreak +gaolbreaks +gaoled +gaoler +gaolers +gaoling +gaols +gap +gape +gaped +gapes +gaping +gaps +garage +garages +garb +garbage +garbanzo +garbanzos +garbed +garbled +garcon +garcons +garden +gardened +gardener +gardeners +gardenia +gardenias +gardening +gardens +gargantuan +gargle +gargled +gargles +gargling +gargoyle +gargoyles +garish +garishly +garland +garlanded +garlanding +garlands +garlic +garlicky +garment +garments +garner +garnered +garnering +garners +garnet +garnets +garnish +garnished +garnishes +garnishing +garotte +garotted +garottes +garotting +garret +garrets +garrison +garrisoned +garrisoning +garrisons +garrote +garroted +garrotes +garroting +garrotte +garrotted +garrottes +garrotting +garrulous +garrulously +garrulousness +garter +garters +gas +gasbag +gasbags +gaseous +gases +gash +gashed +gashes +gashing +gasholder +gasholders +gasket +gaskets +gaslight +gaslights +gasman +gasmen +gasohol +gasolene +gasoline +gasometer +gasometers +gasp +gasped +gasping +gasps +gassed +gasses +gassier +gassiest +gassing +gassy +gastric +gastritis +gastroenteritis +gastrointestinal +gastronome +gastronomes +gastronomic +gastronomically +gastronomy +gasworks +gate +gateau +gateaux +gatecrash +gatecrashed +gatecrasher +gatecrashers +gatecrashes +gatecrashing +gated +gatehouse +gatehouses +gatekeeper +gatekeepers +gatepost +gateposts +gates +gateway +gateways +gather +gathered +gatherer +gatherers +gathering +gatherings +gathers +gator +gators +gauche +gaucheness +gaucho +gauchos +gaudier +gaudiest +gaudily +gaudiness +gaudy +gauge +gauged +gauges +gauging +gaunt +gauntlet +gauntlets +gauntness +gauze +gauzy +gave +gavel +gavels +gavotte +gavottes +gawd +gawk +gawked +gawkier +gawkiest +gawkiness +gawking +gawks +gawky +gawp +gawped +gawping +gawps +gay +gayer +gayest +gayness +gays +gaze +gazebo +gazebos +gazed +gazelle +gazelles +gazes +gazette +gazetteer +gazetteers +gazettes +gazing +gazpacho +gazump +gazumped +gazumping +gazumps +gear +gearbox +gearboxes +geared +gearing +gears +gearshift +gearshifts +gecko +geckoes +geckos +geddit +gee +geed +geeing +geek +geeks +geeky +gees +geese +geezer +geezers +geisha +geishas +gel +gelatin +gelatine +gelatinous +geld +gelded +gelding +geldings +gelds +gelignite +gelled +gelling +gels +gem +gems +gemstone +gemstones +gen +gendarme +gendarmes +gender +genders +gene +genealogical +genealogically +genealogies +genealogist +genealogists +genealogy +genera +general +generalisation +generalisations +generalise +generalised +generalises +generalising +generalist +generalists +generalities +generality +generalization +generalizations +generalize +generalized +generalizes +generalizing +generally +generals +generate +generated +generates +generating +generation +generational +generations +generative +generator +generators +generic +generically +generics +generosity +generous +generously +genes +genesis +genetic +genetically +geneticist +geneticists +genetics +genial +geniality +genially +genie +genies +genii +genital +genitalia +genitals +genitive +genitives +genius +geniuses +genned +genning +genocidal +genocide +genocides +genome +genomes +genre +genres +gens +gent +genteel +genteelly +gentian +gentians +gentile +gentiles +gentility +gentle +gentleman +gentlemanly +gentlemen +gentleness +gentler +gentlest +gentlewoman +gentlewomen +gently +gentrification +gentrified +gentrifies +gentrify +gentrifying +gentry +gents +genuflect +genuflected +genuflecting +genuflection +genuflections +genuflects +genuine +genuinely +genuineness +genus +geocentric +geographer +geographers +geographic +geographical +geographically +geography +geological +geologically +geologist +geologists +geology +geometric +geometrical +geometrically +geometry +geophysical +geophysicist +geophysicists +geophysics +geopolitical +geopolitics +geothermal +geranium +geraniums +gerbil +gerbils +geriatric +geriatrician +geriatricians +geriatrics +germ +germane +germicide +germicides +germinate +germinated +germinates +germinating +germination +germs +gerontological +gerontologist +gerontologists +gerontology +gerrymander +gerrymandered +gerrymandering +gerrymanders +gerund +gerunds +gestalt +gestalts +gestation +gesticulate +gesticulated +gesticulates +gesticulating +gesticulation +gesticulations +gesture +gestured +gestures +gesturing +gesundheit +get +getaway +getaways +gets +getting +geyser +geysers +ghastlier +ghastliest +ghastliness +ghastly +ghee +gherkin +gherkins +ghetto +ghettoes +ghettoise +ghettoised +ghettoises +ghettoising +ghettoize +ghettoized +ghettoizes +ghettoizing +ghettos +ghost +ghosted +ghosting +ghostliness +ghostly +ghosts +ghostwrite +ghostwriter +ghostwriters +ghostwrites +ghostwriting +ghostwritten +ghostwrote +ghoul +ghoulish +ghouls +giant +giantess +giantesses +giants +gibber +gibbered +gibbering +gibberish +gibbers +gibbet +gibbets +gibbon +gibbons +gibe +gibed +gibes +gibing +giblets +giddier +giddiest +giddily +giddiness +giddy +gift +gifted +gifts +gig +gigabyte +gigabytes +gigantic +gigantically +gigged +gigging +giggle +giggled +giggles +giggling +giggly +gigolo +gigolos +gigs +gild +gilded +gilding +gilds +gill +gillie +gillies +gills +gilt +gilts +gimcrack +gimlet +gimlets +gimme +gimmick +gimmickry +gimmicks +gimmicky +gin +ginger +gingerbread +gingered +gingering +gingerly +gingers +gingery +gingham +gingivitis +ginormous +gins +ginseng +gipsies +gipsy +giraffe +giraffes +gird +girded +girder +girders +girding +girdle +girdled +girdles +girdling +girds +girl +girlfriend +girlfriends +girlhood +girlie +girlies +girlish +girlishly +girls +girly +giro +giros +girt +girth +girths +gismo +gismos +gist +git +gite +gites +gits +give +giveaway +giveaways +given +givens +giver +givers +gives +giving +gizmo +gizmos +gizzard +gizzards +glace +glacial +glaciation +glacier +glaciers +glad +gladden +gladdened +gladdening +gladdens +gladder +gladdest +glade +glades +gladiator +gladiatorial +gladiators +gladiola +gladiolas +gladioli +gladiolus +gladly +gladness +glam +glamor +glamorise +glamorised +glamorises +glamorising +glamorize +glamorized +glamorizes +glamorizing +glamorous +glamorously +glamour +glance +glanced +glances +glancing +gland +glands +glandular +glare +glared +glares +glaring +glaringly +glasnost +glass +glassed +glasses +glassful +glassfuls +glasshouse +glasshouses +glassier +glassiest +glassing +glassware +glassy +glaucoma +glaze +glazed +glazes +glazier +glaziers +glazing +gleam +gleamed +gleaming +gleams +glean +gleaned +gleaning +gleans +glee +gleeful +gleefully +glen +glens +glib +glibber +glibbest +glibly +glibness +glide +glided +glider +gliders +glides +gliding +glimmer +glimmered +glimmering +glimmerings +glimmers +glimpse +glimpsed +glimpses +glimpsing +glint +glinted +glinting +glints +glisten +glistened +glistening +glistens +glitch +glitches +glitter +glitterati +glittered +glittering +glitters +glittery +glitz +glitzier +glitziest +glitzy +gloaming +gloat +gloated +gloating +gloatingly +gloats +glob +global +globalisation +globalise +globalised +globalises +globalising +globalization +globalize +globalized +globalizes +globalizing +globally +globe +globes +globetrotter +globetrotters +globetrotting +globs +globular +globule +globules +glockenspiel +glockenspiels +gloom +gloomier +gloomiest +gloomily +gloominess +gloomy +glop +gloried +glories +glorification +glorified +glorifies +glorify +glorifying +glorious +gloriously +glory +glorying +gloss +glossaries +glossary +glossed +glosses +glossier +glossies +glossiest +glossiness +glossing +glossy +glottis +glottises +glove +gloved +gloves +glow +glowed +glower +glowered +glowering +glowers +glowing +glowingly +glows +glucose +glue +glued +glueing +glues +gluey +gluing +glum +glumly +glummer +glummest +glumness +glut +gluten +glutinous +gluts +glutted +glutting +glutton +gluttonous +gluttonously +gluttons +gluttony +glycerin +glycerine +glycerol +gnarled +gnarly +gnash +gnashes +gnat +gnats +gnaw +gnawed +gnawing +gnaws +gnocchi +gnome +gnomes +gnomic +gnu +gnus +go +goad +goaded +goading +goads +goal +goalie +goalies +goalkeeper +goalkeepers +goalless +goalmouth +goalmouths +goalpost +goalposts +goals +goalscorer +goalscorers +goaltender +goaltenders +goat +goatee +goatees +goatherd +goatherds +goats +goatskin +goatskins +gob +gobbed +gobbet +gobbets +gobbing +gobble +gobbled +gobbledegook +gobbledygook +gobbles +gobbling +goblet +goblets +goblin +goblins +gobs +gobsmacked +gobstopper +gobstoppers +god +godawful +godchild +godchildren +goddam +goddammit +goddamn +goddamned +goddaughter +goddaughters +goddess +goddesses +godfather +godfathers +godless +godlessly +godlessness +godlike +godliness +godly +godmother +godmothers +godparent +godparents +gods +godsend +godson +godsons +godspeed +goer +goers +goes +gofer +gofers +goggle +goggled +goggles +goggling +going +goiter +goiters +goitre +goitres +gold +golden +goldfield +goldfields +goldfinch +goldfinches +goldfish +goldfishes +goldmine +goldmines +golds +goldsmith +goldsmiths +golf +golfer +golfers +golfing +gollies +golliwog +golliwogs +golly +gonad +gonads +gondola +gondolas +gondolier +gondoliers +gone +goner +goners +gong +gongs +gonna +gonorrhea +gonorrhoea +goo +good +goodbye +goodbyes +goodie +goodies +goodish +goodly +goodness +goods +goodwill +goody +gooey +goof +goofed +goofier +goofiest +goofing +goofs +goofy +googlies +googly +gooier +gooiest +goon +goons +goose +gooseberries +gooseberry +goosed +gooseflesh +gooses +goosestep +goosestepped +goosestepping +goosesteps +goosing +gopher +gophers +gore +gored +gores +gorge +gorged +gorgeous +gorgeously +gorgeousness +gorges +gorging +gorgon +gorgons +gorier +goriest +gorilla +gorillas +goring +gormless +gorse +gory +gosh +gosling +goslings +gospel +gospels +gossamer +gossip +gossiped +gossiping +gossips +gossipy +got +gotcha +goth +goths +gotta +gotten +gouache +gouaches +gouge +gouged +gouges +gouging +goulash +goulashes +gourd +gourds +gourmand +gourmands +gourmet +gourmets +gout +gouty +govern +governance +governed +governess +governesses +governing +government +governmental +governments +governor +governors +governorship +governs +gown +gowned +gowns +grab +grabbed +grabbier +grabbiest +grabbing +grabby +grabs +grace +graced +graceful +gracefully +gracefulness +graceless +gracelessly +gracelessness +graces +gracing +gracious +graciously +graciousness +grad +gradable +gradation +gradations +grade +graded +grades +gradient +gradients +grading +grads +gradual +gradually +graduate +graduated +graduates +graduating +graduation +graduations +graffiti +graft +grafted +grafting +grafts +grail +grain +grainier +grainiest +grains +grainy +gram +grammar +grammarian +grammarians +grammars +grammatical +grammatically +gramme +grammes +gramophone +gramophones +grams +gran +granaries +granary +grand +grandad +grandaddies +grandaddy +grandads +grandchild +grandchildren +granddad +granddaddies +granddaddy +granddads +granddaughter +granddaughters +grandee +grandees +grander +grandest +grandeur +grandfather +grandfathers +grandiloquence +grandiloquent +grandiose +grandly +grandma +grandmas +grandmother +grandmothers +grandness +grandpa +grandparent +grandparents +grandpas +grands +grandson +grandsons +grandstand +grandstanding +grandstands +grange +granges +granite +grannie +grannies +granny +granola +grans +grant +granted +granting +grants +granular +granulated +granule +granules +grape +grapefruit +grapefruits +grapes +grapevine +grapevines +graph +graphic +graphical +graphically +graphics +graphite +graphologist +graphologists +graphology +graphs +grapnel +grapnels +grapple +grappled +grapples +grappling +grasp +grasped +grasping +grasps +grass +grassed +grasses +grasshopper +grasshoppers +grassier +grassiest +grassing +grassland +grasslands +grassroots +grassy +grate +grated +grateful +gratefully +gratefulness +grater +graters +grates +gratification +gratifications +gratified +gratifies +gratify +gratifying +gratifyingly +gratin +grating +gratings +gratins +gratis +gratitude +gratuities +gratuitous +gratuitously +gratuitousness +gratuity +grave +gravedigger +gravediggers +gravel +graveled +gravelled +gravelly +gravely +graver +graves +graveside +gravesides +gravest +gravestone +gravestones +graveyard +graveyards +gravies +gravitas +gravitate +gravitated +gravitates +gravitating +gravitation +gravitational +gravity +gravy +gray +grayed +grayer +grayest +graying +grayish +grays +graze +grazed +grazes +grazing +grease +greased +greasepaint +greaser +greasers +greases +greasier +greasiest +greasiness +greasing +greasy +great +greatcoat +greatcoats +greater +greatest +greatly +greatness +greats +grebe +grebes +greed +greedier +greediest +greedily +greediness +greedy +green +greenback +greenbacks +greener +greenery +greenest +greenfield +greenflies +greenfly +greengage +greengages +greengrocer +greengrocers +greenhorn +greenhorns +greenhouse +greenhouses +greening +greenish +greenness +greens +greet +greeted +greeting +greetings +greets +gregarious +gregariously +gregariousness +gremlin +gremlins +grenade +grenades +grenadier +grenadiers +grenadine +grew +grey +greyed +greyhound +greyhounds +greying +greyish +greyness +greys +grid +griddle +griddles +gridiron +gridirons +gridlock +grids +grief +griefs +grievance +grievances +grieve +grieved +grieves +grieving +grievous +grievously +griffin +griffins +griffon +griffons +grill +grille +grilled +grilles +grilling +grillings +grills +grim +grimace +grimaced +grimaces +grimacing +grime +grimier +grimiest +grimly +grimmer +grimmest +grimness +grimy +grin +grind +grinder +grinders +grinding +grinds +grindstone +grindstones +gringo +gringos +grinned +grinning +grins +grip +gripe +griped +gripes +griping +gripped +gripping +grips +grislier +grisliest +grisly +gristle +gristly +grit +grits +gritted +gritter +gritters +grittier +grittiest +gritting +gritty +grizzle +grizzled +grizzles +grizzlies +grizzling +grizzly +groan +groaned +groaning +groans +grocer +groceries +grocers +grocery +grog +groggier +groggiest +groggy +groin +groins +grommet +grommets +groom +groomed +grooming +grooms +groomsman +groomsmen +groove +grooved +grooves +groovier +grooviest +groovy +grope +groped +gropes +groping +gross +grossed +grosser +grosses +grossest +grossing +grossly +grossness +grotesque +grotesquely +grotesques +grottier +grottiest +grotto +grottoes +grottos +grotty +grouch +grouched +grouches +grouchier +grouchiest +grouchiness +grouching +grouchy +ground +groundbreaking +groundcloth +groundcloths +grounded +grounder +grounders +groundhog +groundhogs +grounding +groundings +groundless +groundnut +groundnuts +grounds +groundsheet +groundsheets +groundskeeper +groundskeepers +groundsman +groundsmen +groundswell +groundwater +groundwork +group +grouped +groupie +groupies +grouping +groupings +groups +grouse +groused +grouses +grousing +grout +grouted +grouting +grouts +grove +grovel +groveled +groveling +grovelled +grovelling +grovels +groves +grow +grower +growers +growing +growl +growled +growling +growls +grown +grows +growth +growths +groyne +groynes +grub +grubbed +grubbier +grubbiest +grubbiness +grubbing +grubby +grubs +grudge +grudged +grudges +grudging +grudgingly +gruel +grueling +gruelingly +gruelling +gruellingly +gruesome +gruesomely +gruff +gruffly +gruffness +grumble +grumbled +grumbler +grumblers +grumbles +grumbling +grumblings +grump +grumpier +grumpiest +grumpily +grumpiness +grumps +grumpy +grunge +grungy +grunt +grunted +grunting +grunts +gryphon +gryphons +guacamole +guano +guarantee +guaranteed +guaranteeing +guarantees +guarantor +guarantors +guard +guarded +guardedly +guardhouse +guardhouses +guardian +guardians +guardianship +guarding +guardrail +guardrails +guardroom +guardrooms +guards +guardsman +guardsmen +guava +guavas +gubernatorial +guerilla +guerillas +guerrilla +guerrillas +guess +guessed +guesses +guessing +guesstimate +guesstimates +guesswork +guest +guested +guesthouse +guesthouses +guesting +guestroom +guestrooms +guests +guff +guffaw +guffawed +guffawing +guffaws +guidance +guide +guidebook +guidebooks +guided +guideline +guidelines +guides +guiding +guild +guilder +guilders +guildhall +guildhalls +guilds +guile +guileful +guileless +guilelessly +guillemot +guillemots +guillotine +guillotined +guillotines +guillotining +guilt +guiltier +guiltiest +guiltily +guiltless +guilty +guinea +guineas +guise +guises +guitar +guitarist +guitarists +guitars +gulag +gulags +gulch +gulches +gulf +gulfs +gull +gullet +gullets +gulley +gulleys +gullibility +gullible +gullies +gulls +gully +gulp +gulped +gulping +gulps +gum +gumball +gumballs +gumbo +gumboot +gumboots +gumbos +gumdrop +gumdrops +gummed +gummier +gummiest +gumming +gummy +gumption +gums +gumshoe +gumshoes +gun +gunboat +gunboats +gunfight +gunfighter +gunfighters +gunfights +gunfire +gunge +gungy +gunk +gunman +gunmen +gunmetal +gunned +gunnel +gunnels +gunner +gunners +gunnery +gunning +gunnysack +gunnysacks +gunpowder +gunrunner +gunrunners +guns +gunshot +gunshots +gunslinger +gunslingers +gunsmith +gunsmiths +gunwale +gunwales +guppies +guppy +gurgle +gurgled +gurgles +gurgling +gurney +gurneys +guru +gurus +gush +gushed +gusher +gushers +gushes +gushing +gushingly +gushy +gusset +gussets +gust +gustatory +gusted +gusting +gusto +gusts +gusty +gut +gutless +guts +gutsier +gutsiest +gutsy +gutted +gutter +guttered +guttering +gutters +guttersnipe +guttersnipes +gutting +guttural +guv +guvnor +guvnors +guvs +guy +guys +guzzle +guzzled +guzzler +guzzlers +guzzles +guzzling +gym +gymkhana +gymkhanas +gymnasia +gymnasium +gymnasiums +gymnast +gymnastic +gymnastics +gymnasts +gyms +gymslip +gymslips +gynaecological +gynaecologist +gynaecologists +gynaecology +gynecological +gynecologist +gynecologists +gynecology +gyp +gypped +gypping +gyps +gypsies +gypsum +gypsy +gyrate +gyrated +gyrates +gyrating +gyration +gyrations +gyro +gyros +gyroscope +gyroscopes +gyroscopic +ha +haberdasher +haberdasheries +haberdashers +haberdashery +habit +habitable +habitat +habitation +habitations +habitats +habits +habitual +habitually +habituated +habitue +habitues +hack +hacked +hacker +hackers +hacking +hackles +hackneyed +hacks +hacksaw +hacksaws +had +haddock +hadj +hadjes +haematological +haematologist +haematologists +haematology +haemoglobin +haemophilia +haemophiliac +haemophiliacs +haemorrhage +haemorrhaged +haemorrhages +haemorrhaging +haemorrhoids +hag +haggard +haggis +haggises +haggle +haggled +haggles +haggling +hagiographies +hagiography +hags +hah +haiku +hail +hailed +hailing +hails +hailstone +hailstones +hailstorm +hailstorms +hair +hairband +hairbands +hairbrush +hairbrushes +haircut +haircuts +hairdo +hairdos +hairdresser +hairdressers +hairdressing +hairdrier +hairdriers +hairdryer +hairdryers +hairgrip +hairgrips +hairier +hairiest +hairiness +hairless +hairline +hairlines +hairnet +hairnets +hairpiece +hairpieces +hairpin +hairpins +hairs +hairspray +hairsprays +hairstyle +hairstyles +hairy +haj +hajj +hajjes +hake +hakes +halal +halcyon +hale +half +halfback +halfbacks +halfpennies +halfpenny +halftone +halftones +halfway +halfwit +halfwits +halibut +halibuts +halitosis +hall +hallelujah +hallelujahs +hallmark +hallmarked +hallmarking +hallmarks +hallo +hallos +hallowed +halls +hallucinate +hallucinated +hallucinates +hallucinating +hallucination +hallucinations +hallucinatory +hallucinogen +hallucinogenic +hallucinogens +hallway +hallways +halo +haloes +halogen +halogens +halos +halt +halted +halter +halterneck +halternecks +halters +halting +haltingly +halts +halve +halved +halves +halving +ham +hamburger +hamburgers +hamlet +hamlets +hammed +hammer +hammered +hammering +hammerings +hammers +hamming +hammock +hammocks +hammy +hamper +hampered +hampering +hampers +hams +hamster +hamsters +hamstring +hamstringing +hamstrings +hamstrung +hand +handbag +handbags +handball +handbill +handbills +handbook +handbooks +handbrake +handbrakes +handcart +handcarts +handcraft +handcrafted +handcrafts +handcuff +handcuffed +handcuffing +handcuffs +handed +handful +handfuls +handgun +handguns +handhold +handholds +handicap +handicapped +handicapping +handicaps +handicraft +handicrafts +handier +handiest +handily +handing +handiwork +handkerchief +handkerchiefs +handle +handlebar +handlebars +handled +handler +handlers +handles +handling +handmade +handmaid +handmaiden +handmaidens +handmaids +handout +handouts +handover +handovers +handrail +handrails +hands +handsaw +handsaws +handset +handsets +handshake +handshakes +handsome +handsomely +handstand +handstands +handwriting +handwritten +handy +handyman +handymen +hang +hangar +hangars +hangdog +hanged +hanger +hangers +hanging +hangings +hangman +hangmen +hangout +hangouts +hangover +hangovers +hangs +hank +hanker +hankered +hankering +hankerings +hankers +hankie +hankies +hanks +hanky +hansom +hansoms +haphazard +haphazardly +hapless +happen +happened +happening +happenings +happens +happenstance +happenstances +happier +happiest +happily +happiness +happy +harangue +harangued +harangues +haranguing +harass +harassed +harasses +harassing +harassment +harbinger +harbingers +harbor +harbored +harboring +harbormaster +harbormasters +harbors +harbour +harboured +harbouring +harbours +hard +hardback +hardbacks +hardball +hardboard +hardcore +hardcover +hardcovers +harden +hardened +hardening +hardens +harder +hardest +hardier +hardiest +hardiness +hardliner +hardliners +hardly +hardness +hardscrabble +hardship +hardships +hardtop +hardtops +hardware +hardwood +hardwoods +hardy +hare +harebell +harebells +harebrained +hared +harelip +harelips +harem +harems +hares +haricot +haricots +haring +hark +harked +harken +harkened +harkening +harkens +harking +harks +harlequin +harlequins +harlot +harlots +harm +harmed +harmful +harmfully +harmfulness +harming +harmless +harmlessly +harmlessness +harmonic +harmonica +harmonicas +harmonics +harmonies +harmonious +harmoniously +harmoniousness +harmonisation +harmonise +harmonised +harmonises +harmonising +harmonization +harmonize +harmonized +harmonizes +harmonizing +harmony +harms +harness +harnessed +harnesses +harnessing +harp +harped +harpies +harping +harpist +harpists +harpoon +harpooned +harpooning +harpoons +harps +harpsichord +harpsichords +harpy +harridan +harridans +harried +harries +harrow +harrowed +harrowing +harrows +harrumph +harrumphed +harrumphing +harrumphs +harry +harrying +harsh +harsher +harshest +harshly +harshness +hart +harts +harvest +harvested +harvester +harvesters +harvesting +harvests +has +hash +hashed +hashes +hashing +hashish +hasp +hasps +hassle +hassled +hassles +hassling +hassock +hassocks +hast +haste +hasten +hastened +hastening +hastens +hastier +hastiest +hastily +hastiness +hasty +hat +hatband +hatbands +hatbox +hatboxes +hatch +hatchback +hatchbacks +hatched +hatcheries +hatchery +hatches +hatchet +hatchets +hatching +hatchway +hatchways +hate +hated +hateful +hater +haters +hates +hath +hating +hatpin +hatpins +hatred +hatreds +hats +hatstand +hatstands +hatter +hatters +haughtier +haughtiest +haughtily +haughtiness +haughty +haul +haulage +hauled +hauler +haulers +haulier +hauliers +hauling +hauls +haunch +haunches +haunt +haunted +haunting +hauntingly +haunts +hauteur +have +haven +havens +haversack +haversacks +having +havoc +haw +hawed +hawing +hawk +hawked +hawker +hawkers +hawking +hawkish +hawkishness +hawks +haws +hawser +hawsers +hawthorn +hawthorns +hay +haymaking +hayrick +hayricks +hayride +hayrides +haystack +haystacks +haywire +hazard +hazarded +hazarding +hazardous +hazards +haze +hazed +hazel +hazelnut +hazelnuts +hazels +hazes +hazier +haziest +hazily +hazing +hazy +he +head +headache +headaches +headband +headbands +headbanger +headbangers +headbanging +headboard +headboards +headbutt +headbutted +headbutting +headbutts +headcase +headcases +headcheese +headcount +headcounts +headdress +headdresses +headed +header +headers +headfirst +headgear +headhunt +headhunted +headhunter +headhunters +headhunting +headhunts +headier +headiest +heading +headings +headlamp +headlamps +headland +headlands +headless +headlight +headlights +headline +headlined +headliner +headliners +headlines +headlining +headlock +headlocks +headlong +headman +headmaster +headmasters +headmen +headmistress +headmistresses +headphones +headquartered +headquarters +headrest +headrests +headroom +heads +headscarf +headscarves +headset +headsets +headship +headships +headstone +headstones +headstrong +headteacher +headteachers +headwaters +headwind +headwinds +headword +headwords +heady +heal +healed +healer +healers +healing +heals +health +healthcare +healthful +healthier +healthiest +healthily +healthiness +healthy +heap +heaped +heaping +heaps +hear +heard +hearer +hearers +hearing +hearings +hearken +hearkened +hearkening +hearkens +hears +hearsay +hearse +hearses +heart +heartache +heartaches +heartbeat +heartbeats +heartbreak +heartbreaking +heartbreaks +heartbroken +heartburn +hearten +heartened +heartening +heartens +heartfelt +hearth +hearthrug +hearthrugs +hearths +heartier +heartiest +heartily +heartiness +heartland +heartlands +heartless +heartlessly +heartlessness +heartrending +hearts +heartsick +heartthrob +heartthrobs +heartwarming +hearty +heat +heated +heatedly +heater +heaters +heath +heathen +heathens +heather +heaths +heating +heatproof +heats +heatstroke +heatwave +heatwaves +heave +heaved +heaven +heavenly +heavens +heavenward +heavenwards +heaves +heavier +heavies +heaviest +heavily +heaviness +heaving +heavy +heavyweight +heavyweights +heck +heckle +heckled +heckler +hecklers +heckles +heckling +hectare +hectares +hectic +hector +hectored +hectoring +hectors +hedge +hedged +hedgehog +hedgehogs +hedgerow +hedgerows +hedges +hedging +hedonism +hedonist +hedonistic +hedonists +heed +heeded +heeding +heedless +heedlessly +heeds +heel +heeled +heeling +heels +heft +hefted +heftier +heftiest +heftily +hefting +hefts +hefty +hegemonic +hegemony +heifer +heifers +height +heighten +heightened +heightening +heightens +heights +heinous +heinousness +heir +heiress +heiresses +heirloom +heirlooms +heirs +heist +heisted +heisting +heists +held +helical +helices +helicopter +helicopters +heliotrope +heliotropes +helipad +helipads +heliport +heliports +helium +helix +helixes +hell +hellhole +hellholes +hellish +hellishly +hello +hellos +helluva +helm +helmet +helmeted +helmets +helms +helmsman +helmsmen +help +helped +helper +helpers +helpful +helpfully +helpfulness +helping +helpings +helpless +helplessly +helplessness +helpline +helplines +helpmate +helpmates +helpmeet +helpmeets +helps +hem +hematological +hematologist +hematologists +hematology +hemisphere +hemispheres +hemline +hemlines +hemlock +hemlocks +hemmed +hemming +hemoglobin +hemophilia +hemophiliac +hemophiliacs +hemorrhage +hemorrhaged +hemorrhages +hemorrhaging +hemorrhoid +hemorrhoids +hemp +hems +hen +hence +henceforth +henceforward +henchman +henchmen +henna +hennaed +hennaing +hennas +henpecked +hens +hepatic +hepatitis +heptagon +heptagonal +heptagons +heptathlon +heptathlons +her +herald +heralded +heraldic +heralding +heraldry +heralds +herb +herbaceous +herbal +herbalist +herbalists +herbals +herbicide +herbicides +herbivore +herbivores +herbivorous +herbs +herculean +herd +herded +herding +herds +herdsman +herdsmen +here +hereabout +hereabouts +hereafter +hereby +hereditary +heredity +herein +hereinafter +hereof +heresies +heresy +heretic +heretical +heretics +hereto +heretofore +hereupon +herewith +heritage +heritages +hermaphrodite +hermaphrodites +hermetic +hermetically +hermit +hermitage +hermitages +hermits +hernia +hernias +hero +heroes +heroic +heroically +heroics +heroin +heroine +heroines +heroism +heron +herons +herpes +herring +herringbone +herrings +hers +herself +hertz +hesitancy +hesitant +hesitantly +hesitate +hesitated +hesitates +hesitating +hesitation +hesitations +hessian +hetero +heterodox +heterodoxy +heterogeneity +heterogeneous +heteros +heterosexual +heterosexuality +heterosexually +heterosexuals +heuristic +heuristics +hew +hewed +hewing +hewn +hews +hex +hexagon +hexagonal +hexagons +hexameter +hexameters +hexed +hexes +hexing +hey +heyday +heydays +hi +hiatus +hiatuses +hibernate +hibernated +hibernates +hibernating +hibernation +hibiscus +hibiscuses +hiccough +hiccoughed +hiccoughing +hiccoughs +hiccup +hiccuped +hiccuping +hiccupped +hiccupping +hiccups +hick +hickey +hickeys +hickories +hickory +hicks +hid +hidden +hide +hideaway +hideaways +hidebound +hideous +hideously +hideousness +hideout +hideouts +hides +hiding +hidings +hie +hied +hierarchical +hierarchically +hierarchies +hierarchy +hieroglyph +hieroglyphic +hieroglyphics +hieroglyphs +hies +high +highball +highballs +highboy +highboys +highbrow +highbrows +highchair +highchairs +higher +highers +highest +highfalutin +highland +highlander +highlanders +highlands +highlight +highlighted +highlighter +highlighters +highlighting +highlights +highly +highs +highway +highwayman +highwaymen +highways +hijack +hijacked +hijacker +hijackers +hijacking +hijackings +hijacks +hijinks +hike +hiked +hiker +hikers +hikes +hiking +hilarious +hilariously +hilarity +hill +hillbillies +hillbilly +hillier +hilliest +hillock +hillocks +hills +hillside +hillsides +hilltop +hilltops +hilly +hilt +hilts +him +himself +hind +hinder +hindered +hindering +hinders +hindquarters +hindrance +hindrances +hinds +hindsight +hinge +hinged +hinges +hinging +hint +hinted +hinterland +hinterlands +hinting +hints +hip +hipbath +hipbaths +hiphuggers +hipper +hippest +hippie +hippies +hippo +hippopotami +hippopotamus +hippopotamuses +hippos +hippy +hips +hipster +hipsters +hire +hired +hireling +hirelings +hires +hiring +hirsute +his +hiss +hissed +hisses +hissing +histamine +histogram +histograms +historian +historians +historic +historical +historically +histories +history +histrionic +histrionically +histrionics +hit +hitch +hitched +hitches +hitchhike +hitchhiked +hitchhiker +hitchhikers +hitchhikes +hitchhiking +hitching +hither +hitherto +hits +hitter +hitters +hitting +hive +hived +hives +hiving +hiya +hm +hmm +hoagie +hoagies +hoard +hoarded +hoarder +hoarders +hoarding +hoardings +hoards +hoarier +hoariest +hoarse +hoarsely +hoarseness +hoarser +hoarsest +hoary +hoax +hoaxed +hoaxer +hoaxers +hoaxes +hoaxing +hob +hobbies +hobble +hobbled +hobbles +hobbling +hobby +hobbyhorse +hobbyhorses +hobbyist +hobbyists +hobgoblin +hobgoblins +hobnail +hobnails +hobnob +hobnobbed +hobnobbing +hobnobs +hobo +hoboes +hobos +hobs +hock +hocked +hockey +hocking +hocks +hod +hodgepodge +hods +hoe +hoed +hoedown +hoedowns +hoeing +hoes +hog +hogged +hogging +hoggish +hogs +hogwash +hoick +hoicked +hoicking +hoicks +hoist +hoisted +hoisting +hoists +hokey +hokum +hold +holdall +holdalls +holder +holders +holding +holdings +holdover +holdovers +holds +holdup +holdups +hole +holed +holes +holiday +holidayed +holidaying +holidaymaker +holidaymakers +holidays +holier +holiest +holiness +holing +holism +holistic +holistically +holler +hollered +hollering +hollers +hollies +hollow +hollowed +hollowing +hollowly +hollowness +hollows +holly +hollyhock +hollyhocks +holocaust +holocausts +hologram +holograms +holographic +holography +hols +holster +holsters +holy +homage +homburg +homburgs +home +homebodies +homebody +homeboy +homeboys +homecoming +homecomings +homed +homeland +homelands +homeless +homelessness +homelier +homeliest +homely +homemade +homemaker +homemakers +homeopath +homeopathic +homeopaths +homeopathy +homeowner +homeowners +homer +homers +homes +homesick +homesickness +homespun +homestead +homesteaded +homesteader +homesteaders +homesteading +homesteads +hometown +hometowns +homeward +homewards +homework +homeworker +homeworkers +homeworking +homey +homicidal +homicide +homicides +homier +homiest +homilies +homily +homing +hominy +homoeopath +homoeopathic +homoeopaths +homoeopathy +homoerotic +homogeneity +homogeneous +homogenise +homogenised +homogenises +homogenising +homogenize +homogenized +homogenizes +homogenizing +homogenous +homograph +homographs +homonym +homonyms +homophobia +homophobic +homophone +homophones +homosexual +homosexuality +homosexuals +homy +honcho +honchos +hone +honed +hones +honest +honestly +honesty +honey +honeybee +honeybees +honeycomb +honeycombed +honeycombs +honeyed +honeymoon +honeymooned +honeymooner +honeymooners +honeymooning +honeymoons +honeypot +honeypots +honeys +honeysuckle +honeysuckles +honing +honk +honked +honkies +honking +honks +honky +honor +honorable +honorably +honoraria +honorarium +honorariums +honorary +honored +honorific +honoring +honors +honour +honourable +honourably +honoured +honouring +honours +hooch +hood +hooded +hoodlum +hoodlums +hoods +hoodwink +hoodwinked +hoodwinking +hoodwinks +hooey +hoof +hoofed +hoofer +hoofers +hoofing +hoofs +hook +hookah +hookahs +hooked +hooker +hookers +hooking +hooks +hooligan +hooliganism +hooligans +hoop +hooped +hoopla +hoops +hooray +hoorays +hoot +hooted +hooter +hooters +hooting +hoots +hoover +hoovered +hoovering +hoovers +hooves +hop +hope +hoped +hopeful +hopefully +hopefuls +hopeless +hopelessly +hopelessness +hopes +hoping +hopped +hopper +hoppers +hopping +hops +hopscotch +horde +hordes +horizon +horizons +horizontal +horizontally +horizontals +hormonal +hormone +hormones +horn +horned +hornet +hornets +hornier +horniest +hornpipe +hornpipes +horns +horny +horoscope +horoscopes +horrendous +horrendously +horrible +horribly +horrid +horridly +horrific +horrifically +horrified +horrifies +horrify +horrifying +horrifyingly +horror +horrors +horse +horseback +horsebox +horseboxes +horsed +horseflies +horsefly +horsehair +horseman +horsemanship +horsemen +horseplay +horsepower +horseradish +horses +horseshit +horseshoe +horseshoes +horsetrading +horsewhip +horsewhipped +horsewhipping +horsewhips +horsewoman +horsewomen +horsey +horsing +horsy +horticultural +horticulturalist +horticulturalists +horticulture +horticulturist +horticulturists +hosanna +hose +hosed +hosepipe +hosepipes +hoses +hosiery +hosing +hospice +hospices +hospitable +hospitably +hospital +hospitalisation +hospitalise +hospitalised +hospitalises +hospitalising +hospitality +hospitalization +hospitalize +hospitalized +hospitalizes +hospitalizing +hospitals +host +hostage +hostages +hosted +hostel +hostelries +hostelry +hostels +hostess +hostesses +hostile +hostilities +hostility +hosting +hosts +hot +hotbed +hotbeds +hotchpotch +hotel +hotelier +hoteliers +hotels +hotfoot +hotfooted +hotfooting +hotfoots +hothead +hotheaded +hotheadedly +hotheads +hothouse +hothouses +hotline +hotlines +hotly +hotplate +hotplates +hotpot +hotpots +hots +hotshot +hotshots +hotspot +hotspots +hotted +hotter +hottest +hotting +houmous +houmus +hound +hounded +hounding +hounds +hour +hourglass +hourglasses +hourly +hours +house +houseboat +houseboats +housebound +houseboy +houseboys +housebreaker +housebreakers +housebreaking +housebroken +housecoat +housecoats +housed +houseflies +housefly +houseful +household +householder +householders +households +housekeeper +housekeepers +housekeeping +housemaid +housemaids +houseman +housemaster +housemasters +housemate +housemates +housemen +housemistress +housemistresses +houseplant +houseplants +houseproud +houseroom +houses +housewares +housewarming +housewarmings +housewife +housewifely +housewives +housework +housing +housings +hove +hovel +hovels +hover +hovercraft +hovercrafts +hovered +hovering +hovers +how +howdy +however +howitzer +howitzers +howl +howled +howler +howlers +howling +howls +howsoever +hub +hubbies +hubbub +hubby +hubcap +hubcaps +hubris +hubs +huckleberries +huckleberry +huckster +hucksters +huddle +huddled +huddles +huddling +hue +hues +huff +huffed +huffier +huffiest +huffily +huffing +huffs +huffy +hug +huge +hugely +huger +hugest +hugged +hugging +hugs +huh +hulk +hulking +hulks +hull +hullabaloo +hullabaloos +hulled +hulling +hullo +hullos +hulls +hum +human +humane +humanely +humanise +humanised +humanises +humanising +humanism +humanist +humanistic +humanists +humanitarian +humanitarianism +humanitarians +humanities +humanity +humanize +humanized +humanizes +humanizing +humankind +humanly +humanoid +humanoids +humans +humble +humbled +humbler +humbles +humblest +humbling +humbug +humbugs +humdinger +humdingers +humdrum +humeri +humerus +humid +humidified +humidifier +humidifiers +humidifies +humidify +humidifying +humidity +humiliate +humiliated +humiliates +humiliating +humiliation +humiliations +humility +hummed +humming +hummingbird +hummingbirds +hummock +hummocks +hummus +humongous +humor +humored +humoring +humorist +humorists +humorless +humorous +humorously +humors +humour +humoured +humouring +humourless +humours +hump +humpback +humpbacks +humped +humph +humping +humps +hums +humus +hunch +hunchback +hunchbacks +hunched +hunches +hunching +hundred +hundreds +hundredth +hundredths +hundredweight +hundredweights +hung +hunger +hungered +hungering +hungers +hungover +hungrier +hungriest +hungrily +hungry +hunk +hunker +hunkered +hunkering +hunkers +hunkier +hunkiest +hunks +hunky +hunt +hunted +hunter +hunters +hunting +huntress +huntresses +hunts +huntsman +huntsmen +hurdle +hurdled +hurdler +hurdlers +hurdles +hurdling +hurl +hurled +hurling +hurls +hurrah +hurray +hurricane +hurricanes +hurried +hurriedly +hurries +hurry +hurrying +hurt +hurtful +hurtfully +hurtfulness +hurting +hurtle +hurtled +hurtles +hurtling +hurts +husband +husbanded +husbanding +husbandry +husbands +hush +hushed +hushes +hushing +husk +husked +huskier +huskies +huskiest +huskily +huskiness +husking +husks +husky +hussar +hussars +hussies +hussy +hustings +hustle +hustled +hustler +hustlers +hustles +hustling +hut +hutch +hutches +huts +hyacinth +hyacinths +hyaena +hyaenas +hybrid +hybridise +hybridised +hybridises +hybridising +hybridize +hybridized +hybridizes +hybridizing +hybrids +hydra +hydrangea +hydrangeas +hydrant +hydrants +hydras +hydrate +hydrated +hydrates +hydrating +hydration +hydraulic +hydraulically +hydraulics +hydrocarbon +hydrocarbons +hydroelectric +hydroelectricity +hydrofoil +hydrofoils +hydrogen +hydrophobia +hydroplane +hydroplaned +hydroplanes +hydroplaning +hydroponics +hydrotherapy +hyena +hyenas +hygiene +hygienic +hygienically +hygienist +hygienists +hying +hymen +hymens +hymn +hymnal +hymnals +hymns +hype +hyped +hyper +hyperactive +hyperactivity +hyperbole +hyperbolic +hypercritical +hyperinflation +hyperlink +hyperlinks +hypermarket +hypermarkets +hypersensitive +hypersensitivity +hypertension +hypertext +hyperventilate +hyperventilated +hyperventilates +hyperventilating +hyperventilation +hypes +hyphen +hyphenate +hyphenated +hyphenates +hyphenating +hyphenation +hyphens +hyping +hypnosis +hypnotherapist +hypnotherapists +hypnotherapy +hypnotic +hypnotise +hypnotised +hypnotises +hypnotising +hypnotism +hypnotist +hypnotists +hypnotize +hypnotized +hypnotizes +hypnotizing +hypochondria +hypochondriac +hypochondriacs +hypocrisies +hypocrisy +hypocrite +hypocrites +hypocritical +hypodermic +hypodermics +hypoglycemia +hypoglycemic +hypotenuse +hypotenuses +hypothermia +hypotheses +hypothesis +hypothesise +hypothesised +hypothesises +hypothesising +hypothesize +hypothesized +hypothesizes +hypothesizing +hypothetical +hypothetically +hysterectomies +hysterectomy +hysteria +hysterical +hysterically +hysterics +iambic +ibex +ibid +ibis +ibises +ibuprofen +ice +iceberg +icebergs +icebox +iceboxes +icebreaker +icebreakers +iced +ices +icicle +icicles +icier +iciest +icily +iciness +icing +icky +icon +iconic +iconoclasm +iconoclast +iconoclastic +iconoclasts +iconography +icons +icy +id +idea +ideal +idealisation +idealise +idealised +idealises +idealising +idealism +idealist +idealistic +idealistically +idealists +idealization +idealizations +idealize +idealized +idealizes +idealizing +ideally +ideals +ideas +idem +identical +identically +identifiable +identification +identifications +identified +identifies +identify +identifying +identikit +identikits +identities +identity +ideogram +ideograms +ideograph +ideographs +ideological +ideologically +ideologies +ideologist +ideologists +ideologue +ideologues +ideology +idiocies +idiocy +idiom +idiomatic +idiomatically +idioms +idiosyncrasies +idiosyncrasy +idiosyncratic +idiot +idiotic +idiotically +idiots +idle +idled +idleness +idler +idlers +idles +idling +idly +idol +idolatrous +idolatry +idolise +idolised +idolises +idolising +idolize +idolized +idolizes +idolizing +idols +ids +idyll +idyllic +idyllically +idylls +if +iffy +ifs +igloo +igloos +igneous +ignite +ignited +ignites +igniting +ignition +ignitions +ignoble +ignobly +ignominious +ignominiously +ignominy +ignoramus +ignoramuses +ignorance +ignorant +ignore +ignored +ignores +ignoring +iguana +iguanas +ikon +ikons +ilk +ill +illegal +illegalities +illegality +illegally +illegals +illegible +illegibly +illegitimacy +illegitimate +illegitimately +illiberal +illicit +illicitly +illiteracy +illiterate +illiterates +illness +illnesses +illogical +illogicality +illogically +ills +illuminate +illuminated +illuminates +illuminating +illumination +illuminations +illumine +illumined +illumines +illumining +illusion +illusionist +illusionists +illusions +illusive +illusory +illustrate +illustrated +illustrates +illustrating +illustration +illustrations +illustrative +illustrator +illustrators +illustrious +image +imagery +images +imaginable +imaginary +imagination +imaginations +imaginative +imaginatively +imagine +imagined +imagines +imaging +imagining +imaginings +imam +imams +imbalance +imbalances +imbecile +imbeciles +imbecilic +imbecilities +imbecility +imbed +imbedded +imbedding +imbeds +imbibe +imbibed +imbibes +imbibing +imbroglio +imbroglios +imbue +imbued +imbues +imbuing +imitate +imitated +imitates +imitating +imitation +imitations +imitative +imitator +imitators +immaculate +immaculately +immanent +immaterial +immature +immaturity +immeasurable +immeasurably +immediacy +immediate +immediately +immemorial +immense +immensely +immensities +immensity +immerse +immersed +immerses +immersing +immersion +immigrant +immigrants +immigrate +immigrated +immigrates +immigrating +immigration +imminence +imminent +imminently +immobile +immobilisation +immobilise +immobilised +immobiliser +immobilisers +immobilises +immobilising +immobility +immobilization +immobilize +immobilized +immobilizer +immobilizers +immobilizes +immobilizing +immoderate +immoderately +immodest +immodesty +immolate +immolated +immolates +immolating +immolation +immoral +immorality +immorally +immortal +immortalise +immortalised +immortalises +immortalising +immortality +immortalize +immortalized +immortalizes +immortalizing +immortals +immovable +immune +immunisation +immunise +immunised +immunises +immunising +immunity +immunization +immunizations +immunize +immunized +immunizes +immunizing +immunodeficiency +immunology +immure +immured +immures +immuring +immutability +immutable +imp +impact +impacted +impacting +impacts +impair +impaired +impairing +impairment +impairments +impairs +impale +impaled +impales +impaling +impalpable +impanel +impaneled +impaneling +impanelled +impanelling +impanels +impart +imparted +impartial +impartiality +impartially +imparting +imparts +impassable +impasse +impasses +impassioned +impassive +impassively +impassivity +impatience +impatient +impatiently +impeach +impeachable +impeached +impeaches +impeaching +impeachment +impeachments +impeccable +impeccably +impecunious +impedance +impede +impeded +impedes +impediment +impedimenta +impediments +impeding +impel +impelled +impelling +impels +impending +impenetrability +impenetrable +impenetrably +impenitent +imperative +imperatives +imperceptible +imperceptibly +imperfect +imperfection +imperfections +imperfectly +imperial +imperialism +imperialist +imperialistic +imperialists +imperil +imperiled +imperiling +imperilled +imperilling +imperils +imperious +imperiously +imperiousness +imperishable +impermanence +impermanent +impermeable +impermissible +impersonal +impersonally +impersonate +impersonated +impersonates +impersonating +impersonation +impersonations +impersonator +impersonators +impertinence +impertinences +impertinent +impertinently +imperturbability +imperturbable +imperturbably +impervious +impetigo +impetuosity +impetuous +impetuously +impetuousness +impetus +impiety +impinge +impinged +impinges +impinging +impious +impiously +impiousness +impish +impishly +impishness +implacable +implacably +implant +implantation +implanted +implanting +implants +implausibility +implausible +implausibly +implement +implementation +implemented +implementing +implements +implicate +implicated +implicates +implicating +implication +implications +implicit +implicitly +implied +implies +implode +imploded +implodes +imploding +implore +implored +implores +imploring +imploringly +implosion +implosions +imply +implying +impolite +impolitely +impoliteness +impolitic +imponderable +imponderables +import +importance +important +importantly +importation +importations +imported +importer +importers +importing +imports +importunate +importune +importuned +importunes +importuning +impose +imposed +imposes +imposing +imposition +impositions +impossibilities +impossibility +impossible +impossibly +imposter +imposters +impostor +impostors +imposture +impostures +impotence +impotent +impotently +impound +impounded +impounding +impounds +impoverish +impoverished +impoverishes +impoverishing +impoverishment +impracticability +impracticable +impractical +impracticality +imprecation +imprecations +imprecise +imprecisely +imprecision +impregnable +impregnate +impregnated +impregnates +impregnating +impresario +impresarios +impress +impressed +impresses +impressing +impression +impressionable +impressionism +impressionist +impressionistic +impressionists +impressions +impressive +impressively +imprimatur +imprimaturs +imprint +imprinted +imprinting +imprints +imprison +imprisoned +imprisoning +imprisonment +imprisons +improbabilities +improbability +improbable +improbably +impromptu +improper +improperly +improprieties +impropriety +improve +improved +improvement +improvements +improves +improvidence +improvident +improving +improvisation +improvisations +improvise +improvised +improvises +improvising +imprudence +imprudent +imprudently +imps +impudence +impudent +impugn +impugned +impugning +impugns +impulse +impulses +impulsive +impulsively +impulsiveness +impunity +impure +impurities +impurity +imputation +imputations +impute +imputed +imputes +imputing +in +inability +inaccessibility +inaccessible +inaccuracies +inaccuracy +inaccurate +inaccurately +inaction +inactive +inactivity +inadequacies +inadequacy +inadequate +inadequately +inadmissible +inadvertence +inadvertent +inadvertently +inadvisable +inalienable +inamorata +inamoratas +inane +inanely +inanimate +inanities +inanity +inapplicable +inappropriate +inappropriately +inappropriateness +inarticulacy +inarticulate +inarticulately +inarticulateness +inattention +inattentive +inattentively +inaudibility +inaudible +inaudibly +inaugural +inaugurate +inaugurated +inaugurates +inaugurating +inauguration +inaugurations +inauspicious +inauspiciously +inboard +inborn +inbound +inbred +inbreeding +inbuilt +incalculable +incalculably +incandescence +incandescent +incantation +incantations +incapable +incapacitate +incapacitated +incapacitates +incapacitating +incapacity +incarcerate +incarcerated +incarcerates +incarcerating +incarceration +incarnate +incarnated +incarnates +incarnating +incarnation +incarnations +incautious +incautiously +incendiaries +incendiary +incense +incensed +incenses +incensing +incentive +incentives +inception +incessant +incessantly +incest +incestuous +incestuously +incestuousness +inch +inched +inches +inching +inchoate +incidence +incidences +incident +incidental +incidentally +incidentals +incidents +incinerate +incinerated +incinerates +incinerating +incineration +incinerator +incinerators +incipient +incise +incised +incises +incising +incision +incisions +incisive +incisively +incisiveness +incisor +incisors +incite +incited +incitement +incitements +incites +inciting +incivility +inclemency +inclement +inclination +inclinations +incline +inclined +inclines +inclining +inclose +inclosed +incloses +inclosing +include +included +includes +including +inclusion +inclusions +inclusive +incognito +incoherence +incoherent +incoherently +income +incomer +incomers +incomes +incoming +incommunicado +incomparable +incomparably +incompatibility +incompatible +incompetence +incompetent +incompetently +incompetents +incomplete +incompletely +incompleteness +incomprehensibility +incomprehensible +incomprehensibly +incomprehension +inconceivable +inconceivably +inconclusive +inconclusively +incongruities +incongruity +incongruous +incongruously +inconsequential +inconsequentially +inconsiderable +inconsiderate +inconsiderately +inconsistencies +inconsistency +inconsistent +inconsistently +inconsolable +inconsolably +inconspicuous +inconspicuously +inconstancy +inconstant +incontestable +incontestably +incontinence +incontinent +incontrovertible +incontrovertibly +inconvenience +inconvenienced +inconveniences +inconveniencing +inconvenient +inconveniently +incorporate +incorporated +incorporates +incorporating +incorporation +incorporeal +incorrect +incorrectly +incorrectness +incorrigible +incorrigibly +incorruptibility +incorruptible +incorruptibly +increase +increased +increases +increasing +increasingly +incredible +incredibly +incredulity +incredulous +incredulously +increment +incremental +incrementally +increments +incriminate +incriminated +incriminates +incriminating +incrimination +incrustation +incrustations +incubate +incubated +incubates +incubating +incubation +incubator +incubators +incubus +incubuses +inculcate +inculcated +inculcates +inculcating +inculcation +incumbencies +incumbency +incumbent +incumbents +incur +incurable +incurably +incurious +incurred +incurring +incurs +incursion +incursions +indebted +indebtedness +indecency +indecent +indecently +indecipherable +indecision +indecisive +indecisively +indecisiveness +indecorous +indecorously +indeed +indefatigable +indefatigably +indefensible +indefensibly +indefinable +indefinably +indefinite +indefinitely +indelible +indelibly +indelicacy +indelicate +indemnification +indemnified +indemnifies +indemnify +indemnifying +indemnities +indemnity +indent +indentation +indentations +indented +indenting +indents +indenture +indentured +indentures +independence +independent +independently +independents +indescribable +indescribably +indestructibility +indestructible +indeterminacy +indeterminate +index +indexation +indexations +indexed +indexes +indexing +indicate +indicated +indicates +indicating +indication +indications +indicative +indicator +indicators +indices +indict +indictable +indicted +indicting +indictment +indictments +indicts +indie +indies +indifference +indifferent +indifferently +indigence +indigenous +indigent +indigestible +indigestion +indignant +indignantly +indignation +indignities +indignity +indigo +indirect +indirectly +indiscernible +indiscipline +indiscreet +indiscreetly +indiscretion +indiscretions +indiscriminate +indiscriminately +indispensability +indispensable +indisposed +indisposition +indispositions +indisputable +indisputably +indissolubility +indissoluble +indissolubly +indistinct +indistinctly +indistinguishable +individual +individualise +individualised +individualises +individualising +individualism +individualist +individualistic +individualistically +individualists +individuality +individualize +individualized +individualizes +individualizing +individually +individuals +indivisibility +indivisible +indivisibly +indoctrinate +indoctrinated +indoctrinates +indoctrinating +indoctrination +indolence +indolent +indolently +indomitable +indomitably +indoor +indoors +indubitable +indubitably +induce +induced +inducement +inducements +induces +inducing +induct +inducted +inductee +inductees +inducting +induction +inductions +inductive +inductively +inducts +indulge +indulged +indulgence +indulgences +indulgent +indulgently +indulges +indulging +industrial +industrialisation +industrialise +industrialised +industrialises +industrialising +industrialism +industrialist +industrialists +industrialization +industrialize +industrialized +industrializes +industrializing +industrially +industries +industrious +industriously +industriousness +industry +inebriated +inebriation +inedible +ineffable +ineffably +ineffective +ineffectively +ineffectiveness +ineffectual +ineffectually +inefficiencies +inefficiency +inefficient +inefficiently +inelegant +inelegantly +ineligibility +ineligible +ineluctable +inept +ineptitude +ineptly +inequalities +inequality +inequitable +inequities +inequity +ineradicable +inert +inertia +inertial +inescapable +inescapably +inessential +inessentials +inestimable +inestimably +inevitability +inevitable +inevitably +inexact +inexcusable +inexcusably +inexhaustible +inexorability +inexorable +inexorably +inexpedient +inexpensive +inexpensively +inexperience +inexperienced +inexpert +inexpertly +inexplicable +inexplicably +inexpressible +inexpressibly +inexpressive +inextinguishable +inextricable +inextricably +infallibility +infallible +infallibly +infamies +infamous +infamy +infancy +infant +infanticide +infantile +infantry +infantryman +infantrymen +infants +infatuated +infatuation +infatuations +infect +infected +infecting +infection +infections +infectious +infectiously +infects +infelicities +infelicitous +infelicity +infer +inference +inferences +inferior +inferiority +inferiors +infernal +inferno +infernos +inferred +inferring +infers +infertile +infertility +infest +infestation +infestations +infested +infesting +infests +infidel +infidelities +infidelity +infidels +infield +infielder +infielders +infighting +infill +infilled +infilling +infills +infiltrate +infiltrated +infiltrates +infiltrating +infiltration +infiltrator +infiltrators +infinite +infinitely +infinitesimal +infinitesimally +infinitive +infinitives +infinity +infirm +infirmaries +infirmary +infirmities +infirmity +inflame +inflamed +inflames +inflaming +inflammable +inflammation +inflammations +inflammatory +inflatable +inflatables +inflate +inflated +inflates +inflating +inflation +inflationary +inflect +inflected +inflecting +inflection +inflections +inflects +inflexibility +inflexible +inflexibly +inflexion +inflexions +inflict +inflicted +inflicting +infliction +inflicts +inflow +inflows +influence +influenced +influences +influencing +influential +influenza +influx +influxes +info +infomercial +infomercials +inform +informal +informality +informally +informant +informants +information +informational +informative +informed +informer +informers +informing +informs +infotainment +infraction +infractions +infrared +infrastructural +infrastructure +infrastructures +infrequent +infrequently +infringe +infringed +infringement +infringements +infringes +infringing +infuriate +infuriated +infuriates +infuriating +infuriatingly +infuse +infused +infuses +infusing +infusion +infusions +ingenious +ingeniously +ingenue +ingenues +ingenuity +ingenuous +ingenuously +ingest +ingested +ingesting +ingestion +ingests +inglenook +inglenooks +inglorious +ingloriously +ingot +ingots +ingrained +ingrate +ingrates +ingratiate +ingratiated +ingratiates +ingratiating +ingratiatingly +ingratitude +ingredient +ingredients +ingress +ingrowing +ingrown +inhabit +inhabitable +inhabitant +inhabitants +inhabited +inhabiting +inhabits +inhalant +inhalants +inhalation +inhalations +inhale +inhaled +inhaler +inhalers +inhales +inhaling +inhere +inhered +inherent +inherently +inheres +inhering +inherit +inheritance +inheritances +inherited +inheriting +inheritor +inheritors +inherits +inhibit +inhibited +inhibiting +inhibition +inhibitions +inhibits +inhospitable +inhuman +inhumane +inhumanely +inhumanities +inhumanity +inimical +inimitable +iniquities +iniquitous +iniquity +initial +initialed +initialing +initialled +initialling +initially +initials +initiate +initiated +initiates +initiating +initiation +initiations +initiative +initiatives +inject +injected +injecting +injection +injections +injects +injudicious +injudiciously +injunction +injunctions +injure +injured +injures +injuries +injuring +injurious +injury +injustice +injustices +ink +inked +inkier +inkiest +inking +inkling +inklings +inks +inkstand +inkstands +inkwell +inkwells +inky +inlaid +inland +inlay +inlays +inlet +inlets +inmate +inmates +inmost +inn +innards +innate +innately +inner +innermost +inning +innings +innit +innkeeper +innkeepers +innocence +innocent +innocently +innocents +innocuous +innocuously +innocuousness +innovate +innovated +innovates +innovating +innovation +innovations +innovative +innovator +innovators +innovatory +inns +innuendo +innuendoes +innuendos +innumerable +innumeracy +innumerate +inoculate +inoculated +inoculates +inoculating +inoculation +inoculations +inoffensive +inoperable +inoperative +inopportune +inopportunely +inordinate +inordinately +inorganic +inpatient +inpatients +input +inputs +inputted +inputting +inquest +inquests +inquire +inquired +inquirer +inquirers +inquires +inquiries +inquiring +inquiringly +inquiry +inquisition +inquisitions +inquisitive +inquisitively +inquisitiveness +inquisitor +inquisitorial +inquisitors +inquorate +insalubrious +insane +insanely +insanitary +insanity +insatiable +insatiably +inscribe +inscribed +inscribes +inscribing +inscription +inscriptions +inscrutability +inscrutable +inscrutably +inseam +inseams +insect +insecticidal +insecticide +insecticides +insectivore +insectivores +insectivorous +insects +insecure +insecurely +insecurities +insecurity +inseminate +inseminated +inseminates +inseminating +insemination +insensibility +insensible +insensibly +insensitive +insensitively +insensitivity +inseparability +inseparable +inseparably +insert +inserted +inserting +insertion +insertions +inserts +inset +insets +insetting +inshore +inside +insider +insiders +insides +insidious +insidiously +insight +insightful +insights +insignia +insignificance +insignificant +insignificantly +insincere +insincerely +insincerity +insinuate +insinuated +insinuates +insinuating +insinuation +insinuations +insipid +insipidity +insipidly +insipidness +insist +insisted +insistence +insistent +insistently +insisting +insists +insole +insolence +insolent +insolently +insoles +insoluble +insolvable +insolvencies +insolvency +insolvent +insomnia +insomniac +insomniacs +insouciance +insouciant +inspect +inspected +inspecting +inspection +inspections +inspector +inspectorate +inspectorates +inspectors +inspects +inspiration +inspirational +inspirations +inspire +inspired +inspires +inspiring +instabilities +instability +instal +install +installation +installations +installed +installing +installment +installments +installs +instalment +instalments +instals +instance +instanced +instances +instancing +instant +instantaneous +instantaneously +instantly +instants +instead +instep +insteps +instigate +instigated +instigates +instigating +instigation +instigator +instigators +instil +instill +instilled +instilling +instills +instils +instinct +instinctive +instinctively +instincts +instinctual +institute +instituted +institutes +instituting +institution +institutional +institutionalisation +institutionalise +institutionalised +institutionalises +institutionalising +institutionalization +institutionalize +institutionalized +institutionalizes +institutionalizing +institutions +instruct +instructed +instructing +instruction +instructional +instructions +instructive +instructor +instructors +instructs +instrument +instrumental +instrumentalist +instrumentalists +instrumentals +instrumentation +instruments +insubordinate +insubordination +insubstantial +insufferable +insufferably +insufficiency +insufficient +insufficiently +insular +insularity +insulate +insulated +insulates +insulating +insulation +insulator +insulators +insulin +insult +insulted +insulting +insultingly +insults +insuperable +insuperably +insupportable +insurance +insurances +insure +insured +insurer +insurers +insures +insurgencies +insurgency +insurgent +insurgents +insuring +insurmountable +insurrection +insurrections +intact +intake +intakes +intangible +intangibles +intangibly +integer +integers +integral +integrally +integrate +integrated +integrates +integrating +integration +integrity +intellect +intellects +intellectual +intellectualise +intellectualised +intellectualises +intellectualising +intellectualism +intellectualize +intellectualized +intellectualizes +intellectualizing +intellectually +intellectuals +intelligence +intelligent +intelligently +intelligentsia +intelligibility +intelligible +intelligibly +intemperance +intemperate +intemperately +intend +intended +intending +intends +intense +intensely +intensification +intensified +intensifier +intensifiers +intensifies +intensify +intensifying +intensities +intensity +intensive +intensively +intent +intention +intentional +intentionally +intentions +intently +intents +inter +interact +interacted +interacting +interaction +interactions +interactive +interactively +interactivity +interacts +interbred +interbreed +interbreeding +interbreeds +intercede +interceded +intercedes +interceding +intercept +intercepted +intercepting +interception +interceptions +interceptor +interceptors +intercepts +intercession +intercessions +interchange +interchangeability +interchangeable +interchangeably +interchanged +interchanges +interchanging +intercity +intercollegiate +intercom +intercommunication +intercoms +interconnect +interconnected +interconnecting +interconnection +interconnections +interconnects +intercontinental +intercourse +interdenominational +interdepartmental +interdependence +interdependent +interdict +interdicted +interdicting +interdiction +interdicts +interdisciplinary +interest +interested +interesting +interestingly +interests +interface +interfaced +interfaces +interfacing +interfere +interfered +interference +interferes +interfering +interferon +intergalactic +intergovernmental +interim +interior +interiors +interject +interjected +interjecting +interjection +interjections +interjects +interlace +interlaced +interlaces +interlacing +interlink +interlinked +interlinking +interlinks +interlock +interlocked +interlocking +interlocks +interlocutor +interlocutors +interloper +interlopers +interlude +interludes +intermarriage +intermarriages +intermarried +intermarries +intermarry +intermarrying +intermediaries +intermediary +intermediate +intermediates +interment +interments +intermezzo +intermezzos +interminable +interminably +intermingle +intermingled +intermingles +intermingling +intermission +intermissions +intermittent +intermittently +intern +internal +internalisation +internalise +internalised +internalises +internalising +internalization +internalize +internalized +internalizes +internalizing +internally +international +internationalisation +internationalise +internationalised +internationalises +internationalising +internationalism +internationalist +internationalists +internationalization +internationalize +internationalized +internationalizes +internationalizing +internationally +internationals +internecine +interned +internee +internees +interning +internist +internists +internment +interns +internship +internships +interpenetrate +interpenetrated +interpenetrates +interpenetrating +interpenetration +interpersonal +interplanetary +interplay +interpolate +interpolated +interpolates +interpolating +interpolation +interpolations +interpose +interposed +interposes +interposing +interpret +interpretation +interpretations +interpretative +interpreted +interpreter +interpreters +interpreting +interpretive +interprets +interracial +interred +interregna +interregnum +interregnums +interrelate +interrelated +interrelates +interrelating +interrelation +interrelations +interrelationship +interrelationships +interring +interrogate +interrogated +interrogates +interrogating +interrogation +interrogations +interrogative +interrogatives +interrogator +interrogators +interrupt +interrupted +interrupting +interruption +interruptions +interrupts +inters +interscholastic +intersect +intersected +intersecting +intersection +intersections +intersects +intersperse +interspersed +intersperses +interspersing +interstate +interstates +interstellar +interstice +interstices +intertwine +intertwined +intertwines +intertwining +interval +intervals +intervene +intervened +intervenes +intervening +intervention +interventionism +interventionist +interventionists +interventions +interview +interviewed +interviewee +interviewees +interviewer +interviewers +interviewing +interviews +interwar +interweave +interweaves +interweaving +interwove +interwoven +intestate +intestinal +intestine +intestines +intimacies +intimacy +intimate +intimated +intimately +intimates +intimating +intimation +intimations +intimidate +intimidated +intimidates +intimidating +intimidation +into +intolerable +intolerably +intolerance +intolerant +intolerantly +intonation +intonations +intone +intoned +intones +intoning +intoxicant +intoxicants +intoxicate +intoxicated +intoxicates +intoxicating +intoxication +intractability +intractable +intractably +intramural +intranet +intranets +intransigence +intransigent +intransigently +intransitive +intransitively +intransitives +intrauterine +intravenous +intravenously +intrepid +intricacies +intricacy +intricate +intricately +intrigue +intrigued +intrigues +intriguing +intriguingly +intrinsic +intrinsically +intro +introduce +introduced +introduces +introducing +introduction +introductions +introductory +intros +introspection +introspective +introspectively +introversion +introvert +introverted +introverts +intrude +intruded +intruder +intruders +intrudes +intruding +intrusion +intrusions +intrusive +intuit +intuited +intuiting +intuition +intuitions +intuitive +intuitively +intuits +inundate +inundated +inundates +inundating +inundation +inundations +inure +inured +inures +inuring +invade +invaded +invader +invaders +invades +invading +invalid +invalidate +invalidated +invalidates +invalidating +invalidation +invalided +invaliding +invalidity +invalids +invaluable +invariable +invariably +invasion +invasions +invasive +invective +inveigh +inveighed +inveighing +inveighs +inveigle +inveigled +inveigles +inveigling +invent +invented +inventing +invention +inventions +inventive +inventively +inventiveness +inventor +inventories +inventors +inventory +invents +inverse +inversely +inversion +inversions +invert +invertebrate +invertebrates +inverted +inverting +inverts +invest +invested +investigate +investigated +investigates +investigating +investigation +investigations +investigative +investigator +investigators +investigatory +investing +investiture +investitures +investment +investments +investor +investors +invests +inveterate +invidious +invidiously +invidiousness +invigilate +invigilated +invigilates +invigilating +invigilation +invigilator +invigilators +invigorate +invigorated +invigorates +invigorating +invincibility +invincible +invincibly +inviolability +inviolable +inviolate +invisibility +invisible +invisibly +invitation +invitational +invitationals +invitations +invite +invited +invites +inviting +invitingly +invocation +invocations +invoice +invoiced +invoices +invoicing +invoke +invoked +invokes +invoking +involuntarily +involuntary +involve +involved +involvement +involvements +involves +involving +invulnerability +invulnerable +inward +inwardly +inwards +iodine +iodized +ion +ionisation +ionise +ionised +ioniser +ionisers +ionises +ionising +ionization +ionize +ionized +ionizer +ionizers +ionizes +ionizing +ionosphere +ions +iota +irascibility +irascible +irascibly +irate +ire +iridescence +iridescent +iridium +iris +irises +irk +irked +irking +irks +irksome +iron +ironclad +ironed +ironic +ironical +ironically +ironies +ironing +ironmonger +ironmongers +ironmongery +irons +ironstone +ironwork +irony +irradiate +irradiated +irradiates +irradiating +irradiation +irrational +irrationality +irrationally +irreconcilable +irreconcilably +irrecoverable +irrecoverably +irredeemable +irredeemably +irreducible +irreducibly +irrefutable +irrefutably +irregular +irregularities +irregularity +irregularly +irregulars +irrelevance +irrelevances +irrelevancies +irrelevancy +irrelevant +irrelevantly +irreligious +irremediable +irremediably +irreparable +irreparably +irreplaceable +irrepressible +irrepressibly +irreproachable +irreproachably +irresistible +irresistibly +irresolute +irresolutely +irresolution +irresponsibility +irresponsible +irresponsibly +irretrievable +irretrievably +irreverence +irreverent +irreverently +irreversible +irreversibly +irrevocable +irrevocably +irrigate +irrigated +irrigates +irrigating +irrigation +irritability +irritable +irritably +irritant +irritants +irritate +irritated +irritates +irritating +irritatingly +irritation +irritations +irruption +irruptions +is +island +islander +islanders +islands +isle +isles +islet +islets +ism +isms +isobar +isobars +isolate +isolated +isolates +isolating +isolation +isolationism +isolationist +isolationists +isometric +isometrics +isotherm +isotherms +isotope +isotopes +issue +issued +issues +issuing +isthmus +isthmuses +it +italic +italicise +italicised +italicises +italicising +italicize +italicized +italicizes +italicizing +italics +itch +itched +itches +itchier +itchiest +itchiness +itching +itchy +item +itemise +itemised +itemises +itemising +itemize +itemized +itemizes +itemizing +items +itinerant +itinerants +itineraries +itinerary +its +itself +ivied +ivies +ivories +ivory +ivy +jab +jabbed +jabber +jabbered +jabbering +jabbers +jabbing +jabs +jack +jackal +jackals +jackass +jackasses +jackboot +jackbooted +jackboots +jackdaw +jackdaws +jacked +jacket +jackets +jackhammer +jackhammers +jacking +jackknife +jackknives +jackpot +jackpots +jackrabbit +jackrabbits +jacks +jade +jaded +jagged +jaggedly +jaguar +jaguars +jail +jailbird +jailbirds +jailbreak +jailbreaks +jailed +jailer +jailers +jailhouse +jailhouses +jailing +jails +jalapeno +jalapenos +jalopies +jalopy +jam +jamb +jamboree +jamborees +jambs +jammed +jammier +jammiest +jamming +jammy +jams +jangle +jangled +jangles +jangling +janitor +janitors +jape +japes +jar +jargon +jarred +jarring +jars +jasmine +jasmines +jaundice +jaundiced +jaunt +jaunted +jauntier +jauntiest +jauntily +jauntiness +jaunting +jaunts +jaunty +javelin +javelins +jaw +jawbone +jawbones +jawbreaker +jawbreakers +jawed +jawing +jawline +jawlines +jaws +jay +jays +jaywalk +jaywalked +jaywalker +jaywalkers +jaywalking +jaywalks +jazz +jazzed +jazzes +jazzier +jazziest +jazzing +jazzy +jealous +jealousies +jealously +jealousy +jeans +jeep +jeeps +jeer +jeered +jeering +jeeringly +jeers +jeez +jejune +jell +jelled +jellied +jellies +jelling +jello +jells +jelly +jellyfish +jellyfishes +jemmied +jemmies +jemmy +jemmying +jeopardise +jeopardised +jeopardises +jeopardising +jeopardize +jeopardized +jeopardizes +jeopardizing +jeopardy +jerk +jerked +jerkier +jerkiest +jerkily +jerkin +jerkiness +jerking +jerkins +jerks +jerkwater +jerky +jeroboam +jeroboams +jerrycan +jerrycans +jersey +jerseys +jest +jested +jester +jesters +jesting +jests +jet +jetliner +jetliners +jets +jetsam +jetted +jetties +jetting +jettison +jettisoned +jettisoning +jettisons +jetty +jewel +jeweled +jeweler +jewelers +jewelled +jeweller +jewellers +jewellery +jewelry +jewels +jib +jibbed +jibbing +jibe +jibed +jibes +jibing +jibs +jiffy +jig +jigged +jigger +jiggers +jigging +jiggle +jiggled +jiggles +jiggling +jigs +jigsaw +jigsaws +jihad +jihads +jilt +jilted +jilting +jilts +jimmied +jimmies +jimmy +jimmying +jingle +jingled +jingles +jingling +jingoism +jingoistic +jink +jinked +jinking +jinks +jinx +jinxed +jinxes +jitters +jittery +jive +jived +jives +jiving +job +jobbing +jobless +joblessness +jobs +jobshare +jobshares +jobsworth +jobsworths +jock +jockey +jockeyed +jockeying +jockeys +jocks +jockstrap +jockstraps +jocose +jocosely +jocular +jocularity +jocularly +jodhpurs +joey +joeys +jog +jogged +jogger +joggers +jogging +joggle +joggled +joggles +joggling +jogs +john +johnnies +johnny +johns +join +joined +joiner +joiners +joinery +joining +joins +joint +jointed +jointing +jointly +joints +joist +joists +jojoba +joke +joked +joker +jokers +jokes +jokey +jokier +jokiest +joking +jokingly +joky +jollied +jollier +jollies +jolliest +jollification +jollifications +jollity +jolly +jollying +jolt +jolted +jolting +jolts +josh +joshed +joshes +joshing +jostle +jostled +jostles +jostling +jot +jots +jotted +jotter +jotters +jotting +jottings +joule +joules +journal +journalese +journalism +journalist +journalistic +journalists +journals +journey +journeyed +journeying +journeyman +journeymen +journeys +journo +journos +joust +jousted +jousting +jousts +jovial +joviality +jovially +jowl +jowls +jowly +joy +joyful +joyfully +joyfulness +joyless +joylessly +joylessness +joyous +joyously +joyousness +joyride +joyrider +joyriders +joyrides +joyriding +joys +joystick +joysticks +jubilant +jubilantly +jubilation +jubilee +jubilees +judder +juddered +juddering +judders +judge +judged +judgement +judgemental +judgements +judges +judging +judgment +judgmental +judgments +judicature +judicial +judicially +judiciary +judicious +judiciously +judo +jug +jugful +jugfuls +juggernaut +juggernauts +juggle +juggled +juggler +jugglers +juggles +juggling +jugs +jugular +jugulars +juice +juicer +juicers +juices +juicier +juiciest +juiciness +juicy +jukebox +jukeboxes +julep +juleps +jumble +jumbled +jumbles +jumbling +jumbo +jumbos +jump +jumped +jumper +jumpers +jumpier +jumpiest +jumping +jumps +jumpsuit +jumpsuits +jumpy +junction +junctions +juncture +junctures +jungle +jungles +junior +juniors +juniper +junipers +junk +junked +junket +junkets +junkie +junkies +junking +junks +junky +junkyard +junkyards +junta +juntas +juridical +juries +jurisdiction +jurisdictions +jurisprudence +jurist +jurists +juror +jurors +jury +juryman +jurymen +jurywoman +jurywomen +just +justice +justices +justifiable +justifiably +justification +justifications +justified +justifies +justify +justifying +justly +jut +jute +juts +jutted +jutting +juvenile +juveniles +juxtapose +juxtaposed +juxtaposes +juxtaposing +juxtaposition +juxtapositions +kabob +kabobs +kabuki +kaftan +kaftans +kale +kaleidoscope +kaleidoscopes +kaleidoscopic +kaleidoscopically +kamikaze +kangaroo +kangaroos +kaolin +kapok +kaput +karaoke +karat +karate +karats +karma +kart +karts +kayak +kayaked +kayaking +kayaks +kazoo +kazoos +kebab +kebabs +kedgeree +keel +keeled +keelhaul +keelhauled +keelhauling +keelhauls +keeling +keels +keen +keened +keener +keenest +keening +keenly +keenness +keens +keep +keeper +keepers +keeping +keeps +keepsake +keepsakes +keg +kegs +kelp +kelvin +kelvins +ken +kenned +kennel +kennels +kenning +kens +kept +kerb +kerbs +kerbside +kerchief +kerchiefs +kerfuffle +kerfuffles +kernel +kernels +kerosene +kerosine +kestrel +kestrels +ketch +ketches +ketchup +kettle +kettledrum +kettledrums +kettles +key +keyboard +keyboarded +keyboarder +keyboarders +keyboarding +keyboardist +keyboardists +keyboards +keyed +keyhole +keyholes +keying +keynote +keynotes +keypad +keypads +keypunch +keypunches +keys +keystone +keystones +keystroke +keystrokes +khaki +khalif +khalifs +kibbutz +kibbutzes +kibbutzim +kick +kickback +kickbacks +kickboxing +kicked +kicking +kickoff +kickoffs +kicks +kid +kidded +kiddie +kiddies +kidding +kiddo +kiddos +kiddy +kidnap +kidnaped +kidnaping +kidnapped +kidnapper +kidnappers +kidnapping +kidnappings +kidnaps +kidney +kidneys +kids +kike +kikes +kill +killed +killer +killers +killing +killings +killjoy +killjoys +kills +kiln +kilns +kilo +kilobyte +kilobytes +kilogram +kilogramme +kilogrammes +kilograms +kilohertz +kilometer +kilometers +kilometre +kilometres +kilos +kilowatt +kilowatts +kilt +kilted +kilts +kimono +kimonos +kin +kind +kinda +kinder +kindergarten +kindergartens +kindest +kindle +kindled +kindles +kindliness +kindling +kindly +kindness +kindnesses +kindred +kinds +kinetic +kinetics +kinfolk +kinfolks +king +kingdom +kingdoms +kingfisher +kingfishers +kingly +kingmaker +kingmakers +kingpin +kingpins +kings +kingship +kink +kinked +kinkier +kinkiest +kinking +kinks +kinky +kinsfolk +kinship +kinsman +kinsmen +kinswoman +kinswomen +kiosk +kiosks +kip +kipped +kipper +kippers +kipping +kips +kirk +kirks +kirsch +kirsches +kiss +kissagram +kissagrams +kissed +kisser +kissers +kisses +kissing +kissogram +kissograms +kit +kitbag +kitbags +kitchen +kitchenette +kitchenettes +kitchens +kitchenware +kite +kites +kits +kitsch +kitschy +kitted +kitten +kittenish +kittens +kitties +kitting +kitty +kiwi +kiwis +klaxon +klaxons +kleptomania +kleptomaniac +kleptomaniacs +klutz +klutzes +knack +knacker +knackered +knackering +knackers +knapsack +knapsacks +knave +knaves +knead +kneaded +kneading +kneads +knee +kneecap +kneecapped +kneecapping +kneecaps +kneed +kneeing +kneel +kneeled +kneeling +kneels +knees +knell +knelt +knew +knicker +knickerbockers +knickers +knickknack +knickknacks +knife +knifed +knifes +knifing +knight +knighted +knighthood +knighthoods +knighting +knightly +knights +knit +knits +knitted +knitter +knitters +knitting +knitwear +knives +knob +knobbly +knobby +knobs +knock +knockabout +knockdown +knocked +knocker +knockers +knocking +knockoff +knockoffs +knockout +knockouts +knocks +knoll +knolls +knot +knots +knotted +knottier +knottiest +knotting +knotty +know +knowing +knowingly +knowledge +knowledgeable +knowledgeably +known +knows +knuckle +knuckled +knuckleduster +knuckledusters +knucklehead +knuckleheads +knuckles +knuckling +koala +koalas +kohl +kook +kookaburra +kookaburras +kooks +kooky +korma +kosher +kowtow +kowtowed +kowtowing +kowtows +krill +krona +krone +kroner +kronor +krypton +kudos +kumquat +kumquats +kvetch +kvetched +kvetches +kvetching +lab +label +labeled +labeling +labelled +labelling +labels +labia +labial +labials +labor +laboratories +laboratory +labored +laborer +laborers +laboring +laborious +laboriously +laboriousness +labors +labour +laboured +labourer +labourers +labouring +labours +labs +laburnum +laburnums +labyrinth +labyrinthine +labyrinths +lace +laced +lacerate +lacerated +lacerates +lacerating +laceration +lacerations +laces +lachrymose +lacier +laciest +lacing +lack +lackadaisical +lackadaisically +lacked +lackey +lackeys +lacking +lackluster +lacklustre +lacks +laconic +laconically +lacquer +lacquered +lacquering +lacquers +lacrosse +lactate +lactated +lactates +lactating +lactation +lactic +lactose +lacuna +lacunae +lacunas +lacy +lad +ladder +laddered +laddering +ladders +laddie +laddies +laddish +laddishness +laden +ladies +ladle +ladled +ladles +ladling +lads +lady +ladybird +ladybirds +ladybug +ladybugs +ladylike +ladyship +ladyships +lag +lager +lagers +laggard +laggards +lagged +lagging +lagoon +lagoons +lags +laid +lain +lair +laird +lairds +lairs +laity +lake +lakes +lakeside +lama +lamas +lamb +lambada +lambadas +lambast +lambaste +lambasted +lambastes +lambasting +lambasts +lambed +lambent +lambing +lambs +lambskin +lambswool +lame +lamely +lameness +lament +lamentable +lamentably +lamentation +lamentations +lamented +lamenting +laments +lamer +lamest +laminate +laminated +laminates +lamp +lamplight +lampoon +lampooned +lampooning +lampoons +lamppost +lampposts +lamprey +lampreys +lamps +lampshade +lampshades +lance +lanced +lancer +lancers +lances +lancet +lancets +lancing +land +landed +landfall +landfalls +landfill +landfills +landholder +landholders +landholding +landholdings +landing +landings +landladies +landlady +landless +landlocked +landlord +landlords +landlubber +landlubbers +landmark +landmarks +landmass +landmasses +landmine +landmines +landowner +landowners +landownership +landowning +lands +landscape +landscaped +landscaper +landscapers +landscapes +landscaping +landslide +landslides +landslip +landslips +landward +landwards +lane +lanes +language +languages +languid +languidly +languish +languished +languishes +languishing +languor +languorous +languorously +lank +lankier +lankiest +lanky +lanolin +lantern +lanterns +lap +lapdog +lapdogs +lapel +lapels +lapidary +lapped +lapping +laps +lapse +lapsed +lapses +lapsing +laptop +laptops +lapwing +lapwings +larcenies +larcenous +larceny +larch +larches +lard +larded +larder +larders +larding +lards +large +largely +largeness +larger +largess +largesse +largest +largish +largo +largos +lark +larked +larking +larks +larkspur +larkspurs +larva +larvae +larval +laryngitis +larynx +larynxes +lasagna +lasagnas +lasagne +lasagnes +lascivious +lasciviously +lasciviousness +laser +lasers +lash +lashed +lashes +lashing +lashings +lass +lasses +lassie +lassies +lassitude +lasso +lassoed +lassoes +lassoing +lassos +last +lasted +lasting +lastly +lasts +latch +latched +latches +latching +latchkey +latchkeys +late +latecomer +latecomers +lately +latency +lateness +latent +later +lateral +laterally +latest +latex +lath +lathe +lather +lathered +lathering +lathers +lathery +lathes +laths +latitude +latitudes +latitudinal +latrine +latrines +latte +latter +latterly +lattes +lattice +latticed +lattices +latticework +latticeworks +laud +laudable +laudably +laudanum +laudatory +lauded +lauding +lauds +laugh +laughable +laughably +laughed +laughing +laughingly +laughs +laughter +launch +launched +launcher +launchers +launches +launching +launder +laundered +launderette +launderettes +laundering +launders +laundrette +laundrettes +laundries +laundromat +laundromats +laundry +laureate +laureates +laurel +laurels +lav +lava +lavatorial +lavatories +lavatory +lavender +lavenders +lavish +lavished +lavishes +lavishing +lavishly +lavishness +lavs +law +lawbreaker +lawbreakers +lawful +lawfully +lawless +lawlessly +lawlessness +lawmaker +lawmakers +lawman +lawmen +lawn +lawnmower +lawnmowers +lawns +laws +lawsuit +lawsuits +lawyer +lawyers +lax +laxative +laxatives +laxer +laxest +laxity +laxly +laxness +lay +layabout +layabouts +layaway +layer +layered +layering +layers +layette +layettes +laying +layman +laymen +layoff +layoffs +layout +layouts +layover +layovers +laypeople +layperson +laypersons +lays +laywoman +laywomen +laze +lazed +lazes +lazier +laziest +lazily +laziness +lazing +lazy +lazybones +lbw +leach +leached +leaches +leaching +lead +leaded +leaden +leader +leaders +leadership +leaderships +leading +leads +leaf +leafed +leafier +leafiest +leafing +leafless +leaflet +leafleted +leafleting +leaflets +leafs +leafy +league +leagues +leak +leakage +leakages +leaked +leakier +leakiest +leaking +leaks +leaky +lean +leaned +leaner +leanest +leaning +leanings +leans +leant +leap +leaped +leapfrog +leapfrogged +leapfrogging +leapfrogs +leaping +leaps +leapt +learn +learned +learner +learners +learning +learns +learnt +lease +leaseback +leasebacks +leased +leasehold +leaseholder +leaseholders +leaseholds +leases +leash +leashed +leashes +leashing +leasing +least +leastways +leather +leatherette +leatherneck +leathernecks +leathers +leathery +leave +leaven +leavened +leavening +leavens +leaver +leavers +leaves +leaving +lech +leched +lecher +lecherous +lechers +lechery +leches +leching +lectern +lecterns +lecture +lectured +lecturer +lecturers +lectures +lectureship +lectureships +lecturing +led +ledge +ledger +ledgers +ledges +lee +leech +leeches +leek +leeks +leer +leered +leering +leers +leery +lees +leeward +leeway +left +leftie +lefties +leftism +leftist +leftists +leftover +leftovers +lefts +leftward +leftwards +lefty +leg +legacies +legacy +legal +legalese +legalisation +legalise +legalised +legalises +legalising +legalistic +legalistically +legalities +legality +legalization +legalize +legalized +legalizes +legalizing +legally +legate +legatee +legatees +legates +legation +legations +legato +legend +legendary +legends +legged +leggier +leggiest +legging +leggings +leggy +legibility +legible +legibly +legion +legionaries +legionary +legionnaire +legionnaires +legions +legislate +legislated +legislates +legislating +legislation +legislative +legislator +legislators +legislature +legislatures +legit +legitimacy +legitimate +legitimated +legitimately +legitimates +legitimating +legitimise +legitimised +legitimises +legitimising +legitimize +legitimized +legitimizes +legitimizing +legless +legroom +legs +legume +legumes +leguminous +legwarmer +legwarmers +legwork +leisure +leisured +leisurely +leisurewear +leitmotif +leitmotifs +leitmotiv +leitmotivs +lemming +lemmings +lemon +lemonade +lemonades +lemongrass +lemons +lemony +lemur +lemurs +lend +lender +lenders +lending +lends +length +lengthen +lengthened +lengthening +lengthens +lengthier +lengthiest +lengths +lengthways +lengthwise +lengthy +leniency +lenient +leniently +lens +lenses +lent +lentil +lentils +leonine +leopard +leopards +leotard +leotards +leper +lepers +leprechaun +leprechauns +leprosy +lesbian +lesbianism +lesbians +lesion +lesions +less +lessee +lessees +lessen +lessened +lessening +lessens +lesser +lesson +lessons +lessor +lessors +lest +let +letch +letches +letdown +letdowns +lethal +lethally +lethargic +lethargy +lets +letter +letterbox +letterboxes +lettered +letterhead +letterheads +lettering +letters +letting +lettings +lettuce +lettuces +letup +leucotomies +leucotomy +leukaemia +leukemia +levee +levees +level +leveled +leveler +levelers +leveling +levelled +leveller +levellers +levelling +levels +lever +leverage +leveraged +leverages +leveraging +levered +levering +levers +leviathan +leviathans +levied +levies +levitate +levitated +levitates +levitating +levitation +levity +levy +levying +lewd +lewdly +lewdness +lexical +lexicographer +lexicographers +lexicography +lexicon +lexicons +lexis +liabilities +liability +liable +liaise +liaised +liaises +liaising +liaison +liaisons +liar +liars +lib +libation +libations +libel +libeled +libeling +libelled +libelling +libellous +libelous +libels +liberal +liberalisation +liberalise +liberalised +liberalises +liberalising +liberalism +liberality +liberalization +liberalize +liberalized +liberalizes +liberalizing +liberally +liberals +liberate +liberated +liberates +liberating +liberation +liberator +liberators +libertarian +libertarians +liberties +libertine +libertines +liberty +libidinous +libido +libidos +librarian +librarians +librarianship +libraries +library +libretti +librettist +librettists +libretto +librettos +lice +licence +licenced +licences +licencing +license +licensed +licensee +licensees +licenses +licensing +licentiate +licentiates +licentious +licentiously +licentiousness +lichen +lichens +lick +licked +licking +lickings +licks +licorice +lid +lidded +lido +lidos +lids +lie +lied +lien +liens +lies +lieutenant +lieutenants +life +lifebelt +lifebelts +lifeblood +lifeboat +lifeboats +lifeguard +lifeguards +lifeless +lifelike +lifeline +lifelines +lifelong +lifer +lifers +lifesaver +lifesavers +lifespan +lifespans +lifestyle +lifestyles +lifetime +lifetimes +lifework +lift +lifted +lifting +lifts +ligament +ligaments +ligature +ligatures +light +lighted +lighten +lightened +lightening +lightens +lighter +lighters +lightest +lighthouse +lighthouses +lighting +lightly +lightness +lightning +lights +lightship +lightships +lightweight +lightweights +lignite +likable +like +likeable +liked +likelier +likeliest +likelihood +likely +liken +likened +likeness +likenesses +likening +likens +likes +likewise +liking +lilac +lilacs +lilies +lilliputian +lilo +lilos +lilt +lilting +lily +limb +limber +limbered +limbering +limbers +limbo +limbs +lime +limed +limelight +limerick +limericks +limes +limescale +limestone +limey +limeys +liming +limit +limitation +limitations +limited +limiting +limitless +limits +limo +limos +limousine +limousines +limp +limped +limper +limpest +limpet +limpets +limpid +limpidly +limping +limply +limpness +limps +limy +linchpin +linchpins +linctus +linden +lindens +line +lineage +lineages +lineal +lineally +lineaments +linear +linearity +linearly +linebacker +linebackers +lined +lineman +linemen +linen +liner +liners +lines +linesman +linesmen +ling +linger +lingered +lingerer +lingerers +lingerie +lingering +lingeringly +lingers +lingo +lingos +linguist +linguistic +linguistically +linguistics +linguists +liniment +liniments +lining +linings +link +linkage +linkages +linked +linking +linkman +linkmen +links +linnet +linnets +lino +linoleum +linseed +lint +lintel +lintels +lion +lioness +lionesses +lionisation +lionise +lionised +lionises +lionising +lionization +lionize +lionized +lionizes +lionizing +lions +lip +lipid +lipids +liposuction +lippy +lips +lipstick +lipsticks +liquefied +liquefies +liquefy +liquefying +liqueur +liqueurs +liquid +liquidate +liquidated +liquidates +liquidating +liquidation +liquidations +liquidator +liquidators +liquidise +liquidised +liquidiser +liquidisers +liquidises +liquidising +liquidity +liquidize +liquidized +liquidizer +liquidizers +liquidizes +liquidizing +liquids +liquor +liquorice +liquorices +lira +lire +lisp +lisped +lisping +lisps +lissom +lissome +list +listed +listen +listenable +listened +listener +listeners +listening +listens +listeria +listing +listings +listless +listlessly +listlessness +lists +lit +litanies +litany +lite +liter +literacy +literal +literally +literalness +literary +literate +literati +literature +liters +lithe +lithely +lithium +lithograph +lithographic +lithographs +lithography +litigant +litigants +litigate +litigated +litigates +litigating +litigation +litigator +litigators +litigious +litigiousness +litmus +litre +litres +litter +litterbug +litterbugs +littered +littering +litters +little +littler +littlest +littoral +littorals +liturgical +liturgically +liturgies +liturgy +livable +live +liveable +lived +livelier +liveliest +livelihood +livelihoods +liveliness +lively +liven +livened +livening +livens +liver +liveried +liveries +liverish +livers +liverwurst +livery +lives +livestock +livid +lividly +living +livings +lizard +lizards +llama +llamas +lo +load +loaded +loading +loads +loadstar +loadstars +loadstone +loadstones +loaf +loafed +loafer +loafers +loafing +loafs +loam +loamy +loan +loaned +loaning +loans +loanword +loanwords +loath +loathe +loathed +loathes +loathing +loathsome +loathsomeness +loaves +lob +lobbed +lobbied +lobbies +lobbing +lobby +lobbying +lobbyist +lobbyists +lobe +lobed +lobes +lobotomies +lobotomy +lobs +lobster +lobsters +local +locale +locales +localise +localised +localises +localising +localities +locality +localize +localized +localizes +localizing +locally +locals +locate +located +locates +locating +location +locations +loch +lochs +loci +lock +lockable +locked +locker +lockers +locket +lockets +locking +lockjaw +lockout +lockouts +locks +locksmith +locksmiths +lockup +lockups +loco +locomotion +locomotive +locomotives +locos +locum +locums +locus +locust +locusts +locution +locutions +lode +lodes +lodestar +lodestars +lodestone +lodestones +lodge +lodged +lodger +lodgers +lodges +lodging +lodgings +loft +lofted +loftier +loftiest +loftily +loftiness +lofting +lofts +lofty +log +loganberries +loganberry +logarithm +logarithmic +logarithms +logged +logger +loggers +logging +logic +logical +logically +logician +logicians +logistic +logistical +logistically +logistics +logjam +logjams +logo +logos +logs +loin +loincloth +loincloths +loins +loiter +loitered +loiterer +loiterers +loitering +loiters +loll +lolled +lollies +lolling +lollipop +lollipops +lollop +lolloped +lolloping +lollops +lolls +lolly +lone +lonelier +loneliest +loneliness +lonely +loner +loners +lonesome +long +longboat +longboats +longbow +longbows +longed +longer +longest +longevity +longhand +longhorn +longhorns +longhouse +longhouses +longing +longingly +longings +longish +longitude +longitudes +longitudinal +longitudinally +longs +longshoreman +longshoremen +longueurs +longways +longwise +loo +loofah +loofahs +look +lookalike +lookalikes +looked +looker +lookers +looking +lookout +lookouts +looks +loom +loomed +looming +looms +loon +loonier +loonies +looniest +loons +loony +loop +looped +loophole +loopholes +loopier +loopiest +looping +loops +loopy +loos +loose +loosed +loosely +loosen +loosened +looseness +loosening +loosens +looser +looses +loosest +loosing +loot +looted +looter +looters +looting +loots +lop +lope +loped +lopes +loping +lopped +lopping +lops +lopsided +loquacious +loquaciously +loquacity +lord +lorded +lording +lordly +lords +lordship +lordships +lore +lorgnette +lorgnettes +lorries +lorry +lose +loser +losers +loses +losing +loss +losses +lost +lot +loth +lotion +lotions +lots +lotteries +lottery +lotus +lotuses +louche +loud +louder +loudest +loudhailer +loudhailers +loudly +loudmouth +loudmouths +loudness +loudspeaker +loudspeakers +lough +loughs +lounge +lounged +lounger +loungers +lounges +lounging +lour +loured +louring +lours +louse +loused +louses +lousier +lousiest +lousing +lousy +lout +loutish +loutishness +louts +louver +louvers +louvre +louvred +louvres +lovable +love +loveable +lovebird +lovebirds +loved +loveless +lovelier +lovelies +loveliest +loveliness +lovelorn +lovely +lovemaking +lover +lovers +loves +lovesick +lovey +loveys +loving +lovingly +low +lowbrow +lowdown +lowed +lower +lowered +lowering +lowers +lowest +lowing +lowland +lowlander +lowlanders +lowlands +lowlier +lowliest +lowly +lows +lox +loyal +loyalist +loyalists +loyally +loyalties +loyalty +lozenge +lozenges +luau +lube +lubes +lubricant +lubricants +lubricate +lubricated +lubricates +lubricating +lubrication +lubricious +lubriciously +lucid +lucidity +lucidly +luck +lucked +luckier +luckiest +luckily +lucking +luckless +lucks +lucky +lucrative +lucratively +lucre +ludicrous +ludicrously +ludicrousness +ludo +lug +luge +luges +luggage +lugged +lugging +lughole +lugholes +lugs +lugubrious +lugubriously +lugubriousness +lukewarm +lull +lullabies +lullaby +lulled +lulling +lulls +lulu +lulus +lumbago +lumbar +lumber +lumbered +lumbering +lumberjack +lumberjacks +lumberman +lumbermen +lumbers +lumberyard +lumberyards +luminaries +luminary +luminescence +luminescent +luminosity +luminous +luminously +lummox +lummoxes +lump +lumpectomies +lumpectomy +lumped +lumpen +lumpier +lumpiest +lumping +lumpish +lumps +lumpy +lunacy +lunar +lunatic +lunatics +lunch +lunchbox +lunchboxes +lunched +luncheon +luncheonette +luncheonettes +luncheons +lunches +lunching +lunchroom +lunchrooms +lunchtime +lunchtimes +lung +lunge +lunged +lunges +lungful +lungfuls +lunging +lungs +lupin +lupine +lupines +lupins +lurch +lurched +lurches +lurching +lure +lured +lures +lurgy +lurid +luridly +luridness +luring +lurk +lurked +lurking +lurks +luscious +lush +lusher +lushes +lushest +lushness +lust +lusted +luster +lustful +lustfully +lustier +lustiest +lustily +lustiness +lusting +lustre +lustrous +lusts +lusty +lute +lutes +luv +luvs +luvvie +luvvies +luxuriance +luxuriant +luxuriantly +luxuriate +luxuriated +luxuriates +luxuriating +luxuries +luxurious +luxuriously +luxury +lychee +lychees +lychgate +lychgates +lying +lymph +lymphatic +lynch +lynched +lynches +lynching +lynchings +lynchpin +lynchpins +lynx +lynxes +lyre +lyrebird +lyrebirds +lyres +lyric +lyrical +lyrically +lyricism +lyricist +lyricists +lyrics +ma +mac +macabre +macadam +macadamia +macadamias +macaroni +macaroon +macaroons +macaw +macaws +mace +macerate +macerated +macerates +macerating +maces +machete +machetes +machinations +machine +machined +machinery +machines +machining +machinist +machinists +machismo +macho +mack +mackerel +mackintosh +mackintoshes +macks +macrame +macro +macrobiotic +macrocosm +macrocosms +macroeconomic +macroeconomics +macros +macs +mad +madam +madams +madcap +madden +maddened +maddening +maddeningly +maddens +madder +maddest +made +madhouse +madhouses +madly +madman +madmen +madness +madrigal +madrigals +madwoman +madwomen +maelstrom +maelstroms +maestro +maestros +mafia +mafias +mafiosi +mafioso +mag +magazine +magazines +magenta +maggot +maggots +magic +magical +magically +magician +magicians +magicked +magicking +magics +magisterial +magisterially +magistracy +magistrate +magistrates +magma +magnanimity +magnanimous +magnanimously +magnate +magnates +magnesia +magnesium +magnet +magnetic +magnetically +magnetise +magnetised +magnetises +magnetising +magnetism +magnetize +magnetized +magnetizes +magnetizing +magneto +magnetos +magnets +magnification +magnifications +magnificence +magnificent +magnificently +magnified +magnifier +magnifiers +magnifies +magnify +magnifying +magnitude +magnitudes +magnolia +magnolias +magnum +magnums +magpie +magpies +mags +maharaja +maharajah +maharajahs +maharajas +maharanee +maharanees +maharani +maharanis +mahjong +mahogany +maid +maiden +maidenhair +maidenhead +maidenheads +maidens +maids +mail +mailbag +mailbags +mailbox +mailboxes +mailed +mailer +mailers +mailing +mailings +mailman +mailmen +mails +mailshot +mailshots +maim +maimed +maiming +maims +main +mainframe +mainframes +mainland +mainline +mainlined +mainlines +mainlining +mainly +mains +mainsail +mainsails +mainspring +mainsprings +mainstay +mainstays +mainstream +mainstreams +maintain +maintained +maintaining +maintains +maintenance +maisonette +maisonettes +maize +majestic +majestically +majesties +majesty +major +majordomo +majordomos +majored +majorette +majorettes +majoring +majorities +majority +majors +make +makeover +makeovers +maker +makers +makes +makeshift +makeup +makeweight +makeweights +making +makings +malachite +maladies +maladjusted +maladjustment +maladministration +maladroit +maladroitly +maladroitness +malady +malaise +malapropism +malapropisms +malaria +malarial +malarkey +malcontent +malcontents +male +malefactor +malefactors +maleness +males +malevolence +malevolent +malevolently +malfeasance +malformation +malformations +malformed +malfunction +malfunctioned +malfunctioning +malfunctions +malice +malicious +maliciously +malign +malignancies +malignancy +malignant +malignantly +maligned +maligning +malignity +maligns +malinger +malingered +malingerer +malingerers +malingering +malingers +mall +mallard +mallards +malleability +malleable +mallet +mallets +malls +malnourished +malnutrition +malodorous +malpractice +malpractices +malt +malted +malting +maltreat +maltreated +maltreating +maltreatment +maltreats +malts +mam +mama +mamas +mamba +mambas +mamma +mammal +mammalian +mammals +mammary +mammas +mammies +mammogram +mammograms +mammography +mammoth +mammoths +mammy +mams +man +manacle +manacled +manacles +manacling +manage +manageable +managed +management +managements +manager +manageress +manageresses +managerial +managers +manages +managing +manana +manatee +manatees +mandala +mandalas +mandarin +mandarins +mandate +mandated +mandates +mandating +mandatory +mandible +mandibles +mandolin +mandolins +mandrake +mandrakes +mandrill +mandrills +mane +manes +maneuver +maneuverability +maneuverable +maneuvered +maneuvering +maneuverings +maneuvers +manful +manfully +manganese +mange +manger +mangers +mangetout +mangetouts +mangier +mangiest +mangle +mangled +mangles +mangling +mango +mangoes +mangos +mangrove +mangroves +mangy +manhandle +manhandled +manhandles +manhandling +manhole +manholes +manhood +manhunt +manhunts +mania +maniac +maniacal +maniacally +maniacs +manias +manic +manically +manicure +manicured +manicures +manicuring +manicurist +manicurists +manifest +manifestation +manifestations +manifested +manifesting +manifestly +manifesto +manifestoes +manifestos +manifests +manifold +manifolds +manikin +manikins +manila +manilla +manioc +manipulate +manipulated +manipulates +manipulating +manipulation +manipulations +manipulative +manipulator +manipulators +mankind +manky +manlier +manliest +manliness +manly +manna +manned +mannequin +mannequins +manner +mannered +mannerism +mannerisms +manners +mannikin +mannikins +manning +mannish +mannishly +manoeuvrability +manoeuvrable +manoeuvre +manoeuvred +manoeuvres +manoeuvring +manoeuvrings +manor +manorial +manors +manpower +manque +mans +mansard +mansards +manse +manservant +manses +mansion +mansions +manslaughter +mantel +mantelpiece +mantelpieces +mantels +mantelshelf +mantelshelves +mantis +mantises +mantle +mantled +mantlepiece +mantlepieces +mantles +mantling +mantra +mantras +manual +manually +manuals +manufacture +manufactured +manufacturer +manufacturers +manufactures +manufacturing +manure +manured +manures +manuring +manuscript +manuscripts +many +map +maple +maples +mapped +mapping +maps +mar +maracas +maraschino +marathon +marathons +marauder +marauders +marauding +marble +marbled +marbles +march +marched +marcher +marchers +marches +marching +marchioness +marchionesses +mare +mares +margarine +margarita +margaritas +marge +margin +marginal +marginalisation +marginalise +marginalised +marginalises +marginalising +marginalization +marginalize +marginalized +marginalizes +marginalizing +marginally +marginals +margins +marigold +marigolds +marihuana +marijuana +marimba +marimbas +marina +marinade +marinaded +marinades +marinading +marinas +marinate +marinated +marinates +marinating +marine +mariner +mariners +marines +marionette +marionettes +marital +maritime +marjoram +mark +markdown +markdowns +marked +markedly +marker +markers +market +marketability +marketable +marketed +marketeer +marketeers +marketer +marketers +marketing +marketplace +marketplaces +markets +marking +markings +marks +marksman +marksmanship +marksmen +markup +markups +marlin +marlins +marmalade +marmoset +marmosets +marmot +marmots +maroon +marooned +marooning +maroons +marque +marquee +marquees +marques +marquess +marquesses +marquetry +marquis +marquises +marred +marriage +marriageable +marriages +married +marries +marring +marrow +marrows +marry +marrying +mars +marsh +marshal +marshaled +marshaling +marshalled +marshalling +marshals +marshes +marshland +marshlands +marshmallow +marshmallows +marshy +marsupial +marsupials +mart +marten +martens +martial +martin +martinet +martinets +martini +martinis +martins +marts +martyr +martyrdom +martyred +martyring +martyrs +marvel +marveled +marveling +marvelled +marvelling +marvellous +marvellously +marvelous +marvelously +marvels +marzipan +mas +mascara +mascaras +mascot +mascots +masculine +masculinity +mash +mashed +masher +mashers +mashes +mashing +mask +masked +masking +masks +masochism +masochist +masochistic +masochists +mason +masonry +masons +masque +masquerade +masqueraded +masquerades +masquerading +masques +mass +massacre +massacred +massacres +massacring +massage +massaged +massages +massaging +massed +masses +masseur +masseurs +masseuse +masseuses +massif +massifs +massing +massive +massively +mast +mastectomies +mastectomy +master +masterclass +masterclasses +mastered +masterful +masterfully +mastering +masterly +mastermind +masterminded +masterminding +masterminds +masterpiece +masterpieces +masters +masterstroke +masterstrokes +masterwork +masterworks +mastery +masthead +mastheads +mastic +masticate +masticated +masticates +masticating +mastication +mastiff +mastiffs +mastitis +masts +masturbate +masturbated +masturbates +masturbating +masturbation +masturbatory +mat +matador +matadors +match +matchbox +matchboxes +matched +matches +matching +matchless +matchmaker +matchmakers +matchmaking +matchstick +matchsticks +matchwood +mate +mated +mater +material +materialisation +materialise +materialised +materialises +materialising +materialism +materialist +materialistic +materialists +materialization +materialize +materialized +materializes +materializing +materially +materials +maternal +maternally +maternity +maters +mates +matey +mateys +math +mathematical +mathematically +mathematician +mathematicians +mathematics +maths +matinee +matinees +mating +matins +matriarch +matriarchal +matriarchies +matriarchs +matriarchy +matrices +matricide +matriculate +matriculated +matriculates +matriculating +matriculation +matrimonial +matrimony +matrix +matrixes +matron +matronly +matrons +mats +matt +matte +matted +matter +mattered +mattering +matters +matting +mattins +mattress +mattresses +maturation +mature +matured +maturely +maturer +matures +maturest +maturing +maturity +matzo +matzos +maudlin +maul +mauled +mauling +mauls +mausoleum +mausoleums +mauve +maven +mavens +maverick +mavericks +maw +mawkish +mawkishly +mawkishness +maws +max +maxed +maxes +maxim +maxima +maximal +maximisation +maximise +maximised +maximises +maximising +maximization +maximize +maximized +maximizes +maximizing +maxims +maximum +maximums +maxing +may +maybe +mayday +maydays +mayflies +mayfly +mayhem +mayo +mayonnaise +mayor +mayoral +mayoralty +mayoress +mayoresses +mayors +maypole +maypoles +maze +mazes +me +mead +meadow +meadows +meager +meagre +meal +meals +mealtime +mealtimes +mealy +mean +meander +meandered +meandering +meanderings +meanders +meaner +meanest +meanie +meanies +meaning +meaningful +meaningfully +meaningfulness +meaningless +meaninglessly +meaninglessness +meanings +meanly +meanness +means +meant +meantime +meanwhile +meany +measles +measlier +measliest +measly +measurable +measurably +measure +measured +measurement +measurements +measures +measuring +meat +meatball +meatballs +meatier +meatiest +meatloaf +meatloaves +meats +meaty +mecca +meccas +mechanic +mechanical +mechanically +mechanics +mechanisation +mechanise +mechanised +mechanises +mechanising +mechanism +mechanisms +mechanistic +mechanistically +mechanization +mechanize +mechanized +mechanizes +mechanizing +med +medal +medalist +medalists +medallion +medallions +medallist +medallists +medals +meddle +meddled +meddler +meddlers +meddles +meddlesome +meddling +media +mediaeval +median +medians +mediate +mediated +mediates +mediating +mediation +mediator +mediators +medic +medical +medically +medicals +medicated +medication +medications +medicinal +medicinally +medicine +medicines +medico +medicos +medics +medieval +mediocre +mediocrities +mediocrity +meditate +meditated +meditates +meditating +meditation +meditations +meditative +meditatively +medium +mediums +medley +medleys +meek +meeker +meekest +meekly +meekness +meet +meeting +meetings +meets +mega +megabucks +megabyte +megabytes +megahertz +megalith +megalithic +megaliths +megalomania +megalomaniac +megalomaniacs +megaphone +megaphones +megastar +megastars +megaton +megatons +megawatt +megawatts +melamine +melancholia +melancholic +melancholy +melange +melanges +melanin +melanoma +melanomas +melee +melees +mellifluous +mellow +mellowed +mellower +mellowest +mellowing +mellows +melodic +melodies +melodious +melodiously +melodrama +melodramas +melodramatic +melodramatically +melody +melon +melons +melt +meltdown +meltdowns +melted +melting +melts +member +members +membership +memberships +membrane +membranes +memento +mementoes +mementos +memo +memoir +memoirs +memorabilia +memorable +memorably +memoranda +memorandum +memorandums +memorial +memorialise +memorialised +memorialises +memorialising +memorialize +memorialized +memorializes +memorializing +memorials +memories +memorise +memorised +memorises +memorising +memorize +memorized +memorizes +memorizing +memory +memos +memsahib +memsahibs +men +menace +menaced +menaces +menacing +menacingly +menage +menagerie +menageries +menages +mend +mendacious +mendacity +mended +mender +menders +mendicant +mendicants +mending +mends +menfolk +menial +meningitis +menopausal +menopause +menorah +menorahs +menses +menstrual +menstruate +menstruated +menstruates +menstruating +menstruation +menswear +mental +mentalities +mentality +mentally +menthol +mentholated +mention +mentioned +mentioning +mentions +mentor +mentoring +mentors +menu +menus +meow +meowed +meowing +meows +mercantile +mercenaries +mercenary +merchandise +merchandised +merchandises +merchandising +merchant +merchants +mercies +merciful +mercifully +merciless +mercilessly +mercurial +mercury +mercy +mere +merely +meres +merest +meretricious +merge +merged +merger +mergers +merges +merging +meridian +meridians +meringue +meringues +merino +merinos +merit +merited +meriting +meritocracies +meritocracy +meritocratic +meritorious +merits +mermaid +mermaids +merrier +merriest +merrily +merriment +merry +mesa +mesas +mescalin +mescaline +mesh +meshed +meshes +meshing +mesmeric +mesmerise +mesmerised +mesmerises +mesmerising +mesmerize +mesmerized +mesmerizes +mesmerizing +mess +message +messaged +messages +messaging +messed +messenger +messengers +messes +messiah +messiahs +messianic +messier +messiest +messily +messing +messy +met +metabolic +metabolise +metabolised +metabolises +metabolising +metabolism +metabolisms +metabolize +metabolized +metabolizes +metabolizing +metal +metalanguage +metalanguages +metalled +metallic +metallurgical +metallurgist +metallurgists +metallurgy +metals +metalwork +metamorphose +metamorphosed +metamorphoses +metamorphosing +metamorphosis +metaphor +metaphorical +metaphorically +metaphors +metaphysical +metaphysics +mete +meted +meteor +meteoric +meteorite +meteorites +meteorological +meteorologist +meteorologists +meteorology +meteors +meter +metered +metering +meters +metes +methadone +methane +methanol +methinks +method +methodical +methodically +methodological +methodologically +methodologies +methodology +methods +methought +meths +meticulous +meticulously +meticulousness +metier +metiers +meting +metre +metres +metric +metrical +metrication +metro +metronome +metronomes +metropolis +metropolises +metropolitan +metros +mettle +mew +mewed +mewing +mews +mezzanine +mezzanines +mezzo +mezzos +mi +miaow +miaowed +miaowing +miaows +miasma +miasmas +mic +mica +mice +mick +mickey +mickeys +micks +micro +microbe +microbes +microbiological +microbiologist +microbiologists +microbiology +microchip +microchips +microcomputer +microcomputers +microcosm +microcosms +microeconomics +microelectronic +microelectronics +microfiche +microfiches +microfilm +microfilmed +microfilming +microfilms +microlight +microlights +micrometer +micrometers +micrometre +micrometres +micron +microns +microorganism +microorganisms +microphone +microphones +microprocessor +microprocessors +micros +microscope +microscopes +microscopic +microscopically +microsecond +microseconds +microsurgery +microwavable +microwave +microwaveable +microwaved +microwaves +microwaving +mics +mid +midair +midday +middle +middlebrow +middleman +middlemen +middles +middleweight +middleweights +middling +midfield +midfielder +midfielders +midge +midges +midget +midgets +midnight +midpoint +midpoints +midriff +midriffs +midsection +midsections +midshipman +midshipmen +midsize +midsized +midst +midstream +midsummer +midterm +midtown +midway +midways +midweek +midwife +midwifery +midwinter +midwives +mien +miffed +might +mightier +mightiest +mightily +mighty +migraine +migraines +migrant +migrants +migrate +migrated +migrates +migrating +migration +migrations +migratory +mike +mikes +mild +milder +mildest +mildew +mildewed +mildly +mildness +mile +mileage +mileages +mileometer +mileometers +milepost +mileposts +miles +milestone +milestones +milieu +milieus +milieux +militancy +militant +militantly +militants +militaries +militarily +militarise +militarised +militarises +militarising +militarism +militarist +militaristic +militarists +militarize +militarized +militarizes +militarizing +military +militate +militated +militates +militating +militia +militiaman +militiamen +militias +milk +milked +milkier +milkiest +milking +milkmaid +milkmaids +milkman +milkmen +milks +milkshake +milkshakes +milky +mill +milled +millennia +millennial +millennium +millenniums +millepede +millepedes +miller +millers +millet +millibar +millibars +milligram +milligramme +milligrammes +milligrams +milliliter +milliliters +millilitre +millilitres +millimeter +millimeters +millimetre +millimetres +milliner +milliners +millinery +milling +million +millionaire +millionaires +millionairess +millionairesses +millions +millionth +millionths +millipede +millipedes +millisecond +milliseconds +millpond +millponds +mills +millstone +millstones +milometer +milometers +mime +mimed +mimes +mimetic +mimic +mimicked +mimicking +mimicry +mimics +miming +mimosa +mimosas +minaret +minarets +mince +minced +mincemeat +mincer +mincers +minces +mincing +mind +minded +minder +minders +mindful +minding +mindless +mindlessly +mindlessness +minds +mindset +mindsets +mine +mined +minefield +minefields +miner +mineral +mineralogist +mineralogists +mineralogy +minerals +miners +mines +minestrone +minesweeper +minesweepers +mingle +mingled +mingles +mingling +mingy +mini +miniature +miniatures +miniaturisation +miniaturise +miniaturised +miniaturises +miniaturising +miniaturization +miniaturize +miniaturized +miniaturizes +miniaturizing +minibar +minibars +minibus +minibuses +minicab +minicabs +minicam +minicams +minicomputer +minicomputers +minim +minima +minimal +minimalism +minimalist +minimalists +minimally +minimise +minimised +minimises +minimising +minimize +minimized +minimizes +minimizing +minims +minimum +minimums +mining +minion +minions +minis +miniscule +miniseries +miniskirt +miniskirts +minister +ministered +ministerial +ministering +ministers +ministrations +ministries +ministry +minivan +minivans +mink +minks +minnow +minnows +minor +minored +minoring +minorities +minority +minors +minster +minsters +minstrel +minstrels +mint +minted +minting +mints +minty +minuet +minuets +minus +minuscule +minuses +minute +minuted +minutely +minutes +minutest +minutiae +minuting +minx +minxes +miracle +miracles +miraculous +miraculously +mirage +mirages +mire +mired +mires +mirror +mirrored +mirroring +mirrors +mirth +mirthless +mirthlessly +misadventure +misadventures +misanthrope +misanthropes +misanthropic +misanthropist +misanthropists +misanthropy +misapplication +misapplications +misapplied +misapplies +misapply +misapplying +misapprehension +misapprehensions +misappropriate +misappropriated +misappropriates +misappropriating +misappropriation +misbegotten +misbehave +misbehaved +misbehaves +misbehaving +misbehavior +misbehaviour +miscalculate +miscalculated +miscalculates +miscalculating +miscalculation +miscalculations +miscarriage +miscarriages +miscarried +miscarries +miscarry +miscarrying +miscast +miscasting +miscasts +miscegenation +miscellaneous +miscellanies +miscellany +mischance +mischances +mischief +mischievous +mischievously +mischievousness +misconceived +misconception +misconceptions +misconduct +misconstruction +misconstructions +misconstrue +misconstrued +misconstrues +misconstruing +miscount +miscounted +miscounting +miscounts +miscreant +miscreants +misdeed +misdeeds +misdemeanor +misdemeanors +misdemeanour +misdemeanours +misdiagnose +misdiagnosed +misdiagnoses +misdiagnosing +misdiagnosis +misdirect +misdirected +misdirecting +misdirection +misdirects +miser +miserable +miserably +miseries +miserliness +miserly +misers +misery +misfire +misfired +misfires +misfiring +misfit +misfits +misfortune +misfortunes +misgiving +misgivings +misguided +misguidedly +mishandle +mishandled +mishandles +mishandling +mishap +mishaps +mishear +misheard +mishearing +mishears +mishit +mishits +mishitting +mishmash +misinform +misinformation +misinformed +misinforming +misinforms +misinterpret +misinterpretation +misinterpretations +misinterpreted +misinterpreting +misinterprets +misjudge +misjudged +misjudgement +misjudgements +misjudges +misjudging +misjudgment +misjudgments +mislaid +mislay +mislaying +mislays +mislead +misleading +misleadingly +misleads +misled +mismanage +mismanaged +mismanagement +mismanages +mismanaging +mismatch +mismatched +mismatches +mismatching +misnamed +misnomer +misnomers +misogynist +misogynistic +misogynists +misogyny +misplace +misplaced +misplaces +misplacing +misprint +misprints +mispronounce +mispronounced +mispronounces +mispronouncing +mispronunciation +mispronunciations +misquotation +misquotations +misquote +misquoted +misquotes +misquoting +misread +misreading +misreadings +misreads +misreport +misreported +misreporting +misreports +misrepresent +misrepresentation +misrepresentations +misrepresented +misrepresenting +misrepresents +misrule +miss +missal +missals +missed +misses +misshapen +missile +missiles +missing +mission +missionaries +missionary +missions +missis +missive +missives +misspell +misspelled +misspelling +misspellings +misspells +misspelt +misspend +misspending +misspends +misspent +misstate +misstated +misstatement +misstatements +misstates +misstating +misstep +missteps +missus +mist +mistake +mistaken +mistakenly +mistakes +mistaking +misted +mister +misters +mistier +mistiest +mistime +mistimed +mistimes +mistiming +misting +mistletoe +mistook +mistreat +mistreated +mistreating +mistreatment +mistreats +mistress +mistresses +mistrial +mistrials +mistrust +mistrusted +mistrustful +mistrustfully +mistrusting +mistrusts +mists +misty +misunderstand +misunderstanding +misunderstandings +misunderstands +misunderstood +misuse +misused +misuses +misusing +mite +miter +miters +mites +mitigate +mitigated +mitigates +mitigating +mitigation +mitre +mitres +mitt +mitten +mittens +mitts +mix +mixed +mixer +mixers +mixes +mixing +mixture +mixtures +mnemonic +mnemonics +mo +moan +moaned +moaner +moaners +moaning +moans +moat +moated +moats +mob +mobbed +mobbing +mobile +mobiles +mobilisation +mobilise +mobilised +mobilises +mobilising +mobility +mobilization +mobilize +mobilized +mobilizes +mobilizing +mobs +mobster +mobsters +moccasin +moccasins +mocha +mock +mocked +mockery +mocking +mockingbird +mockingbirds +mockingly +mocks +mod +modal +modals +mode +model +modeled +modeler +modelers +modeling +modelled +modeller +modellers +modelling +models +modem +modems +moderate +moderated +moderately +moderates +moderating +moderation +moderator +moderators +modern +modernise +modernised +modernises +modernising +modernism +modernist +modernistic +modernists +modernity +modernization +modernize +modernized +modernizes +modernizing +modes +modest +modestly +modesty +modicum +modification +modifications +modified +modifier +modifiers +modifies +modify +modifying +modish +modishly +mods +modular +modulate +modulated +modulates +modulating +modulation +modulations +module +modules +moggie +moggies +moggy +mogul +moguls +mohair +moi +moist +moisten +moistened +moistening +moistens +moister +moistest +moistness +moisture +moisturise +moisturised +moisturiser +moisturisers +moisturises +moisturising +moisturize +moisturized +moisturizer +moisturizers +moisturizes +moisturizing +molar +molars +molasses +mold +molded +molder +moldered +moldering +molders +moldier +moldiest +molding +moldings +molds +moldy +mole +molecular +molecule +molecules +molehill +molehills +moles +moleskin +molest +molestation +molested +molester +molesters +molesting +molests +moll +mollified +mollifies +mollify +mollifying +molls +mollusc +molluscs +mollusk +mollusks +mollycoddle +mollycoddled +mollycoddles +mollycoddling +molt +molted +molten +molting +molts +molybdenum +mom +moment +momentarily +momentary +momentous +moments +momentum +momma +mommas +mommies +mommy +moms +monarch +monarchic +monarchical +monarchies +monarchist +monarchists +monarchs +monarchy +monasteries +monastery +monastic +monasticism +monetarism +monetarist +monetarists +monetary +money +moneybags +moneybox +moneyboxes +moneyed +moneylender +moneylenders +moneymaker +moneymakers +moneys +mongol +mongolism +mongols +mongoose +mongooses +mongrel +mongrels +monied +monies +moniker +monikers +monitor +monitored +monitoring +monitors +monk +monkey +monkeyed +monkeying +monkeys +monks +mono +monochromatic +monochrome +monocle +monocles +monogamous +monogamy +monogram +monogrammed +monograms +monograph +monographs +monolingual +monolith +monolithic +monoliths +monolog +monologs +monologue +monologues +mononucleosis +monoplane +monoplanes +monopolies +monopolisation +monopolise +monopolised +monopolises +monopolising +monopolistic +monopolization +monopolize +monopolized +monopolizes +monopolizing +monopoly +monorail +monorails +monosyllabic +monosyllable +monosyllables +monotheism +monotheist +monotheistic +monotheists +monotone +monotones +monotonous +monotonously +monotony +monsoon +monsoons +monster +monsters +monstrosities +monstrosity +monstrous +monstrously +montage +montages +month +monthlies +monthly +months +monument +monumental +monumentally +monuments +moo +mooch +mooched +mooches +mooching +mood +moodier +moodiest +moodily +moodiness +moods +moody +mooed +mooing +moon +moonbeam +moonbeams +mooned +mooning +moonless +moonlight +moonlighted +moonlighting +moonlights +moonlit +moons +moonscape +moonscapes +moonshine +moonstruck +moor +moored +moorhen +moorhens +mooring +moorings +moorland +moorlands +moors +moos +moose +moot +mooted +mooting +moots +mop +mope +moped +mopeds +mopes +moping +mopped +moppet +moppets +mopping +mops +moraine +moraines +moral +morale +moralise +moralised +moralises +moralising +moralist +moralistic +moralists +moralities +morality +moralize +moralized +moralizes +moralizing +morally +morals +morass +morasses +moratoria +moratorium +moratoriums +morbid +morbidity +morbidly +mordant +mordantly +more +moreish +moreover +mores +morgue +morgues +moribund +morn +morning +mornings +morns +morocco +moron +moronic +morons +morose +morosely +moroseness +morph +morphed +morpheme +morphemes +morphia +morphine +morphing +morphological +morphology +morphs +morrow +morsel +morsels +mortal +mortality +mortally +mortals +mortar +mortarboard +mortarboards +mortars +mortgage +mortgaged +mortgagee +mortgagees +mortgages +mortgaging +mortice +mortices +mortician +morticians +mortification +mortified +mortifies +mortify +mortifying +mortise +mortises +mortuaries +mortuary +mosaic +mosaics +mosey +moseyed +moseying +moseys +mosh +moshed +moshes +moshing +mosque +mosques +mosquito +mosquitoes +mosquitos +moss +mosses +mossy +most +mostly +mote +motel +motels +motes +motet +motets +moth +mothball +mothballed +mothballing +mothballs +mother +motherboard +motherboards +mothered +motherfucker +motherfuckers +motherhood +mothering +motherland +motherlands +motherless +motherly +mothers +moths +motif +motifs +motion +motioned +motioning +motionless +motions +motivate +motivated +motivates +motivating +motivation +motivations +motivator +motivators +motive +motiveless +motives +motley +motocross +motor +motorbike +motorbikes +motorboat +motorboats +motorcade +motorcades +motorcycle +motorcycles +motorcyclist +motorcyclists +motored +motoring +motorised +motorist +motorists +motorized +motorman +motormen +motormouth +motormouths +motors +motorway +motorways +mottled +motto +mottoes +mottos +mould +moulded +moulder +mouldered +mouldering +moulders +mouldier +mouldiest +moulding +mouldings +moulds +mouldy +moult +moulted +moulting +moults +mound +mounds +mount +mountain +mountaineer +mountaineering +mountaineers +mountainous +mountains +mountainside +mountainsides +mountaintop +mountaintops +mounted +mounting +mountings +mounts +mourn +mourned +mourner +mourners +mournful +mournfully +mournfulness +mourning +mourns +mouse +mouser +mousers +mousetrap +mousetraps +mousey +moussaka +moussakas +mousse +mousses +moustache +moustached +moustaches +moustachioed +mousy +mouth +mouthed +mouthful +mouthfuls +mouthing +mouthpiece +mouthpieces +mouths +mouthwash +mouthwashes +mouthy +movable +move +moveable +moved +movement +movements +mover +movers +moves +movie +moviegoer +moviegoers +movies +moving +movingly +mow +mowed +mower +mowers +mowing +mown +mows +moxie +mozzarella +much +muck +mucked +muckier +muckiest +mucking +muckraking +mucks +mucky +mucous +mucus +mud +muddied +muddier +muddies +muddiest +muddle +muddled +muddles +muddling +muddy +muddying +mudflap +mudflaps +mudflat +mudflats +mudguard +mudguards +mudpack +mudpacks +mudslide +mudslides +muesli +muezzin +muezzins +muff +muffed +muffin +muffing +muffins +muffle +muffled +muffler +mufflers +muffles +muffling +muffs +mufti +muftis +mug +mugged +mugger +muggers +muggier +muggiest +mugging +muggings +muggins +muggy +mugs +mujaheddin +mulatto +mulattoes +mulattos +mulberries +mulberry +mulch +mulched +mulches +mulching +mule +mules +mulish +mull +mullah +mullahs +mulled +mullet +mullets +mulligatawny +mulling +mullion +mullioned +mullions +mulls +multicolored +multicoloured +multicultural +multiculturalism +multifaceted +multifarious +multilateral +multilingual +multimedia +multimillionaire +multimillionaires +multinational +multinationals +multiparty +multiple +multiples +multiplex +multiplexes +multiplication +multiplicity +multiplied +multiplies +multiply +multiplying +multiracial +multitasking +multitude +multitudes +multitudinous +mum +mumble +mumbled +mumbles +mumbling +mummies +mummified +mummifies +mummify +mummifying +mummy +mumps +mums +munch +munched +munches +munchies +munching +mundane +municipal +municipalities +municipality +munificence +munificent +munition +munitions +mural +murals +murder +murdered +murderer +murderers +murderess +murderesses +murdering +murderous +murderously +murders +murk +murkier +murkiest +murky +murmur +murmured +murmuring +murmurings +murmurs +muscle +muscled +muscleman +musclemen +muscles +muscling +muscly +muscular +musculature +muse +mused +muses +museum +museums +mush +musher +mushers +mushier +mushiest +mushroom +mushroomed +mushrooming +mushrooms +mushy +music +musical +musicality +musically +musicals +musician +musicians +musicianship +musicologist +musicologists +musicology +musing +musk +musket +musketeer +musketeers +muskets +muskrat +muskrats +musky +muslin +muss +mussed +mussel +mussels +musses +mussing +must +mustache +mustaches +mustachioed +mustang +mustangs +mustard +muster +mustered +mustering +musters +musts +musty +mutability +mutable +mutant +mutants +mutate +mutated +mutates +mutating +mutation +mutations +mute +muted +mutely +mutes +mutilate +mutilated +mutilates +mutilating +mutilation +mutilations +mutineer +mutineers +muting +mutinied +mutinies +mutinous +mutinously +mutiny +mutinying +mutt +mutter +muttered +muttering +mutterings +mutters +mutton +mutts +mutual +mutuality +mutually +muzak +muzzily +muzziness +muzzle +muzzled +muzzles +muzzling +muzzy +my +mycology +mynah +mynahs +myopia +myopic +myopically +myriad +myriads +myrrh +myrtle +myrtles +myself +mysteries +mysterious +mysteriously +mystery +mystic +mystical +mystically +mysticism +mystics +mystification +mystified +mystifies +mystify +mystifying +mystique +myth +mythic +mythical +mythological +mythologies +mythology +myths +myxomatosis +naan +naans +nab +nabbed +nabbing +nabob +nabobs +nabs +nacho +nachos +nadir +nae +naff +naffer +naffest +nag +nagged +nagging +nags +nah +nail +nailed +nailing +nails +naive +naively +naivete +naivety +naked +nakedly +nakedness +name +named +nameless +namely +nameplate +nameplates +names +namesake +namesakes +naming +nan +nannies +nanny +nanosecond +nanoseconds +nans +nap +napalm +nape +napes +naphtha +napkin +napkins +napped +nappies +napping +nappy +naps +narc +narcissi +narcissism +narcissist +narcissistic +narcissists +narcissus +narcissuses +narcolepsy +narcoleptic +narcotic +narcotics +narcs +nark +narked +narking +narks +narky +narrate +narrated +narrates +narrating +narration +narrations +narrative +narratives +narrator +narrators +narrow +narrowed +narrower +narrowest +narrowing +narrowly +narrowness +narrows +narwhal +narwhals +nasal +nasally +nascent +nastier +nastiest +nastily +nastiness +nasturtium +nasturtiums +nasty +natch +nation +national +nationalisation +nationalisations +nationalise +nationalised +nationalises +nationalising +nationalism +nationalist +nationalistic +nationalists +nationalities +nationality +nationalization +nationalizations +nationalize +nationalized +nationalizes +nationalizing +nationally +nationals +nationhood +nations +nationwide +native +natives +nativity +natter +nattered +nattering +natters +nattier +nattiest +nattily +natty +natural +naturalisation +naturalise +naturalised +naturalises +naturalising +naturalism +naturalist +naturalistic +naturalists +naturalization +naturalize +naturalized +naturalizes +naturalizing +naturally +naturalness +naturals +nature +natures +naturism +naturist +naturists +naught +naughtier +naughtiest +naughtily +naughtiness +naughty +nausea +nauseate +nauseated +nauseates +nauseating +nauseatingly +nauseous +nauseously +nauseousness +nautical +nautically +naval +nave +navel +navels +naves +navies +navigability +navigable +navigate +navigated +navigates +navigating +navigation +navigational +navigator +navigators +navvies +navvy +navy +nay +neanderthal +neanderthals +near +nearby +neared +nearer +nearest +nearing +nearly +nearness +nears +nearside +nearsighted +neat +neaten +neatened +neatening +neatens +neater +neatest +neatly +neatness +nebula +nebulae +nebular +nebulas +nebulous +nebulousness +necessaries +necessarily +necessary +necessitate +necessitated +necessitates +necessitating +necessities +necessity +neck +neckband +neckbands +necked +neckerchief +neckerchiefs +necking +necklace +necklaced +necklaces +necklacing +necklacings +neckline +necklines +necks +necktie +neckties +necromancer +necromancers +necromancy +necrophilia +necrophiliac +necrophiliacs +necropolis +necropolises +nectar +nectarine +nectarines +nee +need +needed +needful +needier +neediest +needing +needle +needled +needlepoint +needles +needless +needlessly +needlewoman +needlewomen +needlework +needling +needs +needy +nefarious +nefariously +nefariousness +negate +negated +negates +negating +negation +negative +negatived +negatively +negatives +negativing +negativity +neglect +neglected +neglectful +neglecting +neglects +negligee +negligees +negligence +negligent +negligently +negligible +negligibly +negotiable +negotiate +negotiated +negotiates +negotiating +negotiation +negotiations +negotiator +negotiators +negro +negroid +neigh +neighbor +neighborhood +neighborhoods +neighboring +neighborliness +neighborly +neighbors +neighbour +neighbourhood +neighbourhoods +neighbouring +neighbourliness +neighbourly +neighbours +neighed +neighing +neighs +neither +nemesis +neoclassical +neocolonialism +neocolonialist +neolithic +neologism +neologisms +neon +neonatal +neophyte +neophytes +nephew +nephews +nepotism +nepotistic +nerd +nerdier +nerdiest +nerds +nerdy +nerve +nerved +nerveless +nerves +nerving +nervous +nervously +nervousness +nervy +nest +nested +nesting +nestle +nestled +nestles +nestling +nestlings +nests +net +netball +nether +netherworld +nets +nett +netted +netting +nettle +nettled +nettles +nettling +network +networked +networking +networks +neural +neuralgia +neuralgic +neurological +neurologist +neurologists +neurology +neuron +neurone +neurones +neurons +neuroses +neurosis +neurotic +neurotically +neurotics +neuter +neutered +neutering +neuters +neutral +neutralisation +neutralise +neutralised +neutralises +neutralising +neutralist +neutralists +neutrality +neutralization +neutralize +neutralized +neutralizes +neutralizing +neutrally +neutrals +neutron +neutrons +never +nevermore +nevertheless +new +newborn +newborns +newcomer +newcomers +newer +newest +newfangled +newly +newlywed +newlyweds +newness +news +newsagent +newsagents +newscast +newscaster +newscasters +newscasts +newsflash +newsflashes +newsgroup +newsgroups +newshound +newshounds +newsletter +newsletters +newspaper +newspaperman +newspapermen +newspapers +newsprint +newsreader +newsreaders +newsreel +newsreels +newsroom +newsrooms +newsstand +newsstands +newsworthy +newsy +newt +newts +next +nexus +nexuses +niacin +nib +nibble +nibbled +nibbles +nibbling +nibs +nice +nicely +niceness +nicer +nicest +niceties +nicety +niche +niches +nick +nicked +nickel +nickels +nicking +nickname +nicknamed +nicknames +nicknaming +nicks +nicotine +niece +nieces +niff +niffy +niftier +niftiest +nifty +niggardly +nigger +niggers +niggle +niggled +niggles +niggling +nigh +night +nightcap +nightcaps +nightclothes +nightclub +nightclubbing +nightclubs +nightdress +nightdresses +nightfall +nightgown +nightgowns +nightie +nighties +nightingale +nightingales +nightlife +nightlight +nightlights +nightlong +nightly +nightmare +nightmares +nightmarish +nights +nightshirt +nightshirts +nightspot +nightspots +nightstand +nightstands +nightstick +nightsticks +nightwatchman +nightwatchmen +nightwear +nihilism +nihilist +nihilistic +nihilists +nil +nimble +nimbleness +nimbler +nimblest +nimbly +nimbus +nimbuses +nimby +nincompoop +nincompoops +nine +ninepins +nines +nineteen +nineteens +nineteenth +nineteenths +nineties +ninetieth +ninetieths +ninety +ninja +ninjas +ninnies +ninny +ninth +ninths +nip +nipped +nipper +nippers +nipping +nipple +nipples +nippy +nips +nirvana +nit +nitpick +nitpicked +nitpicker +nitpickers +nitpicking +nitpicks +nitrate +nitrates +nitrogen +nitroglycerin +nitroglycerine +nits +nitwit +nitwits +nix +nixed +nixes +nixing +no +nob +nobble +nobbled +nobbles +nobbling +nobility +noble +nobleman +noblemen +nobler +nobles +noblest +noblewoman +noblewomen +nobly +nobodies +nobody +nobs +nocturnal +nocturnally +nocturne +nocturnes +nod +nodal +nodded +nodding +noddle +noddles +node +nodes +nods +nodular +nodule +nodules +noes +noggin +noggins +nohow +noise +noiseless +noiselessly +noisemaker +noisemakers +noises +noisier +noisiest +noisily +noisiness +noisome +noisy +nomad +nomadic +nomads +nomenclature +nomenclatures +nominal +nominally +nominate +nominated +nominates +nominating +nomination +nominations +nominative +nominatives +nominee +nominees +nonagenarian +nonagenarians +nonalcoholic +nonaligned +nonchalance +nonchalant +nonchalantly +noncombatant +noncombatants +noncommittal +noncommittally +nonconformism +nonconformist +nonconformists +nonconformity +nondescript +none +nonentities +nonentity +nonessential +nonetheless +nonexistence +nonexistent +nonfat +nonfiction +nonintervention +nonpayment +nonplused +nonplussed +nonprofit +nonresident +nonresidents +nonsense +nonsensical +nonsmoker +nonsmokers +nonsmoking +nonspecific +nonstandard +nonstarter +nonstarters +nonstick +nonstop +nonunion +nonverbal +nonviolent +nonwhite +nonwhites +noodle +noodled +noodles +noodling +nook +nookie +nooks +nooky +noon +noonday +noose +nooses +nope +nor +norm +normal +normalcy +normalisation +normalise +normalised +normalises +normalising +normality +normalization +normalize +normalized +normalizes +normalizing +normally +normative +norms +north +northbound +northeast +northeasterly +northeastern +northeastward +northeastwards +northerly +northern +northerner +northerners +northernmost +northward +northwards +northwest +northwesterly +northwestern +northwestward +northwestwards +nose +nosebag +nosebags +nosebleed +nosebleeds +nosed +nosedive +nosedived +nosedives +nosediving +nosegay +nosegays +noses +nosey +nosh +noshed +noshes +noshing +nosier +nosiest +nosiness +nosing +nostalgia +nostalgic +nostalgically +nostril +nostrils +nostrum +nostrums +nosy +not +notable +notables +notably +notaries +notary +notation +notations +notch +notched +notches +notching +note +notebook +notebooks +noted +notelet +notelets +notepad +notepads +notepaper +notes +noteworthy +nothing +nothingness +nothings +notice +noticeable +noticeably +noticeboard +noticeboards +noticed +notices +noticing +notifiable +notification +notifications +notified +notifies +notify +notifying +noting +notion +notional +notionally +notions +notoriety +notorious +notoriously +notwithstanding +nougat +nought +noughts +noun +nouns +nourish +nourished +nourishes +nourishing +nourishment +nous +nova +novae +novel +novelette +novelettes +novelist +novelists +novella +novellas +novels +novelties +novelty +novice +novices +now +nowadays +nowhere +nowt +noxious +nozzle +nozzles +nth +nuance +nuances +nub +nubile +nuclear +nuclei +nucleus +nude +nudes +nudge +nudged +nudges +nudging +nudism +nudist +nudists +nudity +nugatory +nugget +nuggets +nuisance +nuisances +nuke +nuked +nukes +nuking +nullified +nullifies +nullify +nullifying +nullity +numb +numbed +number +numbered +numbering +numberless +numbers +numbing +numbly +numbness +numbs +numbskull +numbskulls +numeracy +numeral +numerals +numerate +numerator +numerators +numerical +numerically +numerology +numerous +numinous +numismatic +numismatics +numismatist +numismatists +numskull +numskulls +nun +nuncio +nuncios +nunneries +nunnery +nuns +nuptial +nuptials +nurse +nursed +nursemaid +nursemaids +nurseries +nursery +nurseryman +nurserymen +nurses +nursing +nurture +nurtured +nurtures +nurturing +nut +nutcase +nutcases +nutcracker +nutcrackers +nuthouse +nuthouses +nutmeg +nutmegs +nutrient +nutrients +nutrition +nutritional +nutritionally +nutritionist +nutritionists +nutritious +nutritive +nuts +nutted +nutter +nutters +nuttier +nuttiest +nuttiness +nutting +nutty +nuzzle +nuzzled +nuzzles +nuzzling +nylon +nylons +nymph +nymphet +nymphets +nympho +nymphomania +nymphomaniac +nymphomaniacs +nymphos +nymphs +oaf +oafish +oafishness +oafs +oak +oaken +oaks +oakum +oar +oarlock +oarlocks +oars +oarsman +oarsmen +oarswoman +oarswomen +oases +oasis +oatcake +oatcakes +oath +oaths +oatmeal +oats +obduracy +obdurate +obdurately +obedience +obedient +obediently +obeisance +obeisances +obelisk +obelisks +obese +obesity +obey +obeyed +obeying +obeys +obfuscate +obfuscated +obfuscates +obfuscating +obfuscation +obfuscations +obit +obits +obituaries +obituary +object +objected +objectification +objecting +objection +objectionable +objections +objective +objectively +objectives +objectivity +objector +objectors +objects +obligate +obligated +obligates +obligating +obligation +obligations +obligatory +oblige +obliged +obliges +obliging +obligingly +oblique +obliquely +obliques +obliterate +obliterated +obliterates +obliterating +obliteration +oblivion +oblivious +obliviously +obliviousness +oblong +oblongs +obloquy +obnoxious +obnoxiously +obnoxiousness +oboe +oboes +oboist +oboists +obscene +obscenely +obscenities +obscenity +obscurantism +obscurantist +obscure +obscured +obscurely +obscurer +obscures +obscurest +obscuring +obscurities +obscurity +obsequies +obsequious +obsequiously +obsequiousness +observable +observably +observance +observances +observant +observation +observations +observatories +observatory +observe +observed +observer +observers +observes +observing +obsess +obsessed +obsesses +obsessing +obsession +obsessional +obsessionally +obsessions +obsessive +obsessively +obsessives +obsidian +obsolescence +obsolescent +obsolete +obstacle +obstacles +obstetric +obstetrician +obstetricians +obstetrics +obstinacy +obstinate +obstinately +obstreperous +obstreperousness +obstruct +obstructed +obstructing +obstruction +obstructionism +obstructionist +obstructionists +obstructions +obstructive +obstructively +obstructiveness +obstructs +obtain +obtainable +obtained +obtaining +obtains +obtrude +obtruded +obtrudes +obtruding +obtrusive +obtrusively +obtrusiveness +obtuse +obtusely +obtuseness +obverse +obviate +obviated +obviates +obviating +obvious +obviously +obviousness +occasion +occasional +occasionally +occasioned +occasioning +occasions +occidental +occult +occultist +occultists +occupancy +occupant +occupants +occupation +occupational +occupationally +occupations +occupied +occupier +occupiers +occupies +occupy +occupying +occur +occurred +occurrence +occurrences +occurring +occurs +ocean +oceanfront +oceangoing +oceanic +oceanographer +oceanographers +oceanography +oceans +ocelot +ocelots +och +ocher +ochre +ocker +ockers +octagon +octagonal +octagons +octane +octanes +octave +octaves +octet +octets +octogenarian +octogenarians +octopi +octopus +octopuses +ocular +oculist +oculists +odd +oddball +oddballs +odder +oddest +oddities +oddity +oddly +oddment +oddments +oddness +odds +ode +odes +odious +odium +odometer +odometers +odor +odorless +odorous +odors +odour +odourless +odours +odyssey +odysseys +oesophagus +oesophaguses +oestrogen +oeuvre +oeuvres +of +off +offal +offbeat +offed +offence +offences +offend +offended +offender +offenders +offending +offends +offense +offenses +offensive +offensively +offensiveness +offensives +offer +offered +offering +offerings +offers +offertories +offertory +offhand +offhandedly +offhandedness +office +officer +officers +offices +official +officialdom +officialese +officially +officials +officiate +officiated +officiates +officiating +officious +officiously +officiousness +offing +offish +offline +offload +offloaded +offloading +offloads +offs +offset +offsets +offsetting +offshoot +offshoots +offshore +offside +offspring +offstage +oft +often +oftentimes +ogle +ogled +ogles +ogling +ogre +ogres +oh +ohm +ohms +ohs +oi +oik +oiks +oil +oilcan +oilcans +oilcloth +oiled +oilfield +oilfields +oilier +oiliest +oiling +oilman +oilmen +oils +oilskin +oilskins +oily +oink +oinks +ointment +ointments +okay +okayed +okaying +okays +okra +old +olde +olden +older +oldest +oldie +oldies +oldish +oldster +ole +oleaginous +oleander +oleanders +olfactory +oligarch +oligarchies +oligarchs +oligarchy +olive +olives +ombudsman +ombudsmen +omega +omegas +omelet +omelets +omelette +omelettes +omen +omens +ominous +ominously +omission +omissions +omit +omits +omitted +omitting +omnibus +omnibuses +omnipotence +omnipotent +omnipresence +omnipresent +omniscience +omniscient +omnivore +omnivores +omnivorous +on +once +oncologist +oncologists +oncology +oncoming +one +oneness +onerous +onerousness +ones +oneself +onetime +ongoing +onion +onions +online +onlooker +onlookers +only +onomatopoeia +onomatopoeic +onrush +onset +onshore +onside +onslaught +onslaughts +onstage +onto +ontological +ontology +onus +onward +onwards +onyx +oodles +ooh +oohed +oohing +oohs +oomph +oops +ooze +oozed +oozes +oozing +oozy +op +opacity +opal +opalescence +opalescent +opals +opaque +opaquely +open +opencast +opened +opener +openers +opening +openings +openly +openness +opens +opera +operable +operas +operate +operated +operates +operatic +operatically +operating +operation +operational +operationally +operations +operative +operatives +operator +operators +operetta +operettas +ophthalmic +ophthalmologist +ophthalmologists +ophthalmology +opiate +opiates +opine +opined +opines +opining +opinion +opinionated +opinions +opium +opossum +opossums +opponent +opponents +opportune +opportunely +opportunism +opportunist +opportunistic +opportunistically +opportunists +opportunities +opportunity +oppose +opposed +opposes +opposing +opposite +opposites +opposition +oppositions +oppress +oppressed +oppresses +oppressing +oppression +oppressive +oppressively +oppressiveness +oppressor +oppressors +opprobrious +opprobrium +ops +opt +opted +optic +optical +optically +optician +opticians +optics +optimal +optimise +optimised +optimises +optimising +optimism +optimist +optimistic +optimistically +optimists +optimize +optimized +optimizes +optimizing +optimum +opting +option +optional +options +optometrist +optometrists +optometry +opts +opulence +opulent +opus +opuses +or +oracle +oracles +oracular +oral +orally +orals +orange +orangeade +orangeness +orangeries +orangery +oranges +orangutan +orangutans +oration +orations +orator +oratorical +oratories +oratorio +oratorios +orators +oratory +orb +orbit +orbital +orbitals +orbited +orbiting +orbits +orbs +orchard +orchards +orchestra +orchestral +orchestras +orchestrate +orchestrated +orchestrates +orchestrating +orchestration +orchestrations +orchid +orchids +ordain +ordained +ordaining +ordains +ordeal +ordeals +order +ordered +ordering +orderlies +orderliness +orderly +orders +ordinal +ordinals +ordinance +ordinances +ordinarily +ordinariness +ordinary +ordination +ordinations +ordnance +ordure +ore +oregano +ores +organ +organdy +organic +organically +organisation +organisational +organisations +organise +organised +organiser +organisers +organises +organising +organism +organisms +organist +organists +organization +organizational +organizations +organize +organized +organizer +organizers +organizes +organizing +organs +orgasm +orgasmic +orgasms +orgiastic +orgies +orgy +orient +oriental +orientalist +orientalists +orientals +orientate +orientated +orientates +orientating +orientation +orientations +oriented +orienteering +orienting +orients +orifice +orifices +origami +origin +original +originality +originally +originals +originate +originated +originates +originating +originator +originators +origins +oriole +orioles +ormolu +ornament +ornamental +ornamentation +ornamented +ornamenting +ornaments +ornate +ornately +ornery +ornithological +ornithologist +ornithologists +ornithology +orphan +orphanage +orphanages +orphaned +orphaning +orphans +orthodontic +orthodontics +orthodontist +orthodontists +orthodox +orthodoxies +orthodoxy +orthographic +orthographically +orthography +orthopaedic +orthopaedics +orthopedic +orthopedics +oscillate +oscillated +oscillates +oscillating +oscillation +oscillations +oscillator +oscillators +oscilloscope +oscilloscopes +osier +osiers +osmosis +osmotic +osprey +ospreys +ossification +ossified +ossifies +ossify +ossifying +ostensible +ostensibly +ostentation +ostentatious +ostentatiously +osteoarthritis +osteopath +osteopaths +osteopathy +osteoporosis +ostler +ostlers +ostracise +ostracised +ostracises +ostracising +ostracism +ostracize +ostracized +ostracizes +ostracizing +ostrich +ostriches +other +otherness +others +otherwise +otherworldly +otiose +otter +otters +ottoman +ottomans +ouch +ought +ounce +ounces +our +ours +ourselves +oust +ousted +ouster +ousters +ousting +ousts +out +outage +outages +outback +outbid +outbidding +outbids +outboard +outbound +outbreak +outbreaks +outbuilding +outbuildings +outburst +outbursts +outcast +outcasts +outclass +outclassed +outclasses +outclassing +outcome +outcomes +outcries +outcrop +outcropping +outcroppings +outcrops +outcry +outdated +outdid +outdistance +outdistanced +outdistances +outdistancing +outdo +outdoes +outdoing +outdone +outdoor +outdoors +outed +outer +outermost +outerwear +outface +outfaced +outfaces +outfacing +outfall +outfalls +outfield +outfielder +outfielders +outfit +outfits +outfitted +outfitter +outfitters +outfitting +outflank +outflanked +outflanking +outflanks +outflow +outflows +outfox +outfoxed +outfoxes +outfoxing +outgoing +outgoings +outgrew +outgrow +outgrowing +outgrown +outgrows +outgrowth +outgrowths +outguess +outguessed +outguesses +outguessing +outgun +outgunned +outgunning +outguns +outhouse +outhouses +outing +outings +outlandish +outlandishly +outlandishness +outlast +outlasted +outlasting +outlasts +outlaw +outlawed +outlawing +outlaws +outlay +outlays +outlet +outlets +outline +outlined +outlines +outlining +outlive +outlived +outlives +outliving +outlook +outlooks +outlying +outmaneuver +outmaneuvered +outmaneuvering +outmaneuvers +outmanoeuvre +outmanoeuvred +outmanoeuvres +outmanoeuvring +outmoded +outnumber +outnumbered +outnumbering +outnumbers +outpace +outpaced +outpaces +outpacing +outpatient +outpatients +outperform +outperformed +outperforming +outperforms +outplacement +outplay +outplayed +outplaying +outplays +outpoint +outpointed +outpointing +outpoints +outpost +outposts +outpouring +outpourings +output +outputs +outputting +outrage +outraged +outrageous +outrageously +outrages +outraging +outran +outrank +outranked +outranking +outranks +outre +outreach +outrider +outriders +outrigger +outriggers +outright +outrun +outrunning +outruns +outs +outsell +outselling +outsells +outshine +outshines +outshining +outshone +outside +outsider +outsiders +outsides +outsize +outsized +outskirts +outsmart +outsmarted +outsmarting +outsmarts +outsold +outsource +outsourced +outsources +outsourcing +outspoken +outspokenly +outspokenness +outspread +outstanding +outstandingly +outstretched +outstrip +outstripped +outstripping +outstrips +outta +outtake +outtakes +outvote +outvoted +outvotes +outvoting +outward +outwardly +outwards +outweigh +outweighed +outweighing +outweighs +outwit +outwith +outwits +outwitted +outwitting +outwork +outworker +outworkers +outworn +ouzo +ouzos +ova +oval +ovals +ovarian +ovaries +ovary +ovation +ovations +oven +ovenproof +ovens +ovenware +over +overachiever +overachievers +overact +overacted +overacting +overacts +overall +overalls +overarching +overarm +overate +overawe +overawed +overawes +overawing +overbalance +overbalanced +overbalances +overbalancing +overbearing +overbid +overbidding +overbids +overblown +overboard +overbook +overbooked +overbooking +overbooks +overburden +overburdened +overburdening +overburdens +overcame +overcast +overcharge +overcharged +overcharges +overcharging +overcoat +overcoats +overcome +overcomes +overcoming +overcompensate +overcompensated +overcompensates +overcompensating +overcook +overcooked +overcooking +overcooks +overcrowd +overcrowded +overcrowding +overcrowds +overdeveloped +overdid +overdo +overdoes +overdoing +overdone +overdose +overdosed +overdoses +overdosing +overdraft +overdrafts +overdraw +overdrawing +overdrawn +overdraws +overdressed +overdrew +overdrive +overdrives +overdue +overeat +overeaten +overeating +overeats +overemphasis +overemphasise +overemphasised +overemphasises +overemphasising +overemphasize +overemphasized +overemphasizes +overemphasizing +overestimate +overestimated +overestimates +overestimating +overestimation +overexcited +overexpose +overexposed +overexposes +overexposing +overexposure +overextend +overextended +overextending +overextends +overflew +overflies +overflight +overflights +overflow +overflowed +overflowing +overflown +overflows +overfly +overflying +overground +overgrown +overgrowth +overhand +overhang +overhanging +overhangs +overhaul +overhauled +overhauling +overhauls +overhead +overheads +overhear +overheard +overhearing +overhears +overheat +overheated +overheating +overheats +overhung +overindulge +overindulged +overindulgence +overindulges +overindulging +overjoyed +overkill +overladen +overlaid +overlain +overland +overlap +overlapped +overlapping +overlaps +overlay +overlaying +overlays +overleaf +overlie +overlies +overload +overloaded +overloading +overloads +overlong +overlook +overlooked +overlooking +overlooks +overlord +overlords +overly +overlying +overmanned +overmanning +overmuch +overnight +overpaid +overpass +overpasses +overpay +overpaying +overpays +overplay +overplayed +overplaying +overplays +overpopulated +overpopulation +overpower +overpowered +overpowering +overpoweringly +overpowers +overpriced +overproduce +overproduced +overproduces +overproducing +overproduction +overprotective +overqualified +overran +overrate +overrated +overrates +overrating +overreach +overreached +overreaches +overreaching +overreact +overreacted +overreacting +overreaction +overreactions +overreacts +overridden +override +overrides +overriding +overripe +overrode +overrule +overruled +overrules +overruling +overrun +overrunning +overruns +overs +oversaw +overseas +oversee +overseeing +overseen +overseer +overseers +oversees +oversell +overselling +oversells +oversensitive +oversexed +overshadow +overshadowed +overshadowing +overshadows +overshoes +overshoot +overshooting +overshoots +overshot +oversight +oversights +oversimplification +oversimplifications +oversimplified +oversimplifies +oversimplify +oversimplifying +oversize +oversized +oversleep +oversleeping +oversleeps +overslept +oversold +overspend +overspending +overspends +overspent +overspill +overstaffed +overstate +overstated +overstatement +overstatements +overstates +overstating +overstay +overstayed +overstaying +overstays +overstep +overstepped +overstepping +oversteps +overstock +overstocked +overstocking +overstocks +overstretch +overstretched +overstretches +overstretching +oversubscribed +oversupplies +oversupply +overt +overtake +overtaken +overtakes +overtaking +overtax +overtaxed +overtaxes +overtaxing +overthrew +overthrow +overthrowing +overthrown +overthrows +overtime +overtired +overtly +overtone +overtones +overtook +overture +overtures +overturn +overturned +overturning +overturns +overuse +overused +overuses +overusing +overvaluation +overvaluations +overvalue +overvalued +overvalues +overvaluing +overview +overviews +overweening +overweeningly +overweight +overwhelm +overwhelmed +overwhelming +overwhelmingly +overwhelms +overwinter +overwintered +overwintering +overwinters +overwork +overworked +overworking +overworks +overwrite +overwrites +overwriting +overwritten +overwrote +overwrought +ovoid +ovoids +ovulate +ovulated +ovulates +ovulating +ovulation +ovum +ow +owe +owed +owes +owing +owl +owlish +owlishly +owls +own +owned +owner +owners +ownership +owning +owns +ox +oxcart +oxcarts +oxen +oxford +oxfords +oxidation +oxide +oxides +oxidisation +oxidise +oxidised +oxidises +oxidising +oxidization +oxidize +oxidized +oxidizes +oxidizing +oxtail +oxtails +oxyacetylene +oxygen +oxygenate +oxygenated +oxygenates +oxygenating +oxygenation +oxymoron +oxymorons +oyster +oysters +ozone +pa +pace +paced +pacemaker +pacemakers +paces +pacesetter +pacesetters +pacey +pachyderm +pachyderms +pacier +paciest +pacific +pacifically +pacification +pacified +pacifier +pacifiers +pacifies +pacifism +pacifist +pacifists +pacify +pacifying +pacing +pack +package +packaged +packages +packaging +packed +packer +packers +packet +packets +packing +packs +pact +pacts +pacy +pad +padded +paddies +padding +paddle +paddled +paddles +paddling +paddock +paddocks +paddy +padlock +padlocked +padlocking +padlocks +padre +padres +pads +paean +paeans +paederast +paederasts +paediatric +paediatrician +paediatricians +paediatrics +paedophile +paedophiles +paedophilia +paella +paellas +pagan +paganism +pagans +page +pageant +pageantry +pageants +pageboy +pageboys +paged +pager +pagers +pages +paginate +paginated +paginates +paginating +pagination +paging +pagoda +pagodas +pah +paid +pail +pailful +pailfuls +pails +pain +pained +painful +painfully +paining +painkiller +painkillers +painkilling +painless +painlessly +pains +painstaking +painstakingly +paint +paintball +paintbox +paintboxes +paintbrush +paintbrushes +painted +painter +painterly +painters +painting +paintings +paints +paintwork +pair +paired +pairing +pairings +pairs +paisley +paisleys +pajamas +pal +palace +palaces +palaeolithic +palaeontologist +palaeontologists +palaeontology +palatable +palatal +palatals +palate +palates +palatial +palaver +pale +paled +paleface +palefaces +paleness +paleolithic +paleontologist +paleontologists +paleontology +paler +pales +palest +palette +palettes +palimony +palimpsest +palimpsests +palindrome +palindromes +paling +palings +palisade +palisades +palish +pall +pallbearer +pallbearers +palled +pallet +pallets +palliative +palliatives +pallid +palling +pallor +palls +pally +palm +palmed +palming +palmist +palmistry +palmists +palms +palmtop +palmtops +palomino +palominos +palpable +palpably +palpate +palpated +palpates +palpating +palpation +palpitate +palpitated +palpitates +palpitating +palpitation +palpitations +pals +palsied +palsy +paltry +pampas +pamper +pampered +pampering +pampers +pamphlet +pamphleteer +pamphleteers +pamphlets +pan +panacea +panaceas +panache +panama +panamas +panatella +panatellas +pancake +pancakes +pancreas +pancreases +pancreatic +panda +pandas +pandemic +pandemics +pandemonium +pander +pandered +pandering +panders +pane +panegyric +panegyrics +panel +paneled +paneling +panelist +panelists +panelled +panelling +panellist +panellists +panels +panes +pang +pangs +panhandle +panhandled +panhandler +panhandlers +panhandles +panhandling +panic +panicked +panicking +panicky +panics +panned +pannier +panniers +panning +panoply +panorama +panoramas +panoramic +panpipes +pans +pansies +pansy +pant +pantaloons +pantechnicon +pantechnicons +panted +pantheism +pantheist +pantheistic +pantheists +pantheon +pantheons +panther +panthers +panties +panting +panto +pantomime +pantomimes +pantos +pantries +pantry +pants +pantsuit +pantsuits +pantyhose +pap +papa +papacy +papal +paparazzi +paparazzo +papas +papaya +papayas +paper +paperback +paperbacks +paperbark +paperbarks +paperclip +paperclips +papered +papering +paperless +papers +paperweight +paperweights +paperwork +papery +papist +papists +papoose +papooses +pappy +paprika +papyri +papyrus +papyruses +par +para +parable +parables +parabola +parabolas +parabolic +paracetamol +paracetamols +parachute +parachuted +parachutes +parachuting +parachutist +parachutists +parade +paraded +parades +paradigm +paradigmatic +paradigms +parading +paradise +paradises +paradox +paradoxes +paradoxical +paradoxically +paraffin +paragliding +paragon +paragons +paragraph +paragraphs +parakeet +parakeets +paralegal +paralegals +parallel +paralleled +paralleling +parallelism +parallelisms +parallelogram +parallelograms +parallels +paralyse +paralysed +paralyses +paralysing +paralysis +paralytic +paralyze +paralyzed +paralyzes +paralyzing +paramedic +paramedical +paramedics +parameter +parameters +paramilitaries +paramilitary +paramount +paramountcy +paramour +paramours +paranoia +paranoiac +paranoiacs +paranoid +paranoids +paranormal +parapet +parapets +paraphernalia +paraphrase +paraphrased +paraphrases +paraphrasing +paraplegia +paraplegic +paraplegics +parapsychology +paraquat +paras +parascending +parasite +parasites +parasitic +parasitical +parasitically +parasol +parasols +paratroop +paratrooper +paratroopers +paratroops +parboil +parboiled +parboiling +parboils +parcel +parceled +parceling +parcelled +parcelling +parcels +parch +parched +parches +parching +parchment +parchments +pardner +pardners +pardon +pardonable +pardonably +pardoned +pardoning +pardons +pare +pared +parent +parentage +parental +parentheses +parenthesis +parenthetic +parenthetical +parenthetically +parenthood +parenting +parents +pares +pariah +pariahs +paring +parings +parish +parishes +parishioner +parishioners +parities +parity +park +parka +parkas +parked +parking +parkland +parks +parkway +parkways +parky +parlance +parlay +parlayed +parlaying +parlays +parley +parleyed +parleying +parleys +parliament +parliamentarian +parliamentarians +parliamentary +parliaments +parlor +parlors +parlour +parlours +parlous +parochial +parochialism +parochially +parodied +parodies +parodist +parodists +parody +parodying +parole +paroled +paroles +paroling +paroxysm +paroxysms +parquet +parricide +parricides +parried +parries +parrot +parroted +parroting +parrots +parry +parrying +parse +parsed +parses +parsimonious +parsimoniously +parsimony +parsing +parsley +parsnip +parsnips +parson +parsonage +parsonages +parsons +part +partake +partaken +partakes +partaking +parted +parthenogenesis +partial +partiality +partially +participant +participants +participate +participated +participates +participating +participation +participatory +participial +participle +participles +particle +particles +particular +particularise +particularised +particularises +particularising +particularities +particularity +particularize +particularized +particularizes +particularizing +particularly +particulars +partied +parties +parting +partings +partisan +partisans +partisanship +partition +partitioned +partitioning +partitions +partitive +partitives +partly +partner +partnered +partnering +partners +partnership +partnerships +partook +partridge +partridges +parts +parturition +party +partying +parvenu +parvenus +pas +pass +passable +passably +passage +passages +passageway +passageways +passbook +passbooks +passe +passed +passenger +passengers +passerby +passersby +passes +passim +passing +passion +passionate +passionately +passionflower +passionflowers +passionless +passions +passive +passively +passivisation +passivise +passivised +passivises +passivising +passivity +passivization +passivize +passivized +passivizes +passivizing +passkey +passkeys +passport +passports +password +passwords +past +pasta +paste +pasteboard +pasted +pastel +pastels +pastes +pasteurisation +pasteurise +pasteurised +pasteurises +pasteurising +pasteurization +pasteurize +pasteurized +pasteurizes +pasteurizing +pastiche +pastiches +pasties +pastille +pastilles +pastime +pastimes +pasting +pastor +pastoral +pastors +pastrami +pastries +pastry +pasts +pasturage +pasture +pastured +pastureland +pastures +pasturing +pasty +pat +patch +patched +patches +patchily +patchiness +patching +patchouli +patchwork +patchy +pate +patella +patellae +patent +patented +patenting +patently +patents +pater +paterfamilias +paternal +paternalism +paternalist +paternalistic +paternalists +paternally +paternity +paters +pates +path +pathetic +pathetically +pathfinder +pathfinders +pathogen +pathogenic +pathogens +pathological +pathologically +pathologist +pathologists +pathology +pathos +paths +pathway +pathways +patience +patient +patiently +patients +patina +patio +patios +patisserie +patisseries +patois +patriarch +patriarchal +patriarchies +patriarchs +patriarchy +patrician +patricians +patricide +patrimony +patriot +patriotic +patriotism +patriots +patrol +patrolled +patrolling +patrolman +patrolmen +patrols +patron +patronage +patroness +patronesses +patronise +patronised +patronises +patronising +patronisingly +patronize +patronized +patronizes +patronizing +patronizingly +patrons +pats +patsies +patsy +patted +patter +pattered +pattering +pattern +patterned +patterning +patterns +patters +patties +patting +patty +paucity +paunch +paunches +paunchier +paunchiest +paunchy +pauper +paupers +pause +paused +pauses +pausing +pave +paved +pavement +pavements +paves +pavilion +pavilions +paving +pavlova +pavlovas +paw +pawed +pawing +pawn +pawnbroker +pawnbrokers +pawned +pawning +pawns +pawnshop +pawnshops +pawpaw +pawpaws +paws +pay +payable +payback +paybacks +paycheck +paychecks +payday +payee +payees +payer +payers +paying +payload +payloads +paymaster +paymasters +payment +payments +payoff +payoffs +payola +payout +payouts +payphone +payphones +payroll +payrolls +pays +payslip +payslips +pea +peace +peaceable +peaceably +peaceful +peacefully +peacefulness +peacekeeper +peacekeepers +peacekeeping +peacemaker +peacemakers +peacetime +peach +peaches +peachy +peacock +peacocks +peahen +peahens +peak +peaked +peaking +peaks +peaky +peal +pealed +pealing +peals +peanut +peanuts +pear +pearl +pearls +pearly +pears +peas +peasant +peasantry +peasants +peashooter +peashooters +peat +peaty +pebble +pebbles +pebbly +pecan +pecans +peccadillo +peccadilloes +peccadillos +peck +pecked +pecker +peckers +pecking +peckish +pecks +pecs +pectin +pectoral +pectorals +peculiar +peculiarities +peculiarity +peculiarly +pecuniary +pedagogic +pedagogical +pedagogically +pedagogue +pedagogues +pedagogy +pedal +pedaled +pedaling +pedalled +pedalling +pedalo +pedalos +pedals +pedant +pedantic +pedantically +pedantry +pedants +peddle +peddled +peddler +peddlers +peddles +peddling +pederast +pederasts +pedestal +pedestals +pedestrian +pedestrianisation +pedestrianise +pedestrianised +pedestrianises +pedestrianising +pedestrianization +pedestrianize +pedestrianized +pedestrianizes +pedestrianizing +pedestrians +pediatric +pediatrician +pediatricians +pediatrics +pedicure +pedicures +pedigree +pedigreed +pedigrees +pediment +pediments +pedlar +pedlars +pedometer +pedometers +pedophile +pedophiles +pedophilia +pee +peed +peeing +peek +peekaboo +peeked +peeking +peeks +peel +peeled +peeler +peelers +peeling +peelings +peels +peep +peepbo +peeped +peephole +peepholes +peeping +peeps +peepshow +peepshows +peer +peerage +peerages +peered +peeress +peeresses +peering +peerless +peers +pees +peeve +peeved +peeves +peevish +peevishly +peevishness +peewee +peewees +peewit +peewits +peg +pegged +pegging +pegs +pejorative +pejoratively +peke +pekes +pekinese +pekineses +pekingese +pekingeses +pelagic +pelican +pelicans +pellet +pelleted +pellets +pellucid +pelmet +pelmets +pelt +pelted +pelting +pelts +pelvic +pelvis +pelvises +pen +penal +penalise +penalised +penalises +penalising +penalize +penalized +penalizes +penalizing +penalties +penalty +penance +penances +pence +penchant +penchants +pencil +penciled +penciling +pencilled +pencilling +pencils +pendant +pendants +pendent +pending +pendulous +pendulum +pendulums +penetrable +penetrate +penetrated +penetrates +penetrating +penetration +penetrative +penfriend +penfriends +penguin +penguins +penicillin +penile +peninsula +peninsular +peninsulas +penis +penises +penitence +penitent +penitential +penitentiaries +penitentiary +penitently +penitents +penknife +penknives +penlight +penlights +penmanship +pennant +pennants +penned +pennies +penniless +penning +penny +pennyworth +penologist +penologists +penology +pens +pension +pensionable +pensioned +pensioner +pensioners +pensioning +pensions +pensive +pensively +pentagon +pentagonal +pentagons +pentameter +pentameters +pentathlon +pentathlons +penthouse +penthouses +penultimate +penumbra +penumbras +penurious +penury +peonies +peony +people +peopled +peoples +peopling +pep +pepped +pepper +peppercorn +peppercorns +peppered +peppering +peppermint +peppermints +pepperoni +peppers +peppery +pepping +peps +per +perambulate +perambulated +perambulates +perambulating +perambulation +perambulations +perambulator +perambulators +perceive +perceived +perceives +perceiving +percent +percentage +percentages +percentile +percentiles +perceptible +perceptibly +perception +perceptions +perceptive +perceptively +perceptiveness +perceptual +perch +perchance +perched +perches +perching +percipient +percolate +percolated +percolates +percolating +percolator +percolators +percussion +percussionist +percussionists +percussive +perdition +peregrination +peregrinations +peregrine +peregrines +peremptorily +peremptory +perennial +perennially +perennials +perestroika +perfect +perfected +perfecting +perfection +perfectionism +perfectionist +perfectionists +perfectly +perfects +perfidious +perfidy +perforate +perforated +perforates +perforating +perforation +perforations +perforce +perform +performance +performances +performed +performer +performers +performing +performs +perfume +perfumed +perfumeries +perfumery +perfumes +perfuming +perfunctorily +perfunctory +pergola +pergolas +perhaps +peril +perilous +perilously +perils +perimeter +perimeters +perinatal +period +periodic +periodical +periodically +periodicals +periodontal +periods +peripatetic +peripheral +peripherally +peripherals +peripheries +periphery +periscope +periscopes +perish +perishable +perishables +perished +perisher +perishers +perishes +perishing +peritonitis +periwinkle +periwinkles +perjure +perjured +perjurer +perjurers +perjures +perjuring +perjury +perk +perked +perkier +perkiest +perkily +perkiness +perking +perks +perky +perm +permafrost +permanence +permanency +permanent +permanently +permanents +permeability +permeable +permeate +permeated +permeates +permeating +permeation +permed +perming +permissible +permission +permissions +permissive +permissiveness +permit +permits +permitted +permitting +perms +permutation +permutations +pernicious +pernickety +peroration +perorations +peroxide +peroxides +perpendicular +perpendicularly +perpendiculars +perpetrate +perpetrated +perpetrates +perpetrating +perpetration +perpetrator +perpetrators +perpetual +perpetually +perpetuate +perpetuated +perpetuates +perpetuating +perpetuation +perpetuity +perplex +perplexed +perplexedly +perplexes +perplexing +perplexities +perplexity +perquisite +perquisites +persecute +persecuted +persecutes +persecuting +persecution +persecutions +persecutor +persecutors +perseverance +persevere +persevered +perseveres +persevering +persimmon +persimmons +persist +persisted +persistence +persistent +persistently +persisting +persists +persnickety +person +persona +personable +personae +personage +personages +personal +personalise +personalised +personalises +personalising +personalities +personality +personalize +personalized +personalizes +personalizing +personally +personals +personas +personification +personifications +personified +personifies +personify +personifying +personnel +persons +perspective +perspectives +perspex +perspicacious +perspicacity +perspiration +perspire +perspired +perspires +perspiring +persuade +persuaded +persuades +persuading +persuasion +persuasions +persuasive +persuasively +persuasiveness +pert +pertain +pertained +pertaining +pertains +pertinacious +pertinacity +pertinence +pertinent +pertinently +pertly +perturb +perturbation +perturbations +perturbed +perturbing +perturbs +pertussis +perusal +peruse +perused +peruses +perusing +perv +pervade +pervaded +pervades +pervading +pervasive +pervasively +pervasiveness +perverse +perversely +perversion +perversions +perversity +pervert +perverted +perverting +perverts +pervs +peseta +pesetas +peskier +peskiest +pesky +peso +pesos +pessaries +pessary +pessimism +pessimist +pessimistic +pessimistically +pessimists +pest +pester +pestered +pestering +pesters +pesticide +pesticides +pestilence +pestilences +pestilential +pestle +pestles +pesto +pests +pet +petal +petals +peter +petered +petering +peters +petite +petition +petitioned +petitioner +petitioners +petitioning +petitions +petrel +petrels +petrifaction +petrified +petrifies +petrify +petrifying +petrochemical +petrochemicals +petrodollar +petrodollars +petrol +petrolatum +petroleum +petrology +pets +petted +petticoat +petticoats +pettier +pettiest +pettifogging +pettiness +petting +petty +petulance +petulant +petulantly +petunia +petunias +pew +pews +pewter +peyote +pfennig +pfennigs +phagocyte +phagocytes +phalanges +phalanx +phalanxes +phallic +phallus +phalluses +phantasies +phantasm +phantasmagoria +phantasmagorias +phantasmagorical +phantasms +phantasy +phantom +phantoms +pharaoh +pharaohs +pharmaceutical +pharmaceuticals +pharmacies +pharmacist +pharmacists +pharmacological +pharmacologist +pharmacologists +pharmacology +pharmacopeia +pharmacopeias +pharmacopoeia +pharmacopoeias +pharmacy +pharynx +pharynxes +phase +phased +phases +phasing +pheasant +pheasants +phenom +phenomena +phenomenal +phenomenally +phenomenological +phenomenology +phenomenon +phenomenons +phenoms +pheromone +pheromones +phew +phial +phials +philanderer +philanderers +philandering +philanthropic +philanthropist +philanthropists +philanthropy +philatelist +philatelists +philately +philharmonic +philistine +philistines +philistinism +philological +philologist +philology +philosopher +philosophers +philosophic +philosophical +philosophically +philosophies +philosophise +philosophised +philosophises +philosophising +philosophize +philosophized +philosophizes +philosophizing +philosophy +philter +philters +philtre +philtres +phlegm +phlegmatic +phobia +phobias +phobic +phobics +phoenix +phoenixes +phone +phonecard +phonecards +phoned +phoneme +phonemes +phonemic +phones +phonetic +phonetically +phonetician +phoneticians +phonetics +phoney +phoneys +phonic +phonics +phonier +phonies +phoniest +phoning +phonograph +phonographs +phonological +phonologist +phonologists +phonology +phony +phooey +phosphate +phosphates +phosphorescence +phosphorescent +phosphoric +phosphorus +photo +photocell +photocells +photocopied +photocopier +photocopiers +photocopies +photocopy +photocopying +photoelectric +photogenic +photograph +photographed +photographer +photographers +photographic +photographically +photographing +photographs +photography +photojournalism +photojournalist +photojournalists +photon +photons +photos +photosensitive +photostat +photostats +photostatted +photostatting +photosynthesis +phrasal +phrase +phrasebook +phrasebooks +phrased +phraseology +phrases +phrasing +phrenologist +phrenologists +phrenology +physical +physicality +physically +physicals +physician +physicians +physicist +physicists +physics +physio +physiognomies +physiognomy +physiological +physiologically +physiologist +physiologists +physiology +physios +physiotherapist +physiotherapists +physiotherapy +physique +physiques +pi +pianissimo +pianist +pianists +piano +pianoforte +pianofortes +pianola +pianolas +pianos +piazza +piazzas +pic +picador +picadors +picaresque +picayune +piccalilli +piccolo +piccolos +pick +pickax +pickaxe +pickaxes +picked +picker +pickers +picket +picketed +picketer +picketers +picketing +pickets +pickier +pickiest +picking +pickings +pickle +pickled +pickles +pickling +pickpocket +pickpockets +picks +picky +picnic +picnicked +picnicker +picnickers +picnicking +picnics +pics +pictorial +pictorially +picture +pictured +pictures +picturesque +picturesquely +picturesqueness +picturing +piddle +piddled +piddles +piddling +pidgin +pidgins +pie +piebald +piece +pieced +piecemeal +pieces +piecework +piecing +pied +pier +pierce +pierced +pierces +piercing +piercingly +piers +pies +piety +piezoelectric +piffle +piffling +pig +pigeon +pigeonhole +pigeonholed +pigeonholes +pigeonholing +pigeons +pigged +piggeries +piggery +piggies +pigging +piggy +piggyback +piggybacked +piggybacking +piggybacks +pigheaded +pigheadedly +pigheadedness +piglet +piglets +pigment +pigmentation +pigmented +pigments +pigmies +pigmy +pigpen +pigpens +pigs +pigskin +pigsties +pigsty +pigswill +pigtail +pigtails +pike +pikes +pilaf +pilaff +pilaffs +pilafs +pilaster +pilasters +pilau +pilaus +pilchard +pilchards +pile +piled +piles +pilfer +pilfered +pilfering +pilfers +pilgrim +pilgrimage +pilgrimages +pilgrims +piling +pilings +pill +pillage +pillaged +pillages +pillaging +pillar +pillared +pillars +pillbox +pillboxes +pillion +pillions +pillock +pillocks +pilloried +pillories +pillory +pillorying +pillow +pillowcase +pillowcases +pillowed +pillowing +pillows +pillowslip +pillowslips +pills +pilot +piloted +piloting +pilots +pimento +pimentos +pimiento +pimientos +pimp +pimped +pimpernel +pimpernels +pimping +pimple +pimpled +pimples +pimply +pimps +pin +pinafore +pinafores +pinball +pincer +pincers +pinch +pinched +pinches +pinching +pincushion +pincushions +pine +pineapple +pineapples +pined +pines +pinewood +pinewoods +piney +ping +pinged +pinging +pings +pinhead +pinheads +pinhole +pinholes +pining +pinion +pinioned +pinioning +pinions +pink +pinked +pinker +pinkest +pinkie +pinkies +pinking +pinkish +pinkness +pinko +pinkoes +pinkos +pinks +pinky +pinnacle +pinnacles +pinned +pinnies +pinning +pinny +pinpoint +pinpointed +pinpointing +pinpoints +pinprick +pinpricks +pins +pinstripe +pinstriped +pinstripes +pint +pints +pinwheel +pinwheels +piny +pioneer +pioneered +pioneering +pioneers +pious +piously +piousness +pip +pipe +piped +pipeline +pipelines +piper +pipers +pipes +pipette +pipettes +pipework +piping +pipit +pipits +pipped +pipping +pips +pipsqueak +pipsqueaks +piquancy +piquant +piquantly +pique +piqued +piques +piquing +piracy +piranha +piranhas +pirate +pirated +pirates +piratical +pirating +pirouette +pirouetted +pirouettes +pirouetting +piss +pissed +pisser +pissers +pisses +pissing +pissoir +pissoirs +pistachio +pistachios +piste +pistes +pistil +pistils +pistol +pistols +piston +pistons +pit +pita +pitas +pitch +pitched +pitcher +pitchers +pitches +pitchfork +pitchforked +pitchforking +pitchforks +pitching +piteous +piteously +pitfall +pitfalls +pith +pithead +pitheads +pithier +pithiest +pithily +pithy +pitiable +pitiably +pitied +pities +pitiful +pitifully +pitiless +pitilessly +pitilessness +piton +pitons +pits +pitta +pittance +pittances +pittas +pitted +pitting +pituitaries +pituitary +pity +pitying +pityingly +pivot +pivotal +pivoted +pivoting +pivots +pix +pixel +pixels +pixie +pixies +pixy +pizza +pizzas +pizzazz +pizzeria +pizzerias +pizzicato +placard +placards +placate +placated +placates +placating +placatory +place +placebo +placebos +placed +placement +placements +placenta +placentas +places +placid +placidity +placidly +placing +placings +plagiarise +plagiarised +plagiarises +plagiarising +plagiarism +plagiarisms +plagiarist +plagiarists +plagiarize +plagiarized +plagiarizes +plagiarizing +plague +plagued +plagues +plaguing +plaice +plaid +plaids +plain +plainchant +plainer +plainest +plainly +plainness +plains +plainsong +plainspoken +plaint +plaintiff +plaintiffs +plaintive +plaintively +plaints +plait +plaited +plaiting +plaits +plan +plane +planed +planeload +planeloads +planer +planers +planes +planet +planetarium +planetariums +planetary +planets +plangent +planing +plank +planking +planks +plankton +planned +planner +planners +planning +plans +plant +plantain +plantains +plantation +plantations +planted +planter +planters +planting +plantings +plants +plaque +plaques +plasma +plaster +plasterboard +plastered +plasterer +plasterers +plastering +plasters +plastic +plasticity +plastics +plate +plateau +plateaued +plateauing +plateaus +plateaux +plated +plateful +platefuls +platelet +platelets +plates +platform +platforms +plating +platinum +platitude +platitudes +platitudinous +platonic +platoon +platoons +platter +platters +platypus +platypuses +plaudits +plausibility +plausible +plausibly +play +playable +playback +playbacks +playbill +playbills +playboy +playboys +played +player +players +playful +playfully +playfulness +playground +playgrounds +playgroup +playgroups +playhouse +playhouses +playing +playmate +playmates +playpen +playpens +playroom +playrooms +plays +playschool +playschools +plaything +playthings +playtime +playwright +playwrights +plaza +plazas +plea +plead +pleaded +pleading +pleadingly +pleadings +pleads +pleas +pleasant +pleasanter +pleasantest +pleasantly +pleasantries +pleasantry +please +pleased +pleases +pleasing +pleasingly +pleasurable +pleasurably +pleasure +pleasures +pleat +pleated +pleats +pleb +plebby +plebe +plebeian +plebeians +plebes +plebiscite +plebiscites +plebs +plectra +plectrum +plectrums +pled +pledge +pledged +pledges +pledging +plenaries +plenary +plenipotentiaries +plenipotentiary +plenitude +plenteous +plentiful +plentifully +plenty +plenum +plenums +plethora +pleurisy +pliability +pliable +pliancy +pliant +pliantly +plied +pliers +plies +plight +plights +plimsoll +plimsolls +plinth +plinths +plod +plodded +plodder +plodders +plodding +plods +plonk +plonked +plonker +plonkers +plonking +plonks +plop +plopped +plopping +plops +plosive +plosives +plot +plots +plotted +plotter +plotters +plotting +plough +ploughed +ploughing +ploughman +ploughmen +ploughs +ploughshare +ploughshares +plover +plovers +plow +plowed +plowing +plowman +plowmen +plows +plowshare +plowshares +ploy +ploys +pluck +plucked +pluckier +pluckiest +plucking +plucks +plucky +plug +plugged +plugging +plughole +plugholes +plugs +plum +plumage +plumb +plumbed +plumber +plumbers +plumbing +plumbs +plume +plumed +plumes +plummet +plummeted +plummeting +plummets +plummy +plump +plumped +plumper +plumpest +plumping +plumpness +plumps +plums +plunder +plundered +plunderer +plunderers +plundering +plunders +plunge +plunged +plunger +plungers +plunges +plunging +plunk +plunked +plunking +plunks +pluperfect +pluperfects +plural +pluralism +pluralist +pluralistic +pluralists +pluralities +plurality +plurals +plus +pluses +plush +plusher +plushest +plushy +plusses +plutocracies +plutocracy +plutocrat +plutocratic +plutocrats +plutonium +ply +plying +plywood +pneumatic +pneumatically +pneumonia +poach +poached +poacher +poachers +poaches +poaching +pocked +pocket +pocketbook +pocketbooks +pocketed +pocketful +pocketfuls +pocketing +pocketknife +pocketknives +pockets +pockmark +pockmarked +pockmarks +pod +podgy +podiatrist +podiatrists +podiatry +podium +podiums +pods +poem +poems +poet +poetess +poetesses +poetic +poetical +poetically +poetry +poets +pogrom +pogroms +poignancy +poignant +poignantly +poinsettia +poinsettias +point +pointed +pointedly +pointer +pointers +pointier +pointiest +pointillism +pointillist +pointillists +pointing +pointless +pointlessly +pointlessness +points +pointy +poise +poised +poises +poising +poison +poisoned +poisoner +poisoners +poisoning +poisonous +poisons +poke +poked +poker +pokers +pokes +pokey +pokeys +pokier +pokiest +poking +poky +polar +polarisation +polarise +polarised +polarises +polarising +polarities +polarity +polarization +polarize +polarized +polarizes +polarizing +pole +poleaxe +poleaxed +poleaxes +poleaxing +polecat +polecats +polemic +polemical +polemicist +polemicists +polemics +poles +police +policed +policeman +policemen +polices +policewoman +policewomen +policies +policing +policy +policyholder +policyholders +policymaker +policymakers +polio +poliomyelitis +polish +polished +polishes +polishing +politburo +politburos +polite +politely +politeness +politer +politest +politic +political +politically +politician +politicians +politicisation +politicise +politicised +politicises +politicising +politicization +politicize +politicized +politicizes +politicizing +politicking +politico +politicos +politics +polities +polity +polka +polkas +poll +pollard +pollards +polled +pollen +pollinate +pollinated +pollinates +pollinating +pollination +polling +polls +pollster +pollsters +pollutant +pollutants +pollute +polluted +polluter +polluters +pollutes +polluting +pollution +polo +poltergeist +poltergeists +poly +polyandrous +polyandry +polyester +polyesters +polyethylene +polygamous +polygamy +polyglot +polyglots +polygon +polygonal +polygons +polygraph +polygraphs +polyhedron +polyhedrons +polymath +polymaths +polymer +polymers +polymorphic +polymorphous +polyp +polyphonic +polyphony +polypropylene +polyps +polys +polysemous +polystyrene +polysyllabic +polysyllable +polysyllables +polytechnic +polytechnics +polytheism +polytheistic +polythene +polyunsaturate +polyunsaturated +polyunsaturates +polyurethane +pom +pomander +pomanders +pomegranate +pomegranates +pommel +pommeled +pommeling +pommels +pommies +pommy +pomp +pompadour +pompadours +pompom +pompoms +pompon +pompons +pomposity +pompous +pompously +pompousness +poms +ponce +ponced +ponces +poncey +poncho +ponchos +poncing +poncy +pond +ponder +pondered +pondering +ponderous +ponderously +ponderousness +ponders +ponds +pone +pong +ponged +ponging +pongs +ponied +ponies +pontiff +pontiffs +pontifical +pontificate +pontificated +pontificates +pontificating +pontoon +pontoons +pony +ponying +ponytail +ponytails +poo +pooch +pooches +poodle +poodles +pooed +poof +poofs +poofter +poofters +pooh +poohed +poohing +poohs +pooing +pool +pooled +pooling +pools +poolside +poolsides +poop +pooped +pooping +poops +poor +poorer +poorest +poorhouse +poorhouses +poorly +poos +pop +popcorn +pope +popes +poplar +poplars +poplin +poppadom +poppadoms +poppadum +poppadums +popped +popper +poppers +poppet +poppets +poppies +popping +poppy +poppycock +pops +populace +popular +popularisation +popularise +popularised +popularises +popularising +popularity +popularization +popularize +popularized +popularizes +popularizing +popularly +populate +populated +populates +populating +population +populations +populism +populist +populists +populous +porcelain +porcelains +porch +porches +porcine +porcupine +porcupines +pore +pored +pores +poring +pork +porker +porkers +porkies +porky +porn +porno +pornographer +pornographers +pornographic +pornography +porosity +porous +porpoise +porpoises +porridge +port +portability +portable +portables +portal +portals +portcullis +portcullises +portend +portended +portending +portends +portent +portentous +portentously +portentousness +portents +porter +porterhouse +porterhouses +porters +portfolio +portfolios +porthole +portholes +portico +porticoes +porticos +portion +portioned +portioning +portions +portly +portmanteau +portmanteaus +portmanteaux +portrait +portraitist +portraitists +portraits +portraiture +portray +portrayal +portrayals +portrayed +portraying +portrays +ports +pose +posed +poser +posers +poses +poseur +poseurs +posh +posher +poshest +posies +posing +posit +posited +positing +position +positional +positioned +positioning +positions +positive +positively +positiveness +positives +positivism +positivist +positivists +positron +positrons +posits +poss +posse +posses +possess +possessed +possesses +possessing +possession +possessions +possessive +possessively +possessiveness +possessives +possessor +possessors +possibilities +possibility +possible +possibles +possibly +possum +possums +post +postage +postal +postbag +postbags +postbox +postboxes +postcard +postcards +postcode +postcodes +postdate +postdated +postdates +postdating +postdoctoral +posted +poster +posterior +posteriors +posterity +posters +postgraduate +postgraduates +posthaste +posthumous +posthumously +postie +posties +postindustrial +posting +postings +postman +postmark +postmarked +postmarking +postmarks +postmaster +postmasters +postmen +postmistress +postmistresses +postmodern +postmodernism +postmodernist +postmodernists +postmortem +postmortems +postnatal +postoperative +postpone +postponed +postponement +postponements +postpones +postponing +postprandial +posts +postscript +postscripts +postseason +postulate +postulated +postulates +postulating +postural +posture +postured +postures +posturing +postwar +postwoman +postwomen +posy +pot +potable +potash +potassium +potato +potatoes +potbellied +potbellies +potbelly +potboiler +potboilers +potency +potent +potentate +potentates +potential +potentialities +potentiality +potentially +potentials +potently +pothead +potheads +potholder +potholders +pothole +potholed +potholer +potholers +potholes +potholing +potion +potions +potluck +potlucks +potpourri +potpourris +pots +potted +potter +pottered +potteries +pottering +potters +pottery +potties +pottiness +potting +potty +pouch +pouches +pouf +pouffe +pouffes +poufs +poultice +poultices +poultry +pounce +pounced +pounces +pouncing +pound +poundage +pounded +pounding +poundings +pounds +pour +poured +pouring +pours +pout +pouted +pouting +pouts +poverty +pow +powder +powdered +powdering +powders +powdery +power +powerboat +powerboats +powered +powerful +powerfully +powerhouse +powerhouses +powering +powerless +powerlessness +powers +powwow +powwows +pox +poxy +practicability +practicable +practicably +practical +practicalities +practicality +practically +practicals +practice +practiced +practices +practicing +practise +practised +practises +practising +practitioner +practitioners +praesidium +praesidiums +pragmatic +pragmatically +pragmatics +pragmatism +pragmatist +pragmatists +prairie +prairies +praise +praised +praises +praiseworthy +praising +praline +pralines +pram +prams +prance +pranced +prances +prancing +prang +pranged +pranging +prangs +prank +pranks +prankster +pranksters +prat +prate +prated +prates +pratfall +pratfalls +prating +prats +prattle +prattled +prattler +prattlers +prattles +prattling +prawn +prawns +pray +prayed +prayer +prayers +praying +prays +preach +preached +preacher +preachers +preaches +preaching +preachy +preamble +preambles +prearrange +prearranged +prearranges +prearranging +precarious +precariously +precariousness +precast +precaution +precautionary +precautions +precede +preceded +precedence +precedent +precedents +precedes +preceding +precept +precepts +precinct +precincts +precious +preciously +preciousness +precipice +precipices +precipitate +precipitated +precipitately +precipitates +precipitating +precipitation +precipitations +precipitous +precipitously +precis +precise +precised +precisely +precises +precising +precision +preclude +precluded +precludes +precluding +preclusion +precocious +precociously +precociousness +precocity +precognition +preconceived +preconception +preconceptions +precondition +preconditions +precook +precooked +precooking +precooks +precursor +precursors +predate +predated +predates +predating +predator +predators +predatory +predecease +predeceased +predeceases +predeceasing +predecessor +predecessors +predestination +predestined +predetermination +predetermine +predetermined +predeterminer +predeterminers +predetermines +predetermining +predicament +predicaments +predicate +predicated +predicates +predicating +predicative +predicatively +predict +predictability +predictable +predictably +predicted +predicting +prediction +predictions +predictive +predictor +predictors +predicts +predigested +predilection +predilections +predispose +predisposed +predisposes +predisposing +predisposition +predispositions +predominance +predominant +predominantly +predominate +predominated +predominately +predominates +predominating +preemie +preemies +preeminent +preeminently +preempt +preempted +preempting +preemption +preemptive +preempts +preen +preened +preening +preens +prefab +prefabricated +prefabrication +prefabs +preface +prefaced +prefaces +prefacing +prefatory +prefect +prefects +prefecture +prefectures +prefer +preferable +preferably +preference +preferences +preferential +preferentially +preferment +preferred +preferring +prefers +prefigure +prefigured +prefigures +prefiguring +prefix +prefixed +prefixes +prefixing +pregnancies +pregnancy +pregnant +preheat +preheated +preheating +preheats +prehensile +prehistoric +prehistory +prejudge +prejudged +prejudges +prejudging +prejudgment +prejudgments +prejudice +prejudiced +prejudices +prejudicial +prejudicing +prelate +prelates +prelim +preliminaries +preliminary +prelims +preliterate +prelude +preludes +premarital +premature +prematurely +premeditated +premeditation +premenstrual +premier +premiere +premiered +premieres +premiering +premiers +premiership +premise +premised +premises +premiss +premisses +premium +premiums +premonition +premonitions +premonitory +prenatal +preoccupation +preoccupations +preoccupied +preoccupies +preoccupy +preoccupying +preordained +prep +prepackaged +prepacked +prepaid +preparation +preparations +preparatory +prepare +prepared +preparedness +prepares +preparing +preponderance +preponderant +preponderantly +preponderate +preponderated +preponderates +preponderating +preposition +prepositional +prepositions +prepossessing +preposterous +preposterously +prepped +preppie +preppies +prepping +preppy +preps +prepubescent +prequel +prequels +prerecord +prerecorded +prerecording +prerecords +preregister +preregistered +preregistering +preregisters +preregistration +prerequisite +prerequisites +prerogative +prerogatives +presage +presaged +presages +presaging +presbyteries +presbytery +preschool +preschooler +preschoolers +preschools +prescience +prescient +prescribe +prescribed +prescribes +prescribing +prescription +prescriptions +prescriptive +presence +presences +present +presentable +presentation +presentations +presented +presenter +presenters +presentiment +presentiments +presenting +presently +presents +preservation +preservationist +preservationists +preservative +preservatives +preserve +preserved +preserves +preserving +preset +presets +presetting +preside +presided +presidencies +presidency +president +presidential +presidents +presides +presiding +presidium +presidiums +press +pressed +presses +pressie +pressies +pressing +pressman +pressmen +pressure +pressured +pressures +pressuring +pressurisation +pressurise +pressurised +pressurises +pressurising +pressurization +pressurize +pressurized +pressurizes +pressurizing +prestige +prestigious +presto +presumably +presume +presumed +presumes +presuming +presumption +presumptions +presumptive +presumptuous +presumptuously +presumptuousness +presuppose +presupposed +presupposes +presupposing +presupposition +presuppositions +pretax +preteen +preteens +pretence +pretences +pretend +pretended +pretender +pretenders +pretending +pretends +pretense +pretenses +pretension +pretensions +pretentious +pretentiously +pretentiousness +preternatural +preternaturally +pretext +pretexts +prettier +prettiest +prettified +prettifies +prettify +prettifying +prettily +prettiness +pretty +pretzel +pretzels +prevail +prevailed +prevailing +prevails +prevalence +prevalent +prevaricate +prevaricated +prevaricates +prevaricating +prevarication +prevarications +prevent +preventable +preventative +prevented +preventing +prevention +preventive +prevents +preview +previewed +previewing +previews +previous +previously +prewar +prey +preyed +preying +preys +prezzie +prezzies +price +priced +priceless +prices +pricey +pricier +priciest +pricing +prick +pricked +pricking +prickle +prickled +prickles +prickling +prickly +pricks +pricy +pride +prided +prides +priding +pried +pries +priest +priestess +priestesses +priesthood +priestly +priests +prig +priggish +priggishness +prigs +prim +primacy +primaeval +primal +primaries +primarily +primary +primate +primates +prime +primed +primer +primers +primes +primeval +priming +primitive +primitiveness +primly +primogeniture +primordial +primp +primped +primping +primps +primrose +primroses +primula +primulas +prince +princely +princes +princess +princesses +principal +principalities +principality +principally +principals +principle +principled +principles +print +printable +printed +printer +printers +printing +printings +printmaking +printout +printouts +prints +prion +prions +prior +prioress +prioresses +priories +priorities +prioritisation +prioritise +prioritised +prioritises +prioritising +prioritization +prioritize +prioritized +prioritizes +prioritizing +priority +priors +priory +prise +prised +prises +prising +prism +prismatic +prisms +prison +prisoner +prisoners +prisons +prissier +prissiest +prissily +prissy +pristine +privacy +private +privateer +privateers +privately +privates +privation +privations +privatisation +privatisations +privatise +privatised +privatises +privatising +privatization +privatizations +privatize +privatized +privatizes +privatizing +privet +privies +privilege +privileged +privileges +privileging +privy +prize +prized +prizefight +prizefighter +prizefighters +prizefighting +prizefights +prizes +prizewinning +prizing +pro +proactive +proactively +probabilistic +probabilities +probability +probable +probably +probate +probated +probates +probating +probation +probationary +probationer +probationers +probe +probed +probes +probing +probings +probity +problem +problematic +problematical +problematically +problems +probosces +proboscis +proboscises +procedural +procedure +procedures +proceed +proceeded +proceeding +proceedings +proceeds +process +processed +processes +processing +procession +processional +processions +processor +processors +proclaim +proclaimed +proclaiming +proclaims +proclamation +proclamations +proclivities +proclivity +procrastinate +procrastinated +procrastinates +procrastinating +procrastination +procreate +procreated +procreates +procreating +procreation +proctor +proctored +proctoring +proctors +procurator +procurators +procure +procured +procurement +procurer +procurers +procures +procuring +prod +prodded +prodding +prodigal +prodigality +prodigally +prodigals +prodigies +prodigious +prodigiously +prodigy +prods +produce +produced +producer +producers +produces +producing +product +production +productions +productive +productively +productivity +products +prof +profanation +profane +profaned +profanes +profaning +profanities +profanity +profess +professed +professes +professing +profession +professional +professionalisation +professionalise +professionalised +professionalises +professionalising +professionalism +professionalization +professionalize +professionalized +professionalizes +professionalizing +professionally +professionals +professions +professor +professorial +professors +professorship +professorships +proffer +proffered +proffering +proffers +proficiency +proficient +profile +profiled +profiles +profiling +profit +profitability +profitable +profitably +profited +profiteer +profiteering +profiteers +profiterole +profiteroles +profiting +profits +profligacy +profligate +profound +profoundly +profs +profundities +profundity +profuse +profusely +profusion +progenitor +progenitors +progeny +progesterone +prognoses +prognosis +prognostication +prognostications +program +programmable +programmatic +programme +programmed +programmer +programmers +programmes +programming +programs +progress +progressed +progresses +progressing +progression +progressions +progressive +progressively +progressives +prohibit +prohibited +prohibiting +prohibition +prohibitions +prohibitive +prohibitively +prohibits +project +projected +projectile +projectiles +projecting +projection +projectionist +projectionists +projections +projector +projectors +projects +prolapse +prolapsed +prolapses +prole +proles +proletarian +proletarians +proletariat +proliferate +proliferated +proliferates +proliferating +proliferation +prolific +prolix +prolog +prologs +prologue +prologues +prolong +prolongation +prolongations +prolonged +prolonging +prolongs +prom +promenade +promenaded +promenades +promenading +prominence +prominent +prominently +promiscuity +promiscuous +promiscuously +promise +promised +promises +promising +promisingly +promo +promontories +promontory +promos +promote +promoted +promoter +promoters +promotes +promoting +promotion +promotional +promotions +prompt +prompted +prompter +prompters +prompting +promptings +promptly +prompts +proms +promulgate +promulgated +promulgates +promulgating +promulgation +prone +proneness +prong +prongs +pronominal +pronoun +pronounce +pronounceable +pronounced +pronouncement +pronouncements +pronounces +pronouncing +pronouns +pronto +pronunciation +pronunciations +proof +proofed +proofing +proofread +proofreader +proofreaders +proofreading +proofreads +proofs +prop +propaganda +propagandise +propagandised +propagandises +propagandising +propagandist +propagandists +propagandize +propagandized +propagandizes +propagandizing +propagate +propagated +propagates +propagating +propagation +propagator +propagators +propane +propel +propellant +propellants +propelled +propeller +propellers +propelling +propels +propensities +propensity +proper +properly +propertied +properties +property +prophecies +prophecy +prophesied +prophesies +prophesy +prophesying +prophet +prophetess +prophetesses +prophetic +prophetically +prophets +prophylactic +prophylactics +propinquity +propitiate +propitiated +propitiates +propitiating +propitiation +propitiatory +propitious +propitiously +proponent +proponents +proportion +proportional +proportionality +proportionally +proportionate +proportionately +proportioned +proportions +proposal +proposals +propose +proposed +proposer +proposers +proposes +proposing +proposition +propositioned +propositioning +propositions +propound +propounded +propounding +propounds +propped +propping +proprietary +proprieties +proprietor +proprietorial +proprietorially +proprietors +proprietress +proprietresses +propriety +props +propulsion +propulsive +pros +prosaic +prosaically +proscenium +prosceniums +prosciutto +proscribe +proscribed +proscribes +proscribing +proscription +proscriptions +prose +prosecute +prosecuted +prosecutes +prosecuting +prosecution +prosecutions +prosecutor +prosecutors +proselytise +proselytised +proselytiser +proselytisers +proselytises +proselytising +proselytize +proselytized +proselytizer +proselytizers +proselytizes +proselytizing +prosody +prospect +prospected +prospecting +prospective +prospector +prospectors +prospects +prospectus +prospectuses +prosper +prospered +prospering +prosperity +prosperous +prosperously +prospers +prostate +prostates +prostheses +prosthesis +prosthetic +prostitute +prostituted +prostitutes +prostituting +prostitution +prostrate +prostrated +prostrates +prostrating +prostration +prostrations +protagonist +protagonists +protean +protect +protected +protecting +protection +protectionism +protectionist +protectionists +protections +protective +protectively +protectiveness +protector +protectorate +protectorates +protectors +protects +protege +protegee +protegees +proteges +protein +proteins +protest +protestation +protestations +protested +protester +protesters +protesting +protestor +protestors +protests +protocol +protocols +proton +protons +protoplasm +prototype +prototypes +prototypical +protozoa +protozoan +protozoans +protozoon +protract +protracted +protracting +protraction +protractor +protractors +protracts +protrude +protruded +protrudes +protruding +protrusion +protrusions +protuberance +protuberances +protuberant +proud +prouder +proudest +proudly +prove +proved +proven +provenance +provenances +proverb +proverbial +proverbially +proverbs +proves +provide +provided +providence +provident +providential +providentially +providently +provider +providers +provides +providing +province +provinces +provincial +provincialism +provincially +provincials +proving +provision +provisional +provisionally +provisioned +provisioning +provisions +proviso +provisos +provocateur +provocateurs +provocation +provocations +provocative +provocatively +provoke +provoked +provokes +provoking +provost +provosts +prow +prowess +prowl +prowled +prowler +prowlers +prowling +prowls +prows +proxies +proximate +proximity +proxy +prude +prudence +prudent +prudently +prudery +prudes +prudish +prudishly +prudishness +prune +pruned +prunes +pruning +prurience +prurient +pruriently +pry +prying +psalm +psalms +psephologist +psephologists +psephology +pseud +pseudonym +pseudonymous +pseudonyms +pseuds +pseudy +psoriasis +psst +psych +psyche +psyched +psychedelia +psychedelic +psyches +psychiatric +psychiatrist +psychiatrists +psychiatry +psychic +psychical +psychically +psychics +psyching +psycho +psychoactive +psychoanalyse +psychoanalysed +psychoanalyses +psychoanalysing +psychoanalysis +psychoanalyst +psychoanalysts +psychoanalytic +psychoanalytically +psychoanalyze +psychoanalyzed +psychoanalyzes +psychoanalyzing +psychobabble +psychodrama +psychodramas +psychokinesis +psychokinetic +psychological +psychologically +psychologist +psychologists +psychology +psychometric +psychopath +psychopathic +psychopathology +psychopaths +psychos +psychoses +psychosis +psychosomatic +psychotherapist +psychotherapists +psychotherapy +psychotic +psychotics +psychotropic +psychs +pterodactyl +pterodactyls +pub +puberty +pubes +pubescent +pubic +public +publican +publicans +publication +publications +publicise +publicised +publicises +publicising +publicist +publicists +publicity +publicize +publicized +publicizes +publicizing +publicly +publish +published +publisher +publishers +publishes +publishing +pubs +puce +puck +pucker +puckered +puckering +puckers +puckish +pucks +pud +pudding +puddings +puddle +puddles +pudenda +pudgier +pudgiest +pudginess +pudgy +puds +puerile +puerility +puff +puffball +puffballs +puffed +puffer +puffers +puffier +puffiest +puffin +puffiness +puffing +puffins +puffs +puffy +pug +pugilism +pugilist +pugilistic +pugilists +pugnacious +pugnaciously +pugnacity +pugs +puke +puked +pukes +puking +pukka +pull +pulled +pullet +pullets +pulley +pulleys +pulling +pullover +pullovers +pulls +pulmonary +pulp +pulped +pulping +pulpit +pulpits +pulps +pulsar +pulsars +pulsate +pulsated +pulsates +pulsating +pulsation +pulsations +pulse +pulsed +pulses +pulsing +pulverisation +pulverise +pulverised +pulverises +pulverising +pulverization +pulverize +pulverized +pulverizes +pulverizing +puma +pumas +pumice +pummel +pummeled +pummeling +pummelled +pummelling +pummels +pump +pumped +pumpernickel +pumping +pumpkin +pumpkins +pumps +pun +punch +punchbag +punchbags +punched +punches +punchier +punchiest +punching +punchline +punchlines +punchy +punctilious +punctiliously +punctiliousness +punctual +punctuality +punctually +punctuate +punctuated +punctuates +punctuating +punctuation +puncture +punctured +punctures +puncturing +pundit +pundits +pungency +pungent +pungently +punier +puniest +punish +punishable +punished +punishes +punishing +punishingly +punishment +punishments +punitive +punitively +punk +punks +punned +punnet +punnets +punning +puns +punster +punsters +punt +punted +punter +punters +punting +punts +puny +pup +pupa +pupae +pupal +pupas +pupate +pupated +pupates +pupating +pupil +pupils +puppet +puppeteer +puppeteers +puppetry +puppets +puppies +puppy +pups +purchase +purchased +purchaser +purchasers +purchases +purchasing +purdah +pure +purebred +puree +pureed +pureeing +purees +purely +purer +purest +purgative +purgatives +purgatory +purge +purged +purges +purging +purification +purified +purifier +purifiers +purifies +purify +purifying +purism +purist +purists +puritan +puritanical +puritanically +puritanism +puritans +purity +purl +purled +purling +purloin +purloined +purloining +purloins +purls +purple +purples +purplish +purport +purported +purportedly +purporting +purports +purpose +purposeful +purposefully +purposefulness +purposeless +purposelessly +purposelessness +purposely +purposes +purr +purred +purring +purrs +purse +pursed +purser +pursers +purses +pursing +pursuance +pursuant +pursue +pursued +pursuer +pursuers +pursues +pursuing +pursuit +pursuits +purulent +purvey +purveyed +purveying +purveyor +purveyors +purveys +purview +pus +push +pushbike +pushbikes +pushcart +pushcarts +pushchair +pushchairs +pushed +pusher +pushers +pushes +pushier +pushiest +pushily +pushiness +pushing +pushover +pushovers +pushpin +pushpins +pushy +pusillanimity +pusillanimous +pusillanimously +puss +pusses +pussies +pussy +pussycat +pussycats +pussyfoot +pussyfooted +pussyfooting +pussyfoots +pustule +pustules +put +putative +putrefaction +putrefied +putrefies +putrefy +putrefying +putrid +puts +putsch +putsches +putt +putted +putter +puttered +puttering +putters +putting +putts +putty +putz +putzes +puzzle +puzzled +puzzlement +puzzler +puzzlers +puzzles +puzzling +pygmies +pygmy +pyjama +pyjamas +pylon +pylons +pyramid +pyramidal +pyramids +pyre +pyres +pyrites +pyromania +pyromaniac +pyromaniacs +pyrotechnic +pyrotechnics +python +pythons +pzazz +qua +quack +quacked +quackery +quacking +quacks +quad +quadrangle +quadrangles +quadrant +quadrants +quadraphonic +quadrilateral +quadrilaterals +quadrille +quadrilles +quadriplegic +quadriplegics +quadrophonic +quadruped +quadrupeds +quadruple +quadrupled +quadruples +quadruplet +quadruplets +quadrupling +quads +quaff +quaffed +quaffing +quaffs +quagmire +quagmires +quail +quailed +quailing +quails +quaint +quainter +quaintest +quaintly +quaintness +quake +quaked +quakes +quaking +qualification +qualifications +qualified +qualifier +qualifiers +qualifies +qualify +qualifying +qualitative +qualitatively +qualities +quality +qualm +qualms +quandaries +quandary +quango +quangos +quanta +quantifiable +quantification +quantified +quantifier +quantifiers +quantifies +quantify +quantifying +quantitative +quantitatively +quantities +quantity +quantum +quarantine +quarantined +quarantines +quarantining +quark +quarks +quarrel +quarreled +quarreling +quarrelled +quarrelling +quarrels +quarrelsome +quarried +quarries +quarry +quarrying +quart +quarter +quarterback +quarterbacked +quarterbacking +quarterbacks +quarterdeck +quarterdecks +quartered +quarterfinal +quarterfinals +quartering +quarterlies +quarterly +quartermaster +quartermasters +quarters +quartet +quartets +quarto +quartos +quarts +quartz +quasar +quasars +quash +quashed +quashes +quashing +quatrain +quatrains +quaver +quavered +quavering +quavers +quavery +quay +quays +quayside +quaysides +queasier +queasiest +queasily +queasiness +queasy +queen +queenly +queens +queer +queerer +queerest +queers +quell +quelled +quelling +quells +quench +quenched +quenches +quenching +queried +queries +querulous +querulously +query +querying +quest +quested +questing +question +questionable +questioned +questioner +questioners +questioning +questioningly +questionnaire +questionnaires +questions +quests +queue +queued +queueing +queues +queuing +quibble +quibbled +quibbles +quibbling +quiche +quiches +quick +quicken +quickened +quickening +quickens +quicker +quickest +quickfire +quickie +quickies +quicklime +quickly +quickness +quicksand +quicksands +quicksilver +quickstep +quicksteps +quid +quiescence +quiescent +quiet +quieted +quieten +quietened +quietening +quietens +quieter +quietest +quieting +quietism +quietly +quietness +quiets +quietude +quiff +quiffs +quill +quills +quilt +quilted +quilting +quilts +quin +quince +quinces +quinine +quins +quint +quintessence +quintessential +quintessentially +quintet +quintets +quints +quintuplet +quintuplets +quip +quipped +quipping +quips +quirk +quirkier +quirkiest +quirks +quirky +quisling +quislings +quit +quite +quits +quitted +quitter +quitters +quitting +quiver +quivered +quivering +quivers +quixotic +quiz +quizzed +quizzes +quizzical +quizzically +quizzing +quoit +quoits +quorate +quorum +quorums +quota +quotable +quotas +quotation +quotations +quote +quoted +quotes +quoth +quotidian +quotient +quotients +quoting +qwerty +rabbi +rabbinic +rabbinical +rabbis +rabbit +rabbited +rabbiting +rabbits +rabble +rabid +rabidly +rabies +raccoon +raccoons +race +racecourse +racecourses +raced +racegoer +racegoers +racehorse +racehorses +racer +racers +races +racetrack +racetracks +racial +racialism +racialist +racialists +racially +racier +raciest +racily +raciness +racing +racism +racist +racists +rack +racked +racket +racketeer +racketeering +racketeers +rackets +racking +racks +raconteur +raconteurs +racoon +racoons +racquet +racquets +racy +radar +radars +raddled +radial +radially +radials +radiance +radiant +radiantly +radiate +radiated +radiates +radiating +radiation +radiations +radiator +radiators +radical +radicalise +radicalised +radicalises +radicalising +radicalism +radicalize +radicalized +radicalizes +radicalizing +radically +radicals +radicchio +radii +radio +radioactive +radioactivity +radiocarbon +radioed +radiographer +radiographers +radiography +radioing +radiologist +radiologists +radiology +radios +radiotherapist +radiotherapists +radiotherapy +radish +radishes +radium +radius +radon +raffia +raffish +raffishness +raffle +raffled +raffles +raffling +raft +rafted +rafter +rafters +rafting +rafts +rag +raga +ragamuffin +ragamuffins +ragas +ragbag +rage +raged +rages +ragga +ragged +raggedly +raggedness +raggedy +ragging +raging +raglan +ragout +ragouts +rags +ragtag +ragtime +ragwort +raid +raided +raider +raiders +raiding +raids +rail +railcard +railcards +railed +railing +railings +raillery +railroad +railroaded +railroading +railroads +rails +railway +railwayman +railwaymen +railways +raiment +rain +rainbow +rainbows +raincoat +raincoats +raindrop +raindrops +rained +rainfall +rainfalls +rainforest +rainforests +rainier +rainiest +raining +rainproof +rains +rainstorm +rainstorms +rainwater +rainy +raise +raised +raises +raisin +raising +raisins +raja +rajah +rajahs +rajas +rake +raked +rakes +raking +rakish +rakishly +rakishness +rallied +rallies +rally +rallying +ram +ramble +rambled +rambler +ramblers +rambles +rambling +ramblings +rambunctious +ramekin +ramekins +ramification +ramifications +rammed +ramming +ramp +rampage +rampaged +rampages +rampaging +rampant +rampantly +rampart +ramparts +ramps +ramrod +ramrods +rams +ramshackle +ran +ranch +rancher +ranchers +ranches +ranching +rancid +rancor +rancorous +rancour +rand +randier +randiest +randiness +random +randomise +randomised +randomises +randomising +randomize +randomized +randomizes +randomizing +randomly +randomness +randy +ranee +ranees +rang +range +ranged +rangefinder +rangefinders +ranger +rangers +ranges +ranging +rani +ranis +rank +ranked +ranking +rankings +rankle +rankled +rankles +rankling +ranks +ransack +ransacked +ransacking +ransacks +ransom +ransomed +ransoming +ransoms +rant +ranted +ranting +rantings +rants +rap +rapacious +rapaciously +rapaciousness +rapacity +rape +raped +rapes +rapid +rapidity +rapidly +rapids +rapier +rapiers +raping +rapist +rapists +rapped +rappel +rappelled +rappelling +rappels +rapper +rappers +rapping +rapport +rapporteur +rapporteurs +rapprochement +raps +rapt +raptor +raptors +rapture +raptures +rapturous +rapturously +rare +rarefied +rarely +rarer +rarest +raring +rarities +rarity +rascal +rascally +rascals +rash +rasher +rashers +rashes +rashly +rashness +rasp +raspberries +raspberry +rasped +rasping +rasps +raspy +rat +ratatouille +ratbag +ratbags +ratchet +ratcheted +ratcheting +ratchets +rate +rated +ratepayer +ratepayers +rates +rather +ratification +ratified +ratifies +ratify +ratifying +rating +ratings +ratio +ration +rational +rationale +rationales +rationalisation +rationalisations +rationalise +rationalised +rationalises +rationalising +rationalism +rationalist +rationalistic +rationalists +rationality +rationalization +rationalizations +rationalize +rationalized +rationalizes +rationalizing +rationally +rationed +rationing +rations +ratios +rats +rattan +ratted +rattier +rattiest +ratting +rattle +rattled +rattler +rattlers +rattles +rattlesnake +rattlesnakes +rattling +ratty +raucous +raucously +raucousness +raunchier +raunchiest +raunchily +raunchiness +raunchy +ravage +ravaged +ravages +ravaging +rave +raved +ravel +raveled +raveling +ravelled +ravelling +ravels +raven +ravening +ravenous +ravenously +ravens +raver +ravers +raves +ravine +ravines +raving +ravings +ravioli +ravish +ravished +ravishes +ravishing +ravishingly +raw +rawhide +rawness +ray +rayon +rays +raze +razed +razes +razing +razor +razors +razz +razzamatazz +razzed +razzes +razzing +razzmatazz +re +reach +reached +reaches +reaching +react +reactant +reactants +reacted +reacting +reaction +reactionaries +reactionary +reactions +reactivate +reactivated +reactivates +reactivating +reactive +reactor +reactors +reacts +read +readability +readable +readdress +readdressed +readdresses +readdressing +reader +readers +readership +readerships +readied +readier +readies +readiest +readily +readiness +reading +readings +readjust +readjusted +readjusting +readjustment +readjustments +readjusts +reads +ready +readying +reaffirm +reaffirmation +reaffirmations +reaffirmed +reaffirming +reaffirms +reafforestation +reagent +reagents +real +realign +realigned +realigning +realignment +realignments +realigns +realisable +realisation +realisations +realise +realised +realises +realising +realism +realist +realistic +realistically +realists +realities +reality +realizable +realization +realizations +realize +realized +realizes +realizing +reallocate +reallocated +reallocates +reallocating +really +realm +realms +realpolitik +realtor +realtors +realty +ream +reamed +reaming +reams +reanimate +reanimated +reanimates +reanimating +reap +reaped +reaper +reapers +reaping +reappear +reappearance +reappearances +reappeared +reappearing +reappears +reappraisal +reappraisals +reappraise +reappraised +reappraises +reappraising +reaps +rear +reared +rearguard +rearing +rearm +rearmament +rearmed +rearming +rearmost +rearms +rearrange +rearranged +rearrangement +rearrangements +rearranges +rearranging +rears +rearward +reason +reasonable +reasonableness +reasonably +reasoned +reasoning +reasons +reassemble +reassembled +reassembles +reassembling +reassert +reasserted +reasserting +reasserts +reassess +reassessed +reassesses +reassessing +reassessment +reassessments +reassurance +reassurances +reassure +reassured +reassures +reassuring +reassuringly +reawaken +reawakened +reawakening +reawakens +rebate +rebates +rebel +rebelled +rebelling +rebellion +rebellions +rebellious +rebelliously +rebelliousness +rebels +rebirth +reboot +rebooted +rebooting +reboots +reborn +rebound +rebounded +rebounding +rebounds +rebuff +rebuffed +rebuffing +rebuffs +rebuild +rebuilding +rebuilds +rebuilt +rebuke +rebuked +rebukes +rebuking +rebut +rebuts +rebuttal +rebuttals +rebutted +rebutting +recalcitrance +recalcitrant +recall +recalled +recalling +recalls +recant +recantation +recantations +recanted +recanting +recants +recap +recapitalization +recapitalize +recapitalized +recapitalizes +recapitalizing +recapitulate +recapitulated +recapitulates +recapitulating +recapitulation +recapitulations +recapped +recapping +recaps +recapture +recaptured +recaptures +recapturing +recast +recasting +recasts +recce +recces +recede +receded +recedes +receding +receipt +receipts +receivable +receivables +receive +received +receiver +receivers +receivership +receives +receiving +recent +recently +receptacle +receptacles +reception +receptionist +receptionists +receptions +receptive +receptiveness +receptivity +receptor +receptors +recess +recessed +recesses +recessing +recession +recessionary +recessions +recessive +recharge +rechargeable +recharged +recharges +recharging +recherche +recidivism +recidivist +recidivists +recipe +recipes +recipient +recipients +reciprocal +reciprocally +reciprocate +reciprocated +reciprocates +reciprocating +reciprocation +reciprocity +recital +recitals +recitation +recitations +recitative +recitatives +recite +recited +recites +reciting +reckless +recklessly +recklessness +reckon +reckoned +reckoning +reckonings +reckons +reclaim +reclaimed +reclaiming +reclaims +reclamation +recline +reclined +recliner +recliners +reclines +reclining +recluse +recluses +reclusive +recognisable +recognisably +recognisance +recognise +recognised +recognises +recognising +recognition +recognizable +recognizably +recognizance +recognize +recognized +recognizes +recognizing +recoil +recoiled +recoiling +recoils +recollect +recollected +recollecting +recollection +recollections +recollects +recommence +recommenced +recommences +recommencing +recommend +recommendation +recommendations +recommended +recommending +recommends +recompense +recompensed +recompenses +recompensing +recon +reconcile +reconciled +reconciles +reconciliation +reconciliations +reconciling +recondite +recondition +reconditioned +reconditioning +reconditions +reconnaissance +reconnaissances +reconnoiter +reconnoitered +reconnoitering +reconnoiters +reconnoitre +reconnoitred +reconnoitres +reconnoitring +recons +reconsider +reconsideration +reconsidered +reconsidering +reconsiders +reconstitute +reconstituted +reconstitutes +reconstituting +reconstitution +reconstruct +reconstructed +reconstructing +reconstruction +reconstructions +reconstructive +reconstructs +reconvene +reconvened +reconvenes +reconvening +record +recorded +recorder +recorders +recording +recordings +records +recount +recounted +recounting +recounts +recoup +recouped +recouping +recoups +recourse +recover +recoverable +recovered +recoveries +recovering +recovers +recovery +recreate +recreated +recreates +recreating +recreation +recreational +recreations +recrimination +recriminations +recriminatory +recrudescence +recruit +recruited +recruiter +recruiters +recruiting +recruitment +recruits +rectal +rectangle +rectangles +rectangular +rectification +rectifications +rectified +rectifier +rectifiers +rectifies +rectify +rectifying +rectilinear +rectitude +recto +rector +rectories +rectors +rectory +rectos +rectum +rectums +recumbent +recuperate +recuperated +recuperates +recuperating +recuperation +recuperative +recur +recurred +recurrence +recurrences +recurrent +recurring +recurs +recyclable +recycle +recycled +recycles +recycling +red +redbrick +redcurrant +redcurrants +redden +reddened +reddening +reddens +redder +reddest +reddish +redecorate +redecorated +redecorates +redecorating +redecoration +redeem +redeemable +redeemed +redeeming +redeems +redefine +redefined +redefines +redefining +redefinition +redemption +redemptive +redeploy +redeployed +redeploying +redeployment +redeploys +redesign +redesigned +redesigning +redesigns +redevelop +redeveloped +redeveloping +redevelopment +redevelopments +redevelops +redhead +redheads +redid +redirect +redirected +redirecting +redirection +redirects +rediscover +rediscovered +rediscoveries +rediscovering +rediscovers +rediscovery +redistribute +redistributed +redistributes +redistributing +redistribution +redneck +rednecks +redness +redo +redoes +redoing +redolence +redolent +redone +redouble +redoubled +redoubles +redoubling +redoubt +redoubtable +redoubts +redound +redounded +redounding +redounds +redraft +redrafted +redrafting +redrafts +redraw +redrawing +redrawn +redraws +redress +redressed +redresses +redressing +redrew +reds +redskin +redskins +reduce +reduced +reduces +reducible +reducing +reduction +reductionist +reductions +reductive +redundancies +redundancy +redundant +redwood +redwoods +reed +reeds +reedy +reef +reefed +reefer +reefers +reefing +reefs +reek +reeked +reeking +reeks +reel +reelect +reelected +reelecting +reelects +reeled +reeling +reels +ref +refectories +refectory +refer +referable +referee +refereed +refereeing +referees +reference +referenced +references +referencing +referenda +referendum +referendums +referral +referrals +referred +referring +refers +refill +refillable +refilled +refilling +refills +refinance +refinanced +refinances +refinancing +refine +refined +refinement +refinements +refiner +refineries +refiners +refinery +refines +refining +refit +refits +refitted +refitting +reflate +reflated +reflates +reflating +reflation +reflationary +reflations +reflect +reflected +reflecting +reflection +reflections +reflective +reflectively +reflector +reflectors +reflects +reflex +reflexes +reflexive +reflexively +reflexology +reforest +reforestation +reforested +reforesting +reforests +reform +reformation +reformations +reformatories +reformatory +reformed +reformer +reformers +reforming +reformist +reformists +reforms +refract +refracted +refracting +refraction +refractory +refracts +refrain +refrained +refraining +refrains +refresh +refreshed +refresher +refreshers +refreshes +refreshing +refreshingly +refreshment +refreshments +refrigerate +refrigerated +refrigerates +refrigerating +refrigeration +refrigerator +refrigerators +refs +refuel +refueled +refueling +refuelled +refuelling +refuels +refuge +refugee +refugees +refuges +refund +refundable +refunded +refunding +refunds +refurbish +refurbished +refurbishes +refurbishing +refurbishment +refurbishments +refusal +refusals +refuse +refused +refuses +refusing +refutable +refutation +refutations +refute +refuted +refutes +refuting +regain +regained +regaining +regains +regal +regale +regaled +regales +regalia +regaling +regally +regard +regarded +regarding +regardless +regards +regatta +regattas +regencies +regency +regenerate +regenerated +regenerates +regenerating +regeneration +regenerative +regent +regents +reggae +regicide +regicides +regime +regimen +regimens +regiment +regimental +regimentation +regimented +regiments +regimes +region +regional +regionalism +regionally +regions +register +registered +registering +registers +registrar +registrars +registration +registrations +registries +registry +regress +regressed +regresses +regressing +regression +regressions +regressive +regret +regretful +regretfully +regrets +regrettable +regrettably +regretted +regretting +regroup +regrouped +regrouping +regroups +regular +regularisation +regularise +regularised +regularises +regularising +regularities +regularity +regularization +regularize +regularized +regularizes +regularizing +regularly +regulars +regulate +regulated +regulates +regulating +regulation +regulations +regulator +regulators +regulatory +regurgitate +regurgitated +regurgitates +regurgitating +regurgitation +rehab +rehabilitate +rehabilitated +rehabilitates +rehabilitating +rehabilitation +rehash +rehashed +rehashes +rehashing +rehearsal +rehearsals +rehearse +rehearsed +rehearses +rehearsing +reheat +reheated +reheating +reheats +rehouse +rehoused +rehouses +rehousing +reign +reigned +reigning +reigns +reimburse +reimbursed +reimbursement +reimbursements +reimburses +reimbursing +rein +reincarnate +reincarnated +reincarnates +reincarnating +reincarnation +reincarnations +reindeer +reined +reinforce +reinforced +reinforcement +reinforcements +reinforces +reinforcing +reining +reins +reinstate +reinstated +reinstatement +reinstates +reinstating +reinsurance +reinterpret +reinterpretation +reinterpretations +reinterpreted +reinterpreting +reinterprets +reinvent +reinvented +reinventing +reinvents +reissue +reissued +reissues +reissuing +reiterate +reiterated +reiterates +reiterating +reiteration +reiterations +reject +rejected +rejecting +rejection +rejections +rejects +rejig +rejigged +rejigger +rejiggered +rejiggering +rejiggers +rejigging +rejigs +rejoice +rejoiced +rejoices +rejoicing +rejoicings +rejoin +rejoinder +rejoinders +rejoined +rejoining +rejoins +rejuvenate +rejuvenated +rejuvenates +rejuvenating +rejuvenation +rekindle +rekindled +rekindles +rekindling +relapse +relapsed +relapses +relapsing +relate +related +relatedness +relates +relating +relation +relational +relations +relationship +relationships +relative +relatively +relatives +relativism +relativist +relativists +relativity +relaunch +relaunched +relaunches +relaunching +relax +relaxation +relaxations +relaxed +relaxes +relaxing +relay +relayed +relaying +relays +release +released +releases +releasing +relegate +relegated +relegates +relegating +relegation +relent +relented +relenting +relentless +relentlessly +relents +relevance +relevancy +relevant +relevantly +reliability +reliable +reliably +reliance +reliant +relic +relics +relied +relief +reliefs +relies +relieve +relieved +relieves +relieving +religion +religions +religiosity +religious +religiously +relinquish +relinquished +relinquishes +relinquishing +reliquaries +reliquary +relish +relished +relishes +relishing +relive +relived +relives +reliving +reload +reloaded +reloading +reloads +relocate +relocated +relocates +relocating +relocation +reluctance +reluctant +reluctantly +rely +relying +remade +remain +remainder +remaindered +remaindering +remainders +remained +remaining +remains +remake +remakes +remaking +remand +remanded +remanding +remands +remark +remarkable +remarkably +remarked +remarking +remarks +remarriage +remarriages +remarried +remarries +remarry +remarrying +remaster +remastered +remastering +remasters +rematch +rematches +remediable +remedial +remedied +remedies +remedy +remedying +remember +remembered +remembering +remembers +remembrance +remembrances +remind +reminded +reminder +reminders +reminding +reminds +reminisce +reminisced +reminiscence +reminiscences +reminiscent +reminiscently +reminisces +reminiscing +remiss +remission +remissions +remit +remits +remittance +remittances +remitted +remitting +remix +remixed +remixes +remixing +remnant +remnants +remodel +remodeled +remodeling +remodelled +remodelling +remodels +remold +remolded +remolding +remolds +remonstrance +remonstrances +remonstrate +remonstrated +remonstrates +remonstrating +remorse +remorseful +remorsefully +remorseless +remorselessly +remortgage +remortgaged +remortgages +remortgaging +remote +remotely +remoteness +remoter +remotes +remotest +remould +remoulded +remoulding +remoulds +remount +remounted +remounting +remounts +removable +removal +removals +remove +removed +remover +removers +removes +removing +remunerate +remunerated +remunerates +remunerating +remuneration +remunerations +remunerative +renaissance +renaissances +renal +rename +renamed +renames +renaming +rend +render +rendered +rendering +renderings +renders +rendezvous +rendezvoused +rendezvouses +rendezvousing +rending +rendition +renditions +rends +renegade +renegades +renege +reneged +reneges +reneging +renew +renewable +renewal +renewals +renewed +renewing +renews +rennet +renounce +renounced +renounces +renouncing +renovate +renovated +renovates +renovating +renovation +renovations +renown +renowned +rent +rental +rentals +rented +renting +rents +renunciation +renunciations +reopen +reopened +reopening +reopens +reorder +reordered +reordering +reorders +reorganisation +reorganisations +reorganise +reorganised +reorganises +reorganising +reorganization +reorganizations +reorganize +reorganized +reorganizes +reorganizing +rep +repaid +repair +repairable +repaired +repairer +repairers +repairing +repairman +repairmen +repairs +reparation +reparations +repartee +repast +repasts +repatriate +repatriated +repatriates +repatriating +repatriation +repatriations +repay +repayable +repaying +repayment +repayments +repays +repeal +repealed +repealing +repeals +repeat +repeated +repeatedly +repeater +repeaters +repeating +repeats +repel +repellant +repellants +repelled +repellent +repellents +repelling +repels +repent +repentance +repentant +repented +repenting +repents +repercussion +repercussions +repertoire +repertoires +repertories +repertory +repetition +repetitions +repetitious +repetitive +repetitively +rephrase +rephrased +rephrases +rephrasing +replace +replaceable +replaced +replacement +replacements +replaces +replacing +replay +replayed +replaying +replays +replenish +replenished +replenishes +replenishing +replenishment +replete +replica +replicas +replicate +replicated +replicates +replicating +replication +replications +replied +replies +reply +replying +report +reportage +reported +reportedly +reporter +reporters +reporting +reports +repose +reposed +reposes +reposing +repositories +repository +repossess +repossessed +repossesses +repossessing +repossession +repossessions +reprehensible +represent +representation +representational +representations +representative +representatives +represented +representing +represents +repress +repressed +represses +repressing +repression +repressions +repressive +repressively +repressiveness +reprieve +reprieved +reprieves +reprieving +reprimand +reprimanded +reprimanding +reprimands +reprint +reprinted +reprinting +reprints +reprisal +reprisals +reprise +reprises +reproach +reproached +reproaches +reproachful +reproachfully +reproaching +reprobate +reprobates +reprocess +reprocessed +reprocesses +reprocessing +reproduce +reproduced +reproduces +reproducible +reproducing +reproduction +reproductions +reproductive +reproof +reproofs +reprove +reproved +reproves +reproving +reprovingly +reps +reptile +reptiles +reptilian +republic +republican +republicanism +republicans +republics +repudiate +repudiated +repudiates +repudiating +repudiation +repugnance +repugnant +repulse +repulsed +repulses +repulsing +repulsion +repulsive +repulsively +reputable +reputably +reputation +reputations +repute +reputed +reputedly +request +requested +requesting +requests +requiem +requiems +require +required +requirement +requirements +requires +requiring +requisite +requisites +requisition +requisitioned +requisitioning +requisitions +requite +requited +requites +requiting +reran +reroute +rerouted +reroutes +rerouting +rerun +rerunning +reruns +resat +reschedule +rescheduled +reschedules +rescheduling +rescind +rescinded +rescinding +rescinds +rescue +rescued +rescuer +rescuers +rescues +rescuing +research +researched +researcher +researchers +researches +researching +resell +reselling +resells +resemblance +resemblances +resemble +resembled +resembles +resembling +resent +resented +resentful +resentfully +resentfulness +resenting +resentment +resentments +resents +reservation +reservations +reserve +reserved +reserves +reserving +reservist +reservists +reservoir +reservoirs +reset +resets +resetting +resettle +resettled +resettlement +resettles +resettling +reshape +reshaped +reshapes +reshaping +reshuffle +reshuffled +reshuffles +reshuffling +reside +resided +residence +residences +residencies +residency +resident +residential +residents +resides +residing +residual +residue +residues +resign +resignation +resignations +resigned +resignedly +resigning +resigns +resilience +resiliency +resilient +resiliently +resin +resinous +resins +resist +resistance +resistances +resistant +resisted +resisting +resistor +resistors +resists +resit +resits +resitting +resold +resolute +resolutely +resoluteness +resolution +resolutions +resolve +resolved +resolves +resolving +resonance +resonances +resonant +resonantly +resonate +resonated +resonates +resonating +resonator +resonators +resort +resorted +resorting +resorts +resound +resounded +resounding +resoundingly +resounds +resource +resourced +resourceful +resourcefully +resourcefulness +resources +resourcing +respect +respectability +respectable +respectably +respected +respecter +respecters +respectful +respectfully +respecting +respective +respectively +respects +respiration +respirator +respirators +respiratory +respire +respired +respires +respiring +respite +resplendence +resplendent +resplendently +respond +responded +respondent +respondents +responding +responds +response +responses +responsibilities +responsibility +responsible +responsibly +responsive +responsively +responsiveness +rest +restart +restarted +restarting +restarts +restate +restated +restatement +restatements +restates +restating +restaurant +restaurants +restaurateur +restaurateurs +rested +restful +restfully +resting +restitution +restive +restively +restiveness +restless +restlessly +restlessness +restock +restocked +restocking +restocks +restoration +restorations +restorative +restoratives +restore +restored +restorer +restorers +restores +restoring +restrain +restrained +restraining +restrains +restraint +restraints +restrict +restricted +restricting +restriction +restrictions +restrictive +restricts +restroom +restrooms +restructure +restructured +restructures +restructuring +restructurings +rests +result +resultant +resulted +resulting +results +resume +resumed +resumes +resuming +resumption +resurface +resurfaced +resurfaces +resurfacing +resurgence +resurgent +resurrect +resurrected +resurrecting +resurrection +resurrects +resuscitate +resuscitated +resuscitates +resuscitating +resuscitation +retail +retailed +retailer +retailers +retailing +retails +retain +retained +retainer +retainers +retaining +retains +retake +retaken +retakes +retaking +retaliate +retaliated +retaliates +retaliating +retaliation +retaliatory +retard +retardation +retarded +retarding +retards +retch +retched +retches +retching +retell +retelling +retells +retention +retentive +rethink +rethinking +rethinks +rethought +reticence +reticent +reticently +reticulated +reticulation +reticulations +retina +retinae +retinal +retinas +retinue +retinues +retire +retired +retiree +retirees +retirement +retirements +retires +retiring +retold +retook +retool +retooled +retooling +retools +retort +retorted +retorting +retorts +retouch +retouched +retouches +retouching +retrace +retraced +retraces +retracing +retract +retractable +retracted +retracting +retraction +retractions +retracts +retrain +retrained +retraining +retrains +retread +retreaded +retreading +retreads +retreat +retreated +retreating +retreats +retrench +retrenched +retrenches +retrenching +retrenchment +retrenchments +retrial +retrials +retribution +retributive +retried +retries +retrievable +retrieval +retrieve +retrieved +retriever +retrievers +retrieves +retrieving +retro +retroactive +retroactively +retrofit +retrofits +retrofitted +retrofitting +retrograde +retrogress +retrogressed +retrogresses +retrogressing +retrogression +retrogressive +retrospection +retrospective +retrospectively +retrospectives +retry +retrying +retsina +return +returnable +returned +returnee +returnees +returner +returners +returning +returns +reunification +reunified +reunifies +reunify +reunifying +reunion +reunions +reunite +reunited +reunites +reuniting +reusable +reuse +reused +reuses +reusing +rev +revaluation +revaluations +revalue +revalued +revalues +revaluing +revamp +revamped +revamping +revamps +reveal +revealed +revealing +revealingly +reveals +reveille +revel +revelation +revelations +reveled +reveler +revelers +reveling +revelled +reveller +revellers +revelling +revelries +revelry +revels +revenge +revenged +revenges +revenging +revenue +revenues +reverberate +reverberated +reverberates +reverberating +reverberation +reverberations +revere +revered +reverence +reverend +reverent +reverential +reverentially +reverently +reveres +reverie +reveries +revering +reversal +reversals +reverse +reversed +reverses +reversibility +reversible +reversing +reversion +reversions +revert +reverted +reverting +reverts +review +reviewed +reviewer +reviewers +reviewing +reviews +revile +reviled +reviles +reviling +revise +revised +revises +revising +revision +revisionism +revisionist +revisionists +revisions +revisit +revisited +revisiting +revisits +revitalise +revitalised +revitalises +revitalising +revitalize +revitalized +revitalizes +revitalizing +revival +revivalism +revivalist +revivalists +revivals +revive +revived +revives +revivified +revivifies +revivify +revivifying +reviving +revocation +revocations +revoke +revoked +revokes +revoking +revolt +revolted +revolting +revoltingly +revolts +revolution +revolutionaries +revolutionary +revolutionise +revolutionised +revolutionises +revolutionising +revolutionize +revolutionized +revolutionizes +revolutionizing +revolutions +revolve +revolved +revolver +revolvers +revolves +revolving +revs +revue +revues +revulsion +revved +revving +reward +rewarded +rewarding +rewards +rewind +rewinding +rewinds +rewire +rewired +rewires +rewiring +reword +reworded +rewording +rewords +rework +reworked +reworking +reworkings +reworks +rewound +rewrite +rewrites +rewriting +rewritten +rewrote +rhapsodic +rhapsodies +rhapsodise +rhapsodised +rhapsodises +rhapsodising +rhapsodize +rhapsodized +rhapsodizes +rhapsodizing +rhapsody +rheostat +rheostats +rhetoric +rhetorical +rhetorically +rhetorician +rhetoricians +rheumatic +rheumatism +rheumy +rhinestone +rhinestones +rhino +rhinoceros +rhinoceroses +rhinos +rhizome +rhizomes +rhododendron +rhododendrons +rhombus +rhombuses +rhubarb +rhubarbs +rhyme +rhymed +rhymes +rhyming +rhythm +rhythmic +rhythmical +rhythmically +rhythms +rib +ribald +ribaldry +ribbed +ribbing +ribbon +ribbons +riboflavin +ribs +rice +rich +richer +riches +richest +richly +richness +rick +ricked +rickets +rickety +ricking +ricks +rickshaw +rickshaws +ricochet +ricocheted +ricocheting +ricochets +rid +ridded +ridden +ridding +riddle +riddled +riddles +riddling +ride +rider +riders +rides +ridge +ridged +ridges +ridging +ridicule +ridiculed +ridicules +ridiculing +ridiculous +ridiculously +ridiculousness +riding +rids +rife +riff +riffle +riffled +riffles +riffling +riffs +rifle +rifled +rifleman +riflemen +rifles +rifling +rift +rifts +rig +rigged +rigging +right +righted +righteous +righteously +righteousness +rightful +rightfully +righting +rightist +rightists +rightly +rightness +righto +rights +rightward +rightwards +rigid +rigidity +rigidly +rigmarole +rigor +rigorous +rigorously +rigors +rigour +rigours +rigs +rile +riled +riles +riling +rim +rimless +rimmed +rimming +rims +rind +rinds +ring +ringed +ringer +ringers +ringing +ringleader +ringleaders +ringlet +ringlets +ringmaster +ringmasters +rings +ringside +ringworm +rink +rinks +rinse +rinsed +rinses +rinsing +riot +rioted +rioter +rioters +rioting +riotous +riotously +riotousness +riots +rip +ripcord +ripcords +ripe +ripen +ripened +ripeness +ripening +ripens +riper +ripest +riposte +riposted +ripostes +riposting +ripped +ripping +ripple +rippled +ripples +rippling +rips +rise +risen +riser +risers +rises +risible +rising +risings +risk +risked +riskier +riskiest +riskily +riskiness +risking +risks +risky +risotto +risottos +risque +rissole +rissoles +rite +rites +ritual +ritualised +ritualistic +ritualistically +ritualized +ritually +rituals +ritzier +ritziest +ritzy +rival +rivaled +rivaling +rivalled +rivalling +rivalries +rivalry +rivals +riven +river +riverfront +rivers +riverside +rivet +riveted +riveting +rivets +riviera +rivieras +rivulet +rivulets +roach +roaches +road +roadblock +roadblocks +roadhouse +roadhouses +roadie +roadies +roadrunner +roadrunners +roads +roadshow +roadshows +roadside +roadsides +roadster +roadsters +roadway +roadways +roadwork +roadworks +roadworthy +roam +roamed +roaming +roams +roan +roans +roar +roared +roaring +roars +roast +roasted +roasting +roasts +rob +robbed +robber +robberies +robbers +robbery +robbing +robe +robed +robes +robin +robing +robins +robot +robotic +robotics +robots +robs +robust +robustly +robustness +rock +rockabilly +rocked +rocker +rockeries +rockers +rockery +rocket +rocketed +rocketing +rockets +rockfall +rockfalls +rockier +rockiest +rocking +rocks +rocky +rococo +rod +rode +rodent +rodents +rodeo +rodeos +rods +roe +roentgen +roentgens +roes +roger +rogered +rogering +rogers +rogue +rogues +roguish +roguishly +roguishness +roil +roiled +roiling +roils +roistering +role +roles +roll +rollback +rollbacks +rolled +roller +rollerblading +rollers +rollicking +rolling +rollmop +rollmops +rollover +rollovers +rolls +romaine +romaines +roman +romance +romanced +romances +romancing +romantic +romantically +romanticise +romanticised +romanticises +romanticising +romanticism +romanticize +romanticized +romanticizes +romanticizing +romantics +romp +romped +rompers +romping +romps +rondo +rondos +rontgen +rontgens +roof +roofed +roofer +roofers +roofing +roofless +roofs +rooftop +rooftops +rook +rooked +rookeries +rookery +rookie +rookies +rooking +rooks +room +roomed +roomer +roomers +roomful +roomfuls +roomier +roomiest +roominess +rooming +roommate +roommates +rooms +roomy +roost +roosted +rooster +roosters +roosting +roosts +root +rooted +rooting +rootless +rootlessness +roots +rope +roped +ropes +ropey +ropier +ropiest +roping +ropy +rosaries +rosary +rose +roseate +rosebud +rosebuds +rosemary +roses +rosette +rosettes +rosewater +rosewood +rosier +rosiest +rosin +rosined +rosining +rosins +roster +rosters +rostra +rostrum +rostrums +rosy +rot +rota +rotaries +rotary +rotas +rotate +rotated +rotates +rotating +rotation +rotations +rote +rotisserie +rotisseries +rotor +rotors +rots +rotted +rotten +rotter +rotters +rotting +rottweiler +rottweilers +rotund +rotunda +rotundas +rotundity +rouble +roubles +rouge +rouged +rouges +rough +roughage +roughcast +roughed +roughen +roughened +roughening +roughens +rougher +roughest +roughhouse +roughhoused +roughhouses +roughhousing +roughing +roughly +roughneck +roughnecks +roughness +roughs +rouging +roulette +round +roundabout +roundabouts +rounded +roundel +roundels +rounder +rounders +roundest +rounding +roundly +rounds +roundup +roundups +roundworm +roundworms +rouse +roused +rouses +rousing +roust +roustabout +roustabouts +rousted +rousting +rousts +rout +route +routed +routes +routine +routinely +routines +routing +routs +roux +rove +roved +rover +rovers +roves +roving +row +rowan +rowans +rowboat +rowboats +rowdier +rowdies +rowdiest +rowdily +rowdiness +rowdy +rowdyism +rowed +rower +rowers +rowing +rowlock +rowlocks +rows +royal +royalist +royalists +royally +royals +royalties +royalty +rub +rubbed +rubber +rubberneck +rubbernecked +rubbernecker +rubberneckers +rubbernecking +rubbernecks +rubbers +rubbery +rubbing +rubbings +rubbish +rubbished +rubbishes +rubbishing +rubbishy +rubble +rube +rubella +rubes +rubicund +rubies +ruble +rubles +rubric +rubrics +rubs +ruby +ruched +ruck +rucked +rucking +rucks +rucksack +rucksacks +ruckus +ructions +rudder +rudderless +rudders +ruddier +ruddiest +ruddy +rude +rudely +rudeness +ruder +rudest +rudimentary +rudiments +rue +rued +rueful +ruefully +rues +ruff +ruffian +ruffians +ruffle +ruffled +ruffles +ruffling +ruffs +rug +rugby +rugged +ruggedly +ruggedness +rugger +rugs +ruin +ruination +ruined +ruing +ruining +ruinous +ruinously +ruins +rule +ruled +ruler +rulers +rules +ruling +rulings +rum +rumba +rumbas +rumble +rumbled +rumbles +rumbling +rumblings +rumbustious +ruminant +ruminants +ruminate +ruminated +ruminates +ruminating +rumination +ruminations +ruminative +ruminatively +rummage +rummaged +rummages +rummaging +rummy +rumor +rumored +rumormonger +rumormongers +rumors +rumour +rumoured +rumours +rump +rumple +rumpled +rumples +rumpling +rumps +rumpus +rumpuses +rums +run +runabout +runabouts +runaway +runaways +rundown +rundowns +rune +runes +rung +rungs +runic +runner +runners +runnier +runniest +running +runny +runs +runt +runts +runway +runways +rupee +rupees +rupture +ruptured +ruptures +rupturing +rural +ruse +ruses +rush +rushed +rushes +rushing +rusk +rusks +russet +rust +rusted +rustic +rusticity +rustics +rustier +rustiest +rustiness +rusting +rustle +rustled +rustler +rustlers +rustles +rustling +rustlings +rustproof +rusts +rusty +rut +rutabaga +rutabagas +ruthless +ruthlessly +ruthlessness +ruts +rutted +rutting +rye +sabbatical +sabbaticals +saber +sabers +sable +sables +sabotage +sabotaged +sabotages +sabotaging +saboteur +saboteurs +sabre +sabres +sac +saccharin +saccharine +sachet +sachets +sack +sackcloth +sacked +sackful +sackfuls +sacking +sackings +sacks +sacrament +sacramental +sacraments +sacred +sacredness +sacrifice +sacrificed +sacrifices +sacrificial +sacrificially +sacrificing +sacrilege +sacrileges +sacrilegious +sacrilegiously +sacristan +sacristans +sacristies +sacristy +sacrosanct +sacs +sad +sadden +saddened +saddening +saddens +sadder +saddest +saddle +saddlebag +saddlebags +saddled +saddler +saddlers +saddlery +saddles +saddling +sadhu +sadhus +sadism +sadist +sadistic +sadistically +sadists +sadly +sadness +sadomasochism +sadomasochist +sadomasochistic +sadomasochists +safari +safaris +safe +safeguard +safeguarded +safeguarding +safeguards +safely +safer +safes +safest +safeties +safety +safflower +safflowers +saffron +sag +saga +sagacious +sagaciously +sagacity +sagas +sage +sagely +sages +sagged +sagging +saggy +sago +sags +sahib +sahibs +said +sail +sailboard +sailboards +sailboat +sailboats +sailed +sailing +sailings +sailor +sailors +sails +saint +sainted +sainthood +saintliness +saintly +saints +saith +sake +saki +salaam +salaamed +salaaming +salaams +salable +salacious +salaciously +salaciousness +salad +salads +salamander +salamanders +salami +salamis +salaried +salaries +salary +sale +saleable +saleroom +salerooms +sales +salesclerk +salesclerks +salesgirl +salesgirls +salesman +salesmanship +salesmen +salespeople +salesperson +salesroom +salesrooms +saleswoman +saleswomen +salience +salient +saline +salinity +saliva +salivary +salivate +salivated +salivates +salivating +salivation +sallied +sallies +sallow +sallowness +sally +sallying +salmon +salmonella +salon +salons +saloon +saloons +salsa +salsas +salt +saltbox +saltboxes +salted +saltier +saltiest +saltiness +salting +saltpeter +saltpetre +salts +saltwater +salty +salubrious +salutary +salutation +salutations +salute +saluted +salutes +saluting +salvage +salvaged +salvages +salvaging +salvation +salve +salved +salver +salvers +salves +salving +salvo +salvoes +salvos +samba +sambas +same +sameness +samey +samosa +samosas +samovar +samovars +sampan +sampans +sample +sampled +sampler +samplers +samples +sampling +samurai +sanatoria +sanatorium +sanatoriums +sanctification +sanctified +sanctifies +sanctify +sanctifying +sanctimonious +sanctimoniously +sanctimoniousness +sanction +sanctioned +sanctioning +sanctions +sanctity +sanctuaries +sanctuary +sanctum +sanctums +sand +sandal +sandals +sandalwood +sandbag +sandbagged +sandbagging +sandbags +sandbank +sandbanks +sandbar +sandbars +sandblast +sandblasted +sandblasting +sandblasts +sandbox +sandboxes +sandcastle +sandcastles +sanded +sander +sanders +sandier +sandiest +sanding +sandman +sandpaper +sandpapered +sandpapering +sandpapers +sandpiper +sandpipers +sandpit +sandpits +sands +sandstone +sandstorm +sandstorms +sandwich +sandwiched +sandwiches +sandwiching +sandy +sane +saner +sanest +sang +sangfroid +sangria +sanguine +sanitaria +sanitarium +sanitariums +sanitary +sanitation +sanitise +sanitised +sanitises +sanitising +sanitize +sanitized +sanitizes +sanitizing +sanity +sank +sap +sapling +saplings +sapped +sapper +sappers +sapphire +sapphires +sappier +sappiest +sapping +sappy +saps +sarcasm +sarcastic +sarcastically +sarcoma +sarcomas +sarcophagi +sarcophagus +sarcophaguses +sardine +sardines +sardonic +sardonically +saree +sarees +sarge +sarges +sari +saris +sarky +sarnie +sarnies +sarong +sarongs +sarsaparilla +sartorial +sartorially +sash +sashay +sashayed +sashaying +sashays +sashes +sass +sassed +sasses +sassier +sassiest +sassing +sassy +sat +satanic +satanism +satanist +satanists +satay +satchel +satchels +sated +satellite +satellites +satiate +satiated +satiates +satiating +satin +satinwood +satiny +satire +satires +satiric +satirical +satirically +satirise +satirised +satirises +satirising +satirist +satirists +satirize +satirized +satirizes +satirizing +satisfaction +satisfactions +satisfactorily +satisfactory +satisfied +satisfies +satisfy +satisfying +satisfyingly +satsuma +satsumas +saturate +saturated +saturates +saturating +saturation +saturnine +satyr +satyrs +sauce +saucepan +saucepans +saucer +saucers +sauces +saucier +sauciest +saucily +saucy +sauerkraut +sauna +saunas +saunter +sauntered +sauntering +saunters +sausage +sausages +saute +sauted +sauteed +sauteing +sautes +savage +savaged +savagely +savageries +savagery +savages +savaging +savanna +savannah +savannahs +savannas +save +saved +saver +savers +saves +saving +savings +savior +saviors +saviour +saviours +savor +savored +savories +savoring +savors +savory +savour +savoured +savouries +savouring +savours +savoury +savoy +savoys +savvy +saw +sawdust +sawed +sawing +sawmill +sawmills +sawn +saws +sax +saxes +saxophone +saxophones +saxophonist +saxophonists +say +saying +sayings +says +scab +scabbard +scabbards +scabbier +scabbiest +scabby +scabies +scabrous +scabs +scads +scaffold +scaffolding +scaffolds +scalawag +scalawags +scald +scalded +scalding +scalds +scale +scaled +scales +scalier +scaliest +scaliness +scaling +scallion +scallions +scallop +scalloped +scalloping +scallops +scallywag +scallywags +scalp +scalped +scalpel +scalpels +scalper +scalpers +scalping +scalps +scaly +scam +scamp +scamper +scampered +scampering +scampers +scampi +scamps +scams +scan +scandal +scandalise +scandalised +scandalises +scandalising +scandalize +scandalized +scandalizes +scandalizing +scandalmonger +scandalmongers +scandalous +scandalously +scandals +scanned +scanner +scanners +scanning +scans +scant +scantier +scantiest +scantily +scanty +scapegoat +scapegoated +scapegoating +scapegoats +scapula +scapulae +scapulas +scar +scarab +scarabs +scarce +scarcely +scarcer +scarcest +scarcities +scarcity +scare +scarecrow +scarecrows +scared +scaremonger +scaremongering +scaremongers +scares +scarey +scarf +scarfed +scarfing +scarfs +scarier +scariest +scarified +scarifies +scarify +scarifying +scaring +scarlatina +scarlet +scarp +scarper +scarpered +scarpering +scarpers +scarps +scarred +scarring +scars +scarves +scary +scat +scathing +scathingly +scatological +scatter +scatterbrain +scatterbrained +scatterbrains +scattered +scattering +scatterings +scatters +scatty +scavenge +scavenged +scavenger +scavengers +scavenges +scavenging +scenario +scenarios +scene +scenery +scenes +scenic +scenically +scent +scented +scenting +scents +scepter +scepters +sceptic +sceptical +sceptically +scepticism +sceptics +sceptre +sceptres +schadenfreude +schedule +scheduled +scheduler +schedulers +schedules +scheduling +schema +schemas +schemata +schematic +schematically +schematize +schematized +schematizes +schematizing +scheme +schemed +schemer +schemers +schemes +scheming +scherzo +scherzos +schism +schismatic +schisms +schist +schizo +schizoid +schizophrenia +schizophrenic +schizophrenics +schizos +schlep +schlepp +schlepped +schlepping +schlepps +schleps +schlock +schlocky +schmaltz +schmaltzier +schmaltziest +schmaltzy +schmalz +schmooze +schmoozed +schmoozer +schmoozers +schmoozes +schmoozing +schmuck +schmucks +schnapps +schnitzel +schnitzels +schnook +schnooks +scholar +scholarly +scholars +scholarship +scholarships +scholastic +scholasticism +school +schoolbag +schoolbags +schoolboy +schoolboys +schoolchild +schoolchildren +schooldays +schooled +schoolgirl +schoolgirls +schoolhouse +schoolhouses +schooling +schoolkid +schoolkids +schoolmarm +schoolmarmish +schoolmarms +schoolmaster +schoolmasters +schoolmate +schoolmates +schoolmistress +schoolmistresses +schools +schoolteacher +schoolteachers +schoolwork +schoolyard +schoolyards +schooner +schooners +schtick +schwa +schwas +sciatic +sciatica +science +sciences +scientific +scientifically +scientist +scientists +scimitar +scimitars +scintilla +scintillate +scintillated +scintillates +scintillating +scion +scions +scissor +scissors +sclerosis +sclerotic +scoff +scoffed +scoffing +scoffs +scold +scolded +scolding +scoldings +scolds +sconce +sconces +scone +scones +scoop +scooped +scooping +scoops +scoot +scooted +scooter +scooters +scooting +scoots +scope +scorch +scorched +scorcher +scorchers +scorches +scorching +score +scoreboard +scoreboards +scorecard +scorecards +scored +scorekeeper +scorekeepers +scoreless +scoreline +scorelines +scorer +scorers +scores +scoring +scorn +scorned +scornful +scornfully +scorning +scorns +scorpion +scorpions +scotch +scotched +scotches +scotching +scoundrel +scoundrels +scour +scoured +scourer +scourers +scourge +scourged +scourges +scourging +scouring +scours +scout +scouted +scouter +scouters +scouting +scoutmaster +scoutmasters +scouts +scowl +scowled +scowling +scowls +scrabble +scrabbled +scrabbles +scrabbling +scraggier +scraggiest +scragglier +scraggliest +scraggly +scraggy +scram +scramble +scrambled +scrambler +scramblers +scrambles +scrambling +scrammed +scramming +scrams +scrap +scrapbook +scrapbooks +scrape +scraped +scraper +scrapers +scrapes +scrapheap +scrapheaps +scrapie +scraping +scrapings +scrapped +scrappier +scrappiest +scrapping +scrappy +scraps +scrapyard +scrapyards +scratch +scratchcard +scratchcards +scratched +scratches +scratchier +scratchiest +scratching +scratchpad +scratchpads +scratchy +scrawl +scrawled +scrawling +scrawls +scrawnier +scrawniest +scrawny +scream +screamed +screaming +screamingly +screams +scree +screech +screeched +screeches +screeching +screed +screeds +screen +screened +screening +screenings +screenplay +screenplays +screens +screenwriter +screenwriters +screenwriting +screes +screw +screwball +screwballs +screwdriver +screwdrivers +screwed +screwier +screwiest +screwing +screws +screwy +scribble +scribbled +scribbler +scribblers +scribbles +scribbling +scribe +scribes +scrimmage +scrimmages +scrimp +scrimped +scrimping +scrimps +scrip +script +scripted +scripting +scripts +scriptural +scripture +scriptures +scriptwriter +scriptwriters +scroll +scrolled +scrolling +scrolls +scrooge +scrooges +scrota +scrotum +scrotums +scrounge +scrounged +scrounger +scroungers +scrounges +scrounging +scrub +scrubbed +scrubber +scrubbers +scrubbing +scrubby +scrubs +scruff +scruffier +scruffiest +scruffily +scruffiness +scruffs +scruffy +scrum +scrumhalf +scrumhalves +scrummage +scrummages +scrummed +scrumming +scrump +scrumped +scrumping +scrumps +scrumptious +scrumpy +scrums +scrunch +scrunched +scrunches +scrunchie +scrunchies +scrunching +scrunchy +scruple +scrupled +scruples +scrupling +scrupulous +scrupulously +scrutineer +scrutineers +scrutinise +scrutinised +scrutinises +scrutinising +scrutinize +scrutinized +scrutinizes +scrutinizing +scrutiny +scud +scudded +scudding +scuds +scuff +scuffed +scuffing +scuffle +scuffled +scuffles +scuffling +scuffs +scull +sculled +sculleries +scullery +sculling +sculls +sculpt +sculpted +sculpting +sculptor +sculptors +sculpts +sculptural +sculpture +sculptured +sculptures +scum +scumbag +scumbags +scummy +scupper +scuppered +scuppering +scuppers +scurried +scurries +scurrilous +scurrilously +scurry +scurrying +scurvy +scuttle +scuttlebutt +scuttled +scuttles +scuttling +scuzzier +scuzziest +scuzzy +scythe +scythed +scythes +scything +sea +seabed +seabird +seabirds +seaboard +seaboards +seaborne +seafarer +seafarers +seafaring +seafloor +seafood +seafront +seafronts +seagoing +seagull +seagulls +seahorse +seahorses +seal +sealant +sealants +sealed +sealer +sealers +sealing +seals +sealskin +seam +seaman +seamanship +seamed +seamen +seamier +seamiest +seamless +seamlessly +seams +seamstress +seamstresses +seamy +seance +seances +seaplane +seaplanes +seaport +seaports +sear +search +searched +searcher +searchers +searches +searching +searchingly +searchlight +searchlights +seared +searing +searingly +sears +seas +seascape +seascapes +seashell +seashells +seashore +seashores +seasick +seasickness +seaside +season +seasonable +seasonal +seasonality +seasonally +seasoned +seasoning +seasonings +seasons +seat +seated +seating +seats +seaward +seawards +seaweed +seaweeds +seaworthiness +seaworthy +sebaceous +sebum +sec +secateurs +secede +seceded +secedes +seceding +secession +secessionist +secessionists +secluded +seclusion +second +secondarily +secondary +seconded +seconder +seconders +seconding +secondly +secondment +secondments +seconds +secrecy +secret +secretarial +secretariat +secretariats +secretaries +secretary +secrete +secreted +secretes +secreting +secretion +secretions +secretive +secretively +secretiveness +secretly +secrets +secs +sect +sectarian +sectarianism +section +sectional +sectioned +sectioning +sections +sector +sectors +sects +secular +secularisation +secularise +secularised +secularises +secularising +secularism +secularist +secularists +secularization +secularize +secularized +secularizes +secularizing +secure +secured +securely +secures +securing +securities +security +sedan +sedans +sedate +sedated +sedately +sedates +sedating +sedation +sedative +sedatives +sedentary +sedge +sediment +sedimentary +sedimentation +sediments +sedition +seditious +seduce +seduced +seducer +seducers +seduces +seducing +seduction +seductions +seductive +seductively +seductiveness +seductress +seductresses +see +seed +seedbed +seedbeds +seeded +seedier +seediest +seediness +seeding +seedless +seedling +seedlings +seeds +seedy +seeing +seek +seeker +seekers +seeking +seeks +seem +seemed +seeming +seemingly +seemlier +seemliest +seemly +seems +seen +seep +seepage +seeped +seeping +seeps +seer +seers +seersucker +sees +seesaw +seesawed +seesawing +seesaws +seethe +seethed +seethes +seething +segment +segmentation +segmented +segmenting +segments +segregate +segregated +segregates +segregating +segregation +segregationist +segregationists +segue +segued +segues +seguing +seismic +seismograph +seismographs +seismological +seismologist +seismologists +seismology +seize +seized +seizes +seizing +seizure +seizures +seldom +select +selected +selecting +selection +selections +selective +selectively +selectivity +selector +selectors +selects +self +selfish +selfishly +selfishness +selfless +selflessly +selflessness +selfsame +sell +seller +sellers +selling +sellotape +sellotaped +sellotapes +sellotaping +sellout +sellouts +sells +seltzer +seltzers +selves +semantic +semantically +semantics +semaphore +semblance +semen +semester +semesters +semi +semibreve +semibreves +semicircle +semicircles +semicircular +semicolon +semicolons +semiconducting +semiconductor +semiconductors +semifinal +semifinalist +semifinalists +semifinals +seminal +seminar +seminarian +seminarians +seminaries +seminars +seminary +semiotic +semiotics +semiprecious +semiquaver +semiquavers +semis +semitone +semitones +semitrailer +semitrailers +semitropical +semivowel +semivowels +semolina +senate +senates +senator +senatorial +senators +send +sender +senders +sending +sends +senescence +senescent +senile +senility +senior +seniority +seniors +sensation +sensational +sensationalise +sensationalised +sensationalises +sensationalising +sensationalism +sensationalist +sensationalize +sensationalized +sensationalizes +sensationalizing +sensationally +sensations +sense +sensed +senseless +senselessly +senses +sensibilities +sensibility +sensible +sensibly +sensing +sensitise +sensitised +sensitises +sensitising +sensitive +sensitively +sensitiveness +sensitivities +sensitivity +sensitization +sensitize +sensitized +sensitizes +sensitizing +sensor +sensors +sensory +sensual +sensuality +sensually +sensuous +sensuously +sensuousness +sent +sentence +sentenced +sentences +sentencing +sententious +sententiously +sentient +sentiment +sentimental +sentimentalise +sentimentalised +sentimentalises +sentimentalising +sentimentalism +sentimentalist +sentimentalists +sentimentality +sentimentalize +sentimentalized +sentimentalizes +sentimentalizing +sentimentally +sentiments +sentinel +sentinels +sentries +sentry +sepal +sepals +separability +separable +separate +separated +separately +separates +separating +separation +separations +separatism +separatist +separatists +sepia +sepsis +septet +septets +septic +septicaemia +septicemia +septuagenarian +septuagenarians +sepulcher +sepulchers +sepulchral +sepulchre +sepulchres +sequel +sequels +sequence +sequences +sequencing +sequential +sequentially +sequester +sequestered +sequestering +sequesters +sequestrate +sequestrated +sequestrates +sequestrating +sequestration +sequestrations +sequin +sequined +sequinned +sequins +sequoia +sequoias +sera +seraph +seraphic +seraphim +seraphs +serenade +serenaded +serenades +serenading +serendipitous +serendipity +serene +serenely +serenity +serf +serfdom +serfs +serge +sergeant +sergeants +serial +serialisation +serialisations +serialise +serialised +serialises +serialising +serialization +serializations +serialize +serialized +serializes +serializing +serials +series +serif +serifs +serious +seriously +seriousness +sermon +sermonise +sermonised +sermonises +sermonising +sermonize +sermonized +sermonizes +sermonizing +sermons +serotonin +serpent +serpentine +serpents +serrated +serried +serum +serums +servant +servants +serve +served +server +serveries +servers +servery +serves +service +serviceable +serviced +serviceman +servicemen +services +servicewoman +servicewomen +servicing +serviette +serviettes +servile +servility +serving +servings +servitude +sesame +session +sessions +set +setback +setbacks +sets +setsquare +setsquares +sett +settee +settees +setter +setters +setting +settings +settle +settled +settlement +settlements +settler +settlers +settles +settling +setts +seven +sevens +seventeen +seventeens +seventeenth +seventeenths +seventh +sevenths +seventies +seventieth +seventieths +seventy +sever +several +severally +severance +severe +severed +severely +severer +severest +severing +severity +severs +sew +sewage +sewed +sewer +sewerage +sewers +sewing +sewn +sews +sex +sexagenarian +sexagenarians +sexed +sexes +sexier +sexiest +sexily +sexiness +sexing +sexism +sexist +sexists +sexless +sexologist +sexologists +sexology +sexpot +sexpots +sextant +sextants +sextet +sextets +sexton +sextons +sextuplet +sextuplets +sexual +sexuality +sexually +sexy +sh +shabbier +shabbiest +shabbily +shabbiness +shabby +shack +shacked +shacking +shackle +shackled +shackles +shackling +shacks +shade +shaded +shades +shadier +shadiest +shading +shadings +shadow +shadowed +shadowing +shadows +shadowy +shady +shaft +shafted +shafting +shafts +shag +shagged +shaggier +shaggiest +shagginess +shagging +shaggy +shags +shaikh +shaikhs +shake +shakedown +shakedowns +shaken +shakeout +shakeouts +shaker +shakers +shakes +shakeup +shakeups +shakier +shakiest +shakily +shakiness +shaking +shaky +shale +shall +shallot +shallots +shallow +shallower +shallowest +shallowly +shallowness +shallows +shalom +shalt +sham +shaman +shamanism +shamanistic +shamans +shamble +shambled +shambles +shambling +shambolic +shame +shamed +shamefaced +shamefacedly +shameful +shamefully +shamefulness +shameless +shamelessly +shamelessness +shames +shaming +shammed +shammies +shamming +shammy +shampoo +shampooed +shampooing +shampoos +shamrock +shamrocks +shams +shandies +shandy +shanghai +shanghaied +shanghaiing +shanghais +shank +shanks +shanties +shanty +shantytown +shantytowns +shape +shaped +shapeless +shapelessly +shapelessness +shapeliness +shapely +shapes +shaping +shard +shards +share +sharecropper +sharecroppers +shared +shareholder +shareholders +shareholding +shareholdings +shares +shareware +sharia +shariah +sharing +shark +sharks +sharkskin +sharp +sharpen +sharpened +sharpener +sharpeners +sharpening +sharpens +sharper +sharpest +sharpish +sharply +sharpness +sharps +sharpshooter +sharpshooters +shat +shatter +shattered +shattering +shatterproof +shatters +shave +shaved +shaven +shaver +shavers +shaves +shaving +shavings +shawl +shawls +she +sheaf +shear +sheared +shearing +shears +sheath +sheathe +sheathed +sheathes +sheathing +sheathings +sheaths +sheaves +shebeen +shebeens +shed +shedding +sheds +sheen +sheep +sheepdog +sheepdogs +sheepish +sheepishly +sheepishness +sheepskin +sheepskins +sheer +sheered +sheerer +sheerest +sheering +sheers +sheet +sheeting +sheets +sheik +sheikdom +sheikdoms +sheikh +sheikhdom +sheikhdoms +sheikhs +sheiks +sheila +sheilas +shekel +shekels +shelf +shell +shellac +shellacking +shelled +shellfire +shellfish +shelling +shells +shelter +sheltered +sheltering +shelters +shelve +shelved +shelves +shelving +shenanigans +shepherd +shepherded +shepherdess +shepherdesses +shepherding +shepherds +sherbet +sherbets +sherd +sherds +sheriff +sheriffs +sherries +sherry +shes +shh +shiatsu +shibboleth +shibboleths +shied +shield +shielded +shielding +shields +shies +shift +shifted +shiftily +shiftiness +shifting +shiftless +shifts +shifty +shilling +shillings +shimmer +shimmered +shimmering +shimmers +shimmied +shimmies +shimmy +shimmying +shin +shinbone +shinbones +shindig +shindigs +shine +shined +shiner +shiners +shines +shingle +shingled +shingles +shinier +shiniest +shininess +shining +shinned +shinnied +shinnies +shinning +shinny +shinnying +shins +shiny +ship +shipboard +shipbuilder +shipbuilders +shipbuilding +shipload +shiploads +shipmate +shipmates +shipment +shipments +shipowner +shipowners +shipped +shipper +shippers +shipping +ships +shipshape +shipwreck +shipwrecked +shipwrecks +shipwright +shipwrights +shipyard +shipyards +shire +shires +shirk +shirked +shirker +shirkers +shirking +shirks +shirt +shirts +shirtsleeve +shirtsleeves +shirttail +shirttails +shirty +shit +shite +shites +shitfaced +shithead +shitheads +shitload +shits +shitted +shittier +shittiest +shitting +shitty +shiver +shivered +shivering +shivers +shivery +shoal +shoals +shock +shocked +shocker +shockers +shocking +shockingly +shockproof +shocks +shod +shoddier +shoddiest +shoddily +shoddiness +shoddy +shoe +shoed +shoehorn +shoehorned +shoehorning +shoehorns +shoeing +shoelace +shoelaces +shoemaker +shoemakers +shoes +shoeshine +shoeshines +shoestring +shoestrings +shoetree +shoetrees +shogun +shoguns +shone +shoo +shooed +shooing +shook +shoos +shoot +shooter +shooters +shooting +shootings +shoots +shop +shopaholic +shopaholics +shopfitter +shopfitters +shopfitting +shopfront +shopfronts +shopkeeper +shopkeepers +shoplift +shoplifted +shoplifter +shoplifters +shoplifting +shoplifts +shopped +shopper +shoppers +shopping +shops +shopworn +shore +shored +shoreline +shorelines +shores +shoring +shorn +short +shortage +shortages +shortbread +shortcake +shortcoming +shortcomings +shortcrust +shortcut +shortcuts +shorted +shorten +shortened +shortening +shortens +shorter +shortest +shortfall +shortfalls +shorthand +shorthanded +shorties +shorting +shortish +shortlist +shortlisted +shortlisting +shortlists +shortly +shortness +shorts +shortwave +shorty +shot +shotgun +shotguns +shots +should +shoulder +shouldered +shouldering +shoulders +shout +shouted +shouting +shouts +shove +shoved +shovel +shoveled +shovelful +shovelfuls +shoveling +shovelled +shovelling +shovels +shoves +shoving +show +showbiz +showboat +showboating +showboats +showcase +showcased +showcases +showcasing +showdown +showdowns +showed +shower +showered +showering +showerproof +showers +showery +showgirl +showgirls +showground +showgrounds +showier +showiest +showily +showiness +showing +showings +showjumping +showman +showmanship +showmen +shown +showoff +showoffs +showpiece +showpieces +showplace +showplaces +showroom +showrooms +shows +showstopper +showstoppers +showstopping +showtime +showy +shrank +shrapnel +shred +shredded +shredder +shredders +shredding +shreds +shrew +shrewd +shrewder +shrewdest +shrewdly +shrewdness +shrewish +shrews +shriek +shrieked +shrieking +shrieks +shrill +shrilled +shriller +shrillest +shrilling +shrillness +shrilly +shrimp +shrimper +shrimpers +shrimping +shrimps +shrine +shrines +shrink +shrinkage +shrinking +shrinks +shrivel +shriveled +shriveling +shrivelled +shrivelling +shrivels +shroud +shrouded +shrouding +shrouds +shrub +shrubberies +shrubbery +shrubs +shrug +shrugged +shrugging +shrugs +shrunk +shrunken +shtick +shticks +shuck +shucked +shucking +shucks +shudder +shuddered +shuddering +shudders +shuffle +shuffled +shuffles +shuffling +shun +shunned +shunning +shuns +shunt +shunted +shunting +shunts +shush +shushed +shushes +shushing +shut +shutdown +shutdowns +shuteye +shutout +shutouts +shuts +shutter +shuttered +shutters +shutting +shuttle +shuttlecock +shuttlecocks +shuttled +shuttles +shuttling +shy +shyer +shyest +shying +shyly +shyness +shyster +shysters +sibilant +sibilants +sibling +siblings +sibyl +sibyls +sic +sicced +siccing +sick +sickbay +sickbays +sickbed +sickbeds +sicked +sicken +sickened +sickening +sickeningly +sickens +sicker +sickest +sickie +sickies +sicking +sickle +sickles +sicklier +sickliest +sickly +sickness +sicknesses +sicko +sickos +sickout +sickouts +sickroom +sickrooms +sicks +sics +side +sidearm +sidearms +sidebar +sidebars +sideboard +sideboards +sideburns +sidecar +sidecars +sided +sidekick +sidekicks +sidelight +sidelights +sideline +sidelined +sidelines +sidelining +sidelong +sidereal +sides +sideshow +sideshows +sidesplitting +sidestep +sidestepped +sidestepping +sidesteps +sideswipe +sideswiped +sideswipes +sideswiping +sidetrack +sidetracked +sidetracking +sidetracks +sidewalk +sidewalks +sideways +siding +sidings +sidle +sidled +sidles +sidling +siege +sieges +sienna +sierra +sierras +siesta +siestas +sieve +sieved +sieves +sieving +sift +sifted +sifter +sifters +sifting +sifts +sigh +sighed +sighing +sighs +sight +sighted +sighting +sightings +sightless +sights +sightseeing +sightseer +sightseers +sign +signal +signaled +signaling +signalise +signalised +signalises +signalising +signalize +signalized +signalizes +signalizing +signalled +signalling +signally +signalman +signalmen +signals +signatories +signatory +signature +signatures +signboard +signboards +signed +signer +signers +significance +significant +significantly +signification +significations +signified +signifies +signify +signifying +signing +signings +signpost +signposted +signposting +signposts +signs +silage +silence +silenced +silencer +silencers +silences +silencing +silent +silently +silhouette +silhouetted +silhouettes +silhouetting +silica +silicate +silicates +silicon +silicone +silicosis +silk +silken +silkier +silkiest +silkiness +silks +silkworm +silkworms +silky +sill +sillier +silliest +silliness +sills +silly +silo +silos +silt +silted +silting +silts +silvan +silver +silvered +silverfish +silverfishes +silvering +silvers +silversmith +silversmiths +silverware +silvery +simian +simians +similar +similarities +similarity +similarly +simile +similes +simmer +simmered +simmering +simmers +simper +simpered +simpering +simperingly +simpers +simple +simpler +simplest +simpleton +simpletons +simplicity +simplification +simplifications +simplified +simplifies +simplify +simplifying +simplistic +simplistically +simply +simulacra +simulacrum +simulacrums +simulate +simulated +simulates +simulating +simulation +simulations +simulator +simulators +simulcast +simulcasting +simulcasts +simultaneity +simultaneous +simultaneously +sin +since +sincere +sincerely +sincerity +sine +sinecure +sinecures +sines +sinew +sinews +sinewy +sinful +sinfully +sinfulness +sing +singalong +singalongs +singe +singed +singeing +singer +singers +singes +singing +single +singled +singleness +singles +singlet +singleton +singletons +singlets +singling +singly +sings +singsong +singsongs +singular +singularity +singularly +singulars +sinister +sink +sinking +sinks +sinned +sinner +sinners +sinning +sinology +sins +sinuous +sinuously +sinus +sinuses +sinusitis +sip +siphon +siphoned +siphoning +siphons +sipped +sipping +sips +sir +sire +sired +siren +sirens +sires +siring +sirloin +sirloins +sirocco +siroccos +sirrah +sirs +sis +sisal +sissies +sissy +sister +sisterhood +sisterhoods +sisterly +sisters +sit +sitar +sitars +sitcom +sitcoms +site +sited +sites +siting +sits +sitter +sitters +sitting +sittings +situate +situated +situates +situating +situation +situations +six +sixes +sixfold +sixpence +sixpences +sixteen +sixteens +sixteenth +sixteenths +sixth +sixths +sixties +sixtieth +sixtieths +sixty +sizable +size +sizeable +sized +sizes +sizing +sizzle +sizzled +sizzler +sizzlers +sizzles +sizzling +ska +skate +skateboard +skateboarder +skateboarders +skateboarding +skateboards +skated +skater +skaters +skates +skating +skedaddle +skedaddled +skedaddles +skedaddling +skeeter +skeeters +skein +skeins +skeletal +skeleton +skeletons +skeptic +skeptical +skeptically +skepticism +skeptics +sketch +sketchbook +sketchbooks +sketched +sketches +sketchier +sketchiest +sketchily +sketching +sketchpad +sketchpads +sketchy +skew +skewbald +skewbalds +skewed +skewer +skewered +skewering +skewers +skewing +skews +ski +skibob +skibobs +skid +skidded +skidding +skidpan +skidpans +skids +skied +skier +skiers +skies +skiff +skiffle +skiffs +skiing +skilful +skilfully +skill +skilled +skillet +skillets +skillful +skillfully +skills +skim +skimmed +skimming +skimp +skimped +skimpier +skimpiest +skimping +skimps +skimpy +skims +skin +skincare +skinflint +skinflints +skinful +skinhead +skinheads +skinless +skinned +skinnier +skinniest +skinning +skinny +skins +skint +skintight +skip +skipped +skipper +skippered +skippering +skippers +skipping +skips +skirmish +skirmished +skirmisher +skirmishers +skirmishes +skirmishing +skirt +skirted +skirting +skirts +skis +skit +skits +skitter +skittered +skittering +skitters +skittish +skittishly +skittishness +skittle +skittles +skive +skived +skiver +skivers +skives +skiving +skivvied +skivvies +skivvy +skivvying +skua +skuas +skulduggery +skulk +skulked +skulking +skulks +skull +skullcap +skullcaps +skullduggery +skulls +skunk +skunks +sky +skycap +skycaps +skydiver +skydivers +skydiving +skyjack +skyjacked +skyjacker +skyjackers +skyjacking +skyjacks +skylark +skylarks +skylight +skylights +skyline +skylines +skyrocket +skyrocketed +skyrocketing +skyrockets +skyscraper +skyscrapers +skyward +skywards +slab +slabs +slack +slacked +slacken +slackened +slackening +slackens +slacker +slackers +slackest +slacking +slackly +slackness +slacks +slag +slagged +slagging +slagheap +slagheaps +slags +slain +slake +slaked +slakes +slaking +slalom +slaloms +slam +slammed +slammer +slamming +slams +slander +slandered +slanderer +slanderers +slandering +slanderous +slanders +slang +slangy +slant +slanted +slanting +slants +slap +slapdash +slaphappy +slapped +slapper +slappers +slapping +slaps +slapstick +slash +slashed +slashes +slashing +slat +slate +slated +slates +slather +slathered +slathering +slathers +slating +slats +slatted +slattern +slatternly +slatterns +slaughter +slaughtered +slaughterhouse +slaughterhouses +slaughtering +slaughters +slave +slaved +slaver +slavered +slavering +slavers +slavery +slaves +slaving +slavish +slavishly +slaw +slay +slayed +slayer +slayers +slaying +slayings +slays +sleaze +sleazebag +sleazebags +sleazeball +sleazeballs +sleazes +sleazier +sleaziest +sleaziness +sleazy +sled +sledded +sledding +sledge +sledged +sledgehammer +sledgehammers +sledges +sledging +sleds +sleek +sleeked +sleeker +sleekest +sleeking +sleekly +sleekness +sleeks +sleep +sleeper +sleepers +sleepier +sleepiest +sleepily +sleepiness +sleeping +sleepless +sleeplessly +sleeplessness +sleepover +sleepovers +sleeps +sleepwalk +sleepwalked +sleepwalker +sleepwalkers +sleepwalking +sleepwalks +sleepy +sleepyhead +sleepyheads +sleet +sleeted +sleeting +sleets +sleety +sleeve +sleeveless +sleeves +sleigh +sleighs +slender +slenderness +slept +sleuth +sleuthing +sleuths +slew +slewed +slewing +slews +slice +sliced +slices +slicing +slick +slicked +slicker +slickers +slickest +slicking +slickly +slickness +slicks +slid +slide +slides +sliding +slight +slighted +slighter +slightest +slighting +slightly +slights +slim +slime +slimier +slimiest +sliminess +slimline +slimmed +slimmer +slimmers +slimmest +slimming +slimness +slims +slimy +sling +slingback +slingbacks +slinging +slings +slingshot +slingshots +slink +slinkier +slinkiest +slinking +slinks +slinky +slip +slipcase +slipcases +slipknot +slipknots +slippage +slippages +slipped +slipper +slipperier +slipperiest +slippers +slippery +slipping +slippy +slips +slipshod +slipstream +slipstreams +slipway +slipways +slit +slither +slithered +slithering +slithers +slithery +slits +slitting +sliver +slivers +slob +slobbed +slobber +slobbered +slobbering +slobbers +slobbery +slobbing +slobs +sloe +sloes +slog +slogan +sloganeering +slogans +slogged +slogging +slogs +sloop +sloops +slop +slope +sloped +slopes +sloping +slopped +sloppier +sloppiest +sloppily +sloppiness +slopping +sloppy +slops +slosh +sloshed +sloshes +sloshing +slot +sloth +slothful +sloths +slots +slotted +slotting +slouch +slouched +slouches +slouching +slough +sloughed +sloughing +sloughs +slovenliness +slovenly +slow +slowcoach +slowcoaches +slowdown +slowdowns +slowed +slower +slowest +slowing +slowly +slowness +slowpoke +slowpokes +slows +sludge +sludgy +slug +slugged +slugger +sluggers +slugging +sluggish +sluggishly +sluggishness +slugs +sluice +sluiced +sluices +sluicing +slum +slumber +slumbered +slumbering +slumbers +slummed +slumming +slummy +slump +slumped +slumping +slumps +slums +slung +slunk +slur +slurp +slurped +slurping +slurps +slurred +slurring +slurry +slurs +slush +slushier +slushiest +slushy +slut +sluts +sluttish +slutty +sly +slyer +slyest +slyly +slyness +smack +smacked +smacker +smackers +smacking +smacks +small +smaller +smallest +smallholder +smallholders +smallholding +smallholdings +smallish +smallness +smallpox +smalls +smarmier +smarmiest +smarmy +smart +smarted +smarten +smartened +smartening +smartens +smarter +smartest +smarting +smartly +smartness +smarts +smash +smashed +smasher +smashers +smashes +smashing +smattering +smatterings +smear +smeared +smearing +smears +smell +smelled +smellier +smelliest +smelling +smells +smelly +smelt +smelted +smelter +smelters +smelting +smelts +smidgen +smidgens +smidgeon +smidgeons +smidgin +smidgins +smile +smiled +smiles +smiley +smiling +smilingly +smirk +smirked +smirking +smirks +smite +smites +smith +smithereens +smithies +smiths +smithy +smiting +smitten +smock +smocked +smocking +smocks +smog +smoggier +smoggiest +smoggy +smogs +smoke +smoked +smokeless +smoker +smokers +smokes +smokescreen +smokescreens +smokestack +smokestacks +smokey +smokier +smokiest +smoking +smoky +smolder +smoldered +smoldering +smolders +smooch +smooched +smooches +smooching +smoochy +smooth +smoothed +smoother +smoothest +smoothie +smoothies +smoothing +smoothly +smoothness +smooths +smoothy +smorgasbord +smorgasbords +smote +smother +smothered +smothering +smothers +smoulder +smouldered +smouldering +smoulders +smudge +smudged +smudges +smudgier +smudgiest +smudging +smudgy +smug +smugger +smuggest +smuggle +smuggled +smuggler +smugglers +smuggles +smuggling +smugly +smugness +smut +smuts +smuttier +smuttiest +smuttiness +smutty +snack +snacked +snacking +snacks +snaffle +snaffled +snaffles +snaffling +snafu +snafus +snag +snagged +snagging +snags +snail +snails +snake +snakebite +snakebites +snaked +snakes +snakeskin +snaking +snaky +snap +snapdragon +snapdragons +snapped +snapper +snappers +snappier +snappiest +snappily +snappiness +snapping +snappish +snappishly +snappy +snaps +snapshot +snapshots +snare +snared +snares +snaring +snarl +snarled +snarling +snarls +snatch +snatched +snatcher +snatchers +snatches +snatching +snazzier +snazziest +snazzily +snazzy +sneak +sneaked +sneaker +sneakers +sneakier +sneakiest +sneakily +sneaking +sneaks +sneaky +sneer +sneered +sneering +sneeringly +sneers +sneeze +sneezed +sneezes +sneezing +snick +snicked +snicker +snickered +snickering +snickers +snicking +snicks +snide +snidely +sniff +sniffed +sniffer +sniffers +sniffier +sniffiest +sniffing +sniffle +sniffled +sniffles +sniffling +sniffs +sniffy +snifter +snifters +snigger +sniggered +sniggering +sniggers +snip +snipe +sniped +sniper +snipers +snipes +sniping +snipped +snippet +snippets +snipping +snippy +snips +snitch +snitched +snitches +snitching +snivel +sniveled +sniveling +snivelled +snivelling +snivels +snob +snobbery +snobbish +snobbishly +snobbishness +snobby +snobs +snog +snogged +snogging +snogs +snooker +snookered +snookering +snookers +snoop +snooped +snooper +snoopers +snooping +snoops +snoot +snootier +snootiest +snootily +snootiness +snoots +snooty +snooze +snoozed +snoozes +snoozing +snore +snored +snorer +snorers +snores +snoring +snorkel +snorkeled +snorkeling +snorkelled +snorkelling +snorkels +snort +snorted +snorting +snorts +snot +snottier +snottiest +snotty +snout +snouts +snow +snowball +snowballed +snowballing +snowballs +snowboard +snowboarder +snowboarders +snowboarding +snowboards +snowbound +snowdrift +snowdrifts +snowdrop +snowdrops +snowed +snowfall +snowfalls +snowfield +snowfields +snowflake +snowflakes +snowier +snowiest +snowing +snowline +snowman +snowmen +snowmobile +snowmobiles +snowplough +snowploughs +snowplow +snowplows +snows +snowshoe +snowshoes +snowstorm +snowstorms +snowsuit +snowsuits +snowy +snub +snubbed +snubbing +snubs +snuck +snuff +snuffed +snuffing +snuffle +snuffled +snuffles +snuffling +snuffs +snug +snugger +snuggest +snuggle +snuggled +snuggles +snuggling +snugly +snugness +snugs +so +soak +soaked +soaking +soaks +soap +soapbox +soapboxes +soaped +soapier +soapiest +soaping +soaps +soapstone +soapsuds +soapy +soar +soared +soaring +soars +sob +sobbed +sobbing +sober +sobered +sobering +soberly +sobers +sobriety +sobriquet +sobriquets +sobs +soccer +sociability +sociable +sociables +social +socialisation +socialise +socialised +socialises +socialising +socialism +socialist +socialistic +socialists +socialite +socialites +socialization +socialize +socialized +socializes +socializing +socially +socials +societal +societies +society +socioeconomic +socioeconomically +sociological +sociologically +sociologist +sociologists +sociology +sociopath +sociopaths +sociopolitical +sock +socked +socket +sockets +socking +socks +sod +soda +sodas +sodden +sodding +sodium +sodomise +sodomised +sodomises +sodomising +sodomite +sodomites +sodomize +sodomized +sodomizes +sodomizing +sodomy +sods +sofa +sofas +soft +softback +softball +softballs +softcover +soften +softened +softener +softeners +softening +softens +softer +softest +softie +softies +softly +softness +software +softwood +softwoods +softy +soggier +soggiest +soggily +sogginess +soggy +soh +soignee +soil +soiled +soiling +soils +soiree +soirees +sojourn +sojourned +sojourning +sojourns +sol +solace +solaced +solaces +solacing +solar +solarium +solariums +sold +solder +soldered +soldering +solders +soldier +soldiered +soldiering +soldierly +soldiers +soldiery +sole +solecism +solecisms +soled +solely +solemn +solemnise +solemnised +solemnises +solemnising +solemnities +solemnity +solemnization +solemnize +solemnized +solemnizes +solemnizing +solemnly +solemnness +soles +solicit +solicitation +solicitations +solicited +soliciting +solicitor +solicitors +solicitous +solicitously +solicitousness +solicits +solicitude +solid +solidarity +solidification +solidified +solidifies +solidify +solidifying +solidity +solidly +solidness +solids +soliloquies +soliloquize +soliloquized +soliloquizes +soliloquizing +soliloquy +soling +solipsism +solipsistic +solitaire +solitaires +solitaries +solitariness +solitary +solitude +solo +soloist +soloists +solos +solstice +solstices +solubility +soluble +solution +solutions +solvable +solve +solved +solvency +solvent +solvents +solves +solving +somber +somberly +somberness +sombre +sombrely +sombreness +sombrero +sombreros +some +somebody +someday +somehow +someone +someplace +somersault +somersaulted +somersaulting +somersaults +something +sometime +sometimes +someway +someways +somewhat +somewhere +somnambulism +somnambulist +somnambulists +somnolence +somnolent +son +sonar +sonata +sonatas +song +songbird +songbirds +songbook +songbooks +songs +songster +songsters +songstress +songstresses +songwriter +songwriters +songwriting +sonic +sonnet +sonnets +sonny +sonofabitch +sonogram +sonograms +sonorous +sonorously +sons +sonsofbitches +soon +sooner +soonest +soot +soothe +soothed +soothes +soothing +soothingly +soothsayer +soothsayers +sooty +sop +sophisticate +sophisticated +sophisticates +sophistication +sophistries +sophistry +sophomore +sophomores +soporific +soporifically +sopped +soppier +soppiest +sopping +soppy +soprano +sopranos +sops +sorbet +sorbets +sorcerer +sorcerers +sorceress +sorceresses +sorcery +sordid +sore +sorehead +soreheads +sorely +soreness +sorer +sores +sorest +sorghum +sororities +sorority +sorrel +sorrier +sorriest +sorrow +sorrowed +sorrowful +sorrowfully +sorrowing +sorrows +sorry +sort +sorted +sortie +sorties +sorting +sorts +sou +soubriquet +soubriquets +souffle +souffles +sought +souk +souks +soul +soulful +soulfully +soulfulness +soulless +soullessly +soullessness +souls +sound +soundbite +soundbites +sounded +sounder +soundest +sounding +soundings +soundless +soundlessly +soundly +soundness +soundproof +soundproofed +soundproofing +soundproofs +sounds +soundtrack +soundtracks +soup +soupcon +souped +souping +soups +soupy +sour +source +sourced +sources +sourcing +sourdough +soured +souring +sourly +sourness +sourpuss +sourpusses +sours +sousaphone +sousaphones +souse +soused +souses +sousing +south +southbound +southeast +southeasterly +southeastern +southeastward +southeastwards +southerly +southern +southerner +southerners +southernmost +southpaw +southpaws +southward +southwards +southwest +southwesterly +southwestern +southwestward +southwestwards +souvenir +souvenirs +sovereign +sovereigns +sovereignty +soviet +soviets +sow +sowed +sower +sowers +sowing +sown +sows +sox +soy +soya +soybean +soybeans +sozzled +spa +space +spacecraft +spaced +spaceman +spacemen +spaces +spaceship +spaceships +spacesuit +spacesuits +spacewalk +spacewalks +spacewoman +spacewomen +spacey +spacing +spacious +spaciously +spaciousness +spade +spades +spadework +spaghetti +spake +spam +spammed +spamming +spams +span +spandex +spangle +spangled +spangles +spangling +spangly +spaniel +spaniels +spank +spanked +spanking +spankings +spanks +spanned +spanner +spanners +spanning +spans +spar +spare +spared +spareribs +spares +sparing +sparingly +spark +sparked +sparkier +sparkiest +sparking +sparkle +sparkled +sparkler +sparklers +sparkles +sparkling +sparkly +sparks +sparky +sparred +sparring +sparrow +sparrowhawk +sparrowhawks +sparrows +spars +sparse +sparsely +sparseness +sparser +sparsest +spartan +spas +spasm +spasmodic +spasmodically +spasms +spastic +spastics +spat +spate +spates +spatial +spatially +spats +spatter +spattered +spattering +spatters +spatula +spatulas +spawn +spawned +spawning +spawns +spay +spayed +spaying +spays +speak +speakeasies +speakeasy +speaker +speakerphone +speakerphones +speakers +speaking +speaks +spear +speared +spearhead +spearheaded +spearheading +spearheads +spearing +spearmint +spears +spec +special +specialisation +specialisations +specialise +specialised +specialises +specialising +specialism +specialisms +specialist +specialists +specialities +speciality +specialization +specializations +specialize +specialized +specializes +specializing +specially +specials +specialties +specialty +species +specific +specifically +specification +specifications +specificity +specifics +specified +specifies +specify +specifying +specimen +specimens +specious +speciously +speciousness +speck +speckle +speckled +speckles +specks +specs +spectacle +spectacles +spectacular +spectacularly +spectaculars +spectate +spectated +spectates +spectating +spectator +spectators +specter +specters +spectra +spectral +spectre +spectres +spectroscope +spectroscopes +spectroscopic +spectroscopy +spectrum +spectrums +speculate +speculated +speculates +speculating +speculation +speculations +speculative +speculatively +speculator +speculators +sped +speech +speeches +speechified +speechifies +speechify +speechifying +speechless +speechlessly +speechlessness +speechwriter +speechwriters +speed +speedboat +speedboats +speeded +speedier +speediest +speedily +speediness +speeding +speedometer +speedometers +speeds +speedway +speedways +speedy +speleological +speleologist +speleologists +speleology +spell +spellbinder +spellbinders +spellbinding +spellbound +spellchecker +spellcheckers +spelled +speller +spellers +spelling +spellings +spells +spelt +spelunker +spelunkers +spelunking +spend +spender +spenders +spending +spends +spendthrift +spendthrifts +spent +sperm +spermatozoa +spermatozoon +spermicidal +spermicide +spermicides +sperms +spew +spewed +spewing +spews +sphagnum +sphere +spheres +spherical +spheroid +spheroids +sphincter +sphincters +sphinx +sphinxes +spic +spice +spiced +spices +spicier +spiciest +spiciness +spicing +spics +spicy +spider +spiders +spiderweb +spiderwebs +spidery +spied +spiel +spiels +spies +spiff +spiffed +spiffing +spiffs +spiffy +spigot +spigots +spik +spike +spiked +spikes +spikiness +spiking +spiks +spiky +spill +spillage +spillages +spilled +spilling +spillover +spillovers +spills +spilt +spin +spinach +spinal +spindle +spindles +spindlier +spindliest +spindly +spine +spineless +spinelessly +spinelessness +spines +spinet +spinets +spinier +spiniest +spinnaker +spinnakers +spinner +spinners +spinney +spinneys +spinning +spins +spinster +spinsterhood +spinsters +spiny +spiral +spiraled +spiraling +spiralled +spiralling +spirally +spirals +spire +spires +spirit +spirited +spiritedly +spiriting +spiritless +spirits +spiritual +spiritualism +spiritualist +spiritualists +spirituality +spiritually +spirituals +spit +spitball +spitballs +spite +spited +spiteful +spitefully +spitefulness +spites +spiting +spits +spitting +spittle +spittoon +spittoons +spiv +spivs +splash +splashdown +splashdowns +splashed +splashes +splashier +splashiest +splashing +splashy +splat +splats +splatter +splattered +splattering +splatters +splay +splayed +splaying +splays +spleen +spleens +splendid +splendidly +splendor +splendors +splendour +splendours +splenetic +splice +spliced +splicer +splicers +splices +splicing +spliff +spliffs +splint +splinter +splintered +splintering +splinters +splints +split +splits +splitting +splodge +splodges +splosh +sploshed +sploshes +sploshing +splotch +splotches +splurge +splurged +splurges +splurging +splutter +spluttered +spluttering +splutters +spoil +spoilage +spoiled +spoiler +spoilers +spoiling +spoils +spoilsport +spoilsports +spoilt +spoke +spoken +spokes +spokesman +spokesmen +spokespeople +spokesperson +spokespersons +spokeswoman +spokeswomen +sponge +sponged +sponger +spongers +sponges +spongier +spongiest +sponginess +sponging +spongy +sponsor +sponsored +sponsoring +sponsors +sponsorship +spontaneity +spontaneous +spontaneously +spoof +spoofed +spoofing +spoofs +spook +spooked +spookier +spookiest +spooking +spooks +spooky +spool +spools +spoon +spooned +spoonerism +spoonerisms +spoonful +spoonfuls +spooning +spoons +spoor +spoors +sporadic +sporadically +spore +spores +sporran +sporrans +sport +sported +sportier +sportiest +sporting +sportingly +sports +sportscast +sportscaster +sportscasters +sportscasts +sportsman +sportsmanlike +sportsmanship +sportsmen +sportspeople +sportsperson +sportswear +sportswoman +sportswomen +sporty +spot +spotless +spotlessly +spotlight +spotlighted +spotlighting +spotlights +spotlit +spots +spotted +spotter +spotters +spottier +spottiest +spotting +spotty +spousal +spouse +spouses +spout +spouted +spouting +spouts +sprain +sprained +spraining +sprains +sprang +sprat +sprats +sprawl +sprawled +sprawling +sprawls +spray +sprayed +sprayer +sprayers +spraying +sprays +spread +spreadeagled +spreading +spreads +spreadsheet +spreadsheets +spree +sprees +sprig +sprigged +sprightlier +sprightliest +sprightliness +sprightly +sprigs +spring +springboard +springboards +springbok +springboks +springier +springiest +springing +springs +springtime +springy +sprinkle +sprinkled +sprinkler +sprinklers +sprinkles +sprinkling +sprinklings +sprint +sprinted +sprinter +sprinters +sprinting +sprints +sprite +sprites +spritz +spritzed +spritzer +spritzers +spritzes +spritzing +sprocket +sprockets +sprog +sprogs +sprout +sprouted +sprouting +sprouts +spruce +spruced +spruces +sprucing +sprung +spry +spud +spuds +spume +spun +spunk +spunkier +spunkiest +spunks +spunky +spur +spurious +spuriously +spurn +spurned +spurning +spurns +spurred +spurring +spurs +spurt +spurted +spurting +spurts +sputter +sputtered +sputtering +sputters +sputum +spy +spying +spymaster +spymasters +squab +squabble +squabbled +squabbles +squabbling +squad +squaddie +squaddies +squadron +squadrons +squads +squalid +squall +squalled +squalling +squalls +squally +squalor +squander +squandered +squandering +squanders +square +squared +squarely +squares +squaring +squarish +squash +squashed +squashes +squashing +squashy +squat +squats +squatted +squatter +squatters +squatting +squaw +squawk +squawked +squawking +squawks +squaws +squeak +squeaked +squeakier +squeakiest +squeaking +squeaks +squeaky +squeal +squealed +squealing +squeals +squeamish +squeamishly +squeamishness +squeegee +squeegees +squeeze +squeezebox +squeezeboxes +squeezed +squeezer +squeezers +squeezes +squeezing +squelch +squelched +squelches +squelching +squelchy +squib +squibs +squid +squidgy +squids +squiffy +squiggle +squiggles +squiggly +squint +squinted +squinting +squints +squire +squires +squirm +squirmed +squirming +squirms +squirrel +squirreled +squirreling +squirrelled +squirrelling +squirrels +squirt +squirted +squirting +squirts +squish +squished +squishes +squishier +squishiest +squishing +squishy +ssh +stab +stabbed +stabbing +stabbings +stabilisation +stabilise +stabilised +stabiliser +stabilisers +stabilises +stabilising +stability +stabilization +stabilize +stabilized +stabilizer +stabilizers +stabilizes +stabilizing +stable +stabled +stableman +stablemate +stablemates +stablemen +stabler +stables +stablest +stabling +stably +stabs +staccato +stack +stacked +stacking +stacks +stadia +stadium +stadiums +staff +staffed +staffer +staffers +staffing +staffs +stag +stage +stagecoach +stagecoaches +stagecraft +staged +stagehand +stagehands +stages +stagestruck +stagey +stagflation +stagger +staggered +staggering +staggeringly +staggers +staging +stagings +stagnant +stagnate +stagnated +stagnates +stagnating +stagnation +stags +stagy +staid +stain +stained +staining +stainless +stains +stair +staircase +staircases +stairs +stairway +stairways +stairwell +stairwells +stake +staked +stakeholder +stakeholders +stakeout +stakeouts +stakes +staking +stalactite +stalactites +stalagmite +stalagmites +stale +stalemate +stalemates +staleness +staler +stalest +stalk +stalked +stalker +stalkers +stalking +stalks +stall +stalled +stallholder +stallholders +stalling +stallion +stallions +stalls +stalwart +stalwartly +stalwarts +stamen +stamens +stamina +stammer +stammered +stammerer +stammerers +stammering +stammeringly +stammers +stamp +stamped +stampede +stampeded +stampedes +stampeding +stamping +stamps +stance +stances +stanch +stanched +stanches +stanching +stanchion +stanchions +stand +standard +standardisation +standardise +standardised +standardises +standardising +standardization +standardize +standardized +standardizes +standardizing +standards +standby +standbys +standing +standings +standoff +standoffish +standoffs +standout +standouts +standpipe +standpipes +standpoint +standpoints +stands +standstill +standup +stank +stanza +stanzas +staple +stapled +stapler +staplers +staples +stapling +star +starboard +starch +starched +starches +starchier +starchiest +starchily +starching +starchy +stardom +stardust +stare +stared +stares +starfish +starfishes +starfruit +stargazer +stargazers +stargazing +staring +stark +starker +starkers +starkest +starkly +starkness +starless +starlet +starlets +starlight +starling +starlings +starlit +starred +starring +starry +stars +starstruck +start +started +starter +starters +starting +startle +startled +startles +startling +startlingly +starts +starvation +starve +starved +starves +starving +stash +stashed +stashes +stashing +stasis +state +stated +statehood +statehouse +statehouses +stateless +statelessness +stateliness +stately +statement +statemented +statementing +statements +stateroom +staterooms +states +stateside +statesman +statesmanlike +statesmanship +statesmen +stateswoman +stateswomen +statewide +static +statics +stating +station +stationary +stationed +stationer +stationers +stationery +stationing +stationmaster +stationmasters +stations +statistic +statistical +statistically +statistician +statisticians +statistics +stats +statuary +statue +statues +statuesque +statuette +statuettes +stature +statures +status +statuses +statute +statutes +statutorily +statutory +staunch +staunched +stauncher +staunches +staunchest +staunching +staunchly +staunchness +stave +staved +staves +staving +stay +stayed +stayer +stayers +staying +stays +steadfast +steadfastly +steadfastness +steadied +steadier +steadies +steadiest +steadily +steadiness +steady +steadying +steak +steakhouse +steakhouses +steaks +steal +stealing +steals +stealth +stealthier +stealthiest +stealthily +stealthy +steam +steamboat +steamboats +steamed +steamer +steamers +steaming +steamroller +steamrollered +steamrollering +steamrollers +steams +steamship +steamships +steamy +steed +steeds +steel +steeled +steeling +steelmaker +steelmakers +steels +steelworker +steelworkers +steelworks +steely +steep +steeped +steepen +steepened +steepening +steepens +steeper +steepest +steeping +steeple +steeplechase +steeplechases +steeplejack +steeplejacks +steeples +steeply +steepness +steeps +steer +steerage +steered +steering +steers +stein +steins +stellar +stem +stemmed +stemming +stems +stench +stenches +stencil +stenciled +stenciling +stencilled +stencilling +stencils +steno +stenographer +stenographers +stenography +stenos +stentorian +step +stepbrother +stepbrothers +stepchild +stepchildren +stepdaughter +stepdaughters +stepfather +stepfathers +stepladder +stepladders +stepmother +stepmothers +stepparent +stepparents +steppe +stepped +steppes +stepping +steps +stepsister +stepsisters +stepson +stepsons +stereo +stereophonic +stereos +stereoscopic +stereotype +stereotyped +stereotypes +stereotypical +stereotyping +sterile +sterilisation +sterilisations +sterilise +sterilised +steriliser +sterilisers +sterilises +sterilising +sterility +sterilization +sterilizations +sterilize +sterilized +sterilizer +sterilizers +sterilizes +sterilizing +sterling +stern +sterna +sterner +sternest +sternly +sternness +sterns +sternum +sternums +steroid +steroids +stethoscope +stethoscopes +stetson +stetsons +stevedore +stevedores +stew +steward +stewardess +stewardesses +stewards +stewardship +stewed +stewing +stews +stick +sticker +stickers +stickier +stickiest +stickiness +sticking +stickleback +sticklebacks +stickler +sticklers +stickpin +stickpins +sticks +sticky +sties +stiff +stiffen +stiffened +stiffening +stiffens +stiffer +stiffest +stiffly +stiffness +stiffs +stifle +stifled +stifles +stifling +stiflingly +stigma +stigmas +stigmata +stigmatisation +stigmatise +stigmatised +stigmatises +stigmatising +stigmatization +stigmatize +stigmatized +stigmatizes +stigmatizing +stile +stiles +stiletto +stilettoes +stilettos +still +stillbirth +stillbirths +stillborn +stilled +stiller +stillest +stilling +stillness +stills +stilt +stilted +stiltedly +stilts +stimulant +stimulants +stimulate +stimulated +stimulates +stimulating +stimulation +stimulative +stimuli +stimulus +sting +stinger +stingers +stingier +stingiest +stingily +stinginess +stinging +stingray +stingrays +stings +stingy +stink +stinker +stinkers +stinking +stinks +stint +stinted +stinting +stints +stipend +stipendiaries +stipendiary +stipends +stipple +stippled +stipples +stippling +stipulate +stipulated +stipulates +stipulating +stipulation +stipulations +stir +stirred +stirrer +stirrers +stirring +stirringly +stirrings +stirrup +stirrups +stirs +stitch +stitched +stitches +stitching +stoat +stoats +stock +stockade +stockades +stockbroker +stockbrokers +stockbroking +stocked +stockholder +stockholders +stockier +stockiest +stockily +stockiness +stocking +stockings +stockist +stockists +stockpile +stockpiled +stockpiles +stockpiling +stockroom +stockrooms +stocks +stocktaking +stocky +stockyard +stockyards +stodge +stodgier +stodgiest +stodginess +stodgy +stogie +stogies +stoic +stoical +stoically +stoicism +stoics +stoke +stoked +stoker +stokers +stokes +stoking +stole +stolen +stoles +stolid +stolidity +stolidly +stomach +stomached +stomaching +stomachs +stomp +stomped +stomping +stomps +stone +stoned +stonemason +stonemasons +stones +stonewall +stonewalled +stonewalling +stonewalls +stoneware +stonewashed +stonework +stonier +stoniest +stonily +stoning +stonkered +stonking +stony +stood +stooge +stooges +stool +stools +stoop +stooped +stooping +stoops +stop +stopcock +stopcocks +stopgap +stopgaps +stoplight +stoplights +stopover +stopovers +stoppage +stoppages +stopped +stopper +stoppers +stopping +stops +stopwatch +stopwatches +storage +store +stored +storefront +storefronts +storehouse +storehouses +storekeeper +storekeepers +storeroom +storerooms +stores +storey +storeys +storied +stories +storing +stork +storks +storm +stormed +stormier +stormiest +storming +storms +stormy +story +storyboard +storyboards +storybook +storybooks +storyteller +storytellers +storytelling +stoup +stoups +stout +stouter +stoutest +stouthearted +stoutly +stoutness +stouts +stove +stoves +stow +stowage +stowaway +stowaways +stowed +stowing +stows +straddle +straddled +straddles +straddling +strafe +strafed +strafes +strafing +straggle +straggled +straggler +stragglers +straggles +stragglier +straggliest +straggling +straggly +straight +straightaway +straightaways +straighten +straightened +straightening +straightens +straighter +straightest +straightforward +straightforwardly +straightforwardness +straightjacket +straightjackets +straights +strain +strained +strainer +strainers +straining +strains +strait +straitened +straitjacket +straitjackets +straitlaced +straits +strand +stranded +stranding +strands +strange +strangely +strangeness +stranger +strangers +strangest +strangle +strangled +stranglehold +strangler +stranglers +strangles +strangling +strangulated +strangulation +strap +strapless +strapped +strapping +straps +strata +stratagem +stratagems +strategic +strategical +strategically +strategies +strategist +strategists +strategy +stratification +stratified +stratifies +stratify +stratifying +stratosphere +stratospheric +stratum +straw +strawberries +strawberry +straws +stray +strayed +straying +strays +streak +streaked +streaker +streakers +streakier +streakiest +streaking +streaks +streaky +stream +streamed +streamer +streamers +streaming +streamline +streamlined +streamlines +streamlining +streams +street +streetcar +streetcars +streetlamp +streetlamps +streetlight +streetlights +streets +streetwalker +streetwalkers +streetwise +strength +strengthen +strengthened +strengthening +strengthens +strengths +strenuous +strenuously +strep +streptococcal +streptococci +streptococcus +stress +stressed +stresses +stressful +stressing +stretch +stretched +stretcher +stretchered +stretchering +stretchers +stretches +stretchier +stretchiest +stretching +stretchmarks +stretchy +strew +strewed +strewing +strewn +strews +strewth +striated +striation +striations +stricken +strict +stricter +strictest +strictly +strictness +stricture +strictures +stridden +stride +stridency +strident +stridently +strides +striding +strife +strike +strikebound +strikebreaker +strikebreakers +strikebreaking +strikeout +strikeouts +striker +strikers +strikes +striking +strikingly +string +stringency +stringent +stringently +stringer +stringers +stringier +stringiest +stringing +strings +stringy +strip +stripe +striped +stripes +stripey +stripling +striplings +stripped +stripper +strippers +stripping +strips +striptease +stripteases +stripy +strive +strived +striven +strives +striving +strobe +strobes +strode +stroke +stroked +strokes +stroking +stroll +strolled +stroller +strollers +strolling +strolls +strong +strongbox +strongboxes +stronger +strongest +stronghold +strongholds +strongly +strongman +strongmen +strongroom +strongrooms +strontium +strop +stroppier +stroppiest +stroppily +stroppiness +stroppy +strops +strove +struck +structural +structuralism +structuralist +structuralists +structurally +structure +structured +structures +structuring +strudel +strudels +struggle +struggled +struggles +struggling +strum +strummed +strumming +strumpet +strumpets +strums +strung +strut +struts +strutted +strutting +strychnine +stub +stubbed +stubbier +stubbiest +stubbing +stubble +stubbly +stubborn +stubbornly +stubbornness +stubby +stubs +stucco +stuccoed +stuck +stud +studbook +studbooks +studded +studding +student +students +studied +studies +studio +studios +studious +studiously +studiousness +studs +study +studying +stuff +stuffed +stuffier +stuffiest +stuffily +stuffiness +stuffing +stuffs +stuffy +stultified +stultifies +stultify +stultifying +stumble +stumbled +stumbles +stumbling +stump +stumped +stumpier +stumpiest +stumping +stumps +stumpy +stun +stung +stunk +stunned +stunner +stunners +stunning +stunningly +stuns +stunt +stunted +stunting +stuntman +stuntmen +stunts +stupefaction +stupefied +stupefies +stupefy +stupefying +stupendous +stupendously +stupid +stupider +stupidest +stupidities +stupidity +stupidly +stupor +stupors +sturdier +sturdiest +sturdily +sturdiness +sturdy +sturgeon +sturgeons +stutter +stuttered +stuttering +stutters +sty +stye +styes +style +styled +styles +styling +stylised +stylish +stylishly +stylishness +stylist +stylistic +stylistically +stylistics +stylists +stylized +stylus +styluses +stymie +stymied +stymieing +stymies +suave +suavely +suavity +sub +subaltern +subalterns +subaqua +subarctic +subatomic +subbed +subbing +subcommittee +subcommittees +subcompact +subcompacts +subconscious +subconsciously +subcontinent +subcontinents +subcontract +subcontracted +subcontracting +subcontractor +subcontractors +subcontracts +subculture +subcultures +subcutaneous +subcutaneously +subdivide +subdivided +subdivides +subdividing +subdivision +subdivisions +subdue +subdued +subdues +subduing +subeditor +subeditors +subgroup +subgroups +subheading +subheadings +subhuman +subject +subjected +subjecting +subjection +subjective +subjectively +subjectivity +subjects +subjugate +subjugated +subjugates +subjugating +subjugation +subjunctive +subjunctives +sublet +sublets +subletting +sublieutenant +sublieutenants +sublimate +sublimated +sublimates +sublimating +sublimation +sublime +sublimely +subliminal +subliminally +sublimity +submarine +submariner +submariners +submarines +submerge +submerged +submerges +submerging +submersible +submersibles +submersion +submission +submissions +submissive +submissively +submissiveness +submit +submits +submitted +submitting +subnormal +subordinate +subordinated +subordinates +subordinating +subordination +suborn +suborned +suborning +suborns +subplot +subplots +subpoena +subpoenaed +subpoenaing +subpoenas +subs +subscribe +subscribed +subscriber +subscribers +subscribes +subscribing +subscription +subscriptions +subsection +subsections +subsequent +subsequently +subservience +subservient +subserviently +subset +subsets +subside +subsided +subsidence +subsides +subsidiaries +subsidiarity +subsidiary +subsidies +subsiding +subsidisation +subsidise +subsidised +subsidiser +subsidisers +subsidises +subsidising +subsidization +subsidize +subsidized +subsidizer +subsidizers +subsidizes +subsidizing +subsidy +subsist +subsisted +subsistence +subsisting +subsists +subsoil +subsonic +subspecies +substance +substances +substandard +substantial +substantially +substantiate +substantiated +substantiates +substantiating +substantiation +substantive +substantives +substation +substations +substitute +substituted +substitutes +substituting +substitution +substitutions +substrata +substratum +substructure +substructures +subsume +subsumed +subsumes +subsuming +subtenant +subtenants +subtend +subtended +subtending +subtends +subterfuge +subterfuges +subterranean +subtext +subtexts +subtitle +subtitled +subtitles +subtitling +subtle +subtler +subtlest +subtleties +subtlety +subtly +subtotal +subtotals +subtract +subtracted +subtracting +subtraction +subtractions +subtracts +subtropical +suburb +suburban +suburbanite +suburbanites +suburbia +suburbs +subvention +subventions +subversion +subversive +subversively +subversiveness +subversives +subvert +subverted +subverting +subverts +subway +subways +subzero +succeed +succeeded +succeeding +succeeds +success +successes +successful +successfully +succession +successions +successive +successively +successor +successors +succinct +succinctly +succinctness +succor +succored +succoring +succors +succour +succoured +succouring +succours +succubi +succubus +succulence +succulent +succulents +succumb +succumbed +succumbing +succumbs +such +suchlike +suck +sucked +sucker +suckered +suckering +suckers +sucking +suckle +suckled +suckles +suckling +sucklings +sucks +sucrose +suction +suctioned +suctioning +suctions +sudden +suddenly +suddenness +suds +sudsy +sue +sued +suede +sues +suet +suffer +suffered +sufferer +sufferers +suffering +sufferings +suffers +suffice +sufficed +suffices +sufficiency +sufficient +sufficiently +sufficing +suffix +suffixes +suffocate +suffocated +suffocates +suffocating +suffocation +suffragan +suffragans +suffrage +suffragette +suffragettes +suffragist +suffragists +suffuse +suffused +suffuses +suffusing +sugar +sugared +sugaring +sugars +sugary +suggest +suggested +suggestible +suggesting +suggestion +suggestions +suggestive +suggestively +suggests +suicidal +suicide +suicides +suing +suit +suitability +suitable +suitably +suitcase +suitcases +suite +suited +suites +suiting +suitor +suitors +suits +sulfate +sulfates +sulfide +sulfides +sulfur +sulfurous +sulk +sulked +sulkily +sulkiness +sulking +sulks +sulky +sullen +sullenly +sullenness +sullied +sullies +sully +sullying +sulphate +sulphates +sulphide +sulphides +sulphur +sulphurous +sultan +sultana +sultanas +sultanate +sultanates +sultans +sultrier +sultriest +sultriness +sultry +sum +summaries +summarily +summarise +summarised +summarises +summarising +summarize +summarized +summarizes +summarizing +summary +summat +summation +summations +summed +summer +summered +summerhouse +summerhouses +summering +summers +summertime +summery +summing +summit +summitry +summits +summon +summoned +summoning +summons +summonsed +summonses +summonsing +sumo +sump +sumps +sumptuous +sumptuously +sumptuousness +sums +sun +sunbathe +sunbathed +sunbathes +sunbathing +sunbeam +sunbeams +sunbed +sunbeds +sunbelt +sunblock +sunblocks +sunburn +sunburned +sunburns +sunburnt +sundae +sundaes +sundeck +sundecks +sunder +sundered +sundering +sunders +sundial +sundials +sundown +sundress +sundresses +sundries +sundry +sunflower +sunflowers +sung +sunglasses +sunhat +sunhats +sunk +sunken +sunlamp +sunlamps +sunless +sunlight +sunlit +sunned +sunnier +sunniest +sunning +sunny +sunrise +sunrises +sunroof +sunroofs +suns +sunscreen +sunscreens +sunset +sunsets +sunshade +sunshades +sunshine +sunspot +sunspots +sunstroke +suntan +suntanned +suntans +suntrap +suntraps +sunup +sup +super +superabundance +superabundances +superabundant +superannuated +superannuation +superb +superbly +supercharged +supercharger +superchargers +supercilious +superciliously +superciliousness +supercomputer +supercomputers +superconductivity +superconductor +superconductors +superego +superegos +superficial +superficiality +superficially +superfluity +superfluous +superfluously +superfluousness +superglue +supergrass +supergrasses +superhero +superheroes +superhighway +superhighways +superhuman +superimpose +superimposed +superimposes +superimposing +superintend +superintended +superintendence +superintendent +superintendents +superintending +superintends +superior +superiority +superiors +superlative +superlatively +superlatives +superman +supermarket +supermarkets +supermen +supermodel +supermodels +supernatural +supernaturally +supernova +supernovae +supernovas +supernumerary +superpower +superpowers +supers +superscript +supersede +superseded +supersedes +superseding +supersonic +superstar +superstars +superstate +superstates +superstition +superstitions +superstitious +superstitiously +superstore +superstores +superstructure +superstructures +supertanker +supertankers +supervene +supervened +supervenes +supervening +supervise +supervised +supervises +supervising +supervision +supervisor +supervisors +supervisory +superwoman +superwomen +supine +supinely +supped +supper +suppers +suppertime +supping +supplant +supplanted +supplanting +supplants +supple +supplement +supplemental +supplementary +supplementation +supplemented +supplementing +supplements +suppleness +suppler +supplest +suppliant +suppliants +supplicant +supplicants +supplicate +supplicated +supplicates +supplicating +supplication +supplications +supplied +supplier +suppliers +supplies +supply +supplying +support +supportable +supported +supporter +supporters +supporting +supportive +supports +suppose +supposed +supposedly +supposes +supposing +supposition +suppositions +suppositories +suppository +suppress +suppressant +suppressants +suppressed +suppresses +suppressing +suppression +suppressor +suppressors +suppurate +suppurated +suppurates +suppurating +supranational +supremacist +supremacists +supremacy +supreme +supremely +supremo +supremos +sups +surcharge +surcharged +surcharges +surcharging +sure +surefire +surefooted +surely +sureness +surer +surest +sureties +surety +surf +surface +surfaced +surfaces +surfacing +surfboard +surfboards +surfed +surfeit +surfer +surfers +surfing +surfs +surge +surged +surgeon +surgeons +surgeries +surgery +surges +surgical +surgically +surging +surlier +surliest +surliness +surly +surmise +surmised +surmises +surmising +surmount +surmountable +surmounted +surmounting +surmounts +surname +surnames +surpass +surpassed +surpasses +surpassing +surplice +surplices +surplus +surpluses +surprise +surprised +surprises +surprising +surprisingly +surreal +surrealism +surrealist +surrealistic +surrealists +surrender +surrendered +surrendering +surrenders +surreptitious +surreptitiously +surreptitiousness +surrogacy +surrogate +surrogates +surround +surrounded +surrounding +surroundings +surrounds +surtax +surtitle +surtitles +surveillance +survey +surveyed +surveying +surveyor +surveyors +surveys +survivable +survival +survivals +survive +survived +survives +surviving +survivor +survivors +susceptibilities +susceptibility +susceptible +sushi +suspect +suspected +suspecting +suspects +suspend +suspended +suspender +suspenders +suspending +suspends +suspense +suspension +suspensions +suspicion +suspicions +suspicious +suspiciously +suss +sussed +susses +sussing +sustain +sustainability +sustainable +sustained +sustaining +sustains +sustenance +suttee +suture +sutured +sutures +suturing +suzerainty +svelte +swab +swabbed +swabbing +swabs +swaddle +swaddled +swaddles +swaddling +swag +swagger +swaggered +swaggering +swaggers +swags +swain +swains +swallow +swallowed +swallowing +swallows +swam +swami +swamis +swamp +swamped +swampier +swampiest +swamping +swamps +swampy +swan +swank +swanked +swankier +swankiest +swanking +swanks +swanky +swanned +swanning +swans +swansong +swansongs +swap +swapped +swapping +swaps +sward +swards +swarm +swarmed +swarming +swarms +swarthier +swarthiest +swarthy +swashbuckler +swashbucklers +swashbuckling +swastika +swastikas +swat +swatch +swatches +swath +swathe +swathed +swathes +swathing +swaths +swats +swatted +swatting +sway +swayed +swaying +sways +swear +swearing +swears +sweat +sweatband +sweatbands +sweated +sweater +sweaters +sweatier +sweatiest +sweating +sweatpants +sweats +sweatshirt +sweatshirts +sweatshop +sweatshops +sweatsuit +sweatsuits +sweaty +swede +swedes +sweep +sweeper +sweepers +sweeping +sweeps +sweepstake +sweepstakes +sweet +sweetbread +sweetbreads +sweetcorn +sweeten +sweetened +sweetener +sweeteners +sweetening +sweetens +sweeter +sweetest +sweetheart +sweethearts +sweetie +sweeties +sweetish +sweetly +sweetmeat +sweetmeats +sweetness +sweets +swell +swelled +swelling +swellings +swells +swelter +sweltered +sweltering +swelters +swept +swerve +swerved +swerves +swerving +swift +swifter +swiftest +swiftly +swiftness +swifts +swig +swigged +swigging +swigs +swill +swilled +swilling +swills +swim +swimmer +swimmers +swimming +swimmingly +swims +swimsuit +swimsuits +swimwear +swindle +swindled +swindler +swindlers +swindles +swindling +swine +swines +swing +swingeing +swinger +swingers +swinging +swings +swinish +swipe +swiped +swipes +swiping +swirl +swirled +swirling +swirls +swish +swished +swisher +swishes +swishest +swishing +switch +switchback +switchbacks +switchblade +switchblades +switchboard +switchboards +switched +switches +switching +swivel +swiveled +swiveling +swivelled +swivelling +swivels +swiz +swizz +swollen +swoon +swooned +swooning +swoons +swoop +swooped +swooping +swoops +swoosh +swooshed +swooshes +swooshing +swop +swopped +swopping +swops +sword +swordfish +swordfishes +swords +swordsman +swordsmanship +swordsmen +swore +sworn +swot +swots +swotted +swotting +swum +swung +sybarite +sybarites +sybaritic +sycamore +sycamores +sycophancy +sycophant +sycophantic +sycophants +syllabi +syllabic +syllable +syllables +syllabub +syllabubs +syllabus +syllabuses +syllogism +syllogisms +syllogistic +sylphlike +sylvan +symbiosis +symbiotic +symbiotically +symbol +symbolic +symbolical +symbolically +symbolise +symbolised +symbolises +symbolising +symbolism +symbolize +symbolized +symbolizes +symbolizing +symbols +symmetric +symmetrical +symmetrically +symmetry +sympathetic +sympathetically +sympathies +sympathise +sympathised +sympathiser +sympathisers +sympathises +sympathising +sympathize +sympathized +sympathizer +sympathizers +sympathizes +sympathizing +sympathy +symphonic +symphonies +symphony +symposia +symposium +symposiums +symptom +symptomatic +symptoms +synagogue +synagogues +synapse +synapses +synaptic +sync +synch +synchronicity +synchronisation +synchronise +synchronised +synchronises +synchronising +synchronization +synchronize +synchronized +synchronizes +synchronizing +synchronous +syncopated +syncopation +syndicalism +syndicalist +syndicalists +syndicate +syndicated +syndicates +syndicating +syndication +syndrome +syndromes +synergies +synergy +synod +synods +synonym +synonymous +synonyms +synopses +synopsis +syntactic +syntactically +syntax +syntheses +synthesis +synthesise +synthesised +synthesiser +synthesisers +synthesises +synthesising +synthesize +synthesized +synthesizer +synthesizers +synthesizes +synthesizing +synthetic +synthetically +synthetics +syphilis +syphon +syphoned +syphoning +syphons +syringe +syringed +syringes +syringing +syrup +syrupy +system +systematic +systematically +systematisation +systematise +systematised +systematises +systematising +systematization +systematize +systematized +systematizes +systematizing +systemic +systemically +systems +ta +tab +tabbies +tabby +tabernacle +tabernacles +table +tableau +tableaux +tablecloth +tablecloths +tabled +tables +tablespoon +tablespoonful +tablespoonfuls +tablespoons +tablespoonsful +tablet +tablets +tableware +tabling +tabloid +tabloids +taboo +taboos +tabs +tabular +tabulate +tabulated +tabulates +tabulating +tabulation +tabulations +tachograph +tachographs +tachometer +tachometers +tacit +tacitly +taciturn +taciturnity +tack +tacked +tackier +tackiest +tackiness +tacking +tackle +tackled +tackles +tackling +tacks +tacky +taco +tacos +tact +tactful +tactfully +tactic +tactical +tactically +tactician +tacticians +tactics +tactile +tactless +tactlessly +tactlessness +tadpole +tadpoles +taffeta +taffy +tag +tagged +tagging +tagliatelle +tags +tail +tailback +tailbacks +tailboard +tailboards +tailbone +tailbones +tailcoat +tailcoats +tailed +tailgate +tailgated +tailgates +tailgating +tailing +taillight +taillights +tailor +tailored +tailoring +tailors +tailpiece +tailpieces +tailpipe +tailpipes +tails +tailspin +tailspins +tailwind +tailwinds +taint +tainted +tainting +taints +take +takeaway +takeaways +taken +takeoff +takeoffs +takeout +takeouts +takeover +takeovers +taker +takers +takes +taking +takings +talc +tale +talent +talented +talents +tales +talisman +talismans +talk +talkative +talked +talker +talkers +talkie +talkies +talking +talks +tall +tallboy +tallboys +taller +tallest +tallied +tallies +tallness +tallow +tally +tallying +talon +talons +tamarind +tamarinds +tambourine +tambourines +tame +tamed +tamely +tameness +tamer +tamers +tames +tamest +taming +tamoxifen +tamp +tamped +tamper +tampered +tampering +tampers +tamping +tampon +tampons +tamps +tan +tandem +tandems +tandoori +tang +tangent +tangential +tangents +tangerine +tangerines +tangible +tangibly +tangier +tangiest +tangle +tangled +tangles +tangling +tango +tangoed +tangoing +tangos +tangs +tangy +tank +tankard +tankards +tanked +tanker +tankers +tankful +tankfuls +tanks +tanned +tanner +tanneries +tanners +tannery +tannin +tanning +tans +tantalise +tantalised +tantalises +tantalising +tantalisingly +tantalize +tantalized +tantalizes +tantalizing +tantalizingly +tantamount +tantrum +tantrums +tap +tapas +tape +taped +taper +tapered +tapering +tapers +tapes +tapestries +tapestry +tapeworm +tapeworms +taping +tapioca +tapir +tapirs +tapped +tappet +tappets +tapping +taproot +taproots +taps +tar +taramasalata +tarantula +tarantulas +tardier +tardiest +tardily +tardiness +tardy +target +targeted +targeting +targets +tariff +tariffs +tarmac +tarmacadam +tarmacked +tarmacking +tarmacs +tarn +tarnish +tarnished +tarnishes +tarnishing +tarns +taro +taros +tarot +tarp +tarpaulin +tarpaulins +tarps +tarragon +tarred +tarried +tarries +tarring +tarry +tarrying +tars +tart +tartan +tartans +tartar +tartars +tarted +tartiest +tarting +tartly +tartness +tarts +tarty +task +tasked +tasking +taskmaster +taskmasters +tasks +tassel +tasseled +tasselled +tassels +taste +tasted +tasteful +tastefully +tasteless +tastelessly +taster +tasters +tastes +tastier +tastiest +tasting +tastings +tasty +tat +tater +taters +tattered +tatters +tattie +tattier +tatties +tattiest +tattle +tattled +tattles +tattletale +tattletales +tattling +tattoo +tattooed +tattooing +tattooist +tattooists +tattoos +tatty +taught +taunt +taunted +taunting +taunts +taupe +taut +tauten +tautened +tautening +tautens +tauter +tautest +tautly +tautness +tautological +tautologically +tautologies +tautology +tavern +taverns +tawdrier +tawdriest +tawdriness +tawdry +tawny +tax +taxable +taxation +taxed +taxes +taxi +taxicab +taxicabs +taxidermist +taxidermists +taxidermy +taxied +taxiing +taxing +taxis +taxiway +taxiways +taxman +taxmen +taxonomies +taxonomy +taxpayer +taxpayers +tea +teabag +teabags +teacake +teacakes +teach +teacher +teachers +teaches +teaching +teachings +teacup +teacups +teak +teal +teals +team +teamed +teaming +teammate +teammates +teams +teamster +teamsters +teamwork +teapot +teapots +tear +tearaway +tearaways +teardrop +teardrops +tearful +tearfully +tearing +tearoom +tearooms +tears +teas +tease +teased +teasel +teasels +teaser +teasers +teases +teasing +teasingly +teaspoon +teaspoonful +teaspoonfuls +teaspoons +teat +teatime +teatimes +teats +teazel +teazels +teazle +teazles +tech +techie +techies +technical +technicalities +technicality +technically +technician +technicians +technicolor +technicolour +technique +techniques +techno +technocracies +technocracy +technocrat +technocratic +technocrats +technological +technologically +technologies +technologist +technologists +technology +technophobe +technophobes +techs +tectonic +ted +teddies +teddy +tedious +tediously +tediousness +tedium +teds +tee +teed +teeing +teem +teemed +teeming +teems +teen +teenage +teenaged +teenager +teenagers +teenier +teeniest +teens +teensier +teensiest +teensy +teeny +teenybopper +teenyboppers +teepee +teepees +tees +teeter +teetered +teetering +teeters +teeth +teethe +teethed +teethes +teething +teetotal +teetotaler +teetotalers +teetotalism +teetotaller +teetotallers +telecast +telecasting +telecasts +telecommunication +telecommunications +telecommuter +telecommuters +telecommuting +teleconference +teleconferences +teleconferencing +telegenic +telegram +telegrams +telegraph +telegraphed +telegraphese +telegraphic +telegraphing +telegraphs +telegraphy +telemarketing +telemetry +teleological +teleology +telepathic +telepathically +telepathy +telephone +telephoned +telephones +telephoning +telephonist +telephonists +telephony +teleprinter +teleprinters +telesales +telescope +telescoped +telescopes +telescopic +telescoping +teletext +telethon +telethons +teletypewriter +teletypewriters +televangelism +televangelist +televangelists +televise +televised +televises +televising +television +televisions +teleworker +teleworkers +teleworking +telex +telexed +telexes +telexing +tell +teller +tellers +tellies +telling +tellingly +tells +telltale +telltales +telly +temerity +temp +temped +temper +tempera +temperament +temperamental +temperamentally +temperaments +temperance +temperate +temperature +temperatures +tempered +tempering +tempers +tempest +tempests +tempestuous +tempestuously +tempi +temping +template +templates +temple +temples +tempo +temporal +temporarily +temporariness +temporary +temporise +temporised +temporises +temporising +temporize +temporized +temporizes +temporizing +tempos +temps +tempt +temptation +temptations +tempted +tempting +temptingly +temptress +temptresses +tempts +ten +tenable +tenacious +tenaciously +tenacity +tenancies +tenancy +tenant +tenants +tench +tend +tended +tendencies +tendency +tendentious +tendentiously +tendentiousness +tender +tendered +tenderer +tenderest +tenderfoot +tendering +tenderise +tenderised +tenderises +tenderising +tenderize +tenderized +tenderizes +tenderizing +tenderloin +tenderly +tenderness +tenders +tending +tendon +tendons +tendril +tendrils +tends +tenement +tenements +tenet +tenets +tenfold +tenner +tenners +tennis +tenon +tenons +tenor +tenors +tenpin +tenpins +tens +tense +tensed +tensely +tenseness +tenser +tenses +tensest +tensile +tensing +tension +tensions +tent +tentacle +tentacles +tentative +tentatively +tentativeness +tented +tenth +tenths +tents +tenuous +tenuously +tenure +tenured +tepee +tepees +tepid +tequila +tequilas +tercentenaries +tercentenary +term +termagant +termagants +termed +terminal +terminally +terminals +terminate +terminated +terminates +terminating +termination +terminations +terming +termini +terminological +terminologies +terminology +terminus +terminuses +termite +termites +termly +terms +tern +terns +terrace +terraced +terraces +terracing +terracotta +terrain +terrains +terrapin +terrapins +terrestrial +terrible +terribly +terrier +terriers +terrific +terrifically +terrified +terrifies +terrify +terrifying +terrifyingly +terrine +terrines +territorial +territoriality +territorials +territories +territory +terror +terrorise +terrorised +terrorises +terrorising +terrorism +terrorist +terrorists +terrorize +terrorized +terrorizes +terrorizing +terrors +terry +terse +tersely +terseness +terser +tersest +tertiary +tessellated +tessellation +tessellations +test +testament +testaments +tested +tester +testers +testes +testicle +testicles +testicular +testier +testiest +testified +testifies +testify +testifying +testily +testimonial +testimonials +testimonies +testimony +testiness +testing +testis +testosterone +tests +testy +tetanus +tetchier +tetchiest +tetchily +tetchiness +tetchy +tether +tethered +tethering +tethers +text +textbook +textbooks +textile +textiles +texts +textual +textural +texture +textured +textures +thalidomide +than +thank +thanked +thankful +thankfully +thankfulness +thanking +thankless +thanks +thanksgiving +thanksgivings +that +thatch +thatched +thatcher +thatchers +thatches +thatching +thaw +thawed +thawing +thaws +the +theater +theatergoer +theatergoers +theaters +theatre +theatregoer +theatregoers +theatres +theatrical +theatricality +theatrically +theatricals +thee +theft +thefts +their +theirs +theism +them +thematic +thematically +theme +themed +themes +themselves +then +thence +thenceforth +thenceforward +theocracies +theocracy +theocratic +theodolite +theodolites +theologian +theologians +theological +theologically +theologies +theology +theorem +theorems +theoretic +theoretical +theoretically +theoretician +theoreticians +theories +theorise +theorised +theorises +theorising +theorist +theorists +theorize +theorized +theorizes +theorizing +theory +therapeutic +therapeutically +therapeutics +therapies +therapist +therapists +therapy +there +thereabouts +thereafter +thereby +therefore +therein +thereof +thereon +thereupon +therm +thermal +thermally +thermals +thermodynamic +thermodynamics +thermometer +thermometers +thermonuclear +thermoplastic +thermostat +thermostatically +thermostats +therms +thesauri +thesaurus +thesauruses +these +theses +thesis +thespian +thespians +they +thick +thicken +thickened +thickener +thickeners +thickening +thickenings +thickens +thicker +thickest +thicket +thickets +thickly +thickness +thicknesses +thicko +thickos +thickset +thief +thieves +thieving +thigh +thighs +thimble +thimbleful +thimblefuls +thimbles +thin +thine +thing +thingamabob +thingamabobs +thingamajig +thingamajigs +thingies +things +thingumabob +thingumabobs +thingummies +thingummy +thingy +think +thinkable +thinker +thinkers +thinking +thinks +thinly +thinned +thinner +thinnest +thinning +thins +third +thirdly +thirds +thirst +thirsted +thirstier +thirstiest +thirstily +thirsting +thirsts +thirsty +thirteen +thirteens +thirteenth +thirteenths +thirties +thirtieth +thirtieths +thirty +this +thistle +thistledown +thistles +thither +thong +thongs +thoraces +thoracic +thorax +thoraxes +thorn +thornier +thorniest +thorns +thorny +thorough +thoroughbred +thoroughbreds +thoroughfare +thoroughfares +thoroughgoing +thoroughly +thoroughness +those +thou +though +thought +thoughtful +thoughtfully +thoughtfulness +thoughtless +thoughtlessly +thoughtlessness +thoughts +thousand +thousands +thousandth +thousandths +thrash +thrashed +thrashes +thrashing +thrashings +thread +threadbare +threaded +threading +threads +threat +threaten +threatened +threatening +threateningly +threatens +threats +three +threepence +threes +threesome +threesomes +thresh +threshed +threshes +threshing +threshold +thresholds +threw +thrice +thrift +thriftier +thriftiest +thriftily +thriftiness +thrifty +thrill +thrilled +thriller +thrillers +thrilling +thrillingly +thrills +thrive +thrived +thrives +thriving +throat +throatily +throatiness +throats +throaty +throb +throbbed +throbbing +throbs +throes +thromboses +thrombosis +throne +thrones +throng +thronged +thronging +throngs +throttle +throttled +throttles +throttling +through +throughout +throughput +throughway +throughways +throve +throw +throwaway +throwaways +throwback +throwbacks +throwing +thrown +throws +thru +thrum +thrummed +thrumming +thrums +thrush +thrushes +thrust +thrusting +thrusts +thruway +thruways +thud +thudded +thudding +thuds +thug +thuggery +thuggish +thugs +thumb +thumbed +thumbing +thumbnail +thumbnails +thumbprint +thumbprints +thumbs +thumbscrew +thumbscrews +thumbtack +thumbtacks +thump +thumped +thumping +thumps +thunder +thunderbolt +thunderbolts +thunderclap +thunderclaps +thundercloud +thunderclouds +thundered +thundering +thunderous +thunderously +thunders +thunderstorm +thunderstorms +thunderstruck +thundery +thus +thwack +thwacked +thwacking +thwacks +thwart +thwarted +thwarting +thwarts +thy +thyme +thyroid +thyroids +thyself +ti +tiara +tiaras +tibia +tibiae +tibias +tic +tick +ticked +ticker +tickers +ticket +ticketed +ticketing +tickets +ticking +tickle +tickled +tickles +tickling +ticklish +ticks +tics +tidal +tidbit +tidbits +tiddler +tiddlers +tiddly +tiddlywink +tiddlywinks +tide +tided +tidemark +tidemarks +tides +tidewater +tidewaters +tidied +tidier +tidies +tidiest +tidily +tidiness +tiding +tidings +tidy +tidying +tie +tiebreak +tiebreaker +tiebreakers +tiebreaks +tied +tiepin +tiepins +tier +tiered +tiers +ties +tiff +tiffs +tiger +tigers +tight +tighten +tightened +tightening +tightens +tighter +tightest +tightly +tightness +tightrope +tightropes +tights +tightwad +tightwads +tigress +tigresses +tike +tikes +til +tilde +tildes +tile +tiled +tiler +tilers +tiles +tiling +till +tilled +tiller +tillers +tilling +tills +tilt +tilted +tilting +tilts +timber +timbered +timberline +timbers +timbre +timbres +time +timed +timekeeper +timekeepers +timekeeping +timeless +timelessly +timelessness +timelier +timeliest +timeliness +timely +timepiece +timepieces +timer +timers +times +timeserver +timeservers +timeserving +timeshare +timeshares +timetable +timetabled +timetables +timetabling +timeworn +timid +timidity +timidly +timing +timorous +timorously +timorousness +timpani +timpanist +timpanists +tin +tincture +tinctures +tinder +tinderbox +tinderboxes +tine +tines +tinfoil +ting +tinge +tinged +tinges +tinging +tingle +tingled +tingles +tingling +tingly +tings +tinier +tiniest +tinker +tinkered +tinkering +tinkers +tinkle +tinkled +tinkles +tinkling +tinned +tinnier +tinniest +tinnitus +tinny +tinplate +tinpot +tins +tinsel +tint +tinted +tinting +tints +tiny +tip +tipped +tippex +tippexed +tippexes +tippexing +tipping +tipple +tippled +tippler +tipplers +tipples +tippling +tips +tipsier +tipsiest +tipsily +tipsiness +tipster +tipsters +tipsy +tiptoe +tiptoed +tiptoeing +tiptoes +tirade +tirades +tire +tired +tiredly +tiredness +tireless +tirelessly +tires +tiresome +tiresomely +tiring +tissue +tissues +tit +titan +titanic +titanium +titans +titbit +titbits +titch +titches +titchy +tithe +tithes +titian +titillate +titillated +titillates +titillating +titillation +titivate +titivated +titivates +titivating +title +titled +titles +titling +tits +titter +tittered +tittering +titters +titties +titty +titular +tizz +tizzy +to +toad +toadied +toadies +toads +toadstool +toadstools +toady +toadying +toast +toasted +toaster +toasters +toastier +toasties +toastiest +toasting +toastmaster +toastmasters +toasts +toasty +tobacco +tobacconist +tobacconists +tobaccos +toboggan +tobogganed +tobogganing +toboggans +toccata +toccatas +today +toddies +toddle +toddled +toddler +toddlers +toddles +toddling +toddy +toe +toecap +toecaps +toed +toehold +toeholds +toeing +toenail +toenails +toerag +toerags +toes +toff +toffee +toffees +toffs +tofu +tog +toga +togas +together +togetherness +togged +togging +toggle +toggled +toggles +toggling +togs +toil +toiled +toilet +toiletries +toilets +toiling +toils +token +tokenism +tokens +told +tolerable +tolerably +tolerance +tolerances +tolerant +tolerantly +tolerate +tolerated +tolerates +tolerating +toleration +toll +tollbooth +tollbooths +tolled +tollgate +tollgates +tolling +tolls +tom +tomahawk +tomahawks +tomato +tomatoes +tomb +tombola +tombolas +tomboy +tomboys +tombs +tombstone +tombstones +tomcat +tomcats +tome +tomes +tomfooleries +tomfoolery +tomorrow +tomorrows +toms +ton +tonal +tonalities +tonality +tone +toned +toneless +tonelessly +toner +toners +tones +tongs +tongue +tongues +tonic +tonics +tonier +toniest +tonight +toning +tonnage +tonnages +tonne +tonnes +tons +tonsil +tonsillitis +tonsils +tonsure +tonsures +tony +too +took +tool +tooled +tooling +tools +toot +tooted +tooth +toothache +toothaches +toothbrush +toothbrushes +toothless +toothpaste +toothpastes +toothpick +toothpicks +toothsome +toothy +tooting +tootle +tootled +tootles +tootling +toots +tootsie +tootsies +top +topaz +topazes +topcoat +topcoats +topee +topees +topi +topiary +topic +topical +topicality +topically +topics +topis +topknot +topknots +topless +topmost +topographer +topographers +topographical +topographically +topographies +topography +topped +topper +toppers +topping +toppings +topple +toppled +topples +toppling +tops +topside +topsides +topsoil +topspin +tor +torch +torched +torches +torching +torchlight +tore +toreador +toreadors +torment +tormented +tormenting +tormentor +tormentors +torments +torn +tornado +tornadoes +tornados +torpedo +torpedoed +torpedoes +torpedoing +torpid +torpidity +torpidly +torpor +torque +torrent +torrential +torrents +torrid +tors +torsion +torso +torsos +tort +tortilla +tortillas +tortoise +tortoises +tortoiseshell +tortoiseshells +torts +tortuous +tortuously +tortuousness +torture +tortured +torturer +torturers +tortures +torturing +torturous +tosh +toss +tossed +tosser +tossers +tosses +tossing +tot +total +totaled +totaling +totalitarian +totalitarianism +totality +totalled +totalling +totally +totals +tote +toted +totem +totemic +totems +totes +toting +tots +totted +totter +tottered +tottering +totters +totting +toucan +toucans +touch +touchdown +touchdowns +touche +touched +touches +touchier +touchiest +touchily +touchiness +touching +touchingly +touchline +touchlines +touchpaper +touchpapers +touchstone +touchstones +touchy +tough +toughed +toughen +toughened +toughening +toughens +tougher +toughest +toughie +toughies +toughing +toughly +toughness +toughs +toupee +toupees +tour +toured +touring +tourism +tourist +tourists +touristy +tournament +tournaments +tourney +tourneys +tourniquet +tourniquets +tours +tousle +tousled +tousles +tousling +tout +touted +touting +touts +tow +toward +towards +towed +towel +toweled +towelette +towelettes +toweling +towelled +towelling +towels +tower +towered +towering +towers +towing +town +townee +townees +townhouse +townhouses +townie +townies +towns +townsfolk +township +townships +townspeople +towpath +towpaths +towrope +towropes +tows +toxaemia +toxemia +toxic +toxicities +toxicity +toxicological +toxicologist +toxicologists +toxicology +toxin +toxins +toy +toyboy +toyboys +toyed +toying +toys +trace +traceable +traced +tracer +traceries +tracers +tracery +traces +trachea +tracheae +tracheas +tracing +tracings +track +trackball +trackballs +tracked +tracker +trackers +tracking +tracks +tracksuit +tracksuits +tract +tractability +tractable +traction +tractor +tractors +tracts +trad +trade +traded +trademark +trademarks +trader +traders +trades +tradesman +tradesmen +tradespeople +trading +tradition +traditional +traditionalism +traditionalist +traditionalists +traditionally +traditions +traduce +traduced +traduces +traducing +traffic +trafficked +trafficker +traffickers +trafficking +traffics +tragedian +tragedians +tragedies +tragedy +tragic +tragically +tragicomedies +tragicomedy +tragicomic +trail +trailblazer +trailblazers +trailed +trailer +trailers +trailing +trails +train +trained +trainee +trainees +trainer +trainers +training +trains +trainspotter +trainspotters +trainspotting +traipse +traipsed +traipses +traipsing +trait +traitor +traitorous +traitorously +traitors +traits +trajectories +trajectory +tram +tramcar +tramcars +tramlines +trammel +trammeled +trammeling +trammels +tramp +tramped +tramping +trample +trampled +tramples +trampling +trampoline +trampolined +trampolines +trampolining +tramps +trams +tramway +tramways +trance +trances +tranche +tranches +tranquil +tranquility +tranquilize +tranquilized +tranquilizer +tranquilizers +tranquilizes +tranquilizing +tranquillise +tranquillised +tranquilliser +tranquillisers +tranquillises +tranquillising +tranquillity +tranquillize +tranquillized +tranquillizer +tranquillizers +tranquillizes +tranquillizing +tranquilly +transact +transacted +transacting +transaction +transactions +transacts +transatlantic +transceiver +transceivers +transcend +transcended +transcendence +transcendent +transcendental +transcending +transcends +transcontinental +transcribe +transcribed +transcribes +transcribing +transcript +transcription +transcriptions +transcripts +transducer +transducers +transept +transepts +transfer +transferable +transference +transferred +transferring +transfers +transfiguration +transfigure +transfigured +transfigures +transfiguring +transfix +transfixed +transfixes +transfixing +transform +transformation +transformations +transformed +transformer +transformers +transforming +transforms +transfusion +transfusions +transgenic +transgress +transgressed +transgresses +transgressing +transgression +transgressions +transgressor +transgressors +transience +transient +transients +transistor +transistorised +transistorized +transistors +transit +transition +transitional +transitions +transitive +transitively +transitives +transitivity +transitory +transits +translate +translated +translates +translating +translation +translations +translator +translators +transliterate +transliterated +transliterates +transliterating +transliteration +transliterations +translucence +translucent +transmigration +transmission +transmissions +transmit +transmits +transmitted +transmitter +transmitters +transmitting +transmogrified +transmogrifies +transmogrify +transmogrifying +transmutation +transmutations +transmute +transmuted +transmutes +transmuting +transnational +transom +transoms +transparencies +transparency +transparent +transparently +transpiration +transpire +transpired +transpires +transpiring +transplant +transplantation +transplanted +transplanting +transplants +transponder +transponders +transport +transportation +transported +transporter +transporters +transporting +transports +transpose +transposed +transposes +transposing +transposition +transpositions +transsexual +transsexuals +transubstantiation +transverse +transvestism +transvestite +transvestites +trap +trapdoor +trapdoors +trapeze +trapezes +trapezia +trapezium +trapeziums +trapezoid +trapezoids +trapped +trapper +trappers +trapping +trappings +traps +trapshooting +trash +trashcan +trashcans +trashed +trashes +trashier +trashiest +trashing +trashy +trauma +traumas +traumatic +traumatically +traumatise +traumatised +traumatises +traumatising +traumatize +traumatized +traumatizes +traumatizing +travails +travel +traveled +traveler +travelers +traveling +travelled +traveller +travellers +travelling +travelog +travelogs +travelogue +travelogues +travels +traverse +traversed +traverses +traversing +travesties +travesty +trawl +trawled +trawler +trawlers +trawling +trawls +tray +trays +treacheries +treacherous +treacherously +treachery +treacle +treacly +tread +treading +treadle +treadles +treadmill +treadmills +treads +treason +treasonable +treasonous +treasure +treasured +treasurer +treasurers +treasures +treasuries +treasuring +treasury +treat +treatable +treated +treaties +treating +treatise +treatises +treatment +treatments +treats +treaty +treble +trebled +trebles +trebling +tree +treeless +treeline +trees +treetop +treetops +trefoil +trefoils +trek +trekked +trekking +treks +trellis +trellises +tremble +trembled +trembles +trembling +tremendous +tremendously +tremolo +tremolos +tremor +tremors +tremulous +tremulously +trench +trenchancy +trenchant +trenchantly +trencher +trenchers +trenches +trend +trendier +trendies +trendiest +trendily +trendiness +trends +trendsetter +trendsetters +trendsetting +trendy +trepidation +trespass +trespassed +trespasser +trespassers +trespasses +trespassing +tresses +trestle +trestles +trews +triad +triads +triage +trial +trialed +trialing +trialled +trialling +trials +triangle +triangles +triangular +triangulation +triathlete +triathletes +triathlon +triathlons +tribal +tribalism +tribe +tribes +tribesman +tribesmen +tribeswoman +tribeswomen +tribulation +tribulations +tribunal +tribunals +tributaries +tributary +tribute +tributes +triceps +tricepses +trick +tricked +trickery +trickier +trickiest +tricking +trickle +trickled +trickles +trickling +tricks +trickster +tricksters +tricky +tricolor +tricolors +tricolour +tricolours +tricycle +tricycles +trident +tridents +tried +triennial +trier +triers +tries +trifle +trifled +trifles +trifling +trig +trigger +triggered +triggering +triggers +trigonometrical +trigonometry +trike +trikes +trilbies +trilby +trill +trilled +trilling +trillion +trillions +trills +trilogies +trilogy +trim +trimaran +trimarans +trimmed +trimmer +trimmers +trimmest +trimming +trimmings +trims +trinities +trinity +trinket +trinkets +trio +trios +trip +tripartite +tripe +triple +tripled +triples +triplet +triplets +tripling +tripod +tripods +tripped +tripper +trippers +tripping +trips +triptych +triptychs +tripwire +tripwires +trite +tritely +triteness +triumph +triumphal +triumphalism +triumphalist +triumphant +triumphantly +triumphed +triumphing +triumphs +triumvirate +triumvirates +trivet +trivets +trivia +trivial +trivialise +trivialised +trivialises +trivialising +trivialities +triviality +trivialize +trivialized +trivializes +trivializing +trivially +trod +trodden +troglodyte +troglodytes +troika +troikas +troll +trolled +trolley +trolleybus +trolleybuses +trolleys +trolling +trollop +trollops +trolls +trombone +trombones +trombonist +trombonists +tromp +tromped +tromping +tromps +troop +trooped +trooper +troopers +trooping +troops +troopship +troopships +trope +tropes +trophies +trophy +tropic +tropical +tropics +trot +trots +trotted +trotter +trotters +trotting +troubadour +troubadours +trouble +troubled +troublemaker +troublemakers +troubles +troubleshooter +troubleshooters +troubleshooting +troublesome +troubling +trough +troughs +trounce +trounced +trounces +trouncing +troupe +trouper +troupers +troupes +trouser +trousers +trousseau +trousseaus +trousseaux +trout +trouts +trowel +trowels +truancy +truant +truanted +truanting +truants +truce +truces +truck +trucked +trucker +truckers +trucking +truckle +truckles +truckload +truckloads +trucks +truculence +truculent +truculently +trudge +trudged +trudges +trudging +true +truelove +trueloves +truer +truest +truffle +truffles +trug +trugs +truism +truisms +truly +trump +trumped +trumpet +trumpeted +trumpeter +trumpeters +trumpeting +trumpets +trumping +trumps +truncate +truncated +truncates +truncating +truncation +truncheon +truncheons +trundle +trundled +trundles +trundling +trunk +trunks +truss +trussed +trusses +trussing +trust +trusted +trustee +trustees +trusteeship +trusteeships +trustful +trustfully +trustfulness +trusties +trusting +trusts +trustworthiness +trustworthy +trusty +truth +truthful +truthfully +truthfulness +truths +try +trying +tryout +tryst +trysts +tsar +tsarina +tsarinas +tsarism +tsarist +tsarists +tsars +tsunami +tsunamis +tub +tuba +tubas +tubbier +tubbiest +tubby +tube +tuber +tubercular +tuberculosis +tuberous +tubers +tubes +tubing +tubs +tubular +tuck +tucked +tucker +tuckered +tucking +tucks +tuft +tufted +tufts +tug +tugged +tugging +tugs +tuition +tulip +tulips +tulle +tum +tumble +tumbled +tumbledown +tumbler +tumblers +tumbles +tumbleweed +tumbling +tumescence +tumescent +tummies +tummy +tumor +tumors +tumour +tumours +tums +tumult +tumults +tumultuous +tumultuously +tuna +tunas +tundra +tundras +tune +tuned +tuneful +tunefully +tunefulness +tuneless +tunelessly +tuner +tuners +tunes +tungsten +tunic +tunics +tuning +tunnel +tunneled +tunneling +tunnelled +tunnelling +tunnels +tuppence +tuppenny +tuque +tuques +turban +turbaned +turbans +turbid +turbidity +turbine +turbines +turbo +turbocharge +turbocharged +turbocharger +turbochargers +turbocharges +turbocharging +turbojet +turbojets +turboprop +turboprops +turbos +turbot +turbots +turbulence +turbulent +turd +turds +tureen +tureens +turf +turfed +turfing +turfs +turgid +turgidity +turgidly +turkey +turkeys +turmeric +turmoil +turmoils +turn +turnabout +turnabouts +turnaround +turnarounds +turncoat +turncoats +turned +turning +turnings +turnip +turnips +turnkey +turnout +turnouts +turnover +turnovers +turnpike +turnpikes +turnround +turnrounds +turns +turnstile +turnstiles +turntable +turntables +turpentine +turpitude +turps +turquoise +turquoises +turret +turreted +turrets +turtle +turtledove +turtledoves +turtleneck +turtlenecks +turtles +turves +tush +tushes +tusk +tusks +tussle +tussled +tussles +tussling +tussock +tussocks +tut +tutelage +tutor +tutored +tutorial +tutorials +tutoring +tutors +tuts +tutted +tutting +tutu +tutus +tux +tuxedo +tuxedos +tuxes +twaddle +twang +twanged +twanging +twangs +twat +twats +tweak +tweaked +tweaking +tweaks +twee +tweed +tweeds +tweedy +tweet +tweeter +tweeters +tweets +tweezers +twelfth +twelfths +twelve +twelves +twenties +twentieth +twentieths +twenty +twerp +twerps +twice +twiddle +twiddled +twiddles +twiddling +twiddly +twig +twigged +twigging +twiggy +twigs +twilight +twilit +twill +twin +twine +twined +twines +twinge +twinges +twining +twinkle +twinkled +twinkles +twinkling +twinned +twinning +twins +twinset +twinsets +twirl +twirled +twirling +twirls +twirly +twist +twisted +twister +twisters +twisting +twists +twisty +twit +twitch +twitched +twitches +twitchier +twitchiest +twitching +twitchy +twits +twitter +twittered +twittering +twitters +twixt +two +twofold +twopence +twopenny +twos +twosome +twosomes +tycoon +tycoons +tying +tyke +tykes +type +typecast +typecasting +typecasts +typed +typeface +typefaces +types +typescript +typescripts +typeset +typesets +typesetter +typesetters +typesetting +typewriter +typewriters +typewritten +typhoid +typhoon +typhoons +typhus +typical +typically +typified +typifies +typify +typifying +typing +typist +typists +typo +typographer +typographers +typographic +typographical +typographically +typography +typologies +typology +typos +tyrannical +tyrannies +tyrannise +tyrannised +tyrannises +tyrannising +tyrannize +tyrannized +tyrannizes +tyrannizing +tyrannosaurus +tyrannosauruses +tyrannous +tyranny +tyrant +tyrants +tyre +tyres +tyro +tyros +tzar +tzarina +tzarinas +tzarism +tzarist +tzarists +tzars +ubiquitous +ubiquitously +ubiquity +udder +udders +ugh +uglier +ugliest +ugliness +ugly +uh +ukelele +ukeleles +ukulele +ukuleles +ulcer +ulcerate +ulcerated +ulcerates +ulcerating +ulceration +ulcerous +ulcers +ulna +ulterior +ultimata +ultimate +ultimately +ultimatum +ultimatums +ultramarine +ultrasonic +ultrasound +ultrasounds +ultraviolet +ululate +ululated +ululates +ululating +ululation +ululations +um +umber +umbrella +umbrellas +umlaut +umlauts +ump +umpire +umpired +umpires +umpiring +umps +umpteen +umpteenth +unabashed +unabated +unable +unabridged +unacceptable +unacceptably +unaccompanied +unaccountable +unaccountably +unaccustomed +unacknowledged +unacquainted +unadorned +unadulterated +unaffected +unaffectedly +unafraid +unaided +unalloyed +unalterable +unaltered +unambiguous +unambiguously +unambitious +unanimity +unanimous +unanimously +unannounced +unanswerable +unanswered +unapologetic +unappealing +unappetising +unappetizing +unapproachable +unarguable +unarguably +unarmed +unashamed +unashamedly +unasked +unassailable +unassisted +unassuming +unattached +unattainable +unattended +unattractive +unattractively +unauthorised +unauthorized +unavailable +unavailing +unavoidable +unavoidably +unaware +unawareness +unawares +unbalance +unbalanced +unbalances +unbalancing +unbearable +unbearably +unbeatable +unbeaten +unbecoming +unbeknown +unbeknownst +unbelief +unbelievable +unbelievably +unbeliever +unbelievers +unbelieving +unbend +unbending +unbends +unbent +unbiased +unbiassed +unbidden +unbind +unbinding +unbinds +unbleached +unblemished +unblinking +unblinkingly +unborn +unbound +unbounded +unbowed +unbreakable +unbridgeable +unbridled +unbroken +unbuckle +unbuckled +unbuckles +unbuckling +unburden +unburdened +unburdening +unburdens +unbutton +unbuttoned +unbuttoning +unbuttons +uncannier +uncanniest +uncannily +uncanny +uncaring +unceasing +unceasingly +unceremonious +unceremoniously +uncertain +uncertainly +uncertainties +uncertainty +unchallenged +unchangeable +unchanged +unchanging +uncharacteristic +uncharacteristically +uncharitable +uncharted +unchecked +uncivil +uncivilised +uncivilized +unclaimed +unclassified +uncle +unclean +unclear +uncles +unclothed +uncluttered +uncoil +uncoiled +uncoiling +uncoils +uncomfortable +uncomfortably +uncommitted +uncommon +uncommonly +uncommunicative +uncomplaining +uncomplainingly +uncomplicated +uncomplimentary +uncomprehending +uncomprehendingly +uncompromising +uncompromisingly +unconcern +unconcerned +unconcernedly +unconditional +unconditionally +unconfirmed +uncongenial +unconnected +unconscionable +unconscionably +unconscious +unconsciously +unconsciousness +unconsidered +unconstitutional +unconstitutionally +uncontested +uncontrollable +uncontrollably +uncontrolled +unconventional +unconventionally +unconvinced +unconvincing +unconvincingly +uncooked +uncool +uncooperative +uncoordinated +uncork +uncorked +uncorking +uncorks +uncorroborated +uncountable +uncouple +uncoupled +uncouples +uncoupling +uncouth +uncover +uncovered +uncovering +uncovers +uncritical +uncritically +uncrushable +unctuous +unctuously +uncultivated +uncurl +uncurled +uncurling +uncurls +uncut +undamaged +undated +undaunted +undecided +undeclared +undefeated +undefined +undemanding +undemocratic +undemonstrative +undeniable +undeniably +under +underachieve +underachieved +underachievement +underachiever +underachievers +underachieves +underachieving +underage +underarm +underarms +underbellies +underbelly +underbrush +undercarriage +undercarriages +undercharge +undercharged +undercharges +undercharging +underclass +underclasses +underclassman +underclassmen +underclothes +underclothing +undercoat +undercoats +undercover +undercurrent +undercurrents +undercut +undercuts +undercutting +underdeveloped +underdog +underdogs +underdone +underemployed +underestimate +underestimated +underestimates +underestimating +underestimation +underestimations +underexpose +underexposed +underexposes +underexposing +underfed +underfloor +underfoot +underfunded +undergarment +undergarments +undergo +undergoes +undergoing +undergone +undergraduate +undergraduates +underground +undergrowth +underhand +underhanded +underlain +underlay +underlays +underlie +underlies +underline +underlined +underlines +underling +underlings +underlining +underlying +undermanned +undermentioned +undermine +undermined +undermines +undermining +underneath +undernourished +undernourishment +underpaid +underpants +underpass +underpasses +underpay +underpaying +underpays +underpin +underpinned +underpinning +underpinnings +underpins +underplay +underplayed +underplaying +underplays +underprivileged +underrate +underrated +underrates +underrating +underscore +underscored +underscores +underscoring +undersea +undersecretaries +undersecretary +undersell +underselling +undersells +undershirt +undershirts +underside +undersides +undersigned +undersize +undersized +undersold +understaffed +understand +understandable +understandably +understanding +understandings +understands +understate +understated +understatement +understatements +understates +understating +understood +understudied +understudies +understudy +understudying +undertake +undertaken +undertaker +undertakers +undertakes +undertaking +undertakings +undertone +undertones +undertook +undertow +undertows +underused +underutilised +underutilized +undervalue +undervalued +undervalues +undervaluing +underwater +underway +underwear +underweight +underwent +underwhelmed +underwhelming +underworld +underwrite +underwriter +underwriters +underwrites +underwriting +underwritten +underwrote +undeserved +undesirable +undesirables +undetectable +undetected +undeterred +undeveloped +undid +undies +undignified +undiluted +undiminished +undischarged +undisciplined +undisclosed +undiscovered +undisguised +undismayed +undisputed +undistinguished +undisturbed +undivided +undo +undoes +undoing +undone +undoubted +undoubtedly +undress +undressed +undresses +undressing +undue +undulate +undulated +undulates +undulating +undulation +undulations +unduly +undying +unearned +unearth +unearthed +unearthing +unearthly +unearths +unease +uneasier +uneasiest +uneasily +uneasiness +uneasy +uneatable +uneconomic +uneconomical +unedifying +uneducated +unemotional +unemotionally +unemployable +unemployed +unemployment +unending +unendurable +unenviable +unequal +unequaled +unequalled +unequally +unequivocal +unequivocally +unerring +unerringly +unethical +unethically +uneven +unevenly +unevenness +uneventful +uneventfully +unexceptionable +unexceptional +unexciting +unexpected +unexpectedly +unexpectedness +unexplained +unexpurgated +unfailing +unfailingly +unfair +unfairly +unfairness +unfaithful +unfaithfulness +unfaltering +unfamiliar +unfamiliarity +unfashionable +unfashionably +unfasten +unfastened +unfastening +unfastens +unfathomable +unfathomably +unfavorable +unfavorably +unfavourable +unfavourably +unfazed +unfeasible +unfeeling +unfettered +unfilled +unfinished +unfit +unflagging +unflappable +unflattering +unflinching +unflinchingly +unfocused +unfocussed +unfold +unfolded +unfolding +unfolds +unforeseeable +unforeseen +unforgettable +unforgettably +unforgivable +unforgivably +unforgiving +unformed +unfortunate +unfortunately +unfortunates +unfounded +unfriendlier +unfriendliest +unfriendliness +unfriendly +unfulfilled +unfunny +unfurl +unfurled +unfurling +unfurls +unfurnished +ungainly +ungodly +ungovernable +ungracious +ungraciously +ungrammatical +ungrateful +ungratefully +unguarded +unguent +unguents +unhand +unhanded +unhanding +unhands +unhappier +unhappiest +unhappily +unhappiness +unhappy +unharmed +unhealthier +unhealthiest +unhealthily +unhealthy +unheard +unheeded +unhelpful +unhelpfully +unheralded +unhesitatingly +unhinge +unhinged +unhinges +unhinging +unhitch +unhitched +unhitches +unhitching +unholy +unhook +unhooked +unhooking +unhooks +unhurried +unhurriedly +unhurt +unhygienic +uni +unicameral +unicorn +unicorns +unicycle +unicycles +unidentifiable +unidentified +unification +unified +unifies +uniform +uniformed +uniformity +uniformly +uniforms +unify +unifying +unilateral +unilateralism +unilaterally +unimaginable +unimaginably +unimaginative +unimpaired +unimpeachable +unimpeded +unimportant +unimpressed +unimpressive +uninformed +uninhabitable +uninhabited +uninhibited +uninitiated +uninjured +uninspired +uninspiring +unintelligent +unintelligible +unintelligibly +unintended +unintentional +unintentionally +uninterested +uninteresting +uninterrupted +uninterruptedly +uninvited +union +unionisation +unionise +unionised +unionises +unionising +unionism +unionist +unionists +unionization +unionize +unionized +unionizes +unionizing +unions +unique +uniquely +uniqueness +unis +unisex +unit +unitary +unite +united +unites +unities +uniting +units +unity +universal +universality +universally +universe +universes +universities +university +unjust +unjustifiable +unjustifiably +unjustified +unjustly +unkempt +unkind +unkinder +unkindest +unkindly +unkindness +unknowable +unknowing +unknowingly +unknown +unknowns +unlawful +unlawfully +unleaded +unlearn +unlearned +unlearning +unlearns +unleash +unleashed +unleashes +unleashing +unleavened +unless +unlicensed +unlike +unlikelier +unlikeliest +unlikely +unlimited +unlisted +unlit +unload +unloaded +unloading +unloads +unlock +unlocked +unlocking +unlocks +unloose +unloosed +unlooses +unloosing +unloved +unlovely +unluckier +unluckiest +unluckily +unlucky +unmade +unmanageable +unmanly +unmanned +unmarked +unmarried +unmask +unmasked +unmasking +unmasks +unmatched +unmentionable +unmet +unmindful +unmissable +unmistakable +unmistakably +unmitigated +unmolested +unmoved +unmusical +unnamed +unnatural +unnaturally +unnecessarily +unnecessary +unnerve +unnerved +unnerves +unnerving +unnervingly +unnoticed +unnumbered +unobserved +unobtainable +unobtrusive +unobtrusively +unoccupied +unofficial +unofficially +unopened +unopposed +unorganised +unorganized +unorthodox +unpack +unpacked +unpacking +unpacks +unpaid +unpalatable +unparalleled +unpardonable +unperturbed +unpick +unpicked +unpicking +unpicks +unplaced +unplanned +unplayable +unpleasant +unpleasantly +unpleasantness +unplug +unplugged +unplugging +unplugs +unpolluted +unpopular +unpopularity +unprecedented +unprecedentedly +unpredictability +unpredictable +unpredictably +unprejudiced +unprepared +unprepossessing +unpretentious +unprincipled +unprintable +unproductive +unprofessional +unprofessionally +unprofitable +unpromising +unprompted +unpronounceable +unprotected +unproven +unprovoked +unpublished +unpunished +unqualified +unquenchable +unquestionable +unquestionably +unquestioned +unquestioning +unquestioningly +unquiet +unravel +unraveled +unraveling +unravelled +unravelling +unravels +unread +unreadable +unreal +unrealistic +unrealistically +unreality +unreasonable +unreasonableness +unreasonably +unreasoning +unrecognisable +unrecognised +unrecognizable +unrecognized +unreconstructed +unrecorded +unrefined +unrelated +unrelenting +unrelentingly +unreliability +unreliable +unrelieved +unrelievedly +unremarkable +unremarked +unremitting +unremittingly +unrepeatable +unrepentant +unrepresentative +unrequited +unreserved +unreservedly +unresolved +unresponsive +unrest +unrestrained +unrestricted +unrewarded +unrewarding +unripe +unrivaled +unrivalled +unroll +unrolled +unrolling +unrolls +unruffled +unruliness +unruly +unsaddle +unsaddled +unsaddles +unsaddling +unsafe +unsaid +unsalable +unsaleable +unsanitary +unsatisfactory +unsatisfied +unsavory +unsavoury +unscathed +unscheduled +unscientific +unscramble +unscrambled +unscrambles +unscrambling +unscrew +unscrewed +unscrewing +unscrews +unscripted +unscrupulous +unscrupulously +unscrupulousness +unseasonable +unseasonably +unseat +unseated +unseating +unseats +unsecured +unseeded +unseeing +unseeingly +unseemliness +unseemly +unseen +unselfish +unselfishly +unselfishness +unsentimental +unsettle +unsettled +unsettles +unsettling +unshakable +unshakeable +unshaken +unshaven +unsightly +unsigned +unskilled +unsmiling +unsociable +unsocial +unsold +unsolicited +unsolved +unsophisticated +unsound +unsparing +unspeakable +unspeakably +unspecified +unspectacular +unspoiled +unspoilt +unspoken +unsporting +unstable +unstated +unsteadily +unsteady +unstinting +unstintingly +unstoppable +unstressed +unstructured +unstuck +unsubstantiated +unsuccessful +unsuccessfully +unsuitable +unsuitably +unsuited +unsullied +unsung +unsupported +unsure +unsurpassed +unsurprising +unsurprisingly +unsuspected +unsuspecting +unsustainable +unsweetened +unswerving +unsympathetic +untainted +untamed +untangle +untangled +untangles +untangling +untapped +untenable +untested +unthinkable +unthinking +unthinkingly +untidily +untidiness +untidy +untie +untied +unties +until +untimely +untiring +untitled +unto +untold +untouchable +untouchables +untouched +untoward +untrained +untrammeled +untrammelled +untreated +untried +untrue +untrustworthy +untruth +untruthful +untruths +untutored +untying +untypical +untypically +unusable +unused +unusual +unusually +unutterable +unutterably +unvarnished +unvarying +unveil +unveiled +unveiling +unveils +unversed +unvoiced +unwaged +unwanted +unwarranted +unwary +unwashed +unwavering +unwelcome +unwelcoming +unwell +unwholesome +unwieldy +unwilling +unwillingly +unwillingness +unwind +unwinding +unwinds +unwise +unwisely +unwitting +unwittingly +unwonted +unworkable +unworldly +unworthy +unwound +unwrap +unwrapped +unwrapping +unwraps +unwritten +unyielding +unzip +unzipped +unzipping +unzips +up +upbeat +upbraid +upbraided +upbraiding +upbraids +upbringing +upchuck +upchucked +upchucking +upchucks +upcoming +upcountry +update +updated +updates +updating +upend +upended +upending +upends +upfront +upgrade +upgraded +upgrades +upgrading +upheaval +upheavals +upheld +uphill +uphold +upholder +upholders +upholding +upholds +upholster +upholstered +upholsterer +upholsterers +upholstering +upholsters +upholstery +upkeep +upland +uplands +uplift +uplifted +uplifting +uplifts +upload +uploaded +uploading +uploads +upmarket +upon +upped +upper +upperclassman +upperclassmen +upperclasswoman +upperclasswomen +uppercut +uppercuts +uppermost +uppers +upping +uppity +upraised +upright +uprightness +uprights +uprising +uprisings +upriver +uproar +uproarious +uproariously +uproot +uprooted +uprooting +uproots +ups +upscale +upset +upsets +upsetting +upshot +upside +upstage +upstaged +upstages +upstaging +upstairs +upstanding +upstart +upstarts +upstate +upstream +upsurge +upsurges +upswing +upswings +uptake +uptempo +uptight +uptown +uptrend +upturn +upturned +upturns +upward +upwards +upwind +uranium +urban +urbane +urbanely +urbanisation +urbanise +urbanised +urbanises +urbanising +urbanity +urbanization +urbanize +urbanized +urbanizes +urbanizing +urchin +urchins +urethra +urethras +urge +urged +urgency +urgent +urgently +urges +urging +uric +urinal +urinals +urinary +urinate +urinated +urinates +urinating +urination +urine +urn +urns +urological +urologist +urologists +urology +us +usable +usage +usages +use +used +useful +usefully +usefulness +useless +uselessly +uselessness +user +users +uses +usher +ushered +usherette +usherettes +ushering +ushers +using +usual +usually +usurer +usurers +usurious +usurp +usurpation +usurped +usurper +usurpers +usurping +usurps +usury +utensil +utensils +uteri +uterine +uterus +uteruses +utilisable +utilisation +utilise +utilised +utilises +utilising +utilitarian +utilitarianism +utilities +utility +utilizable +utilization +utilize +utilized +utilizes +utilizing +utmost +utopia +utopian +utopias +utter +utterance +utterances +uttered +uttering +utterly +uttermost +utters +uvula +vac +vacancies +vacancy +vacant +vacantly +vacate +vacated +vacates +vacating +vacation +vacationed +vacationer +vacationers +vacationing +vacations +vaccinate +vaccinated +vaccinates +vaccinating +vaccination +vaccinations +vaccine +vaccines +vacillate +vacillated +vacillates +vacillating +vacillation +vacillations +vacs +vacuity +vacuous +vacuously +vacuousness +vacuum +vacuumed +vacuuming +vacuums +vagabond +vagabonds +vagaries +vagary +vagina +vaginal +vaginas +vagrancy +vagrant +vagrants +vague +vaguely +vagueness +vaguer +vaguest +vain +vainer +vainest +vainglorious +vainglory +vainly +valance +valances +vale +valedictorian +valedictorians +valedictories +valedictory +valence +valences +valencies +valency +valentine +valentines +vales +valet +valeted +valeting +valets +valiant +valiantly +valid +validate +validated +validates +validating +validation +validations +validity +validly +valise +valises +valley +valleys +valor +valorous +valour +valuable +valuables +valuation +valuations +value +valued +valueless +valuer +valuers +values +valuing +valve +valves +vamp +vamped +vamping +vampire +vampires +vamps +van +vandal +vandalise +vandalised +vandalises +vandalising +vandalism +vandalize +vandalized +vandalizes +vandalizing +vandals +vane +vanes +vanguard +vanilla +vanish +vanished +vanishes +vanishing +vanities +vanity +vanquish +vanquished +vanquishes +vanquishing +vans +vantage +vantages +vapid +vapidity +vapor +vaporisation +vaporise +vaporised +vaporises +vaporising +vaporization +vaporize +vaporized +vaporizes +vaporizing +vaporous +vapors +vapour +vapours +variability +variable +variables +variably +variance +variances +variant +variants +variation +variations +varied +variegated +variegation +varies +varieties +variety +various +variously +varnish +varnished +varnishes +varnishing +varsities +varsity +vary +varying +vascular +vase +vasectomies +vasectomy +vases +vassal +vassals +vast +vaster +vastest +vastly +vastness +vat +vats +vaudeville +vault +vaulted +vaulting +vaults +vaunted +veal +vector +vectors +veep +veeps +veer +veered +veering +veers +veg +vegan +vegans +vegeburger +vegeburgers +vegetable +vegetables +vegetarian +vegetarianism +vegetarians +vegetate +vegetated +vegetates +vegetating +vegetation +vegged +vegges +veggie +veggieburger +veggieburgers +veggies +vegging +vehemence +vehement +vehemently +vehicle +vehicles +vehicular +veil +veiled +veiling +veils +vein +veined +veins +velar +velars +veld +veldt +vellum +velocities +velocity +velodrome +velodromes +velour +velours +velvet +velveteen +velvety +venal +venality +vendetta +vendettas +vending +vendor +vendors +veneer +veneered +veneering +veneers +venerable +venerate +venerated +venerates +venerating +veneration +vengeance +vengeful +vengefully +venial +venison +venom +venomous +venomously +venous +vent +vented +ventilate +ventilated +ventilates +ventilating +ventilation +ventilator +ventilators +venting +ventricle +ventricles +ventriloquism +ventriloquist +ventriloquists +vents +venture +ventured +ventures +venturesome +venturing +venue +venues +veracity +veranda +verandah +verandahs +verandas +verb +verbal +verbalise +verbalised +verbalises +verbalising +verbalize +verbalized +verbalizes +verbalizing +verbally +verbatim +verbiage +verbose +verbosely +verbosity +verbs +verdant +verdict +verdicts +verdigris +verdure +verge +verged +verger +vergers +verges +verging +verifiable +verification +verified +verifies +verify +verifying +verily +verisimilitude +veritable +veritably +verities +verity +vermicelli +vermilion +vermillion +vermin +verminous +vermouth +vernacular +vernaculars +vernal +verruca +verrucae +verrucas +versatile +versatility +verse +versed +verses +versification +version +versions +verso +versos +versus +vertebra +vertebrae +vertebral +vertebrate +vertebrates +vertex +vertexes +vertical +vertically +vertices +vertiginous +vertigo +verve +very +vespers +vessel +vessels +vest +vested +vestibule +vestibules +vestige +vestiges +vestigial +vestigially +vesting +vestment +vestments +vestries +vestry +vests +vet +vetch +vetches +veteran +veterans +veterinarian +veterinarians +veterinary +veto +vetoed +vetoes +vetoing +vets +vetted +vetting +vex +vexation +vexations +vexatious +vexatiously +vexed +vexes +vexing +via +viability +viable +viably +viaduct +viaducts +vial +vials +vibe +vibes +vibrancy +vibrant +vibrantly +vibraphone +vibraphones +vibrate +vibrated +vibrates +vibrating +vibration +vibrations +vibrato +vibrator +vibrators +vibratos +vicar +vicarage +vicarages +vicarious +vicariously +vicars +vice +viceroy +viceroys +vices +vicinity +vicious +viciously +viciousness +vicissitudes +victim +victimisation +victimise +victimised +victimises +victimising +victimization +victimize +victimized +victimizes +victimizing +victims +victor +victories +victorious +victoriously +victors +victory +victuals +video +videoconferencing +videodisc +videodiscs +videoed +videoing +videophone +videophones +videos +videotape +videotaped +videotapes +videotaping +vie +vied +vies +view +viewed +viewer +viewers +viewfinder +viewfinders +viewing +viewpoint +viewpoints +views +vigil +vigilance +vigilant +vigilante +vigilantes +vigilantism +vigilantly +vigils +vignette +vignettes +vigor +vigorous +vigorously +vigour +vile +vilely +vileness +viler +vilest +vilification +vilified +vilifies +vilify +vilifying +villa +village +villager +villagers +villages +villain +villainous +villains +villainy +villas +villein +villeins +vim +vinaigrette +vindicate +vindicated +vindicates +vindicating +vindication +vindictive +vindictively +vindictiveness +vine +vinegar +vinegary +vines +vineyard +vineyards +vino +vintage +vintages +vintner +vintners +vinyl +vinyls +viol +viola +violas +violate +violated +violates +violating +violation +violations +violator +violators +violence +violent +violently +violet +violets +violin +violincello +violincellos +violinist +violinists +violins +viols +viper +vipers +virago +viragos +viral +virgin +virginal +virginity +virgins +virile +virility +virology +virtual +virtually +virtue +virtues +virtuosi +virtuosity +virtuoso +virtuosos +virtuous +virtuously +virulence +virulent +virulently +virus +viruses +visa +visage +visages +visas +viscera +visceral +viscose +viscosity +viscount +viscountcies +viscountcy +viscountess +viscountesses +viscounts +viscous +vise +vises +visibility +visible +visibly +vision +visionaries +visionary +visions +visit +visitation +visitations +visited +visiting +visitor +visitors +visits +visor +visors +vista +vistas +visual +visualisation +visualisations +visualise +visualised +visualises +visualising +visualization +visualizations +visualize +visualized +visualizes +visualizing +visually +visuals +vital +vitality +vitally +vitamin +vitamins +vitiate +vitiated +vitiates +vitiating +viticulture +vitreous +vitriol +vitriolic +vitriolically +vituperation +vituperative +viva +vivacious +vivaciously +vivacity +vivas +vivid +vividly +vividness +vivisection +vivisectionist +vivisectionists +vixen +vixens +viz +vizier +viziers +vocab +vocabularies +vocabulary +vocal +vocalisation +vocalisations +vocalise +vocalised +vocalises +vocalising +vocalist +vocalists +vocalization +vocalizations +vocalize +vocalized +vocalizes +vocalizing +vocally +vocals +vocation +vocational +vocationally +vocations +vocative +vocatives +vociferous +vociferously +vodka +vodkas +vogue +vogues +voice +voiced +voiceless +voices +voicing +void +voided +voiding +voids +voila +voile +volatile +volatility +volcanic +volcano +volcanoes +volcanos +vole +voles +volition +volley +volleyball +volleyed +volleying +volleys +volt +voltage +voltages +voltmeter +voltmeters +volts +voluble +volubly +volume +volumes +voluminous +voluntaries +voluntarily +voluntary +volunteer +volunteered +volunteering +volunteers +voluptuous +voluptuously +voluptuousness +vomit +vomited +vomiting +vomits +voodoo +voracious +voraciously +voraciousness +voracity +vortex +vortexes +vortices +vote +voted +voter +voters +votes +voting +votive +vouch +vouched +voucher +vouchers +vouches +vouching +vouchsafe +vouchsafed +vouchsafes +vouchsafing +vow +vowed +vowel +vowels +vowing +vows +voyage +voyaged +voyager +voyagers +voyages +voyaging +voyeur +voyeurism +voyeuristic +voyeurs +vulcanised +vulcanized +vulgar +vulgarisation +vulgarise +vulgarised +vulgarises +vulgarising +vulgarities +vulgarity +vulgarization +vulgarize +vulgarized +vulgarizes +vulgarizing +vulgarly +vulnerability +vulnerable +vulnerably +vulture +vultures +vulva +vulvas +vying +wackier +wackiest +wackiness +wacko +wacky +wad +wadded +wadding +waddle +waddled +waddles +waddling +wade +waded +wader +waders +wades +wadge +wadges +wadi +wading +wadis +wads +wafer +wafers +waffle +waffled +waffles +waffling +waft +wafted +wafting +wafts +wag +wage +waged +wager +wagered +wagering +wagers +wages +wagged +wagging +waggish +waggle +waggled +waggles +waggling +waggon +waggons +waging +wagon +wagons +wags +wagtail +wagtails +waif +waifs +wail +wailed +wailing +wails +wainscot +wainscots +waist +waistband +waistbands +waistcoat +waistcoats +waistline +waistlines +waists +wait +waited +waiter +waiters +waiting +waitress +waitresses +waits +waive +waived +waiver +waivers +waives +waiving +wake +waked +wakeful +wakefulness +waken +wakened +wakening +wakens +wakes +waking +walk +walkabout +walkabouts +walkaway +walkaways +walked +walker +walkers +walkies +walking +walkout +walkouts +walkover +walkovers +walks +walkway +walkways +wall +walla +wallabies +wallaby +wallah +wallahs +wallas +wallboard +walled +wallet +wallets +wallflower +wallflowers +wallies +walling +wallop +walloped +walloping +wallops +wallow +wallowed +wallowing +wallows +wallpaper +wallpapered +wallpapering +wallpapers +walls +wally +walnut +walnuts +walrus +walruses +waltz +waltzed +waltzes +waltzing +wan +wand +wander +wandered +wanderer +wanderers +wandering +wanderings +wanderlust +wanders +wands +wane +waned +wanes +wangle +wangled +wangles +wangling +waning +wank +wanked +wanker +wankers +wanking +wanks +wanly +wanna +wannabe +wannabee +wannabees +wannabes +want +wanted +wanting +wanton +wantonly +wantonness +wants +wapiti +war +warble +warbled +warbler +warblers +warbles +warbling +ward +warded +warden +wardens +warder +warders +warding +wardress +wardresses +wardrobe +wardrobes +wardroom +wardrooms +wards +warehouse +warehouses +warehousing +wares +warfare +warhead +warheads +warhorse +warhorses +warier +wariest +warily +wariness +warlike +warlock +warlocks +warlord +warlords +warm +warmed +warmer +warmest +warming +warmly +warmonger +warmongering +warmongers +warms +warmth +warn +warned +warning +warnings +warns +warp +warpaint +warped +warping +warplane +warplanes +warps +warrant +warranted +warranties +warranting +warrants +warranty +warren +warrens +warring +warrior +warriors +wars +warship +warships +wart +warthog +warthogs +wartime +warts +warty +wary +was +wash +washable +washbasin +washbasins +washbowl +washbowls +washcloth +washcloths +washed +washer +washers +washes +washing +washout +washouts +washroom +washrooms +washstand +washstands +wasp +waspish +waspishly +wasps +wastage +waste +wastebasket +wastebaskets +wasted +wasteful +wastefully +wastefulness +wasteland +wastelands +waster +wasters +wastes +wasting +wastrel +wastrels +watch +watchable +watchband +watchbands +watchdog +watchdogs +watched +watcher +watchers +watches +watchful +watchfully +watchfulness +watching +watchmaker +watchmakers +watchman +watchmen +watchstrap +watchstraps +watchtower +watchtowers +watchword +watchwords +water +waterbed +waterbeds +waterborne +watercolor +watercolors +watercolour +watercolours +watercourse +watercourses +watercress +watered +waterfall +waterfalls +waterfowl +waterfront +waterfronts +waterhole +waterholes +watering +waterline +waterlogged +watermark +watermarks +watermelon +watermelons +watermill +watermills +waterproof +waterproofed +waterproofing +waterproofs +waters +watershed +watersheds +waterside +waterspout +waterspouts +watertight +waterway +waterways +waterwheel +waterwheels +waterworks +watery +watt +wattage +wattle +watts +wave +waveband +wavebands +waved +wavelength +wavelengths +wavelet +wavelets +waver +wavered +wavering +wavers +waves +wavier +waviest +waving +wavy +wax +waxed +waxen +waxes +waxier +waxiest +waxing +waxwork +waxworks +waxy +way +wayfarer +wayfarers +waylaid +waylay +waylaying +waylays +ways +wayside +wayward +waywardness +wazoo +wazoos +we +weak +weaken +weakened +weakening +weakens +weaker +weakest +weakling +weaklings +weakly +weakness +weaknesses +weal +weals +wealth +wealthier +wealthiest +wealthy +wean +weaned +weaning +weans +weapon +weaponry +weapons +wear +wearable +wearer +wearers +wearied +wearier +wearies +weariest +wearily +weariness +wearing +wearisome +wears +weary +wearying +weasel +weaseled +weaseling +weaselled +weaselling +weasels +weather +weatherboard +weatherboarding +weatherboards +weathercock +weathercocks +weathered +weathering +weatherize +weatherized +weatherizes +weatherizing +weatherman +weathermen +weatherproof +weathers +weave +weaved +weaver +weavers +weaves +weaving +web +webbed +webbing +webmaster +webmasters +webs +website +websites +wed +wedded +wedding +weddings +wedge +wedged +wedges +wedging +wedlock +weds +wee +weed +weeded +weedier +weediest +weeding +weedkiller +weedkillers +weeds +weedy +weeing +week +weekday +weekdays +weekend +weekended +weekender +weekenders +weekending +weekends +weeklies +weekly +weeknight +weeknights +weeks +weenie +weenies +weeny +weep +weepie +weepier +weepies +weepiest +weeping +weeps +weepy +wees +weevil +weevils +weft +weigh +weighbridge +weighbridges +weighed +weighing +weighs +weight +weighted +weightier +weightiest +weightily +weightiness +weighting +weightings +weightless +weightlessly +weightlessness +weightlifter +weightlifters +weightlifting +weights +weighty +weir +weird +weirder +weirdest +weirdly +weirdness +weirdo +weirdos +weirs +welch +welched +welches +welching +welcome +welcomed +welcomes +welcoming +weld +welded +welder +welders +welding +welds +welfare +well +welled +wellie +wellies +welling +wellington +wellingtons +wellness +wells +wellspring +wellsprings +welly +welsh +welshed +welshes +welshing +welt +welter +welterweight +welterweights +welts +wench +wenches +wend +wended +wending +wends +went +wept +were +werewolf +werewolves +west +westbound +westerly +western +westerner +westerners +westernisation +westernise +westernised +westernises +westernising +westernization +westernize +westernized +westernizes +westernizing +westernmost +westerns +westward +westwards +wet +wetback +wetbacks +wetland +wetlands +wetly +wetness +wets +wetted +wetter +wettest +wetting +whack +whacked +whackier +whackiest +whacking +whackings +whacks +whacky +whale +whalebone +whaler +whalers +whales +whaling +wham +whammies +whammy +whams +wharf +wharfs +wharves +what +whatchamacallit +whatchamacallits +whatever +whatshername +whatshisname +whatsit +whatsits +whatsoever +wheat +wheatgerm +wheatmeal +wheedle +wheedled +wheedles +wheedling +wheel +wheelbarrow +wheelbarrows +wheelbase +wheelbases +wheelchair +wheelchairs +wheeled +wheelhouse +wheelhouses +wheelie +wheelies +wheeling +wheels +wheelwright +wheelwrights +wheeze +wheezed +wheezes +wheezier +wheeziest +wheezily +wheeziness +wheezing +wheezy +whelk +whelks +whelp +whelped +whelping +whelps +when +whence +whenever +where +whereabouts +whereas +whereby +wherein +whereof +wheresoever +whereupon +wherever +wherewithal +whet +whether +whets +whetstone +whetstones +whetted +whetting +whew +whey +which +whichever +whiff +whiffs +while +whiled +whiles +whiling +whilst +whim +whimper +whimpered +whimpering +whimpers +whims +whimsical +whimsicality +whimsically +whimsies +whimsy +whine +whined +whiner +whiners +whines +whinge +whinged +whingeing +whinger +whingers +whinges +whinging +whining +whinnied +whinnies +whinny +whinnying +whip +whiplash +whiplashes +whipped +whippersnapper +whippersnappers +whippet +whippets +whipping +whippings +whippoorwill +whippoorwills +whips +whir +whirl +whirled +whirligig +whirligigs +whirling +whirlpool +whirlpools +whirls +whirlwind +whirlwinds +whirlybird +whirlybirds +whirr +whirred +whirring +whirrs +whirs +whisk +whisked +whisker +whiskered +whiskers +whiskery +whiskey +whiskeys +whiskies +whisking +whisks +whisky +whisper +whispered +whispering +whispers +whist +whistle +whistled +whistles +whistling +white +whitebait +whiteboard +whiteboards +whitecaps +whited +whiten +whitened +whitener +whiteness +whitening +whitens +whiteout +whiter +whites +whitest +whitewash +whitewashed +whitewashes +whitewashing +whitey +whiteys +whither +whiting +whitings +whitish +whittle +whittled +whittles +whittling +whiz +whizz +whizzed +whizzes +whizzing +who +whoa +whodunit +whodunits +whodunnit +whodunnits +whoever +whole +wholefood +wholefoods +wholegrain +wholehearted +wholeheartedly +wholemeal +wholeness +wholes +wholesale +wholesaler +wholesalers +wholesaling +wholesome +wholesomeness +wholewheat +wholly +whom +whomever +whoop +whooped +whoopee +whooping +whoops +whoosh +whooshed +whooshes +whooshing +whop +whopped +whopper +whoppers +whopping +whops +whore +whorehouse +whorehouses +whores +whoring +whorl +whorls +whose +whosoever +whup +whupped +whupping +whups +why +wick +wicked +wickeder +wickedest +wickedly +wickedness +wicker +wickerwork +wicket +wickets +wicks +wide +widely +widen +widened +widening +widens +wider +widespread +widest +widget +widgets +widow +widowed +widower +widowers +widowhood +widows +width +widths +wield +wielded +wielding +wields +wiener +wieners +wienie +wienies +wife +wifely +wig +wiggle +wiggled +wiggles +wiggling +wiggly +wigs +wigwam +wigwams +wild +wildcat +wildcats +wildcatted +wildcatter +wildcatters +wildcatting +wildebeest +wildebeests +wilder +wilderness +wildernesses +wildest +wildfire +wildfires +wildflower +wildflowers +wildfowl +wildlife +wildly +wildness +wiles +wilful +wilfully +wilfulness +wilier +wiliest +will +willed +willful +willfully +willfulness +willie +willies +willing +willingly +willingness +willow +willows +willowy +willpower +wills +willy +wilt +wilted +wilting +wilts +wily +wimp +wimped +wimping +wimpish +wimple +wimples +wimps +wimpy +win +wince +winced +winces +winch +winched +winches +winching +wincing +wind +windbag +windbags +windblown +windbreak +windbreaker +windbreakers +windbreaks +windcheater +windcheaters +winded +windfall +windfalls +windier +windiest +winding +windlass +windlasses +windless +windmill +windmills +window +windowpane +windowpanes +windows +windowsill +windowsills +windpipe +windpipes +winds +windscreen +windscreens +windshield +windshields +windsock +windsocks +windsurf +windsurfed +windsurfer +windsurfers +windsurfing +windsurfs +windswept +windward +windy +wine +wineries +winery +wines +wing +winged +winger +wingers +winging +wings +wingspan +wingspans +wingtips +wink +winked +winking +winkle +winkled +winkles +winkling +winks +winner +winners +winning +winnings +winnow +winnowed +winnowing +winnows +wino +winos +wins +winsome +winsomely +winter +wintered +wintering +winters +wintertime +wintry +wipe +wiped +wiper +wipers +wipes +wiping +wire +wired +wireless +wirelesses +wires +wiretap +wiretapped +wiretapping +wiretaps +wiring +wiry +wisdom +wise +wisecrack +wisecracked +wisecracking +wisecracks +wised +wiseguy +wiseguys +wisely +wiser +wises +wisest +wish +wishbone +wishbones +wished +wishes +wishing +wising +wisp +wisps +wispy +wisteria +wisterias +wistful +wistfully +wistfulness +wit +witch +witchcraft +witches +with +withdraw +withdrawal +withdrawals +withdrawing +withdrawn +withdraws +withdrew +wither +withered +withering +witheringly +withers +withheld +withhold +withholding +withholds +within +without +withstand +withstanding +withstands +withstood +witless +witness +witnessed +witnesses +witnessing +wits +witter +wittered +wittering +witters +witticism +witticisms +wittier +wittiest +wittily +wittingly +witty +wives +wizard +wizardry +wizards +wizened +woad +wobble +wobbled +wobbles +wobbling +wobbly +wodge +wodges +woe +woebegone +woeful +woefully +woes +wog +wogs +wok +woke +woken +woks +wolds +wolf +wolfed +wolfhound +wolfhounds +wolfing +wolfish +wolfs +wolves +woman +womanhood +womanise +womanised +womaniser +womanisers +womanises +womanising +womanize +womanized +womanizer +womanizers +womanizes +womanizing +womankind +womanliness +womanly +womb +wombat +wombats +wombs +women +womenfolk +won +wonder +wondered +wonderful +wonderfully +wondering +wonderingly +wonderland +wonderlands +wonderment +wonders +wondrous +wondrously +wonk +wonks +wonky +wont +wonted +woo +wood +woodbine +woodblock +woodblocks +woodcarving +woodcarvings +woodchuck +woodchucks +woodcock +woodcocks +woodcut +woodcuts +woodcutter +woodcutters +wooded +wooden +woodenly +woodenness +woodier +woodiest +woodland +woodlands +woodlice +woodlouse +woodpecker +woodpeckers +woodpile +woodpiles +woods +woodshed +woodsheds +woodsman +woodsmen +woodsy +woodwind +woodwinds +woodwork +woodworking +woodworm +woodworms +woody +wooed +wooer +wooers +woof +woofed +woofing +woofs +wooing +wool +woolen +woolens +woolies +wooliness +woollen +woollens +woollies +woolly +wooly +woos +woozy +wop +wops +word +worded +wordiness +wording +wordless +wordlessly +wordplay +words +wordsmith +wordsmiths +wordy +wore +work +workable +workaday +workaholic +workaholics +workbasket +workbaskets +workbench +workbenches +workbook +workbooks +workday +workdays +worked +worker +workers +workfare +workforce +workhorse +workhorses +workhouse +workhouses +working +workings +workload +workloads +workman +workmanlike +workmanship +workmate +workmates +workmen +workout +workouts +workplace +workplaces +workroom +workrooms +works +worksheet +worksheets +workshop +workshops +workshy +workstation +workstations +worktop +worktops +workweek +workweeks +world +worldliness +worldly +worlds +worldwide +worm +wormed +wormhole +wormholes +worming +worms +wormwood +wormy +worn +worried +worriedly +worrier +worriers +worries +worrisome +worry +worrying +worryingly +worrywart +worrywarts +worse +worsen +worsened +worsening +worsens +worship +worshiped +worshiper +worshipers +worshipful +worshiping +worshipped +worshipper +worshippers +worshipping +worships +worst +worsted +worsting +worsts +worth +worthier +worthies +worthiest +worthily +worthiness +worthless +worthlessness +worthwhile +worthy +wot +wotcha +would +wound +wounded +wounding +wounds +wove +woven +wow +wowed +wowing +wows +wrack +wracked +wracking +wracks +wraith +wraiths +wrangle +wrangled +wrangler +wranglers +wrangles +wrangling +wranglings +wrap +wraparound +wrapped +wrapper +wrappers +wrapping +wrappings +wraps +wrath +wrathful +wrathfully +wreak +wreaked +wreaking +wreaks +wreath +wreathe +wreathed +wreathes +wreathing +wreaths +wreck +wreckage +wrecked +wrecker +wreckers +wrecking +wrecks +wren +wrench +wrenched +wrenches +wrenching +wrens +wrest +wrested +wresting +wrestle +wrestled +wrestler +wrestlers +wrestles +wrestling +wrests +wretch +wretched +wretchedly +wretchedness +wretches +wriggle +wriggled +wriggles +wriggling +wring +wringer +wringers +wringing +wrings +wrinkle +wrinkled +wrinkles +wrinklies +wrinkling +wrinkly +wrist +wrists +wristwatch +wristwatches +writ +write +writer +writers +writes +writhe +writhed +writhes +writhing +writing +writings +writs +written +wrong +wrongdoer +wrongdoers +wrongdoing +wrongdoings +wronged +wrongful +wrongfully +wronging +wrongly +wrongs +wrote +wrought +wrung +wry +wryly +wunderkind +wunderkinds +wuss +wusses +xenon +xenophobe +xenophobes +xenophobia +xenophobic +xerox +xeroxed +xeroxes +xeroxing +xylophone +xylophones +yacht +yachting +yachts +yachtsman +yachtsmen +yachtswoman +yachtswomen +yack +yacked +yacking +yacks +yahoo +yahoos +yak +yakked +yakking +yaks +yam +yammer +yammered +yammering +yammers +yams +yang +yank +yanked +yanking +yanks +yap +yapped +yapping +yaps +yard +yardage +yardages +yardarm +yardarms +yards +yardstick +yardsticks +yarmulke +yarmulkes +yarn +yarns +yashmak +yashmaks +yaw +yawed +yawing +yawn +yawned +yawning +yawns +yaws +ye +yea +yeah +year +yearbook +yearbooks +yearling +yearlings +yearly +yearn +yearned +yearning +yearnings +yearns +years +yeast +yeasts +yeasty +yell +yelled +yelling +yellow +yellowed +yellower +yellowest +yellowhammer +yellowhammers +yellowing +yellowish +yellowness +yellows +yellowy +yells +yelp +yelped +yelping +yelps +yen +yens +yeoman +yeomen +yep +yer +yes +yeses +yesterday +yesterdays +yesteryear +yet +yeti +yetis +yew +yews +yid +yids +yield +yielded +yielding +yields +yikes +yin +yip +yipped +yippee +yipping +yips +yo +yob +yobbo +yobbos +yobs +yodel +yodeled +yodeling +yodelled +yodelling +yodels +yoga +yoghourt +yoghourts +yoghurt +yoghurts +yogi +yogic +yogis +yogurt +yogurts +yoke +yoked +yokel +yokels +yokes +yoking +yolk +yolks +yon +yonder +yonks +you +young +younger +youngest +youngish +youngster +youngsters +your +yours +yourself +yourselves +youth +youthful +youthfully +youthfulness +youths +yowl +yowled +yowling +yowls +yuan +yucca +yuccas +yuck +yucky +yuk +yukky +yum +yummier +yummiest +yummy +yuppie +yuppies +yuppified +yuppifies +yuppify +yuppifying +yuppy +zanier +zaniest +zany +zap +zapped +zapper +zappers +zapping +zappy +zaps +zeal +zealot +zealotry +zealots +zealous +zealously +zealousness +zebra +zebras +zeitgeist +zenith +zeniths +zephyr +zephyrs +zeppelin +zeppelins +zero +zeroed +zeroes +zeroing +zeros +zest +zestful +zestfully +zigzag +zigzagged +zigzagging +zigzags +zilch +zillion +zillions +zinc +zine +zines +zing +zinged +zinger +zingers +zinging +zings +zingy +zip +zipped +zipper +zippers +zipping +zippy +zips +zit +zither +zithers +zits +zodiac +zodiacal +zodiacs +zombie +zombies +zonal +zonally +zone +zoned +zones +zoning +zonked +zoo +zookeeper +zookeepers +zoological +zoologist +zoologists +zoology +zoom +zoomed +zooming +zooms +zoos +zucchini +zucchinis +zydeco +zygote +zygotes diff --git a/GeekyProjects/palindromes/cprofile_test.py b/GeekyProjects/palindromes/cprofile_test.py new file mode 100644 index 0000000..13e5b5d --- /dev/null +++ b/GeekyProjects/palindromes/cprofile_test.py @@ -0,0 +1,4 @@ +import cProfile +import palingrams + +cProfile.run('palingrams.find_palingrams()') \ No newline at end of file diff --git a/GeekyProjects/palindromes/load_dictionary.py b/GeekyProjects/palindromes/load_dictionary.py new file mode 100644 index 0000000..46df053 --- /dev/null +++ b/GeekyProjects/palindromes/load_dictionary.py @@ -0,0 +1,30 @@ +""" Load dictionary file + + + Arguments: + - the txt file name (add path if needed) + + Exception: + IOError if the file doesn't exist + + Returns: + A list of all words from txt file in low case + + Require: + import sys + +""" + + +import sys + +def loadfile(file): + """ Load file and return a list of lowercase strings """ + try: + with open(file) as in_file: + loaded_text = in_file.read().strip().split('\n') + loaded_text = [x.lower() for x in loaded_text] + return loaded_text + except IOError as e: + print("{}\nError opening {}. Terminating program.".format(e, file), file=sys.stderr) + sys.exit(1) \ No newline at end of file diff --git a/GeekyProjects/palindromes/palindromes.py b/GeekyProjects/palindromes/palindromes.py new file mode 100644 index 0000000..6c65403 --- /dev/null +++ b/GeekyProjects/palindromes/palindromes.py @@ -0,0 +1,12 @@ +""" Find palindromes in dictionary file """ + +import load_dictionary +word_list = load_dictionary.loadfile('2of4brif.txt') +pali_word = [] + +for word in word_list: + if len(word) > 1 and word == word[::-1]: + pali_word.append(word) + +print("\nNumbers of palindromes found = {}\n".format(len(pali_word))) +print(*pali_word, sep= '\n') \ No newline at end of file diff --git a/GeekyProjects/palindromes/palingrams.py b/GeekyProjects/palindromes/palingrams.py new file mode 100644 index 0000000..1e28209 --- /dev/null +++ b/GeekyProjects/palindromes/palingrams.py @@ -0,0 +1,32 @@ +""" Find all word-pair palingrams in a dictionary file """ +import load_dictionary + +word_list = load_dictionary.loadfile('2of4brif.txt') + +# find word-pair palingrams +def findPalingrams(): + """ Find dictionary palingrams """ + pali_list = [] + for word in word_list: + end = len(word) + rev_word = word[::-1] + + if end > 1: + for i in range(end): + if word[i:] == rev_word[:end-i] and rev_word[end-i:] in word_list: + pali_list.append((word, rev_word[end-i:])) + if word[:i] == rev_word[end-i:] and rev_word[:end-i] in word_list: + pali_list.append((rev_word[:end-i], word)) + + return pali_list + +palingrams = findPalingrams() + +# sort palingrams on the first word +palingrams_sorted = sorted(palingrams) + +# display the palingrams +print("\nNumber of palingrams = {} \n".format(len(palingrams_sorted))) +for first, second in palingrams_sorted: + print("{} {}".format(first, second)) + \ No newline at end of file diff --git a/GeekyProjects/palindromes/palingrams_optimized.py b/GeekyProjects/palindromes/palingrams_optimized.py new file mode 100644 index 0000000..aabfd0e --- /dev/null +++ b/GeekyProjects/palindromes/palingrams_optimized.py @@ -0,0 +1,42 @@ +""" Find all word-pair palingrams in a dictionary file """ +import load_dictionary +import time + +start_time = time.time() + +word_list = load_dictionary.loadfile('2of4brif.txt') + +# find word-pair palingrams +def findPalingrams(): + """ Find dictionary palingrams """ + pali_list = [] + + # convert list to set + words = set(word_list) + + for word in words: + end = len(word) + rev_word = word[::-1] + + if end > 1: + for i in range(end): + if word[i:] == rev_word[:end-i] and rev_word[end-i:] in words: + pali_list.append((word, rev_word[end-i:])) + if word[:i] == rev_word[end-i:] and rev_word[:end-i] in words: + pali_list.append((rev_word[:end-i], word)) + + return pali_list + +palingrams = findPalingrams() + +# sort palingrams on the first word +palingrams_sorted = sorted(palingrams) + +# display the palingrams +print("\nNumber of palingrams = {} \n".format(len(palingrams_sorted))) +for first, second in palingrams_sorted: + print("{} {}".format(first, second)) + +end_time = time.time() +print("Runtime for this program was {} seconds.".format(end_time, start_time)) + \ No newline at end of file diff --git a/GeekyProjects/palindromes/palingrams_recursive.py b/GeekyProjects/palindromes/palingrams_recursive.py new file mode 100644 index 0000000..e69de29 diff --git a/GeekyProjects/palindromes/palingrams_time.py b/GeekyProjects/palindromes/palingrams_time.py new file mode 100644 index 0000000..788248d --- /dev/null +++ b/GeekyProjects/palindromes/palingrams_time.py @@ -0,0 +1,37 @@ +import time +import load_dictionary + +start_time = time.time() + + +word_list = load_dictionary.loadfile('2of4brif.txt') + +# find word-pair palingrams +def findPalingrams(): + """ Find dictionary palingrams """ + pali_list = [] + for word in word_list: + end = len(word) + rev_word = word[::-1] + + if end > 1: + for i in range(end): + if word[i:] == rev_word[:end-i] and rev_word[end-i:] in word_list: + pali_list.append((word, rev_word[end-i:])) + if word[:i] == rev_word[end-i:] and rev_word[:end-i] in word_list: + pali_list.append((rev_word[:end-i], word)) + + return pali_list + +palingrams = findPalingrams() + +# sort palingrams on the first word +palingrams_sorted = sorted(palingrams) + +# display the palingrams +print("\nNumber of palingrams = {} \n".format(len(palingrams_sorted))) +for first, second in palingrams_sorted: + print("{} {}".format(first, second)) + +end_time = time.time() +print("Runtime for this program was {} seconds.".format(end_time, start_time)) \ No newline at end of file diff --git a/GeekyProjects/palindromes/readme.md b/GeekyProjects/palindromes/readme.md new file mode 100644 index 0000000..5354cf2 --- /dev/null +++ b/GeekyProjects/palindromes/readme.md @@ -0,0 +1,58 @@ +# Finding Palingram Spells + +### Finding and opening a dictionary + +1. Whenever you load an external file, your program should automatically handle the I/O issues. So using *try* and *except* to catch and handle *exceptions*. + + ```python + try: + with open(file) as in_file: + # do something + except IOError as e: + print("{}\nError opening {}. Terminating program.".format(e, file), file=sys.stderr) + sys.exit(1) + ``` + + * The *with* statement will automatically close the file after the nested block of code, regardless of how the block exists. + + * Closing files prior to terminating a process is a good practice. + + * The ```sys.exit(1)``` is used to terminate the program. The ***1*** means that the program experiences an error and didn't close successfully. + * If an exception couldn't match any named exception in the except clause, it is passed to any outer try statements or the main program execution. If no handler is found, the unhandled exception causes the program to stop with a standard “traceback” error message. + + ### Finding Palindromes + + Objective: Use Python to search English dictionary file for palindromes. + + Strategy: Identifying palindromes is easy: simply compare a word to itself sliced backward. + + ```python + >>> word='NURSES' + >>> word[:] + 'NURSES' + >>> word[::-1] + 'SESRUN' + ``` + + + + More syntax + + 1. splat operator (*) which takes a list as input and expands it into positional arguments in the function call. + + 2. print() function separator parameter: The default separator is a space (sep=''), but instead, print each item on a new line (sep='\n'). + + ```python + print(*pali_list, sep='\n') + ``` + + + + + ### Finding Palingrams + + +A downside to using sets is that the order of the items in the set isn’t controllable and +duplicate values aren’t allowed. With lists, the order is preserved and duplicates are +allowed, but lookups take longer. Fortunately for us, we don’t care about order or +duplicates, so sets are the way to go! \ No newline at end of file From b6315a1abba8ddaa32a3db98be5aa0949e16a1fe Mon Sep 17 00:00:00 2001 From: Syone Date: Sun, 1 Sep 2019 23:11:44 -0400 Subject: [PATCH 07/20] Support jupter notebook --- jupyter/HelloWorld.ipynb | 49 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 jupyter/HelloWorld.ipynb diff --git a/jupyter/HelloWorld.ipynb b/jupyter/HelloWorld.ipynb new file mode 100644 index 0000000..5cec222 --- /dev/null +++ b/jupyter/HelloWorld.ipynb @@ -0,0 +1,49 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Hello World!\n" + ] + } + ], + "source": [ + "print(\"Hello World!\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.7.3" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} From 5fe78c6607d0b36af102743fb617320730180e6d Mon Sep 17 00:00:00 2001 From: sys Date: Mon, 20 Jan 2020 13:49:50 -0500 Subject: [PATCH 08/20] A game boosted with pygame --- alien_invasion/alien_invasion.py | 34 +++++++++++++++++++++++++++++++ alien_invasion/images/ship.bmp | Bin 0 -> 30054 bytes alien_invasion/images/ship.png | Bin 0 -> 6252 bytes alien_invasion/settings.py | 9 ++++++++ alien_invasion/ship.py | 21 +++++++++++++++++++ 5 files changed, 64 insertions(+) create mode 100644 alien_invasion/alien_invasion.py create mode 100644 alien_invasion/images/ship.bmp create mode 100644 alien_invasion/images/ship.png create mode 100644 alien_invasion/settings.py create mode 100644 alien_invasion/ship.py diff --git a/alien_invasion/alien_invasion.py b/alien_invasion/alien_invasion.py new file mode 100644 index 0000000..8281a75 --- /dev/null +++ b/alien_invasion/alien_invasion.py @@ -0,0 +1,34 @@ +import sys + +import pygame + +from settings import Settings +from ship import Ship + +def run_game(): + # Initialize game and create a screen object. + pygame.init() + ai_settings = Settings() + screen = pygame.display.set_mode((ai_settings.screen_width, ai_settings.screen_height)) + pygame.display.set_caption("Alien Invasion") + + # Make a ship + ship = Ship(screen) + + # Start a main loop for the game + while True: + + # Watch for keyboard and mouse events + for event in pygame.event.get(): + if event.type == pygame.QUIT: + sys.exit() + + # Redraw the screen with the same bg color + screen.fill(ai_settings.bg_color) + # Draw the space ship + ship.blitme() + + # Make the most recently draw screen visible + pygame.display.flip() + +run_game() diff --git a/alien_invasion/images/ship.bmp b/alien_invasion/images/ship.bmp new file mode 100644 index 0000000000000000000000000000000000000000..47b7a5fa57403f7b77cc974042c6eafd0f5e5f72 GIT binary patch literal 30054 zcmeI330zItAHZLUEM-h~BSoP_(TYflBBEYeU#mz+LeXN6W~OO|EQumY+iPF6r>0)7 z*YZk5C}ONBM4OgZ@BV-H-FiK3|Cr&=fA0C5?&rL7?>*;tzUTM*o!>q8rnX_*egZ2g z!ch$Vws!w<5vH-~(F0{X_SaK^;0Y&y6Tk`J1aJa40h|C%04IPGzzN_4Z~{01oB&P$ zCx8>c3E%{90yqJj08RiWFgSrG1o;a=YMDsa$JaD7k(UV4@^R(A_7?*|ybwefLB=D9 z0D`PTkZKl-W&}CLL}nq#j|egiK^zg}{lAtGYv7#-;)EdF3}j|Ohj?hKSVY@|M+`9p zsbV7P2*TUS6wK=oi)<53X&=?Z)apXo{>8Xx2r{x05esToJklWV@LJyWouYg5RC))f z)94R~tT(IPrC#B1gPcd>xZ19Oe=#d71esOPCcC>!NZ@R=n zKFHeE2uu74^|R*Plq6M4`7|jp5KzVcv&3XF+uB;2o15$3zpZ;+`?BWc^XJd|k8v&o zk@9VtEk~U`{o2&2=OO^$dE4;_*g6G;Nw6R8E`bBRD%*ZqKXv^~}bPTWM%~ z2Q9yP_3HKO*Y6tYTUuHeo!|n$r}X66U+eVL*XpibqocNbtvqB^tz}gYtNM&Vo`EQy zem7l&%*8bt`@({kckw)pGLaiCGWIX0O!_iftSR1~#EWmbsq+`Fy4y`59~<6VeEV2hx1 zSkI>@gb_Rvk_Pvu-C@Wdc_%Q@kzGG=l9kM^7pvZPaoS*Xe58!BxV+}PYL%X}eEITaO3NVkRHy(eBU=~uH?3?` zU0q$S#|}V)Fa?T4QJ9NU{%-7Mzte(G@E?jq5n!dTejYkBW$}H7ZNblA!+|0D`T5Dp z%F6X5At52Q-OZafucum0UQRA6^ClZY7A0LyMFLurRTYEAA*-9qeRp1+Jsc6V*sQF7-|Gz7Vto6BhQ{|B zwl2pg!HC#Og$+|lb79$IT1`!jySw|AVI(UntB{c3XKxvOG$rz zc7FP|Po}?wxkXvvLtuphGm%y4wm#M{C6qRa+6K!%s<~fOR8%s&bnDiw{QP`6ogSWk zRdt83tg>V;u@&O5$U;Y8@5j9MgOltp%(q&=8{7B zi=HKxm6s(Z-YB9M0fFJ98#iv`=hJQ#mpI3-UUy`Y!YXtfWM^m@0xeCeCEuMH*3`XN zX}GA5-6@mi>-mm0B9DkDKk?U-$C;U#VPRo~g@wZb1=mDJM*~|Z#ODT)$Yb^VMlZJz zVzWXEE5v2jh^FSmf6H3bU$%(Y&_&9<8YQQ^K=+80F_~Z-MsP||eB1B_5P_atyLOEY zs-mLe@j$7xv=puZOO1+(3J(vzdGjXxw2zfD3L}un1kEFpIF}3{W?^fiHY&|_h+-ZckkZIfl^sn8OACyGBO|_ zfMtpKN%;}RH!L^j6Pr>~fRYFh_c3IvpJy1IqSIRYHVG+H9nARDEmG zY~wIgov>^fHT~U(S}?SmnKxmuadC0*B={MuzzpH`#Kc5cKTjmm1BXnv;nFWho4DWs*8c@jpd1V*URmHgLR-#7==S7!1mNSQe z7={so%a6CVeSozrB_$b#2`MBb1Y?Con1E|&R$#frYHE3gLko%a{p%mHXa* zOYaq#2=f{9uaoypjLD<0`PDr?Ufq7S`W`fExli04FVxsk4{DRi@>JL`{}EOYn*Ldk zY!W^e`qjU}%kFfo>r5;}f%;vUQpGJ45b}R+cdf{W^yb)Il*PuOJ%&IgX#FC9fr2Aw z7uZPr-E$2M4Pb6CI*e6dU?6A+_^Z#*D+nI2Msjm=z0-Fau)5au=4W@R;V5Jn(kqWe z?4*cS=NtRJ0{W`(o-&_!J>G2|^8=<%?4zFF81+5EsO0vu!5E?5I!36qv!%SeJSQg` z8zw~HpUNsICw6sEc;eM(riRIo60!FbrUGFxPEeuvLiQqY2OuXNI z`|B%M8`74^NZFgGL<;BbBNh4+4RywB{7pdDd%RHy*OnAv=PIMvzb@3&yad;jnwknD z#bSm}(yQy&uLCH|SwYNDSWtML`nz?y$f1X(yYrNcLb>$)d9^(Si09Bw*(*!0cx1xX zM8S}{Gc8~1TN2beAx|&7K5iB>u~!U^l}OKz7c!hO3gzCCJjdy-rX5YeIE=?4Qs6~> zHMnR964B?wddC zto+gn#y}WUMwV;&Mw5u%fEgnO(~3o&`d4}M{6|}-i8@uRw=Z035;+dL0FD84r#tt{ zLA9_25!SU&Wd+xRLZ+mq6w`|@=KJe}pp()g0Kqzaj%$_fZknPoc`VU;493bRXha`q z;P&lu7REIAgR}h-J_}~y6;cz_bbfoL7+bvF0-2zFnqTiSgoQlYGbLQBHo+8|Ms`2j zf~bZ;JR5)KH*#5a>nR91fY>Ki9BLguB=O?j?GOGV=R_tg`=Lq$2E4K@7@EmUx z+@nHdf@Q+Q1Gm@gD^W3vW<_72Tsmj@dMCFVEZ5$=rKzpa?Z`)O!#`Wu-Xd>9KU}t@ zNOR6kcNu*6WnP0o-kp?%E>(Klv*w}oEJTJu+*-d1s8|cZ)+kV7zn)lQsc^pXN*+BA z#twUZV1^V*4oYemtiZP?Cntf&gNqeY*U9R3zwPSY($^7HG8WM|ILYAZC{j2}kwOVp zH>MxBv%#@^HRu@8yW1O}o}WX(%;WgHY7agKH~cpeJRlS^>7I2iR!M!AV4c$wh~9jp z@KL*R<((?DtkZ>hd;*u=6l=EF3t0W=gu->o%3}HY-y<>qF#1=BUDqPZvGJpVuLZMP~p#TXKrnYHy&ho}JU z3m(MIk6XQOhGEbMgKMLf==Z)5>?6M-agMoz_O(c#{JKJuTpO?@*hvnJ42BH5e<+8N zk_QhSuyFw>%;LbO{pRg{;p!Q9HxXBuC`DV9M2WX|+pJQ*a=L5Ib+T0Y?_wRlv1IaOHX3-OlJTRg#(ubp9jYwlGGv?rf zO{S6PLl%~GPE8>Cj3$Ni9k{LKbXUtVVRFwYF74AltgsfurdY>|A7oS8J+qJSin=1; zevhBoUv{sgtsVV-3U(xPimeihQh=4yewk3WQ9GQCF)SD{*ki{`5BuqSVoRbsx0Q`p zVPOG@w&TcSPqYzc7rX(v7UiS0RSA8$#_`e?1c24VFmNPzdvIbP-ZIlUn#Tm#F{()f zuN_VP@FSBgU>BiWYn%joMuZM|XSQTW+toUxZU}p<0fEjg4J*IoSA53g7uC8%kIm&`Y=(+1T9B zr{AzwF&n5BCB-G4Ui-_=5uEJC2a^MVO#kE`eDRD6ANACT;~usN^yD9N7L>oM;A{;( zTcY32KYV)c8cW5co94mPfK;pOXMm{Mr}=s%B#JII6wz>*f-c;w{UTVq?egRfRvB(d zo<#~rwVob-a@t~`ELJ=nJ^HLbN`)Rkd{QLzaz zk?v#4y+>HsF25G)9}s$#Gy4bo+uALt^dSTu<%@}r)XTG0qZ*VF%F6 zy~RLU)t!QUgaomHn7ZTiO}^cJ*d$_wG2kbiUe)x+|@ymR}MM|6kq1a z^B&C!>U9*?1vi0;z){DZneTX&(JOy7k+^H-(b@`-$?Hc$#g!3~e zOaUNNTV^J#!hrhy0^7|^Fs?VC6Yf=%q`E;`H)Vc7jMSdQJk!vleq&=@)RyMUX7T?bIxOimaHs$`ohLVwpQOJm0c?-6t2$RCcQrgmnZngrcaJaP^ zb~z5*SqH4NPw`=k8q9@~-u%r@I`fb|rbB=1J zGOTz5^=WE$KY@}smTFkWPu-F*{YB@~p<8~3)Vn{kfm`;KtT2n>2YSprme?i~VIo;I;cfCJH3HCFG?yD1FTx{?#4B@sfP=FxTA#uTz z7uC?<(0BcvvyUD>lHQ{TPCK(G8^}NcXvOG(Ri@Jm=mj%rOT-V!mX(+OosNdS_vPCc zhiE#$%B2#0KYRA}&Y`cz&L*|RlEO#WQWjanPj*R_>tb?#eLtKAKJ6M9>yMdrpWKH!w4V4<ZFu>Eflr2c%~FzJN0eJ1vlrlZj7= z;}GzR6kj2TWJ~vuCpRI5!wYypkK8)D?-Ff7o_-a*VlWtc_U@5`|265CSFBWNZvLF- zf=^-!CTG;vJ!-`d$nc+|V7>8UAg=95*;fID4Js!$M_O8X(IS~XdH25EpY)jdNr*Tv zu4f`Ywc n3E%{90yqJj08RiWfD^z8-~@02I02jhP5>u>6Tk_469oPPQigPg literal 0 HcmV?d00001 diff --git a/alien_invasion/images/ship.png b/alien_invasion/images/ship.png new file mode 100644 index 0000000000000000000000000000000000000000..c265acb1f2439bf8fa7a16733538195f4648181c GIT binary patch literal 6252 zcmb7pRZ|=c(=6_;3oP!i!GgO4f?Eg@0=sN*w_w3tg1bY2;O_43gvBAadlt9zyg%Sv zd>1`kU0pNP*F6!M>K}2jD6tR_5O9?gKWP8QrvC#5(tq>K9|`$CLUhsoD2q@v1w8ss zpjgPL$si!q#$rF4p#G;Z9Tg2+5D@VC{|Cfjhm!x+0fyh)3y$bj1 zvtOhQ9kVV{;efJ#l0Ie}5htQHlv!H20!1+*8G*f)=>KBAMsJ*dV2E$4x8Ulei4y70 zTZ}@N;z%Xt3{HzBa3@o;|F{IH|UFsm13{vdWIY-Qz0}ZG%00lmTBQ zrk{sln)hZTzQiFH(j)A;?ge_a4B@Z(plkJk&yjnkb4zP24%3oe8H^nzmBSWo{W~|l zoi8@EU?L~_+cbUCX@)9wkb41ntw-?py!dUz-?I1kwK!7XJ5RcCwZEpZKb`OHCz|R- z;1;>QV^>*A0wRuzJ90;|A`>TsIjl+Tf1>m^t7t^OdDoXZ#&Vu4uPg({NU0J+r!Q7p zJQ-a+u_AS&a5X%ke}vmL{ecNY<3>X-c6%7ENe_O)Dwok^QB}%9!$c~VW}=M;>aM6+ zPXiVW9rQINoPEOZxP+I1;*K*Ww(+;a4on9YTMr}&vdke$l^=S6&Q4zfa=4rvmfPeH zv&5~b;eCun+-_>%)fm`=9n?<9i|_=)=hx6y@@R=-u*_(z3_;9d#S_R;Wt9o~DltEo zy6b01|F+3{&5Wo^%i{) zT5WNEw0OTV8(*KJNvOT0&2L7+S`o}F8{uZ!)uQII1MPnXIeWqjKlv245+~V+T}=r; z$xO}tF12=v&8|8#L-Gk(Up~SQ-dxxM3ftMbA7IwzQ;|pQ$!~bY2K76(217hue|I|F z&dL8vU4Por%XJkN8&vlhOU>-QRJG1hTg#Wu&=dyZph?iUr;b~>FRh;0<&j5>wB8#9 z)V?#kwIvybQ$x^KZ!f$r-8H6-9{*7P1%_r|jMD?lkFBxf_+}HM66c5y2X;PlHs{!; zO9)%|d`~Q6j_WGNO^Pw*mq{TZTj#Yq52jKmK8ki^i+P}NZEf4{5(=R{^UC>g5Z#z- zZ$2-RjCzcTQ;b1$kQNv-hR&kK&B^8++L|g=vf8jqRiw@Sv(uigMs{1*=N6vf(6!R! z5H@}hQXTXNNvSidFjG)kh#yi1GTu&lab=E>gkr!6qCP&eH0+Jq*{H8{zDG9@%CVdh zonf#3_aSKBQ#ePDQ)f@!%!Or5*zM9WaVi{~-~tx2>3Z2+jDJcQ$=T?Xtm)+s7%p z4#U*sDEsL92l0G74aj;HST!|x#W*HF!Q1w{)(HT$E&-8;dHiO& z%dIc!gmT*VQr#us+tp3pchTINnuck%UxRt14K`7EUlhn+s!l=(fK(~^M*IC?>SwJn>fYpJ#LcPY(9m-Keeg1U+b`mwl3SqTwC^}bY@EJrP?aM<2>YLt91rDnf^1?&|~EbA91AV)K)H2%}Mw6G#%w$x#xm&VRc4SJ4%u!>TZXg!sydtk%VXM8-goPXK#&adjX?=9~gE4exCPv ziUGQMeO+Q!mWd<~9H(ZSq?U`O$7QC!^fjMc@;&Os_))lwNUew|B~d=VbT$O9so-wK zb;w=2s@|FXO0g3^MwW+lBVKIn^B@wHt5T{u&i5MZg|sjD&+UK@r)T7`g?yzXb7L{9f&Bi z-RTlOTO9Kv$f}?Ar){UF^~0ZlcD>XyHdu1RWKD9^%;)0R%8kc|bH*nlV|*qXKrE`W zPUW|WvL@-rDYq-EZ+xEE^G1Vh;XnQ5kotQ_9@F{%!Wx^sf^ddakO*;xttdC4)k(OzR*L6|YTR%dhe~D9$wdXqC3ns&JIlr(VLA zq@J*S04wf@IP7%IrAe-SabG!hh!?L;g@`sSA1rA#CUI=|l;3xVnq3@bhFKFX5ffAG zbn1P#IorhL2Os}dg^$HFX;riv_X`I}Za5Pt=n#kO9z$OwQCNAmG8T=}Z{Y{?i2oFY zoS#>b=dqv0-p>*Fx6<>)cR4YxdQnh;HgvbpaF0)9q)@kfCp~HL z-kW<*eLjT7S{Ys?9JnRT$acu)Y;N$H&~ZdOs+C#=Hy$8zq`xCGUo{-QJuS7v#Wvz8 zbPVlHeZbY$Pir;*o^R}P|Mg=cD*%5#gC*Bf10CLhWZh`KU-zptKtyx`;XyR5QhUI%yTU&rme+mnK*d7xiUh_xgw7v8 z>if6wuYeAgSi&v?RLB-%0wp;B3AZjU1(vb!j2>pVe&~8Uy#cQz#Ieo50uv_s^_2%X znNS3imTe^SMZNtZNlFtkhcl^$U0)&gK~AEw==p);XAhGkT9ot(p~Po*OTp`rK6&FZ z7hzt!1uYxHOxaR|MKm=Md88Jv05t32AvoVRyOygXdZ9bQ0DIkdrOv(k^+DHy4?2uN#Yqt(ruC*Llt;?;8GRmS74ZHBo@m=s<>p^b8o|24b%V%Gy7l8ct+3k!jcK=-MySY*<2VDvtMKcaFpmm<2-EWyxZ2Z z3qHjhTSV|=aTA2<2$!U`Vb9ZZGJWqDnD$Q%8TZ><5HsaaLaXb;TcGaGN>Lc%`d zi(}j3m36|DVsFAP6vTJW@4`Z)SXf{7uA0}Yjq--8UXhNDp@=99&O9doIVCqiY+i{9FgZ$tm5FAnNz<9*a^OLl!nE%S{lf3NpgA!%3!3;#8}$3g zh6KAJufCqR@0WJIKhUUB^90t`UEJsiveqSv3Ka)Kv^6-UwjqY@ZG*Zem*ZOv`ik6p zqu5bgSfRM1{1Q^PzlYyp|KZu$6Q3`Fleu!^uLVTxrU{MtUY!;?#X%w(c|CBpO-V** zJjk-09tDARH6q@mMGJ(jEQi)~rMcv)QTP3Md>)*K>>j^@{c9ny5OA+%O)wDpS)re; zr5KuM-dlsz_;bav5V6Uo1~+D-831B~oi!zh``yJQXbegE#+p|F`}7&UmYWR*Jmtw} z%trS1Kc*kQRK7EQlP3&JCaU-u_k+>eaO9v^qs4~^n5mWF>2M3@OFFyp$Wmt=uY-VO z)g8}Lm_58^RPr_bmCANG>VH-wx~}uHv3{t})DU!E_Ks}I3pTeBQ7UI%7l;hZw{5%@ z+Od$#ba4>1Z*>cbOsvsIfAEDEW7=mao)jTLXcj9hgB|L( zXN0j${QRCB#%bbkMC1q-13=0QA4;vXB>^@bMJT&AIZe-rP?o)|;}d(vxcGL0CnFZC zT8Mr(ues|1J*Kz4$*fp`pKrZ60}8ZOP=?4blsrDjta{|fX3&v)^cbIUOEe(CJ#=cA zipjnA%T6vwTgcTPo->b7PihBRX}Wy6pQvy0VTX0n#=%kh{@Np_(8|jqJ`I#XXrQBI zf>yO!+FkDqE1H)4qKT$cSE@b&=t*R(w0!u*`f4U1$&o@FI_ zbgXvfJz164=+frp22-sEdZ=kPf5uCvAF$O6;P_NH; zl?3{|D3tlc;Xwn`IeeTClZ+ClTS#O-03wO|at}&ng`5y2bwb*(arc%b#8oIn!y(5B z%11T&$bci6H6f#)y^m;&_eK}lb`t$1ZVJ%5|Y*9P=Y!3>SgVG1gI^$IQ&ryxvsaEvfo&MJa3v>1@kF>kb;q6N;zAa zDY&ty5pQxD$Fekcr^3x?(LG{vk{&=#dMKlr}3LG z$Pm3QAbjy`D49!@QARm2SarLPicwZ+lP`~wG&+RI83i1Q4)C;o#S^nqY}{}=g-&OZ zPF)>+Y{!zciW5)(%S@(;zdW7~Br8SgQ|!YLU(lryiRkX8T=rw9$%0Mlqj`Z(rZDvE z1Oh;+Dp$}8kE$`i`CVM?JN~pn-2#bmSKFIh!ede{ubvgMmnt_w615hH)tl+LcYdkE zeBN^?n>T(WhxrCR*)>4W9=f`#m>5B6CvY~9_YDfk)0XIaN(iKR<-{e1sbil=+- zjV0gQ+(6Iv0#33-?N-t#h>iWuVyWD1No^2u~unA<_?&&K#&J8 z_|fuD#yub7n(A8jnuy=l`&bFw*QXSbX7A3kKCpfN%>Xxh27A_>q-HC0Fw$&11-1a= z^0>4Y1xc=$;}Gfl%Pwc6TrEd&Mz5H@02vL&H8-0^g?d4Q$Y~vyb;wPOAuqID2Z%D^ zt}0$mLO7w=0U%CJm5ONkU9%VLC#jZ8ntZt=dv4d^zdU1kvk~Y@bgfWa4$zcRb0oSr zH%Lw&r11hRyW5S#4556A zRr;H04m46m`ntmJrmVMvBY7DWu+7rm!U-9-Pw)>QlNI-qk1r25}U(R5D? z=GfJDJIxaXJPz_PrC-xDvtRKFrY>XOok-(}4+NT-6ulw$F zjPC6O|6z&P{X!O(X-}O7MmZ9o*{8dda{Ak^AlKZzx-(sx9UJ4Y8pViIh#2|v@$b~} z-O4xx_d3kM-lR>F;>^=S>JDZ-U>k!QwQ@>~FAf#V*qi`F(HXS=*hk7|_hjOvZ1c%6 ztCr%Mg+;9qBu^Y>Q=sPn_cu3Y&%RVD{bdClafoGT>3y? z&T@~zZsFZikLjcL&wW{Na-0@7Vh~2Y^CY>=+ey)Z0jW%x*$!H44{w&qGV?#OSavEd z*F(buGXt*F6WhIrHaVCD9`H^`)YSxQd;SwX_gOwkkB^L)PFik!w)=#2AWl02T*Pc< z(wu9Vw1d{T3{g()CFkne<86v+kJ0sDA%>bGRr_e&YE7Ax*`WQz^|~bzMH8@WZ?m6 za8ZaZ+WIbp9pU>I_F4Aq-P}tUhvyUEVnikd{!P^OxfXg%O;{_0Q|c3Kbi+EwTpy_{ zdItM`k7$=o%%hQA!g2{w>HfjRaNf`69VaFd^Czr9y$UxZ{At-j_JPeK222SgK7QB>NVT zmdcQvZre%8=n2&qOV5qD_oF{Gk!(m5vEBcYoE91X(`JC=J;5u*ZrSz>Ee*lRFiYRR z>ML)WX&aA?o`3b8U0k{sJFR=-x&8mVax@Meiaj<+%im`2XWwz+1&g9@?_s>Z37_qt zHK7TngB@R~B-4iY(bm4=$H8%4--!Q@?fCz%S6{@DeZwx^t8`i0#Z~|BLx7+pul}J* I783aX09v&nrvLx| literal 0 HcmV?d00001 diff --git a/alien_invasion/settings.py b/alien_invasion/settings.py new file mode 100644 index 0000000..65c3f02 --- /dev/null +++ b/alien_invasion/settings.py @@ -0,0 +1,9 @@ +class Settings(): + """ A class to store all settings for alien invasion game""" + + def __init__(self): + """ Initialize the game's settings""" + # Screen settings + self.screen_width = 800 + self.screen_height = 600 + self.bg_color = (230, 230, 230) \ No newline at end of file diff --git a/alien_invasion/ship.py b/alien_invasion/ship.py new file mode 100644 index 0000000..aab9a9f --- /dev/null +++ b/alien_invasion/ship.py @@ -0,0 +1,21 @@ +import pygame + +class Ship(): + """ A class to make space ship object. """ + + def __init__(self, screen): + """ Initialize the ship and start its starting position. """ + self.screen = screen + + # Load space ship image + self.image = pygame.image.load("D:\\Workspace\\Python\\alien_invasion\\images\\ship.bmp") + self.rect = self.image.get_rect() + self.screen_rect = self.screen.get_rect() + + # Start a new ship at the bottom center of the screen + self.rect.centerx = self.screen_rect.centerx + self.rect.bottom = self.screen_rect.bottom + + def blitme(self): + """ Draw the sapce ship at its current postion. """ + self.screen.blit(self.image, self.rect) \ No newline at end of file From 4e7602a43fc055c0c865315b10fbdf82973fc61d Mon Sep 17 00:00:00 2001 From: sys Date: Mon, 20 Jan 2020 14:39:07 -0500 Subject: [PATCH 09/20] create alien invasion class --- alien_invasion/alien_invasion.py | 55 +++++++++++++++++++------------ alien_invasion/images/ship.bmp | Bin 30054 -> 40150 bytes alien_invasion/images/ship.png | Bin 6252 -> 0 bytes alien_invasion/ship.py | 15 +++++---- 4 files changed, 42 insertions(+), 28 deletions(-) delete mode 100644 alien_invasion/images/ship.png diff --git a/alien_invasion/alien_invasion.py b/alien_invasion/alien_invasion.py index 8281a75..4359971 100644 --- a/alien_invasion/alien_invasion.py +++ b/alien_invasion/alien_invasion.py @@ -5,30 +5,43 @@ from settings import Settings from ship import Ship -def run_game(): - # Initialize game and create a screen object. - pygame.init() - ai_settings = Settings() - screen = pygame.display.set_mode((ai_settings.screen_width, ai_settings.screen_height)) - pygame.display.set_caption("Alien Invasion") +class AlienInvasion: + """ Overall class to manage game assets and behavior. """ + + def __init__(self): + """ Initialize game and create game resources. """ + pygame.init() + + self.settings = Settings() + self.screen = pygame.display.set_mode((self.settings.screen_width, self.settings.screen_height)) + pygame.display.set_caption("Alien Invasion") + + # Make a ship + self.ship = Ship(self) - # Make a ship - ship = Ship(screen) + def run_game(self): + """ Start the main loop for the game. """ + while True: + """ Start the main loop for the game. """ + self._check_events() + self._update_screen() - # Start a main loop for the game - while True: + # Make the most recently draw screen visible + pygame.display.flip() - # Watch for keyboard and mouse events + def _check_events(self): + """ Response to keypresses and mouse events. """ for event in pygame.event.get(): - if event.type == pygame.QUIT: - sys.exit() - - # Redraw the screen with the same bg color - screen.fill(ai_settings.bg_color) + if event.type == pygame.QUIT: + sys.exit() + + def _update_screen(self): + """ Update images on the screen, and flip to the new screen. """ + self.screen.fill(self.settings.bg_color) # Draw the space ship - ship.blitme() + self.ship.blitme() - # Make the most recently draw screen visible - pygame.display.flip() - -run_game() +if __name__ == '__main__': + # Make a game instance, and run the game. + ai = AlienInvasion() + ai.run_game() diff --git a/alien_invasion/images/ship.bmp b/alien_invasion/images/ship.bmp index 47b7a5fa57403f7b77cc974042c6eafd0f5e5f72..d68179bfd2903870acdfebff917c7b0ae30dbfc4 100644 GIT binary patch literal 40150 zcmeHP30zgx_68g<6*Dxa9B>8<2PPFIL*NHQ(99814 zK>E9p+Jc&!asHj8Y>n%)Lv`a5%tLXWPbpuNji`?AaOwA zfW!fb0}=-$4oDo3I3RIA;(){fi31V`Bo0U%kT@W5K;nSJ0f_?=2P6(i9FRC5aX{jL z!~ux|5(gv>NF0zjAaUT?a9}SfR)bn6YU^9P`L@)sCxz72h^AE3YfXBhhbg6`$NbDL=QE1(-tbKUPJ7;L%?y`6W^ z;rl-k${}e!SzdHp-AMs`OYcK>#rMz{o`*ht)6u8jS!h~RLGRr=Q2X&uXh!@B-KF0` zL;E9sz3-5780PdDbb{`}i0tY`*I{$ce=zA&C-^S<>lLDB&lBk0{UC3z^^V2}m(S3P zY{YQu9WV@f^fEezQ8E* zS&Hyj?6p7~pUJ^wGPf~BY+|g!`xW)k63%(Qy%1jhp41k?dZ7sntp{P$8(LVhdZ9u+ zY$bJShuuS;;ip7hGfY~w*2b{eSJC6+2hiXAGt|3y%U$o%)g7ajeT_-~sgFloQVd2J zYeC;)2*%IW#_Am&T&7jq=A*2-NTD1pLHCcF!@RY&7;Q^tNp9}kL83q{nVR-00q$-FXW;Q0A1BO7^je*OB%`KKX6hKSeLefrdLvd_u&m6M+dJriv{maeHL zADi*P%uP@3zDLR3Qm@%9HWl^3c*^`a_vsT}M^R~^oPHKATqvh&rtj|EyUXD*aNt0> zdl-I!fq`=Un9n3XC5$sgW}6HT1Ka*6y(m9sOVzugd0oC9tEiLTZw@>Wn(9s~Ve>RSRJb_POpo?DNi@JHvWux1L3l~sQQiAgGa-7aQ4%5XN&@~<=j|*YKayupq%PqF-UHih} zv3c(r7}`*dYbNiX7#6w{G-2s87*3IDDEl%MRn=8UO-(^rc^TI$(`{o~N=gc0Qj7}~ zmGDiPjA@&@!eEjtzY^?F7?;%|7VcwSI6Njej8y2KjGczUKDZqmqgo-ldOQC0#Z6>q zXXDhVQ#gPAe4}s>FpGqNd+h26xAN~N7`Zh+tIfl66Tyzf={|3{_pmW90SJh6DLl{VR8BLW!$`Zv%z-p;zfQx z^Kr4Uu{eGDG|rtn$Iq=y(1Rn5;Y4FukgYtNLoi#JyL9#ogNKucT^(L(!`N;FoWllk z{V*)%#l4D8Z(YQtOP7$Dm5KQHc!Y$6$l>wHC!gS(Z@y`;RaI4qc*MlSAT%@-GQU-V zw32ATy&cD$jW_d9dl=86_(irM_%D5`f9TcVdT2|!#^%cBZ8{9L8^*#drYGq~nd`^p zbZg{%{vp2l`YYrYJ|OR(8y2m_OmsQS3NMPsr!)(UR%uhiE=R2vk05rbQ|ZlS2CNVJXU=xEMu z=5JUHBIHbsi64S}FdJd`GEB0vvXE1FhHRuweOb88w1sQ9CJvphU2AD+wz93#9!{rK zWjRz$9>w_RKrOs_D}KBGE3fy`)6a07F}+1ZM2L6@bsfXxN%3HQPw1nr&q_&2MsZ;= z-c6swbFI4eAs&;AE6?hn@@{U6vXQ8755V&b`6rHnGOTu~Q|x>VmOHw^F|rlbXN<+Y z-*4l_jq6~(o#7xf=BJn*nSB%&7dP5I7#`u_;k*yl4~s=Y-)U*7$SzKS>uEKajgWk{ z`#Zs6V=qkKPO?R`=I7_dcgB%xYgz;*JFYqt4sAuBV0W++%vSb?*(zDH^zVX2N&Rr= z_n$cDvuompptEO*2dnu%DkYzFx;>X~)-hE%*`}`VE#~0NW|n2^pyFQs|0FJ%za(H; z{%FjJtj%ATeOSJuE@HtjVRpi5v!p8raQpUczShL_B;XMi7S^ox!E#@r?}CB?1Z1wj z>>3&E0@UPWGxzQXhX{H3=O%PT^mhmUr!d)ja|OlhmqnWp{W0m?{>V!-XARlB$xfK> zV%I(5`{B1g?xDK6ntWESs54eqKdrwydGe&_uM!dxc;9Ewp2hj{^H^JGN;V*i>9a%I z%E>l;TX%(XaE@+`trhamW(c6?u6E3RkdDxMv3gG(b^)EpM=N7~ zx(0l&J0js5b|fBKBqf-JXX>l@6sFg-R09zs3H{8VvyF&q*H%48v* zdM-jx~8m9lu5L3-~xjw#N3WZqJSXDtwTG_0?812l-mJ zR$f-~$?CpY$6Lcbq#ZoY4ua3+=~#JwESzIHh;w7#2`%@*$5*SljR?6G%a5KG5B7a# zYv~#3s3@<%p^^~TM98>ND=YcU%mIXp9aa<@5)SQQ8$j6bypT9_lIB=*EPRK(v$}qH z-U!6s4*5rMIeGUW7G-P7>9ek!Om^!%YOp`b{Bvu%SDWTKlXK7|rglA#-RE$!HLTuO zgQMR#T=;i6_wB6CV1Ayhm$MqZDfuqzBQz|O+ZeAoC}%D$FTtc}D;PNqz|>8zV%G7R zny7~NPEjiG$mqvqT~#(3E-@q*#r$b+vHZN&Hst0?-*u)r?YX)7Z^xwY&s=P|F&8ee zb#z)Y7p7ag!|gCTR2CzhXpLxDfiC>6*}(H0`3IpMru*2vY;AS2cXy0+93VcQ3yL~` z;0oFLdU0_P_gO6OEi5c-bp0XV!SaIK++1!Ofu+YVcrvwO@OnHE zc|&usKdOq^VX9a{zS!@&Jr?B*k=v(QK!Ub=n?0m(dY0m84qZzy5ow+#E&udgD_!9 zFWBs5c^2i1j7ww(a}!^N*M*538`n5yPb!$Um2^Tj^DrhZF{<#XvOxYH+0BYe?1R(r zsx&2;>cl^i&n~Dv>;h#xaf|PSrG+~1y<$U{5e}#1b6(~P9)*FZiy9r7%^ihhm;G?I zEQ{Mjettgrs{+wJ*gD8(pM9nflWW(miT5!~vU9TeXNK+cJZESvknLS~cua+#37d(_ zdx>}mI(LnGg>W&4_rqCSLQx|$1PV?l&`+wYo1?ePD4gM@g z7mgjmTGRSy7m{frysOMeuAU@Q4Gx5t?ZFP1yrvh$>Qx4j7yM;+SZLUF4hJ7MPukLmAFZAEXOHA_F%8Oh>brQ% zD4dJRic0LFeNj~hXs^TaP6(&xjDqeJy@!M!!al!_DBRr&TX!x+a`_p&lGpGv@$yS0 z*tBOgtt8(-al?8~NBMctwXqHq`~AAfa!KMFyN~6Q%Zv1|;kpCW zyM2kbvNdA+kT%>$uzTES4eb3N*P#*>4bEG@DDBT=_Y3qeP5fqgpV!4n@TxM! z+$8dmWUH(WVt#1ac6H)Re|dT9_<*qv#4*Yv-;C}I3lBZG``9Bq@z`T!5oFRVoPbm3 zW08;?j~M@#P#w^U_J54WiO3LyMjo%%Lc&9^bouMJ7Nmr*w>l!8es^PEvnRidj46co@&e3fNmyyKVDe%l5fSI&L#MX}m zKjV?v2ibpRJ&_K!f8!y3&;3jf_JxW&tk<@!>xsbi9dR>Q z3EMa5BDpvfT`Bht{kma0e0a>dpL0Grh0(K!Z;J4!bB@Wl7hpgt8*%3RgJI14q_ula*PN-6!N?3o*j*ew9ia+nC+F~Nv@Z)4-aoN;qIJO=1 zM)g(snDD5v6ieF2?wwGmtrjP36(Lj2nukh-@$E{DE^pW~J4wdh@H2z;vp`8H*2 zdCv-y^p%HccXg~e9>&IgQ;J9)s`Lf4wkZi_yUVo}DSsqZ62NMoU@^qCvu9;KJj>u(*wKyMzS@A7fi;< zm}A)BrH+cDtx*)vt{xUY#400@a-hp$ZLw%^AB3fZqHlpA=9jN*HhDh2R)yV1cVPC? zDPa4rh2IlB%u!Zfj&s$3<<3rAhl_Fs)0)vBejNP$mM4}c181->i*TeEv6k{UW@BdF zuPKZV%nl|xkKp-ZT2A~EkHK`@m=={E12tMJ+g7v-z8h`GK2(vlzimA{zM{3KupJ!{ zv#Sl3`?TvO&=R1WJW!cc`CwcEornoY4;Nd%T|;RjHG(wRrqB*AHO|ax^fxRqqJzPYz<#)tfaM(?Rq)bn+qQ#c6=i`Qasp)oXF zMk4q~@IQ{n_KR%KlM+1xn#uPTH5Lcq{?*kpVQ@JBI{z-jqRLJG_`C$U%q`5(?btAm z0mGqQ%O8raAJXs2^`5-u68e4??>oQTf)Q6wL7&z~ooIczsbjd&-e&bX^#8C?>wA}V z^UwL-Cz35B-KiZxoV}6Q2uthuy2y>usce0gFLT z(a*EMWYy|b(9@;=H=}{}#srh+0t+^GM=}XPkA}o?cCM-I$OB;gf1j?8rjGrn@8!|6 z+u_59W8}zD3fqb`E11wto_BM9_ifVQ#^+Fv%{|Y{SFb=(YwmHR{+=IhOIS!)NF0zj zAaOwAfW!fb0}=-$4oDo3I3RIA;(){fi31V`Bo0U%kT@W5K;nSJ0f_?=2P6(i9FRC5 QaX{jL!~ux|FER)IA4~7IGynhq literal 30054 zcmeI330zItAHZLUEM-h~BSoP_(TYflBBEYeU#mz+LeXN6W~OO|EQumY+iPF6r>0)7 z*YZk5C}ONBM4OgZ@BV-H-FiK3|Cr&=fA0C5?&rL7?>*;tzUTM*o!>q8rnX_*egZ2g z!ch$Vws!w<5vH-~(F0{X_SaK^;0Y&y6Tk`J1aJa40h|C%04IPGzzN_4Z~{01oB&P$ zCx8>c3E%{90yqJj08RiWFgSrG1o;a=YMDsa$JaD7k(UV4@^R(A_7?*|ybwefLB=D9 z0D`PTkZKl-W&}CLL}nq#j|egiK^zg}{lAtGYv7#-;)EdF3}j|Ohj?hKSVY@|M+`9p zsbV7P2*TUS6wK=oi)<53X&=?Z)apXo{>8Xx2r{x05esToJklWV@LJyWouYg5RC))f z)94R~tT(IPrC#B1gPcd>xZ19Oe=#d71esOPCcC>!NZ@R=n zKFHeE2uu74^|R*Plq6M4`7|jp5KzVcv&3XF+uB;2o15$3zpZ;+`?BWc^XJd|k8v&o zk@9VtEk~U`{o2&2=OO^$dE4;_*g6G;Nw6R8E`bBRD%*ZqKXv^~}bPTWM%~ z2Q9yP_3HKO*Y6tYTUuHeo!|n$r}X66U+eVL*XpibqocNbtvqB^tz}gYtNM&Vo`EQy zem7l&%*8bt`@({kckw)pGLaiCGWIX0O!_iftSR1~#EWmbsq+`Fy4y`59~<6VeEV2hx1 zSkI>@gb_Rvk_Pvu-C@Wdc_%Q@kzGG=l9kM^7pvZPaoS*Xe58!BxV+}PYL%X}eEITaO3NVkRHy(eBU=~uH?3?` zU0q$S#|}V)Fa?T4QJ9NU{%-7Mzte(G@E?jq5n!dTejYkBW$}H7ZNblA!+|0D`T5Dp z%F6X5At52Q-OZafucum0UQRA6^ClZY7A0LyMFLurRTYEAA*-9qeRp1+Jsc6V*sQF7-|Gz7Vto6BhQ{|B zwl2pg!HC#Og$+|lb79$IT1`!jySw|AVI(UntB{c3XKxvOG$rz zc7FP|Po}?wxkXvvLtuphGm%y4wm#M{C6qRa+6K!%s<~fOR8%s&bnDiw{QP`6ogSWk zRdt83tg>V;u@&O5$U;Y8@5j9MgOltp%(q&=8{7B zi=HKxm6s(Z-YB9M0fFJ98#iv`=hJQ#mpI3-UUy`Y!YXtfWM^m@0xeCeCEuMH*3`XN zX}GA5-6@mi>-mm0B9DkDKk?U-$C;U#VPRo~g@wZb1=mDJM*~|Z#ODT)$Yb^VMlZJz zVzWXEE5v2jh^FSmf6H3bU$%(Y&_&9<8YQQ^K=+80F_~Z-MsP||eB1B_5P_atyLOEY zs-mLe@j$7xv=puZOO1+(3J(vzdGjXxw2zfD3L}un1kEFpIF}3{W?^fiHY&|_h+-ZckkZIfl^sn8OACyGBO|_ zfMtpKN%;}RH!L^j6Pr>~fRYFh_c3IvpJy1IqSIRYHVG+H9nARDEmG zY~wIgov>^fHT~U(S}?SmnKxmuadC0*B={MuzzpH`#Kc5cKTjmm1BXnv;nFWho4DWs*8c@jpd1V*URmHgLR-#7==S7!1mNSQe z7={so%a6CVeSozrB_$b#2`MBb1Y?Con1E|&R$#frYHE3gLko%a{p%mHXa* zOYaq#2=f{9uaoypjLD<0`PDr?Ufq7S`W`fExli04FVxsk4{DRi@>JL`{}EOYn*Ldk zY!W^e`qjU}%kFfo>r5;}f%;vUQpGJ45b}R+cdf{W^yb)Il*PuOJ%&IgX#FC9fr2Aw z7uZPr-E$2M4Pb6CI*e6dU?6A+_^Z#*D+nI2Msjm=z0-Fau)5au=4W@R;V5Jn(kqWe z?4*cS=NtRJ0{W`(o-&_!J>G2|^8=<%?4zFF81+5EsO0vu!5E?5I!36qv!%SeJSQg` z8zw~HpUNsICw6sEc;eM(riRIo60!FbrUGFxPEeuvLiQqY2OuXNI z`|B%M8`74^NZFgGL<;BbBNh4+4RywB{7pdDd%RHy*OnAv=PIMvzb@3&yad;jnwknD z#bSm}(yQy&uLCH|SwYNDSWtML`nz?y$f1X(yYrNcLb>$)d9^(Si09Bw*(*!0cx1xX zM8S}{Gc8~1TN2beAx|&7K5iB>u~!U^l}OKz7c!hO3gzCCJjdy-rX5YeIE=?4Qs6~> zHMnR964B?wddC zto+gn#y}WUMwV;&Mw5u%fEgnO(~3o&`d4}M{6|}-i8@uRw=Z035;+dL0FD84r#tt{ zLA9_25!SU&Wd+xRLZ+mq6w`|@=KJe}pp()g0Kqzaj%$_fZknPoc`VU;493bRXha`q z;P&lu7REIAgR}h-J_}~y6;cz_bbfoL7+bvF0-2zFnqTiSgoQlYGbLQBHo+8|Ms`2j zf~bZ;JR5)KH*#5a>nR91fY>Ki9BLguB=O?j?GOGV=R_tg`=Lq$2E4K@7@EmUx z+@nHdf@Q+Q1Gm@gD^W3vW<_72Tsmj@dMCFVEZ5$=rKzpa?Z`)O!#`Wu-Xd>9KU}t@ zNOR6kcNu*6WnP0o-kp?%E>(Klv*w}oEJTJu+*-d1s8|cZ)+kV7zn)lQsc^pXN*+BA z#twUZV1^V*4oYemtiZP?Cntf&gNqeY*U9R3zwPSY($^7HG8WM|ILYAZC{j2}kwOVp zH>MxBv%#@^HRu@8yW1O}o}WX(%;WgHY7agKH~cpeJRlS^>7I2iR!M!AV4c$wh~9jp z@KL*R<((?DtkZ>hd;*u=6l=EF3t0W=gu->o%3}HY-y<>qF#1=BUDqPZvGJpVuLZMP~p#TXKrnYHy&ho}JU z3m(MIk6XQOhGEbMgKMLf==Z)5>?6M-agMoz_O(c#{JKJuTpO?@*hvnJ42BH5e<+8N zk_QhSuyFw>%;LbO{pRg{;p!Q9HxXBuC`DV9M2WX|+pJQ*a=L5Ib+T0Y?_wRlv1IaOHX3-OlJTRg#(ubp9jYwlGGv?rf zO{S6PLl%~GPE8>Cj3$Ni9k{LKbXUtVVRFwYF74AltgsfurdY>|A7oS8J+qJSin=1; zevhBoUv{sgtsVV-3U(xPimeihQh=4yewk3WQ9GQCF)SD{*ki{`5BuqSVoRbsx0Q`p zVPOG@w&TcSPqYzc7rX(v7UiS0RSA8$#_`e?1c24VFmNPzdvIbP-ZIlUn#Tm#F{()f zuN_VP@FSBgU>BiWYn%joMuZM|XSQTW+toUxZU}p<0fEjg4J*IoSA53g7uC8%kIm&`Y=(+1T9B zr{AzwF&n5BCB-G4Ui-_=5uEJC2a^MVO#kE`eDRD6ANACT;~usN^yD9N7L>oM;A{;( zTcY32KYV)c8cW5co94mPfK;pOXMm{Mr}=s%B#JII6wz>*f-c;w{UTVq?egRfRvB(d zo<#~rwVob-a@t~`ELJ=nJ^HLbN`)Rkd{QLzaz zk?v#4y+>HsF25G)9}s$#Gy4bo+uALt^dSTu<%@}r)XTG0qZ*VF%F6 zy~RLU)t!QUgaomHn7ZTiO}^cJ*d$_wG2kbiUe)x+|@ymR}MM|6kq1a z^B&C!>U9*?1vi0;z){DZneTX&(JOy7k+^H-(b@`-$?Hc$#g!3~e zOaUNNTV^J#!hrhy0^7|^Fs?VC6Yf=%q`E;`H)Vc7jMSdQJk!vleq&=@)RyMUX7T?bIxOimaHs$`ohLVwpQOJm0c?-6t2$RCcQrgmnZngrcaJaP^ zb~z5*SqH4NPw`=k8q9@~-u%r@I`fb|rbB=1J zGOTz5^=WE$KY@}smTFkWPu-F*{YB@~p<8~3)Vn{kfm`;KtT2n>2YSprme?i~VIo;I;cfCJH3HCFG?yD1FTx{?#4B@sfP=FxTA#uTz z7uC?<(0BcvvyUD>lHQ{TPCK(G8^}NcXvOG(Ri@Jm=mj%rOT-V!mX(+OosNdS_vPCc zhiE#$%B2#0KYRA}&Y`cz&L*|RlEO#WQWjanPj*R_>tb?#eLtKAKJ6M9>yMdrpWKH!w4V4<ZFu>Eflr2c%~FzJN0eJ1vlrlZj7= z;}GzR6kj2TWJ~vuCpRI5!wYypkK8)D?-Ff7o_-a*VlWtc_U@5`|265CSFBWNZvLF- zf=^-!CTG;vJ!-`d$nc+|V7>8UAg=95*;fID4Js!$M_O8X(IS~XdH25EpY)jdNr*Tv zu4f`Ywc n3E%{90yqJj08RiWfD^z8-~@02I02jhP5>u>6Tk_469oPPQigPg diff --git a/alien_invasion/images/ship.png b/alien_invasion/images/ship.png deleted file mode 100644 index c265acb1f2439bf8fa7a16733538195f4648181c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 6252 zcmb7pRZ|=c(=6_;3oP!i!GgO4f?Eg@0=sN*w_w3tg1bY2;O_43gvBAadlt9zyg%Sv zd>1`kU0pNP*F6!M>K}2jD6tR_5O9?gKWP8QrvC#5(tq>K9|`$CLUhsoD2q@v1w8ss zpjgPL$si!q#$rF4p#G;Z9Tg2+5D@VC{|Cfjhm!x+0fyh)3y$bj1 zvtOhQ9kVV{;efJ#l0Ie}5htQHlv!H20!1+*8G*f)=>KBAMsJ*dV2E$4x8Ulei4y70 zTZ}@N;z%Xt3{HzBa3@o;|F{IH|UFsm13{vdWIY-Qz0}ZG%00lmTBQ zrk{sln)hZTzQiFH(j)A;?ge_a4B@Z(plkJk&yjnkb4zP24%3oe8H^nzmBSWo{W~|l zoi8@EU?L~_+cbUCX@)9wkb41ntw-?py!dUz-?I1kwK!7XJ5RcCwZEpZKb`OHCz|R- z;1;>QV^>*A0wRuzJ90;|A`>TsIjl+Tf1>m^t7t^OdDoXZ#&Vu4uPg({NU0J+r!Q7p zJQ-a+u_AS&a5X%ke}vmL{ecNY<3>X-c6%7ENe_O)Dwok^QB}%9!$c~VW}=M;>aM6+ zPXiVW9rQINoPEOZxP+I1;*K*Ww(+;a4on9YTMr}&vdke$l^=S6&Q4zfa=4rvmfPeH zv&5~b;eCun+-_>%)fm`=9n?<9i|_=)=hx6y@@R=-u*_(z3_;9d#S_R;Wt9o~DltEo zy6b01|F+3{&5Wo^%i{) zT5WNEw0OTV8(*KJNvOT0&2L7+S`o}F8{uZ!)uQII1MPnXIeWqjKlv245+~V+T}=r; z$xO}tF12=v&8|8#L-Gk(Up~SQ-dxxM3ftMbA7IwzQ;|pQ$!~bY2K76(217hue|I|F z&dL8vU4Por%XJkN8&vlhOU>-QRJG1hTg#Wu&=dyZph?iUr;b~>FRh;0<&j5>wB8#9 z)V?#kwIvybQ$x^KZ!f$r-8H6-9{*7P1%_r|jMD?lkFBxf_+}HM66c5y2X;PlHs{!; zO9)%|d`~Q6j_WGNO^Pw*mq{TZTj#Yq52jKmK8ki^i+P}NZEf4{5(=R{^UC>g5Z#z- zZ$2-RjCzcTQ;b1$kQNv-hR&kK&B^8++L|g=vf8jqRiw@Sv(uigMs{1*=N6vf(6!R! z5H@}hQXTXNNvSidFjG)kh#yi1GTu&lab=E>gkr!6qCP&eH0+Jq*{H8{zDG9@%CVdh zonf#3_aSKBQ#ePDQ)f@!%!Or5*zM9WaVi{~-~tx2>3Z2+jDJcQ$=T?Xtm)+s7%p z4#U*sDEsL92l0G74aj;HST!|x#W*HF!Q1w{)(HT$E&-8;dHiO& z%dIc!gmT*VQr#us+tp3pchTINnuck%UxRt14K`7EUlhn+s!l=(fK(~^M*IC?>SwJn>fYpJ#LcPY(9m-Keeg1U+b`mwl3SqTwC^}bY@EJrP?aM<2>YLt91rDnf^1?&|~EbA91AV)K)H2%}Mw6G#%w$x#xm&VRc4SJ4%u!>TZXg!sydtk%VXM8-goPXK#&adjX?=9~gE4exCPv ziUGQMeO+Q!mWd<~9H(ZSq?U`O$7QC!^fjMc@;&Os_))lwNUew|B~d=VbT$O9so-wK zb;w=2s@|FXO0g3^MwW+lBVKIn^B@wHt5T{u&i5MZg|sjD&+UK@r)T7`g?yzXb7L{9f&Bi z-RTlOTO9Kv$f}?Ar){UF^~0ZlcD>XyHdu1RWKD9^%;)0R%8kc|bH*nlV|*qXKrE`W zPUW|WvL@-rDYq-EZ+xEE^G1Vh;XnQ5kotQ_9@F{%!Wx^sf^ddakO*;xttdC4)k(OzR*L6|YTR%dhe~D9$wdXqC3ns&JIlr(VLA zq@J*S04wf@IP7%IrAe-SabG!hh!?L;g@`sSA1rA#CUI=|l;3xVnq3@bhFKFX5ffAG zbn1P#IorhL2Os}dg^$HFX;riv_X`I}Za5Pt=n#kO9z$OwQCNAmG8T=}Z{Y{?i2oFY zoS#>b=dqv0-p>*Fx6<>)cR4YxdQnh;HgvbpaF0)9q)@kfCp~HL z-kW<*eLjT7S{Ys?9JnRT$acu)Y;N$H&~ZdOs+C#=Hy$8zq`xCGUo{-QJuS7v#Wvz8 zbPVlHeZbY$Pir;*o^R}P|Mg=cD*%5#gC*Bf10CLhWZh`KU-zptKtyx`;XyR5QhUI%yTU&rme+mnK*d7xiUh_xgw7v8 z>if6wuYeAgSi&v?RLB-%0wp;B3AZjU1(vb!j2>pVe&~8Uy#cQz#Ieo50uv_s^_2%X znNS3imTe^SMZNtZNlFtkhcl^$U0)&gK~AEw==p);XAhGkT9ot(p~Po*OTp`rK6&FZ z7hzt!1uYxHOxaR|MKm=Md88Jv05t32AvoVRyOygXdZ9bQ0DIkdrOv(k^+DHy4?2uN#Yqt(ruC*Llt;?;8GRmS74ZHBo@m=s<>p^b8o|24b%V%Gy7l8ct+3k!jcK=-MySY*<2VDvtMKcaFpmm<2-EWyxZ2Z z3qHjhTSV|=aTA2<2$!U`Vb9ZZGJWqDnD$Q%8TZ><5HsaaLaXb;TcGaGN>Lc%`d zi(}j3m36|DVsFAP6vTJW@4`Z)SXf{7uA0}Yjq--8UXhNDp@=99&O9doIVCqiY+i{9FgZ$tm5FAnNz<9*a^OLl!nE%S{lf3NpgA!%3!3;#8}$3g zh6KAJufCqR@0WJIKhUUB^90t`UEJsiveqSv3Ka)Kv^6-UwjqY@ZG*Zem*ZOv`ik6p zqu5bgSfRM1{1Q^PzlYyp|KZu$6Q3`Fleu!^uLVTxrU{MtUY!;?#X%w(c|CBpO-V** zJjk-09tDARH6q@mMGJ(jEQi)~rMcv)QTP3Md>)*K>>j^@{c9ny5OA+%O)wDpS)re; zr5KuM-dlsz_;bav5V6Uo1~+D-831B~oi!zh``yJQXbegE#+p|F`}7&UmYWR*Jmtw} z%trS1Kc*kQRK7EQlP3&JCaU-u_k+>eaO9v^qs4~^n5mWF>2M3@OFFyp$Wmt=uY-VO z)g8}Lm_58^RPr_bmCANG>VH-wx~}uHv3{t})DU!E_Ks}I3pTeBQ7UI%7l;hZw{5%@ z+Od$#ba4>1Z*>cbOsvsIfAEDEW7=mao)jTLXcj9hgB|L( zXN0j${QRCB#%bbkMC1q-13=0QA4;vXB>^@bMJT&AIZe-rP?o)|;}d(vxcGL0CnFZC zT8Mr(ues|1J*Kz4$*fp`pKrZ60}8ZOP=?4blsrDjta{|fX3&v)^cbIUOEe(CJ#=cA zipjnA%T6vwTgcTPo->b7PihBRX}Wy6pQvy0VTX0n#=%kh{@Np_(8|jqJ`I#XXrQBI zf>yO!+FkDqE1H)4qKT$cSE@b&=t*R(w0!u*`f4U1$&o@FI_ zbgXvfJz164=+frp22-sEdZ=kPf5uCvAF$O6;P_NH; zl?3{|D3tlc;Xwn`IeeTClZ+ClTS#O-03wO|at}&ng`5y2bwb*(arc%b#8oIn!y(5B z%11T&$bci6H6f#)y^m;&_eK}lb`t$1ZVJ%5|Y*9P=Y!3>SgVG1gI^$IQ&ryxvsaEvfo&MJa3v>1@kF>kb;q6N;zAa zDY&ty5pQxD$Fekcr^3x?(LG{vk{&=#dMKlr}3LG z$Pm3QAbjy`D49!@QARm2SarLPicwZ+lP`~wG&+RI83i1Q4)C;o#S^nqY}{}=g-&OZ zPF)>+Y{!zciW5)(%S@(;zdW7~Br8SgQ|!YLU(lryiRkX8T=rw9$%0Mlqj`Z(rZDvE z1Oh;+Dp$}8kE$`i`CVM?JN~pn-2#bmSKFIh!ede{ubvgMmnt_w615hH)tl+LcYdkE zeBN^?n>T(WhxrCR*)>4W9=f`#m>5B6CvY~9_YDfk)0XIaN(iKR<-{e1sbil=+- zjV0gQ+(6Iv0#33-?N-t#h>iWuVyWD1No^2u~unA<_?&&K#&J8 z_|fuD#yub7n(A8jnuy=l`&bFw*QXSbX7A3kKCpfN%>Xxh27A_>q-HC0Fw$&11-1a= z^0>4Y1xc=$;}Gfl%Pwc6TrEd&Mz5H@02vL&H8-0^g?d4Q$Y~vyb;wPOAuqID2Z%D^ zt}0$mLO7w=0U%CJm5ONkU9%VLC#jZ8ntZt=dv4d^zdU1kvk~Y@bgfWa4$zcRb0oSr zH%Lw&r11hRyW5S#4556A zRr;H04m46m`ntmJrmVMvBY7DWu+7rm!U-9-Pw)>QlNI-qk1r25}U(R5D? z=GfJDJIxaXJPz_PrC-xDvtRKFrY>XOok-(}4+NT-6ulw$F zjPC6O|6z&P{X!O(X-}O7MmZ9o*{8dda{Ak^AlKZzx-(sx9UJ4Y8pViIh#2|v@$b~} z-O4xx_d3kM-lR>F;>^=S>JDZ-U>k!QwQ@>~FAf#V*qi`F(HXS=*hk7|_hjOvZ1c%6 ztCr%Mg+;9qBu^Y>Q=sPn_cu3Y&%RVD{bdClafoGT>3y? z&T@~zZsFZikLjcL&wW{Na-0@7Vh~2Y^CY>=+ey)Z0jW%x*$!H44{w&qGV?#OSavEd z*F(buGXt*F6WhIrHaVCD9`H^`)YSxQd;SwX_gOwkkB^L)PFik!w)=#2AWl02T*Pc< z(wu9Vw1d{T3{g()CFkne<86v+kJ0sDA%>bGRr_e&YE7Ax*`WQz^|~bzMH8@WZ?m6 za8ZaZ+WIbp9pU>I_F4Aq-P}tUhvyUEVnikd{!P^OxfXg%O;{_0Q|c3Kbi+EwTpy_{ zdItM`k7$=o%%hQA!g2{w>HfjRaNf`69VaFd^Czr9y$UxZ{At-j_JPeK222SgK7QB>NVT zmdcQvZre%8=n2&qOV5qD_oF{Gk!(m5vEBcYoE91X(`JC=J;5u*ZrSz>Ee*lRFiYRR z>ML)WX&aA?o`3b8U0k{sJFR=-x&8mVax@Meiaj<+%im`2XWwz+1&g9@?_s>Z37_qt zHK7TngB@R~B-4iY(bm4=$H8%4--!Q@?fCz%S6{@DeZwx^t8`i0#Z~|BLx7+pul}J* I783aX09v&nrvLx| diff --git a/alien_invasion/ship.py b/alien_invasion/ship.py index aab9a9f..7eb4b61 100644 --- a/alien_invasion/ship.py +++ b/alien_invasion/ship.py @@ -1,20 +1,21 @@ +import os import pygame class Ship(): - """ A class to make space ship object. """ + """ A class to manage the ship. """ - def __init__(self, screen): + def __init__(self, ai_game): """ Initialize the ship and start its starting position. """ - self.screen = screen + self.screen = ai_game.screen + self.screen_rect = ai_game.screen.get_rect() # Load space ship image - self.image = pygame.image.load("D:\\Workspace\\Python\\alien_invasion\\images\\ship.bmp") + path = os.path.join("images", "ship.bmp") + self.image = pygame.image.load(path) self.rect = self.image.get_rect() - self.screen_rect = self.screen.get_rect() # Start a new ship at the bottom center of the screen - self.rect.centerx = self.screen_rect.centerx - self.rect.bottom = self.screen_rect.bottom + self.rect.midbottom = self.screen_rect.midbottom def blitme(self): """ Draw the sapce ship at its current postion. """ From 70685e25fcbeb68dbede7b5efc6544fabb00d94a Mon Sep 17 00:00:00 2001 From: sys Date: Mon, 20 Jan 2020 14:56:03 -0500 Subject: [PATCH 10/20] add LEFT/RIGHT key events --- alien_invasion/alien_invasion.py | 12 ++++++++++++ alien_invasion/ship.py | 11 +++++++++++ 2 files changed, 23 insertions(+) diff --git a/alien_invasion/alien_invasion.py b/alien_invasion/alien_invasion.py index 4359971..c9fca04 100644 --- a/alien_invasion/alien_invasion.py +++ b/alien_invasion/alien_invasion.py @@ -24,6 +24,7 @@ def run_game(self): while True: """ Start the main loop for the game. """ self._check_events() + self.ship.update() self._update_screen() # Make the most recently draw screen visible @@ -34,6 +35,17 @@ def _check_events(self): for event in pygame.event.get(): if event.type == pygame.QUIT: sys.exit() + elif event.type == pygame.KEYDOWN: + if event.key == pygame.K_RIGHT: + # Mark the moving_right flag as TRUE. + self.ship.moving_right = True + elif event.key == pygame.K_LEFT: + self.ship.moving_left = True + elif event.type == pygame.KEYUP: + if event.key == pygame.K_RIGHT: + self.ship.moving_right = False + if event.key == pygame.K_LEFT: + self.ship.moving_left = False def _update_screen(self): """ Update images on the screen, and flip to the new screen. """ diff --git a/alien_invasion/ship.py b/alien_invasion/ship.py index 7eb4b61..80ccc23 100644 --- a/alien_invasion/ship.py +++ b/alien_invasion/ship.py @@ -16,6 +16,17 @@ def __init__(self, ai_game): # Start a new ship at the bottom center of the screen self.rect.midbottom = self.screen_rect.midbottom + + # Movement flag + self.moving_right = False + self.moving_left = False + + def update(self): + """ Update the ship's position based on the movement flag. """ + if self.moving_right: + self.rect.x += 1 + elif self.moving_left: + self.rect.x -= 1 def blitme(self): """ Draw the sapce ship at its current postion. """ From 13d86e0ed9c88369739d21d202087fe5825abed1 Mon Sep 17 00:00:00 2001 From: sys Date: Mon, 20 Jan 2020 17:45:31 -0500 Subject: [PATCH 11/20] Add bullet class --- alien_invasion/alien_invasion.py | 55 ++++++++++++++++++++++++++------ alien_invasion/bullet.py | 30 +++++++++++++++++ alien_invasion/settings.py | 12 ++++++- alien_invasion/ship.py | 16 +++++++--- 4 files changed, 98 insertions(+), 15 deletions(-) create mode 100644 alien_invasion/bullet.py diff --git a/alien_invasion/alien_invasion.py b/alien_invasion/alien_invasion.py index c9fca04..3bebacb 100644 --- a/alien_invasion/alien_invasion.py +++ b/alien_invasion/alien_invasion.py @@ -1,9 +1,9 @@ import sys - import pygame from settings import Settings from ship import Ship +from bullet import Bullet class AlienInvasion: """ Overall class to manage game assets and behavior. """ @@ -14,10 +14,18 @@ def __init__(self): self.settings = Settings() self.screen = pygame.display.set_mode((self.settings.screen_width, self.settings.screen_height)) + + # Enable full screen mode (if you want) + # self.screen = pygame.display.set_mode((0, 0), pygame.FULLSCREEN) + # self.settings.screen_width = self.screen.get_rect().width + # self.settings.screen_height = self.screen.get_rect().height + pygame.display.set_caption("Alien Invasion") # Make a ship self.ship = Ship(self) + # Make a group of bullets + self.bullets = pygame.sprite.Group() def run_game(self): """ Start the main loop for the game. """ @@ -25,8 +33,17 @@ def run_game(self): """ Start the main loop for the game. """ self._check_events() self.ship.update() + self.bullets.update() self._update_screen() + # Get rid of bullets that have disappeared. + # Note: the list will stay the same length as long as the loop is running + # so here to loop over the copy of the group + for bullet in self.bullets.copy(): + if bullet.rect.bottom <= 0: + self.bullets.remove(bullet) + print(len(self.bullets)) + # Make the most recently draw screen visible pygame.display.flip() @@ -36,22 +53,40 @@ def _check_events(self): if event.type == pygame.QUIT: sys.exit() elif event.type == pygame.KEYDOWN: - if event.key == pygame.K_RIGHT: - # Mark the moving_right flag as TRUE. - self.ship.moving_right = True - elif event.key == pygame.K_LEFT: - self.ship.moving_left = True + self._check_keydown_events(event) elif event.type == pygame.KEYUP: - if event.key == pygame.K_RIGHT: - self.ship.moving_right = False - if event.key == pygame.K_LEFT: - self.ship.moving_left = False + self._check_keyup_events(event) + + def _check_keydown_events(self, event): + """ Respond to keypresses. """ + if event.key == pygame.K_RIGHT: + self.ship.moving_right = True + elif event.key == pygame.K_LEFT: + self.ship.moving_left = True + elif event.key == pygame.K_q: + sys.exit() + elif event.key == pygame.K_SPACE: + self._fire_bullet() + + def _check_keyup_events(self, event): + """ Respond to keyupes. """ + if event.key == pygame.K_RIGHT: + self.ship.moving_right = False + elif event.key == pygame.K_LEFT: + self.ship.moving_left = False + + def _fire_bullet(self): + """ Create a new bullet and add it to the bullets group. """ + new_bullet = Bullet(self) + self.bullets.add(new_bullet) def _update_screen(self): """ Update images on the screen, and flip to the new screen. """ self.screen.fill(self.settings.bg_color) # Draw the space ship self.ship.blitme() + for bullet in self.bullets.sprites(): + bullet.draw_bullet() if __name__ == '__main__': # Make a game instance, and run the game. diff --git a/alien_invasion/bullet.py b/alien_invasion/bullet.py new file mode 100644 index 0000000..7ee47ad --- /dev/null +++ b/alien_invasion/bullet.py @@ -0,0 +1,30 @@ +import pygame +from pygame.sprite import Sprite + +class Bullet(Sprite): + """ A class to manage bullets fired from the ship. """ + + def __init__(self, ai_game): + """ Create a bullet object at the ship's current position. """ + super().__init__() + self.screen = ai_game.screen + self.settings = ai_game.settings + self.color = self.settings.bullet_color + + # Create a bullet rect at (0, 0) and then set correct position. + self.rect = pygame.Rect(0, 0, self.settings.bullet_width, self.settings.bullet_height) + self.rect.midtop = ai_game.ship.rect.midtop + + # Store the bullet's position as a decimal value. + self.y = float(self.rect.y) + + def update(self): + """ Move the bullet up the screen. """ + # Update the decimal position of the bullet. + self.y -= self.settings.bullet_speed + #Update the rect position. + self.rect.y = self.y + + def draw_bullet(self): + """ Draw the bullet to the screen. """ + pygame.draw.rect(self.screen, self.color, self.rect) diff --git a/alien_invasion/settings.py b/alien_invasion/settings.py index 65c3f02..738fae5 100644 --- a/alien_invasion/settings.py +++ b/alien_invasion/settings.py @@ -6,4 +6,14 @@ def __init__(self): # Screen settings self.screen_width = 800 self.screen_height = 600 - self.bg_color = (230, 230, 230) \ No newline at end of file + self.bg_color = (230, 230, 230) + + # ship settings + # movement speed + self.ship_speed = 0.5 + + # Bullet settings + self.bullet_speed = 0.5 + self.bullet_width = 3 + self.bullet_height = 15 + self.bullet_color = (60, 60, 60) \ No newline at end of file diff --git a/alien_invasion/ship.py b/alien_invasion/ship.py index 80ccc23..aded3d2 100644 --- a/alien_invasion/ship.py +++ b/alien_invasion/ship.py @@ -8,6 +8,7 @@ def __init__(self, ai_game): """ Initialize the ship and start its starting position. """ self.screen = ai_game.screen self.screen_rect = ai_game.screen.get_rect() + self.settings = ai_game.settings # Load space ship image path = os.path.join("images", "ship.bmp") @@ -17,16 +18,23 @@ def __init__(self, ai_game): # Start a new ship at the bottom center of the screen self.rect.midbottom = self.screen_rect.midbottom + # Store a decimal value for the ship's horizontal position + self.x = float(self.rect.x) + # Movement flag self.moving_right = False self.moving_left = False def update(self): """ Update the ship's position based on the movement flag. """ - if self.moving_right: - self.rect.x += 1 - elif self.moving_left: - self.rect.x -= 1 + # Update the ship's x instead of the rect's x directly + if self.moving_right and self.rect.right < self.screen_rect.right: + self.x += self.settings.ship_speed + elif self.moving_left and self.rect.left > 0: + self.x -= self.settings.ship_speed + + # Update rect object from self.x + self.rect.x = self.x def blitme(self): """ Draw the sapce ship at its current postion. """ From 0b21c55e659799994587c4ead3f372c6a839f5b8 Mon Sep 17 00:00:00 2001 From: sys Date: Tue, 21 Jan 2020 06:36:21 -0500 Subject: [PATCH 12/20] modify bullets --- alien_invasion/alien_invasion.py | 27 ++++++++++++++++----------- alien_invasion/settings.py | 3 ++- 2 files changed, 18 insertions(+), 12 deletions(-) diff --git a/alien_invasion/alien_invasion.py b/alien_invasion/alien_invasion.py index 3bebacb..e1390c4 100644 --- a/alien_invasion/alien_invasion.py +++ b/alien_invasion/alien_invasion.py @@ -33,17 +33,9 @@ def run_game(self): """ Start the main loop for the game. """ self._check_events() self.ship.update() - self.bullets.update() + self._update_bullets() self._update_screen() - # Get rid of bullets that have disappeared. - # Note: the list will stay the same length as long as the loop is running - # so here to loop over the copy of the group - for bullet in self.bullets.copy(): - if bullet.rect.bottom <= 0: - self.bullets.remove(bullet) - print(len(self.bullets)) - # Make the most recently draw screen visible pygame.display.flip() @@ -77,8 +69,21 @@ def _check_keyup_events(self, event): def _fire_bullet(self): """ Create a new bullet and add it to the bullets group. """ - new_bullet = Bullet(self) - self.bullets.add(new_bullet) + if len(self.bullets) < self.settings.bullet_allowed: + new_bullet = Bullet(self) + self.bullets.add(new_bullet) + + def _update_bullets(self): + """ Update position of bullets and get rid of old bullets. """ + self.bullets.update() + + # Get rid of bullets that have disappeared. + # Note: the list will stay the same length as long as the loop is running + # so here to loop over the copy of the group to modify bullets inisde the loop + for bullet in self.bullets.copy(): + if bullet.rect.bottom <= 0: + self.bullets.remove(bullet) + # print(len(self.bullets)) def _update_screen(self): """ Update images on the screen, and flip to the new screen. """ diff --git a/alien_invasion/settings.py b/alien_invasion/settings.py index 738fae5..b7f9ae4 100644 --- a/alien_invasion/settings.py +++ b/alien_invasion/settings.py @@ -16,4 +16,5 @@ def __init__(self): self.bullet_speed = 0.5 self.bullet_width = 3 self.bullet_height = 15 - self.bullet_color = (60, 60, 60) \ No newline at end of file + self.bullet_color = (60, 60, 60) + self.bullet_allowed = 3 \ No newline at end of file From 8db5f4ad0c50fa6db7846149167c0feecf03fe54 Mon Sep 17 00:00:00 2001 From: sys Date: Thu, 23 Jan 2020 06:58:10 -0500 Subject: [PATCH 13/20] Create an aliens fleet --- alien_invasion/alien.py | 29 ++++++++++++++++++++++ alien_invasion/alien_invasion.py | 41 +++++++++++++++++++++++++++++++ alien_invasion/images/alien.bmp | Bin 0 -> 8310 bytes alien_invasion/settings.py | 5 +++- 4 files changed, 74 insertions(+), 1 deletion(-) create mode 100644 alien_invasion/alien.py create mode 100644 alien_invasion/images/alien.bmp diff --git a/alien_invasion/alien.py b/alien_invasion/alien.py new file mode 100644 index 0000000..ca2d748 --- /dev/null +++ b/alien_invasion/alien.py @@ -0,0 +1,29 @@ +import os +import pygame +from pygame.sprite import Sprite + +class Alien(Sprite): + """ A class to represent a single alien in the fleet. """ + + def __init__(self, ai_game): + """ Initialize thr alien anf set its starting position. """ + super().__init__() + self.screen = ai_game.screen + self.settings = ai_game.settings + + # Load the alien image and set its rect attribute, + path = os.path.join("images", "alien.bmp") + self.image = pygame.image.load(path) + self.rect = self.image.get_rect() + + # Start each new alien near the top of the screen + self.rect.x = self.rect.width + self.rect.y = self.rect.height + + # Store the alien's exact horizontal position. + self.x = float(self.rect.x) + + def update(self): + """ Move the alien to the right. """ + self.x += self.settings.alien_speed + self.rect.x = self.x \ No newline at end of file diff --git a/alien_invasion/alien_invasion.py b/alien_invasion/alien_invasion.py index e1390c4..3d2757b 100644 --- a/alien_invasion/alien_invasion.py +++ b/alien_invasion/alien_invasion.py @@ -4,6 +4,7 @@ from settings import Settings from ship import Ship from bullet import Bullet +from alien import Alien class AlienInvasion: """ Overall class to manage game assets and behavior. """ @@ -26,6 +27,10 @@ def __init__(self): self.ship = Ship(self) # Make a group of bullets self.bullets = pygame.sprite.Group() + # Make a group of fleet + self.aliens = pygame.sprite.Group() + + self._create_fleet() def run_game(self): """ Start the main loop for the game. """ @@ -34,6 +39,7 @@ def run_game(self): self._check_events() self.ship.update() self._update_bullets() +# self._update_aliens() self._update_screen() # Make the most recently draw screen visible @@ -85,6 +91,40 @@ def _update_bullets(self): self.bullets.remove(bullet) # print(len(self.bullets)) + def _create_fleet(self): + """ Create the fleet of aliens. """ + # Create an alien + # Only for calculation purpose, this alien would be included into fleet + alien = Alien(self) + alien_width, alien_height = alien.rect.size + # Find the number of aliens in a row. + # Spacing between each alien is equal to one alien width. + available_space_x = self.settings.screen_width - (2 * alien_width) + number_alien_x = available_space_x // (2 * alien_width) + # Determine the number of rows of aliens that fit on the screen + ship_height = self.ship.rect.height + available_space_y = (self.settings.screen_height - (3 * alien_height) - ship_height) + number_rows = available_space_y // (alien_height + 15) + + # Create the fleet + for row_number in range(number_rows): + for alien_number in range(number_alien_x): + # Create an alien and place it in the row. + self._create_alien(alien_width + 2 * alien_width * alien_number, + alien_height + (alien_height + 15) * row_number) + + def _create_alien(self, alien_x, alien_y): + """ Create an alien and place it in the row. """ + alien = Alien(self) + alien.rect.x = alien_x + alien.rect.y = alien_y + self.aliens.add(alien) + + def _update_aliens(self): + """ Update the positions of all aliens in the fleet. """ + # Call the method Update on the Group will calls each alien's update() method + self.aliens.update() + def _update_screen(self): """ Update images on the screen, and flip to the new screen. """ self.screen.fill(self.settings.bg_color) @@ -92,6 +132,7 @@ def _update_screen(self): self.ship.blitme() for bullet in self.bullets.sprites(): bullet.draw_bullet() + self.aliens.draw(self.screen) if __name__ == '__main__': # Make a game instance, and run the game. diff --git a/alien_invasion/images/alien.bmp b/alien_invasion/images/alien.bmp new file mode 100644 index 0000000000000000000000000000000000000000..c28fa3225c57fdf6ada031e82c6e2a2b2dfd9ff7 GIT binary patch literal 8310 zcmdU!d2rKZ8plQ5{lnRDT-}|;S#|5IZXFd^TA&3AfdT~zJ?MQTP0}V!8j_|BX_~Z2 ze!1_XNzL!x?iEt zE~h0d7tNkKS0oUM$BH@pF$SA6md{|1W#`eyib$SQDjehSE5>Heju(}ci9`m2;Zf4| z-bnEV0)b!A>GY>^b6I=R({nFMtK?U#cKa2l%LS9k486esjaCbdMhmS@539`qr`rRy zR)3|0TXtpn^3`uK*<7{7VtL|DGm`)N*9<0Go|j)ZE)rM5?e)Oz@xWjUGRsoCM3XjhVi_HcmiwhQucY)0=O}K-$oRO2m5M|{Q{zp-( zg3f4wL@EWpOoW`ALZqZ;UzZIeC6Y?YsU%HH&%%ZcIVjiv<-D2{JM= zMsr!L$A79F`FwG7OiWx{T>P?~bVkY5VooVo#q0??<>fO_kY9uXItxrT2OJI$9Bvu- z96pGxk)KaTPHq8m@(Ph(P(mP=5;V11U7mT^9DWzz8l3m2x-Xteu(1n0ep zOOsY5ty()?Tv7@(rG?RKft8GlnMjpZ2bN3$o%x1!8hSq3Cxy^}|v*%GgdJIyt4K|Ajjg1X3dVH|%I}FF$ z=OG^+fl{LU-$@;kprkD?ZWzO-!K|2R#4>q0y-1%ixNg=%}V&~ zbbQ_2-4CW`=I)TmYvFdgq0kvnYpsLa>4l2)<8+eob9q2*--()@e&`);xa^LJcWq>x zc~we?4OYk~9kI0)Hir#vyA5`m9qPsasDUj|23z1H?HqPHltib(>qUjt4vWJ9hueNu$PKka35iS!m&*x{i?j_3 zSvxIGH{{K2Fzh{un$QpoWNqXL%fI0AMf;6L&+n(R-(;OoD136wnq)Prg!dk=Tyj~i zCca1Jw4O+X#)vYv4=lM7O1m0e2ZIp5zaaDK1Z~CYl_rzvkx7mpN|TdQm;N;-u1s7h zIn7~nPK!6mzvSC}kR3b@hRF>EpM#E(R`eh1L-XzcTK2ReM3_4Ex1;rMEoj}{jsh+N zN|gp|{zeE}yFi`z2MV?JYXX7j0-M7t((%*8Im zF04n~;t)9HH8^wreSGrSXV|`V2e`bl3l%k0^C(L8*iY&ER@$yfOF3ujwxR1l2R5JT zN5_FKq+~aNwjziIe+ZW@eT<72KSEb;H^d4FS+7)()=FOs27|Xfp0~nhbve&zgIe?) z>c-}i{n$pNWw;a7cCxmqDYSKVpmU&$tjQW^8_2pf96*h+_H&=lpLHw!-0r*58qGQX z4j=L1{t5dHy%Zw;(gSOo6-t}>T8*jp8hs<vod4tW&c0}(sHv-%jNQE_lVo& zxLLbJiObFn5T6Z??cfQrhK~fu8mL1Si~eD1Ms|~4Z?sLerLCYT7t>hdbLPt5kBKRa znXHdgDpSgy%jXte96TN(d;^3pguWMh$hy*kO$PbfSw;B^NZ;S?^|7&xCuTpZ`Qqun zbdN7sEZ{|oYf^7oPG-HWt?tUu@d32#?18(l385olTMod#wFxDaT;Yu|lR!ZIhR3b* zu}T8_6B0$wPU?w7Iy^l51leZ~2486Zdf;e3)b?gnTWx6D8=SCXa90Z?dZ~y;{eMhH z&M*(Ox3@nO38ou$mY0{$S6bC)Lq|gxIx&Rik$SWr2-~lR_(}+!dpptC7W}fgyZf%K zbvN+MNX^Musr6|86*^Ahf?Yw#ta1ozD~Qb`Xc+P#bg&mzj}z6@oj4KZ_@ydKyXTYtb;^0iDaj%Ju8-_*rsVs2eK7bH0Gb zXl&Zngq-3$#Kgv9-n=*>^YQ%i&tq2X91^2cVBzv*SWHX&H);B<58t3BVp(!-ow-RT zKVoV#V_j-GXiJu2{`>`qoj;$j#$ag@4H~x^akQm~PoROE=~qPzW*Wtrd3kedtg0)z zfF8xAe5_fs4h!Pqv2bw$maSO{wO512%?((Ux)$pVoGnt0-VF`0q z+vV{1{re&cG(~w*YErGQ--Es*-Gu2n%Oul{>9&`L;OqCn)98P5ii(I89S+Ci3cdPc z|E|FGIN;>qgspDmn#_mCxBp-W8_8W<#DJzK&dMrzm{Y#-kh{Mgp<`Xw*-j2k%eZxH z5W^>jkz2^PYkXl`liQIhQOiH^4%L6X`4pLZ6MWZwV$ycubj#QP_Px3ntCH8>RX%d} zHpA%j(3qm)ZdbQ!y#EM^o5zTMgnc9|;XIMegm3h<{p75);jZ#c4tXJ`@UhI|JU*|g z{9;|7kK7due#c0Bcgv|kjGo?)QZXMCHTq-j^(Ix{(KIeG@eeA4?oCsp`M=>s za%ir4f_{AP!3BK!=_h#S%o&I)E3f4<3dfywu6I0MPaUPF7LoTO_B+jV_6ye~B_%y9 zQObw4F4c$5Mmxq{I)(G({^iWOXHoC>BRMM-8jlt-qx2k|O`mf!J&~;ER#ZGHl=0V+ zdzM#C9`o0M&So4sdKjl)e;op;5Vm$FOikv?DoVwVB**vZCiCoGy-ojTrA6JaQ6_xd z=plFHRtj8+08AnOQl+YT1G)c-$i3S4aZP;|<_w>uiZ^n$_y_CJf2bcOuk|qHpnf;? z-Ji3(Nwz7=(QN;`so(!qwMO9%|IYYx@=WbJjhXgPTFwSudR~UoUGH8t_4zNo{6C=i Bb(;VH literal 0 HcmV?d00001 diff --git a/alien_invasion/settings.py b/alien_invasion/settings.py index b7f9ae4..1daf192 100644 --- a/alien_invasion/settings.py +++ b/alien_invasion/settings.py @@ -17,4 +17,7 @@ def __init__(self): self.bullet_width = 3 self.bullet_height = 15 self.bullet_color = (60, 60, 60) - self.bullet_allowed = 3 \ No newline at end of file + self.bullet_allowed = 3 + + # Alien settings + self.alien_speed = 0.1 From 895880c03ec0fb65498e3525d3d075de867ff463 Mon Sep 17 00:00:00 2001 From: sys Date: Sat, 25 Jan 2020 07:45:47 -0500 Subject: [PATCH 14/20] Complete the main logic of game --- alien_invasion/alien.py | 12 +++-- alien_invasion/alien_invasion.py | 86 ++++++++++++++++++++++++++++--- alien_invasion/game_stats.py | 15 ++++++ alien_invasion/images/alien.bmp | Bin 8310 -> 6486 bytes alien_invasion/settings.py | 8 ++- alien_invasion/ship.py | 5 ++ 6 files changed, 114 insertions(+), 12 deletions(-) create mode 100644 alien_invasion/game_stats.py diff --git a/alien_invasion/alien.py b/alien_invasion/alien.py index ca2d748..7beb1e5 100644 --- a/alien_invasion/alien.py +++ b/alien_invasion/alien.py @@ -24,6 +24,12 @@ def __init__(self, ai_game): self.x = float(self.rect.x) def update(self): - """ Move the alien to the right. """ - self.x += self.settings.alien_speed - self.rect.x = self.x \ No newline at end of file + """ Move the alien to the right or left. """ + self.x += (self.settings.alien_speed * self.settings.fleet_direction) + self.rect.x = self.x + + def check_edges(self): + """ Return True if alien is at edge of screen. """ + screen_rect = self.screen.get_rect() + if self.rect.right >= screen_rect.right or self.rect.left <= 0: + return True \ No newline at end of file diff --git a/alien_invasion/alien_invasion.py b/alien_invasion/alien_invasion.py index 3d2757b..608db55 100644 --- a/alien_invasion/alien_invasion.py +++ b/alien_invasion/alien_invasion.py @@ -5,6 +5,7 @@ from ship import Ship from bullet import Bullet from alien import Alien +from game_stats import GameStats class AlienInvasion: """ Overall class to manage game assets and behavior. """ @@ -23,6 +24,9 @@ def __init__(self): pygame.display.set_caption("Alien Invasion") + # Create an instance to store game statistics. + self.stats = GameStats(self) + # Make a ship self.ship = Ship(self) # Make a group of bullets @@ -37,9 +41,11 @@ def run_game(self): while True: """ Start the main loop for the game. """ self._check_events() - self.ship.update() - self._update_bullets() -# self._update_aliens() + if self.stats.game_active: + self.ship.update() + self._update_bullets() + self._update_aliens() + self._update_screen() # Make the most recently draw screen visible @@ -89,7 +95,18 @@ def _update_bullets(self): for bullet in self.bullets.copy(): if bullet.rect.bottom <= 0: self.bullets.remove(bullet) - # print(len(self.bullets)) + + def _check_bullet_alien_collisions(self): + """ Respond to bullet-alien collisions. """ + # Check for any bullets that have hit aliens. + # If so, get rid of the bullet and the alien. + collisions = pygame.sprite.groupcollide(self.bullets, self.aliens, True, True) + + # if all aliens destroied, create a new alien fleet + if not self.aliens: + # Destroy existing bullets and create a new fleet. + self.bullets.empty() + self._create_fleet() def _create_fleet(self): """ Create the fleet of aliens. """ @@ -116,15 +133,70 @@ def _create_fleet(self): def _create_alien(self, alien_x, alien_y): """ Create an alien and place it in the row. """ alien = Alien(self) - alien.rect.x = alien_x - alien.rect.y = alien_y + alien.x = alien_x + alien.y = alien_y + alien.rect.x = alien.x + alien.rect.y = alien.y self.aliens.add(alien) + + def _check_fleet_edges(self): + """ Response appropriately if any aliens have reached an edge. """ + for alien in self.aliens.sprites(): + if alien.check_edges(): + self._change_fleet_direction() + break + + def _change_fleet_direction(self): + """ Drop the entire fleet and change the fleet's direction. """ + for alien in self.aliens.sprites(): + alien.rect.y += self.settings.fleet_drop_speed + self.settings.fleet_direction *= -1 def _update_aliens(self): - """ Update the positions of all aliens in the fleet. """ + """ + Check if the fleet is at an edge, + update the positions of all aliens in the fleet. + """ + self._check_fleet_edges() # Call the method Update on the Group will calls each alien's update() method self.aliens.update() + # Look for alien-ship collisions. + if pygame.sprite.spritecollideany(self.ship, self.aliens): + # print("Ship hit !!!") + self._ship_hit() + + # Look for aliens hitting the bottom of the screen. + self._check_aliens_bottom() + + def _ship_hit(self): + """ Response to the ship being hit by an alien. """ + if self.stats.ship_left > 0 : + # Decrement ship_left. + self.stats.ships_left -= 1 + + # Get rid of any remaining aliens and bullets. + self.aliens.empty() + self.bullets.empty() + + # Create a new fleet and center the ship. + self._create_fleet() + self.ship.center_ship() + + # Pause. + sleep(0.5) + else: + self.stats.game_active = False + + def _check_aliens_bottom(self): + """ Check if any aliens have reached the bottom of the screen. """ + screen_rect = self.screen.get_rect() + for alien in self.aliens.sprites(): + if alien.rect.bottom >= screen_rect.bottom: + # Treat this the same as if the ship got hit. + self._ship_hit() + break + def _update_screen(self): """ Update images on the screen, and flip to the new screen. """ self.screen.fill(self.settings.bg_color) diff --git a/alien_invasion/game_stats.py b/alien_invasion/game_stats.py new file mode 100644 index 0000000..abe822b --- /dev/null +++ b/alien_invasion/game_stats.py @@ -0,0 +1,15 @@ + +class GameStats: + """ Track statistics for Alien Invasion. """ + + def __init__(self, ai_game): + """ Inistitalize statistics. """ + self.settings = ai_game.settings + self.reset_stats() + + # Start Alien Invation in an active state + self.game_active = True + + def reset_stats(self): + """ Initialize statistics that can change during the game. """ + self.ship_left = self.settings.ship_limit \ No newline at end of file diff --git a/alien_invasion/images/alien.bmp b/alien_invasion/images/alien.bmp index c28fa3225c57fdf6ada031e82c6e2a2b2dfd9ff7..2085558aa0e8918edbf3e5eda0fb430213881e97 100644 GIT binary patch delta 223 zcmW;FuTMfz9ENdrk;?@{`bTc6FvcPnUL-G;I4CiVx`vDJJFX1LCPsiQcHNBqPe>F+$? zCL-pEA#GP!TTe;h#1od@D|ab_pMGbRHuN(>VORLDZnBEMtnjj@Xyk-dE~2+T#LWu} z>#`vHTBD+HT2d@aLia#$e8tok&I8Rlu&qNwBQ$)4n)|Y*Tp9COd8TuuajKd{)o@)i KY-+-!-uwrsTT@y9 delta 457 zcmca+^vyxs$+t{_0Su-A$r>Qm0Ak~b;)^F=kO%|ei3tJ<<>mDX_V(@y>iYU%EU&Jv zU~X=&5FQ_|(B9s!F!`WF>cj-@iMwhhCdf=SV{8CX+ZdZclqFLwn8#EBqV$-XCv%F( zOy0=cIQbl}%w!{$78YGy8^MWzA}os+FXo%P4Je?XuC5Le*uQ^2%VaB7kO~u^fW+i| zKz3{EMA3 Date: Sat, 25 Jan 2020 18:59:30 -0500 Subject: [PATCH 15/20] remove chainmap.py --- fundation/chainmap.py | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 fundation/chainmap.py diff --git a/fundation/chainmap.py b/fundation/chainmap.py deleted file mode 100644 index 71ef466..0000000 --- a/fundation/chainmap.py +++ /dev/null @@ -1,11 +0,0 @@ -import collections - -dict1 = {'day1':'Mon','day2':'Tue'} -dict2 = {'day3':'Wed','day1':'Thu'} - -res = collections.ChainMap(dict1, dict2) - -print(res.maps, '\n') - -print('Keys = {}'.format(list(res.keys()))) -print('Values = {}'.format(list(res.values()))) \ No newline at end of file From 97e83c1ff5f2801610055731df55256d63b6afb4 Mon Sep 17 00:00:00 2001 From: Syone Date: Sat, 25 Jan 2020 19:41:00 -0500 Subject: [PATCH 16/20] add one simple matplot example --- matplot_examples/mpl_squares.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 matplot_examples/mpl_squares.py diff --git a/matplot_examples/mpl_squares.py b/matplot_examples/mpl_squares.py new file mode 100644 index 0000000..0b6ad89 --- /dev/null +++ b/matplot_examples/mpl_squares.py @@ -0,0 +1,18 @@ +import matplotlib.pyplot as plt + +input_values = [1, 2, 3, 4, 5] +squares = [1, 4, 9, 16, 25] + +plt.style.use('seaborn') +fig, ax = plt.subplots() +ax.plot(input_values, squares, linewidth=3) + +# Set chart title and label axes. +ax.set_title("Square Numbers", fontsize=24) +ax.set_xlabel("Value", fontsize=14) +ax.set_ylabel("Square of Value", fontsize=14) + +# Set size of tick labels. +ax.tick_params(axis='both', labelsize=14) + +plt.show() From 66e1e12a79707224a499f07c1c77f8b0dffcfa45 Mon Sep 17 00:00:00 2001 From: sys Date: Fri, 31 Jan 2020 06:26:30 -0500 Subject: [PATCH 17/20] add play button --- alien_invasion/alien_invasion.py | 14 ++++++++++--- alien_invasion/button.py | 34 ++++++++++++++++++++++++++++++++ alien_invasion/game_stats.py | 2 +- 3 files changed, 46 insertions(+), 4 deletions(-) create mode 100644 alien_invasion/button.py diff --git a/alien_invasion/alien_invasion.py b/alien_invasion/alien_invasion.py index 608db55..0981e71 100644 --- a/alien_invasion/alien_invasion.py +++ b/alien_invasion/alien_invasion.py @@ -6,6 +6,7 @@ from bullet import Bullet from alien import Alien from game_stats import GameStats +from button import Button class AlienInvasion: """ Overall class to manage game assets and behavior. """ @@ -36,6 +37,9 @@ def __init__(self): self._create_fleet() + # Make the Play button. + self.play_button = Button(self, "Play") + def run_game(self): """ Start the main loop for the game. """ while True: @@ -48,9 +52,6 @@ def run_game(self): self._update_screen() - # Make the most recently draw screen visible - pygame.display.flip() - def _check_events(self): """ Response to keypresses and mouse events. """ for event in pygame.event.get(): @@ -206,6 +207,13 @@ def _update_screen(self): bullet.draw_bullet() self.aliens.draw(self.screen) + # Draw the play button if the game is inactive. + if not self.stats.game_active: + self.play_button.draw_button() + + # Make the most recently draw screen visible + pygame.display.flip() + if __name__ == '__main__': # Make a game instance, and run the game. ai = AlienInvasion() diff --git a/alien_invasion/button.py b/alien_invasion/button.py new file mode 100644 index 0000000..53106a3 --- /dev/null +++ b/alien_invasion/button.py @@ -0,0 +1,34 @@ +import pygame.font + +class Button: + """ Button Class """ + + def __init__(self, ai_game, msg): + """ Initialize button attributes. """ + self.screen = ai_game.screen + self.screen_rect = self.screen.get_rect() + + # Set the dimensions and properties of the button. + self.width, self.height = 200, 50 + self.button_color = (0, 255, 255) + self.text_color = (255, 255, 255) + self.font = pygame.font.SysFont(None, 48) + + # Build the button's rect object and center it. + self.rect = pygame.Rect(0, 0, self.width, self.height) + self.rect.center = self.screen_rect.center + + # The button message needs to prepped only once. + self._prep_msg(msg) + + def _prep_msg(self, msg): + """ Turn msg into a rendered image and center text on the button. """ + + self.msg_image = self.font.render(msg, True, self.text_color, self.button_color) + self.msg_image_rect = self.msg_image.get_rect() + self.msg_image_rect.center = self.rect.center + + def draw_button(self): + # Draw blank button and then draw message. + self.screen.fill(self.button_color, self.rect) + self.screen.blit(self.msg_image, self.msg_image_rect) \ No newline at end of file diff --git a/alien_invasion/game_stats.py b/alien_invasion/game_stats.py index abe822b..5669fa6 100644 --- a/alien_invasion/game_stats.py +++ b/alien_invasion/game_stats.py @@ -8,7 +8,7 @@ def __init__(self, ai_game): self.reset_stats() # Start Alien Invation in an active state - self.game_active = True + self.game_active = False def reset_stats(self): """ Initialize statistics that can change during the game. """ From b49babf4efea68f378baf9878111ecbba592a090 Mon Sep 17 00:00:00 2001 From: Stephen Shen Date: Mon, 4 May 2020 00:13:59 -0400 Subject: [PATCH 18/20] continue "ParsingMusicList" project --- GeekyProjects/C1_ParsingMusicList/common.txt | 67 + GeekyProjects/C1_ParsingMusicList/dups.txt | 106 + .../example.xml} | 0 GeekyProjects/C1_ParsingMusicList/maya.xml | 2222 + GeekyProjects/C1_ParsingMusicList/mymusic.xml | 143232 +++++++++++++++ GeekyProjects/C1_ParsingMusicList/pl1.xml | 3234 + GeekyProjects/C1_ParsingMusicList/pl2.xml | 4120 + GeekyProjects/C1_ParsingMusicList/playlist.py | 111 + GeekyProjects/C1_ParsingMusicList/rating.xml | 4188 + GeekyProjects/C1_ParsingMusicList/readme.md | 6 + jupyter/HelloWorld.ipynb | 12 +- 11 files changed, 157291 insertions(+), 7 deletions(-) create mode 100644 GeekyProjects/C1_ParsingMusicList/common.txt create mode 100644 GeekyProjects/C1_ParsingMusicList/dups.txt rename GeekyProjects/{ParsingMusicList/data.xml => C1_ParsingMusicList/example.xml} (100%) create mode 100644 GeekyProjects/C1_ParsingMusicList/maya.xml create mode 100644 GeekyProjects/C1_ParsingMusicList/mymusic.xml create mode 100644 GeekyProjects/C1_ParsingMusicList/pl1.xml create mode 100644 GeekyProjects/C1_ParsingMusicList/pl2.xml create mode 100644 GeekyProjects/C1_ParsingMusicList/playlist.py create mode 100644 GeekyProjects/C1_ParsingMusicList/rating.xml create mode 100644 GeekyProjects/C1_ParsingMusicList/readme.md diff --git a/GeekyProjects/C1_ParsingMusicList/common.txt b/GeekyProjects/C1_ParsingMusicList/common.txt new file mode 100644 index 0000000..9d9fee2 --- /dev/null +++ b/GeekyProjects/C1_ParsingMusicList/common.txt @@ -0,0 +1,67 @@ +Symphony No.3 +Part II C +Abharaama Bhakti (Bandhuvaraali) +Three To Get Ready +Bolero +Symphony No. 101"The Clock" +Bach: Orchestral Suite #2 In B Minor - Badinerie +Stairway To Heaven +God Shuffled His Feet +Pi's Lullaby +Part II B +Fifth Symphony +Eine Kleine Nachtmusik +Symphony No.4, Third movement +Well-Tempered Clavier +Symphony #4 +Part I +Ninth Symphony +Arabesque No. 1 +Sorcerer's Apprentice +Strange Meadow Lark +Shchedrin: Carmen Suite - Changing Of The Guard +Floe +Synphony No.7 +All Blues +Synphony No.4 +Rite of Spring +Sonata for Violin and Piano n A Major +Peer Gynt +Concerto for Clarinet and Orchestra +Concert for trumpet in E Flat +Symphony No. 4, Third Movement +Willaim Tell Overture +But Not For Me +Valliya Naayaganaa (Shanmuga Priya) +Saamajavaragamana (Hindolam) +Ride of the Valkyries +Nutcracker +Horn Concerto No. 1 +Dance of the Blessed Spirits +Flamenco Sketches +My Favorite Things +Take Five +Everybody's Jumpin' +Rubric +Summertime +Pictures at an Exhibition +Part II A +Everytime We Say Goodbye +Blue In Green +Pick Up Sticks +Concert for Viola and orchestra +Vivaldi: The 4 Seasons, Op. 8/1, RV 269, "Spring" - Allegro +Sleeping Beauty +So What +Freddie Freeloader +Moonlight Sonata +Toccata and Fugue in D Minor +Quest for music (Maaya Malava Gowla) +Kathy's Waltz +Saint-Saëns: Carnival Of The Animals, The Elephant +Blue Rondo A La Turk +Sinfonia in G Major for Two Oboes +Concerto Champetre +Mother Good Suiteq +Evolution (Maaya Malava Gowla) +Hungarian Dance diff --git a/GeekyProjects/C1_ParsingMusicList/dups.txt b/GeekyProjects/C1_ParsingMusicList/dups.txt new file mode 100644 index 0000000..f63779c --- /dev/null +++ b/GeekyProjects/C1_ParsingMusicList/dups.txt @@ -0,0 +1,106 @@ +[3] Talkin' Bout A Revolution +[3] Across The Universe +[2] The Long And Winding Road +[5] Raat Ki Daldal Hain +[3] A Thousand Years +[3] Desert Rose +[3] The Girl From Ipanema +[2] Kiss From A Rose +[4] Banno Ranni +[3] Paranoid Android +[4] Bulla Ki Jana +[4] Tere Bin +[4] Heer +[4] Ishtihar +[4] Totia Manmotia +[4] Gill 'te Guitar +[4] Jugni +[4] Ajj Nachna +[4] Ek Geet Hijar Da +[2] You're My Best Friend +[2] Creepin' In +[3] Come Away With Me +[4] Paathshala +[4] Khoon Chala +[4] Tu Bin Bataye +[2] Hum Hain Rahi Pyar Ke +[5] Piano Theme +[5] Theme Music +[4] Ik Onkar +[4] Dheemi Dheemi +[4] Rang De Basanti +[3] God Shuffled His Feet +[2] Dehka Ek Khawab +[2] Yeh Kahan Aa Gaye Ham +[2] Sar Se Sarke +[2] Neela Aasman So Gaya +[2] Ladki Hai Ya Shola +[2] Rang Barse +[2] Jo Tum Todo Piya +[2] Kabhi Kabhi Mere Dil Mein Khayal Aata Hai +[2] Surkh Jode Ki Yeh Jagmagahat +[2] Main Pal Do Pal Ka Shair Hoon +[2] Tere Chehere Se Nazar Nahin Hatati +[2] Pyar Kar Liya To Kya +[2] Mere Ghar Ayee Nanhi Pari +[2] Main Har Ek Pal Ka Shair Hoon +[2] Kabhi Kabhi Mere Dil Mein Khayal Aata +[3] Socha Hai +[3] Rock On!! +[2] Down To The River To Pray +[2] Night Before Sundance +[2] Drums Of The Heart +[2] Legends +[2] Drummers' Journey +[2] Ya-Ta-Hey +[2] Invoking The Hawks' Spirit +[2] Crow Dogs' Paradise +[2] Flute Song +[2] Road Opener +[2] Drum Quest +[3] Floe +[3] Rubric +[2] Mere Sapno Ki Rani +[2] Kora Kagaz Tha Yeh Man Mera +[2] Baghon Mein Bahar Aayi +[2] Roop Tera Mastana +[2] Gun Guna Rahe Bahavare +[2] Chanda Hai Tu Mera Suraj Hai Tu +[2] Saphal Hui Teri Aaradhana +[2] Bindiya Chamke Gi +[2] Yeh Reshmi Zulfein +[2] Mera Naseeb Mein Aye Dost +[2] Dil Ne Dil Ko Pukhara +[2] Apni Apni Biwi +[2] Do Raaste +[2] Title Music +[3] Exodus +[3] Blowin' In The Wind +[4] Paathshala-Be A Rebel +[5] Ishwar Allah +[4] Lalkaar +[4] Roobaroo +[4] Khalbali +[2] Blackbird +[3] Dance Me To The End Of Love +[3] Only Time (Original Version) +[3] Stairway To Heaven +[2] 25/03/11 4:33 PM +[2] 27/03/11 6:14 PM +[2] 21/04/11 4:43 PM +[2] 21/04/11 6:46 PM +[2] 21/04/11 6:47 PM +[2] 21/04/11 6:49 PM +[2] 21/04/11 6:51 PM +[2] 26/04/11 1:23 PM +[2] 21/07/11 8:53 AM +[2] 29/07/11 7:54 PM +[2] 29/07/11 7:55 PM +[2] 29/07/11 7:57 PM +[2] 29/07/11 8:00 PM +[2] 04/08/11 5:23 PM +[2] 08/08/11 8:15 PM +[2] 01/09/11 8:37 AM +[2] 01/09/11 8:41 AM +[3] Sour Times +[4] Harmonica For Dummies diff --git a/GeekyProjects/ParsingMusicList/data.xml b/GeekyProjects/C1_ParsingMusicList/example.xml similarity index 100% rename from GeekyProjects/ParsingMusicList/data.xml rename to GeekyProjects/C1_ParsingMusicList/example.xml diff --git a/GeekyProjects/C1_ParsingMusicList/maya.xml b/GeekyProjects/C1_ParsingMusicList/maya.xml new file mode 100644 index 0000000..065c039 --- /dev/null +++ b/GeekyProjects/C1_ParsingMusicList/maya.xml @@ -0,0 +1,2222 @@ + + + + + Major Version1 + Minor Version1 + Date2014-06-14T12:40:14Z + Application Version11.2.2 + Features5 + Show Content Ratings + Music Folderfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/ + Library Persistent ID5E7B8CC1F12D8073 + Tracks + + 1694 + + Track ID1694 + NameQuest for music (Maaya Malava Gowla) + ArtistZakir Hussain, Kunnakudi Vaidyanathan + AlbumGolden Krithis - Colors + GenrePop + KindAAC audio file + Size5672310 + Total Time236308 + Disc Number1 + Disc Count1 + Track Number1 + Track Count5 + Year2002 + Date Modified2006-08-13T06:49:38Z + Date Added2009-10-03T14:50:47Z + Bit Rate192 + Sample Rate44100 + Play Count3 + Play Date3462978530 + Play Date UTC2013-09-25T12:58:50Z + Skip Count2 + Skip Date2013-07-25T04:18:39Z + Normalization1100 + Artwork Count1 + Persistent ID5F920396806BFE27 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Zakir%20Hussain,%20Kunnakudi%20Vaidyanathan/Golden%20Krithis%20-%20Colors/01%20Quest%20for%20music%20(Maaya%20Malava%20Gow.m4a + File Folder Count4 + Library Folder Count1 + + 1696 + + Track ID1696 + NameValliya Naayaganaa (Shanmuga Priya) + ArtistZakir Hussain, Kunnakudi Vaidyanathan + AlbumGolden Krithis - Colors + GenrePop + KindAAC audio file + Size22043576 + Total Time913007 + Disc Number1 + Disc Count1 + Track Number2 + Track Count5 + Year2002 + Date Modified2006-08-13T06:49:34Z + Date Added2009-10-03T14:50:47Z + Bit Rate192 + Sample Rate44100 + Play Count3 + Play Date3461605007 + Play Date UTC2013-09-09T15:26:47Z + Normalization1117 + Artwork Count1 + Persistent IDDFBE2E85565513A1 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Zakir%20Hussain,%20Kunnakudi%20Vaidyanathan/Golden%20Krithis%20-%20Colors/02%20Valliya%20Naayaganaa%20(Shanmuga%20Priy.m4a + File Folder Count4 + Library Folder Count1 + + 1698 + + Track ID1698 + NameEvolution (Maaya Malava Gowla) + ArtistZakir Hussain, Kunnakudi Vaidyanathan + AlbumGolden Krithis - Colors + GenrePop + KindAAC audio file + Size12631717 + Total Time524072 + Disc Number1 + Disc Count1 + Track Number3 + Track Count5 + Year2002 + Date Modified2006-08-13T06:49:24Z + Date Added2009-10-03T14:50:47Z + Bit Rate192 + Sample Rate44100 + Play Count2 + Play Date3461605531 + Play Date UTC2013-09-09T15:35:31Z + Normalization1011 + Artwork Count1 + Persistent IDC8BCD916312CCF2E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Zakir%20Hussain,%20Kunnakudi%20Vaidyanathan/Golden%20Krithis%20-%20Colors/03%20Evolution%20(Maaya%20Malava%20Gowla).m4a + File Folder Count4 + Library Folder Count1 + + 1700 + + Track ID1700 + NameSaamajavaragamana (Hindolam) + ArtistZakir Hussain, Kunnakudi Vaidyanathan + AlbumGolden Krithis - Colors + GenrePop + KindAAC audio file + Size22571239 + Total Time934810 + Disc Number1 + Disc Count1 + Track Number4 + Track Count5 + Year2002 + Date Modified2006-08-13T06:49:20Z + Date Added2009-10-03T14:50:47Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3389411811 + Play Date UTC2011-05-28T01:46:51Z + Normalization1039 + Artwork Count1 + Persistent IDC25F6C69215E9E77 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Zakir%20Hussain,%20Kunnakudi%20Vaidyanathan/Golden%20Krithis%20-%20Colors/04%20Saamajavaragamana%20(Hindolam).m4a + File Folder Count4 + Library Folder Count1 + + 1702 + + Track ID1702 + NameAbharaama Bhakti (Bandhuvaraali) + ArtistZakir Hussain, Kunnakudi Vaidyanathan + AlbumGolden Krithis - Colors + GenrePop + KindAAC audio file + Size19332696 + Total Time798138 + Disc Number1 + Disc Count1 + Track Number5 + Track Count5 + Year2002 + Date Modified2006-08-13T06:49:10Z + Date Added2009-10-03T14:50:47Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3389412609 + Play Date UTC2011-05-28T02:00:09Z + Normalization1102 + Artwork Count1 + Persistent ID35B87C22AE49A93F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Zakir%20Hussain,%20Kunnakudi%20Vaidyanathan/Golden%20Krithis%20-%20Colors/05%20Abharaama%20Bhakti%20(Bandhuvaraali).m4a + File Folder Count4 + Library Folder Count1 + + 2262 + + Track ID2262 + NameBlue Rondo A La Turk + ArtistThe Dave Brubeck Quartet + ComposerDave Brubeck + AlbumTime Out + GenreJazz + KindAAC audio file + Size9843689 + Total Time406138 + Disc Number1 + Disc Count1 + Track Number1 + Track Count7 + Year1959 + Date Modified2006-08-03T11:46:24Z + Date Added2009-10-03T14:52:27Z + Bit Rate192 + Sample Rate44100 + Play Count2 + Play Date3471262543 + Play Date UTC2013-12-30T10:05:43Z + Normalization1204 + Artwork Count1 + Sort ArtistDave Brubeck Quartet + Persistent IDE1B5EC85D716A72C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Dave%20Brubeck%20Quartet/Time%20Out/01%20Blue%20Rondo%20A%20La%20Turk.m4a + File Folder Count4 + Library Folder Count1 + + 2264 + + Track ID2264 + NameStrange Meadow Lark + ArtistThe Dave Brubeck Quartet + ComposerDave Brubeck + AlbumTime Out + GenreJazz + KindAAC audio file + Size10765899 + Total Time444242 + Disc Number1 + Disc Count1 + Track Number2 + Track Count7 + Year1959 + Date Modified2006-08-03T11:46:24Z + Date Added2009-10-03T14:52:27Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3438966197 + Play Date UTC2012-12-21T14:53:17Z + Normalization1033 + Artwork Count1 + Sort ArtistDave Brubeck Quartet + Persistent ID328F3A1589AD1FD7 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Dave%20Brubeck%20Quartet/Time%20Out/02%20Strange%20Meadow%20Lark.m4a + File Folder Count4 + Library Folder Count1 + + 2266 + + Track ID2266 + NameTake Five + ArtistThe Dave Brubeck Quartet + ComposerPaul Desmond + AlbumTime Out + GenreJazz + KindAAC audio file + Size7923853 + Total Time326796 + Disc Number1 + Disc Count1 + Track Number3 + Track Count7 + Year1959 + Date Modified2006-08-03T11:46:24Z + Date Added2009-10-03T14:52:27Z + Bit Rate192 + Sample Rate44100 + Play Count2 + Play Date3484980753 + Play Date UTC2014-06-07T04:42:33Z + Skip Count1 + Skip Date2011-01-17T11:15:33Z + Normalization1081 + Artwork Count1 + Sort ArtistDave Brubeck Quartet + Persistent ID09568520230C26CC + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Dave%20Brubeck%20Quartet/Time%20Out/03%20Take%20Five.m4a + File Folder Count4 + Library Folder Count1 + + 2268 + + Track ID2268 + NameThree To Get Ready + ArtistThe Dave Brubeck Quartet + ComposerDave Brubeck + AlbumTime Out + GenreJazz + KindAAC audio file + Size7901209 + Total Time325867 + Disc Number1 + Disc Count1 + Track Number4 + Track Count7 + Year1959 + Date Modified2006-08-03T11:46:24Z + Date Added2009-10-03T14:52:28Z + Bit Rate192 + Sample Rate44100 + Normalization1033 + Artwork Count1 + Sort ArtistDave Brubeck Quartet + Persistent ID855DC94A22F8CD92 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Dave%20Brubeck%20Quartet/Time%20Out/04%20Three%20To%20Get%20Ready.m4a + File Folder Count4 + Library Folder Count1 + + 2270 + + Track ID2270 + NameKathy's Waltz + ArtistThe Dave Brubeck Quartet + ComposerDave Brubeck + AlbumTime Out + GenreJazz + KindAAC audio file + Size7048364 + Total Time290619 + Disc Number1 + Disc Count1 + Track Number5 + Track Count7 + Year1959 + Date Modified2006-08-03T11:46:26Z + Date Added2009-10-03T14:52:28Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3441544403 + Play Date UTC2013-01-20T11:03:23Z + Normalization1032 + Artwork Count1 + Sort ArtistDave Brubeck Quartet + Persistent IDD843F56EF045F256 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Dave%20Brubeck%20Quartet/Time%20Out/05%20Kathy's%20Waltz.m4a + File Folder Count4 + Library Folder Count1 + + 2272 + + Track ID2272 + NameEverybody's Jumpin' + ArtistThe Dave Brubeck Quartet + ComposerDave Brubeck + AlbumTime Out + GenreJazz + KindAAC audio file + Size6425315 + Total Time264868 + Disc Number1 + Disc Count1 + Track Number6 + Track Count7 + Year1959 + Date Modified2006-08-03T11:46:26Z + Date Added2009-10-03T14:52:28Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3441544668 + Play Date UTC2013-01-20T11:07:48Z + Normalization1033 + Artwork Count1 + Sort ArtistDave Brubeck Quartet + Persistent IDE703651BCB06438D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Dave%20Brubeck%20Quartet/Time%20Out/06%20Everybody's%20Jumpin'.m4a + File Folder Count4 + Library Folder Count1 + + 2274 + + Track ID2274 + NamePick Up Sticks + ArtistThe Dave Brubeck Quartet + ComposerDave Brubeck + AlbumTime Out + GenreJazz + KindAAC audio file + Size6228367 + Total Time256695 + Disc Number1 + Disc Count1 + Track Number7 + Track Count7 + Year1959 + Date Modified2006-08-03T11:46:26Z + Date Added2009-10-03T14:52:28Z + Bit Rate192 + Sample Rate44100 + Normalization1033 + Artwork Count1 + Sort ArtistDave Brubeck Quartet + Persistent ID170B1574D7B9740B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Dave%20Brubeck%20Quartet/Time%20Out/07%20Pick%20Up%20Sticks.m4a + File Folder Count4 + Library Folder Count1 + + 3432 + + Track ID3432 + NameSo What + ArtistMiles Davis + ComposerMiles Davis + AlbumKind Of Blue + GenreJazz + KindAAC audio file + Size13154266 + Total Time545830 + Disc Number1 + Disc Count1 + Track Number1 + Track Count5 + Year1962 + Date Modified2006-07-30T08:32:06Z + Date Added2009-10-03T14:55:20Z + Bit Rate192 + Sample Rate44100 + Play Count2 + Play Date3389791251 + Play Date UTC2011-06-01T11:10:51Z + Skip Count2 + Skip Date2013-09-29T14:08:08Z + Normalization1242 + Artwork Count1 + Persistent IDFE64EBA1AAB2EE39 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Miles%20Davis/Kind%20Of%20Blue/01%20So%20What.m4a + File Folder Count4 + Library Folder Count1 + + 3434 + + Track ID3434 + NameFreddie Freeloader + ArtistMiles Davis + ComposerMiles Davis + AlbumKind Of Blue + GenreJazz + KindAAC audio file + Size13891424 + Total Time575830 + Disc Number1 + Disc Count1 + Track Number2 + Track Count5 + Year1962 + Date Modified2006-07-30T08:32:08Z + Date Added2009-10-03T14:55:20Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3389791827 + Play Date UTC2011-06-01T11:20:27Z + Normalization1255 + Artwork Count1 + Persistent IDCF3BC010B57179FF + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Miles%20Davis/Kind%20Of%20Blue/02%20Freddie%20Freeloader.m4a + File Folder Count4 + Library Folder Count1 + + 3436 + + Track ID3436 + NameBlue In Green + ArtistMiles Davis + ComposerMiles Davis + AlbumKind Of Blue + GenreJazz + KindAAC audio file + Size7924093 + Total Time328653 + Disc Number1 + Disc Count1 + Track Number3 + Track Count5 + Year1962 + Date Modified2006-07-30T08:32:08Z + Date Added2009-10-03T14:55:20Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3389792156 + Play Date UTC2011-06-01T11:25:56Z + Normalization454 + Artwork Count1 + Persistent ID891A0E18014C21E1 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Miles%20Davis/Kind%20Of%20Blue/03%20Blue%20In%20Green.m4a + File Folder Count4 + Library Folder Count1 + + 3438 + + Track ID3438 + NameAll Blues + ArtistMiles Davis + ComposerMiles Davis + AlbumKind Of Blue + GenreJazz + KindAAC audio file + Size16758594 + Total Time693880 + Disc Number1 + Disc Count1 + Track Number4 + Track Count5 + Year1962 + Date Modified2006-07-30T08:32:08Z + Date Added2009-10-03T14:55:20Z + Bit Rate192 + Sample Rate44100 + Normalization652 + Artwork Count1 + Persistent ID0F3E03E505FA78DE + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Miles%20Davis/Kind%20Of%20Blue/04%20All%20Blues.m4a + File Folder Count4 + Library Folder Count1 + + 3440 + + Track ID3440 + NameFlamenco Sketches + ArtistMiles Davis + ComposerMiles Davis + AlbumKind Of Blue + GenreJazz + KindAAC audio file + Size13693719 + Total Time565125 + Disc Number1 + Disc Count1 + Track Number5 + Track Count5 + Year1962 + Date Modified2006-07-30T08:32:08Z + Date Added2009-10-03T14:55:20Z + Bit Rate192 + Sample Rate44100 + Normalization535 + Artwork Count1 + Persistent ID0603BCEA2CD9EAAD + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Miles%20Davis/Kind%20Of%20Blue/05%20Flamenco%20Sketches.m4a + File Folder Count4 + Library Folder Count1 + + 3816 + + Track ID3816 + NamePart I + ArtistKeith Jarrett + ComposerKeith Jarrett + AlbumThe Koln Concert + GenreJazz + KindAAC audio file + Size37811783 + Total Time1561610 + Disc Number1 + Disc Count1 + Track Number1 + Track Count4 + Year1975 + Date Modified2006-07-27T16:19:42Z + Date Added2009-10-03T14:55:50Z + Bit Rate192 + Sample Rate44100 + Play Count2 + Play Date3389984791 + Play Date UTC2011-06-03T16:56:31Z + Normalization874 + Artwork Count1 + Sort AlbumKoln Concert + Persistent ID510557EFCBAD559F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Keith%20Jarrett/The%20Koln%20Concert/01%20Part%20I.m4a + File Folder Count4 + Library Folder Count1 + + 3818 + + Track ID3818 + NamePart II A + ArtistKeith Jarrett + ComposerKeith Jarrett + AlbumThe Koln Concert + GenreJazz + KindAAC audio file + Size21674287 + Total Time894756 + Disc Number1 + Disc Count1 + Track Number2 + Track Count4 + Year1975 + Date Modified2006-07-27T16:19:44Z + Date Added2009-10-03T14:55:50Z + Bit Rate192 + Sample Rate44100 + Play Count2 + Play Date3389985685 + Play Date UTC2011-06-03T17:11:25Z + Normalization774 + Artwork Count1 + Sort AlbumKoln Concert + Persistent ID7BE6157C7A944DEE + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Keith%20Jarrett/The%20Koln%20Concert/02%20Part%20II%20A.m4a + File Folder Count4 + Library Folder Count1 + + 3820 + + Track ID3820 + NamePart II B + ArtistKeith Jarrett + ComposerKeith Jarrett + AlbumThe Koln Concert + GenreJazz + KindAAC audio file + Size26508430 + Total Time1094517 + Disc Number1 + Disc Count1 + Track Number3 + Track Count4 + Year1975 + Date Modified2006-07-27T16:19:46Z + Date Added2009-10-03T14:55:50Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3389986780 + Play Date UTC2011-06-03T17:29:40Z + Normalization781 + Artwork Count1 + Sort AlbumKoln Concert + Persistent IDF14B6F46956F15A5 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Keith%20Jarrett/The%20Koln%20Concert/03%20Part%20II%20B.m4a + File Folder Count4 + Library Folder Count1 + + 3822 + + Track ID3822 + NamePart II C + ArtistKeith Jarrett + ComposerKeith Jarrett + AlbumThe Koln Concert + GenreJazz + KindAAC audio file + Size10098304 + Total Time416843 + Disc Number1 + Disc Count1 + Track Number4 + Track Count4 + Year1975 + Date Modified2006-07-27T16:19:48Z + Date Added2009-10-03T14:55:50Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3389987197 + Play Date UTC2011-06-03T17:36:37Z + Normalization948 + Artwork Count1 + Sort AlbumKoln Concert + Persistent ID29B257311FC05657 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Keith%20Jarrett/The%20Koln%20Concert/04%20Part%20II%20C.m4a + File Folder Count4 + Library Folder Count1 + + 3910 + + Track ID3910 + NameMy Favorite Things + ArtistJohn Coltrane + ComposerRichard Rodgers & Oscar Hammerstein + AlbumMy Favorite Things + GenreJazz + KindAAC audio file + Size19857464 + Total Time824005 + Disc Number1 + Disc Count1 + Track Number1 + Track Count4 + Year1961 + Date Modified2006-07-29T02:14:42Z + Date Added2009-10-03T14:56:00Z + Bit Rate192 + Sample Rate44100 + Play Count3 + Play Date3421814491 + Play Date UTC2012-06-06T02:31:31Z + Normalization986 + Artwork Count1 + Persistent ID9D22C3369D79BDD6 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/John%20Coltrane/My%20Favorite%20Things/01%20My%20Favorite%20Things.m4a + File Folder Count4 + Library Folder Count1 + + 3912 + + Track ID3912 + NameEverytime We Say Goodbye + ArtistJohn Coltrane + ComposerCole Porter + AlbumMy Favorite Things + GenreJazz + KindAAC audio file + Size8224551 + Total Time343212 + Disc Number1 + Disc Count1 + Track Number2 + Track Count4 + Year1961 + Date Modified2006-07-29T02:14:42Z + Date Added2009-10-03T14:56:00Z + Bit Rate192 + Sample Rate44100 + Normalization501 + Artwork Count1 + Persistent ID66630F00EAF672CA + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/John%20Coltrane/My%20Favorite%20Things/02%20Everytime%20We%20Say%20Goodbye.m4a + File Folder Count4 + Library Folder Count1 + + 3914 + + Track ID3914 + NameSummertime + ArtistJohn Coltrane + ComposerDu Bose Heyward & George Gershwin + AlbumMy Favorite Things + GenreJazz + KindAAC audio file + Size16752341 + Total Time695668 + Disc Number1 + Disc Count1 + Track Number3 + Track Count4 + Year1961 + Date Modified2006-07-29T02:14:42Z + Date Added2009-10-03T14:56:00Z + Bit Rate192 + Sample Rate44100 + Normalization1184 + Artwork Count1 + Persistent IDC9F6ED7879179675 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/John%20Coltrane/My%20Favorite%20Things/03%20Summertime.m4a + File Folder Count4 + Library Folder Count1 + + 3916 + + Track ID3916 + NameBut Not For Me + ArtistJohn Coltrane + ComposerGeorge & Ira Gershwin + AlbumMy Favorite Things + GenreJazz + KindAAC audio file + Size13916857 + Total Time574483 + Disc Number1 + Disc Count1 + Track Number4 + Track Count4 + Year1961 + Date Modified2006-07-29T02:14:44Z + Date Added2009-10-03T14:56:00Z + Bit Rate192 + Sample Rate44100 + Normalization972 + Artwork Count1 + Persistent IDB80A79285431AB29 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/John%20Coltrane/My%20Favorite%20Things/04%20But%20Not%20For%20Me.m4a + File Folder Count4 + Library Folder Count1 + + 9902 + + Track ID9902 + NameRide of the Valkyries + ArtistRobert Levine + AlbumThe Story of the Orchestra + GenreChildren's + KindAAC audio file + Size5219986 + Total Time155333 + Track Number1 + Track Count37 + Year2001 + Date Modified2011-11-19T18:05:28Z + Date Added2011-11-19T17:56:22Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3404906118 + Play Date UTC2011-11-23T09:45:18Z + Skip Count1 + Skip Date2013-11-24T09:17:14Z + Normalization1086 + Artwork Count1 + Sort AlbumStory of the Orchestra + Persistent ID7AB2D70463779E30 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/01%20Ride%20of%20the%20Valkyries.m4a + File Folder Count4 + Library Folder Count1 + + 9904 + + Track ID9904 + NameVivaldi: The 4 Seasons, Op. 8/1, RV 269, "Spring" - Allegro + ArtistTakako Nishizaki; Stephen Gunzenhauser: Capella Istropolitana + ComposerAntonio Vivaldi + AlbumThe Story of the Orchestra + GenreChildren's + KindAAC audio file + Size2759476 + Total Time81000 + Track Number2 + Track Count37 + Year2001 + Date Modified2011-11-19T18:05:28Z + Date Added2011-11-19T17:56:53Z + Bit Rate256 + Sample Rate44100 + Play Count2 + Play Date3457590437 + Play Date UTC2013-07-25T04:17:17Z + Normalization611 + Artwork Count1 + Sort AlbumStory of the Orchestra + Persistent ID772E86A4EFCC5E9D + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Takako%20Nishizaki%3B%20Stephen%20Gunzenhauser_%20Capella%20Istropolitana/The%20Story%20of%20the%20Orchestra/02%20Vivaldi_%20The%204%20Seasons,%20Op.%208_1,%20RV%20269,%20_Spring_%20-%20Allegro.m4a + File Folder Count4 + Library Folder Count1 + + 9906 + + Track ID9906 + NameWell-Tempered Clavier + ArtistRobert Levine + AlbumThe Story of the Orchestra + GenreChildren's + KindAAC audio file + Size2424704 + Total Time71493 + Track Number3 + Track Count37 + Year2001 + Date Modified2011-11-19T18:05:28Z + Date Added2011-11-19T17:57:09Z + Bit Rate256 + Sample Rate44100 + Play Count2 + Play Date3405230002 + Play Date UTC2011-11-27T03:43:22Z + Normalization97 + Artwork Count1 + Sort AlbumStory of the Orchestra + Persistent IDB71EDA2B4B4A4654 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/03%20Well-Tempered%20Clavier.m4a + File Folder Count4 + Library Folder Count1 + + 9908 + + Track ID9908 + NameSymphony No. 101"The Clock" + ArtistRobert Levine + AlbumThe Story of the Orchestra + GenreChildren's + KindAAC audio file + Size2448055 + Total Time71840 + Track Number4 + Track Count37 + Year2001 + Date Modified2011-11-19T18:05:29Z + Date Added2011-11-19T17:57:22Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3468149306 + Play Date UTC2013-11-24T09:18:26Z + Normalization178 + Artwork Count1 + Sort AlbumStory of the Orchestra + Persistent ID808B9893DF264C81 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/04%20Symphony%20No.%20101_The%20Clock_.m4a + File Folder Count4 + Library Folder Count1 + + 9910 + + Track ID9910 + NameEine Kleine Nachtmusik + ArtistRobert Levine + AlbumThe Story of the Orchestra + GenreChildren's + KindAAC audio file + Size2118200 + Total Time62333 + Track Number5 + Track Count37 + Year2001 + Date Modified2011-11-19T18:05:29Z + Date Added2011-11-19T17:57:36Z + Bit Rate256 + Sample Rate44100 + Play Count2 + Play Date3468149368 + Play Date UTC2013-11-24T09:19:28Z + Normalization255 + Artwork Count1 + Sort AlbumStory of the Orchestra + Persistent IDD49B2B9A1A1C99A9 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/05%20Eine%20Kleine%20Nachtmusik.m4a + File Folder Count4 + Library Folder Count1 + + 9912 + + Track ID9912 + NameFifth Symphony + ArtistRobert Levine + AlbumThe Story of the Orchestra + GenreChildren's + KindAAC audio file + Size3095446 + Total Time88826 + Track Number6 + Track Count37 + Year2001 + Date Modified2011-11-19T18:05:29Z + Date Added2011-11-19T17:57:47Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3468149457 + Play Date UTC2013-11-24T09:20:57Z + Normalization1083 + Artwork Count1 + Sort AlbumStory of the Orchestra + Persistent IDB2D547C13F6307B7 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/06%20Fifth%20Symphony.m4a + File Folder Count4 + Library Folder Count1 + + 9914 + + Track ID9914 + NameNinth Symphony + ArtistRobert Levine + AlbumThe Story of the Orchestra + GenreChildren's + KindAAC audio file + Size7195041 + Total Time214000 + Track Number7 + Track Count37 + Year2001 + Date Modified2011-11-19T18:05:30Z + Date Added2011-11-19T17:58:02Z + Bit Rate256 + Sample Rate44100 + Normalization987 + Artwork Count1 + Sort AlbumStory of the Orchestra + Persistent ID587702B36EE548C3 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/07%20Ninth%20Symphony.m4a + File Folder Count4 + Library Folder Count1 + + 9916 + + Track ID9916 + NameSleeping Beauty + ArtistRobert Levine + AlbumThe Story of the Orchestra + GenreChildren's + KindAAC audio file + Size3365239 + Total Time100173 + Track Number8 + Track Count37 + Year2001 + Date Modified2011-11-19T18:05:30Z + Date Added2011-11-19T17:58:34Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3468149671 + Play Date UTC2013-11-24T09:24:31Z + Normalization185 + Artwork Count1 + Sort AlbumStory of the Orchestra + Persistent ID3D4F2777958106AE + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/08%20Sleeping%20Beauty.m4a + File Folder Count4 + Library Folder Count1 + + 9918 + + Track ID9918 + NameHungarian Dance + ArtistRobert Levine + AlbumThe Story of the Orchestra + GenreChildren's + KindAAC audio file + Size2382539 + Total Time68000 + Track Number9 + Track Count37 + Year2001 + Date Modified2011-11-19T18:05:30Z + Date Added2011-11-19T17:58:49Z + Bit Rate256 + Sample Rate44100 + Play Count2 + Play Date3462766642 + Play Date UTC2013-09-23T02:07:22Z + Normalization817 + Artwork Count1 + Sort AlbumStory of the Orchestra + Persistent ID106638338A7ACFAF + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/09%20Hungarian%20Dance.m4a + File Folder Count4 + Library Folder Count1 + + 9920 + + Track ID9920 + NameSymphony #4 + ArtistRobert Levine + AlbumThe Story of the Orchestra + GenreChildren's + KindAAC audio file + Size3576577 + Total Time105826 + Track Number10 + Track Count37 + Year2001 + Date Modified2011-11-19T18:05:31Z + Date Added2011-11-19T17:58:59Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3462766748 + Play Date UTC2013-09-23T02:09:08Z + Normalization393 + Artwork Count1 + Sort AlbumStory of the Orchestra + Persistent ID1C4074434755D0AB + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/10%20Symphony%20%234.m4a + File Folder Count4 + Library Folder Count1 + + 9922 + + Track ID9922 + NameArabesque No. 1 + ArtistRobert Levine + AlbumThe Story of the Orchestra + GenreChildren's + KindAAC audio file + Size3044514 + Total Time90333 + Track Number11 + Track Count37 + Year2001 + Date Modified2011-11-19T18:05:31Z + Date Added2011-11-19T17:59:14Z + Bit Rate256 + Sample Rate44100 + Play Count3 + Play Date3462766838 + Play Date UTC2013-09-23T02:10:38Z + Normalization394 + Artwork Count1 + Sort AlbumStory of the Orchestra + Persistent ID46730D41C014DD8D + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/11%20Arabesque%20No.%201.m4a + File Folder Count4 + Library Folder Count1 + + 9924 + + Track ID9924 + NameRite of Spring + ArtistRobert Levine + AlbumThe Story of the Orchestra + GenreChildren's + KindAAC audio file + Size2626462 + Total Time77173 + Track Number12 + Track Count37 + Year2001 + Date Modified2011-11-19T18:05:31Z + Date Added2011-11-19T17:59:27Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3404590728 + Play Date UTC2011-11-19T18:08:48Z + Normalization18 + Artwork Count1 + Sort AlbumStory of the Orchestra + Persistent ID82A664A1DD3580F2 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/12%20Rite%20of%20Spring.m4a + File Folder Count4 + Library Folder Count1 + + 9926 + + Track ID9926 + NameSymphony No.4, Third movement + ArtistRobert Levine + AlbumThe Story of the Orchestra + GenreChildren's + KindAAC audio file + Size2181230 + Total Time64666 + Track Number13 + Track Count37 + Year2001 + Date Modified2011-11-19T18:05:31Z + Date Added2011-11-19T17:59:38Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3404590792 + Play Date UTC2011-11-19T18:09:52Z + Normalization273 + Artwork Count1 + Sort AlbumStory of the Orchestra + Persistent ID530A5FD0ADB3C715 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/13%20Symphony%20No.4,%20Third%20movement.m4a + File Folder Count4 + Library Folder Count1 + + 9928 + + Track ID9928 + NameSonata for Violin and Piano n A Major + ArtistRobert Levine + AlbumThe Story of the Orchestra + GenreChildren's + KindAAC audio file + Size4118907 + Total Time122333 + Track Number14 + Track Count37 + Year2001 + Date Modified2011-11-19T18:05:32Z + Date Added2011-11-19T17:59:47Z + Bit Rate256 + Sample Rate44100 + Normalization309 + Artwork Count1 + Sort AlbumStory of the Orchestra + Persistent IDD2FD290C334DB76C + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/14%20Sonata%20for%20Violin%20and%20Piano%20n%20A%20Major.m4a + File Folder Count4 + Library Folder Count1 + + 9930 + + Track ID9930 + NameConcert for Viola and orchestra + ArtistRobert Levine + AlbumThe Story of the Orchestra + GenreChildren's + KindAAC audio file + Size1849907 + Total Time49160 + Track Number15 + Track Count37 + Year2001 + Date Modified2011-11-19T18:05:32Z + Date Added2011-11-19T18:00:03Z + Bit Rate256 + Sample Rate44100 + Normalization271 + Artwork Count1 + Sort AlbumStory of the Orchestra + Persistent IDEA8C4922A3E5CEA5 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/15%20Concert%20for%20Viola%20and%20orchestra.m4a + File Folder Count4 + Library Folder Count1 + + 9932 + + Track ID9932 + NameWillaim Tell Overture + ArtistRobert Levine + AlbumThe Story of the Orchestra + GenreChildren's + KindAAC audio file + Size6212931 + Total Time186000 + Track Number16 + Track Count37 + Year2001 + Date Modified2011-11-19T18:05:32Z + Date Added2011-11-19T18:00:09Z + Bit Rate256 + Sample Rate44100 + Normalization35 + Artwork Count1 + Sort AlbumStory of the Orchestra + Persistent ID83ED6C986E5DA545 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/16%20Willaim%20Tell%20Overture.m4a + File Folder Count4 + Library Folder Count1 + + 9934 + + Track ID9934 + NameSaint-Saëns: Carnival Of The Animals, The Elephant + ArtistMarián Lapšanský, Peter Toperczer, Etc.; Ondrej Lenárd: Czechoslovak Radio Symphony Orchestra + ComposerCamille Saint-Saëns + AlbumThe Story of the Orchestra + GenreChildren's + KindAAC audio file + Size3284572 + Total Time97333 + Track Number17 + Track Count37 + Year2001 + Date Modified2011-11-19T18:05:34Z + Date Added2011-11-19T18:00:32Z + Bit Rate256 + Sample Rate44100 + Normalization113 + Artwork Count1 + Sort AlbumStory of the Orchestra + Persistent IDCBB0AF51347C918F + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Maria%CC%81n%20Laps%CC%8Cansky%CC%81,%20Peter%20Toperczer,%20Etc.%3B%20Ondrej%20Lena%CC%81rd_%20Czechoslovak%20Radio%20Symphony%20Orchestra/The%20Story%20of%20the%20Orchestra/17%20Saint-Sae%CC%88ns_%20Carnival%20Of%20The%20Animals,%20The%20Elephant.m4a + File Folder Count4 + Library Folder Count1 + + 9936 + + Track ID9936 + NameDance of the Blessed Spirits + ArtistRobert Levine + AlbumThe Story of the Orchestra + GenreChildren's + KindAAC audio file + Size2879751 + Total Time85506 + Track Number18 + Track Count37 + Year2001 + Date Modified2011-11-19T18:05:34Z + Date Added2011-11-19T18:00:44Z + Bit Rate256 + Sample Rate44100 + Normalization246 + Artwork Count1 + Sort AlbumStory of the Orchestra + Persistent IDC2ECD9A569745D17 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/18%20Dance%20of%20the%20Blessed%20Spirits.m4a + File Folder Count4 + Library Folder Count1 + + 9938 + + Track ID9938 + NameBach: Orchestral Suite #2 In B Minor - Badinerie + ArtistHelmut Müller-Brühl: Cologne Chamber Orchestra + ComposerJohann Sebastian Bach + AlbumThe Story of the Orchestra + GenreChildren's + KindAAC audio file + Size2856961 + Total Time81493 + Track Number19 + Track Count37 + Year2001 + Date Modified2011-11-19T18:05:34Z + Date Added2011-11-19T18:00:54Z + Bit Rate256 + Sample Rate44100 + Skip Count1 + Skip Date2013-11-24T09:17:08Z + Normalization318 + Artwork Count1 + Sort AlbumStory of the Orchestra + Persistent IDD486BD57711C4391 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Helmut%20Mu%CC%88ller-Bru%CC%88hl_%20Cologne%20Chamber%20Orchestra/The%20Story%20of%20the%20Orchestra/19%20Bach_%20Orchestral%20Suite%20%232%20In%20B%20Minor%20-%20Badinerie.m4a + File Folder Count4 + Library Folder Count1 + + 9940 + + Track ID9940 + NameSymphony No. 4, Third Movement + ArtistRobert Levine + AlbumThe Story of the Orchestra + GenreChildren's + KindAAC audio file + Size1257633 + Total Time36173 + Track Number20 + Track Count37 + Year2001 + Date Modified2011-11-19T18:05:35Z + Date Added2011-11-19T18:01:04Z + Bit Rate256 + Sample Rate44100 + Normalization234 + Artwork Count1 + Sort AlbumStory of the Orchestra + Persistent ID916F38FD166C6099 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/20%20Symphony%20No.%204,%20Third%20Movement.m4a + File Folder Count4 + Library Folder Count1 + + 9942 + + Track ID9942 + NameSinfonia in G Major for Two Oboes + ArtistRobert Levine + AlbumThe Story of the Orchestra + GenreChildren's + KindAAC audio file + Size2471588 + Total Time71666 + Track Number21 + Track Count37 + Year2001 + Date Modified2011-11-19T18:05:35Z + Date Added2011-11-19T18:01:09Z + Bit Rate256 + Sample Rate44100 + Normalization303 + Artwork Count1 + Sort AlbumStory of the Orchestra + Persistent IDBF85C57C497D95F2 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/21%20Sinfonia%20in%20G%20Major%20for%20Two%20Oboes.m4a + File Folder Count4 + Library Folder Count1 + + 9944 + + Track ID9944 + NameConcerto for Clarinet and Orchestra + ArtistRobert Levine + AlbumThe Story of the Orchestra + GenreChildren's + KindAAC audio file + Size3148737 + Total Time90826 + Track Number22 + Track Count37 + Year2001 + Date Modified2011-11-19T18:05:35Z + Date Added2011-11-19T18:01:18Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3405229929 + Play Date UTC2011-11-27T03:42:09Z + Normalization500 + Artwork Count1 + Sort AlbumStory of the Orchestra + Persistent IDDB2E63C59286F632 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/22%20Concerto%20for%20Clarinet%20and%20Orchestra.m4a + File Folder Count4 + Library Folder Count1 + + 9946 + + Track ID9946 + NameBolero + ArtistRobert Levine + AlbumThe Story of the Orchestra + GenreChildren's + KindAAC audio file + Size3709629 + Total Time110666 + Track Number23 + Track Count37 + Year2001 + Date Modified2011-11-19T18:05:35Z + Date Added2011-11-19T18:01:30Z + Bit Rate256 + Sample Rate44100 + Normalization32 + Artwork Count1 + Sort AlbumStory of the Orchestra + Persistent ID59D7E69EB2859730 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/23%20Bolero.m4a + File Folder Count4 + Library Folder Count1 + + 9948 + + Track ID9948 + NameSorcerer's Apprentice + ArtistRobert Levine + AlbumThe Story of the Orchestra + GenreChildren's + KindAAC audio file + Size2472096 + Total Time72333 + Track Number24 + Track Count37 + Year2001 + Date Modified2011-11-19T18:05:36Z + Date Added2011-11-19T18:01:43Z + Bit Rate256 + Sample Rate44100 + Normalization159 + Artwork Count1 + Sort AlbumStory of the Orchestra + Persistent ID2127CBE074F3126B + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/24%20Sorcerer's%20Apprentice.m4a + File Folder Count4 + Library Folder Count1 + + 9950 + + Track ID9950 + NameMother Good Suiteq + ArtistRobert Levine + AlbumThe Story of the Orchestra + GenreChildren's + KindAAC audio file + Size4101013 + Total Time121173 + Track Number25 + Track Count37 + Year2001 + Date Modified2011-11-19T18:05:36Z + Date Added2011-11-19T18:01:51Z + Bit Rate256 + Sample Rate44100 + Normalization660 + Artwork Count1 + Sort AlbumStory of the Orchestra + Persistent IDFC78F5E806B0D7C5 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/25%20Mother%20Good%20Suiteq.m4a + File Folder Count4 + Library Folder Count1 + + 9952 + + Track ID9952 + NameConcert for trumpet in E Flat + ArtistRobert Levine + AlbumThe Story of the Orchestra + GenreChildren's + KindAAC audio file + Size3902752 + Total Time115493 + Track Number26 + Track Count37 + Year2001 + Date Modified2011-11-19T18:05:36Z + Date Added2011-11-19T18:02:04Z + Bit Rate256 + Sample Rate44100 + Normalization389 + Artwork Count1 + Sort AlbumStory of the Orchestra + Persistent IDA584A2F3050356E7 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/26%20Concert%20for%20trumpet%20in%20E%20Flat.m4a + File Folder Count4 + Library Folder Count1 + + 9954 + + Track ID9954 + NameHorn Concerto No. 1 + ArtistRobert Levine + AlbumThe Story of the Orchestra + GenreChildren's + KindAAC audio file + Size4029984 + Total Time119666 + Track Number27 + Track Count37 + Year2001 + Date Modified2011-11-19T18:05:37Z + Date Added2011-11-19T18:02:16Z + Bit Rate256 + Sample Rate44100 + Normalization90 + Artwork Count1 + Sort AlbumStory of the Orchestra + Persistent IDC6AACA7DF1F3152E + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/27%20Horn%20Concerto%20No.%201.m4a + File Folder Count4 + Library Folder Count1 + + 9956 + + Track ID9956 + NameSymphony No.3 + ArtistRobert Levine + AlbumThe Story of the Orchestra + GenreChildren's + KindAAC audio file + Size2641781 + Total Time80333 + Track Number28 + Track Count37 + Year2001 + Date Modified2011-11-19T18:05:37Z + Date Added2011-11-19T18:02:30Z + Bit Rate256 + Sample Rate44100 + Normalization480 + Artwork Count1 + Sort AlbumStory of the Orchestra + Persistent IDC7D26FF6D654AFD2 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/28%20Symphony%20No.3.m4a + File Folder Count4 + Library Folder Count1 + + 9958 + + Track ID9958 + NamePictures at an Exhibition + ArtistRobert Levine + AlbumThe Story of the Orchestra + GenreChildren's + KindAAC audio file + Size5335126 + Total Time158840 + Track Number29 + Track Count37 + Year2001 + Date Modified2011-11-19T18:05:37Z + Date Added2011-11-19T18:02:39Z + Bit Rate256 + Sample Rate44100 + Normalization841 + Artwork Count1 + Sort AlbumStory of the Orchestra + Persistent ID55237604C77E3863 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/29%20Pictures%20at%20an%20Exhibition.m4a + File Folder Count4 + Library Folder Count1 + + 9960 + + Track ID9960 + NameShchedrin: Carmen Suite - Changing Of The Guard + ArtistTheodore Kuchar: Ukranian State Symphony Orchestra + ComposerRodion K. Shchedrin + AlbumThe Story of the Orchestra + GenreChildren's + KindAAC audio file + Size4022470 + Total Time119333 + Track Number30 + Track Count37 + Year2001 + Date Modified2011-11-19T18:05:38Z + Date Added2011-11-19T18:02:56Z + Bit Rate256 + Sample Rate44100 + Normalization385 + Artwork Count1 + Sort AlbumStory of the Orchestra + Persistent ID19843D1DA0D02359 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Theodore%20Kuchar_%20Ukranian%20State%20Symphony%20Orchestra/The%20Story%20of%20the%20Orchestra/30%20Shchedrin_%20Carmen%20Suite%20-%20Changing%20Of%20The%20Guard.m4a + File Folder Count4 + Library Folder Count1 + + 9962 + + Track ID9962 + NameSynphony No.7 + ArtistRobert Levine + AlbumThe Story of the Orchestra + GenreChildren's + KindAAC audio file + Size2085247 + Total Time59160 + Track Number31 + Track Count37 + Year2001 + Date Modified2011-11-19T18:05:38Z + Date Added2011-11-19T18:03:09Z + Bit Rate256 + Sample Rate44100 + Normalization345 + Artwork Count1 + Sort AlbumStory of the Orchestra + Persistent ID4BE85908E5FE8173 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/31%20Synphony%20No.7.m4a + File Folder Count4 + Library Folder Count1 + + 9964 + + Track ID9964 + NameSynphony No.4 + ArtistRobert Levine + AlbumThe Story of the Orchestra + GenreChildren's + KindAAC audio file + Size3492768 + Total Time104666 + Track Number32 + Track Count37 + Year2001 + Date Modified2011-11-19T18:05:38Z + Date Added2011-11-19T18:03:15Z + Bit Rate256 + Sample Rate44100 + Normalization668 + Artwork Count1 + Sort AlbumStory of the Orchestra + Persistent ID6F8D1BF792EE43CF + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/32%20Synphony%20No.4.m4a + File Folder Count4 + Library Folder Count1 + + 9966 + + Track ID9966 + NamePeer Gynt + ArtistRobert Levine + AlbumThe Story of the Orchestra + GenreChildren's + KindAAC audio file + Size4262412 + Total Time126333 + Track Number33 + Track Count37 + Year2001 + Date Modified2011-11-19T18:05:39Z + Date Added2011-11-19T18:03:26Z + Bit Rate256 + Sample Rate44100 + Normalization123 + Artwork Count1 + Sort AlbumStory of the Orchestra + Persistent IDFC8BA6998175909B + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/33%20Peer%20Gynt.m4a + File Folder Count4 + Library Folder Count1 + + 9968 + + Track ID9968 + NameNutcracker + ArtistRobert Levine + AlbumThe Story of the Orchestra + GenreChildren's + KindAAC audio file + Size4291894 + Total Time128173 + Track Number34 + Track Count37 + Year2001 + Date Modified2011-11-19T18:05:39Z + Date Added2011-11-19T18:03:39Z + Bit Rate256 + Sample Rate44100 + Normalization132 + Artwork Count1 + Sort AlbumStory of the Orchestra + Persistent IDD716867F8AD78023 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/34%20Nutcracker.m4a + File Folder Count4 + Library Folder Count1 + + 9970 + + Track ID9970 + NameToccata and Fugue in D Minor + ArtistRobert Levine + AlbumThe Story of the Orchestra + GenreChildren's + KindAAC audio file + Size5935304 + Total Time176000 + Track Number35 + Track Count37 + Year2001 + Date Modified2011-11-19T18:05:39Z + Date Added2011-11-19T18:03:52Z + Bit Rate256 + Sample Rate44100 + Normalization278 + Artwork Count1 + Sort AlbumStory of the Orchestra + Persistent ID617D4C91459670CA + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/35%20Toccata%20and%20Fugue%20in%20D%20Minor.m4a + File Folder Count4 + Library Folder Count1 + + 9972 + + Track ID9972 + NameMoonlight Sonata + ArtistRobert Levine + AlbumThe Story of the Orchestra + GenreChildren's + KindAAC audio file + Size4329767 + Total Time143000 + Track Number36 + Track Count37 + Year2001 + Date Modified2011-11-19T18:05:40Z + Date Added2011-11-19T18:04:09Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3468165310 + Play Date UTC2013-11-24T13:45:10Z + Normalization101 + Artwork Count1 + Sort AlbumStory of the Orchestra + Persistent ID06F7145188A8A1AC + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/36%20Moonlight%20Sonata.m4a + File Folder Count4 + Library Folder Count1 + + 9974 + + Track ID9974 + NameConcerto Champetre + ArtistRobert Levine + AlbumThe Story of the Orchestra + GenreChildren's + KindAAC audio file + Size5843082 + Total Time174666 + Track Number37 + Track Count37 + Year2001 + Date Modified2011-11-19T18:05:40Z + Date Added2011-11-19T18:04:23Z + Bit Rate256 + Sample Rate44100 + Normalization218 + Artwork Count1 + Sort AlbumStory of the Orchestra + Persistent IDC05E0EEA15F58BE0 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/37%20Concerto%20Champetre.m4a + File Folder Count4 + Library Folder Count1 + + 10882 + + Track ID10882 + NamePi's Lullaby + ArtistAnwar Khurshid / Aruna Kalle / Cardinal Vaughan Memorial School / Chris Bleth / Courtney Grueschow / Evergreen Club Contemporary Gamelan / Jatinder Jeetu / Jeetu Prakesh / Mychael Danna / Rajesh Srinivasan / Thomas Fetherstonhaugh / Ulhas Bapat / V Selvag + AlbumLife Of Pi + GenreClassical + KindMPEG audio file + Size8930644 + Total Time222798 + Year2012 + Date Modified2013-01-14T03:20:50Z + Date Added2013-01-14T03:21:05Z + Bit Rate320 + Sample Rate44100 + Play Count4 + Play Date3485103823 + Play Date UTC2014-06-08T14:53:43Z + Rating100 + Album Rating100 + Album Rating Computed + Artwork Count1 + Persistent ID566F6E4DE27704C5 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Anwar%20Khurshid%20_%20Aruna%20Kalle%20_%20Cardinal%20Vaughan%20Memorial%20School%20_%20Chris%20Bleth%20_%20Courtney%20Grueschow%20_%20Evergreen%20Club%20Contemporary%20Gamelan%20_%20Jatinder%20Jeetu%20_%20Jeetu%20Prakesh%20_%20Mychael%20Danna%20_%20Rajesh%20Srinivasan%20_%20Thomas%20Fetherstonhaugh%20_%20Ulhas%20Bapat%20_%20V%20Selv/Life%20Of%20Pi/Pi's%20Lullaby.mp3 + File Folder Count4 + Library Folder Count1 + + 11506 + + Track ID11506 + NameGod Shuffled His Feet + ArtistCrash Test Dummies + ComposerBrad Roberts + AlbumGod Shuffled His Feet + GenreAlternative & Punk + KindMPEG audio file + Size6256402 + Total Time310543 + Disc Number1 + Disc Count1 + Track Number1 + Track Count12 + Year1993 + Date Modified2014-05-16T15:57:30Z + Date Added2014-05-16T15:57:30Z + Bit Rate160 + Sample Rate44100 + Play Count1 + Play Date3360253487 + Play Date UTC2010-06-24T14:14:47Z + Skip Count2 + Skip Date2014-06-12T12:10:15Z + Rating80 + Album Rating80 + Album Rating Computed + Normalization3238 + Artwork Count1 + Persistent IDF44EEB8D03AEDA47 + Track TypeFile + File Type1297106739 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Crash%20Test%20Dummies/God%20Shuffled%20His%20Feet/01%20God%20Shuffled%20His%20Feet.mp3 + File Folder Count4 + Library Folder Count1 + + 11510 + + Track ID11510 + NameFloe + ArtistPhilip Glass + Album ArtistPhilip Glass Ensemble: Philip Glass + ComposerPHILIP GLASS (b. 1937) + AlbumGlassworks - Expanded Edition + GenreClassical + KindMPEG audio file + Size7215809 + Total Time359575 + Disc Number1 + Disc Count1 + Track Number2 + Track Count11 + Year2003 + Date Modified2014-05-16T15:57:40Z + Date Added2014-05-16T15:57:40Z + Bit Rate160 + Sample Rate44100 + Play Count1 + Play Date3467302891 + Play Date UTC2013-11-14T14:11:31Z + Rating60 + Album Rating60 + Album Rating Computed + Normalization1162 + Compilation + Artwork Count1 + Persistent ID532195CDAD6610DC + Track TypeFile + File Type1297106739 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Glassworks%20-%20Expanded%20Edition/02%20Floe.mp3 + File Folder Count4 + Library Folder Count1 + + 11512 + + Track ID11512 + NameRubric + ArtistPhilip Glass + Album ArtistPhilip Glass Ensemble: Philip Glass + ComposerPHILIP GLASS (b. 1937) + AlbumGlassworks - Expanded Edition + GenreClassical + KindMPEG audio file + Size7317166 + Total Time364643 + Disc Number1 + Disc Count1 + Track Number4 + Track Count11 + Year2003 + Date Modified2014-05-16T15:57:46Z + Date Added2014-05-16T15:57:44Z + Bit Rate160 + Sample Rate44100 + Play Count1 + Play Date3467303716 + Play Date UTC2013-11-14T14:25:16Z + Rating40 + Album Rating60 + Album Rating Computed + Normalization1735 + Compilation + Artwork Count1 + Persistent ID04794A8300E20189 + Track TypeFile + File Type1297106739 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Glassworks%20-%20Expanded%20Edition/04%20Rubric.mp3 + File Folder Count4 + Library Folder Count1 + + 11524 + + Track ID11524 + NameStairway To Heaven + ArtistRodrigo Y Gabriela + Album ArtistRodrigo y Gabriela + ComposerJimmy Page.Robert Plant + AlbumRodrigo Y Gabriela + GenreJazz + KindMPEG audio file + Size5748606 + Total Time284264 + Disc Number1 + Disc Count1 + Track Number6 + Track Count9 + Year2006 + Date Modified2014-05-16T15:58:16Z + Date Added2014-05-16T15:58:11Z + Bit Rate160 + Sample Rate44100 + Play Count12 + Play Date3463328692 + Play Date UTC2013-09-29T14:14:52Z + Skip Count1 + Skip Date2014-06-12T12:09:34Z + Rating100 + Album Rating100 + Album Rating Computed + Normalization1690 + Artwork Count1 + Persistent ID8DF4FFBDF2ABADFE + Track TypeFile + File Type1297106739 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rodrigo%20y%20Gabriela/Rodrigo%20Y%20Gabriela/06%20Stairway%20To%20Heaven.mp3 + File Folder Count4 + Library Folder Count1 + + + Playlists + + + NameMusic for Maya + Playlist ID21282 + Playlist Persistent IDDE8BE7E8F6D143BA + All Items + Playlist Items + + + Track ID9938 + + + Track ID9934 + + + Track ID9902 + + + Track ID9906 + + + Track ID9908 + + + Track ID9910 + + + Track ID9912 + + + Track ID9914 + + + Track ID9916 + + + Track ID9918 + + + Track ID9920 + + + Track ID9922 + + + Track ID9924 + + + Track ID9926 + + + Track ID9928 + + + Track ID9930 + + + Track ID9932 + + + Track ID9936 + + + Track ID9940 + + + Track ID9942 + + + Track ID9944 + + + Track ID9946 + + + Track ID9948 + + + Track ID9950 + + + Track ID9952 + + + Track ID9954 + + + Track ID9956 + + + Track ID9958 + + + Track ID9962 + + + Track ID9964 + + + Track ID9966 + + + Track ID9968 + + + Track ID9970 + + + Track ID9972 + + + Track ID9974 + + + Track ID9904 + + + Track ID9960 + + + Track ID2262 + + + Track ID2264 + + + Track ID2266 + + + Track ID2268 + + + Track ID2270 + + + Track ID2272 + + + Track ID2274 + + + Track ID1694 + + + Track ID1696 + + + Track ID1698 + + + Track ID1700 + + + Track ID1702 + + + Track ID10882 + + + Track ID3910 + + + Track ID3912 + + + Track ID3914 + + + Track ID3916 + + + Track ID3816 + + + Track ID3818 + + + Track ID3820 + + + Track ID3822 + + + Track ID3432 + + + Track ID3434 + + + Track ID3436 + + + Track ID3438 + + + Track ID3440 + + + Track ID11506 + + + Track ID11510 + + + Track ID11512 + + + Track ID11524 + + + + + + \ No newline at end of file diff --git a/GeekyProjects/C1_ParsingMusicList/mymusic.xml b/GeekyProjects/C1_ParsingMusicList/mymusic.xml new file mode 100644 index 0000000..5b72586 --- /dev/null +++ b/GeekyProjects/C1_ParsingMusicList/mymusic.xml @@ -0,0 +1,143232 @@ + + + + + Major Version1 + Minor Version1 + Date2014-06-06T14:46:37Z + Application Version11.2.2 + Features5 + Show Content Ratings + Music Folderfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/ + Library Persistent ID5E7B8CC1F12D8073 + Tracks + + 1694 + + Track ID1694 + NameQuest for music (Maaya Malava Gowla) + ArtistZakir Hussain, Kunnakudi Vaidyanathan + AlbumGolden Krithis - Colors + GenrePop + KindAAC audio file + Size5672310 + Total Time236308 + Disc Number1 + Disc Count1 + Track Number1 + Track Count5 + Year2002 + Date Modified2006-08-13T06:49:38Z + Date Added2009-10-03T14:50:47Z + Bit Rate192 + Sample Rate44100 + Play Count3 + Play Date3462978530 + Play Date UTC2013-09-25T12:58:50Z + Skip Count2 + Skip Date2013-07-25T04:18:39Z + Normalization1100 + Artwork Count1 + Persistent ID5F920396806BFE27 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Zakir%20Hussain,%20Kunnakudi%20Vaidyanathan/Golden%20Krithis%20-%20Colors/01%20Quest%20for%20music%20(Maaya%20Malava%20Gow.m4a + File Folder Count4 + Library Folder Count1 + + 1696 + + Track ID1696 + NameValliya Naayaganaa (Shanmuga Priya) + ArtistZakir Hussain, Kunnakudi Vaidyanathan + AlbumGolden Krithis - Colors + GenrePop + KindAAC audio file + Size22043576 + Total Time913007 + Disc Number1 + Disc Count1 + Track Number2 + Track Count5 + Year2002 + Date Modified2006-08-13T06:49:34Z + Date Added2009-10-03T14:50:47Z + Bit Rate192 + Sample Rate44100 + Play Count3 + Play Date3461605007 + Play Date UTC2013-09-09T15:26:47Z + Normalization1117 + Artwork Count1 + Persistent IDDFBE2E85565513A1 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Zakir%20Hussain,%20Kunnakudi%20Vaidyanathan/Golden%20Krithis%20-%20Colors/02%20Valliya%20Naayaganaa%20(Shanmuga%20Priy.m4a + File Folder Count4 + Library Folder Count1 + + 1698 + + Track ID1698 + NameEvolution (Maaya Malava Gowla) + ArtistZakir Hussain, Kunnakudi Vaidyanathan + AlbumGolden Krithis - Colors + GenrePop + KindAAC audio file + Size12631717 + Total Time524072 + Disc Number1 + Disc Count1 + Track Number3 + Track Count5 + Year2002 + Date Modified2006-08-13T06:49:24Z + Date Added2009-10-03T14:50:47Z + Bit Rate192 + Sample Rate44100 + Play Count2 + Play Date3461605531 + Play Date UTC2013-09-09T15:35:31Z + Normalization1011 + Artwork Count1 + Persistent IDC8BCD916312CCF2E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Zakir%20Hussain,%20Kunnakudi%20Vaidyanathan/Golden%20Krithis%20-%20Colors/03%20Evolution%20(Maaya%20Malava%20Gowla).m4a + File Folder Count4 + Library Folder Count1 + + 1700 + + Track ID1700 + NameSaamajavaragamana (Hindolam) + ArtistZakir Hussain, Kunnakudi Vaidyanathan + AlbumGolden Krithis - Colors + GenrePop + KindAAC audio file + Size22571239 + Total Time934810 + Disc Number1 + Disc Count1 + Track Number4 + Track Count5 + Year2002 + Date Modified2006-08-13T06:49:20Z + Date Added2009-10-03T14:50:47Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3389411811 + Play Date UTC2011-05-28T01:46:51Z + Normalization1039 + Artwork Count1 + Persistent IDC25F6C69215E9E77 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Zakir%20Hussain,%20Kunnakudi%20Vaidyanathan/Golden%20Krithis%20-%20Colors/04%20Saamajavaragamana%20(Hindolam).m4a + File Folder Count4 + Library Folder Count1 + + 1702 + + Track ID1702 + NameAbharaama Bhakti (Bandhuvaraali) + ArtistZakir Hussain, Kunnakudi Vaidyanathan + AlbumGolden Krithis - Colors + GenrePop + KindAAC audio file + Size19332696 + Total Time798138 + Disc Number1 + Disc Count1 + Track Number5 + Track Count5 + Year2002 + Date Modified2006-08-13T06:49:10Z + Date Added2009-10-03T14:50:47Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3389412609 + Play Date UTC2011-05-28T02:00:09Z + Normalization1102 + Artwork Count1 + Persistent ID35B87C22AE49A93F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Zakir%20Hussain,%20Kunnakudi%20Vaidyanathan/Golden%20Krithis%20-%20Colors/05%20Abharaama%20Bhakti%20(Bandhuvaraali).m4a + File Folder Count4 + Library Folder Count1 + + 1704 + + Track ID1704 + NameMaking Music + ArtistZakir Hussain + ComposerZakir Hussain + AlbumMaking Music + GenreWorld + KindAAC audio file + Size18180717 + Total Time750606 + Disc Number1 + Disc Count1 + Track Number1 + Track Count8 + Year1987 + Date Modified2006-08-13T06:49:00Z + Date Added2009-10-03T14:50:47Z + Bit Rate192 + Sample Rate44100 + Normalization363 + Artwork Count1 + Persistent IDEA2A2255B08BC7CE + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Zakir%20Hussain/Making%20Music/01%20Making%20Music.m4a + File Folder Count4 + Library Folder Count1 + + 1706 + + Track ID1706 + NameZakir + ArtistZakir Hussain + ComposerJohn McLaughlin + AlbumMaking Music + GenreWorld + KindAAC audio file + Size9304241 + Total Time383801 + Disc Number1 + Disc Count1 + Track Number2 + Track Count8 + Year1987 + Date Modified2006-08-13T06:48:52Z + Date Added2009-10-03T14:50:47Z + Bit Rate192 + Sample Rate44100 + Normalization323 + Artwork Count1 + Persistent IDDBEF6C8EFC7AE171 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Zakir%20Hussain/Making%20Music/02%20Zakir.m4a + File Folder Count4 + Library Folder Count1 + + 1708 + + Track ID1708 + NameWater Girl + ArtistZakir Hussain + ComposerZakir Hussain + AlbumMaking Music + GenreWorld + KindAAC audio file + Size5646141 + Total Time232407 + Disc Number1 + Disc Count1 + Track Number3 + Track Count8 + Year1987 + Date Modified2006-08-13T06:48:48Z + Date Added2009-10-03T14:50:47Z + Bit Rate192 + Sample Rate44100 + Normalization807 + Artwork Count1 + Persistent ID25593CD3618ED214 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Zakir%20Hussain/Making%20Music/03%20Water%20Girl.m4a + File Folder Count4 + Library Folder Count1 + + 1710 + + Track ID1710 + NameToni + ArtistZakir Hussain + ComposerZakir Hussain + AlbumMaking Music + GenreWorld + KindAAC audio file + Size5542984 + Total Time231013 + Disc Number1 + Disc Count1 + Track Number4 + Track Count8 + Year1987 + Date Modified2006-08-13T06:48:46Z + Date Added2009-10-03T14:50:47Z + Bit Rate192 + Sample Rate44100 + Normalization106 + Artwork Count1 + Persistent ID25209C7D6E54CC47 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Zakir%20Hussain/Making%20Music/04%20Toni.m4a + File Folder Count4 + Library Folder Count1 + + 1712 + + Track ID1712 + NameAnisa + ArtistZakir Hussain + ComposerZakir Hussain + AlbumMaking Music + GenreWorld + KindAAC audio file + Size13442881 + Total Time554816 + Disc Number1 + Disc Count1 + Track Number5 + Track Count8 + Year1987 + Date Modified2006-08-13T06:48:42Z + Date Added2009-10-03T14:50:47Z + Bit Rate192 + Sample Rate44100 + Normalization455 + Artwork Count1 + Persistent ID9A6ED1BD79B0C7F1 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Zakir%20Hussain/Making%20Music/05%20Anisa.m4a + File Folder Count4 + Library Folder Count1 + + 1714 + + Track ID1714 + NameSunjog + ArtistZakir Hussain + ComposerZakir Hussain + AlbumMaking Music + GenreWorld + KindAAC audio file + Size11054086 + Total Time456108 + Disc Number1 + Disc Count1 + Track Number6 + Track Count8 + Year1987 + Date Modified2006-08-13T06:48:36Z + Date Added2009-10-03T14:50:47Z + Bit Rate192 + Sample Rate44100 + Normalization231 + Artwork Count1 + Persistent ID281E1405308A20EE + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Zakir%20Hussain/Making%20Music/06%20Sunjog.m4a + File Folder Count4 + Library Folder Count1 + + 1716 + + Track ID1716 + NameYou And Me + ArtistZakir Hussain + ComposerJohn McLaughlin/Zakir Hussain + AlbumMaking Music + GenreWorld + KindAAC audio file + Size3237042 + Total Time132584 + Disc Number1 + Disc Count1 + Track Number7 + Track Count8 + Year1987 + Date Modified2006-08-13T06:48:32Z + Date Added2009-10-03T14:50:48Z + Bit Rate192 + Sample Rate44100 + Normalization352 + Artwork Count1 + Persistent IDDC698B5DF667F855 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Zakir%20Hussain/Making%20Music/07%20You%20And%20Me.m4a + File Folder Count4 + Library Folder Count1 + + 1718 + + Track ID1718 + NameSabah + ArtistZakir Hussain + ComposerZakir Hussain + AlbumMaking Music + GenreWorld + KindAAC audio file + Size5228926 + Total Time215038 + Disc Number1 + Disc Count1 + Track Number8 + Track Count8 + Year1987 + Date Modified2006-08-13T06:48:30Z + Date Added2009-10-03T14:50:48Z + Bit Rate192 + Sample Rate44100 + Normalization204 + Artwork Count1 + Persistent IDE18AC8C81836BE58 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Zakir%20Hussain/Making%20Music/08%20Sabah.m4a + File Folder Count4 + Library Folder Count1 + + 1720 + + Track ID1720 + NameCristal + ArtistYo-Yo Ma + ComposerBaden Powell (1937-2000)/Cesar Camargo Mariano (1943〜) + AlbumObrigado Brazil + GenreClassical + KindAAC audio file + Size4106854 + Total Time170015 + Disc Number1 + Disc Count1 + Track Number1 + Track Count16 + Year2003 + Date Modified2006-08-07T07:08:36Z + Date Added2009-10-03T14:50:48Z + Bit Rate192 + Sample Rate44100 + Normalization1230 + Artwork Count1 + Persistent IDA98890B974BA34F9 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yo-Yo%20Ma/Obrigado%20Brazil/01%20Cristal.m4a + File Folder Count4 + Library Folder Count1 + + 1722 + + Track ID1722 + NameChega De Saudade + ArtistYo-Yo Ma + ComposerAntonio Carlos Jobim (1927-1994) + AlbumObrigado Brazil + GenreClassical + KindAAC audio file + Size6138495 + Total Time256370 + Disc Number1 + Disc Count1 + Track Number2 + Track Count16 + Year2003 + Date Modified2006-08-07T07:08:36Z + Date Added2009-10-03T14:50:48Z + Bit Rate192 + Sample Rate44100 + Normalization776 + Artwork Count1 + Persistent IDF916A03C9A6952B0 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yo-Yo%20Ma/Obrigado%20Brazil/02%20Chega%20De%20Saudade.m4a + File Folder Count4 + Library Folder Count1 + + 1724 + + Track ID1724 + NameA Lenda Do Caboclo + ArtistYo-Yo Ma + ComposerHeitor Villa-Lobos (1887-1959) + AlbumObrigado Brazil + GenreClassical + KindAAC audio file + Size4562411 + Total Time190309 + Disc Number1 + Disc Count1 + Track Number3 + Track Count16 + Year2003 + Date Modified2006-08-07T07:08:36Z + Date Added2009-10-03T14:50:49Z + Bit Rate192 + Sample Rate44100 + Normalization719 + Artwork Count1 + Sort NameLenda Do Caboclo + Persistent ID69282D137FE45EA6 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yo-Yo%20Ma/Obrigado%20Brazil/03%20A%20Lenda%20Do%20Caboclo.m4a + File Folder Count4 + Library Folder Count1 + + 1726 + + Track ID1726 + NameDoce De Coco + ArtistYo-Yo Ma + ComposerJacó do Bandolim (1918-1969) + AlbumObrigado Brazil + GenreClassical + KindAAC audio file + Size7503277 + Total Time312515 + Disc Number1 + Disc Count1 + Track Number4 + Track Count16 + Year2003 + Date Modified2006-08-07T07:08:36Z + Date Added2009-10-03T14:50:49Z + Bit Rate192 + Sample Rate44100 + Normalization905 + Artwork Count1 + Persistent IDFE246478A14A097E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yo-Yo%20Ma/Obrigado%20Brazil/04%20Doce%20De%20Coco.m4a + File Folder Count4 + Library Folder Count1 + + 1728 + + Track ID1728 + NameDansa Brasileira + ArtistYo-Yo Ma + ComposerCamargo Mozart Guarnieri (1907-1993) + AlbumObrigado Brazil + GenreClassical + KindAAC audio file + Size3346698 + Total Time138087 + Disc Number1 + Disc Count1 + Track Number5 + Track Count16 + Year2003 + Date Modified2006-08-07T07:08:36Z + Date Added2009-10-03T14:50:49Z + Bit Rate192 + Sample Rate44100 + Normalization1230 + Artwork Count1 + Persistent IDDC185881636D2DCF + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yo-Yo%20Ma/Obrigado%20Brazil/05%20Dansa%20Brasileira.m4a + File Folder Count4 + Library Folder Count1 + + 1730 + + Track ID1730 + NameApelo + ArtistYo-Yo Ma + ComposerBaden Powell (1937-2000) + AlbumObrigado Brazil + GenreClassical + KindAAC audio file + Size7180147 + Total Time297910 + Disc Number1 + Disc Count1 + Track Number6 + Track Count16 + Year2003 + Date Modified2006-08-07T07:08:36Z + Date Added2009-10-03T14:50:49Z + Bit Rate192 + Sample Rate44100 + Normalization1230 + Artwork Count1 + Persistent IDD50D456F9DAFE907 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yo-Yo%20Ma/Obrigado%20Brazil/06%20Apelo.m4a + File Folder Count4 + Library Folder Count1 + + 1732 + + Track ID1732 + NameDansa Negra + ArtistYo-Yo Ma + ComposerCamargo Mozart Guarnieri (1907-1993) + AlbumObrigado Brazil + GenreClassical + KindAAC audio file + Size5085991 + Total Time211276 + Disc Number1 + Disc Count1 + Track Number7 + Track Count16 + Year2003 + Date Modified2006-08-07T07:08:36Z + Date Added2009-10-03T14:50:49Z + Bit Rate192 + Sample Rate44100 + Normalization970 + Artwork Count1 + Persistent ID16C9775957761787 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yo-Yo%20Ma/Obrigado%20Brazil/07%20Dansa%20Negra.m4a + File Folder Count4 + Library Folder Count1 + + 1734 + + Track ID1734 + Name1 x 0 (Um A Zero) + ArtistYo-Yo Ma + ComposerPixinguinha (1897-1973)/arr. J. Calandrelli + AlbumObrigado Brazil + GenreClassical + KindAAC audio file + Size3853838 + Total Time160773 + Disc Number1 + Disc Count1 + Track Number8 + Track Count16 + Year2003 + Date Modified2006-08-07T07:08:36Z + Date Added2009-10-03T14:50:49Z + Bit Rate192 + Sample Rate44100 + Normalization945 + Artwork Count1 + Persistent ID1C53F697B0635ADB + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yo-Yo%20Ma/Obrigado%20Brazil/08%201%20x%200%20(Um%20A%20Zero).m4a + File Folder Count4 + Library Folder Count1 + + 1736 + + Track ID1736 + NameMenino + ArtistYo-Yo Ma + ComposerSérgio Assad (1952~) + AlbumObrigado Brazil + GenreClassical + KindAAC audio file + Size8104901 + Total Time336409 + Disc Number1 + Disc Count1 + Track Number9 + Track Count16 + Year2003 + Date Modified2006-08-07T07:08:36Z + Date Added2009-10-03T14:50:49Z + Bit Rate192 + Sample Rate44100 + Normalization699 + Artwork Count1 + Persistent ID08DC5048A89630E3 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yo-Yo%20Ma/Obrigado%20Brazil/09%20Menino.m4a + File Folder Count4 + Library Folder Count1 + + 1738 + + Track ID1738 + NameSamambaia + ArtistYo-Yo Ma + ComposerCesar Camargo Mariano (1943~) + AlbumObrigado Brazil + GenreClassical + KindAAC audio file + Size7705966 + Total Time319133 + Disc Number1 + Disc Count1 + Track Number10 + Track Count16 + Year2003 + Date Modified2006-08-07T07:08:34Z + Date Added2009-10-03T14:50:50Z + Bit Rate192 + Sample Rate44100 + Normalization1230 + Artwork Count1 + Persistent IDB1C3E9863F5BE80A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yo-Yo%20Ma/Obrigado%20Brazil/10%20Samambaia.m4a + File Folder Count4 + Library Folder Count1 + + 1740 + + Track ID1740 + NameCarinhoso + ArtistYo-Yo Ma + ComposerPixinguinha (1897-1973) + AlbumObrigado Brazil + GenreClassical + KindAAC audio file + Size6971157 + Total Time288576 + Disc Number1 + Disc Count1 + Track Number11 + Track Count16 + Year2003 + Date Modified2006-08-07T07:08:34Z + Date Added2009-10-03T14:50:50Z + Bit Rate192 + Sample Rate44100 + Normalization442 + Artwork Count1 + Persistent IDA1D46EFBEAD0618D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yo-Yo%20Ma/Obrigado%20Brazil/11%20Carinhoso.m4a + File Folder Count4 + Library Folder Count1 + + 1742 + + Track ID1742 + NameAlma Brasileira + ArtistYo-Yo Ma + ComposerHeitor Villa-Lobos (1887~1959) + AlbumObrigado Brazil + GenreClassical + KindAAC audio file + Size7375634 + Total Time305201 + Disc Number1 + Disc Count1 + Track Number12 + Track Count16 + Year2003 + Date Modified2006-08-07T07:08:34Z + Date Added2009-10-03T14:50:50Z + Bit Rate192 + Sample Rate44100 + Normalization1230 + Artwork Count1 + Persistent IDE850B25616DD67C5 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yo-Yo%20Ma/Obrigado%20Brazil/12%20Alma%20Brasileira.m4a + File Folder Count4 + Library Folder Count1 + + 1744 + + Track ID1744 + NameO Amor Em Paz + ArtistYo-Yo Ma + ComposerAntonio Carlos Jobim + AlbumObrigado Brazil + GenreClassical + KindAAC audio file + Size5561239 + Total Time232081 + Disc Number1 + Disc Count1 + Track Number13 + Track Count16 + Year2003 + Date Modified2006-08-07T07:08:34Z + Date Added2009-10-03T14:50:50Z + Bit Rate192 + Sample Rate44100 + Normalization1028 + Artwork Count1 + Persistent ID9CF1C6175EC8CD21 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yo-Yo%20Ma/Obrigado%20Brazil/13%20O%20Amor%20Em%20Paz.m4a + File Folder Count4 + Library Folder Count1 + + 1746 + + Track ID1746 + NameBodas De Prata & Quatro Cantos + ArtistYo-Yo Ma + ComposerEgberto Gismonti (1947~) + AlbumObrigado Brazil + GenreClassical + KindAAC audio file + Size14254296 + Total Time588949 + Disc Number1 + Disc Count1 + Track Number14 + Track Count16 + Year2003 + Date Modified2006-08-07T07:08:34Z + Date Added2009-10-03T14:50:50Z + Bit Rate192 + Sample Rate44100 + Normalization732 + Artwork Count1 + Persistent ID5745072D5CF5785C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yo-Yo%20Ma/Obrigado%20Brazil/14%20Bodas%20De%20Prata%20&%20Quatro%20Cantos.m4a + File Folder Count4 + Library Folder Count1 + + 1748 + + Track ID1748 + NameBrasileirinho + ArtistYo-Yo Ma + ComposerWaldir Azevedo (1923-1980) + AlbumObrigado Brazil + GenreClassical + KindAAC audio file + Size4968333 + Total Time210673 + Disc Number1 + Disc Count1 + Track Number15 + Track Count16 + Year2003 + Date Modified2006-08-07T07:08:34Z + Date Added2009-10-03T14:50:50Z + Bit Rate192 + Sample Rate44100 + Normalization1230 + Artwork Count1 + Persistent IDF24C56A1663F9DC7 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yo-Yo%20Ma/Obrigado%20Brazil/15%20Brasileirinho.m4a + File Folder Count4 + Library Folder Count1 + + 1750 + + Track ID1750 + NameSalvador + ArtistYo-Yo Ma + ComposerEgberto Gismonti + AlbumObrigado Brazil + GenreClassical + KindAAC audio file + Size7118029 + Total Time293638 + Disc Number1 + Disc Count1 + Track Number16 + Track Count16 + Year2003 + Date Modified2006-08-07T07:08:34Z + Date Added2009-10-03T14:50:50Z + Bit Rate192 + Sample Rate44100 + Normalization559 + Artwork Count1 + Persistent ID3A4EC9D23DB8813E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yo-Yo%20Ma/Obrigado%20Brazil/16%20Salvador.m4a + File Folder Count4 + Library Folder Count1 + + 1752 + + Track ID1752 + NameSantorini + ArtistYanni + ComposerYanni + AlbumLive At The Acropolis + GenreNew Age + KindAAC audio file + Size10139276 + Total Time417284 + Disc Number1 + Disc Count1 + Track Number1 + Track Count10 + Year1993 + Date Modified2006-08-08T11:41:08Z + Date Added2009-10-03T14:50:52Z + Bit Rate192 + Sample Rate44100 + Normalization1334 + Artwork Count1 + Persistent ID1FDB626463480024 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yanni/Live%20At%20The%20Acropolis/01%20Santorini.m4a + File Folder Count4 + Library Folder Count1 + + 1754 + + Track ID1754 + NameKeys To Imagination + ArtistYanni + ComposerYanni + AlbumLive At The Acropolis + GenreNew Age + KindAAC audio file + Size11042338 + Total Time454622 + Disc Number1 + Disc Count1 + Track Number2 + Track Count10 + Year1993 + Date Modified2006-08-08T11:41:08Z + Date Added2009-10-03T14:50:52Z + Bit Rate192 + Sample Rate44100 + Normalization1225 + Artwork Count1 + Persistent ID060030CA8A7DD208 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yanni/Live%20At%20The%20Acropolis/02%20Keys%20To%20Imagination.m4a + File Folder Count4 + Library Folder Count1 + + 1756 + + Track ID1756 + NameUntil The Last Moment + ArtistYanni + ComposerYanni + AlbumLive At The Acropolis + GenreNew Age + KindAAC audio file + Size9653550 + Total Time397222 + Disc Number1 + Disc Count1 + Track Number3 + Track Count10 + Year1993 + Date Modified2006-08-08T11:41:08Z + Date Added2009-10-03T14:50:52Z + Bit Rate192 + Sample Rate44100 + Normalization1075 + Artwork Count1 + Persistent ID70886F0D00D98520 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yanni/Live%20At%20The%20Acropolis/03%20Until%20The%20Last%20Moment.m4a + File Folder Count4 + Library Folder Count1 + + 1758 + + Track ID1758 + NameThe Rain Must Fall + ArtistYanni + ComposerYanni + AlbumLive At The Acropolis + GenreNew Age + KindAAC audio file + Size10806085 + Total Time444846 + Disc Number1 + Disc Count1 + Track Number4 + Track Count10 + Year1993 + Date Modified2006-08-08T11:41:06Z + Date Added2009-10-03T14:50:53Z + Bit Rate192 + Sample Rate44100 + Normalization1860 + Artwork Count1 + Sort NameRain Must Fall + Persistent ID00BE046221FD302A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yanni/Live%20At%20The%20Acropolis/04%20The%20Rain%20Must%20Fall.m4a + File Folder Count4 + Library Folder Count1 + + 1760 + + Track ID1760 + NameAcroyali / Standing In Motion + ArtistYanni + ComposerYanni + AlbumLive At The Acropolis + GenreNew Age + KindAAC audio file + Size12889122 + Total Time530922 + Disc Number1 + Disc Count1 + Track Number5 + Track Count10 + Year1993 + Date Modified2006-08-08T11:41:06Z + Date Added2009-10-03T14:50:53Z + Bit Rate192 + Sample Rate44100 + Normalization1358 + Artwork Count1 + Persistent IDDDB80A4BBE99C3AA + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yanni/Live%20At%20The%20Acropolis/05%20Acroyali%20_%20Standing%20In%20Motion.m4a + File Folder Count4 + Library Folder Count1 + + 1762 + + Track ID1762 + NameOne Man's Dream + ArtistYanni + ComposerYanni + AlbumLive At The Acropolis + GenreNew Age + KindAAC audio file + Size5266192 + Total Time215572 + Disc Number1 + Disc Count1 + Track Number6 + Track Count10 + Year1993 + Date Modified2006-08-08T11:41:06Z + Date Added2009-10-03T14:50:53Z + Bit Rate192 + Sample Rate44100 + Normalization1079 + Artwork Count1 + Persistent ID95A581D249BFA07D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yanni/Live%20At%20The%20Acropolis/06%20One%20Man's%20Dream.m4a + File Folder Count4 + Library Folder Count1 + + 1764 + + Track ID1764 + NameWithin Attraction + ArtistYanni + ComposerYanni + AlbumLive At The Acropolis + GenreNew Age + KindAAC audio file + Size11335959 + Total Time466742 + Disc Number1 + Disc Count1 + Track Number7 + Track Count10 + Year1993 + Date Modified2006-08-08T11:41:06Z + Date Added2009-10-03T14:50:54Z + Bit Rate192 + Sample Rate44100 + Normalization1275 + Artwork Count1 + Persistent ID98D9348E8A7C5FAD + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yanni/Live%20At%20The%20Acropolis/07%20Within%20Attraction.m4a + File Folder Count4 + Library Folder Count1 + + 1766 + + Track ID1766 + NameNostalgia + ArtistYanni + ComposerYanni + AlbumLive At The Acropolis + GenreNew Age + KindAAC audio file + Size8420913 + Total Time346277 + Disc Number1 + Disc Count1 + Track Number8 + Track Count10 + Year1993 + Date Modified2006-08-08T11:41:06Z + Date Added2009-10-03T14:50:54Z + Bit Rate192 + Sample Rate44100 + Normalization1967 + Artwork Count1 + Persistent ID4160E451F26159B9 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yanni/Live%20At%20The%20Acropolis/08%20Nostalgia.m4a + File Folder Count4 + Library Folder Count1 + + 1768 + + Track ID1768 + NameSwept Away + ArtistYanni + ComposerYanni + AlbumLive At The Acropolis + GenreNew Age + KindAAC audio file + Size13630479 + Total Time561549 + Disc Number1 + Disc Count1 + Track Number9 + Track Count10 + Year1993 + Date Modified2006-08-08T11:41:06Z + Date Added2009-10-03T14:50:55Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Persistent ID53042B7546A73EA5 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yanni/Live%20At%20The%20Acropolis/09%20Swept%20Away.m4a + File Folder Count4 + Library Folder Count1 + + 1770 + + Track ID1770 + NameReflections Of Passion + ArtistYanni + ComposerYanni + AlbumLive At The Acropolis + GenreNew Age + KindAAC audio file + Size7333903 + Total Time301393 + Disc Number1 + Disc Count1 + Track Number10 + Track Count10 + Year1993 + Date Modified2006-08-08T11:41:06Z + Date Added2009-10-03T14:50:55Z + Bit Rate192 + Sample Rate44100 + Normalization1151 + Artwork Count1 + Persistent ID62372F58E0D08EF4 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yanni/Live%20At%20The%20Acropolis/10%20Reflections%20Of%20Passion.m4a + File Folder Count4 + Library Folder Count1 + + 1772 + + Track ID1772 + NameOnce Upon A Time + ArtistYanni + ComposerYanni + AlbumDevotion + GenreNew Age + KindAAC audio file + Size5502055 + Total Time230688 + Disc Number1 + Disc Count1 + Track Number1 + Track Count15 + Year1997 + Date Modified2006-08-13T06:48:26Z + Date Added2009-10-03T14:50:56Z + Bit Rate192 + Sample Rate44100 + Normalization660 + Artwork Count1 + Persistent IDF524A746E99462B7 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yanni/Devotion/01%20Once%20Upon%20A%20Time.m4a + File Folder Count4 + Library Folder Count1 + + 1774 + + Track ID1774 + NameWithin Attraction + ArtistYanni + ComposerYanni + AlbumDevotion + GenreNew Age + KindAAC audio file + Size6025416 + Total Time250472 + Disc Number1 + Disc Count1 + Track Number2 + Track Count15 + Year1997 + Date Modified2006-08-13T06:48:24Z + Date Added2009-10-03T14:50:56Z + Bit Rate192 + Sample Rate44100 + Normalization802 + Artwork Count1 + Persistent IDD74BC336363DB0BE + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yanni/Devotion/02%20Within%20Attraction.m4a + File Folder Count4 + Library Folder Count1 + + 1776 + + Track ID1776 + NameSong For Antarctica + ArtistYanni + ComposerYanni + AlbumDevotion + GenreNew Age + KindAAC audio file + Size6333432 + Total Time263637 + Disc Number1 + Disc Count1 + Track Number3 + Track Count15 + Year1997 + Date Modified2006-08-13T06:48:22Z + Date Added2009-10-03T14:50:56Z + Bit Rate192 + Sample Rate44100 + Normalization537 + Artwork Count1 + Persistent IDFD4E744A1F832624 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yanni/Devotion/03%20Song%20For%20Antarctica.m4a + File Folder Count4 + Library Folder Count1 + + 1778 + + Track ID1778 + NameAria + ArtistYanni + ComposerMalcolm McLaren & Yanni + AlbumDevotion + GenreNew Age + KindAAC audio file + Size5780175 + Total Time240046 + Disc Number1 + Disc Count1 + Track Number4 + Track Count15 + Year1997 + Date Modified2006-08-13T06:48:18Z + Date Added2009-10-03T14:50:56Z + Bit Rate192 + Sample Rate44100 + Normalization1002 + Artwork Count1 + Persistent ID957356E7C00E3B64 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yanni/Devotion/04%20Aria.m4a + File Folder Count4 + Library Folder Count1 + + 1780 + + Track ID1780 + NameA Love For Life + ArtistYanni + ComposerYanni + AlbumDevotion + GenreNew Age + KindAAC audio file + Size7398567 + Total Time306873 + Disc Number1 + Disc Count1 + Track Number5 + Track Count15 + Year1997 + Date Modified2006-08-13T06:48:16Z + Date Added2009-10-03T14:50:56Z + Bit Rate192 + Sample Rate44100 + Normalization996 + Artwork Count1 + Sort NameLove For Life + Persistent IDA9C91B1527AF743A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yanni/Devotion/05%20A%20Love%20For%20Life.m4a + File Folder Count4 + Library Folder Count1 + + 1782 + + Track ID1782 + NameReflections Of Passion + ArtistYanni + ComposerYanni + AlbumDevotion + GenreNew Age + KindAAC audio file + Size6571346 + Total Time271904 + Disc Number1 + Disc Count1 + Track Number6 + Track Count15 + Year1997 + Date Modified2006-08-13T06:48:12Z + Date Added2009-10-03T14:50:57Z + Bit Rate192 + Sample Rate44100 + Normalization852 + Artwork Count1 + Persistent IDF9C01128AE99A716 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yanni/Devotion/06%20Reflections%20Of%20Passion.m4a + File Folder Count4 + Library Folder Count1 + + 1784 + + Track ID1784 + NameTo Take... To Hold + ArtistYanni + ComposerYanni + AlbumDevotion + GenreNew Age + KindAAC audio file + Size5748322 + Total Time239210 + Disc Number1 + Disc Count1 + Track Number7 + Track Count15 + Year1997 + Date Modified2006-08-13T06:48:10Z + Date Added2009-10-03T14:50:57Z + Bit Rate192 + Sample Rate44100 + Normalization996 + Artwork Count1 + Persistent ID57BE1781D1B838D7 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yanni/Devotion/07%20To%20Take...%20To%20Hold.m4a + File Folder Count4 + Library Folder Count1 + + 1786 + + Track ID1786 + NameOnly A Memory + ArtistYanni + ComposerYanni + AlbumDevotion + GenreNew Age + KindAAC audio file + Size6166420 + Total Time256950 + Disc Number1 + Disc Count1 + Track Number8 + Track Count15 + Year1997 + Date Modified2006-08-13T06:48:08Z + Date Added2009-10-03T14:50:57Z + Bit Rate192 + Sample Rate44100 + Normalization805 + Artwork Count1 + Persistent ID883B7D31EF6D89B5 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yanni/Devotion/08%20Only%20A%20Memory.m4a + File Folder Count4 + Library Folder Count1 + + 1788 + + Track ID1788 + NameFlight Of Fantasy + ArtistYanni + ComposerYanni + AlbumDevotion + GenreNew Age + KindAAC audio file + Size8225500 + Total Time340751 + Disc Number1 + Disc Count1 + Track Number9 + Track Count15 + Year1997 + Date Modified2006-08-13T06:48:04Z + Date Added2009-10-03T14:50:57Z + Bit Rate192 + Sample Rate44100 + Normalization768 + Artwork Count1 + Persistent IDEA9F19676E422B60 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yanni/Devotion/09%20Flight%20Of%20Fantasy.m4a + File Folder Count4 + Library Folder Count1 + + 1790 + + Track ID1790 + NameTo The One Who Knows + ArtistYanni + ComposerYanni + AlbumDevotion + GenreNew Age + KindAAC audio file + Size8119337 + Total Time337129 + Disc Number1 + Disc Count1 + Track Number10 + Track Count15 + Year1997 + Date Modified2006-08-13T06:48:00Z + Date Added2009-10-03T14:50:57Z + Bit Rate192 + Sample Rate44100 + Normalization477 + Artwork Count1 + Persistent IDDB6EBC3A680B04A7 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yanni/Devotion/10%20To%20The%20One%20Who%20Knows.m4a + File Folder Count4 + Library Folder Count1 + + 1792 + + Track ID1792 + NameThe End Of August + ArtistYanni + ComposerYanni + AlbumDevotion + GenreNew Age + KindAAC audio file + Size5461603 + Total Time226741 + Disc Number1 + Disc Count1 + Track Number11 + Track Count15 + Year1997 + Date Modified2006-08-13T06:47:58Z + Date Added2009-10-03T14:50:58Z + Bit Rate192 + Sample Rate44100 + Normalization424 + Artwork Count1 + Sort NameEnd Of August + Persistent ID36487381C35BE6AE + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yanni/Devotion/11%20The%20End%20Of%20August.m4a + File Folder Count4 + Library Folder Count1 + + 1794 + + Track ID1794 + NameMarching Season + ArtistYanni + ComposerYanni + AlbumDevotion + GenreNew Age + KindAAC audio file + Size3857837 + Total Time159287 + Disc Number1 + Disc Count1 + Track Number12 + Track Count15 + Year1997 + Date Modified2006-08-13T06:47:54Z + Date Added2009-10-03T14:50:58Z + Bit Rate192 + Sample Rate44100 + Normalization852 + Artwork Count1 + Persistent ID67842FE2AEE02805 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yanni/Devotion/12%20Marching%20Season.m4a + File Folder Count4 + Library Folder Count1 + + 1796 + + Track ID1796 + NameSantotini + ArtistYanni + ComposerYanni + AlbumDevotion + GenreNew Age + KindAAC audio file + Size6641219 + Total Time275549 + Disc Number1 + Disc Count1 + Track Number13 + Track Count15 + Year1997 + Date Modified2006-08-13T06:47:54Z + Date Added2009-10-03T14:50:58Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Persistent ID2E5C695325A68F83 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yanni/Devotion/13%20Santotini.m4a + File Folder Count4 + Library Folder Count1 + + 1798 + + Track ID1798 + NameNice To Meet You + ArtistYanni + ComposerYanni + AlbumDevotion + GenreNew Age + KindAAC audio file + Size4870543 + Total Time200781 + Disc Number1 + Disc Count1 + Track Number14 + Track Count15 + Year1997 + Date Modified2006-08-13T06:47:50Z + Date Added2009-10-03T14:50:58Z + Bit Rate192 + Sample Rate44100 + Normalization902 + Artwork Count1 + Persistent IDD0E87A680583DAC5 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yanni/Devotion/14%20Nice%20To%20Meet%20You.m4a + File Folder Count4 + Library Folder Count1 + + 1800 + + Track ID1800 + NameA Nignt To Remember + ArtistYanni + ComposerYanni + AlbumDevotion + GenreNew Age + KindAAC audio file + Size8407857 + Total Time349853 + Disc Number1 + Disc Count1 + Track Number15 + Track Count15 + Year1997 + Date Modified2006-08-13T06:47:48Z + Date Added2009-10-03T14:50:58Z + Bit Rate192 + Sample Rate44100 + Normalization587 + Artwork Count1 + Sort NameNignt To Remember + Persistent ID914F47F2A011C399 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yanni/Devotion/15%20A%20Nignt%20To%20Remember.m4a + File Folder Count4 + Library Folder Count1 + + 1802 + + Track ID1802 + NameSymphony No. 40 in G minor K + ArtistWolfgang Amadeus Mozart + AlbumMozart + GenreClassical + KindAAC audio file + Size11358360 + Total Time476007 + Track Number1 + Track Count8 + Date Modified2006-07-30T15:37:38Z + Date Added2009-10-03T14:50:59Z + Bit Rate192 + Sample Rate44100 + Skip Count1 + Skip Date2013-07-25T04:11:54Z + Normalization625 + Artwork Count1 + Persistent ID7E16503BE4DB0D16 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Wolfgang%20Amadeus%20Mozart/Mozart/01%20Symphony%20No.%2040%20in%20G%20minor%20K.m4a + File Folder Count4 + Library Folder Count1 + + 1804 + + Track ID1804 + NamePiano Concerto No. 21 in C Major + ArtistWolfgang Amadeus Mozart + AlbumMozart + GenreClassical + KindAAC audio file + Size8105498 + Total Time340008 + Track Number2 + Track Count8 + Date Modified2006-07-30T15:37:38Z + Date Added2009-10-03T14:50:59Z + Bit Rate192 + Sample Rate44100 + Skip Count1 + Skip Date2013-07-25T04:12:02Z + Normalization172 + Artwork Count1 + Persistent ID8EF151F3F062BC6F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Wolfgang%20Amadeus%20Mozart/Mozart/02%20Piano%20Concerto%20No.%2021%20in%20C%20Major.m4a + File Folder Count4 + Library Folder Count1 + + 1806 + + Track ID1806 + NameViolin Concerto No. 5 in A major + ArtistWolfgang Amadeus Mozart + AlbumMozart + GenreClassical + KindAAC audio file + Size13788635 + Total Time576015 + Track Number3 + Track Count8 + Date Modified2006-07-30T15:37:38Z + Date Added2009-10-03T14:50:59Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3399390992 + Play Date UTC2011-09-20T13:46:32Z + Normalization356 + Artwork Count1 + Persistent IDB71DDC5504B41EE9 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Wolfgang%20Amadeus%20Mozart/Mozart/03%20Violin%20Concerto%20No.%205%20in%20A%20major.m4a + File Folder Count4 + Library Folder Count1 + + 1808 + + Track ID1808 + NameSymphony No. 41 in C major + ArtistWolfgang Amadeus Mozart + AlbumMozart + GenreClassical + KindAAC audio file + Size12830294 + Total Time537006 + Track Number4 + Track Count8 + Date Modified2006-07-30T15:37:40Z + Date Added2009-10-03T14:50:59Z + Bit Rate192 + Sample Rate44100 + Normalization1097 + Artwork Count1 + Persistent IDABF532E469D9741F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Wolfgang%20Amadeus%20Mozart/Mozart/04%20Symphony%20No.%2041%20in%20C%20major.m4a + File Folder Count4 + Library Folder Count1 + + 1810 + + Track ID1810 + NameConcerto for Clarinet and Orchestra in A major + ArtistWolfgang Amadeus Mozart + AlbumMozart + GenreClassical + KindAAC audio file + Size10680559 + Total Time446007 + Track Number5 + Track Count8 + Date Modified2006-07-30T15:37:40Z + Date Added2009-10-03T14:50:59Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3400230234 + Play Date UTC2011-09-30T06:53:54Z + Normalization550 + Artwork Count1 + Persistent IDBDDA7A8D59BD9254 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Wolfgang%20Amadeus%20Mozart/Mozart/05%20Concerto%20for%20Clarinet%20and%20Orchest.m4a + File Folder Count4 + Library Folder Count1 + + 1812 + + Track ID1812 + NameSerenade No. 13 in G major + ArtistWolfgang Amadeus Mozart + AlbumMozart + GenreClassical + KindAAC audio file + Size11390013 + Total Time477006 + Track Number6 + Track Count8 + Date Modified2006-07-30T15:37:40Z + Date Added2009-10-03T14:50:59Z + Bit Rate192 + Sample Rate44100 + Normalization533 + Artwork Count1 + Persistent IDC20813C3D5A76E22 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Wolfgang%20Amadeus%20Mozart/Mozart/06%20Serenade%20No.%2013%20in%20G%20major.m4a + File Folder Count4 + Library Folder Count1 + + 1814 + + Track ID1814 + NameConcerto for Flute, Harp and Orchestra in C Mjor + ArtistWolfgang Amadeus Mozart + AlbumMozart + GenreClassical + KindAAC audio file + Size12450330 + Total Time520009 + Track Number7 + Track Count8 + Date Modified2006-07-30T15:37:40Z + Date Added2009-10-03T14:51:00Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3400236852 + Play Date UTC2011-09-30T08:44:12Z + Skip Count1 + Skip Date2013-07-25T04:12:15Z + Normalization124 + Artwork Count1 + Persistent ID8F1A257B18348A2E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Wolfgang%20Amadeus%20Mozart/Mozart/07%20Concerto%20for%20Flute,%20Harp%20and%20Orch.m4a + File Folder Count4 + Library Folder Count1 + + 1816 + + Track ID1816 + NameThe Marriage of Figaro + ArtistWolfgang Amadeus Mozart + AlbumMozart + GenreClassical + KindAAC audio file + Size6201249 + Total Time255719 + Track Number8 + Track Count8 + Date Modified2006-07-30T15:37:40Z + Date Added2009-10-03T14:51:00Z + Bit Rate192 + Sample Rate44100 + Normalization765 + Artwork Count1 + Sort NameMarriage of Figaro + Persistent ID28276721B52D3A31 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Wolfgang%20Amadeus%20Mozart/Mozart/08%20The%20Marriage%20of%20Figaro.m4a + File Folder Count4 + Library Folder Count1 + + 1818 + + Track ID1818 + NameSymphony #40 in G minor, K. 550 - Molto Allegro + ArtistWolfgang Amadeus Mozart + ComposerWolfgang Amadeus Mozart + AlbumGreat Mozart Symphonies + GenreClassical + KindAAC audio file + Size12026820 + Total Time496510 + Disc Number1 + Disc Count1 + Track Number1 + Track Count9 + Year1993 + Date Modified2006-08-08T03:53:08Z + Date Added2009-10-03T14:51:00Z + Bit Rate192 + Sample Rate44100 + Normalization1041 + Artwork Count1 + Persistent IDE49D91666E89FF36 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Wolfgang%20Amadeus%20Mozart/Great%20Mozart%20Symphonies/01%20Symphony%20%2340%20in%20G%20minor,%20K.%20550%20-.m4a + File Folder Count4 + Library Folder Count1 + + 1820 + + Track ID1820 + NameSymphony #40 in G minor, K. 550 - Andante + ArtistWolfgang Amadeus Mozart + ComposerWolfgang Amadeus Mozart + AlbumGreat Mozart Symphonies + GenreClassical + KindAAC audio file + Size16845190 + Total Time697967 + Disc Number1 + Disc Count1 + Track Number2 + Track Count9 + Year1993 + Date Modified2006-08-08T03:53:08Z + Date Added2009-10-03T14:51:00Z + Bit Rate192 + Sample Rate44100 + Normalization508 + Artwork Count1 + Persistent ID4F38F3A967AD8FFC + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Wolfgang%20Amadeus%20Mozart/Great%20Mozart%20Symphonies/02%20Symphony%20%2340%20in%20G%20minor,%20K.%20550%20-.m4a + File Folder Count4 + Library Folder Count1 + + 1822 + + Track ID1822 + NameSymphony #40 in G minor, K. 550 - Menuetto. Allegretto - Trio + ArtistWolfgang Amadeus Mozart + ComposerWolfgang Amadeus Mozart + AlbumGreat Mozart Symphonies + GenreClassical + KindAAC audio file + Size6478701 + Total Time267817 + Disc Number1 + Disc Count1 + Track Number3 + Track Count9 + Year1993 + Date Modified2006-08-08T03:53:06Z + Date Added2009-10-03T14:51:01Z + Bit Rate192 + Sample Rate44100 + Normalization642 + Artwork Count1 + Persistent IDB91726DA60C20BB1 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Wolfgang%20Amadeus%20Mozart/Great%20Mozart%20Symphonies/03%20Symphony%20%2340%20in%20G%20minor,%20K.%20550%20-.m4a + File Folder Count4 + Library Folder Count1 + + 1824 + + Track ID1824 + NameSymphony #40 in G minor, K. 550 - Allegro Assai + ArtistWolfgang Amadeus Mozart + ComposerWolfgang Amadeus Mozart + AlbumGreat Mozart Symphonies + GenreClassical + KindAAC audio file + Size8904166 + Total Time370240 + Disc Number1 + Disc Count1 + Track Number4 + Track Count9 + Year1993 + Date Modified2006-08-08T03:53:06Z + Date Added2009-10-03T14:51:01Z + Bit Rate192 + Sample Rate44100 + Normalization1155 + Artwork Count1 + Persistent IDDBFE6471B8D3AA66 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Wolfgang%20Amadeus%20Mozart/Great%20Mozart%20Symphonies/04%20Symphony%20%2340%20in%20G%20minor,%20K.%20550%20-.m4a + File Folder Count4 + Library Folder Count1 + + 1826 + + Track ID1826 + NameSymphony #41 in C major, K. 551 Jupiter - Allegro Vivace + ArtistWolfgang Amadeus Mozart + ComposerWolfgang Amadeus Mozart + AlbumGreat Mozart Symphonies + GenreClassical + KindAAC audio file + Size10996444 + Total Time453298 + Disc Number1 + Disc Count1 + Track Number5 + Track Count9 + Year1993 + Date Modified2006-08-08T03:53:06Z + Date Added2009-10-03T14:51:01Z + Bit Rate192 + Sample Rate44100 + Normalization1056 + Artwork Count1 + Persistent IDB126E220391FCC67 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Wolfgang%20Amadeus%20Mozart/Great%20Mozart%20Symphonies/05%20Symphony%20%2341%20in%20C%20major,%20K.%20551%20J.m4a + File Folder Count4 + Library Folder Count1 + + 1828 + + Track ID1828 + NameSymphony #41 in C major, K. 551 Jupiter - Andante Cantabile + ArtistWolfgang Amadeus Mozart + ComposerWolfgang Amadeus Mozart + AlbumGreat Mozart Symphonies + GenreClassical + KindAAC audio file + Size13040059 + Total Time537749 + Disc Number1 + Disc Count1 + Track Number6 + Track Count9 + Year1993 + Date Modified2006-08-08T03:53:06Z + Date Added2009-10-03T14:51:01Z + Bit Rate192 + Sample Rate44100 + Normalization427 + Artwork Count1 + Persistent ID18238790654D3D17 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Wolfgang%20Amadeus%20Mozart/Great%20Mozart%20Symphonies/06%20Symphony%20%2341%20in%20C%20major,%20K.%20551%20J.m4a + File Folder Count4 + Library Folder Count1 + + 1830 + + Track ID1830 + NameSymphony #41 in C major, K. 551 Jupiter - Menuetto Allegretto + ArtistWolfgang Amadeus Mozart + ComposerWolfgang Amadeus Mozart + AlbumGreat Mozart Symphonies + GenreClassical + KindAAC audio file + Size6998853 + Total Time289946 + Disc Number1 + Disc Count1 + Track Number7 + Track Count9 + Year1993 + Date Modified2006-08-08T03:53:06Z + Date Added2009-10-03T14:51:01Z + Bit Rate192 + Sample Rate44100 + Normalization954 + Artwork Count1 + Persistent IDB5354FD01A82BC89 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Wolfgang%20Amadeus%20Mozart/Great%20Mozart%20Symphonies/07%20Symphony%20%2341%20in%20C%20major,%20K.%20551%20J.m4a + File Folder Count4 + Library Folder Count1 + + 1832 + + Track ID1832 + NameSymphony #41 in C major, K. 551 Jupiter - Molto Allegro + ArtistWolfgang Amadeus Mozart + ComposerWolfgang Amadeus Mozart + AlbumGreat Mozart Symphonies + GenreClassical + KindAAC audio file + Size9946162 + Total Time413476 + Disc Number1 + Disc Count1 + Track Number8 + Track Count9 + Year1993 + Date Modified2006-08-08T03:53:06Z + Date Added2009-10-03T14:51:02Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Persistent IDE5F3AD45BF6B4176 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Wolfgang%20Amadeus%20Mozart/Great%20Mozart%20Symphonies/08%20Symphony%20%2341%20in%20C%20major,%20K.%20551%20J.m4a + File Folder Count4 + Library Folder Count1 + + 1834 + + Track ID1834 + NameOverture To The Marriage Of Figaro, K. 492 + ArtistWolfgang Amadeus Mozart + ComposerWolfgang Amadeus Mozart + AlbumGreat Mozart Symphonies + GenreClassical + KindAAC audio file + Size6103007 + Total Time252979 + Disc Number1 + Disc Count1 + Track Number9 + Track Count9 + Year1993 + Date Modified2006-08-08T03:53:06Z + Date Added2009-10-03T14:51:02Z + Bit Rate192 + Sample Rate44100 + Normalization1114 + Artwork Count1 + Persistent IDB175F600A7F1FF18 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Wolfgang%20Amadeus%20Mozart/Great%20Mozart%20Symphonies/09%20Overture%20To%20The%20Marriage%20Of%20Figar.m4a + File Folder Count4 + Library Folder Count1 + + 1836 + + Track ID1836 + NameBirdland + ArtistWeather Report + ComposerJ. Zawinul + AlbumHeavy Weather + GenreJazz + KindAAC audio file + Size8832792 + Total Time359266 + Disc Number1 + Disc Count1 + Track Number1 + Track Count8 + Year1977 + BPM160 + Date Modified2008-10-07T13:54:18Z + Date Added2009-10-03T14:51:04Z + Bit Rate192 + Sample Rate44100 + Normalization2113 + Artwork Count1 + Persistent ID447E312F9FC566B1 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Weather%20Report/Heavy%20Weather/01%20Birdland.m4a + File Folder Count4 + Library Folder Count1 + + 1838 + + Track ID1838 + NameA Remark You Made + ArtistWeather Report + ComposerJ. Zawinul + AlbumHeavy Weather + GenreJazz + KindAAC audio file + Size10206130 + Total Time413733 + Disc Number1 + Disc Count1 + Track Number2 + Track Count8 + Year1977 + BPM54 + Date Modified2008-10-07T13:54:19Z + Date Added2009-10-03T14:51:04Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3337856412 + Play Date UTC2009-10-08T08:50:12Z + Normalization993 + Artwork Count1 + Sort NameRemark You Made + Persistent IDC9F39DE61DB53208 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Weather%20Report/Heavy%20Weather/02%20A%20Remark%20You%20Made.m4a + File Folder Count4 + Library Folder Count1 + + 1840 + + Track ID1840 + NameTeen Town + ArtistWeather Report + ComposerJ. Pastorius + AlbumHeavy Weather + GenreJazz + KindAAC audio file + Size4271170 + Total Time171960 + Disc Number1 + Disc Count1 + Track Number3 + Track Count8 + Year1977 + BPM128 + Date Modified2008-10-07T13:54:19Z + Date Added2009-10-03T14:51:04Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Persistent IDD74992DDCDDD093F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Weather%20Report/Heavy%20Weather/03%20Teen%20Town.m4a + File Folder Count4 + Library Folder Count1 + + 1842 + + Track ID1842 + NameHarlequin + ArtistWeather Report + ComposerWayne Shorter + AlbumHeavy Weather + GenreJazz + KindAAC audio file + Size5969146 + Total Time241200 + Disc Number1 + Disc Count1 + Track Number4 + Track Count8 + Year1977 + Date Modified2008-10-07T13:54:20Z + Date Added2009-10-03T14:51:04Z + Bit Rate192 + Sample Rate44100 + Normalization833 + Artwork Count1 + Persistent ID607873390A58CACA + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Weather%20Report/Heavy%20Weather/04%20Harlequin.m4a + File Folder Count4 + Library Folder Count1 + + 1844 + + Track ID1844 + NameRumba Mama + ArtistWeather Report + ComposerManolo Badrena/A. Acuna/M. Badrena + AlbumHeavy Weather + GenreJazz + KindAAC audio file + Size3314843 + Total Time131666 + Disc Number1 + Disc Count1 + Track Number5 + Track Count8 + Year1977 + Date Modified2008-10-07T13:54:20Z + Date Added2009-10-03T14:51:04Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Persistent IDF9CC6AFABE8C2367 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Weather%20Report/Heavy%20Weather/05%20Rumba%20Mama.m4a + File Folder Count4 + Library Folder Count1 + + 1846 + + Track ID1846 + NamePalladium + ArtistWeather Report + ComposerWriter/Wayne Shorter + AlbumHeavy Weather + GenreJazz + KindAAC audio file + Size7149355 + Total Time286933 + Disc Number1 + Disc Count1 + Track Number6 + Track Count8 + Year1977 + BPM118 + Date Modified2008-10-07T13:54:21Z + Date Added2009-10-03T14:51:05Z + Bit Rate192 + Sample Rate44100 + Normalization3821 + Artwork Count1 + Persistent ID55599B14F4BECAFC + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Weather%20Report/Heavy%20Weather/06%20Palladium.m4a + File Folder Count4 + Library Folder Count1 + + 1848 + + Track ID1848 + NameThe Juggler + ArtistWeather Report + ComposerJ. Zawinul/Joe Zawinul + AlbumHeavy Weather + GenreJazz + KindAAC audio file + Size7507454 + Total Time303706 + Disc Number1 + Disc Count1 + Track Number7 + Track Count8 + Year1977 + Date Modified2008-10-07T13:54:22Z + Date Added2009-10-03T14:51:05Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Sort NameJuggler + Persistent ID1F3EF4269D976DCE + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Weather%20Report/Heavy%20Weather/07%20The%20Juggler.m4a + File Folder Count4 + Library Folder Count1 + + 1850 + + Track ID1850 + NameHavona + ArtistWeather Report + ComposerJ. Pastorius + AlbumHeavy Weather + GenreJazz + KindAAC audio file + Size8992921 + Total Time362533 + Disc Number1 + Disc Count1 + Track Number8 + Track Count8 + Year1977 + BPM138 + Date Modified2008-10-07T13:54:22Z + Date Added2009-10-03T14:51:05Z + Bit Rate192 + Sample Rate44100 + Normalization1979 + Artwork Count1 + Persistent ID5C71A378FCA47BF9 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Weather%20Report/Heavy%20Weather/08%20Havona.m4a + File Folder Count4 + Library Folder Count1 + + 1852 + + Track ID1852 + NameBeethoven: Symphony #8 In F, Op. 93 - 1. Allegro Vivace E Con Brio + ArtistWalter Weller: City Of Birminjham Symphony Orchestra + ComposerLudwig Van Beethoven + AlbumBeethoven: The Complete Symphonies [Disc 4] + GenreClassical + KindAAC audio file + Size20303928 + Total Time616866 + Disc Number1 + Disc Count3 + Track Number1 + Track Count9 + Year1994 + Date Modified2009-06-25T16:07:37Z + Date Added2009-10-03T14:51:05Z + Bit Rate256 + Sample Rate44100 + Normalization788 + Persistent IDA0E08C3780728FB6 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Walter%20Weller_%20City%20Of%20Birminjham%20Symphony%20Orchestra/Beethoven_%20The%20Complete%20Symphonies%20%5BDisc%204%5D/1-01%20Beethoven_%20Symphony%20%238%20In%20F,%20Op.m4a + File Folder Count4 + Library Folder Count1 + + 1854 + + Track ID1854 + NameBeethoven: Symphony #8 In F, Op. 93 - 2. Allegretto Scherzando + ArtistWalter Weller: City Of Birminjham Symphony Orchestra + ComposerLudwig Van Beethoven + AlbumBeethoven: The Complete Symphonies [Disc 4] + GenreClassical + KindAAC audio file + Size8524310 + Total Time255706 + Disc Number1 + Disc Count3 + Track Number2 + Track Count9 + Year1994 + Date Modified2009-06-25T16:07:53Z + Date Added2009-10-03T14:51:06Z + Bit Rate256 + Sample Rate44100 + Normalization208 + Persistent ID1CB9E3512B36E956 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Walter%20Weller_%20City%20Of%20Birminjham%20Symphony%20Orchestra/Beethoven_%20The%20Complete%20Symphonies%20%5BDisc%204%5D/1-02%20Beethoven_%20Symphony%20%238%20In%20F,%20Op.m4a + File Folder Count4 + Library Folder Count1 + + 1856 + + Track ID1856 + NameBeethoven: Symphony #8 In F, Op. 93 - 3. Tempo Di Menuetto + ArtistWalter Weller: City Of Birminjham Symphony Orchestra + ComposerLudwig Van Beethoven + AlbumBeethoven: The Complete Symphonies [Disc 4] + GenreClassical + KindAAC audio file + Size9651623 + Total Time292866 + Disc Number1 + Disc Count3 + Track Number3 + Track Count9 + Year1994 + Date Modified2009-06-25T16:08:12Z + Date Added2009-10-03T14:51:06Z + Bit Rate256 + Sample Rate44100 + Normalization291 + Persistent IDDEEEAB9806D53E07 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Walter%20Weller_%20City%20Of%20Birminjham%20Symphony%20Orchestra/Beethoven_%20The%20Complete%20Symphonies%20%5BDisc%204%5D/1-03%20Beethoven_%20Symphony%20%238%20In%20F,%20Op.m4a + File Folder Count4 + Library Folder Count1 + + 1858 + + Track ID1858 + NameBeethoven: Symphony #8 In F, Op. 93 - 4. Allegro Vivace + ArtistWalter Weller: City Of Birminjham Symphony Orchestra + ComposerLudwig Van Beethoven + AlbumBeethoven: The Complete Symphonies [Disc 4] + GenreClassical + KindAAC audio file + Size15059441 + Total Time462066 + Disc Number1 + Disc Count3 + Track Number4 + Track Count9 + Year1994 + Date Modified2009-06-25T16:08:40Z + Date Added2009-10-03T14:51:06Z + Bit Rate256 + Sample Rate44100 + Normalization792 + Persistent ID7C2329FE00BD5B6E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Walter%20Weller_%20City%20Of%20Birminjham%20Symphony%20Orchestra/Beethoven_%20The%20Complete%20Symphonies%20%5BDisc%204%5D/1-04%20Beethoven_%20Symphony%20%238%20In%20F,%20Op.m4a + File Folder Count4 + Library Folder Count1 + + 1860 + + Track ID1860 + NameBeethoven: Symphony #6 In F, Op. 68, "Pastoral" - 1. Allegro Ma Non Troppo + ArtistWalter Weller: City Of Birminjham Symphony Orchestra + ComposerLudwig Van Beethoven + AlbumBeethoven: The Complete Symphonies [Disc 4] + GenreClassical + KindAAC audio file + Size18990157 + Total Time575866 + Disc Number1 + Disc Count3 + Track Number5 + Track Count9 + Year1994 + Date Modified2009-06-25T16:09:15Z + Date Added2009-10-03T14:51:06Z + Bit Rate256 + Sample Rate44100 + Normalization418 + Persistent IDD4BE28D9559993D0 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Walter%20Weller_%20City%20Of%20Birminjham%20Symphony%20Orchestra/Beethoven_%20The%20Complete%20Symphonies%20%5BDisc%204%5D/1-05%20Beethoven_%20Symphony%20%236%20In%20F,%20Op.m4a + File Folder Count4 + Library Folder Count1 + + 1862 + + Track ID1862 + NameBeethoven: Symphony #6 In F, Op. 68, "Pastoral" - 2. Andante Molto Mosso + ArtistWalter Weller: City Of Birminjham Symphony Orchestra + ComposerLudwig Van Beethoven + AlbumBeethoven: The Complete Symphonies [Disc 4] + GenreClassical + KindAAC audio file + Size25084430 + Total Time760360 + Disc Number1 + Disc Count3 + Track Number6 + Track Count9 + Year1994 + Date Modified2009-06-25T16:09:59Z + Date Added2009-10-03T14:51:07Z + Bit Rate256 + Sample Rate44100 + Normalization274 + Persistent IDB80F88AE975B12BA + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Walter%20Weller_%20City%20Of%20Birminjham%20Symphony%20Orchestra/Beethoven_%20The%20Complete%20Symphonies%20%5BDisc%204%5D/1-06%20Beethoven_%20Symphony%20%236%20In%20F,%20Op.m4a + File Folder Count4 + Library Folder Count1 + + 1864 + + Track ID1864 + NameBeethoven: Symphony #6 In F, Op. 68, "Pastoral" - 3. Allegro + ArtistWalter Weller: City Of Birminjham Symphony Orchestra + ComposerLudwig Van Beethoven + AlbumBeethoven: The Complete Symphonies [Disc 4] + GenreClassical + KindAAC audio file + Size11045443 + Total Time334133 + Disc Number1 + Disc Count3 + Track Number7 + Track Count9 + Year1994 + Date Modified2009-06-25T16:10:18Z + Date Added2009-10-03T14:51:07Z + Bit Rate256 + Sample Rate44100 + Normalization358 + Persistent IDEFC68BC8008D233E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Walter%20Weller_%20City%20Of%20Birminjham%20Symphony%20Orchestra/Beethoven_%20The%20Complete%20Symphonies%20%5BDisc%204%5D/1-07%20Beethoven_%20Symphony%20%236%20In%20F,%20Op.m4a + File Folder Count4 + Library Folder Count1 + + 1866 + + Track ID1866 + NameBeethoven: Symphony #6 In F, Op. 68, "Pastoral" - 4. Allegro + ArtistWalter Weller: City Of Birminjham Symphony Orchestra + ComposerLudwig Van Beethoven + AlbumBeethoven: The Complete Symphonies [Disc 4] + GenreClassical + KindAAC audio file + Size6480824 + Total Time195973 + Disc Number1 + Disc Count3 + Track Number8 + Track Count9 + Year1994 + Date Modified2009-06-25T16:10:29Z + Date Added2009-10-03T14:51:07Z + Bit Rate256 + Sample Rate44100 + Normalization736 + Persistent ID0F8AF431B5A96054 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Walter%20Weller_%20City%20Of%20Birminjham%20Symphony%20Orchestra/Beethoven_%20The%20Complete%20Symphonies%20%5BDisc%204%5D/1-08%20Beethoven_%20Symphony%20%236%20In%20F,%20Op.m4a + File Folder Count4 + Library Folder Count1 + + 1868 + + Track ID1868 + NameBeethoven: Symphony #6 In F, Op. 68, "Pastoral" - 5. Allegretto + ArtistWalter Weller: City Of Birminjham Symphony Orchestra + ComposerLudwig Van Beethoven + AlbumBeethoven: The Complete Symphonies [Disc 4] + GenreClassical + KindAAC audio file + Size19276581 + Total Time584933 + Disc Number1 + Disc Count3 + Track Number9 + Track Count9 + Year1994 + Date Modified2009-06-25T16:11:02Z + Date Added2009-10-03T14:51:07Z + Bit Rate256 + Sample Rate44100 + Normalization657 + Persistent IDC49FEFBE3918E8D0 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Walter%20Weller_%20City%20Of%20Birminjham%20Symphony%20Orchestra/Beethoven_%20The%20Complete%20Symphonies%20%5BDisc%204%5D/1-09%20Beethoven_%20Symphony%20%236%20In%20F,%20Op.m4a + File Folder Count4 + Library Folder Count1 + + 1870 + + Track ID1870 + NameWaltz For Romance + ArtistVarious Artists + ComposerA.R. Rahman + AlbumLagaan: Once Upon A Time In India + GenreSoundtrack + KindAAC audio file + Size3681068 + Total Time149767 + Disc Number1 + Disc Count1 + Track Number6 + Track Count8 + Year2001 + Date Modified2006-07-29T04:05:56Z + Date Added2009-10-03T14:51:08Z + Bit Rate192 + Sample Rate44100 + Normalization1288 + Artwork Count1 + Persistent ID53E01C97AF8579DB + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Lagaan_%20Once%20Upon%20A%20Time%20In%20India/06%20Waltz%20For%20Romance.m4a + File Folder Count4 + Library Folder Count1 + + 1872 + + Track ID1872 + NameEnd Titles From Blade Runner + ArtistVangelis + ComposerVangelis + AlbumThemes + GenreSoundtrack + KindAAC audio file + Size7256533 + Total Time299048 + Disc Number1 + Disc Count1 + Track Number1 + Track Count14 + Year1997 + Date Modified2006-08-02T09:43:04Z + Date Added2009-10-03T14:51:08Z + Bit Rate192 + Sample Rate44100 + Normalization1205 + Artwork Count1 + Persistent IDC917C4FFED2C6258 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Vangelis/Themes/01%20End%20Titles%20From%20Blade%20Runner.m4a + File Folder Count4 + Library Folder Count1 + + 1874 + + Track ID1874 + NameMain Theme From Missing + ArtistVangelis + ComposerVangelis + AlbumThemes + GenreSoundtrack + KindAAC audio file + Size5867398 + Total Time241486 + Disc Number1 + Disc Count1 + Track Number2 + Track Count14 + Year1997 + Date Modified2006-08-02T09:43:04Z + Date Added2009-10-03T14:51:08Z + Bit Rate192 + Sample Rate44100 + Normalization1192 + Artwork Count1 + Persistent ID11BB8F1B0F3975FE + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Vangelis/Themes/02%20Main%20Theme%20From%20Missing.m4a + File Folder Count4 + Library Folder Count1 + + 1876 + + Track ID1876 + NameL'Enfant + ArtistVangelis + ComposerVangelis + AlbumThemes + GenreSoundtrack + KindAAC audio file + Size7336821 + Total Time302368 + Disc Number1 + Disc Count1 + Track Number3 + Track Count14 + Year1997 + Date Modified2006-08-02T09:43:04Z + Date Added2009-10-03T14:51:08Z + Bit Rate192 + Sample Rate44100 + Normalization1172 + Artwork Count1 + Persistent ID3D4FAAFEC1512E8B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Vangelis/Themes/03%20L'Enfant.m4a + File Folder Count4 + Library Folder Count1 + + 1878 + + Track ID1878 + NameHymn + ArtistVangelis + ComposerVangelis + AlbumThemes + GenreSoundtrack + KindAAC audio file + Size4077484 + Total Time167576 + Disc Number1 + Disc Count1 + Track Number4 + Track Count14 + Year1997 + Date Modified2006-08-02T09:43:04Z + Date Added2009-10-03T14:51:08Z + Bit Rate192 + Sample Rate44100 + Normalization994 + Artwork Count1 + Persistent ID093EBAAC0DAF5EE6 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Vangelis/Themes/04%20Hymn.m4a + File Folder Count4 + Library Folder Count1 + + 1880 + + Track ID1880 + NameChung Kuo + ArtistVangelis + ComposerVangelis + AlbumThemes + GenreSoundtrack + KindAAC audio file + Size8054476 + Total Time332020 + Disc Number1 + Disc Count1 + Track Number5 + Track Count14 + Year1997 + Date Modified2006-08-02T09:43:04Z + Date Added2009-10-03T14:51:09Z + Bit Rate192 + Sample Rate44100 + Normalization976 + Artwork Count1 + Persistent ID28D7E4382CEAFAD5 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Vangelis/Themes/05%20Chung%20Kuo.m4a + File Folder Count4 + Library Folder Count1 + + 1882 + + Track ID1882 + NameThe Tao Of Love + ArtistVangelis + ComposerVangelis + AlbumThemes + GenreSoundtrack + KindAAC audio file + Size4064117 + Total Time167019 + Disc Number1 + Disc Count1 + Track Number6 + Track Count14 + Year1997 + Date Modified2006-08-02T09:43:04Z + Date Added2009-10-03T14:51:09Z + Bit Rate192 + Sample Rate44100 + Normalization987 + Artwork Count1 + Sort NameTao Of Love + Persistent ID5A57BE079E3FF3B5 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Vangelis/Themes/06%20The%20Tao%20Of%20Love.m4a + File Folder Count4 + Library Folder Count1 + + 1884 + + Track ID1884 + NameTheme From Antartica + ArtistVangelis + ComposerVangelis + AlbumThemes + GenreSoundtrack + KindAAC audio file + Size5698341 + Total Time234473 + Disc Number1 + Disc Count1 + Track Number7 + Track Count14 + Year1997 + Date Modified2006-08-02T09:43:04Z + Date Added2009-10-03T14:51:09Z + Bit Rate192 + Sample Rate44100 + Normalization1241 + Artwork Count1 + Persistent ID9575ECFCB1010EAD + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Vangelis/Themes/07%20Theme%20From%20Antartica.m4a + File Folder Count4 + Library Folder Count1 + + 1886 + + Track ID1886 + NameLove Theme From Blade Runner + ArtistVangelis + ComposerVangelis + AlbumThemes + GenreSoundtrack + KindAAC audio file + Size7293729 + Total Time300580 + Disc Number1 + Disc Count1 + Track Number8 + Track Count14 + Year1997 + Date Modified2006-08-02T09:43:04Z + Date Added2009-10-03T14:51:09Z + Bit Rate192 + Sample Rate44100 + Skip Count1 + Normalization619 + Artwork Count1 + Persistent ID794F06B49B81DDEA + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Vangelis/Themes/08%20Love%20Theme%20From%20Blade%20Runner.m4a + File Folder Count4 + Library Folder Count1 + + 1888 + + Track ID1888 + NameOpening Titles From The Bounty + ArtistVangelis + ComposerVangelis + AlbumThemes + GenreSoundtrack + KindAAC audio file + Size6276738 + Total Time258529 + Disc Number1 + Disc Count1 + Track Number9 + Track Count14 + Year1997 + Date Modified2006-08-02T09:43:04Z + Date Added2009-10-03T14:51:10Z + Bit Rate192 + Sample Rate44100 + Normalization1125 + Artwork Count1 + Persistent ID06B748C7CC1E9B82 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Vangelis/Themes/09%20Opening%20Titles%20From%20The%20Bounty.m4a + File Folder Count4 + Library Folder Count1 + + 1890 + + Track ID1890 + NameClosing Titles From The Bounty + ArtistVangelis + ComposerVangelis + AlbumThemes + GenreSoundtrack + KindAAC audio file + Size7279690 + Total Time300000 + Disc Number1 + Disc Count1 + Track Number10 + Track Count14 + Year1997 + Date Modified2006-08-02T09:43:06Z + Date Added2009-10-03T14:51:10Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Persistent IDC0A8496CCE913DB6 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Vangelis/Themes/10%20Closing%20Titles%20From%20The%20Bounty.m4a + File Folder Count4 + Library Folder Count1 + + 1892 + + Track ID1892 + NameMemories Of Green + ArtistVangelis + ComposerVangelis + AlbumThemes + GenreSoundtrack + KindAAC audio file + Size8367890 + Total Time344977 + Disc Number1 + Disc Count1 + Track Number11 + Track Count14 + Year1997 + Date Modified2006-08-02T09:43:06Z + Date Added2009-10-03T14:51:10Z + Bit Rate192 + Sample Rate44100 + Normalization1254 + Artwork Count1 + Persistent ID32C1540B09EE1EFB + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Vangelis/Themes/11%20Memories%20Of%20Green.m4a + File Folder Count4 + Library Folder Count1 + + 1894 + + Track ID1894 + NameLa Petite Fille De La Mer + ArtistVangelis + ComposerVangelis + AlbumThemes + GenreSoundtrack + KindAAC audio file + Size8587762 + Total Time354056 + Disc Number1 + Disc Count1 + Track Number12 + Track Count14 + Year1997 + Date Modified2006-08-02T09:43:06Z + Date Added2009-10-03T14:51:10Z + Bit Rate192 + Sample Rate44100 + Normalization525 + Artwork Count1 + Persistent ID41BF3A43D36B13FD + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Vangelis/Themes/12%20La%20Petite%20Fille%20De%20La%20Mer.m4a + File Folder Count4 + Library Folder Count1 + + 1896 + + Track ID1896 + NameFive Circles + ArtistVangelis + ComposerVangelis + AlbumThemes + GenreSoundtrack + KindAAC audio file + Size7782519 + Total Time320782 + Disc Number1 + Disc Count1 + Track Number13 + Track Count14 + Year1997 + Date Modified2006-08-02T09:43:06Z + Date Added2009-10-03T14:51:10Z + Bit Rate192 + Sample Rate44100 + Normalization825 + Artwork Count1 + Persistent ID71FB44B1A656A7D5 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Vangelis/Themes/13%20Five%20Circles.m4a + File Folder Count4 + Library Folder Count1 + + 1898 + + Track ID1898 + NameChariots Of Fire + ArtistVangelis + ComposerVangelis + AlbumThemes + GenreSoundtrack + KindAAC audio file + Size5141272 + Total Time211253 + Disc Number1 + Disc Count1 + Track Number14 + Track Count14 + Year1997 + Date Modified2006-08-02T09:43:06Z + Date Added2009-10-03T14:51:11Z + Bit Rate192 + Sample Rate44100 + Normalization1422 + Artwork Count1 + Persistent ID575A04268042585F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Vangelis/Themes/14%20Chariots%20Of%20Fire.m4a + File Folder Count4 + Library Folder Count1 + + 1900 + + Track ID1900 + NameMuthu Natramam + ArtistUnnikrishnan, Madhu Balakrishnan, Vijay Jesudas, Manjari, Asha, Gayathri & Chorus + ComposerIlaiyaraaja + AlbumThiruvasagam + GenreWorld + KindAAC audio file + Size11856560 + Total Time484134 + Disc Number1 + Disc Count1 + Track Number5 + Track Count6 + Year2005 + Date Modified2006-08-13T06:47:44Z + Date Added2009-10-03T14:51:11Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Artwork Count2 + Persistent ID99C0963DEE3778E8 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Unnikrishnan,%20Madhu%20Balakrishnan,%20Vijay%20Jesudas,%20Manjari,%20Asha,%20Gayathri%20&%20Chorus/Thiruvasagam/05%20Muthu%20Natramam.m4a + File Folder Count4 + Library Folder Count1 + + 1902 + + Track ID1902 + NameVaralandu (Raga: Gurjari Tala: Adi) + ArtistUnni Krishnan + ComposerThyagaraja + AlbumAanandam + GenreCarnatic + KindAAC audio file + Size5433134 + Total Time231226 + Disc Number1 + Disc Count1 + Track Number1 + Track Count8 + Date Modified2007-12-14T16:12:18Z + Date Added2009-10-03T14:51:13Z + Bit Rate186 + Sample Rate44100 + CommentsRaga: Gurjari Tala: Adi + Normalization2025 + Persistent ID1B3B52D4316FF69C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Unni%20Krishnan/Aanandam/01%20Varalandu.m4a + File Folder Count4 + Library Folder Count1 + + 1904 + + Track ID1904 + NameNee Irangaayanil (Raga: Atana Tala: Adi) + ArtistUnni Krishnan + ComposerPapanasam Sivan + AlbumAanandam + GenreCarnatic + KindAAC audio file + Size8880553 + Total Time378506 + Disc Number1 + Disc Count1 + Track Number2 + Track Count8 + Date Modified2007-12-14T16:11:37Z + Date Added2009-10-03T14:51:13Z + Bit Rate186 + Sample Rate44100 + CommentsRaga: Atana Tala: Adi + Normalization2340 + Persistent ID2CF5A51555CBA6C1 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Unni%20Krishnan/Aanandam/02%20Nee%20Irangaayanil.m4a + File Folder Count4 + Library Folder Count1 + + 1906 + + Track ID1906 + NameUnnai Allal (Raga: Simhendra Madhyamam Tala: Adi) + ArtistUnni Krishnan + ComposerKotteeswara Iyer + AlbumAanandam + GenreCarnatic + KindAAC audio file + Size24673059 + Total Time1042426 + Disc Number1 + Disc Count1 + Track Number3 + Track Count8 + Date Modified2007-12-14T16:11:07Z + Date Added2009-10-03T14:51:13Z + Bit Rate187 + Sample Rate44100 + CommentsRaga: Simhendra Madhyamam Tala: Adi + Normalization1467 + Persistent IDB01E76B4F196E93F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Unni%20Krishnan/Aanandam/03%20Unnai%20Allal.m4a + File Folder Count4 + Library Folder Count1 + + 1908 + + Track ID1908 + NameNannubrovu Lalitha (Raga: Lalitha Tala: Misra Chapu) + ArtistUnni Krishnan + ComposerShyama Sastri + AlbumAanandam + GenreCarnatic + KindAAC audio file + Size14772135 + Total Time628173 + Disc Number1 + Disc Count1 + Track Number4 + Track Count8 + Date Modified2007-12-14T16:10:11Z + Date Added2009-10-03T14:51:13Z + Bit Rate186 + Sample Rate44100 + CommentsRaga: Lalitha Tala: Misra Chapu + Normalization1253 + Persistent ID815CEF17A512F142 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Unni%20Krishnan/Aanandam/04%20Nannubrovu%20Lalitha.m4a + File Folder Count4 + Library Folder Count1 + + 1910 + + Track ID1910 + NamePankjaksha (Raga: Todi Tala: Roopakam) + ArtistUnni Krishnan + ComposerSwathi Thirunal + AlbumAanandam + GenreCarnatic + KindAAC audio file + Size27736636 + Total Time1173533 + Disc Number1 + Disc Count1 + Track Number5 + Track Count8 + Date Modified2007-12-14T16:09:34Z + Date Added2009-10-03T14:51:13Z + Bit Rate187 + Sample Rate44100 + CommentsRaga: Todi Tala: Roopakam + Normalization1253 + Persistent ID8C2DBBAF8F6CC538 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Unni%20Krishnan/Aanandam/05%20Pankjaksha.m4a + File Folder Count4 + Library Folder Count1 + + 1912 + + Track ID1912 + NameKrishnam Kalaya (Raga: Mand Tala: Adi) + ArtistUnni Krishnan + ComposerNarayana Theerthar + AlbumAanandam + GenreCarnatic + KindAAC audio file + Size4556898 + Total Time195960 + Disc Number1 + Disc Count1 + Track Number6 + Track Count8 + Date Modified2007-12-14T16:09:03Z + Date Added2009-10-03T14:51:13Z + Bit Rate184 + Sample Rate44100 + CommentsRaga: Mand Tala: Adi + Normalization1923 + Persistent IDF3446603A57908D8 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Unni%20Krishnan/Aanandam/06%20Krishnam%20Kalaya.m4a + File Folder Count4 + Library Folder Count1 + + 1914 + + Track ID1914 + NameKandu Nee Sollavendum (Raga: Sindhubhairavi Tala: Adi) + ArtistUnni Krishnan + ComposerSudha Sachithananda + AlbumAanandam + GenreCarnatic + KindAAC audio file + Size10990694 + Total Time467200 + Disc Number1 + Disc Count1 + Track Number7 + Track Count8 + Date Modified2007-12-14T16:08:28Z + Date Added2009-10-03T14:51:13Z + Bit Rate186 + Sample Rate44100 + CommentsRaga: Sindhubhairavi Tala: Adi + Normalization1927 + Persistent ID91A78F7424BBFDBA + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Unni%20Krishnan/Aanandam/07%20Kandu%20Nee%20Sollavendum.m4a + File Folder Count4 + Library Folder Count1 + + 1916 + + Track ID1916 + NameThillanna (Raga: Chenchurti Tala: Adi) + ArtistUnni Krishnan + ComposerVeenai Seshanna + AlbumAanandam + GenreCarnatic + KindAAC audio file + Size5474653 + Total Time232040 + Disc Number1 + Disc Count1 + Track Number8 + Track Count8 + Date Modified2007-12-14T16:07:23Z + Date Added2009-10-03T14:51:14Z + Bit Rate187 + Sample Rate44100 + CommentsRaga: Chenchurti Tala: Adi + Normalization3269 + Persistent ID5E075F67EC8605FB + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Unni%20Krishnan/Aanandam/08%20Thillanna.m4a + File Folder Count4 + Library Folder Count1 + + 1918 + + Track ID1918 + NameEnati Nomuphalamo (Raga: Bhairavi Tala: Adi) + ArtistM.S. Subbulakshmi + ComposerThyagaraja + AlbumAalapana (Raga - Bhairavi) + GenreCarnatic + KindAAC audio file + Size34261761 + Total Time1441760 + Track Number1 + Track Count5 + Date Modified2007-12-15T07:47:28Z + Date Added2009-10-03T14:51:14Z + Bit Rate188 + Sample Rate44100 + CommentsRaga: Bhairavi Tala: Adi + Normalization2144 + Persistent IDA3CEF1C41DFF5526 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/M.S.%20Subbulakshmi/Aalapana%20(Raga%20-%20Bhairavi)/01%20Track%2001%203.m4a + File Folder Count4 + Library Folder Count1 + + 1920 + + Track ID1920 + NameMohana Rama (Raga: Mohanam Tala: Adi) + ArtistMaharajapuram Vishwanatha Iyer + ComposerThyagaraja + AlbumAalapana (Raga - Mohanam) + GenreCarnatic + KindAAC audio file + Size7043736 + Total Time383000 + Track Number1 + Track Count9 + Date Modified2007-12-15T08:29:03Z + Date Added2009-10-03T14:51:14Z + Bit Rate145 + Sample Rate44100 + CommentsRaga: Mohanam Tala: Adi + Normalization1262 + Persistent IDFCD2405B107D3022 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Maharajapuram%20Vishwanatha%20Iyer/Aalapana%20(Raga%20-%20Mohanam)/01%20Track%2001%204.m4a + File Folder Count4 + Library Folder Count1 + + 1922 + + Track ID1922 + NameTalk by Rajaji + ArtistM.S. Subbulakshmi + AlbumBhaja Govindam and Vishnu Sahasranamam + KindAAC audio file + Size4218586 + Total Time123466 + Track Number1 + Track Count4 + Date Modified2009-08-12T12:54:00Z + Date Added2009-10-03T14:51:14Z + Bit Rate256 + Sample Rate44100 + Normalization1180 + Artwork Count1 + Persistent ID98A1CDEC0F2E089A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/M.S.%20Subbulakshmi/Bhaja%20Govindam%20and%20Vishnu%20Sahasranamam/01%20Track%2001.m4a + File Folder Count4 + Library Folder Count1 + + 1924 + + Track ID1924 + NameBhaja Govindam + ArtistM.S. Subbulakshmi + AlbumBhaja Govindam and Vishnu Sahasranamam + KindAAC audio file + Size21763264 + Total Time658493 + Track Number2 + Track Count4 + Date Modified2009-08-12T12:54:00Z + Date Added2009-10-03T14:51:14Z + Bit Rate256 + Sample Rate44100 + Normalization2216 + Artwork Count1 + Persistent IDE8966A8627183C3E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/M.S.%20Subbulakshmi/Bhaja%20Govindam%20and%20Vishnu%20Sahasranamam/02%20Track%2002%201.m4a + File Folder Count4 + Library Folder Count1 + + 1926 + + Track ID1926 + NameKoluvai (Raga: Bhairavi Tala: Adi) + ArtistMadurai Mani Iyer + ComposerThyagaraja + AlbumAalapana (Raga - Bhairavi) + GenreCarnatic + KindAAC audio file + Size23065092 + Total Time1189893 + Track Number2 + Track Count5 + Date Modified2007-12-15T07:47:28Z + Date Added2009-10-03T14:51:15Z + Bit Rate153 + Sample Rate44100 + CommentsRaga: Bhairavi Tala: Adi + Normalization1572 + Persistent ID2C2B7DD8BFEB339F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Madurai%20Mani%20Iyer/Aalapana%20(Raga%20-%20Bhairavi)/02%20Track%2002.m4a + File Folder Count4 + Library Folder Count1 + + 1928 + + Track ID1928 + NameRagam Tanam Pallavi (Raga: Bhairavi Tala: Adi) + ArtistMaharajapuram Vishwanatha Iyer + AlbumAalapana (Raga - Bhairavi) + GenreCarnatic + KindAAC audio file + Size7105652 + Total Time389666 + Track Number3 + Track Count5 + Date Modified2007-12-15T07:47:28Z + Date Added2009-10-03T14:51:15Z + Bit Rate144 + Sample Rate44100 + CommentsRaga: Bhairavi Tala: Adi + Normalization1796 + Persistent ID609B934AB8034556 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Maharajapuram%20Vishwanatha%20Iyer/Aalapana%20(Raga%20-%20Bhairavi)/03%20Track%2003%201.m4a + File Folder Count4 + Library Folder Count1 + + 1930 + + Track ID1930 + NameVishnu Sahasranamam - Dhyanam + ArtistM.S. Subbulakshmi + AlbumBhaja Govindam and Vishnu Sahasranamam + KindAAC audio file + Size14959183 + Total Time407386 + Track Number3 + Track Count4 + Date Modified2009-08-12T12:53:58Z + Date Added2009-10-03T14:51:15Z + Bit Rate256 + Sample Rate44100 + Normalization2468 + Artwork Count1 + Persistent ID3E173C7A9797BE26 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/M.S.%20Subbulakshmi/Bhaja%20Govindam%20and%20Vishnu%20Sahasranamam/03%20Track%2003.m4a + File Folder Count4 + Library Folder Count1 + + 1932 + + Track ID1932 + NameKamakshy Amba (Raga: Bhairavi Tala: Misra Chapu) + ArtistM. Balamuralikrishna + ComposerShyama Sastri + AlbumAalapana (Raga - Bhairavi) + GenreCarnatic + KindAAC audio file + Size13939762 + Total Time590613 + Track Number4 + Track Count5 + Date Modified2007-12-15T07:47:28Z + Date Added2009-10-03T14:51:15Z + Bit Rate187 + Sample Rate44100 + CommentsRaga: Bhairavi Tala: Misra Chapu + Normalization1474 + Persistent ID85A4E8C83E63B7DC + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/M.%20Balamuralikrishna/Aalapana%20(Raga%20-%20Bhairavi)/04%20Track%2004%201.m4a + File Folder Count4 + Library Folder Count1 + + 1934 + + Track ID1934 + NameVishnu Sahasranamam - Stotram + ArtistM.S. Subbulakshmi + AlbumBhaja Govindam and Vishnu Sahasranamam + KindAAC audio file + Size46046953 + Total Time1392480 + Track Number4 + Track Count4 + Date Modified2009-08-12T12:53:57Z + Date Added2009-10-03T14:51:16Z + Bit Rate256 + Sample Rate44100 + Normalization2647 + Artwork Count1 + Persistent IDE81466F5BAD61E60 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/M.S.%20Subbulakshmi/Bhaja%20Govindam%20and%20Vishnu%20Sahasranamam/04%20Track%2004.m4a + File Folder Count4 + Library Folder Count1 + + 1936 + + Track ID1936 + NameYaro Ivar Yaro (Raga: Bhairavi Tala: Adi) + ArtistNityasree + ComposerArunachala Kavi + AlbumAalapana (Raga - Bhairavi) + GenreCarnatic + KindAAC audio file + Size29149993 + Total Time1181920 + Track Number5 + Track Count5 + Date Modified2007-12-16T16:09:58Z + Date Added2009-10-03T14:51:16Z + Bit Rate195 + Sample Rate44100 + CommentsRaga: Bhairavi Tala: Adi + Normalization3037 + Persistent ID8BB2CBDE45FF84EE + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Nityasree/Aalapana%20(Raga%20-%20Bhairavi)/05%20Track%2005%201.m4a + File Folder Count4 + Library Folder Count1 + + 1938 + + Track ID1938 + NameTrack 03 + AlbumMahesh's fav Vol 1 + KindAAC audio file + Size3264436 + Total Time137320 + Track Number3 + Track Count14 + Date Modified2007-09-10T10:07:26Z + Date Added2009-10-03T14:51:16Z + Bit Rate192 + Sample Rate44100 + Normalization268 + Persistent ID5CF1300E92E96DDA + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Unknown%20Artist/Mahesh's%20fav%20Vol%201/03%20Track%2003.m4a + File Folder Count4 + Library Folder Count1 + + 1940 + + Track ID1940 + NameTrack 04 + AlbumMahesh's fav Vol 1 + KindAAC audio file + Size10520816 + Total Time436533 + Track Number4 + Track Count14 + Date Modified2007-09-10T10:08:16Z + Date Added2009-10-03T14:51:16Z + Bit Rate192 + Sample Rate44100 + Normalization1234 + Persistent ID8F55ADFABE2250B4 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Unknown%20Artist/Mahesh's%20fav%20Vol%201/04%20Track%2004.m4a + File Folder Count4 + Library Folder Count1 + + 1942 + + Track ID1942 + NameTrack 05 + AlbumMahesh's fav Vol 1 + KindAAC audio file + Size6188458 + Total Time257493 + Track Number5 + Track Count14 + Date Modified2007-09-10T10:08:46Z + Date Added2009-10-03T14:51:17Z + Bit Rate192 + Sample Rate44100 + Normalization1272 + Persistent ID225533F36C8658F9 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Unknown%20Artist/Mahesh's%20fav%20Vol%201/05%20Track%2005.m4a + File Folder Count4 + Library Folder Count1 + + 1944 + + Track ID1944 + NameTrack 06 + AlbumMahesh's fav Vol 1 + KindAAC audio file + Size2846379 + Total Time120000 + Track Number6 + Track Count14 + Date Modified2007-09-10T10:09:00Z + Date Added2009-10-03T14:51:17Z + Bit Rate192 + Sample Rate44100 + Normalization441 + Persistent ID5A402AB067F10363 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Unknown%20Artist/Mahesh's%20fav%20Vol%201/06%20Track%2006.m4a + File Folder Count4 + Library Folder Count1 + + 1946 + + Track ID1946 + NameTrack 07 + AlbumMahesh's fav Vol 1 + KindAAC audio file + Size7266451 + Total Time302053 + Track Number7 + Track Count14 + Date Modified2007-09-10T10:09:36Z + Date Added2009-10-03T14:51:17Z + Bit Rate192 + Sample Rate44100 + Normalization2100 + Persistent ID28D77CBDAE171CF3 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Unknown%20Artist/Mahesh's%20fav%20Vol%201/07%20Track%2007.m4a + File Folder Count4 + Library Folder Count1 + + 1948 + + Track ID1948 + NameTrack 08 + AlbumMahesh's fav Vol 1 + KindAAC audio file + Size6327516 + Total Time263226 + Track Number8 + Track Count14 + Date Modified2007-09-10T10:10:04Z + Date Added2009-10-03T14:51:17Z + Bit Rate192 + Sample Rate44100 + Normalization1234 + Persistent ID702AB68D26715CEB + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Unknown%20Artist/Mahesh's%20fav%20Vol%201/08%20Track%2008.m4a + File Folder Count4 + Library Folder Count1 + + 1950 + + Track ID1950 + NameTrack 09 + AlbumMahesh's fav Vol 1 + KindAAC audio file + Size7412867 + Total Time308093 + Track Number9 + Track Count14 + Date Modified2007-09-10T10:10:40Z + Date Added2009-10-03T14:51:17Z + Bit Rate192 + Sample Rate44100 + Normalization1357 + Persistent ID22AFCBE781DEBBBE + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Unknown%20Artist/Mahesh's%20fav%20Vol%201/09%20Track%2009.m4a + File Folder Count4 + Library Folder Count1 + + 1952 + + Track ID1952 + NameTrack 10 + AlbumMahesh's fav Vol 1 + KindAAC audio file + Size4828556 + Total Time201293 + Track Number10 + Track Count14 + Date Modified2007-09-10T10:11:04Z + Date Added2009-10-03T14:51:17Z + Bit Rate192 + Sample Rate44100 + Normalization1303 + Persistent ID5EA5694A4DF68FB6 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Unknown%20Artist/Mahesh's%20fav%20Vol%201/10%20Track%2010.m4a + File Folder Count4 + Library Folder Count1 + + 1954 + + Track ID1954 + NameTrack 11 + AlbumMahesh's fav Vol 1 + KindAAC audio file + Size3633859 + Total Time151920 + Track Number11 + Track Count14 + Date Modified2007-09-10T10:11:24Z + Date Added2009-10-03T14:51:18Z + Bit Rate192 + Sample Rate44100 + Normalization780 + Persistent IDFE2F87D2B400955D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Unknown%20Artist/Mahesh's%20fav%20Vol%201/11%20Track%2011.m4a + File Folder Count4 + Library Folder Count1 + + 1956 + + Track ID1956 + NameTrack 12 + AlbumMahesh's fav Vol 1 + KindAAC audio file + Size4623516 + Total Time192826 + Track Number12 + Track Count14 + Date Modified2007-09-10T10:11:54Z + Date Added2009-10-03T14:51:18Z + Bit Rate192 + Sample Rate44100 + Normalization963 + Persistent ID2A843FA402EC05A6 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Unknown%20Artist/Mahesh's%20fav%20Vol%201/12%20Track%2012.m4a + File Folder Count4 + Library Folder Count1 + + 1958 + + Track ID1958 + NameTrack 13 + AlbumMahesh's fav Vol 1 + KindAAC audio file + Size9879547 + Total Time410040 + Track Number13 + Track Count14 + Date Modified2007-09-10T10:12:58Z + Date Added2009-10-03T14:51:18Z + Bit Rate192 + Sample Rate44100 + Normalization842 + Persistent ID5ADF0CAD6E50CEE5 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Unknown%20Artist/Mahesh's%20fav%20Vol%201/13%20Track%2013.m4a + File Folder Count4 + Library Folder Count1 + + 1960 + + Track ID1960 + NameTrack 14 + AlbumMahesh's fav Vol 1 + KindAAC audio file + Size12398658 + Total Time512333 + Track Number14 + Track Count14 + Date Modified2007-09-10T10:14:22Z + Date Added2009-10-03T14:51:18Z + Bit Rate192 + Sample Rate44100 + Normalization1683 + Persistent ID346CA160E1592D2D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Unknown%20Artist/Mahesh's%20fav%20Vol%201/14%20Track%2014.m4a + File Folder Count4 + Library Folder Count1 + + 1962 + + Track ID1962 + NameSaraguna (varnam) (Raga: Todi Tala: Adi) + ArtistM. Balamuralikrishna + ComposerM. Balamuralikrishna + AlbumAalapana (Raga - Thodi) + GenreCarnatic + KindAAC audio file + Size4980936 + Total Time271253 + Track Number1 + Track Count8 + Date Modified2007-12-17T10:46:59Z + Date Added2009-10-03T14:51:21Z + Bit Rate145 + Sample Rate44100 + CommentsRaga: Todi Tala: Adi + Normalization2215 + Persistent IDF420E90B94F2A58E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/M.%20Balamuralikrishna/Aalapana%20(Raga%20-%20Thodi)/01%20Track%2001.m4a + File Folder Count4 + Library Folder Count1 + + 1964 + + Track ID1964 + NameKadhanu vaariki (Raga: Todi Tala: Adi) + ArtistMaharajapuram Vishwanatha Iyer + ComposerThyagaraja + AlbumAalapana (Raga - Thodi) + GenreCarnatic + KindAAC audio file + Size8194486 + Total Time396973 + Track Number2 + Track Count8 + Date Modified2007-12-17T10:48:51Z + Date Added2009-10-03T14:51:21Z + Bit Rate163 + Sample Rate44100 + CommentsRaga: Todi Tala: Adi + Normalization1476 + Persistent IDD387C45B0BEEC75F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Maharajapuram%20Vishwanatha%20Iyer/Aalapana%20(Raga%20-%20Thodi)/02%20Track%2002.m4a + File Folder Count4 + Library Folder Count1 + + 1966 + + Track ID1966 + NameKotinadulu (Raga: Todi Tala: Adi) + ArtistAriyakudi Ramanuja Iyengar + ComposerThyagaraja + AlbumAalapana (Raga - Thodi) + GenreCarnatic + KindAAC audio file + Size7958088 + Total Time430066 + Track Number3 + Track Count8 + Date Modified2007-12-17T10:49:41Z + Date Added2009-10-03T14:51:22Z + Bit Rate146 + Sample Rate44100 + CommentsRaga: Todi Tala: Adi + Normalization2101 + Persistent IDAF6EB5C6A3E24065 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ariyakudi%20Ramanuja%20Iyengar/Aalapana%20(Raga%20-%20Thodi)/03%20Track%2003.m4a + File Folder Count4 + Library Folder Count1 + + 1968 + + Track ID1968 + NameDasarathe (Raga: Todi Tala: Adi) + ArtistM.S. Subbulakshmi + ComposerThyagaraja + AlbumAalapana (Raga - Thodi) + GenreCarnatic + KindAAC audio file + Size18130004 + Total Time967160 + Track Number4 + Track Count8 + Date Modified2007-12-17T10:50:07Z + Date Added2009-10-03T14:51:22Z + Bit Rate148 + Sample Rate44100 + CommentsRaga: Todi Tala: Adi + Normalization1675 + Persistent ID90463A3FE4B12264 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/M.S.%20Subbulakshmi/Aalapana%20(Raga%20-%20Thodi)/04%20Track%2004.m4a + File Folder Count4 + Library Folder Count1 + + 1970 + + Track ID1970 + NameDaasukovalena (Raga: Todi Tala: Jhampa) + ArtistD.K. Pattammal + ComposerThyagaraja + AlbumAalapana (Raga - Thodi) + GenreCarnatic + KindAAC audio file + Size21349128 + Total Time866160 + Track Number5 + Track Count8 + Date Modified2007-12-17T10:51:17Z + Date Added2009-10-03T14:51:22Z + Bit Rate195 + Sample Rate44100 + CommentsRaga: Todi Tala: Jhampa + Normalization2398 + Persistent IDF610EDBE9A4CF468 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/D.K.%20Pattammal/Aalapana%20(Raga%20-%20Thodi)/05%20Track%2005.m4a + File Folder Count4 + Library Folder Count1 + + 1972 + + Track ID1972 + NameKamalambike (Raga: Todi Tala: Roopakam) + ArtistS. Rajeshwari + ComposerDikshitar + AlbumAalapana (Raga - Thodi) + GenreCarnatic + KindAAC audio file + Size19288957 + Total Time782493 + Track Number6 + Track Count8 + Date Modified2007-12-17T10:52:14Z + Date Added2009-10-03T14:51:22Z + Bit Rate195 + Sample Rate44100 + CommentsRaga: Todi Tala: Roopakam + Normalization4787 + Persistent ID1932F506D014C154 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/S.%20Rajeshwari/Aalapana%20(Raga%20-%20Thodi)/06%20Track%2006.m4a + File Folder Count4 + Library Folder Count1 + + 1974 + + Track ID1974 + NameRara vasudeva (Raga: Todi Tala: Roopakam) + ArtistViyay siva + ComposerWalajapet Venkataramana Bhagavatar + AlbumAalapana (Raga - Thodi) + GenreCarnatic + KindAAC audio file + Size12734458 + Total Time536480 + Track Number7 + Track Count8 + Date Modified2007-12-17T10:53:14Z + Date Added2009-10-03T14:51:22Z + Bit Rate188 + Sample Rate44100 + CommentsRaga: Todi Tala: Roopakam + Normalization2302 + Persistent IDB1707FDA76EB31E2 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Viyay%20siva/Aalapana%20(Raga%20-%20Thodi)/07%20Track%2007.m4a + File Folder Count4 + Library Folder Count1 + + 1976 + + Track ID1976 + NameRajuvedala (Raga: Todi Tala: Roopakam) + ArtistT. M. Krishna + ComposerThyagaraja + AlbumAalapana (Raga - Thodi) + GenreCarnatic + KindAAC audio file + Size12755600 + Total Time538053 + Track Number8 + Track Count8 + Date Modified2007-12-17T10:53:40Z + Date Added2009-10-03T14:51:23Z + Bit Rate188 + Sample Rate44100 + CommentsRaga: Todi Tala: Roopakam + Normalization2373 + Persistent ID9BA255E7173718D7 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/T.%20M.%20Krishna/Aalapana%20(Raga%20-%20Thodi)/08%20Track%2008.m4a + File Folder Count4 + Library Folder Count1 + + 1978 + + Track ID1978 + NameVisvesvara Darshan (Raga: Sindhubhairavi Tala: Roopakam) + ArtistAlathur Brothers + ComposerSwathi Thirunal + AlbumAalapana (Raga - Sindhubhairavi) + GenreCarnatic + KindAAC audio file + Size8714525 + Total Time367426 + Track Number1 + Track Count11 + Date Modified2007-12-15T08:13:30Z + Date Added2009-10-03T14:51:23Z + Bit Rate188 + Sample Rate44100 + CommentsRaga: Sindhubhairavi Tala: Roopakam + Normalization1816 + Persistent ID7199BE4C36479A2B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alathur%20Brothers/Aalapana%20(Raga%20-%20Sindhubhairavi)/01%20Track%2001.m4a + File Folder Count4 + Library Folder Count1 + + 1980 + + Track ID1980 + NameKoovi Azhaikka (Raga: Sindhubhairavai Tala: Adi) + ArtistRadha Jayalakshmi + ComposerPapanasam Sivan + AlbumAalapana (Raga - Sindhubhairavi) + GenreCarnatic + KindAAC audio file + Size5216841 + Total Time212826 + Track Number2 + Track Count11 + Date Modified2007-12-15T08:13:14Z + Date Added2009-10-03T14:51:23Z + Bit Rate194 + Sample Rate44100 + CommentsRaga: Sindhubhairavai Tala: Adi + Normalization3745 + Persistent ID0F3F70E0C504063C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Radha%20Jayalakshmi/Aalapana%20(Raga%20-%20Sindhubhairavi)/02%20Track%2002.m4a + File Folder Count4 + Library Folder Count1 + + 1982 + + Track ID1982 + NameManadirkkugandadu (Raga: Sindhubhairavi Tala: Adi) + ArtistNeyveli R. Santhanagopalan + ComposerThanjavur Sankara Iyer + AlbumAalapana (Raga - Sindhubhairavi) + GenreCarnatic + KindAAC audio file + Size5442374 + Total Time230373 + Track Number3 + Track Count11 + Date Modified2007-12-15T08:15:23Z + Date Added2009-10-03T14:51:23Z + Bit Rate187 + Sample Rate44100 + CommentsRaga: Sindhubhairavi Tala: Adi + Normalization2016 + Persistent IDEB4D7FE4F4A15F40 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Neyveli%20R.%20Santhanagopalan/Aalapana%20(Raga%20-%20Sindhubhairavi)/03%20Track%2003.m4a + File Folder Count4 + Library Folder Count1 + + 1984 + + Track ID1984 + NameKalyana Gopalam (Raga: Sindhubhairavi Tala: Kanda Chapu) + ArtistSudha Raghunathan + ComposerPurandara Dasa + AlbumAalapana (Raga - Sindhubhairavi) + GenreCarnatic + KindAAC audio file + Size9018950 + Total Time382360 + Track Number4 + Track Count11 + Date Modified2007-12-15T08:16:46Z + Date Added2009-10-03T14:51:23Z + Bit Rate187 + Sample Rate44100 + CommentsRaga: Sindhubhairavi Tala: Kanda Chapu + Normalization1259 + Persistent ID5BA76CCE94900A79 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Sudha%20Raghunathan/Aalapana%20(Raga%20-%20Sindhubhairavi)/04%20Track%2004.m4a + File Folder Count4 + Library Folder Count1 + + 1986 + + Track ID1986 + NameKarunai Deivame (Raga: Sindhubhairavi Tala: Adi) + ArtistD. K. Jayaraman + ComposerMadurai Srinivasan + AlbumAalapana (Raga - Sindhubhairavi) + GenreCarnatic + KindAAC audio file + Size5491931 + Total Time233493 + Track Number5 + Track Count11 + Date Modified2007-12-15T08:18:25Z + Date Added2009-10-03T14:51:24Z + Bit Rate186 + Sample Rate44100 + CommentsRaga: Sindhubhairavi Tala: Adi + Normalization2616 + Persistent ID2243ECDE57898503 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/D.%20K.%20Jayaraman/Aalapana%20(Raga%20-%20Sindhubhairavi)/05%20Track%2005.m4a + File Folder Count4 + Library Folder Count1 + + 1988 + + Track ID1988 + NameChetaha Sriramam (Raga: Sindhubhairavi Tala: Adi) + ArtistM. Balamuralikrishna + ComposerSadashiva Bramhendrar + AlbumAalapana (Raga - Sindhubhairavi) + GenreCarnatic + KindAAC audio file + Size4725009 + Total Time200720 + Track Number6 + Track Count11 + Date Modified2007-12-15T08:19:24Z + Date Added2009-10-03T14:51:24Z + Bit Rate186 + Sample Rate44100 + CommentsRaga: Sindhubhairavi Tala: Adi + Normalization1237 + Persistent ID23F1A0BF26A58FA9 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/M.%20Balamuralikrishna/Aalapana%20(Raga%20-%20Sindhubhairavi)/06%20Track%2006.m4a + File Folder Count4 + Library Folder Count1 + + 1990 + + Track ID1990 + NameKandu Nee (Raga: Sindhubhairavi Tala: Adi) + ArtistSanjay Subramanyam + ComposerN. S. Chidambaram + AlbumAalapana (Raga - Sindhubhairavi) + GenreCarnatic + KindAAC audio file + Size7919984 + Total Time335880 + Track Number7 + Track Count11 + Date Modified2007-12-15T08:21:05Z + Date Added2009-10-03T14:51:24Z + Bit Rate187 + Sample Rate44100 + CommentsRaga: Sindhubhairavi Tala: Adi + Normalization1703 + Persistent ID9FC23554750AD99D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Sanjay%20Subramanyam/Aalapana%20(Raga%20-%20Sindhubhairavi)/07%20Track%2007.m4a + File Folder Count4 + Library Folder Count1 + + 1992 + + Track ID1992 + NameVenkatachala Nilayam (Raga: Sindhubhairavi Tala: Adi) + ArtistM. L. Vasantha Kumari + ComposerPurandara Dasa + AlbumAalapana (Raga - Sindhubhairavi) + GenreCarnatic + KindAAC audio file + Size3800255 + Total Time203986 + Track Number8 + Track Count11 + Date Modified2007-12-15T08:22:21Z + Date Added2009-10-03T14:51:24Z + Bit Rate147 + Sample Rate44100 + CommentsRaga: Sindhubhairavi Tala: Adi + Normalization5143 + Persistent ID9F89055472F200DF + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/M.%20L.%20Vasantha%20Kumari/Aalapana%20(Raga%20-%20Sindhubhairavi)/08%20Track%2008.m4a + File Folder Count4 + Library Folder Count1 + + 1994 + + Track ID1994 + NameVaishnava Janato (Raga: Sindhubhairavi Tala: Adi) + ArtistAriyakudi Ramanuja Iyengar + ComposerNarsi Mehta + AlbumAalapana (Raga - Sindhubhairavi) + GenreCarnatic + KindAAC audio file + Size9303789 + Total Time393853 + Track Number10 + Track Count11 + Date Modified2007-12-15T08:24:29Z + Date Added2009-10-03T14:51:24Z + Bit Rate187 + Sample Rate44100 + CommentsRaga: Sindhubhairavi Tala: Adi + Normalization2357 + Persistent IDEF8A0091ED4C7627 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ariyakudi%20Ramanuja%20Iyengar/Aalapana%20(Raga%20-%20Sindhubhairavi)/10%20Track%2010.m4a + File Folder Count4 + Library Folder Count1 + + 1996 + + Track ID1996 + NameNenjukku Neethiyum (Raga: Sindhubhairavi Tala: Adi) + ArtistM.S. Subbulakshmi + ComposerSubramania Bharathi + AlbumAalapana (Raga - Sindhubhairavi) + GenreCarnatic + KindAAC audio file + Size4113009 + Total Time174386 + Track Number11 + Track Count11 + Date Modified2007-12-15T08:25:12Z + Date Added2009-10-03T14:51:24Z + Bit Rate186 + Sample Rate44100 + CommentsRaga: Sindhubhairavi Tala: Adi + Normalization2557 + Persistent IDDE6D87BE458F4B8A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/M.S.%20Subbulakshmi/Aalapana%20(Raga%20-%20Sindhubhairavi)/11%20Track%2011.m4a + File Folder Count4 + Library Folder Count1 + + 1998 + + Track ID1998 + NameNarayana Divya Namam (Raga: Mohanam Tala: Adi) + Album ArtistT.N. Seshagopalan + ComposerPapanasam Sivan + AlbumAalapana (Raga - Mohanam) + GenreCarnatic + KindAAC audio file + Size23466340 + Total Time989920 + Track Number2 + Track Count9 + Date Modified2007-12-15T07:53:34Z + Date Added2009-10-03T14:51:25Z + Bit Rate188 + Sample Rate44100 + CommentsRaga: Mohanam Tala: Adi + Normalization1425 + Persistent IDFA7DEA17AE23F60B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/T.N.%20Seshagopalan/Aalapana%20(Raga%20-%20Mohanam)/02%20Track%2002.m4a + File Folder Count4 + Library Folder Count1 + + 2000 + + Track ID2000 + NameNannu Palimpa (Raga: Mohanam Tala: Adi) + ArtistM. Balamuralikrishna + ComposerThyagaraja + AlbumAalapana (Raga - Mohanam) + GenreCarnatic + KindAAC audio file + Size20190024 + Total Time853333 + Track Number3 + Track Count9 + Date Modified2007-12-15T07:54:29Z + Date Added2009-10-03T14:51:25Z + Bit Rate187 + Sample Rate44100 + CommentsRaga: Mohanam Tala: Adi + Normalization1703 + Persistent ID140288C979B8230A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/M.%20Balamuralikrishna/Aalapana%20(Raga%20-%20Mohanam)/03%20Track%2003.m4a + File Folder Count4 + Library Folder Count1 + + 2002 + + Track ID2002 + NameKapali (Raga: Mohanam Tala: Adi) + ArtistMadurai Mani Iyer + ComposerPapanasam Sivan + AlbumAalapana (Raga - Mohanam) + GenreCarnatic + KindAAC audio file + Size9101747 + Total Time383613 + Track Number4 + Track Count9 + Date Modified2007-12-15T07:55:23Z + Date Added2009-10-03T14:51:25Z + Bit Rate188 + Sample Rate44100 + CommentsRaga: Mohanam Tala: Adi + Normalization1613 + Persistent ID47C5E505FEF432A7 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Madurai%20Mani%20Iyer/Aalapana%20(Raga%20-%20Mohanam)/04%20Track%2004.m4a + File Folder Count4 + Library Folder Count1 + + 2004 + + Track ID2004 + NameDayaraani (Raga: Mohanam Tala: Kanda Chapu) + ArtistM.L. Vasanthakumari + ComposerThyagaraja + AlbumAalapana (Raga - Mohanam) + GenreCarnatic + KindAAC audio file + Size5271288 + Total Time222440 + Track Number5 + Track Count9 + Date Modified2007-12-15T08:02:00Z + Date Added2009-10-03T14:51:25Z + Bit Rate187 + Sample Rate44100 + CommentsRaga: Mohanam Tala: Kanda Chapu + Normalization2827 + Persistent ID6522369982CB5B4C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/M.L.%20Vasanthakumari/Aalapana%20(Raga%20-%20Mohanam)/05%20Track%2005.m4a + File Folder Count4 + Library Folder Count1 + + 2006 + + Track ID2006 + NameSada Palaya (Raga: Mohanam Tala: Adi) + ArtistTrichur V. Ramachandran + ComposerG. N. Balasubramanian + AlbumAalapana (Raga - Mohanam) + GenreCarnatic + KindAAC audio file + Size15563845 + Total Time632226 + Track Number6 + Track Count9 + Date Modified2007-12-15T07:57:44Z + Date Added2009-10-03T14:51:25Z + Bit Rate195 + Sample Rate44100 + CommentsRaga: Mohanam Tala: Adi + Normalization4510 + Persistent ID6649474A23CBC6CC + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Trichur%20V.%20Ramachandran/Aalapana%20(Raga%20-%20Mohanam)/06%20Track%2006.m4a + File Folder Count4 + Library Folder Count1 + + 2008 + + Track ID2008 + NameMayil Vahana (Raga: Mohanam Tala: Adi) + ArtistRadha Jayalakshmi + ComposerPapanasam Sivan + AlbumAalapana (Raga - Mohanam) + GenreCarnatic + KindAAC audio file + Size9682041 + Total Time403440 + Track Number7 + Track Count9 + Date Modified2007-12-15T07:58:38Z + Date Added2009-10-03T14:51:25Z + Bit Rate190 + Sample Rate44100 + CommentsRaga: Mohanam Tala: Adi + Normalization2621 + Persistent ID72351E6562A0876D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Radha%20Jayalakshmi/Aalapana%20(Raga%20-%20Mohanam)/07%20Track%2007.m4a + File Folder Count4 + Library Folder Count1 + + 2010 + + Track ID2010 + NameYen Pallikondeerayya (Raga: Mohanam Tala: Adi) + ArtistN. C. VasanthaKokilam + ComposerArunachala Kavi + AlbumAalapana (Raga - Mohanam) + GenreCarnatic + KindAAC audio file + Size6871404 + Total Time375986 + Track Number8 + Track Count9 + Date Modified2007-12-15T07:59:52Z + Date Added2009-10-03T14:51:25Z + Bit Rate144 + Sample Rate44100 + CommentsRaga: Mohanam Tala: Adi + Normalization3289 + Persistent ID5A2F24D8D31D5F73 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/N.%20C.%20VasanthaKokilam/Aalapana%20(Raga%20-%20Mohanam)/08%20Track%2008.m4a + File Folder Count4 + Library Folder Count1 + + 2012 + + Track ID2012 + NameKadambari Priya (Raga: Mohanam Tala: Tisra Triputa) + ArtistVijaya Siva + ComposerDikshitar + AlbumAalapana (Raga - Mohanam) + GenreCarnatic + KindAAC audio file + Size10633406 + Total Time434546 + Track Number9 + Track Count9 + Date Modified2007-12-15T08:01:33Z + Date Added2009-10-03T14:51:25Z + Bit Rate194 + Sample Rate44100 + CommentsRaga: Mohanam Tala: Tisra Triputa + Normalization1202 + Persistent IDE77FD1AF9545C3BE + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Vijaya%20Siva/Aalapana%20(Raga%20-%20Mohanam)/09%20Kadambari%20Priya%20(Raga_%20Mohanam%20Tala_%20Tisra%20Triputa).m4a + File Folder Count4 + Library Folder Count1 + + 2014 + + Track ID2014 + NameSree Balasubramanya (Raga: Bilahari Tala: Misra Chapu) + ArtistChembai Vaidyanatha Bhagavatar + ComposerDikshitar + AlbumAalapana (Raga - Bilahari) + GenreCarnatic + KindAAC audio file + Size4257593 + Total Time207826 + Track Number1 + Track Count12 + Date Modified2007-12-15T16:26:28Z + Date Added2009-10-03T14:51:26Z + Bit Rate162 + Sample Rate44100 + CommentsRaga: Bilahari Tala: Misra Chapu + Normalization2313 + Persistent ID23CADA7614A73A02 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chembai%20Vaidyanatha%20Bhagavatar/Aalapana%20(Raga%20-%20Bilahari)/01%20Sree%20Balasubramanya%20(Raga_%20Bilahari%20Tala_%20Misra%20Chapu).m4a + File Folder Count4 + Library Folder Count1 + + 2016 + + Track ID2016 + NameKamakshi (Raga: Bilahari Tala: Adi) + ArtistD. K. Pattammal + ComposerDikshitar + AlbumAalapana (Raga - Bilahari) + GenreCarnatic + KindAAC audio file + Size16307293 + Total Time672733 + Track Number2 + Track Count12 + Date Modified2007-12-15T16:27:19Z + Date Added2009-10-03T14:51:26Z + Bit Rate192 + Sample Rate44100 + CommentsRaga: Bilahari Tala: Adi + Normalization2264 + Persistent IDA4E7244EEDE5D4C1 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/D.%20K.%20Pattammal/Aalapana%20(Raga%20-%20Bilahari)/02%20Kamakshi%20(Raga_%20Bilahari%20Tala_%20Adi).m4a + File Folder Count4 + Library Folder Count1 + + 2018 + + Track ID2018 + NameKanugontini (Raga: Bilahari Tala: Adi) + ArtistT. N. Seshagopalan + ComposerThyagaraja + AlbumAalapana (Raga - Bilahari) + GenreCarnatic + KindAAC audio file + Size5837936 + Total Time247333 + Track Number3 + Track Count12 + Date Modified2007-12-15T16:28:03Z + Date Added2009-10-03T14:51:26Z + Bit Rate187 + Sample Rate44100 + CommentsRaga: Bilahari Tala: Adi + Normalization2776 + Persistent ID722C3BA0023D1C5B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/T.%20N.%20Seshagopalan/Aalapana%20(Raga%20-%20Bilahari)/03%20Kanugontini%20(Raga_%20Bilahari%20Tala_%20Adi).m4a + File Folder Count4 + Library Folder Count1 + + 2020 + + Track ID2020 + NameYekadantam (Raga: Bilahari Tala: Misra Chapu) + ArtistM. L. Vasanthakumari + ComposerDikshitar + AlbumAalapana (Raga - Bilahari) + GenreCarnatic + KindAAC audio file + Size6404031 + Total Time260373 + Track Number4 + Track Count12 + Date Modified2007-12-15T16:28:57Z + Date Added2009-10-03T14:51:26Z + Bit Rate195 + Sample Rate44100 + CommentsRaga: Bilahari Tala: Misra Chapu + Normalization2721 + Persistent ID52C98509760CD60B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/M.%20L.%20Vasanthakumari/Aalapana%20(Raga%20-%20Bilahari)/04%20Yekadantam%20(Raga_%20Bilahari%20Tala_%20Misra%20Chapu).m4a + File Folder Count4 + Library Folder Count1 + + 2022 + + Track ID2022 + NameNarasimha Nanubrovave (Raga: Bilahari Tala: Misra Chapu) + ArtistT. V. Shankaranarayanan + ComposerThyagaraja + AlbumAalapana (Raga - Bilahari) + GenreCarnatic + KindAAC audio file + Size20364773 + Total Time842133 + Track Number5 + Track Count12 + Date Modified2007-12-15T16:30:00Z + Date Added2009-10-03T14:51:26Z + Bit Rate191 + Sample Rate44100 + CommentsRaga: Bilahari Tala: Misra Chapu + Normalization2350 + Persistent ID6F8213D58395B5BE + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/T.%20V.%20Shankaranarayanan/Aalapana%20(Raga%20-%20Bilahari)/05%20Narasimha%20Nanubrovave%20(Raga_%20Bilahari%20Tala_%20Misra%20Chapu).m4a + File Folder Count4 + Library Folder Count1 + + 2024 + + Track ID2024 + NameSharanou Janakana (Raga: Bilahari Tala: Adi) + ArtistSudha Raghunathan + ComposerPurandara Dasa + AlbumAalapana (Raga - Bilahari) + GenreCarnatic + KindAAC audio file + Size10175047 + Total Time414146 + Track Number7 + Track Count12 + Date Modified2007-12-15T16:31:40Z + Date Added2009-10-03T14:51:27Z + Bit Rate195 + Sample Rate44100 + CommentsRaga: Bilahari Tala: Adi + Normalization3753 + Persistent ID6D56259846867654 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Sudha%20Raghunathan/Aalapana%20(Raga%20-%20Bilahari)/07%20Sharanou%20Janakana%20(Raga_%20Bilahari%20Tala_%20Adi).m4a + File Folder Count4 + Library Folder Count1 + + 2026 + + Track ID2026 + NameSarvesa (Raga: Bilahari Tala: Adi) + ArtistSowmya + ComposerPapanasam Sivan + AlbumAalapana (Raga - Bilahari) + GenreCarnatic + KindAAC audio file + Size7933428 + Total Time335106 + Track Number8 + Track Count12 + Date Modified2007-12-15T16:33:13Z + Date Added2009-10-03T14:51:27Z + Bit Rate187 + Sample Rate44100 + CommentsRaga: Bilahari Tala: Adi + Normalization1655 + Persistent ID340D217AFFDE892D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Sowmya/Aalapana%20(Raga%20-%20Bilahari)/08%20Sarvesa%20(Raga_%20Bilahari%20Tala_%20Adi).m4a + File Folder Count4 + Library Folder Count1 + + 2028 + + Track ID2028 + NameTholijanmamuna (Raga: Bilahari Tala: Kanda Chapu) + ArtistNityasree + ComposerThyagaraja + AlbumAalapana (Raga - Bilahari) + GenreCarnatic + KindAAC audio file + Size13563093 + Total Time552826 + Track Number9 + Track Count12 + Date Modified2007-12-15T16:33:03Z + Date Added2009-10-03T14:51:27Z + Bit Rate194 + Sample Rate44100 + CommentsRaga: Bilahari Tala: Kanda Chapu + Normalization4479 + Persistent ID028E3D6F84615CDC + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Nityasree/Aalapana%20(Raga%20-%20Bilahari)/09%20Tholijanmamuna%20(Raga_%20Bilahari%20Tala_%20Kanda%20Chapu).m4a + File Folder Count4 + Library Folder Count1 + + 2030 + + Track ID2030 + NameParidhanamichite (Raga: Bilahari Tala: Kanda Chapu) + ArtistT. M. Krishna + ComposerPatnam Subramania Iyer + AlbumAalapana (Raga - Bilahari) + GenreCarnatic + KindAAC audio file + Size7268747 + Total Time304453 + Track Number10 + Track Count12 + Date Modified2007-12-15T16:34:04Z + Date Added2009-10-03T14:51:27Z + Bit Rate189 + Sample Rate44100 + CommentsRaga: Bilahari Tala: Kanda Chapu + Normalization5712 + Persistent ID111F8F9B9CF9E259 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/T.%20M.%20Krishna/Aalapana%20(Raga%20-%20Bilahari)/10%20Paridhanamichite%20(Raga_%20Bilahari%20Tala_%20Kanda%20Chapu).m4a + File Folder Count4 + Library Folder Count1 + + 2032 + + Track ID2032 + NameIntha Kannananda (Raga: Bilahari Tala: Roopakam) + ArtistPriya Sisters + ComposerThyagaraja + AlbumAalapana (Raga - Bilahari) + GenreCarnatic + KindAAC audio file + Size7513204 + Total Time318306 + Track Number11 + Track Count12 + Date Modified2007-12-15T16:34:45Z + Date Added2009-10-03T14:51:27Z + Bit Rate187 + Sample Rate44100 + CommentsRaga: Bilahari Tala: Roopakam + Normalization2187 + Persistent IDDDF62494107F83EA + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Priya%20Sisters/Aalapana%20(Raga%20-%20Bilahari)/11%20Intha%20Kannananda%20(Raga_%20Bilahari%20Tala_%20Roopakam).m4a + File Folder Count4 + Library Folder Count1 + + 2034 + + Track ID2034 + NamePooraya Mama Kamam (Raga: Bilahari Tala: Adi) + ArtistSumitra Vasudev + ComposerNarayana Theerthar + AlbumAalapana (Raga - Bilahari) + GenreCarnatic + KindAAC audio file + Size8465278 + Total Time344186 + Track Number12 + Track Count12 + Date Modified2007-12-15T16:35:28Z + Date Added2009-10-03T14:51:28Z + Bit Rate195 + Sample Rate44100 + CommentsRaga: Bilahari Tala: Adi + Normalization2175 + Persistent ID3F6D9C80555F5671 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Sumitra%20Vasudev/Aalapana%20(Raga%20-%20Bilahari)/12%20Pooraya%20Mama%20Kamam%20(Raga_%20Bilahari%20Tala_%20Adi).m4a + File Folder Count4 + Library Folder Count1 + + 2036 + + Track ID2036 + NameAadum Chidambaramo (Raga: Behag Tala: Adi) + ArtistM.S. Subbulakshmi + ComposerGopalakrishna Bharathiyar + AlbumAalapana (Raga - Behag) + GenreCarnatic + KindAAC audio file + Size3498426 + Total Time178440 + Track Number1 + Track Count14 + Date Modified2007-12-15T12:35:00Z + Date Added2009-10-03T14:51:28Z + Bit Rate155 + Sample Rate44100 + CommentsRaga: Behag Tala: Adi + Play Count1 + Play Date3353215065 + Play Date UTC2010-04-04T03:07:45Z + Normalization3581 + Persistent IDA0DC8891697B8725 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/M.S.%20Subbulakshmi/Aalapana%20(Raga%20-%20Behag)/01%20Aadum%20Chidambaramo%20(Raga_%20Behag%20Tala_%20Adi).m4a + File Folder Count4 + Library Folder Count1 + + 2038 + + Track ID2038 + NameSaramaina Mata (Raga: Behag Tala: Roopakam) + ArtistM.L. Vasanthakumari + ComposerSwathi Thirunal + AlbumAalapana (Raga - Behag) + GenreCarnatic + KindAAC audio file + Size4879149 + Total Time198426 + Track Number2 + Track Count14 + Date Modified2007-12-15T12:36:46Z + Date Added2009-10-03T14:51:28Z + Bit Rate195 + Sample Rate44100 + CommentsRaga: Behag Tala: Roopakam + Normalization3346 + Persistent ID3CDA2254C26566D2 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/M.L.%20Vasanthakumari/Aalapana%20(Raga%20-%20Behag)/02%20Saramaina%20Mata%20(Raga_%20Behag%20Tala_%20Roopakam).m4a + File Folder Count4 + Library Folder Count1 + + 2040 + + Track ID2040 + NameKannare Kandena (Raga: Behag Tala: Adi) + ArtistRadha Jayalakshmi + ComposerPurandara Dasa + AlbumAalapana (Raga - Behag) + GenreCarnatic + KindAAC audio file + Size5861445 + Total Time238680 + Track Number3 + Track Count14 + Date Modified2007-12-15T12:39:00Z + Date Added2009-10-03T14:51:28Z + Bit Rate194 + Sample Rate44100 + CommentsRaga: Behag Tala: Adi + Normalization3641 + Persistent ID1E17B7A9E4E74E5F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Radha%20Jayalakshmi/Aalapana%20(Raga%20-%20Behag)/03%20Kannare%20Kandena%20(Raga_%20Behag%20Tala_%20Adi).m4a + File Folder Count4 + Library Folder Count1 + + 2042 + + Track ID2042 + NameNanake Badavanu (Raga: Behag Tala: Jampa) + ArtistM.S. Subbulakshmi + ComposerPurandara Dasa + AlbumAalapana (Raga - Behag) + GenreCarnatic + KindAAC audio file + Size4984935 + Total Time210240 + Track Number4 + Track Count14 + Date Modified2007-12-15T12:38:54Z + Date Added2009-10-03T14:51:28Z + Bit Rate188 + Sample Rate44100 + CommentsRaga: Behag Tala: Jampa + Normalization3488 + Persistent IDDF49DADD45CE4AE6 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/M.S.%20Subbulakshmi/Aalapana%20(Raga%20-%20Behag)/04%20Nanake%20Badavanu%20(Raga_%20Behag%20Tala_%20Jampa).m4a + File Folder Count4 + Library Folder Count1 + + 2044 + + Track ID2044 + NameMomu Jupara (Raga: Behag Tala: Roopakam) + ArtistO.S. Thyagarajan + ComposerAnnamacharya + AlbumAalapana (Raga - Behag) + GenreCarnatic + KindAAC audio file + Size5073825 + Total Time213293 + Track Number5 + Track Count14 + Date Modified2007-12-15T12:40:00Z + Date Added2009-10-03T14:51:28Z + Bit Rate188 + Sample Rate44100 + CommentsRaga: Behag Tala: Roopakam + Normalization1508 + Persistent ID43A8AE3695BC7EF4 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/O.S.%20Thyagarajan/Aalapana%20(Raga%20-%20Behag)/05%20Momu%20Jupara%20(Raga_%20Behag%20Tala_%20Roopakam).m4a + File Folder Count4 + Library Folder Count1 + + 2046 + + Track ID2046 + NameSamayamidera (Raga: Behag Tala: Roopakam) + ArtistJohn B. Higgins + ComposerPatnam Subramania Iyer + AlbumAalapana (Raga - Behag) + GenreCarnatic + KindAAC audio file + Size4006695 + Total Time170093 + Track Number6 + Track Count14 + Date Modified2007-12-15T12:41:24Z + Date Added2009-10-03T14:51:29Z + Bit Rate186 + Sample Rate44100 + CommentsRaga: Behag Tala: Roopakam + Normalization2222 + Persistent ID600A47780506E375 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/John%20B.%20Higgins/Aalapana%20(Raga%20-%20Behag)/06%20Samayamidera%20(Raga_%20Behag%20Tala_%20Roopakam).m4a + File Folder Count4 + Library Folder Count1 + + 2048 + + Track ID2048 + NameOruthi Maganai (Raga: Behag Tala: Adi) + ArtistSanjay Subramanyam + ComposerThiruppavai + AlbumAalapana (Raga - Behag) + GenreCarnatic + KindAAC audio file + Size5385731 + Total Time228573 + Track Number7 + Track Count14 + Date Modified2007-12-15T12:43:16Z + Date Added2009-10-03T14:51:29Z + Bit Rate186 + Sample Rate44100 + CommentsRaga: Behag Tala: Adi + Normalization2000 + Persistent ID940ECE170AAAED7E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Sanjay%20Subramanyam/Aalapana%20(Raga%20-%20Behag)/07%20Oruthi%20Maganai%20(Raga_%20Behag%20Tala_%20Adi).m4a + File Folder Count4 + Library Folder Count1 + + 2050 + + Track ID2050 + NameSenthamizhnaadu (Raga: Behag Tala: Adi (Tisram)) + ArtistAnuradha Suresh Krishnamurthi + ComposerSubramania Bharathi + AlbumAalapana (Raga - Behag) + GenreCarnatic + KindAAC audio file + Size3578202 + Total Time152000 + Track Number8 + Track Count14 + Date Modified2007-12-15T12:46:19Z + Date Added2009-10-03T14:51:29Z + Bit Rate186 + Sample Rate44100 + CommentsRaga: Behag Tala: Adi (Tisram) + Normalization2655 + Persistent IDB583ED405EE201E9 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Anuradha%20Suresh%20Krishnamurthi/Aalapana%20(Raga%20-%20Behag)/08%20Senthamizhnaadu%20(Raga_%20Behag%20Tala_%20Adi%20(Tisram)).m4a + File Folder Count4 + Library Folder Count1 + + 2052 + + Track ID2052 + NameReena Madanutha (Raga: Behag Tala: Adi) + ArtistSanjay Subramanyam + ComposerSwathi Thirunal + AlbumAalapana (Raga - Behag) + GenreCarnatic + KindAAC audio file + Size6589578 + Total Time270080 + Track Number9 + Track Count14 + Date Modified2007-12-15T12:47:15Z + Date Added2009-10-03T14:51:29Z + Bit Rate193 + Sample Rate44100 + CommentsRaga: Behag Tala: Adi + Normalization2813 + Persistent IDA37B8C8BA9F146CA + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Sanjay%20Subramanyam/Aalapana%20(Raga%20-%20Behag)/09%20Reena%20Madanutha%20(Raga_%20Behag%20Tala_%20Adi).m4a + File Folder Count4 + Library Folder Count1 + + 2054 + + Track ID2054 + NamePahi Krishna (Raga: Behag Tala: Adi) + ArtistT. M. Krishna + ComposerGopalakrishna Bharathiyar + AlbumAalapana (Raga - Behag) + GenreCarnatic + KindAAC audio file + Size5973246 + Total Time254226 + Track Number10 + Track Count14 + Date Modified2007-12-15T12:48:04Z + Date Added2009-10-03T14:51:29Z + Bit Rate186 + Sample Rate44100 + CommentsRaga: Behag Tala: Adi + Normalization2940 + Persistent ID1BAE1DA456588587 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/T.%20M.%20Krishna/Aalapana%20(Raga%20-%20Behag)/10%20Pahi%20Krishna%20(Raga_%20Behag%20Tala_%20Adi).m4a + File Folder Count4 + Library Folder Count1 + + 2056 + + Track ID2056 + NameJavali (Raga: Behag Tala: Roopakam) + ArtistT. M. Thyagarajan + ComposerTirupati Narayanaswami + AlbumAalapana (Raga - Behag) + GenreCarnatic + KindAAC audio file + Size6029288 + Total Time250466 + Track Number12 + Track Count14 + Date Modified2007-12-15T12:51:11Z + Date Added2009-10-03T14:51:30Z + Bit Rate190 + Sample Rate44100 + CommentsRaga: Behag Tala: Roopakam + Normalization2421 + Persistent ID56E17839B244F31B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/T.%20M.%20Thyagarajan/Aalapana%20(Raga%20-%20Behag)/12%20Javali%20(Raga_%20Behag%20Tala_%20Roopakam).m4a + File Folder Count4 + Library Folder Count1 + + 2058 + + Track ID2058 + NameVagaladi (Raga: Behag Tala: Roopakam) + ArtistT. Mukta and Sowmya + ComposerTirupati Narayanaswami + AlbumAalapana (Raga - Behag) + GenreCarnatic + KindAAC audio file + Size6276766 + Total Time255013 + Track Number13 + Track Count14 + Date Modified2007-12-15T12:52:04Z + Date Added2009-10-03T14:51:30Z + Bit Rate195 + Sample Rate44100 + CommentsRaga: Behag Tala: Roopakam + Normalization1677 + Persistent ID4F0D9E5CCDF867E0 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/T.%20Mukta%20and%20Sowmya/Aalapana%20(Raga%20-%20Behag)/13%20Vagaladi%20(Raga_%20Behag%20Tala_%20Roopakam).m4a + File Folder Count4 + Library Folder Count1 + + 2060 + + Track ID2060 + NameThillana (Raga: Behag Tala: Adi (Tisram)) + ArtistBombay Jayasree + ComposerLalgudi G. Jayaraman + AlbumAalapana (Raga - Behag) + GenreCarnatic + KindAAC audio file + Size7668725 + Total Time313720 + Track Number14 + Track Count14 + Date Modified2007-12-15T12:52:58Z + Date Added2009-10-03T14:51:30Z + Bit Rate193 + Sample Rate44100 + CommentsRaga: Behag Tala: Adi (Tisram) + Normalization2852 + Persistent ID78FD5B665483602B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bombay%20Jayasree/Aalapana%20(Raga%20-%20Behag)/14%20Thillana%20(Raga_%20Behag%20Tala_%20Adi%20(Tisram)).m4a + File Folder Count4 + Library Folder Count1 + + 2062 + + Track ID2062 + NameVishnu Stuti- Vishnu Shodashanamani + ArtistUma Mohan & G.Ghayathri Devi + ComposerSEVEN + AlbumSacred Chants 3 for Stress Relief, Immunity & Longevity + GenreWorld + KindAAC audio file + Size6410286 + Total Time262853 + Track Number1 + Track Count8 + Date Modified2008-09-28T16:03:35Z + Date Added2009-10-03T14:51:30Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3390622376 + Play Date UTC2011-06-11T02:02:56Z + Normalization1847 + Artwork Count1 + Persistent IDA34D6B45EED4D2FF + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Uma%20Mohan%20&%20G.Ghayathri%20Devi/Sacred%20Chants%203%20for%20Stress%20Relief,%20Immunity%20&%20Longevity/01%20Vishnu%20Stuti-%20Vishnu%20Shodashanamani.m4a + File Folder Count4 + Library Folder Count1 + + 2064 + + Track ID2064 + NameTotakashtakam + ArtistUma Mohan & G.Ghayathri Devi + ComposerSEVEN + AlbumSacred Chants 3 for Stress Relief, Immunity & Longevity + GenreWorld + KindAAC audio file + Size6735166 + Total Time281146 + Track Number2 + Track Count8 + Date Modified2008-09-28T16:03:35Z + Date Added2009-10-03T14:51:30Z + Bit Rate189 + Sample Rate44100 + Play Count1 + Play Date3390622657 + Play Date UTC2011-06-11T02:07:37Z + Normalization1768 + Artwork Count1 + Persistent IDE915986C913B803A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Uma%20Mohan%20&%20G.Ghayathri%20Devi/Sacred%20Chants%203%20for%20Stress%20Relief,%20Immunity%20&%20Longevity/02%20Totakashtakam.m4a + File Folder Count4 + Library Folder Count1 + + 2066 + + Track ID2066 + NameVaidhyanathashtakam + ArtistUma Mohan & G.Ghayathri Devi + ComposerSEVEN + AlbumSacred Chants 3 for Stress Relief, Immunity & Longevity + GenreWorld + KindAAC audio file + Size8583257 + Total Time351813 + Track Number3 + Track Count8 + Date Modified2008-09-28T16:03:34Z + Date Added2009-10-03T14:51:30Z + Bit Rate193 + Sample Rate44100 + Play Count1 + Play Date3390623009 + Play Date UTC2011-06-11T02:13:29Z + Normalization1831 + Artwork Count1 + Persistent IDC88EC78D16896776 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Uma%20Mohan%20&%20G.Ghayathri%20Devi/Sacred%20Chants%203%20for%20Stress%20Relief,%20Immunity%20&%20Longevity/03%20Vaidhyanathashtakam.m4a + File Folder Count4 + Library Folder Count1 + + 2068 + + Track ID2068 + NameMahishasuramardini Stotram + ArtistUma Mohan & G.Ghayathri Devi + ComposerSEVEN + AlbumSacred Chants 3 for Stress Relief, Immunity & Longevity + GenreWorld + KindAAC audio file + Size21252153 + Total Time862946 + Track Number4 + Track Count8 + Date Modified2008-09-28T16:03:34Z + Date Added2009-10-03T14:51:31Z + Bit Rate195 + Sample Rate44100 + Play Count1 + Play Date3390623872 + Play Date UTC2011-06-11T02:27:52Z + Normalization1475 + Artwork Count1 + Persistent IDD062E5C53CD95A0D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Uma%20Mohan%20&%20G.Ghayathri%20Devi/Sacred%20Chants%203%20for%20Stress%20Relief,%20Immunity%20&%20Longevity/04%20Mahishasuramardini%20Stotram.m4a + File Folder Count4 + Library Folder Count1 + + 2070 + + Track ID2070 + NameSivamanaspooja + ArtistUma Mohan & G.Ghayathri Devi + ComposerSEVEN + AlbumSacred Chants 3 for Stress Relief, Immunity & Longevity + GenreWorld + KindAAC audio file + Size6961800 + Total Time285253 + Track Number5 + Track Count8 + Date Modified2008-09-28T16:03:33Z + Date Added2009-10-03T14:51:31Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3390624157 + Play Date UTC2011-06-11T02:32:37Z + Normalization1924 + Artwork Count1 + Persistent IDEF23DB4046280B34 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Uma%20Mohan%20&%20G.Ghayathri%20Devi/Sacred%20Chants%203%20for%20Stress%20Relief,%20Immunity%20&%20Longevity/05%20Sivamanaspooja.m4a + File Folder Count4 + Library Folder Count1 + + 2072 + + Track ID2072 + NameMritasanjeevana Stotram + ArtistUma Mohan & G.Ghayathri Devi + ComposerSEVEN + AlbumSacred Chants 3 for Stress Relief, Immunity & Longevity + GenreWorld + KindAAC audio file + Size15178450 + Total Time617720 + Track Number6 + Track Count8 + Date Modified2008-09-28T16:03:32Z + Date Added2009-10-03T14:51:31Z + Bit Rate194 + Sample Rate44100 + Play Count1 + Play Date3390624775 + Play Date UTC2011-06-11T02:42:55Z + Normalization1401 + Artwork Count1 + Persistent ID03F82A45FC1A2CC0 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Uma%20Mohan%20&%20G.Ghayathri%20Devi/Sacred%20Chants%203%20for%20Stress%20Relief,%20Immunity%20&%20Longevity/06%20Mritasanjeevana%20Stotram.m4a + File Folder Count4 + Library Folder Count1 + + 2074 + + Track ID2074 + NameMrityunjaya Stotram + ArtistUma Mohan & G.Ghayathri Devi + ComposerSEVEN + AlbumSacred Chants 3 for Stress Relief, Immunity & Longevity + GenreWorld + KindAAC audio file + Size12753995 + Total Time518720 + Track Number7 + Track Count8 + Date Modified2008-09-28T16:03:32Z + Date Added2009-10-03T14:51:31Z + Bit Rate194 + Sample Rate44100 + Normalization1683 + Artwork Count1 + Persistent ID542250D3B74F5A1F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Uma%20Mohan%20&%20G.Ghayathri%20Devi/Sacred%20Chants%203%20for%20Stress%20Relief,%20Immunity%20&%20Longevity/07%20Mrityunjaya%20Stotram.m4a + File Folder Count4 + Library Folder Count1 + + 2076 + + Track ID2076 + NameMangalacharan + ArtistUma Mohan & G.Ghayathri Devi + ComposerSEVEN + AlbumSacred Chants 3 for Stress Relief, Immunity & Longevity + GenreWorld + KindAAC audio file + Size10290096 + Total Time431613 + Track Number8 + Track Count8 + Date Modified2008-09-28T16:03:31Z + Date Added2009-10-03T14:51:31Z + Bit Rate188 + Sample Rate44100 + Normalization1387 + Artwork Count1 + Persistent ID6C01E316F1E6418F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Uma%20Mohan%20&%20G.Ghayathri%20Devi/Sacred%20Chants%203%20for%20Stress%20Relief,%20Immunity%20&%20Longevity/08%20Mangalacharan.m4a + File Folder Count4 + Library Folder Count1 + + 2078 + + Track ID2078 + NameO Rey Chhori + ArtistUdit Narayan, Alga Yagnik, Vasundhara Das + ComposerA.R. Rahman + AlbumLagaan: Once Upon A Time In India + GenreSoundtrack + KindAAC audio file + Size8725900 + Total Time359071 + Disc Number1 + Disc Count1 + Track Number4 + Track Count8 + Year2001 + Date Modified2006-07-29T04:05:56Z + Date Added2009-10-03T14:51:31Z + Bit Rate192 + Sample Rate44100 + Normalization1766 + Artwork Count1 + Persistent ID2E5C8A7C4FE8240C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Udit%20Narayan,%20Alga%20Yagnik,%20Vasundhara%20Das/Lagaan_%20Once%20Upon%20A%20Time%20In%20India/04%20O%20Rey%20Chhori.m4a + File Folder Count4 + Library Folder Count1 + + 2080 + + Track ID2080 + NameGhanan Ghanan + ArtistUdit Narayan, Alga Yagnik, Sukwinder Singh, Shankar Mahadevan Shan, Kishori Gowariker + ComposerA.R. Rahman + AlbumLagaan: Once Upon A Time In India + GenreSoundtrack + KindAAC audio file + Size9025051 + Total Time371401 + Disc Number1 + Disc Count1 + Track Number1 + Track Count8 + Year2001 + Date Modified2006-07-29T04:05:56Z + Date Added2009-10-03T14:51:32Z + Bit Rate192 + Sample Rate44100 + Normalization2329 + Artwork Count1 + Persistent ID6F6932C2E8FB3F34 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Udit%20Narayan,%20Alga%20Yagnik,%20Sukwinder%20Singh,%20Shankar%20Mahadevan%20Shan,%20Kishori%20Gowariker/Lagaan_%20Once%20Upon%20A%20Time%20In%20India/01%20Ghanan%20Ghanan.m4a + File Folder Count4 + Library Folder Count1 + + 2082 + + Track ID2082 + NameMitwa + ArtistUdit Narayan, Alga Yagnik, Sukwinder Singh + ComposerA.R. Rahman + AlbumLagaan: Once Upon A Time In India + GenreSoundtrack + KindAAC audio file + Size9904963 + Total Time407810 + Disc Number1 + Disc Count1 + Track Number2 + Track Count8 + Year2001 + Date Modified2006-07-29T04:05:54Z + Date Added2009-10-03T14:51:32Z + Bit Rate192 + Sample Rate44100 + Normalization2556 + Artwork Count1 + Persistent ID4F1407889A65D9BB + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Udit%20Narayan,%20Alga%20Yagnik,%20Sukwinder%20Singh/Lagaan_%20Once%20Upon%20A%20Time%20In%20India/02%20Mitwa.m4a + File Folder Count4 + Library Folder Count1 + + 2084 + + Track ID2084 + NameA Man And A Woman + ArtistU2 + ComposerAdam Clayton, Bono, Larry Mullen & The Edge + AlbumHow To Dismantle An Atomic Bomb + GenreRock + KindAAC audio file + Size6524261 + Total Time270040 + Disc Number1 + Disc Count1 + Track Number7 + Track Count11 + Year2004 + Date Modified2007-10-01T05:56:28Z + Date Added2009-10-03T14:51:32Z + Bit Rate192 + Sample Rate44100 + Normalization5034 + Artwork Count1 + Sort NameMan And A Woman + Persistent ID0BDD5CE34FA855CE + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/U2/How%20To%20Dismantle%20An%20Atomic%20Bomb/07%20A%20Man%20And%20A%20Woman.m4a + File Folder Count4 + Library Folder Count1 + + 2086 + + Track ID2086 + NameAll Because Of You + ArtistU2 + ComposerAdam Clayton, Bono, Larry Mullen & The Edge + AlbumHow To Dismantle An Atomic Bomb + GenreRock + KindAAC audio file + Size5350608 + Total Time219053 + Disc Number1 + Disc Count1 + Track Number6 + Track Count11 + Year2004 + Date Modified2007-10-01T05:55:45Z + Date Added2009-10-03T14:51:32Z + Bit Rate192 + Sample Rate44100 + Normalization14698 + Artwork Count1 + Persistent ID070F7F3E679946E6 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/U2/How%20To%20Dismantle%20An%20Atomic%20Bomb/06%20All%20Because%20Of%20You.m4a + File Folder Count4 + Library Folder Count1 + + 2088 + + Track ID2088 + NameCity Of Blinding Lights + ArtistU2 + ComposerAdam Clayton, Bono, Larry Mullen & The Edge + AlbumHow To Dismantle An Atomic Bomb + GenreRock + KindAAC audio file + Size8422369 + Total Time347866 + Disc Number1 + Disc Count1 + Track Number5 + Track Count11 + Year2004 + Date Modified2007-10-01T05:55:08Z + Date Added2009-10-03T14:51:33Z + Bit Rate192 + Sample Rate44100 + Normalization7203 + Artwork Count1 + Persistent ID911876DAE75C3280 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/U2/How%20To%20Dismantle%20An%20Atomic%20Bomb/05%20City%20Of%20Blinding%20Lights.m4a + File Folder Count4 + Library Folder Count1 + + 2090 + + Track ID2090 + NameCrumbs From Your Table + ArtistU2 + ComposerAdam Clayton, Bono, Larry Mullen & The Edge + AlbumHow To Dismantle An Atomic Bomb + GenreRock + KindAAC audio file + Size7302203 + Total Time303466 + Disc Number1 + Disc Count1 + Track Number8 + Track Count11 + Year2004 + Date Modified2007-10-01T05:57:17Z + Date Added2009-10-03T14:51:33Z + Bit Rate192 + Sample Rate44100 + Normalization12221 + Artwork Count1 + Persistent ID11DDB9A7DB7B7B56 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/U2/How%20To%20Dismantle%20An%20Atomic%20Bomb/08%20Crumbs%20From%20Your%20Table.m4a + File Folder Count4 + Library Folder Count1 + + 2092 + + Track ID2092 + NameLove And Peace Or Else + ArtistU2 + ComposerAdam Clayton, Bono, Larry Mullen & The Edge + AlbumHow To Dismantle An Atomic Bomb + GenreRock + KindAAC audio file + Size7122333 + Total Time290600 + Disc Number1 + Disc Count1 + Track Number4 + Track Count11 + Year2004 + Date Modified2007-10-01T05:54:13Z + Date Added2009-10-03T14:51:33Z + Bit Rate192 + Sample Rate44100 + Normalization6388 + Artwork Count1 + Persistent ID11870FA4F09360AE + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/U2/How%20To%20Dismantle%20An%20Atomic%20Bomb/04%20Love%20And%20Peace%20Or%20Else.m4a + File Folder Count4 + Library Folder Count1 + + 2094 + + Track ID2094 + NameMiracle Drug + ArtistU2 + ComposerAdam Clayton, Bono, Larry Mullen & The Edge + AlbumHow To Dismantle An Atomic Bomb + GenreRock + KindAAC audio file + Size5734756 + Total Time239026 + Disc Number1 + Disc Count1 + Track Number2 + Track Count11 + Year2004 + Date Modified2007-10-01T05:52:27Z + Date Added2009-10-03T14:51:33Z + Bit Rate192 + Sample Rate44100 + Normalization6584 + Artwork Count1 + Persistent IDEC1DE93313CF94DA + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/U2/How%20To%20Dismantle%20An%20Atomic%20Bomb/02%20Miracle%20Drug.m4a + File Folder Count4 + Library Folder Count1 + + 2096 + + Track ID2096 + NameOne Step Closer + ArtistU2 + ComposerAdam Clayton, Bono, Larry Mullen & The Edge + AlbumHow To Dismantle An Atomic Bomb + GenreRock + KindAAC audio file + Size5595120 + Total Time231586 + Disc Number1 + Disc Count1 + Track Number9 + Track Count11 + Year2004 + Date Modified2007-10-01T05:57:55Z + Date Added2009-10-03T14:51:33Z + Bit Rate192 + Sample Rate44100 + Normalization1423 + Artwork Count1 + Persistent ID862D6D6F382AF539 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/U2/How%20To%20Dismantle%20An%20Atomic%20Bomb/09%20One%20Step%20Closer.m4a + File Folder Count4 + Library Folder Count1 + + 2098 + + Track ID2098 + NameOriginal Of The Species + ArtistU2 + ComposerAdam Clayton, Bono, Larry Mullen & The Edge + AlbumHow To Dismantle An Atomic Bomb + GenreRock + KindAAC audio file + Size6727918 + Total Time281360 + Disc Number1 + Disc Count1 + Track Number10 + Track Count11 + Year2004 + Date Modified2007-10-01T05:58:40Z + Date Added2009-10-03T14:51:33Z + Bit Rate192 + Sample Rate44100 + Normalization8811 + Artwork Count1 + Persistent ID87F89220F705A7FE + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/U2/How%20To%20Dismantle%20An%20Atomic%20Bomb/10%20Original%20Of%20The%20Species.m4a + File Folder Count4 + Library Folder Count1 + + 2100 + + Track ID2100 + NameSometimes You Can't Make It On Your Own + ArtistU2 + ComposerAdam Clayton, Bono, Larry Mullen & The Edge + AlbumHow To Dismantle An Atomic Bomb + GenreRock + KindAAC audio file + Size7450268 + Total Time308893 + Disc Number1 + Disc Count1 + Track Number3 + Track Count11 + Year2004 + Date Modified2007-10-01T05:53:26Z + Date Added2009-10-03T14:51:33Z + Bit Rate192 + Sample Rate44100 + Normalization5361 + Artwork Count1 + Persistent ID0BFA4C168825FEDD + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/U2/How%20To%20Dismantle%20An%20Atomic%20Bomb/03%20Sometimes%20You%20Can't%20Make%20It%20On%20Your%20Own.m4a + File Folder Count4 + Library Folder Count1 + + 2102 + + Track ID2102 + NameVertigo + ArtistU2 + ComposerAdam Clayton, Bono, Larry Mullen & The Edge + AlbumHow To Dismantle An Atomic Bomb + GenreRock + KindAAC audio file + Size4839183 + Total Time194520 + Disc Number1 + Disc Count1 + Track Number1 + Track Count11 + Year2004 + Date Modified2007-10-01T05:51:43Z + Date Added2009-10-03T14:51:33Z + Bit Rate192 + Sample Rate44100 + Normalization14213 + Artwork Count1 + Persistent IDA422695CD252F9B5 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/U2/How%20To%20Dismantle%20An%20Atomic%20Bomb/01%20Vertigo.m4a + File Folder Count4 + Library Folder Count1 + + 2104 + + Track ID2104 + NameYahweh + ArtistU2 + ComposerAdam Clayton, Bono, Larry Mullen & The Edge + AlbumHow To Dismantle An Atomic Bomb + GenreRock + KindAAC audio file + Size6395143 + Total Time261933 + Disc Number1 + Disc Count1 + Track Number11 + Track Count11 + Year2004 + Date Modified2007-10-01T05:59:26Z + Date Added2009-10-03T14:51:34Z + Bit Rate192 + Sample Rate44100 + Normalization13302 + Artwork Count1 + Persistent ID1AED21E4A4543C1B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/U2/How%20To%20Dismantle%20An%20Atomic%20Bomb/11%20Yahweh.m4a + File Folder Count4 + Library Folder Count1 + + 2106 + + Track ID2106 + NameAcrobat + ArtistU2 + ComposerU2 + AlbumAchtung Baby + GenreRock + KindAAC audio file + Size6588402 + Total Time270266 + Disc Number1 + Disc Count1 + Track Number11 + Track Count12 + Year1991 + Date Modified2007-09-30T21:04:03Z + Date Added2009-10-03T14:51:34Z + Bit Rate192 + Sample Rate44100 + Normalization1418 + Artwork Count1 + Persistent IDFEDB14EC20715124 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/U2/Achtung%20Baby/11%20Acrobat.m4a + File Folder Count4 + Library Folder Count1 + + 2108 + + Track ID2108 + NameEven Better Than The Real Thing + ArtistU2 + ComposerU2 + AlbumAchtung Baby + GenreRock + KindAAC audio file + Size5426795 + Total Time221466 + Disc Number1 + Disc Count1 + Track Number2 + Track Count12 + Year1991 + Date Modified2007-09-30T20:58:20Z + Date Added2009-10-03T14:51:34Z + Bit Rate192 + Sample Rate44100 + Normalization2578 + Artwork Count1 + Persistent ID1C6C12E263F3B367 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/U2/Achtung%20Baby/02%20Even%20Better%20Than%20The%20Real%20Thing.m4a + File Folder Count4 + Library Folder Count1 + + 2110 + + Track ID2110 + NameLove Is Blindness + ArtistU2 + ComposerU2 + AlbumAchtung Baby + GenreRock + KindAAC audio file + Size6426629 + Total Time263293 + Disc Number1 + Disc Count1 + Track Number12 + Track Count12 + Year1991 + Date Modified2007-09-30T21:04:38Z + Date Added2009-10-03T14:51:34Z + Bit Rate192 + Sample Rate44100 + Normalization1059 + Artwork Count1 + Persistent ID729EF8D6E6419DA5 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/U2/Achtung%20Baby/12%20Love%20Is%20Blindness.m4a + File Folder Count4 + Library Folder Count1 + + 2112 + + Track ID2112 + NameMysterious Ways + ArtistU2 + ComposerU2 + AlbumAchtung Baby + GenreRock + KindAAC audio file + Size6000742 + Total Time243573 + Disc Number1 + Disc Count1 + Track Number8 + Track Count12 + Year1991 + Date Modified2007-09-30T21:02:07Z + Date Added2009-10-03T14:51:34Z + Bit Rate192 + Sample Rate44100 + Normalization2215 + Artwork Count1 + Persistent ID2C872FC0840A7893 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/U2/Achtung%20Baby/08%20Mysterious%20Ways.m4a + File Folder Count4 + Library Folder Count1 + + 2114 + + Track ID2114 + NameOne + ArtistU2 + ComposerU2 + AlbumAchtung Baby + GenreRock + KindAAC audio file + Size6798707 + Total Time276133 + Disc Number1 + Disc Count1 + Track Number3 + Track Count12 + Year1991 + Date Modified2007-09-30T20:58:56Z + Date Added2009-10-03T14:51:35Z + Bit Rate192 + Sample Rate44100 + Normalization1333 + Artwork Count1 + Persistent IDBC704D10E6F77CB1 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/U2/Achtung%20Baby/03%20One.m4a + File Folder Count4 + Library Folder Count1 + + 2116 + + Track ID2116 + NameSo Cruel + ArtistU2 + ComposerU2 + AlbumAchtung Baby + GenreRock + KindAAC audio file + Size8503581 + Total Time349200 + Disc Number1 + Disc Count1 + Track Number6 + Track Count12 + Year1991 + Date Modified2007-09-30T21:00:58Z + Date Added2009-10-03T14:51:35Z + Bit Rate192 + Sample Rate44100 + Normalization1258 + Artwork Count1 + Persistent ID01CFA341756FB4B1 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/U2/Achtung%20Baby/06%20So%20Cruel.m4a + File Folder Count4 + Library Folder Count1 + + 2118 + + Track ID2118 + NameThe Fly + ArtistU2 + ComposerU2 + AlbumAchtung Baby + GenreRock + KindAAC audio file + Size6562372 + Total Time269066 + Disc Number1 + Disc Count1 + Track Number7 + Track Count12 + Year1991 + Date Modified2007-09-30T21:01:33Z + Date Added2009-10-03T14:51:35Z + Bit Rate192 + Sample Rate44100 + Normalization2211 + Artwork Count1 + Sort NameFly + Persistent IDB5D2837043DDCA13 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/U2/Achtung%20Baby/07%20The%20Fly.m4a + File Folder Count4 + Library Folder Count1 + + 2120 + + Track ID2120 + NameTryin' To Throw Your Arms Around The World + ArtistU2 + ComposerU2 + AlbumAchtung Baby + GenreRock + KindAAC audio file + Size5705922 + Total Time232626 + Disc Number1 + Disc Count1 + Track Number9 + Track Count12 + Year1991 + Date Modified2007-09-30T21:02:38Z + Date Added2009-10-03T14:51:35Z + Bit Rate192 + Sample Rate44100 + Normalization1258 + Artwork Count1 + Persistent IDDB3F067899EB7365 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/U2/Achtung%20Baby/09%20Tryin'%20To%20Throw%20Your%20Arms%20Around%20The%20World.m4a + File Folder Count4 + Library Folder Count1 + + 2122 + + Track ID2122 + NameUltraviolet (Light My Way) + ArtistU2 + ComposerU2 + AlbumAchtung Baby + GenreRock + KindAAC audio file + Size8056723 + Total Time330506 + Disc Number1 + Disc Count1 + Track Number10 + Track Count12 + Year1991 + Date Modified2007-09-30T21:03:24Z + Date Added2009-10-03T14:51:36Z + Bit Rate192 + Sample Rate44100 + Normalization1258 + Artwork Count1 + Persistent ID56FB9074707A12FC + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/U2/Achtung%20Baby/10%20Ultraviolet%20(Light%20My%20Way).m4a + File Folder Count4 + Library Folder Count1 + + 2124 + + Track ID2124 + NameUntil The End Of The World + ArtistU2 + ComposerU2 + AlbumAchtung Baby + GenreRock + KindAAC audio file + Size6803827 + Total Time278506 + Disc Number1 + Disc Count1 + Track Number4 + Track Count12 + Year1991 + Date Modified2007-09-30T20:59:32Z + Date Added2009-10-03T14:51:36Z + Bit Rate192 + Sample Rate44100 + Normalization1334 + Artwork Count1 + Persistent IDDA68D79DAC6724BE + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/U2/Achtung%20Baby/04%20Until%20The%20End%20Of%20The%20World.m4a + File Folder Count4 + Library Folder Count1 + + 2126 + + Track ID2126 + NameWho's Gonna Ride Your Wild Horses + ArtistU2 + ComposerU2 + AlbumAchtung Baby + GenreRock + KindAAC audio file + Size7752295 + Total Time316626 + Disc Number1 + Disc Count1 + Track Number5 + Track Count12 + Year1991 + Date Modified2007-09-30T21:00:13Z + Date Added2009-10-03T14:51:36Z + Bit Rate192 + Sample Rate44100 + Normalization1553 + Artwork Count1 + Persistent ID8B109F4A4BD602D0 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/U2/Achtung%20Baby/05%20Who's%20Gonna%20Ride%20Your%20Wild%20Horses.m4a + File Folder Count4 + Library Folder Count1 + + 2128 + + Track ID2128 + NameZoo Station + ArtistU2 + ComposerU2 + AlbumAchtung Baby + GenreRock + KindAAC audio file + Size6813695 + Total Time276133 + Disc Number1 + Disc Count1 + Track Number1 + Track Count12 + Year1991 + Date Modified2007-09-30T20:57:51Z + Date Added2009-10-03T14:51:36Z + Bit Rate192 + Sample Rate44100 + Normalization1608 + Artwork Count1 + Persistent ID0843520D19F9A755 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/U2/Achtung%20Baby/01%20Zoo%20Station.m4a + File Folder Count4 + Library Folder Count1 + + 2130 + + Track ID2130 + NameDance + ArtistU Srinivas & Michael Brook + ComposerMichael Brook, U. Srinivas, Nigel Kennedy, Nana Vasconcelos, Richard Evans + AlbumDream + GenreWorld + KindAAC audio file + Size20110637 + Total Time830437 + Disc Number1 + Disc Count1 + Track Number1 + Track Count4 + Year1995 + Date Modified2006-07-28T09:23:46Z + Date Added2009-10-03T14:51:37Z + Bit Rate192 + Sample Rate44100 + Normalization1256 + Artwork Count1 + Persistent IDE599596BF44B6928 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/U%20Srinivas%20&%20Michael%20Brook/Dream/01%20Dance.m4a + File Folder Count4 + Library Folder Count1 + + 2132 + + Track ID2132 + NameThink + ArtistU Srinivas & Michael Brook + ComposerMichael Brook, U. Srinivas + AlbumDream + GenreWorld + KindAAC audio file + Size18845790 + Total Time777588 + Disc Number1 + Disc Count1 + Track Number2 + Track Count4 + Year1995 + Date Modified2006-07-28T09:23:48Z + Date Added2009-10-03T14:51:37Z + Bit Rate192 + Sample Rate44100 + Normalization540 + Artwork Count1 + Persistent ID66FDAD660AACBC1F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/U%20Srinivas%20&%20Michael%20Brook/Dream/02%20Think.m4a + File Folder Count4 + Library Folder Count1 + + 2134 + + Track ID2134 + NameRun + ArtistU Srinivas & Michael Brook + ComposerMichael Brook, U. Srinivas, Nigel Kennedy, Nana Vasconcelos + AlbumDream + GenreWorld + KindAAC audio file + Size8259452 + Total Time350828 + Disc Number1 + Disc Count1 + Track Number3 + Track Count4 + Year1995 + Date Modified2006-07-28T09:23:50Z + Date Added2009-10-03T14:51:37Z + Bit Rate192 + Sample Rate44100 + Normalization1611 + Artwork Count1 + Persistent IDC9FCD4F39F0CDEA7 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/U%20Srinivas%20&%20Michael%20Brook/Dream/03%20Run.m4a + File Folder Count4 + Library Folder Count1 + + 2136 + + Track ID2136 + NameDream + ArtistU Srinivas & Michael Brook + ComposerMichael Brook, U. Srinivas, Sikkil R. Bhaskaran, Jane Siberry + AlbumDream + GenreWorld + KindAAC audio file + Size16455002 + Total Time679855 + Disc Number1 + Disc Count1 + Track Number4 + Track Count4 + Year1995 + Date Modified2006-07-28T09:23:50Z + Date Added2009-10-03T14:51:37Z + Bit Rate192 + Sample Rate44100 + Normalization1124 + Artwork Count1 + Persistent ID9E851A71E5CD892C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/U%20Srinivas%20&%20Michael%20Brook/Dream/04%20Dream.m4a + File Folder Count4 + Library Folder Count1 + + 2138 + + Track ID2138 + NameTalkin' Bout A Revolution + ArtistTracy Chapman + AlbumTracy Chapman + GenreFolk + KindAAC audio file + Size3902717 + Total Time160332 + Disc Number1 + Disc Count1 + Track Number1 + Track Count11 + Year1982 + Date Modified2006-08-01T08:20:38Z + Date Added2009-10-03T14:51:38Z + Bit Rate192 + Sample Rate44100 + Play Count6 + Play Date3484294145 + Play Date UTC2014-05-30T05:59:05Z + Rating60 + Album Rating60 + Album Rating Computed + Normalization1047 + Artwork Count1 + Persistent ID623F96C1E865B876 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tracy%20Chapman/Tracy%20Chapman/01%20Talkin'%20Bout%20A%20Revolution.m4a + File Folder Count4 + Library Folder Count1 + + 2140 + + Track ID2140 + NameFast Car + ArtistTracy Chapman + AlbumTracy Chapman + GenreFolk + KindAAC audio file + Size7213615 + Total Time296865 + Disc Number1 + Disc Count1 + Track Number2 + Track Count11 + Year1987 + Date Modified2006-08-01T08:20:38Z + Date Added2009-10-03T14:51:38Z + Bit Rate192 + Sample Rate44100 + Play Count4 + Play Date3484298288 + Play Date UTC2014-05-30T07:08:08Z + Album Rating60 + Album Rating Computed + Normalization1153 + Artwork Count1 + Persistent ID55206682150EC1B6 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tracy%20Chapman/Tracy%20Chapman/02%20Fast%20Car.m4a + File Folder Count4 + Library Folder Count1 + + 2142 + + Track ID2142 + NameAcross The Lines + ArtistTracy Chapman + AlbumTracy Chapman + GenreFolk + KindAAC audio file + Size4906844 + Total Time204566 + Disc Number1 + Disc Count1 + Track Number3 + Track Count11 + Year1985 + Date Modified2006-08-01T08:20:38Z + Date Added2009-10-03T14:51:38Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3337857551 + Play Date UTC2009-10-08T09:09:11Z + Album Rating60 + Album Rating Computed + Normalization1028 + Artwork Count1 + Persistent ID2D267F340B2B7D6E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tracy%20Chapman/Tracy%20Chapman/03%20Across%20The%20Lines.m4a + File Folder Count4 + Library Folder Count1 + + 2144 + + Track ID2144 + NameBehind The Wall + ArtistTracy Chapman + AlbumTracy Chapman + GenreFolk + KindAAC audio file + Size2607296 + Total Time109573 + Disc Number1 + Disc Count1 + Track Number4 + Track Count11 + Year1983 + Date Modified2006-08-01T08:20:38Z + Date Added2009-10-03T14:51:38Z + Bit Rate192 + Sample Rate44100 + Play Count2 + Play Date3448967591 + Play Date UTC2013-04-16T09:03:11Z + Skip Count1 + Skip Date2009-10-08T09:09:16Z + Album Rating60 + Album Rating Computed + Normalization385 + Artwork Count1 + Persistent IDDEF2C9F15B7EE3FD + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tracy%20Chapman/Tracy%20Chapman/04%20Behind%20The%20Wall.m4a + File Folder Count4 + Library Folder Count1 + + 2146 + + Track ID2146 + NameBaby Can I Hold You + ArtistTracy Chapman + AlbumTracy Chapman + GenreFolk + KindAAC audio file + Size4712607 + Total Time194094 + Disc Number1 + Disc Count1 + Track Number5 + Track Count11 + Year1982 + Date Modified2006-08-01T08:20:40Z + Date Added2009-10-03T14:51:38Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3448967785 + Play Date UTC2013-04-16T09:06:25Z + Skip Count1 + Skip Date2009-10-08T09:09:21Z + Album Rating60 + Album Rating Computed + Normalization1207 + Artwork Count1 + Persistent IDF0868765A9941D97 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tracy%20Chapman/Tracy%20Chapman/05%20Baby%20Can%20I%20Hold%20You.m4a + File Folder Count4 + Library Folder Count1 + + 2148 + + Track ID2148 + NameMountains O' Things + ArtistTracy Chapman + AlbumTracy Chapman + GenreFolk + KindAAC audio file + Size6743623 + Total Time279520 + Disc Number1 + Disc Count1 + Track Number6 + Track Count11 + Year1987 + Date Modified2006-08-01T08:20:40Z + Date Added2009-10-03T14:51:38Z + Bit Rate192 + Sample Rate44100 + Play Count7 + Play Date3484385713 + Play Date UTC2014-05-31T07:25:13Z + Skip Count3 + Skip Date2014-05-31T07:20:33Z + Album Rating60 + Album Rating Computed + Normalization1081 + Artwork Count1 + Persistent ID3CB75FD471755369 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tracy%20Chapman/Tracy%20Chapman/06%20Mountains%20O'%20Things.m4a + File Folder Count4 + Library Folder Count1 + + 2150 + + Track ID2150 + NameShe's Got Her Ticket + ArtistTracy Chapman + AlbumTracy Chapman + GenreFolk + KindAAC audio file + Size5717814 + Total Time236888 + Disc Number1 + Disc Count1 + Track Number7 + Track Count11 + Year1986 + Date Modified2006-08-01T08:20:40Z + Date Added2009-10-03T14:51:38Z + Bit Rate192 + Sample Rate44100 + Play Count3 + Play Date3484385950 + Play Date UTC2014-05-31T07:29:10Z + Skip Count1 + Skip Date2009-10-08T09:14:09Z + Album Rating60 + Album Rating Computed + Normalization1200 + Artwork Count1 + Persistent ID0BAA5ADF5134BB29 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tracy%20Chapman/Tracy%20Chapman/07%20She's%20Got%20Her%20Ticket.m4a + File Folder Count4 + Library Folder Count1 + + 2152 + + Track ID2152 + NameWhy? + ArtistTracy Chapman + AlbumTracy Chapman + GenreFolk + KindAAC audio file + Size3038974 + Total Time126477 + Disc Number1 + Disc Count1 + Track Number8 + Track Count11 + Year1986 + Date Modified2006-08-01T08:20:40Z + Date Added2009-10-03T14:51:38Z + Bit Rate192 + Sample Rate44100 + Play Count4 + Play Date3484386076 + Play Date UTC2014-05-31T07:31:16Z + Album Rating60 + Album Rating Computed + Normalization993 + Artwork Count1 + Persistent ID8458D4FC98AB0347 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tracy%20Chapman/Tracy%20Chapman/08%20Why_.m4a + File Folder Count4 + Library Folder Count1 + + 2154 + + Track ID2154 + NameFor My Lover + ArtistTracy Chapman + AlbumTracy Chapman + GenreFolk + KindAAC audio file + Size4666889 + Total Time192352 + Disc Number1 + Disc Count1 + Track Number9 + Track Count11 + Year1983 + Date Modified2006-08-01T08:20:40Z + Date Added2009-10-03T14:51:39Z + Bit Rate192 + Sample Rate44100 + Play Count3 + Play Date3484310451 + Play Date UTC2014-05-30T10:30:51Z + Album Rating60 + Album Rating Computed + Normalization1205 + Artwork Count1 + Persistent ID92D29F639D40C5A2 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tracy%20Chapman/Tracy%20Chapman/09%20For%20My%20Lover.m4a + File Folder Count4 + Library Folder Count1 + + 2156 + + Track ID2156 + NameIf Not Now... + ArtistTracy Chapman + AlbumTracy Chapman + GenreFolk + KindAAC audio file + Size4394962 + Total Time181369 + Disc Number1 + Disc Count1 + Track Number10 + Track Count11 + Year1986 + Date Modified2006-08-01T08:20:40Z + Date Added2009-10-03T14:51:39Z + Bit Rate192 + Sample Rate44100 + Play Count2 + Play Date3484310632 + Play Date UTC2014-05-30T10:33:52Z + Album Rating60 + Album Rating Computed + Normalization1059 + Artwork Count1 + Persistent ID850393843101C34C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tracy%20Chapman/Tracy%20Chapman/10%20If%20Not%20Now....m4a + File Folder Count4 + Library Folder Count1 + + 2158 + + Track ID2158 + NameFor You + ArtistTracy Chapman + AlbumTracy Chapman + GenreFolk + KindAAC audio file + Size4626466 + Total Time189403 + Disc Number1 + Disc Count1 + Track Number11 + Track Count11 + Year1986 + Date Modified2006-08-01T08:20:42Z + Date Added2009-10-03T14:51:39Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3377515449 + Play Date UTC2011-01-10T09:14:09Z + Album Rating60 + Album Rating Computed + Normalization328 + Artwork Count1 + Persistent IDAA1731CC6DF16623 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tracy%20Chapman/Tracy%20Chapman/11%20For%20You.m4a + File Folder Count4 + Library Folder Count1 + + 2160 + + Track ID2160 + NameAlmost Rosey + ArtistTori Amos + Album ArtistTori Amos + ComposerTori Amos + AlbumAmerican Doll Posse + GenrePop + KindAAC audio file + Size7903179 + Total Time323866 + Track Number18 + Track Count23 + Year2007 + Date Modified2009-06-26T12:06:10Z + Date Added2009-10-03T14:51:39Z + Bit Rate192 + Sample Rate44100 + Normalization2365 + Artwork Count1 + Persistent IDACC692ED2961650F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tori%20Amos/American%20Doll%20Posse/18%20Almost%20Rosey.m4a + File Folder Count4 + Library Folder Count1 + + 2162 + + Track ID2162 + NameBeauty of Speed + ArtistTori Amos + Album ArtistTori Amos + ComposerTori Amos + AlbumAmerican Doll Posse + GenrePop + KindAAC audio file + Size6103031 + Total Time248288 + Track Number17 + Track Count23 + Year2007 + Date Modified2009-06-26T12:07:12Z + Date Added2009-10-03T14:51:39Z + Bit Rate192 + Sample Rate44100 + Normalization1473 + Artwork Count1 + Persistent ID895D3C1DCB9482B1 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tori%20Amos/American%20Doll%20Posse/17%20Beauty%20of%20Speed.m4a + File Folder Count4 + Library Folder Count1 + + 2164 + + Track ID2164 + NameBig Wheel + ArtistTori Amos + Album ArtistTori Amos + ComposerTori Amos + AlbumAmerican Doll Posse + GenrePop + KindAAC audio file + Size4885930 + Total Time198106 + Track Number2 + Track Count23 + Year2007 + Date Modified2009-06-26T12:08:02Z + Date Added2009-10-03T14:51:39Z + Bit Rate192 + Sample Rate44100 + Normalization1614 + Artwork Count1 + Persistent IDE9E8AA3FEBBF3F69 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tori%20Amos/American%20Doll%20Posse/02%20Big%20Wheel.m4a + File Folder Count4 + Library Folder Count1 + + 2166 + + Track ID2166 + NameBody and Soul + ArtistTori Amos + Album ArtistTori Amos + ComposerTori Amos + AlbumAmerican Doll Posse + GenrePop + KindAAC audio file + Size5807709 + Total Time236640 + Track Number12 + Track Count23 + Year2007 + Date Modified2009-06-26T12:09:02Z + Date Added2009-10-03T14:51:40Z + Bit Rate192 + Sample Rate44100 + Normalization3292 + Artwork Count1 + Persistent ID0BBE208C993C491F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tori%20Amos/American%20Doll%20Posse/12%20Body%20and%20Soul.m4a + File Folder Count4 + Library Folder Count1 + + 2168 + + Track ID2168 + NameBouncing off Clouds + ArtistTori Amos + Album ArtistTori Amos + ComposerTori Amos + AlbumAmerican Doll Posse + GenrePop + KindAAC audio file + Size6094141 + Total Time248182 + Track Number3 + Track Count23 + Year2007 + Date Modified2009-06-26T12:10:04Z + Date Added2009-10-03T14:51:40Z + Bit Rate192 + Sample Rate44100 + Normalization2178 + Artwork Count1 + Persistent IDB80348A80A0F6A59 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tori%20Amos/American%20Doll%20Posse/03%20Bouncing%20off%20Clouds.m4a + File Folder Count4 + Library Folder Count1 + + 2170 + + Track ID2170 + NameCode Red + ArtistTori Amos + Album ArtistTori Amos + ComposerTori Amos + AlbumAmerican Doll Posse + GenrePop + KindAAC audio file + Size8019729 + Total Time327333 + Track Number15 + Track Count23 + Year2007 + Date Modified2009-06-26T12:11:28Z + Date Added2009-10-03T14:51:40Z + Bit Rate192 + Sample Rate44100 + Normalization2509 + Artwork Count1 + Persistent IDC6B24BD1789D5F7A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tori%20Amos/American%20Doll%20Posse/15%20Code%20Red.m4a + File Folder Count4 + Library Folder Count1 + + 2172 + + Track ID2172 + NameDark Side of the Sun + ArtistTori Amos + Album ArtistTori Amos + ComposerTori Amos + AlbumAmerican Doll Posse + GenrePop + KindAAC audio file + Size6314495 + Total Time259360 + Track Number20 + Track Count23 + Year2007 + Date Modified2009-06-26T12:12:35Z + Date Added2009-10-03T14:51:40Z + Bit Rate192 + Sample Rate44100 + Normalization2165 + Artwork Count1 + Persistent ID2152E69468A08E88 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tori%20Amos/American%20Doll%20Posse/20%20Dark%20Side%20of%20the%20Sun.m4a + File Folder Count4 + Library Folder Count1 + + 2174 + + Track ID2174 + NameDevils and Gods + ArtistTori Amos + Album ArtistTori Amos + ComposerTori Amos + AlbumAmerican Doll Posse + GenrePop + KindAAC audio file + Size1346842 + Total Time53333 + Track Number11 + Track Count23 + Year2007 + Date Modified2009-06-26T12:12:51Z + Date Added2009-10-03T14:51:40Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3345820194 + Play Date UTC2010-01-08T12:59:54Z + Normalization1061 + Artwork Count1 + Persistent IDF19738B6389D6699 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tori%20Amos/American%20Doll%20Posse/11%20Devils%20and%20Gods.m4a + File Folder Count4 + Library Folder Count1 + + 2176 + + Track ID2176 + NameDigital Ghost + ArtistTori Amos + Album ArtistTori Amos + ComposerTori Amos + AlbumAmerican Doll Posse + GenrePop + KindAAC audio file + Size5657934 + Total Time230600 + Track Number5 + Track Count23 + Year2007 + Date Modified2009-06-26T12:13:50Z + Date Added2009-10-03T14:51:40Z + Bit Rate192 + Sample Rate44100 + Normalization2180 + Artwork Count1 + Persistent IDF083D041B0CFCB9C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tori%20Amos/American%20Doll%20Posse/05%20Digital%20Ghost.m4a + File Folder Count4 + Library Folder Count1 + + 2178 + + Track ID2178 + NameDragon + ArtistTori Amos + Album ArtistTori Amos + ComposerTori Amos + AlbumAmerican Doll Posse + GenrePop + KindAAC audio file + Size7364395 + Total Time303226 + Track Number23 + Track Count23 + Year2007 + Date Modified2009-06-26T12:15:05Z + Date Added2009-10-03T14:51:41Z + Bit Rate192 + Sample Rate44100 + Normalization1228 + Artwork Count1 + Persistent IDB6ED80F0A230913D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tori%20Amos/American%20Doll%20Posse/23%20Dragon.m4a + File Folder Count4 + Library Folder Count1 + + 2180 + + Track ID2180 + NameFat Slut + ArtistTori Amos + Album ArtistTori Amos + ComposerTori Amos + AlbumAmerican Doll Posse + GenrePop + KindAAC audio file + Size1063222 + Total Time41640 + Track Number8 + Track Count23 + Year2007 + Date Modified2009-06-26T12:16:17Z + Date Added2009-10-03T14:51:41Z + Bit Rate192 + Sample Rate44100 + Normalization1508 + Artwork Count1 + Persistent ID88D480642BD87F8C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tori%20Amos/American%20Doll%20Posse/08%20Fat%20Slut.m4a + File Folder Count4 + Library Folder Count1 + + 2182 + + Track ID2182 + NameFather's Son + ArtistTori Amos + Album ArtistTori Amos + ComposerTori Amos + AlbumAmerican Doll Posse + GenrePop + KindAAC audio file + Size5876092 + Total Time239720 + Track Number13 + Track Count23 + Year2007 + Date Modified2009-06-26T12:16:05Z + Date Added2009-10-03T14:51:41Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Persistent ID43D2C046D4EB43B8 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tori%20Amos/American%20Doll%20Posse/13%20Father's%20Son.m4a + File Folder Count4 + Library Folder Count1 + + 2184 + + Track ID2184 + NameGirl Disappearing + ArtistTori Amos + Album ArtistTori Amos + ComposerTori Amos + AlbumAmerican Doll Posse + GenrePop + KindAAC audio file + Size5858927 + Total Time240693 + Track Number9 + Track Count23 + Year2007 + Date Modified2009-06-26T12:17:20Z + Date Added2009-10-03T14:51:41Z + Bit Rate192 + Sample Rate44100 + Play Count3 + Play Date3390979031 + Play Date UTC2011-06-15T05:07:11Z + Normalization1259 + Artwork Count1 + Persistent ID5492429A40B3B820 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tori%20Amos/American%20Doll%20Posse/09%20Girl%20Disappearing.m4a + File Folder Count4 + Library Folder Count1 + + 2186 + + Track ID2186 + NameMr. Bad Man + ArtistTori Amos + Album ArtistTori Amos + ComposerTori Amos + AlbumAmerican Doll Posse + GenrePop + KindAAC audio file + Size4911705 + Total Time198506 + Track Number7 + Track Count23 + Year2007 + Date Modified2009-06-26T12:18:11Z + Date Added2009-10-03T14:51:41Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Persistent ID2ADC77893D4885EA + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tori%20Amos/American%20Doll%20Posse/07%20Mr.%20Bad%20Man.m4a + File Folder Count4 + Library Folder Count1 + + 2188 + + Track ID2188 + NamePosse Bonus + ArtistTori Amos + Album ArtistTori Amos + ComposerTori Amos + AlbumAmerican Doll Posse + GenrePop + KindAAC audio file + Size2626103 + Total Time105080 + Track Number21 + Track Count23 + Year2007 + Date Modified2009-06-26T12:18:43Z + Date Added2009-10-03T14:51:41Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Persistent ID2567853DA64A8023 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tori%20Amos/American%20Doll%20Posse/21%20Posse%20Bonus.m4a + File Folder Count4 + Library Folder Count1 + + 2190 + + Track ID2190 + NameProgrammable Soda + ArtistTori Amos + Album ArtistTori Amos + ComposerTori Amos + AlbumAmerican Doll Posse + GenrePop + KindAAC audio file + Size2146939 + Total Time85853 + Track Number14 + Track Count23 + Year2007 + Date Modified2009-06-26T12:19:07Z + Date Added2009-10-03T14:51:41Z + Bit Rate192 + Sample Rate44100 + Normalization1094 + Artwork Count1 + Persistent IDD6CB56D0C815EFF4 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tori%20Amos/American%20Doll%20Posse/14%20Programmable%20Soda.m4a + File Folder Count4 + Library Folder Count1 + + 2192 + + Track ID2192 + NameRoosterspur Bridge + ArtistTori Amos + Album ArtistTori Amos + ComposerTori Amos + AlbumAmerican Doll Posse + GenrePop + KindAAC audio file + Size5857756 + Total Time238880 + Track Number16 + Track Count23 + Year2007 + Date Modified2009-06-26T12:20:28Z + Date Added2009-10-03T14:51:42Z + Bit Rate192 + Sample Rate44100 + Normalization1396 + Artwork Count1 + Persistent IDC2A16E83F0336849 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tori%20Amos/American%20Doll%20Posse/16%20Roosterspur%20Bridge.m4a + File Folder Count4 + Library Folder Count1 + + 2194 + + Track ID2194 + NameSecret Spell + ArtistTori Amos + Album ArtistTori Amos + ComposerTori Amos + AlbumAmerican Doll Posse + GenrePop + KindAAC audio file + Size5961313 + Total Time244400 + Track Number10 + Track Count23 + Year2007 + Date Modified2009-06-26T12:21:40Z + Date Added2009-10-03T14:51:42Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3345820141 + Play Date UTC2010-01-08T12:59:01Z + Normalization2868 + Artwork Count1 + Persistent IDA852F15EDA00C9A6 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tori%20Amos/American%20Doll%20Posse/10%20Secret%20Spell.m4a + File Folder Count4 + Library Folder Count1 + + 2196 + + Track ID2196 + NameSmokey Joe + ArtistTori Amos + Album ArtistTori Amos + ComposerTori Amos + AlbumAmerican Doll Posse + GenrePop + KindAAC audio file + Size6317797 + Total Time259386 + Track Number22 + Track Count23 + Year2007 + Date Modified2009-06-26T12:22:46Z + Date Added2009-10-03T14:51:42Z + Bit Rate192 + Sample Rate44100 + Normalization1495 + Artwork Count1 + Persistent IDE9510A94CA6D2369 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tori%20Amos/American%20Doll%20Posse/22%20Smokey%20Joe.m4a + File Folder Count4 + Library Folder Count1 + + 2198 + + Track ID2198 + NameTeenage Hustling + ArtistTori Amos + Album ArtistTori Amos + ComposerTori Amos + AlbumAmerican Doll Posse + GenrePop + KindAAC audio file + Size5916010 + Total Time240480 + Track Number4 + Track Count23 + Year2007 + Date Modified2009-06-26T12:23:46Z + Date Added2009-10-03T14:51:42Z + Bit Rate192 + Sample Rate44100 + Normalization5610 + Artwork Count1 + Persistent IDB2CAE83FC9499550 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tori%20Amos/American%20Doll%20Posse/04%20Teenage%20Hustling.m4a + File Folder Count4 + Library Folder Count1 + + 2200 + + Track ID2200 + NameVelvet Revolution + ArtistTori Amos + Album ArtistTori Amos + ComposerTori Amos + AlbumAmerican Doll Posse + GenrePop + KindAAC audio file + Size1985230 + Total Time79333 + Track Number19 + Track Count23 + Year2007 + Date Modified2009-06-26T12:24:08Z + Date Added2009-10-03T14:51:42Z + Bit Rate192 + Sample Rate44100 + Normalization1244 + Artwork Count1 + Persistent ID53C3DE4F14F8382A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tori%20Amos/American%20Doll%20Posse/19%20Velvet%20Revolution.m4a + File Folder Count4 + Library Folder Count1 + + 2202 + + Track ID2202 + NameYo George + ArtistTori Amos + Album ArtistTori Amos + ComposerTori Amos + AlbumAmerican Doll Posse + GenrePop + KindAAC audio file + Size2129064 + Total Time85280 + Track Number1 + Track Count23 + Year2007 + Date Modified2009-06-26T12:24:30Z + Date Added2009-10-03T14:51:42Z + Bit Rate192 + Sample Rate44100 + Normalization243 + Artwork Count1 + Persistent ID160A7FEA3996657F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tori%20Amos/American%20Doll%20Posse/01%20Yo%20George.m4a + File Folder Count4 + Library Folder Count1 + + 2204 + + Track ID2204 + NameYou Can Bring Your Dog + ArtistTori Amos + Album ArtistTori Amos + ComposerTori Amos + AlbumAmerican Doll Posse + GenrePop + KindAAC audio file + Size5977541 + Total Time244320 + Track Number6 + Track Count23 + Year2007 + Date Modified2009-06-26T12:25:31Z + Date Added2009-10-03T14:51:42Z + Bit Rate192 + Sample Rate44100 + Normalization1860 + Artwork Count1 + Persistent ID57825ADD4E520B2E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tori%20Amos/American%20Doll%20Posse/06%20You%20Can%20Bring%20Your%20Dog.m4a + File Folder Count4 + Library Folder Count1 + + 2206 + + Track ID2206 + NameDinah + ArtistThelonious Monk + ComposerSam M. Lewis; Joe Young; Harry Akst + AlbumSolo Monk + GenreJazz + KindAAC audio file + Size3635947 + Total Time149697 + Disc Number1 + Disc Count1 + Track Number1 + Track Count13 + Year1995 + Date Modified2006-09-05T15:23:48Z + Date Added2009-10-03T14:51:43Z + Bit Rate192 + Sample Rate44100 + Play Count2 + Play Date3390218307 + Play Date UTC2011-06-06T09:48:27Z + Normalization476 + Artwork Count1 + Persistent ID067BDD3DF56F7945 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Thelonious%20Monk/Solo%20Monk/01%20Dinah.m4a + File Folder Count4 + Library Folder Count1 + + 2208 + + Track ID2208 + NameI Surrender, Dear + ArtistThelonious Monk + ComposerGordon Clifford; Harry Barris + AlbumSolo Monk + GenreJazz + KindAAC audio file + Size5489227 + Total Time224651 + Disc Number1 + Disc Count1 + Track Number2 + Track Count13 + Year1995 + Date Modified2006-09-05T15:23:48Z + Date Added2009-10-03T14:51:43Z + Bit Rate192 + Sample Rate44100 + Play Count2 + Play Date3390218532 + Play Date UTC2011-06-06T09:52:12Z + Normalization673 + Artwork Count1 + Persistent IDE62B1D5B2CD5690B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Thelonious%20Monk/Solo%20Monk/02%20I%20Surrender,%20Dear.m4a + File Folder Count4 + Library Folder Count1 + + 2210 + + Track ID2210 + NameSweet And Lovely + ArtistThelonious Monk + ComposerGus Arnheim; Harry Tobias; Jules Lemare + AlbumSolo Monk + GenreJazz + KindAAC audio file + Size4419910 + Total Time181508 + Disc Number1 + Disc Count1 + Track Number3 + Track Count13 + Year1995 + Date Modified2006-09-05T15:23:48Z + Date Added2009-10-03T14:51:43Z + Bit Rate192 + Sample Rate44100 + Play Count2 + Play Date3390218713 + Play Date UTC2011-06-06T09:55:13Z + Normalization538 + Artwork Count1 + Persistent ID89DA086BE5578AA4 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Thelonious%20Monk/Solo%20Monk/03%20Sweet%20And%20Lovely.m4a + File Folder Count4 + Library Folder Count1 + + 2212 + + Track ID2212 + NameNorth Of The Sunset + ArtistThelonious Monk + ComposerThelonious Monk + AlbumSolo Monk + GenreJazz + KindAAC audio file + Size2784768 + Total Time113822 + Disc Number1 + Disc Count1 + Track Number4 + Track Count13 + Year1995 + Date Modified2006-09-05T15:23:48Z + Date Added2009-10-03T14:51:43Z + Bit Rate192 + Sample Rate44100 + Play Count3 + Play Date3390892493 + Play Date UTC2011-06-14T05:04:53Z + Normalization450 + Artwork Count1 + Persistent IDD251FF7FA8E70898 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Thelonious%20Monk/Solo%20Monk/04%20North%20Of%20The%20Sunset.m4a + File Folder Count4 + Library Folder Count1 + + 2214 + + Track ID2214 + NameRuby, My Dear + ArtistThelonious Monk + ComposerThelonious Monk + AlbumSolo Monk + GenreJazz + KindAAC audio file + Size8239602 + Total Time340403 + Disc Number1 + Disc Count1 + Track Number5 + Track Count13 + Year1995 + Date Modified2006-09-05T15:23:48Z + Date Added2009-10-03T14:51:43Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3338010279 + Play Date UTC2009-10-10T03:34:39Z + Normalization657 + Artwork Count1 + Persistent ID1443F54815466A18 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Thelonious%20Monk/Solo%20Monk/05%20Ruby,%20My%20Dear.m4a + File Folder Count4 + Library Folder Count1 + + 2216 + + Track ID2216 + NameI'm Confessin' (That I Love You) + ArtistThelonious Monk + ComposerAl J. Nelburg; Doc Doughety; Ellis Reynolds + AlbumSolo Monk + GenreJazz + KindAAC audio file + Size3876586 + Total Time159542 + Disc Number1 + Disc Count1 + Track Number6 + Track Count13 + Year1995 + Date Modified2006-09-05T15:23:46Z + Date Added2009-10-03T14:51:43Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3338010438 + Play Date UTC2009-10-10T03:37:18Z + Normalization1095 + Artwork Count1 + Persistent IDE668F28DCB70EE71 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Thelonious%20Monk/Solo%20Monk/06%20I'm%20Confessin'%20(That%20I%20Love%20You).m4a + File Folder Count4 + Library Folder Count1 + + 2218 + + Track ID2218 + NameI Hadn't Anyone Till You + ArtistThelonious Monk + ComposerRay Noble + AlbumSolo Monk + GenreJazz + KindAAC audio file + Size4841523 + Total Time199783 + Disc Number1 + Disc Count1 + Track Number7 + Track Count13 + Year1995 + Date Modified2006-09-05T15:23:46Z + Date Added2009-10-03T14:51:43Z + Bit Rate192 + Sample Rate44100 + Normalization998 + Artwork Count1 + Persistent ID1B988A994D34B075 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Thelonious%20Monk/Solo%20Monk/07%20I%20Hadn't%20Anyone%20Till%20You.m4a + File Folder Count4 + Library Folder Count1 + + 2220 + + Track ID2220 + NameEverything Happens To Me + ArtistThelonious Monk + ComposerMatt Dennis; Tom Adair + AlbumSolo Monk + GenreJazz + KindAAC audio file + Size5097797 + Total Time210348 + Disc Number1 + Disc Count1 + Track Number8 + Track Count13 + Year1995 + Date Modified2006-09-05T15:23:46Z + Date Added2009-10-03T14:51:43Z + Bit Rate192 + Sample Rate44100 + Normalization507 + Artwork Count1 + Persistent IDC81FAAD4E40C3D8B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Thelonious%20Monk/Solo%20Monk/08%20Everything%20Happens%20To%20Me.m4a + File Folder Count4 + Library Folder Count1 + + 2222 + + Track ID2222 + NameMonk's Point + ArtistThelonious Monk + ComposerThelonious Monk + AlbumSolo Monk + GenreJazz + KindAAC audio file + Size3359867 + Total Time138226 + Disc Number1 + Disc Count1 + Track Number9 + Track Count13 + Year1995 + Date Modified2006-09-05T15:23:46Z + Date Added2009-10-03T14:51:44Z + Bit Rate192 + Sample Rate44100 + Normalization581 + Artwork Count1 + Persistent IDB73823938C66D7A3 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Thelonious%20Monk/Solo%20Monk/09%20Monk's%20Point.m4a + File Folder Count4 + Library Folder Count1 + + 2224 + + Track ID2224 + NameI Should Care + ArtistThelonious Monk + ComposerSammy Cann; Axel Stordahl; Paul Weston + AlbumSolo Monk + GenreJazz + KindAAC audio file + Size2919283 + Total Time119929 + Disc Number1 + Disc Count1 + Track Number10 + Track Count13 + Year1995 + Date Modified2006-09-05T15:23:46Z + Date Added2009-10-03T14:51:44Z + Bit Rate192 + Sample Rate44100 + Normalization430 + Artwork Count1 + Persistent ID0D7F6B3B83A5DA09 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Thelonious%20Monk/Solo%20Monk/10%20I%20Should%20Care.m4a + File Folder Count4 + Library Folder Count1 + + 2226 + + Track ID2226 + NameAsk Me Now + ArtistThelonious Monk + ComposerThelonious Monk + AlbumSolo Monk + GenreJazz + KindAAC audio file + Size6764007 + Total Time279961 + Disc Number1 + Disc Count1 + Track Number11 + Track Count13 + Year1995 + Date Modified2006-09-05T15:23:46Z + Date Added2009-10-03T14:51:44Z + Bit Rate192 + Sample Rate44100 + Normalization579 + Artwork Count1 + Persistent IDE0A871D0F5D6307A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Thelonious%20Monk/Solo%20Monk/11%20Ask%20Me%20Now.m4a + File Folder Count4 + Library Folder Count1 + + 2228 + + Track ID2228 + NameThese Foolish Things (Remind Me Of You) + ArtistThelonious Monk + ComposerHarry Link/Holt Marvell/Jack Strachey + AlbumSolo Monk + GenreJazz + KindAAC audio file + Size5204413 + Total Time214783 + Disc Number1 + Disc Count1 + Track Number12 + Track Count13 + Year1995 + Date Modified2006-09-05T15:23:46Z + Date Added2009-10-03T14:51:44Z + Bit Rate192 + Sample Rate44100 + Normalization630 + Artwork Count1 + Persistent IDFE8310C68725A823 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Thelonious%20Monk/Solo%20Monk/12%20These%20Foolish%20Things%20(Remind%20Me%20Of%20You).m4a + File Folder Count4 + Library Folder Count1 + + 2230 + + Track ID2230 + NameIntrospection (previously unreleased) + ArtistThelonious Monk + ComposerThelonious Monk + AlbumSolo Monk + GenreJazz + KindAAC audio file + Size3437348 + Total Time139805 + Disc Number1 + Disc Count1 + Track Number13 + Track Count13 + Year1995 + Date Modified2006-09-05T15:23:44Z + Date Added2009-10-03T14:51:44Z + Bit Rate192 + Sample Rate44100 + Normalization526 + Artwork Count1 + Persistent IDC34BBBCAB9A3B08B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Thelonious%20Monk/Solo%20Monk/13%20Introspection%20%20(previously%20unreleased).m4a + File Folder Count4 + Library Folder Count1 + + 2232 + + Track ID2232 + NameGet Over It + ArtistThe Eagles + ComposerDon Henley & Glenn Frey + AlbumHell Freezes Over + GenreRock + KindAAC audio file + Size5121083 + Total Time211718 + Disc Number1 + Disc Count1 + Track Number1 + Track Count15 + Year1994 + Date Modified2006-08-08T12:10:52Z + Date Added2009-10-03T14:52:23Z + Bit Rate192 + Sample Rate44100 + Normalization5440 + Artwork Count1 + Sort ArtistEagles + Persistent ID90EE372EF8524755 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Eagles/Hell%20Freezes%20Over/01%20Get%20Over%20It.m4a + File Folder Count4 + Library Folder Count1 + + 2234 + + Track ID2234 + NameLove Will Keep Us Alive + ArtistThe Eagles + ComposerPete Vale, Jim Capaldi & Paul Carrack + AlbumHell Freezes Over + GenreRock + KindAAC audio file + Size5906763 + Total Time243436 + Disc Number1 + Disc Count1 + Track Number2 + Track Count15 + Year1994 + Date Modified2006-08-08T12:10:50Z + Date Added2009-10-03T14:52:24Z + Bit Rate192 + Sample Rate44100 + Normalization1255 + Artwork Count1 + Sort ArtistEagles + Persistent ID1C6FD8297637EAC5 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Eagles/Hell%20Freezes%20Over/02%20Love%20Will%20Keep%20Us%20Alive.m4a + File Folder Count4 + Library Folder Count1 + + 2236 + + Track ID2236 + NameThe Girl From Yesterday + ArtistThe Eagles + ComposerGlenn Frey & Jack Tempchin + AlbumHell Freezes Over + GenreRock + KindAAC audio file + Size4950421 + Total Time203939 + Disc Number1 + Disc Count1 + Track Number3 + Track Count15 + Year1994 + Date Modified2006-08-08T12:10:50Z + Date Added2009-10-03T14:52:24Z + Bit Rate192 + Sample Rate44100 + Normalization2829 + Artwork Count1 + Sort ArtistEagles + Sort NameGirl From Yesterday + Persistent ID6BCE8C024AF57D06 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Eagles/Hell%20Freezes%20Over/03%20The%20Girl%20From%20Yesterday.m4a + File Folder Count4 + Library Folder Count1 + + 2238 + + Track ID2238 + NameLearn To Be Still + ArtistThe Eagles + ComposerDon Henley & Stan Lynch + AlbumHell Freezes Over + GenreRock + KindAAC audio file + Size6519511 + Total Time268885 + Disc Number1 + Disc Count1 + Track Number4 + Track Count15 + Year1994 + Date Modified2006-08-08T12:10:50Z + Date Added2009-10-03T14:52:24Z + Bit Rate192 + Sample Rate44100 + Normalization1905 + Artwork Count1 + Sort ArtistEagles + Persistent ID4BA57E13957EAD26 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Eagles/Hell%20Freezes%20Over/04%20Learn%20To%20Be%20Still.m4a + File Folder Count4 + Library Folder Count1 + + 2240 + + Track ID2240 + NameTequilla Sunrise (Live) + ArtistThe Eagles + ComposerDon Henley & Glenn Frey + AlbumHell Freezes Over + GenreRock + KindAAC audio file + Size5048129 + Total Time207979 + Disc Number1 + Disc Count1 + Track Number5 + Track Count15 + Year1994 + Date Modified2006-08-08T12:10:50Z + Date Added2009-10-03T14:52:24Z + Bit Rate192 + Sample Rate44100 + Normalization1868 + Artwork Count1 + Sort ArtistEagles + Persistent ID914C4DF386406960 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Eagles/Hell%20Freezes%20Over/05%20Tequilla%20Sunrise%20(Live).m4a + File Folder Count4 + Library Folder Count1 + + 2242 + + Track ID2242 + NameHotel California (Live) + ArtistThe Eagles + ComposerDon Henley, Glenn Frey & Don Felder + AlbumHell Freezes Over + GenreRock + KindAAC audio file + Size10468469 + Total Time432075 + Disc Number1 + Disc Count1 + Track Number6 + Track Count15 + Year1994 + Date Modified2006-08-08T12:10:50Z + Date Added2009-10-03T14:52:25Z + Bit Rate192 + Sample Rate44100 + Play Count3 + Play Date3423062677 + Play Date UTC2012-06-20T13:14:37Z + Normalization1859 + Artwork Count1 + Sort ArtistEagles + Persistent IDC9D0793BEF98191F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Eagles/Hell%20Freezes%20Over/06%20Hotel%20California%20(Live).m4a + File Folder Count4 + Library Folder Count1 + + 2244 + + Track ID2244 + NameWasted Time (Live) + ArtistThe Eagles + ComposerDon Henley & Glenn Frey + AlbumHell Freezes Over + GenreRock + KindAAC audio file + Size7747236 + Total Time319621 + Disc Number1 + Disc Count1 + Track Number7 + Track Count15 + Year1994 + Date Modified2006-08-08T12:10:50Z + Date Added2009-10-03T14:52:25Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3389626162 + Play Date UTC2011-05-30T13:19:22Z + Normalization1853 + Artwork Count1 + Sort ArtistEagles + Persistent ID79CE7C959D0FEACF + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Eagles/Hell%20Freezes%20Over/07%20Wasted%20Time%20(Live).m4a + File Folder Count4 + Library Folder Count1 + + 2246 + + Track ID2246 + NamePretty Maids All In A Row (Live) + ArtistThe Eagles + ComposerJoe Vitale & Joe Walsh + AlbumHell Freezes Over + GenreRock + KindAAC audio file + Size6469697 + Total Time266842 + Disc Number1 + Disc Count1 + Track Number8 + Track Count15 + Year1994 + Date Modified2006-08-08T12:10:50Z + Date Added2009-10-03T14:52:25Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3389626429 + Play Date UTC2011-05-30T13:23:49Z + Normalization1899 + Artwork Count1 + Sort ArtistEagles + Persistent IDF1BA9CB2997AA3E7 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Eagles/Hell%20Freezes%20Over/08%20Pretty%20Maids%20All%20In%20A%20Row%20(Live).m4a + File Folder Count4 + Library Folder Count1 + + 2248 + + Track ID2248 + NameI Can't Tell You Why (Live) + ArtistThe Eagles + ComposerDon Henley, Glenn Frey & Timothy B Schmit + AlbumHell Freezes Over + GenreRock + KindAAC audio file + Size7548327 + Total Time311401 + Disc Number1 + Disc Count1 + Track Number9 + Track Count15 + Year1994 + Date Modified2006-08-08T12:10:50Z + Date Added2009-10-03T14:52:25Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3389626740 + Play Date UTC2011-05-30T13:29:00Z + Normalization1523 + Artwork Count1 + Sort ArtistEagles + Persistent IDE56DCAB9D34A30C2 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Eagles/Hell%20Freezes%20Over/09%20I%20Can't%20Tell%20You%20Why%20(Live).m4a + File Folder Count4 + Library Folder Count1 + + 2250 + + Track ID2250 + NameNew York Minute (Live) + ArtistThe Eagles + ComposerDon Henley, Danny Kortchmar & Jai Winding + AlbumHell Freezes Over + GenreRock + KindAAC audio file + Size9636772 + Total Time397709 + Disc Number1 + Disc Count1 + Track Number10 + Track Count15 + Year1994 + Date Modified2006-08-08T12:10:50Z + Date Added2009-10-03T14:52:26Z + Bit Rate192 + Sample Rate44100 + Play Count2 + Play Date3389627138 + Play Date UTC2011-05-30T13:35:38Z + Normalization1919 + Artwork Count1 + Sort ArtistEagles + Persistent IDFE2D5F117FFAE59C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Eagles/Hell%20Freezes%20Over/10%20New%20York%20Minute%20(Live).m4a + File Folder Count4 + Library Folder Count1 + + 2252 + + Track ID2252 + NameThe Last Resort (Live) + ArtistThe Eagles + ComposerDon Henley & Glenn Frey + AlbumHell Freezes Over + GenreRock + KindAAC audio file + Size10768580 + Total Time444474 + Disc Number1 + Disc Count1 + Track Number11 + Track Count15 + Year1994 + Date Modified2006-08-08T12:10:50Z + Date Added2009-10-03T14:52:26Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3389627582 + Play Date UTC2011-05-30T13:43:02Z + Normalization2155 + Artwork Count1 + Sort ArtistEagles + Sort NameLast Resort (Live) + Persistent ID99A95AB18FE8F79F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Eagles/Hell%20Freezes%20Over/11%20The%20Last%20Resort%20(Live).m4a + File Folder Count4 + Library Folder Count1 + + 2254 + + Track ID2254 + NameTake It Easy (Live) + ArtistThe Eagles + ComposerJackson Browne & Glenn Frey + AlbumHell Freezes Over + GenreRock + KindAAC audio file + Size6700277 + Total Time276362 + Disc Number1 + Disc Count1 + Track Number12 + Track Count15 + Year1994 + Date Modified2006-08-08T12:10:48Z + Date Added2009-10-03T14:52:26Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3389627859 + Play Date UTC2011-05-30T13:47:39Z + Normalization4494 + Artwork Count1 + Sort ArtistEagles + Persistent ID46CDF46877C3FF34 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Eagles/Hell%20Freezes%20Over/12%20Take%20It%20Easy%20(Live).m4a + File Folder Count4 + Library Folder Count1 + + 2256 + + Track ID2256 + NameIn The City (Live) + ArtistThe Eagles + ComposerJoe Walsh & Barry De Vorzon + AlbumHell Freezes Over + GenreRock + KindAAC audio file + Size6013790 + Total Time247871 + Disc Number1 + Disc Count1 + Track Number13 + Track Count15 + Year1994 + Date Modified2006-08-08T12:10:48Z + Date Added2009-10-03T14:52:26Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3389628106 + Play Date UTC2011-05-30T13:51:46Z + Normalization4477 + Artwork Count1 + Sort ArtistEagles + Persistent ID78B1884771B51E01 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Eagles/Hell%20Freezes%20Over/13%20In%20The%20City%20(Live).m4a + File Folder Count4 + Library Folder Count1 + + 2258 + + Track ID2258 + NameLife In The Fast Lane (Live) + ArtistThe Eagles + ComposerDon Henley, Glenn Frey & Joe Walsh + AlbumHell Freezes Over + GenreRock + KindAAC audio file + Size8754807 + Total Time361254 + Disc Number1 + Disc Count1 + Track Number14 + Track Count15 + Year1994 + Date Modified2006-08-08T12:10:48Z + Date Added2009-10-03T14:52:27Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3389628468 + Play Date UTC2011-05-30T13:57:48Z + Normalization4452 + Artwork Count1 + Sort ArtistEagles + Persistent ID4C85A2C7CFC8BF15 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Eagles/Hell%20Freezes%20Over/14%20Life%20In%20The%20Fast%20Lane%20(Live).m4a + File Folder Count4 + Library Folder Count1 + + 2260 + + Track ID2260 + NameDesperado (Live) + ArtistThe Eagles + ComposerDon Henley & Glenn Frey + AlbumHell Freezes Over + GenreRock + KindAAC audio file + Size6206985 + Total Time257879 + Disc Number1 + Disc Count1 + Track Number15 + Track Count15 + Year1994 + Date Modified2006-08-08T12:10:48Z + Date Added2009-10-03T14:52:27Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3389628726 + Play Date UTC2011-05-30T14:02:06Z + Normalization2031 + Artwork Count1 + Sort ArtistEagles + Persistent ID6811D3B5684F66BB + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Eagles/Hell%20Freezes%20Over/15%20Desperado%20(Live).m4a + File Folder Count4 + Library Folder Count1 + + 2262 + + Track ID2262 + NameBlue Rondo A La Turk + ArtistThe Dave Brubeck Quartet + ComposerDave Brubeck + AlbumTime Out + GenreJazz + KindAAC audio file + Size9843689 + Total Time406138 + Disc Number1 + Disc Count1 + Track Number1 + Track Count7 + Year1959 + Date Modified2006-08-03T11:46:24Z + Date Added2009-10-03T14:52:27Z + Bit Rate192 + Sample Rate44100 + Play Count2 + Play Date3471262543 + Play Date UTC2013-12-30T10:05:43Z + Normalization1204 + Artwork Count1 + Sort ArtistDave Brubeck Quartet + Persistent IDE1B5EC85D716A72C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Dave%20Brubeck%20Quartet/Time%20Out/01%20Blue%20Rondo%20A%20La%20Turk.m4a + File Folder Count4 + Library Folder Count1 + + 2264 + + Track ID2264 + NameStrange Meadow Lark + ArtistThe Dave Brubeck Quartet + ComposerDave Brubeck + AlbumTime Out + GenreJazz + KindAAC audio file + Size10765899 + Total Time444242 + Disc Number1 + Disc Count1 + Track Number2 + Track Count7 + Year1959 + Date Modified2006-08-03T11:46:24Z + Date Added2009-10-03T14:52:27Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3438966197 + Play Date UTC2012-12-21T14:53:17Z + Normalization1033 + Artwork Count1 + Sort ArtistDave Brubeck Quartet + Persistent ID328F3A1589AD1FD7 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Dave%20Brubeck%20Quartet/Time%20Out/02%20Strange%20Meadow%20Lark.m4a + File Folder Count4 + Library Folder Count1 + + 2266 + + Track ID2266 + NameTake Five + ArtistThe Dave Brubeck Quartet + ComposerPaul Desmond + AlbumTime Out + GenreJazz + KindAAC audio file + Size7923853 + Total Time326796 + Disc Number1 + Disc Count1 + Track Number3 + Track Count7 + Year1959 + Date Modified2006-08-03T11:46:24Z + Date Added2009-10-03T14:52:27Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3435144178 + Play Date UTC2012-11-07T09:12:58Z + Skip Count1 + Skip Date2011-01-17T11:15:33Z + Normalization1081 + Artwork Count1 + Sort ArtistDave Brubeck Quartet + Persistent ID09568520230C26CC + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Dave%20Brubeck%20Quartet/Time%20Out/03%20Take%20Five.m4a + File Folder Count4 + Library Folder Count1 + + 2268 + + Track ID2268 + NameThree To Get Ready + ArtistThe Dave Brubeck Quartet + ComposerDave Brubeck + AlbumTime Out + GenreJazz + KindAAC audio file + Size7901209 + Total Time325867 + Disc Number1 + Disc Count1 + Track Number4 + Track Count7 + Year1959 + Date Modified2006-08-03T11:46:24Z + Date Added2009-10-03T14:52:28Z + Bit Rate192 + Sample Rate44100 + Normalization1033 + Artwork Count1 + Sort ArtistDave Brubeck Quartet + Persistent ID855DC94A22F8CD92 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Dave%20Brubeck%20Quartet/Time%20Out/04%20Three%20To%20Get%20Ready.m4a + File Folder Count4 + Library Folder Count1 + + 2270 + + Track ID2270 + NameKathy's Waltz + ArtistThe Dave Brubeck Quartet + ComposerDave Brubeck + AlbumTime Out + GenreJazz + KindAAC audio file + Size7048364 + Total Time290619 + Disc Number1 + Disc Count1 + Track Number5 + Track Count7 + Year1959 + Date Modified2006-08-03T11:46:26Z + Date Added2009-10-03T14:52:28Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3441544403 + Play Date UTC2013-01-20T11:03:23Z + Normalization1032 + Artwork Count1 + Sort ArtistDave Brubeck Quartet + Persistent IDD843F56EF045F256 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Dave%20Brubeck%20Quartet/Time%20Out/05%20Kathy's%20Waltz.m4a + File Folder Count4 + Library Folder Count1 + + 2272 + + Track ID2272 + NameEverybody's Jumpin' + ArtistThe Dave Brubeck Quartet + ComposerDave Brubeck + AlbumTime Out + GenreJazz + KindAAC audio file + Size6425315 + Total Time264868 + Disc Number1 + Disc Count1 + Track Number6 + Track Count7 + Year1959 + Date Modified2006-08-03T11:46:26Z + Date Added2009-10-03T14:52:28Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3441544668 + Play Date UTC2013-01-20T11:07:48Z + Normalization1033 + Artwork Count1 + Sort ArtistDave Brubeck Quartet + Persistent IDE703651BCB06438D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Dave%20Brubeck%20Quartet/Time%20Out/06%20Everybody's%20Jumpin'.m4a + File Folder Count4 + Library Folder Count1 + + 2274 + + Track ID2274 + NamePick Up Sticks + ArtistThe Dave Brubeck Quartet + ComposerDave Brubeck + AlbumTime Out + GenreJazz + KindAAC audio file + Size6228367 + Total Time256695 + Disc Number1 + Disc Count1 + Track Number7 + Track Count7 + Year1959 + Date Modified2006-08-03T11:46:26Z + Date Added2009-10-03T14:52:28Z + Bit Rate192 + Sample Rate44100 + Normalization1033 + Artwork Count1 + Sort ArtistDave Brubeck Quartet + Persistent ID170B1574D7B9740B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Dave%20Brubeck%20Quartet/Time%20Out/07%20Pick%20Up%20Sticks.m4a + File Folder Count4 + Library Folder Count1 + + 2276 + + Track ID2276 + NameI Still Do + ArtistThe Cranberries + ComposerNoel Hogan, Dolores O'Riordan + AlbumEverybody Else Is Doing It, So Why Can't We? + GenreAlternative & Punk + KindAAC audio file + Size4798078 + Total Time196718 + Disc Number1 + Disc Count1 + Track Number1 + Track Count12 + Year1993 + Date Modified2006-08-03T12:43:40Z + Date Added2009-10-03T14:52:28Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3377093133 + Play Date UTC2011-01-05T11:55:33Z + Normalization1295 + Artwork Count1 + Sort ArtistCranberries + Persistent ID60FA6796442F0174 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Cranberries/Everybody%20Else%20Is%20Doing%20It,%20So%20Why%20Can't%20We_/01%20I%20Still%20Do.m4a + File Folder Count4 + Library Folder Count1 + + 2278 + + Track ID2278 + NameDreams + ArtistThe Cranberries + ComposerDolores O'Riordan/Noel Hogan, Dolores O'Riordan + AlbumEverybody Else Is Doing It, So Why Can't We? + GenreAlternative & Punk + KindAAC audio file + Size6598288 + Total Time272066 + Disc Number1 + Disc Count1 + Track Number2 + Track Count12 + Year1993 + Date Modified2006-08-03T12:43:40Z + Date Added2009-10-03T14:52:28Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3377093405 + Play Date UTC2011-01-05T12:00:05Z + Normalization1067 + Artwork Count1 + Sort ArtistCranberries + Persistent IDC70C038607F1B576 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Cranberries/Everybody%20Else%20Is%20Doing%20It,%20So%20Why%20Can't%20We_/02%20Dreams.m4a + File Folder Count4 + Library Folder Count1 + + 2280 + + Track ID2280 + NameSunday + ArtistThe Cranberries + ComposerNoel Hogan, Dolores O'Riordan + AlbumEverybody Else Is Doing It, So Why Can't We? + GenreAlternative & Punk + KindAAC audio file + Size5142516 + Total Time211067 + Disc Number1 + Disc Count1 + Track Number3 + Track Count12 + Year1993 + Date Modified2006-08-03T12:43:40Z + Date Added2009-10-03T14:52:28Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3377093616 + Play Date UTC2011-01-05T12:03:36Z + Normalization1237 + Artwork Count1 + Sort ArtistCranberries + Persistent ID5C5064D2E2F1DC43 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Cranberries/Everybody%20Else%20Is%20Doing%20It,%20So%20Why%20Can't%20We_/03%20Sunday.m4a + File Folder Count4 + Library Folder Count1 + + 2282 + + Track ID2282 + NamePretty + ArtistThe Cranberries + ComposerNoel Hogan, Dolores O'Riordan + AlbumEverybody Else Is Doing It, So Why Can't We? + GenreAlternative & Punk + KindAAC audio file + Size3324104 + Total Time136206 + Disc Number1 + Disc Count1 + Track Number4 + Track Count12 + Year1993 + Date Modified2006-08-03T12:43:40Z + Date Added2009-10-03T14:52:29Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3377093753 + Play Date UTC2011-01-05T12:05:53Z + Normalization1146 + Artwork Count1 + Sort ArtistCranberries + Persistent ID523CD5DEFEEA3C70 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Cranberries/Everybody%20Else%20Is%20Doing%20It,%20So%20Why%20Can't%20We_/04%20Pretty.m4a + File Folder Count4 + Library Folder Count1 + + 2284 + + Track ID2284 + NameWalking Back + ArtistThe Cranberries + ComposerDolores O'Riordan + AlbumEverybody Else Is Doing It, So Why Can't We? + GenreAlternative & Punk + KindAAC audio file + Size5309492 + Total Time218010 + Disc Number1 + Disc Count1 + Track Number5 + Track Count12 + Year1993 + Date Modified2006-08-03T12:43:40Z + Date Added2009-10-03T14:52:29Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3377094120 + Play Date UTC2011-01-05T12:12:00Z + Normalization1257 + Artwork Count1 + Sort ArtistCranberries + Persistent ID533C6B5C8CE69AD5 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Cranberries/Everybody%20Else%20Is%20Doing%20It,%20So%20Why%20Can't%20We_/05%20Walking%20Back.m4a + File Folder Count4 + Library Folder Count1 + + 2286 + + Track ID2286 + NameNot Sorry + ArtistThe Cranberries + ComposerNoel Hogan, Dolores O'Riordan + AlbumEverybody Else Is Doing It, So Why Can't We? + GenreAlternative & Punk + KindAAC audio file + Size6318049 + Total Time260108 + Disc Number1 + Disc Count1 + Track Number6 + Track Count12 + Year1993 + Date Modified2006-08-03T12:43:40Z + Date Added2009-10-03T14:52:29Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3377094380 + Play Date UTC2011-01-05T12:16:20Z + Normalization1144 + Artwork Count1 + Sort ArtistCranberries + Persistent IDA1CAB4ADF8D24330 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Cranberries/Everybody%20Else%20Is%20Doing%20It,%20So%20Why%20Can't%20We_/06%20Not%20Sorry.m4a + File Folder Count4 + Library Folder Count1 + + 2288 + + Track ID2288 + NameLinger + ArtistThe Cranberries + ComposerNoel Hogan, Dolores O'Riordan + AlbumEverybody Else Is Doing It, So Why Can't We? + GenreAlternative & Punk + KindAAC audio file + Size6674402 + Total Time274783 + Disc Number1 + Disc Count1 + Track Number7 + Track Count12 + Year1993 + Date Modified2006-08-03T12:43:40Z + Date Added2009-10-03T14:52:29Z + Bit Rate192 + Sample Rate44100 + Play Count2 + Play Date3484244650 + Play Date UTC2014-05-29T16:14:10Z + Normalization912 + Artwork Count1 + Sort ArtistCranberries + Persistent ID67799878227FEA60 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Cranberries/Everybody%20Else%20Is%20Doing%20It,%20So%20Why%20Can't%20We_/07%20Linger.m4a + File Folder Count4 + Library Folder Count1 + + 2290 + + Track ID2290 + NameWanted + ArtistThe Cranberries + ComposerNoel Hogan, Dolores O'Riordan + AlbumEverybody Else Is Doing It, So Why Can't We? + GenreAlternative & Punk + KindAAC audio file + Size3130265 + Total Time128149 + Disc Number1 + Disc Count1 + Track Number8 + Track Count12 + Year1993 + Date Modified2006-08-03T12:43:40Z + Date Added2009-10-03T14:52:29Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3377094783 + Play Date UTC2011-01-05T12:23:03Z + Normalization1197 + Artwork Count1 + Sort ArtistCranberries + Persistent ID215CB5AF8B7BEA61 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Cranberries/Everybody%20Else%20Is%20Doing%20It,%20So%20Why%20Can't%20We_/08%20Wanted.m4a + File Folder Count4 + Library Folder Count1 + + 2292 + + Track ID2292 + NameStill Can't... + ArtistThe Cranberries + ComposerNoel Hogan, Dolores O'Riordan + AlbumEverybody Else Is Doing It, So Why Can't We? + GenreAlternative & Punk + KindAAC audio file + Size5323445 + Total Time219845 + Disc Number1 + Disc Count1 + Track Number9 + Track Count12 + Year1993 + Date Modified2006-08-03T12:43:40Z + Date Added2009-10-03T14:52:29Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3377095003 + Play Date UTC2011-01-05T12:26:43Z + Normalization1200 + Artwork Count1 + Sort ArtistCranberries + Persistent ID8FF45644FA280C29 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Cranberries/Everybody%20Else%20Is%20Doing%20It,%20So%20Why%20Can't%20We_/09%20Still%20Can't....m4a + File Folder Count4 + Library Folder Count1 + + 2294 + + Track ID2294 + NameI Will Always + ArtistThe Cranberries + ComposerDolores O'Riordan + AlbumEverybody Else Is Doing It, So Why Can't We? + GenreAlternative & Punk + KindAAC audio file + Size3954025 + Total Time162143 + Disc Number1 + Disc Count1 + Track Number10 + Track Count12 + Year1993 + Date Modified2006-08-03T12:43:40Z + Date Added2009-10-03T14:52:29Z + Bit Rate192 + Sample Rate44100 + Normalization1164 + Artwork Count1 + Sort ArtistCranberries + Persistent ID951DB63731174FB7 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Cranberries/Everybody%20Else%20Is%20Doing%20It,%20So%20Why%20Can't%20We_/10%20I%20Will%20Always.m4a + File Folder Count4 + Library Folder Count1 + + 2296 + + Track ID2296 + NameHow + ArtistThe Cranberries + ComposerDolores O'Riordan + AlbumEverybody Else Is Doing It, So Why Can't We? + GenreAlternative & Punk + KindAAC audio file + Size4200603 + Total Time171849 + Disc Number1 + Disc Count1 + Track Number11 + Track Count12 + Year1993 + Date Modified2006-08-03T12:43:40Z + Date Added2009-10-03T14:52:29Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3377095199 + Play Date UTC2011-01-05T12:29:59Z + Normalization1419 + Artwork Count1 + Sort ArtistCranberries + Persistent ID1CFDBCBBF91DA288 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Cranberries/Everybody%20Else%20Is%20Doing%20It,%20So%20Why%20Can't%20We_/11%20How.m4a + File Folder Count4 + Library Folder Count1 + + 2298 + + Track ID2298 + NamePut Me Down + ArtistThe Cranberries + ComposerNoel Hogan, Dolores O'Riordan + AlbumEverybody Else Is Doing It, So Why Can't We? + GenreAlternative & Punk + KindAAC audio file + Size5152447 + Total Time211509 + Disc Number1 + Disc Count1 + Track Number12 + Track Count12 + Year1993 + Date Modified2006-08-03T12:43:40Z + Date Added2009-10-03T14:52:29Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3377095410 + Play Date UTC2011-01-05T12:33:30Z + Normalization1159 + Artwork Count1 + Sort ArtistCranberries + Persistent ID755A55055884F61A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Cranberries/Everybody%20Else%20Is%20Doing%20It,%20So%20Why%20Can't%20We_/12%20Put%20Me%20Down.m4a + File Folder Count4 + Library Folder Count1 + + 2300 + + Track ID2300 + NameWe've Only Just Begun + ArtistThe Carpenters + ComposerPaul Williams - Roger Nichols + AlbumThe Singles 1969-1973 + GenrePop + KindAAC audio file + Size6035422 + Total Time248870 + Disc Number1 + Disc Count1 + Track Number1 + Track Count12 + Year1973 + Date Modified2006-08-13T06:47:38Z + Date Added2009-10-03T14:52:30Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3391613461 + Play Date UTC2011-06-22T13:21:01Z + Normalization1239 + Artwork Count1 + Sort AlbumSingles 1969-1973 + Sort ArtistCarpenters + Persistent IDA6597A3EA200BD05 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Carpenters/The%20Singles%201969-1973/01%20We've%20Only%20Just%20Begun.m4a + File Folder Count4 + Library Folder Count1 + + 2302 + + Track ID2302 + NameTop Of The World + ArtistThe Carpenters + ComposerRichard Carpenter - John Bettis + AlbumThe Singles 1969-1973 + GenrePop + KindAAC audio file + Size4336903 + Total Time178374 + Disc Number1 + Disc Count1 + Track Number2 + Track Count12 + Year1973 + Date Modified2006-08-13T06:47:36Z + Date Added2009-10-03T14:52:30Z + Bit Rate192 + Sample Rate44100 + Play Count2 + Play Date3484491714 + Play Date UTC2014-06-01T12:51:54Z + Normalization1329 + Artwork Count1 + Sort AlbumSingles 1969-1973 + Sort ArtistCarpenters + Persistent ID7D73043A260C615B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Carpenters/The%20Singles%201969-1973/02%20Top%20Of%20The%20World.m4a + File Folder Count4 + Library Folder Count1 + + 2304 + + Track ID2304 + NameTicket To Ride + ArtistThe Carpenters + ComposerJohn Lennon - Paul McCartney + AlbumThe Singles 1969-1973 + GenrePop + KindAAC audio file + Size6053227 + Total Time249613 + Disc Number1 + Disc Count1 + Track Number3 + Track Count12 + Year1973 + Date Modified2006-08-13T06:47:34Z + Date Added2009-10-03T14:52:30Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3391613889 + Play Date UTC2011-06-22T13:28:09Z + Normalization1662 + Artwork Count1 + Sort AlbumSingles 1969-1973 + Sort ArtistCarpenters + Persistent ID1D195C15A181C745 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Carpenters/The%20Singles%201969-1973/03%20Ticket%20To%20Ride.m4a + File Folder Count4 + Library Folder Count1 + + 2306 + + Track ID2306 + NameSuperstar + ArtistThe Carpenters + ComposerLeon Russell - Bonnie Bramlet + AlbumThe Singles 1969-1973 + GenrePop + KindAAC audio file + Size5408916 + Total Time223002 + Disc Number1 + Disc Count1 + Track Number4 + Track Count12 + Year1973 + Date Modified2006-08-13T06:47:30Z + Date Added2009-10-03T14:52:30Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3391614112 + Play Date UTC2011-06-22T13:31:52Z + Normalization2160 + Artwork Count1 + Sort AlbumSingles 1969-1973 + Sort ArtistCarpenters + Persistent ID00D2F22CE3BD9A08 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Carpenters/The%20Singles%201969-1973/04%20Superstar.m4a + File Folder Count4 + Library Folder Count1 + + 2308 + + Track ID2308 + NameRainy Days And Mondays + ArtistThe Carpenters + ComposerPaul Williams - Roger Nichols + AlbumThe Singles 1969-1973 + GenrePop + KindAAC audio file + Size4935848 + Total Time203312 + Disc Number1 + Disc Count1 + Track Number5 + Track Count12 + Year1973 + Date Modified2006-08-13T06:47:28Z + Date Added2009-10-03T14:52:30Z + Bit Rate192 + Sample Rate44100 + Play Count2 + Play Date3484472066 + Play Date UTC2014-06-01T07:24:26Z + Normalization1745 + Artwork Count1 + Sort AlbumSingles 1969-1973 + Sort ArtistCarpenters + Persistent IDF8E889F143333E71 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Carpenters/The%20Singles%201969-1973/05%20Rainy%20Days%20And%20Mondays.m4a + File Folder Count4 + Library Folder Count1 + + 2310 + + Track ID2310 + NameGoodbye To Love + ArtistThe Carpenters + ComposerRichard Carpenter - John Bettis + AlbumThe Singles 1969-1973 + GenrePop + KindAAC audio file + Size5668074 + Total Time236308 + Disc Number1 + Disc Count1 + Track Number6 + Track Count12 + Year1973 + Date Modified2006-08-13T06:47:26Z + Date Added2009-10-03T14:52:30Z + Bit Rate192 + Sample Rate44100 + Normalization2207 + Artwork Count1 + Sort AlbumSingles 1969-1973 + Sort ArtistCarpenters + Persistent ID37F3532024160B3B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Carpenters/The%20Singles%201969-1973/06%20Goodbye%20To%20Love.m4a + File Folder Count4 + Library Folder Count1 + + 2312 + + Track ID2312 + NameYesterday Once More + ArtistThe Carpenters + ComposerRichard Carpenter - John Bettis + AlbumThe Singles 1969-1973 + GenrePop + KindAAC audio file + Size5769031 + Total Time239001 + Disc Number1 + Disc Count1 + Track Number7 + Track Count12 + Year1973 + Date Modified2006-08-13T06:47:24Z + Date Added2009-10-03T14:52:30Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Sort AlbumSingles 1969-1973 + Sort ArtistCarpenters + Persistent IDCDFFE92F3E6A94FE + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Carpenters/The%20Singles%201969-1973/07%20Yesterday%20Once%20More.m4a + File Folder Count4 + Library Folder Count1 + + 2314 + + Track ID2314 + NameIt's Going To Take Some Time + ArtistThe Carpenters + ComposerCarole King - Toni Stern + AlbumThe Singles 1969-1973 + GenrePop + KindAAC audio file + Size4251980 + Total Time176354 + Disc Number1 + Disc Count1 + Track Number8 + Track Count12 + Year1973 + Date Modified2006-08-13T06:47:20Z + Date Added2009-10-03T14:52:30Z + Bit Rate192 + Sample Rate44100 + Normalization818 + Artwork Count1 + Sort AlbumSingles 1969-1973 + Sort ArtistCarpenters + Persistent ID47242E9EBE3B1768 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Carpenters/The%20Singles%201969-1973/08%20It's%20Going%20To%20Take%20Some%20Time.m4a + File Folder Count4 + Library Folder Count1 + + 2316 + + Track ID2316 + NameSing + ArtistThe Carpenters + ComposerJoe Raposo + AlbumThe Singles 1969-1973 + GenrePop + KindAAC audio file + Size4797644 + Total Time200200 + Disc Number1 + Disc Count1 + Track Number9 + Track Count12 + Year1973 + Date Modified2006-08-13T06:47:18Z + Date Added2009-10-03T14:52:31Z + Bit Rate192 + Sample Rate44100 + Normalization1463 + Artwork Count1 + Sort AlbumSingles 1969-1973 + Sort ArtistCarpenters + Persistent ID7B1F973F4CE7E158 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Carpenters/The%20Singles%201969-1973/09%20Sing.m4a + File Folder Count4 + Library Folder Count1 + + 2318 + + Track ID2318 + NameFor All We Know + ArtistThe Carpenters + ComposerFred Karlin - Robb Wilson - Arthur James + AlbumThe Singles 1969-1973 + GenrePop + KindAAC audio file + Size3744213 + Total Time154898 + Disc Number1 + Disc Count1 + Track Number10 + Track Count12 + Year1973 + Date Modified2006-08-13T06:47:16Z + Date Added2009-10-03T14:52:31Z + Bit Rate192 + Sample Rate44100 + Normalization1273 + Artwork Count1 + Sort AlbumSingles 1969-1973 + Sort ArtistCarpenters + Persistent ID11D666F2E8BC12D3 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Carpenters/The%20Singles%201969-1973/10%20For%20All%20We%20Know.m4a + File Folder Count4 + Library Folder Count1 + + 2320 + + Track ID2320 + NameHurting Each Other + ArtistThe Carpenters + ComposerPeter Udell - Gary Geld + AlbumThe Singles 1969-1973 + GenrePop + KindAAC audio file + Size4059535 + Total Time168621 + Disc Number1 + Disc Count1 + Track Number11 + Track Count12 + Year1973 + Date Modified2006-08-13T06:47:14Z + Date Added2009-10-03T14:52:31Z + Bit Rate192 + Sample Rate44100 + Normalization2276 + Artwork Count1 + Sort AlbumSingles 1969-1973 + Sort ArtistCarpenters + Persistent IDCD155B32C82C39FD + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Carpenters/The%20Singles%201969-1973/11%20Hurting%20Each%20Other.m4a + File Folder Count4 + Library Folder Count1 + + 2322 + + Track ID2322 + Name(They Long To Be) Close To You + ArtistThe Carpenters + ComposerHal David - Burt Bacharach + AlbumThe Singles 1969-1973 + GenrePop + KindAAC audio file + Size5405417 + Total Time222910 + Disc Number1 + Disc Count1 + Track Number12 + Track Count12 + Year1973 + Date Modified2006-08-13T06:47:14Z + Date Added2009-10-03T14:52:31Z + Bit Rate192 + Sample Rate44100 + Normalization1050 + Artwork Count1 + Sort AlbumSingles 1969-1973 + Sort ArtistCarpenters + Persistent ID669E6B72D485CF3F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Carpenters/The%20Singles%201969-1973/12%20(They%20Long%20To%20Be)%20Close%20To%20You.m4a + File Folder Count4 + Library Folder Count1 + + 2324 + + Track ID2324 + NameAnon: Puer Natus Est Nobis + ArtistThe Benedictine Monks Of Santo Domingo De Silos + ComposerUnknown + AlbumChant + GenreClassical + KindAAC audio file + Size5281396 + Total Time216942 + Disc Number1 + Disc Count1 + Track Number1 + Track Count19 + Year1994 + Date Modified2006-07-30T14:29:12Z + Date Added2009-10-03T14:52:31Z + Bit Rate192 + Sample Rate44100 + Normalization1207 + Artwork Count1 + Sort ArtistBenedictine Monks Of Santo Domingo De Silos + Persistent ID2FBC7F79F8AA1456 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Benedictine%20Monks%20Of%20Santo%20Domingo%20De%20Silos/Chant/01%20Anon_%20Puer%20Natus%20Est%20Nobis.m4a + File Folder Count4 + Library Folder Count1 + + 2326 + + Track ID2326 + NameAnon: Os Iusti + ArtistThe Benedictine Monks Of Santo Domingo De Silos + ComposerUnknown + AlbumChant + GenreClassical + KindAAC audio file + Size4151395 + Total Time169573 + Disc Number1 + Disc Count1 + Track Number2 + Track Count19 + Year1994 + Date Modified2006-07-30T14:29:12Z + Date Added2009-10-03T14:52:31Z + Bit Rate192 + Sample Rate44100 + Normalization809 + Artwork Count1 + Sort ArtistBenedictine Monks Of Santo Domingo De Silos + Persistent IDA064DC876998E1E2 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Benedictine%20Monks%20Of%20Santo%20Domingo%20De%20Silos/Chant/02%20Anon_%20Os%20Iusti.m4a + File Folder Count4 + Library Folder Count1 + + 2328 + + Track ID2328 + NameAnon: Christus Factus Est Pro Nobis + ArtistThe Benedictine Monks Of Santo Domingo De Silos + ComposerUnknown + AlbumChant + GenreClassical + KindAAC audio file + Size3920015 + Total Time159937 + Disc Number1 + Disc Count1 + Track Number3 + Track Count19 + Year1994 + Date Modified2006-07-30T14:29:14Z + Date Added2009-10-03T14:52:31Z + Bit Rate192 + Sample Rate44100 + Normalization947 + Artwork Count1 + Sort ArtistBenedictine Monks Of Santo Domingo De Silos + Persistent ID1F55C304184FF5A7 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Benedictine%20Monks%20Of%20Santo%20Domingo%20De%20Silos/Chant/03%20Anon_%20Christus%20Factus%20Est%20Pro%20Nobis.m4a + File Folder Count4 + Library Folder Count1 + + 2330 + + Track ID2330 + NameAnon: Mandatum Novum Do Vobis + ArtistThe Benedictine Monks Of Santo Domingo De Silos + ComposerUnknown + AlbumChant + GenreClassical + KindAAC audio file + Size2482959 + Total Time101191 + Disc Number1 + Disc Count1 + Track Number4 + Track Count19 + Year1994 + Date Modified2006-07-30T14:29:14Z + Date Added2009-10-03T14:52:32Z + Bit Rate192 + Sample Rate44100 + Normalization946 + Artwork Count1 + Sort ArtistBenedictine Monks Of Santo Domingo De Silos + Persistent IDB8FA36C888ED8253 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Benedictine%20Monks%20Of%20Santo%20Domingo%20De%20Silos/Chant/04%20Anon_%20Mandatum%20Novum%20Do%20Vobis.m4a + File Folder Count4 + Library Folder Count1 + + 2332 + + Track ID2332 + NameAnon: Media Vita In Morte Sumus + ArtistThe Benedictine Monks Of Santo Domingo De Silos + ComposerUnknown + AlbumChant + GenreClassical + KindAAC audio file + Size9014329 + Total Time371215 + Disc Number1 + Disc Count1 + Track Number5 + Track Count19 + Year1994 + Date Modified2006-07-30T14:29:14Z + Date Added2009-10-03T14:52:32Z + Bit Rate192 + Sample Rate44100 + Normalization1255 + Artwork Count1 + Sort ArtistBenedictine Monks Of Santo Domingo De Silos + Persistent IDEBD4FA406E59C670 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Benedictine%20Monks%20Of%20Santo%20Domingo%20De%20Silos/Chant/05%20Anon_%20Media%20Vita%20In%20Morte%20Sumus.m4a + File Folder Count4 + Library Folder Count1 + + 2334 + + Track ID2334 + NameAnon: Alleluia, Beatus Vir Qui Suffert + ArtistThe Benedictine Monks Of Santo Domingo De Silos + ComposerUnknown + AlbumChant + GenreClassical + KindAAC audio file + Size4646240 + Total Time190169 + Disc Number1 + Disc Count1 + Track Number6 + Track Count19 + Year1994 + Date Modified2006-07-30T14:29:14Z + Date Added2009-10-03T14:52:32Z + Bit Rate192 + Sample Rate44100 + Normalization817 + Artwork Count1 + Sort ArtistBenedictine Monks Of Santo Domingo De Silos + Persistent ID44044E97AE744D36 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Benedictine%20Monks%20Of%20Santo%20Domingo%20De%20Silos/Chant/06%20Anon_%20Alleluia,%20Beatus%20Vir%20Qui%20Suffert.m4a + File Folder Count4 + Library Folder Count1 + + 2336 + + Track ID2336 + NameAnon: Spiritus Domini + ArtistThe Benedictine Monks Of Santo Domingo De Silos + ComposerUnknown + AlbumChant + GenreClassical + KindAAC audio file + Size5521145 + Total Time226602 + Disc Number1 + Disc Count1 + Track Number7 + Track Count19 + Year1994 + Date Modified2006-07-30T14:29:14Z + Date Added2009-10-03T14:52:32Z + Bit Rate192 + Sample Rate44100 + Normalization1255 + Artwork Count1 + Sort ArtistBenedictine Monks Of Santo Domingo De Silos + Persistent ID227F4DC0CB85590C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Benedictine%20Monks%20Of%20Santo%20Domingo%20De%20Silos/Chant/07%20Anon_%20Spiritus%20Domini.m4a + File Folder Count4 + Library Folder Count1 + + 2338 + + Track ID2338 + NameAnon: Improperium + ArtistThe Benedictine Monks Of Santo Domingo De Silos + ComposerUnknown + AlbumChant + GenreClassical + KindAAC audio file + Size3826809 + Total Time156059 + Disc Number1 + Disc Count1 + Track Number8 + Track Count19 + Year1994 + Date Modified2006-07-30T14:29:14Z + Date Added2009-10-03T14:52:32Z + Bit Rate192 + Sample Rate44100 + Normalization617 + Artwork Count1 + Sort ArtistBenedictine Monks Of Santo Domingo De Silos + Persistent ID6A2DBBBF3CE1FCF0 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Benedictine%20Monks%20Of%20Santo%20Domingo%20De%20Silos/Chant/08%20Anon_%20Improperium.m4a + File Folder Count4 + Library Folder Count1 + + 2340 + + Track ID2340 + NameAnon: Laetatus Sum + ArtistThe Benedictine Monks Of Santo Domingo De Silos + ComposerUnknown + AlbumChant + GenreClassical + KindAAC audio file + Size3383583 + Total Time137600 + Disc Number1 + Disc Count1 + Track Number9 + Track Count19 + Year1994 + Date Modified2006-07-30T14:29:14Z + Date Added2009-10-03T14:52:32Z + Bit Rate192 + Sample Rate44100 + Normalization1079 + Artwork Count1 + Sort ArtistBenedictine Monks Of Santo Domingo De Silos + Persistent IDBAAF17E061359649 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Benedictine%20Monks%20Of%20Santo%20Domingo%20De%20Silos/Chant/09%20Anon_%20Laetatus%20Sum.m4a + File Folder Count4 + Library Folder Count1 + + 2342 + + Track ID2342 + NameAnon: Kyrie Xi, A + ArtistThe Benedictine Monks Of Santo Domingo De Silos + ComposerUnknown + AlbumChant + GenreClassical + KindAAC audio file + Size1642087 + Total Time66175 + Disc Number1 + Disc Count1 + Track Number10 + Track Count19 + Year1994 + Date Modified2006-07-30T14:29:14Z + Date Added2009-10-03T14:52:32Z + Bit Rate192 + Sample Rate44100 + Normalization1034 + Artwork Count1 + Sort ArtistBenedictine Monks Of Santo Domingo De Silos + Persistent ID831888B8F1CF03C3 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Benedictine%20Monks%20Of%20Santo%20Domingo%20De%20Silos/Chant/10%20Anon_%20Kyrie%20Xi,%20A.m4a + File Folder Count4 + Library Folder Count1 + + 2344 + + Track ID2344 + NameAnon: Puer Natus In Bethlehem + ArtistThe Benedictine Monks Of Santo Domingo De Silos + ComposerUnknown + AlbumChant + GenreClassical + KindAAC audio file + Size2902304 + Total Time118652 + Disc Number1 + Disc Count1 + Track Number11 + Track Count19 + Year1994 + Date Modified2006-07-30T14:29:16Z + Date Added2009-10-03T14:52:32Z + Bit Rate192 + Sample Rate44100 + Normalization896 + Artwork Count1 + Sort ArtistBenedictine Monks Of Santo Domingo De Silos + Persistent ID884D46550EAC27A8 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Benedictine%20Monks%20Of%20Santo%20Domingo%20De%20Silos/Chant/11%20Anon_%20Puer%20Natus%20In%20Bethlehem.m4a + File Folder Count4 + Library Folder Count1 + + 2346 + + Track ID2346 + NameAnon: Jacta Cogitatum Tuum + ArtistThe Benedictine Monks Of Santo Domingo De Silos + ComposerUnknown + AlbumChant + GenreClassical + KindAAC audio file + Size5228364 + Total Time214411 + Disc Number1 + Disc Count1 + Track Number12 + Track Count19 + Year1994 + Date Modified2006-07-30T14:29:16Z + Date Added2009-10-03T14:52:33Z + Bit Rate192 + Sample Rate44100 + Normalization918 + Artwork Count1 + Sort ArtistBenedictine Monks Of Santo Domingo De Silos + Persistent ID6A272B5BE967BA69 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Benedictine%20Monks%20Of%20Santo%20Domingo%20De%20Silos/Chant/12%20Anon_%20Jacta%20Cogitatum%20Tuum.m4a + File Folder Count4 + Library Folder Count1 + + 2348 + + Track ID2348 + NameAnon: Verbum Caro Factum Est + ArtistThe Benedictine Monks Of Santo Domingo De Silos + ComposerUnknown + AlbumChant + GenreClassical + KindAAC audio file + Size5956934 + Total Time244736 + Disc Number1 + Disc Count1 + Track Number13 + Track Count19 + Year1994 + Date Modified2006-07-30T14:29:16Z + Date Added2009-10-03T14:52:33Z + Bit Rate192 + Sample Rate44100 + Normalization769 + Artwork Count1 + Sort ArtistBenedictine Monks Of Santo Domingo De Silos + Persistent IDBDA9F8D6C458E92D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Benedictine%20Monks%20Of%20Santo%20Domingo%20De%20Silos/Chant/13%20Anon_%20Verbum%20Caro%20Factum%20Est.m4a + File Folder Count4 + Library Folder Count1 + + 2350 + + Track ID2350 + NameAnon: Genuit Puerpera Regem + ArtistThe Benedictine Monks Of Santo Domingo De Silos + ComposerUnknown + AlbumChant + GenreClassical + KindAAC audio file + Size4326176 + Total Time176841 + Disc Number1 + Disc Count1 + Track Number14 + Track Count19 + Year1994 + Date Modified2006-07-30T14:29:16Z + Date Added2009-10-03T14:52:33Z + Bit Rate192 + Sample Rate44100 + Normalization966 + Artwork Count1 + Sort ArtistBenedictine Monks Of Santo Domingo De Silos + Persistent IDEDD075EA767D8462 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Benedictine%20Monks%20Of%20Santo%20Domingo%20De%20Silos/Chant/14%20Anon_%20Genuit%20Puerpera%20Regem.m4a + File Folder Count4 + Library Folder Count1 + + 2352 + + Track ID2352 + NameAnon: Occuli Omnium + ArtistThe Benedictine Monks Of Santo Domingo De Silos + ComposerUnknown + AlbumChant + GenreClassical + KindAAC audio file + Size4917720 + Total Time201478 + Disc Number1 + Disc Count1 + Track Number15 + Track Count19 + Year1994 + Date Modified2006-07-30T14:29:16Z + Date Added2009-10-03T14:52:33Z + Bit Rate192 + Sample Rate44100 + Normalization980 + Artwork Count1 + Sort ArtistBenedictine Monks Of Santo Domingo De Silos + Persistent IDF1796C896B55F42C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Benedictine%20Monks%20Of%20Santo%20Domingo%20De%20Silos/Chant/15%20Anon_%20Occuli%20Omnium.m4a + File Folder Count4 + Library Folder Count1 + + 2354 + + Track ID2354 + NameAnon: Ave Mundi Spes Maria + ArtistThe Benedictine Monks Of Santo Domingo De Silos + ComposerUnknown + AlbumChant + GenreClassical + KindAAC audio file + Size6290907 + Total Time258645 + Disc Number1 + Disc Count1 + Track Number16 + Track Count19 + Year1994 + Date Modified2006-07-30T14:29:16Z + Date Added2009-10-03T14:52:33Z + Bit Rate192 + Sample Rate44100 + Normalization808 + Artwork Count1 + Sort ArtistBenedictine Monks Of Santo Domingo De Silos + Persistent ID794771CB5C875360 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Benedictine%20Monks%20Of%20Santo%20Domingo%20De%20Silos/Chant/16%20Anon_%20Ave%20Mundi%20Spes%20Maria.m4a + File Folder Count4 + Library Folder Count1 + + 2356 + + Track ID2356 + NameAnon: Kyrie Fons Bonitatis + ArtistThe Benedictine Monks Of Santo Domingo De Silos + ComposerUnknown + AlbumChant + GenreClassical + KindAAC audio file + Size5851463 + Total Time240348 + Disc Number1 + Disc Count1 + Track Number17 + Track Count19 + Year1994 + Date Modified2006-07-30T14:29:16Z + Date Added2009-10-03T14:52:33Z + Bit Rate192 + Sample Rate44100 + Normalization1255 + Artwork Count1 + Sort ArtistBenedictine Monks Of Santo Domingo De Silos + Persistent IDF7BD1493C8C4CCC0 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Benedictine%20Monks%20Of%20Santo%20Domingo%20De%20Silos/Chant/17%20Anon_%20Kyrie%20Fons%20Bonitatis.m4a + File Folder Count4 + Library Folder Count1 + + 2358 + + Track ID2358 + NameAnon: Veni Sancte Spiritus + ArtistThe Benedictine Monks Of Santo Domingo De Silos + ComposerUnknown + AlbumChant + GenreClassical + KindAAC audio file + Size3971387 + Total Time162073 + Disc Number1 + Disc Count1 + Track Number18 + Track Count19 + Year1994 + Date Modified2006-07-30T14:29:16Z + Date Added2009-10-03T14:52:33Z + Bit Rate192 + Sample Rate44100 + Normalization1005 + Artwork Count1 + Sort ArtistBenedictine Monks Of Santo Domingo De Silos + Persistent ID6E1A87BF188D64A1 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Benedictine%20Monks%20Of%20Santo%20Domingo%20De%20Silos/Chant/18%20Anon_%20Veni%20Sancte%20Spiritus.m4a + File Folder Count4 + Library Folder Count1 + + 2360 + + Track ID2360 + NameAnon: Hosanna Filio David + ArtistThe Benedictine Monks Of Santo Domingo De Silos + ComposerUnknown + AlbumChant + GenreClassical + KindAAC audio file + Size1070820 + Total Time42421 + Disc Number1 + Disc Count1 + Track Number19 + Track Count19 + Year1994 + Date Modified2006-07-30T14:29:18Z + Date Added2009-10-03T14:52:33Z + Bit Rate192 + Sample Rate44100 + Normalization433 + Artwork Count1 + Sort ArtistBenedictine Monks Of Santo Domingo De Silos + Persistent ID6E3E54EC87C48689 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Benedictine%20Monks%20Of%20Santo%20Domingo%20De%20Silos/Chant/19%20Anon_%20Hosanna%20Filio%20David.m4a + File Folder Count4 + Library Folder Count1 + + 2362 + + Track ID2362 + NameTaxman + ArtistThe Beatles + ComposerHarrison + AlbumRevolver + GenrePop + KindAAC audio file + Size3842901 + Total Time159032 + Disc Number1 + Disc Count1 + Track Number1 + Track Count14 + Year1966 + Date Modified2006-07-30T09:12:38Z + Date Added2009-10-03T14:52:35Z + Bit Rate192 + Sample Rate44100 + Normalization2747 + Artwork Count1 + Sort ArtistBeatles + Persistent IDCB162A123CAFB699 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Revolver/01%20Taxman.m4a + File Folder Count4 + Library Folder Count1 + + 2364 + + Track ID2364 + NameEleanor Rigby + ArtistThe Beatles + ComposerLennon/McCartney + AlbumRevolver + GenrePop + KindAAC audio file + Size3078230 + Total Time127708 + Disc Number1 + Disc Count1 + Track Number2 + Track Count14 + Year1966 + Date Modified2006-07-30T09:12:38Z + Date Added2009-10-03T14:52:36Z + Bit Rate192 + Sample Rate44100 + Play Count2 + Play Date3441651562 + Play Date UTC2013-01-21T16:49:22Z + Normalization1685 + Artwork Count1 + Sort ArtistBeatles + Persistent ID4E35064C72B2537E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Revolver/02%20Eleanor%20Rigby.m4a + File Folder Count4 + Library Folder Count1 + + 2366 + + Track ID2366 + NameI'm Only Sleeping + ArtistThe Beatles + ComposerLennon/McCartney + AlbumRevolver + GenrePop + KindAAC audio file + Size4361314 + Total Time181694 + Disc Number1 + Disc Count1 + Track Number3 + Track Count14 + Year1966 + Date Modified2006-07-30T09:12:38Z + Date Added2009-10-03T14:52:36Z + Bit Rate192 + Sample Rate44100 + Normalization2169 + Artwork Count1 + Sort ArtistBeatles + Persistent IDAD84D9FBCB825D22 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Revolver/03%20I'm%20Only%20Sleeping.m4a + File Folder Count4 + Library Folder Count1 + + 2368 + + Track ID2368 + NameLove You To + ArtistThe Beatles + ComposerHarrison + AlbumRevolver + GenrePop + KindAAC audio file + Size4355481 + Total Time181230 + Disc Number1 + Disc Count1 + Track Number4 + Track Count14 + Year1966 + Date Modified2006-07-30T09:12:38Z + Date Added2009-10-03T14:52:36Z + Bit Rate192 + Sample Rate44100 + Normalization2311 + Artwork Count1 + Sort ArtistBeatles + Persistent IDA2CD2F085ACBD722 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Revolver/04%20Love%20You%20To.m4a + File Folder Count4 + Library Folder Count1 + + 2370 + + Track ID2370 + NameHere, There And Everywhere + ArtistThe Beatles + ComposerLennon/McCartney + AlbumRevolver + GenrePop + KindAAC audio file + Size3514696 + Total Time145912 + Disc Number1 + Disc Count1 + Track Number5 + Track Count14 + Year1966 + Date Modified2006-07-30T09:12:38Z + Date Added2009-10-03T14:52:36Z + Bit Rate192 + Sample Rate44100 + Normalization566 + Artwork Count1 + Sort ArtistBeatles + Persistent ID795E8614D7BDC5ED + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Revolver/05%20Here,%20There%20And%20Everywhere.m4a + File Folder Count4 + Library Folder Count1 + + 2372 + + Track ID2372 + NameYellow Submarine + ArtistThe Beatles + ComposerLennon/McCartney + AlbumRevolver + GenrePop + KindAAC audio file + Size3857285 + Total Time160448 + Disc Number1 + Disc Count1 + Track Number6 + Track Count14 + Year1966 + Date Modified2006-07-30T09:12:40Z + Date Added2009-10-03T14:52:36Z + Bit Rate192 + Sample Rate44100 + Normalization1945 + Artwork Count1 + Sort ArtistBeatles + Persistent IDF7BF39DE4F8E1E97 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Revolver/06%20Yellow%20Submarine.m4a + File Folder Count4 + Library Folder Count1 + + 2374 + + Track ID2374 + NameShe Said She Said + ArtistThe Beatles + ComposerLennon/McCartney + AlbumRevolver + GenrePop + KindAAC audio file + Size3797655 + Total Time157174 + Disc Number1 + Disc Count1 + Track Number7 + Track Count14 + Year1966 + Date Modified2006-07-30T09:12:40Z + Date Added2009-10-03T14:52:36Z + Bit Rate192 + Sample Rate44100 + Normalization3571 + Artwork Count1 + Sort ArtistBeatles + Persistent IDB7475D9842A1615A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Revolver/07%20She%20Said%20She%20Said.m4a + File Folder Count4 + Library Folder Count1 + + 2376 + + Track ID2376 + NameGood Day Sunshine + ArtistThe Beatles + ComposerLennon/McCartney + AlbumRevolver + GenrePop + KindAAC audio file + Size3155070 + Total Time129798 + Disc Number1 + Disc Count1 + Track Number8 + Track Count14 + Year1966 + Date Modified2006-07-30T09:12:40Z + Date Added2009-10-03T14:52:36Z + Bit Rate192 + Sample Rate44100 + Normalization1977 + Artwork Count1 + Sort ArtistBeatles + Persistent ID66EE009B51689129 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Revolver/08%20Good%20Day%20Sunshine.m4a + File Folder Count4 + Library Folder Count1 + + 2378 + + Track ID2378 + NameAnd Your Bird Can Sing + ArtistThe Beatles + ComposerLennon/McCartney + AlbumRevolver + GenrePop + KindAAC audio file + Size2941095 + Total Time121763 + Disc Number1 + Disc Count1 + Track Number9 + Track Count14 + Year1966 + Date Modified2006-07-30T09:12:40Z + Date Added2009-10-03T14:52:37Z + Bit Rate192 + Sample Rate44100 + Normalization5540 + Artwork Count1 + Sort ArtistBeatles + Persistent ID4F0EC3272E0C0BBD + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Revolver/09%20And%20Your%20Bird%20Can%20Sing.m4a + File Folder Count4 + Library Folder Count1 + + 2380 + + Track ID2380 + NameFor No One + ArtistThe Beatles + ComposerLennon/McCartney + AlbumRevolver + GenrePop + KindAAC audio file + Size2922423 + Total Time121740 + Disc Number1 + Disc Count1 + Track Number10 + Track Count14 + Year1966 + Date Modified2006-07-30T09:12:40Z + Date Added2009-10-03T14:52:37Z + Bit Rate192 + Sample Rate44100 + Normalization1269 + Artwork Count1 + Sort ArtistBeatles + Persistent ID5A980CC8F8151A30 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Revolver/10%20For%20No%20One.m4a + File Folder Count4 + Library Folder Count1 + + 2382 + + Track ID2382 + NameDoctor Robert + ArtistThe Beatles + ComposerLennon/McCartney + AlbumRevolver + GenrePop + KindAAC audio file + Size3277586 + Total Time135231 + Disc Number1 + Disc Count1 + Track Number11 + Track Count14 + Year1966 + Date Modified2006-07-30T09:12:40Z + Date Added2009-10-03T14:52:37Z + Bit Rate192 + Sample Rate44100 + Normalization2573 + Artwork Count1 + Sort ArtistBeatles + Persistent ID4548F2C5CF80F018 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Revolver/11%20Doctor%20Robert.m4a + File Folder Count4 + Library Folder Count1 + + 2384 + + Track ID2384 + NameI Want To Tell You + ArtistThe Beatles + ComposerHarrison + AlbumRevolver + GenrePop + KindAAC audio file + Size3607483 + Total Time149906 + Disc Number1 + Disc Count1 + Track Number12 + Track Count14 + Year1966 + Date Modified2006-07-30T09:12:40Z + Date Added2009-10-03T14:52:37Z + Bit Rate192 + Sample Rate44100 + Normalization1768 + Artwork Count1 + Sort ArtistBeatles + Persistent IDD7A982C145946905 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Revolver/12%20I%20Want%20To%20Tell%20You.m4a + File Folder Count4 + Library Folder Count1 + + 2386 + + Track ID2386 + NameGot To Get You Into My Life + ArtistThe Beatles + ComposerLennon/McCartney + AlbumRevolver + GenrePop + KindAAC audio file + Size3634678 + Total Time150672 + Disc Number1 + Disc Count1 + Track Number13 + Track Count14 + Year1966 + Date Modified2006-07-30T09:12:40Z + Date Added2009-10-03T14:52:37Z + Bit Rate192 + Sample Rate44100 + Normalization3287 + Artwork Count1 + Sort ArtistBeatles + Persistent ID2DF57447BDAB8357 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Revolver/13%20Got%20To%20Get%20You%20Into%20My%20Life.m4a + File Folder Count4 + Library Folder Count1 + + 2388 + + Track ID2388 + NameTomorrow Never Knows + ArtistThe Beatles + ComposerLennon/McCartney + AlbumRevolver + GenrePop + KindAAC audio file + Size4339690 + Total Time177445 + Disc Number1 + Disc Count1 + Track Number14 + Track Count14 + Year1966 + Date Modified2006-07-30T09:12:40Z + Date Added2009-10-03T14:52:37Z + Bit Rate192 + Sample Rate44100 + Normalization3579 + Artwork Count1 + Sort ArtistBeatles + Persistent ID81464802BF92DB94 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Revolver/14%20Tomorrow%20Never%20Knows.m4a + File Folder Count4 + Library Folder Count1 + + 2390 + + Track ID2390 + NameTwo Of Us + ArtistThe Beatles + ComposerLennon/McCartney + AlbumLet It Be + GenreRock + KindAAC audio file + Size5214307 + Total Time216710 + Disc Number1 + Disc Count1 + Track Number1 + Track Count12 + Year1970 + Date Modified2006-08-03T12:51:36Z + Date Added2009-10-03T14:52:37Z + Bit Rate192 + Sample Rate44100 + Normalization839 + Artwork Count1 + Sort ArtistBeatles + Persistent IDA631012A52C08804 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Let%20It%20Be/01%20Two%20Of%20Us.m4a + File Folder Count4 + Library Folder Count1 + + 2392 + + Track ID2392 + NameDig A Pony + ArtistThe Beatles + ComposerLennon/McCartney + AlbumLet It Be + GenreRock + KindAAC audio file + Size5666966 + Total Time234845 + Disc Number1 + Disc Count1 + Track Number2 + Track Count12 + Year1970 + Date Modified2006-08-03T12:51:36Z + Date Added2009-10-03T14:52:38Z + Bit Rate192 + Sample Rate44100 + Normalization2155 + Artwork Count1 + Sort ArtistBeatles + Persistent ID82B2A868944870A7 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Let%20It%20Be/02%20Dig%20A%20Pony.m4a + File Folder Count4 + Library Folder Count1 + + 2394 + + Track ID2394 + NameAcross The Universe + ArtistThe Beatles + ComposerLennon/McCartney + AlbumLet It Be + GenreRock + KindAAC audio file + Size5506944 + Total Time228599 + Disc Number1 + Disc Count1 + Track Number3 + Track Count12 + Year1970 + Date Modified2006-08-03T12:51:36Z + Date Added2009-10-03T14:52:38Z + Bit Rate192 + Sample Rate44100 + Play Count2 + Play Date3484294373 + Play Date UTC2014-05-30T06:02:53Z + Normalization1280 + Artwork Count1 + Sort ArtistBeatles + Persistent ID1809E6802F485B44 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Let%20It%20Be/03%20Across%20The%20Universe.m4a + File Folder Count4 + Library Folder Count1 + + 2396 + + Track ID2396 + NameI Me Mine + ArtistThe Beatles + ComposerHarrison + AlbumLet It Be + GenreRock + KindAAC audio file + Size3528674 + Total Time145773 + Disc Number1 + Disc Count1 + Track Number4 + Track Count12 + Year1970 + Date Modified2006-08-03T12:51:36Z + Date Added2009-10-03T14:52:38Z + Bit Rate192 + Sample Rate44100 + Normalization2784 + Artwork Count1 + Sort ArtistBeatles + Persistent IDB84845BE057C0C0B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Let%20It%20Be/04%20I%20Me%20Mine.m4a + File Folder Count4 + Library Folder Count1 + + 2398 + + Track ID2398 + NameDig It + ArtistThe Beatles + ComposerHarrison/Lennon/McCartney/Starkey + AlbumLet It Be + GenreRock + KindAAC audio file + Size1205498 + Total Time50037 + Disc Number1 + Disc Count1 + Track Number5 + Track Count12 + Year1970 + Date Modified2006-08-03T12:51:38Z + Date Added2009-10-03T14:52:38Z + Bit Rate192 + Sample Rate44100 + Normalization1557 + Artwork Count1 + Sort ArtistBeatles + Persistent ID53D7427F39F30826 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Let%20It%20Be/05%20Dig%20It.m4a + File Folder Count4 + Library Folder Count1 + + 2400 + + Track ID2400 + NameLet It Be + ArtistThe Beatles + ComposerLennon/McCartney + AlbumLet It Be + GenreRock + KindAAC audio file + Size5872750 + Total Time243343 + Disc Number1 + Disc Count1 + Track Number6 + Track Count12 + Year1970 + Date Modified2006-08-03T12:51:38Z + Date Added2009-10-03T14:52:38Z + Bit Rate192 + Sample Rate44100 + Normalization1493 + Artwork Count1 + Sort ArtistBeatles + Persistent ID6E18E6A45C7DE944 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Let%20It%20Be/06%20Let%20It%20Be.m4a + File Folder Count4 + Library Folder Count1 + + 2402 + + Track ID2402 + NameMaggie Mae + ArtistThe Beatles + ComposerHarrison/McCartney/Starkey/Trad arr. Lennon + AlbumLet It Be + GenreRock + KindAAC audio file + Size968456 + Total Time40633 + Disc Number1 + Disc Count1 + Track Number7 + Track Count12 + Year1970 + Date Modified2006-08-03T12:51:38Z + Date Added2009-10-03T14:52:38Z + Bit Rate192 + Sample Rate44100 + Normalization2115 + Artwork Count1 + Sort ArtistBeatles + Persistent ID7C5BFE0B97FA93C6 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Let%20It%20Be/07%20Maggie%20Mae.m4a + File Folder Count4 + Library Folder Count1 + + 2404 + + Track ID2404 + NameI've Got A Feeling + ArtistThe Beatles + ComposerLennon/McCartney + AlbumLet It Be + GenreRock + KindAAC audio file + Size5260078 + Total Time217987 + Disc Number1 + Disc Count1 + Track Number8 + Track Count12 + Year1970 + Date Modified2006-08-03T12:51:38Z + Date Added2009-10-03T14:52:38Z + Bit Rate192 + Sample Rate44100 + Normalization1536 + Artwork Count1 + Sort ArtistBeatles + Persistent IDF1204ED34404DBE3 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Let%20It%20Be/08%20I've%20Got%20A%20Feeling.m4a + File Folder Count4 + Library Folder Count1 + + 2406 + + Track ID2406 + NameOne After 909 + ArtistThe Beatles + ComposerLennon/McCartney + AlbumLet It Be + GenreRock + KindAAC audio file + Size4199485 + Total Time175541 + Disc Number1 + Disc Count1 + Track Number9 + Track Count12 + Year1970 + Date Modified2006-08-03T12:51:38Z + Date Added2009-10-03T14:52:38Z + Bit Rate192 + Sample Rate44100 + Normalization2243 + Artwork Count1 + Sort ArtistBeatles + Persistent IDD6F80D6714245431 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Let%20It%20Be/09%20One%20After%20909.m4a + File Folder Count4 + Library Folder Count1 + + 2408 + + Track ID2408 + NameThe Long And Winding Road + ArtistThe Beatles + ComposerLennon/McCartney + AlbumLet It Be + GenreRock + KindAAC audio file + Size5261366 + Total Time217894 + Disc Number1 + Disc Count1 + Track Number10 + Track Count12 + Year1970 + Date Modified2006-08-03T12:51:38Z + Date Added2009-10-03T14:52:38Z + Bit Rate192 + Sample Rate44100 + Normalization1727 + Artwork Count1 + Sort ArtistBeatles + Sort NameLong And Winding Road + Persistent IDF730382ACC72AB67 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Let%20It%20Be/10%20The%20Long%20And%20Winding%20Road.m4a + File Folder Count4 + Library Folder Count1 + + 2410 + + Track ID2410 + NameFor You Blue + ArtistThe Beatles + ComposerHarrison + AlbumLet It Be + GenreRock + KindAAC audio file + Size3688486 + Total Time152762 + Disc Number1 + Disc Count1 + Track Number11 + Track Count12 + Year1970 + Date Modified2006-08-03T12:51:38Z + Date Added2009-10-03T14:52:39Z + Bit Rate192 + Sample Rate44100 + Normalization933 + Artwork Count1 + Sort ArtistBeatles + Persistent IDCCDD31A498AF98C8 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Let%20It%20Be/11%20For%20You%20Blue.m4a + File Folder Count4 + Library Folder Count1 + + 2412 + + Track ID2412 + NameGet Back + ArtistThe Beatles + ComposerLennon/McCartney + AlbumLet It Be + GenreRock + KindAAC audio file + Size4560642 + Total Time187128 + Disc Number1 + Disc Count1 + Track Number12 + Track Count12 + Year1970 + Date Modified2006-08-03T12:51:38Z + Date Added2009-10-03T14:52:39Z + Bit Rate192 + Sample Rate44100 + Normalization1280 + Artwork Count1 + Sort ArtistBeatles + Persistent ID04A6D6BC5937FB56 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Let%20It%20Be/12%20Get%20Back.m4a + File Folder Count4 + Library Folder Count1 + + 2414 + + Track ID2414 + NameHelp! + ArtistThe Beatles + ComposerLennon [John], McCartney [Paul] + AlbumHelp! + GenreRock + KindAAC audio file + Size3354146 + Total Time141082 + Disc Number1 + Disc Count1 + Track Number1 + Track Count14 + Year1965 + Date Modified2006-08-08T12:00:20Z + Date Added2009-10-03T14:52:39Z + Bit Rate192 + Sample Rate44100 + Normalization1078 + Artwork Count1 + Sort ArtistBeatles + Persistent ID449F3CB64EEF19F8 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Help!/01%20Help!.m4a + File Folder Count4 + Library Folder Count1 + + 2416 + + Track ID2416 + NameThe Night Before + ArtistThe Beatles + ComposerLennon [John], McCartney [Paul] + AlbumHelp! + GenreRock + KindAAC audio file + Size3771206 + Total Time156710 + Disc Number1 + Disc Count1 + Track Number2 + Track Count14 + Year1965 + Date Modified2006-08-08T12:00:20Z + Date Added2009-10-03T14:52:39Z + Bit Rate192 + Sample Rate44100 + Normalization2064 + Artwork Count1 + Sort ArtistBeatles + Sort NameNight Before + Persistent ID3BFB8218E2CB84D4 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Help!/02%20The%20Night%20Before.m4a + File Folder Count4 + Library Folder Count1 + + 2418 + + Track ID2418 + NameYou've Got To Hide Your Love Away + ArtistThe Beatles + ComposerLennon [John], McCartney [Paul] + AlbumHelp! + GenreRock + KindAAC audio file + Size3132633 + Total Time131446 + Disc Number1 + Disc Count1 + Track Number3 + Track Count14 + Year1965 + Date Modified2006-08-08T12:00:20Z + Date Added2009-10-03T14:52:39Z + Bit Rate192 + Sample Rate44100 + Normalization1188 + Artwork Count1 + Sort ArtistBeatles + Persistent IDDDBAEB74806BFD19 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Help!/03%20You've%20Got%20To%20Hide%20Your%20Love%20Away.m4a + File Folder Count4 + Library Folder Count1 + + 2420 + + Track ID2420 + NameI Need You + ArtistThe Beatles + ComposerHarrison [George] + AlbumHelp! + GenreRock + KindAAC audio file + Size3612744 + Total Time151508 + Disc Number1 + Disc Count1 + Track Number4 + Track Count14 + Year1965 + Date Modified2006-08-08T12:00:20Z + Date Added2009-10-03T14:52:39Z + Bit Rate192 + Sample Rate44100 + Normalization1671 + Artwork Count1 + Sort ArtistBeatles + Persistent ID4A0E34F6A30C0268 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Help!/04%20I%20Need%20You.m4a + File Folder Count4 + Library Folder Count1 + + 2422 + + Track ID2422 + NameAnother Girl + ArtistThe Beatles + ComposerLennon [John], McCartney [Paul] + AlbumHelp! + GenreRock + KindAAC audio file + Size3046841 + Total Time128010 + Disc Number1 + Disc Count1 + Track Number5 + Track Count14 + Year1965 + Date Modified2006-08-08T12:00:20Z + Date Added2009-10-03T14:52:39Z + Bit Rate192 + Sample Rate44100 + Normalization2131 + Artwork Count1 + Sort ArtistBeatles + Persistent ID276350D310891260 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Help!/05%20Another%20Girl.m4a + File Folder Count4 + Library Folder Count1 + + 2424 + + Track ID2424 + NameYou're Gonna Lose That Girl + ArtistThe Beatles + ComposerLennon [John], McCartney [Paul] + AlbumHelp! + GenreRock + KindAAC audio file + Size3359097 + Total Time140432 + Disc Number1 + Disc Count1 + Track Number6 + Track Count14 + Year1965 + Date Modified2006-08-08T12:00:20Z + Date Added2009-10-03T14:52:39Z + Bit Rate192 + Sample Rate44100 + Normalization2604 + Artwork Count1 + Sort ArtistBeatles + Persistent ID2162C11CF9FA81B0 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Help!/06%20You're%20Gonna%20Lose%20That%20Girl.m4a + File Folder Count4 + Library Folder Count1 + + 2426 + + Track ID2426 + NameTicket to Ride + ArtistThe Beatles + ComposerLennon [John], McCartney [Paul] + AlbumHelp! + GenreRock + KindAAC audio file + Size4620473 + Total Time192515 + Disc Number1 + Disc Count1 + Track Number7 + Track Count14 + Year1965 + Date Modified2006-08-08T12:00:20Z + Date Added2009-10-03T14:52:40Z + Bit Rate192 + Sample Rate44100 + Normalization2507 + Artwork Count1 + Sort ArtistBeatles + Persistent ID1CE85F6BBA4DB28B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Help!/07%20Ticket%20to%20Ride.m4a + File Folder Count4 + Library Folder Count1 + + 2428 + + Track ID2428 + NameAct Naturally + ArtistThe Beatles + ComposerMorrison [Vonnie], Russell [Johnnie] + AlbumHelp! + GenreRock + KindAAC audio file + Size3646133 + Total Time153180 + Disc Number1 + Disc Count1 + Track Number8 + Track Count14 + Year1965 + Date Modified2006-08-08T12:00:20Z + Date Added2009-10-03T14:52:40Z + Bit Rate192 + Sample Rate44100 + Normalization1489 + Artwork Count1 + Sort ArtistBeatles + Persistent ID0C5C2A1A090DDC96 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Help!/08%20Act%20Naturally.m4a + File Folder Count4 + Library Folder Count1 + + 2430 + + Track ID2430 + NameIt`s Only Love + ArtistThe Beatles + ComposerLennon [John], McCartney [Paul] + AlbumHelp! + GenreRock + KindAAC audio file + Size2833648 + Total Time118815 + Disc Number1 + Disc Count1 + Track Number9 + Track Count14 + Year1965 + Date Modified2006-08-08T12:00:20Z + Date Added2009-10-03T14:52:40Z + Bit Rate192 + Sample Rate44100 + Normalization1163 + Artwork Count1 + Sort ArtistBeatles + Persistent ID5DD8BEEFA381E309 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Help!/09%20It%60s%20Only%20Love.m4a + File Folder Count4 + Library Folder Count1 + + 2432 + + Track ID2432 + NameYou Like Me Too Much + ArtistThe Beatles + ComposerHarrison [George] + AlbumHelp! + GenreRock + KindAAC audio file + Size3809936 + Total Time158823 + Disc Number1 + Disc Count1 + Track Number10 + Track Count14 + Year1965 + Date Modified2006-08-08T12:00:20Z + Date Added2009-10-03T14:52:40Z + Bit Rate192 + Sample Rate44100 + Normalization1736 + Artwork Count1 + Sort ArtistBeatles + Persistent IDBA28B68B7D531474 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Help!/10%20You%20Like%20Me%20Too%20Much.m4a + File Folder Count4 + Library Folder Count1 + + 2434 + + Track ID2434 + NameTell Me What You See + ArtistThe Beatles + ComposerLennon [John], McCartney [Paul] + AlbumHelp! + GenreRock + KindAAC audio file + Size3828681 + Total Time159728 + Disc Number1 + Disc Count1 + Track Number11 + Track Count14 + Year1965 + Date Modified2006-08-08T12:00:20Z + Date Added2009-10-03T14:52:40Z + Bit Rate192 + Sample Rate44100 + Normalization2095 + Artwork Count1 + Sort ArtistBeatles + Persistent IDDBF431D294FE2226 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Help!/11%20Tell%20Me%20What%20You%20See.m4a + File Folder Count4 + Library Folder Count1 + + 2436 + + Track ID2436 + NameI`ve Just Seen a Face + ArtistThe Beatles + ComposerLennon [John], McCartney [Paul] + AlbumHelp! + GenreRock + KindAAC audio file + Size3033676 + Total Time127174 + Disc Number1 + Disc Count1 + Track Number12 + Track Count14 + Year1965 + Date Modified2006-08-08T12:00:20Z + Date Added2009-10-03T14:52:40Z + Bit Rate192 + Sample Rate44100 + Normalization1278 + Artwork Count1 + Sort ArtistBeatles + Persistent ID7DC5157832E4A871 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Help!/12%20I%60ve%20Just%20Seen%20a%20Face.m4a + File Folder Count4 + Library Folder Count1 + + 2438 + + Track ID2438 + NameYesterday + ArtistThe Beatles + ComposerLennon [John], McCartney [Paul] + AlbumHelp! + GenreRock + KindAAC audio file + Size3030386 + Total Time127452 + Disc Number1 + Disc Count1 + Track Number13 + Track Count14 + Year1965 + Date Modified2006-08-08T12:00:20Z + Date Added2009-10-03T14:52:40Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3484587308 + Play Date UTC2014-06-02T15:25:08Z + Normalization898 + Artwork Count1 + Sort ArtistBeatles + Persistent ID65E6602BDDA0F1C9 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Help!/13%20Yesterday.m4a + File Folder Count4 + Library Folder Count1 + + 2440 + + Track ID2440 + NameDizzy Miss Lizzy + ArtistThe Beatles + ComposerWilliams [Larry] + AlbumHelp! + GenreRock + KindAAC audio file + Size4249063 + Total Time174264 + Disc Number1 + Disc Count1 + Track Number14 + Track Count14 + Year1965 + Date Modified2006-08-08T12:00:20Z + Date Added2009-10-03T14:52:41Z + Bit Rate192 + Sample Rate44100 + Normalization4075 + Artwork Count1 + Sort ArtistBeatles + Persistent ID7D2DADD4C60D121F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Help!/14%20Dizzy%20Miss%20Lizzy.m4a + File Folder Count4 + Library Folder Count1 + + 2442 + + Track ID2442 + NameCome Together + ArtistThe Beatles + ComposerLennon/McCartney + AlbumAbbey Road + GenrePop + KindAAC audio file + Size6248082 + Total Time260642 + Disc Number1 + Disc Count1 + Track Number1 + Track Count17 + Year1969 + Date Modified2006-08-08T12:04:10Z + Date Added2009-10-03T14:52:41Z + Bit Rate192 + Sample Rate44100 + Normalization589 + Artwork Count1 + Sort ArtistBeatles + Persistent ID79EE9CEAB518CB75 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Abbey%20Road/01%20Come%20Together.m4a + File Folder Count4 + Library Folder Count1 + + 2444 + + Track ID2444 + NameSomething + ArtistThe Beatles + ComposerHarrison + AlbumAbbey Road + GenrePop + KindAAC audio file + Size4406777 + Total Time183018 + Disc Number1 + Disc Count1 + Track Number2 + Track Count17 + Year1969 + Date Modified2006-08-08T12:04:10Z + Date Added2009-10-03T14:52:41Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3343639907 + Play Date UTC2009-12-14T07:21:47Z + Normalization832 + Artwork Count1 + Sort ArtistBeatles + Persistent IDF37D88B1D4E6D40C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Abbey%20Road/02%20Something.m4a + File Folder Count4 + Library Folder Count1 + + 2446 + + Track ID2446 + NameMaxwell's Silver Hammer + ArtistThe Beatles + ComposerLennon/McCartney + AlbumAbbey Road + GenrePop + KindAAC audio file + Size5023862 + Total Time207283 + Disc Number1 + Disc Count1 + Track Number3 + Track Count17 + Year1969 + Date Modified2006-08-08T12:04:08Z + Date Added2009-10-03T14:52:41Z + Bit Rate192 + Sample Rate44100 + Normalization841 + Artwork Count1 + Sort ArtistBeatles + Persistent ID575626F8AC94B860 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Abbey%20Road/03%20Maxwell's%20Silver%20Hammer.m4a + File Folder Count4 + Library Folder Count1 + + 2448 + + Track ID2448 + NameOh! Darling + ArtistThe Beatles + ComposerLennon/McCartney + AlbumAbbey Road + GenrePop + KindAAC audio file + Size5010554 + Total Time206725 + Disc Number1 + Disc Count1 + Track Number4 + Track Count17 + Year1969 + Date Modified2006-08-08T12:04:08Z + Date Added2009-10-03T14:52:41Z + Bit Rate192 + Sample Rate44100 + Normalization1435 + Artwork Count1 + Sort ArtistBeatles + Persistent ID845F5A6AC57797CC + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Abbey%20Road/04%20Oh!%20Darling.m4a + File Folder Count4 + Library Folder Count1 + + 2450 + + Track ID2450 + NameOctopus's Garden + ArtistThe Beatles + ComposerStarkey + AlbumAbbey Road + GenrePop + KindAAC audio file + Size4145452 + Total Time171176 + Disc Number1 + Disc Count1 + Track Number5 + Track Count17 + Year1969 + Date Modified2006-08-08T12:04:08Z + Date Added2009-10-03T14:52:41Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3343996448 + Play Date UTC2009-12-18T10:24:08Z + Normalization1118 + Artwork Count1 + Sort ArtistBeatles + Persistent ID294A7F6AC877EC87 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Abbey%20Road/05%20Octopus's%20Garden.m4a + File Folder Count4 + Library Folder Count1 + + 2452 + + Track ID2452 + NameI Want You (She's So Heavy) + ArtistThe Beatles + ComposerLennon/McCartney + AlbumAbbey Road + GenrePop + KindAAC audio file + Size11277961 + Total Time467184 + Disc Number1 + Disc Count1 + Track Number6 + Track Count17 + Year1969 + Date Modified2006-08-08T12:04:08Z + Date Added2009-10-03T14:52:41Z + Bit Rate192 + Sample Rate44100 + Normalization1365 + Artwork Count1 + Sort ArtistBeatles + Persistent IDCE2467175CA968BA + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Abbey%20Road/06%20I%20Want%20You%20(She's%20So%20Heavy).m4a + File Folder Count4 + Library Folder Count1 + + 2454 + + Track ID2454 + NameHere Comes The Sun + ArtistThe Beatles + ComposerHarrison + AlbumAbbey Road + GenrePop + KindAAC audio file + Size4502597 + Total Time185572 + Disc Number1 + Disc Count1 + Track Number7 + Track Count17 + Year1969 + Date Modified2006-08-08T12:04:08Z + Date Added2009-10-03T14:52:42Z + Bit Rate192 + Sample Rate44100 + Play Count2 + Play Date3343996695 + Play Date UTC2009-12-18T10:28:15Z + Normalization696 + Artwork Count1 + Sort ArtistBeatles + Persistent ID6AD1A40DC419AF0B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Abbey%20Road/07%20Here%20Comes%20The%20Sun.m4a + File Folder Count4 + Library Folder Count1 + + 2456 + + Track ID2456 + NameBecause + ArtistThe Beatles + ComposerLennon/McCartney + AlbumAbbey Road + GenrePop + KindAAC audio file + Size4021041 + Total Time165533 + Disc Number1 + Disc Count1 + Track Number8 + Track Count17 + Year1969 + Date Modified2006-08-08T12:04:08Z + Date Added2009-10-03T14:52:42Z + Bit Rate192 + Sample Rate44100 + Normalization1267 + Artwork Count1 + Sort ArtistBeatles + Persistent ID837F440971710C12 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Abbey%20Road/08%20Because.m4a + File Folder Count4 + Library Folder Count1 + + 2458 + + Track ID2458 + NameYou Never Give Me Your Money + ArtistThe Beatles + ComposerLennon/McCartney + AlbumAbbey Road + GenrePop + KindAAC audio file + Size5867781 + Total Time242414 + Disc Number1 + Disc Count1 + Track Number9 + Track Count17 + Year1969 + Date Modified2006-08-08T12:04:08Z + Date Added2009-10-03T14:52:42Z + Bit Rate192 + Sample Rate44100 + Normalization1662 + Artwork Count1 + Sort ArtistBeatles + Persistent IDCE39A97B12B60437 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Abbey%20Road/09%20You%20Never%20Give%20Me%20Your%20Money.m4a + File Folder Count4 + Library Folder Count1 + + 2460 + + Track ID2460 + NameSun King + ArtistThe Beatles + ComposerLennon/McCartney + AlbumAbbey Road + GenrePop + KindAAC audio file + Size3559433 + Total Time146307 + Disc Number1 + Disc Count1 + Track Number10 + Track Count17 + Year1969 + Date Modified2006-08-08T12:04:08Z + Date Added2009-10-03T14:52:42Z + Bit Rate192 + Sample Rate44100 + Normalization470 + Artwork Count1 + Sort ArtistBeatles + Persistent IDEED522F31509BAC2 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Abbey%20Road/10%20Sun%20King.m4a + File Folder Count4 + Library Folder Count1 + + 2462 + + Track ID2462 + NameMean Mr. Mustard + ArtistThe Beatles + ComposerLennon/McCartney + AlbumAbbey Road + GenrePop + KindAAC audio file + Size1638048 + Total Time66314 + Disc Number1 + Disc Count1 + Track Number11 + Track Count17 + Year1969 + Date Modified2006-08-08T12:04:08Z + Date Added2009-10-03T14:52:42Z + Bit Rate192 + Sample Rate44100 + Normalization2721 + Artwork Count1 + Sort ArtistBeatles + Persistent ID702F8DDD8111E491 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Abbey%20Road/11%20Mean%20Mr.%20Mustard.m4a + File Folder Count4 + Library Folder Count1 + + 2464 + + Track ID2464 + NamePolythene Pam + ArtistThe Beatles + ComposerLennon/McCartney + AlbumAbbey Road + GenrePop + KindAAC audio file + Size1792480 + Total Time72746 + Disc Number1 + Disc Count1 + Track Number12 + Track Count17 + Year1969 + Date Modified2006-08-08T12:04:08Z + Date Added2009-10-03T14:52:42Z + Bit Rate192 + Sample Rate44100 + Normalization3174 + Artwork Count1 + Sort ArtistBeatles + Persistent ID764E695B0136287A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Abbey%20Road/12%20Polythene%20Pam.m4a + File Folder Count4 + Library Folder Count1 + + 2466 + + Track ID2466 + NameShe Came In Through The Bathroom Window + ArtistThe Beatles + ComposerLennon/McCartney + AlbumAbbey Road + GenrePop + KindAAC audio file + Size2873071 + Total Time117746 + Disc Number1 + Disc Count1 + Track Number13 + Track Count17 + Year1969 + Date Modified2006-08-08T12:04:08Z + Date Added2009-10-03T14:52:42Z + Bit Rate192 + Sample Rate44100 + Normalization2730 + Artwork Count1 + Sort ArtistBeatles + Persistent ID53AEF69E9088B366 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Abbey%20Road/13%20She%20Came%20In%20Through%20The%20Bathroom%20Window.m4a + File Folder Count4 + Library Folder Count1 + + 2468 + + Track ID2468 + NameGolden Slumbers + ArtistThe Beatles + ComposerLennon/McCartney + AlbumAbbey Road + GenrePop + KindAAC audio file + Size2244820 + Total Time91578 + Disc Number1 + Disc Count1 + Track Number14 + Track Count17 + Year1969 + Date Modified2006-08-08T12:04:08Z + Date Added2009-10-03T14:52:42Z + Bit Rate192 + Sample Rate44100 + Normalization758 + Artwork Count1 + Sort ArtistBeatles + Persistent ID45D7BC0666781800 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Abbey%20Road/14%20Golden%20Slumbers.m4a + File Folder Count4 + Library Folder Count1 + + 2470 + + Track ID2470 + NameCarry That Weight + ArtistThe Beatles + ComposerLennon/McCartney + AlbumAbbey Road + GenrePop + KindAAC audio file + Size2372030 + Total Time96872 + Disc Number1 + Disc Count1 + Track Number15 + Track Count17 + Year1969 + Date Modified2006-08-08T12:04:08Z + Date Added2009-10-03T14:52:42Z + Bit Rate192 + Sample Rate44100 + Skip Count1 + Skip Date2009-12-18T10:41:56Z + Normalization1992 + Artwork Count1 + Sort ArtistBeatles + Persistent ID1AB3D71F2B38D01F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Abbey%20Road/15%20Carry%20That%20Weight.m4a + File Folder Count4 + Library Folder Count1 + + 2472 + + Track ID2472 + NameThe End + ArtistThe Beatles + ComposerLennon/McCartney + AlbumAbbey Road + GenrePop + KindAAC audio file + Size3085147 + Total Time139829 + Disc Number1 + Disc Count1 + Track Number16 + Track Count17 + Year1969 + Date Modified2006-08-08T12:04:06Z + Date Added2009-10-03T14:52:42Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3343997689 + Play Date UTC2009-12-18T10:44:49Z + Skip Count1 + Skip Date2009-12-18T10:42:11Z + Normalization2678 + Artwork Count1 + Sort ArtistBeatles + Sort NameEnd + Persistent ID8FBFED0080AEF75E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Abbey%20Road/16%20The%20End.m4a + File Folder Count4 + Library Folder Count1 + + 2474 + + Track ID2474 + NameHer Majesty + ArtistThe Beatles + ComposerLennon/McCartney + AlbumAbbey Road + GenrePop + KindAAC audio file + Size602010 + Total Time23288 + Disc Number1 + Disc Count1 + Track Number17 + Track Count17 + Year1969 + Date Modified2006-08-08T12:04:06Z + Date Added2009-10-03T14:52:43Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3343997713 + Play Date UTC2009-12-18T10:45:13Z + Normalization370 + Artwork Count1 + Sort ArtistBeatles + Persistent IDDDBF66F97F318D02 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Abbey%20Road/17%20Her%20Majesty.m4a + File Folder Count4 + Library Folder Count1 + + 2476 + + Track ID2476 + NameA Hard Day's Night + ArtistThe Beatles + ComposerJohn Lennon/Paul McCartney + AlbumA Hard Day's Night + GenreRock + KindAAC audio file + Size3657082 + Total Time152553 + Disc Number1 + Disc Count1 + Track Number1 + Track Count13 + Year1964 + Date Modified2006-07-30T08:48:24Z + Date Added2009-10-03T14:52:43Z + Bit Rate192 + Sample Rate44100 + Skip Count1 + Skip Date2009-12-15T03:47:32Z + Normalization6778 + Artwork Count1 + Sort AlbumHard Day's Night + Sort ArtistBeatles + Sort NameHard Day's Night + Persistent ID6031BB030DA975F3 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/A%20Hard%20Day's%20Night/01%20A%20Hard%20Day's%20Night.m4a + File Folder Count4 + Library Folder Count1 + + 2478 + + Track ID2478 + NameI Should Have Known Better + ArtistThe Beatles + ComposerJohn Lennon/Paul McCartney + AlbumA Hard Day's Night + GenreRock + KindAAC audio file + Size3951102 + Total Time164117 + Disc Number1 + Disc Count1 + Track Number2 + Track Count13 + Year1964 + Date Modified2006-07-30T08:48:24Z + Date Added2009-10-03T14:52:43Z + Bit Rate192 + Sample Rate44100 + Skip Count1 + Skip Date2009-12-15T03:47:42Z + Normalization5769 + Artwork Count1 + Sort AlbumHard Day's Night + Sort ArtistBeatles + Persistent IDC15E79781F343171 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/A%20Hard%20Day's%20Night/02%20I%20Should%20Have%20Known%20Better.m4a + File Folder Count4 + Library Folder Count1 + + 2480 + + Track ID2480 + NameIf I Fell + ArtistThe Beatles + ComposerJohn Lennon/Paul McCartney + AlbumA Hard Day's Night + GenreRock + KindAAC audio file + Size3405944 + Total Time142035 + Disc Number1 + Disc Count1 + Track Number3 + Track Count13 + Year1964 + Date Modified2006-07-30T08:48:24Z + Date Added2009-10-03T14:52:43Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3343713604 + Play Date UTC2009-12-15T03:50:04Z + Normalization3437 + Artwork Count1 + Sort AlbumHard Day's Night + Sort ArtistBeatles + Persistent IDF967DBD871F2F66C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/A%20Hard%20Day's%20Night/03%20If%20I%20Fell.m4a + File Folder Count4 + Library Folder Count1 + + 2482 + + Track ID2482 + NameI'm Happy Just To Dance With You + ArtistThe Beatles + ComposerJohn Lennon/Paul McCartney + AlbumA Hard Day's Night + GenreRock + KindAAC audio file + Size2856204 + Total Time118722 + Disc Number1 + Disc Count1 + Track Number4 + Track Count13 + Year1964 + Date Modified2006-07-30T08:48:24Z + Date Added2009-10-03T14:52:43Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3343713722 + Play Date UTC2009-12-15T03:52:02Z + Normalization4271 + Artwork Count1 + Sort AlbumHard Day's Night + Sort ArtistBeatles + Persistent IDBBC32B8255E05098 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/A%20Hard%20Day's%20Night/04%20I'm%20Happy%20Just%20To%20Dance%20With%20You.m4a + File Folder Count4 + Library Folder Count1 + + 2484 + + Track ID2484 + NameAnd I Love Her + ArtistThe Beatles + ComposerJohn Lennon/Paul McCartney + AlbumA Hard Day's Night + GenreRock + KindAAC audio file + Size3650265 + Total Time151067 + Disc Number1 + Disc Count1 + Track Number5 + Track Count13 + Year1964 + Date Modified2006-07-30T08:48:24Z + Date Added2009-10-03T14:52:43Z + Bit Rate192 + Sample Rate44100 + Play Count3 + Play Date3393072589 + Play Date UTC2011-07-09T10:39:49Z + Normalization1753 + Artwork Count1 + Sort AlbumHard Day's Night + Sort ArtistBeatles + Persistent ID7AD75896D9C515C1 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/A%20Hard%20Day's%20Night/05%20And%20I%20Love%20Her.m4a + File Folder Count4 + Library Folder Count1 + + 2486 + + Track ID2486 + NameTell Me Why + ArtistThe Beatles + ComposerJohn Lennon/Paul McCartney + AlbumA Hard Day's Night + GenreRock + KindAAC audio file + Size3128926 + Total Time130076 + Disc Number1 + Disc Count1 + Track Number6 + Track Count13 + Year1964 + Date Modified2006-07-30T08:48:24Z + Date Added2009-10-03T14:52:43Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3343714003 + Play Date UTC2009-12-15T03:56:43Z + Normalization4964 + Artwork Count1 + Sort AlbumHard Day's Night + Sort ArtistBeatles + Persistent ID0E7FA440A4E24207 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/A%20Hard%20Day's%20Night/06%20Tell%20Me%20Why.m4a + File Folder Count4 + Library Folder Count1 + + 2488 + + Track ID2488 + NameCan't Buy Me Love + ArtistThe Beatles + ComposerJohn Lennon/Paul McCartney + AlbumA Hard Day's Night + GenreRock + KindAAC audio file + Size3247151 + Total Time134952 + Disc Number1 + Disc Count1 + Track Number7 + Track Count13 + Year1964 + Date Modified2006-07-30T08:48:24Z + Date Added2009-10-03T14:52:43Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3343714138 + Play Date UTC2009-12-15T03:58:58Z + Normalization4053 + Artwork Count1 + Sort AlbumHard Day's Night + Sort ArtistBeatles + Persistent ID405792A4749E4E78 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/A%20Hard%20Day's%20Night/07%20Can't%20Buy%20Me%20Love.m4a + File Folder Count4 + Library Folder Count1 + + 2490 + + Track ID2490 + NameAny Time At All + ArtistThe Beatles + ComposerJohn Lennon/Paul McCartney + AlbumA Hard Day's Night + GenreRock + KindAAC audio file + Size3221265 + Total Time133420 + Disc Number1 + Disc Count1 + Track Number8 + Track Count13 + Year1964 + Date Modified2006-07-30T08:48:24Z + Date Added2009-10-03T14:52:44Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3343714272 + Play Date UTC2009-12-15T04:01:12Z + Normalization4975 + Artwork Count1 + Sort AlbumHard Day's Night + Sort ArtistBeatles + Persistent IDA05400C3E8ADA534 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/A%20Hard%20Day's%20Night/08%20Any%20Time%20At%20All.m4a + File Folder Count4 + Library Folder Count1 + + 2492 + + Track ID2492 + NameI'll Cry Instead + ArtistThe Beatles + ComposerJohn Lennon/Paul McCartney + AlbumA Hard Day's Night + GenreRock + KindAAC audio file + Size2590233 + Total Time107739 + Disc Number1 + Disc Count1 + Track Number9 + Track Count13 + Year1964 + Date Modified2006-07-30T08:48:26Z + Date Added2009-10-03T14:52:44Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3343714380 + Play Date UTC2009-12-15T04:03:00Z + Normalization3434 + Artwork Count1 + Sort AlbumHard Day's Night + Sort ArtistBeatles + Persistent ID7FF01E9C5B1DDECE + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/A%20Hard%20Day's%20Night/09%20I'll%20Cry%20Instead.m4a + File Folder Count4 + Library Folder Count1 + + 2494 + + Track ID2494 + NameThings We Said Today + ArtistThe Beatles + ComposerJohn Lennon/Paul McCartney + AlbumA Hard Day's Night + GenreRock + KindAAC audio file + Size3806318 + Total Time158846 + Disc Number1 + Disc Count1 + Track Number10 + Track Count13 + Year1964 + Date Modified2006-07-30T08:48:26Z + Date Added2009-10-03T14:52:44Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3343714538 + Play Date UTC2009-12-15T04:05:38Z + Normalization2536 + Artwork Count1 + Sort AlbumHard Day's Night + Sort ArtistBeatles + Persistent ID4CD46D27A793B00E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/A%20Hard%20Day's%20Night/10%20Things%20We%20Said%20Today.m4a + File Folder Count4 + Library Folder Count1 + + 2496 + + Track ID2496 + NameWhen I Get Home + ArtistThe Beatles + ComposerJohn Lennon/Paul McCartney + AlbumA Hard Day's Night + GenreRock + KindAAC audio file + Size3326070 + Total Time138389 + Disc Number1 + Disc Count1 + Track Number11 + Track Count13 + Year1964 + Date Modified2006-07-30T08:48:26Z + Date Added2009-10-03T14:52:44Z + Bit Rate192 + Sample Rate44100 + Normalization6019 + Artwork Count1 + Sort AlbumHard Day's Night + Sort ArtistBeatles + Persistent ID996BCCEA9930B059 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/A%20Hard%20Day's%20Night/11%20When%20I%20Get%20Home.m4a + File Folder Count4 + Library Folder Count1 + + 2498 + + Track ID2498 + NameYou Can't Do That + ArtistThe Beatles + ComposerJohn Lennon/Paul McCartney + AlbumA Hard Day's Night + GenreRock + KindAAC audio file + Size3778233 + Total Time157638 + Disc Number1 + Disc Count1 + Track Number12 + Track Count13 + Year1964 + Date Modified2006-07-30T08:48:26Z + Date Added2009-10-03T14:52:44Z + Bit Rate192 + Sample Rate44100 + Normalization5327 + Artwork Count1 + Sort AlbumHard Day's Night + Sort ArtistBeatles + Persistent IDF7EE97931253A018 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/A%20Hard%20Day's%20Night/12%20You%20Can't%20Do%20That.m4a + File Folder Count4 + Library Folder Count1 + + 2500 + + Track ID2500 + NameI'll Be Back + ArtistThe Beatles + ComposerJohn Lennon/Paul McCartney + AlbumA Hard Day's Night + GenreRock + KindAAC audio file + Size3457478 + Total Time140572 + Disc Number1 + Disc Count1 + Track Number13 + Track Count13 + Year1964 + Date Modified2006-07-30T08:48:26Z + Date Added2009-10-03T14:52:44Z + Bit Rate192 + Sample Rate44100 + Normalization3428 + Artwork Count1 + Sort AlbumHard Day's Night + Sort ArtistBeatles + Persistent ID5F261B393BA69850 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/A%20Hard%20Day's%20Night/13%20I'll%20Be%20Back.m4a + File Folder Count4 + Library Folder Count1 + + 2502 + + Track ID2502 + NameKafi + ArtistTerra Incognita + AlbumTribal Gathering + GenreNew Age + KindAAC audio file + Size7483098 + Total Time300293 + Disc Number1 + Disc Count1 + Track Number1 + Track Count14 + Year1993 + Date Modified2011-06-09T05:52:33Z + Date Added2009-10-03T14:52:44Z + Bit Rate192 + Sample Rate44100 + Normalization1130 + Artwork Count1 + Persistent IDD3046FAE00959817 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Terra%20Incognita/Tribal%20Gathering/01%20Kafi.m4a + File Folder Count4 + Library Folder Count1 + + 2504 + + Track ID2504 + NameEtruscan Places + ArtistTerra Incognita + AlbumTribal Gathering + GenreNew Age + KindAAC audio file + Size9487055 + Total Time382506 + Disc Number1 + Disc Count1 + Track Number2 + Track Count14 + Year1993 + Date Modified2011-06-09T05:52:33Z + Date Added2009-10-03T14:52:44Z + Bit Rate192 + Sample Rate44100 + Normalization430 + Artwork Count1 + Persistent IDACCE25227B341EDF + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Terra%20Incognita/Tribal%20Gathering/02%20Etruscan%20Places.m4a + File Folder Count4 + Library Folder Count1 + + 2506 + + Track ID2506 + NameTilak + ArtistTerra Incognita + AlbumTribal Gathering + GenreNew Age + KindAAC audio file + Size7318145 + Total Time292893 + Disc Number1 + Disc Count1 + Track Number3 + Track Count14 + Year1993 + Date Modified2011-06-09T05:52:33Z + Date Added2009-10-03T14:52:44Z + Bit Rate192 + Sample Rate44100 + Normalization1193 + Artwork Count1 + Persistent IDF4CA19037447C10D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Terra%20Incognita/Tribal%20Gathering/03%20Tilak.m4a + File Folder Count4 + Library Folder Count1 + + 2508 + + Track ID2508 + NameSacred Dance + ArtistTerra Incognita + AlbumTribal Gathering + GenreNew Age + KindAAC audio file + Size4273963 + Total Time167106 + Disc Number1 + Disc Count1 + Track Number4 + Track Count14 + Year1993 + Date Modified2011-06-09T05:52:32Z + Date Added2009-10-03T14:52:45Z + Bit Rate192 + Sample Rate44100 + Normalization938 + Artwork Count1 + Persistent ID54A78DD65BE25242 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Terra%20Incognita/Tribal%20Gathering/04%20Sacred%20Dance.m4a + File Folder Count4 + Library Folder Count1 + + 2510 + + Track ID2510 + NameCala Violina + ArtistTerra Incognita + AlbumTribal Gathering + GenreNew Age + KindAAC audio file + Size6715719 + Total Time268000 + Disc Number1 + Disc Count1 + Track Number5 + Track Count14 + Year1993 + Date Modified2011-06-09T05:52:30Z + Date Added2009-10-03T14:52:45Z + Bit Rate192 + Sample Rate44100 + Normalization965 + Artwork Count1 + Persistent ID520FED7CEA0DAC13 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Terra%20Incognita/Tribal%20Gathering/05%20Cala%20Violina.m4a + File Folder Count4 + Library Folder Count1 + + 2512 + + Track ID2512 + NameSufis And Gypsies + ArtistTerra Incognita + AlbumTribal Gathering + GenreNew Age + KindAAC audio file + Size8610518 + Total Time346266 + Disc Number1 + Disc Count1 + Track Number6 + Track Count14 + Year1993 + Date Modified2011-06-09T05:52:32Z + Date Added2009-10-03T14:52:45Z + Bit Rate192 + Sample Rate44100 + Normalization743 + Artwork Count1 + Persistent IDA4381B8BBCBB057C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Terra%20Incognita/Tribal%20Gathering/06%20Sufis%20And%20Gypsies.m4a + File Folder Count4 + Library Folder Count1 + + 2514 + + Track ID2514 + NameMountains Of The Moon + ArtistTerra Incognita + AlbumTribal Gathering + GenreNew Age + KindAAC audio file + Size10224971 + Total Time412533 + Disc Number1 + Disc Count1 + Track Number7 + Track Count14 + Year1993 + Date Modified2011-06-09T05:52:31Z + Date Added2009-10-03T14:52:45Z + Bit Rate192 + Sample Rate44100 + Normalization1211 + Artwork Count1 + Persistent ID85585C1819EA9EEA + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Terra%20Incognita/Tribal%20Gathering/07%20Mountains%20Of%20The%20Moon.m4a + File Folder Count4 + Library Folder Count1 + + 2516 + + Track ID2516 + NameUnder The Carob Tree + ArtistTerra Incognita + AlbumTribal Gathering + GenreNew Age + KindAAC audio file + Size5395331 + Total Time212560 + Disc Number1 + Disc Count1 + Track Number8 + Track Count14 + Year1993 + Date Modified2011-06-09T05:52:32Z + Date Added2009-10-03T14:52:45Z + Bit Rate192 + Sample Rate44100 + Normalization810 + Artwork Count1 + Persistent ID23ADB075D0FBF061 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Terra%20Incognita/Tribal%20Gathering/08%20Under%20The%20Carob%20Tree.m4a + File Folder Count4 + Library Folder Count1 + + 2518 + + Track ID2518 + NameRhythm House Classic + ArtistTerra Incognita + AlbumTribal Gathering + GenreNew Age + KindAAC audio file + Size6414150 + Total Time255533 + Disc Number1 + Disc Count1 + Track Number9 + Track Count14 + Year1993 + Date Modified2011-06-09T05:52:31Z + Date Added2009-10-03T14:52:45Z + Bit Rate192 + Sample Rate44100 + Normalization871 + Artwork Count1 + Persistent ID0C084BDCB098BC87 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Terra%20Incognita/Tribal%20Gathering/09%20Rhythm%20House%20Classic.m4a + File Folder Count4 + Library Folder Count1 + + 2520 + + Track ID2520 + NameNever Mind The Pandits + ArtistTerra Incognita + AlbumTribal Gathering + GenreNew Age + KindAAC audio file + Size7266120 + Total Time290733 + Disc Number1 + Disc Count1 + Track Number10 + Track Count14 + Year1993 + Date Modified2011-06-09T05:52:31Z + Date Added2009-10-03T14:52:45Z + Bit Rate192 + Sample Rate44100 + Normalization590 + Artwork Count1 + Persistent ID98729B0B9190E6D5 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Terra%20Incognita/Tribal%20Gathering/10%20Never%20Mind%20The%20Pandits.m4a + File Folder Count4 + Library Folder Count1 + + 2522 + + Track ID2522 + NameHavana Baba + ArtistTerra Incognita + AlbumTribal Gathering + GenreNew Age + KindAAC audio file + Size3951996 + Total Time153466 + Disc Number1 + Disc Count1 + Track Number11 + Track Count14 + Year1993 + Date Modified2011-06-09T05:52:28Z + Date Added2009-10-03T14:52:46Z + Bit Rate192 + Sample Rate44100 + Normalization1050 + Artwork Count1 + Persistent IDD7935D2C570F248E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Terra%20Incognita/Tribal%20Gathering/11%20Havana%20Baba.m4a + File Folder Count4 + Library Folder Count1 + + 2524 + + Track ID2524 + NameTribal Gathering + ArtistTerra Incognita + AlbumTribal Gathering + GenreNew Age + KindAAC audio file + Size11128637 + Total Time450106 + Disc Number1 + Disc Count1 + Track Number12 + Track Count14 + Year1993 + Date Modified2011-06-09T05:52:29Z + Date Added2009-10-03T14:52:46Z + Bit Rate192 + Sample Rate44100 + Normalization1258 + Artwork Count1 + Persistent IDAB12F8C0F259C3E4 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Terra%20Incognita/Tribal%20Gathering/12%20Tribal%20Gathering.m4a + File Folder Count4 + Library Folder Count1 + + 2526 + + Track ID2526 + NameZenith + ArtistTerra Incognita + AlbumTribal Gathering + GenreNew Age + KindAAC audio file + Size4849388 + Total Time190666 + Disc Number1 + Disc Count1 + Track Number13 + Track Count14 + Year1993 + Date Modified2011-06-09T05:52:30Z + Date Added2009-10-03T14:52:46Z + Bit Rate192 + Sample Rate44100 + Normalization1207 + Artwork Count1 + Persistent IDFE35240F6D8E5409 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Terra%20Incognita/Tribal%20Gathering/13%20Zenith.m4a + File Folder Count4 + Library Folder Count1 + + 2528 + + Track ID2528 + NameShahana + ArtistTerra Incognita + AlbumTribal Gathering + GenreNew Age + KindAAC audio file + Size9260024 + Total Time370826 + Disc Number1 + Disc Count1 + Track Number14 + Track Count14 + Year1993 + Date Modified2011-06-09T05:52:29Z + Date Added2009-10-03T14:52:46Z + Bit Rate192 + Sample Rate44100 + Normalization1212 + Artwork Count1 + Persistent ID94299C6A4330E8A9 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Terra%20Incognita/Tribal%20Gathering/14%20Shahana.m4a + File Folder Count4 + Library Folder Count1 + + 2530 + + Track ID2530 + NamePavanathmaja - Nata + ArtistT.V. Shankaranarayanan + AlbumThe Virtuoso + GenreClassical + KindAAC audio file + Size8920118 + Total Time368127 + Track Number1 + Track Count6 + Date Modified2006-07-30T02:57:40Z + Date Added2009-10-03T14:52:46Z + Bit Rate192 + Sample Rate44100 + Normalization1008 + Artwork Count1 + Sort AlbumVirtuoso + Persistent ID49103ED46281D11E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/T.V.%20Shankaranarayanan/The%20Virtuoso/01%20Pavanathmaja%20-%20Nata.m4a + File Folder Count4 + Library Folder Count1 + + 2532 + + Track ID2532 + NameParipalayamam - Rithigowla + ArtistT.V. Shankaranarayanan + AlbumThe Virtuoso + GenreClassical + KindAAC audio file + Size7499149 + Total Time309404 + Track Number2 + Track Count6 + Date Modified2006-07-30T02:57:42Z + Date Added2009-10-03T14:52:46Z + Bit Rate192 + Sample Rate44100 + Normalization1015 + Artwork Count1 + Sort AlbumVirtuoso + Persistent IDD125BFBEEE8064C7 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/T.V.%20Shankaranarayanan/The%20Virtuoso/02%20Paripalayamam%20-%20Rithigowla.m4a + File Folder Count4 + Library Folder Count1 + + 2534 + + Track ID2534 + NameSahasrakara Mandithe - Vachaspathi + ArtistT.V. Shankaranarayanan + AlbumThe Virtuoso + GenreClassical + KindAAC audio file + Size17519544 + Total Time723485 + Track Number3 + Track Count6 + Date Modified2006-07-30T02:57:42Z + Date Added2009-10-03T14:52:47Z + Bit Rate192 + Sample Rate44100 + Normalization1011 + Artwork Count1 + Sort AlbumVirtuoso + Persistent ID5B20FCBF8B0977D4 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/T.V.%20Shankaranarayanan/The%20Virtuoso/03%20Sahasrakara%20Mandithe%20-%20Vachaspathi.m4a + File Folder Count4 + Library Folder Count1 + + 2536 + + Track ID2536 + NameAadum Chidambaramo - Behag + ArtistT.V. Shankaranarayanan + AlbumThe Virtuoso + GenreClassical + KindAAC audio file + Size13057035 + Total Time539073 + Track Number4 + Track Count6 + Date Modified2006-07-30T02:57:42Z + Date Added2009-10-03T14:52:47Z + Bit Rate192 + Sample Rate44100 + Normalization1011 + Artwork Count1 + Sort AlbumVirtuoso + Persistent ID5A58E5BD45E7E23D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/T.V.%20Shankaranarayanan/The%20Virtuoso/04%20Aadum%20Chidambaramo%20-%20Behag.m4a + File Folder Count4 + Library Folder Count1 + + 2538 + + Track ID2538 + NameEvarunnaru - Malavasri + ArtistT.V. Shankaranarayanan + AlbumThe Virtuoso + GenreClassical + KindAAC audio file + Size4728466 + Total Time194674 + Track Number5 + Track Count6 + Date Modified2006-07-30T02:57:42Z + Date Added2009-10-03T14:52:47Z + Bit Rate192 + Sample Rate44100 + Normalization1110 + Artwork Count1 + Sort AlbumVirtuoso + Persistent IDDF3454842BD9E904 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/T.V.%20Shankaranarayanan/The%20Virtuoso/05%20Evarunnaru%20-%20Malavasri.m4a + File Folder Count4 + Library Folder Count1 + + 2540 + + Track ID2540 + NameParamapavana Rama - Poorvi Kalyani + ArtistT.V. Shankaranarayanan + AlbumThe Virtuoso + GenreClassical + KindAAC audio file + Size44480145 + Total Time1837602 + Track Number6 + Track Count6 + Date Modified2006-07-30T02:57:44Z + Date Added2009-10-03T14:52:47Z + Bit Rate192 + Sample Rate44100 + Normalization1028 + Artwork Count1 + Sort AlbumVirtuoso + Persistent IDE0004BE7F63F0E3D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/T.V.%20Shankaranarayanan/The%20Virtuoso/06%20Paramapavana%20Rama%20-%20Poorvi%20Kalyani.m4a + File Folder Count4 + Library Folder Count1 + + 2542 + + Track ID2542 + NameBruckner: Symphony #6 In A, WAB 106 - 1. Maestoso + ArtistSüddeutsche Philharmonie + ComposerBruckner, Anton (1824 - 1896) + AlbumBruckner: Symphony #6 + GenreClassical + KindAAC audio file + Size19131643 + Total Time790243 + Disc Number1 + Disc Count1 + Track Number1 + Track Count4 + Year1994 + Date Modified2006-08-08T06:50:44Z + Date Added2009-10-03T14:52:48Z + Bit Rate192 + Sample Rate44100 + Normalization756 + Artwork Count1 + Persistent ID1700DEA67B91B800 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Su%CC%88ddeutsche%20Philharmonie/Bruckner_%20Symphony%20%236/01%20Bruckner_%20Symphony%20%236%20In%20A,%20WAB%20106%20-%201.%20Maestoso.m4a + File Folder Count4 + Library Folder Count1 + + 2544 + + Track ID2544 + NameRaat Ki Daldal Hain + ArtistSukhwindara Singh + ComposerA.R. Rahman/Javed Akhtar + Album1947 + GenreSoundtrack + KindAAC audio file + Size5871358 + Total Time244691 + Track Number4 + Year1999 + Date Modified2007-07-27T05:54:36Z + Date Added2009-10-03T14:52:48Z + Bit Rate192 + Sample Rate44100 + Normalization1316 + Persistent IDEF103E04188F4F62 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Sukhwindara%20Singh/1947/04%20Raat%20Ki%20Daldal%20Hain.m4a + File Folder Count4 + Library Folder Count1 + + 2546 + + Track ID2546 + NameRaat Ki Daldal Hain + ArtistSukhwindara Singh + ComposerA.R. Rahman/Javed Akhtar + Album1947 + GenreSoundtrack + KindAAC audio file + Size5874579 + Total Time244713 + Track Number4 + Year1999 + Date Modified2007-01-17T10:32:20Z + Date Added2009-10-03T14:52:48Z + Bit Rate192 + Sample Rate44100 + Normalization1316 + Persistent ID531DFED7473C1DDC + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Sukhwindara%20Singh/1947/04%20Raat%20Ki%20Daldal%20Hain%202.m4a + File Folder Count4 + Library Folder Count1 + + 2548 + + Track ID2548 + NameRaat Ki Daldal Hain + ArtistSukhwindara Singh + ComposerA.R. Rahman/Javed Akhtar + Album1947 + GenreSoundtrack + KindAAC audio file + Size5874579 + Total Time244713 + Track Number4 + Year1999 + Date Modified2006-12-27T09:56:32Z + Date Added2009-10-03T14:52:48Z + Bit Rate192 + Sample Rate44100 + Normalization1316 + Persistent ID107C6B9606D5FC4A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Sukhwindara%20Singh/1947/04%20Raat%20Ki%20Daldal%20Hain%203.m4a + File Folder Count4 + Library Folder Count1 + + 2550 + + Track ID2550 + NameRaat Ki Daldal Hain + ArtistSukhwindara Singh + ComposerA.R. Rahman/Javed Akhtar + Album1947 + GenreSoundtrack + KindAAC audio file + Size5874579 + Total Time244713 + Track Number4 + Year1999 + Date Modified2006-12-26T05:35:18Z + Date Added2009-10-03T14:52:48Z + Bit Rate192 + Sample Rate44100 + Normalization1316 + Persistent ID79BE958824DB7415 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Sukhwindara%20Singh/1947/04%20Raat%20Ki%20Daldal%20Hain%204.m4a + File Folder Count4 + Library Folder Count1 + + 2552 + + Track ID2552 + NameRaat Ki Daldal Hain + ArtistSukhwindara Singh + ComposerA.R. Rahman/Javed Akhtar + Album1947 + GenreSoundtrack + KindAAC audio file + Size5761897 + Total Time244691 + Track Number4 + Year1999 + Date Modified2007-12-02T07:36:04Z + Date Added2009-10-03T14:52:48Z + Bit Rate186 + Sample Rate44100 + Normalization1316 + Persistent IDAB26E8F7A1E18D78 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Sukhwindara%20Singh/1947/04%20Raat%20Ki%20Daldal%20Hain%201.m4a + File Folder Count4 + Library Folder Count1 + + 2554 + + Track ID2554 + NameNavaragamalika Varnam + ArtistString Quartet + AlbumResonance + GenreWorld + KindAAC audio file + Size6304012 + Total Time262035 + Track Number1 + Track Count9 + Year2001 + Date Modified2006-07-30T08:38:34Z + Date Added2009-10-03T14:52:49Z + Bit Rate192 + Sample Rate44100 + Normalization1175 + Artwork Count1 + Persistent ID77E144A95A9E661C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/String%20Quartet/Resonance/01%20Navaragamalika%20Varnam.m4a + File Folder Count4 + Library Folder Count1 + + 2556 + + Track ID2556 + NamePalukavademira + ArtistString Quartet + AlbumResonance + GenreWorld + KindAAC audio file + Size5494285 + Total Time229016 + Track Number2 + Track Count9 + Year2001 + Date Modified2006-07-30T08:38:34Z + Date Added2009-10-03T14:52:49Z + Bit Rate192 + Sample Rate44100 + Normalization1293 + Artwork Count1 + Persistent ID99EB841BC15BA780 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/String%20Quartet/Resonance/02%20Palukavademira.m4a + File Folder Count4 + Library Folder Count1 + + 2558 + + Track ID2558 + NameEsane + ArtistString Quartet + AlbumResonance + GenreWorld + KindAAC audio file + Size9089233 + Total Time376835 + Track Number3 + Track Count9 + Year2001 + Date Modified2006-07-30T08:38:34Z + Date Added2009-10-03T14:52:49Z + Bit Rate192 + Sample Rate44100 + Normalization768 + Artwork Count1 + Persistent IDD95A75999346C1BE + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/String%20Quartet/Resonance/03%20Esane.m4a + File Folder Count4 + Library Folder Count1 + + 2560 + + Track ID2560 + NameRaghuvamsa + ArtistString Quartet + AlbumResonance + GenreWorld + KindAAC audio file + Size11988996 + Total Time496928 + Track Number4 + Track Count9 + Year2001 + Date Modified2006-07-30T08:38:34Z + Date Added2009-10-03T14:52:49Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3457591381 + Play Date UTC2013-07-25T04:33:01Z + Normalization872 + Artwork Count1 + Persistent IDB6F358356DFF9E31 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/String%20Quartet/Resonance/04%20Raghuvamsa.m4a + File Folder Count4 + Library Folder Count1 + + 2562 + + Track ID2562 + NameAmba Kamakshi + ArtistString Quartet + AlbumResonance + GenreWorld + KindAAC audio file + Size8654457 + Total Time360209 + Track Number5 + Track Count9 + Year2001 + Date Modified2006-07-30T08:38:34Z + Date Added2009-10-03T14:52:49Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3457591742 + Play Date UTC2013-07-25T04:39:02Z + Normalization1383 + Artwork Count1 + Persistent ID300B92928FF380F0 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/String%20Quartet/Resonance/05%20Amba%20Kamakshi.m4a + File Folder Count4 + Library Folder Count1 + + 2564 + + Track ID2564 + NameMokshamu + ArtistString Quartet + AlbumResonance + GenreWorld + KindAAC audio file + Size9264808 + Total Time384056 + Track Number6 + Track Count9 + Year2001 + Date Modified2006-07-30T08:38:34Z + Date Added2009-10-03T14:52:49Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3340458300 + Play Date UTC2009-11-07T11:35:00Z + Normalization1120 + Artwork Count1 + Persistent ID4AA9D0B5C479CA4C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/String%20Quartet/Resonance/06%20Mokshamu.m4a + File Folder Count4 + Library Folder Count1 + + 2566 + + Track ID2566 + NameSara Sara Samarai + ArtistString Quartet + AlbumResonance + GenreWorld + KindAAC audio file + Size4045660 + Total Time168807 + Track Number7 + Track Count9 + Year2001 + Date Modified2006-07-30T08:38:34Z + Date Added2009-10-03T14:52:49Z + Bit Rate192 + Sample Rate44100 + Skip Count1 + Skip Date2013-07-31T06:59:41Z + Normalization1000 + Artwork Count1 + Persistent IDB57999E06DD6A4F4 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/String%20Quartet/Resonance/07%20Sara%20Sara%20Samarai.m4a + File Folder Count4 + Library Folder Count1 + + 2568 + + Track ID2568 + NameMohanalahari + ArtistString Quartet + AlbumResonance + GenreWorld + KindAAC audio file + Size13511868 + Total Time560342 + Track Number8 + Track Count9 + Year2001 + Date Modified2006-07-30T08:38:34Z + Date Added2009-10-03T14:52:49Z + Bit Rate192 + Sample Rate44100 + Normalization784 + Artwork Count1 + Persistent ID7D2802E18E50803D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/String%20Quartet/Resonance/08%20Mohanalahari.m4a + File Folder Count4 + Library Folder Count1 + + 2570 + + Track ID2570 + NameKrishna Nee Begane + ArtistString Quartet + AlbumResonance + GenreWorld + KindAAC audio file + Size10506998 + Total Time433538 + Track Number9 + Track Count9 + Year2001 + Date Modified2006-07-30T08:38:36Z + Date Added2009-10-03T14:52:49Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Persistent IDFA60481B99EE702E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/String%20Quartet/Resonance/09%20Krishna%20Nee%20Begane.m4a + File Folder Count4 + Library Folder Count1 + + 2572 + + Track ID2572 + NameA Thousand Years + ArtistSting + ComposerSting, Kipper + AlbumBrand New Day + GenreRock + KindAAC audio file + Size8664958 + Total Time358073 + Disc Number1 + Disc Count1 + Track Number1 + Track Count10 + Year2000 + Date Modified2006-08-13T06:47:10Z + Date Added2009-10-03T14:52:50Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3441561867 + Play Date UTC2013-01-20T15:54:27Z + Normalization1248 + Artwork Count1 + Sort NameThousand Years + Persistent ID041EDC60A52BCD4E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Sting/Brand%20New%20Day/01%20A%20Thousand%20Years.m4a + File Folder Count4 + Library Folder Count1 + + 2574 + + Track ID2574 + NameDesert Rose + ArtistSting + ComposerSting, Kipper + AlbumBrand New Day + GenreRock + KindAAC audio file + Size6932597 + Total Time285905 + Disc Number1 + Disc Count1 + Track Number2 + Track Count10 + Year2000 + Date Modified2006-08-13T06:47:06Z + Date Added2009-10-03T14:52:50Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3483120773 + Play Date UTC2014-05-16T16:02:53Z + Skip Count1 + Skip Date2013-01-20T15:54:34Z + Normalization3584 + Artwork Count1 + Persistent IDBAABEC81F6BBEC8C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Sting/Brand%20New%20Day/02%20Desert%20Rose.m4a + File Folder Count4 + Library Folder Count1 + + 2576 + + Track ID2576 + NameBig Lie Small World + ArtistSting + ComposerSting + AlbumBrand New Day + GenreRock + KindAAC audio file + Size7397230 + Total Time305108 + Disc Number1 + Disc Count1 + Track Number3 + Track Count10 + Year2000 + Date Modified2006-08-13T06:47:02Z + Date Added2009-10-03T14:52:50Z + Bit Rate192 + Sample Rate44100 + Normalization1234 + Artwork Count1 + Persistent IDA4228866DFAC6ED9 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Sting/Brand%20New%20Day/03%20Big%20Lie%20Small%20World.m4a + File Folder Count4 + Library Folder Count1 + + 2578 + + Track ID2578 + NameAfter The Rain Has Fallen + ArtistSting + ComposerSting + AlbumBrand New Day + GenreRock + KindAAC audio file + Size7348312 + Total Time303088 + Disc Number1 + Disc Count1 + Track Number4 + Track Count10 + Year2000 + Date Modified2006-08-13T06:47:00Z + Date Added2009-10-03T14:52:50Z + Bit Rate192 + Sample Rate44100 + Normalization3538 + Artwork Count1 + Persistent IDD350A8CADA545C83 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Sting/Brand%20New%20Day/04%20After%20The%20Rain%20Has%20Fallen.m4a + File Folder Count4 + Library Folder Count1 + + 2580 + + Track ID2580 + NamePerfect Love...Gone Wrong + ArtistSting + ComposerSting + AlbumBrand New Day + GenreRock + KindAAC audio file + Size7860486 + Total Time324241 + Disc Number1 + Disc Count1 + Track Number5 + Track Count10 + Year2000 + Date Modified2006-08-13T06:46:56Z + Date Added2009-10-03T14:52:50Z + Bit Rate192 + Sample Rate44100 + Normalization2099 + Artwork Count1 + Persistent ID1A46A4E44CDA505F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Sting/Brand%20New%20Day/05%20Perfect%20Love...Gone%20Wrong.m4a + File Folder Count4 + Library Folder Count1 + + 2582 + + Track ID2582 + NameTomorrow We'll See + ArtistSting + ComposerSting + AlbumBrand New Day + GenreRock + KindAAC audio file + Size6979094 + Total Time289388 + Disc Number1 + Disc Count1 + Track Number6 + Track Count10 + Year2000 + Date Modified2006-08-13T06:46:52Z + Date Added2009-10-03T14:52:50Z + Bit Rate192 + Sample Rate44100 + Normalization1281 + Artwork Count1 + Persistent IDFCE0BBA749877B7D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Sting/Brand%20New%20Day/06%20Tomorrow%20We'll%20See.m4a + File Folder Count4 + Library Folder Count1 + + 2584 + + Track ID2584 + NamePrelude To The End Of The Game + ArtistSting + ComposerSting + AlbumBrand New Day + GenreRock + KindAAC audio file + Size510661 + Total Time20966 + Disc Number1 + Disc Count1 + Track Number7 + Track Count10 + Year2000 + Date Modified2006-08-13T06:46:50Z + Date Added2009-10-03T14:52:50Z + Bit Rate192 + Sample Rate44100 + Normalization120 + Artwork Count1 + Persistent IDC22B249704819C44 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Sting/Brand%20New%20Day/07%20Prelude%20To%20The%20End%20Of%20The%20Game.m4a + File Folder Count4 + Library Folder Count1 + + 2586 + + Track ID2586 + NameFill Her Up + ArtistSting + ComposerSting + AlbumBrand New Day + GenreRock + KindAAC audio file + Size8188736 + Total Time338591 + Disc Number1 + Disc Count1 + Track Number8 + Track Count10 + Year2000 + Date Modified2006-08-13T06:46:50Z + Date Added2009-10-03T14:52:50Z + Bit Rate192 + Sample Rate44100 + Normalization1984 + Artwork Count1 + Persistent ID9543C3A3009E9F69 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Sting/Brand%20New%20Day/08%20Fill%20Her%20Up.m4a + File Folder Count4 + Library Folder Count1 + + 2588 + + Track ID2588 + NameGhost Story + ArtistSting + ComposerSting + AlbumBrand New Day + GenreRock + KindAAC audio file + Size7978550 + Total Time329605 + Disc Number1 + Disc Count1 + Track Number9 + Track Count10 + Year2000 + Date Modified2006-08-13T06:46:46Z + Date Added2009-10-03T14:52:51Z + Bit Rate192 + Sample Rate44100 + Normalization1218 + Artwork Count1 + Persistent ID4C2D8D7B15AB1604 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Sting/Brand%20New%20Day/09%20Ghost%20Story.m4a + File Folder Count4 + Library Folder Count1 + + 2590 + + Track ID2590 + NameBrand New Day + ArtistSting + ComposerSting + AlbumBrand New Day + GenreRock + KindAAC audio file + Size9202322 + Total Time379830 + Disc Number1 + Disc Count1 + Track Number10 + Track Count10 + Year2000 + Date Modified2006-08-13T06:46:42Z + Date Added2009-10-03T14:52:51Z + Bit Rate192 + Sample Rate44100 + Normalization3312 + Artwork Count1 + Persistent ID5D0EEC0F498016B6 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Sting/Brand%20New%20Day/10%20Brand%20New%20Day.m4a + File Folder Count4 + Library Folder Count1 + + 2592 + + Track ID2592 + NameBoot Hill + ArtistStevie Ray Vaughan & Double Trouble + AlbumThe Sky Is Crying + GenreBlues + KindAAC audio file + Size3299416 + Total Time136293 + Disc Number1 + Disc Count1 + Track Number1 + Track Count10 + Year1991 + Date Modified2008-10-07T14:02:07Z + Date Added2009-10-03T14:52:51Z + Bit Rate192 + Sample Rate44100 + Normalization2752 + Artwork Count1 + Sort AlbumSky Is Crying + Persistent ID8B86B0403E83FC14 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stevie%20Ray%20Vaughan%20&%20Double%20Trouble/The%20Sky%20Is%20Crying/01%20Boot%20Hill.m4a + File Folder Count4 + Library Folder Count1 + + 2594 + + Track ID2594 + NameThe Sky Is Crying + ArtistStevie Ray Vaughan & Double Trouble + AlbumThe Sky Is Crying + GenreBlues + KindAAC audio file + Size6893613 + Total Time278440 + Disc Number1 + Disc Count1 + Track Number2 + Track Count10 + Year1991 + Date Modified2008-10-07T14:02:07Z + Date Added2009-10-03T14:52:51Z + Bit Rate192 + Sample Rate44100 + Normalization1644 + Artwork Count1 + Sort AlbumSky Is Crying + Sort NameSky Is Crying + Persistent IDDB0593A22C94B09D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stevie%20Ray%20Vaughan%20&%20Double%20Trouble/The%20Sky%20Is%20Crying/02%20The%20Sky%20Is%20Crying.m4a + File Folder Count4 + Library Folder Count1 + + 2596 + + Track ID2596 + NameEmpty Arms + ArtistStevie Ray Vaughan & Double Trouble + AlbumThe Sky Is Crying + GenreBlues + KindAAC audio file + Size5200713 + Total Time211066 + Disc Number1 + Disc Count1 + Track Number3 + Track Count10 + Year1991 + Date Modified2008-10-07T14:02:06Z + Date Added2009-10-03T14:52:51Z + Bit Rate192 + Sample Rate44100 + Normalization2550 + Artwork Count1 + Sort AlbumSky Is Crying + Persistent IDAA1D6C45B121E6E6 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stevie%20Ray%20Vaughan%20&%20Double%20Trouble/The%20Sky%20Is%20Crying/03%20Empty%20Arms.m4a + File Folder Count4 + Library Folder Count1 + + 2598 + + Track ID2598 + NameLittle Wing + ArtistStevie Ray Vaughan & Double Trouble + AlbumThe Sky Is Crying + GenreBlues + KindAAC audio file + Size10126719 + Total Time410560 + Disc Number1 + Disc Count1 + Track Number4 + Track Count10 + Year1991 + Date Modified2008-10-07T14:02:05Z + Date Added2009-10-03T14:52:51Z + Bit Rate192 + Sample Rate44100 + Normalization1192 + Artwork Count1 + Sort AlbumSky Is Crying + Persistent ID627DF24C528E4821 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stevie%20Ray%20Vaughan%20&%20Double%20Trouble/The%20Sky%20Is%20Crying/04%20Little%20Wing.m4a + File Folder Count4 + Library Folder Count1 + + 2600 + + Track ID2600 + NameWham + ArtistStevie Ray Vaughan & Double Trouble + AlbumThe Sky Is Crying + GenreBlues + KindAAC audio file + Size3625284 + Total Time147333 + Disc Number1 + Disc Count1 + Track Number5 + Track Count10 + Year1991 + Date Modified2008-10-07T14:02:04Z + Date Added2009-10-03T14:52:52Z + Bit Rate192 + Sample Rate44100 + Normalization2798 + Artwork Count1 + Sort AlbumSky Is Crying + Persistent ID6113817ECD2B4E54 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stevie%20Ray%20Vaughan%20&%20Double%20Trouble/The%20Sky%20Is%20Crying/05%20Wham.m4a + File Folder Count4 + Library Folder Count1 + + 2602 + + Track ID2602 + NameMay I Have A Talk With You + ArtistStevie Ray Vaughan & Double Trouble + AlbumThe Sky Is Crying + GenreBlues + KindAAC audio file + Size8544173 + Total Time350933 + Disc Number1 + Disc Count1 + Track Number6 + Track Count10 + Year1991 + Date Modified2008-10-07T14:02:04Z + Date Added2009-10-03T14:52:52Z + Bit Rate192 + Sample Rate44100 + Normalization1366 + Artwork Count1 + Sort AlbumSky Is Crying + Persistent ID964E870D9A7C337C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stevie%20Ray%20Vaughan%20&%20Double%20Trouble/The%20Sky%20Is%20Crying/06%20May%20I%20Have%20A%20Talk%20With%20You.m4a + File Folder Count4 + Library Folder Count1 + + 2604 + + Track ID2604 + NameClose To You + ArtistStevie Ray Vaughan & Double Trouble + AlbumThe Sky Is Crying + GenreBlues + KindAAC audio file + Size4768653 + Total Time193906 + Disc Number1 + Disc Count1 + Track Number7 + Track Count10 + Year1991 + Date Modified2008-10-07T14:02:03Z + Date Added2009-10-03T14:52:52Z + Bit Rate192 + Sample Rate44100 + Normalization2682 + Artwork Count1 + Sort AlbumSky Is Crying + Persistent IDC16520387E944C34 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stevie%20Ray%20Vaughan%20&%20Double%20Trouble/The%20Sky%20Is%20Crying/07%20Close%20To%20You.m4a + File Folder Count4 + Library Folder Count1 + + 2606 + + Track ID2606 + NameChitlins Con Carne + ArtistStevie Ray Vaughan & Double Trouble + AlbumThe Sky Is Crying + GenreBlues + KindAAC audio file + Size5904423 + Total Time239266 + Disc Number1 + Disc Count1 + Track Number8 + Track Count10 + Year1991 + Date Modified2008-10-07T14:02:03Z + Date Added2009-10-03T14:52:52Z + Bit Rate192 + Sample Rate44100 + Normalization1192 + Artwork Count1 + Sort AlbumSky Is Crying + Persistent ID92A5C6B523EBB5FC + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stevie%20Ray%20Vaughan%20&%20Double%20Trouble/The%20Sky%20Is%20Crying/08%20Chitlins%20Con%20Carne.m4a + File Folder Count4 + Library Folder Count1 + + 2608 + + Track ID2608 + NameSo Excited + ArtistStevie Ray Vaughan & Double Trouble + AlbumThe Sky Is Crying + GenreBlues + KindAAC audio file + Size5168191 + Total Time212733 + Disc Number1 + Disc Count1 + Track Number9 + Track Count10 + Year1991 + Date Modified2008-10-07T14:02:02Z + Date Added2009-10-03T14:52:52Z + Bit Rate192 + Sample Rate44100 + Normalization1441 + Artwork Count1 + Sort AlbumSky Is Crying + Persistent ID12FC106CA07AC7CF + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stevie%20Ray%20Vaughan%20&%20Double%20Trouble/The%20Sky%20Is%20Crying/09%20So%20Excited.m4a + File Folder Count4 + Library Folder Count1 + + 2610 + + Track ID2610 + NameLife By The Drop + ArtistStevie Ray Vaughan & Double Trouble + AlbumThe Sky Is Crying + GenreBlues + KindAAC audio file + Size3517489 + Total Time148493 + Disc Number1 + Disc Count1 + Track Number10 + Track Count10 + Year1991 + Date Modified2008-10-07T14:02:02Z + Date Added2009-10-03T14:52:52Z + Bit Rate192 + Sample Rate44100 + Normalization799 + Artwork Count1 + Sort AlbumSky Is Crying + Persistent ID8AF64ABB57C6680F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stevie%20Ray%20Vaughan%20&%20Double%20Trouble/The%20Sky%20Is%20Crying/10%20Life%20By%20The%20Drop.m4a + File Folder Count4 + Library Folder Count1 + + 2612 + + Track ID2612 + NameAin't Gone 'n' Give Up On Love + ArtistStevie Ray Vaughan & Double Trouble + ComposerS. R. Vaughan + AlbumBlues At Sunrise + GenreBlues + KindAAC audio file + Size9023245 + Total Time368000 + Disc Number1 + Disc Count1 + Track Number1 + Track Count10 + Year2000 + Date Modified2007-10-01T13:18:02Z + Date Added2009-10-03T14:52:52Z + Bit Rate192 + Sample Rate44100 + Normalization1524 + Artwork Count1 + Persistent ID864D7B99D30B36D8 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stevie%20Ray%20Vaughan%20&%20Double%20Trouble/Blues%20At%20Sunrise/01%20Ain't%20Gone%20'n'%20Give%20Up%20On%20Love.m4a + File Folder Count4 + Library Folder Count1 + + 2614 + + Track ID2614 + NameBlues At Sunrise (Live) + ArtistStevie Ray Vaughan & Double Trouble + ComposerA. King + AlbumBlues At Sunrise + GenreBlues + KindAAC audio file + Size21998379 + Total Time906733 + Disc Number1 + Disc Count1 + Track Number10 + Track Count10 + Year2000 + Date Modified2007-10-01T13:26:35Z + Date Added2009-10-03T14:52:52Z + Bit Rate192 + Sample Rate44100 + Normalization1114 + Artwork Count1 + Persistent IDD1FB8BACF78AADB1 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stevie%20Ray%20Vaughan%20&%20Double%20Trouble/Blues%20At%20Sunrise/10%20Blues%20At%20Sunrise%20(Live).m4a + File Folder Count4 + Library Folder Count1 + + 2616 + + Track ID2616 + NameChitllins Con Carne + ArtistStevie Ray Vaughan & Double Trouble + ComposerK. Burrell + AlbumBlues At Sunrise + GenreBlues + KindAAC audio file + Size5823825 + Total Time235640 + Disc Number1 + Disc Count1 + Track Number4 + Track Count10 + Year2000 + Date Modified2007-10-01T13:20:32Z + Date Added2009-10-03T14:52:52Z + Bit Rate192 + Sample Rate44100 + Normalization1063 + Artwork Count1 + Persistent ID73CDB29852FF862D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stevie%20Ray%20Vaughan%20&%20Double%20Trouble/Blues%20At%20Sunrise/04%20Chitllins%20Con%20Carne.m4a + File Folder Count4 + Library Folder Count1 + + 2618 + + Track ID2618 + NameDirty Pool + ArtistStevie Ray Vaughan & Double Trouble + ComposerS. R. Vaughan, D. Bramhall + AlbumBlues At Sunrise + GenreBlues + KindAAC audio file + Size7326097 + Total Time300200 + Disc Number1 + Disc Count1 + Track Number9 + Track Count10 + Year2000 + Date Modified2007-10-01T13:24:21Z + Date Added2009-10-03T14:52:52Z + Bit Rate192 + Sample Rate44100 + Normalization1397 + Artwork Count1 + Persistent ID3487F793B1AA0967 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stevie%20Ray%20Vaughan%20&%20Double%20Trouble/Blues%20At%20Sunrise/09%20Dirty%20Pool.m4a + File Folder Count4 + Library Folder Count1 + + 2620 + + Track ID2620 + NameLeave My Girl Alone + ArtistStevie Ray Vaughan & Double Trouble + ComposerB. Guy + AlbumBlues At Sunrise + GenreBlues + KindAAC audio file + Size6213326 + Total Time253266 + Disc Number1 + Disc Count1 + Track Number2 + Track Count10 + Year2000 + Date Modified2007-10-01T13:18:35Z + Date Added2009-10-03T14:52:53Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3338659120 + Play Date UTC2009-10-17T15:48:40Z + Normalization1920 + Artwork Count1 + Persistent IDB7B50C2BE7AB331F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stevie%20Ray%20Vaughan%20&%20Double%20Trouble/Blues%20At%20Sunrise/02%20Leave%20My%20Girl%20Alone.m4a + File Folder Count4 + Library Folder Count1 + + 2622 + + Track ID2622 + NameMay I Have A Talk With You + ArtistStevie Ray Vaughan & Double Trouble + ComposerC. Burnette "Howlin' Wolf" + AlbumBlues At Sunrise + GenreBlues + KindAAC audio file + Size8485562 + Total Time349066 + Disc Number1 + Disc Count1 + Track Number8 + Track Count10 + Year2000 + Date Modified2007-10-01T13:23:42Z + Date Added2009-10-03T14:52:53Z + Bit Rate192 + Sample Rate44100 + Normalization1929 + Artwork Count1 + Persistent ID3B21DDAB95FF6ECB + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stevie%20Ray%20Vaughan%20&%20Double%20Trouble/Blues%20At%20Sunrise/08%20May%20I%20Have%20A%20Talk%20With%20You.m4a + File Folder Count4 + Library Folder Count1 + + 2624 + + Track ID2624 + NameTexas Flood (Video Version) + ArtistStevie Ray Vaughan & Double Trouble + ComposerL. C. Davis, J. W. Scott + AlbumBlues At Sunrise + GenreBlues + KindAAC audio file + Size14181197 + Total Time583973 + Disc Number1 + Disc Count1 + Track Number7 + Track Count10 + Year2000 + Date Modified2007-10-01T13:22:57Z + Date Added2009-10-03T14:52:53Z + Bit Rate192 + Sample Rate44100 + Normalization2187 + Artwork Count1 + Persistent IDB62EBF8B77960AC6 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stevie%20Ray%20Vaughan%20&%20Double%20Trouble/Blues%20At%20Sunrise/07%20Texas%20Flood%20(Video%20Version).m4a + File Folder Count4 + Library Folder Count1 + + 2626 + + Track ID2626 + NameThe Sky Is Crying + ArtistStevie Ray Vaughan & Double Trouble + ComposerE. James, M. Levy, C. Lewis + AlbumBlues At Sunrise + GenreBlues + KindAAC audio file + Size6218379 + Total Time248826 + Disc Number1 + Disc Count1 + Track Number6 + Track Count10 + Year2000 + Date Modified2007-10-01T13:21:42Z + Date Added2009-10-03T14:52:53Z + Bit Rate192 + Sample Rate44100 + Normalization1787 + Artwork Count1 + Sort NameSky Is Crying + Persistent ID0AE89263929E0EF9 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stevie%20Ray%20Vaughan%20&%20Double%20Trouble/Blues%20At%20Sunrise/06%20The%20Sky%20Is%20Crying.m4a + File Folder Count4 + Library Folder Count1 + + 2628 + + Track ID2628 + NameThe Things That I Used To Do + ArtistStevie Ray Vaughan & Double Trouble + ComposerE. Jones + AlbumBlues At Sunrise + GenreBlues + KindAAC audio file + Size7182637 + Total Time294400 + Disc Number1 + Disc Count1 + Track Number5 + Track Count10 + Year2000 + Date Modified2007-10-01T13:21:10Z + Date Added2009-10-03T14:52:53Z + Bit Rate192 + Sample Rate44100 + Normalization2051 + Artwork Count1 + Sort NameThings That I Used To Do + Persistent IDD69A6462D23C56F2 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stevie%20Ray%20Vaughan%20&%20Double%20Trouble/Blues%20At%20Sunrise/05%20The%20Things%20That%20I%20Used%20To%20Do.m4a + File Folder Count4 + Library Folder Count1 + + 2630 + + Track ID2630 + NameTin Pan Alley (Aka Roughest Place In Town) + ArtistStevie Ray Vaughan & Double Trouble + ComposerR. Geddins + AlbumBlues At Sunrise + GenreBlues + KindAAC audio file + Size16869477 + Total Time686826 + Disc Number1 + Disc Count1 + Track Number3 + Track Count10 + Year2000 + Date Modified2007-10-01T13:20:02Z + Date Added2009-10-03T14:52:53Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Persistent ID0C882D035B68DD14 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stevie%20Ray%20Vaughan%20&%20Double%20Trouble/Blues%20At%20Sunrise/03%20Tin%20Pan%20Alley%20(Aka%20Roughest%20Place%20In%20Town).m4a + File Folder Count4 + Library Folder Count1 + + 2632 + + Track ID2632 + NameLooking For Safety + ArtistSteve Roach + Album ArtistSteve Roach + AlbumDreamtime Return + GenreDance & DJ + KindMPEG audio file + Size52194914 + Total Time1876741 + Disc Number2 + Disc Count2 + Track Number1 + Track Count5 + Year1987 + Date Modified2008-11-23T18:01:56Z + Date Added2009-10-03T14:52:53Z + Bit Rate222 + Sample Rate44100 + CommentsAmazon.com Song ID: 206074663 + Artwork Count1 + Persistent IDFB863E54381CCCD8 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Steve%20Roach/Dreamtime%20Return/2-01%20Looking%20For%20Safety.mp3 + File Folder Count4 + Library Folder Count1 + + 2634 + + Track ID2634 + NameThrough a Strong Eye + ArtistSteve Roach + Album ArtistSteve Roach + AlbumDreamtime Return + GenreDance & DJ + KindMPEG audio file + Size11744389 + Total Time411036 + Disc Number2 + Disc Count2 + Track Number2 + Track Count5 + Year1987 + Date Modified2008-11-23T18:03:42Z + Date Added2009-10-03T14:52:54Z + Bit Rate227 + Sample Rate44100 + CommentsAmazon.com Song ID: 206074664 + Artwork Count1 + Persistent IDADEC2D27C5AFA4E5 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Steve%20Roach/Dreamtime%20Return/2-02%20Through%20a%20Strong%20Eye.mp3 + File Folder Count4 + Library Folder Count1 + + 2636 + + Track ID2636 + NameThe Ancient Day + ArtistSteve Roach + Album ArtistSteve Roach + AlbumDreamtime Return + GenreDance & DJ + KindMPEG audio file + Size10889797 + Total Time367307 + Disc Number2 + Disc Count2 + Track Number3 + Track Count5 + Year1987 + Date Modified2008-11-23T18:05:20Z + Date Added2009-10-03T14:52:54Z + Bit Rate236 + Sample Rate44100 + CommentsAmazon.com Song ID: 206074665 + Artwork Count1 + Sort NameAncient Day + Persistent ID06007619DF1CF3D1 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Steve%20Roach/Dreamtime%20Return/2-03%20The%20Ancient%20Day.mp3 + File Folder Count4 + Library Folder Count1 + + 2638 + + Track ID2638 + NameRed Twilight With The Old Ones + ArtistSteve Roach + Album ArtistSteve Roach + AlbumDreamtime Return + GenreDance & DJ + KindMPEG audio file + Size18334312 + Total Time590210 + Disc Number2 + Disc Count2 + Track Number4 + Track Count5 + Year1987 + Date Modified2008-11-23T18:08:05Z + Date Added2009-10-03T14:52:54Z + Bit Rate248 + Sample Rate44100 + CommentsAmazon.com Song ID: 206074666 + Artwork Count1 + Persistent ID1CB5585EED974359 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Steve%20Roach/Dreamtime%20Return/2-04%20Red%20Twilight%20With%20The%20Old%20Ones.mp3 + File Folder Count4 + Library Folder Count1 + + 2640 + + Track ID2640 + NameThe Return + ArtistSteve Roach + Album ArtistSteve Roach + AlbumDreamtime Return + GenreDance & DJ + KindMPEG audio file + Size15034867 + Total Time531304 + Disc Number2 + Disc Count2 + Track Number5 + Track Count5 + Year1987 + Date Modified2008-11-23T18:10:20Z + Date Added2009-10-03T14:52:54Z + Bit Rate225 + Sample Rate44100 + CommentsAmazon.com Song ID: 206074667 + Artwork Count1 + Sort NameReturn + Persistent ID5448D7E27D279FC2 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Steve%20Roach/Dreamtime%20Return/2-05%20The%20Return.mp3 + File Folder Count4 + Library Folder Count1 + + 2642 + + Track ID2642 + NameTowards The Dream + ArtistSteve Roach + Album ArtistSteve Roach + AlbumDreamtime Return + GenreDance & DJ + KindMPEG audio file + Size13421306 + Total Time429766 + Disc Number1 + Disc Count2 + Track Number1 + Track Count9 + Year1987 + Date Modified2008-11-23T17:20:23Z + Date Added2009-10-03T14:52:54Z + Bit Rate249 + Sample Rate44100 + CommentsAmazon.com Song ID: 206074649 + Artwork Count1 + Persistent ID9830A98D8B33D9E7 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Steve%20Roach/Dreamtime%20Return/1-01%20Towards%20The%20Dream.mp3 + File Folder Count4 + Library Folder Count1 + + 2644 + + Track ID2644 + NameThe Continent + ArtistSteve Roach + Album ArtistSteve Roach + AlbumDreamtime Return + GenreDance & DJ + KindMPEG audio file + Size8433419 + Total Time287085 + Disc Number1 + Disc Count2 + Track Number2 + Track Count9 + Year1987 + Date Modified2008-11-23T17:23:31Z + Date Added2009-10-03T14:52:54Z + Bit Rate234 + Sample Rate44100 + CommentsAmazon.com Song ID: 206074650 + Artwork Count1 + Sort NameContinent + Persistent IDC6FA68AE1A23C0E0 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Steve%20Roach/Dreamtime%20Return/1-02%20The%20Continent.mp3 + File Folder Count4 + Library Folder Count1 + + 2646 + + Track ID2646 + NameSongline + ArtistSteve Roach + Album ArtistSteve Roach + AlbumDreamtime Return + GenreDance & DJ + KindMPEG audio file + Size5244668 + Total Time181968 + Disc Number1 + Disc Count2 + Track Number3 + Track Count9 + Year1987 + Date Modified2008-11-23T17:25:35Z + Date Added2009-10-03T14:52:55Z + Bit Rate229 + Sample Rate44100 + CommentsAmazon.com Song ID: 206074651 + Artwork Count1 + Persistent ID747F7E19702A76F4 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Steve%20Roach/Dreamtime%20Return/1-03%20Songline.mp3 + File Folder Count4 + Library Folder Count1 + + 2648 + + Track ID2648 + NameAirtribe Meets The Dream Ghost + ArtistSteve Roach + Album ArtistSteve Roach + AlbumDreamtime Return + GenreDance & DJ + KindMPEG audio file + Size12693660 + Total Time427807 + Disc Number1 + Disc Count2 + Track Number4 + Track Count9 + Year1987 + Date Modified2008-11-23T17:30:05Z + Date Added2009-10-03T14:52:55Z + Bit Rate236 + Sample Rate44100 + CommentsAmazon.com Song ID: 206074657 + Artwork Count1 + Persistent ID8E98935A7C4A5733 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Steve%20Roach/Dreamtime%20Return/1-04%20Airtribe%20Meets%20The%20Dream%20Ghost.mp3 + File Folder Count4 + Library Folder Count1 + + 2650 + + Track ID2650 + NameA Circular Ceremony + ArtistSteve Roach + Album ArtistSteve Roach + AlbumDreamtime Return + GenreDance & DJ + KindMPEG audio file + Size21427816 + Total Time678739 + Disc Number1 + Disc Count2 + Track Number5 + Track Count9 + Year1987 + Date Modified2008-11-23T17:37:37Z + Date Added2009-10-03T14:52:55Z + Bit Rate252 + Sample Rate44100 + CommentsAmazon.com Song ID: 206074658 + Artwork Count1 + Sort NameCircular Ceremony + Persistent ID4F750A34C9337332 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Steve%20Roach/Dreamtime%20Return/1-05%20A%20Circular%20Ceremony.mp3 + File Folder Count4 + Library Folder Count1 + + 2652 + + Track ID2652 + NameThe Other Side + ArtistSteve Roach + Album ArtistSteve Roach + AlbumDreamtime Return + GenreDance & DJ + KindMPEG audio file + Size23742034 + Total Time791353 + Disc Number1 + Disc Count2 + Track Number6 + Track Count9 + Year1987 + Date Modified2008-11-23T17:43:30Z + Date Added2009-10-03T14:52:55Z + Bit Rate239 + Sample Rate44100 + CommentsAmazon.com Song ID: 206074659 + Artwork Count1 + Sort NameOther Side + Persistent ID3C9BBB8C15700B4B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Steve%20Roach/Dreamtime%20Return/1-06%20The%20Other%20Side.mp3 + File Folder Count4 + Library Folder Count1 + + 2654 + + Track ID2654 + NameMagnificent Gallery + ArtistSteve Roach + Album ArtistSteve Roach + AlbumDreamtime Return + GenreDance & DJ + KindMPEG audio file + Size10455152 + Total Time361586 + Disc Number1 + Disc Count2 + Track Number7 + Track Count9 + Year1987 + Date Modified2008-11-23T17:46:02Z + Date Added2009-10-03T14:52:55Z + Bit Rate230 + Sample Rate44100 + CommentsAmazon.com Song ID: 206074660 + Artwork Count1 + Persistent ID46A4F9C9836DF082 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Steve%20Roach/Dreamtime%20Return/1-07%20Magnificent%20Gallery.mp3 + File Folder Count4 + Library Folder Count1 + + 2656 + + Track ID2656 + NameTruth In Passing + ArtistSteve Roach + Album ArtistSteve Roach + AlbumDreamtime Return + GenreDance & DJ + KindMPEG audio file + Size15050645 + Total Time529345 + Disc Number1 + Disc Count2 + Track Number8 + Track Count9 + Year1987 + Date Modified2008-11-23T17:49:41Z + Date Added2009-10-03T14:52:55Z + Bit Rate226 + Sample Rate44100 + CommentsAmazon.com Song ID: 206074661 + Artwork Count1 + Persistent ID304266D02CC19566 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Steve%20Roach/Dreamtime%20Return/1-08%20Truth%20In%20Passing.mp3 + File Folder Count4 + Library Folder Count1 + + 2658 + + Track ID2658 + NameAustralian Dawn - The Quiet Earth Cries Inside + ArtistSteve Roach + Album ArtistSteve Roach + AlbumDreamtime Return + GenreDance & DJ + KindMPEG audio file + Size11146045 + Total Time377417 + Disc Number1 + Disc Count2 + Track Number9 + Track Count9 + Year1987 + Date Modified2008-11-23T17:52:26Z + Date Added2009-10-03T14:52:55Z + Bit Rate235 + Sample Rate44100 + CommentsAmazon.com Song ID: 206074662 + Artwork Count1 + Persistent IDD583796F70ADB408 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Steve%20Roach/Dreamtime%20Return/1-09%20Australian%20Dawn%20-%20The%20Quiet%20Earth%20Cries%20Inside.mp3 + File Folder Count4 + Library Folder Count1 + + 2660 + + Track ID2660 + NameThe Girl From Ipanema + ArtistStan Getz & João Gilberto + ComposerAntonio Carlos Brasiliero de Almeida Jobim, Marcus Vinícius da Cruz de Melo Moraes, Norman Gimbel + AlbumGetz/Gilberto + GenreLatin + KindAAC audio file + Size7893175 + Total Time324613 + Disc Number1 + Disc Count1 + Track Number1 + Track Count10 + Year1989 + Date Modified2006-07-28T03:36:32Z + Date Added2009-10-03T14:52:56Z + Bit Rate192 + Sample Rate44100 + Play Count4 + Play Date3471623176 + Play Date UTC2014-01-03T14:16:16Z + Normalization881 + Artwork Count1 + Sort NameGirl From Ipanema + Persistent ID7CF370F5CA15E2AD + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stan%20Getz%20&%20Joa%CC%83o%20Gilberto/Getz_Gilberto/01%20The%20Girl%20From%20Ipanema.m4a + File Folder Count4 + Library Folder Count1 + + 2662 + + Track ID2662 + NameDoralice + ArtistStan Getz & João Gilberto + ComposerDori Caymmi, Antônio Almeida + AlbumGetz/Gilberto + GenreLatin + KindAAC audio file + Size4078869 + Total Time166276 + Disc Number1 + Disc Count1 + Track Number2 + Track Count10 + Year1989 + Date Modified2006-07-28T03:36:34Z + Date Added2009-10-03T14:52:56Z + Bit Rate192 + Sample Rate44100 + Play Count2 + Play Date3471623343 + Play Date UTC2014-01-03T14:19:03Z + Normalization724 + Artwork Count1 + Persistent IDDC1F5F90C4FE615C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stan%20Getz%20&%20Joa%CC%83o%20Gilberto/Getz_Gilberto/02%20Doralice.m4a + File Folder Count4 + Library Folder Count1 + + 2664 + + Track ID2664 + NamePara Machuchar Meu Coração + ArtistStan Getz & João Gilberto + ComposerAry Evangelista Barroso + AlbumGetz/Gilberto + GenreLatin + KindAAC audio file + Size7438026 + Total Time305805 + Disc Number1 + Disc Count1 + Track Number3 + Track Count10 + Year1989 + Date Modified2006-07-28T03:36:34Z + Date Added2009-10-03T14:52:56Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3471623648 + Play Date UTC2014-01-03T14:24:08Z + Normalization896 + Artwork Count1 + Persistent ID389A29FC5DC34F07 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stan%20Getz%20&%20Joa%CC%83o%20Gilberto/Getz_Gilberto/03%20Para%20Machuchar%20Meu%20Corac%CC%A7a%CC%83o.m4a + File Folder Count4 + Library Folder Count1 + + 2666 + + Track ID2666 + NameDesafinado (Off Key) + ArtistStan Getz & João Gilberto + ComposerAntonio Carlos Brasiliero de Almeida Jobim, Newton Ferreira de Mendonça + AlbumGetz/Gilberto + GenreLatin + KindAAC audio file + Size6134876 + Total Time255766 + Disc Number1 + Disc Count1 + Track Number4 + Track Count10 + Year1989 + Date Modified2006-07-28T03:36:36Z + Date Added2009-10-03T14:52:56Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3471623904 + Play Date UTC2014-01-03T14:28:24Z + Normalization1104 + Artwork Count1 + Persistent ID5C9638C4DDDA941D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stan%20Getz%20&%20Joa%CC%83o%20Gilberto/Getz_Gilberto/04%20Desafinado%20(Off%20Key).m4a + File Folder Count4 + Library Folder Count1 + + 2668 + + Track ID2668 + NameCorcovado (Quiet Nights of Quiet Stars) + ArtistStan Getz & João Gilberto + ComposerAntonio Carlos Brasiliero de Almeida Jobim, Frederick Eugene John "Gene" Lees + AlbumGetz/Gilberto + GenreLatin + KindAAC audio file + Size6248448 + Total Time256602 + Disc Number1 + Disc Count1 + Track Number5 + Track Count10 + Year1989 + Date Modified2006-07-28T03:36:36Z + Date Added2009-10-03T14:52:56Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3471624161 + Play Date UTC2014-01-03T14:32:41Z + Normalization871 + Artwork Count1 + Persistent ID8027081F6B6BCC94 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stan%20Getz%20&%20Joa%CC%83o%20Gilberto/Getz_Gilberto/05%20Corcovado%20(Quiet%20Nights%20of%20Quiet%20Stars).m4a + File Folder Count4 + Library Folder Count1 + + 2670 + + Track ID2670 + NameSo Danço Samba + ArtistStan Getz & João Gilberto + ComposerAntonio Carlos Brasiliero de Almeida Jobim, Vinícius de Moraes + AlbumGetz/Gilberto + GenreLatin + KindAAC audio file + Size5449037 + Total Time225742 + Disc Number1 + Disc Count1 + Track Number6 + Track Count10 + Year1989 + Date Modified2006-07-28T03:36:38Z + Date Added2009-10-03T14:52:56Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3471624386 + Play Date UTC2014-01-03T14:36:26Z + Normalization1163 + Artwork Count1 + Persistent ID31DA95EDDD313D67 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stan%20Getz%20&%20Joa%CC%83o%20Gilberto/Getz_Gilberto/06%20So%20Danc%CC%A7o%20Samba.m4a + File Folder Count4 + Library Folder Count1 + + 2672 + + Track ID2672 + NameO Grande Amor + ArtistStan Getz & João Gilberto + ComposerAntonio Carlos Brasiliero de Almeida Jobim, Vinícius de Moraes + AlbumGetz/Gilberto + GenreLatin + KindAAC audio file + Size7952225 + Total Time327051 + Disc Number1 + Disc Count1 + Track Number7 + Track Count10 + Year1989 + Date Modified2006-07-28T03:36:40Z + Date Added2009-10-03T14:52:56Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3471624713 + Play Date UTC2014-01-03T14:41:53Z + Normalization920 + Artwork Count1 + Persistent IDE01A084D651985EC + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stan%20Getz%20&%20Joa%CC%83o%20Gilberto/Getz_Gilberto/07%20O%20Grande%20Amor.m4a + File Folder Count4 + Library Folder Count1 + + 2674 + + Track ID2674 + NameVivo Sonhando + ArtistStan Getz & João Gilberto + ComposerAntonio Carlos Brasiliero de Almeida Jobim + AlbumGetz/Gilberto + GenreLatin + KindAAC audio file + Size4511674 + Total Time184411 + Disc Number1 + Disc Count1 + Track Number8 + Track Count10 + Year1989 + Date Modified2006-07-28T03:36:40Z + Date Added2009-10-03T14:52:57Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3471624898 + Play Date UTC2014-01-03T14:44:58Z + Normalization1012 + Artwork Count1 + Persistent IDFED5DFFF0D79F221 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stan%20Getz%20&%20Joa%CC%83o%20Gilberto/Getz_Gilberto/08%20Vivo%20Sonhando.m4a + File Folder Count4 + Library Folder Count1 + + 2676 + + Track ID2676 + NameThe Girl From Ipanema (45 rpm issue) + ArtistStan Getz & João Gilberto + ComposerAntonio Carlos Brasiliero de Almeida Jobim, Marcus Vinícius da Cruz de Melo Moraes, Norman Gimbel + AlbumGetz/Gilberto + GenreLatin + KindAAC audio file + Size4284729 + Total Time174844 + Disc Number1 + Disc Count1 + Track Number9 + Track Count10 + Year1989 + Date Modified2006-07-28T03:36:42Z + Date Added2009-10-03T14:52:57Z + Bit Rate192 + Sample Rate44100 + Play Count2 + Play Date3471625073 + Play Date UTC2014-01-03T14:47:53Z + Normalization549 + Artwork Count1 + Sort NameGirl From Ipanema (45 rpm issue) + Persistent IDD3A51742E9A3113E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stan%20Getz%20&%20Joa%CC%83o%20Gilberto/Getz_Gilberto/09%20The%20Girl%20From%20Ipanema%20(45%20rpm%20issue).m4a + File Folder Count4 + Library Folder Count1 + + 2678 + + Track ID2678 + NameCorcovado (Quiet Nights of Quiet Stars) (45 rpm issue) + ArtistStan Getz & João Gilberto + ComposerAntonio Carlos Brasiliero de Almeida Jobim, Frederick Eugene John "Gene" Lees + AlbumGetz/Gilberto + GenreLatin + KindAAC audio file + Size3468417 + Total Time140850 + Disc Number1 + Disc Count1 + Track Number10 + Track Count10 + Year1989 + Date Modified2006-07-28T03:36:44Z + Date Added2009-10-03T14:52:57Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3471625213 + Play Date UTC2014-01-03T14:50:13Z + Skip Count1 + Skip Date2013-01-20T15:42:52Z + Normalization943 + Artwork Count1 + Persistent ID62A28539D99CB4FF + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stan%20Getz%20&%20Joa%CC%83o%20Gilberto/Getz_Gilberto/10%20Corcovado%20(Quiet%20Nights%20of%20Quiet%20Stars)%20(45%20rpm%20issue).m4a + File Folder Count4 + Library Folder Count1 + + 2680 + + Track ID2680 + NameMrs. Robinson + ArtistSimon & Garfunkel + AlbumThe Concert In Central Park + GenreRock + KindAAC audio file + Size5845523 + Total Time241416 + Disc Number1 + Disc Count1 + Track Number1 + Track Count19 + Year1982 + Date Modified2006-08-13T06:46:36Z + Date Added2009-10-03T14:53:29Z + Bit Rate192 + Sample Rate44100 + Normalization1255 + Artwork Count1 + Sort AlbumConcert In Central Park + Persistent IDF718DF5AD2637B05 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Simon%20&%20Garfunkel/The%20Concert%20In%20Central%20Park/01%20Mrs.%20Robinson.m4a + File Folder Count4 + Library Folder Count1 + + 2682 + + Track ID2682 + NameHomeward Bound + ArtistSimon & Garfunkel + AlbumThe Concert In Central Park + GenreRock + KindAAC audio file + Size6292805 + Total Time259435 + Disc Number1 + Disc Count1 + Track Number2 + Track Count19 + Year1982 + Date Modified2006-08-13T06:46:34Z + Date Added2009-10-03T14:53:29Z + Bit Rate192 + Sample Rate44100 + Normalization1170 + Artwork Count1 + Sort AlbumConcert In Central Park + Persistent ID44B58EC0BB8D999E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Simon%20&%20Garfunkel/The%20Concert%20In%20Central%20Park/02%20Homeward%20Bound.m4a + File Folder Count4 + Library Folder Count1 + + 2684 + + Track ID2684 + NameAmerica + ArtistSimon & Garfunkel + AlbumThe Concert In Central Park + GenreRock + KindAAC audio file + Size6925127 + Total Time285580 + Disc Number1 + Disc Count1 + Track Number3 + Track Count19 + Year1982 + Date Modified2006-08-13T06:46:32Z + Date Added2009-10-03T14:53:29Z + Bit Rate192 + Sample Rate44100 + Normalization922 + Artwork Count1 + Sort AlbumConcert In Central Park + Persistent IDDE05649A9508954E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Simon%20&%20Garfunkel/The%20Concert%20In%20Central%20Park/03%20America.m4a + File Folder Count4 + Library Folder Count1 + + 2686 + + Track ID2686 + NameMe And Julio Down By The Schoolyard + ArtistSimon & Garfunkel + AlbumThe Concert In Central Park + GenreRock + KindAAC audio file + Size5356496 + Total Time220448 + Disc Number1 + Disc Count1 + Track Number4 + Track Count19 + Year1982 + Date Modified2006-08-13T06:46:28Z + Date Added2009-10-03T14:53:29Z + Bit Rate192 + Sample Rate44100 + Normalization1117 + Artwork Count1 + Sort AlbumConcert In Central Park + Persistent ID40E6E6EFF70C3560 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Simon%20&%20Garfunkel/The%20Concert%20In%20Central%20Park/04%20Me%20And%20Julio%20Down%20By%20The%20Schoolyard.m4a + File Folder Count4 + Library Folder Count1 + + 2688 + + Track ID2688 + NameScarborough Fair + ArtistSimon & Garfunkel + AlbumThe Concert In Central Park + GenreRock + KindAAC audio file + Size5556643 + Total Time228784 + Disc Number1 + Disc Count1 + Track Number5 + Track Count19 + Year1982 + Date Modified2006-08-13T06:46:26Z + Date Added2009-10-03T14:53:29Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3484471711 + Play Date UTC2014-06-01T07:18:31Z + Normalization329 + Artwork Count1 + Sort AlbumConcert In Central Park + Persistent ID725B8B7E9C812502 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Simon%20&%20Garfunkel/The%20Concert%20In%20Central%20Park/05%20Scarborough%20Fair.m4a + File Folder Count4 + Library Folder Count1 + + 2690 + + Track ID2690 + NameApril Come She Will + ArtistSimon & Garfunkel + AlbumThe Concert In Central Park + GenreRock + KindAAC audio file + Size3484096 + Total Time142870 + Disc Number1 + Disc Count1 + Track Number6 + Track Count19 + Year1982 + Date Modified2006-08-13T06:46:24Z + Date Added2009-10-03T14:53:29Z + Bit Rate192 + Sample Rate44100 + Normalization205 + Artwork Count1 + Sort AlbumConcert In Central Park + Persistent ID807629592987A4CA + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Simon%20&%20Garfunkel/The%20Concert%20In%20Central%20Park/06%20April%20Come%20She%20Will.m4a + File Folder Count4 + Library Folder Count1 + + 2692 + + Track ID2692 + NameWake Up Little Susie + ArtistSimon & Garfunkel + AlbumThe Concert In Central Park + GenreRock + KindAAC audio file + Size3384987 + Total Time138737 + Disc Number1 + Disc Count1 + Track Number7 + Track Count19 + Year1982 + Date Modified2006-08-13T06:46:22Z + Date Added2009-10-03T14:53:29Z + Bit Rate192 + Sample Rate44100 + Normalization1258 + Artwork Count1 + Sort AlbumConcert In Central Park + Persistent ID1AA8679E004C96E0 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Simon%20&%20Garfunkel/The%20Concert%20In%20Central%20Park/07%20Wake%20Up%20Little%20Susie.m4a + File Folder Count4 + Library Folder Count1 + + 2694 + + Track ID2694 + NameStill Crazy After All These Years + ArtistSimon & Garfunkel + AlbumThe Concert In Central Park + GenreRock + KindAAC audio file + Size5533209 + Total Time227809 + Disc Number1 + Disc Count1 + Track Number8 + Track Count19 + Year1982 + Date Modified2006-08-13T06:46:20Z + Date Added2009-10-03T14:53:29Z + Bit Rate192 + Sample Rate44100 + Normalization1122 + Artwork Count1 + Sort AlbumConcert In Central Park + Persistent ID42B5F0E808742BEE + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Simon%20&%20Garfunkel/The%20Concert%20In%20Central%20Park/08%20Still%20Crazy%20After%20All%20These%20Years.m4a + File Folder Count4 + Library Folder Count1 + + 2696 + + Track ID2696 + NameAmerican Tune + ArtistSimon & Garfunkel + AlbumThe Concert In Central Park + GenreRock + KindAAC audio file + Size6657073 + Total Time274504 + Disc Number1 + Disc Count1 + Track Number9 + Track Count19 + Year1982 + Date Modified2006-08-13T06:46:18Z + Date Added2009-10-03T14:53:30Z + Bit Rate192 + Sample Rate44100 + Normalization849 + Artwork Count1 + Sort AlbumConcert In Central Park + Persistent ID65C17D12A5C7CE7B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Simon%20&%20Garfunkel/The%20Concert%20In%20Central%20Park/09%20American%20Tune.m4a + File Folder Count4 + Library Folder Count1 + + 2698 + + Track ID2698 + NameLate In The Evening + ArtistSimon & Garfunkel + AlbumThe Concert In Central Park + GenreRock + KindAAC audio file + Size6047474 + Total Time249218 + Disc Number1 + Disc Count1 + Track Number10 + Track Count19 + Year1982 + Date Modified2006-08-13T06:46:14Z + Date Added2009-10-03T14:53:30Z + Bit Rate192 + Sample Rate44100 + Normalization971 + Artwork Count1 + Sort AlbumConcert In Central Park + Persistent ID91B946033F70A2A3 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Simon%20&%20Garfunkel/The%20Concert%20In%20Central%20Park/10%20Late%20In%20The%20Evening.m4a + File Folder Count4 + Library Folder Count1 + + 2700 + + Track ID2700 + NameSlip Slidin' Away + ArtistSimon & Garfunkel + AlbumThe Concert In Central Park + GenreRock + KindAAC audio file + Size7128494 + Total Time293986 + Disc Number1 + Disc Count1 + Track Number11 + Track Count19 + Year1982 + Date Modified2006-08-13T06:46:12Z + Date Added2009-10-03T14:53:30Z + Bit Rate192 + Sample Rate44100 + Normalization457 + Artwork Count1 + Sort AlbumConcert In Central Park + Persistent IDFEBD97E6B708B2AF + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Simon%20&%20Garfunkel/The%20Concert%20In%20Central%20Park/11%20Slip%20Slidin'%20Away.m4a + File Folder Count4 + Library Folder Count1 + + 2702 + + Track ID2702 + NameA Heart In New York + ArtistSimon & Garfunkel + AlbumThe Concert In Central Park + GenreRock + KindAAC audio file + Size3915816 + Total Time160843 + Disc Number1 + Disc Count1 + Track Number12 + Track Count19 + Year1982 + Date Modified2006-08-13T06:46:08Z + Date Added2009-10-03T14:53:30Z + Bit Rate192 + Sample Rate44100 + Normalization921 + Artwork Count1 + Sort AlbumConcert In Central Park + Sort NameHeart In New York + Persistent IDA624E3D3F16A8B56 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Simon%20&%20Garfunkel/The%20Concert%20In%20Central%20Park/12%20A%20Heart%20In%20New%20York.m4a + File Folder Count4 + Library Folder Count1 + + 2704 + + Track ID2704 + NameKodachrome~Mabellene + ArtistSimon & Garfunkel + AlbumThe Concert In Central Park + GenreRock + KindAAC audio file + Size8532391 + Total Time352013 + Disc Number1 + Disc Count1 + Track Number13 + Track Count19 + Year1982 + Date Modified2006-08-12T12:13:58Z + Date Added2009-10-03T14:53:30Z + Bit Rate192 + Sample Rate44100 + Normalization1184 + Artwork Count1 + Sort AlbumConcert In Central Park + Persistent ID1E485EE83A0AC817 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Simon%20&%20Garfunkel/The%20Concert%20In%20Central%20Park/13%20Kodachrome%EF%BD%9EMabellene.m4a + File Folder Count4 + Library Folder Count1 + + 2706 + + Track ID2706 + NameBridge Over Troubled Water + ArtistSimon & Garfunkel + AlbumThe Concert In Central Park + GenreRock + KindAAC audio file + Size6808739 + Total Time280774 + Disc Number1 + Disc Count1 + Track Number14 + Track Count19 + Year1982 + Date Modified2006-08-13T06:46:06Z + Date Added2009-10-03T14:53:30Z + Bit Rate192 + Sample Rate44100 + Normalization667 + Artwork Count1 + Sort AlbumConcert In Central Park + Persistent IDB986226478F4C87E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Simon%20&%20Garfunkel/The%20Concert%20In%20Central%20Park/14%20Bridge%20Over%20Troubled%20Water.m4a + File Folder Count4 + Library Folder Count1 + + 2708 + + Track ID2708 + NameFifty Ways To Leave Your Lover + ArtistSimon & Garfunkel + AlbumThe Concert In Central Park + GenreRock + KindAAC audio file + Size6747512 + Total Time278243 + Disc Number1 + Disc Count1 + Track Number15 + Track Count19 + Year1982 + Date Modified2006-08-13T06:46:04Z + Date Added2009-10-03T14:53:30Z + Bit Rate192 + Sample Rate44100 + Normalization1196 + Artwork Count1 + Sort AlbumConcert In Central Park + Persistent IDC2621BE91E05BE38 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Simon%20&%20Garfunkel/The%20Concert%20In%20Central%20Park/15%20Fifty%20Ways%20To%20Leave%20Your%20Lover.m4a + File Folder Count4 + Library Folder Count1 + + 2710 + + Track ID2710 + NameThe Boxer + ArtistSimon & Garfunkel + AlbumThe Concert In Central Park + GenreRock + KindAAC audio file + Size7673452 + Total Time316509 + Disc Number1 + Disc Count1 + Track Number16 + Track Count19 + Year1982 + Date Modified2006-08-13T06:46:00Z + Date Added2009-10-03T14:53:30Z + Bit Rate192 + Sample Rate44100 + Play Count2 + Play Date3426265240 + Play Date UTC2012-07-27T14:50:40Z + Normalization694 + Artwork Count1 + Sort AlbumConcert In Central Park + Sort NameBoxer + Persistent ID1943E220363B6D12 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Simon%20&%20Garfunkel/The%20Concert%20In%20Central%20Park/16%20The%20Boxer.m4a + File Folder Count4 + Library Folder Count1 + + 2712 + + Track ID2712 + NameOld Friends + ArtistSimon & Garfunkel + AlbumThe Concert In Central Park + GenreRock + KindAAC audio file + Size4342379 + Total Time178606 + Disc Number1 + Disc Count1 + Track Number17 + Track Count19 + Year1982 + Date Modified2006-08-13T06:45:58Z + Date Added2009-10-03T14:53:30Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3426265419 + Play Date UTC2012-07-27T14:53:39Z + Normalization230 + Artwork Count1 + Sort AlbumConcert In Central Park + Persistent IDC2A2C9381CE0DDC4 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Simon%20&%20Garfunkel/The%20Concert%20In%20Central%20Park/17%20Old%20Friends.m4a + File Folder Count4 + Library Folder Count1 + + 2714 + + Track ID2714 + NameThe 59th Street Bridge Song (Feelin' Groovy) + ArtistSimon & Garfunkel + AlbumThe Concert In Central Park + GenreRock + KindAAC audio file + Size3822650 + Total Time156965 + Disc Number1 + Disc Count1 + Track Number18 + Track Count19 + Year1982 + Date Modified2006-08-13T06:45:56Z + Date Added2009-10-03T14:53:31Z + Bit Rate192 + Sample Rate44100 + Normalization529 + Artwork Count1 + Sort AlbumConcert In Central Park + Sort Name59th Street Bridge Song (Feelin' Groovy) + Persistent ID1501CC1BF1CA2027 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Simon%20&%20Garfunkel/The%20Concert%20In%20Central%20Park/18%20The%2059th%20Street%20Bridge%20Song%20(Feelin'%20Groovy).m4a + File Folder Count4 + Library Folder Count1 + + 2716 + + Track ID2716 + NameThe Sounds of Silence + ArtistSimon & Garfunkel + AlbumThe Concert In Central Park + GenreRock + KindAAC audio file + Size5779282 + Total Time238792 + Disc Number1 + Disc Count1 + Track Number19 + Track Count19 + Year1982 + Date Modified2006-08-13T06:45:54Z + Date Added2009-10-03T14:53:31Z + Bit Rate192 + Sample Rate44100 + Normalization449 + Artwork Count1 + Sort AlbumConcert In Central Park + Sort NameSounds of Silence + Persistent ID06533E75DA532865 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Simon%20&%20Garfunkel/The%20Concert%20In%20Central%20Park/19%20The%20Sounds%20of%20Silence.m4a + File Folder Count4 + Library Folder Count1 + + 2718 + + Track ID2718 + NameGaayi Gaayi Ab Kaa Kahi + ArtistShubha Mudgal + ComposerRaidas + AlbumIndian Mystica + GenreWorld + KindAAC audio file + Size20176874 + Total Time639333 + Disc Number1 + Disc Count1 + Track Number1 + Track Count5 + Year2003 + Date Modified2008-10-11T09:59:54Z + Date Added2009-10-03T14:54:14Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3337588692 + Play Date UTC2009-10-05T06:28:12Z + Normalization2593 + Artwork Count1 + Persistent ID3BA0ABD81A01E5AE + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Shubha%20Mudgal/Indian%20Mystica/01%20Gaayi%20Gaayi%20Ab%20Kaa%20Kahi.m4a + File Folder Count4 + Library Folder Count1 + + 2720 + + Track ID2720 + NameUd Re Ud Bihangam + ArtistShubha Mudgal + AlbumIndian Mystica + GenreWorld + KindAAC audio file + Size17546911 + Total Time552533 + Disc Number1 + Disc Count1 + Track Number2 + Track Count5 + Year2003 + Date Modified2008-10-11T09:59:53Z + Date Added2009-10-03T14:54:14Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3337589245 + Play Date UTC2009-10-05T06:37:25Z + Normalization1641 + Artwork Count1 + Persistent IDEE39B8964214CCB0 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Shubha%20Mudgal/Indian%20Mystica/02%20Ud%20Re%20Ud%20Bihangam.m4a + File Folder Count4 + Library Folder Count1 + + 2722 + + Track ID2722 + NameBahut Rahi Babul Ghar Dulahin + ArtistShubha Mudgal + ComposerAmir Khusrau + AlbumIndian Mystica + GenreWorld + KindAAC audio file + Size27728256 + Total Time880133 + Disc Number1 + Disc Count1 + Track Number3 + Track Count5 + Year2003 + Date Modified2008-10-11T09:59:51Z + Date Added2009-10-03T14:54:14Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3337590125 + Play Date UTC2009-10-05T06:52:05Z + Normalization1737 + Artwork Count1 + Persistent IDFB39FA0F6D6CCAC1 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Shubha%20Mudgal/Indian%20Mystica/03%20Bahut%20Rahi%20Babul%20Ghar%20Dulahin.m4a + File Folder Count4 + Library Folder Count1 + + 2724 + + Track ID2724 + NameAb Kasie Chhoote Naam Ratt Taagi + ArtistShubha Mudgal + ComposerRaidas + AlbumIndian Mystica + GenreWorld + KindAAC audio file + Size26534373 + Total Time840000 + Disc Number1 + Disc Count1 + Track Number4 + Track Count5 + Year2003 + Date Modified2008-10-11T09:59:49Z + Date Added2009-10-03T14:54:14Z + Bit Rate256 + Sample Rate44100 + Normalization1710 + Artwork Count1 + Persistent IDAD506F851FA9A2E3 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Shubha%20Mudgal/Indian%20Mystica/04%20Ab%20Kasie%20Chhoote%20Naam%20Ratt%20Taagi.m4a + File Folder Count4 + Library Folder Count1 + + 2726 + + Track ID2726 + NameRas Gagan Gufaa Mein Ajar Jharay + ArtistShubha Mudgal + ComposerKabir + AlbumIndian Mystica + GenreWorld + KindAAC audio file + Size29266819 + Total Time921973 + Disc Number1 + Disc Count1 + Track Number5 + Track Count5 + Year2003 + Date Modified2008-10-11T09:59:47Z + Date Added2009-10-03T14:54:15Z + Bit Rate256 + Sample Rate44100 + Normalization2498 + Artwork Count1 + Persistent ID207333B4FABAA6A3 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Shubha%20Mudgal/Indian%20Mystica/05%20Ras%20Gagan%20Gufaa%20Mein%20Ajar%20Jharay.m4a + File Folder Count4 + Library Folder Count1 + + 2728 + + Track ID2728 + NameDere Dere + ArtistShubha Mudgal + AlbumAb Ke Sawan + GenrePop + KindAAC audio file + Size6290137 + Total Time263360 + Track Number1 + Date Modified2008-10-06T14:12:22Z + Date Added2009-10-03T14:54:15Z + Bit Rate189 + Sample Rate44100 + Play Count1 + Play Date3389363630 + Play Date UTC2011-05-27T12:23:50Z + Skip Count1 + Skip Date2013-07-25T04:25:31Z + Normalization983 + Artwork Count1 + Persistent ID390232F009A2717D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Shubha%20Mudgal/Ab%20Ke%20Sawan/01%20Dere%20Dere.m4a + File Folder Count4 + Library Folder Count1 + + 2730 + + Track ID2730 + NameUsne Kaha + ArtistShubha Mudgal + AlbumAb Ke Sawan + GenrePop + KindAAC audio file + Size7843018 + Total Time329212 + Track Number2 + Date Modified2008-10-06T14:12:23Z + Date Added2009-10-03T14:54:15Z + Bit Rate188 + Sample Rate44100 + Normalization1204 + Artwork Count1 + Persistent ID346079B071D8A19F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Shubha%20Mudgal/Ab%20Ke%20Sawan/02%20Usne%20Kaha.m4a + File Folder Count4 + Library Folder Count1 + + 2732 + + Track ID2732 + NameSeekho Na + ArtistShubha Mudgal + AlbumAb Ke Sawan + GenrePop + KindAAC audio file + Size8489711 + Total Time355311 + Track Number3 + Date Modified2008-10-06T14:12:24Z + Date Added2009-10-03T14:54:15Z + Bit Rate189 + Sample Rate44100 + Normalization870 + Artwork Count1 + Persistent ID4EEA39E195644EC5 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Shubha%20Mudgal/Ab%20Ke%20Sawan/03%20Seekho%20Na.m4a + File Folder Count4 + Library Folder Count1 + + 2734 + + Track ID2734 + NameBhai Re + ArtistShubha Mudgal + AlbumAb Ke Sawan + GenrePop + KindAAC audio file + Size8274378 + Total Time345280 + Track Number4 + Date Modified2008-10-06T14:12:26Z + Date Added2009-10-03T14:54:15Z + Bit Rate189 + Sample Rate44100 + Normalization632 + Artwork Count1 + Persistent IDB2CC86CA84039B0B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Shubha%20Mudgal/Ab%20Ke%20Sawan/04%20Bhai%20Re.m4a + File Folder Count4 + Library Folder Count1 + + 2736 + + Track ID2736 + NameHai Pyar To Musafir + ArtistShubha Mudgal + AlbumAb Ke Sawan + GenrePop + KindAAC audio file + Size5306676 + Total Time221146 + Track Number5 + Date Modified2008-10-06T14:12:27Z + Date Added2009-10-03T14:54:16Z + Bit Rate189 + Sample Rate44100 + Skip Count1 + Skip Date2013-07-25T04:25:49Z + Normalization1163 + Artwork Count1 + Persistent ID6A9910103B38D36B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Shubha%20Mudgal/Ab%20Ke%20Sawan/05%20Hai%20Pyar%20To%20Musafir.m4a + File Folder Count4 + Library Folder Count1 + + 2738 + + Track ID2738 + NameIs Pal + ArtistShubha Mudgal + AlbumAb Ke Sawan + GenrePop + KindAAC audio file + Size8287045 + Total Time345373 + Track Number6 + Date Modified2008-10-06T14:12:28Z + Date Added2009-10-03T14:54:16Z + Bit Rate190 + Sample Rate44100 + Normalization832 + Artwork Count1 + Persistent ID5A17C8D672FA2461 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Shubha%20Mudgal/Ab%20Ke%20Sawan/06%20Is%20Pal.m4a + File Folder Count4 + Library Folder Count1 + + 2740 + + Track ID2740 + NameBairie Chain + ArtistShubha Mudgal + AlbumAb Ke Sawan + GenrePop + KindAAC audio file + Size8046811 + Total Time337803 + Track Number7 + Date Modified2008-10-06T14:12:29Z + Date Added2009-10-03T14:54:16Z + Bit Rate188 + Sample Rate44100 + Normalization980 + Artwork Count1 + Persistent IDCDA03B3CEC027EBC + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Shubha%20Mudgal/Ab%20Ke%20Sawan/07%20Bairie%20Chain.m4a + File Folder Count4 + Library Folder Count1 + + 2742 + + Track ID2742 + NameAb Ke Sawan + ArtistShubha Mudgal + AlbumAb Ke Sawan + GenrePop + KindAAC audio file + Size6359776 + Total Time269862 + Track Number8 + Date Modified2008-10-06T14:12:31Z + Date Added2009-10-03T14:54:16Z + Bit Rate186 + Sample Rate44100 + Normalization894 + Artwork Count1 + Persistent ID141D7BC17A0578F0 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Shubha%20Mudgal/Ab%20Ke%20Sawan/08%20Ab%20Ke%20Sawan.m4a + File Folder Count4 + Library Folder Count1 + + 2744 + + Track ID2744 + NameIntroduction + ArtistShoba Raju + ComposerAnnamacharya + AlbumAnnamacharya Samkeertanalu + GenreAlternative & Punk + KindAAC audio file + Size4409210 + Total Time180649 + Track Number1 + Track Count13 + Date Modified2006-07-30T03:58:30Z + Date Added2009-10-03T14:54:16Z + Bit Rate192 + Sample Rate44100 + Normalization2073 + Artwork Count1 + Persistent ID8387C6C3A19F63F5 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Shoba%20Raju/Annamacharya%20Samkeertanalu/01%20Introduction.m4a + File Folder Count4 + Library Folder Count1 + + 2746 + + Track ID2746 + NameAdivo - Madhyamavathi + ArtistShoba Raju + ComposerAnnamacharya + AlbumAnnamacharya Samkeertanalu + GenreAlternative & Punk + KindAAC audio file + Size10031453 + Total Time413429 + Track Number2 + Track Count13 + Date Modified2006-07-30T03:58:32Z + Date Added2009-10-03T14:54:16Z + Bit Rate192 + Sample Rate44100 + Normalization8681 + Artwork Count1 + Persistent IDF0014328196E620E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Shoba%20Raju/Annamacharya%20Samkeertanalu/02%20Adivo%20-%20Madhyamavathi.m4a + File Folder Count4 + Library Folder Count1 + + 2748 + + Track ID2748 + NameKondalalo - HIndolam + ArtistShoba Raju + ComposerAnnamacharya + AlbumAnnamacharya Samkeertanalu + GenreAlternative & Punk + KindAAC audio file + Size6979506 + Total Time288669 + Track Number3 + Track Count13 + Date Modified2006-07-30T03:58:32Z + Date Added2009-10-03T14:54:17Z + Bit Rate192 + Sample Rate44100 + Normalization5839 + Artwork Count1 + Persistent IDDC376442537CFB39 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Shoba%20Raju/Annamacharya%20Samkeertanalu/03%20Kondalalo%20-%20HIndolam.m4a + File Folder Count4 + Library Folder Count1 + + 2750 + + Track ID2750 + NameChalada - Hamsadhvani + ArtistShoba Raju + ComposerAnnamacharya + AlbumAnnamacharya Samkeertanalu + GenreAlternative & Punk + KindAAC audio file + Size7513079 + Total Time309497 + Track Number4 + Track Count13 + Date Modified2006-07-30T03:58:32Z + Date Added2009-10-03T14:54:17Z + Bit Rate192 + Sample Rate44100 + Normalization8914 + Artwork Count1 + Persistent IDBC8B0E02509F3E68 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Shoba%20Raju/Annamacharya%20Samkeertanalu/04%20Chalada%20-%20Hamsadhvani.m4a + File Folder Count4 + Library Folder Count1 + + 2752 + + Track ID2752 + NameKulukaka - Athana + ArtistShoba Raju + ComposerAnnamacharya + AlbumAnnamacharya Samkeertanalu + GenreAlternative & Punk + KindAAC audio file + Size6948969 + Total Time286834 + Track Number5 + Track Count13 + Date Modified2006-07-30T03:58:32Z + Date Added2009-10-03T14:54:17Z + Bit Rate192 + Sample Rate44100 + Normalization8907 + Artwork Count1 + Persistent ID3139A8B4DCBA55C1 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Shoba%20Raju/Annamacharya%20Samkeertanalu/05%20Kulukaka%20-%20Athana.m4a + File Folder Count4 + Library Folder Count1 + + 2754 + + Track ID2754 + NameSirutanavvula - Todi + ArtistShoba Raju + ComposerAnnamacharya + AlbumAnnamacharya Samkeertanalu + GenreAlternative & Punk + KindAAC audio file + Size5877012 + Total Time244156 + Track Number6 + Track Count13 + Date Modified2006-07-30T03:58:32Z + Date Added2009-10-03T14:54:17Z + Bit Rate192 + Sample Rate44100 + Normalization4112 + Artwork Count1 + Persistent ID9B4B219AAA66E052 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Shoba%20Raju/Annamacharya%20Samkeertanalu/06%20Sirutanavvula%20-%20Todi.m4a + File Folder Count4 + Library Folder Count1 + + 2756 + + Track ID2756 + NameCommentary (English) + ArtistShoba Raju + ComposerAnnamacharya + AlbumAnnamacharya Samkeertanalu + GenreAlternative & Punk + KindAAC audio file + Size3884473 + Total Time159937 + Track Number7 + Track Count13 + Date Modified2006-07-30T03:58:32Z + Date Added2009-10-03T14:54:17Z + Bit Rate192 + Sample Rate44100 + Normalization2441 + Artwork Count1 + Persistent ID33576E6A3AAC7500 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Shoba%20Raju/Annamacharya%20Samkeertanalu/07%20Commentary%20(English).m4a + File Folder Count4 + Library Folder Count1 + + 2758 + + Track ID2758 + NameBramha Kadigina - Mukhari + ArtistShoba Raju + ComposerAnnamacharya + AlbumAnnamacharya Samkeertanalu + GenreAlternative & Punk + KindAAC audio file + Size8552722 + Total Time352756 + Track Number8 + Track Count13 + Date Modified2006-07-30T03:58:32Z + Date Added2009-10-03T14:54:17Z + Bit Rate192 + Sample Rate44100 + Normalization3668 + Artwork Count1 + Persistent ID9EDF85934272F5C0 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Shoba%20Raju/Annamacharya%20Samkeertanalu/08%20Bramha%20Kadigina%20-%20Mukhari.m4a + File Folder Count4 + Library Folder Count1 + + 2760 + + Track ID2760 + NameGovindasrita - Dhrmavathi + ArtistShoba Raju + ComposerAnnamacharya + AlbumAnnamacharya Samkeertanalu + GenreAlternative & Punk + KindAAC audio file + Size8444435 + Total Time348808 + Track Number9 + Track Count13 + Date Modified2006-07-30T03:58:32Z + Date Added2009-10-03T14:54:18Z + Bit Rate192 + Sample Rate44100 + Normalization3822 + Artwork Count1 + Persistent ID708531A4A70DFC1F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Shoba%20Raju/Annamacharya%20Samkeertanalu/09%20Govindasrita%20-%20Dhrmavathi.m4a + File Folder Count4 + Library Folder Count1 + + 2762 + + Track ID2762 + NameEmoko - Tilang + ArtistShoba Raju + ComposerAnnamacharya + AlbumAnnamacharya Samkeertanalu + GenreAlternative & Punk + KindAAC audio file + Size9329560 + Total Time385681 + Track Number10 + Track Count13 + Date Modified2006-07-30T03:58:32Z + Date Added2009-10-03T14:54:18Z + Bit Rate192 + Sample Rate44100 + Normalization3245 + Artwork Count1 + Persistent ID0F0E3267C578CC24 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Shoba%20Raju/Annamacharya%20Samkeertanalu/10%20Emoko%20-%20Tilang.m4a + File Folder Count4 + Library Folder Count1 + + 2764 + + Track ID2764 + NameOho Dem - Bouli + ArtistShoba Raju + ComposerAnnamacharya + AlbumAnnamacharya Samkeertanalu + GenreAlternative & Punk + KindAAC audio file + Size4967948 + Total Time204589 + Track Number11 + Track Count13 + Date Modified2006-07-30T03:58:32Z + Date Added2009-10-03T14:54:18Z + Bit Rate192 + Sample Rate44100 + Normalization6900 + Artwork Count1 + Persistent ID19CDE48746587023 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Shoba%20Raju/Annamacharya%20Samkeertanalu/11%20Oho%20Dem%20-%20Bouli.m4a + File Folder Count4 + Library Folder Count1 + + 2766 + + Track ID2766 + NameGaline - Subhali + ArtistShoba Raju + ComposerAnnamacharya + AlbumAnnamacharya Samkeertanalu + GenreAlternative & Punk + KindAAC audio file + Size8229587 + Total Time339683 + Track Number12 + Track Count13 + Date Modified2006-07-30T03:58:34Z + Date Added2009-10-03T14:54:18Z + Bit Rate192 + Sample Rate44100 + Normalization4756 + Artwork Count1 + Persistent IDBDF724088D882BDB + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Shoba%20Raju/Annamacharya%20Samkeertanalu/12%20Galine%20-%20Subhali.m4a + File Folder Count4 + Library Folder Count1 + + 2768 + + Track ID2768 + NameVina Venkatesam + ArtistShoba Raju + ComposerAnnamacharya + AlbumAnnamacharya Samkeertanalu + GenreAlternative & Punk + KindAAC audio file + Size3918598 + Total Time159914 + Track Number13 + Track Count13 + Date Modified2006-07-30T03:58:34Z + Date Added2009-10-03T14:54:18Z + Bit Rate192 + Sample Rate44100 + Normalization5655 + Artwork Count1 + Persistent IDFE9C2757B8F92654 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Shoba%20Raju/Annamacharya%20Samkeertanalu/13%20Vina%20Venkatesam.m4a + File Folder Count4 + Library Folder Count1 + + 2770 + + Track ID2770 + Namegentle-intro-part-I + ArtistShivkumar + ComposerRamesh Mahadevan + AlbumA Gentle Introduction To Carnatic Music + GenreCarnatic + KindMPEG audio file + Size30521765 + Total Time3814948 + Track Number1 + Date Modified2007-12-18T12:55:31Z + Date Added2009-10-03T14:54:19Z + Bit Rate64 + Sample Rate22050 + Sort AlbumGentle Introduction To Carnatic Music + Persistent ID227619A4A236BACA + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Shivkumar/A%20Gentle%20Introduction%20To%20Carnatic%20Music/01%20gentle-intro-part-I.mp3 + File Folder Count4 + Library Folder Count1 + + 2772 + + Track ID2772 + Namegentle-intro-part-II + ArtistShivkumar + ComposerRamesh Mahadevan + AlbumA Gentle Introduction To Carnatic Music + GenreCarnatic + KindMPEG audio file + Size36118238 + Total Time4514507 + Track Number2 + Date Modified2007-12-18T12:55:31Z + Date Added2009-10-03T14:54:19Z + Bit Rate64 + Sample Rate22050 + Sort AlbumGentle Introduction To Carnatic Music + Persistent ID1B96E8B792205CBA + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Shivkumar/A%20Gentle%20Introduction%20To%20Carnatic%20Music/02%20gentle-intro-part-II.mp3 + File Folder Count4 + Library Folder Count1 + + 2774 + + Track ID2774 + Namegentle-intro-part-III + ArtistShivkumar + ComposerRamesh Mahadevan + AlbumA Gentle Introduction To Carnatic Music + GenreCarnatic + KindMPEG audio file + Size35246793 + Total Time4405577 + Track Number3 + Date Modified2007-12-18T12:55:32Z + Date Added2009-10-03T14:54:19Z + Bit Rate64 + Sample Rate22050 + Sort AlbumGentle Introduction To Carnatic Music + Persistent IDBE0932C56E467194 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Shivkumar/A%20Gentle%20Introduction%20To%20Carnatic%20Music/03%20gentle-intro-part-III.mp3 + File Folder Count4 + Library Folder Count1 + + 2776 + + Track ID2776 + Namegentle-intro-part-IV + ArtistShivkumar + ComposerRamesh Mahadevan + AlbumA Gentle Introduction To Carnatic Music + GenreCarnatic + KindMPEG audio file + Size18931756 + Total Time2366197 + Track Number4 + Date Modified2007-12-18T12:55:32Z + Date Added2009-10-03T14:54:20Z + Bit Rate64 + Sample Rate22050 + Sort AlbumGentle Introduction To Carnatic Music + Persistent IDC7D45199D494D2D0 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Shivkumar/A%20Gentle%20Introduction%20To%20Carnatic%20Music/04%20gentle-intro-part-IV.mp3 + File Folder Count4 + Library Folder Count1 + + 2778 + + Track ID2778 + NameJoy (Live) + ArtistShakti + ComposerL. Shankar + AlbumShakti With John McLaughlin Live + GenreJazz + KindAAC audio file + Size26483006 + Total Time1096351 + Disc Number1 + Disc Count1 + Track Number1 + Track Count3 + Year1975 + Date Modified2006-08-07T14:29:54Z + Date Added2009-10-03T14:54:20Z + Bit Rate192 + Sample Rate44100 + Normalization425 + Artwork Count1 + Persistent IDE206986F52CF9B0C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Shakti/Shakti%20With%20John%20McLaughlin%20Live/01%20Joy%20(Live).m4a + File Folder Count4 + Library Folder Count1 + + 2780 + + Track ID2780 + NameLotus Feet (Live) + ArtistShakti + ComposerJ. McLaughlin + AlbumShakti With John McLaughlin Live + GenreJazz + KindAAC audio file + Size6912144 + Total Time286486 + Disc Number1 + Disc Count1 + Track Number2 + Track Count3 + Year1975 + Date Modified2006-08-07T14:29:54Z + Date Added2009-10-03T14:54:20Z + Bit Rate192 + Sample Rate44100 + Normalization84 + Artwork Count1 + Persistent IDC735A824218210D0 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Shakti/Shakti%20With%20John%20McLaughlin%20Live/02%20Lotus%20Feet%20(Live).m4a + File Folder Count4 + Library Folder Count1 + + 2782 + + Track ID2782 + NameWhat Need Have I For This - What Need Have I For That - I Am Dancing At The Feet Of My Lord - All Is Bliss - All Is Bliss (Live) + ArtistShakti + ComposerL. Shankar + AlbumShakti With John McLaughlin Live + GenreJazz + KindAAC audio file + Size42222339 + Total Time1744165 + Disc Number1 + Disc Count1 + Track Number3 + Track Count3 + Year1975 + Date Modified2006-08-07T14:29:52Z + Date Added2009-10-03T14:54:20Z + Bit Rate192 + Sample Rate44100 + Normalization235 + Artwork Count1 + Persistent ID22B8AFAF67AE171E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Shakti/Shakti%20With%20John%20McLaughlin%20Live/03%20What%20Need%20Have%20I%20For%20This%20-%20What%20Need%20Have%20I%20For%20That%20-%20I%20Am%20Dancing%20At%20The%20Feet%20Of%20My%20Lord%20-%20All%20Is%20Bliss%20-%20All%20Is%20Bliss%20(Live).m4a + File Folder Count4 + Library Folder Count1 + + 2784 + + Track ID2784 + NameBring It On + ArtistSeal + ComposerSeal; Isidore, Gus; Melvoin, Wendy; Coleman, Lisa & Rizzo, Carmen + AlbumSeal + GenrePop + KindAAC audio file + Size5752660 + Total Time237794 + Disc Number1 + Disc Count1 + Track Number1 + Track Count11 + Year1994 + Date Modified2006-07-28T04:17:50Z + Date Added2009-10-03T14:54:20Z + Bit Rate192 + Sample Rate44100 + Play Count5 + Play Date3484155564 + Play Date UTC2014-05-28T15:29:24Z + Normalization2158 + Artwork Count1 + Persistent ID7A2F67BD475D2133 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Seal/Seal/01%20Bring%20It%20On.m4a + File Folder Count4 + Library Folder Count1 + + 2786 + + Track ID2786 + NamePrayer For The Dying + ArtistSeal + ComposerSeal & Isidore, Gus + AlbumSeal + GenrePop + KindAAC audio file + Size8001317 + Total Time330070 + Disc Number1 + Disc Count1 + Track Number2 + Track Count11 + Year1994 + Date Modified2006-07-28T04:17:50Z + Date Added2009-10-03T14:54:20Z + Bit Rate192 + Sample Rate44100 + Play Count2 + Play Date3484155894 + Play Date UTC2014-05-28T15:34:54Z + Normalization2132 + Artwork Count1 + Persistent ID74AADF0504BC9434 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Seal/Seal/02%20Prayer%20For%20The%20Dying.m4a + File Folder Count4 + Library Folder Count1 + + 2788 + + Track ID2788 + NameDreaming In Metaphors + ArtistSeal + ComposerSeal & Isidore, Gus + AlbumSeal + GenrePop + KindAAC audio file + Size8527687 + Total Time351827 + Disc Number1 + Disc Count1 + Track Number3 + Track Count11 + Year1994 + Date Modified2006-07-28T04:17:52Z + Date Added2009-10-03T14:54:21Z + Bit Rate192 + Sample Rate44100 + Play Count2 + Play Date3484156245 + Play Date UTC2014-05-28T15:40:45Z + Normalization2196 + Artwork Count1 + Persistent IDBCCF016192A1301A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Seal/Seal/03%20Dreaming%20In%20Metaphors.m4a + File Folder Count4 + Library Folder Count1 + + 2790 + + Track ID2790 + NameDon't Cry + ArtistSeal + ComposerSeal + AlbumSeal + GenrePop + KindAAC audio file + Size9156585 + Total Time377810 + Disc Number1 + Disc Count1 + Track Number4 + Track Count11 + Year1994 + Date Modified2006-07-28T04:17:52Z + Date Added2009-10-03T14:54:21Z + Bit Rate192 + Sample Rate44100 + Play Count2 + Play Date3484156623 + Play Date UTC2014-05-28T15:47:03Z + Normalization3270 + Artwork Count1 + Persistent ID413E07F3D3AEF71D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Seal/Seal/04%20Don't%20Cry.m4a + File Folder Count4 + Library Folder Count1 + + 2792 + + Track ID2792 + NameFast Changes + ArtistSeal + ComposerSeal & Isidore, Gus + AlbumSeal + GenrePop + KindAAC audio file + Size8271036 + Total Time341215 + Disc Number1 + Disc Count1 + Track Number5 + Track Count11 + Year1994 + Date Modified2006-07-28T04:17:52Z + Date Added2009-10-03T14:54:21Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3472648000 + Play Date UTC2014-01-15T10:56:40Z + Normalization1819 + Artwork Count1 + Persistent ID8D14233A5862D559 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Seal/Seal/05%20Fast%20Changes.m4a + File Folder Count4 + Library Folder Count1 + + 2794 + + Track ID2794 + NameKiss From A Rose + ArtistSeal + ComposerSeal + AlbumSeal + GenrePop + KindAAC audio file + Size6983111 + Total Time287995 + Disc Number1 + Disc Count1 + Track Number6 + Track Count11 + Year1994 + Date Modified2006-07-28T04:17:52Z + Date Added2009-10-03T14:54:21Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3472648288 + Play Date UTC2014-01-15T11:01:28Z + Normalization2817 + Artwork Count1 + Persistent IDFE764097755B3627 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Seal/Seal/06%20Kiss%20From%20A%20Rose.m4a + File Folder Count4 + Library Folder Count1 + + 2796 + + Track ID2796 + NamePeople Asking Why + ArtistSeal + ComposerSeal + AlbumSeal + GenrePop + KindAAC audio file + Size6927392 + Total Time285696 + Disc Number1 + Disc Count1 + Track Number7 + Track Count11 + Year1994 + Date Modified2006-07-28T04:17:52Z + Date Added2009-10-03T14:54:21Z + Bit Rate192 + Sample Rate44100 + Normalization1691 + Artwork Count1 + Persistent ID88061F89A18D4EA0 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Seal/Seal/07%20People%20Asking%20Why.m4a + File Folder Count4 + Library Folder Count1 + + 2798 + + Track ID2798 + NameNewborn Friend + ArtistSeal + ComposerSeal + AlbumSeal + GenrePop + KindAAC audio file + Size5932778 + Total Time244458 + Disc Number1 + Disc Count1 + Track Number8 + Track Count11 + Year1994 + Date Modified2006-07-28T04:17:54Z + Date Added2009-10-03T14:54:21Z + Bit Rate192 + Sample Rate44100 + Normalization1949 + Artwork Count1 + Persistent IDE750CC471375E465 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Seal/Seal/08%20Newborn%20Friend.m4a + File Folder Count4 + Library Folder Count1 + + 2800 + + Track ID2800 + NameIf I Could + ArtistSeal + ComposerSeal + AlbumSeal + GenrePop + KindAAC audio file + Size6220213 + Total Time256416 + Disc Number1 + Disc Count1 + Track Number9 + Track Count11 + Year1994 + Date Modified2006-07-28T04:17:54Z + Date Added2009-10-03T14:54:21Z + Bit Rate192 + Sample Rate44100 + Normalization1544 + Artwork Count1 + Persistent ID030F10C6A47FE90A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Seal/Seal/09%20If%20I%20Could.m4a + File Folder Count4 + Library Folder Count1 + + 2802 + + Track ID2802 + NameI'm Alive + ArtistSeal + ComposerSeal; Isidore, Gus; Melvoin, Wendy; Coleman, Lisa; Bruce, Chris & Rizzo, Carmen + AlbumSeal + GenrePop + KindAAC audio file + Size5867485 + Total Time241741 + Disc Number1 + Disc Count1 + Track Number10 + Track Count11 + Year1994 + Date Modified2006-07-28T04:17:54Z + Date Added2009-10-03T14:54:21Z + Bit Rate192 + Sample Rate44100 + Normalization1718 + Artwork Count1 + Persistent ID72533B8101F1756E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Seal/Seal/10%20I'm%20Alive.m4a + File Folder Count4 + Library Folder Count1 + + 2804 + + Track ID2804 + NameBring It On (Reprise) + ArtistSeal + ComposerSeal; Isidore, Gus; Melvoin, Wendy; Coleman, Lisa & Rizzo, Carmen + AlbumSeal + GenrePop + KindAAC audio file + Size1866721 + Total Time75649 + Disc Number1 + Disc Count1 + Track Number11 + Track Count11 + Year1994 + Date Modified2006-07-28T04:17:54Z + Date Added2009-10-03T14:54:21Z + Bit Rate192 + Sample Rate44100 + Normalization1327 + Artwork Count1 + Persistent IDE7DCB4938B628F01 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Seal/Seal/11%20Bring%20It%20On%20(Reprise).m4a + File Folder Count4 + Library Folder Count1 + + 2806 + + Track ID2806 + NameBanno Ranni + ArtistSadhana Sargam + ComposerA.R. Rahman/Javed Akhtar + Album1947 + GenreSoundtrack + KindAAC audio file + Size5967835 + Total Time248639 + Track Number2 + Year1999 + Date Modified2007-07-27T05:52:54Z + Date Added2009-10-03T14:54:21Z + Bit Rate192 + Sample Rate44100 + Normalization4215 + Persistent IDDB820CFED67B8312 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Sadhana%20Sargam/1947/02%20Banno%20Ranni.m4a + File Folder Count4 + Library Folder Count1 + + 2808 + + Track ID2808 + NameBanno Ranni + ArtistSadhana Sargam + ComposerA.R. Rahman/Javed Akhtar + Album1947 + GenreSoundtrack + KindAAC audio file + Size5970629 + Total Time248661 + Track Number2 + Year1999 + Date Modified2006-12-27T09:56:00Z + Date Added2009-10-03T14:54:22Z + Bit Rate192 + Sample Rate44100 + Normalization4215 + Persistent ID6F0B0A559DA66EDA + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Sadhana%20Sargam/1947/02%20Banno%20Ranni%202.m4a + File Folder Count4 + Library Folder Count1 + + 2810 + + Track ID2810 + NameBanno Ranni + ArtistSadhana Sargam + ComposerA.R. Rahman/Javed Akhtar + Album1947 + GenreSoundtrack + KindAAC audio file + Size5970629 + Total Time248661 + Track Number2 + Year1999 + Date Modified2006-12-26T05:34:42Z + Date Added2009-10-03T14:54:22Z + Bit Rate192 + Sample Rate44100 + Normalization4215 + Persistent IDE6CB340A3DDD1F2E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Sadhana%20Sargam/1947/02%20Banno%20Ranni%203.m4a + File Folder Count4 + Library Folder Count1 + + 2812 + + Track ID2812 + NameBanno Ranni + ArtistSadhana Sargam + ComposerA.R. Rahman/Javed Akhtar + Album1947 + GenreSoundtrack + KindAAC audio file + Size5926274 + Total Time248639 + Track Number2 + Year1999 + Date Modified2007-12-02T07:35:08Z + Date Added2009-10-03T14:54:22Z + Bit Rate189 + Sample Rate44100 + Normalization4215 + Persistent IDD78F372C1A7EF158 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Sadhana%20Sargam/1947/02%20Banno%20Ranni%201.m4a + File Folder Count4 + Library Folder Count1 + + 2814 + + Track ID2814 + NameA Meeting By The River + ArtistRy Cooder & V.M. Bhatt + ComposerRy Cooder & V.M. Bhatt + AlbumA Meeting By The River + GenreWorld + KindAAC audio file + Size14722196 + Total Time607734 + Disc Number1 + Disc Count1 + Track Number1 + Track Count4 + Year1993 + Date Modified2006-08-07T05:33:16Z + Date Added2009-10-03T14:54:22Z + Bit Rate192 + Sample Rate44100 + Play Count2 + Play Date3390921909 + Play Date UTC2011-06-14T13:15:09Z + Normalization351 + Artwork Count1 + Sort AlbumMeeting By The River + Sort NameMeeting By The River + Persistent ID0621D78D19A5EAB0 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ry%20Cooder%20&%20V.M.%20Bhatt/A%20Meeting%20By%20The%20River/01%20A%20Meeting%20By%20The%20River.m4a + File Folder Count4 + Library Folder Count1 + + 2816 + + Track ID2816 + NameLonging + ArtistRy Cooder & V.M. Bhatt + ComposerRy Cooder & V.M. Bhatt + AlbumA Meeting By The River + GenreWorld + KindAAC audio file + Size17373908 + Total Time719468 + Disc Number1 + Disc Count1 + Track Number2 + Track Count4 + Year1993 + Date Modified2006-08-07T05:33:14Z + Date Added2009-10-03T14:54:22Z + Bit Rate192 + Sample Rate44100 + Play Count2 + Play Date3390922629 + Play Date UTC2011-06-14T13:27:09Z + Normalization169 + Artwork Count1 + Sort AlbumMeeting By The River + Persistent ID9EA7D196CAEFDD78 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ry%20Cooder%20&%20V.M.%20Bhatt/A%20Meeting%20By%20The%20River/02%20Longing.m4a + File Folder Count4 + Library Folder Count1 + + 2818 + + Track ID2818 + NameGanges Delta Blues + ArtistRy Cooder & V.M. Bhatt + ComposerRy Cooder & V.M. Bhatt + AlbumA Meeting By The River + GenreWorld + KindAAC audio file + Size14516176 + Total Time599212 + Disc Number1 + Disc Count1 + Track Number3 + Track Count4 + Year1993 + Date Modified2006-08-07T05:33:14Z + Date Added2009-10-03T14:54:22Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3390833555 + Play Date UTC2011-06-13T12:42:35Z + Normalization568 + Artwork Count1 + Sort AlbumMeeting By The River + Persistent ID68923E5B18920A3F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ry%20Cooder%20&%20V.M.%20Bhatt/A%20Meeting%20By%20The%20River/03%20Ganges%20Delta%20Blues.m4a + File Folder Count4 + Library Folder Count1 + + 2820 + + Track ID2820 + NameIsa Lei + ArtistRy Cooder & V.M. Bhatt + ComposerA W Caten + AlbumA Meeting By The River + GenreWorld + KindAAC audio file + Size11152133 + Total Time460310 + Disc Number1 + Disc Count1 + Track Number4 + Track Count4 + Year1993 + Date Modified2006-08-07T05:33:14Z + Date Added2009-10-03T14:54:22Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3390834015 + Play Date UTC2011-06-13T12:50:15Z + Normalization49 + Artwork Count1 + Sort AlbumMeeting By The River + Sort ComposerW Caten + Persistent IDFB8B7CC15AA3CA11 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ry%20Cooder%20&%20V.M.%20Bhatt/A%20Meeting%20By%20The%20River/04%20Isa%20Lei.m4a + File Folder Count4 + Library Folder Count1 + + 2822 + + Track ID2822 + NameThe Bourgeois Blues + ArtistRy Cooder + ComposerHuddie Ledbetter-Alan Lomax + AlbumChicken Skin Music + GenreRock + KindAAC audio file + Size4927456 + Total Time204914 + Disc Number1 + Disc Count1 + Track Number1 + Track Count9 + Year1976 + Date Modified2006-09-05T15:51:00Z + Date Added2009-10-03T14:54:22Z + Bit Rate192 + Sample Rate44100 + Normalization1082 + Artwork Count1 + Sort NameBourgeois Blues + Persistent ID9B08F32CB2B8F182 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ry%20Cooder/Chicken%20Skin%20Music/01%20The%20Bourgeois%20Blues.m4a + File Folder Count4 + Library Folder Count1 + + 2824 + + Track ID2824 + NameI Got Mine + ArtistRy Cooder + ComposerTraditional + AlbumChicken Skin Music + GenreRock + KindAAC audio file + Size6468735 + Total Time268212 + Disc Number1 + Disc Count1 + Track Number2 + Track Count9 + Year1976 + Date Modified2006-09-05T15:51:00Z + Date Added2009-10-03T14:54:23Z + Bit Rate192 + Sample Rate44100 + Normalization1207 + Artwork Count1 + Persistent ID08D697F8004CC456 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ry%20Cooder/Chicken%20Skin%20Music/02%20I%20Got%20Mine.m4a + File Folder Count4 + Library Folder Count1 + + 2826 + + Track ID2826 + NameAlways Lift Him Up / Kanaka Wai Wai + ArtistRy Cooder + ComposerAlfred Reed + AlbumChicken Skin Music + GenreRock + KindAAC audio file + Size8773776 + Total Time363506 + Disc Number1 + Disc Count1 + Track Number3 + Track Count9 + Year1976 + Date Modified2006-09-05T15:50:58Z + Date Added2009-10-03T14:54:23Z + Bit Rate192 + Sample Rate44100 + Normalization933 + Artwork Count1 + Persistent ID4D58B19AF00E9536 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ry%20Cooder/Chicken%20Skin%20Music/03%20Always%20Lift%20Him%20Up%20_%20Kanaka%20Wai%20Wai.m4a + File Folder Count4 + Library Folder Count1 + + 2828 + + Track ID2828 + NameHe'll Have To Go + ArtistRy Cooder + ComposerAllison-Allison + AlbumChicken Skin Music + GenreRock + KindAAC audio file + Size7457872 + Total Time309241 + Disc Number1 + Disc Count1 + Track Number4 + Track Count9 + Year1976 + Date Modified2006-09-05T15:50:58Z + Date Added2009-10-03T14:54:23Z + Bit Rate192 + Sample Rate44100 + Normalization943 + Artwork Count1 + Persistent ID2BBA5C890A366371 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ry%20Cooder/Chicken%20Skin%20Music/04%20He'll%20Have%20To%20Go.m4a + File Folder Count4 + Library Folder Count1 + + 2830 + + Track ID2830 + NameSmack Dab In The Middle + ArtistRy Cooder + ComposerCharles E. Calhoun + AlbumChicken Skin Music + GenreRock + KindAAC audio file + Size4816170 + Total Time199899 + Disc Number1 + Disc Count1 + Track Number5 + Track Count9 + Year1976 + Date Modified2006-09-05T15:50:58Z + Date Added2009-10-03T14:54:23Z + Bit Rate192 + Sample Rate44100 + Normalization830 + Artwork Count1 + Persistent ID8FCE85D5639AF26A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ry%20Cooder/Chicken%20Skin%20Music/05%20Smack%20Dab%20In%20The%20Middle.m4a + File Folder Count4 + Library Folder Count1 + + 2832 + + Track ID2832 + NameStand By Me + ArtistRy Cooder + ComposerBen E. King-Jerry Leiber-Mike Stoller + AlbumChicken Skin Music + GenreRock + KindAAC audio file + Size5347105 + Total Time223978 + Disc Number1 + Disc Count1 + Track Number6 + Track Count9 + Year1976 + Date Modified2006-09-05T15:50:58Z + Date Added2009-10-03T14:54:23Z + Bit Rate192 + Sample Rate44100 + Normalization995 + Artwork Count1 + Persistent IDCE51345B282DDE54 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ry%20Cooder/Chicken%20Skin%20Music/06%20Stand%20By%20Me.m4a + File Folder Count4 + Library Folder Count1 + + 2834 + + Track ID2834 + NameYellow Roses + ArtistRy Cooder + ComposerK. Devine-S. Nichols + AlbumChicken Skin Music + GenreRock + KindAAC audio file + Size8991139 + Total Time372516 + Disc Number1 + Disc Count1 + Track Number7 + Track Count9 + Year1976 + Date Modified2006-09-05T15:50:56Z + Date Added2009-10-03T14:54:23Z + Bit Rate192 + Sample Rate44100 + Normalization603 + Artwork Count1 + Persistent ID890D11FC34B2E894 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ry%20Cooder/Chicken%20Skin%20Music/07%20Yellow%20Roses.m4a + File Folder Count4 + Library Folder Count1 + + 2836 + + Track ID2836 + NameChloe + ArtistRy Cooder + ComposerGus Kahn-Neil Moret + AlbumChicken Skin Music + GenreRock + KindAAC audio file + Size4416390 + Total Time184550 + Disc Number1 + Disc Count1 + Track Number8 + Track Count9 + Year1976 + Date Modified2006-09-05T15:50:56Z + Date Added2009-10-03T14:54:23Z + Bit Rate192 + Sample Rate44100 + Normalization343 + Artwork Count1 + Persistent IDFF94CE8B4BD2AFA2 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ry%20Cooder/Chicken%20Skin%20Music/08%20Chloe.m4a + File Folder Count4 + Library Folder Count1 + + 2838 + + Track ID2838 + NameGoodnight Irene + ArtistRy Cooder + ComposerHuddie Ledbetter-John Lomax + AlbumChicken Skin Music + GenreRock + KindAAC audio file + Size6622343 + Total Time272647 + Disc Number1 + Disc Count1 + Track Number9 + Track Count9 + Year1976 + Date Modified2006-09-05T15:50:56Z + Date Added2009-10-03T14:54:24Z + Bit Rate192 + Sample Rate44100 + Normalization1229 + Artwork Count1 + Persistent IDFE2D4E90BEFA4492 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ry%20Cooder/Chicken%20Skin%20Music/09%20Goodnight%20Irene.m4a + File Folder Count4 + Library Folder Count1 + + 2840 + + Track ID2840 + NameDhun- Fast Teental @ Monterey + ArtistRavi Shankar + AlbumThe Monterey International Pop Festival - Volume 2 + Genrerock + KindMPEG audio file + Size5623808 + Total Time365008 + Track Number17 + Date Modified2002-05-28T06:52:38Z + Date Added2009-10-03T14:54:24Z + Bit Rate32 + Sample Rate44100 + Sort AlbumMonterey International Pop Festival - Volume 2 + Persistent ID47F009659CA11ABC + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ravi%20Shankar/The%20Monterey%20International%20Pop%20Festival%20-%20Volume%202/17%20Dhun-%20Fast%20Teental%20@%20Monterey.mp3 + File Folder Count4 + Library Folder Count1 + + 2842 + + Track ID2842 + Namepuksrtha chala hu + ArtistRafi + AlbumSaraswathy chandra + GenreHindi old songs + KindAAC audio file + Size5367148 + Total Time223235 + Track Number10 + Track Count15 + Date Modified2006-10-06T08:20:06Z + Date Added2009-10-03T14:54:30Z + Bit Rate192 + Sample Rate44100 + Normalization1916 + Persistent IDA2D0A31A2EDFA105 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rafi/Saraswathy%20chandra/10%20puksrtha%20chala%20hu.m4a + File Folder Count4 + Library Folder Count1 + + 2844 + + Track ID2844 + Nameye mera prem pathr + ArtistRafi + AlbumSaraswathy chandra + GenreHindi old songs + KindAAC audio file + Size6450899 + Total Time268328 + Track Number11 + Track Count15 + Date Modified2006-10-06T08:20:20Z + Date Added2009-10-03T14:54:31Z + Bit Rate192 + Sample Rate44100 + Normalization1829 + Persistent ID78695B1E31D0F35E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rafi/Saraswathy%20chandra/11%20ye%20mera%20prem%20pathr.m4a + File Folder Count4 + Library Folder Count1 + + 2846 + + Track ID2846 + Nameaaaja aaja mai hu + ArtistRafi + AlbumSaraswathy chandra + GenreHindi old songs + KindAAC audio file + Size9686033 + Total Time402005 + Track Number12 + Track Count15 + Date Modified2006-10-06T08:20:32Z + Date Added2009-10-03T14:54:31Z + Bit Rate192 + Sample Rate44100 + Normalization6932 + Persistent ID3545B538E36C343F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rafi/Saraswathy%20chandra/12%20aaaja%20aaja%20mai%20hu.m4a + File Folder Count4 + Library Folder Count1 + + 2848 + + Track ID2848 + Namemai zindagi ke saath + ArtistRafi + AlbumSaraswathy chandra + GenreHindi old songs + KindAAC audio file + Size5498224 + Total Time230897 + Track Number13 + Track Count15 + Date Modified2006-10-06T08:20:46Z + Date Added2009-10-03T14:54:31Z + Bit Rate192 + Sample Rate44100 + Normalization3112 + Persistent ID18049AC4749487B6 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rafi/Saraswathy%20chandra/13%20mai%20zindagi%20ke%20saath.m4a + File Folder Count4 + Library Folder Count1 + + 2850 + + Track ID2850 + Namechound ve ka chaand ho + ArtistRafi + AlbumSaraswathy chandra + GenreHindi old songs + KindAAC audio file + Size4949574 + Total Time206841 + Track Number14 + Track Count15 + Date Modified2006-10-06T08:21:00Z + Date Added2009-10-03T14:54:31Z + Bit Rate192 + Sample Rate44100 + Normalization2260 + Persistent IDE0749B179E9C4D67 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rafi/Saraswathy%20chandra/14%20chound%20ve%20ka%20chaand%20ho.m4a + File Folder Count4 + Library Folder Count1 + + 2852 + + Track ID2852 + Nameye reshmi julphe + ArtistRafi + AlbumSaraswathy chandra + GenreHindi old songs + KindAAC audio file + Size7468824 + Total Time309868 + Track Number15 + Track Count15 + Date Modified2006-10-06T08:21:14Z + Date Added2009-10-03T14:54:31Z + Bit Rate192 + Sample Rate44100 + Normalization2136 + Persistent IDDD02A32381BC4787 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rafi/Saraswathy%20chandra/15%20ye%20reshmi%20julphe.m4a + File Folder Count4 + Library Folder Count1 + + 2854 + + Track ID2854 + NameAirbag + ArtistRadiohead + ComposerThom Yorke, Jonny Greenwood, Phil Selway, Ed O'Brien, Colin Greenwood + AlbumOK Computer + GenreAlternative & Punk + KindAAC audio file + Size7039685 + Total Time284400 + Disc Number1 + Disc Count1 + Track Number1 + Track Count12 + Year1997 + Date Modified2008-10-09T15:52:27Z + Date Added2009-10-03T14:54:31Z + Bit Rate192 + Sample Rate44100 + Skip Count1 + Skip Date2014-05-16T15:46:06Z + Normalization7105 + Artwork Count1 + Persistent IDC5CD828B38A8A7B0 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Radiohead/OK%20Computer/01%20Airbag.m4a + File Folder Count4 + Library Folder Count1 + + 2856 + + Track ID2856 + NameExit Music (For A Film) + ArtistRadiohead + ComposerThom Yorke, Jonny Greenwood, Phil Selway, Ed O'Brien, Colin Greenwood + AlbumOK Computer + GenreAlternative & Punk + KindAAC audio file + Size6462848 + Total Time264800 + Disc Number1 + Disc Count1 + Track Number4 + Track Count12 + Year1997 + Date Modified2007-09-20T19:47:28Z + Date Added2009-10-03T14:54:32Z + Bit Rate192 + Sample Rate44100 + Normalization2004 + Artwork Count1 + Persistent ID257CFFF5AF9F7A59 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Radiohead/OK%20Computer/04%20Exit%20Music%20(For%20A%20Film).m4a + File Folder Count4 + Library Folder Count1 + + 2858 + + Track ID2858 + NameKarma Police + ArtistRadiohead + ComposerThom Yorke, Jonny Greenwood, Phil Selway, Ed O'Brien, Colin Greenwood + AlbumOK Computer + GenreAlternative & Punk + KindAAC audio file + Size6394319 + Total Time261626 + Disc Number1 + Disc Count1 + Track Number6 + Track Count12 + Year1997 + Date Modified2008-10-09T15:44:31Z + Date Added2009-10-03T14:54:32Z + Bit Rate192 + Sample Rate44100 + Normalization3166 + Artwork Count1 + Persistent IDB370A89981B31293 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Radiohead/OK%20Computer/06%20Karma%20Police.m4a + File Folder Count4 + Library Folder Count1 + + 2860 + + Track ID2860 + NameLet Down + ArtistRadiohead + ComposerThom Yorke, Jonny Greenwood, Phil Selway, Ed O'Brien, Colin Greenwood + AlbumOK Computer + GenreAlternative & Punk + KindAAC audio file + Size7491796 + Total Time299266 + Disc Number1 + Disc Count1 + Track Number5 + Track Count12 + Year1997 + Date Modified2007-09-20T19:48:04Z + Date Added2009-10-03T14:54:32Z + Bit Rate192 + Sample Rate44100 + Normalization4371 + Artwork Count1 + Persistent ID69DB83FABE9041CD + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Radiohead/OK%20Computer/05%20Let%20Down.m4a + File Folder Count4 + Library Folder Count1 + + 2862 + + Track ID2862 + NameParanoid Android + ArtistRadiohead + ComposerThom Yorke, Jonny Greenwood, Phil Selway, Ed O'Brien, Colin Greenwood + AlbumOK Computer + GenreAlternative & Punk + KindAAC audio file + Size9414239 + Total Time383493 + Disc Number1 + Disc Count1 + Track Number2 + Track Count12 + Year1997 + Date Modified2008-10-09T15:49:30Z + Date Added2009-10-03T14:54:32Z + Bit Rate192 + Sample Rate44100 + Normalization3286 + Artwork Count1 + Persistent IDCB056FBA140B515A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Radiohead/OK%20Computer/02%20Paranoid%20Android.m4a + File Folder Count4 + Library Folder Count1 + + 2864 + + Track ID2864 + NameSubterranean Homesick Alien + ArtistRadiohead + ComposerThom Yorke, Jonny Greenwood, Phil Selway, Ed O'Brien, Colin Greenwood + AlbumOK Computer + GenreAlternative & Punk + KindAAC audio file + Size6719588 + Total Time267706 + Disc Number1 + Disc Count1 + Track Number3 + Track Count12 + Year1997 + Date Modified2008-10-09T16:01:07Z + Date Added2009-10-03T14:54:32Z + Bit Rate192 + Sample Rate44100 + Normalization5147 + Artwork Count1 + Persistent IDE6026F2F22F2C6B7 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Radiohead/OK%20Computer/03%20Subterranean%20Homesick%20Alien.m4a + File Folder Count4 + Library Folder Count1 + + 2866 + + Track ID2866 + NameBulla Ki Jana + ArtistRabbi Shergill + ComposerRabbi Shergill + AlbumRabbi + GenreWorld + KindAAC audio file + Size7653240 + Total Time316091 + Track Number1 + Date Modified2006-12-29T04:12:14Z + Date Added2009-10-03T14:54:32Z + Bit Rate192 + Sample Rate44100 + Normalization2991 + Persistent ID3D3D14A5C812704D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rabbi%20Shergill/Rabbi/01%20Bulla%20Ki%20Jana.m4a + File Folder Count4 + Library Folder Count1 + + 2868 + + Track ID2868 + NameBulla Ki Jana + ArtistRabbi Shergill + ComposerRabbi Shergill + AlbumRabbi + GenreWorld + KindAAC audio file + Size7653185 + Total Time316070 + Track Number1 + Date Modified2007-07-27T06:33:30Z + Date Added2009-10-03T14:54:32Z + Bit Rate192 + Sample Rate44100 + Normalization2991 + Persistent ID50D8F939816B451C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rabbi%20Shergill/Rabbi/01%20Bulla%20Ki%20Jana%201.m4a + File Folder Count4 + Library Folder Count1 + + 2870 + + Track ID2870 + NameBulla Ki Jana + ArtistRabbi Shergill + ComposerRabbi Shergill + AlbumRabbi + GenreWorld + KindAAC audio file + Size7653240 + Total Time316091 + Track Number1 + Date Modified2006-12-27T10:29:56Z + Date Added2009-10-03T14:54:32Z + Bit Rate192 + Sample Rate44100 + Normalization2991 + Persistent ID576BBF96AE42ABC9 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rabbi%20Shergill/Rabbi/01%20Bulla%20Ki%20Jana%202.m4a + File Folder Count4 + Library Folder Count1 + + 2872 + + Track ID2872 + NameBulla Ki Jana + ArtistRabbi Shergill + ComposerRabbi Shergill + AlbumRabbi + GenreWorld + KindAAC audio file + Size7463605 + Total Time316070 + Track Number1 + Date Modified2007-12-02T08:02:23Z + Date Added2009-10-03T14:54:33Z + Bit Rate187 + Sample Rate44100 + Normalization2991 + Persistent IDFA541154E77C3D64 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rabbi%20Shergill/Rabbi/01%20Bulla%20Ki%20Jana%203.m4a + File Folder Count4 + Library Folder Count1 + + 2874 + + Track ID2874 + NameTere Bin + ArtistRabbi Shergill + ComposerRabbi Shergill + AlbumRabbi + GenreWorld + KindAAC audio file + Size7771718 + Total Time320967 + Track Number2 + Date Modified2006-12-29T04:12:30Z + Date Added2009-10-03T14:54:33Z + Bit Rate192 + Sample Rate44100 + Normalization2801 + Persistent IDB0247BEEF3E9B8B2 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rabbi%20Shergill/Rabbi/02%20Tere%20Bin.m4a + File Folder Count4 + Library Folder Count1 + + 2876 + + Track ID2876 + NameTere Bin + ArtistRabbi Shergill + ComposerRabbi Shergill + AlbumRabbi + GenreWorld + KindAAC audio file + Size7771706 + Total Time320946 + Track Number2 + Date Modified2007-07-27T06:33:58Z + Date Added2009-10-03T14:54:33Z + Bit Rate192 + Sample Rate44100 + Normalization2801 + Persistent ID6E3379771E64CF18 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rabbi%20Shergill/Rabbi/02%20Tere%20Bin%201.m4a + File Folder Count4 + Library Folder Count1 + + 2878 + + Track ID2878 + NameTere Bin + ArtistRabbi Shergill + ComposerRabbi Shergill + AlbumRabbi + GenreWorld + KindAAC audio file + Size7771718 + Total Time320967 + Track Number2 + Date Modified2006-12-27T10:30:24Z + Date Added2009-10-03T14:54:33Z + Bit Rate192 + Sample Rate44100 + Normalization2801 + Persistent IDA646423E15693742 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rabbi%20Shergill/Rabbi/02%20Tere%20Bin%202.m4a + File Folder Count4 + Library Folder Count1 + + 2880 + + Track ID2880 + NameTere Bin + ArtistRabbi Shergill + ComposerRabbi Shergill + AlbumRabbi + GenreWorld + KindAAC audio file + Size7568749 + Total Time320946 + Track Number2 + Date Modified2007-12-02T08:02:42Z + Date Added2009-10-03T14:54:33Z + Bit Rate187 + Sample Rate44100 + Normalization2801 + Persistent ID4100F2C375D0F510 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rabbi%20Shergill/Rabbi/02%20Tere%20Bin%203.m4a + File Folder Count4 + Library Folder Count1 + + 2882 + + Track ID2882 + NameHeer + ArtistRabbi Shergill + ComposerRabbi Shergill + AlbumRabbi + GenreWorld + KindAAC audio file + Size7883889 + Total Time325611 + Track Number3 + Date Modified2006-12-29T04:12:48Z + Date Added2009-10-03T14:54:33Z + Bit Rate192 + Sample Rate44100 + Normalization2489 + Persistent IDB0E5BD36FDE03323 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rabbi%20Shergill/Rabbi/03%20Heer.m4a + File Folder Count4 + Library Folder Count1 + + 2884 + + Track ID2884 + NameHeer + ArtistRabbi Shergill + ComposerRabbi Shergill + AlbumRabbi + GenreWorld + KindAAC audio file + Size7883805 + Total Time325590 + Track Number3 + Date Modified2007-07-27T06:34:28Z + Date Added2009-10-03T14:54:33Z + Bit Rate192 + Sample Rate44100 + Normalization2489 + Persistent ID12877D32DC6C7C2A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rabbi%20Shergill/Rabbi/03%20Heer%201.m4a + File Folder Count4 + Library Folder Count1 + + 2886 + + Track ID2886 + NameHeer + ArtistRabbi Shergill + ComposerRabbi Shergill + AlbumRabbi + GenreWorld + KindAAC audio file + Size7883889 + Total Time325611 + Track Number3 + Date Modified2006-12-27T10:31:02Z + Date Added2009-10-03T14:54:34Z + Bit Rate192 + Sample Rate44100 + Normalization2489 + Persistent IDBE5192413DA75D22 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rabbi%20Shergill/Rabbi/03%20Heer%202.m4a + File Folder Count4 + Library Folder Count1 + + 2888 + + Track ID2888 + NameHeer + ArtistRabbi Shergill + ComposerRabbi Shergill + AlbumRabbi + GenreWorld + KindAAC audio file + Size7684185 + Total Time325590 + Track Number3 + Date Modified2007-12-02T08:03:01Z + Date Added2009-10-03T14:54:34Z + Bit Rate187 + Sample Rate44100 + Normalization2489 + Persistent IDEEF3EB39BE8E1B3E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rabbi%20Shergill/Rabbi/03%20Heer%203.m4a + File Folder Count4 + Library Folder Count1 + + 2890 + + Track ID2890 + NameIshtihar + ArtistRabbi Shergill + ComposerRabbi Shergill + AlbumRabbi + GenreWorld + KindAAC audio file + Size9504937 + Total Time392578 + Track Number4 + Date Modified2006-12-29T04:13:10Z + Date Added2009-10-03T14:54:34Z + Bit Rate192 + Sample Rate44100 + Normalization1476 + Persistent IDD3FA64D2E171E3F7 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rabbi%20Shergill/Rabbi/04%20Ishtihar.m4a + File Folder Count4 + Library Folder Count1 + + 2892 + + Track ID2892 + NameIshtihar + ArtistRabbi Shergill + ComposerRabbi Shergill + AlbumRabbi + GenreWorld + KindAAC audio file + Size9504970 + Total Time392556 + Track Number4 + Date Modified2007-07-27T06:35:04Z + Date Added2009-10-03T14:54:34Z + Bit Rate192 + Sample Rate44100 + Normalization1476 + Persistent IDF0EC897F3E99FA9F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rabbi%20Shergill/Rabbi/04%20Ishtihar%201.m4a + File Folder Count4 + Library Folder Count1 + + 2894 + + Track ID2894 + NameIshtihar + ArtistRabbi Shergill + ComposerRabbi Shergill + AlbumRabbi + GenreWorld + KindAAC audio file + Size9504937 + Total Time392578 + Track Number4 + Date Modified2006-12-27T10:31:42Z + Date Added2009-10-03T14:54:34Z + Bit Rate192 + Sample Rate44100 + Normalization1476 + Persistent IDDF004128C405F69C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rabbi%20Shergill/Rabbi/04%20Ishtihar%202.m4a + File Folder Count4 + Library Folder Count1 + + 2896 + + Track ID2896 + NameIshtihar + ArtistRabbi Shergill + ComposerRabbi Shergill + AlbumRabbi + GenreWorld + KindAAC audio file + Size9249419 + Total Time392556 + Track Number4 + Date Modified2007-12-02T08:03:24Z + Date Added2009-10-03T14:54:34Z + Bit Rate186 + Sample Rate44100 + Normalization1476 + Persistent IDD4CCFA3FB6BEE7A7 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rabbi%20Shergill/Rabbi/04%20Ishtihar%203.m4a + File Folder Count4 + Library Folder Count1 + + 2898 + + Track ID2898 + NameTotia Manmotia + ArtistRabbi Shergill + ComposerRabbi Shergill + AlbumRabbi + GenreWorld + KindAAC audio file + Size6706530 + Total Time276942 + Track Number5 + Date Modified2006-12-29T04:13:26Z + Date Added2009-10-03T14:54:34Z + Bit Rate192 + Sample Rate44100 + Normalization4091 + Persistent IDB3BDC9B3B0F1984F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rabbi%20Shergill/Rabbi/05%20Totia%20Manmotia.m4a + File Folder Count4 + Library Folder Count1 + + 2900 + + Track ID2900 + NameTotia Manmotia + ArtistRabbi Shergill + ComposerRabbi Shergill + AlbumRabbi + GenreWorld + KindAAC audio file + Size6706539 + Total Time276921 + Track Number5 + Date Modified2007-07-27T06:35:28Z + Date Added2009-10-03T14:54:34Z + Bit Rate192 + Sample Rate44100 + Normalization4091 + Persistent ID61251495987E71E2 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rabbi%20Shergill/Rabbi/05%20Totia%20Manmotia%201.m4a + File Folder Count4 + Library Folder Count1 + + 2902 + + Track ID2902 + NameTotia Manmotia + ArtistRabbi Shergill + ComposerRabbi Shergill + AlbumRabbi + GenreWorld + KindAAC audio file + Size6706530 + Total Time276942 + Track Number5 + Date Modified2006-12-27T10:32:06Z + Date Added2009-10-03T14:54:34Z + Bit Rate192 + Sample Rate44100 + Normalization4091 + Persistent ID183D904B887E3063 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rabbi%20Shergill/Rabbi/05%20Totia%20Manmotia%202.m4a + File Folder Count4 + Library Folder Count1 + + 2904 + + Track ID2904 + NameTotia Manmotia + ArtistRabbi Shergill + ComposerRabbi Shergill + AlbumRabbi + GenreWorld + KindAAC audio file + Size6589461 + Total Time276921 + Track Number5 + Date Modified2007-12-02T08:03:40Z + Date Added2009-10-03T14:54:35Z + Bit Rate188 + Sample Rate44100 + Normalization4091 + Persistent IDD3B0D4D9228C2B45 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rabbi%20Shergill/Rabbi/05%20Totia%20Manmotia%203.m4a + File Folder Count4 + Library Folder Count1 + + 2906 + + Track ID2906 + NameGill 'te Guitar + ArtistRabbi Shergill + ComposerRabbi Shergill + AlbumRabbi + GenreWorld + KindAAC audio file + Size6649803 + Total Time274620 + Track Number7 + Date Modified2006-12-29T04:14:06Z + Date Added2009-10-03T14:54:35Z + Bit Rate192 + Sample Rate44100 + Normalization3808 + Persistent ID49C781636C269C9E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rabbi%20Shergill/Rabbi/07%20Gill%20'te%20Guitar.m4a + File Folder Count4 + Library Folder Count1 + + 2908 + + Track ID2908 + NameGill 'te Guitar + ArtistRabbi Shergill + ComposerRabbi Shergill + AlbumRabbi + GenreWorld + KindAAC audio file + Size6649835 + Total Time274599 + Track Number7 + Date Modified2007-07-27T06:36:14Z + Date Added2009-10-03T14:54:35Z + Bit Rate192 + Sample Rate44100 + Normalization3808 + Persistent ID44E7B725731791E6 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rabbi%20Shergill/Rabbi/07%20Gill%20'te%20Guitar%201.m4a + File Folder Count4 + Library Folder Count1 + + 2910 + + Track ID2910 + NameGill 'te Guitar + ArtistRabbi Shergill + ComposerRabbi Shergill + AlbumRabbi + GenreWorld + KindAAC audio file + Size6649803 + Total Time274620 + Track Number7 + Date Modified2006-12-27T10:32:58Z + Date Added2009-10-03T14:54:35Z + Bit Rate192 + Sample Rate44100 + Normalization3808 + Persistent IDEBBDFBA34A194B93 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rabbi%20Shergill/Rabbi/07%20Gill%20'te%20Guitar%202.m4a + File Folder Count4 + Library Folder Count1 + + 2912 + + Track ID2912 + NameGill 'te Guitar + ArtistRabbi Shergill + ComposerRabbi Shergill + AlbumRabbi + GenreWorld + KindAAC audio file + Size6491850 + Total Time274599 + Track Number7 + Date Modified2007-12-02T08:04:11Z + Date Added2009-10-03T14:54:35Z + Bit Rate187 + Sample Rate44100 + Normalization3808 + Persistent ID34FA0000427F0775 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rabbi%20Shergill/Rabbi/07%20Gill%20'te%20Guitar%203.m4a + File Folder Count4 + Library Folder Count1 + + 2914 + + Track ID2914 + NameJugni + ArtistRabbi Shergill + ComposerRabbi Shergill + AlbumRabbi + GenreWorld + KindAAC audio file + Size6669955 + Total Time275503 + Track Number9 + Date Modified2006-12-29T04:14:38Z + Date Added2009-10-03T14:54:35Z + Bit Rate192 + Sample Rate44100 + Normalization1776 + Persistent IDD7318FDDA9F29890 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rabbi%20Shergill/Rabbi/09%20Jugni.m4a + File Folder Count4 + Library Folder Count1 + + 2916 + + Track ID2916 + NameJugni + ArtistRabbi Shergill + ComposerRabbi Shergill + AlbumRabbi + GenreWorld + KindAAC audio file + Size6669936 + Total Time275481 + Track Number9 + Date Modified2007-07-27T06:36:50Z + Date Added2009-10-03T14:54:35Z + Bit Rate192 + Sample Rate44100 + Normalization1776 + Persistent IDCB1CB97E2543C58B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rabbi%20Shergill/Rabbi/09%20Jugni%201.m4a + File Folder Count4 + Library Folder Count1 + + 2918 + + Track ID2918 + NameJugni + ArtistRabbi Shergill + ComposerRabbi Shergill + AlbumRabbi + GenreWorld + KindAAC audio file + Size6669955 + Total Time275503 + Track Number9 + Date Modified2006-12-27T10:33:50Z + Date Added2009-10-03T14:54:36Z + Bit Rate192 + Sample Rate44100 + Normalization1776 + Persistent IDDE67063172D30CE8 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rabbi%20Shergill/Rabbi/09%20Jugni%202.m4a + File Folder Count4 + Library Folder Count1 + + 2920 + + Track ID2920 + NameJugni + ArtistRabbi Shergill + ComposerRabbi Shergill + AlbumRabbi + GenreWorld + KindAAC audio file + Size6506009 + Total Time275481 + Track Number9 + Date Modified2007-12-02T08:04:43Z + Date Added2009-10-03T14:54:36Z + Bit Rate187 + Sample Rate44100 + Normalization1776 + Persistent IDBCD6BF3C5A297905 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rabbi%20Shergill/Rabbi/09%20Jugni%203.m4a + File Folder Count4 + Library Folder Count1 + + 2922 + + Track ID2922 + NameAjj Nachna + ArtistRabbi Sheergill + ComposerRabbi Shergill + AlbumRabbi + GenreWorld + KindAAC audio file + Size5987703 + Total Time247128 + Track Number6 + Date Modified2006-12-29T04:13:40Z + Date Added2009-10-03T14:54:36Z + Bit Rate192 + Sample Rate44100 + Skip Count1 + Skip Date2014-01-03T14:10:51Z + Normalization4644 + Persistent IDCA7252DD743E1674 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rabbi%20Sheergill/Rabbi/06%20Ajj%20Nachna.m4a + File Folder Count4 + Library Folder Count1 + + 2924 + + Track ID2924 + NameAjj Nachna + ArtistRabbi Sheergill + ComposerRabbi Shergill + AlbumRabbi + GenreWorld + KindAAC audio file + Size5984919 + Total Time247106 + Track Number6 + Date Modified2007-07-27T06:35:50Z + Date Added2009-10-03T14:54:36Z + Bit Rate192 + Sample Rate44100 + Normalization4644 + Persistent IDE0C20F01CBB081B6 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rabbi%20Sheergill/Rabbi/06%20Ajj%20Nachna%201.m4a + File Folder Count4 + Library Folder Count1 + + 2926 + + Track ID2926 + NameAjj Nachna + ArtistRabbi Sheergill + ComposerRabbi Shergill + AlbumRabbi + GenreWorld + KindAAC audio file + Size5987703 + Total Time247128 + Track Number6 + Date Modified2006-12-27T10:32:32Z + Date Added2009-10-03T14:54:36Z + Bit Rate192 + Sample Rate44100 + Normalization4644 + Persistent ID2B03FBD417BEEA0B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rabbi%20Sheergill/Rabbi/06%20Ajj%20Nachna%202.m4a + File Folder Count4 + Library Folder Count1 + + 2928 + + Track ID2928 + NameAjj Nachna + ArtistRabbi Sheergill + ComposerRabbi Shergill + AlbumRabbi + GenreWorld + KindAAC audio file + Size5816814 + Total Time247106 + Track Number6 + Date Modified2007-12-02T08:03:55Z + Date Added2009-10-03T14:54:36Z + Bit Rate186 + Sample Rate44100 + Normalization4644 + Persistent ID3802DE9A0912C8AC + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rabbi%20Sheergill/Rabbi/06%20Ajj%20Nachna%203.m4a + File Folder Count4 + Library Folder Count1 + + 2930 + + Track ID2930 + NameEk Geet Hijar Da + ArtistRabbi Sheergill + ComposerRabbi Shergill + AlbumRabbi + GenreWorld + KindAAC audio file + Size6891524 + Total Time284605 + Track Number8 + Date Modified2006-12-29T04:14:22Z + Date Added2009-10-03T14:54:36Z + Bit Rate192 + Sample Rate44100 + Normalization3591 + Persistent ID2A7E462150090440 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rabbi%20Sheergill/Rabbi/08%20Ek%20Geet%20Hijar%20Da.m4a + File Folder Count4 + Library Folder Count1 + + 2932 + + Track ID2932 + NameEk Geet Hijar Da + ArtistRabbi Sheergill + ComposerRabbi Shergill + AlbumRabbi + GenreWorld + KindAAC audio file + Size6891517 + Total Time284583 + Track Number8 + Date Modified2007-07-27T06:36:32Z + Date Added2009-10-03T14:54:36Z + Bit Rate192 + Sample Rate44100 + Normalization3591 + Persistent ID072F2FA980107EA6 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rabbi%20Sheergill/Rabbi/08%20Ek%20Geet%20Hijar%20Da%201.m4a + File Folder Count4 + Library Folder Count1 + + 2934 + + Track ID2934 + NameEk Geet Hijar Da + ArtistRabbi Sheergill + ComposerRabbi Shergill + AlbumRabbi + GenreWorld + KindAAC audio file + Size6891524 + Total Time284605 + Track Number8 + Date Modified2006-12-27T10:33:20Z + Date Added2009-10-03T14:54:36Z + Bit Rate192 + Sample Rate44100 + Normalization3591 + Persistent ID71A27046DC589519 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rabbi%20Sheergill/Rabbi/08%20Ek%20Geet%20Hijar%20Da%202.m4a + File Folder Count4 + Library Folder Count1 + + 2936 + + Track ID2936 + NameEk Geet Hijar Da + ArtistRabbi Sheergill + ComposerRabbi Shergill + AlbumRabbi + GenreWorld + KindAAC audio file + Size6716424 + Total Time284583 + Track Number8 + Date Modified2007-12-02T08:04:27Z + Date Added2009-10-03T14:54:36Z + Bit Rate187 + Sample Rate44100 + Normalization3591 + Persistent ID6538F8A902C84F07 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rabbi%20Sheergill/Rabbi/08%20Ek%20Geet%20Hijar%20Da%203.m4a + File Folder Count4 + Library Folder Count1 + + 2938 + + Track ID2938 + NameBohemian Rhapsody + ArtistQueen + ComposerMercury, Freddie + AlbumGreatest Hits I + GenreRock + KindAAC audio file + Size8968180 + Total Time358293 + Disc Number1 + Disc Count1 + Track Number1 + Track Count17 + Year1975 + Date Modified2008-10-01T01:25:43Z + Date Added2009-10-03T14:54:37Z + Bit Rate191 + Sample Rate44100 + Normalization1202 + Artwork Count1 + Persistent ID9BAC1C9759997523 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Queen/Greatest%20Hits%20I/01%20Bohemian%20Rhapsody.m4a + File Folder Count4 + Library Folder Count1 + + 2940 + + Track ID2940 + NameAnother One Bites The Dust + ArtistQueen + ComposerDeacon, John + AlbumGreatest Hits I + GenreRock + KindAAC audio file + Size5446841 + Total Time216906 + Disc Number1 + Disc Count1 + Track Number2 + Track Count17 + Year1980 + Date Modified2008-10-01T01:25:42Z + Date Added2009-10-03T14:54:37Z + Bit Rate187 + Sample Rate44100 + Normalization1202 + Artwork Count1 + Persistent ID1819FA315B9C3F13 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Queen/Greatest%20Hits%20I/02%20Another%20One%20Bites%20The%20Dust.m4a + File Folder Count4 + Library Folder Count1 + + 2942 + + Track ID2942 + NameKiller Queen + ArtistQueen + ComposerMercury, Freddie + AlbumGreatest Hits I + GenreRock + KindAAC audio file + Size4691438 + Total Time182000 + Disc Number1 + Disc Count1 + Track Number3 + Track Count17 + Year1974 + Date Modified2008-10-01T01:25:40Z + Date Added2009-10-03T14:54:37Z + Bit Rate190 + Sample Rate44100 + Normalization1971 + Artwork Count1 + Persistent ID7E86CD12B0F6BAA1 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Queen/Greatest%20Hits%20I/03%20Killer%20Queen.m4a + File Folder Count4 + Library Folder Count1 + + 2944 + + Track ID2944 + NameFat Bottomed Girls + ArtistQueen + ComposerMay, Brian + AlbumGreatest Hits I + GenreRock + KindAAC audio file + Size5236599 + Total Time204560 + Disc Number1 + Disc Count1 + Track Number4 + Track Count17 + Year1978 + Date Modified2008-10-01T01:25:40Z + Date Added2009-10-03T14:54:37Z + Bit Rate190 + Sample Rate44100 + Normalization1611 + Artwork Count1 + Persistent ID563B9DB3206885EC + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Queen/Greatest%20Hits%20I/04%20Fat%20Bottomed%20Girls.m4a + File Folder Count4 + Library Folder Count1 + + 2946 + + Track ID2946 + NameBicycle Race + ArtistQueen + ComposerMercury, Freddie + AlbumGreatest Hits I + GenreRock + KindAAC audio file + Size4784979 + Total Time183800 + Disc Number1 + Disc Count1 + Track Number5 + Track Count17 + Year1978 + Date Modified2008-10-01T01:25:39Z + Date Added2009-10-03T14:54:37Z + Bit Rate193 + Sample Rate44100 + Normalization4606 + Artwork Count1 + Persistent ID7FB0839B8D3B140C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Queen/Greatest%20Hits%20I/05%20Bicycle%20Race.m4a + File Folder Count4 + Library Folder Count1 + + 2948 + + Track ID2948 + NameYou're My Best Friend + ArtistQueen + ComposerDeacon, John + AlbumGreatest Hits I + GenreRock + KindAAC audio file + Size4383458 + Total Time172173 + Disc Number1 + Disc Count1 + Track Number6 + Track Count17 + Year1975 + Date Modified2008-10-01T01:25:38Z + Date Added2009-10-03T14:54:38Z + Bit Rate187 + Sample Rate44100 + Normalization2445 + Artwork Count1 + Persistent ID1945C754E4D3C95F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Queen/Greatest%20Hits%20I/06%20You're%20My%20Best%20Friend.m4a + File Folder Count4 + Library Folder Count1 + + 2950 + + Track ID2950 + NameDon't Stop Me Now + ArtistQueen + ComposerMercury, Freddie + AlbumGreatest Hits I + GenreRock + KindAAC audio file + Size5353876 + Total Time211733 + Disc Number1 + Disc Count1 + Track Number7 + Track Count17 + Year1978 + Date Modified2008-10-01T01:25:37Z + Date Added2009-10-03T14:54:38Z + Bit Rate188 + Sample Rate44100 + Normalization4900 + Artwork Count1 + Persistent IDE2971D0157310B30 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Queen/Greatest%20Hits%20I/07%20Don't%20Stop%20Me%20Now.m4a + File Folder Count4 + Library Folder Count1 + + 2952 + + Track ID2952 + NameSave Me + ArtistQueen + ComposerMay, Brian + AlbumGreatest Hits I + GenreRock + KindAAC audio file + Size5922117 + Total Time228600 + Disc Number1 + Disc Count1 + Track Number8 + Track Count17 + Year1980 + Date Modified2008-10-01T01:25:36Z + Date Added2009-10-03T14:54:38Z + Bit Rate194 + Sample Rate44100 + Normalization2125 + Artwork Count1 + Persistent IDA17EED4E3A05DDB2 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Queen/Greatest%20Hits%20I/08%20Save%20Me.m4a + File Folder Count4 + Library Folder Count1 + + 2954 + + Track ID2954 + NameCrazy Little Thing Called Love + ArtistQueen + ComposerMercury, Freddie + AlbumGreatest Hits I + GenreRock + KindAAC audio file + Size4334937 + Total Time163826 + Disc Number1 + Disc Count1 + Track Number9 + Track Count17 + Year1979 + Date Modified2008-10-01T01:25:35Z + Date Added2009-10-03T14:54:38Z + Bit Rate194 + Sample Rate44100 + Normalization1537 + Artwork Count1 + Persistent ID1D51DB2902185C94 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Queen/Greatest%20Hits%20I/09%20Crazy%20Little%20Thing%20Called%20Love.m4a + File Folder Count4 + Library Folder Count1 + + 2956 + + Track ID2956 + NameSomebody To Love + ArtistQueen + ComposerMercury, Freddie + AlbumGreatest Hits I + GenreRock + KindAAC audio file + Size7593281 + Total Time297666 + Disc Number1 + Disc Count1 + Track Number10 + Track Count17 + Year1976 + Date Modified2008-10-01T01:25:35Z + Date Added2009-10-03T14:54:38Z + Bit Rate194 + Sample Rate44100 + Normalization3196 + Artwork Count1 + Persistent IDBBD7D3D6BCBB2443 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Queen/Greatest%20Hits%20I/10%20Somebody%20To%20Love.m4a + File Folder Count4 + Library Folder Count1 + + 2958 + + Track ID2958 + NameNow I'm Here + ArtistQueen + ComposerMay, Brian + AlbumGreatest Hits I + GenreRock + KindAAC audio file + Size6532568 + Total Time255240 + Disc Number1 + Disc Count1 + Track Number11 + Track Count17 + Year1974 + Date Modified2008-10-01T01:25:33Z + Date Added2009-10-03T14:54:39Z + Bit Rate193 + Sample Rate44100 + Normalization1315 + Artwork Count1 + Persistent IDDFEEB195E6AE8F66 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Queen/Greatest%20Hits%20I/11%20Now%20I'm%20Here.m4a + File Folder Count4 + Library Folder Count1 + + 2960 + + Track ID2960 + NameNow I'm Here + ArtistQueen + ComposerMay, Brian + AlbumGreatest Hits I + GenreRock + KindAAC audio file + Size365866 + Total Time333 + Disc Number1 + Disc Count1 + Track Number11 + Track Count17 + Year1974 + Date Modified2008-10-01T01:25:33Z + Date Added2009-10-03T14:54:39Z + Bit Rate74 + Sample Rate44100 + Normalization89 + Artwork Count1 + Persistent ID5719337281196707 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Queen/Greatest%20Hits%20I/11%20Now%20I'm%20Here%201.m4a + File Folder Count4 + Library Folder Count1 + + 2962 + + Track ID2962 + NameGood Old-Fashioned Lover Boy + ArtistQueen + ComposerMercury, Freddie + AlbumGreatest Hits I + GenreRock + KindAAC audio file + Size4628031 + Total Time175826 + Disc Number1 + Disc Count1 + Track Number12 + Track Count17 + Year1976 + Date Modified2008-10-01T01:25:32Z + Date Added2009-10-03T14:54:39Z + Bit Rate194 + Sample Rate44100 + Normalization1881 + Artwork Count1 + Persistent IDB6C1E5058B677163 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Queen/Greatest%20Hits%20I/12%20Good%20Old-Fashioned%20Lover%20Boy.m4a + File Folder Count4 + Library Folder Count1 + + 2964 + + Track ID2964 + NamePlay The Game + ArtistQueen + ComposerMercury, Freddie + AlbumGreatest Hits I + GenreRock + KindAAC audio file + Size5489443 + Total Time213306 + Disc Number1 + Disc Count1 + Track Number13 + Track Count17 + Year1980 + Date Modified2008-10-01T01:25:31Z + Date Added2009-10-03T14:54:39Z + Bit Rate192 + Sample Rate44100 + Normalization3209 + Artwork Count1 + Persistent ID3651F4143806CD0E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Queen/Greatest%20Hits%20I/13%20Play%20The%20Game.m4a + File Folder Count4 + Library Folder Count1 + + 2966 + + Track ID2966 + NameFlash + ArtistQueen + ComposerMay, Brian + AlbumGreatest Hits I + GenreRock + KindAAC audio file + Size4428250 + Total Time168426 + Disc Number1 + Disc Count1 + Track Number14 + Track Count17 + Year1980 + Date Modified2008-10-01T01:25:30Z + Date Added2009-10-03T14:54:39Z + Bit Rate193 + Sample Rate44100 + Normalization1489 + Artwork Count1 + Persistent ID7084BAA48D2C066B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Queen/Greatest%20Hits%20I/14%20Flash.m4a + File Folder Count4 + Library Folder Count1 + + 2968 + + Track ID2968 + NameSeven Seas Of Rhye + ArtistQueen + ComposerMercury, Freddie + AlbumGreatest Hits I + GenreRock + KindAAC audio file + Size4350237 + Total Time170466 + Disc Number1 + Disc Count1 + Track Number15 + Track Count17 + Year1974 + Date Modified2008-10-01T01:25:29Z + Date Added2009-10-03T14:54:40Z + Bit Rate187 + Sample Rate44100 + Normalization1530 + Artwork Count1 + Persistent ID0C2D746D9000D686 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Queen/Greatest%20Hits%20I/15%20Seven%20Seas%20Of%20Rhye.m4a + File Folder Count4 + Library Folder Count1 + + 2970 + + Track ID2970 + NameWe Will Rock You + ArtistQueen + ComposerMay, Brian + AlbumGreatest Hits I + GenreRock + KindAAC audio file + Size3271976 + Total Time122773 + Disc Number1 + Disc Count1 + Track Number16 + Track Count17 + Year1977 + Date Modified2008-10-01T01:25:28Z + Date Added2009-10-03T14:54:40Z + Bit Rate191 + Sample Rate44100 + Play Count1 + Play Date3484153326 + Play Date UTC2014-05-28T14:52:06Z + Normalization2644 + Artwork Count1 + Persistent IDF68310BB8B9250BD + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Queen/Greatest%20Hits%20I/16%20We%20Will%20Rock%20You.m4a + File Folder Count4 + Library Folder Count1 + + 2972 + + Track ID2972 + NameWe Are The Champions + ArtistQueen + ComposerMercury, Freddie + AlbumGreatest Hits I + GenreRock + KindAAC audio file + Size4706629 + Total Time181400 + Disc Number1 + Disc Count1 + Track Number17 + Track Count17 + Year1977 + Date Modified2008-10-01T01:25:27Z + Date Added2009-10-03T14:54:40Z + Bit Rate192 + Sample Rate44100 + Normalization4478 + Artwork Count1 + Persistent IDE139F008A72B2F92 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Queen/Greatest%20Hits%20I/17%20We%20Are%20The%20Champions.m4a + File Folder Count4 + Library Folder Count1 + + 2974 + + Track ID2974 + NameDeath On Two Legs + ArtistQueen + ComposerDeacon/Mercury + AlbumA Night At The Opera + GenreRock + KindAAC audio file + Size7154580 + Total Time223253 + Disc Number1 + Disc Count1 + Track Number1 + Track Count12 + Year1975 + Date Modified2008-10-15T13:40:55Z + Date Added2009-10-03T14:54:40Z + Bit Rate256 + Sample Rate44100 + Normalization5508 + Artwork Count1 + Sort AlbumNight At The Opera + Persistent ID1B3F57B8BCBAEABA + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Queen/A%20Night%20At%20The%20Opera/01%20Death%20On%20Two%20Legs.m4a + File Folder Count4 + Library Folder Count1 + + 2976 + + Track ID2976 + NameLazing On A Sunday Afternoon + ArtistQueen + ComposerMercury + AlbumA Night At The Opera + GenreRock + KindAAC audio file + Size2220213 + Total Time67400 + Disc Number1 + Disc Count1 + Track Number2 + Track Count12 + Year1975 + Date Modified2008-10-15T13:40:57Z + Date Added2009-10-03T14:54:40Z + Bit Rate256 + Sample Rate44100 + Normalization2787 + Artwork Count1 + Sort AlbumNight At The Opera + Persistent ID08DEAF8EBFBD410F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Queen/A%20Night%20At%20The%20Opera/02%20Lazing%20On%20A%20Sunday%20Afternoon.m4a + File Folder Count4 + Library Folder Count1 + + 2978 + + Track ID2978 + NameI'm In Love With My Car + ArtistQueen + ComposerTaylor + AlbumA Night At The Opera + GenreRock + KindAAC audio file + Size6017807 + Total Time184893 + Disc Number1 + Disc Count1 + Track Number3 + Track Count12 + Year1975 + Date Modified2008-10-15T13:41:02Z + Date Added2009-10-03T14:54:40Z + Bit Rate256 + Sample Rate44100 + Normalization4150 + Artwork Count1 + Sort AlbumNight At The Opera + Persistent ID43C4665D3C413A6A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Queen/A%20Night%20At%20The%20Opera/03%20I'm%20In%20Love%20With%20My%20Car.m4a + File Folder Count4 + Library Folder Count1 + + 2980 + + Track ID2980 + NameYou're My Best Friend + ArtistQueen + ComposerDeacon + AlbumA Night At The Opera + GenreRock + KindAAC audio file + Size5476351 + Total Time172440 + Disc Number1 + Disc Count1 + Track Number4 + Track Count12 + Year1975 + Date Modified2008-10-15T13:41:04Z + Date Added2009-10-03T14:54:41Z + Bit Rate256 + Sample Rate44100 + Skip Count1 + Skip Date2010-08-25T12:05:16Z + Normalization3698 + Artwork Count1 + Sort AlbumNight At The Opera + Persistent IDBFE3D20238D7991C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Queen/A%20Night%20At%20The%20Opera/04%20You're%20My%20Best%20Friend.m4a + File Folder Count4 + Library Folder Count1 + + 2982 + + Track ID2982 + Name'39 + ArtistQueen + ComposerMay + AlbumA Night At The Opera + GenreRock + KindAAC audio file + Size6925702 + Total Time210800 + Disc Number1 + Disc Count1 + Track Number5 + Track Count12 + Year1975 + Date Modified2008-10-15T13:41:05Z + Date Added2009-10-03T14:54:41Z + Bit Rate256 + Sample Rate44100 + Normalization2273 + Artwork Count1 + Sort AlbumNight At The Opera + Persistent IDF8EEA0B62579A019 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Queen/A%20Night%20At%20The%20Opera/05%20'39.m4a + File Folder Count4 + Library Folder Count1 + + 2984 + + Track ID2984 + NameSweet Lady + ArtistQueen + ComposerMay + AlbumA Night At The Opera + GenreRock + KindAAC audio file + Size7765247 + Total Time243693 + Disc Number1 + Disc Count1 + Track Number6 + Track Count12 + Year1975 + Date Modified2008-10-15T13:41:07Z + Date Added2009-10-03T14:54:41Z + Bit Rate256 + Sample Rate44100 + Normalization3073 + Artwork Count1 + Sort AlbumNight At The Opera + Persistent ID75A2EC321973BA09 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Queen/A%20Night%20At%20The%20Opera/06%20Sweet%20Lady.m4a + File Folder Count4 + Library Folder Count1 + + 2986 + + Track ID2986 + NameSeaside Rendezvous + ArtistQueen + ComposerMercury + AlbumA Night At The Opera + GenreRock + KindAAC audio file + Size4399876 + Total Time134880 + Disc Number1 + Disc Count1 + Track Number7 + Track Count12 + Year1975 + Date Modified2008-10-15T13:41:09Z + Date Added2009-10-03T14:54:41Z + Bit Rate256 + Sample Rate44100 + Normalization6186 + Artwork Count1 + Sort AlbumNight At The Opera + Persistent ID08A635BF1AD89AF0 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Queen/A%20Night%20At%20The%20Opera/07%20Seaside%20Rendezvous.m4a + File Folder Count4 + Library Folder Count1 + + 2988 + + Track ID2988 + NameThe Prophet's Song + ArtistQueen + ComposerMay + AlbumA Night At The Opera + GenreRock + KindAAC audio file + Size16413904 + Total Time500960 + Disc Number1 + Disc Count1 + Track Number8 + Track Count12 + Year1975 + Date Modified2008-10-15T13:41:13Z + Date Added2009-10-03T14:54:41Z + Bit Rate256 + Sample Rate44100 + Normalization3559 + Artwork Count1 + Sort AlbumNight At The Opera + Sort NameProphet's Song + Persistent ID7DDC28500083562C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Queen/A%20Night%20At%20The%20Opera/08%20The%20Prophet's%20Song.m4a + File Folder Count4 + Library Folder Count1 + + 2990 + + Track ID2990 + NameLove Of My Life + ArtistQueen + ComposerMercury + AlbumA Night At The Opera + GenreRock + KindAAC audio file + Size7048730 + Total Time218880 + Disc Number1 + Disc Count1 + Track Number9 + Track Count12 + Year1975 + Date Modified2008-10-15T13:41:18Z + Date Added2009-10-03T14:54:41Z + Bit Rate256 + Sample Rate44100 + Normalization1663 + Artwork Count1 + Sort AlbumNight At The Opera + Persistent ID029927B30C36661F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Queen/A%20Night%20At%20The%20Opera/09%20Love%20Of%20My%20Life.m4a + File Folder Count4 + Library Folder Count1 + + 2992 + + Track ID2992 + NameGood Company + ArtistQueen + ComposerMay + AlbumA Night At The Opera + GenreRock + KindAAC audio file + Size6655240 + Total Time203440 + Disc Number1 + Disc Count1 + Track Number10 + Track Count12 + Year1975 + Date Modified2008-10-15T13:41:19Z + Date Added2009-10-03T14:54:41Z + Bit Rate256 + Sample Rate44100 + Skip Count1 + Skip Date2010-08-25T11:00:08Z + Normalization1741 + Artwork Count1 + Sort AlbumNight At The Opera + Persistent IDE65E20B2A520E5C2 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Queen/A%20Night%20At%20The%20Opera/10%20Good%20Company.m4a + File Folder Count4 + Library Folder Count1 + + 2994 + + Track ID2994 + NameBohemian Rhapsody + ArtistQueen + ComposerMercury + AlbumA Night At The Opera + GenreRock + KindAAC audio file + Size11573019 + Total Time354346 + Disc Number1 + Disc Count1 + Track Number11 + Track Count12 + Year1975 + Date Modified2008-10-15T13:41:24Z + Date Added2009-10-03T14:54:42Z + Bit Rate256 + Sample Rate44100 + Normalization2516 + Artwork Count1 + Sort AlbumNight At The Opera + Persistent ID316EC2E7A08C13D8 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Queen/A%20Night%20At%20The%20Opera/11%20Bohemian%20Rhapsody.m4a + File Folder Count4 + Library Folder Count1 + + 2996 + + Track ID2996 + NameGod Save The Queen + ArtistQueen + Composer[traditional] + AlbumA Night At The Opera + GenreRock + KindAAC audio file + Size2388167 + Total Time73306 + Disc Number1 + Disc Count1 + Track Number12 + Track Count12 + Year1975 + Date Modified2008-10-11T10:08:37Z + Date Added2009-10-03T14:54:42Z + Bit Rate256 + Sample Rate44100 + Normalization1090 + Artwork Count1 + Sort AlbumNight At The Opera + Persistent ID7D06BEA956896D55 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Queen/A%20Night%20At%20The%20Opera/12%20God%20Save%20The%20Queen.m4a + File Folder Count4 + Library Folder Count1 + + 3020 + + Track ID3020 + NameShine On You Crazy Diamond (Parts I-V) + ArtistPink Floyd + ComposerDavid Gilmour, Roger Waters, Richard Wright + AlbumWish You Were Here + GenreRock + KindAAC audio file + Size19874872 + Total Time820266 + Disc Number1 + Disc Count1 + Track Number1 + Track Count5 + Year1975 + BPM192 + Date Modified2006-08-13T06:45:50Z + Date Added2009-10-03T14:54:45Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3389528756 + Play Date UTC2011-05-29T10:15:56Z + Normalization1703 + Artwork Count1 + Persistent IDF5D244D92BDA0086 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/Wish%20You%20Were%20Here/01%20Shine%20On%20You%20Crazy%20Diamond%20(Parts%20I-V).m4a + File Folder Count4 + Library Folder Count1 + + 3022 + + Track ID3022 + NameWelcome to the Machine + ArtistPink Floyd + ComposerRoger Waters + AlbumWish You Were Here + GenreRock + KindAAC audio file + Size10943614 + Total Time451162 + Disc Number1 + Disc Count1 + Track Number2 + Track Count5 + Year1975 + BPM192 + Date Modified2006-08-13T06:45:42Z + Date Added2009-10-03T14:54:45Z + Bit Rate192 + Sample Rate44100 + Normalization2061 + Artwork Count1 + Persistent IDC021DD7293F29AF4 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/Wish%20You%20Were%20Here/02%20Welcome%20to%20the%20Machine.m4a + File Folder Count4 + Library Folder Count1 + + 3024 + + Track ID3024 + NameHave A Cigar + ArtistPink Floyd + ComposerRoger Waters + AlbumWish You Were Here + GenreRock + KindAAC audio file + Size7497620 + Total Time308754 + Disc Number1 + Disc Count1 + Track Number3 + Track Count5 + Year1975 + BPM192 + Date Modified2006-08-13T06:45:36Z + Date Added2009-10-03T14:54:45Z + Bit Rate192 + Sample Rate44100 + Normalization2536 + Artwork Count1 + Persistent ID94ADE859464E9F84 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/Wish%20You%20Were%20Here/03%20Have%20A%20Cigar.m4a + File Folder Count4 + Library Folder Count1 + + 3026 + + Track ID3026 + NameWish You Were Here + ArtistPink Floyd + ComposerRoger Waters, David Gilmour + AlbumWish You Were Here + GenreRock + KindAAC audio file + Size8117727 + Total Time334389 + Disc Number1 + Disc Count1 + Track Number4 + Track Count5 + Year1975 + BPM192 + Date Modified2006-08-13T06:45:34Z + Date Added2009-10-03T14:54:46Z + Bit Rate192 + Sample Rate44100 + Normalization993 + Artwork Count1 + Persistent ID81EAC05E8DE4546D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/Wish%20You%20Were%20Here/04%20Wish%20You%20Were%20Here.m4a + File Folder Count4 + Library Folder Count1 + + 3028 + + Track ID3028 + NameShine On You Crazy Diamond (Parts VI-IX) + ArtistPink Floyd + ComposerRoger Waters, Richard Wright, David Gilmour + AlbumWish You Were Here + GenreRock + KindAAC audio file + Size18209792 + Total Time751489 + Disc Number1 + Disc Count1 + Track Number5 + Track Count5 + Year1975 + BPM192 + Date Modified2006-08-13T06:45:30Z + Date Added2009-10-03T14:54:46Z + Bit Rate192 + Sample Rate44100 + Normalization1341 + Artwork Count1 + Persistent IDB483A0BD8FE15A6A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/Wish%20You%20Were%20Here/05%20Shine%20On%20You%20Crazy%20Diamond%20(Parts%20VI-IX).m4a + File Folder Count4 + Library Folder Count1 + + 3030 + + Track ID3030 + NameHey You + ArtistPink Floyd + ComposerRoger Waters + AlbumThe Wall [Disc 2] + GenreRock + KindAAC audio file + Size9354397 + Total Time281160 + Disc Number2 + Disc Count2 + Track Number1 + Track Count13 + Year1979 + BPM192 + Date Modified2009-06-25T16:14:21Z + Date Added2009-10-03T14:54:46Z + Bit Rate256 + Sample Rate44100 + Normalization725 + Artwork Count1 + Sort AlbumWall [Disc 2] + Persistent ID03283067B5392877 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/The%20Wall%20%5BDisc%202%5D/2-01%20Hey%20You.m4a + File Folder Count4 + Library Folder Count1 + + 3032 + + Track ID3032 + NameIs There Anybody Out There? + ArtistPink Floyd + ComposerRoger Waters + AlbumThe Wall [Disc 2] + GenreRock + KindAAC audio file + Size6046801 + Total Time177706 + Disc Number2 + Disc Count2 + Track Number2 + Track Count13 + Year1979 + BPM192 + Date Modified2009-06-25T16:14:21Z + Date Added2009-10-03T14:54:46Z + Bit Rate256 + Sample Rate44100 + Normalization407 + Artwork Count1 + Sort AlbumWall [Disc 2] + Persistent IDDC210A083EFE2E9A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/The%20Wall%20%5BDisc%202%5D/2-02%20Is%20There%20Anybody%20Out%20There_.m4a + File Folder Count4 + Library Folder Count1 + + 3034 + + Track ID3034 + NameNobody Home + ArtistPink Floyd + ComposerRoger Waters + AlbumThe Wall [Disc 2] + GenreRock + KindAAC audio file + Size6361685 + Total Time192026 + Disc Number2 + Disc Count2 + Track Number3 + Track Count13 + Year1979 + BPM192 + Date Modified2009-06-25T16:14:21Z + Date Added2009-10-03T14:54:46Z + Bit Rate256 + Sample Rate44100 + Normalization295 + Artwork Count1 + Sort AlbumWall [Disc 2] + Persistent ID256B66D342F9D4F0 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/The%20Wall%20%5BDisc%202%5D/2-03%20Nobody%20Home.m4a + File Folder Count4 + Library Folder Count1 + + 3036 + + Track ID3036 + NameVera + ArtistPink Floyd + ComposerRoger Waters + AlbumThe Wall [Disc 2] + GenreRock + KindAAC audio file + Size2951614 + Total Time88733 + Disc Number2 + Disc Count2 + Track Number4 + Track Count13 + Year1979 + BPM192 + Date Modified2009-06-25T16:14:20Z + Date Added2009-10-03T14:54:46Z + Bit Rate256 + Sample Rate44100 + Normalization236 + Artwork Count1 + Sort AlbumWall [Disc 2] + Persistent IDA1EBDF9A93DB1D1E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/The%20Wall%20%5BDisc%202%5D/2-04%20Vera.m4a + File Folder Count4 + Library Folder Count1 + + 3038 + + Track ID3038 + NameBring The Boys Back Home + ArtistPink Floyd + ComposerRoger Waters + AlbumThe Wall [Disc 2] + GenreRock + KindAAC audio file + Size3031064 + Total Time86906 + Disc Number2 + Disc Count2 + Track Number5 + Track Count13 + Year1979 + BPM192 + Date Modified2009-06-25T16:14:20Z + Date Added2009-10-03T14:54:46Z + Bit Rate256 + Sample Rate44100 + Normalization975 + Artwork Count1 + Sort AlbumWall [Disc 2] + Persistent IDE535A50757E08E98 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/The%20Wall%20%5BDisc%202%5D/2-05%20Bring%20The%20Boys%20Back%20Home.m4a + File Folder Count4 + Library Folder Count1 + + 3040 + + Track ID3040 + NameComfortably Numb + ArtistPink Floyd + ComposerDavid Gilmour, Roger Waters + AlbumThe Wall [Disc 2] + GenreRock + KindAAC audio file + Size12768305 + Total Time384466 + Disc Number2 + Disc Count2 + Track Number6 + Track Count13 + Year1979 + BPM192 + Date Modified2009-06-25T16:14:20Z + Date Added2009-10-03T14:54:47Z + Bit Rate256 + Sample Rate44100 + Normalization761 + Artwork Count1 + Sort AlbumWall [Disc 2] + Persistent IDAC7E0DA9A6EA4215 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/The%20Wall%20%5BDisc%202%5D/2-06%20Comfortably%20Numb.m4a + File Folder Count4 + Library Folder Count1 + + 3042 + + Track ID3042 + NameThe Show Must Go On + ArtistPink Floyd + ComposerRoger Waters + AlbumThe Wall [Disc 2] + GenreRock + KindAAC audio file + Size3272559 + Total Time98160 + Disc Number2 + Disc Count2 + Track Number7 + Track Count13 + Year1979 + BPM192 + Date Modified2009-06-25T16:14:19Z + Date Added2009-10-03T14:54:47Z + Bit Rate256 + Sample Rate44100 + Normalization571 + Artwork Count1 + Sort AlbumWall [Disc 2] + Sort NameShow Must Go On + Persistent ID93BE521C7877D11B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/The%20Wall%20%5BDisc%202%5D/2-07%20The%20Show%20Must%20Go%20On.m4a + File Folder Count4 + Library Folder Count1 + + 3044 + + Track ID3044 + NameIn The Flesh + ArtistPink Floyd + ComposerRoger Waters + AlbumThe Wall [Disc 2] + GenreRock + KindAAC audio file + Size8528005 + Total Time253440 + Disc Number2 + Disc Count2 + Track Number8 + Track Count13 + Year1979 + BPM192 + Date Modified2009-06-25T16:14:19Z + Date Added2009-10-03T14:54:47Z + Bit Rate256 + Sample Rate44100 + Normalization1020 + Artwork Count1 + Sort AlbumWall [Disc 2] + Persistent IDD13CD3A5E2D423BF + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/The%20Wall%20%5BDisc%202%5D/2-08%20In%20The%20Flesh.m4a + File Folder Count4 + Library Folder Count1 + + 3046 + + Track ID3046 + NameRun Like Hell + ArtistPink Floyd + ComposerDavid Gilmour, Roger Waters + AlbumThe Wall [Disc 2] + GenreRock + KindAAC audio file + Size8719476 + Total Time261133 + Disc Number2 + Disc Count2 + Track Number9 + Track Count13 + Year1979 + BPM192 + Date Modified2009-06-25T16:14:18Z + Date Added2009-10-03T14:54:47Z + Bit Rate256 + Sample Rate44100 + Normalization1209 + Artwork Count1 + Sort AlbumWall [Disc 2] + Persistent ID29C3AD7B5E033191 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/The%20Wall%20%5BDisc%202%5D/2-09%20Run%20Like%20Hell.m4a + File Folder Count4 + Library Folder Count1 + + 3048 + + Track ID3048 + NameWaiting For The Worms + ArtistPink Floyd + ComposerRoger Waters + AlbumThe Wall [Disc 2] + GenreRock + KindAAC audio file + Size8054261 + Total Time242893 + Disc Number2 + Disc Count2 + Track Number10 + Track Count13 + Year1979 + BPM192 + Date Modified2009-06-25T16:14:18Z + Date Added2009-10-03T14:54:47Z + Bit Rate256 + Sample Rate44100 + Normalization893 + Artwork Count1 + Sort AlbumWall [Disc 2] + Persistent ID2773C3F2DDDB177A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/The%20Wall%20%5BDisc%202%5D/2-10%20Waiting%20For%20The%20Worms.m4a + File Folder Count4 + Library Folder Count1 + + 3050 + + Track ID3050 + NameStop + ArtistPink Floyd + ComposerRoger Waters + AlbumThe Wall [Disc 2] + GenreRock + KindAAC audio file + Size1021445 + Total Time30106 + Disc Number2 + Disc Count2 + Track Number11 + Track Count13 + Year1979 + BPM192 + Date Modified2009-06-25T16:14:18Z + Date Added2009-10-03T14:54:47Z + Bit Rate256 + Sample Rate44100 + Normalization37 + Artwork Count1 + Sort AlbumWall [Disc 2] + Persistent ID0D1D7DE3B120767A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/The%20Wall%20%5BDisc%202%5D/2-11%20Stop.m4a + File Folder Count4 + Library Folder Count1 + + 3052 + + Track ID3052 + NameThe Trial + ArtistPink Floyd + ComposerRoger Waters, Bob Ezrin + AlbumThe Wall [Disc 2] + GenreRock + KindAAC audio file + Size10819613 + Total Time319226 + Disc Number2 + Disc Count2 + Track Number12 + Track Count13 + Year1979 + BPM192 + Date Modified2009-06-25T16:14:17Z + Date Added2009-10-03T14:54:47Z + Bit Rate256 + Sample Rate44100 + Normalization724 + Artwork Count1 + Sort AlbumWall [Disc 2] + Sort NameTrial + Persistent ID62675AD744D988E7 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/The%20Wall%20%5BDisc%202%5D/2-12%20The%20Trial.m4a + File Folder Count4 + Library Folder Count1 + + 3054 + + Track ID3054 + NameOutside The Wall + ArtistPink Floyd + ComposerRoger Waters/Bob Ezrin + AlbumThe Wall [Disc 2] + GenreRock + KindAAC audio file + Size3605356 + Total Time105106 + Disc Number2 + Disc Count2 + Track Number13 + Track Count13 + Year1979 + BPM192 + Date Modified2009-06-25T16:14:17Z + Date Added2009-10-03T14:54:47Z + Bit Rate256 + Sample Rate44100 + Normalization15 + Artwork Count1 + Sort AlbumWall [Disc 2] + Persistent IDB8AB72922AAE6C64 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/The%20Wall%20%5BDisc%202%5D/2-13%20Outside%20The%20Wall.m4a + File Folder Count4 + Library Folder Count1 + + 3056 + + Track ID3056 + NameIn The Flesh? + ArtistPink Floyd + ComposerRoger Waters + AlbumThe Wall [Disc 1] + GenreRock + KindAAC audio file + Size6648328 + Total Time199266 + Disc Number1 + Disc Count2 + Track Number1 + Track Count13 + Year1979 + BPM192 + Date Modified2009-06-25T16:14:25Z + Date Added2009-10-03T14:54:47Z + Bit Rate256 + Sample Rate44100 + Normalization1127 + Artwork Count1 + Sort AlbumWall [Disc 1] + Persistent ID3159B058FB9AA705 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/The%20Wall%20%5BDisc%201%5D/1-01%20In%20The%20Flesh_.m4a + File Folder Count4 + Library Folder Count1 + + 3058 + + Track ID3058 + NameThe Thin Ice + ArtistPink Floyd + ComposerRoger Waters + AlbumThe Wall [Disc 1] + GenreRock + KindAAC audio file + Size4974030 + Total Time149893 + Disc Number1 + Disc Count2 + Track Number2 + Track Count13 + Year1979 + BPM192 + Date Modified2009-06-25T16:14:25Z + Date Added2009-10-03T14:54:47Z + Bit Rate256 + Sample Rate44100 + Normalization642 + Artwork Count1 + Sort AlbumWall [Disc 1] + Sort NameThin Ice + Persistent IDA591021B5931D346 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/The%20Wall%20%5BDisc%201%5D/1-02%20The%20Thin%20Ice.m4a + File Folder Count4 + Library Folder Count1 + + 3060 + + Track ID3060 + NameAnother Brick In The Wall (Part 1) + ArtistPink Floyd + ComposerRoger Waters + AlbumThe Wall [Disc 1] + GenreRock + KindAAC audio file + Size6393497 + Total Time190800 + Disc Number1 + Disc Count2 + Track Number3 + Track Count13 + Year1979 + BPM192 + Date Modified2009-06-25T16:14:25Z + Date Added2009-10-03T14:54:48Z + Bit Rate256 + Sample Rate44100 + Normalization923 + Artwork Count1 + Sort AlbumWall [Disc 1] + Persistent IDCD405A0853EE28A9 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/The%20Wall%20%5BDisc%201%5D/1-03%20Another%20Brick%20In%20The%20Wall%20(Part%201).m4a + File Folder Count4 + Library Folder Count1 + + 3062 + + Track ID3062 + NameThe Happiest Days Of Our Lives + ArtistPink Floyd + ComposerRoger Waters + AlbumThe Wall [Disc 1] + GenreRock + KindAAC audio file + Size3717828 + Total Time109933 + Disc Number1 + Disc Count2 + Track Number4 + Track Count13 + Year1979 + BPM192 + Date Modified2009-06-25T16:14:24Z + Date Added2009-10-03T14:54:48Z + Bit Rate256 + Sample Rate44100 + Normalization1080 + Artwork Count1 + Sort AlbumWall [Disc 1] + Sort NameHappiest Days Of Our Lives + Persistent IDA21AAE0F688E997A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/The%20Wall%20%5BDisc%201%5D/1-04%20The%20Happiest%20Days%20Of%20Our%20Lives.m4a + File Folder Count4 + Library Folder Count1 + + 3064 + + Track ID3064 + NameAnother Brick In The Wall (Part 2) + ArtistPink Floyd + ComposerRoger Waters + AlbumThe Wall [Disc 1] + GenreRock + KindAAC audio file + Size8236509 + Total Time241800 + Disc Number1 + Disc Count2 + Track Number5 + Track Count13 + Year1979 + BPM192 + Date Modified2009-06-25T16:14:24Z + Date Added2009-10-03T14:54:48Z + Bit Rate256 + Sample Rate44100 + Normalization717 + Artwork Count1 + Sort AlbumWall [Disc 1] + Persistent ID2E7A8EC38AF2C875 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/The%20Wall%20%5BDisc%201%5D/1-05%20Another%20Brick%20In%20The%20Wall%20(Part%202).m4a + File Folder Count4 + Library Folder Count1 + + 3066 + + Track ID3066 + NameMother + ArtistPink Floyd + ComposerRoger Waters + AlbumThe Wall [Disc 1] + GenreRock + KindAAC audio file + Size11051936 + Total Time334373 + Disc Number1 + Disc Count2 + Track Number6 + Track Count13 + Year1979 + BPM192 + Date Modified2009-06-25T16:14:24Z + Date Added2009-10-03T14:54:48Z + Bit Rate256 + Sample Rate44100 + Normalization809 + Artwork Count1 + Sort AlbumWall [Disc 1] + Persistent IDEC271269049F763C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/The%20Wall%20%5BDisc%201%5D/1-06%20Mother.m4a + File Folder Count4 + Library Folder Count1 + + 3068 + + Track ID3068 + NameGoodbye Blue Sky + ArtistPink Floyd + ComposerRoger Waters + AlbumThe Wall [Disc 1] + GenreRock + KindAAC audio file + Size5628276 + Total Time169360 + Disc Number1 + Disc Count2 + Track Number7 + Track Count13 + Year1979 + BPM192 + Date Modified2009-06-25T16:14:23Z + Date Added2009-10-03T14:54:48Z + Bit Rate256 + Sample Rate44100 + Normalization253 + Artwork Count1 + Sort AlbumWall [Disc 1] + Persistent ID4688B6D05DA8D187 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/The%20Wall%20%5BDisc%201%5D/1-07%20Goodbye%20Blue%20Sky.m4a + File Folder Count4 + Library Folder Count1 + + 3070 + + Track ID3070 + NameEmpty Spaces + ArtistPink Floyd + ComposerRoger Waters + AlbumThe Wall [Disc 1] + GenreRock + KindAAC audio file + Size4276717 + Total Time128066 + Disc Number1 + Disc Count2 + Track Number8 + Track Count13 + Year1979 + BPM192 + Date Modified2009-06-25T16:14:23Z + Date Added2009-10-03T14:54:48Z + Bit Rate256 + Sample Rate44100 + Normalization1169 + Artwork Count1 + Sort AlbumWall [Disc 1] + Persistent ID60DC4E6B5C866A63 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/The%20Wall%20%5BDisc%201%5D/1-08%20Empty%20Spaces.m4a + File Folder Count4 + Library Folder Count1 + + 3072 + + Track ID3072 + NameYoung Lust + ArtistPink Floyd + ComposerDavid Gilmour, Roger Waters + AlbumThe Wall [Disc 1] + GenreRock + KindAAC audio file + Size7108185 + Total Time211773 + Disc Number1 + Disc Count2 + Track Number9 + Track Count13 + Year1979 + BPM192 + Date Modified2009-06-25T16:14:23Z + Date Added2009-10-03T14:54:48Z + Bit Rate256 + Sample Rate44100 + Normalization1246 + Artwork Count1 + Sort AlbumWall [Disc 1] + Persistent IDCF300CEEAEB21E38 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/The%20Wall%20%5BDisc%201%5D/1-09%20Young%20Lust.m4a + File Folder Count4 + Library Folder Count1 + + 3074 + + Track ID3074 + NameOne Of My Turns + ArtistPink Floyd + ComposerRoger Waters + AlbumThe Wall [Disc 1] + GenreRock + KindAAC audio file + Size7249081 + Total Time215400 + Disc Number1 + Disc Count2 + Track Number10 + Track Count13 + Year1979 + BPM192 + Date Modified2009-06-25T16:14:22Z + Date Added2009-10-03T14:54:48Z + Bit Rate256 + Sample Rate44100 + Normalization1239 + Artwork Count1 + Sort AlbumWall [Disc 1] + Persistent ID08AEE68793838695 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/The%20Wall%20%5BDisc%201%5D/1-10%20One%20Of%20My%20Turns.m4a + File Folder Count4 + Library Folder Count1 + + 3076 + + Track ID3076 + NameDon't Leave Me Now + ArtistPink Floyd + ComposerRoger Waters + AlbumThe Wall [Disc 1] + GenreRock + KindAAC audio file + Size8573477 + Total Time256533 + Disc Number1 + Disc Count2 + Track Number11 + Track Count13 + Year1979 + BPM192 + Date Modified2009-06-25T16:14:22Z + Date Added2009-10-03T14:54:49Z + Bit Rate256 + Sample Rate44100 + Normalization795 + Artwork Count1 + Sort AlbumWall [Disc 1] + Persistent ID72A31A641C77F7F1 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/The%20Wall%20%5BDisc%201%5D/1-11%20Don't%20Leave%20Me%20Now.m4a + File Folder Count4 + Library Folder Count1 + + 3078 + + Track ID3078 + NameAnother Brick In The Wall (Part III) + ArtistPink Floyd + ComposerRoger Waters + AlbumThe Wall [Disc 1] + GenreRock + KindAAC audio file + Size2494467 + Total Time74693 + Disc Number1 + Disc Count2 + Track Number12 + Track Count13 + Year1979 + BPM192 + Date Modified2009-06-25T16:14:22Z + Date Added2009-10-03T14:54:49Z + Bit Rate256 + Sample Rate44100 + Normalization1176 + Artwork Count1 + Sort AlbumWall [Disc 1] + Persistent ID182A80837C87A1FB + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/The%20Wall%20%5BDisc%201%5D/1-12%20Another%20Brick%20In%20The%20Wall%20(Part%20III).m4a + File Folder Count4 + Library Folder Count1 + + 3080 + + Track ID3080 + NameGoodbye Cruel World + ArtistPink Floyd + ComposerRoger Waters + AlbumThe Wall [Disc 1] + GenreRock + KindAAC audio file + Size2731848 + Total Time77400 + Disc Number1 + Disc Count2 + Track Number13 + Track Count13 + Year1979 + BPM192 + Date Modified2009-06-25T16:14:21Z + Date Added2009-10-03T14:54:49Z + Bit Rate256 + Sample Rate44100 + Normalization79 + Artwork Count1 + Sort AlbumWall [Disc 1] + Persistent ID59507E26DC681116 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/The%20Wall%20%5BDisc%201%5D/1-13%20Goodbye%20Cruel%20World.m4a + File Folder Count4 + Library Folder Count1 + + 3082 + + Track ID3082 + NameCluster One + ArtistPink Floyd + ComposerDavid Gilmour/Richard Wright + AlbumThe Division Bell + GenreRock + KindAAC audio file + Size8700253 + Total Time358375 + Disc Number1 + Disc Count1 + Track Number1 + Track Count11 + Year1994 + Date Modified2006-07-30T08:27:58Z + Date Added2009-10-03T14:54:49Z + Bit Rate192 + Sample Rate44100 + Normalization739 + Artwork Count1 + Sort AlbumDivision Bell + Persistent IDE1CF3C276919C065 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/The%20Division%20Bell/01%20Cluster%20One.m4a + File Folder Count4 + Library Folder Count1 + + 3084 + + Track ID3084 + NameWhat Do You Want From Me + ArtistPink Floyd + ComposerDavid Gilmour/Polly Samson/Richard Wright/Samson + AlbumThe Division Bell + GenreRock + KindAAC audio file + Size6365323 + Total Time261640 + Disc Number1 + Disc Count1 + Track Number2 + Track Count11 + Year1994 + Date Modified2006-07-30T08:28:00Z + Date Added2009-10-03T14:54:49Z + Bit Rate192 + Sample Rate44100 + Normalization4268 + Artwork Count1 + Sort AlbumDivision Bell + Persistent IDB90ED5760BC0B4CE + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/The%20Division%20Bell/02%20What%20Do%20You%20Want%20From%20Me.m4a + File Folder Count4 + Library Folder Count1 + + 3086 + + Track ID3086 + NamePoles Apart + ArtistPink Floyd + ComposerDavid Gilmour/Laird-Clowes/Nick Laird-Clowes/Polly Samson/Samson + AlbumThe Division Bell + GenreRock + KindAAC audio file + Size10296245 + Total Time424087 + Disc Number1 + Disc Count1 + Track Number3 + Track Count11 + Year1994 + Date Modified2006-07-30T08:28:00Z + Date Added2009-10-03T14:54:50Z + Bit Rate192 + Sample Rate44100 + Normalization1944 + Artwork Count1 + Sort AlbumDivision Bell + Persistent ID151E45BD1676C088 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/The%20Division%20Bell/03%20Poles%20Apart.m4a + File Folder Count4 + Library Folder Count1 + + 3088 + + Track ID3088 + NameMarooned + ArtistPink Floyd + ComposerDavid Gilmour/Richard Wright + AlbumThe Division Bell + GenreRock + KindAAC audio file + Size8009689 + Total Time329605 + Disc Number1 + Disc Count1 + Track Number4 + Track Count11 + Year1994 + Date Modified2006-07-30T08:28:00Z + Date Added2009-10-03T14:54:50Z + Bit Rate192 + Sample Rate44100 + Normalization1137 + Artwork Count1 + Sort AlbumDivision Bell + Persistent ID3D7216D65B6F52DF + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/The%20Division%20Bell/04%20Marooned.m4a + File Folder Count4 + Library Folder Count1 + + 3090 + + Track ID3090 + NameA Great Day For Freedom + ArtistPink Floyd + ComposerDavid Gilmour/Polly Samson/Samson + AlbumThe Division Bell + GenreRock + KindAAC audio file + Size6269158 + Total Time257647 + Disc Number1 + Disc Count1 + Track Number5 + Track Count11 + Year1994 + Date Modified2006-07-30T08:28:00Z + Date Added2009-10-03T14:54:50Z + Bit Rate192 + Sample Rate44100 + Normalization1473 + Artwork Count1 + Sort AlbumDivision Bell + Sort NameGreat Day For Freedom + Persistent IDD12FB4E5544927E2 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/The%20Division%20Bell/05%20A%20Great%20Day%20For%20Freedom.m4a + File Folder Count4 + Library Folder Count1 + + 3092 + + Track ID3092 + NameWearing The Inside Out + ArtistPink Floyd + ComposerAnthony Moore/Moore/Richard Wright + AlbumThe Division Bell + GenreRock + KindAAC audio file + Size9943677 + Total Time409528 + Disc Number1 + Disc Count1 + Track Number6 + Track Count11 + Year1994 + Date Modified2006-07-30T08:28:00Z + Date Added2009-10-03T14:54:50Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3385735973 + Play Date UTC2011-04-15T12:42:53Z + Normalization842 + Artwork Count1 + Sort AlbumDivision Bell + Persistent ID1916C6CCF4572DB8 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/The%20Division%20Bell/06%20Wearing%20The%20Inside%20Out.m4a + File Folder Count4 + Library Folder Count1 + + 3094 + + Track ID3094 + NameTake It Back + ArtistPink Floyd + ComposerBob Ezrin/David Gilmour/Laird-Clowes/Nick Laird-Clowes/Polly Samson/Samson + AlbumThe Division Bell + GenreRock + KindAAC audio file + Size9045326 + Total Time372400 + Disc Number1 + Disc Count1 + Track Number7 + Track Count11 + Year1994 + Date Modified2006-07-30T08:28:00Z + Date Added2009-10-03T14:54:51Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3385736770 + Play Date UTC2011-04-15T12:56:10Z + Normalization2783 + Artwork Count1 + Sort AlbumDivision Bell + Persistent ID36F083A399DA6E35 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/The%20Division%20Bell/07%20Take%20It%20Back.m4a + File Folder Count4 + Library Folder Count1 + + 3096 + + Track ID3096 + NameComing Back To Life + ArtistPink Floyd + ComposerDavid Gilmour + AlbumThe Division Bell + GenreRock + KindAAC audio file + Size9215355 + Total Time379435 + Disc Number1 + Disc Count1 + Track Number8 + Track Count11 + Year1994 + Date Modified2006-07-30T08:28:00Z + Date Added2009-10-03T14:54:51Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3385737521 + Play Date UTC2011-04-15T13:08:41Z + Normalization2566 + Artwork Count1 + Sort AlbumDivision Bell + Persistent IDA5985DEE5ECE8F81 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/The%20Division%20Bell/08%20Coming%20Back%20To%20Life.m4a + File Folder Count4 + Library Folder Count1 + + 3098 + + Track ID3098 + NameKeep Talking + ArtistPink Floyd + ComposerDavid Gilmour/Polly Samson/Richard Wright/Samson + AlbumThe Division Bell + GenreRock + KindAAC audio file + Size9014311 + Total Time371123 + Disc Number1 + Disc Count1 + Track Number9 + Track Count11 + Year1994 + Date Modified2006-07-30T08:28:00Z + Date Added2009-10-03T14:54:51Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3385738272 + Play Date UTC2011-04-15T13:21:12Z + Normalization1874 + Artwork Count1 + Sort AlbumDivision Bell + Persistent IDB06408AF8B4F373F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/The%20Division%20Bell/09%20Keep%20Talking.m4a + File Folder Count4 + Library Folder Count1 + + 3100 + + Track ID3100 + NameLost For Words + ArtistPink Floyd + ComposerDavid Gilmour/Polly Samson/Samson + AlbumThe Division Bell + GenreRock + KindAAC audio file + Size7655110 + Total Time314954 + Disc Number1 + Disc Count1 + Track Number10 + Track Count11 + Year1994 + Date Modified2006-07-30T08:28:02Z + Date Added2009-10-03T14:54:51Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Sort AlbumDivision Bell + Persistent ID2B8D34B063E62076 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/The%20Division%20Bell/10%20Lost%20For%20Words.m4a + File Folder Count4 + Library Folder Count1 + + 3102 + + Track ID3102 + NameHigh Hopes + ArtistPink Floyd + ComposerAbbey Road Recording Studios/David Gilmour/Polly Samson/Samson + AlbumThe Division Bell + GenreRock + KindAAC audio file + Size12426453 + Total Time512346 + Disc Number1 + Disc Count1 + Track Number11 + Track Count11 + Year1994 + Date Modified2006-07-30T08:28:02Z + Date Added2009-10-03T14:54:52Z + Bit Rate192 + Sample Rate44100 + Normalization1685 + Artwork Count1 + Sort AlbumDivision Bell + Persistent ID755B282F8A4D350B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/The%20Division%20Bell/11%20High%20Hopes.m4a + File Folder Count4 + Library Folder Count1 + + 3104 + + Track ID3104 + NameSpeak To Me/Breathe + ArtistPink Floyd + ComposerMason/Waters, Gilmour, Wright + AlbumDark Side Of The Moon + GenreRock + KindAAC audio file + Size5813859 + Total Time240510 + Disc Number1 + Disc Count1 + Track Number1 + Track Count9 + Year1973 + Date Modified2006-08-03T11:50:52Z + Date Added2009-10-03T14:54:53Z + Bit Rate192 + Sample Rate44100 + Normalization581 + Artwork Count1 + Persistent ID74D43AA7824093BF + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/Dark%20Side%20Of%20The%20Moon/01%20Speak%20To%20Me_Breathe.m4a + File Folder Count4 + Library Folder Count1 + + 3106 + + Track ID3106 + NameOn The Run + ArtistPink Floyd + ComposerGilmour, Waters + AlbumDark Side Of The Moon + GenreRock + KindAAC audio file + Size5168385 + Total Time213018 + Disc Number1 + Disc Count1 + Track Number2 + Track Count9 + Year1973 + Date Modified2006-08-03T11:50:52Z + Date Added2009-10-03T14:54:53Z + Bit Rate192 + Sample Rate44100 + Normalization602 + Artwork Count1 + Persistent IDA5EF3618C1B4171F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/Dark%20Side%20Of%20The%20Moon/02%20On%20The%20Run.m4a + File Folder Count4 + Library Folder Count1 + + 3108 + + Track ID3108 + NameTime + ArtistPink Floyd + ComposerMason, Waters, Wright, Gilmour + AlbumDark Side Of The Moon + GenreRock + KindAAC audio file + Size10329561 + Total Time426502 + Disc Number1 + Disc Count1 + Track Number3 + Track Count9 + Year1973 + Date Modified2006-08-03T11:50:52Z + Date Added2009-10-03T14:54:53Z + Bit Rate192 + Sample Rate44100 + Play Count2 + Play Date3484158546 + Play Date UTC2014-05-28T16:19:06Z + Normalization1350 + Artwork Count1 + Persistent ID8F052D1DBF3C8D39 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/Dark%20Side%20Of%20The%20Moon/03%20Time.m4a + File Folder Count4 + Library Folder Count1 + + 3110 + + Track ID3110 + NameThe Great Gig In The Sky + ArtistPink Floyd + ComposerWright, Waters + AlbumDark Side Of The Moon + GenreRock + KindAAC audio file + Size6882266 + Total Time284048 + Disc Number1 + Disc Count1 + Track Number4 + Track Count9 + Year1973 + Date Modified2006-08-03T11:50:52Z + Date Added2009-10-03T14:54:53Z + Bit Rate192 + Sample Rate44100 + Normalization767 + Artwork Count1 + Sort NameGreat Gig In The Sky + Persistent ID022FB33B4E39A351 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/Dark%20Side%20Of%20The%20Moon/04%20The%20Great%20Gig%20In%20The%20Sky.m4a + File Folder Count4 + Library Folder Count1 + + 3112 + + Track ID3112 + NameMoney + ArtistPink Floyd + ComposerWaters + AlbumDark Side Of The Moon + GenreRock + KindAAC audio file + Size9494556 + Total Time392021 + Disc Number1 + Disc Count1 + Track Number5 + Track Count9 + Year1973 + Date Modified2006-08-03T11:50:52Z + Date Added2009-10-03T14:54:53Z + Bit Rate192 + Sample Rate44100 + Normalization2307 + Artwork Count1 + Persistent IDA1F31CC5C427F7F1 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/Dark%20Side%20Of%20The%20Moon/05%20Money.m4a + File Folder Count4 + Library Folder Count1 + + 3114 + + Track ID3114 + NameUs And Them + ArtistPink Floyd + ComposerWaters, Wright + AlbumDark Side Of The Moon + GenreRock + KindAAC audio file + Size11159391 + Total Time460821 + Disc Number1 + Disc Count1 + Track Number6 + Track Count9 + Year1973 + Date Modified2006-08-03T11:50:52Z + Date Added2009-10-03T14:54:53Z + Bit Rate192 + Sample Rate44100 + Normalization712 + Artwork Count1 + Persistent ID5E2424F305467C8A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/Dark%20Side%20Of%20The%20Moon/06%20Us%20And%20Them.m4a + File Folder Count4 + Library Folder Count1 + + 3116 + + Track ID3116 + NameAny Colour You Like + ArtistPink Floyd + ComposerGilmour, Mason, Wright, Waters + AlbumDark Side Of The Moon + GenreRock + KindAAC audio file + Size4991181 + Total Time205611 + Disc Number1 + Disc Count1 + Track Number7 + Track Count9 + Year1973 + Date Modified2006-08-03T11:50:54Z + Date Added2009-10-03T14:54:53Z + Bit Rate192 + Sample Rate44100 + Normalization1230 + Artwork Count1 + Persistent ID02105339C012D0F0 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/Dark%20Side%20Of%20The%20Moon/07%20Any%20Colour%20You%20Like.m4a + File Folder Count4 + Library Folder Count1 + + 3118 + + Track ID3118 + NameBrain Damage + ArtistPink Floyd + ComposerWaters + AlbumDark Side Of The Moon + GenreRock + KindAAC audio file + Size5589100 + Total Time230503 + Disc Number1 + Disc Count1 + Track Number8 + Track Count9 + Year1973 + Date Modified2006-08-03T11:50:54Z + Date Added2009-10-03T14:54:53Z + Bit Rate192 + Sample Rate44100 + Normalization723 + Artwork Count1 + Persistent IDF76FD2DF5AFF336E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/Dark%20Side%20Of%20The%20Moon/08%20Brain%20Damage.m4a + File Folder Count4 + Library Folder Count1 + + 3120 + + Track ID3120 + NameEclipse + ArtistPink Floyd + ComposerWaters + AlbumDark Side Of The Moon + GenreRock + KindAAC audio file + Size3031122 + Total Time124341 + Disc Number1 + Disc Count1 + Track Number9 + Track Count9 + Year1973 + Date Modified2006-08-03T11:50:54Z + Date Added2009-10-03T14:54:54Z + Bit Rate192 + Sample Rate44100 + Normalization2955 + Artwork Count1 + Persistent ID4A2FA754442EC9AF + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/Dark%20Side%20Of%20The%20Moon/09%20Eclipse.m4a + File Folder Count4 + Library Folder Count1 + + 3122 + + Track ID3122 + NamePigs On The Wing (Part One) + ArtistPink Floyd + ComposerRoger Waters + AlbumAnimals + GenreRock + KindAAC audio file + Size2097168 + Total Time85401 + Disc Number1 + Disc Count1 + Track Number1 + Track Count5 + Year1977 + BPM192 + Date Modified2006-08-13T06:45:20Z + Date Added2009-10-03T14:54:54Z + Bit Rate192 + Sample Rate44100 + Skip Count1 + Skip Date2014-01-10T11:12:44Z + Normalization364 + Artwork Count1 + Persistent ID66925B06AC1FF3F2 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/Animals/01%20Pigs%20On%20The%20Wing%20(Part%20One).m4a + File Folder Count4 + Library Folder Count1 + + 3124 + + Track ID3124 + NameDogs + ArtistPink Floyd + ComposerDavid Gilmour + AlbumAnimals + GenreRock + KindAAC audio file + Size24907360 + Total Time1028178 + Disc Number1 + Disc Count1 + Track Number2 + Track Count5 + Year1977 + BPM192 + Date Modified2006-08-13T06:45:20Z + Date Added2009-10-03T14:54:54Z + Bit Rate192 + Sample Rate44100 + Normalization1373 + Artwork Count1 + Persistent IDF1D35AC0BB826185 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/Animals/02%20Dogs.m4a + File Folder Count4 + Library Folder Count1 + + 3126 + + Track ID3126 + NamePigs (Three Different Ones) + ArtistPink Floyd + ComposerRoger Waters + AlbumAnimals + GenreRock + KindAAC audio file + Size16681173 + Total Time688238 + Disc Number1 + Disc Count1 + Track Number3 + Track Count5 + Year1977 + BPM192 + Date Modified2006-08-13T06:45:08Z + Date Added2009-10-03T14:54:54Z + Bit Rate192 + Sample Rate44100 + Normalization1803 + Artwork Count1 + Persistent IDCAFD74124D953104 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/Animals/03%20Pigs%20(Three%20Different%20Ones).m4a + File Folder Count4 + Library Folder Count1 + + 3128 + + Track ID3128 + NameSheep + ArtistPink Floyd + ComposerRoger Waters + AlbumAnimals + GenreRock + KindAAC audio file + Size15033108 + Total Time620133 + Disc Number1 + Disc Count1 + Track Number4 + Track Count5 + Year1977 + BPM192 + Date Modified2006-08-13T06:45:02Z + Date Added2009-10-03T14:54:54Z + Bit Rate192 + Sample Rate44100 + Normalization2056 + Artwork Count1 + Persistent ID2A719FFDFD56DB83 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/Animals/04%20Sheep.m4a + File Folder Count4 + Library Folder Count1 + + 3130 + + Track ID3130 + NamePigs On The Wing (Part Two) + ArtistPink Floyd + ComposerRoger Waters + AlbumAnimals + GenreRock + KindAAC audio file + Size2112177 + Total Time85889 + Disc Number1 + Disc Count1 + Track Number5 + Track Count5 + Year1977 + BPM192 + Date Modified2006-08-13T06:44:54Z + Date Added2009-10-03T14:54:54Z + Bit Rate192 + Sample Rate44100 + Normalization405 + Artwork Count1 + Persistent ID1568FC55EFBE292F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/Animals/05%20Pigs%20On%20The%20Wing%20(Part%20Two).m4a + File Folder Count4 + Library Folder Count1 + + 3132 + + Track ID3132 + NameCaravan Moves Out + ArtistPhilip Glass + ComposerPhilip Glass + AlbumKundun + GenreClassical + KindAAC audio file + Size4421927 + Total Time177333 + Disc Number1 + Disc Count1 + Track Number5 + Track Count18 + Year1997 + Date Modified2007-08-17T13:59:26Z + Date Added2009-10-03T14:54:56Z + Bit Rate192 + Sample Rate44100 + Normalization171 + Artwork Count1 + Persistent ID044C56CC0AFB92CB + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Philip%20Glass/Kundun/05%20Caravan%20Moves%20Out.m4a + File Folder Count4 + Library Folder Count1 + + 3134 + + Track ID3134 + NameChinese Invade + ArtistPhilip Glass + ComposerPhilip Glass + AlbumKundun + GenreClassical + KindAAC audio file + Size10603945 + Total Time426800 + Disc Number1 + Disc Count1 + Track Number11 + Track Count18 + Year1997 + Date Modified2007-08-17T13:59:22Z + Date Added2009-10-03T14:54:56Z + Bit Rate192 + Sample Rate44100 + Normalization624 + Artwork Count1 + Persistent IDBF72EF5E83E4EC79 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Philip%20Glass/Kundun/11%20Chinese%20Invade.m4a + File Folder Count4 + Library Folder Count1 + + 3136 + + Track ID3136 + NameChoosing + ArtistPhilip Glass + ComposerPhilip Glass + AlbumKundun + GenreClassical + KindAAC audio file + Size3240315 + Total Time134733 + Disc Number1 + Disc Count1 + Track Number4 + Track Count18 + Year1997 + Date Modified2007-08-17T13:59:27Z + Date Added2009-10-03T14:54:56Z + Bit Rate192 + Sample Rate44100 + Normalization329 + Artwork Count1 + Persistent IDB78D247C3A5091A5 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Philip%20Glass/Kundun/04%20Choosing.m4a + File Folder Count4 + Library Folder Count1 + + 3138 + + Track ID3138 + NameDark Kitchen + ArtistPhilip Glass + ComposerPhilip Glass + AlbumKundun + GenreClassical + KindAAC audio file + Size2252011 + Total Time93733 + Disc Number1 + Disc Count1 + Track Number3 + Track Count18 + Year1997 + Date Modified2007-08-17T13:59:27Z + Date Added2009-10-03T14:54:56Z + Bit Rate192 + Sample Rate44100 + Normalization131 + Artwork Count1 + Persistent IDA20EFE4CA78D245A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Philip%20Glass/Kundun/03%20Dark%20Kitchen.m4a + File Folder Count4 + Library Folder Count1 + + 3140 + + Track ID3140 + NameDistraught + ArtistPhilip Glass + ComposerPhilip Glass + AlbumKundun + GenreClassical + KindAAC audio file + Size4497757 + Total Time180373 + Disc Number1 + Disc Count1 + Track Number13 + Track Count18 + Year1997 + Date Modified2007-08-17T13:59:19Z + Date Added2009-10-03T14:54:56Z + Bit Rate192 + Sample Rate44100 + Normalization192 + Artwork Count1 + Persistent IDE47362F34A11B148 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Philip%20Glass/Kundun/13%20Distraught.m4a + File Folder Count4 + Library Folder Count1 + + 3142 + + Track ID3142 + NameEscape To India + ArtistPhilip Glass + ComposerPhilip Glass + AlbumKundun + GenreClassical + KindAAC audio file + Size15022683 + Total Time605160 + Disc Number1 + Disc Count1 + Track Number18 + Track Count18 + Year1997 + Date Modified2007-08-17T13:59:14Z + Date Added2009-10-03T14:54:56Z + Bit Rate192 + Sample Rate44100 + Normalization1214 + Artwork Count1 + Persistent ID7E03E6480DA582D3 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Philip%20Glass/Kundun/18%20Escape%20To%20India.m4a + File Folder Count4 + Library Folder Count1 + + 3144 + + Track ID3144 + NameFish + ArtistPhilip Glass + ComposerPhilip Glass + AlbumKundun + GenreClassical + KindAAC audio file + Size3181223 + Total Time131866 + Disc Number1 + Disc Count1 + Track Number12 + Track Count18 + Year1997 + Date Modified2007-08-17T13:59:20Z + Date Added2009-10-03T14:54:57Z + Bit Rate192 + Sample Rate44100 + Normalization112 + Artwork Count1 + Persistent IDE445E23A0FCF5D71 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Philip%20Glass/Kundun/12%20Fish.m4a + File Folder Count4 + Library Folder Count1 + + 3146 + + Track ID3146 + NameLhasa At Night + ArtistPhilip Glass + ComposerPhilip Glass + AlbumKundun + GenreClassical + KindAAC audio file + Size2916545 + Total Time120373 + Disc Number1 + Disc Count1 + Track Number17 + Track Count18 + Year1997 + Date Modified2007-08-17T13:59:16Z + Date Added2009-10-03T14:54:57Z + Bit Rate192 + Sample Rate44100 + Normalization168 + Artwork Count1 + Persistent IDD89F6DDAB44B307F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Philip%20Glass/Kundun/17%20Lhasa%20At%20Night.m4a + File Folder Count4 + Library Folder Count1 + + 3148 + + Track ID3148 + NameLord Chamberlain + ArtistPhilip Glass + ComposerPhilip Glass + AlbumKundun + GenreClassical + KindAAC audio file + Size4025055 + Total Time165400 + Disc Number1 + Disc Count1 + Track Number8 + Track Count18 + Year1997 + Date Modified2007-08-17T13:59:24Z + Date Added2009-10-03T14:54:57Z + Bit Rate192 + Sample Rate44100 + Normalization205 + Artwork Count1 + Persistent ID67C470DD18E5A6AA + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Philip%20Glass/Kundun/08%20Lord%20Chamberlain.m4a + File Folder Count4 + Library Folder Count1 + + 3150 + + Track ID3150 + NameMove To Dungkar + ArtistPhilip Glass + ComposerPhilip Glass + AlbumKundun + GenreClassical + KindAAC audio file + Size7530172 + Total Time306266 + Disc Number1 + Disc Count1 + Track Number15 + Track Count18 + Year1997 + Date Modified2007-08-17T13:59:18Z + Date Added2009-10-03T14:54:57Z + Bit Rate192 + Sample Rate44100 + Normalization224 + Artwork Count1 + Persistent IDAEDA6C488E827223 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Philip%20Glass/Kundun/15%20Move%20To%20Dungkar.m4a + File Folder Count4 + Library Folder Count1 + + 3152 + + Track ID3152 + NameNorbu Plays + ArtistPhilip Glass + ComposerPhilip Glass + AlbumKundun + GenreClassical + KindAAC audio file + Size3226509 + Total Time133200 + Disc Number1 + Disc Count1 + Track Number9 + Track Count18 + Year1997 + Date Modified2007-08-17T13:59:23Z + Date Added2009-10-03T14:54:57Z + Bit Rate192 + Sample Rate44100 + Normalization294 + Artwork Count1 + Persistent ID297B9F1710FD4166 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Philip%20Glass/Kundun/09%20Norbu%20Plays.m4a + File Folder Count4 + Library Folder Count1 + + 3154 + + Track ID3154 + NameNorbulingka + ArtistPhilip Glass + ComposerPhilip Glass + AlbumKundun + GenreClassical + KindAAC audio file + Size3344633 + Total Time139000 + Disc Number1 + Disc Count1 + Track Number10 + Track Count18 + Year1997 + Date Modified2007-08-17T13:59:23Z + Date Added2009-10-03T14:54:57Z + Bit Rate192 + Sample Rate44100 + Normalization159 + Artwork Count1 + Persistent ID925E7EDEC9C96116 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Philip%20Glass/Kundun/10%20Norbulingka.m4a + File Folder Count4 + Library Folder Count1 + + 3156 + + Track ID3156 + NameNorthern Tibet + ArtistPhilip Glass + ComposerPhilip Glass + AlbumKundun + GenreClassical + KindAAC audio file + Size4895322 + Total Time202506 + Disc Number1 + Disc Count1 + Track Number2 + Track Count18 + Year1997 + Date Modified2007-08-17T13:59:28Z + Date Added2009-10-03T14:54:57Z + Bit Rate192 + Sample Rate44100 + Normalization371 + Artwork Count1 + Persistent ID6E0FD6DAD527329A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Philip%20Glass/Kundun/02%20Northern%20Tibet.m4a + File Folder Count4 + Library Folder Count1 + + 3158 + + Track ID3158 + NamePotala + ArtistPhilip Glass + ComposerPhilip Glass + AlbumKundun + GenreClassical + KindAAC audio file + Size2179072 + Total Time90093 + Disc Number1 + Disc Count1 + Track Number7 + Track Count18 + Year1997 + Date Modified2007-08-17T13:59:25Z + Date Added2009-10-03T14:54:57Z + Bit Rate192 + Sample Rate44100 + Normalization77 + Artwork Count1 + Persistent IDC48792EDBF609C4C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Philip%20Glass/Kundun/07%20Potala.m4a + File Folder Count4 + Library Folder Count1 + + 3160 + + Track ID3160 + NameProjector + ArtistPhilip Glass + ComposerPhilip Glass + AlbumKundun + GenreClassical + KindAAC audio file + Size3039952 + Total Time125560 + Disc Number1 + Disc Count1 + Track Number16 + Track Count18 + Year1997 + Date Modified2007-08-17T13:59:17Z + Date Added2009-10-03T14:54:58Z + Bit Rate192 + Sample Rate44100 + Normalization373 + Artwork Count1 + Persistent IDC9B95D88A99BB5E2 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Philip%20Glass/Kundun/16%20Projector.m4a + File Folder Count4 + Library Folder Count1 + + 3162 + + Track ID3162 + NameReting's Eyes + ArtistPhilip Glass + ComposerPhilip Glass + AlbumKundun + GenreClassical + KindAAC audio file + Size3398974 + Total Time138000 + Disc Number1 + Disc Count1 + Track Number6 + Track Count18 + Year1997 + Date Modified2007-08-17T13:59:25Z + Date Added2009-10-03T14:54:58Z + Bit Rate192 + Sample Rate44100 + Normalization712 + Artwork Count1 + Persistent ID369D16A50F65B8E0 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Philip%20Glass/Kundun/06%20Reting's%20Eyes.m4a + File Folder Count4 + Library Folder Count1 + + 3164 + + Track ID3164 + NameSand Mandala + ArtistPhilip Glass + ComposerPhilip Glass + AlbumKundun + GenreClassical + KindAAC audio file + Size6022381 + Total Time246200 + Disc Number1 + Disc Count1 + Track Number1 + Track Count18 + Year1997 + Date Modified2007-08-17T13:59:29Z + Date Added2009-10-03T14:54:58Z + Bit Rate192 + Sample Rate44100 + Normalization260 + Artwork Count1 + Persistent ID5A012073493AAAC1 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Philip%20Glass/Kundun/01%20Sand%20Mandala.m4a + File Folder Count4 + Library Folder Count1 + + 3166 + + Track ID3166 + NameThirteenth Dalai Lama + ArtistPhilip Glass + ComposerPhilip Glass + AlbumKundun + GenreClassical + KindAAC audio file + Size4979562 + Total Time206066 + Disc Number1 + Disc Count1 + Track Number14 + Track Count18 + Year1997 + Date Modified2007-08-17T13:59:19Z + Date Added2009-10-03T14:54:58Z + Bit Rate192 + Sample Rate44100 + Normalization285 + Artwork Count1 + Persistent ID00BEB4E09033B2D2 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Philip%20Glass/Kundun/14%20Thirteenth%20Dalai%20Lama.m4a + File Folder Count4 + Library Folder Count1 + + 3168 + + Track ID3168 + NameRomeo and Juliet + ArtistPeter Ilyich Tchaikovsky + AlbumBest Of The Classics - Peter Iljitsch Tchaikovsky + GenreClassical + KindAAC audio file + Size26271258 + Total Time1094006 + Track Number1 + Track Count6 + Date Modified2006-07-30T15:58:46Z + Date Added2009-10-03T14:54:58Z + Bit Rate192 + Sample Rate44100 + Normalization772 + Artwork Count1 + Persistent ID193D2C54EAEFBA24 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Peter%20Ilyich%20Tchaikovsky/Best%20Of%20The%20Classics%20-%20Peter%20Iljitsch%20Tchaikovsky/01%20Romeo%20and%20Juliet.m4a + File Folder Count4 + Library Folder Count1 + + 3170 + + Track ID3170 + NameConcerto for Piano and Orchestra No. 1in B flat minor op. 23 + ArtistPeter Ilyich Tchaikovsky + AlbumBest Of The Classics - Peter Iljitsch Tchaikovsky + GenreClassical + KindAAC audio file + Size29356569 + Total Time1221019 + Track Number2 + Track Count6 + Date Modified2006-07-30T15:58:48Z + Date Added2009-10-03T14:54:58Z + Bit Rate192 + Sample Rate44100 + Skip Count1 + Skip Date2013-07-25T04:13:01Z + Normalization910 + Artwork Count1 + Persistent ID05416AFE80D3FCF4 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Peter%20Ilyich%20Tchaikovsky/Best%20Of%20The%20Classics%20-%20Peter%20Iljitsch%20Tchaikovsky/02%20Concerto%20for%20Piano%20and%20Orchestra%20No.%201in%20B%20flat%20minor%20op.%2023.m4a + File Folder Count4 + Library Folder Count1 + + 3172 + + Track ID3172 + NameNutcracker Suite op. 20a + ArtistPeter Ilyich Tchaikovsky + AlbumBest Of The Classics - Peter Iljitsch Tchaikovsky + GenreClassical + KindAAC audio file + Size10265830 + Total Time431007 + Track Number3 + Track Count6 + Date Modified2006-07-30T15:58:48Z + Date Added2009-10-03T14:54:58Z + Bit Rate192 + Sample Rate44100 + Normalization839 + Artwork Count1 + Persistent ID49BD201732A0267A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Peter%20Ilyich%20Tchaikovsky/Best%20Of%20The%20Classics%20-%20Peter%20Iljitsch%20Tchaikovsky/03%20Nutcracker%20Suite%20op.%2020a.m4a + File Folder Count4 + Library Folder Count1 + + 3174 + + Track ID3174 + NameChants sans paroles/ Song without words + ArtistPeter Ilyich Tchaikovsky + AlbumBest Of The Classics - Peter Iljitsch Tchaikovsky + GenreClassical + KindAAC audio file + Size3288748 + Total Time140014 + Track Number4 + Track Count6 + Date Modified2006-07-30T15:58:48Z + Date Added2009-10-03T14:54:58Z + Bit Rate192 + Sample Rate44100 + Normalization171 + Artwork Count1 + Persistent ID445837A8CA9A8605 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Peter%20Ilyich%20Tchaikovsky/Best%20Of%20The%20Classics%20-%20Peter%20Iljitsch%20Tchaikovsky/04%20Chants%20sans%20paroles_%20Song%20without%20words.m4a + File Folder Count4 + Library Folder Count1 + + 3176 + + Track ID3176 + NameSerenade for String Orchestra in C major op. 48 + ArtistPeter Ilyich Tchaikovsky + AlbumBest Of The Classics - Peter Iljitsch Tchaikovsky + GenreClassical + KindAAC audio file + Size5609024 + Total Time237004 + Track Number5 + Track Count6 + Date Modified2006-07-30T15:58:48Z + Date Added2009-10-03T14:54:59Z + Bit Rate192 + Sample Rate44100 + Normalization336 + Artwork Count1 + Persistent ID9077C01406B97E91 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Peter%20Ilyich%20Tchaikovsky/Best%20Of%20The%20Classics%20-%20Peter%20Iljitsch%20Tchaikovsky/05%20Serenade%20for%20String%20Orchestra%20in%20C%20major%20op.%2048.m4a + File Folder Count4 + Library Folder Count1 + + 3178 + + Track ID3178 + NameSymphony No. 6 in B minor op. 74 "Pathetique" + ArtistPeter Ilyich Tchaikovsky + AlbumBest Of The Classics - Peter Iljitsch Tchaikovsky + GenreClassical + KindAAC audio file + Size13270144 + Total Time547850 + Track Number6 + Track Count6 + Date Modified2006-07-30T15:58:48Z + Date Added2009-10-03T14:54:59Z + Bit Rate192 + Sample Rate44100 + Normalization773 + Artwork Count1 + Persistent ID9C4C72AC50D9148C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Peter%20Ilyich%20Tchaikovsky/Best%20Of%20The%20Classics%20-%20Peter%20Iljitsch%20Tchaikovsky/06%20Symphony%20No.%206%20in%20B%20minor%20op.%2074%20_Pathetique_.m4a + File Folder Count4 + Library Folder Count1 + + 3180 + + Track ID3180 + NameThe Boy In The Bubble + ArtistPaul Simon + ComposerForere Motloheloa + AlbumGraceland + GenrePop + KindAAC audio file + Size7742925 + Total Time240733 + Disc Number1 + Disc Count1 + Track Number1 + Track Count11 + Year1986 + Date Modified2008-10-13T13:31:13Z + Date Added2009-10-03T14:54:59Z + Bit Rate256 + Sample Rate44100 + Normalization1374 + Artwork Count1 + Sort NameBoy In The Bubble + Persistent ID6AEE83D035717A54 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Paul%20Simon/Graceland/01%20The%20Boy%20In%20The%20Bubble.m4a + File Folder Count4 + Library Folder Count1 + + 3182 + + Track ID3182 + NameGraceland + ArtistPaul Simon + ComposerJoseph Shabalala + AlbumGraceland + GenrePop + KindAAC audio file + Size9276610 + Total Time292213 + Disc Number1 + Disc Count1 + Track Number2 + Track Count11 + Year1986 + Date Modified2008-10-13T13:31:34Z + Date Added2009-10-03T14:54:59Z + Bit Rate256 + Sample Rate44100 + Normalization1256 + Artwork Count1 + Persistent IDBE2419165511DED4 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Paul%20Simon/Graceland/02%20Graceland.m4a + File Folder Count4 + Library Folder Count1 + + 3184 + + Track ID3184 + NameI Know What I Know + ArtistPaul Simon + ComposerGeneral M.D. Shirinda + AlbumGraceland + GenrePop + KindAAC audio file + Size6341144 + Total Time194666 + Disc Number1 + Disc Count1 + Track Number3 + Track Count11 + Year1986 + Date Modified2008-10-11T10:04:31Z + Date Added2009-10-03T14:54:59Z + Bit Rate256 + Sample Rate44100 + Normalization1825 + Artwork Count1 + Persistent ID8166FB306EA927FE + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Paul%20Simon/Graceland/03%20I%20Know%20What%20I%20Know.m4a + File Folder Count4 + Library Folder Count1 + + 3186 + + Track ID3186 + NameGumboots + ArtistPaul Simon + ComposerLulu Masilela/Johnjon Mkhalali + AlbumGraceland + GenrePop + KindAAC audio file + Size5418690 + Total Time166173 + Disc Number1 + Disc Count1 + Track Number4 + Track Count11 + Year1986 + Date Modified2008-10-11T10:04:31Z + Date Added2009-10-03T14:54:59Z + Bit Rate256 + Sample Rate44100 + Normalization2943 + Artwork Count1 + Persistent ID88EB69C61A4A796B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Paul%20Simon/Graceland/04%20Gumboots.m4a + File Folder Count4 + Library Folder Count1 + + 3188 + + Track ID3188 + NameDiamonds On The Soles Of Her Shoes + ArtistPaul Simon + ComposerJoseph Shabalala + AlbumGraceland + GenrePop + KindAAC audio file + Size11356899 + Total Time349186 + Disc Number1 + Disc Count1 + Track Number5 + Track Count11 + Year1986 + Date Modified2008-10-11T10:17:19Z + Date Added2009-10-03T14:54:59Z + Bit Rate256 + Sample Rate44100 + Play Count2 + Play Date3484471136 + Play Date UTC2014-06-01T07:08:56Z + Normalization1256 + Artwork Count1 + Persistent IDBDCDDBC9E7A8696C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Paul%20Simon/Graceland/05%20Diamonds%20On%20The%20Soles%20Of%20Her%20Shoes.m4a + File Folder Count4 + Library Folder Count1 + + 3190 + + Track ID3190 + NameYou Can Call Me Al + ArtistPaul Simon + ComposerJoseph Shabalala + AlbumGraceland + GenrePop + KindAAC audio file + Size9176573 + Total Time281760 + Disc Number1 + Disc Count1 + Track Number6 + Track Count11 + Year1986 + Date Modified2008-10-11T13:27:49Z + Date Added2009-10-03T14:55:00Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3427521715 + Play Date UTC2012-08-11T03:51:55Z + Skip Count1 + Skip Date2014-06-01T07:09:09Z + Normalization1256 + Artwork Count1 + Persistent ID81BDD17CC2E1952F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Paul%20Simon/Graceland/06%20You%20Can%20Call%20Me%20Al.m4a + File Folder Count4 + Library Folder Count1 + + 3192 + + Track ID3192 + NameUnder African Skies + ArtistPaul Simon + ComposerJoseph Shabalala + AlbumGraceland + GenrePop + KindAAC audio file + Size7087844 + Total Time218586 + Disc Number1 + Disc Count1 + Track Number7 + Track Count11 + Year1986 + Date Modified2008-10-11T10:04:29Z + Date Added2009-10-03T14:55:00Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3377932440 + Play Date UTC2011-01-15T05:04:00Z + Normalization1256 + Artwork Count1 + Persistent ID335A2EF0D38E8128 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Paul%20Simon/Graceland/07%20Under%20African%20Skies.m4a + File Folder Count4 + Library Folder Count1 + + 3194 + + Track ID3194 + NameHomeless + ArtistPaul Simon + ComposerJoseph Shabalala + AlbumGraceland + GenrePop + KindAAC audio file + Size7474386 + Total Time229106 + Disc Number1 + Disc Count1 + Track Number8 + Track Count11 + Year1986 + Date Modified2008-10-11T10:04:28Z + Date Added2009-10-03T14:55:00Z + Bit Rate256 + Sample Rate44100 + Normalization1256 + Artwork Count1 + Persistent IDB07AD040B203FBE8 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Paul%20Simon/Graceland/08%20Homeless.m4a + File Folder Count4 + Library Folder Count1 + + 3196 + + Track ID3196 + NameCrazy Love, Vol. II + ArtistPaul Simon + ComposerJoseph Shabalala + AlbumGraceland + GenrePop + KindAAC audio file + Size8501592 + Total Time260373 + Disc Number1 + Disc Count1 + Track Number9 + Track Count11 + Year1986 + Date Modified2008-10-11T10:04:27Z + Date Added2009-10-03T14:55:00Z + Bit Rate256 + Sample Rate44100 + Normalization1256 + Artwork Count1 + Persistent ID7804E944425B7EC2 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Paul%20Simon/Graceland/09%20Crazy%20Love,%20Vol.%20II.m4a + File Folder Count4 + Library Folder Count1 + + 3198 + + Track ID3198 + NameThat Was Your Mother + ArtistPaul Simon + ComposerJoseph Shabalala + AlbumGraceland + GenrePop + KindAAC audio file + Size5681424 + Total Time174506 + Disc Number1 + Disc Count1 + Track Number10 + Track Count11 + Year1986 + Date Modified2008-10-11T10:04:27Z + Date Added2009-10-03T14:55:00Z + Bit Rate256 + Sample Rate44100 + Normalization1499 + Artwork Count1 + Persistent ID57903275A4FC794B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Paul%20Simon/Graceland/10%20That%20Was%20Your%20Mother.m4a + File Folder Count4 + Library Folder Count1 + + 3200 + + Track ID3200 + NameAll Around The World Or The Myth Of Fingerprints + ArtistPaul Simon + ComposerJoseph Shabalala + AlbumGraceland + GenrePop + KindAAC audio file + Size6430491 + Total Time194960 + Disc Number1 + Disc Count1 + Track Number11 + Track Count11 + Year1986 + Date Modified2008-10-11T10:04:26Z + Date Added2009-10-03T14:55:00Z + Bit Rate256 + Sample Rate44100 + Normalization1448 + Artwork Count1 + Persistent ID33CC69824E845417 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Paul%20Simon/Graceland/11%20All%20Around%20The%20World%20Or%20The%20Myth%20Of%20Fingerprints.m4a + File Folder Count4 + Library Folder Count1 + + 3202 + + Track ID3202 + NameSan Lorenzo + ArtistPat Metheny + ComposerLyle Mays + AlbumPat Metheny Group + GenreJazz + KindAAC audio file + Size19964913 + Total Time616226 + Disc Number1 + Disc Count1 + Track Number1 + Track Count6 + Year1978 + Date Modified2008-11-04T13:27:35Z + Date Added2009-10-03T14:55:02Z + Bit Rate256 + Sample Rate44100 + Normalization908 + Artwork Count1 + Persistent IDF6F0090FC530D271 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pat%20Metheny/Pat%20Metheny%20Group/01%20San%20Lorenzo.m4a + File Folder Count4 + Library Folder Count1 + + 3204 + + Track ID3204 + NamePhase Dance + ArtistPat Metheny + ComposerLyle Mays + AlbumPat Metheny Group + GenreJazz + KindAAC audio file + Size16353412 + Total Time505266 + Disc Number1 + Disc Count1 + Track Number2 + Track Count6 + Year1978 + Date Modified2008-11-04T13:27:34Z + Date Added2009-10-03T14:55:02Z + Bit Rate256 + Sample Rate44100 + Normalization891 + Artwork Count1 + Persistent ID5B65B86328EA5E71 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pat%20Metheny/Pat%20Metheny%20Group/02%20Phase%20Dance.m4a + File Folder Count4 + Library Folder Count1 + + 3206 + + Track ID3206 + NameJaco + ArtistPat Metheny + ComposerPat Metheny + AlbumPat Metheny Group + GenreJazz + KindAAC audio file + Size11031503 + Total Time340600 + Disc Number1 + Disc Count1 + Track Number3 + Track Count6 + Year1978 + Date Modified2008-11-04T13:27:33Z + Date Added2009-10-03T14:55:02Z + Bit Rate256 + Sample Rate44100 + Normalization887 + Artwork Count1 + Persistent ID2D2F363E6EE5DA47 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pat%20Metheny/Pat%20Metheny%20Group/03%20Jaco.m4a + File Folder Count4 + Library Folder Count1 + + 3208 + + Track ID3208 + NameAprilwind + ArtistPat Metheny + ComposerPat Metheny + AlbumPat Metheny Group + GenreJazz + KindAAC audio file + Size4158990 + Total Time129173 + Disc Number1 + Disc Count1 + Track Number4 + Track Count6 + Year1978 + Date Modified2008-11-04T13:27:33Z + Date Added2009-10-03T14:55:03Z + Bit Rate256 + Sample Rate44100 + Normalization98 + Artwork Count1 + Persistent IDFD61D73236DE15A2 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pat%20Metheny/Pat%20Metheny%20Group/04%20Aprilwind.m4a + File Folder Count4 + Library Folder Count1 + + 3210 + + Track ID3210 + NameApril Joy + ArtistPat Metheny + ComposerPat Metheny + AlbumPat Metheny Group + GenreJazz + KindAAC audio file + Size16005102 + Total Time495026 + Disc Number1 + Disc Count1 + Track Number5 + Track Count6 + Year1978 + Date Modified2008-11-04T13:27:32Z + Date Added2009-10-03T14:55:03Z + Bit Rate256 + Sample Rate44100 + Normalization832 + Artwork Count1 + Persistent ID786DC23A9453B8FF + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pat%20Metheny/Pat%20Metheny%20Group/05%20April%20Joy.m4a + File Folder Count4 + Library Folder Count1 + + 3212 + + Track ID3212 + NameLone Jack + ArtistPat Metheny + ComposerLyle Mays + AlbumPat Metheny Group + GenreJazz + KindAAC audio file + Size13099791 + Total Time402866 + Disc Number1 + Disc Count1 + Track Number6 + Track Count6 + Year1978 + Date Modified2008-11-04T13:27:31Z + Date Added2009-10-03T14:55:03Z + Bit Rate256 + Sample Rate44100 + Normalization754 + Artwork Count1 + Persistent ID6CF902A8334BBA6E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pat%20Metheny/Pat%20Metheny%20Group/06%20Lone%20Jack.m4a + File Folder Count4 + Library Folder Count1 + + 3214 + + Track ID3214 + NameVellai Thamarai (Raga: Bhimplas Tala: Adi) + ArtistP. Unnikrishnan + ComposerBharathiar + AlbumBharathiar Songs + GenreCarnatic + KindAAC audio file + Size6440247 + Total Time265495 + Track Number1 + Track Count11 + Date Modified2007-12-14T03:29:50Z + Date Added2009-10-03T14:55:05Z + Bit Rate192 + Sample Rate44100 + CommentsRaga: Bhimplas Tala: Adi + Play Count3 + Play Date3440998929 + Play Date UTC2013-01-14T03:32:09Z + Normalization1259 + Artwork Count1 + Persistent IDC37F68AB1A40F3F2 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/P.%20Unnikrishnan/Bharathiar%20Songs/01%20Vellai%20Thamarai%20(Raga_%20Bhimplas%20Tala_%20Adi).m4a + File Folder Count4 + Library Folder Count1 + + 3216 + + Track ID3216 + NameVaruvai Varuvai + ArtistP. Unnikrishnan + AlbumBharathiar Songs + GenreCarnatic + KindAAC audio file + Size7135383 + Total Time294241 + Track Number2 + Track Count11 + Date Modified2007-12-02T14:53:12Z + Date Added2009-10-03T14:55:05Z + Bit Rate192 + Sample Rate44100 + CommentsRaga: Ragamalika Tala: Adi + Play Count2 + Play Date3440999223 + Play Date UTC2013-01-14T03:37:03Z + Normalization1175 + Artwork Count1 + Persistent ID67092D3AD57E49BF + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/P.%20Unnikrishnan/Bharathiar%20Songs/02%20Varuvai%20Varuvai.m4a + File Folder Count4 + Library Folder Count1 + + 3218 + + Track ID3218 + NameTheerthakaraiyinile + ArtistP. Unnikrishnan + ComposerBharathiar + AlbumBharathiar Songs + GenreCarnatic + KindAAC audio file + Size10399043 + Total Time429103 + Track Number3 + Track Count11 + Date Modified2007-12-13T07:36:05Z + Date Added2009-10-03T14:55:05Z + Bit Rate192 + Sample Rate44100 + CommentsRaga: Ragamalika Tala: Tisram + Play Count2 + Play Date3440999652 + Play Date UTC2013-01-14T03:44:12Z + Normalization1259 + Artwork Count1 + Persistent IDC32F2426E16D8533 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/P.%20Unnikrishnan/Bharathiar%20Songs/03%20Theerthakaraiyinile.m4a + File Folder Count4 + Library Folder Count1 + + 3220 + + Track ID3220 + NamePaarukulle Nalla (Raga: Desh Tala: Adi) + ArtistP. Unnikrishnan + ComposerBharathiar + AlbumBharathiar Songs + GenreCarnatic + KindAAC audio file + Size6957600 + Total Time286881 + Track Number4 + Track Count11 + Date Modified2007-12-14T03:36:54Z + Date Added2009-10-03T14:55:05Z + Bit Rate192 + Sample Rate44100 + CommentsRaga: Desh Tala: Adi + Play Count2 + Play Date3440999939 + Play Date UTC2013-01-14T03:48:59Z + Normalization1259 + Artwork Count1 + Persistent ID531E848E1E103F28 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/P.%20Unnikrishnan/Bharathiar%20Songs/04%20Paarukulle%20Nalla%20(Raga_%20Desh%20Tala_%20Adi).m4a + File Folder Count4 + Library Folder Count1 + + 3222 + + Track ID3222 + NameMuruga Muruga Ragam:Ragamalika - Adi + ArtistP. Unnikrishnan + AlbumBharathiar Songs + GenreCarnatic + KindAAC audio file + Size10700868 + Total Time441642 + Track Number5 + Track Count11 + Date Modified2007-12-03T03:10:03Z + Date Added2009-10-03T14:55:05Z + Bit Rate192 + Sample Rate44100 + Play Count2 + Play Date3441000381 + Play Date UTC2013-01-14T03:56:21Z + Normalization1152 + Artwork Count1 + Persistent IDC91A1A2370BC95AE + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/P.%20Unnikrishnan/Bharathiar%20Songs/05%20Muruga%20Muruga%20Ragam_Ragamalika%20-%20Adi.m4a + File Folder Count4 + Library Folder Count1 + + 3224 + + Track ID3224 + NameEnthaiyum Thayum (Raga: Ragamalika Tala: Adi) + ArtistP. Unnikrishnan + ComposerBharathiar + AlbumBharathiar Songs + GenreCarnatic + KindAAC audio file + Size7928480 + Total Time327005 + Track Number6 + Track Count11 + Date Modified2007-12-14T03:37:04Z + Date Added2009-10-03T14:55:05Z + Bit Rate192 + Sample Rate44100 + CommentsRaga: Ragamalika Tala: Adi + Play Count1 + Play Date3391442796 + Play Date UTC2011-06-20T13:56:36Z + Normalization1053 + Artwork Count1 + Persistent ID21B5AD8156908AB1 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/P.%20Unnikrishnan/Bharathiar%20Songs/06%20Enthaiyum%20Thayum%20(Raga_%20Ragamalika%20Tala_%20Adi).m4a + File Folder Count4 + Library Folder Count1 + + 3226 + + Track ID3226 + NameKakkai Siraginile -Kalyana Vasantham - Adi + ArtistP. Unnikrishnan + AlbumBharathiar Songs + GenreCarnatic + KindAAC audio file + Size5367962 + Total Time220866 + Track Number7 + Track Count11 + Date Modified2007-12-03T03:10:03Z + Date Added2009-10-03T14:55:05Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3391443016 + Play Date UTC2011-06-20T14:00:16Z + Normalization1307 + Artwork Count1 + Persistent IDA757A34731E442FC + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/P.%20Unnikrishnan/Bharathiar%20Songs/07%20Kakkai%20Siraginile%20-Kalyana%20Vasantham%20-%20Adi.m4a + File Folder Count4 + Library Folder Count1 + + 3228 + + Track ID3228 + NameKayile Pullipathenne - Mand Bahar - Adi + ArtistP. Unnikrishnan + AlbumBharathiar Songs + GenreCarnatic + KindAAC audio file + Size6651218 + Total Time274295 + Track Number8 + Track Count11 + Date Modified2007-12-03T03:10:05Z + Date Added2009-10-03T14:55:06Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3391443291 + Play Date UTC2011-06-20T14:04:51Z + Normalization1180 + Artwork Count1 + Persistent ID826787BD76FE0521 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/P.%20Unnikrishnan/Bharathiar%20Songs/08%20Kayile%20Pullipathenne%20-%20Mand%20Bahar%20-%20Adi.m4a + File Folder Count4 + Library Folder Count1 + + 3230 + + Track ID3230 + NameSollavallayo - Ragamalika - Rupakam + ArtistP. Unnikrishnan + AlbumBharathiar Songs + GenreCarnatic + KindAAC audio file + Size7003003 + Total Time288785 + Track Number9 + Track Count11 + Date Modified2007-12-03T03:10:05Z + Date Added2009-10-03T14:55:06Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3391443580 + Play Date UTC2011-06-20T14:09:40Z + Normalization1080 + Artwork Count1 + Persistent IDCE468BEAA1C7A5E8 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/P.%20Unnikrishnan/Bharathiar%20Songs/09%20Sollavallayo%20-%20Ragamalika%20-%20Rupakam.m4a + File Folder Count4 + Library Folder Count1 + + 3232 + + Track ID3232 + NameKani Nilam - Kosalam - Tisram + ArtistP. Unnikrishnan + AlbumBharathiar Songs + GenreCarnatic + KindAAC audio file + Size8299211 + Total Time342446 + Track Number10 + Track Count11 + Date Modified2007-12-03T03:10:05Z + Date Added2009-10-03T14:55:06Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3391443922 + Play Date UTC2011-06-20T14:15:22Z + Normalization1180 + Artwork Count1 + Persistent ID3FA23C3930BF50C9 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/P.%20Unnikrishnan/Bharathiar%20Songs/10%20Kani%20Nilam%20-%20Kosalam%20-%20Tisram.m4a + File Folder Count4 + Library Folder Count1 + + 3234 + + Track ID3234 + NameNinnai Charanadaiden - Punnagavaraii - Adi + ArtistP. Unnikrishnan + AlbumBharathiar Songs + GenreCarnatic + KindAAC audio file + Size5469149 + Total Time223537 + Track Number11 + Track Count11 + Date Modified2007-12-03T03:10:05Z + Date Added2009-10-03T14:55:06Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3391444145 + Play Date UTC2011-06-20T14:19:05Z + Normalization1153 + Artwork Count1 + Persistent IDF1E48031D3674A83 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/P.%20Unnikrishnan/Bharathiar%20Songs/11%20Ninnai%20Charanadaiden%20-%20Punnagavaraii%20-%20Adi.m4a + File Folder Count4 + Library Folder Count1 + + 3236 + + Track ID3236 + NameBrochevarevarura + ArtistP Unnikrishnan + ComposerMysore Vasudevacharya + AlbumCarnatic Classical Vocal + GenreCarnatic + KindAAC audio file + Size13378930 + Total Time552354 + Track Number1 + Track Count10 + Date Modified2007-12-02T14:49:27Z + Date Added2009-10-03T14:55:06Z + Bit Rate192 + Sample Rate44100 + CommentsRaga: Kamas Tala: Adi + Play Count5 + Play Date3439533100 + Play Date UTC2012-12-28T04:21:40Z + Normalization1070 + Artwork Count1 + Persistent ID788ACA7505176D94 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/P%20Unnikrishnan/Carnatic%20Classical%20Vocal/01%20Brochevarevarura.m4a + File Folder Count4 + Library Folder Count1 + + 3238 + + Track ID3238 + NamePaluke Bangarumayana (Raga: Anandabairavi Tala: Adi) + ArtistP Unnikrishnan + ComposerBadrachala Ramadas + AlbumCarnatic Classical Vocal + GenreCarnatic + KindAAC audio file + Size6514052 + Total Time268676 + Track Number2 + Track Count10 + Date Modified2007-12-14T03:28:14Z + Date Added2009-10-03T14:55:06Z + Bit Rate192 + Sample Rate44100 + CommentsRaga: Anandabairavi Tala: Adi + Play Count4 + Play Date3439533369 + Play Date UTC2012-12-28T04:26:09Z + Normalization1066 + Artwork Count1 + Persistent ID1F39D40A35233DEA + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/P%20Unnikrishnan/Carnatic%20Classical%20Vocal/02%20Paluke%20Bangarumayana%20(Raga_%20Anandabairavi%20Tala_%20Adi).m4a + File Folder Count4 + Library Folder Count1 + + 3240 + + Track ID3240 + NameMamava Raghu Rama + ArtistP Unnikrishnan + ComposerThyagaraja + AlbumCarnatic Classical Vocal + GenreCarnatic + KindAAC audio file + Size6398023 + Total Time263870 + Track Number3 + Track Count10 + Date Modified2007-12-02T15:04:47Z + Date Added2009-10-03T14:55:06Z + Bit Rate192 + Sample Rate44100 + CommentsRaga: Saranga Tala: Roopaka + Play Count3 + Play Date3423231012 + Play Date UTC2012-06-22T12:00:12Z + Normalization932 + Artwork Count1 + Persistent ID7A2760FE2541676C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/P%20Unnikrishnan/Carnatic%20Classical%20Vocal/03%20Mamava%20Raghu%20Rama.m4a + File Folder Count4 + Library Folder Count1 + + 3242 + + Track ID3242 + NameMakalera + ArtistP Unnikrishnan + ComposerThyagaraja + AlbumCarnatic Classical Vocal + GenreCarnatic + KindAAC audio file + Size8223545 + Total Time339311 + Track Number4 + Track Count10 + Date Modified2007-12-02T15:05:33Z + Date Added2009-10-03T14:55:06Z + Bit Rate192 + Sample Rate44100 + CommentsRaga: Ravichandrika Tala: Adi + Play Count2 + Play Date3423231351 + Play Date UTC2012-06-22T12:05:51Z + Normalization780 + Artwork Count1 + Persistent IDD36D51A06788E71C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/P%20Unnikrishnan/Carnatic%20Classical%20Vocal/04%20Makalera.m4a + File Folder Count4 + Library Folder Count1 + + 3244 + + Track ID3244 + NameKelathi Mama Hridaye (Raga: Bhageswari Tala: Adi) + ArtistP Unnikrishnan + ComposerThyagaraja + AlbumCarnatic Classical Vocal + GenreCarnatic + KindAAC audio file + Size6962848 + Total Time287206 + Track Number5 + Track Count10 + Date Modified2007-12-14T03:29:04Z + Date Added2009-10-03T14:55:07Z + Bit Rate192 + Sample Rate44100 + CommentsRaga: Bhageswari Tala: Adi + Play Count2 + Play Date3423231638 + Play Date UTC2012-06-22T12:10:38Z + Normalization1017 + Artwork Count1 + Persistent ID86E7CE2352EA314B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/P%20Unnikrishnan/Carnatic%20Classical%20Vocal/05%20Kelathi%20Mama%20Hridaye%20(Raga_%20Bhageswari%20Tala_%20Adi).m4a + File Folder Count4 + Library Folder Count1 + + 3246 + + Track ID3246 + NameVandanamu + ArtistP Unnikrishnan + ComposerThyagaraja + AlbumCarnatic Classical Vocal + GenreCarnatic + KindAAC audio file + Size8192055 + Total Time338011 + Track Number6 + Track Count10 + Date Modified2007-12-02T14:56:02Z + Date Added2009-10-03T14:55:07Z + Bit Rate192 + Sample Rate44100 + CommentsRaga: Sahana Tala: Adi + Play Count2 + Play Date3423231976 + Play Date UTC2012-06-22T12:16:16Z + Normalization579 + Artwork Count1 + Persistent IDD610317F88BBC8B1 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/P%20Unnikrishnan/Carnatic%20Classical%20Vocal/06%20Vandanamu.m4a + File Folder Count4 + Library Folder Count1 + + 3248 + + Track ID3248 + NameLavanya Rama (Raga Poornashadjam Tala: Roopaka) + ArtistP Unnikrishnan + ComposerThyagaraja + AlbumCarnatic Classical Vocal + GenreCarnatic + KindAAC audio file + Size7055805 + Total Time291060 + Track Number7 + Track Count10 + Date Modified2007-12-14T03:25:46Z + Date Added2009-10-03T14:55:07Z + Bit Rate192 + Sample Rate44100 + CommentsRaga Poornashadjam Tala: Roopaka + Play Count2 + Play Date3423232267 + Play Date UTC2012-06-22T12:21:07Z + Normalization695 + Artwork Count1 + Persistent ID895AC56063505A84 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/P%20Unnikrishnan/Carnatic%20Classical%20Vocal/07%20Lavanya%20Rama%20(Raga%20Poornashadjam%20Tala_%20Roopaka).m4a + File Folder Count4 + Library Folder Count1 + + 3250 + + Track ID3250 + NamePibare Rama Rasam (Raga: Ahinabhairava Tala: Adi) + ArtistP Unnikrishnan + ComposerSadasiva Brahmendrar + AlbumCarnatic Classical Vocal + GenreCarnatic + KindAAC audio file + Size7935824 + Total Time327423 + Track Number8 + Track Count10 + Date Modified2007-12-14T03:26:12Z + Date Added2009-10-03T14:55:07Z + Bit Rate192 + Sample Rate44100 + CommentsRaga: Ahinabhairava Tala: Adi + Play Count2 + Play Date3423232594 + Play Date UTC2012-06-22T12:26:34Z + Normalization1123 + Artwork Count1 + Persistent IDDCE0A448EFD96B98 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/P%20Unnikrishnan/Carnatic%20Classical%20Vocal/08%20Pibare%20Rama%20Rasam%20(Raga_%20Ahinabhairava%20Tala_%20Adi).m4a + File Folder Count4 + Library Folder Count1 + + 3252 + + Track ID3252 + NameBhajare (Raga: Abheri Tala: Adi) + ArtistP Unnikrishnan + ComposerMysore Vasudevacharya + AlbumCarnatic Classical Vocal + GenreCarnatic + KindAAC audio file + Size12417130 + Total Time512602 + Track Number9 + Track Count10 + Date Modified2007-12-14T03:26:03Z + Date Added2009-10-03T14:55:07Z + Bit Rate192 + Sample Rate44100 + CommentsRaga: Abheri Tala: Adi + Normalization1128 + Artwork Count1 + Persistent IDC97E6288F82F33F7 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/P%20Unnikrishnan/Carnatic%20Classical%20Vocal/09%20Bhajare%20(Raga_%20Abheri%20Tala_%20Adi).m4a + File Folder Count4 + Library Folder Count1 + + 3254 + + Track ID3254 + NameBrova Barma (Raga: Bahudari Tala: Adi) + ArtistP Unnikrishnan + ComposerThyagaraja + AlbumCarnatic Classical Vocal + GenreCarnatic + KindAAC audio file + Size7878091 + Total Time325147 + Track Number10 + Track Count10 + Date Modified2007-12-14T03:28:48Z + Date Added2009-10-03T14:55:07Z + Bit Rate192 + Sample Rate44100 + CommentsRaga: Bahudari Tala: Adi + Normalization1461 + Artwork Count1 + Persistent IDA43507A3DA680CF4 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/P%20Unnikrishnan/Carnatic%20Classical%20Vocal/10%20Brova%20Barma%20(Raga_%20Bahudari%20Tala_%20Adi).m4a + File Folder Count4 + Library Folder Count1 + + 3256 + + Track ID3256 + NameLonely Woman + ArtistOrnette Coleman + ComposerOrnette Coleman + AlbumThe Shape Of Jazz To Come + GenreJazz + KindAAC audio file + Size7228642 + Total Time302183 + Disc Number1 + Disc Count1 + Track Number1 + Track Count6 + Year1959 + BPM192 + Date Modified2006-07-28T03:55:12Z + Date Added2009-10-03T14:55:07Z + Bit Rate192 + Sample Rate44100 + Normalization1272 + Artwork Count1 + Sort AlbumShape Of Jazz To Come + Persistent ID9D2E624DC27D713D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ornette%20Coleman/The%20Shape%20Of%20Jazz%20To%20Come/01%20Lonely%20Woman.m4a + File Folder Count4 + Library Folder Count1 + + 3258 + + Track ID3258 + NameEventually + ArtistOrnette Coleman + ComposerOrnette Coleman + AlbumThe Shape Of Jazz To Come + GenreJazz + KindAAC audio file + Size6291106 + Total Time262894 + Disc Number1 + Disc Count1 + Track Number2 + Track Count6 + Year1959 + BPM192 + Date Modified2006-07-28T03:55:12Z + Date Added2009-10-03T14:55:08Z + Bit Rate192 + Sample Rate44100 + Normalization1043 + Artwork Count1 + Sort AlbumShape Of Jazz To Come + Persistent ID7C66DD550BCDAC3F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ornette%20Coleman/The%20Shape%20Of%20Jazz%20To%20Come/02%20Eventually.m4a + File Folder Count4 + Library Folder Count1 + + 3260 + + Track ID3260 + NamePeace + ArtistOrnette Coleman + ComposerOrnette Coleman + AlbumThe Shape Of Jazz To Come + GenreJazz + KindAAC audio file + Size13089818 + Total Time544854 + Disc Number1 + Disc Count1 + Track Number3 + Track Count6 + Year1959 + BPM192 + Date Modified2006-07-28T03:55:14Z + Date Added2009-10-03T14:55:08Z + Bit Rate192 + Sample Rate44100 + Normalization698 + Artwork Count1 + Sort AlbumShape Of Jazz To Come + Persistent ID9C84E46FF2BC4F96 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ornette%20Coleman/The%20Shape%20Of%20Jazz%20To%20Come/03%20Peace.m4a + File Folder Count4 + Library Folder Count1 + + 3262 + + Track ID3262 + NameFocus On Sanity + ArtistOrnette Coleman + ComposerOrnette Coleman + AlbumThe Shape Of Jazz To Come + GenreJazz + KindAAC audio file + Size9903627 + Total Time412431 + Disc Number1 + Disc Count1 + Track Number4 + Track Count6 + Year1959 + BPM192 + Date Modified2006-07-28T03:55:14Z + Date Added2009-10-03T14:55:08Z + Bit Rate192 + Sample Rate44100 + Normalization1041 + Artwork Count1 + Sort AlbumShape Of Jazz To Come + Persistent ID2FED64825D1CA450 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ornette%20Coleman/The%20Shape%20Of%20Jazz%20To%20Come/04%20Focus%20On%20Sanity.m4a + File Folder Count4 + Library Folder Count1 + + 3264 + + Track ID3264 + NameCongeniality + ArtistOrnette Coleman + ComposerOrnette Coleman + AlbumThe Shape Of Jazz To Come + GenreJazz + KindAAC audio file + Size9799937 + Total Time408414 + Disc Number1 + Disc Count1 + Track Number5 + Track Count6 + Year1959 + BPM192 + Date Modified2006-07-28T03:55:16Z + Date Added2009-10-03T14:55:08Z + Bit Rate192 + Sample Rate44100 + Normalization745 + Artwork Count1 + Sort AlbumShape Of Jazz To Come + Persistent IDFB7E4D9F05ACDFFC + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ornette%20Coleman/The%20Shape%20Of%20Jazz%20To%20Come/05%20Congeniality.m4a + File Folder Count4 + Library Folder Count1 + + 3266 + + Track ID3266 + NameChronology + ArtistOrnette Coleman + ComposerOrnette Coleman + AlbumThe Shape Of Jazz To Come + GenreJazz + KindAAC audio file + Size8811216 + Total Time363483 + Disc Number1 + Disc Count1 + Track Number6 + Track Count6 + Year1959 + BPM192 + Date Modified2006-07-28T03:55:16Z + Date Added2009-10-03T14:55:08Z + Bit Rate192 + Sample Rate44100 + Normalization1075 + Artwork Count1 + Sort AlbumShape Of Jazz To Come + Persistent IDCEFC08CC6C391726 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ornette%20Coleman/The%20Shape%20Of%20Jazz%20To%20Come/06%20Chronology.m4a + File Folder Count4 + Library Folder Count1 + + 3268 + + Track ID3268 + NameStolen Moments + ArtistOliver Nelson + ComposerOliver Nelson + AlbumThe Blues And The Abstract Truth + GenreJazz + KindAAC audio file + Size12722939 + Total Time526000 + Disc Number1 + Disc Count1 + Track Number1 + Track Count6 + Year1961 + Date Modified2006-08-08T03:10:06Z + Date Added2009-10-03T14:55:08Z + Bit Rate192 + Sample Rate44100 + Normalization1232 + Artwork Count1 + Sort AlbumBlues And The Abstract Truth + Persistent IDDE506C72DA81943A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Oliver%20Nelson/The%20Blues%20And%20The%20Abstract%20Truth/01%20Stolen%20Moments.m4a + File Folder Count4 + Library Folder Count1 + + 3270 + + Track ID3270 + NameHoe-Down + ArtistOliver Nelson + ComposerOliver Nelson + AlbumThe Blues And The Abstract Truth + GenreJazz + KindAAC audio file + Size6851512 + Total Time283142 + Disc Number1 + Disc Count1 + Track Number2 + Track Count6 + Year1961 + Date Modified2006-08-08T03:10:06Z + Date Added2009-10-03T14:55:08Z + Bit Rate192 + Sample Rate44100 + Normalization2477 + Artwork Count1 + Sort AlbumBlues And The Abstract Truth + Persistent ID4036490D9F65BF8A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Oliver%20Nelson/The%20Blues%20And%20The%20Abstract%20Truth/02%20Hoe-Down.m4a + File Folder Count4 + Library Folder Count1 + + 3272 + + Track ID3272 + NameCascades + ArtistOliver Nelson + ComposerOliver Nelson + AlbumThe Blues And The Abstract Truth + GenreJazz + KindAAC audio file + Size8021099 + Total Time331045 + Disc Number1 + Disc Count1 + Track Number3 + Track Count6 + Year1961 + Date Modified2006-08-08T03:10:06Z + Date Added2009-10-03T14:55:08Z + Bit Rate192 + Sample Rate44100 + Normalization2404 + Artwork Count1 + Sort AlbumBlues And The Abstract Truth + Persistent ID4E8FA4E52780B499 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Oliver%20Nelson/The%20Blues%20And%20The%20Abstract%20Truth/03%20Cascades.m4a + File Folder Count4 + Library Folder Count1 + + 3274 + + Track ID3274 + NameYearnin' + ArtistOliver Nelson + ComposerOliver Nelson + AlbumThe Blues And The Abstract Truth + GenreJazz + KindAAC audio file + Size9288620 + Total Time383777 + Disc Number1 + Disc Count1 + Track Number4 + Track Count6 + Year1961 + Date Modified2006-08-08T03:10:06Z + Date Added2009-10-03T14:55:09Z + Bit Rate192 + Sample Rate44100 + Normalization2515 + Artwork Count1 + Sort AlbumBlues And The Abstract Truth + Persistent IDA2FABF20D16D0144 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Oliver%20Nelson/The%20Blues%20And%20The%20Abstract%20Truth/04%20Yearnin'.m4a + File Folder Count4 + Library Folder Count1 + + 3276 + + Track ID3276 + NameButch And Butch + ArtistOliver Nelson + ComposerOliver Nelson + AlbumThe Blues And The Abstract Truth + GenreJazz + KindAAC audio file + Size6674857 + Total Time276594 + Disc Number1 + Disc Count1 + Track Number5 + Track Count6 + Year1961 + Date Modified2006-08-08T03:10:04Z + Date Added2009-10-03T14:55:09Z + Bit Rate192 + Sample Rate44100 + Normalization2543 + Artwork Count1 + Sort AlbumBlues And The Abstract Truth + Persistent IDE18348553966E041 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Oliver%20Nelson/The%20Blues%20And%20The%20Abstract%20Truth/05%20Butch%20And%20Butch.m4a + File Folder Count4 + Library Folder Count1 + + 3278 + + Track ID3278 + NameTeenie's Blues + ArtistOliver Nelson + ComposerOliver Nelson + AlbumThe Blues And The Abstract Truth + GenreJazz + KindAAC audio file + Size9552280 + Total Time393948 + Disc Number1 + Disc Count1 + Track Number6 + Track Count6 + Year1961 + Date Modified2006-08-08T03:10:04Z + Date Added2009-10-03T14:55:09Z + Bit Rate192 + Sample Rate44100 + Normalization2658 + Artwork Count1 + Sort AlbumBlues And The Abstract Truth + Persistent IDBB668F42CD230385 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Oliver%20Nelson/The%20Blues%20And%20The%20Abstract%20Truth/06%20Teenie's%20Blues.m4a + File Folder Count4 + Library Folder Count1 + + 3280 + + Track ID3280 + NameSunrise + ArtistNorah Jones + ComposerLee Alexander-Norah Jones + AlbumFeels Like Home + GenrePop + KindAAC audio file + Size4869271 + Total Time200642 + Disc Number1 + Disc Count1 + Track Number1 + Track Count13 + Year2004 + Date Modified2006-07-28T03:49:36Z + Date Added2009-10-03T14:55:09Z + Bit Rate192 + Sample Rate44100 + Play Count3 + Play Date3389631923 + Play Date UTC2011-05-30T14:55:23Z + Normalization1730 + Artwork Count1 + Persistent ID21695A7CC62D2619 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Norah%20Jones/Feels%20Like%20Home/01%20Sunrise.m4a + File Folder Count4 + Library Folder Count1 + + 3282 + + Track ID3282 + NameWhat Am I To You? + ArtistNorah Jones + ComposerNorah Jones + AlbumFeels Like Home + GenrePop + KindAAC audio file + Size5077499 + Total Time210023 + Disc Number1 + Disc Count1 + Track Number2 + Track Count13 + Year2004 + Date Modified2006-07-28T03:49:38Z + Date Added2009-10-03T14:55:09Z + Bit Rate192 + Sample Rate44100 + Play Count3 + Play Date3389632142 + Play Date UTC2011-05-30T14:59:02Z + Normalization2596 + Artwork Count1 + Persistent ID0939B2FB5B0EF273 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Norah%20Jones/Feels%20Like%20Home/02%20What%20Am%20I%20To%20You_.m4a + File Folder Count4 + Library Folder Count1 + + 3284 + + Track ID3284 + NameThose Sweet Words + ArtistNorah Jones + ComposerLee Alexander-Richard Juhan + AlbumFeels Like Home + GenrePop + KindAAC audio file + Size4903389 + Total Time202662 + Disc Number1 + Disc Count1 + Track Number3 + Track Count13 + Year2004 + Date Modified2006-07-28T03:49:38Z + Date Added2009-10-03T14:55:09Z + Bit Rate192 + Sample Rate44100 + Play Count2 + Play Date3388425987 + Play Date UTC2011-05-16T15:56:27Z + Normalization2248 + Artwork Count1 + Persistent ID5338EBB9380FCAD4 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Norah%20Jones/Feels%20Like%20Home/03%20Those%20Sweet%20Words.m4a + File Folder Count4 + Library Folder Count1 + + 3286 + + Track ID3286 + NameCarnival Town + ArtistNorah Jones + ComposerNorah Jones-Lee Alexander + AlbumFeels Like Home + GenrePop + KindAAC audio file + Size4678870 + Total Time191981 + Disc Number1 + Disc Count1 + Track Number4 + Track Count13 + Year2004 + Date Modified2006-07-28T03:49:40Z + Date Added2009-10-03T14:55:09Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3388426179 + Play Date UTC2011-05-16T15:59:39Z + Normalization1138 + Artwork Count1 + Persistent IDC91400ABFAA81FB5 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Norah%20Jones/Feels%20Like%20Home/04%20Carnival%20Town.m4a + File Folder Count4 + Library Folder Count1 + + 3288 + + Track ID3288 + NameIn The Morning + ArtistNorah Jones + ComposerAdam Levy + AlbumFeels Like Home + GenrePop + KindAAC audio file + Size5972674 + Total Time247337 + Disc Number1 + Disc Count1 + Track Number5 + Track Count13 + Year2004 + Date Modified2006-07-28T03:49:42Z + Date Added2009-10-03T14:55:09Z + Bit Rate192 + Sample Rate44100 + Play Count2 + Play Date3389718181 + Play Date UTC2011-05-31T14:53:01Z + Normalization1604 + Artwork Count1 + Persistent IDD60EB4ADCEC89F56 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Norah%20Jones/Feels%20Like%20Home/05%20In%20The%20Morning.m4a + File Folder Count4 + Library Folder Count1 + + 3290 + + Track ID3290 + NameBe Here To Love Me + ArtistNorah Jones + ComposerTownes Van Zandt + AlbumFeels Like Home + GenrePop + KindAAC audio file + Size5055021 + Total Time208885 + Disc Number1 + Disc Count1 + Track Number6 + Track Count13 + Year2004 + Date Modified2006-07-28T03:49:44Z + Date Added2009-10-03T14:55:10Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3388426642 + Play Date UTC2011-05-16T16:07:22Z + Normalization2505 + Artwork Count1 + Persistent ID29F593BA340CC2AE + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Norah%20Jones/Feels%20Like%20Home/06%20Be%20Here%20To%20Love%20Me.m4a + File Folder Count4 + Library Folder Count1 + + 3292 + + Track ID3292 + NameCreepin' In + ArtistNorah Jones + ComposerLee Alexander + AlbumFeels Like Home + GenrePop + KindAAC audio file + Size4391659 + Total Time183854 + Disc Number1 + Disc Count1 + Track Number7 + Track Count13 + Year2004 + Date Modified2006-07-28T03:49:44Z + Date Added2009-10-03T14:55:10Z + Bit Rate192 + Sample Rate44100 + Normalization2803 + Artwork Count1 + Persistent ID8678CFFC8AD3CEAA + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Norah%20Jones/Feels%20Like%20Home/07%20Creepin'%20In.m4a + File Folder Count4 + Library Folder Count1 + + 3294 + + Track ID3294 + NameToes + ArtistNorah Jones + ComposerLee Alexander-Norah Jones + AlbumFeels Like Home + GenrePop + KindAAC audio file + Size5506261 + Total Time226602 + Disc Number1 + Disc Count1 + Track Number8 + Track Count13 + Year2004 + Date Modified2006-07-28T03:49:46Z + Date Added2009-10-03T14:55:10Z + Bit Rate192 + Sample Rate44100 + Normalization1914 + Artwork Count1 + Persistent ID7CBE9435B935DF28 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Norah%20Jones/Feels%20Like%20Home/08%20Toes.m4a + File Folder Count4 + Library Folder Count1 + + 3296 + + Track ID3296 + NameHumble Me + ArtistNorah Jones + ComposerKevin Breit + AlbumFeels Like Home + GenrePop + KindAAC audio file + Size6676557 + Total Time276362 + Disc Number1 + Disc Count1 + Track Number9 + Track Count13 + Year2004 + Date Modified2006-07-28T03:49:46Z + Date Added2009-10-03T14:55:10Z + Bit Rate192 + Sample Rate44100 + Normalization1114 + Artwork Count1 + Persistent IDC19360AF0A5743B3 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Norah%20Jones/Feels%20Like%20Home/09%20Humble%20Me.m4a + File Folder Count4 + Library Folder Count1 + + 3298 + + Track ID3298 + NameAbove Ground + ArtistNorah Jones + ComposerAdrew Borger-Daru Oda + AlbumFeels Like Home + GenrePop + KindAAC audio file + Size5396406 + Total Time223862 + Disc Number1 + Disc Count1 + Track Number10 + Track Count13 + Year2004 + Date Modified2006-07-28T03:49:48Z + Date Added2009-10-03T14:55:10Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3338658831 + Play Date UTC2009-10-17T15:43:51Z + Normalization1875 + Artwork Count1 + Persistent ID05A6223691D8F879 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Norah%20Jones/Feels%20Like%20Home/10%20Above%20Ground.m4a + File Folder Count4 + Library Folder Count1 + + 3300 + + Track ID3300 + NameThe Long Way Home + ArtistNorah Jones + ComposerKathleen Brennan-Tom Waits + AlbumFeels Like Home + GenrePop + KindAAC audio file + Size4674665 + Total Time193235 + Disc Number1 + Disc Count1 + Track Number11 + Track Count13 + Year2004 + Date Modified2006-07-28T03:49:50Z + Date Added2009-10-03T14:55:10Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Sort NameLong Way Home + Persistent ID0DE010D15C57E92F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Norah%20Jones/Feels%20Like%20Home/11%20The%20Long%20Way%20Home.m4a + File Folder Count4 + Library Folder Count1 + + 3302 + + Track ID3302 + NameThe Prettiest Thing + ArtistNorah Jones + ComposerN. Jones-L. Alexander-R. Juhan + AlbumFeels Like Home + GenrePop + KindAAC audio file + Size5592828 + Total Time231803 + Disc Number1 + Disc Count1 + Track Number12 + Track Count13 + Year2004 + Date Modified2006-07-28T03:49:52Z + Date Added2009-10-03T14:55:10Z + Bit Rate192 + Sample Rate44100 + Normalization1393 + Artwork Count1 + Sort NamePrettiest Thing + Persistent IDF082508FB3135117 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Norah%20Jones/Feels%20Like%20Home/12%20The%20Prettiest%20Thing.m4a + File Folder Count4 + Library Folder Count1 + + 3304 + + Track ID3304 + NameDon't Miss You At All + ArtistNorah Jones + ComposerDuke Ellington + AlbumFeels Like Home + GenrePop + KindAAC audio file + Size4556768 + Total Time186942 + Disc Number1 + Disc Count1 + Track Number13 + Track Count13 + Year2004 + Date Modified2006-07-28T03:49:52Z + Date Added2009-10-03T14:55:10Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Persistent ID6E0CFD779C8FF4AA + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Norah%20Jones/Feels%20Like%20Home/13%20Don't%20Miss%20You%20At%20All.m4a + File Folder Count4 + Library Folder Count1 + + 3306 + + Track ID3306 + NameDon't Know Why + ArtistNorah Jones + ComposerJesse Harris + AlbumCome Away With Me + GenrePop + KindAAC audio file + Size4541105 + Total Time186152 + Disc Number1 + Disc Count1 + Track Number1 + Track Count14 + Year2002 + Date Modified2006-08-07T05:24:28Z + Date Added2009-10-03T14:55:11Z + Bit Rate192 + Sample Rate44100 + Play Count4 + Play Date3441651029 + Play Date UTC2013-01-21T16:40:29Z + Normalization1983 + Artwork Count1 + Persistent ID5689E1B7D789DB2A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Norah%20Jones/Come%20Away%20With%20Me/01%20Don't%20Know%20Why.m4a + File Folder Count4 + Library Folder Count1 + + 3308 + + Track ID3308 + NameSeven Years + ArtistNorah Jones + ComposerLee Alexander + AlbumCome Away With Me + GenrePop + KindAAC audio file + Size3541604 + Total Time145285 + Disc Number1 + Disc Count1 + Track Number2 + Track Count14 + Year2002 + Date Modified2006-08-07T05:24:28Z + Date Added2009-10-03T14:55:11Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3381677171 + Play Date UTC2011-02-27T13:16:11Z + Normalization1310 + Artwork Count1 + Persistent ID1B90E5159B1ACEEC + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Norah%20Jones/Come%20Away%20With%20Me/02%20Seven%20Years.m4a + File Folder Count4 + Library Folder Count1 + + 3310 + + Track ID3310 + NameCold Cold Heart + ArtistNorah Jones + ComposerHank Williams + AlbumCome Away With Me + GenrePop + KindAAC audio file + Size5321333 + Total Time218637 + Disc Number1 + Disc Count1 + Track Number3 + Track Count14 + Year2002 + Date Modified2006-08-07T05:24:28Z + Date Added2009-10-03T14:55:11Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3381677390 + Play Date UTC2011-02-27T13:19:50Z + Normalization1060 + Artwork Count1 + Persistent ID654C01ACECA3323E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Norah%20Jones/Come%20Away%20With%20Me/03%20Cold%20Cold%20Heart.m4a + File Folder Count4 + Library Folder Count1 + + 3312 + + Track ID3312 + NameFeelin' The Same Way + ArtistNorah Jones + ComposerLee Alexander + AlbumCome Away With Me + GenrePop + KindAAC audio file + Size4327100 + Total Time177259 + Disc Number1 + Disc Count1 + Track Number4 + Track Count14 + Year2002 + Date Modified2006-08-07T05:24:28Z + Date Added2009-10-03T14:55:11Z + Bit Rate192 + Sample Rate44100 + Normalization1796 + Artwork Count1 + Persistent IDF68251A3B2E26BD6 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Norah%20Jones/Come%20Away%20With%20Me/04%20Feelin'%20The%20Same%20Way.m4a + File Folder Count4 + Library Folder Count1 + + 3314 + + Track ID3314 + NameCome Away With Me + ArtistNorah Jones + ComposerNorah Jones + AlbumCome Away With Me + GenrePop + KindAAC audio file + Size4829635 + Total Time198157 + Disc Number1 + Disc Count1 + Track Number5 + Track Count14 + Year2002 + Date Modified2006-08-07T05:24:28Z + Date Added2009-10-03T14:55:11Z + Bit Rate192 + Sample Rate44100 + Play Count5 + Play Date3403722850 + Play Date UTC2011-11-09T17:04:10Z + Normalization1088 + Artwork Count1 + Persistent ID3FAB50E83AB08B5F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Norah%20Jones/Come%20Away%20With%20Me/05%20Come%20Away%20With%20Me.m4a + File Folder Count4 + Library Folder Count1 + + 3316 + + Track ID3316 + NameShoot The Moon + ArtistNorah Jones + ComposerJesse Harris + AlbumCome Away With Me + GenrePop + KindAAC audio file + Size5767324 + Total Time237190 + Disc Number1 + Disc Count1 + Track Number6 + Track Count14 + Year2002 + Date Modified2006-08-07T05:24:28Z + Date Added2009-10-03T14:55:11Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3389511623 + Play Date UTC2011-05-29T05:30:23Z + Normalization1259 + Artwork Count1 + Persistent IDB3CF6A1584218FB4 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Norah%20Jones/Come%20Away%20With%20Me/06%20Shoot%20The%20Moon.m4a + File Folder Count4 + Library Folder Count1 + + 3318 + + Track ID3318 + NameTurn Me On + ArtistNorah Jones + ComposerJ.D. Loudermilk + AlbumCome Away With Me + GenrePop + KindAAC audio file + Size3766213 + Total Time154643 + Disc Number1 + Disc Count1 + Track Number7 + Track Count14 + Year2002 + Date Modified2006-08-07T05:24:28Z + Date Added2009-10-03T14:55:11Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3389511778 + Play Date UTC2011-05-29T05:32:58Z + Normalization1756 + Artwork Count1 + Persistent ID1AA0D6FE32CCFA35 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Norah%20Jones/Come%20Away%20With%20Me/07%20Turn%20Me%20On.m4a + File Folder Count4 + Library Folder Count1 + + 3320 + + Track ID3320 + NameLonestar + ArtistNorah Jones + ComposerLee Alexander + AlbumCome Away With Me + GenrePop + KindAAC audio file + Size4539612 + Total Time186083 + Disc Number1 + Disc Count1 + Track Number8 + Track Count14 + Year2002 + Date Modified2006-08-07T05:24:28Z + Date Added2009-10-03T14:55:11Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3389511964 + Play Date UTC2011-05-29T05:36:04Z + Normalization1062 + Artwork Count1 + Persistent IDFC4C1B830A689A0A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Norah%20Jones/Come%20Away%20With%20Me/08%20Lonestar.m4a + File Folder Count4 + Library Folder Count1 + + 3322 + + Track ID3322 + NameI've Got To See You Again + ArtistNorah Jones + ComposerJesse Harris + AlbumCome Away With Me + GenrePop + KindAAC audio file + Size6154861 + Total Time253328 + Disc Number1 + Disc Count1 + Track Number9 + Track Count14 + Year2002 + Date Modified2006-08-07T05:24:28Z + Date Added2009-10-03T14:55:11Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3389512217 + Play Date UTC2011-05-29T05:40:17Z + Normalization1318 + Artwork Count1 + Persistent IDAE078C5C4C578C8D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Norah%20Jones/Come%20Away%20With%20Me/09%20I've%20Got%20To%20See%20You%20Again.m4a + File Folder Count4 + Library Folder Count1 + + 3324 + + Track ID3324 + NamePainter Song + ArtistNorah Jones + ComposerJ.C. Hopkins/Lee Alexander + AlbumCome Away With Me + GenrePop + KindAAC audio file + Size3948960 + Total Time162259 + Disc Number1 + Disc Count1 + Track Number10 + Track Count14 + Year2002 + Date Modified2006-08-07T05:24:28Z + Date Added2009-10-03T14:55:12Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3389512379 + Play Date UTC2011-05-29T05:42:59Z + Normalization1094 + Artwork Count1 + Persistent ID6EF014009BBE0453 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Norah%20Jones/Come%20Away%20With%20Me/10%20Painter%20Song.m4a + File Folder Count4 + Library Folder Count1 + + 3326 + + Track ID3326 + NameOne Flight Down + ArtistNorah Jones + ComposerJesse Harris + AlbumCome Away With Me + GenrePop + KindAAC audio file + Size4530246 + Total Time185688 + Disc Number1 + Disc Count1 + Track Number11 + Track Count14 + Year2002 + Date Modified2006-08-07T05:24:28Z + Date Added2009-10-03T14:55:12Z + Bit Rate192 + Sample Rate44100 + Normalization1775 + Artwork Count1 + Persistent ID1A77E3058CBC1B33 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Norah%20Jones/Come%20Away%20With%20Me/11%20One%20Flight%20Down.m4a + File Folder Count4 + Library Folder Count1 + + 3328 + + Track ID3328 + NameNightingale + ArtistNorah Jones + ComposerNorah Jones + AlbumCome Away With Me + GenrePop + KindAAC audio file + Size6129129 + Total Time252260 + Disc Number1 + Disc Count1 + Track Number12 + Track Count14 + Year2002 + Date Modified2006-08-07T05:24:28Z + Date Added2009-10-03T14:55:12Z + Bit Rate192 + Sample Rate44100 + Normalization1610 + Artwork Count1 + Persistent IDD7F9E54BF5A06457 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Norah%20Jones/Come%20Away%20With%20Me/12%20Nightingale.m4a + File Folder Count4 + Library Folder Count1 + + 3330 + + Track ID3330 + NameThe Long Day Is Over + ArtistNorah Jones + ComposerJesse Harris/Norah Jones + AlbumCome Away With Me + GenrePop + KindAAC audio file + Size4005595 + Total Time164581 + Disc Number1 + Disc Count1 + Track Number13 + Track Count14 + Year2002 + Date Modified2006-08-07T05:24:26Z + Date Added2009-10-03T14:55:12Z + Bit Rate192 + Sample Rate44100 + Normalization1060 + Artwork Count1 + Sort NameLong Day Is Over + Persistent ID905316609998CE72 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Norah%20Jones/Come%20Away%20With%20Me/13%20The%20Long%20Day%20Is%20Over.m4a + File Folder Count4 + Library Folder Count1 + + 3332 + + Track ID3332 + NameThe Nearness Of You + ArtistNorah Jones + ComposerHoagy Carmichael/Ned Washington + AlbumCome Away With Me + GenrePop + KindAAC audio file + Size4577341 + Total Time187685 + Disc Number1 + Disc Count1 + Track Number14 + Track Count14 + Year2002 + Date Modified2006-08-07T05:24:26Z + Date Added2009-10-03T14:55:12Z + Bit Rate192 + Sample Rate44100 + Normalization1009 + Artwork Count1 + Sort NameNearness Of You + Persistent ID53F9F50A04A60E20 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Norah%20Jones/Come%20Away%20With%20Me/14%20The%20Nearness%20Of%20You.m4a + File Folder Count4 + Library Folder Count1 + + 3334 + + Track ID3334 + NameSmells Like Teen Spirit + ArtistNirvana + ComposerKurt Cobain + AlbumNevermind + GenreRock + KindAAC audio file + Size7565065 + Total Time301133 + Disc Number1 + Disc Count1 + Track Number1 + Track Count12 + Year1991 + BPM192 + Date Modified2008-10-13T16:37:33Z + Date Added2009-10-03T14:55:12Z + Bit Rate192 + Sample Rate44100 + Play Count2 + Play Date3377095760 + Play Date UTC2011-01-05T12:39:20Z + Normalization3713 + Artwork Count1 + Persistent IDD6AC5779533326C7 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Nirvana/Nevermind/01%20Smells%20Like%20Teen%20Spirit.m4a + File Folder Count4 + Library Folder Count1 + + 3336 + + Track ID3336 + NameIn Bloom + ArtistNirvana + ComposerKurt Cobain + AlbumNevermind + GenreRock + KindAAC audio file + Size6448751 + Total Time254933 + Disc Number1 + Disc Count1 + Track Number2 + Track Count12 + Year1991 + BPM192 + Date Modified2008-10-13T16:37:36Z + Date Added2009-10-03T14:55:13Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3363361749 + Play Date UTC2010-07-30T13:39:09Z + Normalization2796 + Artwork Count1 + Persistent ID4E22F2BA055EA311 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Nirvana/Nevermind/02%20In%20Bloom.m4a + File Folder Count4 + Library Folder Count1 + + 3338 + + Track ID3338 + NameCome As You Are + ArtistNirvana + ComposerKurt Cobain + AlbumNevermind + GenreRock + KindAAC audio file + Size5494600 + Total Time219066 + Disc Number1 + Disc Count1 + Track Number3 + Track Count12 + Year1991 + BPM192 + Date Modified2008-10-13T16:37:38Z + Date Added2009-10-03T14:55:13Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3363361968 + Play Date UTC2010-07-30T13:42:48Z + Normalization2535 + Artwork Count1 + Persistent IDE56A2520E23E5B61 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Nirvana/Nevermind/03%20Come%20As%20You%20Are.m4a + File Folder Count4 + Library Folder Count1 + + 3340 + + Track ID3340 + NameBreed + ArtistNirvana + ComposerKurt Cobain/NIRVANA + AlbumNevermind + GenreRock + KindAAC audio file + Size4680869 + Total Time183773 + Disc Number1 + Disc Count1 + Track Number4 + Track Count12 + Year1991 + BPM192 + Date Modified2008-10-13T16:37:41Z + Date Added2009-10-03T14:55:13Z + Bit Rate192 + Sample Rate44100 + Normalization4769 + Artwork Count1 + Persistent ID724B0A1FCF2BCCDB + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Nirvana/Nevermind/04%20Breed.m4a + File Folder Count4 + Library Folder Count1 + + 3342 + + Track ID3342 + NameLithium + ArtistNirvana + ComposerKurt Cobain + AlbumNevermind + GenreRock + KindAAC audio file + Size6461937 + Total Time257000 + Disc Number1 + Disc Count1 + Track Number5 + Track Count12 + Year1991 + BPM192 + Date Modified2008-10-13T16:37:44Z + Date Added2009-10-03T14:55:13Z + Bit Rate192 + Sample Rate44100 + Skip Count1 + Skip Date2010-08-25T11:00:19Z + Normalization2143 + Artwork Count1 + Persistent ID63649A011B493FF9 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Nirvana/Nevermind/05%20Lithium.m4a + File Folder Count4 + Library Folder Count1 + + 3344 + + Track ID3344 + NamePolly + ArtistNirvana + ComposerKurt Cobain + AlbumNevermind + GenreRock + KindAAC audio file + Size4264984 + Total Time177000 + Disc Number1 + Disc Count1 + Track Number6 + Track Count12 + Year1991 + BPM192 + Date Modified2008-10-13T16:37:46Z + Date Added2009-10-03T14:55:13Z + Bit Rate192 + Sample Rate44100 + Normalization913 + Artwork Count1 + Persistent IDBCCD9605761E29DA + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Nirvana/Nevermind/06%20Polly.m4a + File Folder Count4 + Library Folder Count1 + + 3346 + + Track ID3346 + NameTerritorial Pissings + ArtistNirvana + ComposerKurt Cobain + AlbumNevermind + GenreRock + KindAAC audio file + Size3660048 + Total Time143133 + Disc Number1 + Disc Count1 + Track Number7 + Track Count12 + Year1991 + BPM192 + Date Modified2008-10-13T16:37:48Z + Date Added2009-10-03T14:55:13Z + Bit Rate192 + Sample Rate44100 + Normalization3242 + Artwork Count1 + Persistent ID6AE7E4641A8391E7 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Nirvana/Nevermind/07%20Territorial%20Pissings.m4a + File Folder Count4 + Library Folder Count1 + + 3348 + + Track ID3348 + NameDrain You + ArtistNirvana + ComposerKurt Cobain + AlbumNevermind + GenreRock + KindAAC audio file + Size5677735 + Total Time223866 + Disc Number1 + Disc Count1 + Track Number8 + Track Count12 + Year1991 + BPM192 + Date Modified2008-10-13T16:37:51Z + Date Added2009-10-03T14:55:13Z + Bit Rate192 + Sample Rate44100 + Normalization2175 + Artwork Count1 + Persistent ID494E663B00FB7712 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Nirvana/Nevermind/08%20Drain%20You.m4a + File Folder Count4 + Library Folder Count1 + + 3350 + + Track ID3350 + NameLounge Act + ArtistNirvana + ComposerKurt Cobain + AlbumNevermind + GenreRock + KindAAC audio file + Size3979350 + Total Time156760 + Disc Number1 + Disc Count1 + Track Number9 + Track Count12 + Year1991 + BPM192 + Date Modified2008-10-13T16:37:53Z + Date Added2009-10-03T14:55:14Z + Bit Rate192 + Sample Rate44100 + Normalization3044 + Artwork Count1 + Persistent ID1659223675490430 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Nirvana/Nevermind/09%20Lounge%20Act.m4a + File Folder Count4 + Library Folder Count1 + + 3352 + + Track ID3352 + NameStay Away + ArtistNirvana + ComposerKurt Cobain + AlbumNevermind + GenreRock + KindAAC audio file + Size5305785 + Total Time212466 + Disc Number1 + Disc Count1 + Track Number10 + Track Count12 + Year1991 + BPM192 + Date Modified2008-10-13T16:37:58Z + Date Added2009-10-03T14:55:14Z + Bit Rate192 + Sample Rate44100 + Normalization3619 + Artwork Count1 + Persistent ID5722C8840240F38B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Nirvana/Nevermind/10%20Stay%20Away.m4a + File Folder Count4 + Library Folder Count1 + + 3354 + + Track ID3354 + NameOn A Plain + ArtistNirvana + ComposerKurt Cobain + AlbumNevermind + GenreRock + KindAAC audio file + Size4956186 + Total Time196400 + Disc Number1 + Disc Count1 + Track Number11 + Track Count12 + Year1991 + BPM192 + Date Modified2008-10-13T16:38:00Z + Date Added2009-10-03T14:55:14Z + Bit Rate192 + Sample Rate44100 + Normalization2655 + Artwork Count1 + Persistent IDC4F45A8FEABAC4AD + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Nirvana/Nevermind/11%20On%20A%20Plain.m4a + File Folder Count4 + Library Folder Count1 + + 3356 + + Track ID3356 + NameSomething In The Way / [Hidden Track] + ArtistNirvana + AlbumNevermind + GenreRock + KindAAC audio file + Size19994883 + Total Time1235066 + Disc Number1 + Disc Count1 + Track Number12 + Track Count12 + Year1991 + BPM192 + Date Modified2008-10-13T16:38:16Z + Date Added2009-10-03T14:55:14Z + Bit Rate192 + Sample Rate44100 + Normalization1646 + Artwork Count1 + Persistent IDB1C0892FA7C31B8F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Nirvana/Nevermind/12%20Something%20In%20The%20Way%20_%20%5BHidden%20Track%5D.m4a + File Folder Count4 + Library Folder Count1 + + 3358 + + Track ID3358 + NamePaathshala + ArtistNaresh Iyer, Mohamed Aslam + Composera r rahman + AlbumRang De Basanti + GenreSoundtracks + KindAAC audio file + Size5361061 + Total Time219914 + Track Number3 + Date Modified2007-04-09T08:52:46Z + Date Added2009-10-03T14:55:15Z + Bit Rate192 + Sample Rate44100 + Normalization3148 + Artwork Count1 + Sort Composerr rahman + Persistent ID71BBC4A06B7E0B4B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Naresh%20Iyer,%20Mohamed%20Aslam/Rang%20De%20Basanti/03%20Paathshala.m4a + File Folder Count4 + Library Folder Count1 + + 3360 + + Track ID3360 + NamePaathshala + ArtistNaresh Iyer, Mohamed Aslam + Composera r rahman + AlbumRang De Basanti + GenreSoundtracks + KindAAC audio file + Size5307032 + Total Time219892 + Track Number3 + Date Modified2007-07-27T06:37:30Z + Date Added2009-10-03T14:55:15Z + Bit Rate192 + Sample Rate44100 + Normalization3148 + Sort Composerr rahman + Persistent ID667B41A845DC2F43 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Naresh%20Iyer,%20Mohamed%20Aslam/Rang%20De%20Basanti/03%20Paathshala%201.m4a + File Folder Count4 + Library Folder Count1 + + 3362 + + Track ID3362 + NamePaathshala + ArtistNaresh Iyer, Mohamed Aslam + Composera r rahman + AlbumRang De Basanti + GenreSoundtracks + KindAAC audio file + Size5314775 + Total Time219914 + Track Number3 + Date Modified2006-12-27T10:35:08Z + Date Added2009-10-03T14:55:15Z + Bit Rate192 + Sample Rate44100 + Normalization3148 + Sort Composerr rahman + Persistent ID21665F69FF1679CC + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Naresh%20Iyer,%20Mohamed%20Aslam/Rang%20De%20Basanti/03%20Paathshala%202.m4a + File Folder Count4 + Library Folder Count1 + + 3364 + + Track ID3364 + NamePaathshala + ArtistNaresh Iyer, Mohamed Aslam + Composera r rahman + AlbumRang De Basanti + GenreSoundtracks + KindAAC audio file + Size5199974 + Total Time219892 + Track Number3 + Date Modified2007-12-02T08:05:21Z + Date Added2009-10-03T14:55:15Z + Bit Rate187 + Sample Rate44100 + Normalization3148 + Sort Composerr rahman + Persistent ID076989CDD716C589 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Naresh%20Iyer,%20Mohamed%20Aslam/Rang%20De%20Basanti/03%20Paathshala%203.m4a + File Folder Count4 + Library Folder Count1 + + 3366 + + Track ID3366 + NameBach (JS): Cello Suite #1 In G, BWV 1007i - 1. Prelude + ArtistMstislav Rostropovich + ComposerJohann Sebastian Bach (1685-1750) + AlbumBach (JS): Cello Suites #1, 4 & 5 + GenreClassical + KindAAC audio file + Size3026409 + Total Time124527 + Disc Number1 + Disc Count2 + Track Number1 + Track Count21 + Year1995 + Date Modified2006-08-07T15:47:32Z + Date Added2009-10-03T14:55:15Z + Bit Rate192 + Sample Rate44100 + Normalization374 + Artwork Count1 + Persistent IDEA6E9E2C81E66B30 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mstislav%20Rostropovich/Bach%20(JS)_%20Cello%20Suites%20%231,%204%20&%205/1-01%20Bach%20(JS)_%20Cello%20Suite%20%231%20In%20G,%20BWV%201007i%20-%201.%20Prelude.m4a + File Folder Count4 + Library Folder Count1 + + 3368 + + Track ID3368 + NameBach (JS): Cello Suite #1 In G, BWV 1007ii - 2. Allemande + ArtistMstislav Rostropovich + ComposerJohann Sebastian Bach (1685-1750) + AlbumBach (JS): Cello Suites #1, 4 & 5 + GenreClassical + KindAAC audio file + Size4860514 + Total Time200177 + Disc Number1 + Disc Count2 + Track Number2 + Track Count21 + Year1995 + Date Modified2006-08-07T15:47:32Z + Date Added2009-10-03T14:55:15Z + Bit Rate192 + Sample Rate44100 + Normalization209 + Artwork Count1 + Persistent ID425C1128DAB9979E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mstislav%20Rostropovich/Bach%20(JS)_%20Cello%20Suites%20%231,%204%20&%205/1-02%20Bach%20(JS)_%20Cello%20Suite%20%231%20In%20G,%20BWV%201007ii%20-%202.%20Allemande.m4a + File Folder Count4 + Library Folder Count1 + + 3370 + + Track ID3370 + NameBach (JS): Cello Suite #1 In G, BWV 1007ii - 3. Courante + ArtistMstislav Rostropovich + ComposerJohann Sebastian Bach (1685-1750) + AlbumBach (JS): Cello Suites #1, 4 & 5 + GenreClassical + KindAAC audio file + Size3762540 + Total Time154457 + Disc Number1 + Disc Count2 + Track Number3 + Track Count21 + Year1995 + Date Modified2006-08-07T15:47:32Z + Date Added2009-10-03T14:55:15Z + Bit Rate192 + Sample Rate44100 + Normalization233 + Artwork Count1 + Persistent ID112E97B0F523D743 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mstislav%20Rostropovich/Bach%20(JS)_%20Cello%20Suites%20%231,%204%20&%205/1-03%20Bach%20(JS)_%20Cello%20Suite%20%231%20In%20G,%20BWV%201007ii%20-%203.%20Courante.m4a + File Folder Count4 + Library Folder Count1 + + 3372 + + Track ID3372 + NameBach (JS): Cello Suite #1 In G, BWV 1007iv - 4. Sarabande + ArtistMstislav Rostropovich + ComposerJohann Sebastian Bach (1685-1750) + AlbumBach (JS): Cello Suites #1, 4 & 5 + GenreClassical + KindAAC audio file + Size4886148 + Total Time201245 + Disc Number1 + Disc Count2 + Track Number4 + Track Count21 + Year1995 + Date Modified2006-08-07T15:47:32Z + Date Added2009-10-03T14:55:15Z + Bit Rate192 + Sample Rate44100 + Normalization241 + Artwork Count1 + Persistent IDBBA20B72419CCB54 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mstislav%20Rostropovich/Bach%20(JS)_%20Cello%20Suites%20%231,%204%20&%205/1-04%20Bach%20(JS)_%20Cello%20Suite%20%231%20In%20G,%20BWV%201007iv%20-%204.%20Sarabande.m4a + File Folder Count4 + Library Folder Count1 + + 3374 + + Track ID3374 + NameBach (JS): Cello Suite #1 In G, BWV 1007v - 5. Menuet 1 + ArtistMstislav Rostropovich + ComposerJohann Sebastian Bach (1685-1750) + AlbumBach (JS): Cello Suites #1, 4 & 5 + GenreClassical + KindAAC audio file + Size1909559 + Total Time77320 + Disc Number1 + Disc Count2 + Track Number5 + Track Count21 + Year1995 + Date Modified2006-08-07T15:47:32Z + Date Added2009-10-03T14:55:16Z + Bit Rate192 + Sample Rate44100 + Normalization99 + Artwork Count1 + Persistent ID044C142062D05588 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mstislav%20Rostropovich/Bach%20(JS)_%20Cello%20Suites%20%231,%204%20&%205/1-05%20Bach%20(JS)_%20Cello%20Suite%20%231%20In%20G,%20BWV%201007v%20-%205.%20Menuet%201.m4a + File Folder Count4 + Library Folder Count1 + + 3376 + + Track ID3376 + NameBach (JS): Cello Suite #1 In G, BWV 1007vi - 6. Menuet 2/1 + ArtistMstislav Rostropovich + ComposerJohann Sebastian Bach (1685-1750) + AlbumBach (JS): Cello Suites #1, 4 & 5 + GenreClassical + KindAAC audio file + Size3007253 + Total Time123017 + Disc Number1 + Disc Count2 + Track Number6 + Track Count21 + Year1995 + Date Modified2006-08-07T15:47:32Z + Date Added2009-10-03T14:55:16Z + Bit Rate192 + Sample Rate44100 + Normalization77 + Artwork Count1 + Persistent ID6E241F695F3208F1 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mstislav%20Rostropovich/Bach%20(JS)_%20Cello%20Suites%20%231,%204%20&%205/1-06%20Bach%20(JS)_%20Cello%20Suite%20%231%20In%20G,%20BWV%201007vi%20-%206.%20Menuet%202_1.m4a + File Folder Count4 + Library Folder Count1 + + 3378 + + Track ID3378 + NameBach (JS): Cello Suite #1 In G, BWV 1007vii - 7. Gigue + ArtistMstislav Rostropovich + ComposerJohann Sebastian Bach (1685-1750) + AlbumBach (JS): Cello Suites #1, 4 & 5 + GenreClassical + KindAAC audio file + Size2281305 + Total Time101376 + Disc Number1 + Disc Count2 + Track Number7 + Track Count21 + Year1995 + Date Modified2006-08-07T15:47:32Z + Date Added2009-10-03T14:55:16Z + Bit Rate192 + Sample Rate44100 + Normalization259 + Artwork Count1 + Persistent IDD635CD95A3F82F2D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mstislav%20Rostropovich/Bach%20(JS)_%20Cello%20Suites%20%231,%204%20&%205/1-07%20Bach%20(JS)_%20Cello%20Suite%20%231%20In%20G,%20BWV%201007vii%20-%207.%20Gigue.m4a + File Folder Count4 + Library Folder Count1 + + 3380 + + Track ID3380 + NameBach (JS): Cello Suite #4 In E Flat, BWV 1010i - 1. Preludium + ArtistMstislav Rostropovich + ComposerJohann Sebastian Bach (1685-1750) + AlbumBach (JS): Cello Suites #1, 4 & 5 + GenreClassical + KindAAC audio file + Size6434116 + Total Time265936 + Disc Number1 + Disc Count2 + Track Number8 + Track Count21 + Year1995 + Date Modified2006-08-07T15:47:32Z + Date Added2009-10-03T14:55:16Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3340458807 + Play Date UTC2009-11-07T11:43:27Z + Normalization691 + Artwork Count1 + Persistent ID88A4F745F5FF23E6 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mstislav%20Rostropovich/Bach%20(JS)_%20Cello%20Suites%20%231,%204%20&%205/1-08%20Bach%20(JS)_%20Cello%20Suite%20%234%20In%20E%20Flat,%20BWV%201010i%20-%201.%20Preludium.m4a + File Folder Count4 + Library Folder Count1 + + 3382 + + Track ID3382 + NameBach (JS): Cello Suite #4 In E Flat, BWV 1010ii - 2. Allemande + ArtistMstislav Rostropovich + ComposerJohann Sebastian Bach (1685-1750) + AlbumBach (JS): Cello Suites #1, 4 & 5 + GenreClassical + KindAAC audio file + Size5172364 + Total Time212739 + Disc Number1 + Disc Count2 + Track Number9 + Track Count21 + Year1995 + Date Modified2006-08-07T15:47:34Z + Date Added2009-10-03T14:55:16Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3340459020 + Play Date UTC2009-11-07T11:47:00Z + Normalization132 + Artwork Count1 + Persistent IDDEA6A497C9D4A605 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mstislav%20Rostropovich/Bach%20(JS)_%20Cello%20Suites%20%231,%204%20&%205/1-09%20Bach%20(JS)_%20Cello%20Suite%20%234%20In%20E%20Flat,%20BWV%201010ii%20-%202.%20Allemande.m4a + File Folder Count4 + Library Folder Count1 + + 3384 + + Track ID3384 + NameBach (JS): Cello Suite #4 In E Flat, BWV 1010iii - 3. Courante + ArtistMstislav Rostropovich + ComposerJohann Sebastian Bach (1685-1750) + AlbumBach (JS): Cello Suites #1, 4 & 5 + GenreClassical + KindAAC audio file + Size5329441 + Total Time219287 + Disc Number1 + Disc Count2 + Track Number10 + Track Count21 + Year1995 + Date Modified2006-08-07T15:47:34Z + Date Added2009-10-03T14:55:16Z + Bit Rate192 + Sample Rate44100 + Normalization316 + Artwork Count1 + Persistent IDD6689BC5055355FA + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mstislav%20Rostropovich/Bach%20(JS)_%20Cello%20Suites%20%231,%204%20&%205/1-10%20Bach%20(JS)_%20Cello%20Suite%20%234%20In%20E%20Flat,%20BWV%201010iii%20-%203.%20Courante.m4a + File Folder Count4 + Library Folder Count1 + + 3386 + + Track ID3386 + NameBach (JS): Cello Suite #4 In E Flat, BWV 1010iv - 4. Sarabande + ArtistMstislav Rostropovich + ComposerJohann Sebastian Bach (1685-1750) + AlbumBach (JS): Cello Suites #1, 4 & 5 + GenreClassical + KindAAC audio file + Size7509144 + Total Time309683 + Disc Number1 + Disc Count2 + Track Number11 + Track Count21 + Year1995 + Date Modified2006-08-07T15:47:34Z + Date Added2009-10-03T14:55:16Z + Bit Rate192 + Sample Rate44100 + Normalization188 + Artwork Count1 + Persistent ID79BDDD401BBBD15A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mstislav%20Rostropovich/Bach%20(JS)_%20Cello%20Suites%20%231,%204%20&%205/1-11%20Bach%20(JS)_%20Cello%20Suite%20%234%20In%20E%20Flat,%20BWV%201010iv%20-%204.%20Sarabande.m4a + File Folder Count4 + Library Folder Count1 + + 3388 + + Track ID3388 + NameBach (JS): Cello Suite #4 In E Flat, BWV 1010v - 5. Bouree 1 + ArtistMstislav Rostropovich + ComposerJohann Sebastian Bach (1685-1750) + AlbumBach (JS): Cello Suites #1, 4 & 5 + GenreClassical + KindAAC audio file + Size4964991 + Total Time204519 + Disc Number1 + Disc Count2 + Track Number12 + Track Count21 + Year1995 + Date Modified2006-08-07T15:47:34Z + Date Added2009-10-03T14:55:16Z + Bit Rate192 + Sample Rate44100 + Normalization253 + Artwork Count1 + Persistent ID59121097558BC267 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mstislav%20Rostropovich/Bach%20(JS)_%20Cello%20Suites%20%231,%204%20&%205/1-12%20Bach%20(JS)_%20Cello%20Suite%20%234%20In%20E%20Flat,%20BWV%201010v%20-%205.%20Bouree%201.m4a + File Folder Count4 + Library Folder Count1 + + 3390 + + Track ID3390 + NameBach (JS): Cello Suite #4 In E Flat, BWV 1010vi - 6. Bouree 2/1 + ArtistMstislav Rostropovich + ComposerJohann Sebastian Bach (1685-1750) + AlbumBach (JS): Cello Suites #1, 4 & 5 + GenreClassical + KindAAC audio file + Size4033533 + Total Time165742 + Disc Number1 + Disc Count2 + Track Number13 + Track Count21 + Year1995 + Date Modified2006-08-07T15:47:34Z + Date Added2009-10-03T14:55:16Z + Bit Rate192 + Sample Rate44100 + Normalization249 + Artwork Count1 + Persistent ID0932809078037F78 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mstislav%20Rostropovich/Bach%20(JS)_%20Cello%20Suites%20%231,%204%20&%205/1-13%20Bach%20(JS)_%20Cello%20Suite%20%234%20In%20E%20Flat,%20BWV%201010vi%20-%206.%20Bouree%202_1.m4a + File Folder Count4 + Library Folder Count1 + + 3392 + + Track ID3392 + NameBach (JS): Cello Suite #4 In E Flat, BWV 1010vii - 7. Gigue + ArtistMstislav Rostropovich + ComposerJohann Sebastian Bach (1685-1750) + AlbumBach (JS): Cello Suites #1, 4 & 5 + GenreClassical + KindAAC audio file + Size3674361 + Total Time159171 + Disc Number1 + Disc Count2 + Track Number14 + Track Count21 + Year1995 + Date Modified2006-08-07T15:47:34Z + Date Added2009-10-03T14:55:16Z + Bit Rate192 + Sample Rate44100 + Normalization237 + Artwork Count1 + Persistent ID8C80DA7035A90058 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mstislav%20Rostropovich/Bach%20(JS)_%20Cello%20Suites%20%231,%204%20&%205/1-14%20Bach%20(JS)_%20Cello%20Suite%20%234%20In%20E%20Flat,%20BWV%201010vii%20-%207.%20Gigue.m4a + File Folder Count4 + Library Folder Count1 + + 3394 + + Track ID3394 + NameBach (JS): Cello Suite #5 In C Minor, BWV 1011i - 1. Prelude + ArtistMstislav Rostropovich + ComposerJohann Sebastian Bach (1685-1750) + AlbumBach (JS): Cello Suites #1, 4 & 5 + GenreClassical + KindAAC audio file + Size10728145 + Total Time443383 + Disc Number1 + Disc Count2 + Track Number15 + Track Count21 + Year1995 + Date Modified2006-08-07T15:47:34Z + Date Added2009-10-03T14:55:16Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3340868555 + Play Date UTC2009-11-12T05:32:35Z + Normalization675 + Artwork Count1 + Persistent IDCD15529B1C76D2AF + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mstislav%20Rostropovich/Bach%20(JS)_%20Cello%20Suites%20%231,%204%20&%205/1-15%20Bach%20(JS)_%20Cello%20Suite%20%235%20In%20C%20Minor,%20BWV%201011i%20-%201.%20Prelude.m4a + File Folder Count4 + Library Folder Count1 + + 3396 + + Track ID3396 + NameBach (JS): Cello Suite #5 In C Minor, BWV 1011ii - 2. Allemande + ArtistMstislav Rostropovich + ComposerJohann Sebastian Bach (1685-1750) + AlbumBach (JS): Cello Suites #1, 4 & 5 + GenreClassical + KindAAC audio file + Size7546943 + Total Time311238 + Disc Number1 + Disc Count2 + Track Number16 + Track Count21 + Year1995 + Date Modified2006-08-07T15:47:34Z + Date Added2009-10-03T14:55:16Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3340868866 + Play Date UTC2009-11-12T05:37:46Z + Normalization535 + Artwork Count1 + Persistent IDAA18FE7312B99648 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mstislav%20Rostropovich/Bach%20(JS)_%20Cello%20Suites%20%231,%204%20&%205/1-16%20Bach%20(JS)_%20Cello%20Suite%20%235%20In%20C%20Minor,%20BWV%201011ii%20-%202.%20Allemande.m4a + File Folder Count4 + Library Folder Count1 + + 3398 + + Track ID3398 + NameBach (JS): Cello Suite #5 In C Minor, BWV 1011iii - 3. Courante + ArtistMstislav Rostropovich + ComposerJohann Sebastian Bach (1685-1750) + AlbumBach (JS): Cello Suites #1, 4 & 5 + GenreClassical + KindAAC audio file + Size3559476 + Total Time146005 + Disc Number1 + Disc Count2 + Track Number17 + Track Count21 + Year1995 + Date Modified2006-08-07T15:47:34Z + Date Added2009-10-03T14:55:17Z + Bit Rate192 + Sample Rate44100 + Normalization436 + Artwork Count1 + Persistent ID4B321C6CDB56D534 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mstislav%20Rostropovich/Bach%20(JS)_%20Cello%20Suites%20%231,%204%20&%205/1-17%20Bach%20(JS)_%20Cello%20Suite%20%235%20In%20C%20Minor,%20BWV%201011iii%20-%203.%20Courante.m4a + File Folder Count4 + Library Folder Count1 + + 3400 + + Track ID3400 + NameBach (JS): Cello Suite #5 In C Minor, BWV 1011iv - 4. Sarabande + ArtistMstislav Rostropovich + ComposerJohann Sebastian Bach (1685-1750) + AlbumBach (JS): Cello Suites #1, 4 & 5 + GenreClassical + KindAAC audio file + Size5622318 + Total Time231478 + Disc Number1 + Disc Count2 + Track Number18 + Track Count21 + Year1995 + Date Modified2006-08-07T15:47:34Z + Date Added2009-10-03T14:55:17Z + Bit Rate192 + Sample Rate44100 + Normalization138 + Artwork Count1 + Persistent ID829B5C647E8AC2C2 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mstislav%20Rostropovich/Bach%20(JS)_%20Cello%20Suites%20%231,%204%20&%205/1-18%20Bach%20(JS)_%20Cello%20Suite%20%235%20In%20C%20Minor,%20BWV%201011iv%20-%204.%20Sarabande.m4a + File Folder Count4 + Library Folder Count1 + + 3402 + + Track ID3402 + NameJ.S. Bach: Cello Suite #5 In C Minor, BWV 1011v - 5. Gavotte 1 + ArtistMstislav Rostropovich + ComposerJohann Sebastian Bach (1685-1750) + AlbumBach (JS): Cello Suites #1, 4 & 5 + GenreClassical + KindAAC audio file + Size4058263 + Total Time166787 + Disc Number1 + Disc Count2 + Track Number19 + Track Count21 + Year1995 + Date Modified2006-08-07T15:47:34Z + Date Added2009-10-03T14:55:17Z + Bit Rate192 + Sample Rate44100 + Normalization453 + Artwork Count1 + Persistent ID34BB33B3AED9054F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mstislav%20Rostropovich/Bach%20(JS)_%20Cello%20Suites%20%231,%204%20&%205/1-19%20J.S.%20Bach_%20Cello%20Suite%20%235%20In%20C%20Minor,%20BWV%201011v%20-%205.%20Gavotte%201.m4a + File Folder Count4 + Library Folder Count1 + + 3404 + + Track ID3404 + NameJ.S. Bach: Cello Suite #5 In C Minor, BWV 1011vi - 6. Gavotte 2/1 + ArtistMstislav Rostropovich + ComposerJohann Sebastian Bach (1685-1750) + AlbumBach (JS): Cello Suites #1, 4 & 5 + GenreClassical + KindAAC audio file + Size4272703 + Total Time175703 + Disc Number1 + Disc Count2 + Track Number20 + Track Count21 + Year1995 + Date Modified2006-08-07T15:47:34Z + Date Added2009-10-03T14:55:17Z + Bit Rate192 + Sample Rate44100 + Normalization325 + Artwork Count1 + Persistent IDEDDC0065972BEECB + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mstislav%20Rostropovich/Bach%20(JS)_%20Cello%20Suites%20%231,%204%20&%205/1-20%20J.S.%20Bach_%20Cello%20Suite%20%235%20In%20C%20Minor,%20BWV%201011vi%20-%206.%20Gavotte%202_1.m4a + File Folder Count4 + Library Folder Count1 + + 3406 + + Track ID3406 + NameBach (JS): Cello Suite #5 In C Minor, BWV 1011vii - 7. Gigue 2/1 + ArtistMstislav Rostropovich + ComposerJohann Sebastian Bach (1685-1750) + AlbumBach (JS): Cello Suites #1, 4 & 5 + GenreClassical + KindAAC audio file + Size3531792 + Total Time145309 + Disc Number1 + Disc Count2 + Track Number21 + Track Count21 + Year1995 + Date Modified2006-08-07T15:47:34Z + Date Added2009-10-03T14:55:17Z + Bit Rate192 + Sample Rate44100 + Normalization180 + Artwork Count1 + Persistent ID5D84CC090EAE630E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mstislav%20Rostropovich/Bach%20(JS)_%20Cello%20Suites%20%231,%204%20&%205/1-21%20Bach%20(JS)_%20Cello%20Suite%20%235%20In%20C%20Minor,%20BWV%201011vii%20-%207.%20Gigue%202_1.m4a + File Folder Count4 + Library Folder Count1 + + 3408 + + Track ID3408 + NameKhoon Chala + ArtistMohit Chauhan + Composera r rahman + AlbumRang De Basanti + GenreSoundtracks + KindAAC audio file + Size4578871 + Total Time189310 + Track Number6 + Date Modified2007-04-09T09:39:04Z + Date Added2009-10-03T14:55:18Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Sort Composerr rahman + Persistent ID78708FC315251019 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mohit%20Chauhan/Rang%20De%20Basanti/06%20Khoon%20Chala.m4a + File Folder Count4 + Library Folder Count1 + + 3410 + + Track ID3410 + NameKhoon Chala + ArtistMohit Chauhan + Composera r rahman + AlbumRang De Basanti + GenreSoundtracks + KindAAC audio file + Size4565757 + Total Time189289 + Track Number6 + Date Modified2007-07-27T06:38:26Z + Date Added2009-10-03T14:55:18Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Sort Composerr rahman + Persistent ID24600C339E3536FE + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mohit%20Chauhan/Rang%20De%20Basanti/06%20Khoon%20Chala%201.m4a + File Folder Count4 + Library Folder Count1 + + 3412 + + Track ID3412 + NameKhoon Chala + ArtistMohit Chauhan + Composera r rahman + AlbumRang De Basanti + GenreSoundtracks + KindAAC audio file + Size4578871 + Total Time189310 + Track Number6 + Date Modified2006-12-27T10:37:04Z + Date Added2009-10-03T14:55:19Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Sort Composerr rahman + Persistent ID3B52E14082948BEE + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mohit%20Chauhan/Rang%20De%20Basanti/06%20Khoon%20Chala%202.m4a + File Folder Count4 + Library Folder Count1 + + 3414 + + Track ID3414 + NameKhoon Chala + ArtistMohit Chauhan + Composera r rahman + AlbumRang De Basanti + GenreSoundtracks + KindAAC audio file + Size4451532 + Total Time189289 + Track Number6 + Date Modified2007-12-02T08:06:16Z + Date Added2009-10-03T14:55:19Z + Bit Rate186 + Sample Rate44100 + Normalization1259 + Sort Composerr rahman + Persistent ID95BBCAE8F9812ADB + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mohit%20Chauhan/Rang%20De%20Basanti/06%20Khoon%20Chala%203.m4a + File Folder Count4 + Library Folder Count1 + + 3416 + + Track ID3416 + NameConcierto De Aranjuez (Adagio) + ArtistMiles Davis + ComposerJ. Rodrigo + AlbumSketches Of Spain + GenreJazz + KindAAC audio file + Size23824643 + Total Time983479 + Disc Number1 + Disc Count1 + Track Number1 + Track Count8 + Year1960 + Date Modified2006-08-08T12:23:14Z + Date Added2009-10-03T14:55:19Z + Bit Rate192 + Sample Rate44100 + Normalization993 + Artwork Count1 + Persistent ID19C6830D987BC48C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Miles%20Davis/Sketches%20Of%20Spain/01%20Concierto%20De%20Aranjuez%20(Adagio).m4a + File Folder Count4 + Library Folder Count1 + + 3418 + + Track ID3418 + NameWill O' The Wisp + ArtistMiles Davis + ComposerM. De Falla + AlbumSketches Of Spain + GenreJazz + KindAAC audio file + Size5581059 + Total Time229156 + Disc Number1 + Disc Count1 + Track Number2 + Track Count8 + Year1960 + Date Modified2006-08-08T12:23:12Z + Date Added2009-10-03T14:55:19Z + Bit Rate192 + Sample Rate44100 + Normalization455 + Artwork Count1 + Persistent IDEB04117A81C607BC + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Miles%20Davis/Sketches%20Of%20Spain/02%20Will%20O'%20The%20Wisp.m4a + File Folder Count4 + Library Folder Count1 + + 3420 + + Track ID3420 + NameThe Pan Piper + ArtistMiles Davis + ComposerGil Evans + AlbumSketches Of Spain + GenreJazz + KindAAC audio file + Size5718761 + Total Time234868 + Disc Number1 + Disc Count1 + Track Number3 + Track Count8 + Year1960 + Date Modified2006-08-08T12:23:12Z + Date Added2009-10-03T14:55:19Z + Bit Rate192 + Sample Rate44100 + Normalization717 + Artwork Count1 + Sort NamePan Piper + Persistent IDD2AB3B7F9BAF3267 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Miles%20Davis/Sketches%20Of%20Spain/03%20The%20Pan%20Piper.m4a + File Folder Count4 + Library Folder Count1 + + 3422 + + Track ID3422 + NameSaeta + ArtistMiles Davis + ComposerGil Evans + AlbumSketches Of Spain + GenreJazz + KindAAC audio file + Size7493460 + Total Time308405 + Disc Number1 + Disc Count1 + Track Number4 + Track Count8 + Year1960 + Date Modified2006-08-08T12:23:12Z + Date Added2009-10-03T14:55:19Z + Bit Rate192 + Sample Rate44100 + Normalization715 + Artwork Count1 + Persistent IDA08E285EE3DE8C70 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Miles%20Davis/Sketches%20Of%20Spain/04%20Saeta.m4a + File Folder Count4 + Library Folder Count1 + + 3424 + + Track ID3424 + NameSolea + ArtistMiles Davis + ComposerGil Evans + AlbumSketches Of Spain + GenreJazz + KindAAC audio file + Size17851104 + Total Time740668 + Disc Number1 + Disc Count1 + Track Number5 + Track Count8 + Year1960 + Date Modified2006-08-08T12:23:12Z + Date Added2009-10-03T14:55:19Z + Bit Rate192 + Sample Rate44100 + Normalization692 + Artwork Count1 + Persistent ID69829D95E0A03FE5 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Miles%20Davis/Sketches%20Of%20Spain/05%20Solea.m4a + File Folder Count4 + Library Folder Count1 + + 3426 + + Track ID3426 + NameSong Of Our Country + ArtistMiles Davis + ComposerGil Evans + AlbumSketches Of Spain + GenreJazz + KindAAC audio file + Size4959047 + Total Time208444 + Disc Number1 + Disc Count1 + Track Number6 + Track Count8 + Year1960 + Date Modified2006-08-08T12:23:10Z + Date Added2009-10-03T14:55:19Z + Bit Rate192 + Sample Rate44100 + Normalization1002 + Artwork Count1 + Persistent ID2BA6F170401A002F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Miles%20Davis/Sketches%20Of%20Spain/06%20Song%20Of%20Our%20Country.m4a + File Folder Count4 + Library Folder Count1 + + 3428 + + Track ID3428 + NameConcierto De Aranjuez (Part One) + ArtistMiles Davis + ComposerJ. Rodrigo + AlbumSketches Of Spain + GenreJazz + KindAAC audio file + Size17597352 + Total Time725947 + Disc Number1 + Disc Count1 + Track Number7 + Track Count8 + Year1960 + Date Modified2006-08-08T12:23:10Z + Date Added2009-10-03T14:55:20Z + Bit Rate192 + Sample Rate44100 + Normalization486 + Artwork Count1 + Persistent IDB88DE8CF31BC1FC9 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Miles%20Davis/Sketches%20Of%20Spain/07%20Concierto%20De%20Aranjuez%20(Part%20One).m4a + File Folder Count4 + Library Folder Count1 + + 3430 + + Track ID3430 + NameConcierto De Aranjuez (Part Two Ending) + ArtistMiles Davis + ComposerJ. Rodrigo + AlbumSketches Of Spain + GenreJazz + KindAAC audio file + Size5191512 + Total Time213180 + Disc Number1 + Disc Count1 + Track Number8 + Track Count8 + Year1960 + Date Modified2006-08-08T12:23:10Z + Date Added2009-10-03T14:55:20Z + Bit Rate192 + Sample Rate44100 + Normalization596 + Artwork Count1 + Persistent ID9127EEBCAEA607B1 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Miles%20Davis/Sketches%20Of%20Spain/08%20Concierto%20De%20Aranjuez%20(Part%20Two%20Ending).m4a + File Folder Count4 + Library Folder Count1 + + 3432 + + Track ID3432 + NameSo What + ArtistMiles Davis + ComposerMiles Davis + AlbumKind Of Blue + GenreJazz + KindAAC audio file + Size13154266 + Total Time545830 + Disc Number1 + Disc Count1 + Track Number1 + Track Count5 + Year1962 + Date Modified2006-07-30T08:32:06Z + Date Added2009-10-03T14:55:20Z + Bit Rate192 + Sample Rate44100 + Play Count2 + Play Date3389791251 + Play Date UTC2011-06-01T11:10:51Z + Skip Count2 + Skip Date2013-09-29T14:08:08Z + Normalization1242 + Artwork Count1 + Persistent IDFE64EBA1AAB2EE39 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Miles%20Davis/Kind%20Of%20Blue/01%20So%20What.m4a + File Folder Count4 + Library Folder Count1 + + 3434 + + Track ID3434 + NameFreddie Freeloader + ArtistMiles Davis + ComposerMiles Davis + AlbumKind Of Blue + GenreJazz + KindAAC audio file + Size13891424 + Total Time575830 + Disc Number1 + Disc Count1 + Track Number2 + Track Count5 + Year1962 + Date Modified2006-07-30T08:32:08Z + Date Added2009-10-03T14:55:20Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3389791827 + Play Date UTC2011-06-01T11:20:27Z + Normalization1255 + Artwork Count1 + Persistent IDCF3BC010B57179FF + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Miles%20Davis/Kind%20Of%20Blue/02%20Freddie%20Freeloader.m4a + File Folder Count4 + Library Folder Count1 + + 3436 + + Track ID3436 + NameBlue In Green + ArtistMiles Davis + ComposerMiles Davis + AlbumKind Of Blue + GenreJazz + KindAAC audio file + Size7924093 + Total Time328653 + Disc Number1 + Disc Count1 + Track Number3 + Track Count5 + Year1962 + Date Modified2006-07-30T08:32:08Z + Date Added2009-10-03T14:55:20Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3389792156 + Play Date UTC2011-06-01T11:25:56Z + Normalization454 + Artwork Count1 + Persistent ID891A0E18014C21E1 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Miles%20Davis/Kind%20Of%20Blue/03%20Blue%20In%20Green.m4a + File Folder Count4 + Library Folder Count1 + + 3438 + + Track ID3438 + NameAll Blues + ArtistMiles Davis + ComposerMiles Davis + AlbumKind Of Blue + GenreJazz + KindAAC audio file + Size16758594 + Total Time693880 + Disc Number1 + Disc Count1 + Track Number4 + Track Count5 + Year1962 + Date Modified2006-07-30T08:32:08Z + Date Added2009-10-03T14:55:20Z + Bit Rate192 + Sample Rate44100 + Normalization652 + Artwork Count1 + Persistent ID0F3E03E505FA78DE + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Miles%20Davis/Kind%20Of%20Blue/04%20All%20Blues.m4a + File Folder Count4 + Library Folder Count1 + + 3440 + + Track ID3440 + NameFlamenco Sketches + ArtistMiles Davis + ComposerMiles Davis + AlbumKind Of Blue + GenreJazz + KindAAC audio file + Size13693719 + Total Time565125 + Disc Number1 + Disc Count1 + Track Number5 + Track Count5 + Year1962 + Date Modified2006-07-30T08:32:08Z + Date Added2009-10-03T14:55:20Z + Bit Rate192 + Sample Rate44100 + Normalization535 + Artwork Count1 + Persistent ID0603BCEA2CD9EAAD + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Miles%20Davis/Kind%20Of%20Blue/05%20Flamenco%20Sketches.m4a + File Folder Count4 + Library Folder Count1 + + 3442 + + Track ID3442 + NameMove + ArtistMiles Davis + ComposerBest, Denzil + AlbumBirth Of The Cool + GenreJazz + KindAAC audio file + Size3719175 + Total Time155270 + Disc Number1 + Disc Count1 + Track Number1 + Track Count12 + Year1949 + Date Modified2006-07-28T02:53:42Z + Date Added2009-10-03T14:55:21Z + Bit Rate192 + Sample Rate44100 + Normalization2320 + Artwork Count1 + Persistent ID9EAE28C7D746D2B1 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Miles%20Davis/Birth%20Of%20The%20Cool/01%20Move.m4a + File Folder Count4 + Library Folder Count1 + + 3444 + + Track ID3444 + NameJeru + ArtistMiles Davis + ComposerMulligan, Gerry + AlbumBirth Of The Cool + GenreJazz + KindAAC audio file + Size4658461 + Total Time195022 + Disc Number1 + Disc Count1 + Track Number2 + Track Count12 + Year1949 + Date Modified2006-07-28T02:53:44Z + Date Added2009-10-03T14:55:21Z + Bit Rate192 + Sample Rate44100 + Normalization1460 + Artwork Count1 + Persistent ID5B465102592013E3 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Miles%20Davis/Birth%20Of%20The%20Cool/02%20Jeru.m4a + File Folder Count4 + Library Folder Count1 + + 3446 + + Track ID3446 + NameMoon Dreams + ArtistMiles Davis + ComposerMacGregor, Chummy/Mercer, Johnny + AlbumBirth Of The Cool + GenreJazz + KindAAC audio file + Size4835138 + Total Time201919 + Disc Number1 + Disc Count1 + Track Number3 + Track Count12 + Year1950 + Date Modified2006-07-28T02:53:44Z + Date Added2009-10-03T14:55:21Z + Bit Rate192 + Sample Rate44100 + Normalization1329 + Artwork Count1 + Persistent IDFA2F148F3BFB84F1 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Miles%20Davis/Birth%20Of%20The%20Cool/03%20Moon%20Dreams.m4a + File Folder Count4 + Library Folder Count1 + + 3448 + + Track ID3448 + NameVenus De Milo + ArtistMiles Davis + ComposerMulligan, Gerry + AlbumBirth Of The Cool + GenreJazz + KindAAC audio file + Size4653919 + Total Time194419 + Disc Number1 + Disc Count1 + Track Number4 + Track Count12 + Year1949 + Date Modified2006-07-28T02:53:46Z + Date Added2009-10-03T14:55:21Z + Bit Rate192 + Sample Rate44100 + Normalization1688 + Artwork Count1 + Persistent ID39B84EDDDB5071F9 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Miles%20Davis/Birth%20Of%20The%20Cool/04%20Venus%20De%20Milo.m4a + File Folder Count4 + Library Folder Count1 + + 3450 + + Track ID3450 + NameBudo + ArtistMiles Davis + ComposerDavis, Miles/Powell, Bud + AlbumBirth Of The Cool + GenreJazz + KindAAC audio file + Size3718117 + Total Time154411 + Disc Number1 + Disc Count1 + Track Number5 + Track Count12 + Year1949 + Date Modified2006-07-28T02:53:46Z + Date Added2009-10-03T14:55:21Z + Bit Rate192 + Sample Rate44100 + Normalization1208 + Artwork Count1 + Persistent ID134D5123B0A42F9A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Miles%20Davis/Birth%20Of%20The%20Cool/05%20Budo.m4a + File Folder Count4 + Library Folder Count1 + + 3452 + + Track ID3452 + NameDeception + ArtistMiles Davis + ComposerDavis, Miles + AlbumBirth Of The Cool + GenreJazz + KindAAC audio file + Size4071754 + Total Time170316 + Disc Number1 + Disc Count1 + Track Number6 + Track Count12 + Year1950 + Date Modified2006-07-28T02:53:46Z + Date Added2009-10-03T14:55:21Z + Bit Rate192 + Sample Rate44100 + Normalization1423 + Artwork Count1 + Persistent ID58CC646C3883719B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Miles%20Davis/Birth%20Of%20The%20Cool/06%20Deception.m4a + File Folder Count4 + Library Folder Count1 + + 3454 + + Track ID3454 + NameGodchild + ArtistMiles Davis + ComposerWallington, George + AlbumBirth Of The Cool + GenreJazz + KindAAC audio file + Size4610792 + Total Time192817 + Disc Number1 + Disc Count1 + Track Number7 + Track Count12 + Year1949 + Date Modified2006-07-28T02:53:48Z + Date Added2009-10-03T14:55:21Z + Bit Rate192 + Sample Rate44100 + Normalization1572 + Artwork Count1 + Persistent ID96391930E2373924 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Miles%20Davis/Birth%20Of%20The%20Cool/07%20Godchild.m4a + File Folder Count4 + Library Folder Count1 + + 3456 + + Track ID3456 + NameBoplicity + ArtistMiles Davis + ComposerHenry, Cleo + AlbumBirth Of The Cool + GenreJazz + KindAAC audio file + Size4364416 + Total Time182577 + Disc Number1 + Disc Count1 + Track Number8 + Track Count12 + Year1949 + Date Modified2006-07-28T02:53:48Z + Date Added2009-10-03T14:55:21Z + Bit Rate192 + Sample Rate44100 + Normalization1233 + Artwork Count1 + Persistent ID76A9F18BF97CB817 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Miles%20Davis/Birth%20Of%20The%20Cool/08%20Boplicity.m4a + File Folder Count4 + Library Folder Count1 + + 3458 + + Track ID3458 + NameRocker + ArtistMiles Davis + ComposerMulligan, Gerry + AlbumBirth Of The Cool + GenreJazz + KindAAC audio file + Size4493813 + Total Time187824 + Disc Number1 + Disc Count1 + Track Number9 + Track Count12 + Year1950 + Date Modified2006-07-28T02:53:50Z + Date Added2009-10-03T14:55:22Z + Bit Rate192 + Sample Rate44100 + Normalization1240 + Artwork Count1 + Persistent IDA9E8B0A3D4D3E1CE + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Miles%20Davis/Birth%20Of%20The%20Cool/09%20Rocker.m4a + File Folder Count4 + Library Folder Count1 + + 3460 + + Track ID3460 + NameIsrael + ArtistMiles Davis + ComposerCarisi, Johnny + AlbumBirth Of The Cool + GenreJazz + KindAAC audio file + Size3297477 + Total Time139527 + Disc Number1 + Disc Count1 + Track Number10 + Track Count12 + Year1949 + Date Modified2006-07-28T02:53:50Z + Date Added2009-10-03T14:55:22Z + Bit Rate192 + Sample Rate44100 + Normalization2263 + Artwork Count1 + Persistent IDCFCBF97D89BDA184 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Miles%20Davis/Birth%20Of%20The%20Cool/10%20Israel.m4a + File Folder Count4 + Library Folder Count1 + + 3462 + + Track ID3462 + NameRouge + ArtistMiles Davis + ComposerLewis, John + AlbumBirth Of The Cool + GenreJazz + KindAAC audio file + Size4711838 + Total Time197321 + Disc Number1 + Disc Count1 + Track Number11 + Track Count12 + Year1949 + Date Modified2006-07-28T02:53:50Z + Date Added2009-10-03T14:55:22Z + Bit Rate192 + Sample Rate44100 + Normalization1833 + Artwork Count1 + Persistent ID61EA36033EC59292 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Miles%20Davis/Birth%20Of%20The%20Cool/11%20Rouge.m4a + File Folder Count4 + Library Folder Count1 + + 3464 + + Track ID3464 + NameDarn That Dream + ArtistMiles Davis + ComposerDe Lange, Eddie/Van Heusen, Jimmy + AlbumBirth Of The Cool + GenreJazz + KindAAC audio file + Size4950416 + Total Time204961 + Disc Number1 + Disc Count1 + Track Number12 + Track Count12 + Year1950 + Date Modified2006-07-28T02:53:52Z + Date Added2009-10-03T14:55:22Z + Bit Rate192 + Sample Rate44100 + Normalization1054 + Artwork Count1 + Persistent ID6C3A2557F6B7021D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Miles%20Davis/Birth%20Of%20The%20Cool/12%20Darn%20That%20Dream.m4a + File Folder Count4 + Library Folder Count1 + + 3466 + + Track ID3466 + NameI Waited For You + ArtistMiles Davis + ComposerGil Fuller + AlbumBallads And Blues + GenreJazz + KindAAC audio file + Size5101013 + Total Time212507 + Disc Number1 + Disc Count1 + Track Number1 + Track Count9 + Year1996 + Date Modified2006-08-13T06:44:12Z + Date Added2009-10-03T14:55:22Z + Bit Rate192 + Sample Rate44100 + Normalization914 + Artwork Count1 + Persistent ID94B93DBBC5618BE3 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Miles%20Davis/Ballads%20And%20Blues/01%20I%20Waited%20For%20You.m4a + File Folder Count4 + Library Folder Count1 + + 3468 + + Track ID3468 + NameYesterdays + ArtistMiles Davis + ComposerJerome Kern/Otto Harbach + AlbumBallads And Blues + GenreJazz + KindAAC audio file + Size5449543 + Total Time226903 + Disc Number1 + Disc Count1 + Track Number2 + Track Count9 + Year1996 + Date Modified2006-08-13T06:44:10Z + Date Added2009-10-03T14:55:22Z + Bit Rate192 + Sample Rate44100 + Normalization685 + Artwork Count1 + Persistent IDB64C23ABCA689459 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Miles%20Davis/Ballads%20And%20Blues/02%20Yesterdays.m4a + File Folder Count4 + Library Folder Count1 + + 3470 + + Track ID3470 + NameOne For Daddy-O + ArtistMiles Davis + ComposerNat Adderley + AlbumBallads And Blues + GenreJazz + KindAAC audio file + Size12236431 + Total Time507749 + Disc Number1 + Disc Count1 + Track Number3 + Track Count9 + Year1996 + Date Modified2006-08-13T06:44:08Z + Date Added2009-10-03T14:55:22Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3437052457 + Play Date UTC2012-11-29T11:17:37Z + Normalization1259 + Artwork Count1 + Persistent ID16EC5DAB667084E8 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Miles%20Davis/Ballads%20And%20Blues/03%20One%20For%20Daddy-O.m4a + File Folder Count4 + Library Folder Count1 + + 3472 + + Track ID3472 + NameMoon Dreams + ArtistMiles Davis + ComposerC. MacGregor/J. Mercer + AlbumBallads And Blues + GenreJazz + KindAAC audio file + Size4805265 + Total Time200084 + Disc Number1 + Disc Count1 + Track Number4 + Track Count9 + Year1996 + Date Modified2006-08-13T06:44:02Z + Date Added2009-10-03T14:55:22Z + Bit Rate192 + Sample Rate44100 + Normalization957 + Artwork Count1 + Persistent IDE3102814F5C22467 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Miles%20Davis/Ballads%20And%20Blues/04%20Moon%20Dreams.m4a + File Folder Count4 + Library Folder Count1 + + 3474 + + Track ID3474 + NameHow Deep Is The Ocean + ArtistMiles Davis + ComposerIrving Berlin + AlbumBallads And Blues + GenreJazz + KindAAC audio file + Size6761677 + Total Time281261 + Disc Number1 + Disc Count1 + Track Number5 + Track Count9 + Year1996 + Date Modified2006-08-13T06:44:00Z + Date Added2009-10-03T14:55:23Z + Bit Rate192 + Sample Rate44100 + Normalization632 + Artwork Count1 + Persistent ID0D6799D4050F30DE + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Miles%20Davis/Ballads%20And%20Blues/05%20How%20Deep%20Is%20The%20Ocean.m4a + File Folder Count4 + Library Folder Count1 + + 3476 + + Track ID3476 + NameWierdo + ArtistMiles Davis + ComposerMiles Davis + AlbumBallads And Blues + GenreJazz + KindAAC audio file + Size6874421 + Total Time286045 + Disc Number1 + Disc Count1 + Track Number6 + Track Count9 + Year1996 + Date Modified2006-08-13T06:43:56Z + Date Added2009-10-03T14:55:23Z + Bit Rate192 + Sample Rate44100 + Normalization963 + Artwork Count1 + Persistent IDFFE6D16606BF3065 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Miles%20Davis/Ballads%20And%20Blues/06%20Wierdo.m4a + File Folder Count4 + Library Folder Count1 + + 3478 + + Track ID3478 + NameEnigma + ArtistMiles Davis + ComposerJ.J. Johnson + AlbumBallads And Blues + GenreJazz + KindAAC audio file + Size4918734 + Total Time204937 + Disc Number1 + Disc Count1 + Track Number7 + Track Count9 + Year1996 + Date Modified2006-08-13T06:43:54Z + Date Added2009-10-03T14:55:23Z + Bit Rate192 + Sample Rate44100 + Normalization1119 + Artwork Count1 + Persistent ID2C2682B5AE1911B6 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Miles%20Davis/Ballads%20And%20Blues/07%20Enigma.m4a + File Folder Count4 + Library Folder Count1 + + 3480 + + Track ID3480 + NameIt Never Entered My Mind + ArtistMiles Davis + ComposerHart/Rodgers + AlbumBallads And Blues + GenreJazz + KindAAC audio file + Size5868598 + Total Time244388 + Disc Number1 + Disc Count1 + Track Number8 + Track Count9 + Year1996 + Date Modified2006-08-13T06:43:52Z + Date Added2009-10-03T14:55:23Z + Bit Rate192 + Sample Rate44100 + Normalization541 + Artwork Count1 + Persistent ID84AD60A201CE61F8 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Miles%20Davis/Ballads%20And%20Blues/08%20It%20Never%20Entered%20My%20Mind.m4a + File Folder Count4 + Library Folder Count1 + + 3482 + + Track ID3482 + NameAutumn Leaves + ArtistMiles Davis + ComposerJacques Prevert/Johnny Mercer/Joseph Kosma + AlbumBallads And Blues + GenreJazz + KindAAC audio file + Size15940147 + Total Time658818 + Disc Number1 + Disc Count1 + Track Number9 + Track Count9 + Year1996 + Date Modified2006-08-13T06:43:48Z + Date Added2009-10-03T14:55:23Z + Bit Rate192 + Sample Rate44100 + Normalization1212 + Artwork Count1 + Persistent ID73B3C1CF9DDBFCF0 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Miles%20Davis/Ballads%20And%20Blues/09%20Autumn%20Leaves.m4a + File Folder Count4 + Library Folder Count1 + + 3484 + + Track ID3484 + NameUdu Chant + ArtistMickey Hart + ComposerSikiru Adepoju, Mickey Hart, Zakir Hussain, Airto Moreira + AlbumPlanet Drum + GenreWorld + KindAAC audio file + Size5394974 + Total Time221145 + Disc Number1 + Disc Count1 + Track Number1 + Track Count13 + Year1991 + Date Modified2006-08-07T15:15:10Z + Date Added2009-10-03T14:55:23Z + Bit Rate192 + Sample Rate44100 + Play Count3 + Play Date3378127219 + Play Date UTC2011-01-17T11:10:19Z + Skip Count1 + Skip Date2014-01-12T15:49:01Z + Normalization1259 + Artwork Count1 + Persistent ID2B032417AE44DC20 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mickey%20Hart/Planet%20Drum/01%20Udu%20Chant.m4a + File Folder Count4 + Library Folder Count1 + + 3486 + + Track ID3486 + NameIsland Groove + ArtistMickey Hart + ComposerSikiru Adepoju, Mickey Hart, Zakir Hussain, Airto Moreira, Babatunde Olatunji + AlbumPlanet Drum + GenreWorld + KindAAC audio file + Size8359244 + Total Time343909 + Disc Number1 + Disc Count1 + Track Number2 + Track Count13 + Year1991 + Date Modified2006-08-07T15:15:10Z + Date Added2009-10-03T14:55:23Z + Bit Rate192 + Sample Rate44100 + Normalization1151 + Artwork Count1 + Persistent ID5915F196039F13B3 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mickey%20Hart/Planet%20Drum/02%20Island%20Groove.m4a + File Folder Count4 + Library Folder Count1 + + 3488 + + Track ID3488 + NameLight Over Shadow + ArtistMickey Hart + ComposerAirto Moreira, Babatunde Olatunji, Flora Purim + AlbumPlanet Drum + GenreWorld + KindAAC audio file + Size5649122 + Total Time231455 + Disc Number1 + Disc Count1 + Track Number3 + Track Count13 + Year1991 + Date Modified2006-08-07T15:15:10Z + Date Added2009-10-03T14:55:23Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Persistent ID5FE92046266D7F16 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mickey%20Hart/Planet%20Drum/03%20Light%20Over%20Shadow.m4a + File Folder Count4 + Library Folder Count1 + + 3490 + + Track ID3490 + NameDance Of The Hunter's Fire + ArtistMickey Hart + ComposerSikiru Adepoju, Airto Moreira, Babatunde Olatunji, Flora Purim, T. H. “Vikku” Vinayakram + AlbumPlanet Drum + GenreWorld + KindAAC audio file + Size4453553 + Total Time181671 + Disc Number1 + Disc Count1 + Track Number4 + Track Count13 + Year1991 + Date Modified2006-08-07T15:15:10Z + Date Added2009-10-03T14:55:24Z + Bit Rate192 + Sample Rate44100 + Normalization1200 + Artwork Count1 + Persistent IDA32F78AE2438D783 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mickey%20Hart/Planet%20Drum/04%20Dance%20Of%20The%20Hunter's%20Fire.m4a + File Folder Count4 + Library Folder Count1 + + 3492 + + Track ID3492 + NameJewe (You Are The One) + ArtistMickey Hart + ComposerBabatunde Olatunji + AlbumPlanet Drum + GenreWorld + KindAAC audio file + Size6024645 + Total Time247082 + Disc Number1 + Disc Count1 + Track Number5 + Track Count13 + Year1991 + Date Modified2006-08-07T15:15:10Z + Date Added2009-10-03T14:55:24Z + Bit Rate192 + Sample Rate44100 + Normalization1159 + Artwork Count1 + Persistent IDA6303BD922A35C82 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mickey%20Hart/Planet%20Drum/05%20Jewe%20(You%20Are%20The%20One).m4a + File Folder Count4 + Library Folder Count1 + + 3494 + + Track ID3494 + NameThe Hunt + ArtistMickey Hart + ComposerSikiru Adepoju, Mickey Hart, Zakir Hussain, Airto Moreira, Babatunde Olatunji, T. H. “Vikku” Vinayakram + AlbumPlanet Drum + GenreWorld + KindAAC audio file + Size5515948 + Total Time225905 + Disc Number1 + Disc Count1 + Track Number6 + Track Count13 + Year1991 + Date Modified2006-08-07T15:15:10Z + Date Added2009-10-03T14:55:24Z + Bit Rate192 + Sample Rate44100 + Normalization1183 + Artwork Count1 + Sort NameHunt + Persistent IDEE7577CD7CC1DFF1 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mickey%20Hart/Planet%20Drum/06%20The%20Hunt.m4a + File Folder Count4 + Library Folder Count1 + + 3496 + + Track ID3496 + NameTemple Caves + ArtistMickey Hart + ComposerSikiru Adepoju, Mickey Hart, Zakir Hussain, Airto Moreira, Babatunde Olatunji + AlbumPlanet Drum + GenreWorld + KindAAC audio file + Size4849679 + Total Time199179 + Disc Number1 + Disc Count1 + Track Number7 + Track Count13 + Year1991 + Date Modified2006-08-07T15:15:10Z + Date Added2009-10-03T14:55:24Z + Bit Rate192 + Sample Rate44100 + Normalization1117 + Artwork Count1 + Persistent ID99E9D0C5A8B2051E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mickey%20Hart/Planet%20Drum/07%20Temple%20Caves.m4a + File Folder Count4 + Library Folder Count1 + + 3498 + + Track ID3498 + NameThe Dancing Sorcerer + ArtistMickey Hart + ComposerZakir Hussain, Airto Moreira + AlbumPlanet Drum + GenreWorld + KindAAC audio file + Size4343732 + Total Time177097 + Disc Number1 + Disc Count1 + Track Number8 + Track Count13 + Year1991 + Date Modified2006-08-07T15:15:12Z + Date Added2009-10-03T14:55:24Z + Bit Rate192 + Sample Rate44100 + Normalization976 + Artwork Count1 + Sort NameDancing Sorcerer + Persistent ID57FFEB75A2BD3F17 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mickey%20Hart/Planet%20Drum/08%20The%20Dancing%20Sorcerer.m4a + File Folder Count4 + Library Folder Count1 + + 3500 + + Track ID3500 + NameBones + ArtistMickey Hart + ComposerMickey Hart, Zakir Hussain, Babatunde Olatunji, Flora Purim + AlbumPlanet Drum + GenreWorld + KindAAC audio file + Size6169530 + Total Time253119 + Disc Number1 + Disc Count1 + Track Number9 + Track Count13 + Year1991 + Date Modified2006-08-07T15:15:12Z + Date Added2009-10-03T14:55:24Z + Bit Rate192 + Sample Rate44100 + Normalization930 + Artwork Count1 + Persistent IDBCD8FF9FB18D6D78 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mickey%20Hart/Planet%20Drum/09%20Bones.m4a + File Folder Count4 + Library Folder Count1 + + 3502 + + Track ID3502 + NameLost River + ArtistMickey Hart + ComposerSikiru Adepoju, Mickey Hart, Zakir Hussain, Airto Moreira, Babatunde Olatunji, Flora Purim + AlbumPlanet Drum + GenreWorld + KindAAC audio file + Size4363201 + Total Time177909 + Disc Number1 + Disc Count1 + Track Number10 + Track Count13 + Year1991 + Date Modified2006-08-07T15:15:12Z + Date Added2009-10-03T14:55:24Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Persistent ID6F04FA6851B75949 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mickey%20Hart/Planet%20Drum/10%20Lost%20River.m4a + File Folder Count4 + Library Folder Count1 + + 3504 + + Track ID3504 + NameEvening Samba + ArtistMickey Hart + ComposerSikiru Adepoju, Mickey Hart, Zakir Hussain, Airto Moreira, Babatunde Olatunji, T. H. “Vikku” Vinayakram + AlbumPlanet Drum + GenreWorld + KindAAC audio file + Size6661701 + Total Time273529 + Disc Number1 + Disc Count1 + Track Number11 + Track Count13 + Year1991 + Date Modified2006-08-07T15:15:12Z + Date Added2009-10-03T14:55:24Z + Bit Rate192 + Sample Rate44100 + Normalization1090 + Artwork Count1 + Persistent ID21676665E3B08FDD + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mickey%20Hart/Planet%20Drum/11%20Evening%20Samba.m4a + File Folder Count4 + Library Folder Count1 + + 3506 + + Track ID3506 + NameIyanu (Surprises) + ArtistMickey Hart + ComposerBabatunde Olatunji + AlbumPlanet Drum + GenreWorld + KindAAC audio file + Size3052699 + Total Time123342 + Disc Number1 + Disc Count1 + Track Number12 + Track Count13 + Year1991 + Date Modified2006-08-07T15:15:12Z + Date Added2009-10-03T14:55:25Z + Bit Rate192 + Sample Rate44100 + Normalization1189 + Artwork Count1 + Persistent IDE27691D2F2EA77AB + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mickey%20Hart/Planet%20Drum/12%20Iyanu%20(Surprises).m4a + File Folder Count4 + Library Folder Count1 + + 3508 + + Track ID3508 + NameMysterious Island + ArtistMickey Hart + ComposerMickey Hart, Airto Moreira, Flora Purim, Jeff Sterling + AlbumPlanet Drum + GenreWorld + KindAAC audio file + Size8363902 + Total Time343886 + Disc Number1 + Disc Count1 + Track Number13 + Track Count13 + Year1991 + Date Modified2006-08-07T15:15:12Z + Date Added2009-10-03T14:55:25Z + Bit Rate192 + Sample Rate44100 + Normalization1000 + Artwork Count1 + Persistent IDC1E7B9E8EE5967EE + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mickey%20Hart/Planet%20Drum/13%20Mysterious%20Island.m4a + File Folder Count4 + Library Folder Count1 + + 3510 + + Track ID3510 + NamePassion Dance + ArtistMcCoy Tyner + ComposerMcCoy Tyner (piano), Joe Henderson (tenor sax), Ron Carter (bass), Elvin Jones (drums) + AlbumThe Real McCoy + GenreJazz + KindAAC audio file + Size18813674 + Total Time528466 + Disc Number1 + Disc Count1 + Track Number1 + Track Count5 + Year1976 + BPM234 + Date Modified2009-06-15T13:45:34Z + Date Added2009-10-03T14:55:26Z + Bit Rate256 + Sample Rate44100 + Normalization1310 + Artwork Count1 + Sort AlbumReal McCoy + Persistent ID788E42F1218B4BB0 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/McCoy%20Tyner/The%20Real%20McCoy/01%20Passion%20Dance.m4a + File Folder Count4 + Library Folder Count1 + + 3512 + + Track ID3512 + NameContemplation + ArtistMcCoy Tyner + ComposerMcCoy Tyner (piano), Joe Henderson (tenor sax), Ron Carter (bass), Elvin Jones (drums) + AlbumThe Real McCoy + GenreJazz + KindAAC audio file + Size19332051 + Total Time555706 + Disc Number1 + Disc Count1 + Track Number2 + Track Count5 + Year1976 + BPM104 + Date Modified2009-06-15T13:45:33Z + Date Added2009-10-03T14:55:26Z + Bit Rate256 + Sample Rate44100 + Normalization891 + Artwork Count1 + Sort AlbumReal McCoy + Persistent IDBDB490A66E0AD7B1 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/McCoy%20Tyner/The%20Real%20McCoy/02%20Contemplation.m4a + File Folder Count4 + Library Folder Count1 + + 3514 + + Track ID3514 + NameFour By Five + ArtistMcCoy Tyner + ComposerMcCoy Tyner (piano), Joe Henderson (tenor sax), Ron Carter (bass), Elvin Jones (drums) + AlbumThe Real McCoy + GenreJazz + KindAAC audio file + Size14184285 + Total Time398493 + Disc Number1 + Disc Count1 + Track Number3 + Track Count5 + Year1976 + BPM270 + Date Modified2009-06-15T13:45:32Z + Date Added2009-10-03T14:55:26Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3435945943 + Play Date UTC2012-11-16T15:55:43Z + Normalization1304 + Artwork Count1 + Sort AlbumReal McCoy + Persistent ID6BB76CCB558E2809 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/McCoy%20Tyner/The%20Real%20McCoy/03%20Four%20By%20Five.m4a + File Folder Count4 + Library Folder Count1 + + 3516 + + Track ID3516 + NameSearch for Peace + ArtistMcCoy Tyner + ComposerMcCoy Tyner (piano), Joe Henderson (tenor sax), Ron Carter (bass), Elvin Jones (drums) + AlbumThe Real McCoy + GenreJazz + KindAAC audio file + Size13637173 + Total Time391840 + Disc Number1 + Disc Count1 + Track Number4 + Track Count5 + Year1976 + BPM58 + Date Modified2009-06-15T13:45:31Z + Date Added2009-10-03T14:55:26Z + Bit Rate256 + Sample Rate44100 + Play Count2 + Play Date3435946335 + Play Date UTC2012-11-16T16:02:15Z + Normalization780 + Artwork Count1 + Sort AlbumReal McCoy + Persistent IDCF6F57746A75DD53 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/McCoy%20Tyner/The%20Real%20McCoy/04%20Search%20for%20Peace.m4a + File Folder Count4 + Library Folder Count1 + + 3518 + + Track ID3518 + NameBlues on the Corner + ArtistMcCoy Tyner + ComposerMcCoy Tyner (piano), Joe Henderson (tenor sax), Ron Carter (bass), Elvin Jones (drums) + AlbumThe Real McCoy + GenreJazz + KindAAC audio file + Size12583958 + Total Time358360 + Disc Number1 + Disc Count1 + Track Number5 + Track Count5 + Year1976 + BPM118 + Date Modified2009-06-15T13:45:31Z + Date Added2009-10-03T14:55:26Z + Bit Rate256 + Sample Rate44100 + Play Count2 + Play Date3435946693 + Play Date UTC2012-11-16T16:08:13Z + Normalization1236 + Artwork Count1 + Sort AlbumReal McCoy + Persistent ID298581B56CDB78FC + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/McCoy%20Tyner/The%20Real%20McCoy/05%20Blues%20on%20the%20Corner.m4a + File Folder Count4 + Library Folder Count1 + + 3520 + + Track ID3520 + NameBellini: Norma: - Casta Diva + ArtistMaria Callas + ComposerBellini, Vincenzo + AlbumMaria Callas, The Legend + GenreClassical + KindAAC audio file + Size8066195 + Total Time338266 + Disc Number1 + Disc Count1 + Track Number1 + Track Count17 + Year2000 + Date Modified2006-08-13T06:43:40Z + Date Added2009-10-03T14:55:29Z + Bit Rate192 + Sample Rate44100 + Normalization974 + Artwork Count1 + Persistent IDC5504160D16B8325 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Maria%20Callas/Maria%20Callas,%20The%20Legend/01%20Bellini_%20Norma_%20-%20Casta%20Diva.m4a + File Folder Count4 + Library Folder Count1 + + 3522 + + Track ID3522 + NameCatalani: La Wally - Ebben? Ne Andro Lontana + ArtistMaria Callas + ComposerCatalani, Alfredo + AlbumMaria Callas, The Legend + GenreClassical + KindAAC audio file + Size7050008 + Total Time295100 + Disc Number1 + Disc Count1 + Track Number2 + Track Count17 + Year2000 + Date Modified2006-08-13T06:43:36Z + Date Added2009-10-03T14:55:29Z + Bit Rate192 + Sample Rate44100 + Normalization1002 + Artwork Count1 + Persistent IDAAAC562C2F374EBB + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Maria%20Callas/Maria%20Callas,%20The%20Legend/02%20Catalani_%20La%20Wally%20-%20Ebben_%20Ne%20Andro%20Lontana.m4a + File Folder Count4 + Library Folder Count1 + + 3524 + + Track ID3524 + NamePuccini: Gianni Schicchi - O Mio Babbinio Caro + ArtistMaria Callas + ComposerPuccini, Giacomo (1858-1924) + AlbumMaria Callas, The Legend + GenreClassical + KindAAC audio file + Size3758979 + Total Time158660 + Disc Number1 + Disc Count1 + Track Number3 + Track Count17 + Year2000 + Date Modified2006-08-13T06:43:34Z + Date Added2009-10-03T14:55:29Z + Bit Rate192 + Sample Rate44100 + Normalization637 + Artwork Count1 + Persistent ID25C62F000F0AF8F8 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Maria%20Callas/Maria%20Callas,%20The%20Legend/03%20Puccini_%20Gianni%20Schicchi%20-%20O%20Mio%20Babbinio%20Caro.m4a + File Folder Count4 + Library Folder Count1 + + 3526 + + Track ID3526 + NameGiordano: Andrea Chénier - La Mamma Morta + ArtistMaria Callas + ComposerGiordano, Umberto + AlbumMaria Callas, The Legend + GenreClassical + KindAAC audio file + Size7092899 + Total Time297353 + Disc Number1 + Disc Count1 + Track Number4 + Track Count17 + Year2000 + Date Modified2006-08-13T06:43:32Z + Date Added2009-10-03T14:55:29Z + Bit Rate192 + Sample Rate44100 + Normalization1092 + Artwork Count1 + Persistent ID880AE6D8EDA3B8B5 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Maria%20Callas/Maria%20Callas,%20The%20Legend/04%20Giordano_%20Andrea%20Che%CC%81nier%20-%20La%20Mamma%20Morta.m4a + File Folder Count4 + Library Folder Count1 + + 3528 + + Track ID3528 + NamePuccini: Tosca - Vissi D'arte + ArtistMaria Callas + ComposerPuccini, Giacomo (1858-1924) + AlbumMaria Callas, The Legend + GenreClassical + KindAAC audio file + Size4711439 + Total Time199411 + Disc Number1 + Disc Count1 + Track Number5 + Track Count17 + Year2000 + Date Modified2006-08-13T06:43:28Z + Date Added2009-10-03T14:55:29Z + Bit Rate192 + Sample Rate44100 + Normalization1411 + Artwork Count1 + Persistent ID049ECD644079E938 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Maria%20Callas/Maria%20Callas,%20The%20Legend/05%20Puccini_%20Tosca%20-%20Vissi%20D'arte.m4a + File Folder Count4 + Library Folder Count1 + + 3530 + + Track ID3530 + NamePuccini: Madama Butterfly - Un Be Di Vedremo + ArtistMaria Callas + ComposerPuccini, Giacomo (1858-1924) + AlbumMaria Callas, The Legend + GenreClassical + KindAAC audio file + Size6642556 + Total Time278312 + Disc Number1 + Disc Count1 + Track Number6 + Track Count17 + Year2000 + Date Modified2006-08-13T06:43:26Z + Date Added2009-10-03T14:55:29Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3471622785 + Play Date UTC2014-01-03T14:09:45Z + Normalization662 + Artwork Count1 + Persistent ID824C19B5BB925A2B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Maria%20Callas/Maria%20Callas,%20The%20Legend/06%20Puccini_%20Madama%20Butterfly%20-%20Un%20Be%20Di%20Vedremo.m4a + File Folder Count4 + Library Folder Count1 + + 3532 + + Track ID3532 + NamePuccini: La Bohème - Si, Mi Chiamano Mimi + ArtistMaria Callas + ComposerPuccini, Giacomo (1858-1924) + AlbumMaria Callas, The Legend + GenreClassical + KindAAC audio file + Size6998530 + Total Time290247 + Disc Number1 + Disc Count1 + Track Number7 + Track Count17 + Year2000 + Date Modified2006-08-13T06:43:24Z + Date Added2009-10-03T14:55:29Z + Bit Rate192 + Sample Rate44100 + Normalization813 + Artwork Count1 + Persistent ID2150805AF39F7A7C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Maria%20Callas/Maria%20Callas,%20The%20Legend/07%20Puccini_%20La%20Bohe%CC%80me%20-%20Si,%20Mi%20Chiamano%20Mimi.m4a + File Folder Count4 + Library Folder Count1 + + 3534 + + Track ID3534 + NamePuccini: La Bohème - Donde Lieta Usci + ArtistMaria Callas + ComposerPuccini, Giacomo (1858-1924) + AlbumMaria Callas, The Legend + GenreClassical + KindAAC audio file + Size4864230 + Total Time205379 + Disc Number1 + Disc Count1 + Track Number8 + Track Count17 + Year2000 + Date Modified2006-08-13T06:43:20Z + Date Added2009-10-03T14:55:29Z + Bit Rate192 + Sample Rate44100 + Normalization819 + Artwork Count1 + Persistent IDED3FCD294CD0F7A7 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Maria%20Callas/Maria%20Callas,%20The%20Legend/08%20Puccini_%20La%20Bohe%CC%80me%20-%20Donde%20Lieta%20Usci.m4a + File Folder Count4 + Library Folder Count1 + + 3536 + + Track ID3536 + NameVerdi: La Traviata - Ah, Fors' E Lui + ArtistMaria Callas + ComposerVerdi, Giuseppe + AlbumMaria Callas, The Legend + GenreClassical + KindAAC audio file + Size4787147 + Total Time200990 + Disc Number1 + Disc Count1 + Track Number9 + Track Count17 + Year2000 + Date Modified2006-08-13T06:43:18Z + Date Added2009-10-03T14:55:29Z + Bit Rate192 + Sample Rate44100 + Normalization743 + Artwork Count1 + Persistent ID36C81821160B9D09 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Maria%20Callas/Maria%20Callas,%20The%20Legend/09%20Verdi_%20La%20Traviata%20-%20Ah,%20Fors'%20E%20Lui.m4a + File Folder Count4 + Library Folder Count1 + + 3538 + + Track ID3538 + NameVerdi: La Traviata - Addio, Del Passato + ArtistMaria Callas + ComposerVerdi, Giuseppe + AlbumMaria Callas, The Legend + GenreClassical + KindAAC audio file + Size4714500 + Total Time198552 + Disc Number1 + Disc Count1 + Track Number10 + Track Count17 + Year2000 + Date Modified2006-08-13T06:43:16Z + Date Added2009-10-03T14:55:30Z + Bit Rate192 + Sample Rate44100 + Normalization619 + Artwork Count1 + Persistent ID610B2FCA13181518 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Maria%20Callas/Maria%20Callas,%20The%20Legend/10%20Verdi_%20La%20Traviata%20-%20Addio,%20Del%20Passato.m4a + File Folder Count4 + Library Folder Count1 + + 3540 + + Track ID3540 + NameGluck: Orphee Et Eurydice - J'ai Perdu Mon Eurydice + ArtistMaria Callas + ComposerGluck, Christoph Willibald (1714-1787) + AlbumMaria Callas, The Legend + GenreClassical + KindAAC audio file + Size6377329 + Total Time266308 + Disc Number1 + Disc Count1 + Track Number11 + Track Count17 + Year2000 + Date Modified2006-08-13T06:43:14Z + Date Added2009-10-03T14:55:30Z + Bit Rate192 + Sample Rate44100 + Normalization690 + Artwork Count1 + Persistent ID88ECA1C1B32F9007 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Maria%20Callas/Maria%20Callas,%20The%20Legend/11%20Gluck_%20Orphee%20Et%20Eurydice%20-%20J'ai%20Perdu%20Mon%20Eurydice.m4a + File Folder Count4 + Library Folder Count1 + + 3542 + + Track ID3542 + NameSaint-Saens: Samson Et Dalila - Mon Coeur S'ouvre A Ta Voix + ArtistMaria Callas + ComposerSaint-Saens, Camille (1835-1921) + AlbumMaria Callas, The Legend + GenreClassical + KindAAC audio file + Size7640540 + Total Time319528 + Disc Number1 + Disc Count1 + Track Number12 + Track Count17 + Year2000 + Date Modified2006-08-13T06:43:12Z + Date Added2009-10-03T14:55:30Z + Bit Rate192 + Sample Rate44100 + Normalization985 + Artwork Count1 + Persistent ID26FB90C871D79C0A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Maria%20Callas/Maria%20Callas,%20The%20Legend/12%20Saint-Saens_%20Samson%20Et%20Dalila%20-%20Mon%20Coeur%20S'ouvre%20A%20Ta%20Voix.m4a + File Folder Count4 + Library Folder Count1 + + 3544 + + Track ID3544 + NameBizet: Carmen - L'amour Est Un Oisseau Rebelle (Habanera) + ArtistMaria Callas + ComposerBizet, George + AlbumMaria Callas, The Legend + GenreClassical + KindAAC audio file + Size6278747 + Total Time263684 + Disc Number1 + Disc Count1 + Track Number13 + Track Count17 + Year2000 + Date Modified2006-08-13T06:43:08Z + Date Added2009-10-03T14:55:30Z + Bit Rate192 + Sample Rate44100 + Normalization670 + Artwork Count1 + Persistent ID1F05F60F1129C1DD + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Maria%20Callas/Maria%20Callas,%20The%20Legend/13%20Bizet_%20Carmen%20-%20L'amour%20Est%20Un%20Oisseau%20Rebelle%20(Habanera).m4a + File Folder Count4 + Library Folder Count1 + + 3546 + + Track ID3546 + NameBizet: Carmen - Pres Des Ramparts De Seville (Seguidilla) + ArtistMaria Callas + ComposerBizet, George + AlbumMaria Callas, The Legend + GenreClassical + KindAAC audio file + Size6598984 + Total Time276710 + Disc Number1 + Disc Count1 + Track Number14 + Track Count17 + Year2000 + Date Modified2006-08-13T06:43:04Z + Date Added2009-10-03T14:55:30Z + Bit Rate192 + Sample Rate44100 + Normalization698 + Artwork Count1 + Persistent ID73C1E37113A18E22 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Maria%20Callas/Maria%20Callas,%20The%20Legend/14%20Bizet_%20Carmen%20-%20Pres%20Des%20Ramparts%20De%20Seville%20(Seguidilla).m4a + File Folder Count4 + Library Folder Count1 + + 3548 + + Track ID3548 + NameBizet: Carmen - Les Tringles Des Sistres Tintaient (Gypsy Song) + ArtistMaria Callas + ComposerBizet, George + AlbumMaria Callas, The Legend + GenreClassical + KindAAC audio file + Size6266434 + Total Time263591 + Disc Number1 + Disc Count1 + Track Number15 + Track Count17 + Year2000 + Date Modified2006-08-13T06:43:02Z + Date Added2009-10-03T14:55:30Z + Bit Rate192 + Sample Rate44100 + Normalization1225 + Artwork Count1 + Persistent ID730A7F33516B9BF0 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Maria%20Callas/Maria%20Callas,%20The%20Legend/15%20Bizet_%20Carmen%20-%20Les%20Tringles%20Des%20Sistres%20Tintaient%20(Gypsy%20Song).m4a + File Folder Count4 + Library Folder Count1 + + 3550 + + Track ID3550 + NameRossini: Il Barbiere Di Siviglia - Una Voce Poco Fa + ArtistMaria Callas + ComposerRossini, Giacchino + AlbumMaria Callas, The Legend + GenreClassical + KindAAC audio file + Size9202784 + Total Time385240 + Disc Number1 + Disc Count1 + Track Number16 + Track Count17 + Year2000 + Date Modified2006-08-13T06:43:00Z + Date Added2009-10-03T14:55:31Z + Bit Rate192 + Sample Rate44100 + Normalization1164 + Artwork Count1 + Persistent ID0259834C70CE1FA8 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Maria%20Callas/Maria%20Callas,%20The%20Legend/16%20Rossini_%20Il%20Barbiere%20Di%20Siviglia%20-%20Una%20Voce%20Poco%20Fa.m4a + File Folder Count4 + Library Folder Count1 + + 3552 + + Track ID3552 + NameDonizetti: Lucia Di Lammermoor - Spargi D'amaro Pianto + ArtistMaria Callas + ComposerDonizetti, Gaetano + AlbumMaria Callas, The Legend + GenreClassical + KindAAC audio file + Size5608126 + Total Time233289 + Disc Number1 + Disc Count1 + Track Number17 + Track Count17 + Year2000 + Date Modified2006-08-13T06:42:56Z + Date Added2009-10-03T14:55:31Z + Bit Rate192 + Sample Rate44100 + Normalization1323 + Artwork Count1 + Persistent ID853CC8DE372C5FA7 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Maria%20Callas/Maria%20Callas,%20The%20Legend/17%20Donizetti_%20Lucia%20Di%20Lammermoor%20-%20Spargi%20D'amaro%20Pianto.m4a + File Folder Count4 + Library Folder Count1 + + 3554 + + Track ID3554 + NameMeeting Of The Spirits + ArtistMahavishnu Orchestra + ComposerJohn McLaughlin + AlbumInner Mounting Flame + GenreJazz + KindAAC audio file + Size9997732 + Total Time413638 + Disc Number1 + Disc Count1 + Track Number1 + Track Count8 + Year1971 + BPM160 + Date Modified2006-08-19T12:45:04Z + Date Added2009-10-03T14:55:31Z + Bit Rate192 + Sample Rate44100 + Normalization3092 + Artwork Count1 + Persistent IDD470CDF852E04B4A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mahavishnu%20Orchestra/Inner%20Mounting%20Flame/01%20Meeting%20Of%20The%20Spirits.m4a + File Folder Count4 + Library Folder Count1 + + 3556 + + Track ID3556 + NameDawn + ArtistMahavishnu Orchestra + ComposerJohn McLaughlin + AlbumInner Mounting Flame + GenreJazz + KindAAC audio file + Size7537576 + Total Time311842 + Disc Number1 + Disc Count1 + Track Number2 + Track Count8 + Year1971 + BPM160 + Date Modified2006-08-19T12:45:02Z + Date Added2009-10-03T14:55:31Z + Bit Rate192 + Sample Rate44100 + Normalization1879 + Artwork Count1 + Persistent IDEB9912D1D822CB58 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mahavishnu%20Orchestra/Inner%20Mounting%20Flame/02%20Dawn.m4a + File Folder Count4 + Library Folder Count1 + + 3558 + + Track ID3558 + NameThe Noonward Race + ArtistMahavishnu Orchestra + ComposerJohn McLaughlin + AlbumInner Mounting Flame + GenreJazz + KindAAC audio file + Size9423236 + Total Time389768 + Disc Number1 + Disc Count1 + Track Number3 + Track Count8 + Year1971 + BPM160 + Date Modified2006-08-19T12:45:02Z + Date Added2009-10-03T14:55:31Z + Bit Rate192 + Sample Rate44100 + Normalization4898 + Artwork Count1 + Sort NameNoonward Race + Persistent ID9B21E9264690D54E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mahavishnu%20Orchestra/Inner%20Mounting%20Flame/03%20The%20Noonward%20Race.m4a + File Folder Count4 + Library Folder Count1 + + 3560 + + Track ID3560 + NameA Lotus On Irish Streams + ArtistMahavishnu Orchestra + ComposerJohn McLaughlin + AlbumInner Mounting Flame + GenreJazz + KindAAC audio file + Size8251231 + Total Time341355 + Disc Number1 + Disc Count1 + Track Number4 + Track Count8 + Year1971 + BPM160 + Date Modified2006-08-19T12:45:02Z + Date Added2009-10-03T14:55:31Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Sort NameLotus On Irish Streams + Persistent ID4CDA3111EAE66C61 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mahavishnu%20Orchestra/Inner%20Mounting%20Flame/04%20A%20Lotus%20On%20Irish%20Streams.m4a + File Folder Count4 + Library Folder Count1 + + 3562 + + Track ID3562 + NameVital Transformation + ArtistMahavishnu Orchestra + ComposerJohn McLaughlin + AlbumInner Mounting Flame + GenreJazz + KindAAC audio file + Size9127640 + Total Time377578 + Disc Number1 + Disc Count1 + Track Number5 + Track Count8 + Year1971 + BPM160 + Date Modified2006-08-19T12:45:00Z + Date Added2009-10-03T14:55:31Z + Bit Rate192 + Sample Rate44100 + Normalization3714 + Artwork Count1 + Persistent ID1C917436321154B4 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mahavishnu%20Orchestra/Inner%20Mounting%20Flame/05%20Vital%20Transformation.m4a + File Folder Count4 + Library Folder Count1 + + 3564 + + Track ID3564 + NameThe Dance Of Maya + ArtistMahavishnu Orchestra + ComposerJohn McLaughlin + AlbumInner Mounting Flame + GenreJazz + KindAAC audio file + Size10601168 + Total Time438437 + Disc Number1 + Disc Count1 + Track Number6 + Track Count8 + Year1971 + BPM160 + Date Modified2006-08-19T12:45:00Z + Date Added2009-10-03T14:55:32Z + Bit Rate192 + Sample Rate44100 + Normalization3339 + Artwork Count1 + Sort NameDance Of Maya + Persistent ID337218E2F13B304C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mahavishnu%20Orchestra/Inner%20Mounting%20Flame/06%20The%20Dance%20Of%20Maya.m4a + File Folder Count4 + Library Folder Count1 + + 3566 + + Track ID3566 + NameYou Know, You Know + ArtistMahavishnu Orchestra + ComposerJohn McLaughlin + AlbumInner Mounting Flame + GenreJazz + KindAAC audio file + Size7477020 + Total Time309334 + Disc Number1 + Disc Count1 + Track Number7 + Track Count8 + Year1971 + BPM160 + Date Modified2006-08-19T12:45:00Z + Date Added2009-10-03T14:55:32Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Persistent ID10BC24760AAB702D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mahavishnu%20Orchestra/Inner%20Mounting%20Flame/07%20You%20Know,%20You%20Know.m4a + File Folder Count4 + Library Folder Count1 + + 3568 + + Track ID3568 + NameAwakening + ArtistMahavishnu Orchestra + ComposerJohn McLaughlin + AlbumInner Mounting Flame + GenreJazz + KindAAC audio file + Size5172514 + Total Time213111 + Disc Number1 + Disc Count1 + Track Number8 + Track Count8 + Year1971 + BPM160 + Date Modified2006-08-19T12:45:00Z + Date Added2009-10-03T14:55:32Z + Bit Rate192 + Sample Rate44100 + Normalization4832 + Artwork Count1 + Persistent ID943C17DD027A5B95 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mahavishnu%20Orchestra/Inner%20Mounting%20Flame/08%20Awakening.m4a + File Folder Count4 + Library Folder Count1 + + 3570 + + Track ID3570 + NameTu Bin Bataye + ArtistMadhushree, Naresh Iyer + Composera r rahman + AlbumRang De Basanti + GenreSoundtracks + KindAAC audio file + Size8612031 + Total Time357655 + Track Number4 + Date Modified2006-12-29T04:15:38Z + Date Added2009-10-03T14:55:32Z + Bit Rate192 + Sample Rate44100 + Normalization2101 + Sort Composerr rahman + Persistent ID623A1B768EAE0420 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Madhushree,%20Naresh%20Iyer/Rang%20De%20Basanti/04%20Tu%20Bin%20Bataye.m4a + File Folder Count4 + Library Folder Count1 + + 3572 + + Track ID3572 + NameTu Bin Bataye + ArtistMadhushree, Naresh Iyer + Composera r rahman + AlbumRang De Basanti + GenreSoundtracks + KindAAC audio file + Size8612023 + Total Time357633 + Track Number4 + Date Modified2007-07-27T06:37:52Z + Date Added2009-10-03T14:55:32Z + Bit Rate192 + Sample Rate44100 + Normalization2101 + Sort Composerr rahman + Persistent ID40723823614274F0 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Madhushree,%20Naresh%20Iyer/Rang%20De%20Basanti/04%20Tu%20Bin%20Bataye%201.m4a + File Folder Count4 + Library Folder Count1 + + 3574 + + Track ID3574 + NameTu Bin Bataye + ArtistMadhushree, Naresh Iyer + Composera r rahman + AlbumRang De Basanti + GenreSoundtracks + KindAAC audio file + Size8658317 + Total Time357655 + Track Number4 + Date Modified2007-04-09T08:52:46Z + Date Added2009-10-03T14:55:32Z + Bit Rate192 + Sample Rate44100 + Normalization2101 + Artwork Count1 + Sort Composerr rahman + Persistent ID2A7035A2968DE122 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Madhushree,%20Naresh%20Iyer/Rang%20De%20Basanti/04%20Tu%20Bin%20Bataye%202.m4a + File Folder Count4 + Library Folder Count1 + + 3576 + + Track ID3576 + NameTu Bin Bataye + ArtistMadhushree, Naresh Iyer + Composera r rahman + AlbumRang De Basanti + GenreSoundtracks + KindAAC audio file + Size8459995 + Total Time357633 + Track Number4 + Date Modified2007-12-02T08:05:41Z + Date Added2009-10-03T14:55:32Z + Bit Rate187 + Sample Rate44100 + Normalization2101 + Sort Composerr rahman + Persistent IDA298F0A31CA93767 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Madhushree,%20Naresh%20Iyer/Rang%20De%20Basanti/04%20Tu%20Bin%20Bataye%203.m4a + File Folder Count4 + Library Folder Count1 + + 3578 + + Track ID3578 + NameSri Maha Ganapathi (Raga: Gowla Tala: Misra Chapu) + ArtistM.S. Subbulakshmi + ComposerDikshitar + AlbumImmortal Legends Vol. 2 + GenreCarnatic + KindAAC audio file + Size10271053 + Total Time427663 + Disc Number2 + Disc Count5 + Track Number1 + Track Count7 + Date Modified2007-12-17T11:09:15Z + Date Added2009-10-03T14:55:34Z + Bit Rate192 + Sample Rate44100 + CommentsRaga: Gowla Tala: Misra Chapu + Normalization2087 + Persistent IDF7BBB6A9D11FB544 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/M.S.%20Subbulakshmi/Immortal%20Legends%20Vol.%202/2-01%20Sri%20Maha%20Ganapathi%20(Raga_%20Gowla%20Tala_%20Misra%20Chapu).m4a + File Folder Count4 + Library Folder Count1 + + 3580 + + Track ID3580 + NameSobillu Saptaswara (Raga: Jaganmohini Tala: Roopakam) + ArtistM.S. Subbulakshmi + ComposerThyagaraja + AlbumImmortal Legends Vol. 2 + GenreCarnatic + KindAAC audio file + Size8326071 + Total Time346370 + Disc Number2 + Disc Count5 + Track Number2 + Track Count7 + Date Modified2007-12-17T11:09:53Z + Date Added2009-10-03T14:55:34Z + Bit Rate192 + Sample Rate44100 + CommentsRaga: Jaganmohini Tala: Roopakam + Normalization2466 + Persistent ID41A065CDC177FDB6 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/M.S.%20Subbulakshmi/Immortal%20Legends%20Vol.%202/2-02%20Sobillu%20Saptaswara%20(Raga_%20Jaganmohini%20Tala_%20Roopakam).m4a + File Folder Count4 + Library Folder Count1 + + 3582 + + Track ID3582 + NameParama Purusha (Raga: Shanmugapriya Tala: Roopakam) + ArtistM.S. Subbulakshmi + ComposerAnnamacharya + AlbumImmortal Legends Vol. 2 + GenreCarnatic + KindAAC audio file + Size16810240 + Total Time697038 + Disc Number2 + Disc Count5 + Track Number3 + Track Count7 + Date Modified2007-12-17T11:10:17Z + Date Added2009-10-03T14:55:35Z + Bit Rate192 + Sample Rate44100 + CommentsRaga: Shanmugapriya Tala: Roopakam + Normalization1809 + Persistent IDFC1D3CFF597B7455 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/M.S.%20Subbulakshmi/Immortal%20Legends%20Vol.%202/2-03%20Parama%20Purusha%20(Raga_%20Shanmugapriya%20Tala_%20Roopakam).m4a + File Folder Count4 + Library Folder Count1 + + 3584 + + Track ID3584 + NameNarayana Ninna (Raga: Suddha dhanyasi Tala: Kanda Chapu) + ArtistM.S. Subbulakshmi + ComposerPurandara Dasa + AlbumImmortal Legends Vol. 2 + GenreCarnatic + KindAAC audio file + Size7529406 + Total Time314048 + Disc Number2 + Disc Count5 + Track Number4 + Track Count7 + Date Modified2007-12-17T11:10:55Z + Date Added2009-10-03T14:55:35Z + Bit Rate192 + Sample Rate44100 + CommentsRaga: Suddha dhanyasi Tala: Kanda Chapu + Normalization3282 + Persistent IDC99F69174534EEFA + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/M.S.%20Subbulakshmi/Immortal%20Legends%20Vol.%202/2-04%20Narayana%20Ninna%20(Raga_%20Suddha%20dhanyasi%20Tala_%20Kanda%20Chapu).m4a + File Folder Count4 + Library Folder Count1 + + 3586 + + Track ID3586 + NameO Ranga Sayee (Raga: Khamboji Tala: Adi) + ArtistM.S. Subbulakshmi + ComposerThyagaraja + AlbumImmortal Legends Vol. 2 + GenreCarnatic + KindAAC audio file + Size48583592 + Total Time2010057 + Disc Number2 + Disc Count5 + Track Number5 + Track Count7 + Date Modified2007-12-17T11:11:16Z + Date Added2009-10-03T14:55:35Z + Bit Rate192 + Sample Rate44100 + CommentsRaga: Khamboji Tala: Adi + Normalization2448 + Persistent IDA08885342D18C553 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/M.S.%20Subbulakshmi/Immortal%20Legends%20Vol.%202/2-05%20O%20Ranga%20Sayee%20(Raga_%20Khamboji%20Tala_%20Adi).m4a + File Folder Count4 + Library Folder Count1 + + 3588 + + Track ID3588 + NameRama Bhaja + ArtistM.S. Subbulakshmi + ComposerGuru Nanak + AlbumImmortal Legends Vol. 2 + GenreCarnatic + KindAAC audio file + Size4527584 + Total Time188823 + Disc Number2 + Disc Count5 + Track Number6 + Track Count7 + Date Modified2007-12-17T11:11:39Z + Date Added2009-10-03T14:55:35Z + Bit Rate192 + Sample Rate44100 + Normalization2065 + Persistent ID484B234B66B50104 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/M.S.%20Subbulakshmi/Immortal%20Legends%20Vol.%202/2-06%20Rama%20Bhaja.m4a + File Folder Count4 + Library Folder Count1 + + 3590 + + Track ID3590 + NameHey Govinda + ArtistM.S. Subbulakshmi + ComposerIndra Devi + AlbumImmortal Legends Vol. 2 + GenreCarnatic + KindAAC audio file + Size6016046 + Total Time249984 + Disc Number2 + Disc Count5 + Track Number7 + Track Count7 + Date Modified2007-12-17T11:11:48Z + Date Added2009-10-03T14:55:35Z + Bit Rate192 + Sample Rate44100 + Normalization4099 + Persistent IDB7A73E3E29530558 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/M.S.%20Subbulakshmi/Immortal%20Legends%20Vol.%202/2-07%20Hey%20Govinda.m4a + File Folder Count4 + Library Folder Count1 + + 3592 + + Track ID3592 + NameMack The Knife + ArtistLouis Armstrong + AlbumLouis Armstrong's Greatest Hits + GenreEasy Listening + KindAAC audio file + Size4895919 + Total Time204334 + Disc Number1 + Disc Count1 + Track Number1 + Track Count11 + Year1997 + Date Modified2006-08-07T09:04:22Z + Date Added2009-10-03T14:55:35Z + Bit Rate192 + Sample Rate44100 + Play Count5 + Play Date3457109264 + Play Date UTC2013-07-19T14:37:44Z + Normalization2695 + Artwork Count1 + Persistent IDC1A864E9E0617F9E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Louis%20Armstrong/Louis%20Armstrong's%20Greatest%20Hits/01%20Mack%20The%20Knife.m4a + File Folder Count4 + Library Folder Count1 + + 3594 + + Track ID3594 + NameBack O'Town Blues + ArtistLouis Armstrong + AlbumLouis Armstrong's Greatest Hits + GenreEasy Listening + KindAAC audio file + Size5530304 + Total Time230340 + Disc Number1 + Disc Count1 + Track Number2 + Track Count11 + Year1997 + Date Modified2006-08-07T09:04:22Z + Date Added2009-10-03T14:55:35Z + Bit Rate192 + Sample Rate44100 + Normalization3774 + Artwork Count1 + Persistent IDB90947B7E47FBE5A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Louis%20Armstrong/Louis%20Armstrong's%20Greatest%20Hits/02%20Back%20O'Town%20Blues.m4a + File Folder Count4 + Library Folder Count1 + + 3596 + + Track ID3596 + Name(What Did I Do To Be So) Black And Blue + ArtistLouis Armstrong + AlbumLouis Armstrong's Greatest Hits + GenreEasy Listening + KindAAC audio file + Size6722059 + Total Time280007 + Disc Number1 + Disc Count1 + Track Number3 + Track Count11 + Year1997 + Date Modified2006-08-07T09:04:20Z + Date Added2009-10-03T14:55:35Z + Bit Rate192 + Sample Rate44100 + Normalization1724 + Artwork Count1 + Persistent IDDB6C7EAF265E0D30 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Louis%20Armstrong/Louis%20Armstrong's%20Greatest%20Hits/03%20(What%20Did%20I%20Do%20To%20Be%20So)%20Black%20And%20Blue.m4a + File Folder Count4 + Library Folder Count1 + + 3598 + + Track ID3598 + NameAin't Misbehavin' + ArtistLouis Armstrong + AlbumLouis Armstrong's Greatest Hits + GenreEasy Listening + KindAAC audio file + Size5814621 + Total Time242345 + Disc Number1 + Disc Count1 + Track Number4 + Track Count11 + Year1997 + Date Modified2006-08-07T09:04:20Z + Date Added2009-10-03T14:55:36Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3423063457 + Play Date UTC2012-06-20T13:27:37Z + Normalization2180 + Artwork Count1 + Persistent ID69A1876B7DF486BE + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Louis%20Armstrong/Louis%20Armstrong's%20Greatest%20Hits/04%20Ain't%20Misbehavin'.m4a + File Folder Count4 + Library Folder Count1 + + 3600 + + Track ID3600 + NameBasin Street Blues + ArtistLouis Armstrong + AlbumLouis Armstrong's Greatest Hits + GenreEasy Listening + KindAAC audio file + Size8249081 + Total Time343003 + Disc Number1 + Disc Count1 + Track Number5 + Track Count11 + Year1997 + Date Modified2006-08-07T09:04:20Z + Date Added2009-10-03T14:55:36Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3423063215 + Play Date UTC2012-06-20T13:23:35Z + Normalization1911 + Artwork Count1 + Persistent ID794C532FC65F8A65 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Louis%20Armstrong/Louis%20Armstrong's%20Greatest%20Hits/05%20Basin%20Street%20Blues.m4a + File Folder Count4 + Library Folder Count1 + + 3602 + + Track ID3602 + NameCabaret + ArtistLouis Armstrong + AlbumLouis Armstrong's Greatest Hits + GenreEasy Listening + KindAAC audio file + Size4592280 + Total Time191679 + Disc Number1 + Disc Count1 + Track Number6 + Track Count11 + Year1997 + Date Modified2006-08-07T09:04:20Z + Date Added2009-10-03T14:55:36Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3423062872 + Play Date UTC2012-06-20T13:17:52Z + Normalization1673 + Artwork Count1 + Persistent ID47656BEDA5D4918D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Louis%20Armstrong/Louis%20Armstrong's%20Greatest%20Hits/06%20Cabaret.m4a + File Folder Count4 + Library Folder Count1 + + 3604 + + Track ID3604 + NameWhen It's Sleepytime Down South + ArtistLouis Armstrong + AlbumLouis Armstrong's Greatest Hits + GenreEasy Listening + KindAAC audio file + Size4865633 + Total Time203242 + Disc Number1 + Disc Count1 + Track Number7 + Track Count11 + Year1997 + Date Modified2006-08-07T09:04:20Z + Date Added2009-10-03T14:55:36Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3423063865 + Play Date UTC2012-06-20T13:34:25Z + Normalization3169 + Artwork Count1 + Persistent ID43078B7B19EC8BA9 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Louis%20Armstrong/Louis%20Armstrong's%20Greatest%20Hits/07%20When%20It's%20Sleepytime%20Down%20South.m4a + File Folder Count4 + Library Folder Count1 + + 3606 + + Track ID3606 + NameAll Of Me + ArtistLouis Armstrong + AlbumLouis Armstrong's Greatest Hits + GenreEasy Listening + KindAAC audio file + Size6133608 + Total Time255719 + Disc Number1 + Disc Count1 + Track Number8 + Track Count11 + Year1997 + Date Modified2006-08-07T09:04:20Z + Date Added2009-10-03T14:55:36Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3422284920 + Play Date UTC2012-06-11T13:12:00Z + Normalization2846 + Artwork Count1 + Persistent ID729CE173D9CC77B9 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Louis%20Armstrong/Louis%20Armstrong's%20Greatest%20Hits/08%20All%20Of%20Me.m4a + File Folder Count4 + Library Folder Count1 + + 3608 + + Track ID3608 + NameWest End Blues + ArtistLouis Armstrong + AlbumLouis Armstrong's Greatest Hits + GenreEasy Listening + KindAAC audio file + Size6215611 + Total Time259086 + Disc Number1 + Disc Count1 + Track Number9 + Track Count11 + Year1997 + Date Modified2006-08-07T09:04:20Z + Date Added2009-10-03T14:55:36Z + Bit Rate192 + Sample Rate44100 + Normalization2911 + Artwork Count1 + Persistent ID60D1674F72BC46F9 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Louis%20Armstrong/Louis%20Armstrong's%20Greatest%20Hits/09%20West%20End%20Blues.m4a + File Folder Count4 + Library Folder Count1 + + 3610 + + Track ID3610 + NameStruttin' With Some Barbecue + ArtistLouis Armstrong + AlbumLouis Armstrong's Greatest Hits + GenreEasy Listening + KindAAC audio file + Size7654760 + Total Time318669 + Disc Number1 + Disc Count1 + Track Number10 + Track Count11 + Year1997 + Date Modified2006-08-07T09:04:20Z + Date Added2009-10-03T14:55:36Z + Bit Rate192 + Sample Rate44100 + Normalization1528 + Artwork Count1 + Persistent ID7A47B67FCD5405E4 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Louis%20Armstrong/Louis%20Armstrong's%20Greatest%20Hits/10%20Struttin'%20With%20Some%20Barbecue.m4a + File Folder Count4 + Library Folder Count1 + + 3612 + + Track ID3612 + NameIndiana + ArtistLouis Armstrong + AlbumLouis Armstrong's Greatest Hits + GenreEasy Listening + KindAAC audio file + Size5554235 + Total Time229945 + Disc Number1 + Disc Count1 + Track Number11 + Track Count11 + Year1997 + Date Modified2006-08-07T09:04:20Z + Date Added2009-10-03T14:55:36Z + Bit Rate192 + Sample Rate44100 + Normalization7242 + Artwork Count1 + Persistent ID199F1C70C297FCA1 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Louis%20Armstrong/Louis%20Armstrong's%20Greatest%20Hits/11%20Indiana.m4a + File Folder Count4 + Library Folder Count1 + + 3614 + + Track ID3614 + NamePrologue + ArtistLoreena McKennitt + ComposerLoreena McKennitt + AlbumThe Book Of Secrets + GenreNew Age + KindAAC audio file + Size6377436 + Total Time265240 + Disc Number1 + Disc Count1 + Track Number1 + Track Count8 + Year1997 + Date Modified2006-07-31T03:38:30Z + Date Added2009-10-03T14:55:37Z + Bit Rate192 + Sample Rate44100 + Play Count2 + Play Date3389617969 + Play Date UTC2011-05-30T11:02:49Z + Normalization1061 + Artwork Count1 + Sort AlbumBook Of Secrets + Persistent ID885F82670F5BFB3C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Loreena%20McKennitt/The%20Book%20Of%20Secrets/01%20Prologue.m4a + File Folder Count4 + Library Folder Count1 + + 3616 + + Track ID3616 + NameThe Mummers' Dance + ArtistLoreena McKennitt + ComposerLoreena McKennitt + AlbumThe Book Of Secrets + GenreNew Age + KindAAC audio file + Size8911392 + Total Time370681 + Disc Number1 + Disc Count1 + Track Number2 + Track Count8 + Year1997 + Date Modified2006-07-31T03:38:30Z + Date Added2009-10-03T14:55:37Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3389618339 + Play Date UTC2011-05-30T11:08:59Z + Normalization1408 + Artwork Count1 + Sort AlbumBook Of Secrets + Sort NameMummers' Dance + Persistent ID3A91637475846A5D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Loreena%20McKennitt/The%20Book%20Of%20Secrets/02%20The%20Mummers'%20Dance.m4a + File Folder Count4 + Library Folder Count1 + + 3618 + + Track ID3618 + NameSkellig + ArtistLoreena McKennitt + ComposerLoreena McKennitt + AlbumThe Book Of Secrets + GenreNew Age + KindAAC audio file + Size8919847 + Total Time370681 + Disc Number1 + Disc Count1 + Track Number3 + Track Count8 + Year1997 + Date Modified2006-07-31T03:38:30Z + Date Added2009-10-03T14:55:37Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3389618710 + Play Date UTC2011-05-30T11:15:10Z + Normalization1495 + Artwork Count1 + Sort AlbumBook Of Secrets + Persistent ID0537EF58BB0FF5E5 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Loreena%20McKennitt/The%20Book%20Of%20Secrets/03%20Skellig.m4a + File Folder Count4 + Library Folder Count1 + + 3620 + + Track ID3620 + NameMarco Polo + ArtistLoreena McKennitt + ComposerLoreena McKennitt + AlbumThe Book Of Secrets + GenreNew Age + KindAAC audio file + Size7657442 + Total Time319133 + Disc Number1 + Disc Count1 + Track Number4 + Track Count8 + Year1997 + Date Modified2006-07-31T03:38:30Z + Date Added2009-10-03T14:55:37Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3389619029 + Play Date UTC2011-05-30T11:20:29Z + Normalization1744 + Artwork Count1 + Sort AlbumBook Of Secrets + Persistent IDF6248302AA5939F5 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Loreena%20McKennitt/The%20Book%20Of%20Secrets/04%20Marco%20Polo.m4a + File Folder Count4 + Library Folder Count1 + + 3622 + + Track ID3622 + NameThe Highwayman + ArtistLoreena McKennitt + ComposerAlfred Noyes + AlbumThe Book Of Secrets + GenreNew Age + KindAAC audio file + Size14989127 + Total Time620667 + Disc Number1 + Disc Count1 + Track Number5 + Track Count8 + Year1997 + Date Modified2006-07-31T03:38:30Z + Date Added2009-10-03T14:55:37Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Sort AlbumBook Of Secrets + Sort NameHighwayman + Persistent ID64D32AB78E932D09 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Loreena%20McKennitt/The%20Book%20Of%20Secrets/05%20The%20Highwayman.m4a + File Folder Count4 + Library Folder Count1 + + 3624 + + Track ID3624 + NameLa Serenissima + ArtistLoreena McKennitt + ComposerLoreena McKennitt + AlbumThe Book Of Secrets + GenreNew Age + KindAAC audio file + Size7513168 + Total Time310008 + Disc Number1 + Disc Count1 + Track Number6 + Track Count8 + Year1997 + Date Modified2006-07-31T03:38:30Z + Date Added2009-10-03T14:55:37Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Sort AlbumBook Of Secrets + Persistent ID50FF2816CB4804E3 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Loreena%20McKennitt/The%20Book%20Of%20Secrets/06%20La%20Serenissima.m4a + File Folder Count4 + Library Folder Count1 + + 3626 + + Track ID3626 + NameNight Ride Across The Caucasus + ArtistLoreena McKennitt + ComposerLoreena McKennitt + AlbumThe Book Of Secrets + GenreNew Age + KindAAC audio file + Size12386918 + Total Time512648 + Disc Number1 + Disc Count1 + Track Number7 + Track Count8 + Year1997 + Date Modified2006-08-07T08:53:04Z + Date Added2009-10-03T14:55:37Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3383588163 + Play Date UTC2011-03-21T16:06:03Z + Normalization1378 + Artwork Count2 + Sort AlbumBook Of Secrets + Persistent ID0B41640737DF5278 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Loreena%20McKennitt/The%20Book%20Of%20Secrets/07%20Night%20Ride%20Across%20The%20Caucasus.m4a + File Folder Count4 + Library Folder Count1 + + 3628 + + Track ID3628 + NameDante's Prayer + ArtistLoreena McKennitt + ComposerLoreena McKennitt + AlbumThe Book Of Secrets + GenreNew Age + KindAAC audio file + Size10443284 + Total Time431077 + Disc Number1 + Disc Count1 + Track Number8 + Track Count8 + Year1997 + Date Modified2006-07-31T03:38:32Z + Date Added2009-10-03T14:55:37Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Sort AlbumBook Of Secrets + Persistent ID05A6BBABC4F0F411 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Loreena%20McKennitt/The%20Book%20Of%20Secrets/08%20Dante's%20Prayer.m4a + File Folder Count4 + Library Folder Count1 + + 3630 + + Track ID3630 + NameIncantation + ArtistLoreena McKennitt + ComposerLoreena McKennitt + AlbumAn Ancient Muse + GenreWorld + KindAAC audio file + Size3839723 + Total Time155386 + Disc Number1 + Disc Count1 + Track Number1 + Track Count9 + Year2006 + Date Modified2007-07-23T14:31:30Z + Date Added2009-10-03T14:55:37Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3359725195 + Play Date UTC2010-06-18T11:29:55Z + Normalization1135 + Artwork Count1 + Sort AlbumAncient Muse + Persistent IDBAD74F242760287F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Loreena%20McKennitt/An%20Ancient%20Muse/01%20Incantation.m4a + File Folder Count4 + Library Folder Count1 + + 3632 + + Track ID3632 + NameThe Gates Of Istanbul + ArtistLoreena McKennitt + ComposerLoreena McKennitt + AlbumAn Ancient Muse + GenreWorld + KindAAC audio file + Size10207138 + Total Time419306 + Disc Number1 + Disc Count1 + Track Number2 + Track Count9 + Year2006 + Date Modified2007-07-23T14:31:30Z + Date Added2009-10-03T14:55:37Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3359725614 + Play Date UTC2010-06-18T11:36:54Z + Normalization1563 + Artwork Count1 + Sort AlbumAncient Muse + Sort NameGates Of Istanbul + Persistent ID0F1C2ABD183262D8 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Loreena%20McKennitt/An%20Ancient%20Muse/02%20The%20Gates%20Of%20Istanbul.m4a + File Folder Count4 + Library Folder Count1 + + 3634 + + Track ID3634 + NameCaravanserai + ArtistLoreena McKennitt + ComposerLoreena McKennitt + AlbumAn Ancient Muse + GenreWorld + KindAAC audio file + Size11091738 + Total Time455866 + Disc Number1 + Disc Count1 + Track Number3 + Track Count9 + Year2006 + Date Modified2007-07-23T14:31:28Z + Date Added2009-10-03T14:55:38Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3359726070 + Play Date UTC2010-06-18T11:44:30Z + Normalization1691 + Artwork Count1 + Sort AlbumAncient Muse + Persistent IDED8455A5544C5151 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Loreena%20McKennitt/An%20Ancient%20Muse/03%20Caravanserai.m4a + File Folder Count4 + Library Folder Count1 + + 3636 + + Track ID3636 + NameThe English Ladye And The Knight + ArtistLoreena McKennitt + ComposerLoreena McKennitt + AlbumAn Ancient Muse + GenreWorld + KindAAC audio file + Size9956083 + Total Time408946 + Disc Number1 + Disc Count1 + Track Number4 + Track Count9 + Year2006 + Date Modified2007-07-23T14:31:24Z + Date Added2009-10-03T14:55:38Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3359726479 + Play Date UTC2010-06-18T11:51:19Z + Normalization1072 + Artwork Count1 + Sort AlbumAncient Muse + Sort NameEnglish Ladye And The Knight + Persistent IDF8E960ABC52554C0 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Loreena%20McKennitt/An%20Ancient%20Muse/04%20The%20English%20Ladye%20And%20The%20Knight.m4a + File Folder Count4 + Library Folder Count1 + + 3638 + + Track ID3638 + NameKecharitomene + ArtistLoreena McKennitt + ComposerLoreena McKennitt + AlbumAn Ancient Muse + GenreWorld + KindAAC audio file + Size9618081 + Total Time394973 + Disc Number1 + Disc Count1 + Track Number5 + Track Count9 + Year2006 + Date Modified2007-07-23T14:31:22Z + Date Added2009-10-03T14:55:38Z + Bit Rate192 + Sample Rate44100 + Play Count2 + Play Date3383147914 + Play Date UTC2011-03-16T13:48:34Z + Normalization1396 + Artwork Count1 + Sort AlbumAncient Muse + Persistent IDE7E56F5F9EABF542 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Loreena%20McKennitt/An%20Ancient%20Muse/05%20Kecharitomene.m4a + File Folder Count4 + Library Folder Count1 + + 3640 + + Track ID3640 + NamePenelope's Song + ArtistLoreena McKennitt + ComposerLoreena McKennitt + AlbumAn Ancient Muse + GenreWorld + KindAAC audio file + Size6394035 + Total Time261746 + Disc Number1 + Disc Count1 + Track Number6 + Track Count9 + Year2006 + Date Modified2007-07-23T14:31:20Z + Date Added2009-10-03T14:55:38Z + Bit Rate192 + Sample Rate44100 + Play Count7 + Play Date3484294005 + Play Date UTC2014-05-30T05:56:45Z + Normalization1925 + Artwork Count1 + Sort AlbumAncient Muse + Persistent IDE7CBD8525D5CD547 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Loreena%20McKennitt/An%20Ancient%20Muse/06%20Penelope's%20Song.m4a + File Folder Count4 + Library Folder Count1 + + 3642 + + Track ID3642 + NameSacred Shabbat + ArtistLoreena McKennitt + ComposerLoreena McKennitt + AlbumAn Ancient Muse + GenreWorld + KindAAC audio file + Size5878320 + Total Time240266 + Disc Number1 + Disc Count1 + Track Number7 + Track Count9 + Year2006 + Date Modified2007-07-23T14:31:20Z + Date Added2009-10-03T14:55:38Z + Bit Rate192 + Sample Rate44100 + Play Count3 + Play Date3426264030 + Play Date UTC2012-07-27T14:30:30Z + Normalization1229 + Artwork Count1 + Sort AlbumAncient Muse + Persistent ID72D05592A23B676E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Loreena%20McKennitt/An%20Ancient%20Muse/07%20Sacred%20Shabbat.m4a + File Folder Count4 + Library Folder Count1 + + 3644 + + Track ID3644 + NameBeneath A Phrygian Sky + ArtistLoreena McKennitt + ComposerLoreena McKennitt + AlbumAn Ancient Muse + GenreWorld + KindAAC audio file + Size13836269 + Total Time569266 + Disc Number1 + Disc Count1 + Track Number8 + Track Count9 + Year2006 + Date Modified2007-07-23T14:31:20Z + Date Added2009-10-03T14:55:38Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3337855401 + Play Date UTC2009-10-08T08:33:21Z + Normalization1448 + Artwork Count1 + Sort AlbumAncient Muse + Persistent ID3134A68671664A97 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Loreena%20McKennitt/An%20Ancient%20Muse/08%20Beneath%20A%20Phrygian%20Sky.m4a + File Folder Count4 + Library Folder Count1 + + 3646 + + Track ID3646 + NameNever-Ending Road (Amhrán Duit) + ArtistLoreena McKennitt + ComposerLoreena McKennitt + AlbumAn Ancient Muse + GenreWorld + KindAAC audio file + Size8785748 + Total Time360560 + Disc Number1 + Disc Count1 + Track Number9 + Track Count9 + Year2006 + Date Modified2007-07-23T14:31:16Z + Date Added2009-10-03T14:55:38Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3337855761 + Play Date UTC2009-10-08T08:39:21Z + Normalization1455 + Artwork Count1 + Sort AlbumAncient Muse + Persistent ID35B380798F547754 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Loreena%20McKennitt/An%20Ancient%20Muse/09%20Never-Ending%20Road%20(Amhra%CC%81n%20Duit).m4a + File Folder Count4 + Library Folder Count1 + + 3648 + + Track ID3648 + NameBerlioz: Symphonie Fantastique, Op. 14 - 1. Reveries-Passions + ArtistLondon Festival Orchestra, Alfred Scholz + ComposerHector Berlioz + AlbumBerlioz: Symphonie Fantastique + GenreClassical + KindAAC audio file + Size22299161 + Total Time920483 + Disc Number1 + Disc Count1 + Track Number1 + Track Count5 + Year1994 + Date Modified2011-11-01T15:45:09Z + Date Added2009-10-03T14:55:39Z + Bit Rate192 + Sample Rate44100 + Normalization496 + Artwork Count1 + Persistent IDE92A8BB5D6B5925E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/London%20Festival%20Orchestra,%20Alfred%20Scholz/Berlioz_%20Symphonie%20Fantastique/01%20Berlioz_%20Symphonie%20Fantastique,%20Op.%2014%20-%201.%20Reveries-Passions.m4a + File Folder Count4 + Library Folder Count1 + + 3650 + + Track ID3650 + NameBerlioz: Symphonie Fantastique, Op. 14 - 2. Un Bal + ArtistLondon Festival Orchestra, Alfred Scholz + ComposerHector Berlioz + AlbumBerlioz: Symphonie Fantastique + GenreClassical + KindAAC audio file + Size9023936 + Total Time370844 + Disc Number1 + Disc Count1 + Track Number2 + Track Count5 + Year1994 + Date Modified2011-11-01T15:45:10Z + Date Added2009-10-03T14:55:39Z + Bit Rate192 + Sample Rate44100 + Normalization196 + Artwork Count1 + Persistent IDEB91CEBF29A28E43 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/London%20Festival%20Orchestra,%20Alfred%20Scholz/Berlioz_%20Symphonie%20Fantastique/02%20Berlioz_%20Symphonie%20Fantastique,%20Op.%2014%20-%202.%20Un%20Bal.m4a + File Folder Count4 + Library Folder Count1 + + 3652 + + Track ID3652 + NameBerlioz: Symphonie Fantastique, Op. 14 - 3. Scene Aux Champs + ArtistLondon Festival Orchestra, Alfred Scholz + ComposerHector Berlioz + AlbumBerlioz: Symphonie Fantastique + GenreClassical + KindAAC audio file + Size24921136 + Total Time1027783 + Disc Number1 + Disc Count1 + Track Number3 + Track Count5 + Year1994 + Date Modified2011-11-01T15:45:12Z + Date Added2009-10-03T14:55:39Z + Bit Rate192 + Sample Rate44100 + Normalization624 + Artwork Count1 + Persistent IDB3CDCA4DC5DB4AC2 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/London%20Festival%20Orchestra,%20Alfred%20Scholz/Berlioz_%20Symphonie%20Fantastique/03%20Berlioz_%20Symphonie%20Fantastique,%20Op.%2014%20-%203.%20Scene%20Aux%20Champs.m4a + File Folder Count4 + Library Folder Count1 + + 3654 + + Track ID3654 + NameBerlioz: Symphonie Fantastique, Op. 14 - 4. Marche Au Supplice + ArtistLondon Festival Orchestra, Alfred Scholz + ComposerHector Berlioz + AlbumBerlioz: Symphonie Fantastique + GenreClassical + KindAAC audio file + Size6946681 + Total Time285000 + Disc Number1 + Disc Count1 + Track Number4 + Track Count5 + Year1994 + Date Modified2011-11-01T15:45:12Z + Date Added2009-10-03T14:55:39Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Persistent IDC5E0FD31A8822B51 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/London%20Festival%20Orchestra,%20Alfred%20Scholz/Berlioz_%20Symphonie%20Fantastique/04%20Berlioz_%20Symphonie%20Fantastique,%20Op.%2014%20-%204.%20Marche%20Au%20Supplice.m4a + File Folder Count4 + Library Folder Count1 + + 3656 + + Track ID3656 + NameBerlioz: Symphonie Fantastique, Op. 14 - 5. Songe D'Une Nuit Du Sabbat + ArtistLondon Festival Orchestra, Alfred Scholz + ComposerHector Berlioz + AlbumBerlioz: Symphonie Fantastique + GenreClassical + KindAAC audio file + Size16652937 + Total Time686287 + Disc Number1 + Disc Count1 + Track Number5 + Track Count5 + Year1994 + Date Modified2011-11-01T15:45:14Z + Date Added2009-10-03T14:55:39Z + Bit Rate192 + Sample Rate44100 + Normalization717 + Artwork Count1 + Persistent ID81925C38B9C7E18E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/London%20Festival%20Orchestra,%20Alfred%20Scholz/Berlioz_%20Symphonie%20Fantastique/05%20Berlioz_%20Symphonie%20Fantastique,%20Op.%2014%20-%205.%20Songe%20D'Une%20Nuit%20Du%20Sabbat.m4a + File Folder Count4 + Library Folder Count1 + + 3658 + + Track ID3658 + NameDon't Leave Me + ArtistL.Subramaniam&Stephane Grapelli + ComposerL. Subramaniam + AlbumConversations + GenreWorld + KindAAC audio file + Size9930735 + Total Time410573 + Disc Number1 + Disc Count1 + Track Number1 + Track Count8 + Year1984 + Date Modified2006-08-13T06:42:52Z + Date Added2009-10-03T14:55:40Z + Bit Rate192 + Sample Rate44100 + Normalization860 + Artwork Count1 + Persistent ID3CF644975800E871 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.Subramaniam&Stephane%20Grapelli/Conversations/01%20Don't%20Leave%20Me.m4a + File Folder Count4 + Library Folder Count1 + + 3660 + + Track ID3660 + NameMemories + ArtistL.Subramaniam&Stephane Grapelli + ComposerL. Subramaniam + AlbumConversations + GenreWorld + KindAAC audio file + Size8186215 + Total Time337802 + Disc Number1 + Disc Count1 + Track Number2 + Track Count8 + Year1984 + Date Modified2006-08-13T06:42:48Z + Date Added2009-10-03T14:55:40Z + Bit Rate192 + Sample Rate44100 + Normalization227 + Artwork Count1 + Persistent ID40AAAFF6A44E9FD6 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.Subramaniam&Stephane%20Grapelli/Conversations/02%20Memories.m4a + File Folder Count4 + Library Folder Count1 + + 3662 + + Track ID3662 + NamePaganini Caprice + ArtistL.Subramaniam&Stephane Grapelli + ComposerL. Subramaniam + AlbumConversations + GenreWorld + KindAAC audio file + Size3008543 + Total Time123087 + Disc Number1 + Disc Count1 + Track Number3 + Track Count8 + Year1984 + Date Modified2006-08-13T06:42:44Z + Date Added2009-10-03T14:55:40Z + Bit Rate192 + Sample Rate44100 + Normalization1038 + Artwork Count1 + Persistent ID779CE1E70D280E73 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.Subramaniam&Stephane%20Grapelli/Conversations/03%20Paganini%20Caprice.m4a + File Folder Count4 + Library Folder Count1 + + 3664 + + Track ID3664 + NameConversation + ArtistL.Subramaniam&Stephane Grapelli + ComposerL. Subramaniam + AlbumConversations + GenreWorld + KindAAC audio file + Size7642435 + Total Time315348 + Disc Number1 + Disc Count1 + Track Number4 + Track Count8 + Year1984 + Date Modified2006-08-13T06:42:42Z + Date Added2009-10-03T14:55:40Z + Bit Rate192 + Sample Rate44100 + Normalization1010 + Artwork Count1 + Persistent ID1091311D947C88C0 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.Subramaniam&Stephane%20Grapelli/Conversations/04%20Conversation.m4a + File Folder Count4 + Library Folder Count1 + + 3666 + + Track ID3666 + NameWalking in a Dream + ArtistL.Subramaniam&Stephane Grapelli + ComposerL. Subramaniam + AlbumConversations + GenreWorld + KindAAC audio file + Size8491270 + Total Time350410 + Disc Number1 + Disc Count1 + Track Number5 + Track Count8 + Year1984 + Date Modified2006-08-13T06:42:40Z + Date Added2009-10-03T14:55:40Z + Bit Rate192 + Sample Rate44100 + Normalization948 + Artwork Count1 + Persistent IDDD950E503796CB95 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.Subramaniam&Stephane%20Grapelli/Conversations/05%20Walking%20in%20a%20Dream.m4a + File Folder Count4 + Library Folder Count1 + + 3668 + + Track ID3668 + NameIllusion + ArtistL.Subramaniam&Stephane Grapelli + ComposerL. Subramaniam + AlbumConversations + GenreWorld + KindAAC audio file + Size11224981 + Total Time463375 + Disc Number1 + Disc Count1 + Track Number6 + Track Count8 + Year1984 + Date Modified2006-08-13T06:42:36Z + Date Added2009-10-03T14:55:40Z + Bit Rate192 + Sample Rate44100 + Normalization743 + Artwork Count1 + Persistent ID5BFF100FE2C5907E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.Subramaniam&Stephane%20Grapelli/Conversations/06%20Illusion.m4a + File Folder Count4 + Library Folder Count1 + + 3670 + + Track ID3670 + NameTribute to Mani + ArtistL.Subramaniam&Stephane Grapelli + ComposerL. Subramaniam + AlbumConversations + GenreWorld + KindAAC audio file + Size3594021 + Total Time147445 + Disc Number1 + Disc Count1 + Track Number7 + Track Count8 + Year1984 + Date Modified2006-08-13T06:42:30Z + Date Added2009-10-03T14:55:40Z + Bit Rate192 + Sample Rate44100 + Normalization433 + Artwork Count1 + Persistent ID5A4ABEDB9BDC4A1F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.Subramaniam&Stephane%20Grapelli/Conversations/07%20Tribute%20to%20Mani.m4a + File Folder Count4 + Library Folder Count1 + + 3672 + + Track ID3672 + NameFrench Resolution + ArtistL.Subramaniam&Stephane Grapelli + ComposerL. Subramaniam + AlbumConversations + GenreWorld + KindAAC audio file + Size6824406 + Total Time281888 + Disc Number1 + Disc Count1 + Track Number8 + Track Count8 + Year1984 + Date Modified2006-08-13T06:42:28Z + Date Added2009-10-03T14:55:40Z + Bit Rate192 + Sample Rate44100 + Normalization990 + Artwork Count1 + Persistent ID957AE5868C9E6672 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.Subramaniam&Stephane%20Grapelli/Conversations/08%20French%20Resolution.m4a + File Folder Count4 + Library Folder Count1 + + 3674 + + Track ID3674 + NameFantasy On Vedic Chants + ArtistL. Subramaniam + AlbumLive In Moscow + GenreNew Age + KindAAC audio file + Size41977790 + Total Time1738081 + Track Number1 + Track Count2 + Date Modified2006-07-30T05:55:14Z + Date Added2009-10-03T14:55:40Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Persistent ID904F094EE3EC4A48 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Live%20In%20Moscow/01%20Fantasy%20On%20Vedic%20Chants.m4a + File Folder Count4 + Library Folder Count1 + + 3676 + + Track ID3676 + NameDouble Concerto + ArtistL. Subramaniam + AlbumLive In Moscow + GenreNew Age + KindAAC audio file + Size45767705 + Total Time1893237 + Track Number2 + Track Count2 + Date Modified2006-07-30T05:55:14Z + Date Added2009-10-03T14:55:41Z + Bit Rate192 + Sample Rate44100 + Normalization823 + Artwork Count1 + Persistent ID9E5C6B8A163F72B5 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Live%20In%20Moscow/02%20Double%20Concerto.m4a + File Folder Count4 + Library Folder Count1 + + 3678 + + Track ID3678 + NameBeyond + ArtistL. Subramaniam + AlbumBeyond + GenreUnclassifiable + KindAAC audio file + Size40970967 + Total Time1697679 + Track Number1 + Track Count4 + Date Modified2006-08-13T06:42:24Z + Date Added2009-10-03T14:55:41Z + Bit Rate192 + Sample Rate44100 + Normalization1258 + Artwork Count1 + Persistent ID886C793455AE6E90 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Beyond/01%20Beyond.m4a + File Folder Count4 + Library Folder Count1 + + 3680 + + Track ID3680 + NameWeeping Soul + ArtistL. Subramaniam + AlbumBeyond + GenreUnclassifiable + KindAAC audio file + Size10128562 + Total Time422671 + Track Number2 + Track Count4 + Date Modified2006-08-13T06:42:06Z + Date Added2009-10-03T14:55:41Z + Bit Rate192 + Sample Rate44100 + Normalization243 + Artwork Count1 + Persistent ID0D88A4B3085F0139 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Beyond/02%20Weeping%20Soul.m4a + File Folder Count4 + Library Folder Count1 + + 3682 + + Track ID3682 + NameWandering Saint + ArtistL. Subramaniam + AlbumBeyond + GenreUnclassifiable + KindAAC audio file + Size13435981 + Total Time559344 + Track Number3 + Track Count4 + Date Modified2006-08-13T06:42:02Z + Date Added2009-10-03T14:55:41Z + Bit Rate192 + Sample Rate44100 + Normalization243 + Artwork Count1 + Persistent ID9EFD02D13AE1B54D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Beyond/03%20Wandering%20Saint.m4a + File Folder Count4 + Library Folder Count1 + + 3684 + + Track ID3684 + NameKriti: Bhajana Seyave + ArtistL. Subramaniam + AlbumBeyond + GenreUnclassifiable + KindAAC audio file + Size16641881 + Total Time687053 + Track Number4 + Track Count4 + Date Modified2006-08-13T06:41:56Z + Date Added2009-10-03T14:55:41Z + Bit Rate192 + Sample Rate44100 + Normalization823 + Artwork Count1 + Persistent ID475464EF771FB86F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Beyond/04%20Kriti_%20Bhajana%20Seyave.m4a + File Folder Count4 + Library Folder Count1 + + 3686 + + Track ID3686 + NameInvocation to Lord Ganesha + ArtistL. Subramaniam + AlbumAnthology of South Indian Classical Music (Disc 1) + GenreClassical + KindAAC audio file + Size779423 + Total Time31182 + Track Number1 + Track Count22 + Date Modified2006-08-13T06:41:48Z + Date Added2009-10-03T14:55:41Z + Bit Rate192 + Sample Rate44100 + Normalization771 + Persistent IDFB4F95768488AE06 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Anthology%20of%20South%20Indian%20Classical%20Music%20(Disc%201)/01%20Invocation%20to%20Lord%20Ganesha.m4a + File Folder Count4 + Library Folder Count1 + + 3688 + + Track ID3688 + NameInvocation to Goddess Saraswati + ArtistL. Subramaniam + AlbumAnthology of South Indian Classical Music (Disc 1) + GenreClassical + KindAAC audio file + Size554526 + Total Time22080 + Track Number2 + Track Count22 + Date Modified2006-08-13T06:41:48Z + Date Added2009-10-03T14:55:42Z + Bit Rate192 + Sample Rate44100 + Normalization714 + Persistent ID981B2675D90DC647 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Anthology%20of%20South%20Indian%20Classical%20Music%20(Disc%201)/02%20Invocation%20to%20Goddess%20Saraswati.m4a + File Folder Count4 + Library Folder Count1 + + 3690 + + Track ID3690 + NameInvocation to Goddess Lakshmi + ArtistL. Subramaniam + AlbumAnthology of South Indian Classical Music (Disc 1) + GenreClassical + KindAAC audio file + Size10959238 + Total Time456618 + Track Number3 + Track Count22 + Date Modified2006-08-13T06:41:46Z + Date Added2009-10-03T14:55:42Z + Bit Rate192 + Sample Rate44100 + Normalization1267 + Persistent ID9F44F7D0A61D2986 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Anthology%20of%20South%20Indian%20Classical%20Music%20(Disc%201)/03%20Invocation%20to%20Goddess%20Lakshmi.m4a + File Folder Count4 + Library Folder Count1 + + 3692 + + Track ID3692 + NameRig Veda + ArtistL. Subramaniam + AlbumAnthology of South Indian Classical Music (Disc 1) + GenreClassical + KindAAC audio file + Size2515511 + Total Time104511 + Track Number4 + Track Count22 + Date Modified2006-08-13T06:41:42Z + Date Added2009-10-03T14:55:42Z + Bit Rate192 + Sample Rate44100 + Normalization900 + Persistent ID2D74D49F596DDC06 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Anthology%20of%20South%20Indian%20Classical%20Music%20(Disc%201)/04%20Rig%20Veda.m4a + File Folder Count4 + Library Folder Count1 + + 3694 + + Track ID3694 + NameYajur Veda + ArtistL. Subramaniam + AlbumAnthology of South Indian Classical Music (Disc 1) + GenreClassical + KindAAC audio file + Size3273726 + Total Time135835 + Track Number5 + Track Count22 + Date Modified2006-08-13T06:41:42Z + Date Added2009-10-03T14:55:42Z + Bit Rate192 + Sample Rate44100 + Normalization1229 + Persistent ID3C758FE9B6DFE282 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Anthology%20of%20South%20Indian%20Classical%20Music%20(Disc%201)/05%20Yajur%20Veda.m4a + File Folder Count4 + Library Folder Count1 + + 3696 + + Track ID3696 + NameSama Veda + ArtistL. Subramaniam + AlbumAnthology of South Indian Classical Music (Disc 1) + GenreClassical + KindAAC audio file + Size5412597 + Total Time225487 + Track Number6 + Track Count22 + Date Modified2006-08-13T06:41:40Z + Date Added2009-10-03T14:55:42Z + Bit Rate192 + Sample Rate44100 + Normalization942 + Persistent ID425BA7530CCB9417 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Anthology%20of%20South%20Indian%20Classical%20Music%20(Disc%201)/06%20Sama%20Veda.m4a + File Folder Count4 + Library Folder Count1 + + 3698 + + Track ID3698 + NameAtharva Veda + ArtistL. Subramaniam + AlbumAnthology of South Indian Classical Music (Disc 1) + GenreClassical + KindAAC audio file + Size2995967 + Total Time124178 + Track Number7 + Track Count22 + Date Modified2006-08-13T06:41:38Z + Date Added2009-10-03T14:55:42Z + Bit Rate192 + Sample Rate44100 + Normalization703 + Persistent ID0EC0DEECFA9E2C15 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Anthology%20of%20South%20Indian%20Classical%20Music%20(Disc%201)/07%20Atharva%20Veda.m4a + File Folder Count4 + Library Folder Count1 + + 3700 + + Track ID3700 + NameSwaravali Tala Adi + ArtistL. Subramaniam + AlbumAnthology of South Indian Classical Music (Disc 1) + GenreClassical + KindAAC audio file + Size5879134 + Total Time247755 + Track Number8 + Track Count22 + Date Modified2006-08-13T06:41:36Z + Date Added2009-10-03T14:55:42Z + Bit Rate192 + Sample Rate44100 + Normalization735 + Persistent IDF54C33EF5A75DA5E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Anthology%20of%20South%20Indian%20Classical%20Music%20(Disc%201)/08%20Swaravali%20Tala%20Adi.m4a + File Folder Count4 + Library Folder Count1 + + 3702 + + Track ID3702 + NameAlankara I Tala Dhruva + ArtistL. Subramaniam + AlbumAnthology of South Indian Classical Music (Disc 1) + GenreClassical + KindAAC audio file + Size1744329 + Total Time76763 + Track Number9 + Track Count22 + Date Modified2006-08-13T06:41:34Z + Date Added2009-10-03T14:55:42Z + Bit Rate192 + Sample Rate44100 + Normalization908 + Persistent IDF9F6ED8C3FE285FB + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Anthology%20of%20South%20Indian%20Classical%20Music%20(Disc%201)/09%20Alankara%20I%20Tala%20Dhruva.m4a + File Folder Count4 + Library Folder Count1 + + 3704 + + Track ID3704 + NameAlankara II Tala Mattya + ArtistL. Subramaniam + AlbumAnthology of South Indian Classical Music (Disc 1) + GenreClassical + KindAAC audio file + Size1271229 + Total Time55935 + Track Number10 + Track Count22 + Date Modified2006-08-13T06:41:32Z + Date Added2009-10-03T14:55:42Z + Bit Rate192 + Sample Rate44100 + Normalization773 + Persistent ID4FC79718D2828924 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Anthology%20of%20South%20Indian%20Classical%20Music%20(Disc%201)/10%20Alankara%20II%20Tala%20Mattya.m4a + File Folder Count4 + Library Folder Count1 + + 3706 + + Track ID3706 + NameAlankara III Tala Rupaka + ArtistL. Subramaniam + AlbumAnthology of South Indian Classical Music (Disc 1) + GenreClassical + KindAAC audio file + Size875038 + Total Time39402 + Track Number11 + Track Count22 + Date Modified2006-08-13T06:41:32Z + Date Added2009-10-03T14:55:42Z + Bit Rate192 + Sample Rate44100 + Normalization765 + Persistent IDA5631501FD694589 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Anthology%20of%20South%20Indian%20Classical%20Music%20(Disc%201)/11%20Alankara%20III%20Tala%20Rupaka.m4a + File Folder Count4 + Library Folder Count1 + + 3708 + + Track ID3708 + NameAlankara IV Tala Jampa + ArtistL. Subramaniam + AlbumAnthology of South Indian Classical Music (Disc 1) + GenreClassical + KindAAC audio file + Size1196136 + Total Time53079 + Track Number12 + Track Count22 + Date Modified2006-08-13T06:41:32Z + Date Added2009-10-03T14:55:43Z + Bit Rate192 + Sample Rate44100 + Normalization603 + Persistent ID2ED3EB1566AA2451 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Anthology%20of%20South%20Indian%20Classical%20Music%20(Disc%201)/12%20Alankara%20IV%20Tala%20Jampa.m4a + File Folder Count4 + Library Folder Count1 + + 3710 + + Track ID3710 + NameAlankara V Tala Triputa + ArtistL. Subramaniam + AlbumAnthology of South Indian Classical Music (Disc 1) + GenreClassical + KindAAC audio file + Size870745 + Total Time36477 + Track Number13 + Track Count22 + Date Modified2006-08-13T06:41:30Z + Date Added2009-10-03T14:55:43Z + Bit Rate192 + Sample Rate44100 + Normalization569 + Persistent ID6CBE89A54100F644 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Anthology%20of%20South%20Indian%20Classical%20Music%20(Disc%201)/13%20Alankara%20V%20Tala%20Triputa.m4a + File Folder Count4 + Library Folder Count1 + + 3712 + + Track ID3712 + NameAlankara VI Tala Ata + ArtistL. Subramaniam + AlbumAnthology of South Indian Classical Music (Disc 1) + GenreClassical + KindAAC audio file + Size1382612 + Total Time57467 + Track Number14 + Track Count22 + Date Modified2006-08-13T06:41:30Z + Date Added2009-10-03T14:55:43Z + Bit Rate192 + Sample Rate44100 + Normalization697 + Persistent IDBB052CAC56B32C2B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Anthology%20of%20South%20Indian%20Classical%20Music%20(Disc%201)/14%20Alankara%20VI%20Tala%20Ata.m4a + File Folder Count4 + Library Folder Count1 + + 3714 + + Track ID3714 + NameAlankara VII Tala Eka + ArtistL. Subramaniam + AlbumAnthology of South Indian Classical Music (Disc 1) + GenreClassical + KindAAC audio file + Size892921 + Total Time37405 + Track Number15 + Track Count22 + Date Modified2006-08-13T06:41:30Z + Date Added2009-10-03T14:55:43Z + Bit Rate192 + Sample Rate44100 + Normalization504 + Persistent ID2A4E9628B7E8B60E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Anthology%20of%20South%20Indian%20Classical%20Music%20(Disc%201)/15%20Alankara%20VII%20Tala%20Eka.m4a + File Folder Count4 + Library Folder Count1 + + 3716 + + Track ID3716 + NameGitam (In praise of Lord Ganesha) "Sri Gananatha" + ArtistL. Subramaniam + ComposerPurandara Dasa + AlbumAnthology of South Indian Classical Music (Disc 1) + GenreCarnatic + KindAAC audio file + Size3411207 + Total Time142058 + Track Number16 + Track Count22 + Date Modified2007-12-14T10:31:47Z + Date Added2009-10-03T14:55:43Z + Bit Rate192 + Sample Rate44100 + CommentsRaga: Malahari Tala: Roopakam + Normalization743 + Persistent ID1F08ADEE6B98D028 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Anthology%20of%20South%20Indian%20Classical%20Music%20(Disc%201)/16%20Gitam%20(In%20praise%20of%20Lord%20Ganesha)%20_Sri%20Gananatha_.m4a + File Folder Count4 + Library Folder Count1 + + 3718 + + Track ID3718 + NameGitam (In praise of Goddess Lakshmi) "Vara Veena" + ArtistL. Subramaniam + ComposerAppiah Dikshitar + AlbumAnthology of South Indian Classical Music (Disc 1) + GenreClassical + KindAAC audio file + Size1935646 + Total Time81709 + Track Number17 + Track Count22 + Date Modified2007-12-14T10:29:54Z + Date Added2009-10-03T14:55:43Z + Bit Rate192 + Sample Rate44100 + CommentsRaga: Mohanam Tala: Roopakam + Normalization990 + Persistent ID8326256DED32A7F2 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Anthology%20of%20South%20Indian%20Classical%20Music%20(Disc%201)/17%20Gitam%20(In%20praise%20of%20Goddess%20Lakshmi)%20_Vara%20Veena_.m4a + File Folder Count4 + Library Folder Count1 + + 3720 + + Track ID3720 + NameJatiswaram + ArtistL. Subramaniam + AlbumAnthology of South Indian Classical Music (Disc 1) + GenreClassical + KindAAC audio file + Size5359255 + Total Time225580 + Track Number18 + Track Count22 + Date Modified2006-08-13T06:41:26Z + Date Added2009-10-03T14:55:43Z + Bit Rate192 + Sample Rate44100 + Normalization1069 + Persistent ID034AD077CF8A1BC5 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Anthology%20of%20South%20Indian%20Classical%20Music%20(Disc%201)/18%20Jatiswaram.m4a + File Folder Count4 + Library Folder Count1 + + 3722 + + Track ID3722 + NameExample of Sruti-Peti + ArtistL. Subramaniam + AlbumAnthology of South Indian Classical Music (Disc 1) + GenreClassical + KindAAC audio file + Size1729922 + Total Time73002 + Track Number19 + Track Count22 + Date Modified2006-08-13T06:41:24Z + Date Added2009-10-03T14:55:43Z + Bit Rate192 + Sample Rate44100 + Normalization52 + Persistent ID4616D1F923B358E9 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Anthology%20of%20South%20Indian%20Classical%20Music%20(Disc%201)/19%20Example%20of%20Sruti-Peti.m4a + File Folder Count4 + Library Folder Count1 + + 3724 + + Track ID3724 + NameExample of Tambura + ArtistL. Subramaniam + AlbumAnthology of South Indian Classical Music (Disc 1) + GenreClassical + KindAAC audio file + Size2155741 + Total Time91647 + Track Number20 + Track Count22 + Date Modified2006-08-13T06:41:24Z + Date Added2009-10-03T14:55:43Z + Bit Rate192 + Sample Rate44100 + Normalization113 + Persistent ID229EB1D16D84FFBD + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Anthology%20of%20South%20Indian%20Classical%20Music%20(Disc%201)/20%20Example%20of%20Tambura.m4a + File Folder Count4 + Library Folder Count1 + + 3726 + + Track ID3726 + NameSwarajati "Raavey" + ArtistL. Subramaniam + AlbumAnthology of South Indian Classical Music (Disc 1) + GenreClassical + KindAAC audio file + Size23784345 + Total Time986614 + Track Number21 + Track Count22 + Date Modified2006-08-13T06:41:22Z + Date Added2009-10-03T14:55:43Z + Bit Rate192 + Sample Rate44100 + Normalization1249 + Persistent IDF5FB07A5FCD0687D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Anthology%20of%20South%20Indian%20Classical%20Music%20(Disc%201)/21%20Swarajati%20_Raavey_.m4a + File Folder Count4 + Library Folder Count1 + + 3728 + + Track ID3728 + NameVarnam "Ninnu Kori" + ArtistL. Subramaniam + ComposerTacchur Singaaraachari + AlbumAnthology of South Indian Classical Music (Disc 1) + GenreClassical + KindAAC audio file + Size21254707 + Total Time879918 + Track Number22 + Track Count22 + Date Modified2007-12-14T10:34:35Z + Date Added2009-10-03T14:55:44Z + Bit Rate192 + Sample Rate44100 + CommentsRaga: Vasantha Tala: Adi + Normalization1876 + Persistent ID6047F4A4A912B020 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Anthology%20of%20South%20Indian%20Classical%20Music%20(Disc%201)/22%20Varnam%20_Ninnu%20Kori_.m4a + File Folder Count4 + Library Folder Count1 + + 3730 + + Track ID3730 + NameKriti "Rama nannu brovara" + ArtistL. Subramaniam + AlbumAnthologie de la musique classique de l'Inde du Sud - Disc 2 + GenreClassical + KindAAC audio file + Size16318206 + Total Time676976 + Track Number1 + Track Count12 + Date Modified2006-08-13T08:37:42Z + Date Added2009-10-03T14:55:44Z + Bit Rate192 + Sample Rate44100 + Normalization1617 + Artwork Count1 + Persistent IDE363C3096CE51F05 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Anthologie%20de%20la%20musique%20classique%20de%20l'Inde%20du%20Sud%20-%20Disc%202/01%20Kriti%20_Rama%20nannu%20brovara_.m4a + File Folder Count4 + Library Folder Count1 + + 3732 + + Track ID3732 + NameRagam and Tanam + ArtistL. Subramaniam + AlbumAnthologie de la musique classique de l'Inde du sud + GenreClassical + KindAAC audio file + Size15263405 + Total Time635041 + Track Number1 + Track Count12 + Year1990 + Date Modified2006-08-13T08:37:32Z + Date Added2009-10-03T14:55:44Z + Bit Rate192 + Sample Rate44100 + Normalization789 + Artwork Count1 + Persistent ID5ECF9E55AE10AD3A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Anthologie%20de%20la%20musique%20classique%20de%20l'Inde%20du%20sud/01%20Ragam%20and%20Tanam.m4a + File Folder Count4 + Library Folder Count1 + + 3734 + + Track ID3734 + NameKriti "Vallabha" + ArtistL. Subramaniam + AlbumAnthologie de la musique classique de l'Inde du Sud - Disc 2 + GenreClassical + KindAAC audio file + Size11812922 + Total Time492493 + Track Number2 + Track Count12 + Date Modified2006-08-13T08:37:40Z + Date Added2009-10-03T14:55:44Z + Bit Rate192 + Sample Rate44100 + Normalization1189 + Artwork Count1 + Persistent ID4C5770B93C321863 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Anthologie%20de%20la%20musique%20classique%20de%20l'Inde%20du%20Sud%20-%20Disc%202/02%20Kriti%20_Vallabha_.m4a + File Folder Count4 + Library Folder Count1 + + 3736 + + Track ID3736 + NameRaga Alapana + ArtistL. Subramaniam + AlbumAnthologie de la musique classique de l'Inde du sud + GenreClassical + KindAAC audio file + Size5447550 + Total Time229458 + Track Number2 + Track Count12 + Year1990 + Date Modified2006-08-13T08:37:32Z + Date Added2009-10-03T14:55:44Z + Bit Rate192 + Sample Rate44100 + Normalization1249 + Artwork Count1 + Persistent IDE39829B25F4603A2 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Anthologie%20de%20la%20musique%20classique%20de%20l'Inde%20du%20sud/02%20Raga%20Alapana.m4a + File Folder Count4 + Library Folder Count1 + + 3738 + + Track ID3738 + NameRaga Alapana + ArtistL. Subramaniam + AlbumAnthologie de la musique classique de l'Inde du sud + GenreClassical + KindAAC audio file + Size4436362 + Total Time186779 + Track Number3 + Track Count12 + Year1990 + Date Modified2006-08-13T08:37:32Z + Date Added2009-10-03T14:55:44Z + Bit Rate192 + Sample Rate44100 + Normalization2169 + Artwork Count1 + Persistent ID5F73090F44CD1A03 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Anthologie%20de%20la%20musique%20classique%20de%20l'Inde%20du%20sud/03%20Raga%20Alapana.m4a + File Folder Count4 + Library Folder Count1 + + 3740 + + Track ID3740 + NameVarnam "Valachi" (Navaragamalika) + ArtistL. Subramaniam + AlbumAnthologie de la musique classique de l'Inde du Sud - Disc 2 + GenreClassical + KindAAC audio file + Size8028709 + Total Time336386 + Track Number3 + Track Count12 + Date Modified2006-08-13T08:37:40Z + Date Added2009-10-03T14:55:44Z + Bit Rate192 + Sample Rate44100 + Normalization1048 + Artwork Count1 + Persistent IDFB052EE1748EB0A9 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Anthologie%20de%20la%20musique%20classique%20de%20l'Inde%20du%20Sud%20-%20Disc%202/03%20Varnam%20_Valachi_%20(Navaragamalika).m4a + File Folder Count4 + Library Folder Count1 + + 3742 + + Track ID3742 + NameKriti "Sadinchine" (Pancharatna Kriti) + ArtistL. Subramaniam + AlbumAnthologie de la musique classique de l'Inde du Sud - Disc 2 + GenreClassical + KindAAC audio file + Size9895596 + Total Time412686 + Track Number4 + Track Count12 + Date Modified2006-08-13T08:37:38Z + Date Added2009-10-03T14:55:44Z + Bit Rate192 + Sample Rate44100 + Normalization1159 + Artwork Count1 + Persistent ID2ECB93456D9F8449 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Anthologie%20de%20la%20musique%20classique%20de%20l'Inde%20du%20Sud%20-%20Disc%202/04%20Kriti%20_Sadinchine_%20(Pancharatna%20Kriti).m4a + File Folder Count4 + Library Folder Count1 + + 3744 + + Track ID3744 + NameTanam + ArtistL. Subramaniam + AlbumAnthologie de la musique classique de l'Inde du sud + GenreClassical + KindAAC audio file + Size2730068 + Total Time116980 + Track Number4 + Track Count12 + Year1990 + Date Modified2006-08-13T08:37:32Z + Date Added2009-10-03T14:55:45Z + Bit Rate192 + Sample Rate44100 + Normalization4096 + Artwork Count1 + Persistent ID02A0F03D0F526EBE + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Anthologie%20de%20la%20musique%20classique%20de%20l'Inde%20du%20sud/04%20Tanam.m4a + File Folder Count4 + Library Folder Count1 + + 3746 + + Track ID3746 + NameKriti "Krupa Juchutaku" + ArtistL. Subramaniam + AlbumAnthologie de la musique classique de l'Inde du Sud - Disc 2 + GenreClassical + KindAAC audio file + Size4080218 + Total Time171779 + Track Number5 + Track Count12 + Date Modified2006-08-13T08:37:38Z + Date Added2009-10-03T14:55:45Z + Bit Rate192 + Sample Rate44100 + Normalization642 + Artwork Count1 + Persistent IDDEB2932902EAF8B5 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Anthologie%20de%20la%20musique%20classique%20de%20l'Inde%20du%20Sud%20-%20Disc%202/05%20Kriti%20_Krupa%20Juchutaku_.m4a + File Folder Count4 + Library Folder Count1 + + 3748 + + Track ID3748 + NameKriti "Yenna Tavam" + ArtistL. Subramaniam + AlbumAnthologie de la musique classique de l'Inde du sud + GenreClassical + KindAAC audio file + Size11987162 + Total Time497555 + Track Number5 + Track Count12 + Year1990 + Date Modified2006-08-13T08:37:32Z + Date Added2009-10-03T14:55:45Z + Bit Rate192 + Sample Rate44100 + Normalization2355 + Artwork Count1 + Persistent IDE58C276C2516CA6D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Anthologie%20de%20la%20musique%20classique%20de%20l'Inde%20du%20sud/05%20Kriti%20_Yenna%20Tavam_.m4a + File Folder Count4 + Library Folder Count1 + + 3750 + + Track ID3750 + NameKriti "Vatapi Ganapatim" + ArtistL. Subramaniam + AlbumAnthologie de la musique classique de l'Inde du sud + GenreClassical + KindAAC audio file + Size8097026 + Total Time338638 + Track Number6 + Track Count12 + Year1990 + Date Modified2006-08-13T08:37:32Z + Date Added2009-10-03T14:55:45Z + Bit Rate192 + Sample Rate44100 + Normalization1108 + Artwork Count1 + Persistent IDC2758EAA6384316A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Anthologie%20de%20la%20musique%20classique%20de%20l'Inde%20du%20sud/06%20Kriti%20_Vatapi%20Ganapatim_.m4a + File Folder Count4 + Library Folder Count1 + + 3752 + + Track ID3752 + NamePadam "Pattakura" + ArtistL. Subramaniam + AlbumAnthologie de la musique classique de l'Inde du Sud - Disc 2 + GenreClassical + KindAAC audio file + Size10906123 + Total Time455666 + Track Number6 + Track Count12 + Date Modified2006-08-13T08:37:38Z + Date Added2009-10-03T14:55:45Z + Bit Rate192 + Sample Rate44100 + Normalization484 + Artwork Count1 + Persistent ID8E3CA90D327DB429 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Anthologie%20de%20la%20musique%20classique%20de%20l'Inde%20du%20Sud%20-%20Disc%202/06%20Padam%20_Pattakura_.m4a + File Folder Count4 + Library Folder Count1 + + 3754 + + Track ID3754 + NameJavali "Nee Mataley" + ArtistL. Subramaniam + AlbumAnthologie de la musique classique de l'Inde du Sud - Disc 2 + GenreClassical + KindAAC audio file + Size5103240 + Total Time214016 + Track Number7 + Track Count12 + Date Modified2006-08-13T08:37:36Z + Date Added2009-10-03T14:55:45Z + Bit Rate192 + Sample Rate44100 + Normalization364 + Artwork Count1 + Persistent ID23D172FFEFBC8F3F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Anthologie%20de%20la%20musique%20classique%20de%20l'Inde%20du%20Sud%20-%20Disc%202/07%20Javali%20_Nee%20Mataley_.m4a + File Folder Count4 + Library Folder Count1 + + 3756 + + Track ID3756 + NameKriti "Illalo Pranatarthi" + ArtistL. Subramaniam + AlbumAnthologie de la musique classique de l'Inde du sud + GenreClassical + KindAAC audio file + Size12416004 + Total Time516642 + Track Number7 + Track Count12 + Year1990 + Date Modified2006-08-13T08:37:30Z + Date Added2009-10-03T14:55:45Z + Bit Rate192 + Sample Rate44100 + Normalization1249 + Artwork Count1 + Persistent IDA92EAA5E533DAA79 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Anthologie%20de%20la%20musique%20classique%20de%20l'Inde%20du%20sud/07%20Kriti%20_Illalo%20Pranatarthi_.m4a + File Folder Count4 + Library Folder Count1 + + 3758 + + Track ID3758 + NameKanjira with Solkattu + ArtistL. Subramaniam + AlbumAnthologie de la musique classique de l'Inde du sud + GenreClassical + KindAAC audio file + Size6797951 + Total Time284280 + Track Number8 + Track Count12 + Year1990 + Date Modified2006-08-13T08:37:30Z + Date Added2009-10-03T14:55:45Z + Bit Rate192 + Sample Rate44100 + Normalization1249 + Artwork Count1 + Persistent ID59EE9CCF6232DF76 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Anthologie%20de%20la%20musique%20classique%20de%20l'Inde%20du%20sud/08%20Kanjira%20with%20Solkattu.m4a + File Folder Count4 + Library Folder Count1 + + 3760 + + Track ID3760 + NameTillana + ArtistL. Subramaniam + AlbumAnthologie de la musique classique de l'Inde du Sud - Disc 2 + GenreClassical + KindAAC audio file + Size2940778 + Total Time124271 + Track Number8 + Track Count12 + Date Modified2006-08-13T08:37:36Z + Date Added2009-10-03T14:55:46Z + Bit Rate192 + Sample Rate44100 + Normalization648 + Artwork Count1 + Persistent ID0D92E5E5F57584DA + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Anthologie%20de%20la%20musique%20classique%20de%20l'Inde%20du%20Sud%20-%20Disc%202/08%20Tillana.m4a + File Folder Count4 + Library Folder Count1 + + 3762 + + Track ID3762 + NameGhatam with Solkattu + ArtistL. Subramaniam + AlbumAnthologie de la musique classique de l'Inde du sud + GenreClassical + KindAAC audio file + Size7241016 + Total Time302693 + Track Number9 + Track Count12 + Year1990 + Date Modified2006-08-13T08:37:30Z + Date Added2009-10-03T14:55:46Z + Bit Rate192 + Sample Rate44100 + Normalization1339 + Artwork Count1 + Persistent ID52EFFCF224D33662 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Anthologie%20de%20la%20musique%20classique%20de%20l'Inde%20du%20sud/09%20Ghatam%20with%20Solkattu.m4a + File Folder Count4 + Library Folder Count1 + + 3764 + + Track ID3764 + NameThiruppukazh + ArtistL. Subramaniam + AlbumAnthologie de la musique classique de l'Inde du Sud - Disc 2 + GenreClassical + KindAAC audio file + Size6387503 + Total Time266517 + Track Number9 + Track Count12 + Date Modified2006-08-13T08:37:36Z + Date Added2009-10-03T14:55:46Z + Bit Rate192 + Sample Rate44100 + Normalization670 + Artwork Count1 + Persistent IDDA77E37539171E2A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Anthologie%20de%20la%20musique%20classique%20de%20l'Inde%20du%20Sud%20-%20Disc%202/09%20Thiruppukazh.m4a + File Folder Count4 + Library Folder Count1 + + 3766 + + Track ID3766 + NameMoorsing with Solkattu + ArtistL. Subramaniam + AlbumAnthologie de la musique classique de l'Inde du sud + GenreClassical + KindAAC audio file + Size1695403 + Total Time72537 + Track Number10 + Track Count12 + Year1990 + Date Modified2006-08-13T08:37:30Z + Date Added2009-10-03T14:55:46Z + Bit Rate192 + Sample Rate44100 + Normalization2159 + Artwork Count1 + Persistent ID58079B6DF0286DC0 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Anthologie%20de%20la%20musique%20classique%20de%20l'Inde%20du%20sud/10%20Moorsing%20with%20Solkattu.m4a + File Folder Count4 + Library Folder Count1 + + 3768 + + Track ID3768 + NameThiruppukazh + ArtistL. Subramaniam + AlbumAnthologie de la musique classique de l'Inde du Sud - Disc 2 + GenreClassical + KindAAC audio file + Size3973415 + Total Time168505 + Track Number10 + Track Count12 + Date Modified2006-08-13T08:37:34Z + Date Added2009-10-03T14:55:46Z + Bit Rate192 + Sample Rate44100 + Normalization1135 + Artwork Count1 + Persistent IDF2437D56882532C2 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Anthologie%20de%20la%20musique%20classique%20de%20l'Inde%20du%20Sud%20-%20Disc%202/10%20Thiruppukazh.m4a + File Folder Count4 + Library Folder Count1 + + 3770 + + Track ID3770 + NameMoorsing solo + ArtistL. Subramaniam + AlbumAnthologie de la musique classique de l'Inde du sud + GenreClassical + KindAAC audio file + Size1619570 + Total Time70006 + Track Number11 + Track Count12 + Year1990 + Date Modified2006-08-13T08:37:30Z + Date Added2009-10-03T14:55:46Z + Bit Rate192 + Sample Rate44100 + Normalization2234 + Artwork Count1 + Persistent IDE02A1C969B8FE7A4 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Anthologie%20de%20la%20musique%20classique%20de%20l'Inde%20du%20sud/11%20Moorsing%20solo.m4a + File Folder Count4 + Library Folder Count1 + + 3772 + + Track ID3772 + NameRaga Alapana + ArtistL. Subramaniam + AlbumAnthologie de la musique classique de l'Inde du Sud - Disc 2 + GenreClassical + KindAAC audio file + Size4470300 + Total Time189450 + Track Number11 + Track Count12 + Date Modified2006-08-13T08:37:34Z + Date Added2009-10-03T14:55:46Z + Bit Rate192 + Sample Rate44100 + Normalization1488 + Artwork Count1 + Persistent IDF3BC20F186AD7D58 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Anthologie%20de%20la%20musique%20classique%20de%20l'Inde%20du%20Sud%20-%20Disc%202/11%20Raga%20Alapana.m4a + File Folder Count4 + Library Folder Count1 + + 3774 + + Track ID3774 + NameTala Vadyam (Traditional percussion ensemble) + ArtistL. Subramaniam + AlbumAnthologie de la musique classique de l'Inde du sud + GenreClassical + KindAAC audio file + Size19892884 + Total Time821915 + Track Number12 + Track Count12 + Year1990 + Date Modified2006-08-13T08:37:30Z + Date Added2009-10-03T14:55:46Z + Bit Rate192 + Sample Rate44100 + Normalization1258 + Artwork Count1 + Persistent IDFB223EF75CE9C7F6 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Anthologie%20de%20la%20musique%20classique%20de%20l'Inde%20du%20sud/12%20Tala%20Vadyam%20(Traditional%20percussion%20ensemble).m4a + File Folder Count4 + Library Folder Count1 + + 3776 + + Track ID3776 + NameTavil solo + ArtistL. Subramaniam + AlbumAnthologie de la musique classique de l'Inde du Sud - Disc 2 + GenreClassical + KindAAC audio file + Size12722880 + Total Time525884 + Track Number12 + Track Count12 + Date Modified2006-08-13T08:37:34Z + Date Added2009-10-03T14:55:47Z + Bit Rate192 + Sample Rate44100 + Normalization1165 + Artwork Count1 + Persistent IDF8DC8E1A4D0B3BF3 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Anthologie%20de%20la%20musique%20classique%20de%20l'Inde%20du%20Sud%20-%20Disc%202/12%20Tavil%20solo.m4a + File Folder Count4 + Library Folder Count1 + + 3778 + + Track ID3778 + NameRagam et Tanam + ArtistL. Subramaniam + AlbumAnthologie de la musique classique de l'Inde du Sud - Disc 4 + GenreClassical + KindAAC audio file + Size39558148 + Total Time1638607 + Disc Number4 + Disc Count4 + Track Number1 + Track Count3 + Date Modified2006-08-13T08:37:28Z + Date Added2009-10-03T14:55:47Z + Bit Rate192 + Sample Rate44100 + Normalization2188 + Artwork Count1 + Persistent ID773B40BD9D13EC37 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Anthologie%20de%20la%20musique%20classique%20de%20l'Inde%20du%20Sud%20-%20Disc%204/4-01%20Ragam%20et%20Tanam.m4a + File Folder Count4 + Library Folder Count1 + + 3780 + + Track ID3780 + NamePallavi + ArtistL. Subramaniam + AlbumAnthologie de la musique classique de l'Inde du Sud - Disc 4 + GenreClassical + KindAAC audio file + Size33672853 + Total Time1393474 + Disc Number4 + Disc Count4 + Track Number2 + Track Count3 + Date Modified2006-08-13T08:37:24Z + Date Added2009-10-03T14:55:47Z + Bit Rate192 + Sample Rate44100 + Normalization1395 + Artwork Count1 + Persistent ID91632FC02D7B7F07 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Anthologie%20de%20la%20musique%20classique%20de%20l'Inde%20du%20Sud%20-%20Disc%204/4-02%20Pallavi.m4a + File Folder Count4 + Library Folder Count1 + + 3782 + + Track ID3782 + NameMangalam "Bhavamana" + ArtistL. Subramaniam + AlbumAnthologie de la musique classique de l'Inde du Sud - Disc 4 + GenreClassical + KindAAC audio file + Size2557160 + Total Time104604 + Disc Number4 + Disc Count4 + Track Number3 + Track Count3 + Date Modified2006-08-13T08:37:20Z + Date Added2009-10-03T14:55:47Z + Bit Rate192 + Sample Rate44100 + Normalization1888 + Artwork Count1 + Persistent ID27F39B82D16BAF47 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Anthologie%20de%20la%20musique%20classique%20de%20l'Inde%20du%20Sud%20-%20Disc%204/4-03%20Mangalam%20_Bhavamana_.m4a + File Folder Count4 + Library Folder Count1 + + 3784 + + Track ID3784 + NameVathapi Ganapathim + ArtistKunnakkudi R. Vaidyanathan + AlbumNadhadhwani + GenreWorld + KindAAC audio file + Size17598077 + Total Time726179 + Track Number1 + Track Count8 + Year1990 + Date Modified2006-08-13T06:41:02Z + Date Added2009-10-03T14:55:47Z + Bit Rate192 + Sample Rate44100 + Normalization1108 + Artwork Count1 + Persistent IDEBEC5FAD1F55E0F8 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kunnakkudi%20R.%20Vaidyanathan/Nadhadhwani/01%20Vathapi%20Ganapathim.m4a + File Folder Count4 + Library Folder Count1 + + 3786 + + Track ID3786 + NameEmtha Nerchina + ArtistKunnakkudi R. Vaidyanathan + AlbumNadhadhwani + GenreWorld + KindAAC audio file + Size11205229 + Total Time462005 + Track Number2 + Track Count8 + Year1990 + Date Modified2006-08-13T06:40:54Z + Date Added2009-10-03T14:55:47Z + Bit Rate192 + Sample Rate44100 + Normalization1118 + Artwork Count1 + Persistent ID4D98546736E56766 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kunnakkudi%20R.%20Vaidyanathan/Nadhadhwani/02%20Emtha%20Nerchina.m4a + File Folder Count4 + Library Folder Count1 + + 3788 + + Track ID3788 + NameMagudi + ArtistKunnakkudi R. Vaidyanathan + AlbumNadhadhwani + GenreWorld + KindAAC audio file + Size14163587 + Total Time584259 + Track Number3 + Track Count8 + Year1990 + Date Modified2006-08-13T06:40:50Z + Date Added2009-10-03T14:55:47Z + Bit Rate192 + Sample Rate44100 + Normalization917 + Artwork Count1 + Persistent IDA3A058823006FE28 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kunnakkudi%20R.%20Vaidyanathan/Nadhadhwani/03%20Magudi.m4a + File Folder Count4 + Library Folder Count1 + + 3790 + + Track ID3790 + NameKuthoohalapriya, Kathanakuthoohalam, Shanmukhapriya + ArtistKunnakkudi R. Vaidyanathan + AlbumNadhadhwani + GenreWorld + KindAAC audio file + Size6611526 + Total Time272182 + Track Number4 + Track Count8 + Year1990 + Date Modified2006-08-13T06:40:42Z + Date Added2009-10-03T14:55:48Z + Bit Rate192 + Sample Rate44100 + Normalization1079 + Artwork Count1 + Persistent ID2D2820AA13B31091 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kunnakkudi%20R.%20Vaidyanathan/Nadhadhwani/04%20Kuthoohalapriya,%20Kathanakuthoohalam,%20Shanmukhapriya.m4a + File Folder Count4 + Library Folder Count1 + + 3792 + + Track ID3792 + NameNadhadhwani, Hamsanadham, Hamsadhwani + ArtistKunnakkudi R. Vaidyanathan + AlbumNadhadhwani + GenreWorld + KindAAC audio file + Size7901046 + Total Time325472 + Track Number5 + Track Count8 + Year1990 + Date Modified2006-08-13T06:40:40Z + Date Added2009-10-03T14:55:48Z + Bit Rate192 + Sample Rate44100 + Normalization996 + Artwork Count1 + Persistent IDEFF2A427BB3CC8FB + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kunnakkudi%20R.%20Vaidyanathan/Nadhadhwani/05%20Nadhadhwani,%20Hamsanadham,%20Hamsadhwani.m4a + File Folder Count4 + Library Folder Count1 + + 3794 + + Track ID3794 + NameSuddha Kanada, Suddha Saveri, Dharbarikanada + ArtistKunnakkudi R. Vaidyanathan + AlbumNadhadhwani + GenreWorld + KindAAC audio file + Size12668423 + Total Time522470 + Track Number6 + Track Count8 + Year1990 + Date Modified2006-08-13T06:40:36Z + Date Added2009-10-03T14:55:48Z + Bit Rate192 + Sample Rate44100 + Normalization1027 + Artwork Count1 + Persistent ID0BEB5F6991D8B065 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kunnakkudi%20R.%20Vaidyanathan/Nadhadhwani/06%20Suddha%20Kanada,%20Suddha%20Saveri,%20Dharbarikanada.m4a + File Folder Count4 + Library Folder Count1 + + 3796 + + Track ID3796 + NameJourney to Space + ArtistKunnakkudi R. Vaidyanathan + AlbumNadhadhwani + GenreWorld + KindAAC audio file + Size10559607 + Total Time435326 + Track Number7 + Track Count8 + Year1990 + Date Modified2006-08-13T06:40:30Z + Date Added2009-10-03T14:55:48Z + Bit Rate192 + Sample Rate44100 + Normalization1120 + Artwork Count1 + Persistent ID813A7A719F61E0BD + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kunnakkudi%20R.%20Vaidyanathan/Nadhadhwani/07%20Journey%20to%20Space.m4a + File Folder Count4 + Library Folder Count1 + + 3798 + + Track ID3798 + NameAmrita Bhairavi, Amritavarshini, Sindhu Bhairavi + ArtistKunnakkudi R. Vaidyanathan + AlbumNadhadhwani + GenreWorld + KindAAC audio file + Size5510609 + Total Time226439 + Track Number8 + Track Count8 + Year1990 + Date Modified2006-08-13T06:40:26Z + Date Added2009-10-03T14:55:48Z + Bit Rate192 + Sample Rate44100 + Normalization581 + Artwork Count1 + Persistent ID573C1A3F8C3ABA09 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kunnakkudi%20R.%20Vaidyanathan/Nadhadhwani/08%20Amrita%20Bhairavi,%20Amritavarshini,%20Sindhu%20Bhairavi.m4a + File Folder Count4 + Library Folder Count1 + + 3800 + + Track ID3800 + NameSchumann (R): Piano Concerto In A Minor, Op. 54 - 1. Allegro Affettuoso) + ArtistKrystian Zimerman, Herbert Von Karajan; Berlin Philharmonic + ComposerRobert Schumann + AlbumSchumann (R); Grieg: Piano Concertos + GenreClassical + KindAAC audio file + Size22524670 + Total Time932001 + Disc Number1 + Disc Count1 + Track Number1 + Track Count6 + Year1982 + Date Modified2006-08-07T15:33:10Z + Date Added2009-10-03T14:55:48Z + Bit Rate192 + Sample Rate44100 + Normalization1198 + Artwork Count1 + Persistent ID5106DB302E1C28D6 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Krystian%20Zimerman,%20Herbert%20Von%20Karajan%3B%20Berlin%20Philharmonic/Schumann%20(R)%3B%20Grieg_%20%20Piano%20Concertos/01%20Schumann%20(R)_%20Piano%20Concerto%20In%20A%20Minor,%20Op.%2054%20-%201.%20Allegro%20Affettuoso).m4a + File Folder Count4 + Library Folder Count1 + + 3802 + + Track ID3802 + NameSchumann (R): Piano Concerto In A Minor, Op. 54 - 2. Intermezzo - Andantiono Grazioso, Attacca + ArtistKrystian Zimerman, Herbert Von Karajan; Berlin Philharmonic + ComposerRobert Schumann + AlbumSchumann (R); Grieg: Piano Concertos + GenreClassical + KindAAC audio file + Size7901837 + Total Time325937 + Disc Number1 + Disc Count1 + Track Number2 + Track Count6 + Year1982 + Date Modified2006-08-07T15:33:10Z + Date Added2009-10-03T14:55:49Z + Bit Rate192 + Sample Rate44100 + Normalization167 + Artwork Count1 + Persistent IDF59A0C89C7D1E99C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Krystian%20Zimerman,%20Herbert%20Von%20Karajan%3B%20Berlin%20Philharmonic/Schumann%20(R)%3B%20Grieg_%20%20Piano%20Concertos/02%20Schumann%20(R)_%20Piano%20Concerto%20In%20A%20Minor,%20Op.%2054%20-%202.%20Intermezzo%20-%20Andantiono%20Grazioso,%20Attacca.m4a + File Folder Count4 + Library Folder Count1 + + 3804 + + Track ID3804 + NameSchumann (R): Piano Concerto In A Minor, Op. 54 - 3. Allegro Vivace + ArtistKrystian Zimerman, Herbert Von Karajan; Berlin Philharmonic + ComposerRobert Schumann + AlbumSchumann (R); Grieg: Piano Concertos + GenreClassical + KindAAC audio file + Size15495214 + Total Time648067 + Disc Number1 + Disc Count1 + Track Number3 + Track Count6 + Year1982 + Date Modified2006-08-07T15:33:10Z + Date Added2009-10-03T14:55:49Z + Bit Rate192 + Sample Rate44100 + Normalization1198 + Artwork Count1 + Persistent ID236A2E626356F37E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Krystian%20Zimerman,%20Herbert%20Von%20Karajan%3B%20Berlin%20Philharmonic/Schumann%20(R)%3B%20Grieg_%20%20Piano%20Concertos/03%20Schumann%20(R)_%20Piano%20Concerto%20In%20A%20Minor,%20Op.%2054%20-%203.%20Allegro%20Vivace.m4a + File Folder Count4 + Library Folder Count1 + + 3806 + + Track ID3806 + NameGrieg: Piano Concerto In A Minor, Op. 16 - 1. Allegro Molto Moderato + ArtistKrystian Zimerman, Herbert Von Karajan; Berlin Philharmonic + ComposerEdvard Grieg + AlbumSchumann (R); Grieg: Piano Concertos + GenreClassical + KindAAC audio file + Size20353328 + Total Time842000 + Disc Number1 + Disc Count1 + Track Number4 + Track Count6 + Year1982 + Date Modified2006-08-07T15:33:10Z + Date Added2009-10-03T14:55:49Z + Bit Rate192 + Sample Rate44100 + Normalization1215 + Artwork Count1 + Persistent ID63301FFD96191AF8 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Krystian%20Zimerman,%20Herbert%20Von%20Karajan%3B%20Berlin%20Philharmonic/Schumann%20(R)%3B%20Grieg_%20%20Piano%20Concertos/04%20Grieg_%20Piano%20Concerto%20In%20A%20Minor,%20Op.%2016%20-%201.%20Allegro%20Molto%20Moderato.m4a + File Folder Count4 + Library Folder Count1 + + 3808 + + Track ID3808 + NameGrieg: Piano Concerto In A Minor, Op. 16 - 2. Adagio, Attacca + ArtistKrystian Zimerman, Herbert Von Karajan; Berlin Philharmonic + ComposerEdvard Grieg + AlbumSchumann (R); Grieg: Piano Concertos + GenreClassical + KindAAC audio file + Size10516532 + Total Time434002 + Disc Number1 + Disc Count1 + Track Number5 + Track Count6 + Year1982 + Date Modified2006-08-07T15:33:10Z + Date Added2009-10-03T14:55:49Z + Bit Rate192 + Sample Rate44100 + Normalization688 + Artwork Count1 + Persistent IDD8CCB56BFBAB53FF + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Krystian%20Zimerman,%20Herbert%20Von%20Karajan%3B%20Berlin%20Philharmonic/Schumann%20(R)%3B%20Grieg_%20%20Piano%20Concertos/05%20Grieg_%20Piano%20Concerto%20In%20A%20Minor,%20Op.%2016%20-%202.%20Adagio,%20Attacca.m4a + File Folder Count4 + Library Folder Count1 + + 3810 + + Track ID3810 + NameGrieg: Piano Concerto In A Minor, Op. 16 - 3. Allegro Moderato Molto E Marcato, Quasi Presto, Andante Maestoso + ArtistKrystian Zimerman, Herbert Von Karajan; Berlin Philharmonic + ComposerEdvard Grieg + AlbumSchumann (R); Grieg: Piano Concertos + GenreClassical + KindAAC audio file + Size15762798 + Total Time651016 + Disc Number1 + Disc Count1 + Track Number6 + Track Count6 + Year1982 + Date Modified2006-08-07T15:33:12Z + Date Added2009-10-03T14:55:49Z + Bit Rate192 + Sample Rate44100 + Normalization1231 + Artwork Count1 + Persistent IDFA4FF90351F68878 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Krystian%20Zimerman,%20Herbert%20Von%20Karajan%3B%20Berlin%20Philharmonic/Schumann%20(R)%3B%20Grieg_%20%20Piano%20Concertos/06%20Grieg_%20Piano%20Concerto%20In%20A%20Minor,%20Op.%2016%20-%203.%20Allegro%20Moderato%20Molto%20E%20Marcato,%20Quasi%20Presto,%20Andante%20Maestoso.m4a + File Folder Count4 + Library Folder Count1 + + 3812 + + Track ID3812 + NameChala Jata Hoon + ArtistKishore Kumar + AlbumHits All the Way + KindMPEG audio file + Size3262402 + Total Time271595 + Track Number10 + Date Modified2007-04-09T08:36:50Z + Date Added2009-10-03T14:55:50Z + Bit Rate96 + Sample Rate44100 + Artwork Count1 + Persistent ID117EEEAC6DC27575 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/kishore%20kumar/Hits%20All%20the%20Way/10%20Chala%20Jata%20Hoon.mp3 + File Folder Count4 + Library Folder Count1 + + 3814 + + Track ID3814 + NameHum Hain Rahi Pyar Ke + Artistkishore kumar + AlbumHits All the Way + GenreHindi Old hits + KindMPEG audio file + Size2473404 + Total Time205844 + Track Number2 + Date Modified2007-04-09T08:36:50Z + Date Added2009-10-03T14:55:50Z + Bit Rate96 + Sample Rate44100 + Artwork Count1 + Persistent ID60838C2D75E2A121 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/kishore%20kumar/Hits%20All%20the%20Way/02%20Hum%20Hain%20Rahi%20Pyar%20Ke.mp3 + File Folder Count4 + Library Folder Count1 + + 3816 + + Track ID3816 + NamePart I + ArtistKeith Jarrett + ComposerKeith Jarrett + AlbumThe Koln Concert + GenreJazz + KindAAC audio file + Size37811783 + Total Time1561610 + Disc Number1 + Disc Count1 + Track Number1 + Track Count4 + Year1975 + Date Modified2006-07-27T16:19:42Z + Date Added2009-10-03T14:55:50Z + Bit Rate192 + Sample Rate44100 + Play Count2 + Play Date3389984791 + Play Date UTC2011-06-03T16:56:31Z + Normalization874 + Artwork Count1 + Sort AlbumKoln Concert + Persistent ID510557EFCBAD559F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Keith%20Jarrett/The%20Koln%20Concert/01%20Part%20I.m4a + File Folder Count4 + Library Folder Count1 + + 3818 + + Track ID3818 + NamePart II A + ArtistKeith Jarrett + ComposerKeith Jarrett + AlbumThe Koln Concert + GenreJazz + KindAAC audio file + Size21674287 + Total Time894756 + Disc Number1 + Disc Count1 + Track Number2 + Track Count4 + Year1975 + Date Modified2006-07-27T16:19:44Z + Date Added2009-10-03T14:55:50Z + Bit Rate192 + Sample Rate44100 + Play Count2 + Play Date3389985685 + Play Date UTC2011-06-03T17:11:25Z + Normalization774 + Artwork Count1 + Sort AlbumKoln Concert + Persistent ID7BE6157C7A944DEE + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Keith%20Jarrett/The%20Koln%20Concert/02%20Part%20II%20A.m4a + File Folder Count4 + Library Folder Count1 + + 3820 + + Track ID3820 + NamePart II B + ArtistKeith Jarrett + ComposerKeith Jarrett + AlbumThe Koln Concert + GenreJazz + KindAAC audio file + Size26508430 + Total Time1094517 + Disc Number1 + Disc Count1 + Track Number3 + Track Count4 + Year1975 + Date Modified2006-07-27T16:19:46Z + Date Added2009-10-03T14:55:50Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3389986780 + Play Date UTC2011-06-03T17:29:40Z + Normalization781 + Artwork Count1 + Sort AlbumKoln Concert + Persistent IDF14B6F46956F15A5 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Keith%20Jarrett/The%20Koln%20Concert/03%20Part%20II%20B.m4a + File Folder Count4 + Library Folder Count1 + + 3822 + + Track ID3822 + NamePart II C + ArtistKeith Jarrett + ComposerKeith Jarrett + AlbumThe Koln Concert + GenreJazz + KindAAC audio file + Size10098304 + Total Time416843 + Disc Number1 + Disc Count1 + Track Number4 + Track Count4 + Year1975 + Date Modified2006-07-27T16:19:48Z + Date Added2009-10-03T14:55:50Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3389987197 + Play Date UTC2011-06-03T17:36:37Z + Normalization948 + Artwork Count1 + Sort AlbumKoln Concert + Persistent ID29B257311FC05657 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Keith%20Jarrett/The%20Koln%20Concert/04%20Part%20II%20C.m4a + File Folder Count4 + Library Folder Count1 + + 3824 + + Track ID3824 + NameRaga Abheri/Raga Bhimplasi + ArtistKadri Gopalnath & V. Narasinhalu Wadavati + AlbumJugalbandi - Classical Confluence + GenreClassical + KindAAC audio file + Size42782735 + Total Time1771634 + Track Number1 + Track Count3 + Date Modified2006-07-30T09:09:22Z + Date Added2009-10-03T14:55:50Z + Bit Rate192 + Sample Rate44100 + Normalization1937 + Artwork Count1 + Persistent ID334DF86DD0534586 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kadri%20Gopalnath%20&%20V.%20Narasinhalu%20Wadavati/Jugalbandi%20-%20Classical%20Confluence/01%20Raga%20Abheri_Raga%20Bhimplasi.m4a + File Folder Count4 + Library Folder Count1 + + 3826 + + Track ID3826 + NameRaga Mohana/Raga Bhoopali + ArtistKadri Gopalnath & V. Narasinhalu Wadavati + AlbumJugalbandi - Classical Confluence + GenreClassical + KindAAC audio file + Size33659938 + Total Time1394078 + Track Number2 + Track Count3 + Date Modified2006-07-30T09:09:24Z + Date Added2009-10-03T14:55:51Z + Bit Rate192 + Sample Rate44100 + Normalization2083 + Artwork Count1 + Persistent ID85070793AF56128C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kadri%20Gopalnath%20&%20V.%20Narasinhalu%20Wadavati/Jugalbandi%20-%20Classical%20Confluence/02%20Raga%20Mohana_Raga%20Bhoopali.m4a + File Folder Count4 + Library Folder Count1 + + 3828 + + Track ID3828 + NameRaga SindhuBhairavi/Raga Bhairavi + ArtistKadri Gopalnath & V. Narasinhalu Wadavati + AlbumJugalbandi - Classical Confluence + GenreClassical + KindAAC audio file + Size10449751 + Total Time432981 + Track Number3 + Track Count3 + Date Modified2006-07-30T09:09:26Z + Date Added2009-10-03T14:55:51Z + Bit Rate192 + Sample Rate44100 + Normalization1945 + Artwork Count1 + Persistent ID2289BFC1F51400E6 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kadri%20Gopalnath%20&%20V.%20Narasinhalu%20Wadavati/Jugalbandi%20-%20Classical%20Confluence/03%20Raga%20SindhuBhairavi_Raga%20Bhairavi.m4a + File Folder Count4 + Library Folder Count1 + + 3830 + + Track ID3830 + NameAlai Paayuthe + ArtistKadri Gopalnath + ComposerManikanth Kadri + AlbumDream Journey vol 1 + GenreWorld + KindAAC audio file + Size11131277 + Total Time462284 + Track Number1 + Track Count7 + Year2001 + Date Modified2006-08-13T06:40:22Z + Date Added2009-10-03T14:55:52Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3391320314 + Play Date UTC2011-06-19T03:55:14Z + Normalization2629 + Persistent ID92E6DFF8838A84C8 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kadri%20Gopalnath/Dream%20Journey%20vol%201/01%20Alai%20Paayuthe.m4a + File Folder Count4 + Library Folder Count1 + + 3832 + + Track ID3832 + NameJanani Janani + ArtistKadri Gopalnath + ComposerManikanth Kadri + AlbumDream Journey vol 1 + GenreWorld + KindAAC audio file + Size12757625 + Total Time529459 + Track Number2 + Track Count7 + Year2001 + Date Modified2006-08-13T06:40:18Z + Date Added2009-10-03T14:55:53Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3391320843 + Play Date UTC2011-06-19T04:04:03Z + Normalization1356 + Persistent IDF36DCB1A20A5B3FB + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kadri%20Gopalnath/Dream%20Journey%20vol%201/02%20Janani%20Janani.m4a + File Folder Count4 + Library Folder Count1 + + 3834 + + Track ID3834 + NameKurai Ondrum Illai + ArtistKadri Gopalnath + ComposerManikanth Kadri + AlbumDream Journey vol 1 + GenreWorld + KindAAC audio file + Size12252903 + Total Time508585 + Track Number3 + Track Count7 + Year2001 + Date Modified2006-08-13T06:40:12Z + Date Added2009-10-03T14:55:53Z + Bit Rate192 + Sample Rate44100 + Normalization2650 + Persistent ID0BFEB1F1D2230C30 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kadri%20Gopalnath/Dream%20Journey%20vol%201/03%20Kurai%20Ondrum%20Illai.m4a + File Folder Count4 + Library Folder Count1 + + 3836 + + Track ID3836 + NameRaga: Kalyana Vasantham + ArtistKadri Gopalnath + ComposerManikanth Kadri + AlbumDream Journey vol 1 + GenreWorld + KindAAC audio file + Size4750127 + Total Time198087 + Track Number4 + Track Count7 + Year2001 + Date Modified2006-08-13T06:40:06Z + Date Added2009-10-03T14:55:53Z + Bit Rate192 + Sample Rate44100 + Normalization3322 + Persistent ID0B4137B243AE0982 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kadri%20Gopalnath/Dream%20Journey%20vol%201/04%20Raga_%20Kalyana%20Vasantham.m4a + File Folder Count4 + Library Folder Count1 + + 3838 + + Track ID3838 + NameEththanai Kodi Inbam + ArtistKadri Gopalnath + ComposerManikanth Kadri + AlbumDream Journey vol 1 + GenreWorld + KindAAC audio file + Size14237026 + Total Time590574 + Track Number5 + Track Count7 + Year2001 + Date Modified2006-08-13T06:40:04Z + Date Added2009-10-03T14:55:53Z + Bit Rate192 + Sample Rate44100 + Normalization1651 + Persistent ID7A04457BD24CABCE + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kadri%20Gopalnath/Dream%20Journey%20vol%201/05%20Eththanai%20Kodi%20Inbam.m4a + File Folder Count4 + Library Folder Count1 + + 3840 + + Track ID3840 + NameRagi Tandira + ArtistKadri Gopalnath + ComposerManikanth Kadri + AlbumDream Journey vol 1 + GenreWorld + KindAAC audio file + Size10418876 + Total Time432818 + Track Number6 + Track Count7 + Year2001 + Date Modified2006-08-13T06:39:58Z + Date Added2009-10-03T14:55:53Z + Bit Rate192 + Sample Rate44100 + Normalization1714 + Persistent IDB4FF2B19A0285A0D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kadri%20Gopalnath/Dream%20Journey%20vol%201/06%20Ragi%20Tandira.m4a + File Folder Count4 + Library Folder Count1 + + 3842 + + Track ID3842 + NameEnglish Notes + ArtistKadri Gopalnath + ComposerManikanth Kadri + AlbumDream Journey vol 1 + GenreWorld + KindAAC audio file + Size7101745 + Total Time294032 + Track Number7 + Track Count7 + Year2001 + Date Modified2006-08-13T06:39:54Z + Date Added2009-10-03T14:55:53Z + Bit Rate192 + Sample Rate44100 + Normalization2406 + Persistent IDB8739716E4BC4D82 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kadri%20Gopalnath/Dream%20Journey%20vol%201/07%20English%20Notes.m4a + File Folder Count4 + Library Folder Count1 + + 3844 + + Track ID3844 + NameSayonee + ArtistJunoon + AlbumAzadi + GenreWorld + KindAAC audio file + Size7416200 + Total Time305526 + Track Number1 + Track Count15 + Date Modified2006-08-13T06:39:50Z + Date Added2009-10-03T14:55:53Z + Bit Rate192 + Sample Rate44100 + Normalization918 + Artwork Count1 + Persistent IDE00D1FC101EF9DAF + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Junoon/Azadi/01%20Sayonee.m4a + File Folder Count4 + Library Folder Count1 + + 3846 + + Track ID3846 + NameMeri Awaaz Suno + ArtistJunoon + AlbumAzadi + GenreWorld + KindAAC audio file + Size8072232 + Total Time332647 + Track Number2 + Track Count15 + Date Modified2006-08-13T06:39:46Z + Date Added2009-10-03T14:55:53Z + Bit Rate192 + Sample Rate44100 + Normalization1014 + Artwork Count1 + Persistent IDDE82B341A348847D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Junoon/Azadi/02%20Meri%20Awaaz%20Suno.m4a + File Folder Count4 + Library Folder Count1 + + 3848 + + Track ID3848 + NameKhudi + ArtistJunoon + AlbumAzadi + GenreWorld + KindAAC audio file + Size6058236 + Total Time249311 + Track Number3 + Track Count15 + Date Modified2006-08-13T06:39:42Z + Date Added2009-10-03T14:55:54Z + Bit Rate192 + Sample Rate44100 + Normalization1092 + Artwork Count1 + Persistent ID6AB6983D144D3680 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Junoon/Azadi/03%20Khudi.m4a + File Folder Count4 + Library Folder Count1 + + 3850 + + Track ID3850 + NameYaar Bina + ArtistJunoon + AlbumAzadi + GenreWorld + KindAAC audio file + Size5526756 + Total Time227182 + Track Number4 + Track Count15 + Date Modified2006-08-13T06:39:40Z + Date Added2009-10-03T14:55:54Z + Bit Rate192 + Sample Rate44100 + Normalization1059 + Artwork Count1 + Persistent IDA93B567A32741520 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Junoon/Azadi/04%20Yaar%20Bina.m4a + File Folder Count4 + Library Folder Count1 + + 3852 + + Track ID3852 + NameMukh Gae + ArtistJunoon + AlbumAzadi + GenreWorld + KindAAC audio file + Size8098433 + Total Time333715 + Track Number5 + Track Count15 + Date Modified2006-08-13T06:39:38Z + Date Added2009-10-03T14:55:54Z + Bit Rate192 + Sample Rate44100 + Normalization924 + Artwork Count1 + Persistent ID687CE56748388723 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Junoon/Azadi/05%20Mukh%20Gae.m4a + File Folder Count4 + Library Folder Count1 + + 3854 + + Track ID3854 + NameHeer + ArtistJunoon + AlbumAzadi + GenreWorld + KindAAC audio file + Size7062398 + Total Time290898 + Track Number6 + Track Count15 + Date Modified2006-08-13T06:39:34Z + Date Added2009-10-03T14:55:54Z + Bit Rate192 + Sample Rate44100 + Normalization943 + Artwork Count1 + Persistent ID43AB15622BF10A3E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Junoon/Azadi/06%20Heer.m4a + File Folder Count4 + Library Folder Count1 + + 3856 + + Track ID3856 + NameWahda Hoo + ArtistJunoon + AlbumAzadi + GenreWorld + KindAAC audio file + Size7087509 + Total Time291943 + Track Number7 + Track Count15 + Date Modified2006-08-13T06:39:30Z + Date Added2009-10-03T14:55:54Z + Bit Rate192 + Sample Rate44100 + Normalization899 + Artwork Count1 + Persistent IDCF4A02ACE1A2B1F3 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Junoon/Azadi/07%20Wahda%20Hoo.m4a + File Folder Count4 + Library Folder Count1 + + 3858 + + Track ID3858 + NameKyun Parishan + ArtistJunoon + AlbumAzadi + GenreWorld + KindAAC audio file + Size5737137 + Total Time235936 + Track Number8 + Track Count15 + Date Modified2006-08-13T06:39:28Z + Date Added2009-10-03T14:55:54Z + Bit Rate192 + Sample Rate44100 + Normalization963 + Artwork Count1 + Persistent ID1293852C7E2937CB + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Junoon/Azadi/08%20Kyun%20Parishan.m4a + File Folder Count4 + Library Folder Count1 + + 3860 + + Track ID3860 + NameMahiwal + ArtistJunoon + AlbumAzadi + GenreWorld + KindAAC audio file + Size8754082 + Total Time360813 + Track Number9 + Track Count15 + Date Modified2006-08-13T06:39:24Z + Date Added2009-10-03T14:55:54Z + Bit Rate192 + Sample Rate44100 + Normalization1030 + Artwork Count1 + Persistent ID0C762D78D78C7DB1 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Junoon/Azadi/09%20Mahiwal.m4a + File Folder Count4 + Library Folder Count1 + + 3862 + + Track ID3862 + NameKisne Suna + ArtistJunoon + AlbumAzadi + GenreWorld + KindAAC audio file + Size5763699 + Total Time237051 + Track Number10 + Track Count15 + Date Modified2006-08-13T06:39:20Z + Date Added2009-10-03T14:55:55Z + Bit Rate192 + Sample Rate44100 + Normalization909 + Artwork Count1 + Persistent IDE0CB4CF446887C04 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Junoon/Azadi/10%20Kisne%20Suna.m4a + File Folder Count4 + Library Folder Count1 + + 3864 + + Track ID3864 + NameLal Meri Pat + ArtistJunoon + AlbumAzadi + GenreWorld + KindAAC audio file + Size7748353 + Total Time319249 + Track Number11 + Track Count15 + Date Modified2006-08-13T06:39:18Z + Date Added2009-10-03T14:55:55Z + Bit Rate192 + Sample Rate44100 + Normalization906 + Artwork Count1 + Persistent ID6514CDA229D09DBD + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Junoon/Azadi/11%20Lal%20Meri%20Pat.m4a + File Folder Count4 + Library Folder Count1 + + 3866 + + Track ID3866 + NameDil Nahin Lag Raha + ArtistJunoon + AlbumAzadi + GenreWorld + KindAAC audio file + Size5734991 + Total Time235843 + Track Number12 + Track Count15 + Date Modified2006-08-13T06:39:14Z + Date Added2009-10-03T14:55:55Z + Bit Rate192 + Sample Rate44100 + Normalization949 + Artwork Count1 + Persistent ID18C965876072104E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Junoon/Azadi/12%20Dil%20Nahin%20Lag%20Raha.m4a + File Folder Count4 + Library Folder Count1 + + 3868 + + Track ID3868 + NameLoishay + ArtistJunoon + AlbumAzadi + GenreWorld + KindAAC audio file + Size5300292 + Total Time217755 + Track Number13 + Track Count15 + Date Modified2006-08-13T06:39:12Z + Date Added2009-10-03T14:55:55Z + Bit Rate192 + Sample Rate44100 + Normalization910 + Artwork Count1 + Persistent ID7E543F949F7465D2 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Junoon/Azadi/13%20Loishay.m4a + File Folder Count4 + Library Folder Count1 + + 3870 + + Track ID3870 + NameSaeein Alaap + ArtistJunoon + AlbumAzadi + GenreWorld + KindAAC audio file + Size1325568 + Total Time53009 + Track Number14 + Track Count15 + Date Modified2006-08-13T06:39:10Z + Date Added2009-10-03T14:55:55Z + Bit Rate192 + Sample Rate44100 + Normalization1207 + Artwork Count1 + Persistent ID5EB968A945AE2176 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Junoon/Azadi/14%20Saeein%20Alaap.m4a + File Folder Count4 + Library Folder Count1 + + 3872 + + Track ID3872 + NameSaeein + ArtistJunoon + AlbumAzadi + GenreWorld + KindAAC audio file + Size6784242 + Total Time279427 + Track Number15 + Track Count15 + Date Modified2006-08-13T06:39:10Z + Date Added2009-10-03T14:55:55Z + Bit Rate192 + Sample Rate44100 + Normalization877 + Artwork Count1 + Persistent ID2F31B1864638D709 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Junoon/Azadi/15%20Saeein.m4a + File Folder Count4 + Library Folder Count1 + + 3874 + + Track ID3874 + NameTurnaround + ArtistJoshua Redman + ComposerColeman, Ornette + AlbumWish + GenreJazz + KindAAC audio file + Size9310349 + Total Time384706 + Disc Number1 + Disc Count1 + Track Number1 + Track Count10 + Year1993 + Date Modified2006-08-07T13:59:58Z + Date Added2009-10-03T14:55:55Z + Bit Rate192 + Sample Rate44100 + Play Count3 + Play Date3428048479 + Play Date UTC2012-08-17T06:11:19Z + Normalization1259 + Artwork Count1 + Persistent ID37BBBF0051A5B8B2 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Joshua%20Redman/Wish/01%20Turnaround.m4a + File Folder Count4 + Library Folder Count1 + + 3876 + + Track ID3876 + NameSoul Dance + ArtistJoshua Redman + ComposerRedman, Joshua + AlbumWish + GenreJazz + KindAAC audio file + Size9526097 + Total Time392903 + Disc Number1 + Disc Count1 + Track Number2 + Track Count10 + Year1993 + Date Modified2006-08-07T13:59:58Z + Date Added2009-10-03T14:55:55Z + Bit Rate192 + Sample Rate44100 + Play Count2 + Play Date3422530416 + Play Date UTC2012-06-14T09:23:36Z + Normalization1259 + Artwork Count1 + Persistent ID45BD34E120BD9E78 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Joshua%20Redman/Wish/02%20Soul%20Dance.m4a + File Folder Count4 + Library Folder Count1 + + 3878 + + Track ID3878 + NameMake Sure You're Sure + ArtistJoshua Redman + ComposerWonder, Stevie + AlbumWish + GenreJazz + KindAAC audio file + Size7907405 + Total Time326262 + Disc Number1 + Disc Count1 + Track Number3 + Track Count10 + Year1993 + Date Modified2006-08-07T13:59:58Z + Date Added2009-10-03T14:55:56Z + Bit Rate192 + Sample Rate44100 + Play Count2 + Play Date3422530742 + Play Date UTC2012-06-14T09:29:02Z + Normalization1259 + Artwork Count1 + Persistent ID0D307E9611BD8037 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Joshua%20Redman/Wish/03%20Make%20Sure%20You're%20Sure.m4a + File Folder Count4 + Library Folder Count1 + + 3880 + + Track ID3880 + NameThe Deserving Many + ArtistJoshua Redman + ComposerRedman, Joshua + AlbumWish + GenreJazz + KindAAC audio file + Size8244333 + Total Time339938 + Disc Number1 + Disc Count1 + Track Number4 + Track Count10 + Year1993 + Date Modified2006-08-07T13:59:58Z + Date Added2009-10-03T14:55:56Z + Bit Rate192 + Sample Rate44100 + Play Count2 + Play Date3422531082 + Play Date UTC2012-06-14T09:34:42Z + Normalization1259 + Artwork Count1 + Sort NameDeserving Many + Persistent IDEB28943F5B85FD68 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Joshua%20Redman/Wish/04%20The%20Deserving%20Many.m4a + File Folder Count4 + Library Folder Count1 + + 3882 + + Track ID3882 + NameWe Had A Sister + ArtistJoshua Redman + ComposerMetheny, Pat + AlbumWish + GenreJazz + KindAAC audio file + Size8425288 + Total Time347415 + Disc Number1 + Disc Count1 + Track Number5 + Track Count10 + Year1993 + Date Modified2006-08-07T13:59:58Z + Date Added2009-10-03T14:55:56Z + Bit Rate192 + Sample Rate44100 + Play Count2 + Play Date3422531429 + Play Date UTC2012-06-14T09:40:29Z + Normalization1259 + Artwork Count1 + Persistent IDF0DE2C404061C7CB + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Joshua%20Redman/Wish/05%20We%20Had%20A%20Sister.m4a + File Folder Count4 + Library Folder Count1 + + 3884 + + Track ID3884 + NameMoose The Mooche + ArtistJoshua Redman + ComposerParker, Charlie + AlbumWish + GenreJazz + KindAAC audio file + Size5158784 + Total Time212484 + Disc Number1 + Disc Count1 + Track Number6 + Track Count10 + Year1993 + Date Modified2006-08-07T13:59:58Z + Date Added2009-10-03T14:55:56Z + Bit Rate192 + Sample Rate44100 + Play Count2 + Play Date3422531642 + Play Date UTC2012-06-14T09:44:02Z + Normalization1259 + Artwork Count1 + Persistent ID9F6B8515E0FA7CDF + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Joshua%20Redman/Wish/06%20Moose%20The%20Mooche.m4a + File Folder Count4 + Library Folder Count1 + + 3886 + + Track ID3886 + NameTears In Heaven + ArtistJoshua Redman + ComposerClapton, Eric & Jennings, Will + AlbumWish + GenreJazz + KindAAC audio file + Size4971022 + Total Time204241 + Disc Number1 + Disc Count1 + Track Number7 + Track Count10 + Year1993 + Date Modified2006-08-07T13:59:58Z + Date Added2009-10-03T14:55:56Z + Bit Rate192 + Sample Rate44100 + Play Count3 + Play Date3430149649 + Play Date UTC2012-09-10T13:50:49Z + Normalization1259 + Artwork Count1 + Persistent ID9DB7501CC8D4E0BA + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Joshua%20Redman/Wish/07%20Tears%20In%20Heaven.m4a + File Folder Count4 + Library Folder Count1 + + 3888 + + Track ID3888 + NameWhittlin' + ArtistJoshua Redman + ComposerMetheny, Pat + AlbumWish + GenreJazz + KindAAC audio file + Size7819039 + Total Time322872 + Disc Number1 + Disc Count1 + Track Number8 + Track Count10 + Year1993 + Date Modified2006-08-07T13:59:56Z + Date Added2009-10-03T14:55:56Z + Bit Rate192 + Sample Rate44100 + Play Count3 + Play Date3430149970 + Play Date UTC2012-09-10T13:56:10Z + Normalization1259 + Artwork Count1 + Persistent IDADD339B9621152BF + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Joshua%20Redman/Wish/08%20Whittlin'.m4a + File Folder Count4 + Library Folder Count1 + + 3890 + + Track ID3890 + NameWish (Live) + ArtistJoshua Redman + ComposerRedman, Joshua + AlbumWish + GenreJazz + KindAAC audio file + Size10792578 + Total Time445241 + Disc Number1 + Disc Count1 + Track Number9 + Track Count10 + Year1993 + Date Modified2006-08-07T13:59:56Z + Date Added2009-10-03T14:55:56Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Persistent ID113F92A83323DF75 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Joshua%20Redman/Wish/09%20Wish%20(Live).m4a + File Folder Count4 + Library Folder Count1 + + 3892 + + Track ID3892 + NameBlues For Pat (Live) + ArtistJoshua Redman + ComposerHaden, Charlie + AlbumWish + GenreJazz + KindAAC audio file + Size17617381 + Total Time727502 + Disc Number1 + Disc Count1 + Track Number10 + Track Count10 + Year1993 + Date Modified2006-08-07T13:59:56Z + Date Added2009-10-03T14:55:56Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Persistent IDFBAD9D5F4FD4C66E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Joshua%20Redman/Wish/10%20Blues%20For%20Pat%20(Live).m4a + File Folder Count4 + Library Folder Count1 + + 3894 + + Track ID3894 + NameMozart: Symphony #40 In G Minor, K 550 - 1. Molto Allegro + ArtistJohn Eliot Gardiner; English Baroque Soloists + ComposerMOZART Wolfgang Amadeus (1756-1791) + AlbumMozart: Symphonies #40 & 41, "Jupiter" + GenreClassical + KindAAC audio file + Size10142006 + Total Time418004 + Disc Number1 + Disc Count1 + Track Number1 + Track Count8 + Year1992 + Date Modified2006-08-08T04:04:06Z + Date Added2009-10-03T14:55:58Z + Bit Rate192 + Sample Rate44100 + Normalization1206 + Artwork Count1 + Persistent ID1B6EF69FBDA18A6F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/John%20Eliot%20Gardiner%3B%20English%20Baroque%20Soloists/Mozart_%20Symphonies%20%2340%20&%2041,%20_Jupiter_/01%20Mozart_%20Symphony%20%2340%20In%20G%20Minor,%20K%20550%20-%201.%20Molto%20Allegro.m4a + File Folder Count4 + Library Folder Count1 + + 3896 + + Track ID3896 + NameMozart: Symphony #40 In G Minor, K 550 - 2. Andante + ArtistJohn Eliot Gardiner; English Baroque Soloists + ComposerMOZART Wolfgang Amadeus (1756-1791) + AlbumMozart: Symphonies #40 & 41, "Jupiter" + GenreClassical + KindAAC audio file + Size20283769 + Total Time837008 + Disc Number1 + Disc Count1 + Track Number2 + Track Count8 + Year1992 + Date Modified2006-08-08T04:04:06Z + Date Added2009-10-03T14:55:58Z + Bit Rate192 + Sample Rate44100 + Normalization812 + Artwork Count1 + Persistent IDB3EB5A3E84E9BB54 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/John%20Eliot%20Gardiner%3B%20English%20Baroque%20Soloists/Mozart_%20Symphonies%20%2340%20&%2041,%20_Jupiter_/02%20Mozart_%20Symphony%20%2340%20In%20G%20Minor,%20K%20550%20-%202.%20Andante.m4a + File Folder Count4 + Library Folder Count1 + + 3898 + + Track ID3898 + NameMozart: Symphony #40 In G Minor, K 550 - 3. Menuetto: Allegretto - Trio + ArtistJohn Eliot Gardiner; English Baroque Soloists + ComposerMOZART Wolfgang Amadeus (1756-1791) + AlbumMozart: Symphonies #40 & 41, "Jupiter" + GenreClassical + KindAAC audio file + Size7232383 + Total Time297678 + Disc Number1 + Disc Count1 + Track Number3 + Track Count8 + Year1992 + Date Modified2006-08-08T04:04:06Z + Date Added2009-10-03T14:55:58Z + Bit Rate192 + Sample Rate44100 + Normalization1041 + Artwork Count1 + Persistent IDBA1F8544E042F0AE + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/John%20Eliot%20Gardiner%3B%20English%20Baroque%20Soloists/Mozart_%20Symphonies%20%2340%20&%2041,%20_Jupiter_/03%20Mozart_%20Symphony%20%2340%20In%20G%20Minor,%20K%20550%20-%203.%20Menuetto_%20Allegretto%20-%20Trio.m4a + File Folder Count4 + Library Folder Count1 + + 3900 + + Track ID3900 + NameMozart: Symphony #40 In G Minor, K 550 - 4. Finale: Allegro Assai + ArtistJohn Eliot Gardiner; English Baroque Soloists + ComposerMOZART Wolfgang Amadeus (1756-1791) + AlbumMozart: Symphonies #40 & 41, "Jupiter" + GenreClassical + KindAAC audio file + Size13410963 + Total Time553353 + Disc Number1 + Disc Count1 + Track Number4 + Track Count8 + Year1992 + Date Modified2006-08-08T04:04:06Z + Date Added2009-10-03T14:55:59Z + Bit Rate192 + Sample Rate44100 + Normalization1252 + Artwork Count1 + Persistent ID72B127BDC777F629 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/John%20Eliot%20Gardiner%3B%20English%20Baroque%20Soloists/Mozart_%20Symphonies%20%2340%20&%2041,%20_Jupiter_/04%20Mozart_%20Symphony%20%2340%20In%20G%20Minor,%20K%20550%20-%204.%20Finale_%20Allegro%20Assai.m4a + File Folder Count4 + Library Folder Count1 + + 3902 + + Track ID3902 + NameMozart: Symphony #41 In C, K 551, "Jupiter" - 1. Allegro Vivace + ArtistJohn Eliot Gardiner; English Baroque Soloists + ComposerMOZART Wolfgang Amadeus (1756-1791) + AlbumMozart: Symphonies #40 & 41, "Jupiter" + GenreClassical + KindAAC audio file + Size16944577 + Total Time699012 + Disc Number1 + Disc Count1 + Track Number5 + Track Count8 + Year1992 + Date Modified2006-08-08T04:04:04Z + Date Added2009-10-03T14:55:59Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Persistent ID7318A2EDBDB26F34 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/John%20Eliot%20Gardiner%3B%20English%20Baroque%20Soloists/Mozart_%20Symphonies%20%2340%20&%2041,%20_Jupiter_/05%20Mozart_%20Symphony%20%2341%20In%20C,%20K%20551,%20_Jupiter_%20-%201.%20Allegro%20Vivace.m4a + File Folder Count4 + Library Folder Count1 + + 3904 + + Track ID3904 + NameMozart: Symphony #41 In C, K 551, "Jupiter" - 2. Andante Cantabile + ArtistJohn Eliot Gardiner; English Baroque Soloists + ComposerMOZART Wolfgang Amadeus (1756-1791) + AlbumMozart: Symphonies #40 & 41, "Jupiter" + GenreClassical + KindAAC audio file + Size15928077 + Total Time657007 + Disc Number1 + Disc Count1 + Track Number6 + Track Count8 + Year1992 + Date Modified2006-08-08T04:04:04Z + Date Added2009-10-03T14:55:59Z + Bit Rate192 + Sample Rate44100 + Normalization1026 + Artwork Count1 + Persistent ID11A02B77BB7ECD8E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/John%20Eliot%20Gardiner%3B%20English%20Baroque%20Soloists/Mozart_%20Symphonies%20%2340%20&%2041,%20_Jupiter_/06%20Mozart_%20Symphony%20%2341%20In%20C,%20K%20551,%20_Jupiter_%20-%202.%20Andante%20Cantabile.m4a + File Folder Count4 + Library Folder Count1 + + 3906 + + Track ID3906 + NameMozart: Symphony #41 In C, K 551, "Jupiter" - 3. Menuetto: Allegretto - Trio + ArtistJohn Eliot Gardiner; English Baroque Soloists + ComposerMOZART Wolfgang Amadeus (1756-1791) + AlbumMozart: Symphonies #40 & 41, "Jupiter" + GenreClassical + KindAAC audio file + Size7784773 + Total Time320503 + Disc Number1 + Disc Count1 + Track Number7 + Track Count8 + Year1992 + Date Modified2006-08-08T04:04:04Z + Date Added2009-10-03T14:55:59Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Persistent ID8254420B99C9B992 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/John%20Eliot%20Gardiner%3B%20English%20Baroque%20Soloists/Mozart_%20Symphonies%20%2340%20&%2041,%20_Jupiter_/07%20Mozart_%20Symphony%20%2341%20In%20C,%20K%20551,%20_Jupiter_%20-%203.%20Menuetto_%20Allegretto%20-%20Trio.m4a + File Folder Count4 + Library Folder Count1 + + 3908 + + Track ID3908 + NameMozart: Symphony #41 In C, K 551, "Jupiter" - 4. Finale: Molto Allegro + ArtistJohn Eliot Gardiner; English Baroque Soloists + ComposerMOZART Wolfgang Amadeus (1756-1791) + AlbumMozart: Symphonies #40 & 41, "Jupiter" + GenreClassical + KindAAC audio file + Size16890161 + Total Time699522 + Disc Number1 + Disc Count1 + Track Number8 + Track Count8 + Year1992 + Date Modified2006-08-08T04:04:04Z + Date Added2009-10-03T14:55:59Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Persistent ID118135872E241311 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/John%20Eliot%20Gardiner%3B%20English%20Baroque%20Soloists/Mozart_%20Symphonies%20%2340%20&%2041,%20_Jupiter_/08%20Mozart_%20Symphony%20%2341%20In%20C,%20K%20551,%20_Jupiter_%20-%204.%20Finale_%20Molto%20Allegro.m4a + File Folder Count4 + Library Folder Count1 + + 3910 + + Track ID3910 + NameMy Favorite Things + ArtistJohn Coltrane + ComposerRichard Rodgers & Oscar Hammerstein + AlbumMy Favorite Things + GenreJazz + KindAAC audio file + Size19857464 + Total Time824005 + Disc Number1 + Disc Count1 + Track Number1 + Track Count4 + Year1961 + Date Modified2006-07-29T02:14:42Z + Date Added2009-10-03T14:56:00Z + Bit Rate192 + Sample Rate44100 + Play Count3 + Play Date3421814491 + Play Date UTC2012-06-06T02:31:31Z + Normalization986 + Artwork Count1 + Persistent ID9D22C3369D79BDD6 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/John%20Coltrane/My%20Favorite%20Things/01%20My%20Favorite%20Things.m4a + File Folder Count4 + Library Folder Count1 + + 3912 + + Track ID3912 + NameEverytime We Say Goodbye + ArtistJohn Coltrane + ComposerCole Porter + AlbumMy Favorite Things + GenreJazz + KindAAC audio file + Size8224551 + Total Time343212 + Disc Number1 + Disc Count1 + Track Number2 + Track Count4 + Year1961 + Date Modified2006-07-29T02:14:42Z + Date Added2009-10-03T14:56:00Z + Bit Rate192 + Sample Rate44100 + Normalization501 + Artwork Count1 + Persistent ID66630F00EAF672CA + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/John%20Coltrane/My%20Favorite%20Things/02%20Everytime%20We%20Say%20Goodbye.m4a + File Folder Count4 + Library Folder Count1 + + 3914 + + Track ID3914 + NameSummertime + ArtistJohn Coltrane + ComposerDu Bose Heyward & George Gershwin + AlbumMy Favorite Things + GenreJazz + KindAAC audio file + Size16752341 + Total Time695668 + Disc Number1 + Disc Count1 + Track Number3 + Track Count4 + Year1961 + Date Modified2006-07-29T02:14:42Z + Date Added2009-10-03T14:56:00Z + Bit Rate192 + Sample Rate44100 + Normalization1184 + Artwork Count1 + Persistent IDC9F6ED7879179675 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/John%20Coltrane/My%20Favorite%20Things/03%20Summertime.m4a + File Folder Count4 + Library Folder Count1 + + 3916 + + Track ID3916 + NameBut Not For Me + ArtistJohn Coltrane + ComposerGeorge & Ira Gershwin + AlbumMy Favorite Things + GenreJazz + KindAAC audio file + Size13916857 + Total Time574483 + Disc Number1 + Disc Count1 + Track Number4 + Track Count4 + Year1961 + Date Modified2006-07-29T02:14:44Z + Date Added2009-10-03T14:56:00Z + Bit Rate192 + Sample Rate44100 + Normalization972 + Artwork Count1 + Persistent IDB80A79285431AB29 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/John%20Coltrane/My%20Favorite%20Things/04%20But%20Not%20For%20Me.m4a + File Folder Count4 + Library Folder Count1 + + 3918 + + Track ID3918 + NameSymphony No. 4 in E Minor, Op. 98: 1: Allegro non troppo + ArtistJohannes Brahms + AlbumSymphony No. 4 + GenreClassical + KindAAC audio file + Size19464819 + Total Time807008 + Track Number1 + Track Count6 + Date Modified2006-08-08T06:45:36Z + Date Added2009-10-03T14:56:02Z + Bit Rate192 + Sample Rate44100 + Normalization900 + Artwork Count1 + Persistent ID5B1845F9611CBC79 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Johannes%20Brahms/Symphony%20No.%204/01%20Symphony%20No.%204%20in%20E%20Minor,%20Op.%2098_%201_%20Allegro%20non%20troppo.m4a + File Folder Count4 + Library Folder Count1 + + 3920 + + Track ID3920 + NameSymphony No. 4 in E Minor, Op. 98: 2: Andante moderato + ArtistJohannes Brahms + AlbumSymphony No. 4 + GenreClassical + KindAAC audio file + Size18749878 + Total Time777007 + Track Number2 + Track Count6 + Date Modified2006-08-08T06:45:34Z + Date Added2009-10-03T14:56:02Z + Bit Rate192 + Sample Rate44100 + Normalization933 + Artwork Count1 + Persistent ID953F39B7CD7F1D5A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Johannes%20Brahms/Symphony%20No.%204/02%20Symphony%20No.%204%20in%20E%20Minor,%20Op.%2098_%202_%20Andante%20moderato.m4a + File Folder Count4 + Library Folder Count1 + + 3922 + + Track ID3922 + NameSymphony No. 4 in E Minor, Op. 98: 3: Allegro giocoso - Poco meno presto + ArtistJohannes Brahms + AlbumSymphony No. 4 + GenreClassical + KindAAC audio file + Size9737054 + Total Time404002 + Track Number3 + Track Count6 + Date Modified2006-08-08T06:45:34Z + Date Added2009-10-03T14:56:02Z + Bit Rate192 + Sample Rate44100 + Normalization1076 + Artwork Count1 + Persistent ID0ECD9848DBC4879A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Johannes%20Brahms/Symphony%20No.%204/03%20Symphony%20No.%204%20in%20E%20Minor,%20Op.%2098_%203_%20Allegro%20giocoso%20-%20Poco%20meno%20presto.m4a + File Folder Count4 + Library Folder Count1 + + 3924 + + Track ID3924 + NameSymphony No. 4 in E Minor, Op. 98: 4: Allegro energico e passionato - Più allegro + ArtistJohannes Brahms + AlbumSymphony No. 4 + GenreClassical + KindAAC audio file + Size15427240 + Total Time642007 + Track Number4 + Track Count6 + Date Modified2006-08-08T06:45:34Z + Date Added2009-10-03T14:56:02Z + Bit Rate192 + Sample Rate44100 + Normalization940 + Artwork Count1 + Persistent ID1ECDBD61F4CC1DF0 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Johannes%20Brahms/Symphony%20No.%204/04%20Symphony%20No.%204%20in%20E%20Minor,%20Op.%2098_%204_%20Allegro%20energico%20e%20passionato%20-%20Piu%CC%80%20allegro.m4a + File Folder Count4 + Library Folder Count1 + + 3926 + + Track ID3926 + NameAcademic Festival Overture, Op. 80 + ArtistJohannes Brahms + AlbumSymphony No. 4 + GenreClassical + KindAAC audio file + Size15965256 + Total Time663021 + Track Number5 + Track Count6 + Date Modified2006-08-08T06:45:34Z + Date Added2009-10-03T14:56:03Z + Bit Rate192 + Sample Rate44100 + Normalization1251 + Artwork Count1 + Persistent ID1A01D59FA7F697CB + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Johannes%20Brahms/Symphony%20No.%204/05%20Academic%20Festival%20Overture,%20Op.%2080.m4a + File Folder Count4 + Library Folder Count1 + + 3928 + + Track ID3928 + NameTragic Overture, Op. 81 + ArtistJohannes Brahms + AlbumSymphony No. 4 + GenreClassical + KindAAC audio file + Size20939343 + Total Time864338 + Track Number6 + Track Count6 + Date Modified2006-08-08T06:45:32Z + Date Added2009-10-03T14:56:03Z + Bit Rate192 + Sample Rate44100 + Normalization810 + Artwork Count1 + Persistent ID7B38562F12A71E93 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Johannes%20Brahms/Symphony%20No.%204/06%20Tragic%20Overture,%20Op.%2081.m4a + File Folder Count4 + Library Folder Count1 + + 3930 + + Track ID3930 + NameFoxy Lady + ArtistJimi Hendrix + ComposerJimi Hendrix + AlbumAre You Experienced? + GenreRock + KindAAC audio file + Size4877108 + Total Time199760 + Disc Number1 + Disc Count1 + Track Number1 + Track Count17 + Year1967 + Date Modified2008-10-13T13:17:50Z + Date Added2009-10-03T14:56:05Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3363362179 + Play Date UTC2010-07-30T13:46:19Z + Normalization6481 + Artwork Count1 + Persistent ID726F8ED1C37D3C5E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jimi%20Hendrix/Are%20You%20Experienced_/01%20Foxy%20Lady.m4a + File Folder Count4 + Library Folder Count1 + + 3932 + + Track ID3932 + NameManic Depression + ArtistJimi Hendrix + ComposerJimi Hendrix + AlbumAre You Experienced? + GenreRock + KindAAC audio file + Size5484947 + Total Time222400 + Disc Number1 + Disc Count1 + Track Number2 + Track Count17 + Year1967 + Date Modified2008-10-05T08:14:58Z + Date Added2009-10-03T14:56:05Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3363362402 + Play Date UTC2010-07-30T13:50:02Z + Normalization13266 + Artwork Count2 + Persistent ID3E7A3F45936B7A63 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jimi%20Hendrix/Are%20You%20Experienced_/02%20Manic%20Depression.m4a + File Folder Count4 + Library Folder Count1 + + 3934 + + Track ID3934 + NameRed House + ArtistJimi Hendrix + ComposerJimi Hendrix + AlbumAre You Experienced? + GenreRock + KindAAC audio file + Size5370496 + Total Time224066 + Disc Number1 + Disc Count1 + Track Number3 + Track Count17 + Year1967 + Date Modified2008-10-05T08:14:58Z + Date Added2009-10-03T14:56:05Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3363362626 + Play Date UTC2010-07-30T13:53:46Z + Normalization2940 + Artwork Count2 + Persistent ID958AC2119FA15559 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jimi%20Hendrix/Are%20You%20Experienced_/03%20Red%20House.m4a + File Folder Count4 + Library Folder Count1 + + 3936 + + Track ID3936 + NameCan You See Me + ArtistJimi Hendrix + ComposerJimi Hendrix + AlbumAre You Experienced? + GenreRock + KindAAC audio file + Size3782535 + Total Time152800 + Disc Number1 + Disc Count1 + Track Number4 + Track Count17 + Year1967 + Date Modified2008-10-05T08:14:59Z + Date Added2009-10-03T14:56:05Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3363362773 + Play Date UTC2010-07-30T13:56:13Z + Normalization7847 + Artwork Count2 + Persistent ID649CA3F6EC9592BD + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jimi%20Hendrix/Are%20You%20Experienced_/04%20Can%20You%20See%20Me.m4a + File Folder Count4 + Library Folder Count1 + + 3938 + + Track ID3938 + NameLove Or Confusion + ArtistJimi Hendrix + ComposerJimi Hendrix + AlbumAre You Experienced? + GenreRock + KindAAC audio file + Size4696692 + Total Time193266 + Disc Number1 + Disc Count1 + Track Number5 + Track Count17 + Year1967 + Date Modified2008-10-05T08:14:59Z + Date Added2009-10-03T14:56:05Z + Bit Rate192 + Sample Rate44100 + Normalization11502 + Artwork Count2 + Persistent ID2945976D54347C39 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jimi%20Hendrix/Are%20You%20Experienced_/05%20Love%20Or%20Confusion.m4a + File Folder Count4 + Library Folder Count1 + + 3940 + + Track ID3940 + NameI Don't Live Today + ArtistJimi Hendrix + ComposerJimi Hendrix + AlbumAre You Experienced? + GenreRock + KindAAC audio file + Size5635141 + Total Time235066 + Disc Number1 + Disc Count1 + Track Number6 + Track Count17 + Year1967 + Date Modified2008-10-05T08:15:00Z + Date Added2009-10-03T14:56:05Z + Bit Rate192 + Sample Rate44100 + Normalization6938 + Artwork Count2 + Persistent IDFA0CD545EDDCE613 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jimi%20Hendrix/Are%20You%20Experienced_/06%20I%20Don't%20Live%20Today.m4a + File Folder Count4 + Library Folder Count1 + + 3942 + + Track ID3942 + NameMay This Be Love + ArtistJimi Hendrix + ComposerJimi Hendrix + AlbumAre You Experienced? + GenreRock + KindAAC audio file + Size4716050 + Total Time191173 + Disc Number1 + Disc Count1 + Track Number7 + Track Count17 + Year1967 + Date Modified2008-10-05T08:15:00Z + Date Added2009-10-03T14:56:05Z + Bit Rate192 + Sample Rate44100 + Normalization2540 + Artwork Count2 + Persistent IDC0CE215C236826F6 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jimi%20Hendrix/Are%20You%20Experienced_/07%20May%20This%20Be%20Love.m4a + File Folder Count4 + Library Folder Count1 + + 3944 + + Track ID3944 + NameFire + ArtistJimi Hendrix + ComposerJimi Hendrix + AlbumAre You Experienced? + GenreRock + KindAAC audio file + Size3942379 + Total Time165093 + Disc Number1 + Disc Count1 + Track Number8 + Track Count17 + Year1967 + Date Modified2008-10-05T08:15:01Z + Date Added2009-10-03T14:56:06Z + Bit Rate192 + Sample Rate44100 + Normalization8023 + Artwork Count2 + Persistent IDBB469802B18B51D9 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jimi%20Hendrix/Are%20You%20Experienced_/08%20Fire.m4a + File Folder Count4 + Library Folder Count1 + + 3946 + + Track ID3946 + NameThird Stone From The Sun + ArtistJimi Hendrix + ComposerJimi Hendrix + AlbumAre You Experienced? + GenreRock + KindAAC audio file + Size9662139 + Total Time404066 + Disc Number1 + Disc Count1 + Track Number9 + Track Count17 + Year1967 + Date Modified2008-10-13T13:49:11Z + Date Added2009-10-03T14:56:06Z + Bit Rate192 + Sample Rate44100 + Normalization3072 + Artwork Count1 + Persistent ID600CB2830638A1B2 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jimi%20Hendrix/Are%20You%20Experienced_/09%20Third%20Stone%20From%20The%20Sun.m4a + File Folder Count4 + Library Folder Count1 + + 3948 + + Track ID3948 + NameRemember + ArtistJimi Hendrix + ComposerJimi Hendrix + AlbumAre You Experienced? + GenreRock + KindAAC audio file + Size4209447 + Total Time168306 + Disc Number1 + Disc Count1 + Track Number10 + Track Count17 + Year1967 + Date Modified2008-10-05T08:15:02Z + Date Added2009-10-03T14:56:06Z + Bit Rate192 + Sample Rate44100 + Normalization5010 + Artwork Count2 + Persistent ID0910F4DE06223615 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jimi%20Hendrix/Are%20You%20Experienced_/10%20Remember.m4a + File Folder Count4 + Library Folder Count1 + + 3950 + + Track ID3950 + NameAre You Experienced? + ArtistJimi Hendrix + ComposerJimi Hendrix + AlbumAre You Experienced? + GenreRock + KindAAC audio file + Size6278310 + Total Time254600 + Disc Number1 + Disc Count1 + Track Number11 + Track Count17 + Year1967 + Date Modified2008-10-13T13:58:33Z + Date Added2009-10-03T14:56:06Z + Bit Rate192 + Sample Rate44100 + Normalization5752 + Artwork Count1 + Persistent ID149D7CD0C7832888 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jimi%20Hendrix/Are%20You%20Experienced_/11%20Are%20You%20Experienced_.m4a + File Folder Count4 + Library Folder Count1 + + 3952 + + Track ID3952 + NameHey Joe + ArtistJimi Hendrix + ComposerBilly Roberts + AlbumAre You Experienced? + GenreRock + KindAAC audio file + Size5028108 + Total Time210026 + Disc Number1 + Disc Count1 + Track Number12 + Track Count17 + Year1967 + Date Modified2008-10-05T08:15:03Z + Date Added2009-10-03T14:56:06Z + Bit Rate192 + Sample Rate44100 + Normalization4199 + Artwork Count2 + Persistent ID011005EA29E4FDE1 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jimi%20Hendrix/Are%20You%20Experienced_/12%20Hey%20Joe.m4a + File Folder Count4 + Library Folder Count1 + + 3954 + + Track ID3954 + NameStone Free + ArtistJimi Hendrix + ComposerJimi Hendrix + AlbumAre You Experienced? + GenreRock + KindAAC audio file + Size5362962 + Total Time216266 + Disc Number1 + Disc Count1 + Track Number13 + Track Count17 + Year1966 + Date Modified2008-10-05T08:15:03Z + Date Added2009-10-03T14:56:06Z + Bit Rate192 + Sample Rate44100 + Normalization11703 + Artwork Count2 + Persistent IDF5ABD47035B26F53 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jimi%20Hendrix/Are%20You%20Experienced_/13%20Stone%20Free.m4a + File Folder Count4 + Library Folder Count1 + + 3956 + + Track ID3956 + NamePurple Haze + ArtistJimi Hendrix + ComposerJimi Hendrix + AlbumAre You Experienced? + GenreRock + KindAAC audio file + Size4277709 + Total Time171640 + Disc Number1 + Disc Count1 + Track Number14 + Track Count17 + Year1967 + Date Modified2008-10-05T08:15:04Z + Date Added2009-10-03T14:56:06Z + Bit Rate192 + Sample Rate44100 + Normalization7052 + Artwork Count2 + Persistent ID1636952F7C6E9814 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jimi%20Hendrix/Are%20You%20Experienced_/14%20Purple%20Haze.m4a + File Folder Count4 + Library Folder Count1 + + 3958 + + Track ID3958 + Name51st Anniversary + ArtistJimi Hendrix + ComposerJimi Hendrix + AlbumAre You Experienced? + GenreRock + KindAAC audio file + Size4698166 + Total Time196160 + Disc Number1 + Disc Count1 + Track Number15 + Track Count17 + Year1967 + Date Modified2008-10-05T08:15:04Z + Date Added2009-10-03T14:56:06Z + Bit Rate192 + Sample Rate44100 + Normalization5261 + Artwork Count2 + Persistent IDC720FF72B8258A62 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jimi%20Hendrix/Are%20You%20Experienced_/15%2051st%20Anniversary.m4a + File Folder Count4 + Library Folder Count1 + + 3960 + + Track ID3960 + NameThe Wind Cries Mary + ArtistJimi Hendrix + ComposerJimi Hendrix + AlbumAre You Experienced? + GenreRock + KindAAC audio file + Size4933562 + Total Time200706 + Disc Number1 + Disc Count1 + Track Number16 + Track Count17 + Year1967 + Date Modified2008-10-05T08:15:05Z + Date Added2009-10-03T14:56:06Z + Bit Rate192 + Sample Rate44100 + Normalization1510 + Artwork Count2 + Sort NameWind Cries Mary + Persistent IDD87E985FE409C1A9 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jimi%20Hendrix/Are%20You%20Experienced_/16%20The%20Wind%20Cries%20Mary.m4a + File Folder Count4 + Library Folder Count1 + + 3962 + + Track ID3962 + NameHighway Chile + ArtistJimi Hendrix + ComposerJimi Hendrix + AlbumAre You Experienced? + GenreRock + KindAAC audio file + Size5103243 + Total Time212426 + Disc Number1 + Disc Count1 + Track Number17 + Track Count17 + Year1967 + Date Modified2008-10-05T08:15:05Z + Date Added2009-10-03T14:56:07Z + Bit Rate192 + Sample Rate44100 + Normalization5786 + Artwork Count2 + Persistent ID230AC5ED3F57FB52 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jimi%20Hendrix/Are%20You%20Experienced_/17%20Highway%20Chile.m4a + File Folder Count4 + Library Folder Count1 + + 3964 + + Track ID3964 + NameAnd The Mouse Police Never Sleeps + ArtistJethro Tull + ComposerIan Anderson + AlbumHeavy Horses + GenreRock + KindAAC audio file + Size5189767 + Total Time193954 + Disc Number1 + Disc Count1 + Track Number1 + Track Count9 + Year1978 + Date Modified2011-01-07T09:24:53Z + Date Added2009-10-03T14:56:07Z + Bit Rate192 + Sample Rate44100 + Skip Count1 + Skip Date2011-01-07T11:52:35Z + Normalization816 + Artwork Count14 + Persistent IDD65F9ADDE8B5B521 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jethro%20Tull/Heavy%20Horses/01%20And%20The%20Mouse%20Police%20Never%20Sleeps.m4a + File Folder Count4 + Library Folder Count1 + + 3966 + + Track ID3966 + NameAcres Wild + ArtistJethro Tull + ComposerIan Anderson + AlbumHeavy Horses + GenreRock + KindAAC audio file + Size5434078 + Total Time205402 + Disc Number1 + Disc Count1 + Track Number2 + Track Count9 + Year1978 + Date Modified2011-01-07T09:24:54Z + Date Added2009-10-03T14:56:08Z + Bit Rate192 + Sample Rate44100 + Play Count2 + Play Date3422285135 + Play Date UTC2012-06-11T13:15:35Z + Skip Count1 + Skip Date2011-01-07T11:14:04Z + Normalization867 + Artwork Count13 + Persistent IDB628C14F23257460 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jethro%20Tull/Heavy%20Horses/02%20Acres%20Wild.m4a + File Folder Count4 + Library Folder Count1 + + 3968 + + Track ID3968 + NameNo Lullaby + ArtistJethro Tull + ComposerIan Anderson + AlbumHeavy Horses + GenreRock + KindAAC audio file + Size11957409 + Total Time475078 + Disc Number1 + Disc Count1 + Track Number3 + Track Count9 + Year1978 + Date Modified2011-01-07T09:24:55Z + Date Added2009-10-03T14:56:08Z + Bit Rate192 + Sample Rate44100 + Play Count2 + Play Date3422285610 + Play Date UTC2012-06-11T13:23:30Z + Normalization846 + Artwork Count13 + Persistent ID749C30B41788429A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jethro%20Tull/Heavy%20Horses/03%20No%20Lullaby.m4a + File Folder Count4 + Library Folder Count1 + + 3970 + + Track ID3970 + NameMoths + ArtistJethro Tull + ComposerIan Anderson + AlbumHeavy Horses + GenreRock + KindAAC audio file + Size5473261 + Total Time207027 + Disc Number1 + Disc Count1 + Track Number4 + Track Count9 + Year1978 + Date Modified2011-01-07T09:24:56Z + Date Added2009-10-03T14:56:09Z + Bit Rate192 + Sample Rate44100 + Play Count3 + Play Date3422285817 + Play Date UTC2012-06-11T13:26:57Z + Normalization704 + Artwork Count13 + Persistent IDFC83FBA9F5C7197F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jethro%20Tull/Heavy%20Horses/04%20Moths.m4a + File Folder Count4 + Library Folder Count1 + + 3972 + + Track ID3972 + NameJourneyman + ArtistJethro Tull + ComposerIan Anderson + AlbumHeavy Horses + GenreRock + KindAAC audio file + Size6212179 + Total Time237654 + Disc Number1 + Disc Count1 + Track Number5 + Track Count9 + Year1978 + Date Modified2011-01-07T09:24:56Z + Date Added2009-10-03T14:56:10Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3377265020 + Play Date UTC2011-01-07T11:40:20Z + Normalization802 + Artwork Count13 + Persistent IDD1D40A705A17BF2C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jethro%20Tull/Heavy%20Horses/05%20Journeyman.m4a + File Folder Count4 + Library Folder Count1 + + 3974 + + Track ID3974 + NameRover + ArtistJethro Tull + ComposerIan Anderson + AlbumHeavy Horses + GenreRock + KindAAC audio file + Size6662468 + Total Time256230 + Disc Number1 + Disc Count1 + Track Number6 + Track Count9 + Year1978 + Date Modified2011-01-07T09:24:57Z + Date Added2009-10-03T14:56:10Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3377265276 + Play Date UTC2011-01-07T11:44:36Z + Normalization1108 + Artwork Count13 + Persistent ID2DD9A66EF54940F7 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jethro%20Tull/Heavy%20Horses/06%20Rover.m4a + File Folder Count4 + Library Folder Count1 + + 3976 + + Track ID3976 + NameOne Brown Mouse + ArtistJethro Tull + ComposerIan Anderson + AlbumHeavy Horses + GenreRock + KindAAC audio file + Size5387930 + Total Time203475 + Disc Number1 + Disc Count1 + Track Number7 + Track Count9 + Year1978 + Date Modified2011-01-07T09:24:58Z + Date Added2009-10-03T14:56:11Z + Bit Rate192 + Sample Rate44100 + Skip Count1 + Skip Date2011-01-07T11:44:40Z + Normalization1006 + Artwork Count13 + Persistent ID1E0759D2E0737D23 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jethro%20Tull/Heavy%20Horses/07%20One%20Brown%20Mouse.m4a + File Folder Count4 + Library Folder Count1 + + 3978 + + Track ID3978 + NameHeavy Horses + ArtistJethro Tull + ComposerIan Anderson + AlbumHeavy Horses + GenreRock + KindAAC audio file + Size13507660 + Total Time539142 + Disc Number1 + Disc Count1 + Track Number8 + Track Count9 + Year1978 + Date Modified2011-01-07T09:24:58Z + Date Added2009-10-03T14:56:11Z + Bit Rate192 + Sample Rate44100 + Normalization1162 + Artwork Count13 + Persistent ID9A68570093D45EF6 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jethro%20Tull/Heavy%20Horses/08%20Heavy%20Horses.m4a + File Folder Count4 + Library Folder Count1 + + 3980 + + Track ID3980 + NameWeathercock + ArtistJethro Tull + ComposerIan Anderson + AlbumHeavy Horses + GenreRock + KindAAC audio file + Size6371875 + Total Time242856 + Disc Number1 + Disc Count1 + Track Number9 + Track Count9 + Year1978 + Date Modified2011-01-07T09:25:00Z + Date Added2009-10-03T14:56:12Z + Bit Rate192 + Sample Rate44100 + Skip Count3 + Skip Date2011-01-07T11:52:49Z + Normalization797 + Artwork Count14 + Persistent ID8D97E59564450942 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jethro%20Tull/Heavy%20Horses/09%20Weathercock.m4a + File Folder Count4 + Library Folder Count1 + + 3982 + + Track ID3982 + NamePiano Theme + ArtistJaved Akhtar + ComposerA.R. Rahman/Javed Akhtar + Album1947 + GenreSoundtrack + KindAAC audio file + Size2697906 + Total Time113313 + Track Number5 + Year1999 + Date Modified2007-07-27T05:54:58Z + Date Added2009-10-03T14:56:13Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3383451522 + Play Date UTC2011-03-20T02:08:42Z + Rating60 + Album Rating60 + Album Rating Computed + Normalization830 + Persistent IDBFCB37B0BA55EDFA + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Javed%20Akhtar/1947/05%20Piano%20Theme.m4a + File Folder Count4 + Library Folder Count1 + + 3984 + + Track ID3984 + NamePiano Theme + ArtistJaved Akhtar + ComposerA.R. Rahman/Javed Akhtar + Album1947 + GenreSoundtrack + KindAAC audio file + Size2724883 + Total Time113335 + Track Number5 + Year1999 + Date Modified2007-01-17T10:32:26Z + Date Added2009-10-03T14:56:13Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3383451635 + Play Date UTC2011-03-20T02:10:35Z + Album Rating60 + Album Rating Computed + Normalization830 + Persistent ID3F3022BC60452F3D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Javed%20Akhtar/1947/05%20Piano%20Theme%201.m4a + File Folder Count4 + Library Folder Count1 + + 3986 + + Track ID3986 + NamePiano Theme + ArtistJaved Akhtar + ComposerA.R. Rahman/Javed Akhtar + Album1947 + GenreSoundtrack + KindAAC audio file + Size2724883 + Total Time113335 + Track Number5 + Year1999 + Date Modified2006-12-26T05:35:24Z + Date Added2009-10-03T14:56:13Z + Bit Rate192 + Sample Rate44100 + Album Rating60 + Album Rating Computed + Normalization830 + Persistent IDE060C3663180B96D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Javed%20Akhtar/1947/05%20Piano%20Theme%202.m4a + File Folder Count4 + Library Folder Count1 + + 3988 + + Track ID3988 + NamePiano Theme + ArtistJaved Akhtar + ComposerA.R. Rahman/Javed Akhtar + Album1947 + GenreSoundtrack + KindAAC audio file + Size2724883 + Total Time113335 + Track Number5 + Year1999 + Date Modified2006-12-27T09:56:40Z + Date Added2009-10-03T14:56:13Z + Bit Rate192 + Sample Rate44100 + Album Rating60 + Album Rating Computed + Normalization830 + Persistent IDCE9C3F6EBD992EAC + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Javed%20Akhtar/1947/05%20Piano%20Theme%203.m4a + File Folder Count4 + Library Folder Count1 + + 3990 + + Track ID3990 + NamePiano Theme + ArtistJaved Akhtar + ComposerA.R. Rahman/Javed Akhtar + Album1947 + GenreSoundtrack + KindAAC audio file + Size2706283 + Total Time113313 + Track Number5 + Year1999 + Date Modified2007-12-02T07:36:16Z + Date Added2009-10-03T14:56:13Z + Bit Rate189 + Sample Rate44100 + Album Rating60 + Album Rating Computed + Normalization830 + Persistent IDBDC562494F8481A0 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Javed%20Akhtar/1947/05%20Piano%20Theme%204.m4a + File Folder Count4 + Library Folder Count1 + + 3992 + + Track ID3992 + NameTheme Music + ArtistJaved Akhtar + ComposerA.R. Rahman/Javed Akhtar + Album1947 + GenreSoundtrack + KindAAC audio file + Size7021037 + Total Time290017 + Track Number9 + Year1999 + Date Modified2007-07-27T05:57:32Z + Date Added2009-10-03T14:56:13Z + Bit Rate192 + Sample Rate44100 + Album Rating60 + Album Rating Computed + Normalization1259 + Persistent ID6C2F9F23E1DDA132 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Javed%20Akhtar/1947/09%20Theme%20Music.m4a + File Folder Count4 + Library Folder Count1 + + 3994 + + Track ID3994 + NameTheme Music + ArtistJaved Akhtar + ComposerA.R. Rahman/Javed Akhtar + Album1947 + GenreSoundtrack + KindAAC audio file + Size7021007 + Total Time290039 + Track Number9 + Year1999 + Date Modified2007-01-17T10:33:32Z + Date Added2009-10-03T14:56:13Z + Bit Rate192 + Sample Rate44100 + Album Rating60 + Album Rating Computed + Normalization1259 + Persistent ID01017F7E799B8632 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Javed%20Akhtar/1947/09%20Theme%20Music%201.m4a + File Folder Count4 + Library Folder Count1 + + 3996 + + Track ID3996 + NameTheme Music + ArtistJaved Akhtar + ComposerA.R. Rahman/Javed Akhtar + Album1947 + GenreSoundtrack + KindAAC audio file + Size7021007 + Total Time290039 + Track Number9 + Year1999 + Date Modified2006-12-26T05:36:28Z + Date Added2009-10-03T14:56:13Z + Bit Rate192 + Sample Rate44100 + Album Rating60 + Album Rating Computed + Normalization1259 + Persistent ID82462C958B66224A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Javed%20Akhtar/1947/09%20Theme%20Music%202.m4a + File Folder Count4 + Library Folder Count1 + + 3998 + + Track ID3998 + NameTheme Music + ArtistJaved Akhtar + ComposerA.R. Rahman/Javed Akhtar + Album1947 + GenreSoundtrack + KindAAC audio file + Size7021007 + Total Time290039 + Track Number9 + Year1999 + Date Modified2006-12-27T09:57:46Z + Date Added2009-10-03T14:56:13Z + Bit Rate192 + Sample Rate44100 + Album Rating60 + Album Rating Computed + Normalization1259 + Persistent IDBB8F52597B92EE5B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Javed%20Akhtar/1947/09%20Theme%20Music%203.m4a + File Folder Count4 + Library Folder Count1 + + 4000 + + Track ID4000 + NameTheme Music + ArtistJaved Akhtar + ComposerA.R. Rahman/Javed Akhtar + Album1947 + GenreSoundtrack + KindAAC audio file + Size7120077 + Total Time290017 + Track Number9 + Year1999 + Date Modified2007-12-02T07:38:03Z + Date Added2009-10-03T14:56:13Z + Bit Rate194 + Sample Rate44100 + Album Rating60 + Album Rating Computed + Normalization1259 + Persistent IDDDBE8C95D240F9CC + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Javed%20Akhtar/1947/09%20Theme%20Music%204.m4a + File Folder Count4 + Library Folder Count1 + + 4002 + + Track ID4002 + NameBinjari + ArtistJaisalmeria + ComposerJaisana + AlbumRavanhtta + GenreFolk + KindAAC audio file + Size8889837 + Total Time360986 + Disc Number1 + Disc Count1 + Track Number1 + Track Count12 + Year2004 + Date Modified2008-01-05T04:20:24Z + Date Added2009-10-03T14:56:14Z + Bit Rate195 + Sample Rate44100 + Normalization595 + Persistent ID374EDE7750F5E625 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jaisalmeria/Ravanhtta/01%20Binjari.m4a + File Folder Count4 + Library Folder Count1 + + 4004 + + Track ID4004 + NameGhoomar + ArtistJaisalmeria + ComposerJaisana + AlbumRavanhtta + GenreFolk + KindAAC audio file + Size6960662 + Total Time282986 + Disc Number1 + Disc Count1 + Track Number2 + Track Count12 + Year2004 + Date Modified2008-01-05T04:20:40Z + Date Added2009-10-03T14:56:14Z + Bit Rate195 + Sample Rate44100 + Normalization7031 + Persistent IDC268DEBB10E16FDB + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jaisalmeria/Ravanhtta/02%20Ghoomar.m4a + File Folder Count4 + Library Folder Count1 + + 4006 + + Track ID4006 + NameKurja + ArtistJaisalmeria + ComposerJaisana + AlbumRavanhtta + GenreFolk + KindAAC audio file + Size6480432 + Total Time263506 + Disc Number1 + Disc Count1 + Track Number3 + Track Count12 + Year2004 + Date Modified2008-01-05T04:20:55Z + Date Added2009-10-03T14:56:14Z + Bit Rate195 + Sample Rate44100 + Normalization10446 + Persistent IDAB05F89875020CA5 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jaisalmeria/Ravanhtta/03%20Kurja.m4a + File Folder Count4 + Library Folder Count1 + + 4008 + + Track ID4008 + NamePanihari + ArtistJaisalmeria + ComposerJaisana + AlbumRavanhtta + GenreFolk + KindAAC audio file + Size3346895 + Total Time136986 + Disc Number1 + Disc Count1 + Track Number4 + Track Count12 + Year2004 + Date Modified2008-01-05T04:21:03Z + Date Added2009-10-03T14:56:14Z + Bit Rate193 + Sample Rate44100 + Normalization10035 + Persistent ID6B40AC0A36C907BC + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jaisalmeria/Ravanhtta/04%20Panihari.m4a + File Folder Count4 + Library Folder Count1 + + 4010 + + Track ID4010 + NameRoomal + ArtistJaisalmeria + ComposerJaisana + AlbumRavanhtta + GenreFolk + KindAAC audio file + Size10103878 + Total Time409986 + Disc Number1 + Disc Count1 + Track Number5 + Track Count12 + Year2004 + Date Modified2008-01-05T04:21:28Z + Date Added2009-10-03T14:56:14Z + Bit Rate195 + Sample Rate44100 + Normalization4823 + Persistent ID1143A0570D725088 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jaisalmeria/Ravanhtta/05%20Roomal.m4a + File Folder Count4 + Library Folder Count1 + + 4012 + + Track ID4012 + NameMhari Mangetar + ArtistJaisalmeria + ComposerJaisana + AlbumRavanhtta + GenreFolk + KindAAC audio file + Size9910599 + Total Time403306 + Disc Number1 + Disc Count1 + Track Number6 + Track Count12 + Year2004 + Date Modified2008-01-05T04:21:53Z + Date Added2009-10-03T14:56:14Z + Bit Rate195 + Sample Rate44100 + Normalization2908 + Persistent IDB31B2226405C2CE2 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jaisalmeria/Ravanhtta/06%20Mhari%20Mangetar.m4a + File Folder Count4 + Library Folder Count1 + + 4014 + + Track ID4014 + NameKaliyo Kood Padya + ArtistJaisalmeria + ComposerJaisana + AlbumRavanhtta + GenreFolk + KindAAC audio file + Size5936557 + Total Time241786 + Disc Number1 + Disc Count1 + Track Number7 + Track Count12 + Year2004 + Date Modified2008-01-05T04:22:09Z + Date Added2009-10-03T14:56:14Z + Bit Rate194 + Sample Rate44100 + Normalization1944 + Persistent ID715EE448EEF542E7 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jaisalmeria/Ravanhtta/07%20Kaliyo%20Kood%20Padya.m4a + File Folder Count4 + Library Folder Count1 + + 4016 + + Track ID4016 + NameMoomal + ArtistJaisalmeria + ComposerJaisana + AlbumRavanhtta + GenreFolk + KindAAC audio file + Size8153530 + Total Time331506 + Disc Number1 + Disc Count1 + Track Number8 + Track Count12 + Year2004 + Date Modified2008-01-05T04:22:30Z + Date Added2009-10-03T14:56:14Z + Bit Rate195 + Sample Rate44100 + Normalization1987 + Persistent ID0C392079BA9863EF + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jaisalmeria/Ravanhtta/08%20Moomal.m4a + File Folder Count4 + Library Folder Count1 + + 4018 + + Track ID4018 + NamePadaro Mhare Des + ArtistJaisalmeria + ComposerJaisana + AlbumRavanhtta + GenreFolk + KindAAC audio file + Size5043481 + Total Time205866 + Disc Number1 + Disc Count1 + Track Number9 + Track Count12 + Year2004 + Date Modified2008-01-05T04:22:43Z + Date Added2009-10-03T14:56:15Z + Bit Rate194 + Sample Rate44100 + Normalization2400 + Persistent ID27D2224E49869EE5 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jaisalmeria/Ravanhtta/09%20Padaro%20Mhare%20Des.m4a + File Folder Count4 + Library Folder Count1 + + 4020 + + Track ID4020 + NameDhora Re + ArtistJaisalmeria + ComposerJaisana + AlbumRavanhtta + GenreFolk + KindAAC audio file + Size8960368 + Total Time363746 + Disc Number1 + Disc Count1 + Track Number10 + Track Count12 + Year2004 + Date Modified2008-01-05T04:23:07Z + Date Added2009-10-03T14:56:15Z + Bit Rate195 + Sample Rate44100 + Normalization3156 + Persistent IDB95E555CE7497F09 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jaisalmeria/Ravanhtta/10%20Dhora%20Re.m4a + File Folder Count4 + Library Folder Count1 + + 4022 + + Track ID4022 + NamePardesi Pardesi + ArtistJaisalmeria + ComposerJaisana + AlbumRavanhtta + GenreFolk + KindAAC audio file + Size11579544 + Total Time469586 + Disc Number1 + Disc Count1 + Track Number11 + Track Count12 + Year2004 + Date Modified2008-01-05T04:23:36Z + Date Added2009-10-03T14:56:15Z + Bit Rate195 + Sample Rate44100 + Normalization3009 + Persistent ID50B3B9401C24EBB7 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jaisalmeria/Ravanhtta/11%20Pardesi%20Pardesi.m4a + File Folder Count4 + Library Folder Count1 + + 4024 + + Track ID4024 + NameBana Re Baghan Me + ArtistJaisalmeria + ComposerJaisana + AlbumRavanhtta + GenreFolk + KindAAC audio file + Size5917097 + Total Time240440 + Disc Number1 + Disc Count1 + Track Number12 + Track Count12 + Year2004 + Date Modified2008-01-05T04:23:52Z + Date Added2009-10-03T14:56:15Z + Bit Rate195 + Sample Rate44100 + Normalization2750 + Persistent ID9B0A26B3E54D554C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jaisalmeria/Ravanhtta/12%20Bana%20Re%20Baghan%20Me.m4a + File Folder Count4 + Library Folder Count1 + + 4026 + + Track ID4026 + NameKiya Hai Pyar Jise + ArtistJagjit Singh & Chitra Singh + AlbumMera Geet Amar Kardo + GenrePop + KindMPEG audio file + Size7096030 + Total Time354795 + Year2000 + Date Modified2002-06-07T20:05:56Z + Date Added2009-10-03T14:56:15Z + Bit Rate160 + Sample Rate44100 + CommentsGenie, AG# 5AEC02AC + Persistent IDF963A4710A0EA898 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jagjit%20Singh%20&%20Chitra%20Singh/Mera%20Geet%20Amar%20Kardo/Kiya%20Hai%20Pyar%20Jise.mp3 + File Folder Count4 + Library Folder Count1 + + 4028 + + Track ID4028 + NamePareshan Raat Sari Hai + ArtistJagjit Singh + AlbumMemorable Ghazals + KindMPEG audio file + Size2655213 + Total Time221257 + Track Number4 + Year1999 + Date Modified2002-06-07T17:38:32Z + Date Added2009-10-03T14:56:15Z + Bit Rate96 + Sample Rate44100 + CommentsMade with RealJukebox (tm) + Persistent ID3BD201EC2731923D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jagjit%20Singh/Memorable%20Ghazals/04%20Pareshan%20Raat%20Sari%20Hai.mp3 + File Folder Count4 + Library Folder Count1 + + 4030 + + Track ID4030 + NameSachhi Baat + ArtistJagjit Singh + AlbumFace To Face + GenreWorld + KindAAC audio file + Size5638857 + Total Time233173 + Disc Number1 + Disc Count1 + Track Number1 + Track Count9 + Year1996 + Date Modified2006-07-30T07:37:56Z + Date Added2009-10-03T14:56:16Z + Bit Rate192 + Sample Rate44100 + Normalization1145 + Artwork Count1 + Persistent IDEF886045AD606306 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jagjit%20Singh/Face%20To%20Face/01%20Sachhi%20Baat.m4a + File Folder Count4 + Library Folder Count1 + + 4032 + + Track ID4032 + NameDairo-Haram + ArtistJagjit Singh + AlbumFace To Face + GenreWorld + KindAAC audio file + Size6779084 + Total Time280542 + Disc Number1 + Disc Count1 + Track Number2 + Track Count9 + Year1996 + Date Modified2006-07-30T07:37:56Z + Date Added2009-10-03T14:56:16Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Persistent ID3E08D0DD485C7A73 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jagjit%20Singh/Face%20To%20Face/02%20Dairo-Haram.m4a + File Folder Count4 + Library Folder Count1 + + 4034 + + Track ID4034 + NameBe-Sabab Baat + ArtistJagjit Singh + AlbumFace To Face + GenreWorld + KindAAC audio file + Size10603429 + Total Time439714 + Disc Number1 + Disc Count1 + Track Number3 + Track Count9 + Year1996 + Date Modified2006-07-30T07:37:56Z + Date Added2009-10-03T14:56:16Z + Bit Rate192 + Sample Rate44100 + Normalization1004 + Artwork Count1 + Persistent IDD3DB2CB425FF3E65 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jagjit%20Singh/Face%20To%20Face/03%20Be-Sabab%20Baat.m4a + File Folder Count4 + Library Folder Count1 + + 4036 + + Track ID4036 + NameZindagi Tune + ArtistJagjit Singh + AlbumFace To Face + GenreWorld + KindAAC audio file + Size9254569 + Total Time383127 + Disc Number1 + Disc Count1 + Track Number4 + Track Count9 + Year1996 + Date Modified2006-07-30T07:37:56Z + Date Added2009-10-03T14:56:16Z + Bit Rate192 + Sample Rate44100 + Normalization621 + Artwork Count1 + Persistent ID09C0C9860736556B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jagjit%20Singh/Face%20To%20Face/04%20Zindagi%20Tune.m4a + File Folder Count4 + Library Folder Count1 + + 4038 + + Track ID4038 + NameTumne Badle Hamse + ArtistJagjit Singh + AlbumFace To Face + GenreWorld + KindAAC audio file + Size7940219 + Total Time328444 + Disc Number1 + Disc Count1 + Track Number5 + Track Count9 + Year1996 + Date Modified2006-07-30T07:37:58Z + Date Added2009-10-03T14:56:16Z + Bit Rate192 + Sample Rate44100 + Normalization554 + Artwork Count1 + Persistent IDC5BA63CA962CC1BD + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jagjit%20Singh/Face%20To%20Face/05%20Tumne%20Badle%20Hamse.m4a + File Folder Count4 + Library Folder Count1 + + 4040 + + Track ID4040 + NamePuar Ka Pahla Khat + ArtistJagjit Singh + AlbumFace To Face + GenreWorld + KindAAC audio file + Size8420086 + Total Time348808 + Disc Number1 + Disc Count1 + Track Number6 + Track Count9 + Year1996 + Date Modified2006-07-30T07:37:58Z + Date Added2009-10-03T14:56:16Z + Bit Rate192 + Sample Rate44100 + Normalization989 + Artwork Count1 + Persistent IDE7B1F51834D7BDEC + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jagjit%20Singh/Face%20To%20Face/06%20Puar%20Ka%20Pahla%20Khat.m4a + File Folder Count4 + Library Folder Count1 + + 4042 + + Track ID4042 + NameZindagi Ai Zindagi + ArtistJagjit Singh + AlbumFace To Face + GenreWorld + KindAAC audio file + Size8648959 + Total Time357887 + Disc Number1 + Disc Count1 + Track Number7 + Track Count9 + Year1996 + Date Modified2006-07-30T07:37:58Z + Date Added2009-10-03T14:56:16Z + Bit Rate192 + Sample Rate44100 + Normalization1195 + Artwork Count1 + Persistent IDD10DA738BE784C75 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jagjit%20Singh/Face%20To%20Face/07%20Zindagi%20Ai%20Zindagi.m4a + File Folder Count4 + Library Folder Count1 + + 4044 + + Track ID4044 + NameSheikh Ji + ArtistJagjit Singh + AlbumFace To Face + GenreWorld + KindAAC audio file + Size8604407 + Total Time357400 + Disc Number1 + Disc Count1 + Track Number8 + Track Count9 + Year1996 + Date Modified2006-07-30T07:37:58Z + Date Added2009-10-03T14:56:16Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Persistent ID00A99CCABE1429AD + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jagjit%20Singh/Face%20To%20Face/08%20Sheikh%20Ji.m4a + File Folder Count4 + Library Folder Count1 + + 4046 + + Track ID4046 + NameKoi Mausam + ArtistJagjit Singh + AlbumFace To Face + GenreWorld + KindAAC audio file + Size9132973 + Total Time376974 + Disc Number1 + Disc Count1 + Track Number9 + Track Count9 + Year1996 + Date Modified2006-07-30T07:37:58Z + Date Added2009-10-03T14:56:17Z + Bit Rate192 + Sample Rate44100 + Normalization356 + Artwork Count1 + Persistent ID886E8F6824BE417F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jagjit%20Singh/Face%20To%20Face/09%20Koi%20Mausam.m4a + File Folder Count4 + Library Folder Count1 + + 4048 + + Track ID4048 + NamePollaa Vinayen + ArtistIlaiyaraaja, Ray Harcourt + ComposerIlaiyaraaja + AlbumThiruvasagam + GenreWorld + KindAAC audio file + Size30156994 + Total Time1240408 + Disc Number1 + Disc Count1 + Track Number2 + Track Count6 + Year2005 + Date Modified2006-08-13T06:39:06Z + Date Added2009-10-03T14:56:17Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Artwork Count2 + Persistent ID2F1691A83E05EFC8 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ilaiyaraaja,%20Ray%20Harcourt/Thiruvasagam/02%20Pollaa%20Vinayen.m4a + File Folder Count4 + Library Folder Count1 + + 4050 + + Track ID4050 + NamePooerukanum Purantharunam + ArtistIlaiyaraaja, Bavatharini + ComposerIlaiyaraaja + AlbumThiruvasagam + GenreWorld + KindAAC audio file + Size11823433 + Total Time482834 + Disc Number1 + Disc Count1 + Track Number3 + Track Count6 + Year2005 + Date Modified2006-08-13T06:38:52Z + Date Added2009-10-03T14:56:17Z + Bit Rate192 + Sample Rate44100 + Normalization813 + Artwork Count2 + Persistent ID0D5FA9DAA9D65792 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ilaiyaraaja,%20Bavatharini/Thiruvasagam/03%20Pooerukanum%20Purantharunam.m4a + File Folder Count4 + Library Folder Count1 + + 4052 + + Track ID4052 + NamePoovar Senni Mannan + ArtistIlaiyaraaja + ComposerIlaiyaraaja + AlbumThiruvasagam + GenreWorld + KindAAC audio file + Size12161526 + Total Time496789 + Disc Number1 + Disc Count1 + Track Number1 + Track Count6 + Year2005 + Date Modified2006-08-13T06:38:46Z + Date Added2009-10-03T14:56:18Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Artwork Count2 + Persistent ID819CB5AC174B7D63 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ilaiyaraaja/Thiruvasagam/01%20Poovar%20Senni%20Mannan.m4a + File Folder Count4 + Library Folder Count1 + + 4054 + + Track ID4054 + NameUmbarkatkarasaey + ArtistIlaiyaraaja + ComposerIlaiyaraaja + AlbumThiruvasagam + GenreWorld + KindAAC audio file + Size15143305 + Total Time619924 + Disc Number1 + Disc Count1 + Track Number4 + Track Count6 + Year2005 + Date Modified2006-08-13T06:38:42Z + Date Added2009-10-03T14:56:18Z + Bit Rate192 + Sample Rate44100 + Normalization1131 + Artwork Count2 + Persistent IDD7C64648081248AA + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ilaiyaraaja/Thiruvasagam/04%20Umbarkatkarasaey.m4a + File Folder Count4 + Library Folder Count1 + + 4056 + + Track ID4056 + NamePuttril Vazha Aravum Angen + ArtistIlaiyaraaja + ComposerIlaiyaraaja + AlbumThiruvasagam + GenreWorld + KindAAC audio file + Size12880989 + Total Time526487 + Disc Number1 + Disc Count1 + Track Number6 + Track Count6 + Year2005 + Date Modified2006-08-13T06:38:34Z + Date Added2009-10-03T14:56:18Z + Bit Rate192 + Sample Rate44100 + Normalization858 + Artwork Count2 + Persistent ID67AF751524CC8090 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ilaiyaraaja/Thiruvasagam/06%20Puttril%20Vazha%20Aravum%20Angen.m4a + File Folder Count4 + Library Folder Count1 + + 4058 + + Track ID4058 + NameDe Los Andes + ArtistHuayllipacha + AlbumHuayllipacha + GenreWorld + KindAAC audio file + Size7030614 + Total Time290271 + Track Number1 + Track Count10 + Date Modified2006-08-07T14:04:16Z + Date Added2009-10-03T14:56:18Z + Bit Rate192 + Sample Rate44100 + Normalization1019 + Artwork Count1 + Persistent IDF8FD95030B3A0A81 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Huayllipacha/Huayllipacha/01%20De%20Los%20Andes.m4a + File Folder Count4 + Library Folder Count1 + + 4060 + + Track ID4060 + NameTempestad + ArtistHuayllipacha + AlbumHuayllipacha + GenreWorld + KindAAC audio file + Size5037928 + Total Time207561 + Track Number2 + Track Count10 + Date Modified2006-08-07T14:04:16Z + Date Added2009-10-03T14:56:18Z + Bit Rate192 + Sample Rate44100 + Normalization1597 + Artwork Count1 + Persistent IDC681E610CB11C2E5 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Huayllipacha/Huayllipacha/02%20Tempestad.m4a + File Folder Count4 + Library Folder Count1 + + 4062 + + Track ID4062 + NameYamor + ArtistHuayllipacha + AlbumHuayllipacha + GenreWorld + KindAAC audio file + Size5614520 + Total Time231246 + Track Number3 + Track Count10 + Date Modified2006-08-07T14:04:16Z + Date Added2009-10-03T14:56:19Z + Bit Rate192 + Sample Rate44100 + Normalization1739 + Artwork Count1 + Persistent IDF62C19822E31A461 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Huayllipacha/Huayllipacha/03%20Yamor.m4a + File Folder Count4 + Library Folder Count1 + + 4064 + + Track ID4064 + NameCarnavalito Humahuaqueno + ArtistHuayllipacha + AlbumHuayllipacha + GenreWorld + KindAAC audio file + Size5947559 + Total Time245108 + Track Number4 + Track Count10 + Date Modified2006-08-07T14:04:16Z + Date Added2009-10-03T14:56:19Z + Bit Rate192 + Sample Rate44100 + Normalization1254 + Artwork Count1 + Persistent ID47B1421BB095C6C8 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Huayllipacha/Huayllipacha/04%20Carnavalito%20Humahuaqueno.m4a + File Folder Count4 + Library Folder Count1 + + 4066 + + Track ID4066 + NamePaisaje Del Dorado + ArtistHuayllipacha + AlbumHuayllipacha + GenreWorld + KindAAC audio file + Size5783581 + Total Time238281 + Track Number5 + Track Count10 + Date Modified2006-08-07T14:04:16Z + Date Added2009-10-03T14:56:19Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Persistent ID08119FB463EC4DE8 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Huayllipacha/Huayllipacha/05%20Paisaje%20Del%20Dorado.m4a + File Folder Count4 + Library Folder Count1 + + 4068 + + Track ID4068 + NameEl Condor Pasa + ArtistHuayllipacha + AlbumHuayllipacha + GenreWorld + KindAAC audio file + Size9101670 + Total Time375581 + Track Number6 + Track Count10 + Date Modified2006-08-07T14:04:16Z + Date Added2009-10-03T14:56:19Z + Bit Rate192 + Sample Rate44100 + Normalization1231 + Artwork Count1 + Persistent ID0F9B73AAFD74D291 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Huayllipacha/Huayllipacha/06%20El%20Condor%20Pasa.m4a + File Folder Count4 + Library Folder Count1 + + 4070 + + Track ID4070 + NameHuayquecha + ArtistHuayllipacha + AlbumHuayllipacha + GenreWorld + KindAAC audio file + Size7417136 + Total Time305967 + Track Number7 + Track Count10 + Date Modified2006-08-07T14:04:16Z + Date Added2009-10-03T14:56:19Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Persistent ID07CD5776847F3FA7 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Huayllipacha/Huayllipacha/07%20Huayquecha.m4a + File Folder Count4 + Library Folder Count1 + + 4072 + + Track ID4072 + NameLlorando Se Fue + ArtistHuayllipacha + AlbumHuayllipacha + GenreWorld + KindAAC audio file + Size4992229 + Total Time205657 + Track Number8 + Track Count10 + Date Modified2006-08-07T14:04:16Z + Date Added2009-10-03T14:56:19Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Persistent ID08E3D4D668E0FC07 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Huayllipacha/Huayllipacha/08%20Llorando%20Se%20Fue.m4a + File Folder Count4 + Library Folder Count1 + + 4074 + + Track ID4074 + NameSaqra + ArtistHuayllipacha + AlbumHuayllipacha + GenreWorld + KindAAC audio file + Size4568870 + Total Time188033 + Track Number9 + Track Count10 + Date Modified2006-08-07T14:04:16Z + Date Added2009-10-03T14:56:20Z + Bit Rate192 + Sample Rate44100 + Normalization1451 + Artwork Count1 + Persistent IDF112DAC585730C0F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Huayllipacha/Huayllipacha/09%20Saqra.m4a + File Folder Count4 + Library Folder Count1 + + 4076 + + Track ID4076 + NameAlpamanda + ArtistHuayllipacha + AlbumHuayllipacha + GenreWorld + KindAAC audio file + Size5166007 + Total Time212948 + Track Number10 + Track Count10 + Date Modified2006-08-07T14:04:16Z + Date Added2009-10-03T14:56:20Z + Bit Rate192 + Sample Rate44100 + Normalization2011 + Artwork Count1 + Persistent IDE6FACF3BF92B76E3 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Huayllipacha/Huayllipacha/10%20Alpamanda.m4a + File Folder Count4 + Library Folder Count1 + + 4078 + + Track ID4078 + NameSwiss Ming + ArtistHiroshima + ComposerDan Kuramoto & Dean Cortez & June Kuramoto & Kimo Cornwell + AlbumObon + GenreJazz + KindAAC audio file + Size7183569 + Total Time296261 + Disc Number1 + Disc Count1 + Track Number1 + Track Count11 + Year2005 + Date Modified2006-09-05T15:10:14Z + Date Added2009-10-03T14:56:20Z + Bit Rate192 + Sample Rate44100 + Play Count5 + Play Date3430145525 + Play Date UTC2012-09-10T12:42:05Z + Normalization1808 + Artwork Count1 + Persistent ID2A8E18189FCD1BE6 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hiroshima/Obon/01%20Swiss%20Ming.m4a + File Folder Count4 + Library Folder Count1 + + 4080 + + Track ID4080 + NameChina Latina + ArtistHiroshima + ComposerDan Kuramoto & Dean Cortez & June Kuramoto & Kimo Cornwell + AlbumObon + GenreJazz + KindAAC audio file + Size6370359 + Total Time263405 + Disc Number1 + Disc Count1 + Track Number2 + Track Count11 + Year2005 + Date Modified2006-09-05T15:10:14Z + Date Added2009-10-03T14:56:20Z + Bit Rate192 + Sample Rate44100 + Normalization1982 + Artwork Count1 + Persistent IDEA99358D616B8C6C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hiroshima/Obon/02%20China%20Latina.m4a + File Folder Count4 + Library Folder Count1 + + 4082 + + Track ID4082 + NameKototsu-Han (San Kyoku) + ArtistHiroshima + ComposerDan Kuramoto & Dean Cortez & June Kuramoto & Kimo Cornwell + AlbumObon + GenreJazz + KindAAC audio file + Size7622586 + Total Time316068 + Disc Number1 + Disc Count1 + Track Number3 + Track Count11 + Year2005 + Date Modified2006-09-05T15:10:14Z + Date Added2009-10-03T14:56:20Z + Bit Rate192 + Sample Rate44100 + Normalization1255 + Artwork Count1 + Persistent ID7CCDAE4BD999632A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hiroshima/Obon/03%20Kototsu-Han%20(San%20Kyoku).m4a + File Folder Count4 + Library Folder Count1 + + 4084 + + Track ID4084 + NameAtomic Cafe + ArtistHiroshima + ComposerDan Kuramoto & Dean Cortez & June Kuramoto & Kimo Cornwell + AlbumObon + GenreJazz + KindAAC audio file + Size7338252 + Total Time302856 + Disc Number1 + Disc Count1 + Track Number4 + Track Count11 + Year2005 + Date Modified2006-09-05T15:10:14Z + Date Added2009-10-03T14:56:20Z + Bit Rate192 + Sample Rate44100 + Normalization2389 + Artwork Count1 + Persistent IDE562CFF22E4612B3 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hiroshima/Obon/04%20Atomic%20Cafe.m4a + File Folder Count4 + Library Folder Count1 + + 4086 + + Track ID4086 + NameObon Two-Five + ArtistHiroshima + ComposerDan Kuramoto & Dean Cortez & June Kuramoto & Kimo Cornwell + AlbumObon + GenreJazz + KindAAC audio file + Size7424594 + Total Time307291 + Disc Number1 + Disc Count1 + Track Number5 + Track Count11 + Year2005 + Date Modified2006-09-05T15:10:12Z + Date Added2009-10-03T14:56:20Z + Bit Rate192 + Sample Rate44100 + Normalization1516 + Artwork Count1 + Persistent IDD7DA9E9CEE8203B0 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hiroshima/Obon/05%20Obon%20Two-Five.m4a + File Folder Count4 + Library Folder Count1 + + 4088 + + Track ID4088 + NameOne Thursday Morning + ArtistHiroshima + ComposerDan Kuramoto & Dean Cortez & June Kuramoto & Kimo Cornwell + AlbumObon + GenreJazz + KindAAC audio file + Size7959310 + Total Time328328 + Disc Number1 + Disc Count1 + Track Number6 + Track Count11 + Year2005 + Date Modified2006-09-05T15:10:12Z + Date Added2009-10-03T14:56:21Z + Bit Rate192 + Sample Rate44100 + Normalization1289 + Artwork Count1 + Persistent ID31F89557AFF840CF + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hiroshima/Obon/06%20One%20Thursday%20Morning.m4a + File Folder Count4 + Library Folder Count1 + + 4090 + + Track ID4090 + NameMr. Robben + ArtistHiroshima + ComposerDan Kuramoto & Dean Cortez & June Kuramoto & Kimo Cornwell + AlbumObon + GenreJazz + KindAAC audio file + Size7600069 + Total Time313607 + Disc Number1 + Disc Count1 + Track Number7 + Track Count11 + Year2005 + Date Modified2006-09-05T15:10:12Z + Date Added2009-10-03T14:56:21Z + Bit Rate192 + Sample Rate44100 + Normalization2038 + Artwork Count1 + Persistent IDDE34E2302AA5A559 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hiroshima/Obon/07%20Mr.%20Robben.m4a + File Folder Count4 + Library Folder Count1 + + 4092 + + Track ID4092 + NamePairs (Ici Avec Moi) + ArtistHiroshima + ComposerDan Kuramoto & Dean Cortez & June Kuramoto & Kimo Cornwell + AlbumObon + GenreJazz + KindAAC audio file + Size6647108 + Total Time274690 + Disc Number1 + Disc Count1 + Track Number8 + Track Count11 + Year2005 + Date Modified2006-09-05T15:10:12Z + Date Added2009-10-03T14:56:21Z + Bit Rate192 + Sample Rate44100 + Normalization1179 + Artwork Count1 + Persistent IDB09B766EF363E296 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hiroshima/Obon/08%20Pairs%20(Ici%20Avec%20Moi).m4a + File Folder Count4 + Library Folder Count1 + + 4094 + + Track ID4094 + NamePharoah + ArtistHiroshima + ComposerDan Kuramoto & Dean Cortez & June Kuramoto & Kimo Cornwell + AlbumObon + GenreJazz + KindAAC audio file + Size7344578 + Total Time304040 + Disc Number1 + Disc Count1 + Track Number9 + Track Count11 + Year2005 + Date Modified2006-09-05T15:10:10Z + Date Added2009-10-03T14:56:21Z + Bit Rate192 + Sample Rate44100 + Normalization2337 + Artwork Count1 + Persistent IDDF1E01619CA5CBDD + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hiroshima/Obon/09%20Pharoah.m4a + File Folder Count4 + Library Folder Count1 + + 4096 + + Track ID4096 + NameThe Lighthouse + ArtistHiroshima + ComposerDan Kuramoto & Dean Cortez & June Kuramoto & Kimo Cornwell + AlbumObon + GenreJazz + KindAAC audio file + Size8059039 + Total Time333413 + Disc Number1 + Disc Count1 + Track Number10 + Track Count11 + Year2005 + Date Modified2006-09-05T15:10:10Z + Date Added2009-10-03T14:56:21Z + Bit Rate192 + Sample Rate44100 + Normalization1733 + Artwork Count1 + Sort NameLighthouse + Persistent IDF6BAC747373C4699 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hiroshima/Obon/10%20The%20Lighthouse.m4a + File Folder Count4 + Library Folder Count1 + + 4098 + + Track ID4098 + NameHeritage + ArtistHiroshima + ComposerDan Kuramoto & Dean Cortez & June Kuramoto & Kimo Cornwell + AlbumObon + GenreJazz + KindAAC audio file + Size6042603 + Total Time249520 + Disc Number1 + Disc Count1 + Track Number11 + Track Count11 + Year2005 + Date Modified2006-09-05T15:10:10Z + Date Added2009-10-03T14:56:21Z + Bit Rate192 + Sample Rate44100 + Normalization1186 + Artwork Count1 + Persistent IDB59363CFA7CF25E3 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hiroshima/Obon/11%20Heritage.m4a + File Folder Count4 + Library Folder Count1 + + 4100 + + Track ID4100 + NameHum Hain Rahi Pyar Ke + ArtistHindi - Kishore Kumar + AlbumHits All the Way + KindMPEG audio file + Size2473398 + Total Time205844 + Track Number2 + Date Modified2007-04-09T08:36:30Z + Date Added2009-10-03T14:56:21Z + Bit Rate96 + Sample Rate44100 + Artwork Count1 + Persistent IDB810733CD376A04E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hindi%20-%20Kishore%20Kumar/Hits%20All%20the%20Way/02%20Hum%20Hain%20Rahi%20Pyar%20Ke.mp3 + File Folder Count4 + Library Folder Count1 + + 4102 + + Track ID4102 + NameMaiden Voyage + ArtistHerbie Hancock + ComposerHerbie Hancock (1940-) + AlbumMaiden Voyage + GenreJazz + KindAAC audio file + Size11473922 + Total Time477098 + Disc Number1 + Disc Count1 + Track Number1 + Track Count5 + Year1965 + Date Modified2006-07-28T01:52:32Z + Date Added2009-10-03T14:56:22Z + Bit Rate192 + Sample Rate44100 + Normalization1916 + Artwork Count1 + Persistent ID835C1CB659A5D368 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Herbie%20Hancock/Maiden%20Voyage/01%20Maiden%20Voyage.m4a + File Folder Count4 + Library Folder Count1 + + 4104 + + Track ID4104 + NameThe Eye Of The Hurricane + ArtistHerbie Hancock + ComposerHerbie Hancock (1940-) + AlbumMaiden Voyage + GenreJazz + KindAAC audio file + Size8691067 + Total Time361463 + Disc Number1 + Disc Count1 + Track Number2 + Track Count5 + Year1965 + Date Modified2006-07-28T01:52:32Z + Date Added2009-10-03T14:56:22Z + Bit Rate192 + Sample Rate44100 + Normalization2527 + Artwork Count1 + Sort NameEye Of The Hurricane + Persistent ID7B59702D5B3EE6C6 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Herbie%20Hancock/Maiden%20Voyage/02%20The%20Eye%20Of%20The%20Hurricane.m4a + File Folder Count4 + Library Folder Count1 + + 4106 + + Track ID4106 + NameLittle One + ArtistHerbie Hancock + ComposerHerbie Hancock (1940-) + AlbumMaiden Voyage + GenreJazz + KindAAC audio file + Size12707017 + Total Time527277 + Disc Number1 + Disc Count1 + Track Number3 + Track Count5 + Year1965 + Date Modified2006-07-28T01:52:34Z + Date Added2009-10-03T14:56:22Z + Bit Rate192 + Sample Rate44100 + Normalization1343 + Artwork Count1 + Persistent ID68E8472F144650EF + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Herbie%20Hancock/Maiden%20Voyage/03%20Little%20One.m4a + File Folder Count4 + Library Folder Count1 + + 4108 + + Track ID4108 + NameSurvival Of The Fittest + ArtistHerbie Hancock + ComposerHerbie Hancock (1940-) + AlbumMaiden Voyage + GenreJazz + KindAAC audio file + Size14549934 + Total Time603229 + Disc Number1 + Disc Count1 + Track Number4 + Track Count5 + Year1965 + Date Modified2006-07-28T01:52:36Z + Date Added2009-10-03T14:56:22Z + Bit Rate192 + Sample Rate44100 + Normalization1484 + Artwork Count1 + Persistent ID614BD13424F694AB + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Herbie%20Hancock/Maiden%20Voyage/04%20Survival%20Of%20The%20Fittest.m4a + File Folder Count4 + Library Folder Count1 + + 4110 + + Track ID4110 + NameDolphin Dance + ArtistHerbie Hancock + ComposerHerbie Hancock (1940-) + AlbumMaiden Voyage + GenreJazz + KindAAC audio file + Size13444632 + Total Time556139 + Disc Number1 + Disc Count1 + Track Number5 + Track Count5 + Year1965 + Date Modified2006-07-28T01:52:36Z + Date Added2009-10-03T14:56:22Z + Bit Rate192 + Sample Rate44100 + Normalization1614 + Artwork Count1 + Persistent IDCA687C2C89A571B8 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Herbie%20Hancock/Maiden%20Voyage/05%20Dolphin%20Dance.m4a + File Folder Count4 + Library Folder Count1 + + 4112 + + Track ID4112 + NameIk Onkar + ArtistHarshdeep Kaur + ComposerA R Rehman + AlbumRang De Basanti + GenreSoundtracks + KindAAC audio file + Size2133809 + Total Time88396 + Track Number1 + Date Modified2006-12-29T04:14:44Z + Date Added2009-10-03T14:56:22Z + Bit Rate192 + Sample Rate44100 + Normalization1656 + Sort ComposerR Rehman + Persistent ID5F9A342D58989A02 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harshdeep%20Kaur/Rang%20De%20Basanti/01%20Ik%20Onkar.m4a + File Folder Count4 + Library Folder Count1 + + 4114 + + Track ID4114 + NameIk Onkar + ArtistHarshdeep Kaur + ComposerA R Rehman + AlbumRang De Basanti + GenreSoundtracks + KindAAC audio file + Size2102347 + Total Time88375 + Track Number1 + Date Modified2007-07-27T06:36:56Z + Date Added2009-10-03T14:56:22Z + Bit Rate192 + Sample Rate44100 + Normalization1656 + Sort ComposerR Rehman + Persistent IDC32CF94A1563EB05 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harshdeep%20Kaur/Rang%20De%20Basanti/01%20Ik%20Onkar%201.m4a + File Folder Count4 + Library Folder Count1 + + 4116 + + Track ID4116 + NameIk Onkar + ArtistHarshdeep Kaur + ComposerA R Rehman + AlbumRang De Basanti + GenreSoundtracks + KindAAC audio file + Size2133809 + Total Time88396 + Track Number1 + Date Modified2007-04-09T09:37:50Z + Date Added2009-10-03T14:56:23Z + Bit Rate192 + Sample Rate44100 + Normalization1656 + Artwork Count1 + Sort ComposerR Rehman + Persistent IDE4CD3372B62AA4E8 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harshdeep%20Kaur/Rang%20De%20Basanti/01%20Ik%20Onkar%202.m4a + File Folder Count4 + Library Folder Count1 + + 4118 + + Track ID4118 + NameIk Onkar + ArtistHarshdeep Kaur + ComposerA R Rehman + AlbumRang De Basanti + GenreSoundtracks + KindAAC audio file + Size2104985 + Total Time88375 + Track Number1 + Date Modified2007-12-02T08:04:48Z + Date Added2009-10-03T14:56:23Z + Bit Rate188 + Sample Rate44100 + Normalization1656 + Sort ComposerR Rehman + Persistent IDEC8D396F8AED9D3C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harshdeep%20Kaur/Rang%20De%20Basanti/01%20Ik%20Onkar%203.m4a + File Folder Count4 + Library Folder Count1 + + 4120 + + Track ID4120 + NameAtached + ArtistHariprasad Chaurasia + AlbumMaya + GenreWorld + KindAAC audio file + Size6068970 + Total Time253600 + Track Number1 + Track Count9 + Date Modified2007-09-10T05:39:32Z + Date Added2009-10-03T14:56:23Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3337847302 + Play Date UTC2009-10-08T06:18:22Z + Normalization1400 + Persistent ID0669DA604273413B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hariprasad%20Chaurasia/Maya/01%20Atached.m4a + File Folder Count4 + Library Folder Count1 + + 4122 + + Track ID4122 + NameIntrospection + ArtistHariprasad Chaurasia + AlbumMaya + GenreWorld + KindAAC audio file + Size4940541 + Total Time207533 + Track Number2 + Track Count9 + Date Modified2007-09-10T05:57:42Z + Date Added2009-10-03T14:56:23Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3337847510 + Play Date UTC2009-10-08T06:21:50Z + Normalization1258 + Persistent ID1183DB1ACF837DA3 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hariprasad%20Chaurasia/Maya/02%20Introspection.m4a + File Folder Count4 + Library Folder Count1 + + 4124 + + Track ID4124 + NameReaching Out + ArtistHariprasad Chaurasia + AlbumMaya + GenreWorld + KindAAC audio file + Size7223957 + Total Time302000 + Track Number3 + Track Count9 + Date Modified2007-09-10T05:58:18Z + Date Added2009-10-03T14:56:23Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3337847812 + Play Date UTC2009-10-08T06:26:52Z + Normalization1238 + Persistent ID19B705EE56AEFA46 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hariprasad%20Chaurasia/Maya/03%20Reaching%20Out.m4a + File Folder Count4 + Library Folder Count1 + + 4126 + + Track ID4126 + NameFreedom + ArtistHariprasad Chaurasia + AlbumMaya + GenreWorld + KindAAC audio file + Size5959941 + Total Time250026 + Track Number4 + Track Count9 + Date Modified2007-09-10T05:58:46Z + Date Added2009-10-03T14:56:23Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3337848062 + Play Date UTC2009-10-08T06:31:02Z + Normalization2881 + Persistent ID537B0096D1E56EE7 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hariprasad%20Chaurasia/Maya/04%20Freedom.m4a + File Folder Count4 + Library Folder Count1 + + 4128 + + Track ID4128 + NameDilemma + ArtistHariprasad Chaurasia + AlbumMaya + GenreWorld + KindAAC audio file + Size7829381 + Total Time325706 + Track Number5 + Track Count9 + Date Modified2007-09-10T05:59:22Z + Date Added2009-10-03T14:56:23Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3337848387 + Play Date UTC2009-10-08T06:36:27Z + Normalization1071 + Persistent ID33B61E99477201FC + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hariprasad%20Chaurasia/Maya/05%20Dilemma.m4a + File Folder Count4 + Library Folder Count1 + + 4130 + + Track ID4130 + NameTwilight Zone + ArtistHariprasad Chaurasia + AlbumMaya + GenreWorld + KindAAC audio file + Size5918117 + Total Time247960 + Track Number6 + Track Count9 + Date Modified2007-09-10T05:59:54Z + Date Added2009-10-03T14:56:24Z + Bit Rate192 + Sample Rate44100 + Normalization999 + Persistent ID3973B1A8150A36C0 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hariprasad%20Chaurasia/Maya/06%20Twilight%20Zone.m4a + File Folder Count4 + Library Folder Count1 + + 4132 + + Track ID4132 + NameLonging + ArtistHariprasad Chaurasia + AlbumMaya + GenreWorld + KindAAC audio file + Size6217147 + Total Time260066 + Track Number7 + Track Count9 + Date Modified2007-09-10T06:00:24Z + Date Added2009-10-03T14:56:24Z + Bit Rate192 + Sample Rate44100 + Normalization1084 + Persistent IDB5E91C8945BC069A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hariprasad%20Chaurasia/Maya/07%20Longing.m4a + File Folder Count4 + Library Folder Count1 + + 4134 + + Track ID4134 + NameMaya Unveiled + ArtistHariprasad Chaurasia + AlbumMaya + GenreWorld + KindAAC audio file + Size5764247 + Total Time241906 + Track Number8 + Track Count9 + Date Modified2007-09-10T06:00:56Z + Date Added2009-10-03T14:56:24Z + Bit Rate192 + Sample Rate44100 + Normalization1071 + Persistent ID08F66B757C1C4840 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hariprasad%20Chaurasia/Maya/08%20Maya%20Unveiled.m4a + File Folder Count4 + Library Folder Count1 + + 4136 + + Track ID4136 + NameThrough The Eyes Of The Taoist Master + ArtistHariprasad Chaurasia + AlbumMaya + GenreWorld + KindAAC audio file + Size7557072 + Total Time315066 + Track Number9 + Track Count9 + Date Modified2007-09-10T06:01:34Z + Date Added2009-10-03T14:56:24Z + Bit Rate192 + Sample Rate44100 + Normalization999 + Persistent ID36EA3F50B428E4BE + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hariprasad%20Chaurasia/Maya/09%20Through%20The%20Eyes%20Of%20The%20Taoist%20Master.m4a + File Folder Count4 + Library Folder Count1 + + 4138 + + Track ID4138 + NameDheemi Dheemi + ArtistHariharan/Ustad Zakir Hussain + ComposerA.R. Rahman/Javed Akhtar + Album1947 + GenreSoundtrack + KindAAC audio file + Size7596575 + Total Time315580 + Track Number3 + Year1999 + Date Modified2007-04-03T03:54:02Z + Date Added2009-10-03T14:56:24Z + Bit Rate192 + Sample Rate44100 + Normalization1532 + Artwork Count1 + Persistent ID9E33E11D6956B117 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hariharan_Ustad%20Zakir%20Hussain/1947/03%20Dheemi%20Dheemi.m4a + File Folder Count4 + Library Folder Count1 + + 4140 + + Track ID4140 + NameDheemi Dheemi + ArtistHariharan/Ustad Zakir Hussain + ComposerA.R. Rahman/Javed Akhtar + Album1947 + GenreSoundtrack + KindAAC audio file + Size7594173 + Total Time315559 + Track Number3 + Year1999 + Date Modified2007-07-27T05:53:52Z + Date Added2009-10-03T14:56:24Z + Bit Rate192 + Sample Rate44100 + Normalization1532 + Persistent IDDC39D05EFBE752B2 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hariharan_Ustad%20Zakir%20Hussain/1947/03%20Dheemi%20Dheemi%202.m4a + File Folder Count4 + Library Folder Count1 + + 4142 + + Track ID4142 + NameDheemi Dheemi + ArtistHariharan/Ustad Zakir Hussain + ComposerA.R. Rahman/Javed Akhtar + Album1947 + GenreSoundtrack + KindAAC audio file + Size7596575 + Total Time315580 + Track Number3 + Year1999 + Date Modified2007-04-03T03:54:02Z + Date Added2009-10-03T14:56:24Z + Bit Rate192 + Sample Rate44100 + Normalization1532 + Artwork Count1 + Persistent ID0CDBA25B4B1900C2 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hariharan_Ustad%20Zakir%20Hussain/1947/03%20Dheemi%20Dheemi%203.m4a + File Folder Count4 + Library Folder Count1 + + 4144 + + Track ID4144 + NameDheemi Dheemi + ArtistHariharan/Ustad Zakir Hussain + ComposerA.R. Rahman/Javed Akhtar + Album1947 + GenreSoundtrack + KindAAC audio file + Size7432206 + Total Time315559 + Track Number3 + Year1999 + Date Modified2007-12-02T07:35:33Z + Date Added2009-10-03T14:56:24Z + Bit Rate186 + Sample Rate44100 + Normalization1532 + Persistent ID2FFDBC041DC5A0F1 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hariharan_Ustad%20Zakir%20Hussain/1947/03%20Dheemi%20Dheemi%201.m4a + File Folder Count4 + Library Folder Count1 + + 4146 + + Track ID4146 + NameProgeny + ArtistHans Zimmer & Lisa Gerrard + ComposerHans Zimmer, Lisa Garrard + AlbumGladiator + GenreSoundtrack + KindAAC audio file + Size3261658 + Total Time133606 + Disc Number1 + Disc Count1 + Track Number1 + Track Count17 + Year2000 + Date Modified2006-07-31T04:08:36Z + Date Added2009-10-03T14:56:25Z + Bit Rate192 + Sample Rate44100 + Normalization102 + Artwork Count1 + Persistent ID81A83BF0527077D1 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hans%20Zimmer%20&%20Lisa%20Gerrard/Gladiator/01%20Progeny.m4a + File Folder Count4 + Library Folder Count1 + + 4148 + + Track ID4148 + NameThe Wheat + ArtistHans Zimmer & Lisa Gerrard + ComposerLisa Garrard + AlbumGladiator + GenreSoundtrack + KindAAC audio file + Size1572437 + Total Time63272 + Disc Number1 + Disc Count1 + Track Number2 + Track Count17 + Year2000 + Date Modified2006-07-31T04:08:36Z + Date Added2009-10-03T14:56:25Z + Bit Rate192 + Sample Rate44100 + Normalization211 + Artwork Count1 + Sort NameWheat + Persistent ID0FC165775D9ADD09 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hans%20Zimmer%20&%20Lisa%20Gerrard/Gladiator/02%20The%20Wheat.m4a + File Folder Count4 + Library Folder Count1 + + 4150 + + Track ID4150 + NameThe Battle + ArtistHans Zimmer & Lisa Gerrard + ComposerHans Zimmer + AlbumGladiator + GenreSoundtrack + KindAAC audio file + Size14602819 + Total Time602231 + Disc Number1 + Disc Count1 + Track Number3 + Track Count17 + Year2000 + Date Modified2006-07-31T04:08:36Z + Date Added2009-10-03T14:56:25Z + Bit Rate192 + Sample Rate44100 + Normalization1256 + Artwork Count1 + Sort NameBattle + Persistent ID3E448878E6B555D1 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hans%20Zimmer%20&%20Lisa%20Gerrard/Gladiator/03%20The%20Battle.m4a + File Folder Count4 + Library Folder Count1 + + 4152 + + Track ID4152 + NameEarth + ArtistHans Zimmer & Lisa Gerrard + ComposerHans Zimmer + AlbumGladiator + GenreSoundtrack + KindAAC audio file + Size4444874 + Total Time181880 + Disc Number1 + Disc Count1 + Track Number4 + Track Count17 + Year2000 + Date Modified2006-07-31T04:08:36Z + Date Added2009-10-03T14:56:25Z + Bit Rate192 + Sample Rate44100 + Normalization148 + Artwork Count1 + Persistent ID491F3264D717CBE8 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hans%20Zimmer%20&%20Lisa%20Gerrard/Gladiator/04%20Earth.m4a + File Folder Count4 + Library Folder Count1 + + 4154 + + Track ID4154 + NameSorrow + ArtistHans Zimmer & Lisa Gerrard + ComposerLisa Garrard, Klaus Badelt + AlbumGladiator + GenreSoundtrack + KindAAC audio file + Size2125710 + Total Time86307 + Disc Number1 + Disc Count1 + Track Number5 + Track Count17 + Year2000 + Date Modified2006-07-31T04:08:36Z + Date Added2009-10-03T14:56:25Z + Bit Rate192 + Sample Rate44100 + Normalization308 + Artwork Count1 + Persistent IDCE08068EFEED8867 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hans%20Zimmer%20&%20Lisa%20Gerrard/Gladiator/05%20Sorrow.m4a + File Folder Count4 + Library Folder Count1 + + 4156 + + Track ID4156 + NameTo Zucchabar + ArtistHans Zimmer & Lisa Gerrard + ComposerHans Zimmer, Djivan Gasparyan + AlbumGladiator + GenreSoundtrack + KindAAC audio file + Size4787017 + Total Time196114 + Disc Number1 + Disc Count1 + Track Number6 + Track Count17 + Year2000 + Date Modified2006-07-31T04:08:36Z + Date Added2009-10-03T14:56:25Z + Bit Rate192 + Sample Rate44100 + Normalization635 + Artwork Count1 + Persistent ID0E0BE6EDFC3B5F9A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hans%20Zimmer%20&%20Lisa%20Gerrard/Gladiator/06%20To%20Zucchabar.m4a + File Folder Count4 + Library Folder Count1 + + 4158 + + Track ID4158 + NamePatricide + ArtistHans Zimmer & Lisa Gerrard + ComposerHans Zimmer + AlbumGladiator + GenreSoundtrack + KindAAC audio file + Size6035008 + Total Time248080 + Disc Number1 + Disc Count1 + Track Number7 + Track Count17 + Year2000 + Date Modified2006-07-31T04:08:36Z + Date Added2009-10-03T14:56:25Z + Bit Rate192 + Sample Rate44100 + Normalization881 + Artwork Count1 + Persistent IDB57CF863927171EE + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hans%20Zimmer%20&%20Lisa%20Gerrard/Gladiator/07%20Patricide.m4a + File Folder Count4 + Library Folder Count1 + + 4160 + + Track ID4160 + NameThe Emperor Is Dead + ArtistHans Zimmer & Lisa Gerrard + ComposerHans Zimmer, Lisa Garrard + AlbumGladiator + GenreSoundtrack + KindAAC audio file + Size2014966 + Total Time81709 + Disc Number1 + Disc Count1 + Track Number8 + Track Count17 + Year2000 + Date Modified2006-07-31T04:08:36Z + Date Added2009-10-03T14:56:26Z + Bit Rate192 + Sample Rate44100 + Normalization55 + Artwork Count1 + Sort NameEmperor Is Dead + Persistent ID82C9BA5F711F1287 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hans%20Zimmer%20&%20Lisa%20Gerrard/Gladiator/08%20The%20Emperor%20Is%20Dead.m4a + File Folder Count4 + Library Folder Count1 + + 4162 + + Track ID4162 + NameThe Might Of Rome + ArtistHans Zimmer & Lisa Gerrard + ComposerHans Zimmer + AlbumGladiator + GenreSoundtrack + KindAAC audio file + Size7735057 + Total Time318437 + Disc Number1 + Disc Count1 + Track Number9 + Track Count17 + Year2000 + Date Modified2006-07-31T04:08:38Z + Date Added2009-10-03T14:56:26Z + Bit Rate192 + Sample Rate44100 + Normalization1256 + Artwork Count1 + Sort NameMight Of Rome + Persistent IDCB49716852476953 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hans%20Zimmer%20&%20Lisa%20Gerrard/Gladiator/09%20The%20Might%20Of%20Rome.m4a + File Folder Count4 + Library Folder Count1 + + 4164 + + Track ID4164 + NameStrength And Honor + ArtistHans Zimmer & Lisa Gerrard + ComposerHans Zimmer + AlbumGladiator + GenreSoundtrack + KindAAC audio file + Size3173050 + Total Time129914 + Disc Number1 + Disc Count1 + Track Number10 + Track Count17 + Year2000 + Date Modified2006-07-31T04:08:38Z + Date Added2009-10-03T14:56:26Z + Bit Rate192 + Sample Rate44100 + Normalization143 + Artwork Count1 + Persistent IDD13BE380B97FBD41 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hans%20Zimmer%20&%20Lisa%20Gerrard/Gladiator/10%20Strength%20And%20Honor.m4a + File Folder Count4 + Library Folder Count1 + + 4166 + + Track ID4166 + NameReunion + ArtistHans Zimmer & Lisa Gerrard + ComposerLisa Garrard, Klaus Badelt + AlbumGladiator + GenreSoundtrack + KindAAC audio file + Size1833465 + Total Time74139 + Disc Number1 + Disc Count1 + Track Number11 + Track Count17 + Year2000 + Date Modified2006-07-31T04:08:38Z + Date Added2009-10-03T14:56:26Z + Bit Rate192 + Sample Rate44100 + Normalization981 + Artwork Count1 + Persistent ID6249623CC86327D0 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hans%20Zimmer%20&%20Lisa%20Gerrard/Gladiator/11%20Reunion.m4a + File Folder Count4 + Library Folder Count1 + + 4168 + + Track ID4168 + NameSlaves To Rome + ArtistHans Zimmer & Lisa Gerrard + ComposerHans Zimmer + AlbumGladiator + GenreSoundtrack + KindAAC audio file + Size1505936 + Total Time60509 + Disc Number1 + Disc Count1 + Track Number12 + Track Count17 + Year2000 + Date Modified2006-07-31T04:08:38Z + Date Added2009-10-03T14:56:26Z + Bit Rate192 + Sample Rate44100 + Normalization1256 + Artwork Count1 + Persistent IDCBE94B07CCC29891 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hans%20Zimmer%20&%20Lisa%20Gerrard/Gladiator/12%20Slaves%20To%20Rome.m4a + File Folder Count4 + Library Folder Count1 + + 4170 + + Track ID4170 + NameBarbarian Horde + ArtistHans Zimmer & Lisa Gerrard + ComposerHans Zimmer + AlbumGladiator + GenreSoundtrack + KindAAC audio file + Size15350069 + Total Time633113 + Disc Number1 + Disc Count1 + Track Number13 + Track Count17 + Year2000 + Date Modified2006-07-31T04:08:38Z + Date Added2009-10-03T14:56:26Z + Bit Rate192 + Sample Rate44100 + Normalization1397 + Artwork Count1 + Persistent ID27F1188531D7ADDB + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hans%20Zimmer%20&%20Lisa%20Gerrard/Gladiator/13%20Barbarian%20Horde.m4a + File Folder Count4 + Library Folder Count1 + + 4172 + + Track ID4172 + NameAm I Not Merciful? + ArtistHans Zimmer & Lisa Gerrard + ComposerHans Zimmer + AlbumGladiator + GenreSoundtrack + KindAAC audio file + Size9550650 + Total Time393483 + Disc Number1 + Disc Count1 + Track Number14 + Track Count17 + Year2000 + Date Modified2006-07-31T04:08:38Z + Date Added2009-10-03T14:56:26Z + Bit Rate192 + Sample Rate44100 + Normalization1256 + Artwork Count1 + Persistent ID5252E001BBE8F9E0 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hans%20Zimmer%20&%20Lisa%20Gerrard/Gladiator/14%20Am%20I%20Not%20Merciful_.m4a + File Folder Count4 + Library Folder Count1 + + 4174 + + Track ID4174 + NameElysium + ArtistHans Zimmer & Lisa Gerrard + ComposerLisa Garrard, Klaus Badelt + AlbumGladiator + GenreSoundtrack + KindAAC audio file + Size3955236 + Total Time161493 + Disc Number1 + Disc Count1 + Track Number15 + Track Count17 + Year2000 + Date Modified2006-07-31T04:08:38Z + Date Added2009-10-03T14:56:27Z + Bit Rate192 + Sample Rate44100 + Normalization283 + Artwork Count1 + Persistent ID4E7DA64F4EB51F27 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hans%20Zimmer%20&%20Lisa%20Gerrard/Gladiator/15%20Elysium.m4a + File Folder Count4 + Library Folder Count1 + + 4176 + + Track ID4176 + NameHonor Him + ArtistHans Zimmer & Lisa Gerrard + ComposerHans Zimmer + AlbumGladiator + GenreSoundtrack + KindAAC audio file + Size1970475 + Total Time79851 + Disc Number1 + Disc Count1 + Track Number16 + Track Count17 + Year2000 + Date Modified2006-07-31T04:08:38Z + Date Added2009-10-03T14:56:27Z + Bit Rate192 + Sample Rate44100 + Normalization1166 + Artwork Count1 + Persistent ID2369D74DB9434184 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hans%20Zimmer%20&%20Lisa%20Gerrard/Gladiator/16%20Honor%20Him.m4a + File Folder Count4 + Library Folder Count1 + + 4178 + + Track ID4178 + NameNow We Are Free + ArtistHans Zimmer & Lisa Gerrard + ComposerHans Zimmer, Lisa Garrard, Klaus Badelt + AlbumGladiator + GenreSoundtrack + KindAAC audio file + Size6184174 + Total Time254303 + Disc Number1 + Disc Count1 + Track Number17 + Track Count17 + Year2000 + Date Modified2006-07-31T04:08:38Z + Date Added2009-10-03T14:56:27Z + Bit Rate192 + Sample Rate44100 + Normalization1256 + Artwork Count1 + Persistent ID5870B29B84C6D8B7 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hans%20Zimmer%20&%20Lisa%20Gerrard/Gladiator/17%20Now%20We%20Are%20Free.m4a + File Folder Count4 + Library Folder Count1 + + 4180 + + Track ID4180 + NameSymphony No. 6 in F Major, Op. 68, Pastoral/I. Allegro ma non troppo (Erwachen heiterer Emfindungen bei der Ankunft auf dem Lande) (Instrumental) + ArtistGlenn Gould + Album ArtistGlenn Gould + ComposerLudwig Van Beethoven (1770-1827) + AlbumBeethoven/Liszt: Symphony No.6 "Pastoral" (Piano Transcription) + GenreClassical + KindMPEG audio file + Size23106617 + Total Time741276 + Disc Number1 + Disc Count1 + Track Number1 + Track Count5 + Year1993 + Date Modified2009-06-19T13:15:30Z + Date Added2009-10-03T14:56:27Z + Bit Rate248 + Sample Rate44100 + CommentsAmazon.com Song ID: 204033914 + Play Count2 + Play Date3399998435 + Play Date UTC2011-09-27T14:30:35Z + Artwork Count1 + Persistent IDBDE1EE52D9C7D77B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Glenn%20Gould/Beethoven_Liszt_%20Symphony%20No.6%20_Pastoral_%20(Piano%20Transcription)/01%20Symphony%20No.%206%20in%20F%20Major,%20Op.%2068,%20Pastoral_I.%20Allegro%20ma%20non%20troppo%20(Erwachen%20heiterer%20Emfindungen%20bei%20der%20Ankunft%20auf%20dem%20Lande)%20(Instrumental).mp3 + File Folder Count4 + Library Folder Count1 + + 4182 + + Track ID4182 + NameSymphony No. 6 in F Major, Op. 68, Pastoral/II. Andante molto moto (Szene am Bach) (Instrumental) + ArtistGlenn Gould + Album ArtistGlenn Gould + ComposerLudwig Van Beethoven (1770-1827) + AlbumBeethoven/Liszt: Symphony No.6 "Pastoral" (Piano Transcription) + GenreClassical + KindMPEG audio file + Size38742988 + Total Time1251448 + Disc Number1 + Disc Count1 + Track Number2 + Track Count5 + Year1993 + Date Modified2009-06-19T13:23:36Z + Date Added2009-10-03T14:56:27Z + Bit Rate247 + Sample Rate44100 + CommentsAmazon.com Song ID: 204033910 + Play Count1 + Play Date3383636132 + Play Date UTC2011-03-22T05:25:32Z + Artwork Count1 + Persistent ID5565D217C8A5B514 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Glenn%20Gould/Beethoven_Liszt_%20Symphony%20No.6%20_Pastoral_%20(Piano%20Transcription)/02%20Symphony%20No.%206%20in%20F%20Major,%20Op.%2068,%20Pastoral_II.%20Andante%20molto%20moto%20(Szene%20am%20Bach)%20(Instrumental).mp3 + File Folder Count4 + Library Folder Count1 + + 4184 + + Track ID4184 + NameSymphony No. 6 in F Major, Op. 68, Pastoral/III. Allegro (Lustiges Zusammensein der Landleute) (Instrumental) + ArtistGlenn Gould + Album ArtistGlenn Gould + ComposerLudwig Van Beethoven (1770-1827) + AlbumBeethoven/Liszt: Symphony No.6 "Pastoral" (Piano Transcription) + GenreClassical + KindMPEG audio file + Size14116478 + Total Time451866 + Disc Number1 + Disc Count1 + Track Number3 + Track Count5 + Year1993 + Date Modified2009-06-19T13:27:50Z + Date Added2009-10-03T14:56:27Z + Bit Rate249 + Sample Rate44100 + CommentsAmazon.com Song ID: 204033912 + Artwork Count1 + Persistent ID6B75E4F750519EDE + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Glenn%20Gould/Beethoven_Liszt_%20Symphony%20No.6%20_Pastoral_%20(Piano%20Transcription)/03%20Symphony%20No.%206%20in%20F%20Major,%20Op.%2068,%20Pastoral_III.%20Allegro%20(Lustiges%20Zusammensein%20der%20Landleute)%20(Instrumental).mp3 + File Folder Count4 + Library Folder Count1 + + 4186 + + Track ID4186 + NameSymphony No. 6 in F Major, Op. 68, Pastoral/IV. Allegro (Gewitter, Sturm) (Instrumental) + ArtistGlenn Gould + Album ArtistGlenn Gould + ComposerLudwig Van Beethoven (1770-1827) + AlbumBeethoven/Liszt: Symphony No.6 "Pastoral" (Piano Transcription) + GenreClassical + KindMPEG audio file + Size7164733 + Total Time228414 + Disc Number1 + Disc Count1 + Track Number4 + Track Count5 + Year1993 + Date Modified2009-06-19T13:29:14Z + Date Added2009-10-03T14:56:27Z + Bit Rate249 + Sample Rate44100 + CommentsAmazon.com Song ID: 204033913 + Play Count1 + Play Date3400441765 + Play Date UTC2011-10-02T17:39:25Z + Artwork Count1 + Persistent IDAB1308DDB5B957FC + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Glenn%20Gould/Beethoven_Liszt_%20Symphony%20No.6%20_Pastoral_%20(Piano%20Transcription)/04%20Symphony%20No.%206%20in%20F%20Major,%20Op.%2068,%20Pastoral_IV.%20Allegro%20(Gewitter,%20Sturm)%20(Instrumental).mp3 + File Folder Count4 + Library Folder Count1 + + 4188 + + Track ID4188 + NameSymphony No. 6 in F Major, Op. 68, Pastoral/V. Allegretto (Hirtengesang: Frohe und dankbare Gefühle nach dem sturm) (Instrumental) + ArtistGlenn Gould + Album ArtistGlenn Gould + ComposerLudwig Van Beethoven (1770-1827) + AlbumBeethoven/Liszt: Symphony No.6 "Pastoral" (Piano Transcription) + GenreClassical + KindMPEG audio file + Size20061690 + Total Time644545 + Disc Number1 + Disc Count1 + Track Number5 + Track Count5 + Year1993 + Date Modified2009-06-19T13:33:13Z + Date Added2009-10-03T14:56:28Z + Bit Rate248 + Sample Rate44100 + CommentsAmazon.com Song ID: 204033911 + Artwork Count1 + Persistent ID7243F1061950C783 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Glenn%20Gould/Beethoven_Liszt_%20Symphony%20No.6%20_Pastoral_%20(Piano%20Transcription)/05%20Symphony%20No.%206%20in%20F%20Major,%20Op.%2068,%20Pastoral_V.%20Allegretto%20(Hirtengesang_%20Frohe%20und%20dankbare%20Gefu%CC%88hle%20nach%20dem%20sturm)%20(Instrumental).mp3 + File Folder Count4 + Library Folder Count1 + + 4190 + + Track ID4190 + NameLa Primavera in E major RV269 - Allegro + ArtistGiuliano Carmignola En Venice Baroque Orchestra + ComposerAntonio Vivaldi + AlbumAntonio Vivaldi: The Four Seasons and Violin Concertos + GenreClassical + KindAAC audio file + Size4871784 + Total Time200108 + Disc Number1 + Disc Count1 + Track Number1 + Track Count21 + Year1999 + Date Modified2006-07-30T16:17:18Z + Date Added2009-10-03T14:56:28Z + Bit Rate192 + Sample Rate44100 + Skip Count1 + Skip Date2014-01-05T13:48:09Z + Normalization575 + Artwork Count1 + Persistent ID71D4BC8F1F3FCFEB + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Giuliano%20Carmignola%20En%20Venice%20Baroque%20Orchestra/Antonio%20Vivaldi_%20The%20Four%20Seasons%20and%20Violin%20Concertos/01%20La%20Primavera%20in%20E%20major%20RV269%20-%20Allegro.m4a + File Folder Count4 + Library Folder Count1 + + 4192 + + Track ID4192 + NameLa Primavera in E major RV269 - Largo + ArtistGiuliano Carmignola En Venice Baroque Orchestra + ComposerAntonio Vivaldi + AlbumAntonio Vivaldi: The Four Seasons and Violin Concertos + GenreClassical + KindAAC audio file + Size3372718 + Total Time138250 + Disc Number1 + Disc Count1 + Track Number2 + Track Count21 + Year1999 + Date Modified2006-07-30T16:17:18Z + Date Added2009-10-03T14:56:28Z + Bit Rate192 + Sample Rate44100 + Normalization90 + Artwork Count1 + Persistent ID182FBC9B61A939D8 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Giuliano%20Carmignola%20En%20Venice%20Baroque%20Orchestra/Antonio%20Vivaldi_%20The%20Four%20Seasons%20and%20Violin%20Concertos/02%20La%20Primavera%20in%20E%20major%20RV269%20-%20Largo.m4a + File Folder Count4 + Library Folder Count1 + + 4194 + + Track ID4194 + NameLa Primavera in E major RV269 - Allegro + ArtistGiuliano Carmignola En Venice Baroque Orchestra + ComposerAntonio Vivaldi + AlbumAntonio Vivaldi: The Four Seasons and Violin Concertos + GenreClassical + KindAAC audio file + Size5360068 + Total Time220309 + Disc Number1 + Disc Count1 + Track Number3 + Track Count21 + Year1999 + Date Modified2006-07-30T16:17:18Z + Date Added2009-10-03T14:56:28Z + Bit Rate192 + Sample Rate44100 + Normalization341 + Artwork Count1 + Persistent ID16F3DACF538E8779 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Giuliano%20Carmignola%20En%20Venice%20Baroque%20Orchestra/Antonio%20Vivaldi_%20The%20Four%20Seasons%20and%20Violin%20Concertos/03%20La%20Primavera%20in%20E%20major%20RV269%20-%20Allegro.m4a + File Folder Count4 + Library Folder Count1 + + 4196 + + Track ID4196 + NameL'Estate in G minor RV 315 - Allegro non molto + ArtistGiuliano Carmignola En Venice Baroque Orchestra + ComposerAntonio Vivaldi + AlbumAntonio Vivaldi: The Four Seasons and Violin Concertos + GenreClassical + KindAAC audio file + Size7227044 + Total Time297794 + Disc Number1 + Disc Count1 + Track Number4 + Track Count21 + Year1999 + Date Modified2006-07-30T16:17:18Z + Date Added2009-10-03T14:56:28Z + Bit Rate192 + Sample Rate44100 + Skip Count1 + Skip Date2014-01-05T10:36:17Z + Normalization1078 + Artwork Count1 + Persistent IDED3F33FD5E18BAAE + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Giuliano%20Carmignola%20En%20Venice%20Baroque%20Orchestra/Antonio%20Vivaldi_%20The%20Four%20Seasons%20and%20Violin%20Concertos/04%20L'Estate%20in%20G%20minor%20RV%20315%20-%20Allegro%20non%20molto.m4a + File Folder Count4 + Library Folder Count1 + + 4198 + + Track ID4198 + NameL'Estate in G minor RV 315 - Adagio + ArtistGiuliano Carmignola En Venice Baroque Orchestra + ComposerAntonio Vivaldi + AlbumAntonio Vivaldi: The Four Seasons and Violin Concertos + GenreClassical + KindAAC audio file + Size3366949 + Total Time138017 + Disc Number1 + Disc Count1 + Track Number5 + Track Count21 + Year1999 + Date Modified2006-07-30T16:17:18Z + Date Added2009-10-03T14:56:28Z + Bit Rate192 + Sample Rate44100 + Normalization230 + Artwork Count1 + Persistent ID7848E78C0C46D39C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Giuliano%20Carmignola%20En%20Venice%20Baroque%20Orchestra/Antonio%20Vivaldi_%20The%20Four%20Seasons%20and%20Violin%20Concertos/05%20L'Estate%20in%20G%20minor%20RV%20315%20-%20Adagio.m4a + File Folder Count4 + Library Folder Count1 + + 4200 + + Track ID4200 + NameL'Estate in G minor RV 315 - Preston + ArtistGiuliano Carmignola En Venice Baroque Orchestra + ComposerAntonio Vivaldi + AlbumAntonio Vivaldi: The Four Seasons and Violin Concertos + GenreClassical + KindAAC audio file + Size3434629 + Total Time140804 + Disc Number1 + Disc Count1 + Track Number6 + Track Count21 + Year1999 + Date Modified2006-07-30T16:17:18Z + Date Added2009-10-03T14:56:29Z + Bit Rate192 + Sample Rate44100 + Normalization1188 + Artwork Count1 + Persistent IDB3DF47FD3B08A8D4 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Giuliano%20Carmignola%20En%20Venice%20Baroque%20Orchestra/Antonio%20Vivaldi_%20The%20Four%20Seasons%20and%20Violin%20Concertos/06%20L'Estate%20in%20G%20minor%20RV%20315%20-%20Preston.m4a + File Folder Count4 + Library Folder Count1 + + 4202 + + Track ID4202 + NameL'Autunno in F major RV 293 - Allegro + ArtistGiuliano Carmignola En Venice Baroque Orchestra + ComposerAntonio Vivaldi + AlbumAntonio Vivaldi: The Four Seasons and Violin Concertos + GenreClassical + KindAAC audio file + Size6660841 + Total Time274365 + Disc Number1 + Disc Count1 + Track Number7 + Track Count21 + Year1999 + Date Modified2006-07-30T16:17:18Z + Date Added2009-10-03T14:56:29Z + Bit Rate192 + Sample Rate44100 + Normalization629 + Artwork Count1 + Persistent IDAC7F6AF5E1CD015F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Giuliano%20Carmignola%20En%20Venice%20Baroque%20Orchestra/Antonio%20Vivaldi_%20The%20Four%20Seasons%20and%20Violin%20Concertos/07%20L'Autunno%20in%20F%20major%20RV%20293%20-%20Allegro.m4a + File Folder Count4 + Library Folder Count1 + + 4204 + + Track ID4204 + NameL'Autunno in F major RV 293 - Adagio molto + ArtistGiuliano Carmignola En Venice Baroque Orchestra + ComposerAntonio Vivaldi + AlbumAntonio Vivaldi: The Four Seasons and Violin Concertos + GenreClassical + KindAAC audio file + Size4912309 + Total Time201687 + Disc Number1 + Disc Count1 + Track Number8 + Track Count21 + Year1999 + Date Modified2006-07-30T16:17:20Z + Date Added2009-10-03T14:56:29Z + Bit Rate192 + Sample Rate44100 + Normalization37 + Artwork Count1 + Persistent ID18D9042F58F9F742 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Giuliano%20Carmignola%20En%20Venice%20Baroque%20Orchestra/Antonio%20Vivaldi_%20The%20Four%20Seasons%20and%20Violin%20Concertos/08%20L'Autunno%20in%20F%20major%20RV%20293%20-%20Adagio%20molto.m4a + File Folder Count4 + Library Folder Count1 + + 4206 + + Track ID4206 + NameL'Autunno in F major RV 293 - Allegro + ArtistGiuliano Carmignola En Venice Baroque Orchestra + ComposerAntonio Vivaldi + AlbumAntonio Vivaldi: The Four Seasons and Violin Concertos + GenreClassical + KindAAC audio file + Size4226490 + Total Time173776 + Disc Number1 + Disc Count1 + Track Number9 + Track Count21 + Year1999 + Date Modified2006-07-30T16:17:20Z + Date Added2009-10-03T14:56:29Z + Bit Rate192 + Sample Rate44100 + Normalization646 + Artwork Count1 + Persistent ID3950462ADFFDD65D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Giuliano%20Carmignola%20En%20Venice%20Baroque%20Orchestra/Antonio%20Vivaldi_%20The%20Four%20Seasons%20and%20Violin%20Concertos/09%20L'Autunno%20in%20F%20major%20RV%20293%20-%20Allegro.m4a + File Folder Count4 + Library Folder Count1 + + 4208 + + Track ID4208 + NameL'Inverno in F minor RV 297 - Allegro non molto + ArtistGiuliano Carmignola En Venice Baroque Orchestra + ComposerAntonio Vivaldi + AlbumAntonio Vivaldi: The Four Seasons and Violin Concertos + GenreClassical + KindAAC audio file + Size4512983 + Total Time185038 + Disc Number1 + Disc Count1 + Track Number10 + Track Count21 + Year1999 + Date Modified2006-07-30T16:17:20Z + Date Added2009-10-03T14:56:29Z + Bit Rate192 + Sample Rate44100 + Normalization653 + Artwork Count1 + Persistent ID4671AE3E05D64C8C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Giuliano%20Carmignola%20En%20Venice%20Baroque%20Orchestra/Antonio%20Vivaldi_%20The%20Four%20Seasons%20and%20Violin%20Concertos/10%20L'Inverno%20in%20F%20minor%20RV%20297%20-%20Allegro%20non%20molto.m4a + File Folder Count4 + Library Folder Count1 + + 4210 + + Track ID4210 + NameL'Inverno in F minor RV 297 - Largo + ArtistGiuliano Carmignola En Venice Baroque Orchestra + ComposerAntonio Vivaldi + AlbumAntonio Vivaldi: The Four Seasons and Violin Concertos + GenreClassical + KindAAC audio file + Size2635832 + Total Time107553 + Disc Number1 + Disc Count1 + Track Number11 + Track Count21 + Year1999 + Date Modified2006-07-30T16:17:20Z + Date Added2009-10-03T14:56:29Z + Bit Rate192 + Sample Rate44100 + Normalization104 + Artwork Count1 + Persistent ID60A71BE835AACF2F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Giuliano%20Carmignola%20En%20Venice%20Baroque%20Orchestra/Antonio%20Vivaldi_%20The%20Four%20Seasons%20and%20Violin%20Concertos/11%20L'Inverno%20in%20F%20minor%20RV%20297%20-%20Largo.m4a + File Folder Count4 + Library Folder Count1 + + 4212 + + Track ID4212 + NameL'Inverno in F minor RV 297 - Allegro + ArtistGiuliano Carmignola En Venice Baroque Orchestra + ComposerAntonio Vivaldi + AlbumAntonio Vivaldi: The Four Seasons and Violin Concertos + GenreClassical + KindAAC audio file + Size4074661 + Total Time167460 + Disc Number1 + Disc Count1 + Track Number12 + Track Count21 + Year1999 + Date Modified2006-07-30T16:17:20Z + Date Added2009-10-03T14:56:29Z + Bit Rate192 + Sample Rate44100 + Normalization612 + Artwork Count1 + Persistent IDBCC9DAB198ADF8C4 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Giuliano%20Carmignola%20En%20Venice%20Baroque%20Orchestra/Antonio%20Vivaldi_%20The%20Four%20Seasons%20and%20Violin%20Concertos/12%20L'Inverno%20in%20F%20minor%20RV%20297%20-%20Allegro.m4a + File Folder Count4 + Library Folder Count1 + + 4214 + + Track ID4214 + NameConcerto In E flat major RV257 - Andante Molto E Quasi Allegro + ArtistGiuliano Carmignola En Venice Baroque Orchestra + ComposerAntonio Vivaldi + AlbumAntonio Vivaldi: The Four Seasons and Violin Concertos + GenreClassical + KindAAC audio file + Size6460195 + Total Time266076 + Disc Number1 + Disc Count1 + Track Number13 + Track Count21 + Year1999 + Date Modified2006-07-30T16:17:20Z + Date Added2009-10-03T14:56:29Z + Bit Rate192 + Sample Rate44100 + Normalization688 + Artwork Count1 + Persistent ID3611FA458B23E6EF + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Giuliano%20Carmignola%20En%20Venice%20Baroque%20Orchestra/Antonio%20Vivaldi_%20The%20Four%20Seasons%20and%20Violin%20Concertos/13%20Concerto%20In%20E%20flat%20major%20RV257%20-%20Andante%20Molto%20E%20Quasi%20Allegro.m4a + File Folder Count4 + Library Folder Count1 + + 4216 + + Track ID4216 + NameConcerto In E flat major RV257 - Adagio + ArtistGiuliano Carmignola En Venice Baroque Orchestra + ComposerAntonio Vivaldi + AlbumAntonio Vivaldi: The Four Seasons and Violin Concertos + GenreClassical + KindAAC audio file + Size3722828 + Total Time152809 + Disc Number1 + Disc Count1 + Track Number14 + Track Count21 + Year1999 + Date Modified2006-07-30T16:17:20Z + Date Added2009-10-03T14:56:30Z + Bit Rate192 + Sample Rate44100 + Normalization99 + Artwork Count1 + Persistent IDF692B508AB80E88C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Giuliano%20Carmignola%20En%20Venice%20Baroque%20Orchestra/Antonio%20Vivaldi_%20The%20Four%20Seasons%20and%20Violin%20Concertos/14%20Concerto%20In%20E%20flat%20major%20RV257%20-%20Adagio.m4a + File Folder Count4 + Library Folder Count1 + + 4218 + + Track ID4218 + NameConcerto In E flat major RV257 - Allegro + ArtistGiuliano Carmignola En Venice Baroque Orchestra + ComposerAntonio Vivaldi + AlbumAntonio Vivaldi: The Four Seasons and Violin Concertos + GenreClassical + KindAAC audio file + Size4505861 + Total Time184736 + Disc Number1 + Disc Count1 + Track Number15 + Track Count21 + Year1999 + Date Modified2006-07-30T16:17:20Z + Date Added2009-10-03T14:56:30Z + Bit Rate192 + Sample Rate44100 + Normalization564 + Artwork Count1 + Persistent ID8AB121E0DE0BE045 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Giuliano%20Carmignola%20En%20Venice%20Baroque%20Orchestra/Antonio%20Vivaldi_%20The%20Four%20Seasons%20and%20Violin%20Concertos/15%20Concerto%20In%20E%20flat%20major%20RV257%20-%20Allegro.m4a + File Folder Count4 + Library Folder Count1 + + 4220 + + Track ID4220 + NameConcerto In B flat major RV376 - Larghetto, Andante + ArtistGiuliano Carmignola En Venice Baroque Orchestra + ComposerAntonio Vivaldi + AlbumAntonio Vivaldi: The Four Seasons and Violin Concertos + GenreClassical + KindAAC audio file + Size6459852 + Total Time266076 + Disc Number1 + Disc Count1 + Track Number16 + Track Count21 + Year1999 + Date Modified2006-07-30T16:17:20Z + Date Added2009-10-03T14:56:30Z + Bit Rate192 + Sample Rate44100 + Normalization932 + Artwork Count1 + Persistent ID127D23F427E34F9C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Giuliano%20Carmignola%20En%20Venice%20Baroque%20Orchestra/Antonio%20Vivaldi_%20The%20Four%20Seasons%20and%20Violin%20Concertos/16%20Concerto%20In%20B%20flat%20major%20RV376%20-%20Larghetto,%20Andante.m4a + File Folder Count4 + Library Folder Count1 + + 4222 + + Track ID4222 + NameConcerto In B flat major RV376 - Andante + ArtistGiuliano Carmignola En Venice Baroque Orchestra + ComposerAntonio Vivaldi + AlbumAntonio Vivaldi: The Four Seasons and Violin Concertos + GenreClassical + KindAAC audio file + Size3529516 + Total Time144774 + Disc Number1 + Disc Count1 + Track Number17 + Track Count21 + Year1999 + Date Modified2006-07-30T16:17:20Z + Date Added2009-10-03T14:56:30Z + Bit Rate192 + Sample Rate44100 + Normalization195 + Artwork Count1 + Persistent IDD934C8A0DEDF7795 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Giuliano%20Carmignola%20En%20Venice%20Baroque%20Orchestra/Antonio%20Vivaldi_%20The%20Four%20Seasons%20and%20Violin%20Concertos/17%20Concerto%20In%20B%20flat%20major%20RV376%20-%20Andante.m4a + File Folder Count4 + Library Folder Count1 + + 4224 + + Track ID4224 + NameConcerto In B flat major RV376 -Allegro + ArtistGiuliano Carmignola En Venice Baroque Orchestra + ComposerAntonio Vivaldi + AlbumAntonio Vivaldi: The Four Seasons and Violin Concertos + GenreClassical + KindAAC audio file + Size4417157 + Total Time181044 + Disc Number1 + Disc Count1 + Track Number18 + Track Count21 + Year1999 + Date Modified2006-07-30T16:17:20Z + Date Added2009-10-03T14:56:30Z + Bit Rate192 + Sample Rate44100 + Normalization508 + Artwork Count1 + Persistent ID886515071B771100 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Giuliano%20Carmignola%20En%20Venice%20Baroque%20Orchestra/Antonio%20Vivaldi_%20The%20Four%20Seasons%20and%20Violin%20Concertos/18%20Concerto%20In%20B%20flat%20major%20RV376%20-Allegro.m4a + File Folder Count4 + Library Folder Count1 + + 4226 + + Track ID4226 + NameConcerto In D major RV 211 - Allegro non molto + ArtistGiuliano Carmignola En Venice Baroque Orchestra + ComposerAntonio Vivaldi + AlbumAntonio Vivaldi: The Four Seasons and Violin Concertos + GenreClassical + KindAAC audio file + Size7657024 + Total Time315534 + Disc Number1 + Disc Count1 + Track Number19 + Track Count21 + Year1999 + Date Modified2006-07-30T16:17:20Z + Date Added2009-10-03T14:56:30Z + Bit Rate192 + Sample Rate44100 + Normalization616 + Artwork Count1 + Persistent ID465376DF795248A8 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Giuliano%20Carmignola%20En%20Venice%20Baroque%20Orchestra/Antonio%20Vivaldi_%20The%20Four%20Seasons%20and%20Violin%20Concertos/19%20Concerto%20In%20D%20major%20RV%20211%20-%20Allegro%20non%20molto.m4a + File Folder Count4 + Library Folder Count1 + + 4228 + + Track ID4228 + NameConcerto In D major RV 211 - Larghetto + ArtistGiuliano Carmignola En Venice Baroque Orchestra + ComposerAntonio Vivaldi + AlbumAntonio Vivaldi: The Four Seasons and Violin Concertos + GenreClassical + KindAAC audio file + Size4931725 + Total Time202476 + Disc Number1 + Disc Count1 + Track Number20 + Track Count21 + Year1999 + Date Modified2006-07-30T16:17:20Z + Date Added2009-10-03T14:56:30Z + Bit Rate192 + Sample Rate44100 + Normalization78 + Artwork Count1 + Persistent ID95E67E4A2F0F0F79 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Giuliano%20Carmignola%20En%20Venice%20Baroque%20Orchestra/Antonio%20Vivaldi_%20The%20Four%20Seasons%20and%20Violin%20Concertos/20%20Concerto%20In%20D%20major%20RV%20211%20-%20Larghetto.m4a + File Folder Count4 + Library Folder Count1 + + 4230 + + Track ID4230 + NameConcerto In D major RV 211 - Allegro + ArtistGiuliano Carmignola En Venice Baroque Orchestra + ComposerAntonio Vivaldi + AlbumAntonio Vivaldi: The Four Seasons and Violin Concertos + GenreClassical + KindAAC audio file + Size7999337 + Total Time329814 + Disc Number1 + Disc Count1 + Track Number21 + Track Count21 + Year1999 + Date Modified2006-07-30T16:17:22Z + Date Added2009-10-03T14:56:30Z + Bit Rate192 + Sample Rate44100 + Normalization786 + Artwork Count1 + Persistent ID3A8527B980877FCD + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Giuliano%20Carmignola%20En%20Venice%20Baroque%20Orchestra/Antonio%20Vivaldi_%20The%20Four%20Seasons%20and%20Violin%20Concertos/21%20Concerto%20In%20D%20major%20RV%20211%20-%20Allegro.m4a + File Folder Count4 + Library Folder Count1 + + 4232 + + Track ID4232 + NameArrival O T Queen O Sheba + ArtistGeorge Frideric Handel + ComposerGeorge Frederick Handel (1685-1759) + AlbumGreatest Hits + GenreClassical + KindAAC audio file + Size4559441 + Total Time187639 + Track Number1 + Track Count22 + Date Modified2006-07-30T12:55:14Z + Date Added2009-10-03T14:56:31Z + Bit Rate192 + Sample Rate44100 + Rating60 + Rating Computed + Album Rating60 + Normalization383 + Artwork Count1 + Persistent IDFF8E9A784EB2ECB2 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Frideric%20Handel/Greatest%20Hits/01%20Arrival%20O%20T%20Queen%20O%20Sheba.m4a + File Folder Count4 + Library Folder Count1 + + 4234 + + Track ID4234 + NameWater Music SuN1_Allegro_Andante_Allegro da capo + ArtistGeorge Frideric Handel + ComposerGeorge Frederick Handel (1685-1759) + AlbumGreatest Hits + GenreClassical + KindAAC audio file + Size11070748 + Total Time457083 + Track Number2 + Track Count22 + Date Modified2006-07-30T12:55:14Z + Date Added2009-10-03T14:56:31Z + Bit Rate192 + Sample Rate44100 + Rating60 + Rating Computed + Album Rating60 + Normalization936 + Artwork Count1 + Persistent IDBB3D67E74BBB276C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Frideric%20Handel/Greatest%20Hits/02%20Water%20Music%20SuN1_Allegro_Andante_Allegro%20da%20capo.m4a + File Folder Count4 + Library Folder Count1 + + 4236 + + Track ID4236 + NameWater Music SuN1_Air + ArtistGeorge Frideric Handel + ComposerGeorge Frederick Handel (1685-1759) + AlbumGreatest Hits + GenreClassical + KindAAC audio file + Size3854424 + Total Time158288 + Track Number3 + Track Count22 + Date Modified2006-07-30T12:55:14Z + Date Added2009-10-03T14:56:31Z + Bit Rate192 + Sample Rate44100 + Rating60 + Rating Computed + Album Rating60 + Normalization66 + Artwork Count1 + Persistent ID8A99DE362807DF2F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Frideric%20Handel/Greatest%20Hits/03%20Water%20Music%20SuN1_Air.m4a + File Folder Count4 + Library Folder Count1 + + 4238 + + Track ID4238 + NameWater Music SuN1_Minuet + ArtistGeorge Frideric Handel + ComposerGeorge Frederick Handel (1685-1759) + AlbumGreatest Hits + GenreClassical + KindAAC audio file + Size5633160 + Total Time232337 + Track Number4 + Track Count22 + Date Modified2006-07-30T12:55:14Z + Date Added2009-10-03T14:56:31Z + Bit Rate192 + Sample Rate44100 + Rating60 + Rating Computed + Album Rating60 + Normalization450 + Artwork Count1 + Persistent IDE6C92D407E6AEFDD + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Frideric%20Handel/Greatest%20Hits/04%20Water%20Music%20SuN1_Minuet.m4a + File Folder Count4 + Library Folder Count1 + + 4240 + + Track ID4240 + NameWater Music SuN1_Bourree + ArtistGeorge Frideric Handel + ComposerGeorge Frederick Handel (1685-1759) + AlbumGreatest Hits + GenreClassical + KindAAC audio file + Size1665531 + Total Time67150 + Track Number5 + Track Count22 + Date Modified2006-07-30T12:55:14Z + Date Added2009-10-03T14:56:31Z + Bit Rate192 + Sample Rate44100 + Rating60 + Rating Computed + Album Rating60 + Normalization130 + Artwork Count1 + Persistent ID28AABC0896142A3D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Frideric%20Handel/Greatest%20Hits/05%20Water%20Music%20SuN1_Bourree.m4a + File Folder Count4 + Library Folder Count1 + + 4242 + + Track ID4242 + NameWater Music SuN1_Hornpipe + ArtistGeorge Frideric Handel + ComposerGeorge Frederick Handel (1685-1759) + AlbumGreatest Hits + GenreClassical + KindAAC audio file + Size2327915 + Total Time94735 + Track Number6 + Track Count22 + Date Modified2006-07-30T12:55:14Z + Date Added2009-10-03T14:56:31Z + Bit Rate192 + Sample Rate44100 + Rating60 + Rating Computed + Album Rating60 + Normalization580 + Artwork Count1 + Persistent ID331F96F72D32336F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Frideric%20Handel/Greatest%20Hits/06%20Water%20Music%20SuN1_Hornpipe.m4a + File Folder Count4 + Library Folder Count1 + + 4244 + + Track ID4244 + NameLargo Fr "Xerxes" + ArtistGeorge Frideric Handel + ComposerGeorge Frederick Handel (1685-1759) + AlbumGreatest Hits + GenreClassical + KindAAC audio file + Size8575893 + Total Time353986 + Track Number7 + Track Count22 + Date Modified2006-07-30T12:55:14Z + Date Added2009-10-03T14:56:31Z + Bit Rate192 + Sample Rate44100 + Rating60 + Rating Computed + Album Rating60 + Normalization585 + Artwork Count1 + Persistent IDA49317089ED94651 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Frideric%20Handel/Greatest%20Hits/07%20Largo%20Fr%20_Xerxes_.m4a + File Folder Count4 + Library Folder Count1 + + 4246 + + Track ID4246 + NameMusic F T Royal Fireworks_Ov + ArtistGeorge Frideric Handel + ComposerGeorge Frederick Handel (1685-1759) + AlbumGreatest Hits + GenreClassical + KindAAC audio file + Size12427207 + Total Time513136 + Track Number8 + Track Count22 + Date Modified2006-07-30T12:55:16Z + Date Added2009-10-03T14:56:31Z + Bit Rate192 + Sample Rate44100 + Rating60 + Rating Computed + Album Rating60 + Normalization1461 + Artwork Count1 + Persistent ID130F6DEF45B155D2 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Frideric%20Handel/Greatest%20Hits/08%20Music%20F%20T%20Royal%20Fireworks_Ov.m4a + File Folder Count4 + Library Folder Count1 + + 4248 + + Track ID4248 + NameMusic F T Royal Fireworks_La rejouissance, Allegro + ArtistGeorge Frideric Handel + ComposerGeorge Frederick Handel (1685-1759) + AlbumGreatest Hits + GenreClassical + KindAAC audio file + Size3076440 + Total Time125897 + Track Number9 + Track Count22 + Date Modified2006-07-30T12:55:16Z + Date Added2009-10-03T14:56:32Z + Bit Rate192 + Sample Rate44100 + Rating60 + Rating Computed + Album Rating60 + Normalization1579 + Artwork Count1 + Persistent IDBA04BD3BB9D30216 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Frideric%20Handel/Greatest%20Hits/09%20Music%20F%20T%20Royal%20Fireworks_La%20rejouissance,%20Allegro.m4a + File Folder Count4 + Library Folder Count1 + + 4250 + + Track ID4250 + NameT Harmonious Blacksmith + ArtistGeorge Frideric Handel + ComposerGeorge Frederick Handel (1685-1759) + AlbumGreatest Hits + GenreClassical + KindAAC audio file + Size6314530 + Total Time260526 + Track Number10 + Track Count22 + Date Modified2006-07-30T12:55:16Z + Date Added2009-10-03T14:56:32Z + Bit Rate192 + Sample Rate44100 + Rating60 + Rating Computed + Album Rating60 + Normalization74 + Artwork Count1 + Persistent IDDCE22A5F5EB897C8 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Frideric%20Handel/Greatest%20Hits/10%20T%20Harmonious%20Blacksmith.m4a + File Folder Count4 + Library Folder Count1 + + 4252 + + Track ID4252 + NameLet T Bright Seraphim Fr Samson + ArtistGeorge Frideric Handel + ComposerGeorge Frederick Handel (1685-1759) + AlbumGreatest Hits + GenreClassical + KindAAC audio file + Size8419221 + Total Time347508 + Track Number11 + Track Count22 + Date Modified2006-07-30T12:55:16Z + Date Added2009-10-03T14:56:32Z + Bit Rate192 + Sample Rate44100 + Rating60 + Rating Computed + Album Rating60 + Normalization1141 + Artwork Count1 + Persistent ID78F1A149CAF9395E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Frideric%20Handel/Greatest%20Hits/11%20Let%20T%20Bright%20Seraphim%20Fr%20Samson.m4a + File Folder Count4 + Library Folder Count1 + + 4254 + + Track ID4254 + NameSuN11 F Harpsichord_Sarabande + ArtistGeorge Frideric Handel + ComposerGeorge Frederick Handel (1685-1759) + AlbumGreatest Hits + GenreClassical + KindAAC audio file + Size4364185 + Total Time179512 + Track Number12 + Track Count22 + Date Modified2006-07-30T12:55:16Z + Date Added2009-10-03T14:56:32Z + Bit Rate192 + Sample Rate44100 + Rating60 + Rating Computed + Album Rating60 + Normalization287 + Artwork Count1 + Persistent ID0BC07A80AA7DDD3A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Frideric%20Handel/Greatest%20Hits/12%20SuN11%20F%20Harpsichord_Sarabande.m4a + File Folder Count4 + Library Folder Count1 + + 4256 + + Track ID4256 + NameWater Music SuN2_WO tempo indication + ArtistGeorge Frideric Handel + ComposerGeorge Frederick Handel (1685-1759) + AlbumGreatest Hits + GenreClassical + KindAAC audio file + Size2829967 + Total Time115633 + Track Number13 + Track Count22 + Date Modified2006-07-30T12:55:16Z + Date Added2009-10-03T14:56:32Z + Bit Rate192 + Sample Rate44100 + Rating60 + Rating Computed + Album Rating60 + Normalization601 + Artwork Count1 + Persistent IDF8A39E63146501AB + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Frideric%20Handel/Greatest%20Hits/13%20Water%20Music%20SuN2_WO%20tempo%20indication.m4a + File Folder Count4 + Library Folder Count1 + + 4258 + + Track ID4258 + NameWater Music SuN2_Alla Hornpipe + ArtistGeorge Frideric Handel + ComposerGeorge Frederick Handel (1685-1759) + AlbumGreatest Hits + GenreClassical + KindAAC audio file + Size5677534 + Total Time234195 + Track Number14 + Track Count22 + Date Modified2006-07-30T12:55:16Z + Date Added2009-10-03T14:56:32Z + Bit Rate192 + Sample Rate44100 + Rating60 + Rating Computed + Album Rating60 + Normalization914 + Artwork Count1 + Persistent ID59BA63369DBF1690 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Frideric%20Handel/Greatest%20Hits/14%20Water%20Music%20SuN2_Alla%20Hornpipe.m4a + File Folder Count4 + Library Folder Count1 + + 4260 + + Track ID4260 + NameWater Music Suite #2: Minuet + ArtistGeorge Frideric Handel + ComposerGeorge Frederick Handel (1685-1759) + AlbumGreatest Hits + GenreClassical + KindAAC audio file + Size1852885 + Total Time74952 + Track Number15 + Track Count22 + Date Modified2006-07-30T12:55:16Z + Date Added2009-10-03T14:56:32Z + Bit Rate192 + Sample Rate44100 + Rating60 + Rating Computed + Album Rating60 + Normalization738 + Artwork Count1 + Persistent IDFFBAC6B786127B6B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Frideric%20Handel/Greatest%20Hits/15%20Water%20Music%20Suite%20%232_%20Minuet.m4a + File Folder Count4 + Library Folder Count1 + + 4262 + + Track ID4262 + NameWater Music Suite #2: Lentement + ArtistGeorge Frideric Handel + ComposerGeorge Frederick Handel (1685-1759) + AlbumGreatest Hits + GenreClassical + KindAAC audio file + Size2920492 + Total Time119418 + Track Number16 + Track Count22 + Date Modified2006-07-30T12:55:16Z + Date Added2009-10-03T14:56:32Z + Bit Rate192 + Sample Rate44100 + Rating60 + Rating Computed + Album Rating60 + Normalization544 + Artwork Count1 + Persistent ID3F44A1B34A751FD3 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Frideric%20Handel/Greatest%20Hits/16%20Water%20Music%20Suite%20%232_%20Lentement.m4a + File Folder Count4 + Library Folder Count1 + + 4264 + + Track ID4264 + NameWater Music Suite #2: Bourree + ArtistGeorge Frideric Handel + ComposerGeorge Frederick Handel (1685-1759) + AlbumGreatest Hits + GenreClassical + KindAAC audio file + Size1562780 + Total Time62878 + Track Number17 + Track Count22 + Date Modified2006-07-30T12:55:16Z + Date Added2009-10-03T14:56:33Z + Bit Rate192 + Sample Rate44100 + Rating60 + Rating Computed + Album Rating60 + Normalization891 + Artwork Count1 + Persistent ID5E4C28A0CC4A176A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Frideric%20Handel/Greatest%20Hits/17%20Water%20Music%20Suite%20%232_%20Bourree.m4a + File Folder Count4 + Library Folder Count1 + + 4266 + + Track ID4266 + NameMinuet from "Berenice" + ArtistGeorge Frideric Handel + ComposerGeorge Frederick Handel (1685-1759) + AlbumGreatest Hits + GenreClassical + KindAAC audio file + Size3955758 + Total Time162515 + Track Number18 + Track Count22 + Date Modified2006-07-30T12:55:16Z + Date Added2009-10-03T14:56:33Z + Bit Rate192 + Sample Rate44100 + Rating60 + Rating Computed + Album Rating60 + Normalization104 + Artwork Count1 + Persistent ID4A970E7C5715A574 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Frideric%20Handel/Greatest%20Hits/18%20Minuet%20from%20_Berenice_.m4a + File Folder Count4 + Library Folder Count1 + + 4268 + + Track ID4268 + NameThe Cuckoo and the Nightingale + ArtistGeorge Frideric Handel + ComposerGeorge Frederick Handel (1685-1759) + AlbumGreatest Hits + GenreClassical + KindAAC audio file + Size5623252 + Total Time231942 + Track Number19 + Track Count22 + Date Modified2006-07-30T12:55:16Z + Date Added2009-10-03T14:56:33Z + Bit Rate192 + Sample Rate44100 + Rating60 + Rating Computed + Album Rating60 + Normalization399 + Artwork Count1 + Sort NameCuckoo and the Nightingale + Persistent ID9076CA66B52D1E76 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Frideric%20Handel/Greatest%20Hits/19%20The%20Cuckoo%20and%20the%20Nightingale.m4a + File Folder Count4 + Library Folder Count1 + + 4270 + + Track ID4270 + NameSee, The Conquering Hero Come + ArtistGeorge Frideric Handel + ComposerGeorge Frederick Handel (1685-1759) + AlbumGreatest Hits + GenreClassical + KindAAC audio file + Size5615103 + Total Time231594 + Track Number20 + Track Count22 + Date Modified2006-07-30T12:55:16Z + Date Added2009-10-03T14:56:33Z + Bit Rate192 + Sample Rate44100 + Rating60 + Rating Computed + Album Rating60 + Normalization492 + Artwork Count1 + Persistent ID35988583E1443A6D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Frideric%20Handel/Greatest%20Hits/20%20See,%20The%20Conquering%20Hero%20Come.m4a + File Folder Count4 + Library Folder Count1 + + 4272 + + Track ID4272 + NameEternal Source of Light Divine + ArtistGeorge Frideric Handel + ComposerGeorge Frederick Handel (1685-1759) + AlbumGreatest Hits + GenreClassical + KindAAC audio file + Size3547127 + Total Time145494 + Track Number21 + Track Count22 + Date Modified2006-07-30T12:55:16Z + Date Added2009-10-03T14:56:33Z + Bit Rate192 + Sample Rate44100 + Rating60 + Rating Computed + Album Rating60 + Normalization1252 + Artwork Count1 + Persistent IDC9B9F4E4D5E3912B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Frideric%20Handel/Greatest%20Hits/21%20Eternal%20Source%20of%20Light%20Divine.m4a + File Folder Count4 + Library Folder Count1 + + 4274 + + Track ID4274 + NameHallelujah Chorus + ArtistGeorge Frideric Handel + ComposerGeorge Frederick Handel (1685-1759) + AlbumGreatest Hits + GenreClassical + KindAAC audio file + Size5772900 + Total Time238188 + Track Number22 + Track Count22 + Date Modified2006-07-30T12:55:16Z + Date Added2009-10-03T14:56:33Z + Bit Rate192 + Sample Rate44100 + Rating60 + Rating Computed + Album Rating60 + Normalization1644 + Artwork Count1 + Persistent ID69C282532D62283F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Frideric%20Handel/Greatest%20Hits/22%20Hallelujah%20Chorus.m4a + File Folder Count4 + Library Folder Count1 + + 4276 + + Track ID4276 + NameThe Esio Trot + ArtistGeorge Brooks + AlbumNight Spinner + GenreJazz + KindAAC audio file + Size10514925 + Total Time433770 + Track Number1 + Track Count10 + Date Modified2006-07-29T04:36:06Z + Date Added2009-10-03T14:56:37Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Sort NameEsio Trot + Persistent ID7685DCB23B82A22A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Brooks/Night%20Spinner/01%20The%20Esio%20Trot.m4a + File Folder Count4 + Library Folder Count1 + + 4278 + + Track ID4278 + NameWater Dance + ArtistGeorge Brooks + AlbumNight Spinner + GenreJazz + KindAAC audio file + Size10159717 + Total Time419095 + Track Number2 + Track Count10 + Date Modified2006-07-29T04:36:06Z + Date Added2009-10-03T14:56:37Z + Bit Rate192 + Sample Rate44100 + Normalization1243 + Artwork Count1 + Persistent ID4CC983DB8EE26174 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Brooks/Night%20Spinner/02%20Water%20Dance.m4a + File Folder Count4 + Library Folder Count1 + + 4280 + + Track ID4280 + NameHymn + ArtistGeorge Brooks + AlbumNight Spinner + GenreJazz + KindAAC audio file + Size3892899 + Total Time159891 + Track Number3 + Track Count10 + Date Modified2006-07-29T04:36:08Z + Date Added2009-10-03T14:56:37Z + Bit Rate192 + Sample Rate44100 + Normalization1383 + Artwork Count1 + Persistent ID02D7DDD50DADFF60 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Brooks/Night%20Spinner/03%20Hymn.m4a + File Folder Count4 + Library Folder Count1 + + 4282 + + Track ID4282 + NameNight Spinner + ArtistGeorge Brooks + AlbumNight Spinner + GenreJazz + KindAAC audio file + Size7209204 + Total Time297167 + Track Number4 + Track Count10 + Date Modified2006-07-29T04:36:08Z + Date Added2009-10-03T14:56:37Z + Bit Rate192 + Sample Rate44100 + Normalization1249 + Artwork Count1 + Persistent IDC37FEE66D7CA29CA + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Brooks/Night%20Spinner/04%20Night%20Spinner.m4a + File Folder Count4 + Library Folder Count1 + + 4284 + + Track ID4284 + NameIn The Grotto + ArtistGeorge Brooks + AlbumNight Spinner + GenreJazz + KindAAC audio file + Size14034114 + Total Time582656 + Track Number5 + Track Count10 + Date Modified2006-07-29T04:36:08Z + Date Added2009-10-03T14:56:37Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Persistent ID2D5BD74BA272B2BE + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Brooks/Night%20Spinner/05%20In%20The%20Grotto.m4a + File Folder Count4 + Library Folder Count1 + + 4286 + + Track ID4286 + NameLooking East + ArtistGeorge Brooks + AlbumNight Spinner + GenreJazz + KindAAC audio file + Size6766964 + Total Time278893 + Track Number6 + Track Count10 + Date Modified2006-07-29T04:36:08Z + Date Added2009-10-03T14:56:37Z + Bit Rate192 + Sample Rate44100 + Normalization1256 + Artwork Count1 + Persistent ID62C27FDF1BD1023A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Brooks/Night%20Spinner/06%20Looking%20East.m4a + File Folder Count4 + Library Folder Count1 + + 4288 + + Track ID4288 + NameImages + ArtistGeorge Brooks + AlbumNight Spinner + GenreJazz + KindAAC audio file + Size8841345 + Total Time364621 + Track Number7 + Track Count10 + Date Modified2006-07-29T04:36:10Z + Date Added2009-10-03T14:56:38Z + Bit Rate192 + Sample Rate44100 + Normalization1464 + Artwork Count1 + Persistent IDD5D90BF95FB6C41A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Brooks/Night%20Spinner/07%20Images.m4a + File Folder Count4 + Library Folder Count1 + + 4290 + + Track ID4290 + NameRomance + ArtistGeorge Brooks + AlbumNight Spinner + GenreJazz + KindAAC audio file + Size9935184 + Total Time409877 + Track Number8 + Track Count10 + Date Modified2006-07-29T04:36:10Z + Date Added2009-10-03T14:56:38Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Persistent ID3728F4A381D17CCD + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Brooks/Night%20Spinner/08%20Romance.m4a + File Folder Count4 + Library Folder Count1 + + 4292 + + Track ID4292 + NameMidnight Meeting + ArtistGeorge Brooks + AlbumNight Spinner + GenreJazz + KindAAC audio file + Size5659993 + Total Time233173 + Track Number9 + Track Count10 + Date Modified2006-07-29T04:36:10Z + Date Added2009-10-03T14:56:38Z + Bit Rate192 + Sample Rate44100 + Normalization1253 + Artwork Count1 + Persistent ID6CD18B31E820FC5A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Brooks/Night%20Spinner/09%20Midnight%20Meeting.m4a + File Folder Count4 + Library Folder Count1 + + 4294 + + Track ID4294 + NameThe Light Never Leaves Your Eyes + ArtistGeorge Brooks + AlbumNight Spinner + GenreJazz + KindAAC audio file + Size7930364 + Total Time327353 + Track Number10 + Track Count10 + Date Modified2006-07-29T04:36:10Z + Date Added2009-10-03T14:56:38Z + Bit Rate192 + Sample Rate44100 + Normalization917 + Artwork Count1 + Sort NameLight Never Leaves Your Eyes + Persistent IDC06E1ED22CD39104 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Brooks/Night%20Spinner/10%20The%20Light%20Never%20Leaves%20Your%20Eyes.m4a + File Folder Count4 + Library Folder Count1 + + 4296 + + Track ID4296 + NameHat And Beard + ArtistEric Dolphy + ComposerEric Dolphy + AlbumOut To Lunch + GenreJazz + KindAAC audio file + Size12162146 + Total Time504870 + Disc Number1 + Disc Count1 + Track Number1 + Track Count5 + Year1964 + Date Modified2006-07-28T02:07:36Z + Date Added2009-10-03T14:56:40Z + Bit Rate192 + Sample Rate44100 + Skip Count1 + Skip Date2014-01-03T03:17:14Z + Normalization2932 + Artwork Count1 + Persistent ID705F1E7180481732 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Eric%20Dolphy/Out%20To%20Lunch/01%20Hat%20And%20Beard.m4a + File Folder Count4 + Library Folder Count1 + + 4298 + + Track ID4298 + NameSomething Sweet, Something Tender + ArtistEric Dolphy + ComposerEric Dolphy + AlbumOut To Lunch + GenreJazz + KindAAC audio file + Size8742175 + Total Time363901 + Disc Number1 + Disc Count1 + Track Number2 + Track Count5 + Year1964 + Date Modified2006-07-28T02:07:36Z + Date Added2009-10-03T14:56:40Z + Bit Rate192 + Sample Rate44100 + Normalization2664 + Artwork Count1 + Persistent ID4A6E8659304C0535 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Eric%20Dolphy/Out%20To%20Lunch/02%20Something%20Sweet,%20Something%20Tender.m4a + File Folder Count4 + Library Folder Count1 + + 4300 + + Track ID4300 + NameGazzelloni + ArtistEric Dolphy + ComposerEric Dolphy + AlbumOut To Lunch + GenreJazz + KindAAC audio file + Size10633966 + Total Time443012 + Disc Number1 + Disc Count1 + Track Number3 + Track Count5 + Year1964 + Date Modified2006-07-28T02:07:38Z + Date Added2009-10-03T14:56:40Z + Bit Rate192 + Sample Rate44100 + Normalization3312 + Artwork Count1 + Persistent ID1E9C4DFEAD6F59AD + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Eric%20Dolphy/Out%20To%20Lunch/03%20Gazzelloni.m4a + File Folder Count4 + Library Folder Count1 + + 4302 + + Track ID4302 + NameOut To Lunch + ArtistEric Dolphy + ComposerEric Dolphy + AlbumOut To Lunch + GenreJazz + KindAAC audio file + Size17565670 + Total Time729314 + Disc Number1 + Disc Count1 + Track Number4 + Track Count5 + Year1964 + Date Modified2006-07-28T02:07:38Z + Date Added2009-10-03T14:56:41Z + Bit Rate192 + Sample Rate44100 + Normalization3550 + Artwork Count1 + Persistent IDC0D2992AAE58B083 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Eric%20Dolphy/Out%20To%20Lunch/04%20Out%20To%20Lunch.m4a + File Folder Count4 + Library Folder Count1 + + 4304 + + Track ID4304 + NameStraight Up And Down + ArtistEric Dolphy + ComposerEric Dolphy + AlbumOut To Lunch + GenreJazz + KindAAC audio file + Size12047138 + Total Time501178 + Disc Number1 + Disc Count1 + Track Number5 + Track Count5 + Year1964 + Date Modified2006-07-28T02:07:40Z + Date Added2009-10-03T14:56:41Z + Bit Rate192 + Sample Rate44100 + Normalization4766 + Artwork Count1 + Persistent IDC3DF0F2FD24C6A53 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Eric%20Dolphy/Out%20To%20Lunch/05%20Straight%20Up%20And%20Down.m4a + File Folder Count4 + Library Folder Count1 + + 4306 + + Track ID4306 + NameSigne + ArtistEric Clapton + ComposerEric Clapton + AlbumUnplugged + GenreBlues + KindAAC audio file + Size4722945 + Total Time193513 + Disc Number1 + Disc Count1 + Track Number1 + Track Count14 + Year1992 + Date Modified2006-08-08T11:56:52Z + Date Added2009-10-03T14:56:41Z + Bit Rate192 + Sample Rate44100 + Normalization1253 + Artwork Count1 + Persistent ID01BF14154F92F071 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Eric%20Clapton/Unplugged/01%20Signe.m4a + File Folder Count4 + Library Folder Count1 + + 4308 + + Track ID4308 + NameBefore You Accuse Me + ArtistEric Clapton + ComposerE. McDaniel + AlbumUnplugged + GenreBlues + KindAAC audio file + Size5458383 + Total Time224140 + Disc Number1 + Disc Count1 + Track Number2 + Track Count14 + Year1992 + Date Modified2006-08-08T11:56:52Z + Date Added2009-10-03T14:56:41Z + Bit Rate192 + Sample Rate44100 + Normalization1232 + Artwork Count1 + Persistent ID359EE07490C5597B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Eric%20Clapton/Unplugged/02%20Before%20You%20Accuse%20Me.m4a + File Folder Count4 + Library Folder Count1 + + 4310 + + Track ID4310 + NameHey Hey + ArtistEric Clapton + ComposerBig Bill Broonzy + AlbumUnplugged + GenreBlues + KindAAC audio file + Size4794390 + Total Time196485 + Disc Number1 + Disc Count1 + Track Number3 + Track Count14 + Year1992 + Date Modified2006-08-08T11:56:52Z + Date Added2009-10-03T14:56:41Z + Bit Rate192 + Sample Rate44100 + Normalization1255 + Artwork Count1 + Persistent ID35921111D9733700 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Eric%20Clapton/Unplugged/03%20Hey%20Hey.m4a + File Folder Count4 + Library Folder Count1 + + 4312 + + Track ID4312 + NameTears In Heaven + ArtistEric Clapton + ComposerEric Clapton & Will Jennings + AlbumUnplugged + GenreBlues + KindAAC audio file + Size6709218 + Total Time276107 + Disc Number1 + Disc Count1 + Track Number4 + Track Count14 + Year1992 + Date Modified2006-08-08T11:56:52Z + Date Added2009-10-03T14:56:41Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3441737928 + Play Date UTC2013-01-22T16:48:48Z + Normalization1255 + Artwork Count1 + Persistent ID4DE0A00DC81B7949 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Eric%20Clapton/Unplugged/04%20Tears%20In%20Heaven.m4a + File Folder Count4 + Library Folder Count1 + + 4314 + + Track ID4314 + NameLonely Stranger + ArtistEric Clapton + ComposerEric Clapton + AlbumUnplugged + GenreBlues + KindAAC audio file + Size7947349 + Total Time327260 + Disc Number1 + Disc Count1 + Track Number5 + Track Count14 + Year1992 + Date Modified2006-08-08T11:56:52Z + Date Added2009-10-03T14:56:41Z + Bit Rate192 + Sample Rate44100 + Normalization1255 + Artwork Count1 + Persistent ID160961E1AAC8BBDB + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Eric%20Clapton/Unplugged/05%20Lonely%20Stranger.m4a + File Folder Count4 + Library Folder Count1 + + 4316 + + Track ID4316 + NameNobody Knows You When You're Down & Out + ArtistEric Clapton + ComposerJimmy Cox + AlbumUnplugged + GenreBlues + KindAAC audio file + Size5579600 + Total Time229179 + Disc Number1 + Disc Count1 + Track Number6 + Track Count14 + Year1992 + Date Modified2006-08-08T11:56:52Z + Date Added2009-10-03T14:56:41Z + Bit Rate192 + Sample Rate44100 + Normalization1489 + Artwork Count1 + Persistent ID24718FCC5B9575D2 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Eric%20Clapton/Unplugged/06%20Nobody%20Knows%20You%20When%20You're%20Down%20&%20Out.m4a + File Folder Count4 + Library Folder Count1 + + 4318 + + Track ID4318 + NameLayla + ArtistEric Clapton + ComposerEric Clapton & Jim Gordon + AlbumUnplugged + GenreBlues + KindAAC audio file + Size6951419 + Total Time286114 + Disc Number1 + Disc Count1 + Track Number7 + Track Count14 + Year1992 + Date Modified2006-08-08T11:56:52Z + Date Added2009-10-03T14:56:42Z + Bit Rate192 + Sample Rate44100 + Normalization1255 + Artwork Count1 + Persistent ID0A01A1EB3425E3B2 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Eric%20Clapton/Unplugged/07%20Layla.m4a + File Folder Count4 + Library Folder Count1 + + 4320 + + Track ID4320 + NameRunning On Faith + ArtistEric Clapton + ComposerJerry Lynn Williams + AlbumUnplugged + GenreBlues + KindAAC audio file + Size9457219 + Total Time389675 + Disc Number1 + Disc Count1 + Track Number8 + Track Count14 + Year1992 + Date Modified2006-08-08T11:56:52Z + Date Added2009-10-03T14:56:42Z + Bit Rate192 + Sample Rate44100 + Normalization1236 + Artwork Count1 + Persistent ID15074AF52688ADAF + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Eric%20Clapton/Unplugged/08%20Running%20On%20Faith.m4a + File Folder Count4 + Library Folder Count1 + + 4322 + + Track ID4322 + NameWalkin' Blues + ArtistEric Clapton + ComposerRobert Johnson + AlbumUnplugged + GenreBlues + KindAAC audio file + Size5295223 + Total Time217360 + Disc Number1 + Disc Count1 + Track Number9 + Track Count14 + Year1992 + Date Modified2006-08-08T11:56:52Z + Date Added2009-10-03T14:56:42Z + Bit Rate192 + Sample Rate44100 + Normalization1043 + Artwork Count1 + Persistent IDD276CDEF077F643C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Eric%20Clapton/Unplugged/09%20Walkin'%20Blues.m4a + File Folder Count4 + Library Folder Count1 + + 4324 + + Track ID4324 + NameAlberta + ArtistEric Clapton + Composer[Traditional] + AlbumUnplugged + GenreBlues + KindAAC audio file + Size5416039 + Total Time222352 + Disc Number1 + Disc Count1 + Track Number10 + Track Count14 + Year1992 + Date Modified2006-08-08T11:56:50Z + Date Added2009-10-03T14:56:42Z + Bit Rate192 + Sample Rate44100 + Normalization1255 + Artwork Count1 + Persistent ID7388AFBA0E01BC2F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Eric%20Clapton/Unplugged/10%20Alberta.m4a + File Folder Count4 + Library Folder Count1 + + 4326 + + Track ID4326 + NameSan Francisco Bay Blues + ArtistEric Clapton + ComposerJesse Fuller + AlbumUnplugged + GenreBlues + KindAAC audio file + Size4958867 + Total Time203335 + Disc Number1 + Disc Count1 + Track Number11 + Track Count14 + Year1992 + Date Modified2006-08-08T11:56:50Z + Date Added2009-10-03T14:56:42Z + Bit Rate192 + Sample Rate44100 + Normalization2271 + Artwork Count1 + Persistent IDE25C9580737DA3A5 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Eric%20Clapton/Unplugged/11%20San%20Francisco%20Bay%20Blues.m4a + File Folder Count4 + Library Folder Count1 + + 4328 + + Track ID4328 + NameMalted Milk + ArtistEric Clapton + ComposerRobert Johnson + AlbumUnplugged + GenreBlues + KindAAC audio file + Size5274760 + Total Time216478 + Disc Number1 + Disc Count1 + Track Number12 + Track Count14 + Year1992 + Date Modified2006-08-08T11:56:50Z + Date Added2009-10-03T14:56:42Z + Bit Rate192 + Sample Rate44100 + Normalization1012 + Artwork Count1 + Persistent IDFA4254F768CC7BA0 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Eric%20Clapton/Unplugged/12%20Malted%20Milk.m4a + File Folder Count4 + Library Folder Count1 + + 4330 + + Track ID4330 + NameOld Love + ArtistEric Clapton + ComposerEric Clapton & Robert Cray + AlbumUnplugged + GenreBlues + KindAAC audio file + Size11445231 + Total Time472872 + Disc Number1 + Disc Count1 + Track Number13 + Track Count14 + Year1992 + Date Modified2006-08-08T11:56:50Z + Date Added2009-10-03T14:56:42Z + Bit Rate192 + Sample Rate44100 + Normalization1255 + Artwork Count1 + Persistent IDCCD2D6CB7C172E24 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Eric%20Clapton/Unplugged/13%20Old%20Love.m4a + File Folder Count4 + Library Folder Count1 + + 4332 + + Track ID4332 + NameRollin' And Tumblin' + ArtistEric Clapton + ComposerM. Morgenfield + AlbumUnplugged + GenreBlues + KindAAC audio file + Size6120647 + Total Time251981 + Disc Number1 + Disc Count1 + Track Number14 + Track Count14 + Year1992 + Date Modified2006-08-08T11:56:50Z + Date Added2009-10-03T14:56:42Z + Bit Rate192 + Sample Rate44100 + Normalization1412 + Artwork Count1 + Persistent ID1878335C5B559C9A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Eric%20Clapton/Unplugged/14%20Rollin'%20And%20Tumblin'.m4a + File Folder Count4 + Library Folder Count1 + + 4334 + + Track ID4334 + NameThe Gate + ArtistEnigma + ComposerDavid Fairstein/Michael Cretu + AlbumThe Screen Behind The Mirror + GenreElectronica/Dance + KindAAC audio file + Size3055213 + Total Time124411 + Disc Number1 + Disc Count1 + Track Number1 + Track Count11 + Year2000 + Date Modified2006-07-30T08:53:22Z + Date Added2009-10-03T14:56:43Z + Bit Rate192 + Sample Rate44100 + Normalization1234 + Artwork Count1 + Sort AlbumScreen Behind The Mirror + Sort NameGate + Persistent ID9CA464C21FB5EAAA + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/The%20Screen%20Behind%20The%20Mirror/01%20The%20Gate.m4a + File Folder Count4 + Library Folder Count1 + + 4336 + + Track ID4336 + NamePush The Limits + ArtistEnigma + ComposerMichael Cretu and Jens Gad + AlbumThe Screen Behind The Mirror + GenreElectronica/Dance + KindAAC audio file + Size9397516 + Total Time386912 + Disc Number1 + Disc Count1 + Track Number2 + Track Count11 + Year2000 + Date Modified2006-07-30T08:53:22Z + Date Added2009-10-03T14:56:44Z + Bit Rate192 + Sample Rate44100 + Normalization1235 + Artwork Count1 + Sort AlbumScreen Behind The Mirror + Persistent ID341803491AA2E45B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/The%20Screen%20Behind%20The%20Mirror/02%20Push%20The%20Limits.m4a + File Folder Count4 + Library Folder Count1 + + 4338 + + Track ID4338 + NameGravity Of Love + ArtistEnigma + ComposerDavid Fairstein/Michael Cretu + AlbumThe Screen Behind The Mirror + GenreElectronica/Dance + KindAAC audio file + Size5816667 + Total Time238769 + Disc Number1 + Disc Count1 + Track Number3 + Track Count11 + Year2000 + Date Modified2006-07-30T08:53:22Z + Date Added2009-10-03T14:56:44Z + Bit Rate192 + Sample Rate44100 + Normalization2420 + Artwork Count1 + Sort AlbumScreen Behind The Mirror + Persistent IDDB9330EA819B1622 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/The%20Screen%20Behind%20The%20Mirror/03%20Gravity%20Of%20Love.m4a + File Folder Count4 + Library Folder Count1 + + 4340 + + Track ID4340 + NameSmell Of Desire + ArtistEnigma + ComposerMichael Cretu and David Fairstein + AlbumThe Screen Behind The Mirror + GenreElectronica/Dance + KindAAC audio file + Size7230491 + Total Time297353 + Disc Number1 + Disc Count1 + Track Number4 + Track Count11 + Year2000 + Date Modified2006-07-30T08:53:22Z + Date Added2009-10-03T14:56:44Z + Bit Rate192 + Sample Rate44100 + Normalization1234 + Artwork Count1 + Sort AlbumScreen Behind The Mirror + Persistent ID978D751A8217E76F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/The%20Screen%20Behind%20The%20Mirror/04%20Smell%20Of%20Desire.m4a + File Folder Count4 + Library Folder Count1 + + 4342 + + Track ID4342 + NameModern Crusaders + ArtistEnigma + ComposerDavid Fairstein/Michael Cretu + AlbumThe Screen Behind The Mirror + GenreElectronica/Dance + KindAAC audio file + Size5621117 + Total Time230619 + Disc Number1 + Disc Count1 + Track Number5 + Track Count11 + Year2000 + Date Modified2006-07-30T08:53:22Z + Date Added2009-10-03T14:56:45Z + Bit Rate192 + Sample Rate44100 + Normalization2516 + Artwork Count1 + Sort AlbumScreen Behind The Mirror + Persistent ID485BEC65AC6D10CD + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/The%20Screen%20Behind%20The%20Mirror/05%20Modern%20Crusaders.m4a + File Folder Count4 + Library Folder Count1 + + 4344 + + Track ID4344 + NameTraces (Light & Weight) + ArtistEnigma + ComposerMichael Cretu and Jens Gad + AlbumThe Screen Behind The Mirror + GenreElectronica/Dance + KindAAC audio file + Size6126437 + Total Time251656 + Disc Number1 + Disc Count1 + Track Number6 + Track Count11 + Year2000 + Date Modified2006-07-30T08:53:22Z + Date Added2009-10-03T14:56:46Z + Bit Rate192 + Sample Rate44100 + Normalization1234 + Artwork Count1 + Sort AlbumScreen Behind The Mirror + Persistent ID2D648A6A3AFD20F8 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/The%20Screen%20Behind%20The%20Mirror/06%20Traces%20(Light%20&%20Weight).m4a + File Folder Count4 + Library Folder Count1 + + 4346 + + Track ID4346 + NameThe Screen Behind The Mirror + ArtistEnigma + ComposerDavid Fairstein/Michael Cretu + AlbumThe Screen Behind The Mirror + GenreElectronica/Dance + KindAAC audio file + Size5817016 + Total Time238769 + Disc Number1 + Disc Count1 + Track Number7 + Track Count11 + Year2000 + Date Modified2006-07-30T08:53:22Z + Date Added2009-10-03T14:56:46Z + Bit Rate192 + Sample Rate44100 + Normalization1676 + Artwork Count1 + Sort AlbumScreen Behind The Mirror + Sort NameScreen Behind The Mirror + Persistent ID24E0C5A5F2ACAD79 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/The%20Screen%20Behind%20The%20Mirror/07%20The%20Screen%20Behind%20The%20Mirror.m4a + File Folder Count4 + Library Folder Count1 + + 4348 + + Track ID4348 + NameEndless Quest + ArtistEnigma + ComposerDavid Fairstein/Michael Cretu + AlbumThe Screen Behind The Mirror + GenreElectronica/Dance + KindAAC audio file + Size4554040 + Total Time186222 + Disc Number1 + Disc Count1 + Track Number8 + Track Count11 + Year2000 + Date Modified2006-07-30T08:53:22Z + Date Added2009-10-03T14:56:47Z + Bit Rate192 + Sample Rate44100 + Normalization1994 + Artwork Count1 + Sort AlbumScreen Behind The Mirror + Persistent ID76D47A06EB018A5B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/The%20Screen%20Behind%20The%20Mirror/08%20Endless%20Quest.m4a + File Folder Count4 + Library Folder Count1 + + 4350 + + Track ID4350 + NameCamera Obscura + ArtistEnigma + ComposerDavid Fairstein/Michael Cretu + AlbumThe Screen Behind The Mirror + GenreElectronica/Dance + KindAAC audio file + Size2162589 + Total Time87886 + Disc Number1 + Disc Count1 + Track Number9 + Track Count11 + Year2000 + Date Modified2006-07-30T08:53:22Z + Date Added2009-10-03T14:56:47Z + Bit Rate192 + Sample Rate44100 + Normalization3957 + Artwork Count1 + Sort AlbumScreen Behind The Mirror + Persistent ID25049E790AED1203 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/The%20Screen%20Behind%20The%20Mirror/09%20Camera%20Obscura.m4a + File Folder Count4 + Library Folder Count1 + + 4352 + + Track ID4352 + NameBetween Mind & Heart + ArtistEnigma + ComposerDavid Fairstein/Michael Cretu + AlbumThe Screen Behind The Mirror + GenreElectronica/Dance + KindAAC audio file + Size6079907 + Total Time249752 + Disc Number1 + Disc Count1 + Track Number10 + Track Count11 + Year2000 + Date Modified2006-07-30T08:53:22Z + Date Added2009-10-03T14:56:48Z + Bit Rate192 + Sample Rate44100 + Normalization2131 + Artwork Count1 + Sort AlbumScreen Behind The Mirror + Persistent IDC6710C13123C6877 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/The%20Screen%20Behind%20The%20Mirror/10%20Between%20Mind%20&%20Heart.m4a + File Folder Count4 + Library Folder Count1 + + 4354 + + Track ID4354 + NameSilence Must Be Heard + ArtistEnigma + ComposerMichael Cretu and Jens Gad + AlbumThe Screen Behind The Mirror + GenreElectronica/Dance + KindAAC audio file + Size7759397 + Total Time319481 + Disc Number1 + Disc Count1 + Track Number11 + Track Count11 + Year2000 + Date Modified2006-07-30T08:53:24Z + Date Added2009-10-03T14:56:48Z + Bit Rate192 + Sample Rate44100 + Normalization2498 + Artwork Count1 + Sort AlbumScreen Behind The Mirror + Persistent ID707D9749A5613ADF + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/The%20Screen%20Behind%20The%20Mirror/11%20Silence%20Must%20Be%20Heard.m4a + File Folder Count4 + Library Folder Count1 + + 4356 + + Track ID4356 + NameSecond Chapter + ArtistEnigma + ComposerCurly M.C. + AlbumThe Cross Of Changes + GenreNew Age + KindAAC audio file + Size3287171 + Total Time135301 + Disc Number1 + Disc Count1 + Track Number1 + Track Count9 + Year1993 + Date Modified2006-08-07T08:52:46Z + Date Added2009-10-03T14:56:49Z + Bit Rate192 + Sample Rate44100 + Play Count2 + Play Date3441736920 + Play Date UTC2013-01-22T16:32:00Z + Skip Count1 + Skip Date2013-01-22T16:29:45Z + Normalization268 + Artwork Count1 + Sort AlbumCross Of Changes + Persistent IDA2874A96FD275EBB + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/The%20Cross%20Of%20Changes/01%20Second%20Chapter.m4a + File Folder Count4 + Library Folder Count1 + + 4358 + + Track ID4358 + NameThe Eyes Of Truth + ArtistEnigma + ComposerCurly M.C. + AlbumThe Cross Of Changes + GenreNew Age + KindAAC audio file + Size10530973 + Total Time434513 + Disc Number1 + Disc Count1 + Track Number2 + Track Count9 + Year1993 + Date Modified2006-08-07T08:52:46Z + Date Added2009-10-03T14:56:50Z + Bit Rate192 + Sample Rate44100 + Normalization1234 + Artwork Count1 + Sort AlbumCross Of Changes + Sort NameEyes Of Truth + Persistent IDE6E4C0D181F73ADE + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/The%20Cross%20Of%20Changes/02%20The%20Eyes%20Of%20Truth.m4a + File Folder Count4 + Library Folder Count1 + + 4360 + + Track ID4360 + NameReturn To Innocence + ArtistEnigma + ComposerCurly M.C. + AlbumThe Cross Of Changes + GenreNew Age + KindAAC audio file + Size6199740 + Total Time255487 + Disc Number1 + Disc Count1 + Track Number3 + Track Count9 + Year1993 + Date Modified2006-08-07T08:52:46Z + Date Added2009-10-03T14:56:50Z + Bit Rate192 + Sample Rate44100 + Normalization1274 + Artwork Count1 + Sort AlbumCross Of Changes + Persistent IDD10E8470F06107C1 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/The%20Cross%20Of%20Changes/03%20Return%20To%20Innocence.m4a + File Folder Count4 + Library Folder Count1 + + 4362 + + Track ID4362 + NameI Love You ... I'll Kill You + ArtistEnigma + ComposerDavid Fairstein, Curly M.C. + AlbumThe Cross Of Changes + GenreNew Age + KindAAC audio file + Size12904133 + Total Time532571 + Disc Number1 + Disc Count1 + Track Number4 + Track Count9 + Year1993 + Date Modified2006-08-07T08:52:46Z + Date Added2009-10-03T14:56:51Z + Bit Rate192 + Sample Rate44100 + Normalization1616 + Artwork Count1 + Sort AlbumCross Of Changes + Persistent IDCEBA2D9CFC8EEC67 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/The%20Cross%20Of%20Changes/04%20I%20Love%20You%20...%20I'll%20Kill%20You.m4a + File Folder Count4 + Library Folder Count1 + + 4364 + + Track ID4364 + NameSilent Warrior + ArtistEnigma + ComposerCurly M.C. + AlbumThe Cross Of Changes + GenreNew Age + KindAAC audio file + Size8964658 + Total Time369776 + Disc Number1 + Disc Count1 + Track Number5 + Track Count9 + Year1993 + Date Modified2006-08-07T08:52:46Z + Date Added2009-10-03T14:56:51Z + Bit Rate192 + Sample Rate44100 + Normalization1234 + Artwork Count1 + Sort AlbumCross Of Changes + Persistent ID958AA03B7AC80A2D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/The%20Cross%20Of%20Changes/05%20Silent%20Warrior.m4a + File Folder Count4 + Library Folder Count1 + + 4366 + + Track ID4366 + NameThe Dream Of The Dolphin + ArtistEnigma + ComposerCurly M.C., David Fairstein + AlbumThe Cross Of Changes + GenreNew Age + KindAAC audio file + Size4073705 + Total Time167414 + Disc Number1 + Disc Count1 + Track Number6 + Track Count9 + Year1993 + Date Modified2006-08-07T08:52:46Z + Date Added2009-10-03T14:56:52Z + Bit Rate192 + Sample Rate44100 + Normalization305 + Artwork Count1 + Sort AlbumCross Of Changes + Sort NameDream Of The Dolphin + Persistent IDFE10270A6C820AF9 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/The%20Cross%20Of%20Changes/06%20The%20Dream%20Of%20The%20Dolphin.m4a + File Folder Count4 + Library Folder Count1 + + 4368 + + Track ID4368 + NameAge Of Loneliness (Carly's Song) + ArtistEnigma + ComposerCurly M.C. + AlbumThe Cross Of Changes + GenreNew Age + KindAAC audio file + Size7796275 + Total Time321502 + Disc Number1 + Disc Count1 + Track Number7 + Track Count9 + Year1993 + Date Modified2006-08-07T08:52:46Z + Date Added2009-10-03T14:56:52Z + Bit Rate192 + Sample Rate44100 + Normalization1220 + Artwork Count1 + Sort AlbumCross Of Changes + Persistent IDBF4C08DA16D12235 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/The%20Cross%20Of%20Changes/07%20Age%20Of%20Loneliness%20(Carly's%20Song).m4a + File Folder Count4 + Library Folder Count1 + + 4370 + + Track ID4370 + NameOut From The Deep + ArtistEnigma + ComposerCurly M.C. + AlbumThe Cross Of Changes + GenreNew Age + KindAAC audio file + Size7109309 + Total Time293127 + Disc Number1 + Disc Count1 + Track Number8 + Track Count9 + Year1993 + Date Modified2006-08-07T08:52:46Z + Date Added2009-10-03T14:56:52Z + Bit Rate192 + Sample Rate44100 + Normalization1815 + Artwork Count1 + Sort AlbumCross Of Changes + Persistent ID960DF4F6D597B3DA + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/The%20Cross%20Of%20Changes/08%20Out%20From%20The%20Deep.m4a + File Folder Count4 + Library Folder Count1 + + 4372 + + Track ID4372 + NameThe Cross Of Changes + ArtistEnigma + ComposerCurly M.C. + AlbumThe Cross Of Changes + GenreNew Age + KindAAC audio file + Size3516509 + Total Time144403 + Disc Number1 + Disc Count1 + Track Number9 + Track Count9 + Year1993 + Date Modified2006-08-07T08:52:44Z + Date Added2009-10-03T14:56:53Z + Bit Rate192 + Sample Rate44100 + Normalization505 + Artwork Count1 + Sort AlbumCross Of Changes + Sort NameCross Of Changes + Persistent IDEFC835D2CC7CA7CF + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/The%20Cross%20Of%20Changes/09%20The%20Cross%20Of%20Changes.m4a + File Folder Count4 + Library Folder Count1 + + 4374 + + Track ID4374 + NameEncounters + ArtistEnigma + AlbumSeven Lives Many Faces + GenreNew Age + KindAAC audio file + Size5004322 + Total Time192813 + Disc Number1 + Disc Count1 + Track Number1 + Track Count12 + Year2008 + Date Modified2008-09-28T16:09:08Z + Date Added2009-10-03T14:56:53Z + Bit Rate195 + Sample Rate44100 + Play Count1 + Play Date3359190009 + Play Date UTC2010-06-12T06:50:09Z + Skip Count1 + Skip Date2010-05-29T09:34:11Z + Normalization1138 + Artwork Count1 + Persistent ID316D18D8E856704B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/Seven%20Lives%20Many%20Faces/01%20Encounters.m4a + File Folder Count4 + Library Folder Count1 + + 4376 + + Track ID4376 + NameSeven Lives + ArtistEnigma + AlbumSeven Lives Many Faces + GenreNew Age + KindAAC audio file + Size6635788 + Total Time265280 + Disc Number1 + Disc Count1 + Track Number2 + Track Count12 + Year2008 + Date Modified2008-09-28T16:09:08Z + Date Added2009-10-03T14:56:53Z + Bit Rate191 + Sample Rate44100 + Play Count6 + Play Date3381676331 + Play Date UTC2011-02-27T13:02:11Z + Normalization1380 + Artwork Count1 + Persistent ID442C8B10275617C1 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/Seven%20Lives%20Many%20Faces/02%20Seven%20Lives.m4a + File Folder Count4 + Library Folder Count1 + + 4378 + + Track ID4378 + NameTouchness + ArtistEnigma + AlbumSeven Lives Many Faces + GenreNew Age + KindAAC audio file + Size5512488 + Total Time215840 + Disc Number1 + Disc Count1 + Track Number3 + Track Count12 + Year2008 + Date Modified2008-09-28T16:09:07Z + Date Added2009-10-03T14:56:54Z + Bit Rate193 + Sample Rate44100 + Play Count5 + Play Date3359724732 + Play Date UTC2010-06-18T11:22:12Z + Normalization2197 + Artwork Count1 + Persistent ID121693B5D0E553BA + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/Seven%20Lives%20Many%20Faces/03%20Touchness.m4a + File Folder Count4 + Library Folder Count1 + + 4380 + + Track ID4380 + NameThe Same Parents + ArtistEnigma + AlbumSeven Lives Many Faces + GenreNew Age + KindAAC audio file + Size7953850 + Total Time319733 + Disc Number1 + Disc Count1 + Track Number4 + Track Count12 + Year2008 + Date Modified2008-09-28T16:09:07Z + Date Added2009-10-03T14:56:54Z + Bit Rate191 + Sample Rate44100 + Play Count2 + Play Date3358257066 + Play Date UTC2010-06-01T11:41:06Z + Normalization2114 + Artwork Count1 + Sort NameSame Parents + Persistent IDABC0B51355D12E06 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/Seven%20Lives%20Many%20Faces/04%20The%20Same%20Parents.m4a + File Folder Count4 + Library Folder Count1 + + 4382 + + Track ID4382 + NameFata Morgana (Instrumental) + ArtistEnigma + AlbumSeven Lives Many Faces + GenreNew Age + KindAAC audio file + Size5088099 + Total Time203586 + Disc Number1 + Disc Count1 + Track Number5 + Track Count12 + Year2008 + Date Modified2008-09-28T16:09:07Z + Date Added2009-10-03T14:56:54Z + Bit Rate188 + Sample Rate44100 + Play Count2 + Play Date3358257269 + Play Date UTC2010-06-01T11:44:29Z + Normalization1259 + Artwork Count1 + Persistent IDF2586EF4EF3DA03F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/Seven%20Lives%20Many%20Faces/05%20Fata%20Morgana%20(Instrumental).m4a + File Folder Count4 + Library Folder Count1 + + 4384 + + Track ID4384 + NameHell's Heaven + ArtistEnigma + AlbumSeven Lives Many Faces + GenreNew Age + KindAAC audio file + Size5860192 + Total Time231520 + Disc Number1 + Disc Count1 + Track Number6 + Track Count12 + Year2008 + Date Modified2008-09-28T16:09:06Z + Date Added2009-10-03T14:56:54Z + Bit Rate192 + Sample Rate44100 + Play Count2 + Play Date3358257501 + Play Date UTC2010-06-01T11:48:21Z + Normalization1234 + Artwork Count1 + Persistent IDD5688F15FC4AEDEC + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/Seven%20Lives%20Many%20Faces/06%20Hell's%20Heaven.m4a + File Folder Count4 + Library Folder Count1 + + 4386 + + Track ID4386 + NameLa Puerta Del Cielo + ArtistEnigma + AlbumSeven Lives Many Faces + GenreNew Age + KindAAC audio file + Size5370452 + Total Time208266 + Disc Number1 + Disc Count1 + Track Number7 + Track Count12 + Year2008 + Date Modified2008-09-28T16:09:06Z + Date Added2009-10-03T14:56:54Z + Bit Rate195 + Sample Rate44100 + Play Count2 + Play Date3358257709 + Play Date UTC2010-06-01T11:51:49Z + Normalization2110 + Artwork Count1 + Persistent ID9238DA0F2F403359 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/Seven%20Lives%20Many%20Faces/07%20La%20Puerta%20Del%20Cielo.m4a + File Folder Count4 + Library Folder Count1 + + 4388 + + Track ID4388 + NameDistorted Love + ArtistEnigma + AlbumSeven Lives Many Faces + GenreNew Age + KindAAC audio file + Size6437172 + Total Time251506 + Disc Number1 + Disc Count1 + Track Number8 + Track Count12 + Year2008 + Date Modified2008-09-28T16:09:05Z + Date Added2009-10-03T14:56:54Z + Bit Rate195 + Sample Rate44100 + Play Count1 + Play Date3358257961 + Play Date UTC2010-06-01T11:56:01Z + Normalization2158 + Artwork Count1 + Persistent IDCFD687A9367E43AA + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/Seven%20Lives%20Many%20Faces/08%20Distorted%20Love.m4a + File Folder Count4 + Library Folder Count1 + + 4390 + + Track ID4390 + NameJa T'aime Till My Dying Day + ArtistEnigma + AlbumSeven Lives Many Faces + GenreNew Age + KindAAC audio file + Size6508708 + Total Time258920 + Disc Number1 + Disc Count1 + Track Number9 + Track Count12 + Year2008 + Date Modified2008-09-28T16:09:05Z + Date Added2009-10-03T14:56:54Z + Bit Rate191 + Sample Rate44100 + Play Count1 + Play Date3358258220 + Play Date UTC2010-06-01T12:00:20Z + Normalization1730 + Artwork Count1 + Persistent ID175473622281AD6B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/Seven%20Lives%20Many%20Faces/09%20Ja%20T'aime%20Till%20My%20Dying%20Day.m4a + File Folder Count4 + Library Folder Count1 + + 4392 + + Track ID4392 + NameDeja Vu (Instrumental) + ArtistEnigma + AlbumSeven Lives Many Faces + GenreNew Age + KindAAC audio file + Size4581401 + Total Time176253 + Disc Number1 + Disc Count1 + Track Number10 + Track Count12 + Year2008 + Date Modified2008-09-28T16:09:05Z + Date Added2009-10-03T14:56:55Z + Bit Rate195 + Sample Rate44100 + Play Count1 + Play Date3358258396 + Play Date UTC2010-06-01T12:03:16Z + Normalization1433 + Artwork Count1 + Persistent ID4CE364C2479A027C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/Seven%20Lives%20Many%20Faces/10%20Deja%20Vu%20(Instrumental).m4a + File Folder Count4 + Library Folder Count1 + + 4394 + + Track ID4394 + NameBetween Generations + ArtistEnigma + AlbumSeven Lives Many Faces + GenreNew Age + KindAAC audio file + Size6872889 + Total Time271453 + Disc Number1 + Disc Count1 + Track Number11 + Track Count12 + Year2008 + Date Modified2008-09-28T16:09:04Z + Date Added2009-10-03T14:56:55Z + Bit Rate193 + Sample Rate44100 + Play Count1 + Play Date3358258667 + Play Date UTC2010-06-01T12:07:47Z + Normalization1235 + Artwork Count1 + Persistent IDF3508733E0DD2F40 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/Seven%20Lives%20Many%20Faces/11%20Between%20Generations.m4a + File Folder Count4 + Library Folder Count1 + + 4396 + + Track ID4396 + NameThe Language Of Sound + ArtistEnigma + AlbumSeven Lives Many Faces + GenreNew Age + KindAAC audio file + Size6598779 + Total Time260800 + Disc Number1 + Disc Count1 + Track Number12 + Track Count12 + Year2008 + Date Modified2008-09-28T16:09:04Z + Date Added2009-10-03T14:56:55Z + Bit Rate193 + Sample Rate44100 + Play Count1 + Play Date3358258928 + Play Date UTC2010-06-01T12:12:08Z + Normalization2251 + Artwork Count1 + Sort NameLanguage Of Sound + Persistent ID58BC2943CA7B8F55 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/Seven%20Lives%20Many%20Faces/12%20The%20Language%20Of%20Sound.m4a + File Folder Count4 + Library Folder Count1 + + 4398 + + Track ID4398 + NameThe Voice Of Enigma + ArtistEnigma + ComposerCurly M.C. + AlbumMCMXC A.D. + GenreElectronica/Dance + KindAAC audio file + Size3458534 + Total Time141802 + Disc Number1 + Disc Count1 + Track Number1 + Track Count7 + Year1990 + Date Modified2006-08-13T06:38:28Z + Date Added2009-10-03T14:56:55Z + Bit Rate192 + Sample Rate44100 + Normalization76 + Artwork Count1 + Sort NameVoice Of Enigma + Persistent IDEBF5ACD782924789 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/MCMXC%20A.D_/01%20The%20Voice%20Of%20Enigma.m4a + File Folder Count4 + Library Folder Count1 + + 4400 + + Track ID4400 + NamePrinciples Of Lust [(A) Sadeness, (B) Find Love, (C) Sadeness (Reprise)] + ArtistEnigma + Composer(a) Curly M.C./David Fairstein/David Fairstein (b) Curly M.C. (c) Curly M.C./F. Gregorian + AlbumMCMXC A.D. + GenreElectronica/Dance + KindAAC audio file + Size17047459 + Total Time703934 + Disc Number1 + Disc Count1 + Track Number2 + Track Count7 + Year1990 + Date Modified2006-08-13T06:38:26Z + Date Added2009-10-03T14:56:55Z + Bit Rate192 + Sample Rate44100 + Normalization1139 + Artwork Count1 + Persistent ID693E95FFC1A429EC + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/MCMXC%20A.D_/02%20Principles%20Of%20Lust%20%5B(A)%20Sadeness,%20(B)%20Find%20Love,%20(C)%20Sadeness%20(Reprise)%5D.m4a + File Folder Count4 + Library Folder Count1 + + 4402 + + Track ID4402 + NameCallas Went Away + ArtistEnigma + ComposerCurly M.C. + AlbumMCMXC A.D. + GenreElectronica/Dance + KindAAC audio file + Size6495043 + Total Time267887 + Disc Number1 + Disc Count1 + Track Number3 + Track Count7 + Year1990 + Date Modified2006-08-13T06:38:20Z + Date Added2009-10-03T14:56:55Z + Bit Rate192 + Sample Rate44100 + Normalization1038 + Artwork Count1 + Persistent ID83FECA219C49817B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/MCMXC%20A.D_/03%20Callas%20Went%20Away.m4a + File Folder Count4 + Library Folder Count1 + + 4404 + + Track ID4404 + NameMea Culpa + ArtistEnigma + ComposerCurly M.C./David Fairstein + AlbumMCMXC A.D. + GenreElectronica/Dance + KindAAC audio file + Size7355660 + Total Time303436 + Disc Number1 + Disc Count1 + Track Number4 + Track Count7 + Year1990 + Date Modified2006-08-13T06:38:16Z + Date Added2009-10-03T14:56:55Z + Bit Rate192 + Sample Rate44100 + Normalization1044 + Artwork Count1 + Persistent IDADE2DA6682BB88D4 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/MCMXC%20A.D_/04%20Mea%20Culpa.m4a + File Folder Count4 + Library Folder Count1 + + 4406 + + Track ID4406 + NameThe Voice & The Snake + ArtistEnigma + ComposerCurly M.C./F. Gregorian + AlbumMCMXC A.D. + GenreElectronica/Dance + KindAAC audio file + Size2453998 + Total Time99983 + Disc Number1 + Disc Count1 + Track Number5 + Track Count7 + Year1990 + Date Modified2006-08-13T06:38:12Z + Date Added2009-10-03T14:56:56Z + Bit Rate192 + Sample Rate44100 + Normalization182 + Artwork Count1 + Sort NameVoice & The Snake + Persistent IDC60DE556EF37F1AE + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/MCMXC%20A.D_/05%20The%20Voice%20&%20The%20Snake.m4a + File Folder Count4 + Library Folder Count1 + + 4408 + + Track ID4408 + NameKnocking On Forbidden Doors + ArtistEnigma + ComposerCurly M.C. + AlbumMCMXC A.D. + GenreElectronica/Dance + KindAAC audio file + Size6583204 + Total Time271509 + Disc Number1 + Disc Count1 + Track Number6 + Track Count7 + Year1990 + Date Modified2006-08-13T06:38:12Z + Date Added2009-10-03T14:56:56Z + Bit Rate192 + Sample Rate44100 + Normalization1013 + Artwork Count1 + Persistent ID327FDDBD53B817C9 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/MCMXC%20A.D_/06%20Knocking%20On%20Forbidden%20Doors.m4a + File Folder Count4 + Library Folder Count1 + + 4410 + + Track ID4410 + NameBack To The Rivers Of Belief [(A) Way To Eternity, (B) Hallelujah, (C) The Rivers Of Belief] + ArtistEnigma + Composer(a) Curly M.C. (b) Curly M.C. (c) Curly M.C. David Fairstein + AlbumMCMXC A.D. + GenreElectronica/Dance + KindAAC audio file + Size15314534 + Total Time632324 + Disc Number1 + Disc Count1 + Track Number7 + Track Count7 + Year1990 + Date Modified2006-08-13T06:38:08Z + Date Added2009-10-03T14:56:56Z + Bit Rate192 + Sample Rate44100 + Normalization1086 + Artwork Count1 + Persistent ID1F933146E143D217 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/MCMXC%20A.D_/07%20Back%20To%20The%20Rivers%20Of%20Belief%20%5B(A)%20Way%20To%20Eternity,%20(B)%20Hallelujah,%20(C)%20The%20Rivers%20Of%20Belief%5D.m4a + File Folder Count4 + Library Folder Count1 + + 4412 + + Track ID4412 + NameLe Roi Est Mort, Vive Le Roi! + ArtistEnigma + ComposerMichael Crétu + AlbumLe Roi Est Mort, Vive Le Roi! + GenreNew Age + KindAAC audio file + Size2872095 + Total Time117979 + Disc Number1 + Disc Count1 + Track Number1 + Track Count12 + Year1996 + Date Modified2006-07-30T13:13:16Z + Date Added2009-10-03T14:56:56Z + Bit Rate192 + Sample Rate44100 + Normalization441 + Artwork Count1 + Persistent IDC4C1021AC16AAEEF + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/Le%20Roi%20Est%20Mort,%20Vive%20Le%20Roi!/01%20Le%20Roi%20Est%20Mort,%20Vive%20Le%20Roi!.m4a + File Folder Count4 + Library Folder Count1 + + 4414 + + Track ID4414 + NameMorphing Thru Time + ArtistEnigma + ComposerMichael Crétu + AlbumLe Roi Est Mort, Vive Le Roi! + GenreNew Age + KindAAC audio file + Size8440825 + Total Time347833 + Disc Number1 + Disc Count1 + Track Number2 + Track Count12 + Year1996 + Date Modified2006-07-30T13:13:16Z + Date Added2009-10-03T14:56:57Z + Bit Rate192 + Sample Rate44100 + Normalization2075 + Artwork Count1 + Persistent ID7B48C9CF75CE5BBA + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/Le%20Roi%20Est%20Mort,%20Vive%20Le%20Roi!/02%20Morphing%20Thru%20Time.m4a + File Folder Count4 + Library Folder Count1 + + 4416 + + Track ID4416 + NameThird Of Its Kind + ArtistEnigma + ComposerMichael Crétu + AlbumLe Roi Est Mort, Vive Le Roi! + GenreNew Age + KindAAC audio file + Size512958 + Total Time19178 + Disc Number1 + Disc Count1 + Track Number3 + Track Count12 + Year1996 + Date Modified2006-07-30T13:13:16Z + Date Added2009-10-03T14:56:57Z + Bit Rate192 + Sample Rate44100 + Normalization154 + Artwork Count1 + Persistent IDB3FB3CD78BF93AFC + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/Le%20Roi%20Est%20Mort,%20Vive%20Le%20Roi!/03%20Third%20Of%20Its%20Kind.m4a + File Folder Count4 + Library Folder Count1 + + 4418 + + Track ID4418 + NameBeyond The Invisible + ArtistEnigma + ComposerMichael Crétu and David Fairstein + AlbumLe Roi Est Mort, Vive Le Roi! + GenreNew Age + KindAAC audio file + Size7284271 + Total Time300046 + Disc Number1 + Disc Count1 + Track Number4 + Track Count12 + Year1996 + Date Modified2006-07-30T13:13:16Z + Date Added2009-10-03T14:56:58Z + Bit Rate192 + Sample Rate44100 + Normalization2100 + Artwork Count1 + Persistent IDD669D642BDB80813 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/Le%20Roi%20Est%20Mort,%20Vive%20Le%20Roi!/04%20Beyond%20The%20Invisible.m4a + File Folder Count4 + Library Folder Count1 + + 4420 + + Track ID4420 + NameWhy! ... + ArtistEnigma + ComposerMichael Crétu + AlbumLe Roi Est Mort, Vive Le Roi! + GenreNew Age + KindAAC audio file + Size7267860 + Total Time299373 + Disc Number1 + Disc Count1 + Track Number5 + Track Count12 + Year1996 + Date Modified2006-07-30T13:13:18Z + Date Added2009-10-03T14:56:58Z + Bit Rate192 + Sample Rate44100 + Normalization2087 + Artwork Count1 + Persistent ID9A8A75684CC432F9 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/Le%20Roi%20Est%20Mort,%20Vive%20Le%20Roi!/05%20Why!%20....m4a + File Folder Count4 + Library Folder Count1 + + 4422 + + Track ID4422 + NameShadows In Silence + ArtistEnigma + ComposerMichael Crétu + AlbumLe Roi Est Mort, Vive Le Roi! + GenreNew Age + KindAAC audio file + Size6344262 + Total Time261223 + Disc Number1 + Disc Count1 + Track Number6 + Track Count12 + Year1996 + Date Modified2006-07-30T13:13:18Z + Date Added2009-10-03T14:56:59Z + Bit Rate192 + Sample Rate44100 + Normalization1234 + Artwork Count1 + Persistent IDBDA01F282DA66CA3 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/Le%20Roi%20Est%20Mort,%20Vive%20Le%20Roi!/06%20Shadows%20In%20Silence.m4a + File Folder Count4 + Library Folder Count1 + + 4424 + + Track ID4424 + NameThe Child In Us + ArtistEnigma + ComposerMichael Crétu + AlbumLe Roi Est Mort, Vive Le Roi! + GenreNew Age + KindAAC audio file + Size7430017 + Total Time306083 + Disc Number1 + Disc Count1 + Track Number7 + Track Count12 + Year1996 + Date Modified2006-07-30T13:13:18Z + Date Added2009-10-03T14:56:59Z + Bit Rate192 + Sample Rate44100 + Normalization1359 + Artwork Count1 + Sort NameChild In Us + Persistent ID974FCF57D8E20EFA + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/Le%20Roi%20Est%20Mort,%20Vive%20Le%20Roi!/07%20The%20Child%20In%20Us.m4a + File Folder Count4 + Library Folder Count1 + + 4426 + + Track ID4426 + NameT.N.T. For The Brain + ArtistEnigma + ComposerMichael Crétu + AlbumLe Roi Est Mort, Vive Le Roi! + GenreNew Age + KindAAC audio file + Size6462191 + Total Time266076 + Disc Number1 + Disc Count1 + Track Number8 + Track Count12 + Year1996 + Date Modified2006-07-30T13:13:18Z + Date Added2009-10-03T14:57:00Z + Bit Rate192 + Sample Rate44100 + Normalization1323 + Artwork Count1 + Persistent IDD32F88190B877F5D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/Le%20Roi%20Est%20Mort,%20Vive%20Le%20Roi!/08%20T.N.T.%20For%20The%20Brain.m4a + File Folder Count4 + Library Folder Count1 + + 4428 + + Track ID4428 + NameAlmost Full Moon + ArtistEnigma + ComposerMichael Crétu + AlbumLe Roi Est Mort, Vive Le Roi! + GenreNew Age + KindAAC audio file + Size5024321 + Total Time206238 + Disc Number1 + Disc Count1 + Track Number9 + Track Count12 + Year1996 + Date Modified2006-07-30T13:13:18Z + Date Added2009-10-03T14:57:01Z + Bit Rate192 + Sample Rate44100 + Normalization1258 + Artwork Count1 + Persistent ID9522DEAC0A977385 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/Le%20Roi%20Est%20Mort,%20Vive%20Le%20Roi!/09%20Almost%20Full%20Moon.m4a + File Folder Count4 + Library Folder Count1 + + 4430 + + Track ID4430 + NameThe Roundabout + ArtistEnigma + ComposerMichael Crétu and David Fairstein + AlbumLe Roi Est Mort, Vive Le Roi! + GenreNew Age + KindAAC audio file + Size5319541 + Total Time218521 + Disc Number1 + Disc Count1 + Track Number10 + Track Count12 + Year1996 + Date Modified2006-07-30T13:13:18Z + Date Added2009-10-03T14:57:01Z + Bit Rate192 + Sample Rate44100 + Normalization2284 + Artwork Count1 + Sort NameRoundabout + Persistent ID0DCFCD85150CA037 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/Le%20Roi%20Est%20Mort,%20Vive%20Le%20Roi!/10%20The%20Roundabout.m4a + File Folder Count4 + Library Folder Count1 + + 4432 + + Track ID4432 + NamePrism Of Life + ArtistEnigma + ComposerMichael Crétu and David Fairstein + AlbumLe Roi Est Mort, Vive Le Roi! + GenreNew Age + KindAAC audio file + Size7166308 + Total Time295170 + Disc Number1 + Disc Count1 + Track Number11 + Track Count12 + Year1996 + Date Modified2006-07-30T13:13:18Z + Date Added2009-10-03T14:57:02Z + Bit Rate192 + Sample Rate44100 + Normalization1234 + Artwork Count1 + Persistent ID987153301520DAC1 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/Le%20Roi%20Est%20Mort,%20Vive%20Le%20Roi!/11%20Prism%20Of%20Life.m4a + File Folder Count4 + Library Folder Count1 + + 4434 + + Track ID4434 + NameOdyssey Of The Mind + ArtistEnigma + ComposerMichael Crétu + AlbumLe Roi Est Mort, Vive Le Roi! + GenreNew Age + KindAAC audio file + Size2470897 + Total Time100912 + Disc Number1 + Disc Count1 + Track Number12 + Track Count12 + Year1996 + Date Modified2006-07-30T13:13:18Z + Date Added2009-10-03T14:57:02Z + Bit Rate192 + Sample Rate44100 + Normalization288 + Artwork Count1 + Persistent IDA0D4D9FD3C51B8B6 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/Le%20Roi%20Est%20Mort,%20Vive%20Le%20Roi!/12%20Odyssey%20Of%20The%20Mind.m4a + File Folder Count4 + Library Folder Count1 + + 4436 + + Track ID4436 + NameYour Song + ArtistElton John + ComposerElton John + AlbumGreatest Hits + GenrePop + KindAAC audio file + Size5831114 + Total Time240975 + Disc Number1 + Disc Count1 + Track Number1 + Track Count11 + Year1970 + Date Modified2006-08-13T06:38:02Z + Date Added2009-10-03T14:57:05Z + Bit Rate192 + Sample Rate44100 + Normalization593 + Artwork Count1 + Persistent IDE370275F3D9B98A1 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Elton%20John/Greatest%20Hits/01%20Your%20Song.m4a + File Folder Count4 + Library Folder Count1 + + 4438 + + Track ID4438 + NameDaniel + ArtistElton John + ComposerElton John + AlbumGreatest Hits + GenrePop + KindAAC audio file + Size5672647 + Total Time233103 + Disc Number1 + Disc Count1 + Track Number2 + Track Count11 + Year1973 + Date Modified2006-08-13T06:37:58Z + Date Added2009-10-03T14:57:05Z + Bit Rate192 + Sample Rate44100 + Normalization553 + Artwork Count1 + Persistent ID8707B168E9E45057 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Elton%20John/Greatest%20Hits/02%20Daniel.m4a + File Folder Count4 + Library Folder Count1 + + 4440 + + Track ID4440 + NameHonky Cat + ArtistElton John + ComposerElton John + AlbumGreatest Hits + GenrePop + KindAAC audio file + Size7611359 + Total Time313258 + Disc Number1 + Disc Count1 + Track Number3 + Track Count11 + Year1972 + Date Modified2006-08-13T06:37:56Z + Date Added2009-10-03T14:57:05Z + Bit Rate192 + Sample Rate44100 + Normalization705 + Artwork Count1 + Persistent ID037808CB9769A5D3 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Elton%20John/Greatest%20Hits/03%20Honky%20Cat.m4a + File Folder Count4 + Library Folder Count1 + + 4442 + + Track ID4442 + NameGoodbye Yellow Brick Road + ArtistElton John + ComposerElton John + AlbumGreatest Hits + GenrePop + KindAAC audio file + Size4740165 + Total Time194883 + Disc Number1 + Disc Count1 + Track Number4 + Track Count11 + Year1974 + Date Modified2006-08-13T06:37:52Z + Date Added2009-10-03T14:57:05Z + Bit Rate192 + Sample Rate44100 + Normalization508 + Artwork Count1 + Persistent IDDF0CB0FFEF65684A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Elton%20John/Greatest%20Hits/04%20Goodbye%20Yellow%20Brick%20Road.m4a + File Folder Count4 + Library Folder Count1 + + 4444 + + Track ID4444 + NameSaturday Night's Alright For Fighting + ArtistElton John + ComposerElton John + AlbumGreatest Hits + GenrePop + KindAAC audio file + Size7095876 + Total Time294311 + Disc Number1 + Disc Count1 + Track Number5 + Track Count11 + Year1974 + Date Modified2006-08-13T06:37:50Z + Date Added2009-10-03T14:57:05Z + Bit Rate192 + Sample Rate44100 + Normalization1129 + Artwork Count1 + Persistent IDEB28C7CE1C252B2F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Elton%20John/Greatest%20Hits/05%20Saturday%20Night's%20Alright%20For%20Fighting.m4a + File Folder Count4 + Library Folder Count1 + + 4446 + + Track ID4446 + NameRocket Man + ArtistElton John + ComposerElton John + AlbumGreatest Hits + GenrePop + KindAAC audio file + Size6829492 + Total Time282004 + Disc Number1 + Disc Count1 + Track Number6 + Track Count11 + Year1972 + Date Modified2006-08-13T06:37:48Z + Date Added2009-10-03T14:57:05Z + Bit Rate192 + Sample Rate44100 + Normalization605 + Artwork Count1 + Persistent ID15234C7643EFEDD5 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Elton%20John/Greatest%20Hits/06%20Rocket%20Man.m4a + File Folder Count4 + Library Folder Count1 + + 4448 + + Track ID4448 + NameBennie And The Jets + ArtistElton John + ComposerElton John + AlbumGreatest Hits + GenrePop + KindAAC audio file + Size7567000 + Total Time313258 + Disc Number1 + Disc Count1 + Track Number7 + Track Count11 + Year1974 + Date Modified2006-08-13T06:37:44Z + Date Added2009-10-03T14:57:05Z + Bit Rate192 + Sample Rate44100 + Normalization881 + Artwork Count1 + Persistent IDE9854E9B95EC61D8 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Elton%20John/Greatest%20Hits/07%20Bennie%20And%20The%20Jets.m4a + File Folder Count4 + Library Folder Count1 + + 4450 + + Track ID4450 + NameCandle In The Wind + ArtistElton John + ComposerElton John + AlbumGreatest Hits + GenrePop + KindAAC audio file + Size5551602 + Total Time228970 + Disc Number1 + Disc Count1 + Track Number8 + Track Count11 + Year1974 + Date Modified2006-08-13T06:37:42Z + Date Added2009-10-03T14:57:05Z + Bit Rate192 + Sample Rate44100 + Normalization561 + Artwork Count1 + Persistent IDD5A68C9CF68143B5 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Elton%20John/Greatest%20Hits/08%20Candle%20In%20The%20Wind.m4a + File Folder Count4 + Library Folder Count1 + + 4452 + + Track ID4452 + NameDon't Let The Sun Go Down On Me + ArtistElton John + ComposerElton John + AlbumGreatest Hits + GenrePop + KindAAC audio file + Size8153338 + Total Time337918 + Disc Number1 + Disc Count1 + Track Number9 + Track Count11 + Year1974 + Date Modified2006-08-13T06:37:38Z + Date Added2009-10-03T14:57:05Z + Bit Rate192 + Sample Rate44100 + Normalization740 + Artwork Count1 + Persistent ID544219F548E86AB7 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Elton%20John/Greatest%20Hits/09%20Don't%20Let%20The%20Sun%20Go%20Down%20On%20Me.m4a + File Folder Count4 + Library Folder Count1 + + 4454 + + Track ID4454 + NameBorder Song + ArtistElton John + ComposerElton John + AlbumGreatest Hits + GenrePop + KindAAC audio file + Size4896883 + Total Time202081 + Disc Number1 + Disc Count1 + Track Number10 + Track Count11 + Year1970 + Date Modified2006-08-13T06:37:36Z + Date Added2009-10-03T14:57:05Z + Bit Rate192 + Sample Rate44100 + Normalization392 + Artwork Count1 + Persistent ID1091D095005AAB7C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Elton%20John/Greatest%20Hits/10%20Border%20Song.m4a + File Folder Count4 + Library Folder Count1 + + 4456 + + Track ID4456 + NameCrocodile Rock + ArtistElton John + ComposerElton John + AlbumGreatest Hits + GenrePop + KindAAC audio file + Size5720371 + Total Time235077 + Disc Number1 + Disc Count1 + Track Number11 + Track Count11 + Year1973 + Date Modified2006-08-13T06:37:32Z + Date Added2009-10-03T14:57:06Z + Bit Rate192 + Sample Rate44100 + Normalization883 + Artwork Count1 + Persistent IDDBEBA31B2071F034 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Elton%20John/Greatest%20Hits/11%20Crocodile%20Rock.m4a + File Folder Count4 + Library Folder Count1 + + 4458 + + Track ID4458 + NameEast St. Louis Toodle-Oo + ArtistDuke Ellington & His Washingtonians + ComposerEllington, E. K. - Miley, J. + AlbumKen Burns Jazz: Duke Ellington + GenreJazz + KindAAC audio file + Size4537085 + Total Time186710 + Disc Number1 + Disc Count1 + Track Number1 + Track Count21 + Year2000 + Date Modified2006-08-13T06:37:30Z + Date Added2009-10-03T14:57:06Z + Bit Rate192 + Sample Rate44100 + Normalization3775 + Artwork Count1 + Persistent ID4998F9CD4BEE70E9 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Duke%20Ellington%20&%20His%20Washingtonians/Ken%20Burns%20Jazz_%20Duke%20Ellington/01%20East%20St.%20Louis%20Toodle-Oo.m4a + File Folder Count4 + Library Folder Count1 + + 4460 + + Track ID4460 + NameBlack And Tan Fantasy + ArtistDuke Ellington & His Washingtonians + ComposerEllington, E. K. - Miley, J. + AlbumKen Burns Jazz: Duke Ellington + GenreJazz + KindAAC audio file + Size5016210 + Total Time206656 + Disc Number1 + Disc Count1 + Track Number2 + Track Count21 + Year2000 + Date Modified2006-08-13T06:37:28Z + Date Added2009-10-03T14:57:06Z + Bit Rate192 + Sample Rate44100 + Normalization1241 + Artwork Count1 + Persistent ID6BADCFF065308795 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Duke%20Ellington%20&%20His%20Washingtonians/Ken%20Burns%20Jazz_%20Duke%20Ellington/02%20Black%20And%20Tan%20Fantasy.m4a + File Folder Count4 + Library Folder Count1 + + 4462 + + Track ID4462 + NameTake It Easy + ArtistDuke Ellington & His Orchestra + ComposerEllington, E. K. + AlbumKen Burns Jazz: Duke Ellington + GenreJazz + KindAAC audio file + Size3839926 + Total Time157685 + Disc Number1 + Disc Count1 + Track Number3 + Track Count21 + Year2000 + Date Modified2006-08-13T06:37:24Z + Date Added2009-10-03T14:57:06Z + Bit Rate192 + Sample Rate44100 + Normalization1036 + Artwork Count1 + Persistent ID71851DD102D1B6D9 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Duke%20Ellington%20&%20His%20Orchestra/Ken%20Burns%20Jazz_%20Duke%20Ellington/03%20Take%20It%20Easy.m4a + File Folder Count4 + Library Folder Count1 + + 4464 + + Track ID4464 + NameThe Mooche + ArtistDuke Ellington & His Orchestra + ComposerEllington, E. K. + AlbumKen Burns Jazz: Duke Ellington + GenreJazz + KindAAC audio file + Size4765798 + Total Time196230 + Disc Number1 + Disc Count1 + Track Number4 + Track Count21 + Year2000 + Date Modified2006-08-13T06:37:24Z + Date Added2009-10-03T14:57:06Z + Bit Rate192 + Sample Rate44100 + Normalization2164 + Artwork Count1 + Sort NameMooche + Persistent IDFDC89FD0045FE092 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Duke%20Ellington%20&%20His%20Orchestra/Ken%20Burns%20Jazz_%20Duke%20Ellington/04%20The%20Mooche.m4a + File Folder Count4 + Library Folder Count1 + + 4466 + + Track ID4466 + NameRockin' In Rhythm + ArtistDuke Ellington & His Orchestra + ComposerEllington, E. K. - Carney, H. + AlbumKen Burns Jazz: Duke Ellington + GenreJazz + KindAAC audio file + Size4770258 + Total Time196416 + Disc Number1 + Disc Count1 + Track Number5 + Track Count21 + Year2000 + Date Modified2006-08-13T06:37:22Z + Date Added2009-10-03T14:57:06Z + Bit Rate192 + Sample Rate44100 + Normalization1573 + Artwork Count1 + Persistent IDF9F69E566B832373 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Duke%20Ellington%20&%20His%20Orchestra/Ken%20Burns%20Jazz_%20Duke%20Ellington/05%20Rockin'%20In%20Rhythm.m4a + File Folder Count4 + Library Folder Count1 + + 4468 + + Track ID4468 + NameMood Indigo + ArtistDuke Ellington & His Orchestra + ComposerEllington, E. K. - Bigard, B. - Mills, I. + AlbumKen Burns Jazz: Duke Ellington + GenreJazz + KindAAC audio file + Size4334027 + Total Time178258 + Disc Number1 + Disc Count1 + Track Number6 + Track Count21 + Year2000 + Date Modified2006-08-13T06:37:18Z + Date Added2009-10-03T14:57:07Z + Bit Rate192 + Sample Rate44100 + Normalization1174 + Artwork Count1 + Persistent ID04A330A590862A21 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Duke%20Ellington%20&%20His%20Orchestra/Ken%20Burns%20Jazz_%20Duke%20Ellington/06%20Mood%20Indigo.m4a + File Folder Count4 + Library Folder Count1 + + 4470 + + Track ID4470 + NameCreole Rhapsody + ArtistDuke Ellington & His Orchestra + ComposerEllington, E. K. + AlbumKen Burns Jazz: Duke Ellington + GenreJazz + KindAAC audio file + Size9459089 + Total Time390372 + Disc Number1 + Disc Count1 + Track Number7 + Track Count21 + Year2000 + Date Modified2006-08-13T06:37:16Z + Date Added2009-10-03T14:57:07Z + Bit Rate192 + Sample Rate44100 + Normalization998 + Artwork Count1 + Persistent IDBBA96D9EA825499D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Duke%20Ellington%20&%20His%20Orchestra/Ken%20Burns%20Jazz_%20Duke%20Ellington/07%20Creole%20Rhapsody.m4a + File Folder Count4 + Library Folder Count1 + + 4472 + + Track ID4472 + NameIt Don't Mean A Thing (If It Ain't Got That Swing) + ArtistDuke Ellington & His Orchestra + ComposerEllington, E. K. + AlbumKen Burns Jazz: Duke Ellington + GenreJazz + KindAAC audio file + Size4640317 + Total Time191005 + Disc Number1 + Disc Count1 + Track Number8 + Track Count21 + Year2000 + Date Modified2006-08-13T06:37:12Z + Date Added2009-10-03T14:57:07Z + Bit Rate192 + Sample Rate44100 + Normalization1978 + Artwork Count1 + Persistent ID490379CBEA85FFC4 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Duke%20Ellington%20&%20His%20Orchestra/Ken%20Burns%20Jazz_%20Duke%20Ellington/08%20It%20Don't%20Mean%20A%20Thing%20(If%20It%20Ain't%20Got%20That%20Swing).m4a + File Folder Count4 + Library Folder Count1 + + 4474 + + Track ID4474 + NameLove Call + ArtistDuke Ellington & His Orchestra + ComposerEllington, E. K. + AlbumKen Burns Jazz: Duke Ellington + GenreJazz + KindAAC audio file + Size6069089 + Total Time250193 + Disc Number1 + Disc Count1 + Track Number9 + Track Count21 + Year2000 + Date Modified2006-08-13T06:37:10Z + Date Added2009-10-03T14:57:07Z + Bit Rate192 + Sample Rate44100 + Normalization1258 + Artwork Count1 + Persistent IDED7A31BD35456547 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Duke%20Ellington%20&%20His%20Orchestra/Ken%20Burns%20Jazz_%20Duke%20Ellington/09%20Love%20Call.m4a + File Folder Count4 + Library Folder Count1 + + 4476 + + Track ID4476 + NameSophisticated Lady + ArtistDuke Ellington & His Orchestra + ComposerEllington, E. K. + AlbumKen Burns Jazz: Duke Ellington + GenreJazz + KindAAC audio file + Size4771936 + Total Time196485 + Disc Number1 + Disc Count1 + Track Number10 + Track Count21 + Year2000 + Date Modified2006-08-13T06:37:08Z + Date Added2009-10-03T14:57:07Z + Bit Rate192 + Sample Rate44100 + Normalization1142 + Artwork Count1 + Persistent ID4E60803BD5F1A6FA + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Duke%20Ellington%20&%20His%20Orchestra/Ken%20Burns%20Jazz_%20Duke%20Ellington/10%20Sophisticated%20Lady.m4a + File Folder Count4 + Library Folder Count1 + + 4478 + + Track ID4478 + NameSolitude + ArtistDuke Ellington & His Orchestra + ComposerEllington, E. K. - DeLange, E. - Mills, I. + AlbumKen Burns Jazz: Duke Ellington + GenreJazz + KindAAC audio file + Size4687636 + Total Time192979 + Disc Number1 + Disc Count1 + Track Number11 + Track Count21 + Year2000 + Date Modified2006-08-13T06:37:06Z + Date Added2009-10-03T14:57:07Z + Bit Rate192 + Sample Rate44100 + Normalization921 + Artwork Count1 + Persistent ID159496B3E6512FE4 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Duke%20Ellington%20&%20His%20Orchestra/Ken%20Burns%20Jazz_%20Duke%20Ellington/11%20Solitude.m4a + File Folder Count4 + Library Folder Count1 + + 4480 + + Track ID4480 + NameCaravan + ArtistDuke Ellington & His Orchestra + ComposerTizol, J. - Ellington, E. K. + AlbumKen Burns Jazz: Duke Ellington + GenreJazz + KindAAC audio file + Size3931986 + Total Time161516 + Disc Number1 + Disc Count1 + Track Number12 + Track Count21 + Year2000 + Date Modified2006-08-13T06:37:04Z + Date Added2009-10-03T14:57:07Z + Bit Rate192 + Sample Rate44100 + Normalization953 + Artwork Count1 + Persistent ID76E698E7672231FA + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Duke%20Ellington%20&%20His%20Orchestra/Ken%20Burns%20Jazz_%20Duke%20Ellington/12%20Caravan.m4a + File Folder Count4 + Library Folder Count1 + + 4482 + + Track ID4482 + NameBack Room Romp + ArtistDuke Ellington & His Orchestra + ComposerStewart, R. - Ellington, E. K. + AlbumKen Burns Jazz: Duke Ellington + GenreJazz + KindAAC audio file + Size4117634 + Total Time169248 + Disc Number1 + Disc Count1 + Track Number13 + Track Count21 + Year2000 + Date Modified2006-08-13T06:37:02Z + Date Added2009-10-03T14:57:07Z + Bit Rate192 + Sample Rate44100 + Normalization1343 + Artwork Count1 + Persistent IDFA204984A802DC0C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Duke%20Ellington%20&%20His%20Orchestra/Ken%20Burns%20Jazz_%20Duke%20Ellington/13%20Back%20Room%20Romp.m4a + File Folder Count4 + Library Folder Count1 + + 4484 + + Track ID4484 + NameKo-Ko + ArtistDuke Ellington & His Orchestra + ComposerEllington, E. K. + AlbumKen Burns Jazz: Duke Ellington + GenreJazz + KindAAC audio file + Size4006220 + Total Time164604 + Disc Number1 + Disc Count1 + Track Number14 + Track Count21 + Year2000 + Date Modified2006-08-13T06:37:00Z + Date Added2009-10-03T14:57:08Z + Bit Rate192 + Sample Rate44100 + Play Count2 + Play Date3435930204 + Play Date UTC2012-11-16T11:33:24Z + Normalization1329 + Artwork Count1 + Persistent ID2887944BFB04FC8F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Duke%20Ellington%20&%20His%20Orchestra/Ken%20Burns%20Jazz_%20Duke%20Ellington/14%20Ko-Ko.m4a + File Folder Count4 + Library Folder Count1 + + 4486 + + Track ID4486 + NameNever No Lament (Aka Don't Get Around Much Anymore) + ArtistDuke Ellington & His Orchestra + ComposerRussell, B. - Ellington, E. K. + AlbumKen Burns Jazz: Duke Ellington + GenreJazz + KindAAC audio file + Size4286108 + Total Time176261 + Disc Number1 + Disc Count1 + Track Number15 + Track Count21 + Year2000 + Date Modified2006-08-13T06:36:58Z + Date Added2009-10-03T14:57:08Z + Bit Rate192 + Sample Rate44100 + Normalization2110 + Artwork Count1 + Persistent ID8C40B8384B1962BB + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Duke%20Ellington%20&%20His%20Orchestra/Ken%20Burns%20Jazz_%20Duke%20Ellington/15%20Never%20No%20Lament%20(Aka%20Don't%20Get%20Around%20Much%20Anymore).m4a + File Folder Count4 + Library Folder Count1 + + 4488 + + Track ID4488 + NameCotton Tail + ArtistDuke Ellington & His Orchestra + ComposerEllington, E. K. + AlbumKen Burns Jazz: Duke Ellington + GenreJazz + KindAAC audio file + Size4634693 + Total Time190773 + Disc Number1 + Disc Count1 + Track Number16 + Track Count21 + Year2000 + Date Modified2006-08-13T06:36:56Z + Date Added2009-10-03T14:57:08Z + Bit Rate192 + Sample Rate44100 + Normalization1776 + Artwork Count1 + Persistent ID247D9489708464F2 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Duke%20Ellington%20&%20His%20Orchestra/Ken%20Burns%20Jazz_%20Duke%20Ellington/16%20Cotton%20Tail.m4a + File Folder Count4 + Library Folder Count1 + + 4490 + + Track ID4490 + NameTake The 'a' Train + ArtistDuke Ellington & His Orchestra + ComposerStrayhorn, W. + AlbumKen Burns Jazz: Duke Ellington + GenreJazz + KindAAC audio file + Size4246580 + Total Time174612 + Disc Number1 + Disc Count1 + Track Number17 + Track Count21 + Year2000 + Date Modified2006-08-13T06:36:54Z + Date Added2009-10-03T14:57:08Z + Bit Rate192 + Sample Rate44100 + Normalization1509 + Artwork Count1 + Persistent IDC449289CBC347E55 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Duke%20Ellington%20&%20His%20Orchestra/Ken%20Burns%20Jazz_%20Duke%20Ellington/17%20Take%20The%20'a'%20Train.m4a + File Folder Count4 + Library Folder Count1 + + 4492 + + Track ID4492 + NameSatin Doll + ArtistDuke Ellington & His Orchestra + ComposerEllington, E. K. + AlbumKen Burns Jazz: Duke Ellington + GenreJazz + KindAAC audio file + Size4369783 + Total Time179744 + Disc Number1 + Disc Count1 + Track Number18 + Track Count21 + Year2000 + Date Modified2006-08-13T06:36:52Z + Date Added2009-10-03T14:57:08Z + Bit Rate192 + Sample Rate44100 + Normalization1488 + Artwork Count1 + Persistent ID171433FC05D37A85 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Duke%20Ellington%20&%20His%20Orchestra/Ken%20Burns%20Jazz_%20Duke%20Ellington/18%20Satin%20Doll.m4a + File Folder Count4 + Library Folder Count1 + + 4494 + + Track ID4494 + NameJeep's Blues + ArtistDuke Ellington & His Orchestra + ComposerEllington, E. K. - Hodges, J. + AlbumKen Burns Jazz: Duke Ellington + GenreJazz + KindAAC audio file + Size6845779 + Total Time282376 + Disc Number1 + Disc Count1 + Track Number19 + Track Count21 + Year2000 + Date Modified2006-08-13T06:36:50Z + Date Added2009-10-03T14:57:08Z + Bit Rate192 + Sample Rate44100 + Normalization1103 + Artwork Count1 + Persistent ID7827317639025505 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Duke%20Ellington%20&%20His%20Orchestra/Ken%20Burns%20Jazz_%20Duke%20Ellington/19%20Jeep's%20Blues.m4a + File Folder Count4 + Library Folder Count1 + + 4496 + + Track ID4496 + NameCome Sunday + ArtistDuke Ellington & His Orchestra + ComposerEllington, E. K. + AlbumKen Burns Jazz: Duke Ellington + GenreJazz + KindAAC audio file + Size8464535 + Total Time349273 + Disc Number1 + Disc Count1 + Track Number20 + Track Count21 + Year2000 + Date Modified2006-08-13T06:36:48Z + Date Added2009-10-03T14:57:08Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3428047076 + Play Date UTC2012-08-17T05:47:56Z + Normalization887 + Artwork Count1 + Persistent ID73689687DF64C555 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Duke%20Ellington%20&%20His%20Orchestra/Ken%20Burns%20Jazz_%20Duke%20Ellington/20%20Come%20Sunday.m4a + File Folder Count4 + Library Folder Count1 + + 4498 + + Track ID4498 + NameBlack Beauty + ArtistDuke Ellington & His Orchestra + ComposerEllington, E. K. + AlbumKen Burns Jazz: Duke Ellington + GenreJazz + KindAAC audio file + Size4790687 + Total Time197298 + Disc Number1 + Disc Count1 + Track Number21 + Track Count21 + Year2000 + Date Modified2006-08-13T06:36:44Z + Date Added2009-10-03T14:57:08Z + Bit Rate192 + Sample Rate44100 + Normalization1256 + Artwork Count1 + Persistent ID62707B19B245899F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Duke%20Ellington%20&%20His%20Orchestra/Ken%20Burns%20Jazz_%20Duke%20Ellington/21%20Black%20Beauty.m4a + File Folder Count4 + Library Folder Count1 + + 4500 + + Track ID4500 + NameNenarunchara + ArtistDK Jayaraman + ComposerThyagaraja + AlbumCarnatic Classical - Vocal-Ms-0206 + GenreCarnatic + KindAAC audio file + Size10467416 + Total Time430171 + Track Number1 + Track Count6 + Date Modified2007-12-02T16:27:05Z + Date Added2009-10-03T14:57:09Z + Bit Rate192 + Sample Rate44100 + CommentsRaga: Simhavahini Tala: Adi + Normalization830 + Artwork Count1 + Persistent ID37F1DBB2596C3E0D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/DK%20Jayaraman/Carnatic%20Classical%20-%20Vocal-Ms-0206/01%20Nenarunchara.m4a + File Folder Count4 + Library Folder Count1 + + 4502 + + Track ID4502 + NameKulabirudulu (Raga: Devamanohari Tala: Rupakam) + ArtistDK Jayaraman + ComposerThyagaraja + AlbumCarnatic Classical - Vocal-Ms-0206 + GenreCarnatic + KindAAC audio file + Size8566960 + Total Time351641 + Track Number2 + Track Count6 + Date Modified2007-12-14T03:35:09Z + Date Added2009-10-03T14:57:09Z + Bit Rate192 + Sample Rate44100 + CommentsRaga: Devamanohari Tala: Rupakam + Normalization623 + Artwork Count1 + Persistent ID62B3227A004A13B4 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/DK%20Jayaraman/Carnatic%20Classical%20-%20Vocal-Ms-0206/02%20Kulabirudulu%20(Raga_%20Devamanohari%20Tala_%20Rupakam).m4a + File Folder Count4 + Library Folder Count1 + + 4504 + + Track ID4504 + NameEkambreshanayike + ArtistDK Jayaraman + ComposerDikshitar + AlbumCarnatic Classical - Vocal-Ms-0206 + GenreCarnatic + KindAAC audio file + Size11755840 + Total Time483414 + Track Number3 + Track Count6 + Date Modified2007-12-12T07:28:52Z + Date Added2009-10-03T14:57:09Z + Bit Rate192 + Sample Rate44100 + CommentsRaga: Karnataka Suddha Saveri Tala: Adi + Normalization476 + Artwork Count1 + Persistent ID5F82829DE25E467B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/DK%20Jayaraman/Carnatic%20Classical%20-%20Vocal-Ms-0206/03%20Ekambreshanayike.m4a + File Folder Count4 + Library Folder Count1 + + 4506 + + Track ID4506 + NameSharade (Raga: Devagandhari Tala: Adi) + ArtistDK Jayaraman + ComposerPapanasam Sivan + AlbumCarnatic Classical - Vocal-Ms-0206 + GenreCarnatic + KindAAC audio file + Size14495019 + Total Time597006 + Track Number4 + Track Count6 + Date Modified2007-12-14T03:29:59Z + Date Added2009-10-03T14:57:09Z + Bit Rate192 + Sample Rate44100 + CommentsRaga: Devagandhari Tala: Adi + Normalization654 + Artwork Count1 + Persistent ID14B83B214C6F20B3 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/DK%20Jayaraman/Carnatic%20Classical%20-%20Vocal-Ms-0206/04%20Sharade%20(Raga_%20Devagandhari%20Tala_%20Adi).m4a + File Folder Count4 + Library Folder Count1 + + 4508 + + Track ID4508 + NameParvathininnu + ArtistDK Jayaraman + ComposerShyama Sastri + AlbumCarnatic Classical - Vocal-Ms-0206 + GenreCarnatic + KindAAC audio file + Size5411654 + Total Time220936 + Track Number5 + Track Count6 + Date Modified2007-12-12T07:29:32Z + Date Added2009-10-03T14:57:09Z + Bit Rate192 + Sample Rate44100 + CommentsRaga: Kalkada Tala: Tisragathi Adi + Normalization813 + Artwork Count1 + Persistent ID01498DCAD37F60B4 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/DK%20Jayaraman/Carnatic%20Classical%20-%20Vocal-Ms-0206/05%20Parvathininnu.m4a + File Folder Count4 + Library Folder Count1 + + 4510 + + Track ID4510 + NameSri Subrahmanyo (Raga: Todi Tala: Adi) + ArtistDK Jayaraman + ComposerDikshitar + AlbumCarnatic Classical - Vocal-Ms-0206 + GenreCarnatic + KindAAC audio file + Size39198806 + Total Time1617500 + Track Number6 + Track Count6 + Date Modified2007-12-14T16:16:59Z + Date Added2009-10-03T14:57:09Z + Bit Rate192 + Sample Rate44100 + CommentsRaga: Todi Tala: Adi + Normalization1259 + Artwork Count1 + Persistent IDA16C2EBD59E2CC0C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/DK%20Jayaraman/Carnatic%20Classical%20-%20Vocal-Ms-0206/06%20Sri%20Subrahmanyo%20(Raga_%20Todi%20Tala_%20Adi).m4a + File Folder Count4 + Library Folder Count1 + + 4512 + + Track ID4512 + NameEnchanted + ArtistDelerium + ComposerBill Leeb and Rhys Fulber + AlbumKarma (Disc 1) + GenreElectronica/Dance + KindAAC audio file + Size12385851 + Total Time510744 + Disc Number1 + Disc Count2 + Track Number1 + Track Count11 + Year1997 + Date Modified2006-08-07T08:32:58Z + Date Added2009-10-03T14:57:10Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3360253116 + Play Date UTC2010-06-24T14:08:36Z + Normalization1256 + Artwork Count1 + Persistent IDE5EAA10A2AE2A239 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Delerium/Karma%20(Disc%201)/1-01%20Enchanted.m4a + File Folder Count4 + Library Folder Count1 + + 4514 + + Track ID4514 + NameDuende + ArtistDelerium + ComposerBill Leeb and Rhys Fulber + AlbumKarma (Disc 1) + GenreElectronica/Dance + KindAAC audio file + Size7839616 + Total Time322872 + Disc Number1 + Disc Count2 + Track Number2 + Track Count11 + Year1997 + Date Modified2006-08-07T08:32:58Z + Date Added2009-10-03T14:57:10Z + Bit Rate192 + Sample Rate44100 + Normalization1786 + Artwork Count1 + Persistent IDFC3079F83FB52228 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Delerium/Karma%20(Disc%201)/1-02%20Duende.m4a + File Folder Count4 + Library Folder Count1 + + 4516 + + Track ID4516 + NameTwilight + ArtistDelerium + ComposerBill Leeb and Rhys Fulber + AlbumKarma (Disc 1) + GenreElectronica/Dance + KindAAC audio file + Size8912581 + Total Time367222 + Disc Number1 + Disc Count2 + Track Number3 + Track Count11 + Year1997 + Date Modified2006-08-07T08:33:00Z + Date Added2009-10-03T14:57:10Z + Bit Rate192 + Sample Rate44100 + Normalization1256 + Artwork Count1 + Persistent ID4AFC562DF86AB9A5 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Delerium/Karma%20(Disc%201)/1-03%20Twilight.m4a + File Folder Count4 + Library Folder Count1 + + 4518 + + Track ID4518 + NameSilence + ArtistDelerium + ComposerBill Leeb and Rhys Fulber + AlbumKarma (Disc 1) + GenreElectronica/Dance + KindAAC audio file + Size9544893 + Total Time393344 + Disc Number1 + Disc Count2 + Track Number4 + Track Count11 + Year1997 + Date Modified2006-08-07T08:33:00Z + Date Added2009-10-03T14:57:10Z + Bit Rate192 + Sample Rate44100 + Normalization1786 + Artwork Count1 + Persistent ID8672D9248B82F691 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Delerium/Karma%20(Disc%201)/1-04%20Silence.m4a + File Folder Count4 + Library Folder Count1 + + 4520 + + Track ID4520 + NameForgotten Worlds + ArtistDelerium + ComposerBill Leeb and Rhys Fulber + AlbumKarma (Disc 1) + GenreElectronica/Dance + KindAAC audio file + Size10974852 + Total Time452439 + Disc Number1 + Disc Count2 + Track Number5 + Track Count11 + Year1997 + Date Modified2006-08-07T08:33:00Z + Date Added2009-10-03T14:57:10Z + Bit Rate192 + Sample Rate44100 + Normalization1256 + Artwork Count1 + Persistent ID7CA14B3A275E9EE8 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Delerium/Karma%20(Disc%201)/1-05%20Forgotten%20Worlds.m4a + File Folder Count4 + Library Folder Count1 + + 4522 + + Track ID4522 + NameLamentation + ArtistDelerium + ComposerBill Leeb and Rhys Fulber + AlbumKarma (Disc 1) + GenreElectronica/Dance + KindAAC audio file + Size12454476 + Total Time513577 + Disc Number1 + Disc Count2 + Track Number6 + Track Count11 + Year1997 + Date Modified2006-08-07T08:33:00Z + Date Added2009-10-03T14:57:10Z + Bit Rate192 + Sample Rate44100 + Normalization1256 + Artwork Count1 + Persistent ID274354EE5D8EB5F8 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Delerium/Karma%20(Disc%201)/1-06%20Lamentation.m4a + File Folder Count4 + Library Folder Count1 + + 4524 + + Track ID4524 + NameEuphoria (Firefly) + ArtistDelerium + ComposerBill Leeb and Rhys Fulber + AlbumKarma (Disc 1) + GenreElectronica/Dance + KindAAC audio file + Size7957376 + Total Time327748 + Disc Number1 + Disc Count2 + Track Number7 + Track Count11 + Year1997 + Date Modified2006-08-07T08:33:00Z + Date Added2009-10-03T14:57:10Z + Bit Rate192 + Sample Rate44100 + Normalization1936 + Artwork Count1 + Persistent IDE7D06D3892CB0224 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Delerium/Karma%20(Disc%201)/1-07%20Euphoria%20(Firefly).m4a + File Folder Count4 + Library Folder Count1 + + 4526 + + Track ID4526 + NameRemembrance + ArtistDelerium + ComposerBill Leeb and Rhys Fulber + AlbumKarma (Disc 1) + GenreElectronica/Dance + KindAAC audio file + Size10884008 + Total Time448677 + Disc Number1 + Disc Count2 + Track Number8 + Track Count11 + Year1997 + Date Modified2006-08-07T08:33:00Z + Date Added2009-10-03T14:57:11Z + Bit Rate192 + Sample Rate44100 + Normalization1324 + Artwork Count1 + Persistent ID1E31A3866180B1DF + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Delerium/Karma%20(Disc%201)/1-08%20Remembrance.m4a + File Folder Count4 + Library Folder Count1 + + 4528 + + Track ID4528 + NameWisdom + ArtistDelerium + ComposerBill Leeb and Rhys Fulber + AlbumKarma (Disc 1) + GenreElectronica/Dance + KindAAC audio file + Size7012858 + Total Time288715 + Disc Number1 + Disc Count2 + Track Number9 + Track Count11 + Year1997 + Date Modified2006-08-07T08:33:00Z + Date Added2009-10-03T14:57:11Z + Bit Rate192 + Sample Rate44100 + Normalization1392 + Artwork Count1 + Persistent ID47F69DA54A8E458A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Delerium/Karma%20(Disc%201)/1-09%20Wisdom.m4a + File Folder Count4 + Library Folder Count1 + + 4530 + + Track ID4530 + NameWindow To Your Soul + ArtistDelerium + ComposerBill Leeb and Rhys Fulber + AlbumKarma (Disc 1) + GenreElectronica/Dance + KindAAC audio file + Size14688995 + Total Time605923 + Disc Number1 + Disc Count2 + Track Number10 + Track Count11 + Year1997 + Date Modified2006-08-07T08:33:02Z + Date Added2009-10-03T14:57:11Z + Bit Rate192 + Sample Rate44100 + Normalization1256 + Artwork Count1 + Persistent IDE34B1AF8D6E3D008 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Delerium/Karma%20(Disc%201)/1-10%20Window%20To%20Your%20Soul.m4a + File Folder Count4 + Library Folder Count1 + + 4532 + + Track ID4532 + Name'Til The End Of Time + ArtistDelerium + ComposerBill Leeb and Rhys Fulber + AlbumKarma (Disc 1) + GenreElectronica/Dance + KindAAC audio file + Size6704827 + Total Time276014 + Disc Number1 + Disc Count2 + Track Number11 + Track Count11 + Year1997 + Date Modified2006-08-07T08:33:02Z + Date Added2009-10-03T14:57:11Z + Bit Rate192 + Sample Rate44100 + Normalization1362 + Artwork Count1 + Persistent IDB1DF3F83C644E45F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Delerium/Karma%20(Disc%201)/1-11%20'Til%20The%20End%20Of%20Time.m4a + File Folder Count4 + Library Folder Count1 + + 4534 + + Track ID4534 + NameAnasthasia + ArtistDeep Forest + ComposerEric Mouquet, Michel Sanchez + AlbumBoheme + GenreWorld + KindAAC audio file + Size2741027 + Total Time108482 + Disc Number1 + Disc Count1 + Track Number1 + Track Count12 + Year1995 + Date Modified2006-08-07T06:40:38Z + Date Added2009-10-03T14:57:11Z + Bit Rate192 + Sample Rate44100 + Rating40 + Rating Computed + Album Rating40 + Normalization1202 + Artwork Count1 + Persistent ID0266154AE3FA6EAB + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Deep%20Forest/Boheme/01%20Anasthasia.m4a + File Folder Count4 + Library Folder Count1 + + 4536 + + Track ID4536 + NameBohemian Ballet + ArtistDeep Forest + ComposerEric Mouquet, Michel Sanchez + AlbumBoheme + GenreWorld + KindAAC audio file + Size7731672 + Total Time317508 + Disc Number1 + Disc Count1 + Track Number2 + Track Count12 + Year1995 + Date Modified2006-08-07T06:40:38Z + Date Added2009-10-03T14:57:11Z + Bit Rate192 + Sample Rate44100 + Rating40 + Rating Computed + Album Rating40 + Normalization2220 + Artwork Count1 + Persistent IDD45BAC9C513A222C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Deep%20Forest/Boheme/02%20Bohemian%20Ballet.m4a + File Folder Count4 + Library Folder Count1 + + 4538 + + Track ID4538 + NameMarta's Song + ArtistDeep Forest + ComposerEric Mouquet, Michel Sanchez + AlbumBoheme + GenreWorld + KindAAC audio file + Size6210038 + Total Time252608 + Disc Number1 + Disc Count1 + Track Number3 + Track Count12 + Year1995 + Date Modified2006-08-07T06:40:38Z + Date Added2009-10-03T14:57:12Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3441736576 + Play Date UTC2013-01-22T16:26:16Z + Rating40 + Rating Computed + Album Rating40 + Normalization1519 + Artwork Count1 + Persistent ID8B8F63BAA8906E8D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Deep%20Forest/Boheme/03%20Marta's%20Song.m4a + File Folder Count4 + Library Folder Count1 + + 4540 + + Track ID4540 + NameGathering + ArtistDeep Forest + ComposerEric Mouquet, Michel Sanchez + AlbumBoheme + GenreWorld + KindAAC audio file + Size6831353 + Total Time279334 + Disc Number1 + Disc Count1 + Track Number4 + Track Count12 + Year1995 + Date Modified2006-08-07T06:40:38Z + Date Added2009-10-03T14:57:12Z + Bit Rate192 + Sample Rate44100 + Rating40 + Rating Computed + Album Rating40 + Normalization2306 + Artwork Count1 + Persistent IDAA91A7833835F57C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Deep%20Forest/Boheme/04%20Gathering.m4a + File Folder Count4 + Library Folder Count1 + + 4542 + + Track ID4542 + NameLament + ArtistDeep Forest + ComposerEric Mouquet, Michel Sanchez + AlbumBoheme + GenreWorld + KindAAC audio file + Size4704572 + Total Time189914 + Disc Number1 + Disc Count1 + Track Number5 + Track Count12 + Year1995 + Date Modified2006-08-07T06:40:38Z + Date Added2009-10-03T14:57:12Z + Bit Rate192 + Sample Rate44100 + Rating40 + Rating Computed + Album Rating40 + Normalization2020 + Artwork Count1 + Persistent IDE4D11D5B41CE65CA + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Deep%20Forest/Boheme/05%20Lament.m4a + File Folder Count4 + Library Folder Count1 + + 4544 + + Track ID4544 + NameBulgarian Melody + ArtistDeep Forest + ComposerEric Mouquet, Michel Sanchez + AlbumBoheme + GenreWorld + KindAAC audio file + Size4661946 + Total Time188149 + Disc Number1 + Disc Count1 + Track Number6 + Track Count12 + Year1995 + Date Modified2006-08-07T06:40:38Z + Date Added2009-10-03T14:57:12Z + Bit Rate192 + Sample Rate44100 + Rating40 + Rating Computed + Album Rating40 + Normalization1202 + Artwork Count1 + Persistent IDE133488328008F5B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Deep%20Forest/Boheme/06%20Bulgarian%20Melody.m4a + File Folder Count4 + Library Folder Count1 + + 4546 + + Track ID4546 + NameDeep Folk Song + ArtistDeep Forest + ComposerEric Mouquet, Michel Sanchez + AlbumBoheme + GenreWorld + KindAAC audio file + Size1933328 + Total Time74534 + Disc Number1 + Disc Count1 + Track Number7 + Track Count12 + Year1995 + Date Modified2006-08-07T06:40:38Z + Date Added2009-10-03T14:57:12Z + Bit Rate192 + Sample Rate44100 + Rating40 + Rating Computed + Album Rating40 + Normalization1202 + Artwork Count1 + Persistent ID042AE4184165DCC8 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Deep%20Forest/Boheme/07%20Deep%20Folk%20Song.m4a + File Folder Count4 + Library Folder Count1 + + 4548 + + Track ID4548 + NameFreedom Cry + ArtistDeep Forest + ComposerEric Mouquet, Michel Sanchez + AlbumBoheme + GenreWorld + KindAAC audio file + Size4879241 + Total Time199968 + Disc Number1 + Disc Count1 + Track Number8 + Track Count12 + Year1995 + Date Modified2006-08-07T06:40:38Z + Date Added2009-10-03T14:57:12Z + Bit Rate192 + Sample Rate44100 + Rating40 + Rating Computed + Album Rating40 + Normalization1804 + Artwork Count1 + Persistent ID2E59D8976C34831C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Deep%20Forest/Boheme/08%20Freedom%20Cry.m4a + File Folder Count4 + Library Folder Count1 + + 4550 + + Track ID4550 + NameTwosome + ArtistDeep Forest + ComposerEric Mouquet, Michel Sanchez + AlbumBoheme + GenreWorld + KindAAC audio file + Size6060881 + Total Time247221 + Disc Number1 + Disc Count1 + Track Number9 + Track Count12 + Year1995 + Date Modified2006-08-07T06:40:38Z + Date Added2009-10-03T14:57:12Z + Bit Rate192 + Sample Rate44100 + Rating40 + Rating Computed + Album Rating40 + Normalization1510 + Artwork Count1 + Persistent ID377181C023F2CB71 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Deep%20Forest/Boheme/09%20Twosome.m4a + File Folder Count4 + Library Folder Count1 + + 4552 + + Track ID4552 + NameCafé Europa + ArtistDeep Forest + ComposerEric Mouquet, Michel Sanchez + AlbumBoheme + GenreWorld + KindAAC audio file + Size6336610 + Total Time257856 + Disc Number1 + Disc Count1 + Track Number10 + Track Count12 + Year1995 + Date Modified2006-08-07T06:40:38Z + Date Added2009-10-03T14:57:12Z + Bit Rate192 + Sample Rate44100 + Rating40 + Rating Computed + Album Rating40 + Normalization1343 + Artwork Count1 + Persistent ID314631390F4B1E27 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Deep%20Forest/Boheme/10%20Cafe%CC%81%20Europa.m4a + File Folder Count4 + Library Folder Count1 + + 4554 + + Track ID4554 + NameKatharina + ArtistDeep Forest + ComposerEric Mouquet, Michel Sanchez + AlbumBoheme + GenreWorld + KindAAC audio file + Size4301728 + Total Time173149 + Disc Number1 + Disc Count1 + Track Number11 + Track Count12 + Year1995 + Date Modified2006-08-07T06:40:38Z + Date Added2009-10-03T14:57:13Z + Bit Rate192 + Sample Rate44100 + Rating40 + Rating Computed + Album Rating40 + Normalization1345 + Artwork Count1 + Persistent IDA94131EB41219CAF + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Deep%20Forest/Boheme/11%20Katharina.m4a + File Folder Count4 + Library Folder Count1 + + 4556 + + Track ID4556 + NameBoheme + ArtistDeep Forest + ComposerEric Mouquet, Michel Sanchez + AlbumBoheme + GenreWorld + KindAAC audio file + Size6784539 + Total Time276617 + Disc Number1 + Disc Count1 + Track Number12 + Track Count12 + Year1995 + Date Modified2006-08-07T06:40:36Z + Date Added2009-10-03T14:57:13Z + Bit Rate192 + Sample Rate44100 + Rating40 + Rating Computed + Album Rating40 + Normalization1767 + Artwork Count1 + Persistent ID25C46E56F92C9B68 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Deep%20Forest/Boheme/12%20Boheme.m4a + File Folder Count4 + Library Folder Count1 + + 4558 + + Track ID4558 + NameRang De Basanti + ArtistDaler Mehndi, Chitra + ComposerA R Rahman + AlbumRang De Basanti + GenreSoundtracks + KindAAC audio file + Size8792366 + Total Time363832 + Track Number2 + Date Modified2007-04-09T09:37:40Z + Date Added2009-10-03T14:57:13Z + Bit Rate192 + Sample Rate44100 + Normalization4668 + Artwork Count1 + Sort ComposerR Rahman + Persistent ID427A24DDD2701A65 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Daler%20Mehndi,%20Chitra/Rang%20De%20Basanti/02%20Rang%20De%20Basanti.m4a + File Folder Count4 + Library Folder Count1 + + 4560 + + Track ID4560 + NameRang De Basanti + ArtistDaler Mehndi, Chitra + ComposerA R Rahman + AlbumRang De Basanti + GenreSoundtracks + KindAAC audio file + Size8788208 + Total Time363810 + Track Number2 + Date Modified2007-07-27T06:37:18Z + Date Added2009-10-03T14:57:13Z + Bit Rate192 + Sample Rate44100 + Normalization4668 + Sort ComposerR Rahman + Persistent ID40EB201D33462C55 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Daler%20Mehndi,%20Chitra/Rang%20De%20Basanti/02%20Rang%20De%20Basanti%201.m4a + File Folder Count4 + Library Folder Count1 + + 4562 + + Track ID4562 + NameRang De Basanti + ArtistDaler Mehndi, Chitra + ComposerA R Rahman + AlbumRang De Basanti + GenreSoundtracks + KindAAC audio file + Size8788215 + Total Time363832 + Track Number2 + Date Modified2006-12-27T10:34:44Z + Date Added2009-10-03T14:57:13Z + Bit Rate192 + Sample Rate44100 + Normalization4668 + Sort ComposerR Rahman + Persistent ID8F0453713C474076 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Daler%20Mehndi,%20Chitra/Rang%20De%20Basanti/02%20Rang%20De%20Basanti%202.m4a + File Folder Count4 + Library Folder Count1 + + 4564 + + Track ID4564 + NameRang De Basanti + ArtistDaler Mehndi, Chitra + ComposerA R Rahman + AlbumRang De Basanti + GenreSoundtracks + KindAAC audio file + Size8745909 + Total Time363810 + Track Number2 + Date Modified2007-12-02T08:05:09Z + Date Added2009-10-03T14:57:13Z + Bit Rate190 + Sample Rate44100 + Normalization4668 + Sort ComposerR Rahman + Persistent ID39D5F2511C6B5E85 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Daler%20Mehndi,%20Chitra/Rang%20De%20Basanti/02%20Rang%20De%20Basanti%203.m4a + File Folder Count4 + Library Folder Count1 + + 4566 + + Track ID4566 + NameGod Shuffled His Feet + ArtistCrash Test Dummies + ComposerBrad Roberts + AlbumGod Shuffled His Feet + GenreAlternative & Punk + KindAAC audio file + Size7538532 + Total Time310495 + Disc Number1 + Disc Count1 + Track Number1 + Track Count12 + Year1993 + Date Modified2006-07-27T16:19:00Z + Date Added2009-10-03T14:57:13Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3360253487 + Play Date UTC2010-06-24T14:14:47Z + Skip Count1 + Skip Date2014-05-16T15:38:55Z + Normalization3377 + Artwork Count1 + Persistent ID84AB5B8C75DA415F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Crash%20Test%20Dummies/God%20Shuffled%20His%20Feet/01%20God%20Shuffled%20His%20Feet.m4a + File Folder Count4 + Library Folder Count1 + + 4568 + + Track ID4568 + NameAfternoons And Coffeespoons + ArtistCrash Test Dummies + ComposerBrad Roberts + AlbumGod Shuffled His Feet + GenreAlternative & Punk + KindAAC audio file + Size5754546 + Total Time235936 + Disc Number1 + Disc Count1 + Track Number2 + Track Count12 + Year1993 + Date Modified2006-07-27T16:19:00Z + Date Added2009-10-03T14:57:14Z + Bit Rate192 + Sample Rate44100 + Normalization3204 + Artwork Count1 + Persistent IDF8D901F3D02C90AA + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Crash%20Test%20Dummies/God%20Shuffled%20His%20Feet/02%20Afternoons%20And%20Coffeespoons.m4a + File Folder Count4 + Library Folder Count1 + + 4570 + + Track ID4570 + NameMmm Mmm Mmm Mmm + ArtistCrash Test Dummies + ComposerBrad Roberts + AlbumGod Shuffled His Feet + GenreAlternative & Punk + KindAAC audio file + Size5736923 + Total Time235193 + Disc Number1 + Disc Count1 + Track Number3 + Track Count12 + Year1993 + Date Modified2006-07-27T16:19:00Z + Date Added2009-10-03T14:57:14Z + Bit Rate192 + Sample Rate44100 + Normalization2251 + Artwork Count1 + Persistent ID2A017CA67C79A3DE + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Crash%20Test%20Dummies/God%20Shuffled%20His%20Feet/03%20Mmm%20Mmm%20Mmm%20Mmm.m4a + File Folder Count4 + Library Folder Count1 + + 4572 + + Track ID4572 + NameIn The Days Of The Caveman + ArtistCrash Test Dummies + ComposerBrad Roberts + AlbumGod Shuffled His Feet + GenreAlternative & Punk + KindAAC audio file + Size5383706 + Total Time220495 + Disc Number1 + Disc Count1 + Track Number4 + Track Count12 + Year1993 + Date Modified2006-07-27T16:19:02Z + Date Added2009-10-03T14:57:14Z + Bit Rate192 + Sample Rate44100 + Normalization2887 + Artwork Count1 + Persistent ID24BE71F31B440151 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Crash%20Test%20Dummies/God%20Shuffled%20His%20Feet/04%20In%20The%20Days%20Of%20The%20Caveman.m4a + File Folder Count4 + Library Folder Count1 + + 4574 + + Track ID4574 + NameSwimming In Your Ocean + ArtistCrash Test Dummies + ComposerBrad Roberts + AlbumGod Shuffled His Feet + GenreAlternative & Punk + KindAAC audio file + Size5589911 + Total Time229086 + Disc Number1 + Disc Count1 + Track Number5 + Track Count12 + Year1993 + Date Modified2006-07-27T16:19:02Z + Date Added2009-10-03T14:57:14Z + Bit Rate192 + Sample Rate44100 + Normalization2487 + Artwork Count1 + Persistent ID6D0DB2951E782900 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Crash%20Test%20Dummies/God%20Shuffled%20His%20Feet/05%20Swimming%20In%20Your%20Ocean.m4a + File Folder Count4 + Library Folder Count1 + + 4576 + + Track ID4576 + NameHere I Stand Before Me + ArtistCrash Test Dummies + ComposerBrad Roberts + AlbumGod Shuffled His Feet + GenreAlternative & Punk + KindAAC audio file + Size4570558 + Total Time186640 + Disc Number1 + Disc Count1 + Track Number6 + Track Count12 + Year1993 + Date Modified2006-07-27T16:19:02Z + Date Added2009-10-03T14:57:14Z + Bit Rate192 + Sample Rate44100 + Normalization5096 + Artwork Count1 + Persistent ID6245505E2DE84B12 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Crash%20Test%20Dummies/God%20Shuffled%20His%20Feet/06%20Here%20I%20Stand%20Before%20Me.m4a + File Folder Count4 + Library Folder Count1 + + 4578 + + Track ID4578 + NameI Think I'll Disappear Now + ArtistCrash Test Dummies + ComposerBrad Roberts + AlbumGod Shuffled His Feet + GenreAlternative & Punk + KindAAC audio file + Size7109370 + Total Time292152 + Disc Number1 + Disc Count1 + Track Number7 + Track Count12 + Year1993 + Date Modified2006-07-27T16:19:04Z + Date Added2009-10-03T14:57:14Z + Bit Rate192 + Sample Rate44100 + Normalization3863 + Artwork Count1 + Persistent ID7B945259794F9A44 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Crash%20Test%20Dummies/God%20Shuffled%20His%20Feet/07%20I%20Think%20I'll%20Disappear%20Now.m4a + File Folder Count4 + Library Folder Count1 + + 4580 + + Track ID4580 + NameHow Does A Duck Know + ArtistCrash Test Dummies + ComposerBrad Roberts + AlbumGod Shuffled His Feet + GenreAlternative & Punk + KindAAC audio file + Size5430269 + Total Time222445 + Disc Number1 + Disc Count1 + Track Number8 + Track Count12 + Year1993 + Date Modified2006-07-27T16:19:04Z + Date Added2009-10-03T14:57:14Z + Bit Rate192 + Sample Rate44100 + Normalization2932 + Artwork Count1 + Persistent ID7D386A553B83E41C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Crash%20Test%20Dummies/God%20Shuffled%20His%20Feet/08%20How%20Does%20A%20Duck%20Know.m4a + File Folder Count4 + Library Folder Count1 + + 4582 + + Track ID4582 + NameWhen I Go Out With Artists + ArtistCrash Test Dummies + ComposerBrad Roberts + AlbumGod Shuffled His Feet + GenreAlternative & Punk + KindAAC audio file + Size5458917 + Total Time223653 + Disc Number1 + Disc Count1 + Track Number9 + Track Count12 + Year1993 + Date Modified2006-07-27T16:19:04Z + Date Added2009-10-03T14:57:14Z + Bit Rate192 + Sample Rate44100 + Normalization3785 + Artwork Count1 + Persistent ID1A56EB0BA1FEA778 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Crash%20Test%20Dummies/God%20Shuffled%20His%20Feet/09%20When%20I%20Go%20Out%20With%20Artists.m4a + File Folder Count4 + Library Folder Count1 + + 4584 + + Track ID4584 + NameThe Psychic + ArtistCrash Test Dummies + ComposerBrad Roberts + AlbumGod Shuffled His Feet + GenreAlternative & Punk + KindAAC audio file + Size5562106 + Total Time227948 + Disc Number1 + Disc Count1 + Track Number10 + Track Count12 + Year1993 + Date Modified2006-07-27T16:19:06Z + Date Added2009-10-03T14:57:15Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3427199693 + Play Date UTC2012-08-07T10:24:53Z + Normalization1255 + Artwork Count1 + Sort NamePsychic + Persistent IDC55BE6C9D5993C17 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Crash%20Test%20Dummies/God%20Shuffled%20His%20Feet/10%20The%20Psychic.m4a + File Folder Count4 + Library Folder Count1 + + 4586 + + Track ID4586 + NameTwo Knights And Maidens + ArtistCrash Test Dummies + ComposerBrad Roberts + AlbumGod Shuffled His Feet + GenreAlternative & Punk + KindAAC audio file + Size4998894 + Total Time204473 + Disc Number1 + Disc Count1 + Track Number11 + Track Count12 + Year1993 + Date Modified2006-07-27T16:19:06Z + Date Added2009-10-03T14:57:15Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3427199898 + Play Date UTC2012-08-07T10:28:18Z + Normalization2678 + Artwork Count1 + Persistent ID8247F6BB713BABF5 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Crash%20Test%20Dummies/God%20Shuffled%20His%20Feet/11%20Two%20Knights%20And%20Maidens.m4a + File Folder Count4 + Library Folder Count1 + + 4588 + + Track ID4588 + NameCrash Course + ArtistCrash Test Dummies + ComposerBrad Roberts + AlbumGod Shuffled His Feet + GenreAlternative & Punk + KindAAC audio file + Size2559127 + Total Time102909 + Disc Number1 + Disc Count1 + Track Number12 + Track Count12 + Year1993 + Date Modified2006-07-27T16:19:06Z + Date Added2009-10-03T14:57:15Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3427200001 + Play Date UTC2012-08-07T10:30:01Z + Normalization143 + Artwork Count1 + Persistent ID125C2AE46A81607B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Crash%20Test%20Dummies/God%20Shuffled%20His%20Feet/12%20Crash%20Course.m4a + File Folder Count4 + Library Folder Count1 + + 4590 + + Track ID4590 + NameLust For Life + ArtistIggy Pop + ComposerDavid Bowie/Iggy Pop + AlbumTrainspotting + GenreSoundtrack + KindAAC audio file + Size10139098 + Total Time313266 + Disc Number1 + Disc Count1 + Track Number1 + Track Count14 + Year1977 + Date Modified2008-11-07T05:49:58Z + Date Added2009-10-03T14:57:15Z + Bit Rate256 + Sample Rate44100 + Normalization1977 + Compilation + Artwork Count1 + Persistent ID45E0B067905AEA3D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Trainspotting/01%20Lust%20For%20Life.m4a + File Folder Count4 + Library Folder Count1 + + 4592 + + Track ID4592 + NameDeep Blue Day + ArtistBrian Eno + ComposerBrian Eno/Roger Eno/Daniel Lanois + AlbumTrainspotting + GenreSoundtrack + KindAAC audio file + Size7649120 + Total Time236493 + Disc Number1 + Disc Count1 + Track Number2 + Track Count14 + Year1983 + Date Modified2008-11-07T05:49:57Z + Date Added2009-10-03T14:57:15Z + Bit Rate256 + Sample Rate44100 + Normalization860 + Compilation + Artwork Count1 + Persistent ID27D8EB4A333DEA33 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Trainspotting/02%20Deep%20Blue%20Day.m4a + File Folder Count4 + Library Folder Count1 + + 4594 + + Track ID4594 + NameTrainspotting + ArtistPrimal Scream + ComposerAndrew Innes/Robert Young/Martin Duffy/Bobby Gillespie + AlbumTrainspotting + GenreSoundtrack + KindAAC audio file + Size20083258 + Total Time634773 + Disc Number1 + Disc Count1 + Track Number3 + Track Count14 + Year1996 + Date Modified2008-11-07T05:49:56Z + Date Added2009-10-03T14:57:16Z + Bit Rate256 + Sample Rate44100 + Normalization1041 + Compilation + Artwork Count1 + Persistent ID2DE50A67BE28A076 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Trainspotting/03%20Trainspotting.m4a + File Folder Count4 + Library Folder Count1 + + 4596 + + Track ID4596 + NameAtomic + ArtistSleeper + ComposerJimmy Destri/Deborah Harry + AlbumTrainspotting + GenreSoundtrack + KindAAC audio file + Size10069254 + Total Time309426 + Disc Number1 + Disc Count1 + Track Number4 + Track Count14 + Year1996 + Date Modified2008-11-07T05:49:55Z + Date Added2009-10-03T14:57:16Z + Bit Rate256 + Sample Rate44100 + Normalization1078 + Compilation + Artwork Count1 + Persistent ID20D9F785E836B232 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Trainspotting/04%20Atomic.m4a + File Folder Count4 + Library Folder Count1 + + 4598 + + Track ID4598 + NameTemptation + ArtistNew Order + ComposerBernard Sumner/Stephen Morris/Peter Hook/Gillian Gilbert + AlbumTrainspotting + GenreSoundtrack + KindAAC audio file + Size13334733 + Total Time420200 + Disc Number1 + Disc Count1 + Track Number5 + Track Count14 + Year1983 + Date Modified2008-11-07T05:49:54Z + Date Added2009-10-03T14:57:16Z + Bit Rate256 + Sample Rate44100 + Normalization2596 + Compilation + Artwork Count1 + Persistent IDF454306F1C688029 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Trainspotting/05%20Temptation.m4a + File Folder Count4 + Library Folder Count1 + + 4600 + + Track ID4600 + NameNightclubbing + ArtistIggy Pop + ComposerIggy Pop/David Bowie + AlbumTrainspotting + GenreSoundtrack + KindAAC audio file + Size8302255 + Total Time253666 + Disc Number1 + Disc Count1 + Track Number6 + Track Count14 + Year1977 + Date Modified2008-11-07T05:49:54Z + Date Added2009-10-03T14:57:16Z + Bit Rate256 + Sample Rate44100 + Normalization1021 + Compilation + Artwork Count1 + Persistent ID03E4566A1C63B833 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Trainspotting/06%20Nightclubbing.m4a + File Folder Count4 + Library Folder Count1 + + 4602 + + Track ID4602 + NameSing + ArtistBlur + ComposerAlex James/Graham Coxon/David Rowntree/Damon Albarn + AlbumTrainspotting + GenreSoundtrack + KindAAC audio file + Size11848651 + Total Time360973 + Disc Number1 + Disc Count1 + Track Number7 + Track Count14 + Year1991 + Date Modified2008-11-07T05:49:53Z + Date Added2009-10-03T14:57:16Z + Bit Rate256 + Sample Rate44100 + Normalization1831 + Compilation + Artwork Count1 + Persistent ID6FEC233476AD06B5 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Trainspotting/07%20Sing.m4a + File Folder Count4 + Library Folder Count1 + + 4604 + + Track ID4604 + NamePerfect Day + ArtistLou Reed + ComposerLou Reed + AlbumTrainspotting + GenreSoundtrack + KindAAC audio file + Size7366499 + Total Time224760 + Disc Number1 + Disc Count1 + Track Number8 + Track Count14 + Year1972 + Date Modified2008-11-07T05:49:52Z + Date Added2009-10-03T14:57:16Z + Bit Rate256 + Sample Rate44100 + Normalization1077 + Compilation + Artwork Count1 + Persistent IDEACA3ABC7B28548F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Trainspotting/08%20Perfect%20Day.m4a + File Folder Count4 + Library Folder Count1 + + 4606 + + Track ID4606 + NameMile End + ArtistPulp + ComposerBanks/Cocker/Webber/Mackey/Senior/Doyle + AlbumTrainspotting + GenreSoundtrack + KindAAC audio file + Size8786666 + Total Time271733 + Disc Number1 + Disc Count1 + Track Number9 + Track Count14 + Year1995 + Date Modified2008-11-07T05:49:52Z + Date Added2009-10-03T14:57:16Z + Bit Rate256 + Sample Rate44100 + Normalization1077 + Compilation + Artwork Count1 + Persistent ID950D520A6E7E3C71 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Trainspotting/09%20Mile%20End.m4a + File Folder Count4 + Library Folder Count1 + + 4608 + + Track ID4608 + NameFor What You Dream Of For What You Dream Of (Full On Renaissance Mix) + ArtistBedrock + ComposerCarol Leeming/Nick Muir/John Digweed + AlbumTrainspotting + GenreSoundtrack + KindAAC audio file + Size12308998 + Total Time387906 + Disc Number1 + Disc Count1 + Track Number10 + Track Count14 + Year1996 + Date Modified2008-11-07T05:49:51Z + Date Added2009-10-03T14:57:17Z + Bit Rate256 + Sample Rate44100 + Normalization1508 + Compilation + Artwork Count1 + Persistent ID5F2148998A8F60A1 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Trainspotting/10%20For%20What%20You%20Dream%20Of%20For%20What%20You%20Dream%20Of%20(Full%20On%20Renaissance%20Mix).m4a + File Folder Count4 + Library Folder Count1 + + 4610 + + Track ID4610 + Name2:1 + ArtistElastica + ComposerElastica/Donna Matthews + AlbumTrainspotting + GenreSoundtrack + KindAAC audio file + Size5023698 + Total Time153533 + Disc Number1 + Disc Count1 + Track Number11 + Track Count14 + Year1994 + Date Modified2008-11-07T05:49:51Z + Date Added2009-10-03T14:57:17Z + Bit Rate256 + Sample Rate44100 + Normalization2469 + Compilation + Artwork Count1 + Persistent ID0E53868A0E53FD82 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Trainspotting/11%202_1.m4a + File Folder Count4 + Library Folder Count1 + + 4612 + + Track ID4612 + NameA Final Hit + ArtistLeftfield + ComposerDaley/Barnes + AlbumTrainspotting + GenreSoundtrack + KindAAC audio file + Size6127116 + Total Time195800 + Disc Number1 + Disc Count1 + Track Number12 + Track Count14 + Year1996 + Date Modified2008-11-07T05:49:50Z + Date Added2009-10-03T14:57:17Z + Bit Rate256 + Sample Rate44100 + Normalization611 + Compilation + Artwork Count1 + Sort NameFinal Hit + Persistent IDD75C4DF224F580A4 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Trainspotting/12%20A%20Final%20Hit.m4a + File Folder Count4 + Library Folder Count1 + + 4614 + + Track ID4614 + NameBorn Slippy (Nuxx) + ArtistUnderworld + ComposerRick Smith/Karl Hyde + AlbumTrainspotting + GenreSoundtrack + KindAAC audio file + Size19087223 + Total Time584600 + Disc Number1 + Disc Count1 + Track Number13 + Track Count14 + Year1996 + Date Modified2008-11-07T05:49:50Z + Date Added2009-10-03T14:57:17Z + Bit Rate256 + Sample Rate44100 + Normalization759 + Compilation + Artwork Count1 + Persistent ID6BED191FE3189F1D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Trainspotting/13%20Born%20Slippy%20(Nuxx).m4a + File Folder Count4 + Library Folder Count1 + + 4616 + + Track ID4616 + NameCloset Romantic + ArtistDamon Albarn + ComposerDamon Albarn + AlbumTrainspotting + GenreSoundtrack + KindAAC audio file + Size6205018 + Total Time189000 + Disc Number1 + Disc Count1 + Track Number14 + Track Count14 + Year1996 + Date Modified2008-11-07T05:49:49Z + Date Added2009-10-03T14:57:17Z + Bit Rate256 + Sample Rate44100 + Normalization1122 + Compilation + Artwork Count1 + Persistent IDE8DFEA953F153782 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Trainspotting/14%20Closet%20Romantic.m4a + File Folder Count4 + Library Folder Count1 + + 4618 + + Track ID4618 + NameAnthen-Pacrt 2 (From Powaqqatsi) + ArtistPhilip Glass + ComposerPhilip Glass + AlbumThe Truman Show + GenreSoundtrack + KindAAC audio file + Size5723684 + Total Time231906 + Disc Number1 + Disc Count1 + Track Number6 + Track Count21 + Year1998 + Date Modified2007-10-06T19:41:16Z + Date Added2009-10-03T14:57:17Z + Bit Rate192 + Sample Rate44100 + Normalization659 + Compilation + Artwork Count1 + Sort AlbumTruman Show + Persistent ID8638E228F5531863 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Truman%20Show/06%20Anthen-Pacrt%202%20(From%20Powaqqatsi).m4a + File Folder Count4 + Library Folder Count1 + + 4620 + + Track ID4620 + NameDreaming Of Fiji + ArtistPhilip Glass + ComposerPhilip Glass + AlbumThe Truman Show + GenreSoundtrack + KindAAC audio file + Size2898866 + Total Time114826 + Disc Number1 + Disc Count1 + Track Number4 + Track Count21 + Year1998 + Date Modified2007-10-06T19:41:11Z + Date Added2009-10-03T14:57:18Z + Bit Rate192 + Sample Rate44100 + Normalization139 + Compilation + Artwork Count1 + Sort AlbumTruman Show + Persistent ID417B199E318954A8 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Truman%20Show/04%20Dreaming%20Of%20Fiji.m4a + File Folder Count4 + Library Folder Count1 + + 4622 + + Track ID4622 + NameLiving Waters(From Anima Mundi) + ArtistPhilip Glass + ComposerPhilip Glass + AlbumThe Truman Show + GenreSoundtrack + KindAAC audio file + Size5599240 + Total Time228440 + Disc Number1 + Disc Count1 + Track Number12 + Track Count21 + Year1998 + Date Modified2007-10-06T19:41:31Z + Date Added2009-10-03T14:57:18Z + Bit Rate192 + Sample Rate44100 + Normalization386 + Compilation + Artwork Count1 + Sort AlbumTruman Show + Persistent ID0893657F5EF5FD7B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Truman%20Show/12%20Living%20Waters(From%20Anima%20Mundi).m4a + File Folder Count4 + Library Folder Count1 + + 4624 + + Track ID4624 + NameOpening (From Mishima) + ArtistPhilip Glass + ComposerPhilip Glass + AlbumThe Truman Show + GenreSoundtrack + KindAAC audio file + Size3425637 + Total Time136866 + Disc Number1 + Disc Count1 + Track Number19 + Track Count21 + Year1998 + Date Modified2007-10-06T19:41:46Z + Date Added2009-10-03T14:57:18Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Compilation + Artwork Count1 + Sort AlbumTruman Show + Persistent ID7BD27F9571485A68 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Truman%20Show/19%20Opening%20(From%20Mishima).m4a + File Folder Count4 + Library Folder Count1 + + 4626 + + Track ID4626 + NameRaising The Sail + ArtistPhilip Glass + ComposerPhilip Glass + AlbumThe Truman Show + GenreSoundtrack + KindAAC audio file + Size3326857 + Total Time135293 + Disc Number1 + Disc Count1 + Track Number17 + Track Count21 + Year1998 + Date Modified2007-10-06T19:41:42Z + Date Added2009-10-03T14:57:18Z + Bit Rate192 + Sample Rate44100 + Normalization364 + Compilation + Artwork Count1 + Sort AlbumTruman Show + Persistent ID650A8BC76F13DD89 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Truman%20Show/17%20Raising%20The%20Sail.m4a + File Folder Count4 + Library Folder Count1 + + 4628 + + Track ID4628 + NameThe Beginning (From Anima Mundi) + ArtistPhilip Glass + ComposerPhilip Glass + AlbumThe Truman Show + GenreSoundtrack + KindAAC audio file + Size6225388 + Total Time251400 + Disc Number1 + Disc Count1 + Track Number7 + Track Count21 + Year1998 + Date Modified2007-10-06T19:41:19Z + Date Added2009-10-03T14:57:18Z + Bit Rate192 + Sample Rate44100 + Normalization303 + Compilation + Artwork Count1 + Sort AlbumTruman Show + Sort NameBeginning (From Anima Mundi) + Persistent ID6A6EACB284F9EF36 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Truman%20Show/07%20The%20Beginning%20(From%20Anima%20Mundi).m4a + File Folder Count4 + Library Folder Count1 + + 4630 + + Track ID4630 + NameTruman Sleeps + ArtistPhilip Glass + ComposerPhilip Glass + AlbumThe Truman Show + GenreSoundtrack + KindAAC audio file + Size2884647 + Total Time111826 + Disc Number1 + Disc Count1 + Track Number14 + Track Count21 + Year1998 + Date Modified2007-10-06T19:41:34Z + Date Added2009-10-03T14:57:18Z + Bit Rate192 + Sample Rate44100 + Normalization1253 + Compilation + Artwork Count1 + Sort AlbumTruman Show + Persistent ID5020D6745729D187 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Truman%20Show/14%20Truman%20Sleeps.m4a + File Folder Count4 + Library Folder Count1 + + 4632 + + Track ID4632 + NamePrelude And The Sound Of Music + ArtistRodgers & Hammerstein + ComposerRichard Rodgers and Oscar Hammerstein II + AlbumThe Sound Of Music + GenreSoundtrack + KindAAC audio file + Size3992098 + Total Time166694 + Disc Number1 + Disc Count1 + Track Number1 + Track Count16 + Year1995 + Date Modified2006-07-28T13:31:56Z + Date Added2009-10-03T14:57:18Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3389532180 + Play Date UTC2011-05-29T11:13:00Z + Skip Count1 + Skip Date2014-01-13T13:26:07Z + Normalization1230 + Compilation + Artwork Count1 + Sort AlbumSound Of Music + Persistent IDA916616BEF528928 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Sound%20Of%20Music/01%20Prelude%20And%20The%20Sound%20Of%20Music.m4a + File Folder Count4 + Library Folder Count1 + + 4634 + + Track ID4634 + NameOverture And Preludium + ArtistRodgers & Hammerstein + ComposerRichard Rodgers and Oscar Hammerstein II + AlbumThe Sound Of Music + GenreSoundtrack + KindAAC audio file + Size4681616 + Total Time195673 + Disc Number1 + Disc Count1 + Track Number2 + Track Count16 + Year1995 + Date Modified2006-07-28T13:31:56Z + Date Added2009-10-03T14:57:19Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3389532376 + Play Date UTC2011-05-29T11:16:16Z + Normalization1426 + Compilation + Artwork Count1 + Sort AlbumSound Of Music + Persistent IDD1C6DD67D705E6CD + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Sound%20Of%20Music/02%20Overture%20And%20Preludium.m4a + File Folder Count4 + Library Folder Count1 + + 4636 + + Track ID4636 + NameMorning Hymn And Alleluia + ArtistRodgers & Hammerstein + ComposerRichard Rodgers and Oscar Hammerstein II + AlbumThe Sound Of Music + GenreSoundtrack + KindAAC audio file + Size2978641 + Total Time124527 + Disc Number1 + Disc Count1 + Track Number3 + Track Count16 + Year1995 + Date Modified2006-07-28T13:31:58Z + Date Added2009-10-03T14:57:19Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3389532500 + Play Date UTC2011-05-29T11:18:20Z + Normalization553 + Compilation + Artwork Count1 + Sort AlbumSound Of Music + Persistent ID4BF2E791F4587BAE + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Sound%20Of%20Music/03%20Morning%20Hymn%20And%20Alleluia.m4a + File Folder Count4 + Library Folder Count1 + + 4638 + + Track ID4638 + NameMaria + ArtistRodgers & Hammerstein + ComposerRichard Rodgers and Oscar Hammerstein II + AlbumThe Sound Of Music + GenreSoundtrack + KindAAC audio file + Size4776037 + Total Time199341 + Disc Number1 + Disc Count1 + Track Number4 + Track Count16 + Year1995 + Date Modified2006-07-28T13:32:00Z + Date Added2009-10-03T14:57:19Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3389532699 + Play Date UTC2011-05-29T11:21:39Z + Normalization1177 + Compilation + Artwork Count1 + Sort AlbumSound Of Music + Persistent ID789C772B46B9A1AC + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Sound%20Of%20Music/04%20Maria.m4a + File Folder Count4 + Library Folder Count1 + + 4640 + + Track ID4640 + NameI Have Confidence + ArtistRodgers & Hammerstein + ComposerRichard Rodgers and Oscar Hammerstein II + AlbumThe Sound Of Music + GenreSoundtrack + KindAAC audio file + Size4996794 + Total Time208954 + Disc Number1 + Disc Count1 + Track Number5 + Track Count16 + Year1995 + Date Modified2006-07-28T13:32:04Z + Date Added2009-10-03T14:57:19Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3389532908 + Play Date UTC2011-05-29T11:25:08Z + Normalization1217 + Compilation + Artwork Count1 + Sort AlbumSound Of Music + Persistent ID3C5D13403BB54E85 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Sound%20Of%20Music/05%20I%20Have%20Confidence.m4a + File Folder Count4 + Library Folder Count1 + + 4642 + + Track ID4642 + NameSixteen Going On Seventeen + ArtistRodgers & Hammerstein + ComposerRichard Rodgers and Oscar Hammerstein II + AlbumThe Sound Of Music + GenreSoundtrack + KindAAC audio file + Size4787078 + Total Time200015 + Disc Number1 + Disc Count1 + Track Number6 + Track Count16 + Year1995 + Date Modified2006-07-28T13:32:04Z + Date Added2009-10-03T14:57:19Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3389533108 + Play Date UTC2011-05-29T11:28:28Z + Normalization1227 + Compilation + Artwork Count1 + Sort AlbumSound Of Music + Persistent ID067B64B4A003E449 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Sound%20Of%20Music/06%20Sixteen%20Going%20On%20Seventeen.m4a + File Folder Count4 + Library Folder Count1 + + 4644 + + Track ID4644 + NameMy Favorite Things + ArtistRodgers & Hammerstein + ComposerRichard Rodgers and Oscar Hammerstein II + AlbumThe Sound Of Music + GenreSoundtrack + KindAAC audio file + Size3368684 + Total Time140897 + Disc Number1 + Disc Count1 + Track Number7 + Track Count16 + Year1995 + Date Modified2006-07-28T13:32:06Z + Date Added2009-10-03T14:57:19Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3389533249 + Play Date UTC2011-05-29T11:30:49Z + Normalization1185 + Compilation + Artwork Count1 + Sort AlbumSound Of Music + Persistent IDDADAEF4E6287EECD + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Sound%20Of%20Music/07%20My%20Favorite%20Things.m4a + File Folder Count4 + Library Folder Count1 + + 4646 + + Track ID4646 + NameDo-Re-Mi + ArtistRodgers & Hammerstein + ComposerRichard Rodgers and Oscar Hammerstein II + AlbumThe Sound Of Music + GenreSoundtrack + KindAAC audio file + Size8060172 + Total Time335178 + Disc Number1 + Disc Count1 + Track Number8 + Track Count16 + Year1995 + Date Modified2006-07-28T13:32:08Z + Date Added2009-10-03T14:57:19Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3389533585 + Play Date UTC2011-05-29T11:36:25Z + Normalization1878 + Compilation + Artwork Count1 + Sort AlbumSound Of Music + Persistent ID9ED5AB16DFFC26E8 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Sound%20Of%20Music/08%20Do-Re-Mi.m4a + File Folder Count4 + Library Folder Count1 + + 4648 + + Track ID4648 + NameThe Sound Of Music + ArtistRodgers & Hammerstein + ComposerRichard Rodgers and Oscar Hammerstein II + AlbumThe Sound Of Music + GenreSoundtrack + KindAAC audio file + Size3176658 + Total Time133048 + Disc Number1 + Disc Count1 + Track Number9 + Track Count16 + Year1995 + Date Modified2006-07-28T13:32:10Z + Date Added2009-10-03T14:57:19Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3389533717 + Play Date UTC2011-05-29T11:38:37Z + Normalization642 + Compilation + Artwork Count1 + Sort AlbumSound Of Music + Sort NameSound Of Music + Persistent IDA04ED8DDB5AC7FAA + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Sound%20Of%20Music/09%20The%20Sound%20Of%20Music.m4a + File Folder Count4 + Library Folder Count1 + + 4650 + + Track ID4650 + NameThe Lonely Goatherd + ArtistRodgers & Hammerstein + ComposerRichard Rodgers and Oscar Hammerstein II + AlbumThe Sound Of Music + GenreSoundtrack + KindAAC audio file + Size4618910 + Total Time192817 + Disc Number1 + Disc Count1 + Track Number10 + Track Count16 + Year1995 + Date Modified2006-07-28T13:32:10Z + Date Added2009-10-03T14:57:19Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3389533910 + Play Date UTC2011-05-29T11:41:50Z + Normalization2340 + Compilation + Artwork Count1 + Sort AlbumSound Of Music + Sort NameLonely Goatherd + Persistent IDA96DC0382600AA03 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Sound%20Of%20Music/10%20The%20Lonely%20Goatherd.m4a + File Folder Count4 + Library Folder Count1 + + 4652 + + Track ID4652 + NameSo Long, Farwell + ArtistRodgers & Hammerstein + ComposerRichard Rodgers and Oscar Hammerstein II + AlbumThe Sound Of Music + GenreSoundtrack + KindAAC audio file + Size4225489 + Total Time176400 + Disc Number1 + Disc Count1 + Track Number11 + Track Count16 + Year1995 + Date Modified2006-07-28T13:32:12Z + Date Added2009-10-03T14:57:20Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3389534087 + Play Date UTC2011-05-29T11:44:47Z + Normalization908 + Compilation + Artwork Count1 + Sort AlbumSound Of Music + Persistent IDE435FE270AE899FD + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Sound%20Of%20Music/11%20So%20Long,%20Farwell.m4a + File Folder Count4 + Library Folder Count1 + + 4654 + + Track ID4654 + NameClimb Ev'ry Mountain + ArtistRodgers & Hammerstein + ComposerRichard Rodgers and Oscar Hammerstein II + AlbumThe Sound Of Music + GenreSoundtrack + KindAAC audio file + Size3318408 + Total Time138644 + Disc Number1 + Disc Count1 + Track Number12 + Track Count16 + Year1995 + Date Modified2006-07-28T13:32:14Z + Date Added2009-10-03T14:57:20Z + Bit Rate192 + Sample Rate44100 + Normalization1521 + Compilation + Artwork Count1 + Sort AlbumSound Of Music + Persistent IDF6C97FC9FD83B42D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Sound%20Of%20Music/12%20Climb%20Ev'ry%20Mountain.m4a + File Folder Count4 + Library Folder Count1 + + 4656 + + Track ID4656 + NameSomething Good + ArtistRodgers & Hammerstein + ComposerRichard Rodgers and Oscar Hammerstein II + AlbumThe Sound Of Music + GenreSoundtrack + KindAAC audio file + Size4776883 + Total Time199365 + Disc Number1 + Disc Count1 + Track Number13 + Track Count16 + Year1995 + Date Modified2006-07-28T13:32:14Z + Date Added2009-10-03T14:57:20Z + Bit Rate192 + Sample Rate44100 + Normalization323 + Compilation + Artwork Count1 + Sort AlbumSound Of Music + Persistent IDA7BFFC26394F8851 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Sound%20Of%20Music/13%20Something%20Good.m4a + File Folder Count4 + Library Folder Count1 + + 4658 + + Track ID4658 + NameProcessional And Maria + ArtistRodgers & Hammerstein + ComposerRichard Rodgers and Oscar Hammerstein II + AlbumThe Sound Of Music + GenreSoundtrack + KindAAC audio file + Size3579105 + Total Time149511 + Disc Number1 + Disc Count1 + Track Number14 + Track Count16 + Year1995 + Date Modified2006-07-28T13:32:16Z + Date Added2009-10-03T14:57:20Z + Bit Rate192 + Sample Rate44100 + Normalization2502 + Compilation + Artwork Count1 + Sort AlbumSound Of Music + Persistent ID66784626032152A3 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Sound%20Of%20Music/14%20Processional%20And%20Maria.m4a + File Folder Count4 + Library Folder Count1 + + 4660 + + Track ID4660 + NameEdelweiss + ArtistRodgers & Hammerstein + ComposerRichard Rodgers and Oscar Hammerstein II + AlbumThe Sound Of Music + GenreSoundtrack + KindAAC audio file + Size2683681 + Total Time112220 + Disc Number1 + Disc Count1 + Track Number15 + Track Count16 + Year1995 + Date Modified2006-07-28T13:32:18Z + Date Added2009-10-03T14:57:20Z + Bit Rate192 + Sample Rate44100 + Normalization1216 + Compilation + Artwork Count1 + Sort AlbumSound Of Music + Persistent IDD2050AFA15B477BB + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Sound%20Of%20Music/15%20Edelweiss.m4a + File Folder Count4 + Library Folder Count1 + + 4662 + + Track ID4662 + NameClimb Ev'ry Mountain (Reprise) + ArtistRodgers & Hammerstein + ComposerRichard Rodgers and Oscar Hammerstein II + AlbumThe Sound Of Music + GenreSoundtrack + KindAAC audio file + Size1988908 + Total Time80780 + Disc Number1 + Disc Count1 + Track Number16 + Track Count16 + Year1995 + Date Modified2006-07-28T13:32:18Z + Date Added2009-10-03T14:57:20Z + Bit Rate192 + Sample Rate44100 + Normalization2111 + Compilation + Artwork Count1 + Sort AlbumSound Of Music + Persistent ID83C5F8BA799B285D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Sound%20Of%20Music/16%20Climb%20Ev'ry%20Mountain%20(Reprise).m4a + File Folder Count4 + Library Folder Count1 + + 4664 + + Track ID4664 + NameAnna's Theme + ArtistJoshua Bell + ComposerJohn Corigliano + AlbumThe Red Violin + GenreSoundtrack + KindAAC audio file + Size4227548 + Total Time170479 + Disc Number1 + Disc Count1 + Track Number1 + Track Count20 + Year1998 + Date Modified2006-08-07T09:32:30Z + Date Added2009-10-03T14:57:20Z + Bit Rate192 + Sample Rate44100 + Normalization195 + Compilation + Artwork Count1 + Sort AlbumRed Violin + Persistent IDAE135AC9E4862DE0 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Red%20Violin/01%20Anna's%20Theme.m4a + File Folder Count4 + Library Folder Count1 + + 4666 + + Track ID4666 + NameMain Title + ArtistJoshua Bell + ComposerJohn Corigliano + AlbumThe Red Violin + GenreSoundtrack + KindAAC audio file + Size4110482 + Total Time165603 + Disc Number1 + Disc Count1 + Track Number2 + Track Count20 + Year1998 + Date Modified2006-08-07T09:32:30Z + Date Added2009-10-03T14:57:21Z + Bit Rate192 + Sample Rate44100 + Normalization279 + Compilation + Artwork Count1 + Sort AlbumRed Violin + Persistent IDD54DFAE53D56A36C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Red%20Violin/02%20Main%20Title.m4a + File Folder Count4 + Library Folder Count1 + + 4668 + + Track ID4668 + NameDeath Of Anna + ArtistJoshua Bell + ComposerJohn Corigliano + AlbumThe Red Violin + GenreSoundtrack + KindAAC audio file + Size2700002 + Total Time106880 + Disc Number1 + Disc Count1 + Track Number3 + Track Count20 + Year1998 + Date Modified2006-08-07T09:32:30Z + Date Added2009-10-03T14:57:21Z + Bit Rate192 + Sample Rate44100 + Normalization635 + Compilation + Artwork Count1 + Sort AlbumRed Violin + Persistent ID5087E878D691DFA8 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Red%20Violin/03%20Death%20Of%20Anna.m4a + File Folder Count4 + Library Folder Count1 + + 4670 + + Track ID4670 + NameBirth Of The Red Violin + ArtistJoshua Bell + ComposerJohn Corigliano + AlbumThe Red Violin + GenreSoundtrack + KindAAC audio file + Size4576638 + Total Time185038 + Disc Number1 + Disc Count1 + Track Number4 + Track Count20 + Year1998 + Date Modified2006-08-07T09:32:30Z + Date Added2009-10-03T14:57:21Z + Bit Rate192 + Sample Rate44100 + Normalization500 + Compilation + Artwork Count1 + Sort AlbumRed Violin + Persistent IDFEC38B4EF96AC44F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Red%20Violin/04%20Birth%20Of%20The%20Red%20Violin.m4a + File Folder Count4 + Library Folder Count1 + + 4672 + + Track ID4672 + NameThe Red Violin + ArtistJoshua Bell + ComposerJohn Corigliano + AlbumThe Red Violin + GenreSoundtrack + KindAAC audio file + Size2377016 + Total Time94085 + Disc Number1 + Disc Count1 + Track Number5 + Track Count20 + Year1998 + Date Modified2006-08-07T09:32:30Z + Date Added2009-10-03T14:57:22Z + Bit Rate192 + Sample Rate44100 + Normalization275 + Compilation + Artwork Count1 + Sort AlbumRed Violin + Sort NameRed Violin + Persistent ID950EB353594F40CF + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Red%20Violin/05%20The%20Red%20Violin.m4a + File Folder Count4 + Library Folder Count1 + + 4674 + + Track ID4674 + NameThe Monastery + ArtistJoshua Bell + ComposerJohn Corigliano + AlbumThe Red Violin + GenreSoundtrack + KindAAC audio file + Size1738425 + Total Time66848 + Disc Number1 + Disc Count1 + Track Number6 + Track Count20 + Year1998 + Date Modified2006-08-07T09:32:30Z + Date Added2009-10-03T14:57:22Z + Bit Rate192 + Sample Rate44100 + Normalization234 + Compilation + Artwork Count1 + Sort AlbumRed Violin + Sort NameMonastery + Persistent ID3C8EDA3E2648DAAF + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Red%20Violin/06%20The%20Monastery.m4a + File Folder Count4 + Library Folder Count1 + + 4676 + + Track ID4676 + NameKaspar's Audition; Journey To Vienna + ArtistJoshua Bell + ComposerJohn Corigliano + AlbumThe Red Violin + GenreSoundtrack + KindAAC audio file + Size3971830 + Total Time160471 + Disc Number1 + Disc Count1 + Track Number7 + Track Count20 + Year1998 + Date Modified2006-08-07T09:32:30Z + Date Added2009-10-03T14:57:22Z + Bit Rate192 + Sample Rate44100 + Normalization238 + Compilation + Artwork Count1 + Sort AlbumRed Violin + Persistent IDFC742F4928A0FD2A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Red%20Violin/07%20Kaspar's%20Audition%3B%20Journey%20To%20Vienna.m4a + File Folder Count4 + Library Folder Count1 + + 4678 + + Track ID4678 + NameEtudes; Death Of Kaspar + ArtistJoshua Bell + ComposerJohn Corigliano + AlbumThe Red Violin + GenreSoundtrack + KindAAC audio file + Size2011075 + Total Time78203 + Disc Number1 + Disc Count1 + Track Number8 + Track Count20 + Year1998 + Date Modified2006-08-07T09:32:30Z + Date Added2009-10-03T14:57:22Z + Bit Rate192 + Sample Rate44100 + Normalization214 + Compilation + Artwork Count1 + Sort AlbumRed Violin + Persistent ID43A93FDB9FE2B5AD + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Red%20Violin/08%20Etudes%3B%20Death%20Of%20Kaspar.m4a + File Folder Count4 + Library Folder Count1 + + 4680 + + Track ID4680 + NameThe Gypsies; Journey Across Europe + ArtistJoshua Bell + ComposerJohn Corigliano + AlbumThe Red Violin + GenreSoundtrack + KindAAC audio file + Size5267716 + Total Time217035 + Disc Number1 + Disc Count1 + Track Number9 + Track Count20 + Year1998 + Date Modified2006-08-07T09:32:30Z + Date Added2009-10-03T14:57:22Z + Bit Rate192 + Sample Rate44100 + Normalization356 + Compilation + Artwork Count1 + Sort AlbumRed Violin + Sort NameGypsies; Journey Across Europe + Persistent ID6D60A4739077D3A6 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Red%20Violin/09%20The%20Gypsies%3B%20Journey%20Across%20Europe.m4a + File Folder Count4 + Library Folder Count1 + + 4682 + + Track ID4682 + NamePope's Gypsy Cadenza + ArtistJoshua Bell + ComposerJohn Corigliano + AlbumThe Red Violin + GenreSoundtrack + KindAAC audio file + Size2506441 + Total Time98822 + Disc Number1 + Disc Count1 + Track Number10 + Track Count20 + Year1998 + Date Modified2006-08-07T09:32:30Z + Date Added2009-10-03T14:57:22Z + Bit Rate192 + Sample Rate44100 + Normalization325 + Compilation + Artwork Count1 + Sort AlbumRed Violin + Persistent ID8715B7D6B9014246 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Red%20Violin/10%20Pope's%20Gypsy%20Cadenza.m4a + File Folder Count4 + Library Folder Count1 + + 4684 + + Track ID4684 + NameCoitus Musicalis; Victoria's Departure + ArtistJoshua Bell + ComposerJohn Corigliano + AlbumThe Red Violin + GenreSoundtrack + KindAAC audio file + Size6825249 + Total Time278707 + Disc Number1 + Disc Count1 + Track Number11 + Track Count20 + Year1998 + Date Modified2006-08-07T09:32:30Z + Date Added2009-10-03T14:57:22Z + Bit Rate192 + Sample Rate44100 + Normalization178 + Compilation + Artwork Count1 + Sort AlbumRed Violin + Persistent ID5556B58DE3A39C64 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Red%20Violin/11%20Coitus%20Musicalis%3B%20Victoria's%20Departure.m4a + File Folder Count4 + Library Folder Count1 + + 4686 + + Track ID4686 + NamePope's Concert + ArtistJoshua Bell + ComposerJohn Corigliano + AlbumThe Red Violin + GenreSoundtrack + KindAAC audio file + Size2096984 + Total Time82499 + Disc Number1 + Disc Count1 + Track Number12 + Track Count20 + Year1998 + Date Modified2006-08-07T09:32:30Z + Date Added2009-10-03T14:57:23Z + Bit Rate192 + Sample Rate44100 + Normalization364 + Compilation + Artwork Count1 + Sort AlbumRed Violin + Persistent ID2CA614C299F2175B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Red%20Violin/12%20Pope's%20Concert.m4a + File Folder Count4 + Library Folder Count1 + + 4688 + + Track ID4688 + NamePope's Betrayal + ArtistJoshua Bell + ComposerJohn Corigliano + AlbumThe Red Violin + GenreSoundtrack + KindAAC audio file + Size4475438 + Total Time180812 + Disc Number1 + Disc Count1 + Track Number13 + Track Count20 + Year1998 + Date Modified2006-08-07T09:32:30Z + Date Added2009-10-03T14:57:23Z + Bit Rate192 + Sample Rate44100 + Normalization199 + Compilation + Artwork Count1 + Sort AlbumRed Violin + Persistent ID7CD11FDAC0473ACB + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Red%20Violin/13%20Pope's%20Betrayal.m4a + File Folder Count4 + Library Folder Count1 + + 4690 + + Track ID4690 + NameJourney To China + ArtistJoshua Bell + ComposerJohn Corigliano + AlbumThe Red Violin + GenreSoundtrack + KindAAC audio file + Size6139059 + Total Time250077 + Disc Number1 + Disc Count1 + Track Number14 + Track Count20 + Year1998 + Date Modified2006-08-07T09:32:30Z + Date Added2009-10-03T14:57:23Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3378213013 + Play Date UTC2011-01-18T11:00:13Z + Normalization368 + Compilation + Artwork Count1 + Sort AlbumRed Violin + Persistent ID78E7DA805852B0F7 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Red%20Violin/14%20Journey%20To%20China.m4a + File Folder Count4 + Library Folder Count1 + + 4692 + + Track ID4692 + NamePeople's Revolution; Death Of Chou Yuan + ArtistJoshua Bell + ComposerJohn Corigliano + AlbumThe Red Violin + GenreSoundtrack + KindAAC audio file + Size4820694 + Total Time197716 + Disc Number1 + Disc Count1 + Track Number15 + Track Count20 + Year1998 + Date Modified2006-08-07T09:32:28Z + Date Added2009-10-03T14:57:23Z + Bit Rate192 + Sample Rate44100 + Normalization193 + Compilation + Artwork Count1 + Sort AlbumRed Violin + Persistent ID209D962F3436A83D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Red%20Violin/15%20People's%20Revolution%3B%20Death%20Of%20Chou%20Yuan.m4a + File Folder Count4 + Library Folder Count1 + + 4694 + + Track ID4694 + NameMorritz Discovers The Red Violin + ArtistJoshua Bell + ComposerJohn Corigliano + AlbumThe Red Violin + GenreSoundtrack + KindAAC audio file + Size5363561 + Total Time217778 + Disc Number1 + Disc Count1 + Track Number16 + Track Count20 + Year1998 + Date Modified2006-08-07T09:32:28Z + Date Added2009-10-03T14:57:23Z + Bit Rate192 + Sample Rate44100 + Normalization316 + Compilation + Artwork Count1 + Sort AlbumRed Violin + Persistent IDF9A7F49C50D85A1E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Red%20Violin/16%20Morritz%20Discovers%20The%20Red%20Violin.m4a + File Folder Count4 + Library Folder Count1 + + 4696 + + Track ID4696 + NameMorritz's Theme + ArtistJoshua Bell + ComposerJohn Corigliano + AlbumThe Red Violin + GenreSoundtrack + KindAAC audio file + Size2876840 + Total Time114472 + Disc Number1 + Disc Count1 + Track Number17 + Track Count20 + Year1998 + Date Modified2006-08-07T09:32:28Z + Date Added2009-10-03T14:57:23Z + Bit Rate192 + Sample Rate44100 + Normalization104 + Compilation + Artwork Count1 + Sort AlbumRed Violin + Persistent ID0A4317B48FCEF5EB + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Red%20Violin/17%20Morritz's%20Theme.m4a + File Folder Count4 + Library Folder Count1 + + 4698 + + Track ID4698 + NameThe Theft + ArtistJoshua Bell + ComposerJohn Corigliano + AlbumThe Red Violin + GenreSoundtrack + KindAAC audio file + Size3304713 + Total Time132073 + Disc Number1 + Disc Count1 + Track Number18 + Track Count20 + Year1998 + Date Modified2006-08-07T09:32:28Z + Date Added2009-10-03T14:57:23Z + Bit Rate192 + Sample Rate44100 + Normalization708 + Compilation + Artwork Count1 + Sort AlbumRed Violin + Sort NameTheft + Persistent ID101D8E6F33325680 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Red%20Violin/18%20The%20Theft.m4a + File Folder Count4 + Library Folder Count1 + + 4700 + + Track ID4700 + NameEnd Titles + ArtistJoshua Bell + ComposerJohn Corigliano + AlbumThe Red Violin + GenreSoundtrack + KindAAC audio file + Size2691718 + Total Time115053 + Disc Number1 + Disc Count1 + Track Number19 + Track Count20 + Year1998 + Date Modified2006-08-07T09:32:28Z + Date Added2009-10-03T14:57:24Z + Bit Rate192 + Sample Rate44100 + Normalization17 + Compilation + Artwork Count1 + Sort AlbumRed Violin + Persistent ID48995CD4B387A1C3 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Red%20Violin/19%20End%20Titles.m4a + File Folder Count4 + Library Folder Count1 + + 4702 + + Track ID4702 + NameThe Red Violin + ArtistJoshua Bell + ComposerJohn Corigliano + AlbumThe Red Violin + GenreSoundtrack + KindAAC audio file + Size25659102 + Total Time1056878 + Disc Number1 + Disc Count1 + Track Number20 + Track Count20 + Year1998 + Date Modified2006-08-07T09:32:28Z + Date Added2009-10-03T14:57:24Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Compilation + Artwork Count1 + Sort AlbumRed Violin + Sort NameRed Violin + Persistent ID1E2A9C77049DAEE7 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Red%20Violin/20%20The%20Red%20Violin.m4a + File Folder Count4 + Library Folder Count1 + + 4704 + + Track ID4704 + NameIntroduction And Rondo Capriccioso, Op.28 + ArtistCamille Saint-Saëns + AlbumThe Magic Violin + GenreClassical + KindAAC audio file + Size12594717 + Total Time523678 + Disc Number1 + Track Number1 + Track Count15 + Date Modified2006-08-08T03:05:14Z + Date Added2009-10-03T14:57:24Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3361080929 + Play Date UTC2010-07-04T04:05:29Z + Normalization898 + Compilation + Artwork Count1 + Sort AlbumMagic Violin + Persistent IDD57A15C6BDC652F3 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Magic%20Violin/1-01%20Introduction%20And%20Rondo%20Capriccioso,%20Op.28.m4a + File Folder Count4 + Library Folder Count1 + + 4706 + + Track ID4706 + NameRomance For Violin And Orchestra, Op.26 + ArtistJohann Svendsen + AlbumThe Magic Violin + GenreClassical + KindAAC audio file + Size11390631 + Total Time473337 + Disc Number1 + Track Number2 + Track Count15 + Date Modified2006-08-08T03:05:14Z + Date Added2009-10-03T14:57:24Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3361081402 + Play Date UTC2010-07-04T04:13:22Z + Normalization871 + Compilation + Artwork Count1 + Sort AlbumMagic Violin + Persistent ID3026718D1D264477 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Magic%20Violin/1-02%20Romance%20For%20Violin%20And%20Orchestra,%20Op.26.m4a + File Folder Count4 + Library Folder Count1 + + 4708 + + Track ID4708 + NameLa Campanella: Rondo In b, Op.7 + ArtistNiccolò Paganini + AlbumThe Magic Violin + GenreClassical + KindAAC audio file + Size8710037 + Total Time363669 + Disc Number1 + Track Number3 + Track Count15 + Date Modified2006-08-08T03:05:14Z + Date Added2009-10-03T14:57:24Z + Bit Rate192 + Sample Rate44100 + Normalization1037 + Compilation + Artwork Count1 + Sort AlbumMagic Violin + Persistent ID8DFBE5948823D64F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Magic%20Violin/1-03%20La%20Campanella_%20Rondo%20In%20b,%20Op.7.m4a + File Folder Count4 + Library Folder Count1 + + 4710 + + Track ID4710 + NameSuite In D: Air + ArtistJohann Sebastian Bach + AlbumThe Magic Violin + GenreClassical + KindAAC audio file + Size5547965 + Total Time232685 + Disc Number1 + Track Number4 + Track Count15 + Date Modified2006-08-08T03:05:16Z + Date Added2009-10-03T14:57:24Z + Bit Rate192 + Sample Rate44100 + Normalization150 + Compilation + Artwork Count1 + Sort AlbumMagic Violin + Persistent ID4A5A34439CD31F30 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Magic%20Violin/1-04%20Suite%20In%20D_%20Air.m4a + File Folder Count4 + Library Folder Count1 + + 4712 + + Track ID4712 + NameMinuet In G + ArtistLudwig Van Beethoven + AlbumThe Magic Violin + GenreClassical + KindAAC audio file + Size3869297 + Total Time162700 + Disc Number1 + Track Number5 + Track Count15 + Date Modified2006-08-08T03:05:16Z + Date Added2009-10-03T14:57:24Z + Bit Rate192 + Sample Rate44100 + Normalization416 + Compilation + Artwork Count1 + Sort AlbumMagic Violin + Persistent ID70AD67C87818D005 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Magic%20Violin/1-05%20Minuet%20In%20G.m4a + File Folder Count4 + Library Folder Count1 + + 4714 + + Track ID4714 + NameLittle Bee, Op.13/9 + ArtistFranz Schubert + AlbumThe Magic Violin + GenreClassical + KindAAC audio file + Size1484960 + Total Time63319 + Disc Number1 + Track Number6 + Track Count15 + Date Modified2006-08-08T03:05:16Z + Date Added2009-10-03T14:57:24Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3340458369 + Play Date UTC2009-11-07T11:36:09Z + Normalization326 + Compilation + Artwork Count1 + Sort AlbumMagic Violin + Persistent IDBB6C9540DFA0140E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Magic%20Violin/1-06%20Little%20Bee,%20Op.13_9.m4a + File Folder Count4 + Library Folder Count1 + + 4716 + + Track ID4716 + NamePrld I/8: La fille aux cheveux de lin + ArtistClaude Debussy + AlbumThe Magic Violin + GenreClassical + KindAAC audio file + Size3192546 + Total Time135742 + Disc Number1 + Track Number7 + Track Count15 + Date Modified2006-08-08T03:05:16Z + Date Added2009-10-03T14:57:24Z + Bit Rate192 + Sample Rate44100 + Normalization443 + Compilation + Artwork Count1 + Sort AlbumMagic Violin + Persistent ID86B2E3CF1132387D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Magic%20Violin/1-07%20Prld%20I_8_%20La%20fille%20aux%20cheveux%20de%20lin.m4a + File Folder Count4 + Library Folder Count1 + + 4718 + + Track ID4718 + NameSadko: The song of the Indian Merchant + ArtistNikolai Rimsky-Korsakov + AlbumThe Magic Violin + GenreClassical + KindAAC audio file + Size4424036 + Total Time185943 + Disc Number1 + Track Number8 + Track Count15 + Date Modified2006-08-08T03:05:16Z + Date Added2009-10-03T14:57:25Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3401282453 + Play Date UTC2011-10-12T11:10:53Z + Normalization370 + Compilation + Artwork Count1 + Sort AlbumMagic Violin + Persistent ID1E55DD6476019C97 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Magic%20Violin/1-08%20Sadko_%20The%20song%20of%20the%20Indian%20Merchant.m4a + File Folder Count4 + Library Folder Count1 + + 4720 + + Track ID4720 + NameThe Nightingale's Song + ArtistVaclav Trojan + AlbumThe Magic Violin + GenreClassical + KindAAC audio file + Size4074211 + Total Time170827 + Disc Number1 + Track Number9 + Track Count15 + Date Modified2006-08-08T03:05:16Z + Date Added2009-10-03T14:57:25Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3435930705 + Play Date UTC2012-11-16T11:41:45Z + Normalization605 + Compilation + Artwork Count1 + Sort AlbumMagic Violin + Sort NameNightingale's Song + Persistent IDDDA51DAE59439070 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Magic%20Violin/1-09%20The%20Nightingale's%20Song.m4a + File Folder Count4 + Library Folder Count1 + + 4722 + + Track ID4722 + NameDas Blumenleben Op.30: Zephyr Op.30/5 + ArtistJeno Hubay + AlbumThe Magic Violin + GenreClassical + KindAAC audio file + Size5002108 + Total Time212182 + Disc Number1 + Track Number10 + Track Count15 + Date Modified2006-08-08T03:05:16Z + Date Added2009-10-03T14:57:25Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3435930917 + Play Date UTC2012-11-16T11:45:17Z + Normalization386 + Compilation + Artwork Count1 + Sort AlbumMagic Violin + Persistent IDAE9351EE850E5555 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Magic%20Violin/1-10%20Das%20Blumenleben%20Op.30_%20Zephyr%20Op.30_5.m4a + File Folder Count4 + Library Folder Count1 + + 4724 + + Track ID4724 + NameSymphonie Espagnole In d Op.21: Allegro no Troppo + ArtistEdouard Lalo + AlbumThe Magic Violin + GenreClassical + KindAAC audio file + Size11228996 + Total Time463097 + Disc Number1 + Track Number11 + Track Count15 + Date Modified2006-08-08T03:05:16Z + Date Added2009-10-03T14:57:25Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3435931380 + Play Date UTC2012-11-16T11:53:00Z + Normalization989 + Compilation + Artwork Count1 + Sort AlbumMagic Violin + Persistent ID3E75BF24FFF87B16 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Magic%20Violin/1-11%20Symphonie%20Espagnole%20In%20d%20Op.21_%20Allegro%20no%20Troppo.m4a + File Folder Count4 + Library Folder Count1 + + 4726 + + Track ID4726 + NameSymphonie Espagnole In d Op.21: Sherzando + ArtistEdouard Lalo + AlbumThe Magic Violin + GenreClassical + KindAAC audio file + Size6428585 + Total Time264729 + Disc Number1 + Track Number12 + Track Count15 + Date Modified2006-08-08T03:05:16Z + Date Added2009-10-03T14:57:25Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3435931645 + Play Date UTC2012-11-16T11:57:25Z + Skip Count1 + Normalization817 + Compilation + Artwork Count1 + Sort AlbumMagic Violin + Persistent ID66DB88606BE68852 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Magic%20Violin/1-12%20Symphonie%20Espagnole%20In%20d%20Op.21_%20Sherzando.m4a + File Folder Count4 + Library Folder Count1 + + 4728 + + Track ID4728 + NameSymphonie Espagnole In d Op.21: Intermezzo (Allegretto non Troppo) + ArtistEdouard Lalo + AlbumThe Magic Violin + GenreClassical + KindAAC audio file + Size8890802 + Total Time366479 + Disc Number1 + Track Number13 + Track Count15 + Date Modified2006-08-08T03:05:16Z + Date Added2009-10-03T14:57:25Z + Bit Rate192 + Sample Rate44100 + Normalization876 + Compilation + Artwork Count1 + Sort AlbumMagic Violin + Persistent IDA452DD9F31377DE7 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Magic%20Violin/1-13%20Symphonie%20Espagnole%20In%20d%20Op.21_%20Intermezzo%20(Allegretto%20non%20Troppo).m4a + File Folder Count4 + Library Folder Count1 + + 4730 + + Track ID4730 + NameSymphonie Espagnole In d Op.21: Adante + ArtistEdouard Lalo + AlbumThe Magic Violin + GenreClassical + KindAAC audio file + Size9847743 + Total Time406022 + Disc Number1 + Track Number14 + Track Count15 + Date Modified2006-08-08T03:05:18Z + Date Added2009-10-03T14:57:25Z + Bit Rate192 + Sample Rate44100 + Skip Count1 + Normalization852 + Compilation + Artwork Count1 + Sort AlbumMagic Violin + Persistent ID421381DCCF9C8D0F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Magic%20Violin/1-14%20Symphonie%20Espagnole%20In%20d%20Op.21_%20Adante.m4a + File Folder Count4 + Library Folder Count1 + + 4732 + + Track ID4732 + NameSymphonie Espagnole In d Op.21: Molto Moderato e maestoso + ArtistEdouard Lalo + AlbumThe Magic Violin + GenreClassical + KindAAC audio file + Size11701185 + Total Time482602 + Disc Number1 + Track Number15 + Track Count15 + Date Modified2006-08-08T03:05:18Z + Date Added2009-10-03T14:57:25Z + Bit Rate192 + Sample Rate44100 + Skip Count1 + Normalization1246 + Compilation + Artwork Count1 + Sort AlbumMagic Violin + Persistent ID4B8FB66CED0D338F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Magic%20Violin/1-15%20Symphonie%20Espagnole%20In%20d%20Op.21_%20Molto%20Moderato%20e%20maestoso.m4a + File Folder Count4 + Library Folder Count1 + + 4734 + + Track ID4734 + NameLonesome Blues + ArtistLouis Armstrong & The Hot Five + ComposerW. Dixon + AlbumThe Hot Fives And Hot Sevens - Volume II + GenreJazz + KindAAC audio file + Size4865889 + Total Time195733 + Disc Number1 + Disc Count1 + Track Number1 + Track Count16 + Year1926 + Date Modified2008-11-04T13:27:15Z + Date Added2009-10-03T14:57:26Z + Bit Rate256 + Sample Rate44100 + Normalization806 + Compilation + Artwork Count1 + Sort AlbumHot Fives And Hot Sevens - Volume II + Persistent ID4510F4ED9261FC16 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Hot%20Fives%20And%20Hot%20Sevens%20-%20Volume%20II/01%20Lonesome%20Blues.m4a + File Folder Count4 + Library Folder Count1 + + 4736 + + Track ID4736 + NameSweet Little Papa + ArtistLouis Armstrong & The Hot Five + ComposerE. Ory + AlbumThe Hot Fives And Hot Sevens - Volume II + GenreJazz + KindAAC audio file + Size4312970 + Total Time173266 + Disc Number1 + Disc Count1 + Track Number2 + Track Count16 + Year1926 + Date Modified2008-11-04T13:27:15Z + Date Added2009-10-03T14:57:26Z + Bit Rate256 + Sample Rate44100 + Normalization1242 + Compilation + Artwork Count1 + Sort AlbumHot Fives And Hot Sevens - Volume II + Persistent ID168CD01D7259D3A6 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Hot%20Fives%20And%20Hot%20Sevens%20-%20Volume%20II/02%20Sweet%20Little%20Papa.m4a + File Folder Count4 + Library Folder Count1 + + 4738 + + Track ID4738 + NameJazz Lips + ArtistLouis Armstrong & The Hot Five + ComposerLillian Hardin Armstrong + AlbumThe Hot Fives And Hot Sevens - Volume II + GenreJazz + KindAAC audio file + Size4780997 + Total Time192333 + Disc Number1 + Disc Count1 + Track Number3 + Track Count16 + Year1926 + Date Modified2008-11-04T13:27:14Z + Date Added2009-10-03T14:57:26Z + Bit Rate256 + Sample Rate44100 + Normalization1285 + Compilation + Artwork Count1 + Sort AlbumHot Fives And Hot Sevens - Volume II + Persistent IDFC4D05648F51D837 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Hot%20Fives%20And%20Hot%20Sevens%20-%20Volume%20II/03%20Jazz%20Lips.m4a + File Folder Count4 + Library Folder Count1 + + 4740 + + Track ID4740 + NameSkid-Dat-De-Dat + ArtistLouis Armstrong & His Hot Five + ComposerL. Hardin + AlbumThe Hot Fives And Hot Sevens - Volume II + GenreJazz + KindAAC audio file + Size4831855 + Total Time196266 + Disc Number1 + Disc Count1 + Track Number4 + Track Count16 + Year1926 + Date Modified2008-11-04T13:27:14Z + Date Added2009-10-03T14:57:26Z + Bit Rate256 + Sample Rate44100 + Normalization453 + Compilation + Artwork Count1 + Sort AlbumHot Fives And Hot Sevens - Volume II + Persistent ID64DAABAEC2C7E65F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Hot%20Fives%20And%20Hot%20Sevens%20-%20Volume%20II/04%20Skid-Dat-De-Dat.m4a + File Folder Count4 + Library Folder Count1 + + 4742 + + Track ID4742 + NameBig Butter And Egg Man + ArtistLouis Armstrong & His Hot Five + ComposerL. Armstrong/P. Venable + AlbumThe Hot Fives And Hot Sevens - Volume II + GenreJazz + KindAAC audio file + Size5986849 + Total Time191333 + Disc Number1 + Disc Count1 + Track Number5 + Track Count16 + Year1926 + Date Modified2008-11-04T13:27:14Z + Date Added2009-10-03T14:57:26Z + Bit Rate256 + Sample Rate44100 + Normalization993 + Compilation + Artwork Count1 + Sort AlbumHot Fives And Hot Sevens - Volume II + Persistent IDF9E178860572ADE0 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Hot%20Fives%20And%20Hot%20Sevens%20-%20Volume%20II/05%20Big%20Butter%20And%20Egg%20Man.m4a + File Folder Count4 + Library Folder Count1 + + 4744 + + Track ID4744 + NameSunset Cafe Stomp + ArtistLouis Armstrong & The Hot Five + ComposerL. Armstrong/P. Venable + AlbumThe Hot Fives And Hot Sevens - Volume II + GenreJazz + KindAAC audio file + Size4345114 + Total Time176560 + Disc Number1 + Disc Count1 + Track Number6 + Track Count16 + Year1926 + Date Modified2008-11-04T13:27:13Z + Date Added2009-10-03T14:57:26Z + Bit Rate256 + Sample Rate44100 + Normalization724 + Compilation + Artwork Count1 + Sort AlbumHot Fives And Hot Sevens - Volume II + Persistent ID406F442419FDF849 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Hot%20Fives%20And%20Hot%20Sevens%20-%20Volume%20II/06%20Sunset%20Cafe%20Stomp.m4a + File Folder Count4 + Library Folder Count1 + + 4746 + + Track ID4746 + NameYou Made Me Love You + ArtistLouis Armstrong & The Hot Five + ComposerP. Venable/L. Armstrong + AlbumThe Hot Fives And Hot Sevens - Volume II + GenreJazz + KindAAC audio file + Size4496907 + Total Time182466 + Disc Number1 + Disc Count1 + Track Number7 + Track Count16 + Year1926 + Date Modified2008-11-04T13:27:13Z + Date Added2009-10-03T14:57:26Z + Bit Rate256 + Sample Rate44100 + Normalization986 + Compilation + Artwork Count1 + Sort AlbumHot Fives And Hot Sevens - Volume II + Persistent IDFDA8B8D58A55A7D4 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Hot%20Fives%20And%20Hot%20Sevens%20-%20Volume%20II/07%20You%20Made%20Me%20Love%20You.m4a + File Folder Count4 + Library Folder Count1 + + 4748 + + Track ID4748 + NameIrish Black Bottom + ArtistLouis Armstrong & The Hot Five + ComposerL. Armstrong/P. Venable + AlbumThe Hot Fives And Hot Sevens - Volume II + GenreJazz + KindAAC audio file + Size4214204 + Total Time170706 + Disc Number1 + Disc Count1 + Track Number8 + Track Count16 + Year1926 + Date Modified2008-11-04T13:27:13Z + Date Added2009-10-03T14:57:26Z + Bit Rate256 + Sample Rate44100 + Normalization998 + Compilation + Artwork Count1 + Sort AlbumHot Fives And Hot Sevens - Volume II + Persistent ID326176914A42CF23 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Hot%20Fives%20And%20Hot%20Sevens%20-%20Volume%20II/08%20Irish%20Black%20Bottom.m4a + File Folder Count4 + Library Folder Count1 + + 4750 + + Track ID4750 + NameWillie The Weeper + ArtistLouis Armstrong & His Hot Seven + ComposerW, Melrose/G. V. Rymal/M. Bloom + AlbumThe Hot Fives And Hot Sevens - Volume II + GenreJazz + KindAAC audio file + Size4784450 + Total Time193960 + Disc Number1 + Disc Count1 + Track Number9 + Track Count16 + Year1927 + Date Modified2008-11-04T13:27:13Z + Date Added2009-10-03T14:57:26Z + Bit Rate256 + Sample Rate44100 + Normalization953 + Compilation + Artwork Count1 + Sort AlbumHot Fives And Hot Sevens - Volume II + Persistent ID390449BD35F78218 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Hot%20Fives%20And%20Hot%20Sevens%20-%20Volume%20II/09%20Willie%20The%20Weeper.m4a + File Folder Count4 + Library Folder Count1 + + 4752 + + Track ID4752 + NameWild Man Blues + ArtistLouis Armstrong Hot Seven + ComposerL. Armstrong/J. Morton + AlbumThe Hot Fives And Hot Sevens - Volume II + GenreJazz + KindAAC audio file + Size4910557 + Total Time197906 + Disc Number1 + Disc Count1 + Track Number10 + Track Count16 + Year1927 + Date Modified2008-11-04T13:27:12Z + Date Added2009-10-03T14:57:27Z + Bit Rate256 + Sample Rate44100 + Normalization765 + Compilation + Artwork Count1 + Sort AlbumHot Fives And Hot Sevens - Volume II + Persistent ID858B55458304127F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Hot%20Fives%20And%20Hot%20Sevens%20-%20Volume%20II/10%20Wild%20Man%20Blues.m4a + File Folder Count4 + Library Folder Count1 + + 4754 + + Track ID4754 + NameAlligator Crawl + ArtistLouis Armstrong Hot Seven + ComposerF. Waller/A. Razaf/J. Davis + AlbumThe Hot Fives And Hot Sevens - Volume II + GenreJazz + KindAAC audio file + Size4656070 + Total Time188626 + Disc Number1 + Disc Count1 + Track Number11 + Track Count16 + Year1927 + Date Modified2008-11-04T13:27:12Z + Date Added2009-10-03T14:57:27Z + Bit Rate256 + Sample Rate44100 + Normalization762 + Compilation + Artwork Count1 + Sort AlbumHot Fives And Hot Sevens - Volume II + Persistent IDB77E082FC76F31B9 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Hot%20Fives%20And%20Hot%20Sevens%20-%20Volume%20II/11%20Alligator%20Crawl.m4a + File Folder Count4 + Library Folder Count1 + + 4756 + + Track ID4756 + NamePotato Head Blues + ArtistLouis Armstrong & His Hot Seven + ComposerLouis Armstrong + AlbumThe Hot Fives And Hot Sevens - Volume II + GenreJazz + KindAAC audio file + Size4492474 + Total Time181666 + Disc Number1 + Disc Count1 + Track Number12 + Track Count16 + Year1927 + Date Modified2008-11-04T13:27:11Z + Date Added2009-10-03T14:57:27Z + Bit Rate256 + Sample Rate44100 + Normalization1287 + Compilation + Artwork Count1 + Sort AlbumHot Fives And Hot Sevens - Volume II + Persistent IDDAB7B6F8584F7446 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Hot%20Fives%20And%20Hot%20Sevens%20-%20Volume%20II/12%20Potato%20Head%20Blues.m4a + File Folder Count4 + Library Folder Count1 + + 4758 + + Track ID4758 + NameMelancholy + ArtistLouis Armstrong & His Hot Seven + ComposerM. Bloom/W. Melrose + AlbumThe Hot Fives And Hot Sevens - Volume II + GenreJazz + KindAAC audio file + Size4656906 + Total Time188040 + Disc Number1 + Disc Count1 + Track Number13 + Track Count16 + Year1927 + Date Modified2008-11-04T13:27:11Z + Date Added2009-10-03T14:57:27Z + Bit Rate256 + Sample Rate44100 + Normalization1038 + Compilation + Artwork Count1 + Sort AlbumHot Fives And Hot Sevens - Volume II + Persistent ID4C3478F9A60BA992 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Hot%20Fives%20And%20Hot%20Sevens%20-%20Volume%20II/13%20Melancholy.m4a + File Folder Count4 + Library Folder Count1 + + 4760 + + Track ID4760 + NameWeary Blues + ArtistLouis Armstrong Hot Seven + ComposerA. Matthews + AlbumThe Hot Fives And Hot Sevens - Volume II + GenreJazz + KindAAC audio file + Size4650826 + Total Time186093 + Disc Number1 + Disc Count1 + Track Number14 + Track Count16 + Year1927 + Date Modified2008-11-04T13:27:11Z + Date Added2009-10-03T14:57:27Z + Bit Rate256 + Sample Rate44100 + Normalization1033 + Compilation + Artwork Count1 + Sort AlbumHot Fives And Hot Sevens - Volume II + Persistent ID51BD9690FF21CA57 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Hot%20Fives%20And%20Hot%20Sevens%20-%20Volume%20II/14%20Weary%20Blues.m4a + File Folder Count4 + Library Folder Count1 + + 4762 + + Track ID4762 + NameTwelfth Street Rag + ArtistLouis Armstrong Hot Seven + ComposerE. Bowman + AlbumThe Hot Fives And Hot Sevens - Volume II + GenreJazz + KindAAC audio file + Size4717862 + Total Time190400 + Disc Number1 + Disc Count1 + Track Number15 + Track Count16 + Year1927 + Date Modified2008-11-04T13:27:11Z + Date Added2009-10-03T14:57:27Z + Bit Rate256 + Sample Rate44100 + Normalization940 + Compilation + Artwork Count1 + Sort AlbumHot Fives And Hot Sevens - Volume II + Persistent IDD83B8168AE8EA787 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Hot%20Fives%20And%20Hot%20Sevens%20-%20Volume%20II/15%20Twelfth%20Street%20Rag.m4a + File Folder Count4 + Library Folder Count1 + + 4764 + + Track ID4764 + NameKeyhole Blues + ArtistLouis Armstrong Hot Seven + ComposerN. Wilson + AlbumThe Hot Fives And Hot Sevens - Volume II + GenreJazz + KindAAC audio file + Size5317366 + Total Time211200 + Disc Number1 + Disc Count1 + Track Number16 + Track Count16 + Year1927 + Date Modified2008-11-04T13:27:10Z + Date Added2009-10-03T14:57:27Z + Bit Rate256 + Sample Rate44100 + Normalization1223 + Compilation + Artwork Count1 + Sort AlbumHot Fives And Hot Sevens - Volume II + Persistent ID45ADCD2D3BCECD6C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Hot%20Fives%20And%20Hot%20Sevens%20-%20Volume%20II/16%20Keyhole%20Blues.m4a + File Folder Count4 + Library Folder Count1 + + 4766 + + Track ID4766 + NameSri Venkatesa Suprabhatham (1963) + ArtistM.S. Subbulakshmi + AlbumSuprabhathams + GenreWorld + KindAAC audio file + Size29865324 + Total Time1234649 + Track Number1 + Track Count4 + Year1990 + Date Modified2006-07-30T01:38:26Z + Date Added2009-10-03T14:57:27Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3393129072 + Play Date UTC2011-07-10T02:21:12Z + Normalization1813 + Compilation + Artwork Count1 + Persistent ID229022902EB1C991 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Suprabhathams/01%20Sri%20Venkatesa%20Suprabhatham%20(1963).m4a + File Folder Count4 + Library Folder Count1 + + 4768 + + Track ID4768 + NameSri Kamakshi Suprabhatham (1974) + ArtistM.S. Subbulakshmi + AlbumSuprabhathams + GenreWorld + KindAAC audio file + Size18134521 + Total Time748354 + Track Number2 + Track Count4 + Year1990 + Date Modified2006-07-30T01:38:26Z + Date Added2009-10-03T14:57:28Z + Bit Rate192 + Sample Rate44100 + Normalization1234 + Compilation + Artwork Count1 + Persistent ID2CF2874225F6E097 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Suprabhathams/02%20Sri%20Kamakshi%20Suprabhatham%20(1974).m4a + File Folder Count4 + Library Folder Count1 + + 4770 + + Track ID4770 + NameKashi Viswanatha Suprabhatham (1977) + ArtistM.S. Subbulakshmi + AlbumSuprabhathams + GenreWorld + KindAAC audio file + Size16077546 + Total Time663346 + Track Number3 + Track Count4 + Year1990 + Date Modified2006-07-30T01:38:28Z + Date Added2009-10-03T14:57:28Z + Bit Rate192 + Sample Rate44100 + Normalization1266 + Compilation + Artwork Count1 + Persistent IDE1C38442A5B99293 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Suprabhathams/03%20Kashi%20Viswanatha%20Suprabhatham%20(1977).m4a + File Folder Count4 + Library Folder Count1 + + 4772 + + Track ID4772 + NameRameswaram Ramanatha Suprabhatham (1977) + ArtistM.S. Subbulakshmi + AlbumSuprabhathams + GenreWorld + KindAAC audio file + Size24232046 + Total Time1003147 + Track Number4 + Track Count4 + Year1990 + Date Modified2006-07-30T01:38:28Z + Date Added2009-10-03T14:57:28Z + Bit Rate192 + Sample Rate44100 + Normalization1213 + Compilation + Artwork Count1 + Persistent ID0C8DBFCD686AE706 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Suprabhathams/04%20Rameswaram%20Ramanatha%20Suprabhatham%20(1977).m4a + File Folder Count4 + Library Folder Count1 + + 4774 + + Track ID4774 + NameStrauss (R): Also Sprach Zarathustra, Op. 30 - 01. Einleitung + ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra + ComposerRichard Strauss (1864-1949) + AlbumStrauss (R): Also Sprach Zarathustra, Don Juan + GenreClassical + KindAAC audio file + Size2511475 + Total Time104116 + Disc Number1 + Disc Count1 + Track Number1 + Track Count10 + Year1984 + Date Modified2006-08-07T08:17:38Z + Date Added2009-10-03T14:57:28Z + Bit Rate192 + Sample Rate44100 + Skip Count1 + Skip Date2014-05-30T05:48:40Z + Normalization3106 + Compilation + Artwork Count1 + Persistent ID5FC8CC823C4A4811 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Strauss%20(R)_%20Also%20Sprach%20Zarathustra,%20Don%20Juan/01%20Strauss%20(R)_%20Also%20Sprach%20Zarathustra,%20Op.%2030%20-%2001.%20Einleitung.m4a + File Folder Count4 + Library Folder Count1 + + 4776 + + Track ID4776 + NameStrauss (R): Also Sprach Zarathustra, Op. 30 - 02. Von Den Hinterweltlern + ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra + ComposerRichard Strauss (1864-1949) + AlbumStrauss (R): Also Sprach Zarathustra, Don Juan + GenreClassical + KindAAC audio file + Size5040652 + Total Time207027 + Disc Number1 + Disc Count1 + Track Number2 + Track Count10 + Year1984 + Date Modified2006-08-07T08:17:38Z + Date Added2009-10-03T14:57:28Z + Bit Rate192 + Sample Rate44100 + Normalization202 + Compilation + Artwork Count1 + Persistent ID460D592998F53238 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Strauss%20(R)_%20Also%20Sprach%20Zarathustra,%20Don%20Juan/02%20Strauss%20(R)_%20Also%20Sprach%20Zarathustra,%20Op.%2030%20-%2002.%20Von%20Den%20Hinterweltlern.m4a + File Folder Count4 + Library Folder Count1 + + 4778 + + Track ID4778 + NameStrauss (R): Also Sprach Zarathustra, Op. 30 - 03. Von Der Großen Sehnsucht + ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra + ComposerRichard Strauss (1864-1949) + AlbumStrauss (R): Also Sprach Zarathustra, Don Juan + GenreClassical + KindAAC audio file + Size3048712 + Total Time124736 + Disc Number1 + Disc Count1 + Track Number3 + Track Count10 + Year1984 + Date Modified2006-08-07T08:17:38Z + Date Added2009-10-03T14:57:28Z + Bit Rate192 + Sample Rate44100 + Normalization1232 + Compilation + Artwork Count1 + Persistent IDA6B8CF54C65F5942 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Strauss%20(R)_%20Also%20Sprach%20Zarathustra,%20Don%20Juan/03%20Strauss%20(R)_%20Also%20Sprach%20Zarathustra,%20Op.%2030%20-%2003.%20Von%20Der%20Gro%C3%9Fen%20Sehnsucht.m4a + File Folder Count4 + Library Folder Count1 + + 4780 + + Track ID4780 + NameStrauss (R): Also Sprach Zarathustra, Op. 30 - 04. Von Den Freuden Und Leidenschaften + ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra + ComposerRichard Strauss (1864-1949) + AlbumStrauss (R): Also Sprach Zarathustra, Don Juan + GenreClassical + KindAAC audio file + Size3441500 + Total Time141082 + Disc Number1 + Disc Count1 + Track Number4 + Track Count10 + Year1984 + Date Modified2006-08-07T08:17:38Z + Date Added2009-10-03T14:57:28Z + Bit Rate192 + Sample Rate44100 + Normalization1429 + Compilation + Artwork Count1 + Persistent IDCC5A3D6182BE8A65 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Strauss%20(R)_%20Also%20Sprach%20Zarathustra,%20Don%20Juan/04%20Strauss%20(R)_%20Also%20Sprach%20Zarathustra,%20Op.%2030%20-%2004.%20Von%20Den%20Freuden%20Und%20Leidenschaften.m4a + File Folder Count4 + Library Folder Count1 + + 4782 + + Track ID4782 + NameStrauss (R): Also Sprach Zarathustra, Op. 30 - 05. Das Grablied + ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra + ComposerRichard Strauss (1864-1949) + AlbumStrauss (R): Also Sprach Zarathustra, Don Juan + GenreClassical + KindAAC audio file + Size4083171 + Total Time167809 + Disc Number1 + Disc Count1 + Track Number5 + Track Count10 + Year1984 + Date Modified2006-08-07T08:17:38Z + Date Added2009-10-03T14:57:29Z + Bit Rate192 + Sample Rate44100 + Normalization92 + Compilation + Artwork Count1 + Persistent IDD01FB93DC428765F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Strauss%20(R)_%20Also%20Sprach%20Zarathustra,%20Don%20Juan/05%20Strauss%20(R)_%20Also%20Sprach%20Zarathustra,%20Op.%2030%20-%2005.%20Das%20Grablied.m4a + File Folder Count4 + Library Folder Count1 + + 4784 + + Track ID4784 + NameStrauss (R): Also Sprach Zarathustra, Op. 30 - 06. Von Der Wissenschaft + ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra + ComposerRichard Strauss (1864-1949) + AlbumStrauss (R): Also Sprach Zarathustra, Don Juan + GenreClassical + KindAAC audio file + Size6665525 + Total Time274620 + Disc Number1 + Disc Count1 + Track Number6 + Track Count10 + Year1984 + Date Modified2006-08-07T08:17:38Z + Date Added2009-10-03T14:57:29Z + Bit Rate192 + Sample Rate44100 + Normalization1024 + Compilation + Artwork Count1 + Persistent IDC62566DCAA142D12 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Strauss%20(R)_%20Also%20Sprach%20Zarathustra,%20Don%20Juan/06%20Strauss%20(R)_%20Also%20Sprach%20Zarathustra,%20Op.%2030%20-%2006.%20Von%20Der%20Wissenschaft.m4a + File Folder Count4 + Library Folder Count1 + + 4786 + + Track ID4786 + NameStrauss (R): Also Sprach Zarathustra, Op. 30 - 07. Der Genesende + ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra + ComposerRichard Strauss (1864-1949) + AlbumStrauss (R): Also Sprach Zarathustra, Don Juan + GenreClassical + KindAAC audio file + Size7983422 + Total Time329048 + Disc Number1 + Disc Count1 + Track Number7 + Track Count10 + Year1984 + Date Modified2006-08-07T08:17:40Z + Date Added2009-10-03T14:57:29Z + Bit Rate192 + Sample Rate44100 + Normalization1253 + Compilation + Artwork Count1 + Persistent ID4868AB8F203D69E4 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Strauss%20(R)_%20Also%20Sprach%20Zarathustra,%20Don%20Juan/07%20Strauss%20(R)_%20Also%20Sprach%20Zarathustra,%20Op.%2030%20-%2007.%20Der%20Genesende.m4a + File Folder Count4 + Library Folder Count1 + + 4788 + + Track ID4788 + NameStrauss (R): Also Sprach Zarathustra, Op. 30 - 08. Das Tanzlied + ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra + ComposerRichard Strauss (1864-1949) + AlbumStrauss (R): Also Sprach Zarathustra, Don Juan + GenreClassical + KindAAC audio file + Size12239883 + Total Time504939 + Disc Number1 + Disc Count1 + Track Number8 + Track Count10 + Year1984 + Date Modified2006-08-07T08:17:40Z + Date Added2009-10-03T14:57:29Z + Bit Rate192 + Sample Rate44100 + Normalization1222 + Compilation + Artwork Count1 + Persistent IDB6A4B91C7D09A844 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Strauss%20(R)_%20Also%20Sprach%20Zarathustra,%20Don%20Juan/08%20Strauss%20(R)_%20Also%20Sprach%20Zarathustra,%20Op.%2030%20-%2008.%20Das%20Tanzlied.m4a + File Folder Count4 + Library Folder Count1 + + 4790 + + Track ID4790 + NameStrauss (R): Also Sprach Zarathustra, Op. 30 - 09. Nachtwandlerlied + ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra + ComposerRichard Strauss (1864-1949) + AlbumStrauss (R): Also Sprach Zarathustra, Don Juan + GenreClassical + KindAAC audio file + Size7264005 + Total Time304830 + Disc Number1 + Disc Count1 + Track Number9 + Track Count10 + Year1984 + Date Modified2006-08-07T08:17:40Z + Date Added2009-10-03T14:57:29Z + Bit Rate192 + Sample Rate44100 + Normalization1215 + Compilation + Artwork Count1 + Persistent IDA2F8B3DB513F3BE6 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Strauss%20(R)_%20Also%20Sprach%20Zarathustra,%20Don%20Juan/09%20Strauss%20(R)_%20Also%20Sprach%20Zarathustra,%20Op.%2030%20-%2009.%20Nachtwandlerlied.m4a + File Folder Count4 + Library Folder Count1 + + 4792 + + Track ID4792 + NameStrauss (R): Don Juan, Op. 20 + ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra + ComposerRichard Strauss (1864-1949) + AlbumStrauss (R): Also Sprach Zarathustra, Don Juan + GenreClassical + KindAAC audio file + Size26499170 + Total Time1095214 + Disc Number1 + Disc Count1 + Track Number10 + Track Count10 + Year1984 + Date Modified2006-08-07T08:17:42Z + Date Added2009-10-03T14:57:29Z + Bit Rate192 + Sample Rate44100 + Normalization1377 + Compilation + Artwork Count1 + Persistent IDBBB3F4D54F6B9977 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Strauss%20(R)_%20Also%20Sprach%20Zarathustra,%20Don%20Juan/10%20Strauss%20(R)_%20Don%20Juan,%20Op.%2020.m4a + File Folder Count4 + Library Folder Count1 + + 4794 + + Track ID4794 + NameJ.S. Bach: Cantata #167, BWV 167, Sei Lob Und Preis Mit Ehren + ArtistYo-Yo Ma + ComposerJohann Sebastian Bach + AlbumSimply Baroque + GenreClassical + KindAAC audio file + Size3357636 + Total Time137600 + Disc Number1 + Disc Count1 + Track Number1 + Track Count16 + Year1999 + Date Modified2006-08-13T06:36:40Z + Date Added2009-10-03T14:57:29Z + Bit Rate192 + Sample Rate44100 + Normalization270 + Compilation + Artwork Count1 + Persistent ID5D9BB7859237E1A5 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Simply%20Baroque/01%20J.S.%20Bach_%20Cantata%20%23167,%20BWV%20167,%20Sei%20Lob%20Und%20Preis%20Mit%20Ehren.m4a + File Folder Count4 + Library Folder Count1 + + 4796 + + Track ID4796 + NameJ.S. Bach: St. Matthew Passion, BWV 244 - Erbarme Dich + ArtistYo-Yo Ma + ComposerJohann Sebastian Bach + AlbumSimply Baroque + GenreClassical + KindAAC audio file + Size10671172 + Total Time440156 + Disc Number1 + Disc Count1 + Track Number2 + Track Count16 + Year1999 + Date Modified2006-08-13T06:36:40Z + Date Added2009-10-03T14:57:30Z + Bit Rate192 + Sample Rate44100 + Normalization310 + Compilation + Artwork Count1 + Persistent ID768CF4E63E7A8728 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Simply%20Baroque/02%20J.S.%20Bach_%20St.%20Matthew%20Passion,%20BWV%20244%20-%20Erbarme%20Dich.m4a + File Folder Count4 + Library Folder Count1 + + 4798 + + Track ID4798 + NameJ.S. Bach: Cantata #147, BWV 147, Jesu, Joy Of Man's Desiring + ArtistYo-Yo Ma + ComposerJohann Sebastian Bach + AlbumSimply Baroque + GenreClassical + KindAAC audio file + Size4000654 + Total Time164372 + Disc Number1 + Disc Count1 + Track Number3 + Track Count16 + Year1999 + Date Modified2006-08-13T06:36:34Z + Date Added2009-10-03T14:57:30Z + Bit Rate192 + Sample Rate44100 + Normalization206 + Compilation + Artwork Count1 + Persistent ID3D6772CDA61F24A9 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Simply%20Baroque/03%20J.S.%20Bach_%20Cantata%20%23147,%20BWV%20147,%20Jesu,%20Joy%20Of%20Man's%20Desiring.m4a + File Folder Count4 + Library Folder Count1 + + 4800 + + Track ID4800 + NameJ.S. Bach: Cantata #22, BWV 22, Ertot' Uns Durch Dein' Gute + ArtistYo-Yo Ma, Ton Koopman; Amsterdam Baroque Orchestra + ComposerJohann Sebastian Bach + AlbumSimply Baroque + GenreClassical + KindAAC audio file + Size2223110 + Total Time90393 + Disc Number1 + Disc Count1 + Track Number4 + Track Count16 + Year1999 + Date Modified2006-08-13T06:36:32Z + Date Added2009-10-03T14:57:30Z + Bit Rate192 + Sample Rate44100 + Normalization270 + Compilation + Artwork Count1 + Persistent ID7375415E6CF57CCF + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Simply%20Baroque/04%20J.S.%20Bach_%20Cantata%20%2322,%20BWV%2022,%20Ertot'%20Uns%20Durch%20Dein'%20Gute.m4a + File Folder Count4 + Library Folder Count1 + + 4802 + + Track ID4802 + NameJ.S. Bach: Chorale Prelude, BWV 639, Ich Ruf' Zu Dir, Herr Jesu Christ + ArtistYo-Yo Ma, Ton Koopman; Amsterdam Baroque Orchestra + ComposerJohann Sebastian Bach + AlbumSimply Baroque + GenreClassical + KindAAC audio file + Size3628227 + Total Time148884 + Disc Number1 + Disc Count1 + Track Number5 + Track Count16 + Year1999 + Date Modified2006-08-13T06:36:32Z + Date Added2009-10-03T14:57:30Z + Bit Rate192 + Sample Rate44100 + Normalization64 + Compilation + Artwork Count1 + Persistent IDDC97A057B2B03C1F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Simply%20Baroque/05%20J.S.%20Bach_%20Chorale%20Prelude,%20BWV%20639,%20Ich%20Ruf'%20Zu%20Dir,%20Herr%20Jesu%20Christ.m4a + File Folder Count4 + Library Folder Count1 + + 4804 + + Track ID4804 + NameJ.S. Bach: Chorale Prelude, BWV 650, Kommst Du Nun, Jesu, Vom Himmel Herunter + ArtistYo-Yo Ma, Ton Koopman; Amsterdam Baroque Orchestra + ComposerJohann Sebastian Bach + AlbumSimply Baroque + GenreClassical + KindAAC audio file + Size4562964 + Total Time187174 + Disc Number1 + Disc Count1 + Track Number6 + Track Count16 + Year1999 + Date Modified2006-08-13T06:36:30Z + Date Added2009-10-03T14:57:30Z + Bit Rate192 + Sample Rate44100 + Normalization94 + Compilation + Artwork Count1 + Persistent ID7D0EEBB54B8E1D3B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Simply%20Baroque/06%20J.S.%20Bach_%20Chorale%20Prelude,%20BWV%20650,%20Kommst%20Du%20Nun,%20Jesu,%20Vom%20Himmel%20Herunter.m4a + File Folder Count4 + Library Folder Count1 + + 4806 + + Track ID4806 + NameJ.S. Bach: - Cantata #163, BWV 163, Lab Mein Herz Die Munze Sein + ArtistYo-Yo Ma, Ton Koopman; Amsterdam Baroque Orchestra + ComposerJohann Sebastian Bach + AlbumSimply Baroque + GenreClassical + KindAAC audio file + Size4388180 + Total Time180510 + Disc Number1 + Disc Count1 + Track Number7 + Track Count16 + Year1999 + Date Modified2006-08-13T06:36:28Z + Date Added2009-10-03T14:57:30Z + Bit Rate192 + Sample Rate44100 + Normalization141 + Compilation + Artwork Count1 + Persistent ID2DB757590494DA67 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Simply%20Baroque/07%20J.S.%20Bach_%20-%20Cantata%20%23163,%20BWV%20163,%20Lab%20Mein%20Herz%20Die%20Munze%20Sein.m4a + File Folder Count4 + Library Folder Count1 + + 4808 + + Track ID4808 + NameJ.S. Bach: Cantata #136, BWV 136, Dein Blut, Der Edle Saft + ArtistYo-Yo Ma, Ton Koopman; Amsterdam Baroque Orchestra + ComposerJohann Sebastian Bach + AlbumSimply Baroque + GenreClassical + KindAAC audio file + Size1287530 + Total Time51407 + Disc Number1 + Disc Count1 + Track Number8 + Track Count16 + Year1999 + Date Modified2006-08-13T06:36:26Z + Date Added2009-10-03T14:57:30Z + Bit Rate192 + Sample Rate44100 + Normalization78 + Compilation + Artwork Count1 + Persistent ID3AE7B05ACF99C43C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Simply%20Baroque/08%20J.S.%20Bach_%20Cantata%20%23136,%20BWV%20136,%20Dein%20Blut,%20Der%20Edle%20Saft.m4a + File Folder Count4 + Library Folder Count1 + + 4810 + + Track ID4810 + NameJ.S. Bach: Suite 3 In D, BWV 1068, "Air On The G String" + ArtistYo-Yo Ma, Ton Koopman; Amsterdam Baroque Orchestra + ComposerJohann Sebastian Bach + AlbumSimply Baroque + GenreClassical + KindAAC audio file + Size7381800 + Total Time304203 + Disc Number1 + Disc Count1 + Track Number9 + Track Count16 + Year1999 + Date Modified2006-08-13T06:36:26Z + Date Added2009-10-03T14:57:31Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3427541392 + Play Date UTC2012-08-11T09:19:52Z + Normalization205 + Compilation + Artwork Count1 + Persistent IDF31D821382B23AF0 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Simply%20Baroque/09%20J.S.%20Bach_%20Suite%203%20In%20D,%20BWV%201068,%20_Air%20On%20The%20G%20String_.m4a + File Folder Count4 + Library Folder Count1 + + 4812 + + Track ID4812 + NameBoccherini - Cello Concerto In G, G480 - 1. Allegro + ArtistYo-Yo Ma, Ton Koopman; Amsterdam Baroque Orchestra + ComposerLuigi Boccherini + AlbumSimply Baroque + GenreClassical + KindAAC audio file + Size11095908 + Total Time457710 + Disc Number1 + Disc Count1 + Track Number10 + Track Count16 + Year1999 + Date Modified2006-08-13T06:36:22Z + Date Added2009-10-03T14:57:31Z + Bit Rate192 + Sample Rate44100 + Normalization793 + Compilation + Artwork Count1 + Persistent ID58F052E2E6B0EA93 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Simply%20Baroque/10%20Boccherini%20-%20Cello%20Concerto%20In%20G,%20G480%20-%201.%20Allegro.m4a + File Folder Count4 + Library Folder Count1 + + 4814 + + Track ID4814 + NameBoccherini - Cello Concerto In G, G480 - 2. Adagio + ArtistYo-Yo Ma, Ton Koopman; Amsterdam Baroque Orchestra + ComposerLuigi Boccherini + AlbumSimply Baroque + GenreClassical + KindAAC audio file + Size7082623 + Total Time291850 + Disc Number1 + Disc Count1 + Track Number11 + Track Count16 + Year1999 + Date Modified2006-08-13T06:36:18Z + Date Added2009-10-03T14:57:31Z + Bit Rate192 + Sample Rate44100 + Normalization301 + Compilation + Artwork Count1 + Persistent ID7C4E027664CDA155 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Simply%20Baroque/11%20Boccherini%20-%20Cello%20Concerto%20In%20G,%20G480%20-%202.%20Adagio.m4a + File Folder Count4 + Library Folder Count1 + + 4816 + + Track ID4816 + NameBoccherini - Cello Concerto In G, G480 - 3. Allegro + ArtistYo-Yo Ma, Ton Koopman; Amsterdam Baroque Orchestra + ComposerLuigi Boccherini + AlbumSimply Baroque + GenreClassical + KindAAC audio file + Size7387432 + Total Time304435 + Disc Number1 + Disc Count1 + Track Number12 + Track Count16 + Year1999 + Date Modified2006-08-13T06:36:14Z + Date Added2009-10-03T14:57:31Z + Bit Rate192 + Sample Rate44100 + Normalization256 + Compilation + Artwork Count1 + Persistent IDD5B5991CA9EA5B30 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Simply%20Baroque/12%20Boccherini%20-%20Cello%20Concerto%20In%20G,%20G480%20-%203.%20Allegro.m4a + File Folder Count4 + Library Folder Count1 + + 4818 + + Track ID4818 + NameBoccherini - Cello Concerto In D, G478 - 1. Allegro Con Spirito + ArtistYo-Yo Ma, Ton Koopman; Amsterdam Baroque Orchestra + ComposerLuigi Boccherini + AlbumSimply Baroque + GenreClassical + KindAAC audio file + Size10546652 + Total Time434977 + Disc Number1 + Disc Count1 + Track Number13 + Track Count16 + Year1999 + Date Modified2006-08-13T06:36:10Z + Date Added2009-10-03T14:57:31Z + Bit Rate192 + Sample Rate44100 + Normalization929 + Compilation + Artwork Count1 + Persistent IDB9F1FB25E2DD466D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Simply%20Baroque/13%20Boccherini%20-%20Cello%20Concerto%20In%20D,%20G478%20-%201.%20Allegro%20Con%20Spirito.m4a + File Folder Count4 + Library Folder Count1 + + 4820 + + Track ID4820 + NameBoccherini - Cello Concerto In D, G478 - 2. Larghetto + ArtistYo-Yo Ma, Ton Koopman; Amsterdam Baroque Orchestra + ComposerLuigi Boccherini + AlbumSimply Baroque + GenreClassical + KindAAC audio file + Size8412741 + Total Time346811 + Disc Number1 + Disc Count1 + Track Number14 + Track Count16 + Year1999 + Date Modified2006-08-13T06:36:06Z + Date Added2009-10-03T14:57:31Z + Bit Rate192 + Sample Rate44100 + Normalization351 + Compilation + Artwork Count1 + Persistent ID2128E45685C6EACF + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Simply%20Baroque/14%20Boccherini%20-%20Cello%20Concerto%20In%20D,%20G478%20-%202.%20Larghetto.m4a + File Folder Count4 + Library Folder Count1 + + 4822 + + Track ID4822 + NameBoccherini - Cello Concerto In D, G478 - 3. Rondo + ArtistYo-Yo Ma, Ton Koopman; Amsterdam Baroque Orchestra + ComposerLuigi Boccherini + AlbumSimply Baroque + GenreClassical + KindAAC audio file + Size6117731 + Total Time251888 + Disc Number1 + Disc Count1 + Track Number15 + Track Count16 + Year1999 + Date Modified2006-08-13T06:36:02Z + Date Added2009-10-03T14:57:31Z + Bit Rate192 + Sample Rate44100 + Normalization915 + Compilation + Artwork Count1 + Persistent ID559AEAB6B6D2BB52 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Simply%20Baroque/15%20Boccherini%20-%20Cello%20Concerto%20In%20D,%20G478%20-%203.%20Rondo.m4a + File Folder Count4 + Library Folder Count1 + + 4824 + + Track ID4824 + NameBoccherini - Cello Concerto In D, G478 - 4. Rondo Comodo Assai + ArtistYo-Yo Ma, Ton Koopman; Amsterdam Baroque Orchestra + ComposerLuigi Boccherini + AlbumSimply Baroque + GenreClassical + KindAAC audio file + Size8576259 + Total Time353568 + Disc Number1 + Disc Count1 + Track Number16 + Track Count16 + Year1999 + Date Modified2006-08-13T06:36:00Z + Date Added2009-10-03T14:57:31Z + Bit Rate192 + Sample Rate44100 + Normalization497 + Compilation + Artwork Count1 + Persistent ID2594B164DC666E77 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Simply%20Baroque/16%20Boccherini%20-%20Cello%20Concerto%20In%20D,%20G478%20-%204.%20Rondo%20Comodo%20Assai.m4a + File Folder Count4 + Library Folder Count1 + + 4826 + + Track ID4826 + NameDehka Ek Khawab + ArtistLata Mangeshkar & Kishore Kumar + ComposerShiv-Hari + AlbumSilsila/Kabhi Kabhi + GenreWorld + KindAAC audio file + Size7831569 + Total Time325066 + Disc Number1 + Disc Count1 + Track Number1 + Track Count17 + Date Modified2007-09-10T09:57:28Z + Date Added2009-10-03T14:57:32Z + Bit Rate192 + Sample Rate44100 + Normalization1332 + Compilation + Persistent ID4C77B612D2C92C12 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Silsila_Kabhi%20Kabhi/01%20Dehka%20Ek%20Khawab.m4a + File Folder Count4 + Library Folder Count1 + + 4828 + + Track ID4828 + NameDehka Ek Khawab + ArtistLata Mangeshkar & Kishore Kumar + ComposerShiv-Hari + AlbumSilsila/Kabhi Kabhi + GenreWorld + KindAAC audio file + Size7849107 + Total Time325077 + Disc Number1 + Disc Count1 + Track Number1 + Track Count17 + Date Modified2006-07-30T01:52:24Z + Date Added2009-10-03T14:57:32Z + Bit Rate192 + Sample Rate44100 + Normalization1331 + Compilation + Artwork Count1 + Persistent ID4E75F3F68D391143 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Silsila_Kabhi%20Kabhi/01%20Dehka%20Ek%20Khawab%201.m4a + File Folder Count4 + Library Folder Count1 + + 4830 + + Track ID4830 + NameYeh Kahan Aa Gaye Ham + ArtistLata Mangeshkar, Amitabh Bachchan + ComposerShiv-Hari + AlbumSilsila/Kabhi Kabhi + GenreWorld + KindAAC audio file + Size8944429 + Total Time369400 + Disc Number1 + Disc Count1 + Track Number2 + Track Count17 + Date Modified2007-09-10T09:58:16Z + Date Added2009-10-03T14:57:32Z + Bit Rate192 + Sample Rate44100 + Normalization1295 + Compilation + Persistent ID763FA4DF50C8DA5D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Silsila_Kabhi%20Kabhi/02%20Yeh%20Kahan%20Aa%20Gaye%20Ham.m4a + File Folder Count4 + Library Folder Count1 + + 4832 + + Track ID4832 + NameYeh Kahan Aa Gaye Ham + ArtistLata Mangeshkar, Amitabh Bachchan + ComposerShiv-Hari + AlbumSilsila/Kabhi Kabhi + GenreWorld + KindAAC audio file + Size8962015 + Total Time369404 + Disc Number1 + Disc Count1 + Track Number2 + Track Count17 + Date Modified2006-07-30T01:52:26Z + Date Added2009-10-03T14:57:32Z + Bit Rate192 + Sample Rate44100 + Normalization1296 + Compilation + Artwork Count1 + Persistent IDBEA93583E0576EB4 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Silsila_Kabhi%20Kabhi/02%20Yeh%20Kahan%20Aa%20Gaye%20Ham%201.m4a + File Folder Count4 + Library Folder Count1 + + 4834 + + Track ID4834 + NameSar Se Sarke + ArtistLata Mangeshkar & Kishore Kumar + ComposerShiv-Hari + AlbumSilsila/Kabhi Kabhi + GenreWorld + KindAAC audio file + Size8279151 + Total Time341906 + Disc Number1 + Disc Count1 + Track Number3 + Track Count17 + Date Modified2007-09-10T09:58:54Z + Date Added2009-10-03T14:57:32Z + Bit Rate192 + Sample Rate44100 + Normalization2512 + Compilation + Persistent IDF0A4A2D9ED9B070D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Silsila_Kabhi%20Kabhi/03%20Sar%20Se%20Sarke.m4a + File Folder Count4 + Library Folder Count1 + + 4836 + + Track ID4836 + NameSar Se Sarke + ArtistLata Mangeshkar & Kishore Kumar + ComposerShiv-Hari + AlbumSilsila/Kabhi Kabhi + GenreWorld + KindAAC audio file + Size8296748 + Total Time341912 + Disc Number1 + Disc Count1 + Track Number3 + Track Count17 + Date Modified2006-07-30T01:52:26Z + Date Added2009-10-03T14:57:32Z + Bit Rate192 + Sample Rate44100 + Normalization2510 + Compilation + Artwork Count1 + Persistent ID0BF37B4701661DB4 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Silsila_Kabhi%20Kabhi/03%20Sar%20Se%20Sarke%201.m4a + File Folder Count4 + Library Folder Count1 + + 4838 + + Track ID4838 + NameNeela Aasman So Gaya + ArtistLata Mangeshkar + ComposerShiv-Hari + AlbumSilsila/Kabhi Kabhi + GenreWorld + KindAAC audio file + Size7446015 + Total Time307466 + Disc Number1 + Disc Count1 + Track Number4 + Track Count17 + Date Modified2007-09-10T09:59:30Z + Date Added2009-10-03T14:57:33Z + Bit Rate192 + Sample Rate44100 + Normalization2524 + Compilation + Persistent IDE5422A1ED35A8220 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Silsila_Kabhi%20Kabhi/04%20Neela%20Aasman%20So%20Gaya.m4a + File Folder Count4 + Library Folder Count1 + + 4840 + + Track ID4840 + NameNeela Aasman So Gaya + ArtistLata Mangeshkar + ComposerShiv-Hari + AlbumSilsila/Kabhi Kabhi + GenreWorld + KindAAC audio file + Size7463424 + Total Time307477 + Disc Number1 + Disc Count1 + Track Number4 + Track Count17 + Date Modified2006-07-30T01:52:24Z + Date Added2009-10-03T14:57:33Z + Bit Rate192 + Sample Rate44100 + Normalization2521 + Compilation + Artwork Count1 + Persistent ID3D1480D8626B073D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Silsila_Kabhi%20Kabhi/04%20Neela%20Aasman%20So%20Gaya%201.m4a + File Folder Count4 + Library Folder Count1 + + 4842 + + Track ID4842 + NameLadki Hai Ya Shola + ArtistLata Mangeshkar & Kishore Kumar + ComposerShiv-Hari + AlbumSilsila/Kabhi Kabhi + GenreWorld + KindAAC audio file + Size5741124 + Total Time237226 + Disc Number1 + Disc Count1 + Track Number5 + Track Count17 + Date Modified2007-09-10T09:59:56Z + Date Added2009-10-03T14:57:33Z + Bit Rate192 + Sample Rate44100 + Normalization1956 + Compilation + Persistent IDEE662E1A7F6D5300 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Silsila_Kabhi%20Kabhi/05%20Ladki%20Hai%20Ya%20Shola.m4a + File Folder Count4 + Library Folder Count1 + + 4844 + + Track ID4844 + NameLadki Hai Ya Shola + ArtistLata Mangeshkar & Kishore Kumar + ComposerShiv-Hari + AlbumSilsila/Kabhi Kabhi + GenreWorld + KindAAC audio file + Size5763172 + Total Time237236 + Disc Number1 + Disc Count1 + Track Number5 + Track Count17 + Date Modified2006-07-30T01:52:26Z + Date Added2009-10-03T14:57:33Z + Bit Rate192 + Sample Rate44100 + Normalization1955 + Compilation + Artwork Count1 + Persistent ID6E8B71DC63E5B8FB + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Silsila_Kabhi%20Kabhi/05%20Ladki%20Hai%20Ya%20Shola%201.m4a + File Folder Count4 + Library Folder Count1 + + 4846 + + Track ID4846 + NameRang Barse + ArtistAmitabh Bachchan + ComposerShiv-Hari + AlbumSilsila/Kabhi Kabhi + GenreWorld + KindAAC audio file + Size8824129 + Total Time365173 + Disc Number1 + Disc Count1 + Track Number6 + Track Count17 + Date Modified2007-09-10T10:00:36Z + Date Added2009-10-03T14:57:33Z + Bit Rate192 + Sample Rate44100 + Normalization1509 + Compilation + Persistent ID77A085EE29111CFE + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Silsila_Kabhi%20Kabhi/06%20Rang%20Barse.m4a + File Folder Count4 + Library Folder Count1 + + 4848 + + Track ID4848 + NameRang Barse + ArtistAmitabh Bachchan + ComposerShiv-Hari + AlbumSilsila/Kabhi Kabhi + GenreWorld + KindAAC audio file + Size8841698 + Total Time365178 + Disc Number1 + Disc Count1 + Track Number6 + Track Count17 + Date Modified2006-07-30T01:52:24Z + Date Added2009-10-03T14:57:33Z + Bit Rate192 + Sample Rate44100 + Normalization1512 + Compilation + Artwork Count1 + Persistent ID5B2FADB4D4151CA1 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Silsila_Kabhi%20Kabhi/06%20Rang%20Barse%201.m4a + File Folder Count4 + Library Folder Count1 + + 4850 + + Track ID4850 + NameJo Tum Todo Piya + ArtistLata Mangeshkar + ComposerShiv-Hari + AlbumSilsila/Kabhi Kabhi + GenreWorld + KindAAC audio file + Size5011494 + Total Time206866 + Disc Number1 + Disc Count1 + Track Number7 + Track Count17 + Date Modified2007-09-10T10:01:00Z + Date Added2009-10-03T14:57:33Z + Bit Rate192 + Sample Rate44100 + Normalization1280 + Compilation + Persistent ID940A687BAD14E901 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Silsila_Kabhi%20Kabhi/07%20Jo%20Tum%20Todo%20Piya.m4a + File Folder Count4 + Library Folder Count1 + + 4852 + + Track ID4852 + NameJo Tum Todo Piya + ArtistLata Mangeshkar + ComposerShiv-Hari + AlbumSilsila/Kabhi Kabhi + GenreWorld + KindAAC audio file + Size5039255 + Total Time206888 + Disc Number1 + Disc Count1 + Track Number7 + Track Count17 + Date Modified2006-07-30T01:52:24Z + Date Added2009-10-03T14:57:33Z + Bit Rate192 + Sample Rate44100 + Normalization1280 + Compilation + Artwork Count1 + Persistent IDFC878E79B40045E6 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Silsila_Kabhi%20Kabhi/07%20Jo%20Tum%20Todo%20Piya%201.m4a + File Folder Count4 + Library Folder Count1 + + 4854 + + Track ID4854 + NameNeela Aasman So Gaya + ArtistAmitabh Bachchan + ComposerShiv-Hari + AlbumSilsila/Kabhi Kabhi + GenreWorld + KindAAC audio file + Size7307859 + Total Time301760 + Disc Number1 + Disc Count1 + Track Number8 + Track Count17 + Date Modified2007-09-10T10:01:32Z + Date Added2009-10-03T14:57:34Z + Bit Rate192 + Sample Rate44100 + Normalization696 + Compilation + Persistent ID35176A8AEFDFA348 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Silsila_Kabhi%20Kabhi/08%20Neela%20Aasman%20So%20Gaya.m4a + File Folder Count4 + Library Folder Count1 + + 4856 + + Track ID4856 + NameNeela Aasman So Gaya + ArtistAmitabh Bachchan + ComposerShiv-Hari + AlbumSilsila/Kabhi Kabhi + GenreWorld + KindAAC audio file + Size7325116 + Total Time301765 + Disc Number1 + Disc Count1 + Track Number8 + Track Count17 + Date Modified2006-07-30T01:52:24Z + Date Added2009-10-03T14:57:34Z + Bit Rate192 + Sample Rate44100 + Normalization695 + Compilation + Artwork Count1 + Persistent ID4F8676940EFB9EE1 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Silsila_Kabhi%20Kabhi/08%20Neela%20Aasman%20So%20Gaya%201.m4a + File Folder Count4 + Library Folder Count1 + + 4858 + + Track ID4858 + NameKabhi Kabhi Mere Dil Mein Khayal Aata Hai + ArtistAmitabh Bachchan + ComposerKhaiyyaam + AlbumSilsila/Kabhi Kabhi + GenreWorld + KindAAC audio file + Size1525026 + Total Time62800 + Disc Number1 + Disc Count1 + Track Number9 + Track Count17 + Date Modified2007-09-10T10:01:40Z + Date Added2009-10-03T14:57:34Z + Bit Rate192 + Sample Rate44100 + Normalization723 + Compilation + Persistent IDC86DE19AEB378626 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Silsila_Kabhi%20Kabhi/09%20Kabhi%20Kabhi%20Mere%20Dil%20Mein%20Khayal%20Aata%20Hai.m4a + File Folder Count4 + Library Folder Count1 + + 4860 + + Track ID4860 + NameKabhi Kabhi Mere Dil Mein Khayal Aata Hai + ArtistAmitabh Bachchan + ComposerKhaiyyaam + AlbumSilsila/Kabhi Kabhi + GenreWorld + KindAAC audio file + Size1561126 + Total Time62808 + Disc Number1 + Disc Count1 + Track Number9 + Track Count17 + Date Modified2006-07-30T01:52:24Z + Date Added2009-10-03T14:57:34Z + Bit Rate192 + Sample Rate44100 + Normalization723 + Compilation + Artwork Count1 + Persistent ID0BA917D0D6D2D770 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Silsila_Kabhi%20Kabhi/09%20Kabhi%20Kabhi%20Mere%20Dil%20Mein%20Khayal%20Aata%20Hai%201.m4a + File Folder Count4 + Library Folder Count1 + + 4862 + + Track ID4862 + NameKabhi Kabhi Mere Dil Mein Khayal Aata Hai + ArtistMukesh + ComposerKhaiyyaam + AlbumSilsila/Kabhi Kabhi + GenreWorld + KindAAC audio file + Size6932258 + Total Time286240 + Disc Number1 + Disc Count1 + Track Number10 + Track Count17 + Date Modified2007-09-10T10:02:12Z + Date Added2009-10-03T14:57:34Z + Bit Rate192 + Sample Rate44100 + Normalization1129 + Compilation + Persistent ID34CB00A15933446B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Silsila_Kabhi%20Kabhi/10%20Kabhi%20Kabhi%20Mere%20Dil%20Mein%20Khayal%20Aata%20Hai.m4a + File Folder Count4 + Library Folder Count1 + + 4864 + + Track ID4864 + NameKabhi Kabhi Mere Dil Mein Khayal Aata Hai + ArtistMukesh + ComposerKhaiyyaam + AlbumSilsila/Kabhi Kabhi + GenreWorld + KindAAC audio file + Size6949739 + Total Time286254 + Disc Number1 + Disc Count1 + Track Number10 + Track Count17 + Date Modified2006-07-30T01:52:26Z + Date Added2009-10-03T14:57:34Z + Bit Rate192 + Sample Rate44100 + Normalization1128 + Compilation + Artwork Count1 + Persistent ID9542E90F250FA368 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Silsila_Kabhi%20Kabhi/10%20Kabhi%20Kabhi%20Mere%20Dil%20Mein%20Khayal%20Aata%20Hai%201.m4a + File Folder Count4 + Library Folder Count1 + + 4866 + + Track ID4866 + NameSurkh Jode Ki Yeh Jagmagahat + ArtistLata Mangeshkar + ComposerKhaiyyaam + AlbumSilsila/Kabhi Kabhi + GenreWorld + KindAAC audio file + Size5479699 + Total Time226226 + Disc Number1 + Disc Count1 + Track Number11 + Track Count17 + Date Modified2007-09-10T10:02:38Z + Date Added2009-10-03T14:57:34Z + Bit Rate192 + Sample Rate44100 + Normalization1548 + Compilation + Persistent IDBBD6C318987FA1B8 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Silsila_Kabhi%20Kabhi/11%20Surkh%20Jode%20Ki%20Yeh%20Jagmagahat.m4a + File Folder Count4 + Library Folder Count1 + + 4868 + + Track ID4868 + NameSurkh Jode Ki Yeh Jagmagahat + ArtistLata Mangeshkar + ComposerKhaiyyaam + AlbumSilsila/Kabhi Kabhi + GenreWorld + KindAAC audio file + Size5503760 + Total Time226230 + Disc Number1 + Disc Count1 + Track Number11 + Track Count17 + Date Modified2006-07-30T01:52:24Z + Date Added2009-10-03T14:57:35Z + Bit Rate192 + Sample Rate44100 + Normalization1552 + Compilation + Artwork Count1 + Persistent ID55957AFBB1238C44 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Silsila_Kabhi%20Kabhi/11%20Surkh%20Jode%20Ki%20Yeh%20Jagmagahat%201.m4a + File Folder Count4 + Library Folder Count1 + + 4870 + + Track ID4870 + NameMain Pal Do Pal Ka Shair Hoon + ArtistMukesh + ComposerKhaiyyaam + AlbumSilsila/Kabhi Kabhi + GenreWorld + KindAAC audio file + Size4844949 + Total Time200000 + Disc Number1 + Disc Count1 + Track Number12 + Track Count17 + Date Modified2007-09-10T10:03:00Z + Date Added2009-10-03T14:57:35Z + Bit Rate192 + Sample Rate44100 + Normalization1310 + Compilation + Persistent ID49A16A5F17FD22BA + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Silsila_Kabhi%20Kabhi/12%20Main%20Pal%20Do%20Pal%20Ka%20Shair%20Hoon.m4a + File Folder Count4 + Library Folder Count1 + + 4872 + + Track ID4872 + NameMain Pal Do Pal Ka Shair Hoon + ArtistMukesh + ComposerKhaiyyaam + AlbumSilsila/Kabhi Kabhi + GenreWorld + KindAAC audio file + Size4873866 + Total Time200015 + Disc Number1 + Disc Count1 + Track Number12 + Track Count17 + Date Modified2006-07-30T01:52:26Z + Date Added2009-10-03T14:57:35Z + Bit Rate192 + Sample Rate44100 + Normalization1309 + Compilation + Artwork Count1 + Persistent IDA7F231C0150E37D7 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Silsila_Kabhi%20Kabhi/12%20Main%20Pal%20Do%20Pal%20Ka%20Shair%20Hoon%201.m4a + File Folder Count4 + Library Folder Count1 + + 4874 + + Track ID4874 + NameTere Chehere Se Nazar Nahin Hatati + ArtistLata Mangeshkar & Kishore Kumar + ComposerKhaiyyaam + AlbumSilsila/Kabhi Kabhi + GenreWorld + KindAAC audio file + Size7353729 + Total Time303666 + Disc Number1 + Disc Count1 + Track Number13 + Track Count17 + Date Modified2007-09-10T10:03:34Z + Date Added2009-10-03T14:57:35Z + Bit Rate192 + Sample Rate44100 + Normalization1801 + Compilation + Persistent IDA688F255B55EB019 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Silsila_Kabhi%20Kabhi/13%20Tere%20Chehere%20Se%20Nazar%20Nahin%20Hatati.m4a + File Folder Count4 + Library Folder Count1 + + 4876 + + Track ID4876 + NameTere Chehere Se Nazar Nahin Hatati + ArtistLata Mangeshkar & Kishore Kumar + ComposerKhaiyyaam + AlbumSilsila/Kabhi Kabhi + GenreWorld + KindAAC audio file + Size7371248 + Total Time303669 + Disc Number1 + Disc Count1 + Track Number13 + Track Count17 + Date Modified2006-07-30T01:52:26Z + Date Added2009-10-03T14:57:35Z + Bit Rate192 + Sample Rate44100 + Normalization1801 + Compilation + Artwork Count1 + Persistent ID6CB1B76AA46573EA + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Silsila_Kabhi%20Kabhi/13%20Tere%20Chehere%20Se%20Nazar%20Nahin%20Hatati%201.m4a + File Folder Count4 + Library Folder Count1 + + 4878 + + Track ID4878 + NamePyar Kar Liya To Kya + ArtistKishore Kumar + ComposerKhaiyyaam + AlbumSilsila/Kabhi Kabhi + GenreWorld + KindAAC audio file + Size5344900 + Total Time220640 + Disc Number1 + Disc Count1 + Track Number14 + Track Count17 + Date Modified2007-09-10T10:04:00Z + Date Added2009-10-03T14:57:35Z + Bit Rate192 + Sample Rate44100 + Normalization3515 + Compilation + Persistent IDC68E18137F272802 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Silsila_Kabhi%20Kabhi/14%20Pyar%20Kar%20Liya%20To%20Kya.m4a + File Folder Count4 + Library Folder Count1 + + 4880 + + Track ID4880 + NamePyar Kar Liya To Kya + ArtistKishore Kumar + ComposerKhaiyyaam + AlbumSilsila/Kabhi Kabhi + GenreWorld + KindAAC audio file + Size5369947 + Total Time220657 + Disc Number1 + Disc Count1 + Track Number14 + Track Count17 + Date Modified2006-07-30T01:52:24Z + Date Added2009-10-03T14:57:35Z + Bit Rate192 + Sample Rate44100 + Normalization3510 + Compilation + Artwork Count1 + Persistent IDE806E8B04EF4EEFF + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Silsila_Kabhi%20Kabhi/14%20Pyar%20Kar%20Liya%20To%20Kya%201.m4a + File Folder Count4 + Library Folder Count1 + + 4882 + + Track ID4882 + NameMere Ghar Ayee Nanhi Pari + ArtistLata Mangeshkar + ComposerKhaiyyaam + AlbumSilsila/Kabhi Kabhi + GenreWorld + KindAAC audio file + Size4777359 + Total Time197200 + Disc Number1 + Disc Count1 + Track Number15 + Track Count17 + Date Modified2007-09-10T10:04:22Z + Date Added2009-10-03T14:57:35Z + Bit Rate192 + Sample Rate44100 + Normalization1666 + Compilation + Persistent ID251135AC503E1881 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Silsila_Kabhi%20Kabhi/15%20Mere%20Ghar%20Ayee%20Nanhi%20Pari.m4a + File Folder Count4 + Library Folder Count1 + + 4884 + + Track ID4884 + NameMere Ghar Ayee Nanhi Pari + ArtistLata Mangeshkar + ComposerKhaiyyaam + AlbumSilsila/Kabhi Kabhi + GenreWorld + KindAAC audio file + Size4806711 + Total Time197205 + Disc Number1 + Disc Count1 + Track Number15 + Track Count17 + Date Modified2006-07-30T01:52:24Z + Date Added2009-10-03T14:57:35Z + Bit Rate192 + Sample Rate44100 + Normalization1667 + Compilation + Artwork Count1 + Persistent ID957714B914DD5FD8 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Silsila_Kabhi%20Kabhi/15%20Mere%20Ghar%20Ayee%20Nanhi%20Pari%201.m4a + File Folder Count4 + Library Folder Count1 + + 4886 + + Track ID4886 + NameMain Har Ek Pal Ka Shair Hoon + ArtistMukesh + ComposerKhaiyyaam + AlbumSilsila/Kabhi Kabhi + GenreWorld + KindAAC audio file + Size4488670 + Total Time185266 + Disc Number1 + Disc Count1 + Track Number16 + Track Count17 + Date Modified2007-09-10T10:04:44Z + Date Added2009-10-03T14:57:36Z + Bit Rate192 + Sample Rate44100 + Normalization1438 + Compilation + Persistent ID720E6E767325FE1F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Silsila_Kabhi%20Kabhi/16%20Main%20Har%20Ek%20Pal%20Ka%20Shair%20Hoon.m4a + File Folder Count4 + Library Folder Count1 + + 4888 + + Track ID4888 + NameMain Har Ek Pal Ka Shair Hoon + ArtistMukesh + ComposerKhaiyyaam + AlbumSilsila/Kabhi Kabhi + GenreWorld + KindAAC audio file + Size4520104 + Total Time185270 + Disc Number1 + Disc Count1 + Track Number16 + Track Count17 + Date Modified2006-07-30T01:52:26Z + Date Added2009-10-03T14:57:36Z + Bit Rate192 + Sample Rate44100 + Normalization1438 + Compilation + Artwork Count1 + Persistent IDE7F02CD21101E11A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Silsila_Kabhi%20Kabhi/16%20Main%20Har%20Ek%20Pal%20Ka%20Shair%20Hoon%201.m4a + File Folder Count4 + Library Folder Count1 + + 4890 + + Track ID4890 + NameKabhi Kabhi Mere Dil Mein Khayal Aata + ArtistMukesh; Lata Mangeshkar + ComposerKhaiyyaam + AlbumSilsila/Kabhi Kabhi + GenreWorld + KindAAC audio file + Size7255379 + Total Time300666 + Disc Number1 + Disc Count1 + Track Number17 + Track Count17 + Date Modified2007-09-10T10:05:18Z + Date Added2009-10-03T14:57:36Z + Bit Rate192 + Sample Rate44100 + Normalization1665 + Compilation + Persistent IDF5F9821FBDC50FC0 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Silsila_Kabhi%20Kabhi/17%20Kabhi%20Kabhi%20Mere%20Dil%20Mein%20Khayal%20Aata.m4a + File Folder Count4 + Library Folder Count1 + + 4892 + + Track ID4892 + NameKabhi Kabhi Mere Dil Mein Khayal Aata + ArtistMukesh; Lata Mangeshkar + ComposerKhaiyyaam + AlbumSilsila/Kabhi Kabhi + GenreWorld + KindAAC audio file + Size7272886 + Total Time300673 + Disc Number1 + Disc Count1 + Track Number17 + Track Count17 + Date Modified2006-07-30T01:52:26Z + Date Added2009-10-03T14:57:36Z + Bit Rate192 + Sample Rate44100 + Normalization1663 + Compilation + Artwork Count1 + Persistent ID68B66ECFA250B5A9 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Silsila_Kabhi%20Kabhi/17%20Kabhi%20Kabhi%20Mere%20Dil%20Mein%20Khayal%20Aata%201.m4a + File Folder Count4 + Library Folder Count1 + + 4894 + + Track ID4894 + NameMohini (Enchantment) + ArtistYo-Yo Ma & The Silk Road Ensemble + ComposerSandeep Das And Indrajit Dey, Arr. Ljova + AlbumSilk Road Journeys: Beyond The Horizon + GenreWorld + KindAAC audio file + Size2675655 + Total Time107181 + Track Number1 + Track Count15 + Year2005 + Date Modified2006-07-28T03:57:54Z + Date Added2009-10-03T14:57:36Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3441650647 + Play Date UTC2013-01-21T16:34:07Z + Normalization1231 + Compilation + Artwork Count1 + Persistent IDD5EF0D3E25D455D1 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Silk%20Road%20Journeys_%20Beyond%20The%20Horizon/01%20Mohini%20(Enchantment).m4a + File Folder Count4 + Library Folder Count1 + + 4896 + + Track ID4896 + NameOasis + ArtistYo-Yo Ma & The Silk Road Ensemble + ComposerEnsemble Improvisation + AlbumSilk Road Journeys: Beyond The Horizon + GenreWorld + KindAAC audio file + Size4422941 + Total Time179790 + Track Number2 + Track Count15 + Year2005 + Date Modified2006-07-28T03:57:56Z + Date Added2009-10-03T14:57:36Z + Bit Rate192 + Sample Rate44100 + Play Count2 + Play Date3441650825 + Play Date UTC2013-01-21T16:37:05Z + Normalization658 + Compilation + Artwork Count1 + Persistent ID9FEA4BE3D0774E25 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Silk%20Road%20Journeys_%20Beyond%20The%20Horizon/02%20Oasis.m4a + File Folder Count4 + Library Folder Count1 + + 4898 + + Track ID4898 + NameDistant Green Valley + ArtistYo-Yo Ma & The Silk Road Ensemble + ComposerZhao Jiping And Zhao Lin + AlbumSilk Road Journeys: Beyond The Horizon + GenreWorld + KindAAC audio file + Size10361366 + Total Time425829 + Track Number3 + Track Count15 + Year2005 + Date Modified2006-07-28T03:57:56Z + Date Added2009-10-03T14:57:36Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3338131882 + Play Date UTC2009-10-11T13:21:22Z + Normalization1232 + Compilation + Artwork Count1 + Persistent ID0DA8B2AB6B18254E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Silk%20Road%20Journeys_%20Beyond%20The%20Horizon/03%20Distant%20Green%20Valley.m4a + File Folder Count4 + Library Folder Count1 + + 4900 + + Track ID4900 + NameAkhalqalaqi Dance + ArtistYo-Yo Ma & The Silk Road Ensemble + ComposerArmenian Traditional, Arr. Gevorg Dabaghyan/Georgian + AlbumSilk Road Journeys: Beyond The Horizon + GenreWorld + KindAAC audio file + Size2072316 + Total Time82034 + Track Number4 + Track Count15 + Year2005 + Date Modified2006-07-28T03:57:56Z + Date Added2009-10-03T14:57:37Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3338131965 + Play Date UTC2009-10-11T13:22:45Z + Normalization368 + Compilation + Artwork Count1 + Persistent ID68D6160499A5C588 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Silk%20Road%20Journeys_%20Beyond%20The%20Horizon/04%20Akhalqalaqi%20Dance.m4a + File Folder Count4 + Library Folder Count1 + + 4902 + + Track ID4902 + NameEchoes of a Lost City + ArtistYo-Yo Ma & The Silk Road Ensemble + ComposerZhao Jiping + AlbumSilk Road Journeys: Beyond The Horizon + GenreWorld + KindAAC audio file + Size1982940 + Total Time78203 + Track Number5 + Track Count15 + Year2005 + Date Modified2006-07-28T03:57:56Z + Date Added2009-10-03T14:57:37Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3338132043 + Play Date UTC2009-10-11T13:24:03Z + Normalization83 + Compilation + Artwork Count1 + Persistent ID2C2A2061F1F3248D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Silk%20Road%20Journeys_%20Beyond%20The%20Horizon/05%20Echoes%20of%20a%20Lost%20City.m4a + File Folder Count4 + Library Folder Count1 + + 4904 + + Track ID4904 + NameMountains Are Far Away + ArtistYo-Yo Ma & The Silk Road Ensemble + ComposerKayhan Klhor, Arr. Ljova + AlbumSilk Road Journeys: Beyond The Horizon + GenreWorld + KindAAC audio file + Size8978170 + Total Time368754 + Track Number6 + Track Count15 + Year2005 + Date Modified2006-07-28T03:57:58Z + Date Added2009-10-03T14:57:37Z + Bit Rate192 + Sample Rate44100 + Normalization1231 + Compilation + Artwork Count1 + Persistent ID7C7313F1A2175D3D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Silk%20Road%20Journeys_%20Beyond%20The%20Horizon/06%20Mountains%20Are%20Far%20Away.m4a + File Folder Count4 + Library Folder Count1 + + 4906 + + Track ID4906 + NameYanzi (Swallow Song) + ArtistYo-Yo Ma & The Silk Road Ensemble + ComposerChinese Traditional, Arr. Zhao Lin/Kazakh + AlbumSilk Road Journeys: Beyond The Horizon + GenreWorld + KindAAC audio file + Size5020605 + Total Time204728 + Track Number7 + Track Count15 + Year2005 + Date Modified2006-07-28T03:57:58Z + Date Added2009-10-03T14:57:37Z + Bit Rate192 + Sample Rate44100 + Normalization518 + Compilation + Artwork Count1 + Persistent ID85E3E66125C24514 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Silk%20Road%20Journeys_%20Beyond%20The%20Horizon/07%20Yanzi%20(Swallow%20Song).m4a + File Folder Count4 + Library Folder Count1 + + 4908 + + Track ID4908 + NameBattle Remembered + ArtistYo-Yo Ma & The Silk Road Ensemble + ComposerZhao Lin + AlbumSilk Road Journeys: Beyond The Horizon + GenreWorld + KindAAC audio file + Size5860798 + Total Time239744 + Track Number8 + Track Count15 + Year2005 + Date Modified2006-07-28T03:57:58Z + Date Added2009-10-03T14:57:37Z + Bit Rate192 + Sample Rate44100 + Normalization1231 + Compilation + Artwork Count1 + Persistent IDE4B7D78AD45D1AF1 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Silk%20Road%20Journeys_%20Beyond%20The%20Horizon/08%20Battle%20Remembered.m4a + File Folder Count4 + Library Folder Count1 + + 4910 + + Track ID4910 + NameSummer In The High Grassland + ArtistYo-Yo Ma & The Silk Road Ensemble + ComposerZhao Jiping + AlbumSilk Road Journeys: Beyond The Horizon + GenreWorld + KindAAC audio file + Size6751657 + Total Time276641 + Track Number9 + Track Count15 + Year2005 + Date Modified2006-07-28T03:58:00Z + Date Added2009-10-03T14:57:37Z + Bit Rate192 + Sample Rate44100 + Normalization196 + Compilation + Artwork Count1 + Persistent ID705A2A2C4049D182 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Silk%20Road%20Journeys_%20Beyond%20The%20Horizon/09%20Summer%20In%20The%20High%20Grassland.m4a + File Folder Count4 + Library Folder Count1 + + 4912 + + Track ID4912 + NameKor Arab (The Blind Arab) + ArtistYo-Yo Ma & The Silk Road Ensemble + ComposerFikret Amirov + AlbumSilk Road Journeys: Beyond The Horizon + GenreWorld + KindAAC audio file + Size6067459 + Total Time248289 + Track Number10 + Track Count15 + Year2005 + Date Modified2006-07-28T03:58:00Z + Date Added2009-10-03T14:57:38Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Compilation + Artwork Count1 + Persistent ID593DB402B76D43B9 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Silk%20Road%20Journeys_%20Beyond%20The%20Horizon/10%20Kor%20Arab%20(The%20Blind%20Arab).m4a + File Folder Count4 + Library Folder Count1 + + 4914 + + Track ID4914 + NameShikasta (Minstrel's Song) + ArtistYo-Yo Ma & The Silk Road Ensemble + ComposerMammad Ordubadi/Uzeyir Hajibeyov + AlbumSilk Road Journeys: Beyond The Horizon + GenreWorld + KindAAC audio file + Size2697344 + Total Time108040 + Track Number11 + Track Count15 + Year2005 + Date Modified2006-07-28T03:58:00Z + Date Added2009-10-03T14:57:38Z + Bit Rate192 + Sample Rate44100 + Normalization1231 + Compilation + Artwork Count1 + Persistent ID8A328FBBEFA8BC2E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Silk%20Road%20Journeys_%20Beyond%20The%20Horizon/11%20Shikasta%20(Minstrel's%20Song).m4a + File Folder Count4 + Library Folder Count1 + + 4916 + + Track ID4916 + NameNight at the Caravanserai + ArtistYo-Yo Ma & The Silk Road Ensemble + ComposerTurkish Traditional, Arr. Shane Shanahan + AlbumSilk Road Journeys: Beyond The Horizon + GenreWorld + KindAAC audio file + Size11576532 + Total Time476146 + Track Number12 + Track Count15 + Year2005 + Date Modified2006-07-28T03:58:02Z + Date Added2009-10-03T14:57:38Z + Bit Rate192 + Sample Rate44100 + Normalization1231 + Compilation + Artwork Count1 + Persistent ID895AD14100214447 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Silk%20Road%20Journeys_%20Beyond%20The%20Horizon/12%20Night%20at%20the%20Caravanserai.m4a + File Folder Count4 + Library Folder Count1 + + 4918 + + Track ID4918 + NameGallop of a Thousand Horses + ArtistYo-Yo Ma & The Silk Road Ensemble + ComposerKayhan Kalhor + AlbumSilk Road Journeys: Beyond The Horizon + GenreWorld + KindAAC audio file + Size7472595 + Total Time306548 + Track Number13 + Track Count15 + Year2005 + Date Modified2006-07-28T03:58:02Z + Date Added2009-10-03T14:57:38Z + Bit Rate192 + Sample Rate44100 + Normalization1230 + Compilation + Artwork Count1 + Persistent ID5C65175E03C7D0A0 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Silk%20Road%20Journeys_%20Beyond%20The%20Horizon/13%20Gallop%20of%20a%20Thousand%20Horses.m4a + File Folder Count4 + Library Folder Count1 + + 4920 + + Track ID4920 + NameTarang (Currents) + ArtistYo-Yo Ma & The Silk Road Ensemble + ComposerSandeep Das + AlbumSilk Road Journeys: Beyond The Horizon + GenreWorld + KindAAC audio file + Size9420436 + Total Time387005 + Track Number14 + Track Count15 + Year2005 + Date Modified2006-07-28T03:58:02Z + Date Added2009-10-03T14:57:38Z + Bit Rate192 + Sample Rate44100 + Normalization1232 + Compilation + Artwork Count1 + Persistent ID9CA54818ACE470CC + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Silk%20Road%20Journeys_%20Beyond%20The%20Horizon/14%20Tarang%20(Currents).m4a + File Folder Count4 + Library Folder Count1 + + 4922 + + Track ID4922 + NameSacred Cloud Music + ArtistYo-Yo Ma & The Silk Road Ensemble + ComposerZhao Jiping + AlbumSilk Road Journeys: Beyond The Horizon + GenreWorld + KindAAC audio file + Size7909579 + Total Time324636 + Track Number15 + Track Count15 + Year2005 + Date Modified2006-07-28T03:58:04Z + Date Added2009-10-03T14:57:38Z + Bit Rate192 + Sample Rate44100 + Normalization357 + Compilation + Artwork Count1 + Persistent ID38D4A6BBEC658DAD + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Silk%20Road%20Journeys_%20Beyond%20The%20Horizon/15%20Sacred%20Cloud%20Music.m4a + File Folder Count4 + Library Folder Count1 + + 4924 + + Track ID4924 + NameSymphony No.5 - I. Moderato + ArtistLorin Maazel; Cleveland Orchestra + ComposerDmitri Shostakovich + AlbumShostakovich: Symphony No.5; Stravinsky: The Rite of Spring + GenreClassical + KindAAC audio file + Size26161225 + Total Time1080771 + Disc Number1 + Disc Count1 + Track Number1 + Track Count18 + Year1993 + Date Modified2006-08-13T06:35:54Z + Date Added2009-10-03T14:57:38Z + Bit Rate192 + Sample Rate44100 + Normalization1202 + Compilation + Artwork Count1 + Persistent ID9D39F8FE970A39EE + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Shostakovich_%20Symphony%20No.5%3B%20Stravinsky_%20The%20Rite%20of%20Spring/01%20Symphony%20No.5%20-%20I.%20Moderato.m4a + File Folder Count4 + Library Folder Count1 + + 4926 + + Track ID4926 + NameSymphony No.5 - II. Allegretto + ArtistLorin Maazel; Cleveland Orchestra + ComposerDmitri Shostakovich + AlbumShostakovich: Symphony No.5; Stravinsky: The Rite of Spring + GenreClassical + KindAAC audio file + Size7364491 + Total Time303413 + Disc Number1 + Disc Count1 + Track Number2 + Track Count18 + Year1993 + Date Modified2006-08-13T06:35:44Z + Date Added2009-10-03T14:57:39Z + Bit Rate192 + Sample Rate44100 + Normalization1211 + Compilation + Artwork Count1 + Persistent IDA8EEF854514F9B97 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Shostakovich_%20Symphony%20No.5%3B%20Stravinsky_%20The%20Rite%20of%20Spring/02%20Symphony%20No.5%20-%20II.%20Allegretto.m4a + File Folder Count4 + Library Folder Count1 + + 4928 + + Track ID4928 + NameSymphony No.5 - III. Largo + ArtistLorin Maazel; Cleveland Orchestra + ComposerDmitri Shostakovich + AlbumShostakovich: Symphony No.5; Stravinsky: The Rite of Spring + GenreClassical + KindAAC audio file + Size21062071 + Total Time869446 + Disc Number1 + Disc Count1 + Track Number3 + Track Count18 + Year1993 + Date Modified2006-08-13T06:35:40Z + Date Added2009-10-03T14:57:39Z + Bit Rate192 + Sample Rate44100 + Normalization625 + Compilation + Artwork Count1 + Persistent ID6112A0F990D3CCBA + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Shostakovich_%20Symphony%20No.5%3B%20Stravinsky_%20The%20Rite%20of%20Spring/03%20Symphony%20No.5%20-%20III.%20Largo.m4a + File Folder Count4 + Library Folder Count1 + + 4930 + + Track ID4930 + NameSymphony No.5 - IV. Allegro non troppo + ArtistLorin Maazel; Cleveland Orchestra + ComposerDmitri Shostakovich + AlbumShostakovich: Symphony No.5; Stravinsky: The Rite of Spring + GenreClassical + KindAAC audio file + Size13606942 + Total Time563244 + Disc Number1 + Disc Count1 + Track Number4 + Track Count18 + Year1993 + Date Modified2006-08-13T06:35:30Z + Date Added2009-10-03T14:57:39Z + Bit Rate192 + Sample Rate44100 + Normalization1236 + Compilation + Artwork Count1 + Persistent ID9F930C382E202D18 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Shostakovich_%20Symphony%20No.5%3B%20Stravinsky_%20The%20Rite%20of%20Spring/04%20Symphony%20No.5%20-%20IV.%20Allegro%20non%20troppo.m4a + File Folder Count4 + Library Folder Count1 + + 4932 + + Track ID4932 + NameRite of Spring - Introduction + ArtistLorin Maazel; Cleveland Orchestra + ComposerIgor Stravinsky + AlbumShostakovich: Symphony No.5; Stravinsky: The Rite of Spring + GenreClassical + KindAAC audio file + Size4761939 + Total Time195394 + Disc Number1 + Disc Count1 + Track Number5 + Track Count18 + Year1993 + Date Modified2006-08-13T06:35:24Z + Date Added2009-10-03T14:57:39Z + Bit Rate192 + Sample Rate44100 + Normalization62 + Compilation + Artwork Count1 + Persistent ID17F07EF9207D97A7 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Shostakovich_%20Symphony%20No.5%3B%20Stravinsky_%20The%20Rite%20of%20Spring/05%20Rite%20of%20Spring%20-%20Introduction.m4a + File Folder Count4 + Library Folder Count1 + + 4934 + + Track ID4934 + NameRite of Spring - The Auguries of Spring/Dances of the Adolescent Girls + ArtistLorin Maazel; Cleveland Orchestra + ComposerIgor Stravinsky + AlbumShostakovich: Symphony No.5; Stravinsky: The Rite of Spring + GenreClassical + KindAAC audio file + Size4916345 + Total Time201803 + Disc Number1 + Disc Count1 + Track Number6 + Track Count18 + Year1993 + Date Modified2006-08-13T06:35:22Z + Date Added2009-10-03T14:57:39Z + Bit Rate192 + Sample Rate44100 + Normalization597 + Compilation + Artwork Count1 + Persistent IDA0C751AF0EBEBA40 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Shostakovich_%20Symphony%20No.5%3B%20Stravinsky_%20The%20Rite%20of%20Spring/06%20Rite%20of%20Spring%20-%20The%20Auguries%20of%20Spring_Dances%20of%20the%20Adolescent%20Girls.m4a + File Folder Count4 + Library Folder Count1 + + 4936 + + Track ID4936 + NameRite of Spring - Game of Abduction + ArtistLorin Maazel; Cleveland Orchestra + ComposerIgor Stravinsky + AlbumShostakovich: Symphony No.5; Stravinsky: The Rite of Spring + GenreClassical + KindAAC audio file + Size2018417 + Total Time81848 + Disc Number1 + Disc Count1 + Track Number7 + Track Count18 + Year1993 + Date Modified2006-08-13T06:35:20Z + Date Added2009-10-03T14:57:39Z + Bit Rate192 + Sample Rate44100 + Normalization1224 + Compilation + Artwork Count1 + Persistent ID545C6C78F208C2AF + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Shostakovich_%20Symphony%20No.5%3B%20Stravinsky_%20The%20Rite%20of%20Spring/07%20Rite%20of%20Spring%20-%20Game%20of%20Abduction.m4a + File Folder Count4 + Library Folder Count1 + + 4938 + + Track ID4938 + NameRite of Spring - Spring Rounds + ArtistLorin Maazel; Cleveland Orchestra + ComposerIgor Stravinsky + AlbumShostakovich: Symphony No.5; Stravinsky: The Rite of Spring + GenreClassical + KindAAC audio file + Size5404153 + Total Time222120 + Disc Number1 + Disc Count1 + Track Number8 + Track Count18 + Year1993 + Date Modified2006-08-13T06:35:20Z + Date Added2009-10-03T14:57:39Z + Bit Rate192 + Sample Rate44100 + Normalization1216 + Compilation + Artwork Count1 + Persistent IDB337B0AF87F7F845 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Shostakovich_%20Symphony%20No.5%3B%20Stravinsky_%20The%20Rite%20of%20Spring/08%20Rite%20of%20Spring%20-%20Spring%20Rounds.m4a + File Folder Count4 + Library Folder Count1 + + 4940 + + Track ID4940 + NameRite of Spring - Games of Rival Tribes + ArtistLorin Maazel; Cleveland Orchestra + ComposerIgor Stravinsky + AlbumShostakovich: Symphony No.5; Stravinsky: The Rite of Spring + GenreClassical + KindAAC audio file + Size2818169 + Total Time115146 + Disc Number1 + Disc Count1 + Track Number9 + Track Count18 + Year1993 + Date Modified2006-08-13T06:35:18Z + Date Added2009-10-03T14:57:39Z + Bit Rate192 + Sample Rate44100 + Normalization571 + Compilation + Artwork Count1 + Persistent ID43DCD6568F90FC07 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Shostakovich_%20Symphony%20No.5%3B%20Stravinsky_%20The%20Rite%20of%20Spring/09%20Rite%20of%20Spring%20-%20Games%20of%20Rival%20Tribes.m4a + File Folder Count4 + Library Folder Count1 + + 4942 + + Track ID4942 + NameRite of Spring - Procession of the Sage + ArtistLorin Maazel; Cleveland Orchestra + ComposerIgor Stravinsky + AlbumShostakovich: Symphony No.5; Stravinsky: The Rite of Spring + GenreClassical + KindAAC audio file + Size1031437 + Total Time40749 + Disc Number1 + Disc Count1 + Track Number10 + Track Count18 + Year1993 + Date Modified2006-08-13T06:35:16Z + Date Added2009-10-03T14:57:40Z + Bit Rate192 + Sample Rate44100 + Normalization856 + Compilation + Artwork Count1 + Persistent IDBC848139E0ECECB3 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Shostakovich_%20Symphony%20No.5%3B%20Stravinsky_%20The%20Rite%20of%20Spring/10%20Rite%20of%20Spring%20-%20Procession%20of%20the%20Sage.m4a + File Folder Count4 + Library Folder Count1 + + 4944 + + Track ID4944 + NameRite of Spring - The Sage + ArtistLorin Maazel; Cleveland Orchestra + ComposerIgor Stravinsky + AlbumShostakovich: Symphony No.5; Stravinsky: The Rite of Spring + GenreClassical + KindAAC audio file + Size478103 + Total Time17715 + Disc Number1 + Disc Count1 + Track Number11 + Track Count18 + Year1993 + Date Modified2006-08-13T06:35:16Z + Date Added2009-10-03T14:57:40Z + Bit Rate192 + Sample Rate44100 + Normalization6 + Compilation + Artwork Count1 + Persistent ID1F8044117546091A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Shostakovich_%20Symphony%20No.5%3B%20Stravinsky_%20The%20Rite%20of%20Spring/11%20Rite%20of%20Spring%20-%20The%20Sage.m4a + File Folder Count4 + Library Folder Count1 + + 4946 + + Track ID4946 + NameRite of Spring - Dance of the Earth + ArtistLorin Maazel; Cleveland Orchestra + ComposerIgor Stravinsky + AlbumShostakovich: Symphony No.5; Stravinsky: The Rite of Spring + GenreClassical + KindAAC audio file + Size1860704 + Total Time75277 + Disc Number1 + Disc Count1 + Track Number12 + Track Count18 + Year1993 + Date Modified2006-08-13T06:35:16Z + Date Added2009-10-03T14:57:40Z + Bit Rate192 + Sample Rate44100 + Normalization1222 + Compilation + Artwork Count1 + Persistent ID2E0076C6E234DDC5 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Shostakovich_%20Symphony%20No.5%3B%20Stravinsky_%20The%20Rite%20of%20Spring/12%20Rite%20of%20Spring%20-%20Dance%20of%20the%20Earth.m4a + File Folder Count4 + Library Folder Count1 + + 4948 + + Track ID4948 + NameRite of Spring - Introduction (The Pagan Night) + ArtistLorin Maazel; Cleveland Orchestra + ComposerIgor Stravinsky + AlbumShostakovich: Symphony No.5; Stravinsky: The Rite of Spring + GenreClassical + KindAAC audio file + Size5713637 + Total Time234984 + Disc Number1 + Disc Count1 + Track Number13 + Track Count18 + Year1993 + Date Modified2006-08-13T06:35:14Z + Date Added2009-10-03T14:57:40Z + Bit Rate192 + Sample Rate44100 + Normalization49 + Compilation + Artwork Count1 + Persistent IDC1A8FE74562FC193 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Shostakovich_%20Symphony%20No.5%3B%20Stravinsky_%20The%20Rite%20of%20Spring/13%20Rite%20of%20Spring%20-%20Introduction%20(The%20Pagan%20Night).m4a + File Folder Count4 + Library Folder Count1 + + 4950 + + Track ID4950 + NameRite of Spring - Mystic Circles of the Young Girls + ArtistLorin Maazel; Cleveland Orchestra + ComposerIgor Stravinsky + AlbumShostakovich: Symphony No.5; Stravinsky: The Rite of Spring + GenreClassical + KindAAC audio file + Size4786478 + Total Time196416 + Disc Number1 + Disc Count1 + Track Number14 + Track Count18 + Year1993 + Date Modified2006-08-13T06:35:12Z + Date Added2009-10-03T14:57:40Z + Bit Rate192 + Sample Rate44100 + Normalization1116 + Compilation + Artwork Count1 + Persistent ID3FB6ADF9D17C3FDE + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Shostakovich_%20Symphony%20No.5%3B%20Stravinsky_%20The%20Rite%20of%20Spring/14%20Rite%20of%20Spring%20-%20Mystic%20Circles%20of%20the%20Young%20Girls.m4a + File Folder Count4 + Library Folder Count1 + + 4952 + + Track ID4952 + NameRite of Spring - Glorification of the Chosen One + ArtistLorin Maazel; Cleveland Orchestra + ComposerIgor Stravinsky + AlbumShostakovich: Symphony No.5; Stravinsky: The Rite of Spring + GenreClassical + KindAAC audio file + Size2534938 + Total Time103350 + Disc Number1 + Disc Count1 + Track Number15 + Track Count18 + Year1993 + Date Modified2006-08-13T06:35:10Z + Date Added2009-10-03T14:57:40Z + Bit Rate192 + Sample Rate44100 + Normalization1184 + Compilation + Artwork Count1 + Persistent ID193A9239EC8B6D2F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Shostakovich_%20Symphony%20No.5%3B%20Stravinsky_%20The%20Rite%20of%20Spring/15%20Rite%20of%20Spring%20-%20Glorification%20of%20the%20Chosen%20One.m4a + File Folder Count4 + Library Folder Count1 + + 4954 + + Track ID4954 + NameRite of Spring - Evocation of the Elders + ArtistLorin Maazel; Cleveland Orchestra + ComposerIgor Stravinsky + AlbumShostakovich: Symphony No.5; Stravinsky: The Rite of Spring + GenreClassical + KindAAC audio file + Size1314611 + Total Time52545 + Disc Number1 + Disc Count1 + Track Number16 + Track Count18 + Year1993 + Date Modified2006-08-13T06:35:08Z + Date Added2009-10-03T14:57:40Z + Bit Rate192 + Sample Rate44100 + Normalization1223 + Compilation + Artwork Count1 + Persistent IDF5D245BFF7B9E460 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Shostakovich_%20Symphony%20No.5%3B%20Stravinsky_%20The%20Rite%20of%20Spring/16%20Rite%20of%20Spring%20-%20Evocation%20of%20the%20Elders.m4a + File Folder Count4 + Library Folder Count1 + + 4956 + + Track ID4956 + NameRite of Spring - Ritual Action of the Elders + ArtistLorin Maazel; Cleveland Orchestra + ComposerIgor Stravinsky + AlbumShostakovich: Symphony No.5; Stravinsky: The Rite of Spring + GenreClassical + KindAAC audio file + Size4908529 + Total Time201478 + Disc Number1 + Disc Count1 + Track Number17 + Track Count18 + Year1993 + Date Modified2006-08-13T06:35:08Z + Date Added2009-10-03T14:57:40Z + Bit Rate192 + Sample Rate44100 + Normalization770 + Compilation + Artwork Count1 + Persistent IDDB099D8B8BC27141 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Shostakovich_%20Symphony%20No.5%3B%20Stravinsky_%20The%20Rite%20of%20Spring/17%20Rite%20of%20Spring%20-%20Ritual%20Action%20of%20the%20Elders.m4a + File Folder Count4 + Library Folder Count1 + + 4958 + + Track ID4958 + NameRite of Spring - Sacrificial Dance (The Chosen One) + ArtistLorin Maazel; Cleveland Orchestra + ComposerIgor Stravinsky + AlbumShostakovich: Symphony No.5; Stravinsky: The Rite of Spring + GenreClassical + KindAAC audio file + Size6730052 + Total Time277569 + Disc Number1 + Disc Count1 + Track Number18 + Track Count18 + Year1993 + Date Modified2006-08-13T06:35:06Z + Date Added2009-10-03T14:57:41Z + Bit Rate192 + Sample Rate44100 + Normalization1210 + Compilation + Artwork Count1 + Persistent ID0374E37E37244008 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Shostakovich_%20Symphony%20No.5%3B%20Stravinsky_%20The%20Rite%20of%20Spring/18%20Rite%20of%20Spring%20-%20Sacrificial%20Dance%20(The%20Chosen%20One).m4a + File Folder Count4 + Library Folder Count1 + + 4960 + + Track ID4960 + NamePiano Concerto in A minor, Op. 54; 1. Allegro affettuoso + ArtistPerahia, Murray; Davis, Colin ©: Symphonieorchester des Bayerischen Rundfunks + ComposerSchumann, Robert (1810-1856) + AlbumSchumann; Grieg: Piano Concertos: Perahia + GenreClassical + KindAAC audio file + Size21495379 + Total Time888301 + Disc Number1 + Disc Count1 + Track Number1 + Track Count6 + Year1988 + Date Modified2006-08-13T06:35:02Z + Date Added2009-10-03T14:57:41Z + Bit Rate192 + Sample Rate44100 + Normalization582 + Compilation + Artwork Count1 + Persistent IDD4871AD90AF5A278 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Schumann%3B%20Grieg_%20Piano%20Concertos_%20Perahia/01%20Piano%20Concerto%20in%20A%20minor,%20Op.%2054%3B%201.%20Allegro%20affettuoso.m4a + File Folder Count4 + Library Folder Count1 + + 4962 + + Track ID4962 + NamePiano Concerto in A minor, Op. 54; 2. Intermezzo. Andantino grazioso + ArtistPerahia, Murray; Davis, Colin ©: Symphonieorchester des Bayerischen Rundfunks + ComposerSchumann, Robert (1810-1856) + AlbumSchumann; Grieg: Piano Concertos: Perahia + GenreClassical + KindAAC audio file + Size7694098 + Total Time317043 + Disc Number1 + Disc Count1 + Track Number2 + Track Count6 + Year1988 + Date Modified2006-08-13T06:34:52Z + Date Added2009-10-03T14:57:41Z + Bit Rate192 + Sample Rate44100 + Normalization97 + Compilation + Artwork Count1 + Persistent IDF63EE4B94668659F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Schumann%3B%20Grieg_%20Piano%20Concertos_%20Perahia/02%20Piano%20Concerto%20in%20A%20minor,%20Op.%2054%3B%202.%20Intermezzo.%20Andantino%20grazioso.m4a + File Folder Count4 + Library Folder Count1 + + 4964 + + Track ID4964 + NamePiano Concerto in A minor, Op. 54; 3. Allegro vivace + ArtistPerahia, Murray; Davis, Colin ©: Symphonieorchester des Bayerischen Rundfunks + ComposerSchumann, Robert (1810-1856) + AlbumSchumann; Grieg: Piano Concertos: Perahia + GenreClassical + KindAAC audio file + Size14921396 + Total Time621828 + Disc Number1 + Disc Count1 + Track Number3 + Track Count6 + Year1988 + Date Modified2006-08-13T06:34:48Z + Date Added2009-10-03T14:57:41Z + Bit Rate192 + Sample Rate44100 + Normalization833 + Compilation + Artwork Count1 + Persistent IDD0496DBCABC47E09 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Schumann%3B%20Grieg_%20Piano%20Concertos_%20Perahia/03%20Piano%20Concerto%20in%20A%20minor,%20Op.%2054%3B%203.%20Allegro%20vivace.m4a + File Folder Count4 + Library Folder Count1 + + 4966 + + Track ID4966 + NamePiano Concerto in A Minor, Op. 16; 1. Allegro molto moderato + ArtistPerahia, Murray; Davis, Colin ©: Symphonieorchester des Bayerischen Rundfunks + ComposerGrieg, Edvard (1843-1907) + AlbumSchumann; Grieg: Piano Concertos: Perahia + GenreClassical + KindAAC audio file + Size18369319 + Total Time758176 + Disc Number1 + Disc Count1 + Track Number4 + Track Count6 + Year1988 + Date Modified2006-08-13T06:34:42Z + Date Added2009-10-03T14:57:41Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3383455327 + Play Date UTC2011-03-20T03:12:07Z + Normalization516 + Compilation + Artwork Count1 + Persistent ID48D1B147FE020F89 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Schumann%3B%20Grieg_%20Piano%20Concertos_%20Perahia/04%20Piano%20Concerto%20in%20A%20Minor,%20Op.%2016%3B%201.%20Allegro%20molto%20moderato.m4a + File Folder Count4 + Library Folder Count1 + + 4968 + + Track ID4968 + NamePiano Concerto in A Minor, Op. 16; 2. Adagio + ArtistPerahia, Murray; Davis, Colin ©: Symphonieorchester des Bayerischen Rundfunks + ComposerGrieg, Edvard (1843-1907) + AlbumSchumann; Grieg: Piano Concertos: Perahia + GenreClassical + KindAAC audio file + Size10006832 + Total Time412617 + Disc Number1 + Disc Count1 + Track Number5 + Track Count6 + Year1988 + Date Modified2006-08-13T06:34:34Z + Date Added2009-10-03T14:57:41Z + Bit Rate192 + Sample Rate44100 + Normalization296 + Compilation + Artwork Count1 + Persistent IDDF19A5F2B62F208F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Schumann%3B%20Grieg_%20Piano%20Concertos_%20Perahia/05%20Piano%20Concerto%20in%20A%20Minor,%20Op.%2016%3B%202.%20Adagio.m4a + File Folder Count4 + Library Folder Count1 + + 4970 + + Track ID4970 + NamePiano Concerto in A Minor, Op. 16; 3. Allegro moderato molto e marcato + ArtistPerahia, Murray; Davis, Colin ©: Symphonieorchester des Bayerischen Rundfunks + ComposerGrieg, Edvard (1843-1907) + AlbumSchumann; Grieg: Piano Concertos: Perahia + GenreClassical + KindAAC audio file + Size14967009 + Total Time618067 + Disc Number1 + Disc Count1 + Track Number6 + Track Count6 + Year1988 + Date Modified2006-08-13T06:34:30Z + Date Added2009-10-03T14:57:42Z + Bit Rate192 + Sample Rate44100 + Normalization1046 + Compilation + Artwork Count1 + Persistent ID09E194DCBC7C6883 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Schumann%3B%20Grieg_%20Piano%20Concertos_%20Perahia/06%20Piano%20Concerto%20in%20A%20Minor,%20Op.%2016%3B%203.%20Allegro%20moderato%20molto%20e%20marcato.m4a + File Folder Count4 + Library Folder Count1 + + 4972 + + Track ID4972 + NameSocha Hai + ArtistFarhan Akhtar + ComposerShankar Ehsaan Loy + AlbumRock On!! + GenreWorld + KindAAC audio file + Size5965266 + Total Time251533 + Disc Number1 + Disc Count1 + Track Number1 + Track Count9 + Year2008 + Date Modified2008-09-28T07:57:20Z + Date Added2009-10-03T14:57:43Z + Bit Rate185 + Sample Rate44100 + Normalization3623 + Compilation + Artwork Count1 + Persistent ID82C7B11903C9DD5B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Rock%20On!!/01%20Socha%20Hai.m4a + File Folder Count4 + Library Folder Count1 + + 4974 + + Track ID4974 + NamePichle Saat Dinon Mein (Album Version) + ArtistFarhan Akhtar + ComposerShankar Ehsaan Loy + AlbumRock On!! + GenreWorld + KindAAC audio file + Size4577895 + Total Time192240 + Disc Number1 + Disc Count1 + Track Number2 + Track Count9 + Year2008 + Date Modified2008-09-28T07:57:20Z + Date Added2009-10-03T14:57:43Z + Bit Rate184 + Sample Rate44100 + Normalization4323 + Compilation + Artwork Count1 + Persistent ID17B9339AE54E2F04 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Rock%20On!!/02%20Pichle%20Saat%20Dinon%20Mein%20(Album%20Version).m4a + File Folder Count4 + Library Folder Count1 + + 4976 + + Track ID4976 + NameRock On!! + ArtistFarhan Akhtar + ComposerShankar Ehsaan Loy + AlbumRock On!! + GenreWorld + KindAAC audio file + Size5644801 + Total Time235200 + Disc Number1 + Disc Count1 + Track Number3 + Track Count9 + Year2008 + Date Modified2008-09-28T07:57:20Z + Date Added2009-10-03T14:57:43Z + Bit Rate187 + Sample Rate44100 + Normalization4003 + Compilation + Artwork Count1 + Persistent ID08536305FCC7A2B9 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Rock%20On!!/03%20Rock%20On!!.m4a + File Folder Count4 + Library Folder Count1 + + 4978 + + Track ID4978 + NameYe Tumhari Meri Baatein + ArtistDominique Cerejo + ComposerShankar Ehsaan Loy + AlbumRock On!! + GenreWorld + KindAAC audio file + Size8068670 + Total Time328973 + Disc Number1 + Disc Count1 + Track Number4 + Track Count9 + Year2008 + Date Modified2008-09-28T07:57:19Z + Date Added2009-10-03T14:57:43Z + Bit Rate192 + Sample Rate44100 + Normalization3081 + Compilation + Artwork Count1 + Persistent ID3AED7AFECAA71C0A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Rock%20On!!/04%20Ye%20Tumhari%20Meri%20Baatein.m4a + File Folder Count4 + Library Folder Count1 + + 4980 + + Track ID4980 + NameZehreelay + ArtistSuraj Jagan + ComposerShankar Ehsaan Loy + AlbumRock On!! + GenreWorld + KindAAC audio file + Size5308781 + Total Time222240 + Disc Number1 + Disc Count1 + Track Number5 + Track Count9 + Year2008 + Date Modified2008-09-28T07:57:19Z + Date Added2009-10-03T14:57:43Z + Bit Rate185 + Sample Rate44100 + Normalization8612 + Compilation + Artwork Count1 + Persistent IDBE5BBB9AD6BAC0DE + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Rock%20On!!/05%20Zehreelay.m4a + File Folder Count4 + Library Folder Count1 + + 4982 + + Track ID4982 + NameTum Ho Toh + ArtistFarhan Akhtar + ComposerShankar Ehsaan Loy + AlbumRock On!! + GenreWorld + KindAAC audio file + Size6158375 + Total Time255253 + Disc Number1 + Disc Count1 + Track Number6 + Track Count9 + Year2008 + Date Modified2008-09-28T07:57:18Z + Date Added2009-10-03T14:57:44Z + Bit Rate188 + Sample Rate44100 + Normalization2745 + Compilation + Artwork Count1 + Persistent IDC06C2903C54B23C5 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Rock%20On!!/06%20Tum%20Ho%20Toh.m4a + File Folder Count4 + Library Folder Count1 + + 4984 + + Track ID4984 + NameSinbad The Sailor + ArtistFarhan Akhtar & Raman Mahadevan + ComposerShankar Ehsaan Loy + AlbumRock On!! + GenreWorld + KindAAC audio file + Size9281013 + Total Time392133 + Disc Number1 + Disc Count1 + Track Number7 + Track Count9 + Year2008 + Date Modified2008-09-28T07:57:18Z + Date Added2009-10-03T14:57:44Z + Bit Rate185 + Sample Rate44100 + Normalization4145 + Compilation + Artwork Count1 + Persistent ID33485F241FAE3713 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Rock%20On!!/07%20Sinbad%20The%20Sailor.m4a + File Folder Count4 + Library Folder Count1 + + 4986 + + Track ID4986 + NamePichle Saat Dinon mein (Live Version) + ArtistFarhan Akhtar + ComposerShankar Ehsaan Loy + AlbumRock On!! + GenreWorld + KindAAC audio file + Size9542171 + Total Time395573 + Disc Number1 + Disc Count1 + Track Number8 + Track Count9 + Year2008 + Date Modified2008-09-28T07:57:17Z + Date Added2009-10-03T14:57:44Z + Bit Rate189 + Sample Rate44100 + Normalization4285 + Compilation + Artwork Count1 + Persistent IDAFBE6E7DE76B1E00 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Rock%20On!!/08%20Pichle%20Saat%20Dinon%20mein%20(Live%20Version).m4a + File Folder Count4 + Library Folder Count1 + + 4988 + + Track ID4988 + NamePhir Dekhiye + ArtistCaralisa Monteiro + ComposerShankar Ehsaan Loy + AlbumRock On!! + GenreWorld + KindAAC audio file + Size4996288 + Total Time207480 + Disc Number1 + Disc Count1 + Track Number9 + Track Count9 + Year2008 + Date Modified2008-09-28T07:57:16Z + Date Added2009-10-03T14:57:44Z + Bit Rate187 + Sample Rate44100 + Normalization1259 + Compilation + Artwork Count1 + Persistent IDB308E616458E7E3F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Rock%20On!!/09%20Phir%20Dekhiye.m4a + File Folder Count4 + Library Folder Count1 + + 4990 + + Track ID4990 + NameAi No Corrida (Vania Borges Feat. Quincy Jones) + ArtistBuena Vista Social Club + Album ArtistVania Borges Feat. Quincy Jones + ComposerKenny Young, Chaz Jankel + AlbumRhythms Del Mundo: Cuba + GenreLatin + KindAAC audio file + Size6572378 + Total Time270520 + Disc Number1 + Disc Count1 + Track Number10 + Track Count16 + Year2006 + Date Modified2007-08-15T06:18:54Z + Date Added2009-10-03T14:57:44Z + Bit Rate192 + Sample Rate44100 + Normalization4140 + Compilation + Artwork Count1 + Persistent ID7A7A3F4D187F52D6 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Rhythms%20Del%20Mundo_%20Cuba/10%20Ai%20No%20Corrida%20(Vania%20Borges%20Feat.%20Quincy%20Jones).m4a + File Folder Count4 + Library Folder Count1 + + 4992 + + Track ID4992 + NameAs Time Goes By (Ibrahim Ferrer) + ArtistBuena Vista Social Club + Album ArtistIbrahim Ferrer + ComposerHerman Hupfeld + AlbumRhythms Del Mundo: Cuba + GenreLatin + KindAAC audio file + Size4641165 + Total Time190533 + Disc Number1 + Disc Count1 + Track Number5 + Track Count16 + Year2006 + Date Modified2007-08-15T06:18:45Z + Date Added2009-10-03T14:57:44Z + Bit Rate192 + Sample Rate44100 + Normalization3480 + Compilation + Artwork Count1 + Persistent IDEFD124E5F64E6E12 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Rhythms%20Del%20Mundo_%20Cuba/05%20As%20Time%20Goes%20By%20(Ibrahim%20Ferrer).m4a + File Folder Count4 + Library Folder Count1 + + 4994 + + Track ID4994 + NameBetter Together (Jack Johnson & Buena Vista Social Club) + ArtistBuena Vista Social Club + Album ArtistJack Johnson & Buena Vista Social Club + ComposerJack Johnson/Chris Martin, Jon Buckland, Guy Berryman, Will Champion + AlbumRhythms Del Mundo: Cuba + GenreLatin + KindAAC audio file + Size5054998 + Total Time207533 + Disc Number1 + Disc Count1 + Track Number2 + Track Count16 + Year2006 + Date Modified2007-08-15T06:18:43Z + Date Added2009-10-03T14:57:45Z + Bit Rate192 + Sample Rate44100 + Normalization1643 + Compilation + Artwork Count1 + Persistent ID16D878A3B3049466 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Rhythms%20Del%20Mundo_%20Cuba/02%20Better%20Together%20(Jack%20Johnson%20&%20Buena%20Vista%20Social%20Club).m4a + File Folder Count4 + Library Folder Count1 + + 4996 + + Track ID4996 + NameCasablanca (As Time Goes By) (Ibrahim Ferrer & Omara Portuondo) + ArtistBuena Vista Social Club + Album ArtistIbrahim Ferrer & Omara Portuondo + ComposerVarious + AlbumRhythms Del Mundo: Cuba + GenreLatin + KindAAC audio file + Size4634348 + Total Time190160 + Disc Number1 + Disc Count1 + Track Number16 + Track Count16 + Year2006 + Date Modified2007-08-15T06:19:03Z + Date Added2009-10-03T14:57:45Z + Bit Rate192 + Sample Rate44100 + Normalization2358 + Compilation + Artwork Count1 + Persistent ID259C46D6DB0F33B6 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Rhythms%20Del%20Mundo_%20Cuba/16%20Casablanca%20(As%20Time%20Goes%20By)%20(Ibrahim%20Ferrer%20&%20Omara%20Portuondo).m4a + File Folder Count4 + Library Folder Count1 + + 4998 + + Track ID4998 + NameClocks (Coldplay & Buena Vista Social Club) + ArtistBuena Vista Social Club + Album ArtistColdplay & Buena Vista Social Club + ComposerChris Martin, Jon Buckland, Guy Berryman, Will Champion + AlbumRhythms Del Mundo: Cuba + GenreLatin + KindAAC audio file + Size7377306 + Total Time301680 + Disc Number1 + Disc Count1 + Track Number1 + Track Count16 + Year2006 + Date Modified2007-08-15T06:18:39Z + Date Added2009-10-03T14:57:45Z + Bit Rate192 + Sample Rate44100 + Normalization2970 + Compilation + Artwork Count1 + Persistent IDCEC8A16C62386D1B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Rhythms%20Del%20Mundo_%20Cuba/01%20Clocks%20(Coldplay%20&%20Buena%20Vista%20Social%20Club).m4a + File Folder Count4 + Library Folder Count1 + + 5000 + + Track ID5000 + NameDancing Shoes (Arctic Monkeys & Buena Vista Social Club) + ArtistBuena Vista Social Club + Album ArtistArctic Monkeys & Buena Vista Social Club + ComposerAlex Turner + AlbumRhythms Del Mundo: Cuba + GenreLatin + KindAAC audio file + Size3684519 + Total Time149466 + Disc Number1 + Disc Count1 + Track Number3 + Track Count16 + Year2006 + Date Modified2007-08-15T06:18:43Z + Date Added2009-10-03T14:57:45Z + Bit Rate192 + Sample Rate44100 + Normalization7275 + Compilation + Artwork Count1 + Persistent ID3543D22193E962E0 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Rhythms%20Del%20Mundo_%20Cuba/03%20Dancing%20Shoes%20(Arctic%20Monkeys%20&%20Buena%20Vista%20Social%20Club).m4a + File Folder Count4 + Library Folder Count1 + + 5002 + + Track ID5002 + NameDon't Know Why (Vania Borges) + ArtistBuena Vista Social Club + Album ArtistVania Borges + ComposerJesse Harris + AlbumRhythms Del Mundo: Cuba + GenreLatin + KindAAC audio file + Size4666519 + Total Time190160 + Disc Number1 + Disc Count1 + Track Number12 + Track Count16 + Year2006 + Date Modified2007-08-15T06:18:56Z + Date Added2009-10-03T14:57:45Z + Bit Rate192 + Sample Rate44100 + Normalization2431 + Compilation + Artwork Count1 + Persistent ID5D8571F574920AE9 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Rhythms%20Del%20Mundo_%20Cuba/12%20Don't%20Know%20Why%20(Vania%20Borges).m4a + File Folder Count4 + Library Folder Count1 + + 5004 + + Track ID5004 + NameFragilidad (Sting & Buena Vista Social Club) + ArtistBuena Vista Social Club + Album ArtistSting & Buena Vista Social Club + ComposerSting (Gordon Sumner) + AlbumRhythms Del Mundo: Cuba + GenreLatin + KindAAC audio file + Size6279848 + Total Time257853 + Disc Number1 + Disc Count1 + Track Number11 + Track Count16 + Year2006 + Date Modified2007-08-15T06:18:55Z + Date Added2009-10-03T14:57:45Z + Bit Rate192 + Sample Rate44100 + Normalization2387 + Compilation + Artwork Count1 + Persistent IDF1D8DAC0D30A6BB5 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Rhythms%20Del%20Mundo_%20Cuba/11%20Fragilidad%20(Sting%20&%20Buena%20Vista%20Social%20Club).m4a + File Folder Count4 + Library Folder Count1 + + 5006 + + Track ID5006 + NameHigh And Dry (Radiohead & El Lele) + ArtistBuena Vista Social Club + Album ArtistRadiohead & El Lele + ComposerVarious + AlbumRhythms Del Mundo: Cuba + GenreLatin + KindAAC audio file + Size7413170 + Total Time314493 + Disc Number1 + Disc Count1 + Track Number15 + Track Count16 + Year2006 + Date Modified2007-08-15T06:19:01Z + Date Added2009-10-03T14:57:45Z + Bit Rate192 + Sample Rate44100 + Normalization2761 + Compilation + Artwork Count1 + Persistent IDA203552B5577FADC + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Rhythms%20Del%20Mundo_%20Cuba/15%20High%20And%20Dry%20(Radiohead%20&%20El%20Lele).m4a + File Folder Count4 + Library Folder Count1 + + 5008 + + Track ID5008 + NameHotel Buena Vista (Aquila Rose & Idana Valdez) + ArtistBuena Vista Social Club + Album ArtistAquila Rose & Idana Valdez + ComposerKenny Young, Ben Brierly + AlbumRhythms Del Mundo: Cuba + GenreLatin + KindAAC audio file + Size5329591 + Total Time217813 + Disc Number1 + Disc Count1 + Track Number13 + Track Count16 + Year2006 + Date Modified2007-08-15T06:18:57Z + Date Added2009-10-03T14:57:45Z + Bit Rate192 + Sample Rate44100 + Normalization2862 + Compilation + Artwork Count1 + Persistent ID92C6C85336B8AF06 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Rhythms%20Del%20Mundo_%20Cuba/13%20Hotel%20Buena%20Vista%20(Aquila%20Rose%20&%20Idana%20Valdez).m4a + File Folder Count4 + Library Folder Count1 + + 5010 + + Track ID5010 + NameI Still Haven't Found What I'm Looking For (Coco Freeman Feat. U2) + ArtistBuena Vista Social Club + Album ArtistCoco Freeman Feat. U2 + ComposerChris Martin, Jon Buckland, Guy Berryman, Will Champion/The Edge, Bono, Adam Clayton, Larry Mullen jr. + AlbumRhythms Del Mundo: Cuba + GenreLatin + KindAAC audio file + Size7241823 + Total Time293440 + Disc Number1 + Disc Count1 + Track Number6 + Track Count16 + Year2006 + Date Modified2007-08-15T06:18:47Z + Date Added2009-10-03T14:57:46Z + Bit Rate192 + Sample Rate44100 + Normalization3657 + Compilation + Artwork Count1 + Persistent ID7EA89F03EA74CA92 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Rhythms%20Del%20Mundo_%20Cuba/06%20I%20Still%20Haven't%20Found%20What%20I'm%20Looking%20For%20(Coco%20Freeman%20Feat.%20U2).m4a + File Folder Count4 + Library Folder Count1 + + 5012 + + Track ID5012 + NameKilling Me Softly (Omara Portuondo) + ArtistBuena Vista Social Club + Album ArtistOmara Portuondo + ComposerCharles Fox, Norman Gimbel + AlbumRhythms Del Mundo: Cuba + GenreLatin + KindAAC audio file + Size6555115 + Total Time267400 + Disc Number1 + Disc Count1 + Track Number9 + Track Count16 + Year2006 + Date Modified2007-08-15T06:18:52Z + Date Added2009-10-03T14:57:46Z + Bit Rate192 + Sample Rate44100 + Normalization3016 + Compilation + Artwork Count1 + Persistent ID4DA8600D508FC774 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Rhythms%20Del%20Mundo_%20Cuba/09%20Killing%20Me%20Softly%20(Omara%20Portuondo).m4a + File Folder Count4 + Library Folder Count1 + + 5014 + + Track ID5014 + NameModern Way (Kaiser Chiefs & Buena Vista Social Club) + ArtistBuena Vista Social Club + Album ArtistKaiser Chiefs & Buena Vista Social Club + ComposerNick Baines, Andrew White, Ricky Wilson, Simon Rix, Nick Hodgson + AlbumRhythms Del Mundo: Cuba + GenreLatin + KindAAC audio file + Size5774839 + Total Time238320 + Disc Number1 + Disc Count1 + Track Number8 + Track Count16 + Year2006 + Date Modified2007-08-15T06:18:50Z + Date Added2009-10-03T14:57:46Z + Bit Rate192 + Sample Rate44100 + Normalization4675 + Compilation + Artwork Count1 + Persistent ID24D3DE3299F498F3 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Rhythms%20Del%20Mundo_%20Cuba/08%20Modern%20Way%20(Kaiser%20Chiefs%20&%20Buena%20Vista%20Social%20Club).m4a + File Folder Count4 + Library Folder Count1 + + 5016 + + Track ID5016 + NameOne Step Too Far (Dido, Faithless & Buena Vista Social Club) + ArtistBuena Vista Social Club + Album ArtistDido, Faithless & Buena Vista Social Club + ComposerDido Armstrong, Rollo Armstrong, Ayalah Bentovim, Maxwell Alexander Fraser + AlbumRhythms Del Mundo: Cuba + GenreLatin + KindAAC audio file + Size4837109 + Total Time197426 + Disc Number1 + Disc Count1 + Track Number4 + Track Count16 + Year2006 + Date Modified2007-08-15T06:18:44Z + Date Added2009-10-03T14:57:46Z + Bit Rate192 + Sample Rate44100 + Normalization2645 + Compilation + Artwork Count1 + Persistent ID44F94FA18DC2C308 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Rhythms%20Del%20Mundo_%20Cuba/04%20One%20Step%20Too%20Far%20(Dido,%20Faithless%20&%20Buena%20Vista%20Social%20Club).m4a + File Folder Count4 + Library Folder Count1 + + 5018 + + Track ID5018 + NameShe Will Be Loved (Maroon 5 & Buena Vista Social Club) + ArtistBuena Vista Social Club + Album ArtistMaroon 5 & Buena Vista Social Club + ComposerJesse Carmichael, Ryan Dusick, Adam Levine, Michael Madden, James Valentine + AlbumRhythms Del Mundo: Cuba + GenreLatin + KindAAC audio file + Size5971055 + Total Time245893 + Disc Number1 + Disc Count1 + Track Number7 + Track Count16 + Year2006 + Date Modified2007-08-15T06:18:49Z + Date Added2009-10-03T14:57:46Z + Bit Rate192 + Sample Rate44100 + Normalization3019 + Compilation + Artwork Count1 + Persistent ID670DA1D2A7565D05 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Rhythms%20Del%20Mundo_%20Cuba/07%20She%20Will%20Be%20Loved%20(Maroon%205%20&%20Buena%20Vista%20Social%20Club).m4a + File Folder Count4 + Library Folder Count1 + + 5020 + + Track ID5020 + NameThe Dark Of The Matinee (Coco Freeman & Franz Ferdinand) + ArtistBuena Vista Social Club + Album ArtistCoco Freeman & Franz Ferdinand + ComposerBob Hardy, Nick McCarthy, Paul Thompson, Alex Kapranos + AlbumRhythms Del Mundo: Cuba + GenreLatin + KindAAC audio file + Size5797500 + Total Time238586 + Disc Number1 + Disc Count1 + Track Number14 + Track Count16 + Year2006 + Date Modified2007-08-15T06:18:58Z + Date Added2009-10-03T14:57:47Z + Bit Rate192 + Sample Rate44100 + Normalization3752 + Compilation + Artwork Count1 + Sort NameDark Of The Matinee (Coco Freeman & Franz Ferdinand) + Persistent IDEDEB9FF0D83EB63E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Rhythms%20Del%20Mundo_%20Cuba/14%20The%20Dark%20Of%20The%20Matinee%20(Coco%20Freeman%20&%20Franz%20Ferdinand).m4a + File Folder Count4 + Library Folder Count1 + + 5022 + + Track ID5022 + NameBolero + ArtistMaurice Ravel + ComposerMaurice Ravel + AlbumRavel: Bolero & Debussy: La Mer + GenreClassical + KindAAC audio file + Size23426695 + Total Time977001 + Disc Number1 + Disc Count1 + Track Number1 + Track Count6 + Year1989 + Date Modified2006-09-05T15:57:18Z + Date Added2009-10-03T14:57:47Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3401379934 + Play Date UTC2011-10-13T14:15:34Z + Normalization1099 + Compilation + Artwork Count1 + Persistent IDA0FC7E7418CE6D0A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Ravel_%20Bolero%20&%20Debussy_%20La%20Mer/01%20Bolero.m4a + File Folder Count4 + Library Folder Count1 + + 5024 + + Track ID5024 + NameLa mer: De l'aube a midi sur la mer + ArtistClaude Debussy + ComposerDebussy, Claude + AlbumRavel: Bolero & Debussy: La Mer + GenreClassical + KindAAC audio file + Size12515878 + Total Time517014 + Disc Number1 + Disc Count1 + Track Number2 + Track Count6 + Year1989 + Date Modified2006-09-05T15:57:16Z + Date Added2009-10-03T14:57:47Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3401387450 + Play Date UTC2011-10-13T16:20:50Z + Normalization965 + Compilation + Artwork Count1 + Persistent IDF4BE9260E54A87B0 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Ravel_%20Bolero%20&%20Debussy_%20La%20Mer/02%20La%20mer_%20De%20l'aube%20a%20midi%20sur%20la%20mer.m4a + File Folder Count4 + Library Folder Count1 + + 5026 + + Track ID5026 + NameLa mer: Jeux de vagues + ArtistClaude Debussy + ComposerDebussy, Claude + AlbumRavel: Bolero & Debussy: La Mer + GenreClassical + KindAAC audio file + Size9045381 + Total Time373003 + Disc Number1 + Disc Count1 + Track Number3 + Track Count6 + Year1989 + Date Modified2006-09-05T15:57:14Z + Date Added2009-10-03T14:57:47Z + Bit Rate192 + Sample Rate44100 + Normalization1000 + Compilation + Artwork Count1 + Persistent ID77D64E5644B3BD55 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Ravel_%20Bolero%20&%20Debussy_%20La%20Mer/03%20La%20mer_%20Jeux%20de%20vagues.m4a + File Folder Count4 + Library Folder Count1 + + 5028 + + Track ID5028 + NameLa mer: Dialogue du vent et de la mer + ArtistClaude Debussy + ComposerDebussy, Claude + AlbumRavel: Bolero & Debussy: La Mer + GenreClassical + KindAAC audio file + Size11401407 + Total Time480001 + Disc Number1 + Disc Count1 + Track Number4 + Track Count6 + Year1990 + Date Modified2006-09-05T15:57:14Z + Date Added2009-10-03T14:57:47Z + Bit Rate192 + Sample Rate44100 + Normalization1067 + Compilation + Artwork Count1 + Persistent ID5BF641A67F4DE06A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Ravel_%20Bolero%20&%20Debussy_%20La%20Mer/04%20La%20mer_%20Dialogue%20du%20vent%20et%20de%20la%20mer.m4a + File Folder Count4 + Library Folder Count1 + + 5030 + + Track ID5030 + NameDaphnis et Chloe: Suite No.2 + ArtistMaurice Ravel + ComposerRavel, Maurice + AlbumRavel: Bolero & Debussy: La Mer + GenreClassical + KindAAC audio file + Size22078165 + Total Time923014 + Disc Number1 + Disc Count1 + Track Number5 + Track Count6 + Year1989 + Date Modified2006-09-05T15:57:12Z + Date Added2009-10-03T14:57:47Z + Bit Rate192 + Sample Rate44100 + Normalization1076 + Compilation + Artwork Count1 + Persistent ID29A8CF52BC980C5A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Ravel_%20Bolero%20&%20Debussy_%20La%20Mer/05%20Daphnis%20et%20Chloe_%20Suite%20No.2.m4a + File Folder Count4 + Library Folder Count1 + + 5032 + + Track ID5032 + NamePrelude a l'apres-midi d'une faune + ArtistClaude Debussy + ComposerDebussy, Claude + AlbumRavel: Bolero & Debussy: La Mer + GenreClassical + KindAAC audio file + Size14294747 + Total Time592014 + Disc Number1 + Disc Count1 + Track Number6 + Track Count6 + Year1989 + Date Modified2006-09-05T15:57:08Z + Date Added2009-10-03T14:57:47Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3401388042 + Play Date UTC2011-10-13T16:30:42Z + Normalization784 + Compilation + Artwork Count1 + Persistent IDA90EA8D24956B402 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Ravel_%20Bolero%20&%20Debussy_%20La%20Mer/06%20Prelude%20a%20l'apres-midi%20d'une%20faune.m4a + File Folder Count4 + Library Folder Count1 + + 5034 + + Track ID5034 + NameSymphony-Concerto in E minor for Cello and Orchestra, Op. 125: 1. Andante + ArtistAlexander Rudin and the National Symphony Ochestra of Ukraine with Theodore Kuchar + ComposerSergey Prokofiev (1891 - 1953) + AlbumProkofiev: Symphony-Concerto for Cello & Orchestra, Concertino, Two Waltzes + GenreClassical + KindAAC audio file + Size15448219 + Total Time640010 + Disc Number1 + Disc Count1 + Track Number1 + Track Count8 + Year1997 + Date Modified2006-08-07T13:52:44Z + Date Added2009-10-03T14:57:47Z + Bit Rate192 + Sample Rate44100 + Normalization1104 + Compilation + Artwork Count1 + Persistent ID0C1647C3B3D17962 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Prokofiev_%20Symphony-Concerto%20for%20Cello%20&%20Orchestra,%20Concertino,%20Two%20Waltzes/01%20Symphony-Concerto%20in%20E%20minor%20for%20Cello%20and%20Orchestra,%20Op.%20125_%201.%20Andante.m4a + File Folder Count4 + Library Folder Count1 + + 5036 + + Track ID5036 + NameAllegro giusto + ArtistAlexander Rudin and the National Symphony Ochestra of Ukraine with Theodore Kuchar + ComposerSergey Prokofiev (1891 - 1953) + AlbumProkofiev: Symphony-Concerto for Cello & Orchestra, Concertino, Two Waltzes + GenreClassical + KindAAC audio file + Size25654712 + Total Time1064888 + Disc Number1 + Disc Count1 + Track Number2 + Track Count8 + Year1997 + Date Modified2006-08-07T13:52:44Z + Date Added2009-10-03T14:57:48Z + Bit Rate192 + Sample Rate44100 + Normalization1187 + Compilation + Artwork Count1 + Persistent IDA1EFC9B7DBD3DBBC + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Prokofiev_%20Symphony-Concerto%20for%20Cello%20&%20Orchestra,%20Concertino,%20Two%20Waltzes/02%20Allegro%20giusto.m4a + File Folder Count4 + Library Folder Count1 + + 5038 + + Track ID5038 + NameAndante con moto - Allegro - Allegro marcato + ArtistAlexander Rudin and the National Symphony Ochestra of Ukraine with Theodore Kuchar + ComposerSergey Prokofiev (1891 - 1953) + AlbumProkofiev: Symphony-Concerto for Cello & Orchestra, Concertino, Two Waltzes + GenreClassical + KindAAC audio file + Size16036064 + Total Time665134 + Disc Number1 + Disc Count1 + Track Number3 + Track Count8 + Year1997 + Date Modified2006-08-07T13:52:42Z + Date Added2009-10-03T14:57:48Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Compilation + Artwork Count1 + Persistent ID525B7EF339A4C7F9 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Prokofiev_%20Symphony-Concerto%20for%20Cello%20&%20Orchestra,%20Concertino,%20Two%20Waltzes/03%20Andante%20con%20moto%20-%20Allegro%20-%20Allegro%20marcato.m4a + File Folder Count4 + Library Folder Count1 + + 5040 + + Track ID5040 + NameConcertino in G minor for Cello and Orchestra, Op. 132: 1. Andante mosso + ArtistAlexander Rudin and the National Symphony Ochestra of Ukraine with Theodore Kuchar + ComposerSergey Prokofiev (1891 - 1953) + AlbumProkofiev: Symphony-Concerto for Cello & Orchestra, Concertino, Two Waltzes + GenreClassical + KindAAC audio file + Size13274133 + Total Time552563 + Disc Number1 + Disc Count1 + Track Number4 + Track Count8 + Year1997 + Date Modified2006-08-07T13:52:42Z + Date Added2009-10-03T14:57:48Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Compilation + Artwork Count1 + Persistent ID3F1CE73898DECDC9 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Prokofiev_%20Symphony-Concerto%20for%20Cello%20&%20Orchestra,%20Concertino,%20Two%20Waltzes/04%20Concertino%20in%20G%20minor%20for%20Cello%20and%20Orchestra,%20Op.%20132_%201.%20Andante%20mosso.m4a + File Folder Count4 + Library Folder Count1 + + 5042 + + Track ID5042 + NameAndante + ArtistAlexander Rudin and the National Symphony Ochestra of Ukraine with Theodore Kuchar + ComposerSergey Prokofiev (1891 - 1953) + AlbumProkofiev: Symphony-Concerto for Cello & Orchestra, Concertino, Two Waltzes + GenreClassical + KindAAC audio file + Size8137219 + Total Time341076 + Disc Number1 + Disc Count1 + Track Number5 + Track Count8 + Year1997 + Date Modified2006-08-07T13:52:42Z + Date Added2009-10-03T14:57:48Z + Bit Rate192 + Sample Rate44100 + Normalization111 + Compilation + Artwork Count1 + Persistent IDC365214E16BF13BD + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Prokofiev_%20Symphony-Concerto%20for%20Cello%20&%20Orchestra,%20Concertino,%20Two%20Waltzes/05%20Andante.m4a + File Folder Count4 + Library Folder Count1 + + 5044 + + Track ID5044 + NameAllegretto + ArtistAlexander Rudin and the National Symphony Ochestra of Ukraine with Theodore Kuchar + ComposerSergey Prokofiev (1891 - 1953) + AlbumProkofiev: Symphony-Concerto for Cello & Orchestra, Concertino, Two Waltzes + GenreClassical + KindAAC audio file + Size6967916 + Total Time290619 + Disc Number1 + Disc Count1 + Track Number6 + Track Count8 + Year1997 + Date Modified2006-08-07T13:52:42Z + Date Added2009-10-03T14:57:48Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Compilation + Artwork Count1 + Persistent ID4461662D6E6713F4 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Prokofiev_%20Symphony-Concerto%20for%20Cello%20&%20Orchestra,%20Concertino,%20Two%20Waltzes/06%20Allegretto.m4a + File Folder Count4 + Library Folder Count1 + + 5046 + + Track ID5046 + NameTwo Pushkin Waltzes, Op. 120: No. 1 in F major + ArtistNational Symphony Ochestra of Ukraine with Theodore Kuchar + ComposerSergey Prokofiev (1891 - 1953) + AlbumProkofiev: Symphony-Concerto for Cello & Orchestra, Concertino, Two Waltzes + GenreClassical + KindAAC audio file + Size5755247 + Total Time239582 + Disc Number1 + Disc Count1 + Track Number7 + Track Count8 + Year1997 + Date Modified2006-08-07T13:52:42Z + Date Added2009-10-03T14:57:49Z + Bit Rate192 + Sample Rate44100 + Normalization870 + Compilation + Artwork Count1 + Persistent IDDD844A3CAF744604 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Prokofiev_%20Symphony-Concerto%20for%20Cello%20&%20Orchestra,%20Concertino,%20Two%20Waltzes/07%20Two%20Pushkin%20Waltzes,%20Op.%20120_%20No.%201%20in%20F%20major.m4a + File Folder Count4 + Library Folder Count1 + + 5048 + + Track ID5048 + NameNo. 2 in C sharp minor + ArtistNational Symphony Ochestra of Ukraine with Theodore Kuchar + ComposerSergey Prokofiev (1891 - 1953) + AlbumProkofiev: Symphony-Concerto for Cello & Orchestra, Concertino, Two Waltzes + GenreClassical + KindAAC audio file + Size5937855 + Total Time247569 + Disc Number1 + Disc Count1 + Track Number8 + Track Count8 + Year1997 + Date Modified2006-08-07T13:52:42Z + Date Added2009-10-03T14:57:49Z + Bit Rate192 + Sample Rate44100 + Normalization894 + Compilation + Artwork Count1 + Persistent IDD5858ACADE192283 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Prokofiev_%20Symphony-Concerto%20for%20Cello%20&%20Orchestra,%20Concertino,%20Two%20Waltzes/08%20No.%202%20in%20C%20sharp%20minor.m4a + File Folder Count4 + Library Folder Count1 + + 5050 + + Track ID5050 + NamePo' Lazarus + ArtistJames Carter & The Prisoners + ComposerTraditional, arr. by Alan Lomax + AlbumO Brother, Where Art Thou? + GenreSoundtrack + KindAAC audio file + Size6548776 + Total Time270812 + Disc Number1 + Disc Count1 + Track Number1 + Track Count19 + Year1959 + Date Modified2006-08-13T06:34:22Z + Date Added2009-10-03T14:57:49Z + Bit Rate192 + Sample Rate44100 + Skip Count2 + Skip Date2014-06-05T08:38:22Z + Normalization1381 + Compilation + Artwork Count1 + Persistent ID2A579B25D6C79EF3 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/O%20Brother,%20Where%20Art%20Thou_/01%20Po'%20Lazarus.m4a + File Folder Count4 + Library Folder Count1 + + 5052 + + Track ID5052 + NameBig Rock Candy Mountain + ArtistHarry McClintock + ComposerHarry McClintock + AlbumO Brother, Where Art Thou? + GenreSoundtrack + KindAAC audio file + Size3325693 + Total Time137716 + Disc Number1 + Disc Count1 + Track Number2 + Track Count19 + Year1928 + Date Modified2006-08-13T06:34:20Z + Date Added2009-10-03T14:57:49Z + Bit Rate192 + Sample Rate44100 + Play Count3 + Play Date3484822240 + Play Date UTC2014-06-05T08:40:40Z + Normalization1230 + Compilation + Artwork Count1 + Persistent ID3A2EBBC3A2587230 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/O%20Brother,%20Where%20Art%20Thou_/02%20Big%20Rock%20Candy%20Mountain.m4a + File Folder Count4 + Library Folder Count1 + + 5054 + + Track ID5054 + NameYou Are My Sunshine + ArtistNorman Blake + ComposerJimmie Davis, Charles Mitchell + AlbumO Brother, Where Art Thou? + GenreSoundtrack + KindAAC audio file + Size6489295 + Total Time267608 + Disc Number1 + Disc Count1 + Track Number3 + Track Count19 + Year2000 + Date Modified2006-08-13T06:34:18Z + Date Added2009-10-03T14:57:49Z + Bit Rate192 + Sample Rate44100 + Play Count2 + Play Date3484840286 + Play Date UTC2014-06-05T13:41:26Z + Normalization1047 + Compilation + Artwork Count1 + Persistent ID5BE34E1E51309D67 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/O%20Brother,%20Where%20Art%20Thou_/03%20You%20Are%20My%20Sunshine.m4a + File Folder Count4 + Library Folder Count1 + + 5056 + + Track ID5056 + NameDown To The River To Pray + ArtistAlison Krauss + ComposerJimmie Rodgers/Traditional, arr. by Allison Krauss + AlbumO Brother, Where Art Thou? + GenreSoundtrack + KindAAC audio file + Size4279470 + Total Time175982 + Disc Number1 + Disc Count1 + Track Number4 + Track Count19 + Year2000 + Date Modified2006-08-13T06:34:14Z + Date Added2009-10-03T14:57:49Z + Bit Rate192 + Sample Rate44100 + Play Count5 + Play Date3484840487 + Play Date UTC2014-06-05T13:44:47Z + Skip Count1 + Skip Date2014-06-04T11:26:32Z + Normalization1057 + Compilation + Artwork Count1 + Persistent IDC5808AE0985283A8 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/O%20Brother,%20Where%20Art%20Thou_/04%20Down%20To%20The%20River%20To%20Pray.m4a + File Folder Count4 + Library Folder Count1 + + 5058 + + Track ID5058 + NameI Am A Man Of Constant Sorrow + ArtistThe Soggy Bottom Boys + ComposerTraditional, arr. by Carter Stanley + AlbumO Brother, Where Art Thou? + GenreSoundtrack + KindAAC audio file + Size4616382 + Total Time190007 + Disc Number1 + Disc Count1 + Track Number5 + Track Count19 + Year2000 + Date Modified2006-08-13T06:34:12Z + Date Added2009-10-03T14:57:49Z + Bit Rate192 + Sample Rate44100 + Play Count3 + Play Date3484847888 + Play Date UTC2014-06-05T15:48:08Z + Skip Count1 + Skip Date2014-05-16T15:54:37Z + Normalization926 + Compilation + Artwork Count1 + Sort ArtistSoggy Bottom Boys + Persistent IDADD47F08F4641389 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/O%20Brother,%20Where%20Art%20Thou_/05%20I%20Am%20A%20Man%20Of%20Constant%20Sorrow.m4a + File Folder Count4 + Library Folder Count1 + + 5060 + + Track ID5060 + NameHard Time Killing Floor Blues + ArtistChris Thomas King + ComposerNehemiah "Skip" James + AlbumO Brother, Where Art Thou? + GenreSoundtrack + KindAAC audio file + Size3948906 + Total Time162445 + Disc Number1 + Disc Count1 + Track Number6 + Track Count19 + Year2000 + Date Modified2006-08-13T06:34:10Z + Date Added2009-10-03T14:57:49Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3389531394 + Play Date UTC2011-05-29T10:59:54Z + Normalization714 + Compilation + Artwork Count1 + Persistent IDE3BCA575052CC74F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/O%20Brother,%20Where%20Art%20Thou_/06%20Hard%20Time%20Killing%20Floor%20Blues.m4a + File Folder Count4 + Library Folder Count1 + + 5062 + + Track ID5062 + NameI Am A Man Of Constant Sorrow (Instrumental) + ArtistJohn Hartford + ComposerTraditional, arr. by Norman Blake + AlbumO Brother, Where Art Thou? + GenreSoundtrack + KindAAC audio file + Size6532582 + Total Time269419 + Disc Number1 + Disc Count1 + Track Number7 + Track Count19 + Year2000 + Date Modified2006-08-13T06:34:08Z + Date Added2009-10-03T14:57:50Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3389531664 + Play Date UTC2011-05-29T11:04:24Z + Normalization493 + Compilation + Artwork Count1 + Persistent ID4AE883903F89BCDD + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/O%20Brother,%20Where%20Art%20Thou_/07%20I%20Am%20A%20Man%20Of%20Constant%20Sorrow%20(Instrumental).m4a + File Folder Count4 + Library Folder Count1 + + 5064 + + Track ID5064 + NameKeep On The Sunny Side + ArtistThe Whites + ComposerA.P. Carter + AlbumO Brother, Where Art Thou? + GenreSoundtrack + KindAAC audio file + Size5200282 + Total Time214318 + Disc Number1 + Disc Count1 + Track Number8 + Track Count19 + Year2000 + Date Modified2006-08-13T06:34:06Z + Date Added2009-10-03T14:57:50Z + Bit Rate192 + Sample Rate44100 + Play Count2 + Play Date3427382124 + Play Date UTC2012-08-09T13:05:24Z + Normalization908 + Compilation + Artwork Count1 + Sort ArtistWhites + Persistent ID8106C0A07415D208 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/O%20Brother,%20Where%20Art%20Thou_/08%20Keep%20On%20The%20Sunny%20Side.m4a + File Folder Count4 + Library Folder Count1 + + 5066 + + Track ID5066 + NameI'll Fly Away + ArtistAlison Krauss & Gillian Welch + ComposerAlbert E. Brumley + AlbumO Brother, Where Art Thou? + GenreSoundtrack + KindAAC audio file + Size5773826 + Total Time237886 + Disc Number1 + Disc Count1 + Track Number9 + Track Count19 + Year2000 + Date Modified2006-08-13T06:34:04Z + Date Added2009-10-03T14:57:50Z + Bit Rate192 + Sample Rate44100 + Normalization1056 + Compilation + Artwork Count1 + Persistent IDC9D278ACE1006EAE + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/O%20Brother,%20Where%20Art%20Thou_/09%20I'll%20Fly%20Away.m4a + File Folder Count4 + Library Folder Count1 + + 5068 + + Track ID5068 + NameDidn't Leave Nobody But The Baby + ArtistEmmylou Harris, Alison Krauss & Gillian Welch + ComposerTraditional, arr. by Alan Lomax, Mrs. Sidney Carter, Gillian Welch, and T Bone Burnett + AlbumO Brother, Where Art Thou? + GenreSoundtrack + KindAAC audio file + Size2882366 + Total Time117816 + Disc Number1 + Disc Count1 + Track Number10 + Track Count19 + Year2000 + Date Modified2006-08-13T06:34:02Z + Date Added2009-10-03T14:57:50Z + Bit Rate192 + Sample Rate44100 + Skip Count1 + Skip Date2014-05-16T15:51:35Z + Normalization616 + Compilation + Artwork Count1 + Persistent ID50CE2D60589CB100 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/O%20Brother,%20Where%20Art%20Thou_/10%20Didn't%20Leave%20Nobody%20But%20The%20Baby.m4a + File Folder Count4 + Library Folder Count1 + + 5070 + + Track ID5070 + NameIn the Highways + ArtistThe Peasall Sisters + ComposerMaybelle Carter + AlbumO Brother, Where Art Thou? + GenreSoundtrack + KindAAC audio file + Size2362155 + Total Time96152 + Disc Number1 + Disc Count1 + Track Number11 + Track Count19 + Year2000 + Date Modified2006-08-13T06:34:00Z + Date Added2009-10-03T14:57:50Z + Bit Rate192 + Sample Rate44100 + Normalization1332 + Compilation + Artwork Count1 + Sort ArtistPeasall Sisters + Persistent ID6BC700F7B255FFEA + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/O%20Brother,%20Where%20Art%20Thou_/11%20In%20the%20Highways.m4a + File Folder Count4 + Library Folder Count1 + + 5072 + + Track ID5072 + NameI Am Weary (Let Me Rest) + ArtistThe Cox Family + ComposerPete Roberts + AlbumO Brother, Where Art Thou? + GenreSoundtrack + KindAAC audio file + Size4718664 + Total Time194279 + Disc Number1 + Disc Count1 + Track Number12 + Track Count19 + Year2000 + Date Modified2006-08-13T06:33:58Z + Date Added2009-10-03T14:57:50Z + Bit Rate192 + Sample Rate44100 + Normalization713 + Compilation + Artwork Count1 + Sort ArtistCox Family + Persistent IDE065E4AC855E7469 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/O%20Brother,%20Where%20Art%20Thou_/12%20I%20Am%20Weary%20(Let%20Me%20Rest).m4a + File Folder Count4 + Library Folder Count1 + + 5074 + + Track ID5074 + NameI Am A Man Of Constant Sorrow (Instrumental) + ArtistJohn Hartford + ComposerTraditional, arr. by Ed Haley + AlbumO Brother, Where Art Thou? + GenreSoundtrack + KindAAC audio file + Size3755075 + Total Time154155 + Disc Number1 + Disc Count1 + Track Number13 + Track Count19 + Year2000 + Date Modified2006-08-13T06:33:56Z + Date Added2009-10-03T14:57:50Z + Bit Rate192 + Sample Rate44100 + Normalization187 + Compilation + Artwork Count1 + Persistent IDF6F1AAECA97CA1CB + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/O%20Brother,%20Where%20Art%20Thou_/13%20I%20Am%20A%20Man%20Of%20Constant%20Sorrow%20(Instrumental).m4a + File Folder Count4 + Library Folder Count1 + + 5076 + + Track ID5076 + NameO Death + ArtistRalph Stanley + ComposerTraditional, arr. by Ralph Stanley + AlbumO Brother, Where Art Thou? + GenreSoundtrack + KindAAC audio file + Size4847041 + Total Time199620 + Disc Number1 + Disc Count1 + Track Number14 + Track Count19 + Year2000 + Date Modified2006-08-13T06:33:54Z + Date Added2009-10-03T14:57:50Z + Bit Rate192 + Sample Rate44100 + Normalization587 + Compilation + Artwork Count1 + Persistent ID2CB73AE3DA730052 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/O%20Brother,%20Where%20Art%20Thou_/14%20O%20Death.m4a + File Folder Count4 + Library Folder Count1 + + 5078 + + Track ID5078 + NameIn The Jailhouse Now + ArtistThe Soggy Bottom Boys + ComposerJimmie Rodgers + AlbumO Brother, Where Art Thou? + GenreSoundtrack + KindAAC audio file + Size5243089 + Total Time216106 + Disc Number1 + Disc Count1 + Track Number15 + Track Count19 + Year2000 + Date Modified2006-08-13T06:33:52Z + Date Added2009-10-03T14:57:50Z + Bit Rate192 + Sample Rate44100 + Normalization1184 + Compilation + Artwork Count1 + Sort ArtistSoggy Bottom Boys + Persistent ID88F629F468389C54 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/O%20Brother,%20Where%20Art%20Thou_/15%20In%20The%20Jailhouse%20Now.m4a + File Folder Count4 + Library Folder Count1 + + 5080 + + Track ID5080 + NameI Am A Man Of Constant Sorrow + ArtistThe Soggy Bottom Boys + ComposerTraditional, arr. by Carter Stanley + AlbumO Brother, Where Art Thou? + GenreSoundtrack + KindAAC audio file + Size6232749 + Total Time256973 + Disc Number1 + Disc Count1 + Track Number16 + Track Count19 + Year2000 + Date Modified2006-08-13T06:33:50Z + Date Added2009-10-03T14:57:51Z + Bit Rate192 + Sample Rate44100 + Normalization1301 + Compilation + Artwork Count1 + Sort ArtistSoggy Bottom Boys + Persistent ID9C7AB944E53F3315 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/O%20Brother,%20Where%20Art%20Thou_/16%20I%20Am%20A%20Man%20Of%20Constant%20Sorrow.m4a + File Folder Count4 + Library Folder Count1 + + 5082 + + Track ID5082 + NameIndian War Whoop + ArtistJohn Hartford + ComposerHoyt Ming + AlbumO Brother, Where Art Thou? + GenreSoundtrack + KindAAC audio file + Size2224980 + Total Time90440 + Disc Number1 + Disc Count1 + Track Number17 + Track Count19 + Year2000 + Date Modified2006-08-13T06:33:48Z + Date Added2009-10-03T14:57:51Z + Bit Rate192 + Sample Rate44100 + Normalization1244 + Compilation + Artwork Count1 + Persistent ID7AC66E5A2188ECCD + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/O%20Brother,%20Where%20Art%20Thou_/17%20Indian%20War%20Whoop.m4a + File Folder Count4 + Library Folder Count1 + + 5084 + + Track ID5084 + NameLonesome Valley + ArtistThe Fairfield Four + ComposerTraditional, arr. by the Fairfield Four + AlbumO Brother, Where Art Thou? + GenreSoundtrack + KindAAC audio file + Size5997485 + Total Time247174 + Disc Number1 + Disc Count1 + Track Number18 + Track Count19 + Year2000 + Date Modified2006-08-13T06:33:46Z + Date Added2009-10-03T14:57:51Z + Bit Rate192 + Sample Rate44100 + Normalization1387 + Compilation + Artwork Count1 + Sort ArtistFairfield Four + Persistent IDD0DA1542F8DA4951 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/O%20Brother,%20Where%20Art%20Thou_/18%20Lonesome%20Valley.m4a + File Folder Count4 + Library Folder Count1 + + 5086 + + Track ID5086 + NameAngel Band + ArtistThe Stanley Brothers + ComposerTraditional, arr. by Ralph Stanley + AlbumO Brother, Where Art Thou? + GenreSoundtrack + KindAAC audio file + Size3312765 + Total Time135835 + Disc Number1 + Disc Count1 + Track Number19 + Track Count19 + Year1955 + Date Modified2006-08-13T06:33:44Z + Date Added2009-10-03T14:57:51Z + Bit Rate192 + Sample Rate44100 + Normalization723 + Compilation + Artwork Count1 + Sort ArtistStanley Brothers + Persistent ID7820EFED4F6C2F43 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/O%20Brother,%20Where%20Art%20Thou_/19%20Angel%20Band.m4a + File Folder Count4 + Library Folder Count1 + + 5088 + + Track ID5088 + NameNocturne No. 1 in B Flat Minor, Op. 9 No. 1 Larghetto + ArtistDaniel Barenboim + ComposerFrédéric Chopin + AlbumNocturnes + GenreClassical + KindAAC audio file + Size8293911 + Total Time343259 + Disc Number1 + Disc Count1 + Track Number1 + Track Count13 + Year1982 + Date Modified2006-09-05T15:16:38Z + Date Added2009-10-03T14:57:51Z + Bit Rate192 + Sample Rate44100 + Normalization341 + Compilation + Artwork Count1 + Persistent IDCBD0A2D8997FFE21 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Nocturnes/01%20Nocturne%20No.%201%20in%20B%20Flat%20Minor,%20Op.%209%20No.%201%20Larghetto.m4a + File Folder Count4 + Library Folder Count1 + + 5090 + + Track ID5090 + NameNocturne No. 2 in E Flat Major, Op. 9 No. 2 Andante + ArtistDaniel Barenboim + ComposerFrédéric Chopin + AlbumNocturnes + GenreClassical + KindAAC audio file + Size6657544 + Total Time273947 + Disc Number1 + Disc Count1 + Track Number2 + Track Count13 + Year1982 + Date Modified2006-09-05T15:16:38Z + Date Added2009-10-03T14:57:51Z + Bit Rate192 + Sample Rate44100 + Normalization262 + Compilation + Artwork Count1 + Persistent IDD72C1CF7AFFF2705 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Nocturnes/02%20Nocturne%20No.%202%20in%20E%20Flat%20Major,%20Op.%209%20No.%202%20Andante.m4a + File Folder Count4 + Library Folder Count1 + + 5092 + + Track ID5092 + NameNocturne No. 3 in B Major, Op. 9 No. 3 Allegretto + ArtistDaniel Barenboim + ComposerFrédéric Chopin + AlbumNocturnes + GenreClassical + KindAAC audio file + Size10586233 + Total Time436278 + Disc Number1 + Disc Count1 + Track Number3 + Track Count13 + Year1982 + Date Modified2006-09-05T15:16:36Z + Date Added2009-10-03T14:57:51Z + Bit Rate192 + Sample Rate44100 + Normalization595 + Compilation + Artwork Count1 + Persistent ID2298C2EC2E18AD92 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Nocturnes/03%20Nocturne%20No.%203%20in%20B%20Major,%20Op.%209%20No.%203%20Allegretto.m4a + File Folder Count4 + Library Folder Count1 + + 5094 + + Track ID5094 + NameNocturne No. 4 in F Major, Op. 15 No. 1 Andante cantabile + ArtistDaniel Barenboim + ComposerFrédéric Chopin + AlbumNocturnes + GenreClassical + KindAAC audio file + Size6580443 + Total Time270743 + Disc Number1 + Disc Count1 + Track Number4 + Track Count13 + Year1982 + Date Modified2006-09-05T15:16:36Z + Date Added2009-10-03T14:57:52Z + Bit Rate192 + Sample Rate44100 + Normalization468 + Compilation + Artwork Count1 + Persistent ID97E89C43E7DC2640 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Nocturnes/04%20Nocturne%20No.%204%20in%20F%20Major,%20Op.%2015%20No.%201%20Andante%20cantabile.m4a + File Folder Count4 + Library Folder Count1 + + 5096 + + Track ID5096 + NameNocturne No. 7 in C Sharp Minor, Op. 27 No. 1 Larghetto + ArtistDaniel Barenboim + ComposerFrédéric Chopin + AlbumNocturnes + GenreClassical + KindAAC audio file + Size7195772 + Total Time296169 + Disc Number1 + Disc Count1 + Track Number5 + Track Count13 + Year1982 + Date Modified2006-09-05T15:16:36Z + Date Added2009-10-03T14:57:52Z + Bit Rate192 + Sample Rate44100 + Normalization769 + Compilation + Artwork Count1 + Persistent ID862014079186E9E3 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Nocturnes/05%20Nocturne%20No.%207%20in%20C%20Sharp%20Minor,%20Op.%2027%20No.%201%20Larghetto.m4a + File Folder Count4 + Library Folder Count1 + + 5098 + + Track ID5098 + NameNocturne No. 8 in D Flat Major, Op. 27 No. 2 Lento sostenuto + ArtistDaniel Barenboim + ComposerFrédéric Chopin + AlbumNocturnes + GenreClassical + KindAAC audio file + Size9482691 + Total Time390674 + Disc Number1 + Disc Count1 + Track Number6 + Track Count13 + Year1982 + Date Modified2006-09-05T15:16:36Z + Date Added2009-10-03T14:57:52Z + Bit Rate192 + Sample Rate44100 + Normalization293 + Compilation + Artwork Count1 + Persistent ID4B8700C63C3ACD5D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Nocturnes/06%20Nocturne%20No.%208%20in%20D%20Flat%20Major,%20Op.%2027%20No.%202%20Lento%20sostenuto.m4a + File Folder Count4 + Library Folder Count1 + + 5100 + + Track ID5100 + NameNocturne No. 9 in B Major, Op. 32 No. 1 Andante sostenuto + ArtistDaniel Barenboim + ComposerFrédéric Chopin + AlbumNocturnes + GenreClassical + KindAAC audio file + Size7826656 + Total Time322337 + Disc Number1 + Disc Count1 + Track Number7 + Track Count13 + Year1982 + Date Modified2006-09-05T15:16:34Z + Date Added2009-10-03T14:57:52Z + Bit Rate192 + Sample Rate44100 + Normalization404 + Compilation + Artwork Count1 + Persistent ID1D540855AD568E71 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Nocturnes/07%20Nocturne%20No.%209%20in%20B%20Major,%20Op.%2032%20No.%201%20Andante%20sostenuto.m4a + File Folder Count4 + Library Folder Count1 + + 5102 + + Track ID5102 + NameNocturne No. 10 in A Flat Major, Op. 32 No. 2 Lento + ArtistDaniel Barenboim + ComposerFrédéric Chopin + AlbumNocturnes + GenreClassical + KindAAC audio file + Size8304793 + Total Time342005 + Disc Number1 + Disc Count1 + Track Number8 + Track Count13 + Year1982 + Date Modified2006-09-05T15:16:34Z + Date Added2009-10-03T14:57:52Z + Bit Rate192 + Sample Rate44100 + Normalization422 + Compilation + Artwork Count1 + Persistent IDF3467781495F3AAE + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Nocturnes/08%20Nocturne%20No.%2010%20in%20A%20Flat%20Major,%20Op.%2032%20No.%202%20Lento.m4a + File Folder Count4 + Library Folder Count1 + + 5104 + + Track ID5104 + NameNocturne No. 12 in G Major, Op. 37 No. 2 Andantino + ArtistDaniel Barenboim + ComposerFrédéric Chopin + AlbumNocturnes + GenreClassical + KindAAC audio file + Size8426124 + Total Time347020 + Disc Number1 + Disc Count1 + Track Number9 + Track Count13 + Year1982 + Date Modified2006-09-05T15:16:34Z + Date Added2009-10-03T14:57:52Z + Bit Rate192 + Sample Rate44100 + Normalization244 + Compilation + Artwork Count1 + Persistent ID19D8CF914FD2008F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Nocturnes/09%20Nocturne%20No.%2012%20in%20G%20Major,%20Op.%2037%20No.%202%20Andantino.m4a + File Folder Count4 + Library Folder Count1 + + 5106 + + Track ID5106 + NameNocturne No. 13 in C Minor, Op. 48 No. 1 Lento + ArtistDaniel Barenboim + ComposerFrédéric Chopin + AlbumNocturnes + GenreClassical + KindAAC audio file + Size9116342 + Total Time377346 + Disc Number1 + Disc Count1 + Track Number10 + Track Count13 + Year1982 + Date Modified2006-09-05T15:16:34Z + Date Added2009-10-03T14:57:52Z + Bit Rate192 + Sample Rate44100 + Normalization1010 + Compilation + Artwork Count1 + Persistent ID36FB120420637528 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Nocturnes/10%20Nocturne%20No.%2013%20in%20C%20Minor,%20Op.%2048%20No.%201%20Lento.m4a + File Folder Count4 + Library Folder Count1 + + 5108 + + Track ID5108 + NameNocturne No. 15 in F Minor, Op. 55 No. 1 Andante + ArtistDaniel Barenboim + ComposerFrédéric Chopin + AlbumNocturnes + GenreClassical + KindAAC audio file + Size6808855 + Total Time280193 + Disc Number1 + Disc Count1 + Track Number11 + Track Count13 + Year1982 + Date Modified2006-09-05T15:16:34Z + Date Added2009-10-03T14:57:52Z + Bit Rate192 + Sample Rate44100 + Normalization386 + Compilation + Artwork Count1 + Persistent ID1E466C102E88C03F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Nocturnes/11%20Nocturne%20No.%2015%20in%20F%20Minor,%20Op.%2055%20No.%201%20Andante.m4a + File Folder Count4 + Library Folder Count1 + + 5110 + + Track ID5110 + NameNocturne No. 18 in E Major, Op. 62 No. 2 Lento + ArtistDaniel Barenboim + ComposerFrédéric Chopin + AlbumNocturnes + GenreClassical + KindAAC audio file + Size9139986 + Total Time376510 + Disc Number1 + Disc Count1 + Track Number12 + Track Count13 + Year1982 + Date Modified2006-09-05T15:16:32Z + Date Added2009-10-03T14:57:52Z + Bit Rate192 + Sample Rate44100 + Normalization313 + Compilation + Artwork Count1 + Persistent ID0B0EA39E9D2EBE81 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Nocturnes/12%20Nocturne%20No.%2018%20in%20E%20Major,%20Op.%2062%20No.%202%20Lento.m4a + File Folder Count4 + Library Folder Count1 + + 5112 + + Track ID5112 + NameNocturne No. 19 in E Minor, Op. Post. 72 No. 1 Andante + ArtistDaniel Barenboim + ComposerFrédéric Chopin + AlbumNocturnes + GenreClassical + KindAAC audio file + Size6385080 + Total Time263010 + Disc Number1 + Disc Count1 + Track Number13 + Track Count13 + Year1982 + Date Modified2006-09-05T15:16:32Z + Date Added2009-10-03T14:57:52Z + Bit Rate192 + Sample Rate44100 + Normalization329 + Compilation + Artwork Count1 + Persistent ID5F7F1429A64387DD + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Nocturnes/13%20Nocturne%20No.%2019%20in%20E%20Minor,%20Op.%20Post.%2072%20No.%201%20Andante.m4a + File Folder Count4 + Library Folder Count1 + + 5114 + + Track ID5114 + NameNaqoyqatsi + ArtistPhilip Glass + ComposerPhilip Glass + AlbumNaqoyqatsi + GenreSoundtrack + KindAAC audio file + Size11571691 + Total Time476077 + Disc Number1 + Disc Count1 + Track Number1 + Track Count11 + Year2002 + Date Modified2006-07-27T16:20:08Z + Date Added2009-10-03T14:57:53Z + Bit Rate192 + Sample Rate44100 + Normalization390 + Compilation + Artwork Count1 + Persistent ID2A3E6D7B2827F877 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Naqoyqatsi/01%20Naqoyqatsi.m4a + File Folder Count4 + Library Folder Count1 + + 5116 + + Track ID5116 + NamePrimacy of Number + ArtistPhilip Glass + ComposerPhilip Glass + AlbumNaqoyqatsi + GenreSoundtrack + KindAAC audio file + Size10026757 + Total Time412245 + Disc Number1 + Disc Count1 + Track Number2 + Track Count11 + Year2002 + Date Modified2006-07-27T16:20:08Z + Date Added2009-10-03T14:57:53Z + Bit Rate192 + Sample Rate44100 + Normalization1054 + Compilation + Artwork Count1 + Persistent ID057F8FE5C1F409F9 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Naqoyqatsi/02%20Primacy%20of%20Number.m4a + File Folder Count4 + Library Folder Count1 + + 5118 + + Track ID5118 + NameMassman + ArtistPhilip Glass + ComposerPhilip Glass + AlbumNaqoyqatsi + GenreSoundtrack + KindAAC audio file + Size14281459 + Total Time588067 + Disc Number1 + Disc Count1 + Track Number3 + Track Count11 + Year2002 + Date Modified2006-07-27T16:20:10Z + Date Added2009-10-03T14:57:53Z + Bit Rate192 + Sample Rate44100 + Normalization1203 + Compilation + Artwork Count1 + Persistent ID3C0C3B39D6BE28CE + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Naqoyqatsi/03%20Massman.m4a + File Folder Count4 + Library Folder Count1 + + 5120 + + Track ID5120 + NameNew World + ArtistPhilip Glass + ComposerPhilip Glass + AlbumNaqoyqatsi + GenreSoundtrack + KindAAC audio file + Size4527551 + Total Time184411 + Disc Number1 + Disc Count1 + Track Number4 + Track Count11 + Year2002 + Date Modified2006-07-27T16:20:10Z + Date Added2009-10-03T14:57:53Z + Bit Rate192 + Sample Rate44100 + Normalization51 + Compilation + Artwork Count1 + Persistent ID266A5B0D731CDF7E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Naqoyqatsi/04%20New%20World.m4a + File Folder Count4 + Library Folder Count1 + + 5122 + + Track ID5122 + NameReligion + ArtistPhilip Glass + ComposerPhilip Glass + AlbumNaqoyqatsi + GenreSoundtrack + KindAAC audio file + Size13153287 + Total Time541441 + Disc Number1 + Disc Count1 + Track Number5 + Track Count11 + Year2002 + Date Modified2006-07-27T16:20:12Z + Date Added2009-10-03T14:57:53Z + Bit Rate192 + Sample Rate44100 + Normalization955 + Compilation + Artwork Count1 + Persistent ID84E2F2BDF801FB1A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Naqoyqatsi/05%20Religion.m4a + File Folder Count4 + Library Folder Count1 + + 5124 + + Track ID5124 + NameMedia Weather + ArtistPhilip Glass + ComposerPhilip Glass + AlbumNaqoyqatsi + GenreSoundtrack + KindAAC audio file + Size11530368 + Total Time474382 + Disc Number1 + Disc Count1 + Track Number6 + Track Count11 + Year2002 + Date Modified2006-07-27T16:20:12Z + Date Added2009-10-03T14:57:53Z + Bit Rate192 + Sample Rate44100 + Normalization271 + Compilation + Artwork Count1 + Persistent ID2706F1EF4F59E89C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Naqoyqatsi/06%20Media%20Weather.m4a + File Folder Count4 + Library Folder Count1 + + 5126 + + Track ID5126 + NameOld World + ArtistPhilip Glass + ComposerPhilip Glass + AlbumNaqoyqatsi + GenreSoundtrack + KindAAC audio file + Size4630785 + Total Time188707 + Disc Number1 + Disc Count1 + Track Number7 + Track Count11 + Year2002 + Date Modified2006-07-27T16:20:12Z + Date Added2009-10-03T14:57:54Z + Bit Rate192 + Sample Rate44100 + Normalization13 + Compilation + Artwork Count1 + Persistent ID83C048F0CB6EEFB0 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Naqoyqatsi/07%20Old%20World.m4a + File Folder Count4 + Library Folder Count1 + + 5128 + + Track ID5128 + NameIntensive Time + ArtistPhilip Glass + ComposerPhilip Glass + AlbumNaqoyqatsi + GenreSoundtrack + KindAAC audio file + Size11885293 + Total Time489034 + Disc Number1 + Disc Count1 + Track Number8 + Track Count11 + Year2002 + Date Modified2006-07-27T16:20:14Z + Date Added2009-10-03T14:57:54Z + Bit Rate192 + Sample Rate44100 + Normalization1139 + Compilation + Artwork Count1 + Persistent ID4DD5FA03AF3C50EF + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Naqoyqatsi/08%20Intensive%20Time.m4a + File Folder Count4 + Library Folder Count1 + + 5130 + + Track ID5130 + NamePoint Blank + ArtistPhilip Glass + ComposerPhilip Glass + AlbumNaqoyqatsi + GenreSoundtrack + KindAAC audio file + Size16446622 + Total Time677533 + Disc Number1 + Disc Count1 + Track Number9 + Track Count11 + Year2002 + Date Modified2006-07-27T16:20:16Z + Date Added2009-10-03T14:57:54Z + Bit Rate192 + Sample Rate44100 + Normalization886 + Compilation + Artwork Count1 + Persistent ID8358BDE29E696443 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Naqoyqatsi/09%20Point%20Blank.m4a + File Folder Count4 + Library Folder Count1 + + 5132 + + Track ID5132 + NameThe Vivid Unknown + ArtistPhilip Glass + ComposerPhilip Glass + AlbumNaqoyqatsi + GenreSoundtrack + KindAAC audio file + Size10417330 + Total Time428383 + Disc Number1 + Disc Count1 + Track Number10 + Track Count11 + Year2002 + Date Modified2006-07-27T16:20:16Z + Date Added2009-10-03T14:57:54Z + Bit Rate192 + Sample Rate44100 + Normalization88 + Compilation + Artwork Count1 + Sort NameVivid Unknown + Persistent ID03F5B547A5B407F2 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Naqoyqatsi/10%20The%20Vivid%20Unknown.m4a + File Folder Count4 + Library Folder Count1 + + 5134 + + Track ID5134 + NameDefinition + ArtistPhilip Glass + ComposerPhilip Glass + AlbumNaqoyqatsi + GenreSoundtrack + KindAAC audio file + Size4175868 + Total Time170200 + Disc Number1 + Disc Count1 + Track Number11 + Track Count11 + Year2002 + Date Modified2006-07-27T16:20:16Z + Date Added2009-10-03T14:57:54Z + Bit Rate192 + Sample Rate44100 + Normalization424 + Compilation + Artwork Count1 + Persistent ID4834E15A737B795F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Naqoyqatsi/11%20Definition.m4a + File Folder Count4 + Library Folder Count1 + + 5136 + + Track ID5136 + NameWater Poems + ArtistPt. Hari Prasad Chaurasia and others + ComposerHari Prasad Chaurasia + AlbumMusic of the Rivers + GenreWorld + KindAAC audio file + Size42094058 + Total Time1738940 + Disc Number1 + Disc Count1 + Track Number1 + Track Count3 + Year1993 + Date Modified2006-07-30T08:18:08Z + Date Added2009-10-03T14:57:55Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Compilation + Artwork Count1 + Persistent IDAB6C99C63A7A724B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Music%20of%20the%20Rivers/01%20Water%20Poems%201.m4a + File Folder Count4 + Library Folder Count1 + + 5138 + + Track ID5138 + NameSong of the River + ArtistPt. Hari Prasad Chaurasia and others + ComposerHari Prasad Chaurasia + AlbumMusic of the Rivers + GenreWorld + KindAAC audio file + Size23286402 + Total Time961745 + Disc Number1 + Disc Count1 + Track Number2 + Track Count3 + Year1993 + Date Modified2006-07-30T08:18:08Z + Date Added2009-10-03T14:57:55Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3349418689 + Play Date UTC2010-02-19T04:34:49Z + Normalization696 + Compilation + Artwork Count1 + Persistent IDEB9A74A2207FF8E8 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Music%20of%20the%20Rivers/02%20Song%20of%20the%20River%201.m4a + File Folder Count4 + Library Folder Count1 + + 5140 + + Track ID5140 + NameDelta - Journey to the Sea + ArtistPt. Hari Prasad Chaurasia and others + ComposerHari Prasad Chaurasia + AlbumMusic of the Rivers + GenreWorld + KindAAC audio file + Size19790369 + Total Time817271 + Disc Number1 + Disc Count1 + Track Number3 + Track Count3 + Year1993 + Date Modified2006-07-30T08:18:10Z + Date Added2009-10-03T14:57:55Z + Bit Rate192 + Sample Rate44100 + Normalization1215 + Compilation + Artwork Count1 + Persistent IDADADF5D23F45CC80 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Music%20of%20the%20Rivers/03%20Delta%20-%20Journey%20to%20the%20Sea%201.m4a + File Folder Count4 + Library Folder Count1 + + 5142 + + Track ID5142 + NameSandstorm + ArtistZakir Hussain + ComposerZakir Hussain + AlbumMusic of The Desserts + GenreWorld + KindAAC audio file + Size8189627 + Total Time337616 + Track Number1 + Track Count6 + Year1993 + Date Modified2006-07-28T15:05:54Z + Date Added2009-10-03T14:57:55Z + Bit Rate192 + Sample Rate44100 + Normalization561 + Compilation + Artwork Count1 + Persistent ID52F7DF669043BDC7 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Music%20of%20The%20Desserts/01%20Sandstorm.m4a + File Folder Count4 + Library Folder Count1 + + 5144 + + Track ID5144 + NameThe Great Indian Dessert + ArtistZakir Hussain + ComposerZakir Hussain + AlbumMusic of The Desserts + GenreWorld + KindAAC audio file + Size17501583 + Total Time722417 + Track Number2 + Track Count6 + Year1993 + Date Modified2006-07-28T15:05:56Z + Date Added2009-10-03T14:57:56Z + Bit Rate192 + Sample Rate44100 + Normalization579 + Compilation + Artwork Count1 + Sort NameGreat Indian Dessert + Persistent IDE8A18A82D7DB4302 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Music%20of%20The%20Desserts/02%20The%20Great%20Indian%20Dessert.m4a + File Folder Count4 + Library Folder Count1 + + 5146 + + Track ID5146 + NameLadakh, The Ice Desert + ArtistZakir Hussain + ComposerZakir Hussain + AlbumMusic of The Desserts + GenreWorld + KindAAC audio file + Size15594708 + Total Time643632 + Track Number3 + Track Count6 + Year1993 + Date Modified2006-07-28T15:05:56Z + Date Added2009-10-03T14:57:56Z + Bit Rate192 + Sample Rate44100 + Normalization610 + Compilation + Artwork Count1 + Persistent IDF31EAAF1E125B6CC + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Music%20of%20The%20Desserts/03%20Ladakh,%20The%20Ice%20Desert.m4a + File Folder Count4 + Library Folder Count1 + + 5148 + + Track ID5148 + NameDesert Heartbeat + ArtistZakir Hussain + ComposerZakir Hussain + AlbumMusic of The Desserts + GenreWorld + KindAAC audio file + Size15634351 + Total Time645257 + Track Number4 + Track Count6 + Year1993 + Date Modified2006-07-28T15:05:56Z + Date Added2009-10-03T14:57:56Z + Bit Rate192 + Sample Rate44100 + Normalization678 + Compilation + Artwork Count1 + Persistent IDC1064B63865F68EF + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Music%20of%20The%20Desserts/04%20Desert%20Heartbeat.m4a + File Folder Count4 + Library Folder Count1 + + 5150 + + Track ID5150 + NameWhere Desert Meet + ArtistZakir Hussain + ComposerZakir Hussain + AlbumMusic of The Desserts + GenreWorld + KindAAC audio file + Size14384757 + Total Time593616 + Track Number5 + Track Count6 + Year1993 + Date Modified2006-07-28T15:05:58Z + Date Added2009-10-03T14:57:56Z + Bit Rate192 + Sample Rate44100 + Normalization876 + Compilation + Artwork Count1 + Persistent ID7CB22F49F01459D5 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Music%20of%20The%20Desserts/05%20Where%20Desert%20Meet.m4a + File Folder Count4 + Library Folder Count1 + + 5152 + + Track ID5152 + NameNomads + ArtistZakir Hussain + ComposerZakir Hussain + AlbumMusic of The Desserts + GenreWorld + KindAAC audio file + Size13390716 + Total Time552540 + Track Number6 + Track Count6 + Year1993 + Date Modified2006-07-28T15:05:58Z + Date Added2009-10-03T14:57:56Z + Bit Rate192 + Sample Rate44100 + Normalization893 + Compilation + Artwork Count1 + Persistent ID32127306D62BAEB0 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Music%20of%20The%20Desserts/06%20Nomads.m4a + File Folder Count4 + Library Folder Count1 + + 5154 + + Track ID5154 + NameWhat Silence Said + ArtistSusheela Raman + AlbumMusic For Crocodiles + GenreWorld + KindAAC audio file + Size6784515 + Total Time280983 + Track Number1 + Track Count13 + Year2005 + Date Modified2006-08-07T09:55:14Z + Date Added2009-10-03T14:57:56Z + Bit Rate192 + Sample Rate44100 + Play Count3 + Play Date3441562150 + Play Date UTC2013-01-20T15:59:10Z + Skip Count1 + Skip Date2014-05-28T15:51:08Z + Normalization1244 + Compilation + Artwork Count1 + Persistent ID268362DDAF5C2F6F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Music%20For%20Crocodiles/01%20What%20Silence%20Said.m4a + File Folder Count4 + Library Folder Count1 + + 5156 + + Track ID5156 + NameMusic For Crocodiles + ArtistSusheela Raman + AlbumMusic For Crocodiles + GenreWorld + KindAAC audio file + Size7263665 + Total Time299977 + Track Number2 + Track Count13 + Year2005 + Date Modified2006-08-07T09:55:14Z + Date Added2009-10-03T14:57:57Z + Bit Rate192 + Sample Rate44100 + Play Count2 + Play Date3424522742 + Play Date UTC2012-07-07T10:49:02Z + Normalization1299 + Compilation + Artwork Count1 + Persistent ID428D83A4763E1377 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Music%20For%20Crocodiles/02%20Music%20For%20Crocodiles.m4a + File Folder Count4 + Library Folder Count1 + + 5158 + + Track ID5158 + NameLight Years Intro + ArtistSusheela Raman + AlbumMusic For Crocodiles + GenreWorld + KindAAC audio file + Size2473260 + Total Time100796 + Track Number3 + Track Count13 + Year2005 + Date Modified2006-08-07T09:55:14Z + Date Added2009-10-03T14:57:57Z + Bit Rate192 + Sample Rate44100 + Play Count2 + Play Date3424522843 + Play Date UTC2012-07-07T10:50:43Z + Normalization543 + Compilation + Artwork Count1 + Persistent IDCD7A03226BC79769 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Music%20For%20Crocodiles/03%20Light%20Years%20Intro.m4a + File Folder Count4 + Library Folder Count1 + + 5160 + + Track ID5160 + NameLight Years + ArtistSusheela Raman + AlbumMusic For Crocodiles + GenreWorld + KindAAC audio file + Size8670568 + Total Time357748 + Track Number4 + Track Count13 + Year2005 + Date Modified2006-08-07T09:55:14Z + Date Added2009-10-03T14:57:57Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3424523201 + Play Date UTC2012-07-07T10:56:41Z + Normalization1259 + Compilation + Artwork Count1 + Persistent ID7EFA7FD30D0F2680 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Music%20For%20Crocodiles/04%20Light%20Years.m4a + File Folder Count4 + Library Folder Count1 + + 5162 + + Track ID5162 + NameThe Same Song + ArtistSusheela Raman + AlbumMusic For Crocodiles + GenreWorld + KindAAC audio file + Size6041432 + Total Time249148 + Track Number5 + Track Count13 + Year2005 + Date Modified2006-08-07T09:55:12Z + Date Added2009-10-03T14:57:57Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3424523450 + Play Date UTC2012-07-07T11:00:50Z + Normalization1244 + Compilation + Artwork Count1 + Sort NameSame Song + Persistent ID6D9EE18D975C9227 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Music%20For%20Crocodiles/05%20The%20Same%20Song.m4a + File Folder Count4 + Library Folder Count1 + + 5164 + + Track ID5164 + NameIntro + ArtistSusheela Raman + AlbumMusic For Crocodiles + GenreWorld + KindAAC audio file + Size2373275 + Total Time96616 + Track Number6 + Track Count13 + Year2005 + Date Modified2006-08-07T09:55:12Z + Date Added2009-10-03T14:57:57Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3424523547 + Play Date UTC2012-07-07T11:02:27Z + Normalization254 + Compilation + Artwork Count1 + Persistent IDC8F0C5688B3E7BC0 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Music%20For%20Crocodiles/06%20Intro.m4a + File Folder Count4 + Library Folder Count1 + + 5166 + + Track ID5166 + NameMeanwhile + ArtistSusheela Raman + AlbumMusic For Crocodiles + GenreWorld + KindAAC audio file + Size5622381 + Total Time232430 + Track Number7 + Track Count13 + Year2005 + Date Modified2006-08-07T09:55:12Z + Date Added2009-10-03T14:57:57Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3424523779 + Play Date UTC2012-07-07T11:06:19Z + Normalization1244 + Compilation + Artwork Count1 + Persistent ID30F61BA41C1F98D6 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Music%20For%20Crocodiles/07%20Meanwhile.m4a + File Folder Count4 + Library Folder Count1 + + 5168 + + Track ID5168 + NameChordhiya + ArtistSusheela Raman + AlbumMusic For Crocodiles + GenreWorld + KindAAC audio file + Size8189375 + Total Time337872 + Track Number8 + Track Count13 + Year2005 + Date Modified2006-08-07T09:55:12Z + Date Added2009-10-03T14:57:57Z + Bit Rate192 + Sample Rate44100 + Normalization1420 + Compilation + Artwork Count1 + Persistent IDBC25E5F0C4E2CF87 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Music%20For%20Crocodiles/08%20Chordhiya.m4a + File Folder Count4 + Library Folder Count1 + + 5170 + + Track ID5170 + NameIdi Samayam + ArtistSusheela Raman + AlbumMusic For Crocodiles + GenreWorld + KindAAC audio file + Size8068233 + Total Time332856 + Track Number9 + Track Count13 + Year2005 + Date Modified2006-08-07T09:55:12Z + Date Added2009-10-03T14:57:58Z + Bit Rate192 + Sample Rate44100 + Normalization1231 + Compilation + Artwork Count1 + Persistent IDE72B722E95A58A58 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Music%20For%20Crocodiles/09%20Idi%20Samayam.m4a + File Folder Count4 + Library Folder Count1 + + 5172 + + Track ID5172 + NameL'ame Volatile + ArtistSusheela Raman + AlbumMusic For Crocodiles + GenreWorld + KindAAC audio file + Size5242362 + Total Time216083 + Track Number10 + Track Count13 + Year2005 + Date Modified2006-08-07T09:55:12Z + Date Added2009-10-03T14:57:58Z + Bit Rate192 + Sample Rate44100 + Play Count2 + Play Date3484157084 + Play Date UTC2014-05-28T15:54:44Z + Normalization1259 + Compilation + Artwork Count1 + Persistent IDC920E073626B1A99 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Music%20For%20Crocodiles/10%20L'ame%20Volatile.m4a + File Folder Count4 + Library Folder Count1 + + 5174 + + Track ID5174 + NameIntro + ArtistSusheela Raman + AlbumMusic For Crocodiles + GenreWorld + KindAAC audio file + Size2591553 + Total Time105719 + Track Number11 + Track Count13 + Year2005 + Date Modified2006-08-07T09:55:12Z + Date Added2009-10-03T14:57:58Z + Bit Rate192 + Sample Rate44100 + Normalization1148 + Compilation + Artwork Count1 + Persistent IDBDF0294676AFF8F1 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Music%20For%20Crocodiles/11%20Intro.m4a + File Folder Count4 + Library Folder Count1 + + 5176 + + Track ID5176 + NameSharavana + ArtistSusheela Raman + AlbumMusic For Crocodiles + GenreWorld + KindAAC audio file + Size8920276 + Total Time368081 + Track Number12 + Track Count13 + Year2005 + Date Modified2006-08-07T09:55:12Z + Date Added2009-10-03T14:57:58Z + Bit Rate192 + Sample Rate44100 + Normalization1149 + Compilation + Artwork Count1 + Persistent ID4B00A657F97D7C4A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Music%20For%20Crocodiles/12%20Sharavana.m4a + File Folder Count4 + Library Folder Count1 + + 5178 + + Track ID5178 + NameLeela + ArtistSusheela Raman + AlbumMusic For Crocodiles + GenreWorld + KindAAC audio file + Size5517932 + Total Time229202 + Track Number13 + Track Count13 + Year2005 + Date Modified2006-08-07T09:55:12Z + Date Added2009-10-03T14:57:58Z + Bit Rate192 + Sample Rate44100 + Normalization1248 + Compilation + Artwork Count1 + Persistent ID3BB35D00AD68044F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Music%20For%20Crocodiles/13%20Leela.m4a + File Folder Count4 + Library Folder Count1 + + 5180 + + Track ID5180 + NameIn Dinon + ArtistSoham + ComposerPritam + AlbumMetro + GenreSoundtrack + KindAAC audio file + Size9477156 + Total Time401160 + Disc Number1 + Disc Count1 + Track Number1 + Track Count12 + Year2007 + Date Modified2008-09-28T07:57:08Z + Date Added2009-10-03T14:58:00Z + Bit Rate186 + Sample Rate44100 + Play Count2 + Play Date3453390996 + Play Date UTC2013-06-06T13:46:36Z + Normalization4153 + Compilation + Artwork Count1 + Persistent IDB31AC7866BBB4D84 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Metro/01%20In%20Dinon.m4a + File Folder Count4 + Library Folder Count1 + + 5182 + + Track ID5182 + NameAlvida + ArtistFeat, KK + ComposerPritam + AlbumMetro + GenreSoundtrack + KindAAC audio file + Size8356703 + Total Time340746 + Disc Number1 + Disc Count1 + Track Number2 + Track Count12 + Year2007 + Date Modified2008-09-28T07:57:07Z + Date Added2009-10-03T14:58:00Z + Bit Rate193 + Sample Rate44100 + Skip Count1 + Skip Date2013-07-06T11:17:24Z + Normalization6743 + Compilation + Artwork Count1 + Persistent IDB4C576A4D46EE559 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Metro/02%20Alvida.m4a + File Folder Count4 + Library Folder Count1 + + 5184 + + Track ID5184 + NameO Meri Jaan + ArtistFeat, KK + ComposerPritam + AlbumMetro + GenreSoundtrack + KindAAC audio file + Size7531492 + Total Time305960 + Disc Number1 + Disc Count1 + Track Number3 + Track Count12 + Year2007 + Date Modified2008-09-28T07:57:07Z + Date Added2009-10-03T14:58:01Z + Bit Rate194 + Sample Rate44100 + Normalization6994 + Compilation + Artwork Count1 + Persistent IDA4BA47F10B96E583 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Metro/03%20O%20Meri%20Jaan.m4a + File Folder Count4 + Library Folder Count1 + + 5186 + + Track ID5186 + NameRishte + ArtistJames + ComposerPritam + AlbumMetro + GenreSoundtrack + KindAAC audio file + Size10719327 + Total Time443040 + Disc Number1 + Disc Count1 + Track Number4 + Track Count12 + Year2007 + Date Modified2008-09-28T07:57:06Z + Date Added2009-10-03T14:58:01Z + Bit Rate191 + Sample Rate44100 + Skip Count1 + Skip Date2013-07-07T08:50:47Z + Normalization6003 + Compilation + Artwork Count1 + Persistent IDCAFABD4C998B3EBB + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Metro/04%20Rishte.m4a + File Folder Count4 + Library Folder Count1 + + 5188 + + Track ID5188 + NameBaatein Kuchh Ankahee Si (Unplugged) + ArtistSuhail + ComposerPritam + AlbumMetro + GenreSoundtrack + KindAAC audio file + Size6159044 + Total Time261560 + Disc Number1 + Disc Count1 + Track Number5 + Track Count12 + Year2007 + Date Modified2008-09-28T07:57:06Z + Date Added2009-10-03T14:58:01Z + Bit Rate185 + Sample Rate44100 + Normalization2386 + Compilation + Artwork Count1 + Persistent IDA280DC29BB296754 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Metro/05%20Baatein%20Kuchh%20Ankahee%20Si%20(Unplugged).m4a + File Folder Count4 + Library Folder Count1 + + 5190 + + Track ID5190 + NameKar Salaam + ArtistPritam, Suhail & Soham + ComposerPritam + AlbumMetro + GenreSoundtrack + KindAAC audio file + Size5835386 + Total Time238360 + Disc Number1 + Disc Count1 + Track Number6 + Track Count12 + Year2007 + Date Modified2008-09-28T07:57:05Z + Date Added2009-10-03T14:58:01Z + Bit Rate193 + Sample Rate44100 + Normalization10377 + Compilation + Artwork Count1 + Persistent ID3556D14B2CBD17C1 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Metro/06%20Kar%20Salaam.m4a + File Folder Count4 + Library Folder Count1 + + 5192 + + Track ID5192 + NameAlvida Reprise + ArtistJames + ComposerPritam + AlbumMetro + GenreSoundtrack + KindAAC audio file + Size8578311 + Total Time349760 + Disc Number1 + Disc Count1 + Track Number7 + Track Count12 + Year2007 + Date Modified2008-09-28T07:57:05Z + Date Added2009-10-03T14:58:01Z + Bit Rate193 + Sample Rate44100 + Skip Count1 + Skip Date2013-07-07T08:53:33Z + Normalization6873 + Compilation + Artwork Count1 + Persistent IDA0EC274F00BA7A81 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Metro/07%20Alvida%20Reprise.m4a + File Folder Count4 + Library Folder Count1 + + 5194 + + Track ID5194 + NameBaatein Kuchh Ankahee Si + ArtistFeat. Adnan Sami + ComposerPritam + AlbumMetro + GenreSoundtrack + KindAAC audio file + Size6693252 + Total Time277973 + Disc Number1 + Disc Count1 + Track Number8 + Track Count12 + Year2007 + Date Modified2008-09-28T07:57:05Z + Date Added2009-10-03T14:58:01Z + Bit Rate190 + Sample Rate44100 + Normalization3786 + Compilation + Artwork Count1 + Persistent ID3E18F32B8F5759E0 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Metro/08%20Baatein%20Kuchh%20Ankahee%20Si.m4a + File Folder Count4 + Library Folder Count1 + + 5196 + + Track ID5196 + NameO Meri Jaan Reprise + ArtistSuhail + ComposerPritam + AlbumMetro + GenreSoundtrack + KindAAC audio file + Size7469297 + Total Time304960 + Disc Number1 + Disc Count1 + Track Number9 + Track Count12 + Year2007 + Date Modified2008-09-28T07:57:04Z + Date Added2009-10-03T14:58:01Z + Bit Rate193 + Sample Rate44100 + Normalization6962 + Compilation + Artwork Count1 + Persistent IDEDC1B9F0F1866639 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Metro/09%20O%20Meri%20Jaan%20Reprise.m4a + File Folder Count4 + Library Folder Count1 + + 5198 + + Track ID5198 + NameRishte Revisited (Remix) + ArtistDJ Nikhil, DJ Naved + ComposerPritam + AlbumMetro + GenreSoundtrack + KindAAC audio file + Size9391635 + Total Time387680 + Disc Number1 + Disc Count1 + Track Number10 + Track Count12 + Year2007 + Date Modified2008-09-28T07:57:04Z + Date Added2009-10-03T14:58:01Z + Bit Rate191 + Sample Rate44100 + Normalization1614 + Compilation + Artwork Count1 + Persistent ID2832E91A6BFE0DD9 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Metro/10%20Rishte%20Revisited%20(Remix).m4a + File Folder Count4 + Library Folder Count1 + + 5200 + + Track ID5200 + NameBaatein Kuchh Ankahee Si Revisited (Remix) + ArtistDJ A-Myth + ComposerPritam + AlbumMetro + GenreSoundtrack + KindAAC audio file + Size6211572 + Total Time259346 + Disc Number1 + Disc Count1 + Track Number11 + Track Count12 + Year2007 + Date Modified2008-09-28T07:57:03Z + Date Added2009-10-03T14:58:02Z + Bit Rate189 + Sample Rate44100 + Normalization4707 + Compilation + Artwork Count1 + Persistent IDC00AE19B3AE74008 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Metro/11%20Baatein%20Kuchh%20Ankahee%20Si%20Revisited%20(Remix).m4a + File Folder Count4 + Library Folder Count1 + + 5202 + + Track ID5202 + NameIn Dinon Revisited (Remix) + ArtistBunty Rajput + ComposerPritam + AlbumMetro + GenreSoundtrack + KindAAC audio file + Size7736217 + Total Time319093 + Disc Number1 + Disc Count1 + Track Number12 + Track Count12 + Year2007 + Date Modified2008-09-28T07:57:03Z + Date Added2009-10-03T14:58:02Z + Bit Rate191 + Sample Rate44100 + Normalization4908 + Compilation + Artwork Count1 + Persistent ID67FC7BF1A38380FA + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Metro/12%20In%20Dinon%20Revisited%20(Remix).m4a + File Folder Count4 + Library Folder Count1 + + 5204 + + Track ID5204 + NameOne + ArtistAimee Mann + ComposerHarry Nilsson + AlbumMagnolia + GenreFolk + KindAAC audio file + Size4243287 + Total Time173405 + Disc Number1 + Disc Count1 + Track Number1 + Track Count13 + Year1999 + Date Modified2006-07-29T04:20:54Z + Date Added2009-10-03T14:58:02Z + Bit Rate192 + Sample Rate44100 + Play Count9 + Play Date3484228817 + Play Date UTC2014-05-29T11:50:17Z + Skip Count1 + Skip Date2013-01-22T16:38:41Z + Normalization1230 + Compilation + Artwork Count1 + Persistent IDC67CE95D2B5D7B92 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Magnolia/01%20One.m4a + File Folder Count4 + Library Folder Count1 + + 5206 + + Track ID5206 + NameMomentum + ArtistAimee Mann + ComposerAimee Mann + AlbumMagnolia + GenreFolk + KindAAC audio file + Size5069996 + Total Time207817 + Disc Number1 + Disc Count1 + Track Number2 + Track Count13 + Year1999 + Date Modified2006-07-29T04:20:54Z + Date Added2009-10-03T14:58:02Z + Bit Rate192 + Sample Rate44100 + Skip Count1 + Skip Date2013-01-22T16:48:54Z + Normalization2628 + Compilation + Artwork Count1 + Persistent ID7AFDFE5C66BC16F5 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Magnolia/02%20Momentum.m4a + File Folder Count4 + Library Folder Count1 + + 5208 + + Track ID5208 + NameBuild That Wall + ArtistAimee Mann + ComposerAimee Mann/Jon Brion + AlbumMagnolia + GenreFolk + KindAAC audio file + Size6430502 + Total Time265286 + Disc Number1 + Disc Count1 + Track Number3 + Track Count13 + Year1999 + Date Modified2006-07-29T04:20:54Z + Date Added2009-10-03T14:58:02Z + Bit Rate192 + Sample Rate44100 + Normalization1512 + Compilation + Artwork Count1 + Persistent ID38EC82DD54D3DB3C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Magnolia/03%20Build%20That%20Wall.m4a + File Folder Count4 + Library Folder Count1 + + 5210 + + Track ID5210 + NameDeathly + ArtistAimee Mann + ComposerAimee Mann + AlbumMagnolia + GenreFolk + KindAAC audio file + Size7984739 + Total Time328677 + Disc Number1 + Disc Count1 + Track Number4 + Track Count13 + Year1999 + Date Modified2006-07-29T04:20:54Z + Date Added2009-10-03T14:58:02Z + Bit Rate192 + Sample Rate44100 + Normalization2123 + Compilation + Artwork Count1 + Persistent IDCBEFB0104BFC4800 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Magnolia/04%20Deathly.m4a + File Folder Count4 + Library Folder Count1 + + 5212 + + Track ID5212 + NameDriving Sideways + ArtistAimee Mann + ComposerAimee Mann/Michael Lockwood + AlbumMagnolia + GenreFolk + KindAAC audio file + Size5517944 + Total Time227136 + Disc Number1 + Disc Count1 + Track Number5 + Track Count13 + Year1999 + Date Modified2006-07-29T04:20:54Z + Date Added2009-10-03T14:58:02Z + Bit Rate192 + Sample Rate44100 + Normalization2944 + Compilation + Artwork Count1 + Persistent ID58393C0D07DE4DC6 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Magnolia/05%20Driving%20Sideways.m4a + File Folder Count4 + Library Folder Count1 + + 5214 + + Track ID5214 + NameYou Do + ArtistAimee Mann + ComposerAimee Mann + AlbumMagnolia + GenreFolk + KindAAC audio file + Size5406815 + Total Time221841 + Disc Number1 + Disc Count1 + Track Number6 + Track Count13 + Year1999 + Date Modified2006-07-29T04:20:54Z + Date Added2009-10-03T14:58:03Z + Bit Rate192 + Sample Rate44100 + Normalization927 + Compilation + Artwork Count1 + Persistent ID71931E93C44BD3FB + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Magnolia/06%20You%20Do.m4a + File Folder Count4 + Library Folder Count1 + + 5216 + + Track ID5216 + NameNothing Is Good Enough (Instrumental) + ArtistAimee Mann + ComposerAimee Mann + AlbumMagnolia + GenreFolk + KindAAC audio file + Size4626908 + Total Time190309 + Disc Number1 + Disc Count1 + Track Number7 + Track Count13 + Year1999 + Date Modified2006-07-29T04:20:54Z + Date Added2009-10-03T14:58:03Z + Bit Rate192 + Sample Rate44100 + Normalization1222 + Compilation + Artwork Count1 + Persistent IDA5317A428DB466D3 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Magnolia/07%20Nothing%20Is%20Good%20Enough%20(Instrumental).m4a + File Folder Count4 + Library Folder Count1 + + 5218 + + Track ID5218 + NameWise Up + ArtistAimee Mann + ComposerAimee Mann + AlbumMagnolia + GenreFolk + KindAAC audio file + Size5148304 + Total Time211718 + Disc Number1 + Disc Count1 + Track Number8 + Track Count13 + Year1999 + Date Modified2006-07-29T04:20:56Z + Date Added2009-10-03T14:58:03Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3389632354 + Play Date UTC2011-05-30T15:02:34Z + Normalization906 + Compilation + Artwork Count1 + Persistent ID85734C252F311C2C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Magnolia/08%20Wise%20Up.m4a + File Folder Count4 + Library Folder Count1 + + 5220 + + Track ID5220 + NameSave Me + ArtistAimee Mann + ComposerAimee Mann + AlbumMagnolia + GenreFolk + KindAAC audio file + Size6660443 + Total Time275108 + Disc Number1 + Disc Count1 + Track Number9 + Track Count13 + Year1999 + Date Modified2006-07-29T04:20:56Z + Date Added2009-10-03T14:58:03Z + Bit Rate192 + Sample Rate44100 + Play Count2 + Play Date3431279836 + Play Date UTC2012-09-23T15:47:16Z + Normalization913 + Compilation + Artwork Count1 + Persistent ID404024ADFF301EE6 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Magnolia/09%20Save%20Me.m4a + File Folder Count4 + Library Folder Count1 + + 5222 + + Track ID5222 + NameGoodbye Stranger + ArtistSupertramp + ComposerRichard Davies/Roger Hudgson + AlbumMagnolia + GenreFolk + KindAAC audio file + Size8502486 + Total Time350457 + Disc Number1 + Disc Count1 + Track Number10 + Track Count13 + Year1979 + Date Modified2006-07-29T04:20:56Z + Date Added2009-10-03T14:58:03Z + Bit Rate192 + Sample Rate44100 + Normalization2237 + Compilation + Artwork Count1 + Persistent ID719964CA43EF24CC + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Magnolia/10%20Goodbye%20Stranger.m4a + File Folder Count4 + Library Folder Count1 + + 5224 + + Track ID5224 + NameLogical Song + ArtistSupertramp + ComposerRichard Davies/Roger Hudgson + AlbumMagnolia + GenreFolk + KindAAC audio file + Size6022997 + Total Time247500 + Disc Number1 + Disc Count1 + Track Number11 + Track Count13 + Year1979 + Date Modified2006-07-29T04:20:56Z + Date Added2009-10-03T14:58:03Z + Bit Rate192 + Sample Rate44100 + Play Count2 + Play Date3431280162 + Play Date UTC2012-09-23T15:52:42Z + Normalization2597 + Compilation + Artwork Count1 + Persistent ID9A4BE85C3D978899 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Magnolia/11%20Logical%20Song.m4a + File Folder Count4 + Library Folder Count1 + + 5226 + + Track ID5226 + NameDreams + ArtistGabrielle + ComposerLouisa Gabrielle Bobb/Timothy Charles Laws + AlbumMagnolia + GenreFolk + KindAAC audio file + Size5402469 + Total Time223676 + Disc Number1 + Disc Count1 + Track Number12 + Track Count13 + Year1999 + Date Modified2006-07-29T04:20:56Z + Date Added2009-10-03T14:58:03Z + Bit Rate192 + Sample Rate44100 + Play Count2 + Play Date3431280386 + Play Date UTC2012-09-23T15:56:26Z + Normalization1601 + Compilation + Artwork Count1 + Persistent ID31F0E17F1AAC9F61 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Magnolia/12%20Dreams.m4a + File Folder Count4 + Library Folder Count1 + + 5228 + + Track ID5228 + NameMagnolia + ArtistJon Brion + ComposerJon Brion + AlbumMagnolia + GenreFolk + KindAAC audio file + Size3266631 + Total Time132747 + Disc Number1 + Disc Count1 + Track Number13 + Track Count13 + Year1999 + Date Modified2006-07-29T04:20:56Z + Date Added2009-10-03T14:58:03Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3431280519 + Play Date UTC2012-09-23T15:58:39Z + Skip Count1 + Skip Date2013-01-22T16:38:37Z + Normalization813 + Compilation + Artwork Count1 + Persistent ID7D7862D1F7DFE9B6 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Magnolia/13%20Magnolia.m4a + File Folder Count4 + Library Folder Count1 + + 5230 + + Track ID5230 + NameMauja Hi Mauja + ArtistMika Singh + ComposerPritam + AlbumJab We Met + GenreSoundtrack + KindAAC audio file + Size6093176 + Total Time247093 + Disc Number1 + Disc Count1 + Track Number1 + Track Count10 + Year2007 + Date Modified2008-09-28T07:56:52Z + Date Added2009-10-03T14:58:05Z + Bit Rate194 + Sample Rate44100 + Normalization4277 + Compilation + Artwork Count1 + Persistent IDE79C6E629B377D62 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Jab%20We%20Met/01%20Mauja%20Hi%20Mauja.m4a + File Folder Count4 + Library Folder Count1 + + 5232 + + Track ID5232 + NameTum Se Hi + ArtistMohit Chauhan + ComposerPritam + AlbumJab We Met + GenreSoundtrack + KindAAC audio file + Size7814875 + Total Time323213 + Disc Number1 + Disc Count1 + Track Number2 + Track Count10 + Year2007 + Date Modified2008-09-28T07:56:51Z + Date Added2009-10-03T14:58:05Z + Bit Rate190 + Sample Rate44100 + Normalization2891 + Compilation + Artwork Count1 + Persistent ID346F6E93C5653141 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Jab%20We%20Met/02%20Tum%20Se%20Hi.m4a + File Folder Count4 + Library Folder Count1 + + 5234 + + Track ID5234 + NameYe Ishq Hai + ArtistShreya Ghoshal + ComposerPritam + AlbumJab We Met + GenreSoundtrack + KindAAC audio file + Size6954356 + Total Time282973 + Disc Number1 + Disc Count1 + Track Number3 + Track Count10 + Year2007 + Date Modified2008-09-28T07:56:51Z + Date Added2009-10-03T14:58:05Z + Bit Rate193 + Sample Rate44100 + Normalization3095 + Compilation + Artwork Count1 + Persistent ID7B84B970CC8812BE + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Jab%20We%20Met/03%20Ye%20Ishq%20Hai.m4a + File Folder Count4 + Library Folder Count1 + + 5236 + + Track ID5236 + NameNagada Nagada + ArtistSonu Nigam And Javed Ali + ComposerPritam + AlbumJab We Met + GenreSoundtrack + KindAAC audio file + Size5559024 + Total Time230466 + Disc Number1 + Disc Count1 + Track Number4 + Track Count10 + Year2007 + Date Modified2008-09-28T07:56:50Z + Date Added2009-10-03T14:58:05Z + Bit Rate189 + Sample Rate44100 + Normalization6913 + Compilation + Artwork Count1 + Persistent ID3663E641112D2461 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Jab%20We%20Met/04%20Nagada%20Nagada.m4a + File Folder Count4 + Library Folder Count1 + + 5238 + + Track ID5238 + NameAao Milo Chalo + ArtistShaan And Ustad Sultan Khan + ComposerPritam + AlbumJab We Met + GenreSoundtrack + KindAAC audio file + Size8073476 + Total Time327933 + Disc Number1 + Disc Count1 + Track Number5 + Track Count10 + Year2007 + Date Modified2008-09-28T07:56:50Z + Date Added2009-10-03T14:58:05Z + Bit Rate194 + Sample Rate44100 + Normalization4351 + Compilation + Artwork Count1 + Persistent ID09FC7EBCA6D6DC4E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Jab%20We%20Met/05%20Aao%20Milo%20Chalo.m4a + File Folder Count4 + Library Folder Count1 + + 5240 + + Track ID5240 + NameAaoge Jab Tum + ArtistUstad Rashid Khan + ComposerPritam + AlbumJab We Met + GenreSoundtrack + KindAAC audio file + Size8721033 + Total Time357053 + Disc Number1 + Disc Count1 + Track Number6 + Track Count10 + Year2007 + Date Modified2008-09-28T07:56:49Z + Date Added2009-10-03T14:58:05Z + Bit Rate192 + Sample Rate44100 + Normalization1825 + Compilation + Artwork Count1 + Persistent ID6F20E77E637811EB + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Jab%20We%20Met/06%20Aaoge%20Jab%20Tum.m4a + File Folder Count4 + Library Folder Count1 + + 5242 + + Track ID5242 + NameTum Se Hi (Remix) + ArtistDJ Sunil S + ComposerPritam + AlbumJab We Met + GenreSoundtrack + KindAAC audio file + Size6468174 + Total Time264906 + Disc Number1 + Disc Count1 + Track Number7 + Track Count10 + Year2007 + Date Modified2008-09-28T07:56:48Z + Date Added2009-10-03T14:58:05Z + Bit Rate192 + Sample Rate44100 + Normalization3558 + Compilation + Artwork Count1 + Persistent ID905E7D990E0B3D6E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Jab%20We%20Met/07%20Tum%20Se%20Hi%20(Remix).m4a + File Folder Count4 + Library Folder Count1 + + 5244 + + Track ID5244 + NameYe Ishq Hai (Remix) + ArtistDJ Amyth + ComposerPritam + AlbumJab We Met + GenreSoundtrack + KindAAC audio file + Size6184110 + Total Time260360 + Disc Number1 + Disc Count1 + Track Number8 + Track Count10 + Year2007 + Date Modified2008-09-28T07:56:48Z + Date Added2009-10-03T14:58:06Z + Bit Rate187 + Sample Rate44100 + Normalization4861 + Compilation + Artwork Count1 + Persistent IDA06F2A50F4291F50 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Jab%20We%20Met/08%20Ye%20Ishq%20Hai%20(Remix).m4a + File Folder Count4 + Library Folder Count1 + + 5246 + + Track ID5246 + NameMauja Hi Mauja (Remix) + ArtistBunty Rajput + ComposerPritam + AlbumJab We Met + GenreSoundtrack + KindAAC audio file + Size6590313 + Total Time270226 + Disc Number1 + Disc Count1 + Track Number9 + Track Count10 + Year2007 + Date Modified2008-09-28T07:56:48Z + Date Added2009-10-03T14:58:06Z + Bit Rate192 + Sample Rate44100 + Normalization3500 + Compilation + Artwork Count1 + Persistent ID1D5FB014D7C7EC09 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Jab%20We%20Met/09%20Mauja%20Hi%20Mauja%20(Remix).m4a + File Folder Count4 + Library Folder Count1 + + 5248 + + Track ID5248 + NameTum Se Hi (Instrumental) + ArtistPritam + ComposerPritam + AlbumJab We Met + GenreSoundtrack + KindAAC audio file + Size7226270 + Total Time294053 + Disc Number1 + Disc Count1 + Track Number10 + Track Count10 + Year2007 + Date Modified2008-09-28T07:56:47Z + Date Added2009-10-03T14:58:06Z + Bit Rate193 + Sample Rate44100 + Normalization2387 + Compilation + Artwork Count1 + Persistent IDD801B057C1BA0054 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Jab%20We%20Met/10%20Tum%20Se%20Hi%20(Instrumental).m4a + File Folder Count4 + Library Folder Count1 + + 5250 + + Track ID5250 + NameKabhi Kabhi Aditi + ArtistRashid Ali + ComposerA R Rahman + AlbumJaane Tu...Ya Jaane Na + GenreWorld + KindAAC audio file + Size5936488 + Total Time220773 + Disc Number1 + Disc Count1 + Track Number1 + Track Count8 + Year2008 + Date Modified2008-09-30T15:27:28Z + Date Added2009-10-03T14:58:06Z + Bit Rate191 + Sample Rate44100 + Normalization3393 + Compilation + Artwork Count1 + Sort ComposerR Rahman + Persistent ID6379A0691A2A6F1C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Jaane%20Tu...Ya%20Jaane%20Na/01%20Kabhi%20Kabhi%20Aditi.m4a + File Folder Count4 + Library Folder Count1 + + 5252 + + Track ID5252 + NamePappu Can't Dance! + ArtistBenny Dayal, Naresh Iyer, Satish Chakravarthy, Aslam, Blaze, Tanvi & Bhargavi + ComposerA R Rahman + AlbumJaane Tu...Ya Jaane Na + GenreWorld + KindAAC audio file + Size6942781 + Total Time267026 + Disc Number1 + Disc Count1 + Track Number2 + Track Count8 + Year2008 + Date Modified2008-09-30T15:27:27Z + Date Added2009-10-03T14:58:06Z + Bit Rate188 + Sample Rate44100 + Normalization3197 + Compilation + Artwork Count1 + Sort ComposerR Rahman + Persistent ID94268CBE9E0B46D0 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Jaane%20Tu...Ya%20Jaane%20Na/02%20Pappu%20Can't%20Dance!.m4a + File Folder Count4 + Library Folder Count1 + + 5254 + + Track ID5254 + NameJaane Tu Mera Kya Hai (Female) + ArtistRuna + ComposerA R Rahman + AlbumJaane Tu...Ya Jaane Na + GenreWorld + KindAAC audio file + Size5852399 + Total Time220533 + Disc Number1 + Disc Count1 + Track Number3 + Track Count8 + Year2008 + Date Modified2008-09-30T15:27:26Z + Date Added2009-10-03T14:58:07Z + Bit Rate188 + Sample Rate44100 + Normalization1951 + Compilation + Artwork Count1 + Sort ComposerR Rahman + Persistent IDF2A0436E4F4F31C3 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Jaane%20Tu...Ya%20Jaane%20Na/03%20Jaane%20Tu%20Mera%20Kya%20Hai%20(Female).m4a + File Folder Count4 + Library Folder Count1 + + 5256 + + Track ID5256 + NameNazrein Milaana, Nazrein Churana + ArtistBenny Dayal,Satish Chakavarthy,Sayonara,Darshana,Svetha,Bhargavi,Anupama + ComposerA R Rahman + AlbumJaane Tu...Ya Jaane Na + GenreWorld + KindAAC audio file + Size6391232 + Total Time236960 + Disc Number1 + Disc Count1 + Track Number4 + Track Count8 + Year2008 + Date Modified2008-09-30T15:27:26Z + Date Added2009-10-03T14:58:07Z + Bit Rate193 + Sample Rate44100 + Normalization3240 + Compilation + Artwork Count1 + Sort ComposerR Rahman + Persistent ID0A5A9A995B264786 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Jaane%20Tu...Ya%20Jaane%20Na/04%20Nazrein%20Milaana,%20Nazrein%20Churana.m4a + File Folder Count4 + Library Folder Count1 + + 5258 + + Track ID5258 + NameTu Bole... Main Boloon + ArtistA.R. Rahman + ComposerA R Rahman + AlbumJaane Tu...Ya Jaane Na + GenreWorld + KindAAC audio file + Size7314857 + Total Time275333 + Disc Number1 + Disc Count1 + Track Number5 + Track Count8 + Year2008 + Date Modified2008-09-30T15:27:25Z + Date Added2009-10-03T14:58:07Z + Bit Rate193 + Sample Rate44100 + Normalization2717 + Compilation + Artwork Count1 + Sort ComposerR Rahman + Persistent ID34A69E3D6A2126EA + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Jaane%20Tu...Ya%20Jaane%20Na/05%20Tu%20Bole...%20Main%20Boloon.m4a + File Folder Count4 + Library Folder Count1 + + 5260 + + Track ID5260 + NameKahin To... + ArtistRashid Ali,Vasundara Das + ComposerA R Rahman + AlbumJaane Tu...Ya Jaane Na + GenreWorld + KindAAC audio file + Size8014088 + Total Time305160 + Disc Number1 + Disc Count1 + Track Number6 + Track Count8 + Year2008 + Date Modified2008-09-30T15:27:25Z + Date Added2009-10-03T14:58:08Z + Bit Rate192 + Sample Rate44100 + Normalization2929 + Compilation + Artwork Count1 + Sort ComposerR Rahman + Persistent IDEC897368BBE4201C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Jaane%20Tu...Ya%20Jaane%20Na/06%20Kahin%20To....m4a + File Folder Count4 + Library Folder Count1 + + 5262 + + Track ID5262 + NameJaane Tu Meri Kya Hai (Male) + ArtistSukhwinder Singh + ComposerA R Rahman + AlbumJaane Tu...Ya Jaane Na + GenreWorld + KindAAC audio file + Size8857755 + Total Time344280 + Disc Number1 + Disc Count1 + Track Number7 + Track Count8 + Year2008 + Date Modified2008-09-30T15:27:24Z + Date Added2009-10-03T14:58:08Z + Bit Rate190 + Sample Rate44100 + Normalization2474 + Compilation + Artwork Count1 + Sort ComposerR Rahman + Persistent ID234956A8DFA3ADDF + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Jaane%20Tu...Ya%20Jaane%20Na/07%20Jaane%20Tu%20Meri%20Kya%20Hai%20(Male).m4a + File Folder Count4 + Library Folder Count1 + + 5264 + + Track ID5264 + NamePappu Can't Dance! (Remix) + ArtistRemixed By Krishna Chetan + ComposerA R Rahman + AlbumJaane Tu...Ya Jaane Na + GenreWorld + KindAAC audio file + Size5493400 + Total Time204186 + Disc Number1 + Disc Count1 + Track Number8 + Track Count8 + Year2008 + Date Modified2008-09-30T15:27:23Z + Date Added2009-10-03T14:58:08Z + Bit Rate189 + Sample Rate44100 + Normalization3142 + Compilation + Artwork Count1 + Sort ComposerR Rahman + Persistent IDB12A9B6251E3F990 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Jaane%20Tu...Ya%20Jaane%20Na/08%20Pappu%20Can't%20Dance!%20(Remix).m4a + File Folder Count4 + Library Folder Count1 + + 5266 + + Track ID5266 + NameVandeham (Raga: Hamsadhwani Tala: Kanda Chapu) + ArtistM.S. Subbulakshmi + ComposerAnnamacharya + AlbumImmortal Legends Vol. 3 + GenreCarnatic + KindAAC audio file + Size7516127 + Total Time313700 + Disc Number3 + Disc Count5 + Track Number1 + Track Count9 + Date Modified2007-12-19T07:35:45Z + Date Added2009-10-03T14:58:09Z + Bit Rate192 + Sample Rate44100 + CommentsRaga: Hamsadhwani Tala: Kanda Chapu + Normalization4190 + Compilation + Persistent ID0B26B11981B1CD10 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Immortal%20Legends%20Vol.%203/3-01%20Vandeham%20(Raga_%20Hamsadhwani%20Tala_%20Kanda%20Chapu).m4a + File Folder Count4 + Library Folder Count1 + + 5268 + + Track ID5268 + NameSarasakhsa + ArtistM.S. Subbulakshmi + AlbumImmortal Legends Vol. 3 + GenreCarnatic + KindAAC audio file + Size19615962 + Total Time813254 + Disc Number3 + Disc Count5 + Track Number2 + Track Count9 + Date Modified2007-12-17T11:12:27Z + Date Added2009-10-03T14:58:09Z + Bit Rate192 + Sample Rate44100 + Normalization4522 + Compilation + Persistent ID95687FA8CB49E12C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Immortal%20Legends%20Vol.%203/3-02%20Sarasakhsa.m4a + File Folder Count4 + Library Folder Count1 + + 5270 + + Track ID5270 + NameMurugua Muruga + ArtistM.S. Subbulakshmi + AlbumImmortal Legends Vol. 3 + GenreCarnatic + KindAAC audio file + Size7457490 + Total Time311006 + Disc Number3 + Disc Count5 + Track Number3 + Track Count9 + Date Modified2007-12-17T11:12:27Z + Date Added2009-10-03T14:58:09Z + Bit Rate192 + Sample Rate44100 + Normalization3785 + Compilation + Persistent IDAC356F229FC702A7 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Immortal%20Legends%20Vol.%203/3-03%20Murugua%20Muruga.m4a + File Folder Count4 + Library Folder Count1 + + 5272 + + Track ID5272 + NameRama Nannu Brovara + ArtistM.S. Subbulakshmi + AlbumImmortal Legends Vol. 3 + GenreCarnatic + KindAAC audio file + Size13017923 + Total Time540698 + Disc Number3 + Disc Count5 + Track Number4 + Track Count9 + Date Modified2007-12-17T11:12:27Z + Date Added2009-10-03T14:58:09Z + Bit Rate192 + Sample Rate44100 + Normalization2197 + Compilation + Persistent IDE53D8C105669574E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Immortal%20Legends%20Vol.%203/3-04%20Rama%20Nannu%20Brovara.m4a + File Folder Count4 + Library Folder Count1 + + 5274 + + Track ID5274 + NameKarthikeya + ArtistM.S. Subbulakshmi + AlbumImmortal Legends Vol. 3 + GenreCarnatic + KindAAC audio file + Size34366887 + Total Time1422499 + Disc Number3 + Disc Count5 + Track Number5 + Track Count9 + Date Modified2007-12-17T11:12:28Z + Date Added2009-10-03T14:58:09Z + Bit Rate192 + Sample Rate44100 + Normalization2028 + Compilation + Persistent IDBAD6D1ABAE3F7E6F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Immortal%20Legends%20Vol.%203/3-05%20Karthikeya.m4a + File Folder Count4 + Library Folder Count1 + + 5276 + + Track ID5276 + NameTavadasoham + ArtistM.S. Subbulakshmi + AlbumImmortal Legends Vol. 3 + GenreCarnatic + KindAAC audio file + Size5895858 + Total Time245874 + Disc Number3 + Disc Count5 + Track Number6 + Track Count9 + Date Modified2007-12-17T11:12:28Z + Date Added2009-10-03T14:58:09Z + Bit Rate192 + Sample Rate44100 + Normalization2703 + Compilation + Persistent IDFA3897EDB9F7F4D5 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Immortal%20Legends%20Vol.%203/3-06%20Tavadasoham.m4a + File Folder Count4 + Library Folder Count1 + + 5278 + + Track ID5278 + NameRamasimira + ArtistM.S. Subbulakshmi + AlbumImmortal Legends Vol. 3 + GenreCarnatic + KindAAC audio file + Size5304780 + Total Time221191 + Disc Number3 + Disc Count5 + Track Number7 + Track Count9 + Date Modified2007-12-17T11:12:28Z + Date Added2009-10-03T14:58:09Z + Bit Rate192 + Sample Rate44100 + Normalization2966 + Compilation + Persistent ID6173591F57036328 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Immortal%20Legends%20Vol.%203/3-07%20Ramasimira.m4a + File Folder Count4 + Library Folder Count1 + + 5280 + + Track ID5280 + NameBhare Panduranga + ArtistM.S. Subbulakshmi + AlbumImmortal Legends Vol. 3 + GenreCarnatic + KindAAC audio file + Size4796042 + Total Time200340 + Disc Number3 + Disc Count5 + Track Number8 + Track Count9 + Date Modified2007-12-17T11:12:28Z + Date Added2009-10-03T14:58:09Z + Bit Rate192 + Sample Rate44100 + Normalization3223 + Compilation + Persistent ID149C413D77CC331F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Immortal%20Legends%20Vol.%203/3-08%20Bhare%20Panduranga.m4a + File Folder Count4 + Library Folder Count1 + + 5282 + + Track ID5282 + NameMorey To Giridhar + ArtistM.S. Subbulakshmi + AlbumImmortal Legends Vol. 3 + GenreCarnatic + KindAAC audio file + Size6283466 + Total Time260990 + Disc Number3 + Disc Count5 + Track Number9 + Track Count9 + Date Modified2007-12-17T11:12:28Z + Date Added2009-10-03T14:58:10Z + Bit Rate192 + Sample Rate44100 + Normalization2086 + Compilation + Persistent IDFFABF10DA662047C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Immortal%20Legends%20Vol.%203/3-09%20Morey%20To%20Giridhar.m4a + File Folder Count4 + Library Folder Count1 + + 5284 + + Track ID5284 + NameViribhoni (Raga: Bhairavi Tala: Ata) + ArtistM.S. Subbulakshmi + ComposerPachaimiriam Adippaiah + AlbumImmortal Legends Vol. 1 + GenreCarnatic + KindAAC audio file + Size10671873 + Total Time444033 + Disc Number1 + Disc Count5 + Track Number1 + Track Count11 + Year2004 + Date Modified2007-12-17T10:59:16Z + Date Added2009-10-03T14:58:10Z + Bit Rate192 + Sample Rate44100 + CommentsRaga: Bhairavi Tala: Ata + Normalization4515 + Compilation + Persistent ID180696C6906C09EB + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Immortal%20Legends%20Vol.%201/1-01%20Viribhoni%20(Raga_%20Bhairavi%20Tala_%20Ata).m4a + File Folder Count4 + Library Folder Count1 + + 5286 + + Track ID5286 + Namekoluvudee (Raga: Kedara Gowla Tala: Adi) + ArtistM.S. Subbulakshmi + ComposerAnnamacharya + AlbumImmortal Legends Vol. 1 + GenreCarnatic + KindAAC audio file + Size7965374 + Total Time331486 + Disc Number1 + Disc Count5 + Track Number2 + Track Count11 + Year2004 + Date Modified2007-12-17T10:59:16Z + Date Added2009-10-03T14:58:10Z + Bit Rate192 + Sample Rate44100 + CommentsRaga: Kedara Gowla Tala: Adi + Normalization3229 + Compilation + Persistent ID1795E9DBB6BD47A9 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Immortal%20Legends%20Vol.%201/1-02%20koluvudee%20(Raga_%20Kedara%20Gowla%20Tala_%20Adi).m4a + File Folder Count4 + Library Folder Count1 + + 5288 + + Track ID5288 + Namebhogindra sayinam (Raga: Kuntalavarali Tala: Kanda Chapu) + ArtistM.S. Subbulakshmi + ComposerSwathi Thirunal + AlbumImmortal Legends Vol. 1 + GenreCarnatic + KindAAC audio file + Size5215991 + Total Time217523 + Disc Number1 + Disc Count5 + Track Number3 + Track Count11 + Year2004 + Date Modified2007-12-17T11:00:29Z + Date Added2009-10-03T14:58:10Z + Bit Rate192 + Sample Rate44100 + CommentsRaga: Kuntalavarali Tala: Kanda Chapu + Normalization3670 + Compilation + Persistent ID58A5C64820922422 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Immortal%20Legends%20Vol.%201/1-03%20bhogindra%20sayinam%20(Raga_%20Kuntalavarali%20Tala_%20Kanda%20Chapu).m4a + File Folder Count4 + Library Folder Count1 + + 5290 + + Track ID5290 + Namecheri yasodaku (Raga: Mohanam Tala: Adi) + ArtistM.S. Subbulakshmi + ComposerAnnamacharya + AlbumImmortal Legends Vol. 1 + GenreCarnatic + KindAAC audio file + Size10659978 + Total Time442779 + Disc Number1 + Disc Count5 + Track Number4 + Track Count11 + Year2004 + Date Modified2007-12-17T11:00:53Z + Date Added2009-10-03T14:58:10Z + Bit Rate192 + Sample Rate44100 + CommentsRaga: Mohanam Tala: Adi + Normalization2631 + Compilation + Persistent ID1241FDFF1FD73ABC + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Immortal%20Legends%20Vol.%201/1-04%20cheri%20yasodaku%20(Raga_%20Mohanam%20Tala_%20Adi).m4a + File Folder Count4 + Library Folder Count1 + + 5292 + + Track ID5292 + NameEnatinomu Phalamo (Raga: Bhairavi Tala: Adi) + ArtistM.S. Subbulakshmi + ComposerThyagaraja + AlbumImmortal Legends Vol. 1 + GenreCarnatic + KindAAC audio file + Size34840497 + Total Time1442166 + Disc Number1 + Disc Count5 + Track Number5 + Track Count11 + Year2004 + Date Modified2007-12-17T11:03:42Z + Date Added2009-10-03T14:58:10Z + Bit Rate192 + Sample Rate44100 + CommentsRaga: Bhairavi Tala: Adi + Normalization2072 + Compilation + Persistent IDCE35475D4BBDE72B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Immortal%20Legends%20Vol.%201/1-05%20Enatinomu%20Phalamo%20(Raga_%20Bhairavi%20Tala_%20Adi).m4a + File Folder Count4 + Library Folder Count1 + + 5294 + + Track ID5294 + NameJagadoddharana (Raga: Kapi Tala: Adi) + ArtistM.S. Subbulakshmi + ComposerPurandara Dasa + AlbumImmortal Legends Vol. 1 + GenreCarnatic + KindAAC audio file + Size8764003 + Total Time364482 + Disc Number1 + Disc Count5 + Track Number6 + Track Count11 + Year2004 + Date Modified2007-12-17T11:03:18Z + Date Added2009-10-03T14:58:10Z + Bit Rate192 + Sample Rate44100 + CommentsRaga: Kapi Tala: Adi + Normalization5588 + Compilation + Persistent ID81B2A90D6FF18764 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Immortal%20Legends%20Vol.%201/1-06%20Jagadoddharana%20(Raga_%20Kapi%20Tala_%20Adi).m4a + File Folder Count4 + Library Folder Count1 + + 5296 + + Track ID5296 + NameTillana (Raga: Dhanashree Tala: Adi) + ArtistM.S. Subbulakshmi + ComposerSwathi Thirunal + AlbumImmortal Legends Vol. 1 + GenreCarnatic + KindAAC audio file + Size5063794 + Total Time211184 + Disc Number1 + Disc Count5 + Track Number7 + Track Count11 + Year2004 + Date Modified2007-12-17T11:04:17Z + Date Added2009-10-03T14:58:11Z + Bit Rate192 + Sample Rate44100 + CommentsRaga: Dhanashree Tala: Adi + Normalization5130 + Compilation + Persistent ID0C5D20A8DFEB3B92 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Immortal%20Legends%20Vol.%201/1-07%20Tillana%20(Raga_%20Dhanashree%20Tala_%20Adi).m4a + File Folder Count4 + Library Folder Count1 + + 5298 + + Track ID5298 + NameNenjukku Neethi + ArtistM.S. Subbulakshmi + ComposerBharathiar + AlbumImmortal Legends Vol. 1 + GenreCarnatic + KindAAC audio file + Size4179341 + Total Time174264 + Disc Number1 + Disc Count5 + Track Number8 + Track Count11 + Year2004 + Date Modified2007-12-17T11:04:46Z + Date Added2009-10-03T14:58:11Z + Bit Rate192 + Sample Rate44100 + Normalization4157 + Compilation + Persistent IDC5091E9ECD2AC5A7 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Immortal%20Legends%20Vol.%201/1-08%20Nenjukku%20Neethi.m4a + File Folder Count4 + Library Folder Count1 + + 5300 + + Track ID5300 + NameKurai ondrum illai (Raga: Ragamalika Tala: Adi) + ArtistM.S. Subbulakshmi + ComposerRajaji + AlbumImmortal Legends Vol. 1 + GenreCarnatic + KindAAC audio file + Size6277890 + Total Time261710 + Disc Number1 + Disc Count5 + Track Number9 + Track Count11 + Year2004 + Date Modified2007-12-17T11:05:13Z + Date Added2009-10-03T14:58:11Z + Bit Rate192 + Sample Rate44100 + CommentsRaga: Ragamalika Tala: Adi + Normalization2185 + Compilation + Persistent ID46F5CC36BD45D4DA + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Immortal%20Legends%20Vol.%201/1-09%20Kurai%20ondrum%20illai%20(Raga_%20Ragamalika%20Tala_%20Adi).m4a + File Folder Count4 + Library Folder Count1 + + 5302 + + Track ID5302 + Namemarali marali jayamangalamu (Raga: Ragamalika Tala: Adi) + ArtistM.S. Subbulakshmi + ComposerAnnamacharya + AlbumImmortal Legends Vol. 1 + GenreCarnatic + KindAAC audio file + Size5687920 + Total Time237097 + Disc Number1 + Disc Count5 + Track Number10 + Track Count11 + Year2004 + Date Modified2007-12-17T11:06:00Z + Date Added2009-10-03T14:58:11Z + Bit Rate192 + Sample Rate44100 + CommentsRaga: Ragamalika Tala: Adi + Normalization3914 + Compilation + Persistent ID8AB55826A5B63E37 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Immortal%20Legends%20Vol.%201/1-10%20marali%20marali%20jayamangalamu%20(Raga_%20Ragamalika%20Tala_%20Adi).m4a + File Folder Count4 + Library Folder Count1 + + 5304 + + Track ID5304 + Namemaitrim bhajata (Raga: Ragamalika Tala: Adi) + ArtistM.S. Subbulakshmi + ComposerH.H.V. Chandrasekharendra + AlbumImmortal Legends Vol. 1 + GenreCarnatic + KindAAC audio file + Size3518171 + Total Time145982 + Disc Number1 + Disc Count5 + Track Number11 + Track Count11 + Year2004 + Date Modified2007-12-17T11:07:23Z + Date Added2009-10-03T14:58:11Z + Bit Rate192 + Sample Rate44100 + CommentsRaga: Ragamalika Tala: Adi + Normalization7501 + Compilation + Persistent ID48C167C358CF2AFB + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Immortal%20Legends%20Vol.%201/1-11%20maitrim%20bhajata%20(Raga_%20Ragamalika%20Tala_%20Adi).m4a + File Folder Count4 + Library Folder Count1 + + 5306 + + Track ID5306 + NameSarasiruhasanapriye + ArtistM.S. Subbulakshmi + AlbumImmortal Legends + GenreCarnatic + KindAAC audio file + Size6754614 + Total Time282167 + Track Number1 + Track Count8 + Date Modified2007-12-17T02:40:53Z + Date Added2009-10-03T14:58:11Z + Bit Rate192 + Sample Rate44100 + Normalization2968 + Compilation + Persistent ID23078BF9E439875E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Immortal%20Legends/01%20Sarasiruhasanapriye.m4a + File Folder Count4 + Library Folder Count1 + + 5308 + + Track ID5308 + NameSrimannarayana + ArtistM.S. Subbulakshmi + AlbumImmortal Legends + GenreCarnatic + KindAAC audio file + Size6654227 + Total Time278034 + Track Number1 + Track Count15 + Date Modified2007-12-17T02:40:53Z + Date Added2009-10-03T14:58:11Z + Bit Rate192 + Sample Rate44100 + Normalization2671 + Compilation + Persistent IDC6B4CFF3B374FEB3 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Immortal%20Legends/01%20Srimannarayana.m4a + File Folder Count4 + Library Folder Count1 + + 5310 + + Track ID5310 + NameAda Modi Galade + ArtistM.S. Subbulakshmi + AlbumImmortal Legends + GenreCarnatic + KindAAC audio file + Size9708493 + Total Time403770 + Track Number2 + Track Count8 + Date Modified2007-12-17T02:40:53Z + Date Added2009-10-03T14:58:12Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Compilation + Persistent IDCFE859A68FE6B7F8 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Immortal%20Legends/02%20Ada%20Modi%20Galade.m4a + File Folder Count4 + Library Folder Count1 + + 5312 + + Track ID5312 + NameBhavamulona + ArtistM.S. Subbulakshmi + AlbumImmortal Legends + GenreCarnatic + KindAAC audio file + Size7432355 + Total Time309450 + Track Number2 + Track Count15 + Date Modified2007-12-17T02:40:53Z + Date Added2009-10-03T14:58:12Z + Bit Rate192 + Sample Rate44100 + Normalization2980 + Compilation + Persistent IDD63A32597818FB3D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Immortal%20Legends/02%20Bhavamulona.m4a + File Folder Count4 + Library Folder Count1 + + 5314 + + Track ID5314 + NameBrahma Kadigina Paadamu + ArtistM.S. Subbulakshmi + AlbumImmortal Legends + GenreCarnatic + KindAAC audio file + Size6428783 + Total Time267933 + Track Number3 + Track Count8 + Date Modified2007-12-17T02:40:53Z + Date Added2009-10-03T14:58:12Z + Bit Rate192 + Sample Rate44100 + Normalization1734 + Compilation + Persistent IDD5B142DA0B296A8E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Immortal%20Legends/03%20Brahma%20Kadigina%20Paadamu.m4a + File Folder Count4 + Library Folder Count1 + + 5316 + + Track ID5316 + NameDolayam + ArtistM.S. Subbulakshmi + AlbumImmortal Legends + GenreCarnatic + KindAAC audio file + Size3917012 + Total Time163420 + Track Number3 + Track Count15 + Date Modified2007-12-17T02:40:53Z + Date Added2009-10-03T14:58:12Z + Bit Rate192 + Sample Rate44100 + Normalization6237 + Compilation + Persistent IDD41C2D92B64A808C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Immortal%20Legends/03%20Dolayam.m4a + File Folder Count4 + Library Folder Count1 + + 5318 + + Track ID5318 + NameIkanaina + ArtistM.S. Subbulakshmi + AlbumImmortal Legends + GenreCarnatic + KindAAC audio file + Size12709157 + Total Time527695 + Track Number4 + Track Count15 + Date Modified2007-12-17T02:40:53Z + Date Added2009-10-03T14:58:12Z + Bit Rate192 + Sample Rate44100 + Normalization3862 + Compilation + Persistent IDB12ACD480C07EE8D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Immortal%20Legends/04%20Ikanaina.m4a + File Folder Count4 + Library Folder Count1 + + 5320 + + Track ID5320 + NameMeenakshi Memudam + ArtistM.S. Subbulakshmi + AlbumImmortal Legends + GenreCarnatic + KindAAC audio file + Size19851947 + Total Time822681 + Track Number4 + Track Count8 + Date Modified2007-12-17T02:40:53Z + Date Added2009-10-03T14:58:12Z + Bit Rate192 + Sample Rate44100 + Normalization3395 + Compilation + Persistent IDC6ED695A911A9F46 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Immortal%20Legends/04%20Meenakshi%20Memudam.m4a + File Folder Count4 + Library Folder Count1 + + 5322 + + Track ID5322 + NameDeva Devam Bhaje + ArtistM.S. Subbulakshmi + AlbumImmortal Legends + GenreCarnatic + KindAAC audio file + Size5980217 + Total Time249311 + Track Number5 + Track Count15 + Date Modified2007-12-17T02:40:53Z + Date Added2009-10-03T14:58:12Z + Bit Rate192 + Sample Rate44100 + Normalization3080 + Compilation + Persistent ID933AFE25902ABF29 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Immortal%20Legends/05%20Deva%20Devam%20Bhaje.m4a + File Folder Count4 + Library Folder Count1 + + 5324 + + Track ID5324 + NameEnnalloorage + ArtistM.S. Subbulakshmi + AlbumImmortal Legends + GenreCarnatic + KindAAC audio file + Size13576969 + Total Time563407 + Track Number5 + Track Count8 + Date Modified2007-12-17T02:40:53Z + Date Added2009-10-03T14:58:12Z + Bit Rate192 + Sample Rate44100 + Normalization1640 + Compilation + Persistent IDEFCC178723425AC6 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Immortal%20Legends/05%20Ennalloorage.m4a + File Folder Count4 + Library Folder Count1 + + 5326 + + Track ID5326 + NameNaneke Badavanu + ArtistM.S. Subbulakshmi + AlbumImmortal Legends + GenreCarnatic + KindAAC audio file + Size5050814 + Total Time210626 + Track Number6 + Track Count15 + Date Modified2007-12-17T02:40:53Z + Date Added2009-10-03T14:58:13Z + Bit Rate192 + Sample Rate44100 + Normalization4432 + Compilation + Persistent ID478CCD140A8AFD39 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Immortal%20Legends/06%20Naneke%20Badavanu.m4a + File Folder Count4 + Library Folder Count1 + + 5328 + + Track ID5328 + NameSwara Raga Sudha + ArtistM.S. Subbulakshmi + AlbumImmortal Legends + GenreCarnatic + KindAAC audio file + Size34102859 + Total Time1411702 + Track Number6 + Track Count8 + Date Modified2007-12-17T02:40:53Z + Date Added2009-10-03T14:58:13Z + Bit Rate192 + Sample Rate44100 + Normalization2040 + Compilation + Persistent ID6EA0E6CC6C5CB67E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Immortal%20Legends/06%20Swara%20Raga%20Sudha.m4a + File Folder Count4 + Library Folder Count1 + + 5330 + + Track ID5330 + NameRangapura Vihara + ArtistM.S. Subbulakshmi + AlbumImmortal Legends + GenreCarnatic + KindAAC audio file + Size9015281 + Total Time374884 + Track Number7 + Track Count8 + Date Modified2007-12-17T02:40:53Z + Date Added2009-10-03T14:58:13Z + Bit Rate192 + Sample Rate44100 + Normalization7060 + Compilation + Persistent IDE3FC51499D919D10 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Immortal%20Legends/07%20Rangapura%20Vihara.m4a + File Folder Count4 + Library Folder Count1 + + 5332 + + Track ID5332 + NameVandadum Cholai + ArtistM.S. Subbulakshmi + AlbumImmortal Legends + GenreCarnatic + KindAAC audio file + Size9225668 + Total Time384056 + Track Number7 + Track Count15 + Date Modified2007-12-17T02:40:53Z + Date Added2009-10-03T14:58:13Z + Bit Rate192 + Sample Rate44100 + Normalization2333 + Compilation + Persistent ID96EDBF9894C7DF02 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Immortal%20Legends/07%20Vandadum%20Cholai.m4a + File Folder Count4 + Library Folder Count1 + + 5334 + + Track ID5334 + NameHari Tum Haro + ArtistM.S. Subbulakshmi + AlbumImmortal Legends + GenreCarnatic + KindAAC audio file + Size4919267 + Total Time204287 + Track Number8 + Track Count8 + Date Modified2007-12-17T02:40:53Z + Date Added2009-10-03T14:58:13Z + Bit Rate192 + Sample Rate44100 + Normalization3927 + Compilation + Persistent ID80E59E9B4DD80956 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Immortal%20Legends/08%20Hari%20Tum%20Haro.m4a + File Folder Count4 + Library Folder Count1 + + 5336 + + Track ID5336 + NameOlipadaitta Kanninaai + ArtistM.S. Subbulakshmi + AlbumImmortal Legends + GenreCarnatic + KindAAC audio file + Size4118431 + Total Time172104 + Track Number8 + Track Count15 + Date Modified2007-12-17T02:40:53Z + Date Added2009-10-03T14:58:13Z + Bit Rate192 + Sample Rate44100 + Normalization2077 + Compilation + Persistent ID9C283C8075A5A9DA + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Immortal%20Legends/08%20Olipadaitta%20Kanninaai.m4a + File Folder Count4 + Library Folder Count1 + + 5338 + + Track ID5338 + NameVadavarayai + ArtistM.S. Subbulakshmi + AlbumImmortal Legends + GenreCarnatic + KindAAC audio file + Size9245871 + Total Time384474 + Track Number9 + Track Count15 + Date Modified2007-12-17T02:40:53Z + Date Added2009-10-03T14:58:13Z + Bit Rate192 + Sample Rate44100 + Normalization4581 + Compilation + Persistent IDB646312B4488E504 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Immortal%20Legends/09%20Vadavarayai.m4a + File Folder Count4 + Library Folder Count1 + + 5340 + + Track ID5340 + NameJo Achyuthananda Jo Jo Mukunda + ArtistM.S. Subbulakshmi + AlbumImmortal Legends + GenreCarnatic + KindAAC audio file + Size8895842 + Total Time370031 + Track Number10 + Track Count15 + Date Modified2007-12-17T02:40:53Z + Date Added2009-10-03T14:58:14Z + Bit Rate192 + Sample Rate44100 + Normalization3474 + Compilation + Persistent IDE338411285C90447 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Immortal%20Legends/10%20Jo%20Achyuthananda%20Jo%20Jo%20Mukunda.m4a + File Folder Count4 + Library Folder Count1 + + 5342 + + Track ID5342 + NameTolliyunu + ArtistM.S. Subbulakshmi + AlbumImmortal Legends + GenreCarnatic + KindAAC audio file + Size6695832 + Total Time279055 + Track Number11 + Track Count15 + Date Modified2007-12-17T02:40:53Z + Date Added2009-10-03T14:58:14Z + Bit Rate192 + Sample Rate44100 + Normalization3184 + Compilation + Persistent IDFC843B8258B1FAAF + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Immortal%20Legends/11%20Tolliyunu.m4a + File Folder Count4 + Library Folder Count1 + + 5344 + + Track ID5344 + NameBhavayami Gopala Balam + ArtistM.S. Subbulakshmi + AlbumImmortal Legends + GenreCarnatic + KindAAC audio file + Size6658030 + Total Time277639 + Track Number12 + Track Count15 + Date Modified2007-12-17T02:40:53Z + Date Added2009-10-03T14:58:14Z + Bit Rate192 + Sample Rate44100 + Normalization2468 + Compilation + Persistent IDF23A334CF34CCB8B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Immortal%20Legends/12%20Bhavayami%20Gopala%20Balam.m4a + File Folder Count4 + Library Folder Count1 + + 5346 + + Track ID5346 + NameKseerabdi Kanyakaku + ArtistM.S. Subbulakshmi + AlbumImmortal Legends + GenreCarnatic + KindAAC audio file + Size5735922 + Total Time239164 + Track Number13 + Track Count15 + Date Modified2007-12-17T02:40:54Z + Date Added2009-10-03T14:58:14Z + Bit Rate192 + Sample Rate44100 + Normalization2530 + Compilation + Persistent ID96C66EC4622F059B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Immortal%20Legends/13%20Kseerabdi%20Kanyakaku.m4a + File Folder Count4 + Library Folder Count1 + + 5348 + + Track ID5348 + NameNanati Baduku + ArtistM.S. Subbulakshmi + AlbumImmortal Legends + GenreCarnatic + KindAAC audio file + Size7051844 + Total Time293730 + Track Number14 + Track Count15 + Date Modified2007-12-17T02:40:54Z + Date Added2009-10-03T14:58:14Z + Bit Rate192 + Sample Rate44100 + Normalization1727 + Compilation + Persistent IDC29F12889B629AF9 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Immortal%20Legends/14%20Nanati%20Baduku.m4a + File Folder Count4 + Library Folder Count1 + + 5350 + + Track ID5350 + NameNaadavindu Kaladi Namo Namah + ArtistM.S. Subbulakshmi + AlbumImmortal Legends + GenreCarnatic + KindAAC audio file + Size4802499 + Total Time199481 + Track Number15 + Track Count15 + Date Modified2007-12-17T02:40:54Z + Date Added2009-10-03T14:58:14Z + Bit Rate192 + Sample Rate44100 + Normalization5629 + Compilation + Persistent ID41AD053720930B35 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Immortal%20Legends/15%20Naadavindu%20Kaladi%20Namo%20Namah.m4a + File Folder Count4 + Library Folder Count1 + + 5352 + + Track ID5352 + NameThe Warriors Music to an imaginary ballet for orchestra and 3 pianos + ArtistJohn Eliot Gardiner; Philharmonia Orchestra + ComposerPercy Grainger (1882-1961) + AlbumHolst: The Planets / Grainger: The Warriors + GenreClassical + KindAAC audio file + Size26849035 + Total Time1109006 + Disc Number1 + Disc Count1 + Track Number1 + Track Count8 + Year1994 + Date Modified2006-07-31T01:27:28Z + Date Added2009-10-03T14:58:14Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Compilation + Artwork Count1 + Sort NameWarriors Music to an imaginary ballet for orchestra and 3 pianos + Persistent ID7F13F6B0D3DC8EDA + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Holst_%20The%20Planets%20_%20Grainger_%20The%20Warriors/01%20The%20Warriors%20Music%20to%20an%20imaginary%20ballet%20for%20orchestra%20and%203%20pianos.m4a + File Folder Count4 + Library Folder Count1 + + 5354 + + Track ID5354 + NameThe Planets op.32 (H.125), I. Mars, the Bringer of War + ArtistJohn Eliot Gardiner; Philharmonia Orchestra + ComposerGustav Holst (1874-1934) + AlbumHolst: The Planets / Grainger: The Warriors + GenreClassical + KindAAC audio file + Size11700619 + Total Time483020 + Disc Number1 + Disc Count1 + Track Number2 + Track Count8 + Year1994 + Date Modified2006-07-31T01:27:28Z + Date Added2009-10-03T14:58:15Z + Bit Rate192 + Sample Rate44100 + Normalization2128 + Compilation + Artwork Count1 + Sort NamePlanets op.32 (H.125), I. Mars, the Bringer of War + Persistent ID296BF42E6A69D218 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Holst_%20The%20Planets%20_%20Grainger_%20The%20Warriors/02%20The%20Planets%20op.32%20(H.125),%20I.%20Mars,%20the%20Bringer%20of%20War.m4a + File Folder Count4 + Library Folder Count1 + + 5356 + + Track ID5356 + NameThe Planets op.32 (H.125), II. Venus, the Bringer of Peace + ArtistJohn Eliot Gardiner; Philharmonia Orchestra + ComposerGustav Holst (1874-1934) + AlbumHolst: The Planets / Grainger: The Warriors + GenreClassical + KindAAC audio file + Size11072026 + Total Time457013 + Disc Number1 + Disc Count1 + Track Number3 + Track Count8 + Year1994 + Date Modified2006-07-31T01:27:28Z + Date Added2009-10-03T14:58:15Z + Bit Rate192 + Sample Rate44100 + Normalization200 + Compilation + Artwork Count1 + Sort NamePlanets op.32 (H.125), II. Venus, the Bringer of Peace + Persistent ID027B51B375D0976A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Holst_%20The%20Planets%20_%20Grainger_%20The%20Warriors/03%20The%20Planets%20op.32%20(H.125),%20II.%20Venus,%20the%20Bringer%20of%20Peace.m4a + File Folder Count4 + Library Folder Count1 + + 5358 + + Track ID5358 + NameThe Planets op.32 (H.125), III. Mercury, the Winged Messenger + ArtistJohn Eliot Gardiner; Philharmonia Orchestra + ComposerGustav Holst (1874-1934) + AlbumHolst: The Planets / Grainger: The Warriors + GenreClassical + KindAAC audio file + Size5607910 + Total Time231013 + Disc Number1 + Disc Count1 + Track Number4 + Track Count8 + Year1994 + Date Modified2006-07-31T01:27:28Z + Date Added2009-10-03T14:58:15Z + Bit Rate192 + Sample Rate44100 + Normalization1020 + Compilation + Artwork Count1 + Sort NamePlanets op.32 (H.125), III. Mercury, the Winged Messenger + Persistent IDBAF62261242176BD + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Holst_%20The%20Planets%20_%20Grainger_%20The%20Warriors/04%20The%20Planets%20op.32%20(H.125),%20III.%20Mercury,%20the%20Winged%20Messenger.m4a + File Folder Count4 + Library Folder Count1 + + 5360 + + Track ID5360 + NameThe Planets op.32 (H.125), IV. Jupiter, the Bringer of Jollity + ArtistJohn Eliot Gardiner; Philharmonia Orchestra + ComposerGustav Holst (1874-1934) + AlbumHolst: The Planets / Grainger: The Warriors + GenreClassical + KindAAC audio file + Size10587506 + Total Time437021 + Disc Number1 + Disc Count1 + Track Number5 + Track Count8 + Year1994 + Date Modified2006-07-31T01:27:28Z + Date Added2009-10-03T14:58:15Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Compilation + Artwork Count1 + Sort NamePlanets op.32 (H.125), IV. Jupiter, the Bringer of Jollity + Persistent IDF83E35536E7C9A9F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Holst_%20The%20Planets%20_%20Grainger_%20The%20Warriors/05%20The%20Planets%20op.32%20(H.125),%20IV.%20Jupiter,%20the%20Bringer%20of%20Jollity.m4a + File Folder Count4 + Library Folder Count1 + + 5362 + + Track ID5362 + NameThe Planets op.32 (H.125), V. Saturn, the Bringer of Old Age + ArtistJohn Eliot Gardiner; Philharmonia Orchestra + ComposerGustav Holst (1874-1934) + AlbumHolst: The Planets / Grainger: The Warriors + GenreClassical + KindAAC audio file + Size13394842 + Total Time553004 + Disc Number1 + Disc Count1 + Track Number6 + Track Count8 + Year1994 + Date Modified2006-07-31T01:27:28Z + Date Added2009-10-03T14:58:15Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Compilation + Artwork Count1 + Sort NamePlanets op.32 (H.125), V. Saturn, the Bringer of Old Age + Persistent ID0034721A309B9D1E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Holst_%20The%20Planets%20_%20Grainger_%20The%20Warriors/06%20The%20Planets%20op.32%20(H.125),%20V.%20Saturn,%20the%20Bringer%20of%20Old%20Age.m4a + File Folder Count4 + Library Folder Count1 + + 5364 + + Track ID5364 + NameThe Planets op.32 (H.125), VI. Uranus, the Magician + ArtistJohn Eliot Gardiner; Philharmonia Orchestra + ComposerGustav Holst (1874-1934) + AlbumHolst: The Planets / Grainger: The Warriors + GenreClassical + KindAAC audio file + Size8094886 + Total Time334017 + Disc Number1 + Disc Count1 + Track Number7 + Track Count8 + Year1994 + Date Modified2006-07-31T01:27:30Z + Date Added2009-10-03T14:58:15Z + Bit Rate192 + Sample Rate44100 + Normalization1647 + Compilation + Artwork Count1 + Sort NamePlanets op.32 (H.125), VI. Uranus, the Magician + Persistent IDDDD69081649BC20C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Holst_%20The%20Planets%20_%20Grainger_%20The%20Warriors/07%20The%20Planets%20op.32%20(H.125),%20VI.%20Uranus,%20the%20Magician.m4a + File Folder Count4 + Library Folder Count1 + + 5366 + + Track ID5366 + NameThe Planets op.32 (H.125), VII. Neptune, the Mystic + ArtistJohn Eliot Gardiner; Philharmonia Orchestra + ComposerGustav Holst (1874-1934) + AlbumHolst: The Planets / Grainger: The Warriors + GenreClassical + KindAAC audio file + Size11885766 + Total Time491007 + Disc Number1 + Disc Count1 + Track Number8 + Track Count8 + Year1994 + Date Modified2006-07-31T01:27:30Z + Date Added2009-10-03T14:58:15Z + Bit Rate192 + Sample Rate44100 + Normalization26 + Compilation + Artwork Count1 + Sort NamePlanets op.32 (H.125), VII. Neptune, the Mystic + Persistent ID90E3AB15FDE7EF87 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Holst_%20The%20Planets%20_%20Grainger_%20The%20Warriors/08%20The%20Planets%20op.32%20(H.125),%20VII.%20Neptune,%20the%20Mystic.m4a + File Folder Count4 + Library Folder Count1 + + 5368 + + Track ID5368 + NameNight Before Sundance + ArtistPeter "Wyoming" Bender + ComposerVarious Composers + AlbumHearts, Hands, & Hides + GenreWorld + KindAAC audio file + Size5655497 + Total Time235360 + Disc Number1 + Disc Count1 + Track Number1 + Track Count10 + Year1997 + Date Modified2007-09-10T09:22:48Z + Date Added2009-10-03T14:58:16Z + Bit Rate192 + Sample Rate44100 + Normalization2284 + Compilation + Persistent IDE7F2510017A26B60 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Hearts,%20Hands,%20&%20Hides/01%20Night%20Before%20Sundance.m4a + File Folder Count4 + Library Folder Count1 + + 5370 + + Track ID5370 + NameNight Before Sundance + ArtistPeter "Wyoming" Bender + ComposerVarious Composers + AlbumHearts, Hands, & Hides + GenreWorld + KindAAC audio file + Size5670749 + Total Time235379 + Disc Number1 + Disc Count1 + Track Number1 + Track Count10 + Year1997 + Date Modified2006-08-07T08:59:50Z + Date Added2009-10-03T14:58:16Z + Bit Rate192 + Sample Rate44100 + Normalization2282 + Compilation + Artwork Count1 + Persistent IDBDCC183107E46B8C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Hearts,%20Hands,%20&%20Hides/01%20Night%20Before%20Sundance%201.m4a + File Folder Count4 + Library Folder Count1 + + 5372 + + Track ID5372 + NameDrums Of The Heart + ArtistThe Mesa Music Consort + ComposerVarious Composers + AlbumHearts, Hands, & Hides + GenreWorld + KindAAC audio file + Size5815307 + Total Time241200 + Disc Number1 + Disc Count1 + Track Number2 + Track Count10 + Year1997 + Date Modified2007-09-10T09:23:26Z + Date Added2009-10-03T14:58:16Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3377440198 + Play Date UTC2011-01-09T12:19:58Z + Normalization1175 + Compilation + Sort ArtistMesa Music Consort + Persistent ID7CF0A0AD63F8DD69 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Hearts,%20Hands,%20&%20Hides/02%20Drums%20Of%20The%20Heart.m4a + File Folder Count4 + Library Folder Count1 + + 5374 + + Track ID5374 + NameDrums Of The Heart + ArtistThe Mesa Music Consort + ComposerVarious Composers + AlbumHearts, Hands, & Hides + GenreWorld + KindAAC audio file + Size5829787 + Total Time241207 + Disc Number1 + Disc Count1 + Track Number2 + Track Count10 + Year1997 + Date Modified2006-08-07T08:59:50Z + Date Added2009-10-03T14:58:16Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3377440439 + Play Date UTC2011-01-09T12:23:59Z + Normalization1175 + Compilation + Artwork Count1 + Sort ArtistMesa Music Consort + Persistent ID7D09F9301A84B02A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Hearts,%20Hands,%20&%20Hides/02%20Drums%20Of%20The%20Heart%201.m4a + File Folder Count4 + Library Folder Count1 + + 5376 + + Track ID5376 + NameLegends + ArtistMarilyn Rife with Alice Gomez + ComposerVarious Composers + AlbumHearts, Hands, & Hides + GenreWorld + KindAAC audio file + Size7117878 + Total Time294906 + Disc Number1 + Disc Count1 + Track Number3 + Track Count10 + Year1997 + Date Modified2007-09-10T09:24:12Z + Date Added2009-10-03T14:58:16Z + Bit Rate192 + Sample Rate44100 + Normalization1175 + Compilation + Persistent ID15C4C8C18E26E9AB + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Hearts,%20Hands,%20&%20Hides/03%20Legends.m4a + File Folder Count4 + Library Folder Count1 + + 5378 + + Track ID5378 + NameLegends + ArtistMarilyn Rife with Alice Gomez + ComposerVarious Composers + AlbumHearts, Hands, & Hides + GenreWorld + KindAAC audio file + Size7128302 + Total Time294915 + Disc Number1 + Disc Count1 + Track Number3 + Track Count10 + Year1997 + Date Modified2006-08-07T08:59:50Z + Date Added2009-10-03T14:58:16Z + Bit Rate192 + Sample Rate44100 + Normalization1175 + Compilation + Artwork Count1 + Persistent ID8512C0231E515092 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Hearts,%20Hands,%20&%20Hides/03%20Legends%201.m4a + File Folder Count4 + Library Folder Count1 + + 5380 + + Track ID5380 + NameDrummers' Journey + ArtistThe Native Flute Ensemble + ComposerVarious Composers + AlbumHearts, Hands, & Hides + GenreWorld + KindAAC audio file + Size6557115 + Total Time271733 + Disc Number1 + Disc Count1 + Track Number4 + Track Count10 + Year1997 + Date Modified2007-09-10T09:24:42Z + Date Added2009-10-03T14:58:16Z + Bit Rate192 + Sample Rate44100 + Normalization1175 + Compilation + Sort ArtistNative Flute Ensemble + Persistent ID31DF85688EBE6FEB + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Hearts,%20Hands,%20&%20Hides/04%20Drummers'%20Journey.m4a + File Folder Count4 + Library Folder Count1 + + 5382 + + Track ID5382 + NameDrummers' Journey + ArtistThe Native Flute Ensemble + ComposerVarious Composers + AlbumHearts, Hands, & Hides + GenreWorld + KindAAC audio file + Size6567451 + Total Time271741 + Disc Number1 + Disc Count1 + Track Number4 + Track Count10 + Year1997 + Date Modified2006-08-07T08:59:50Z + Date Added2009-10-03T14:58:17Z + Bit Rate192 + Sample Rate44100 + Normalization1175 + Compilation + Artwork Count1 + Sort ArtistNative Flute Ensemble + Persistent ID75F0FD756C0101C5 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Hearts,%20Hands,%20&%20Hides/04%20Drummers'%20Journey%201.m4a + File Folder Count4 + Library Folder Count1 + + 5384 + + Track ID5384 + NameYa-Ta-Hey + ArtistEric Casillas + ComposerVarious Composers + AlbumHearts, Hands, & Hides + GenreWorld + KindAAC audio file + Size9830198 + Total Time407760 + Disc Number1 + Disc Count1 + Track Number5 + Track Count10 + Year1997 + Date Modified2007-09-10T09:25:30Z + Date Added2009-10-03T14:58:17Z + Bit Rate192 + Sample Rate44100 + Normalization1175 + Compilation + Persistent IDFAF8807758495CF3 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Hearts,%20Hands,%20&%20Hides/05%20Ya-Ta-Hey.m4a + File Folder Count4 + Library Folder Count1 + + 5386 + + Track ID5386 + NameYa-Ta-Hey + ArtistEric Casillas + ComposerVarious Composers + AlbumHearts, Hands, & Hides + GenreWorld + KindAAC audio file + Size9840585 + Total Time407764 + Disc Number1 + Disc Count1 + Track Number5 + Track Count10 + Year1997 + Date Modified2006-08-07T08:59:48Z + Date Added2009-10-03T14:58:17Z + Bit Rate192 + Sample Rate44100 + Normalization1175 + Compilation + Artwork Count1 + Persistent IDBE0DED22C6B5B2A1 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Hearts,%20Hands,%20&%20Hides/05%20Ya-Ta-Hey%201.m4a + File Folder Count4 + Library Folder Count1 + + 5388 + + Track ID5388 + NameInvoking The Hawks' Spirit + ArtistThe Mesa Music Consort + ComposerVarious Composers + AlbumHearts, Hands, & Hides + GenreWorld + KindAAC audio file + Size7945884 + Total Time329906 + Disc Number1 + Disc Count1 + Track Number6 + Track Count10 + Year1997 + Date Modified2007-09-10T09:26:04Z + Date Added2009-10-03T14:58:17Z + Bit Rate192 + Sample Rate44100 + Normalization1174 + Compilation + Sort ArtistMesa Music Consort + Persistent ID10F7D177D3DB3D4C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Hearts,%20Hands,%20&%20Hides/06%20Invoking%20The%20Hawks'%20Spirit.m4a + File Folder Count4 + Library Folder Count1 + + 5390 + + Track ID5390 + NameInvoking The Hawks' Spirit + ArtistThe Mesa Music Consort + ComposerVarious Composers + AlbumHearts, Hands, & Hides + GenreWorld + KindAAC audio file + Size7956233 + Total Time329907 + Disc Number1 + Disc Count1 + Track Number6 + Track Count10 + Year1997 + Date Modified2006-08-07T08:59:48Z + Date Added2009-10-03T14:58:17Z + Bit Rate192 + Sample Rate44100 + Normalization1174 + Compilation + Artwork Count1 + Sort ArtistMesa Music Consort + Persistent IDC7881EE0E01C181C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Hearts,%20Hands,%20&%20Hides/06%20Invoking%20The%20Hawks'%20Spirit%201.m4a + File Folder Count4 + Library Folder Count1 + + 5392 + + Track ID5392 + NameCrow Dogs' Paradise + ArtistPeter "Wyoming" Bender + ComposerVarious Composers + AlbumHearts, Hands, & Hides + GenreWorld + KindAAC audio file + Size4547093 + Total Time189466 + Disc Number1 + Disc Count1 + Track Number7 + Track Count10 + Year1997 + Date Modified2007-09-10T09:26:26Z + Date Added2009-10-03T14:58:17Z + Bit Rate192 + Sample Rate44100 + Normalization1412 + Compilation + Persistent ID6F5FD9D930F3EF0F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Hearts,%20Hands,%20&%20Hides/07%20Crow%20Dogs'%20Paradise.m4a + File Folder Count4 + Library Folder Count1 + + 5394 + + Track ID5394 + NameCrow Dogs' Paradise + ArtistPeter "Wyoming" Bender + ComposerVarious Composers + AlbumHearts, Hands, & Hides + GenreWorld + KindAAC audio file + Size4560831 + Total Time189473 + Disc Number1 + Disc Count1 + Track Number7 + Track Count10 + Year1997 + Date Modified2006-08-07T08:59:48Z + Date Added2009-10-03T14:58:18Z + Bit Rate192 + Sample Rate44100 + Normalization1410 + Compilation + Artwork Count1 + Persistent ID1310E5FEA90C760B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Hearts,%20Hands,%20&%20Hides/07%20Crow%20Dogs'%20Paradise%201.m4a + File Folder Count4 + Library Folder Count1 + + 5396 + + Track ID5396 + NameFlute Song + ArtistMarilyn Rife with Alice Gomez + ComposerVarious Composers + AlbumHearts, Hands, & Hides + GenreWorld + KindAAC audio file + Size9019296 + Total Time374333 + Disc Number1 + Disc Count1 + Track Number8 + Track Count10 + Year1997 + Date Modified2007-09-10T09:27:08Z + Date Added2009-10-03T14:58:18Z + Bit Rate192 + Sample Rate44100 + Normalization1175 + Compilation + Persistent IDB0A9163562DC07AF + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Hearts,%20Hands,%20&%20Hides/08%20Flute%20Song.m4a + File Folder Count4 + Library Folder Count1 + + 5398 + + Track ID5398 + NameFlute Song + ArtistMarilyn Rife with Alice Gomez + ComposerVarious Composers + AlbumHearts, Hands, & Hides + GenreWorld + KindAAC audio file + Size9029891 + Total Time374350 + Disc Number1 + Disc Count1 + Track Number8 + Track Count10 + Year1997 + Date Modified2006-08-07T08:59:48Z + Date Added2009-10-03T14:58:18Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3338470875 + Play Date UTC2009-10-15T11:31:15Z + Normalization1175 + Compilation + Artwork Count1 + Persistent ID7C943BF358291414 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Hearts,%20Hands,%20&%20Hides/08%20Flute%20Song%201.m4a + File Folder Count4 + Library Folder Count1 + + 5400 + + Track ID5400 + NameRoad Opener + ArtistEric Casillas + ComposerVarious Composers + AlbumHearts, Hands, & Hides + GenreWorld + KindAAC audio file + Size7872162 + Total Time326360 + Disc Number1 + Disc Count1 + Track Number9 + Track Count10 + Year1997 + Date Modified2007-09-10T09:27:44Z + Date Added2009-10-03T14:58:18Z + Bit Rate192 + Sample Rate44100 + Normalization1175 + Compilation + Persistent IDC9EB19AC824C859C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Hearts,%20Hands,%20&%20Hides/09%20Road%20Opener.m4a + File Folder Count4 + Library Folder Count1 + + 5402 + + Track ID5402 + NameRoad Opener + ArtistEric Casillas + ComposerVarious Composers + AlbumHearts, Hands, & Hides + GenreWorld + KindAAC audio file + Size7882672 + Total Time326378 + Disc Number1 + Disc Count1 + Track Number9 + Track Count10 + Year1997 + Date Modified2006-08-07T08:59:48Z + Date Added2009-10-03T14:58:18Z + Bit Rate192 + Sample Rate44100 + Normalization1175 + Compilation + Artwork Count1 + Persistent ID78AD2BBD7C76B210 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Hearts,%20Hands,%20&%20Hides/09%20Road%20Opener%201.m4a + File Folder Count4 + Library Folder Count1 + + 5404 + + Track ID5404 + NameDrum Quest + ArtistThe Native Flute Ensemble + ComposerVarious Composers + AlbumHearts, Hands, & Hides + GenreWorld + KindAAC audio file + Size6582109 + Total Time271840 + Disc Number1 + Disc Count1 + Track Number10 + Track Count10 + Year1997 + Date Modified2007-09-10T09:28:14Z + Date Added2009-10-03T14:58:18Z + Bit Rate192 + Sample Rate44100 + Normalization1174 + Compilation + Sort ArtistNative Flute Ensemble + Persistent ID12F036DFF82D288B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Hearts,%20Hands,%20&%20Hides/10%20Drum%20Quest.m4a + File Folder Count4 + Library Folder Count1 + + 5406 + + Track ID5406 + NameDrum Quest + ArtistThe Native Flute Ensemble + ComposerVarious Composers + AlbumHearts, Hands, & Hides + GenreWorld + KindAAC audio file + Size6592543 + Total Time271857 + Disc Number1 + Disc Count1 + Track Number10 + Track Count10 + Year1997 + Date Modified2006-08-07T08:59:48Z + Date Added2009-10-03T14:58:18Z + Bit Rate192 + Sample Rate44100 + Normalization1174 + Compilation + Artwork Count1 + Sort ArtistNative Flute Ensemble + Persistent ID7D25652D80FA2C62 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Hearts,%20Hands,%20&%20Hides/10%20Drum%20Quest%201.m4a + File Folder Count4 + Library Folder Count1 + + 5408 + + Track ID5408 + NameChalte Chalte + ArtistLata Mangeshkar + ComposerVarious + AlbumGreatest Hits Of The 70s + GenreSoundtrack + KindAAC audio file + Size8557915 + Total Time352426 + Track Number1 + Track Count15 + Date Modified2007-08-16T15:30:40Z + Date Added2009-10-03T14:58:18Z + Bit Rate192 + Sample Rate44100 + Normalization2888 + Compilation + Artwork Count1 + Persistent ID0EA93865FE847442 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Greatest%20Hits%20Of%20The%2070s/01%20Chalte%20Chalte.m4a + File Folder Count4 + Library Folder Count1 + + 5410 + + Track ID5410 + NameYeh Sham Mastani + ArtistKishore Kumar + ComposerVarious + AlbumGreatest Hits Of The 70s + GenreSoundtrack + KindAAC audio file + Size6864522 + Total Time283573 + Track Number2 + Track Count15 + Date Modified2007-08-16T15:33:28Z + Date Added2009-10-03T14:58:19Z + Bit Rate192 + Sample Rate44100 + Normalization2724 + Compilation + Artwork Count1 + Persistent IDC438EEB10AEC241A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Greatest%20Hits%20Of%20The%2070s/02%20Yeh%20Sham%20Mastani.m4a + File Folder Count4 + Library Folder Count1 + + 5412 + + Track ID5412 + NameKoi Jab Tumhara Hriday Tod De + ArtistMukesh + ComposerVarious + AlbumGreatest Hits Of The 70s + GenreSoundtrack + KindAAC audio file + Size5185604 + Total Time214333 + Track Number3 + Track Count15 + Date Modified2007-08-16T15:35:40Z + Date Added2009-10-03T14:58:19Z + Bit Rate192 + Sample Rate44100 + Normalization888 + Compilation + Artwork Count1 + Persistent ID69E27BF0275F111B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Greatest%20Hits%20Of%20The%2070s/03%20Koi%20Jab%20Tumhara%20Hriday%20Tod%20De.m4a + File Folder Count4 + Library Folder Count1 + + 5414 + + Track ID5414 + NamePhoolon Ke Rang Se + ArtistKishore Kumar + ComposerVarious + AlbumGreatest Hits Of The 70s + GenreSoundtrack + KindAAC audio file + Size7213860 + Total Time297733 + Track Number4 + Track Count15 + Date Modified2007-08-16T15:38:18Z + Date Added2009-10-03T14:58:19Z + Bit Rate192 + Sample Rate44100 + Normalization1464 + Compilation + Artwork Count1 + Persistent IDA65A278DE4B9A0E4 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Greatest%20Hits%20Of%20The%2070s/04%20Phoolon%20Ke%20Rang%20Se.m4a + File Folder Count4 + Library Folder Count1 + + 5416 + + Track ID5416 + NameRanina Beeti Jaye + ArtistLata Mangeshkar + ComposerVarious + AlbumGreatest Hits Of The 70s + GenreSoundtrack + KindAAC audio file + Size8192172 + Total Time337800 + Track Number5 + Track Count15 + Date Modified2007-08-16T15:41:02Z + Date Added2009-10-03T14:58:19Z + Bit Rate192 + Sample Rate44100 + Normalization2428 + Compilation + Artwork Count1 + Persistent ID31CDBFC332530B24 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Greatest%20Hits%20Of%20The%2070s/05%20Ranina%20Beeti%20Jaye.m4a + File Folder Count4 + Library Folder Count1 + + 5418 + + Track ID5418 + NamePhoolon Ka Taron Ka + ArtistKishore Kumar + ComposerVarious + AlbumGreatest Hits Of The 70s + GenreSoundtrack + KindAAC audio file + Size5344061 + Total Time221133 + Track Number6 + Track Count15 + Date Modified2007-08-16T15:42:36Z + Date Added2009-10-03T14:58:19Z + Bit Rate192 + Sample Rate44100 + Normalization2379 + Compilation + Artwork Count1 + Persistent ID7DD7857AE789BB68 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Greatest%20Hits%20Of%20The%2070s/06%20Phoolon%20Ka%20Taron%20Ka.m4a + File Folder Count4 + Library Folder Count1 + + 5420 + + Track ID5420 + NameZindagi Ek Safar Hai + ArtistKishore Kumar + ComposerVarious + AlbumGreatest Hits Of The 70s + GenreSoundtrack + KindAAC audio file + Size461522 + Total Time17000 + Track Number7 + Track Count15 + Date Modified2007-08-16T15:42:48Z + Date Added2009-10-03T14:58:19Z + Bit Rate192 + Sample Rate44100 + Normalization3466 + Compilation + Artwork Count1 + Persistent ID5926D4BA436A1452 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Greatest%20Hits%20Of%20The%2070s/07%20Zindagi%20Ek%20Safar%20Hai.m4a + File Folder Count4 + Library Folder Count1 + + 5422 + + Track ID5422 + NameJane Kahan Gaye Woh Din + ArtistMukesh + ComposerVarious + AlbumGreatest Hits Of The 70s + GenreSoundtrack + KindAAC audio file + Size7022062 + Total Time289830 + Track Number8 + Track Count15 + Date Modified2007-04-03T03:42:54Z + Date Added2009-10-03T14:58:19Z + Bit Rate192 + Sample Rate44100 + Normalization1453 + Compilation + Artwork Count1 + Persistent IDFC0A3C29A31981C6 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Greatest%20Hits%20Of%20The%2070s/08%20Jane%20Kahan%20Gaye%20Woh%20Din.m4a + File Folder Count4 + Library Folder Count1 + + 5424 + + Track ID5424 + NameDilbar Dil Se Pyare + ArtistLata Mangeshkar + ComposerVarious + AlbumGreatest Hits Of The 70s + GenreSoundtrack + KindAAC audio file + Size6914171 + Total Time284512 + Track Number9 + Track Count15 + Date Modified2007-04-09T08:23:24Z + Date Added2009-10-03T14:58:20Z + Bit Rate192 + Sample Rate44100 + Normalization2456 + Compilation + Artwork Count1 + Persistent ID1643633BEBEAC5FD + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Greatest%20Hits%20Of%20The%2070s/09%20Dilbar%20Dil%20Se%20Pyare.m4a + File Folder Count4 + Library Folder Count1 + + 5426 + + Track ID5426 + NameZindagi Ka Safar + Artistkishore kumar + ComposerVarious + AlbumGreatest Hits Of The 70s + GenreHindi Old hits + KindAAC audio file + Size5840466 + Total Time241346 + Track Number10 + Track Count15 + Date Modified2007-04-09T08:36:48Z + Date Added2009-10-03T14:58:20Z + Bit Rate192 + Sample Rate44100 + Normalization1745 + Compilation + Artwork Count1 + Persistent IDB4B20C3B1020F6B8 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Greatest%20Hits%20Of%20The%2070s/10%20Zindagi%20Ka%20Safar.m4a + File Folder Count4 + Library Folder Count1 + + 5428 + + Track ID5428 + NameDuniya Mein + ArtistR.D. Burman + ComposerVarious + AlbumGreatest Hits Of The 70s + GenreSoundtrack + KindAAC audio file + Size8511755 + Total Time351804 + Track Number11 + Track Count15 + Date Modified2006-10-06T10:24:34Z + Date Added2009-10-03T14:58:20Z + Bit Rate192 + Sample Rate44100 + Normalization4230 + Compilation + Persistent IDD4FA158A30ED4F56 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Greatest%20Hits%20Of%20The%2070s/11%20Duniya%20Mein.m4a + File Folder Count4 + Library Folder Count1 + + 5430 + + Track ID5430 + NameBeeti Na Bitai Raina + ArtistR.D. Burman + ComposerVarious + AlbumGreatest Hits Of The 70s + GenreSoundtrack + KindAAC audio file + Size4710400 + Total Time195115 + Track Number12 + Track Count15 + Date Modified2006-10-06T10:24:46Z + Date Added2009-10-03T14:58:20Z + Bit Rate192 + Sample Rate44100 + Normalization4682 + Compilation + Persistent IDEBB7631FCF3E7224 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Greatest%20Hits%20Of%20The%2070s/12%20Beeti%20Na%20Bitai%20Raina.m4a + File Folder Count4 + Library Folder Count1 + + 5432 + + Track ID5432 + NameTeri Bindiya Re + ArtistLata Mangeshkar & Mohd. Rafi + ComposerVarious + AlbumGreatest Hits Of The 70s + GenreHindi Old hits + KindAAC audio file + Size6632846 + Total Time272949 + Track Number13 + Track Count15 + Date Modified2007-10-25T16:27:22Z + Date Added2009-10-03T14:58:20Z + Bit Rate192 + Sample Rate44100 + Normalization3309 + Compilation + Artwork Count1 + Persistent ID29F8FB353C4EB95C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Greatest%20Hits%20Of%20The%2070s/13%20Teri%20Bindiya%20Re.m4a + File Folder Count4 + Library Folder Count1 + + 5434 + + Track ID5434 + NameYeh Jeevan Hai + Artistkishore kumar + ComposerVarious + AlbumGreatest Hits Of The 70s + GenreHindi Old hits + KindAAC audio file + Size5726369 + Total Time236470 + Track Number14 + Track Count15 + Date Modified2007-04-09T08:36:48Z + Date Added2009-10-03T14:58:20Z + Bit Rate192 + Sample Rate44100 + Normalization1083 + Compilation + Artwork Count1 + Persistent ID47AF7DE2425872F6 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Greatest%20Hits%20Of%20The%2070s/14%20Yeh%20Jeevan%20Hai.m4a + File Folder Count4 + Library Folder Count1 + + 5436 + + Track ID5436 + NameAchha To Hum Chalte Hain + Artistkishore kumar + ComposerVarious + AlbumGreatest Hits Of The 70s + GenreHindi Old hits + KindAAC audio file + Size7150496 + Total Time295124 + Track Number15 + Track Count15 + Date Modified2007-04-09T08:36:50Z + Date Added2009-10-03T14:58:20Z + Bit Rate192 + Sample Rate44100 + Normalization3820 + Compilation + Artwork Count1 + Persistent ID63691BE44E8BFFC5 + Disabled + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Greatest%20Hits%20Of%20The%2070s/15%20Achha%20To%20Hum%20Chalte%20Hain.m4a + File Folder Count4 + Library Folder Count1 + + 5438 + + Track ID5438 + NameDancing Queen + ArtistABBA + ComposerStig Anderson + AlbumGold + GenrePop + KindAAC audio file + Size7592555 + Total Time231533 + Disc Number1 + Disc Count1 + Track Number1 + Track Count19 + Year1976 + BPM100 + Date Modified2008-10-17T16:48:45Z + Date Added2009-10-03T14:58:20Z + Bit Rate256 + Sample Rate44100 + Normalization5002 + Compilation + Artwork Count1 + Persistent ID69699F64765E1DDA + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Gold/01%20Dancing%20Queen.m4a + File Folder Count4 + Library Folder Count1 + + 5440 + + Track ID5440 + NameKnowing Me, Knowing You + ArtistABBA + ComposerStig Anderson + AlbumGold + GenrePop + KindAAC audio file + Size7930587 + Total Time243640 + Disc Number1 + Disc Count1 + Track Number2 + Track Count19 + Year1976 + Date Modified2008-10-17T16:48:45Z + Date Added2009-10-03T14:58:20Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3456926761 + Play Date UTC2013-07-17T11:56:01Z + Normalization3850 + Compilation + Artwork Count1 + Persistent ID938621E11952D6D5 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Gold/02%20Knowing%20Me,%20Knowing%20You.m4a + File Folder Count4 + Library Folder Count1 + + 5442 + + Track ID5442 + NameTake A Chance On Me + ArtistABBA + ComposerBjörn Ulvaeus + AlbumGold + GenrePop + KindAAC audio file + Size8004000 + Total Time246400 + Disc Number1 + Disc Count1 + Track Number3 + Track Count19 + Year1978 + Date Modified2008-10-17T16:48:44Z + Date Added2009-10-03T14:58:20Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3456927007 + Play Date UTC2013-07-17T12:00:07Z + Normalization2710 + Compilation + Artwork Count1 + Persistent ID877A59846416E2D2 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Gold/03%20Take%20A%20Chance%20On%20Me.m4a + File Folder Count4 + Library Folder Count1 + + 5444 + + Track ID5444 + NameMamma Mia + ArtistABBA + ComposerBjörn Ulvaeus + AlbumGold + GenrePop + KindAAC audio file + Size6940296 + Total Time213466 + Disc Number1 + Disc Count1 + Track Number4 + Track Count19 + Year1975 + Date Modified2008-10-17T16:48:43Z + Date Added2009-10-03T14:58:21Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3456927221 + Play Date UTC2013-07-17T12:03:41Z + Normalization3397 + Compilation + Artwork Count1 + Persistent ID9C7DF0D8D39E9DDB + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Gold/04%20Mamma%20Mia.m4a + File Folder Count4 + Library Folder Count1 + + 5446 + + Track ID5446 + NameLay All Your Love On Me + ArtistABBA + ComposerBjörn Ulvaeus + AlbumGold + GenrePop + KindAAC audio file + Size8971469 + Total Time275466 + Disc Number1 + Disc Count1 + Track Number5 + Track Count19 + Year1980 + Date Modified2008-10-17T16:48:43Z + Date Added2009-10-03T14:58:21Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3456927496 + Play Date UTC2013-07-17T12:08:16Z + Normalization2796 + Compilation + Artwork Count1 + Persistent ID652ABFC8E2A51188 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Gold/05%20Lay%20All%20Your%20Love%20On%20Me.m4a + File Folder Count4 + Library Folder Count1 + + 5448 + + Track ID5448 + NameSuper Trouper + ArtistABBA + ComposerBjörn Ulvaeus + AlbumGold + GenrePop + KindAAC audio file + Size8262408 + Total Time253693 + Disc Number1 + Disc Count1 + Track Number6 + Track Count19 + Year1980 + Date Modified2008-10-17T16:48:42Z + Date Added2009-10-03T14:58:21Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3456927750 + Play Date UTC2013-07-17T12:12:30Z + Normalization2436 + Compilation + Artwork Count1 + Persistent IDCF89D15699CAEC23 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Gold/06%20Super%20Trouper.m4a + File Folder Count4 + Library Folder Count1 + + 5450 + + Track ID5450 + NameI Have A Dream + ArtistABBA + ComposerBjörn Ulvaeus + AlbumGold + GenrePop + KindAAC audio file + Size9295545 + Total Time282866 + Disc Number1 + Disc Count1 + Track Number7 + Track Count19 + Year1979 + Date Modified2008-10-17T16:48:42Z + Date Added2009-10-03T14:58:21Z + Bit Rate256 + Sample Rate44100 + Normalization1498 + Compilation + Artwork Count1 + Persistent ID54D4226147CF39A3 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Gold/07%20I%20Have%20A%20Dream.m4a + File Folder Count4 + Library Folder Count1 + + 5452 + + Track ID5452 + NameThe Winner Takes It All + ArtistABBA + ComposerBjörn Ulvaeus + AlbumGold + GenrePop + KindAAC audio file + Size9649861 + Total Time294666 + Disc Number1 + Disc Count1 + Track Number8 + Track Count19 + Year1980 + Date Modified2008-10-17T16:48:41Z + Date Added2009-10-03T14:58:21Z + Bit Rate256 + Sample Rate44100 + Normalization4005 + Compilation + Artwork Count1 + Sort NameWinner Takes It All + Persistent IDA4055EABA9B2D39C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Gold/08%20The%20Winner%20Takes%20It%20All.m4a + File Folder Count4 + Library Folder Count1 + + 5454 + + Track ID5454 + NameMoney, Money, Money + ArtistABBA + ComposerBjörn Ulvaeus + AlbumGold + GenrePop + KindAAC audio file + Size6092508 + Total Time186066 + Disc Number1 + Disc Count1 + Track Number9 + Track Count19 + Year1976 + Date Modified2008-10-17T16:48:40Z + Date Added2009-10-03T14:58:21Z + Bit Rate256 + Sample Rate44100 + Normalization3432 + Compilation + Artwork Count1 + Persistent ID291062C077E99A1B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Gold/09%20Money,%20Money,%20Money.m4a + File Folder Count4 + Library Folder Count1 + + 5456 + + Track ID5456 + NameS.O.S. + ArtistABBA + ComposerStig Anderson + AlbumGold + GenrePop + KindAAC audio file + Size6583672 + Total Time200973 + Disc Number1 + Disc Count1 + Track Number10 + Track Count19 + Year1975 + Date Modified2008-10-17T16:48:40Z + Date Added2009-10-03T14:58:21Z + Bit Rate256 + Sample Rate44100 + Normalization4887 + Compilation + Artwork Count1 + Persistent ID8D054CC6EFD5EEEF + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Gold/10%20S.O.S..m4a + File Folder Count4 + Library Folder Count1 + + 5458 + + Track ID5458 + NameChiquitita + ArtistABBA + ComposerBjörn Ulvaeus + AlbumGold + GenrePop + KindAAC audio file + Size10653223 + Total Time324626 + Disc Number1 + Disc Count1 + Track Number11 + Track Count19 + Year1979 + Date Modified2008-10-17T16:48:39Z + Date Added2009-10-03T14:58:21Z + Bit Rate256 + Sample Rate44100 + Normalization3477 + Compilation + Artwork Count1 + Persistent ID924011CFC8BB9EB7 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Gold/11%20Chiquitita.m4a + File Folder Count4 + Library Folder Count1 + + 5460 + + Track ID5460 + NameFernando + ArtistABBA + ComposerBjörn Ulvaeus + AlbumGold + GenrePop + KindAAC audio file + Size8295557 + Total Time254466 + Disc Number1 + Disc Count1 + Track Number12 + Track Count19 + Year1976 + Date Modified2008-10-17T16:48:39Z + Date Added2009-10-03T14:58:22Z + Bit Rate256 + Sample Rate44100 + Normalization2432 + Compilation + Artwork Count1 + Persistent IDCD457E561ED05DF6 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Gold/12%20Fernando.m4a + File Folder Count4 + Library Folder Count1 + + 5462 + + Track ID5462 + NameVoulez Vous + ArtistABBA + ComposerBjörn Ulvaeus + AlbumGold + GenrePop + KindAAC audio file + Size10089112 + Total Time310973 + Disc Number1 + Disc Count1 + Track Number13 + Track Count19 + Year1979 + Date Modified2008-10-17T16:48:38Z + Date Added2009-10-03T14:58:22Z + Bit Rate256 + Sample Rate44100 + Normalization3619 + Compilation + Artwork Count1 + Persistent ID22D81BAEFB3B3FAA + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Gold/13%20Voulez%20Vous.m4a + File Folder Count4 + Library Folder Count1 + + 5464 + + Track ID5464 + NameGimme! Gimme! Gimme! (A Man After Midnight) + ArtistABBA + ComposerBjörn Ulvaeus + AlbumGold + GenrePop + KindAAC audio file + Size9501636 + Total Time292760 + Disc Number1 + Disc Count1 + Track Number14 + Track Count19 + Year1979 + Date Modified2008-10-17T16:48:37Z + Date Added2009-10-03T14:58:22Z + Bit Rate256 + Sample Rate44100 + Normalization1921 + Compilation + Artwork Count1 + Persistent ID8D139F6EB08A807D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Gold/14%20Gimme!%20Gimme!%20Gimme!%20(A%20Man%20After%20Midnight).m4a + File Folder Count4 + Library Folder Count1 + + 5466 + + Track ID5466 + NameDoes Your Mother Know + ArtistABBA + ComposerBjörn Ulvaeus + AlbumGold + GenrePop + KindAAC audio file + Size6349462 + Total Time193506 + Disc Number1 + Disc Count1 + Track Number15 + Track Count19 + Year1979 + Date Modified2008-10-17T16:48:37Z + Date Added2009-10-03T14:58:22Z + Bit Rate256 + Sample Rate44100 + Skip Count1 + Skip Date2014-06-05T05:28:31Z + Normalization5592 + Compilation + Artwork Count1 + Persistent ID047FD530ED7A86F2 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Gold/15%20Does%20Your%20Mother%20Know.m4a + File Folder Count4 + Library Folder Count1 + + 5468 + + Track ID5468 + NameOne Of Us + ArtistABBA + ComposerBjörn Ulvaeus + AlbumGold + GenrePop + KindAAC audio file + Size7694568 + Total Time237360 + Disc Number1 + Disc Count1 + Track Number16 + Track Count19 + Year1981 + Date Modified2008-10-17T16:48:36Z + Date Added2009-10-03T14:58:22Z + Bit Rate256 + Sample Rate44100 + Skip Count1 + Skip Date2014-06-05T05:28:42Z + Normalization2689 + Compilation + Artwork Count1 + Persistent IDA11D93AAA252984E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Gold/16%20One%20Of%20Us.m4a + File Folder Count4 + Library Folder Count1 + + 5470 + + Track ID5470 + NameThe Name Of The Game + ArtistABBA + ComposerStig Anderson + AlbumGold + GenrePop + KindAAC audio file + Size9561098 + Total Time293773 + Disc Number1 + Disc Count1 + Track Number17 + Track Count19 + Year1977 + Date Modified2008-10-17T16:48:36Z + Date Added2009-10-03T14:58:22Z + Bit Rate256 + Sample Rate44100 + Normalization2629 + Compilation + Artwork Count1 + Sort NameName Of The Game + Persistent ID5CEAA638B0669E3D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Gold/17%20The%20Name%20Of%20The%20Game.m4a + File Folder Count4 + Library Folder Count1 + + 5472 + + Track ID5472 + NameThank You For The Music + ArtistABBA + ComposerBjörn Ulvaeus + AlbumGold + GenrePop + KindAAC audio file + Size7506503 + Total Time229666 + Disc Number1 + Disc Count1 + Track Number18 + Track Count19 + Year1983 + Date Modified2008-10-17T16:48:35Z + Date Added2009-10-03T14:58:22Z + Bit Rate256 + Sample Rate44100 + Normalization2792 + Compilation + Artwork Count1 + Persistent ID81C352243C42D0AE + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Gold/18%20Thank%20You%20For%20The%20Music.m4a + File Folder Count4 + Library Folder Count1 + + 5474 + + Track ID5474 + NameWaterloo + ArtistABBA + ComposerStig Anderson + AlbumGold + GenrePop + KindAAC audio file + Size5367769 + Total Time168093 + Disc Number1 + Disc Count1 + Track Number19 + Track Count19 + Year1974 + BPM146 + Date Modified2008-10-17T16:48:35Z + Date Added2009-10-03T14:58:22Z + Bit Rate256 + Sample Rate44100 + Skip Count1 + Skip Date2014-06-05T05:33:43Z + Normalization7048 + Compilation + Artwork Count1 + Persistent ID359746D7F9784FCB + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Gold/19%20Waterloo.m4a + File Folder Count4 + Library Folder Count1 + + 5476 + + Track ID5476 + NameClosing + ArtistPhilip Glass + Album ArtistPhilip Glass Ensemble: Philip Glass + ComposerPHILIP GLASS (b. 1937) + AlbumGlassworks - Expanded Edition + GenreClassical + KindAAC audio file + Size8766433 + Total Time363760 + Disc Number1 + Disc Count1 + Track Number6 + Track Count11 + Year2003 + Date Modified2007-11-15T20:59:04Z + Date Added2009-10-03T14:58:23Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3467304521 + Play Date UTC2013-11-14T14:38:41Z + Normalization481 + Compilation + Artwork Count1 + Persistent ID5D1C8D96DED98F70 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Glassworks%20-%20Expanded%20Edition/06%20Closing.m4a + File Folder Count4 + Library Folder Count1 + + 5478 + + Track ID5478 + NameDance I + ArtistPhilip Glass + Album ArtistMichael Riesman: Philip Glass Ensemble + AlbumGlassworks - Expanded Edition + GenreClassical + KindAAC audio file + Size1729636 + Total Time70600 + Disc Number1 + Disc Count1 + Track Number7 + Track Count11 + Year1987 + Date Modified2007-11-15T20:58:32Z + Date Added2009-10-03T14:58:23Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3368624858 + Play Date UTC2010-09-29T11:37:38Z + Normalization458 + Compilation + Artwork Count1 + Persistent ID9463EBF421DDA660 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Glassworks%20-%20Expanded%20Edition/07%20Dance%20I.m4a + File Folder Count4 + Library Folder Count1 + + 5480 + + Track ID5480 + NameDance II + ArtistPhilip Glass + Album ArtistMichael Riesman: Philip Glass Ensemble + AlbumGlassworks - Expanded Edition + GenreClassical + KindAAC audio file + Size8339757 + Total Time342440 + Disc Number1 + Disc Count1 + Track Number8 + Track Count11 + Year1987 + Date Modified2007-11-15T20:58:32Z + Date Added2009-10-03T14:58:23Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3368625200 + Play Date UTC2010-09-29T11:43:20Z + Normalization288 + Compilation + Artwork Count1 + Persistent IDC67DE4DCB69182EE + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Glassworks%20-%20Expanded%20Edition/08%20Dance%20II.m4a + File Folder Count4 + Library Folder Count1 + + 5482 + + Track ID5482 + NameDance IX + ArtistPhilip Glass + Album ArtistMichael Riesman: Philip Glass Ensemble + AlbumGlassworks - Expanded Edition + GenreClassical + KindAAC audio file + Size11894650 + Total Time490706 + Disc Number1 + Disc Count1 + Track Number11 + Track Count11 + Year1987 + Date Modified2007-11-15T20:58:32Z + Date Added2009-10-03T14:58:23Z + Bit Rate192 + Sample Rate44100 + Normalization1274 + Compilation + Artwork Count1 + Persistent ID074FD54A89BA5272 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Glassworks%20-%20Expanded%20Edition/11%20Dance%20IX.m4a + File Folder Count4 + Library Folder Count1 + + 5484 + + Track ID5484 + NameDance V + ArtistPhilip Glass + Album ArtistMichael Riesman: Philip Glass Ensemble + AlbumGlassworks - Expanded Edition + GenreClassical + KindAAC audio file + Size4983122 + Total Time205026 + Disc Number1 + Disc Count1 + Track Number9 + Track Count11 + Year1987 + Date Modified2007-11-15T20:58:32Z + Date Added2009-10-03T14:58:23Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3368625405 + Play Date UTC2010-09-29T11:46:45Z + Normalization286 + Compilation + Artwork Count1 + Persistent IDA1B23DCB0AB3537A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Glassworks%20-%20Expanded%20Edition/09%20Dance%20V.m4a + File Folder Count4 + Library Folder Count1 + + 5486 + + Track ID5486 + NameDance VIII + ArtistPhilip Glass + Album ArtistMichael Riesman: Philip Glass Ensemble + AlbumGlassworks - Expanded Edition + GenreClassical + KindAAC audio file + Size7286847 + Total Time297933 + Disc Number1 + Disc Count1 + Track Number10 + Track Count11 + Year1987 + Date Modified2007-11-15T20:58:32Z + Date Added2009-10-03T14:58:23Z + Bit Rate192 + Sample Rate44100 + Normalization496 + Compilation + Artwork Count1 + Persistent IDED2272D47AAD9D55 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Glassworks%20-%20Expanded%20Edition/10%20Dance%20VIII.m4a + File Folder Count4 + Library Folder Count1 + + 5488 + + Track ID5488 + NameFacades + ArtistPhilip Glass + Album ArtistPhilip Glass Ensemble: Philip Glass + ComposerPHILIP GLASS (b. 1937) + AlbumGlassworks - Expanded Edition + GenreClassical + KindAAC audio file + Size10721195 + Total Time441200 + Disc Number1 + Disc Count1 + Track Number5 + Track Count11 + Year2003 + Date Modified2007-11-15T20:59:04Z + Date Added2009-10-03T14:58:23Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3467304157 + Play Date UTC2013-11-14T14:32:37Z + Normalization686 + Compilation + Artwork Count1 + Persistent ID9A9AB1938901DC9B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Glassworks%20-%20Expanded%20Edition/05%20Facades.m4a + File Folder Count4 + Library Folder Count1 + + 5490 + + Track ID5490 + NameFloe + ArtistPhilip Glass + Album ArtistPhilip Glass Ensemble: Philip Glass + ComposerPHILIP GLASS (b. 1937) + AlbumGlassworks - Expanded Edition + GenreClassical + KindAAC audio file + Size8732842 + Total Time359506 + Disc Number1 + Disc Count1 + Track Number2 + Track Count11 + Year2003 + Date Modified2007-11-15T20:59:04Z + Date Added2009-10-03T14:58:23Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3467302891 + Play Date UTC2013-11-14T14:11:31Z + Normalization1174 + Compilation + Artwork Count1 + Persistent IDB35CDAA793BF375C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Glassworks%20-%20Expanded%20Edition/02%20Floe.m4a + File Folder Count4 + Library Folder Count1 + + 5492 + + Track ID5492 + NameIslands + ArtistPhilip Glass + Album ArtistPhilip Glass Ensemble: Philip Glass + ComposerPHILIP GLASS (b. 1937) + AlbumGlassworks - Expanded Edition + GenreClassical + KindAAC audio file + Size11223667 + Total Time460360 + Disc Number1 + Disc Count1 + Track Number3 + Track Count11 + Year2003 + Date Modified2007-11-15T20:59:04Z + Date Added2009-10-03T14:58:23Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3467303351 + Play Date UTC2013-11-14T14:19:11Z + Normalization633 + Compilation + Artwork Count1 + Persistent ID891FB58B6951C84F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Glassworks%20-%20Expanded%20Edition/03%20Islands.m4a + File Folder Count4 + Library Folder Count1 + + 5494 + + Track ID5494 + NameOpening + ArtistPhilip Glass + Album ArtistPhilip Glass Ensemble: Philip Glass + ComposerPHILIP GLASS (b. 1937) + AlbumGlassworks - Expanded Edition + GenreClassical + KindAAC audio file + Size9431454 + Total Time384893 + Disc Number1 + Disc Count1 + Track Number1 + Track Count11 + Year2003 + Date Modified2007-11-15T20:59:04Z + Date Added2009-10-03T14:58:24Z + Bit Rate192 + Sample Rate44100 + Play Count2 + Play Date3467302532 + Play Date UTC2013-11-14T14:05:32Z + Normalization320 + Compilation + Artwork Count1 + Persistent IDAC86A4448DF5CC32 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Glassworks%20-%20Expanded%20Edition/01%20Opening.m4a + File Folder Count4 + Library Folder Count1 + + 5496 + + Track ID5496 + NameRubric + ArtistPhilip Glass + Album ArtistPhilip Glass Ensemble: Philip Glass + ComposerPHILIP GLASS (b. 1937) + AlbumGlassworks - Expanded Edition + GenreClassical + KindAAC audio file + Size8852978 + Total Time364573 + Disc Number1 + Disc Count1 + Track Number4 + Track Count11 + Year2003 + Date Modified2007-11-15T20:59:04Z + Date Added2009-10-03T14:58:24Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3467303716 + Play Date UTC2013-11-14T14:25:16Z + Normalization1766 + Compilation + Artwork Count1 + Persistent ID2FA38470791C117C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Glassworks%20-%20Expanded%20Edition/04%20Rubric.m4a + File Folder Count4 + Library Folder Count1 + + 5498 + + Track ID5498 + NameThe English Patient + ArtistGabriel Yared - Academy Of St. Martin In The Fields + ComposerGabriel Yared + AlbumEnglish Patient + GenreClassical + KindAAC audio file + Size5266976 + Total Time217314 + Disc Number1 + Disc Count1 + Track Number1 + Track Count28 + Year1996 + Date Modified2006-07-31T04:23:32Z + Date Added2009-10-03T14:58:24Z + Bit Rate192 + Sample Rate44100 + Play Count4 + Play Date3484737444 + Play Date UTC2014-06-04T09:07:24Z + Normalization618 + Compilation + Artwork Count1 + Sort NameEnglish Patient + Persistent ID4C3E47F1A0C5165E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/01%20The%20English%20Patient.m4a + File Folder Count4 + Library Folder Count1 + + 5500 + + Track ID5500 + NameA Retreat + ArtistGabriel Yared - Academy Of St. Martin In The Fields + ComposerGabriel Yared + AlbumEnglish Patient + GenreClassical + KindAAC audio file + Size2123996 + Total Time86260 + Disc Number1 + Disc Count1 + Track Number2 + Track Count28 + Year1996 + Date Modified2006-07-31T04:23:32Z + Date Added2009-10-03T14:58:24Z + Bit Rate192 + Sample Rate44100 + Play Count3 + Play Date3484737531 + Play Date UTC2014-06-04T09:08:51Z + Normalization428 + Compilation + Artwork Count1 + Sort NameRetreat + Persistent IDCBC8F819CFC4C526 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/02%20A%20Retreat.m4a + File Folder Count4 + Library Folder Count1 + + 5502 + + Track ID5502 + NameRupert Bear + ArtistGabriel Yared - Academy Of St. Martin In The Fields + ComposerGabriel Yared + AlbumEnglish Patient + GenreClassical + KindAAC audio file + Size2138327 + Total Time87003 + Disc Number1 + Disc Count1 + Track Number3 + Track Count28 + Year1996 + Date Modified2006-07-31T04:23:32Z + Date Added2009-10-03T14:58:24Z + Bit Rate192 + Sample Rate44100 + Play Count3 + Play Date3484737618 + Play Date UTC2014-06-04T09:10:18Z + Normalization814 + Compilation + Artwork Count1 + Persistent IDD238E33657334788 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/03%20Rupert%20Bear.m4a + File Folder Count4 + Library Folder Count1 + + 5504 + + Track ID5504 + NameWhat Else Do You Love + ArtistGabriel Yared - Academy Of St. Martin In The Fields + ComposerGabriel Yared + AlbumEnglish Patient + GenreClassical + KindAAC audio file + Size1634656 + Total Time65873 + Disc Number1 + Disc Count1 + Track Number4 + Track Count28 + Year1996 + Date Modified2006-07-31T04:23:32Z + Date Added2009-10-03T14:58:24Z + Bit Rate192 + Sample Rate44100 + Play Count3 + Play Date3484737683 + Play Date UTC2014-06-04T09:11:23Z + Normalization352 + Compilation + Artwork Count1 + Persistent ID612A7D10F498BAED + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/04%20What%20Else%20Do%20You%20Love.m4a + File Folder Count4 + Library Folder Count1 + + 5506 + + Track ID5506 + NameWhy Picton? + ArtistGabriel Yared - Academy Of St. Martin In The Fields + ComposerGabriel Yared + AlbumEnglish Patient + GenreClassical + KindAAC audio file + Size1711740 + Total Time69077 + Disc Number1 + Disc Count1 + Track Number5 + Track Count28 + Year1996 + Date Modified2006-07-31T04:23:32Z + Date Added2009-10-03T14:58:24Z + Bit Rate192 + Sample Rate44100 + Play Count3 + Play Date3484737752 + Play Date UTC2014-06-04T09:12:32Z + Normalization508 + Compilation + Artwork Count1 + Persistent IDF155ECF082404F21 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/05%20Why%20Picton_.m4a + File Folder Count4 + Library Folder Count1 + + 5508 + + Track ID5508 + NameCheek To Cheek + ArtistFred Astaire + ComposerGabriel Yared + AlbumEnglish Patient + GenreClassical + KindAAC audio file + Size4765385 + Total Time200340 + Disc Number1 + Disc Count1 + Track Number6 + Track Count28 + Year1996 + Date Modified2006-07-31T04:23:32Z + Date Added2009-10-03T14:58:24Z + Bit Rate192 + Sample Rate44100 + Play Count3 + Play Date3484737953 + Play Date UTC2014-06-04T09:15:53Z + Normalization1257 + Compilation + Artwork Count1 + Persistent ID794315A154A1C873 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/06%20Cheek%20To%20Cheek.m4a + File Folder Count4 + Library Folder Count1 + + 5510 + + Track ID5510 + NameKip's Lights + ArtistGabriel Yared - Academy Of St. Martin In The Fields + ComposerGabriel Yared + AlbumEnglish Patient + GenreClassical + KindAAC audio file + Size2180241 + Total Time89743 + Disc Number1 + Disc Count1 + Track Number7 + Track Count28 + Year1996 + Date Modified2006-07-31T04:23:32Z + Date Added2009-10-03T14:58:25Z + Bit Rate192 + Sample Rate44100 + Play Count3 + Play Date3484738042 + Play Date UTC2014-06-04T09:17:22Z + Normalization1229 + Compilation + Artwork Count1 + Persistent IDF7C7AD26AFB41DE7 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/07%20Kip's%20Lights.m4a + File Folder Count4 + Library Folder Count1 + + 5512 + + Track ID5512 + NameHana's Curse + ArtistGabriel Yared - Academy Of St. Martin In The Fields + ComposerGabriel Yared + AlbumEnglish Patient + GenreClassical + KindAAC audio file + Size3205805 + Total Time131400 + Disc Number1 + Disc Count1 + Track Number8 + Track Count28 + Year1996 + Date Modified2006-07-31T04:23:32Z + Date Added2009-10-03T14:58:25Z + Bit Rate192 + Sample Rate44100 + Play Count3 + Play Date3484738174 + Play Date UTC2014-06-04T09:19:34Z + Normalization931 + Compilation + Artwork Count1 + Persistent IDC7027955CB3530DE + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/08%20Hana's%20Curse.m4a + File Folder Count4 + Library Folder Count1 + + 5514 + + Track ID5514 + NameI'll Always Go Back To That Church + ArtistGabriel Yared - Academy Of St. Martin In The Fields + ComposerGabriel Yared + AlbumEnglish Patient + GenreClassical + KindAAC audio file + Size2786931 + Total Time113845 + Disc Number1 + Disc Count1 + Track Number9 + Track Count28 + Year1996 + Date Modified2006-07-31T04:23:32Z + Date Added2009-10-03T14:58:25Z + Bit Rate192 + Sample Rate44100 + Play Count3 + Play Date3484738288 + Play Date UTC2014-06-04T09:21:28Z + Normalization661 + Compilation + Artwork Count1 + Persistent IDDBF0FA5525F7D7E8 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/09%20I'll%20Always%20Go%20Back%20To%20That%20Church.m4a + File Folder Count4 + Library Folder Count1 + + 5516 + + Track ID5516 + NameBlack Nights + ArtistGabriel Yared - Academy Of St. Martin In The Fields + ComposerGabriel Yared + AlbumEnglish Patient + GenreClassical + KindAAC audio file + Size2854485 + Total Time117143 + Disc Number1 + Disc Count1 + Track Number10 + Track Count28 + Year1996 + Date Modified2006-07-31T04:23:32Z + Date Added2009-10-03T14:58:25Z + Bit Rate192 + Sample Rate44100 + Play Count2 + Play Date3484738405 + Play Date UTC2014-06-04T09:23:25Z + Normalization228 + Compilation + Artwork Count1 + Persistent IDE311869DEA108BC7 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/10%20Black%20Nights.m4a + File Folder Count4 + Library Folder Count1 + + 5518 + + Track ID5518 + NameSwoon, I'll Catch You + ArtistGabriel Yared - Academy Of St. Martin In The Fields + ComposerGabriel Yared + AlbumEnglish Patient + GenreClassical + KindAAC audio file + Size2755646 + Total Time112615 + Disc Number1 + Disc Count1 + Track Number11 + Track Count28 + Year1996 + Date Modified2006-07-31T04:23:32Z + Date Added2009-10-03T14:58:25Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3365788220 + Play Date UTC2010-08-27T15:40:20Z + Normalization1155 + Compilation + Artwork Count1 + Persistent ID3F7D26A37BA7AE71 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/11%20Swoon,%20I'll%20Catch%20You.m4a + File Folder Count4 + Library Folder Count1 + + 5520 + + Track ID5520 + NameAm I K. In Your Book? + ArtistGabriel Yared - Academy Of St. Martin In The Fields + ComposerGabriel Yared + AlbumEnglish Patient + GenreClassical + KindAAC audio file + Size1494150 + Total Time60022 + Disc Number1 + Disc Count1 + Track Number12 + Track Count28 + Year1996 + Date Modified2006-07-31T04:23:32Z + Date Added2009-10-03T14:58:25Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3365788280 + Play Date UTC2010-08-27T15:41:20Z + Normalization879 + Compilation + Artwork Count1 + Persistent ID8D1123CEE630D75C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/12%20Am%20I%20K.%20In%20Your%20Book_.m4a + File Folder Count4 + Library Folder Count1 + + 5522 + + Track ID5522 + NameLet Me Come In + ArtistGabriel Yared - Academy Of St. Martin In The Fields + ComposerGabriel Yared + AlbumEnglish Patient + GenreClassical + KindAAC audio file + Size3914110 + Total Time160773 + Disc Number1 + Disc Count1 + Track Number13 + Track Count28 + Year1996 + Date Modified2006-07-31T04:23:32Z + Date Added2009-10-03T14:58:25Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3365788440 + Play Date UTC2010-08-27T15:44:00Z + Normalization894 + Compilation + Artwork Count1 + Persistent IDB68303DCE85979FC + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/13%20Let%20Me%20Come%20In.m4a + File Folder Count4 + Library Folder Count1 + + 5524 + + Track ID5524 + NameWang Wang Blues + ArtistBenny Goodman + ComposerGabriel Yared + AlbumEnglish Patient + GenreClassical + KindAAC audio file + Size4098473 + Total Time173149 + Disc Number1 + Disc Count1 + Track Number14 + Track Count28 + Year1996 + Date Modified2006-07-31T04:23:32Z + Date Added2009-10-03T14:58:26Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3365788614 + Play Date UTC2010-08-27T15:46:54Z + Normalization1376 + Compilation + Artwork Count1 + Persistent IDE8B633ECCB4C2C39 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/14%20Wang%20Wang%20Blues.m4a + File Folder Count4 + Library Folder Count1 + + 5526 + + Track ID5526 + NameConvento Di Santa'Anna + ArtistGabriel Yared - Academy Of St. Martin In The Fields + ComposerGabriel Yared + AlbumEnglish Patient + GenreClassical + KindAAC audio file + Size13293694 + Total Time552215 + Disc Number1 + Disc Count1 + Track Number15 + Track Count28 + Year1996 + Date Modified2006-07-31T04:23:32Z + Date Added2009-10-03T14:58:26Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3365789166 + Play Date UTC2010-08-27T15:56:06Z + Normalization667 + Compilation + Artwork Count1 + Persistent ID34FA5586386FFB5F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/15%20Convento%20Di%20Santa'Anna.m4a + File Folder Count4 + Library Folder Count1 + + 5528 + + Track ID5528 + NameHerodotus + ArtistGabriel Yared - Academy Of St. Martin In The Fields + ComposerGabriel Yared + AlbumEnglish Patient + GenreClassical + KindAAC audio file + Size1666678 + Total Time71841 + Disc Number1 + Disc Count1 + Track Number16 + Track Count28 + Year1996 + Date Modified2006-07-31T04:23:32Z + Date Added2009-10-03T14:58:26Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3365789238 + Play Date UTC2010-08-27T15:57:18Z + Normalization1252 + Compilation + Artwork Count1 + Persistent ID2B9638B71AE3A7D6 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/16%20Herodotus.m4a + File Folder Count4 + Library Folder Count1 + + 5530 + + Track ID5530 + NameMuzsikás - Szerelem, Szerelem + ArtistMárta Sebestyén + ComposerGabriel Yared + AlbumEnglish Patient + GenreClassical + KindAAC audio file + Size6675676 + Total Time276687 + Disc Number1 + Disc Count1 + Track Number17 + Track Count28 + Year1996 + Date Modified2006-07-31T04:23:32Z + Date Added2009-10-03T14:58:26Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3365789514 + Play Date UTC2010-08-27T16:01:54Z + Normalization357 + Compilation + Artwork Count1 + Persistent IDD444698E2D389B95 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/17%20Muzsika%CC%81s%20-%20Szerelem,%20Szerelem.m4a + File Folder Count4 + Library Folder Count1 + + 5532 + + Track ID5532 + NameAsk Your Saint Who He's Killed + ArtistGabriel Yared - Academy Of St. Martin In The Fields + ComposerGabriel Yared + AlbumEnglish Patient + GenreClassical + KindAAC audio file + Size1731001 + Total Time69937 + Disc Number1 + Disc Count1 + Track Number18 + Track Count28 + Year1996 + Date Modified2006-07-31T04:23:32Z + Date Added2009-10-03T14:58:26Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3365789584 + Play Date UTC2010-08-27T16:03:04Z + Normalization179 + Compilation + Artwork Count1 + Persistent IDF92B7C707BEC44FA + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/18%20Ask%20Your%20Saint%20Who%20He's%20Killed.m4a + File Folder Count4 + Library Folder Count1 + + 5534 + + Track ID5534 + NameOne O'Clock Jump + ArtistBenny Goodman + ComposerGabriel Yared + AlbumEnglish Patient + GenreClassical + KindAAC audio file + Size4676267 + Total Time195951 + Disc Number1 + Disc Count1 + Track Number19 + Track Count28 + Year1996 + Date Modified2006-07-31T04:23:32Z + Date Added2009-10-03T14:58:26Z + Bit Rate192 + Sample Rate44100 + Normalization1031 + Compilation + Artwork Count1 + Persistent ID8DA2BEE53500D989 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/19%20One%20O'Clock%20Jump.m4a + File Folder Count4 + Library Folder Count1 + + 5536 + + Track ID5536 + NameI'll Be Back + ArtistGabriel Yared - Academy Of St. Martin In The Fields + ComposerGabriel Yared + AlbumEnglish Patient + GenreClassical + KindAAC audio file + Size5902990 + Total Time243320 + Disc Number1 + Disc Count1 + Track Number20 + Track Count28 + Year1996 + Date Modified2006-07-31T04:23:32Z + Date Added2009-10-03T14:58:26Z + Bit Rate192 + Sample Rate44100 + Normalization737 + Compilation + Artwork Count1 + Persistent ID255C447E4BD63D45 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/20%20I'll%20Be%20Back.m4a + File Folder Count4 + Library Folder Count1 + + 5538 + + Track ID5538 + NameLet Me Tell You About Winds + ArtistGabriel Yared - Academy Of St. Martin In The Fields + ComposerGabriel Yared + AlbumEnglish Patient + GenreClassical + KindAAC audio file + Size1505975 + Total Time60509 + Disc Number1 + Disc Count1 + Track Number21 + Track Count28 + Year1996 + Date Modified2006-07-31T04:23:32Z + Date Added2009-10-03T14:58:26Z + Bit Rate192 + Sample Rate44100 + Normalization1157 + Compilation + Artwork Count1 + Persistent ID91C3289A54BBB5B6 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/21%20Let%20Me%20Tell%20You%20About%20Winds.m4a + File Folder Count4 + Library Folder Count1 + + 5540 + + Track ID5540 + NameRead Me To Sleep + ArtistGabriel Yared - Academy Of St. Martin In The Fields + ComposerGabriel Yared + AlbumEnglish Patient + GenreClassical + KindAAC audio file + Size7279616 + Total Time301857 + Disc Number1 + Disc Count1 + Track Number22 + Track Count28 + Year1996 + Date Modified2006-07-31T04:23:32Z + Date Added2009-10-03T14:58:26Z + Bit Rate192 + Sample Rate44100 + Normalization1074 + Compilation + Artwork Count1 + Persistent ID1BAF64E178E3ECE3 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/22%20Read%20Me%20To%20Sleep.m4a + File Folder Count4 + Library Folder Count1 + + 5542 + + Track ID5542 + NameThe Cave Of Swimmers + ArtistGabriel Yared - Academy Of St. Martin In The Fields + ComposerGabriel Yared + AlbumEnglish Patient + GenreClassical + KindAAC audio file + Size2947567 + Total Time120533 + Disc Number1 + Disc Count1 + Track Number23 + Track Count28 + Year1996 + Date Modified2006-07-31T04:23:32Z + Date Added2009-10-03T14:58:27Z + Bit Rate192 + Sample Rate44100 + Normalization1088 + Compilation + Artwork Count1 + Sort NameCave Of Swimmers + Persistent ID7B2A38C4EB28FC27 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/23%20The%20Cave%20Of%20Swimmers.m4a + File Folder Count4 + Library Folder Count1 + + 5544 + + Track ID5544 + NameWhere Or When + ArtistShepheard's Hotel Jazz Orchestra + ComposerGabriel Yared + AlbumEnglish Patient + GenreClassical + KindAAC audio file + Size3299982 + Total Time139016 + Disc Number1 + Disc Count1 + Track Number24 + Track Count28 + Year1996 + Date Modified2006-07-31T04:23:32Z + Date Added2009-10-03T14:58:27Z + Bit Rate192 + Sample Rate44100 + Normalization1084 + Compilation + Artwork Count1 + Persistent ID7738C27FE9F7E9F1 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/24%20Where%20Or%20When.m4a + File Folder Count4 + Library Folder Count1 + + 5546 + + Track ID5546 + NameAria From The Goldberg Variations + ArtistJulie Steinberg + ComposerGabriel Yared + AlbumEnglish Patient + GenreClassical + KindAAC audio file + Size4418855 + Total Time184481 + Disc Number1 + Disc Count1 + Track Number25 + Track Count28 + Year1996 + Date Modified2006-07-31T04:23:32Z + Date Added2009-10-03T14:58:27Z + Bit Rate192 + Sample Rate44100 + Normalization290 + Compilation + Artwork Count1 + Persistent ID3092478A17DB6C29 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/25%20Aria%20From%20The%20Goldberg%20Variations.m4a + File Folder Count4 + Library Folder Count1 + + 5548 + + Track ID5548 + NameCheek To Cheek + ArtistElla Fitzgerald + ComposerGabriel Yared + AlbumEnglish Patient + GenreClassical + KindAAC audio file + Size5439860 + Total Time227089 + Disc Number1 + Disc Count1 + Track Number26 + Track Count28 + Year1996 + Date Modified2006-07-31T04:23:32Z + Date Added2009-10-03T14:58:27Z + Bit Rate192 + Sample Rate44100 + Normalization1400 + Compilation + Artwork Count1 + Persistent ID6C75078951819EAB + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/26%20Cheek%20To%20Cheek.m4a + File Folder Count4 + Library Folder Count1 + + 5550 + + Track ID5550 + NameAs Far As Florence + ArtistGabriel Yared - Academy Of St. Martin In The Fields + ComposerGabriel Yared + AlbumEnglish Patient + GenreClassical + KindAAC audio file + Size7569637 + Total Time312306 + Disc Number1 + Disc Count1 + Track Number27 + Track Count28 + Year1996 + Date Modified2006-07-31T04:23:34Z + Date Added2009-10-03T14:58:27Z + Bit Rate192 + Sample Rate44100 + Normalization890 + Compilation + Artwork Count1 + Persistent IDD90D9CEA48CD95DD + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/27%20As%20Far%20As%20Florence.m4a + File Folder Count4 + Library Folder Count1 + + 5552 + + Track ID5552 + NameÉn Csak AZT Csodálom (Lullaby For Katharine) + ArtistMárta Sebestyén + ComposerGabriel Yared + AlbumEnglish Patient + GenreClassical + KindAAC audio file + Size1743363 + Total Time70401 + Disc Number1 + Disc Count1 + Track Number28 + Track Count28 + Year1996 + Date Modified2006-07-31T04:23:34Z + Date Added2009-10-03T14:58:27Z + Bit Rate192 + Sample Rate44100 + Normalization74 + Compilation + Artwork Count1 + Persistent IDEC84DC92D57E6691 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/28%20E%CC%81n%20Csak%20AZT%20Csoda%CC%81lom%20(Lullaby%20For%20Katharine).m4a + File Folder Count4 + Library Folder Count1 + + 5554 + + Track ID5554 + NameHappiness + ArtistSangeetha Shankar, Ronu Majumdar + AlbumEmotions In Life + GenreWorld + KindAAC audio file + Size9006379 + Total Time375209 + Track Number1 + Track Count11 + Year1996 + Date Modified2006-07-30T09:01:42Z + Date Added2009-10-03T14:58:27Z + Bit Rate192 + Sample Rate44100 + Normalization1413 + Compilation + Artwork Count1 + Persistent ID1E9E082DE877051E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Emotions%20In%20Life/01%20Happiness.m4a + File Folder Count4 + Library Folder Count1 + + 5556 + + Track ID5556 + NamePeace + ArtistSangeetha Shankar, Ronu Majumdar + AlbumEmotions In Life + GenreWorld + KindAAC audio file + Size9652703 + Total Time403352 + Track Number2 + Track Count11 + Year1996 + Date Modified2006-07-30T09:01:42Z + Date Added2009-10-03T14:58:28Z + Bit Rate192 + Sample Rate44100 + Normalization909 + Compilation + Artwork Count1 + Persistent IDCEB69A12B3E984FF + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Emotions%20In%20Life/02%20Peace.m4a + File Folder Count4 + Library Folder Count1 + + 5558 + + Track ID5558 + NameFear + ArtistSangeetha Shankar, Ronu Majumdar + AlbumEmotions In Life + GenreWorld + KindAAC audio file + Size4773777 + Total Time198738 + Track Number3 + Track Count11 + Year1996 + Date Modified2006-07-30T09:01:42Z + Date Added2009-10-03T14:58:28Z + Bit Rate192 + Sample Rate44100 + Normalization920 + Compilation + Artwork Count1 + Persistent ID84F52CEC7026F460 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Emotions%20In%20Life/03%20Fear.m4a + File Folder Count4 + Library Folder Count1 + + 5560 + + Track ID5560 + NameWonder + ArtistSangeetha Shankar, Ronu Majumdar + AlbumEmotions In Life + GenreWorld + KindAAC audio file + Size4402910 + Total Time184968 + Track Number4 + Track Count11 + Year1996 + Date Modified2006-07-30T09:01:42Z + Date Added2009-10-03T14:58:28Z + Bit Rate192 + Sample Rate44100 + Normalization752 + Compilation + Artwork Count1 + Persistent IDECF6888F27EB9AEB + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Emotions%20In%20Life/04%20Wonder.m4a + File Folder Count4 + Library Folder Count1 + + 5562 + + Track ID5562 + NameRomance + ArtistSangeetha Shankar, Ronu Majumdar + AlbumEmotions In Life + GenreWorld + KindAAC audio file + Size10385297 + Total Time432539 + Track Number5 + Track Count11 + Year1996 + Date Modified2006-07-30T09:01:44Z + Date Added2009-10-03T14:58:28Z + Bit Rate192 + Sample Rate44100 + Normalization867 + Compilation + Artwork Count1 + Persistent IDFE9DFCBEFF7F6A20 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Emotions%20In%20Life/05%20Romance.m4a + File Folder Count4 + Library Folder Count1 + + 5564 + + Track ID5564 + NameValour + ArtistSangeetha Shankar, Ronu Majumdar + AlbumEmotions In Life + GenreWorld + KindAAC audio file + Size4034528 + Total Time169875 + Track Number6 + Track Count11 + Year1996 + Date Modified2006-07-30T09:01:44Z + Date Added2009-10-03T14:58:28Z + Bit Rate192 + Sample Rate44100 + Normalization1098 + Compilation + Artwork Count1 + Persistent ID2C4B131DFE328A94 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Emotions%20In%20Life/06%20Valour.m4a + File Folder Count4 + Library Folder Count1 + + 5566 + + Track ID5566 + NamePathos + ArtistSangeetha Shankar, Ronu Majumdar + AlbumEmotions In Life + GenreWorld + KindAAC audio file + Size13519771 + Total Time563152 + Track Number7 + Track Count11 + Year1996 + Date Modified2006-07-30T09:01:44Z + Date Added2009-10-03T14:58:28Z + Bit Rate192 + Sample Rate44100 + Normalization966 + Compilation + Artwork Count1 + Persistent ID1D2DAFF6DD4637B5 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Emotions%20In%20Life/07%20Pathos.m4a + File Folder Count4 + Library Folder Count1 + + 5568 + + Track ID5568 + NameAnger + ArtistSangeetha Shankar, Ronu Majumdar + AlbumEmotions In Life + GenreWorld + KindAAC audio file + Size7790940 + Total Time326656 + Track Number8 + Track Count11 + Year1996 + Date Modified2006-07-30T09:01:44Z + Date Added2009-10-03T14:58:28Z + Bit Rate192 + Sample Rate44100 + Normalization854 + Compilation + Artwork Count1 + Persistent ID7A72F707961F082E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Emotions%20In%20Life/08%20Anger.m4a + File Folder Count4 + Library Folder Count1 + + 5570 + + Track ID5570 + NameSeparation + ArtistSangeetha Shankar, Ronu Majumdar + AlbumEmotions In Life + GenreWorld + KindAAC audio file + Size8369445 + Total Time349621 + Track Number9 + Track Count11 + Year1996 + Date Modified2006-07-30T09:01:44Z + Date Added2009-10-03T14:58:28Z + Bit Rate192 + Sample Rate44100 + Normalization1520 + Compilation + Artwork Count1 + Persistent ID077365884E7EB301 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Emotions%20In%20Life/09%20Separation.m4a + File Folder Count4 + Library Folder Count1 + + 5572 + + Track ID5572 + NameHorror + ArtistSangeetha Shankar, Ronu Majumdar + AlbumEmotions In Life + GenreWorld + KindAAC audio file + Size3692107 + Total Time155154 + Track Number10 + Track Count11 + Year1996 + Date Modified2006-07-30T09:01:44Z + Date Added2009-10-03T14:58:29Z + Bit Rate192 + Sample Rate44100 + Normalization710 + Compilation + Artwork Count1 + Persistent ID3BE3F9BD2B18D2B1 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Emotions%20In%20Life/10%20Horror.m4a + File Folder Count4 + Library Folder Count1 + + 5574 + + Track ID5574 + NameParental Love + ArtistSangeetha Shankar, Ronu Majumdar + AlbumEmotions In Life + GenreWorld + KindAAC audio file + Size7076530 + Total Time291617 + Track Number11 + Track Count11 + Year1996 + Date Modified2006-07-30T09:01:44Z + Date Added2009-10-03T14:58:29Z + Bit Rate192 + Sample Rate44100 + Normalization897 + Compilation + Artwork Count1 + Persistent IDD911F843940146E2 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Emotions%20In%20Life/11%20Parental%20Love.m4a + File Folder Count4 + Library Folder Count1 + + 5576 + + Track ID5576 + NameMere Sapno Ki Rani + ArtistKishore Kumar + ComposerS.D. Burman + AlbumDo Raaste - Aaradhana + GenreSoundtrack + KindAAC audio file + Size7207650 + Total Time297626 + Track Number1 + Track Count14 + Year1992 + Date Modified2007-09-10T10:15:12Z + Date Added2009-10-03T14:58:29Z + Bit Rate192 + Sample Rate44100 + Normalization3007 + Compilation + Persistent ID1581166F2A2A76CA + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Do%20Raaste%20-%20Aaradhana/01%20Mere%20Sapno%20Ki%20Rani.m4a + File Folder Count4 + Library Folder Count1 + + 5578 + + Track ID5578 + NameMere Sapno Ki Rani + ArtistKishore Kumar + ComposerS.D. Burman + AlbumDo Raaste - Aaradhana + GenreSoundtrack + KindAAC audio file + Size7216825 + Total Time297631 + Track Number1 + Track Count14 + Year1992 + Date Modified2006-07-30T07:58:34Z + Date Added2009-10-03T14:58:29Z + Bit Rate192 + Sample Rate44100 + Normalization3007 + Compilation + Artwork Count1 + Persistent ID495CC778ECD20F87 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Do%20Raaste%20-%20Aaradhana/01%20Mere%20Sapno%20Ki%20Rani%201.m4a + File Folder Count4 + Library Folder Count1 + + 5580 + + Track ID5580 + NameKora Kagaz Tha Yeh Man Mera + ArtistLata Mangeshkar & Kishore Kumar + ComposerS.D. Burman + AlbumDo Raaste - Aaradhana + GenreSoundtrack + KindAAC audio file + Size8252407 + Total Time341333 + Track Number2 + Track Count14 + Year1992 + Date Modified2007-09-10T10:15:54Z + Date Added2009-10-03T14:58:29Z + Bit Rate192 + Sample Rate44100 + Normalization2686 + Compilation + Persistent ID5A9358B01B13B035 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Do%20Raaste%20-%20Aaradhana/02%20Kora%20Kagaz%20Tha%20Yeh%20Man%20Mera.m4a + File Folder Count4 + Library Folder Count1 + + 5582 + + Track ID5582 + NameKora Kagaz Tha Yeh Man Mera + ArtistLata Mangeshkar & Kishore Kumar + ComposerS.D. Burman + AlbumDo Raaste - Aaradhana + GenreSoundtrack + KindAAC audio file + Size8262037 + Total Time341355 + Track Number2 + Track Count14 + Year1992 + Date Modified2006-07-30T07:58:36Z + Date Added2009-10-03T14:58:29Z + Bit Rate192 + Sample Rate44100 + Normalization2686 + Compilation + Artwork Count1 + Persistent IDCD125398F7A50B0C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Do%20Raaste%20-%20Aaradhana/02%20Kora%20Kagaz%20Tha%20Yeh%20Man%20Mera%201.m4a + File Folder Count4 + Library Folder Count1 + + 5584 + + Track ID5584 + NameBaghon Mein Bahar Aayi + ArtistLata Mangeshkar & Mohd. Rafi + ComposerS.D. Burman + AlbumDo Raaste - Aaradhana + GenreSoundtrack + KindAAC audio file + Size5664042 + Total Time234240 + Track Number3 + Track Count14 + Year1992 + Date Modified2007-09-10T10:16:22Z + Date Added2009-10-03T14:58:30Z + Bit Rate192 + Sample Rate44100 + Normalization1708 + Compilation + Persistent IDA9C02068C11DCAF3 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Do%20Raaste%20-%20Aaradhana/03%20Baghon%20Mein%20Bahar%20Aayi.m4a + File Folder Count4 + Library Folder Count1 + + 5586 + + Track ID5586 + NameBaghon Mein Bahar Aayi + ArtistLata Mangeshkar & Mohd. Rafi + ComposerS.D. Burman + AlbumDo Raaste - Aaradhana + GenreSoundtrack + KindAAC audio file + Size5678010 + Total Time234241 + Track Number3 + Track Count14 + Year1992 + Date Modified2006-07-30T07:58:36Z + Date Added2009-10-03T14:58:30Z + Bit Rate192 + Sample Rate44100 + Normalization1711 + Compilation + Artwork Count1 + Persistent IDE2B339B79D3F3136 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Do%20Raaste%20-%20Aaradhana/03%20Baghon%20Mein%20Bahar%20Aayi%201.m4a + File Folder Count4 + Library Folder Count1 + + 5588 + + Track ID5588 + NameRoop Tera Mastana + ArtistKishore Kumar + ComposerS.D. Burman + AlbumDo Raaste - Aaradhana + GenreSoundtrack + KindAAC audio file + Size5414690 + Total Time223893 + Track Number4 + Track Count14 + Year1992 + Date Modified2007-09-10T10:16:50Z + Date Added2009-10-03T14:58:30Z + Bit Rate192 + Sample Rate44100 + Normalization1347 + Compilation + Persistent IDE96F24F8403AC3A0 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Do%20Raaste%20-%20Aaradhana/04%20Roop%20Tera%20Mastana.m4a + File Folder Count4 + Library Folder Count1 + + 5590 + + Track ID5590 + NameRoop Tera Mastana + ArtistKishore Kumar + ComposerS.D. Burman + AlbumDo Raaste - Aaradhana + GenreSoundtrack + KindAAC audio file + Size5430696 + Total Time223908 + Track Number4 + Track Count14 + Year1992 + Date Modified2006-07-30T07:58:34Z + Date Added2009-10-03T14:58:30Z + Bit Rate192 + Sample Rate44100 + Normalization1342 + Compilation + Artwork Count1 + Persistent ID6DBA3CE227F67CCB + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Do%20Raaste%20-%20Aaradhana/04%20Roop%20Tera%20Mastana%201.m4a + File Folder Count4 + Library Folder Count1 + + 5592 + + Track ID5592 + NameGun Guna Rahe Bahavare + ArtistMohammed Rafi & Asha Bhosle + ComposerS.D. Burman + AlbumDo Raaste - Aaradhana + GenreSoundtrack + KindAAC audio file + Size5784330 + Total Time238800 + Track Number5 + Track Count14 + Year1992 + Date Modified2007-09-10T10:17:18Z + Date Added2009-10-03T14:58:30Z + Bit Rate192 + Sample Rate44100 + Normalization2256 + Compilation + Persistent IDE8EACAA28F4220D1 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Do%20Raaste%20-%20Aaradhana/05%20Gun%20Guna%20Rahe%20Bahavare.m4a + File Folder Count4 + Library Folder Count1 + + 5594 + + Track ID5594 + NameGun Guna Rahe Bahavare + ArtistMohammed Rafi & Asha Bhosle + ComposerS.D. Burman + AlbumDo Raaste - Aaradhana + GenreSoundtrack + KindAAC audio file + Size5797663 + Total Time238815 + Track Number5 + Track Count14 + Year1992 + Date Modified2006-07-30T07:58:36Z + Date Added2009-10-03T14:58:30Z + Bit Rate192 + Sample Rate44100 + Normalization2253 + Compilation + Artwork Count1 + Persistent ID14FDDB250A9E77D2 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Do%20Raaste%20-%20Aaradhana/05%20Gun%20Guna%20Rahe%20Bahavare%201.m4a + File Folder Count4 + Library Folder Count1 + + 5596 + + Track ID5596 + NameChanda Hai Tu Mera Suraj Hai Tu + ArtistLata Mangeshkar + ComposerS.D. Burman + AlbumDo Raaste - Aaradhana + GenreSoundtrack + KindAAC audio file + Size6467486 + Total Time267040 + Track Number6 + Track Count14 + Year1992 + Date Modified2007-09-10T10:17:50Z + Date Added2009-10-03T14:58:30Z + Bit Rate192 + Sample Rate44100 + Normalization3758 + Compilation + Persistent IDFEA4F2987F622FEF + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Do%20Raaste%20-%20Aaradhana/06%20Chanda%20Hai%20Tu%20Mera%20Suraj%20Hai%20Tu.m4a + File Folder Count4 + Library Folder Count1 + + 5598 + + Track ID5598 + NameChanda Hai Tu Mera Suraj Hai Tu + ArtistLata Mangeshkar + ComposerS.D. Burman + AlbumDo Raaste - Aaradhana + GenreSoundtrack + KindAAC audio file + Size6476646 + Total Time267051 + Track Number6 + Track Count14 + Year1992 + Date Modified2006-07-30T07:58:36Z + Date Added2009-10-03T14:58:30Z + Bit Rate192 + Sample Rate44100 + Normalization3753 + Compilation + Artwork Count1 + Persistent ID606EBE366920A72A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Do%20Raaste%20-%20Aaradhana/06%20Chanda%20Hai%20Tu%20Mera%20Suraj%20Hai%20Tu%201.m4a + File Folder Count4 + Library Folder Count1 + + 5600 + + Track ID5600 + NameSaphal Hui Teri Aaradhana + ArtistS.D. Burman + ComposerS.D. Burman + AlbumDo Raaste - Aaradhana + GenreSoundtrack + KindAAC audio file + Size8116872 + Total Time335200 + Track Number7 + Track Count14 + Year1992 + Date Modified2007-09-10T10:18:30Z + Date Added2009-10-03T14:58:31Z + Bit Rate192 + Sample Rate44100 + Normalization965 + Compilation + Persistent ID1BD2FB947C1E0EA9 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Do%20Raaste%20-%20Aaradhana/07%20Saphal%20Hui%20Teri%20Aaradhana.m4a + File Folder Count4 + Library Folder Count1 + + 5602 + + Track ID5602 + NameSaphal Hui Teri Aaradhana + ArtistS.D. Burman + ComposerS.D. Burman + AlbumDo Raaste - Aaradhana + GenreSoundtrack + KindAAC audio file + Size8126015 + Total Time335201 + Track Number7 + Track Count14 + Year1992 + Date Modified2006-07-30T07:58:38Z + Date Added2009-10-03T14:58:31Z + Bit Rate192 + Sample Rate44100 + Normalization965 + Compilation + Artwork Count1 + Persistent IDEDDF3FDAF29082B1 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Do%20Raaste%20-%20Aaradhana/07%20Saphal%20Hui%20Teri%20Aaradhana%201.m4a + File Folder Count4 + Library Folder Count1 + + 5604 + + Track ID5604 + NameBindiya Chamke Gi + ArtistLata Mangeshkar + ComposerS.D. Burman + AlbumDo Raaste - Aaradhana + GenreSoundtrack + KindAAC audio file + Size8423641 + Total Time347866 + Track Number8 + Track Count14 + Year1992 + Date Modified2007-09-10T10:19:14Z + Date Added2009-10-03T14:58:31Z + Bit Rate192 + Sample Rate44100 + Normalization2375 + Compilation + Persistent ID225DF9C7EA7A8CA9 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Do%20Raaste%20-%20Aaradhana/08%20Bindiya%20Chamke%20Gi.m4a + File Folder Count4 + Library Folder Count1 + + 5606 + + Track ID5606 + NameBindiya Chamke Gi + ArtistLata Mangeshkar + ComposerS.D. Burman + AlbumDo Raaste - Aaradhana + GenreSoundtrack + KindAAC audio file + Size8432779 + Total Time347879 + Track Number8 + Track Count14 + Year1992 + Date Modified2006-07-30T07:58:36Z + Date Added2009-10-03T14:58:31Z + Bit Rate192 + Sample Rate44100 + Normalization2377 + Compilation + Artwork Count1 + Persistent ID489DAD89C002C75A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Do%20Raaste%20-%20Aaradhana/08%20Bindiya%20Chamke%20Gi%201.m4a + File Folder Count4 + Library Folder Count1 + + 5608 + + Track ID5608 + NameYeh Reshmi Zulfein + ArtistMohammed Rafi + ComposerS.D. Burman + AlbumDo Raaste - Aaradhana + GenreSoundtrack + KindAAC audio file + Size7585276 + Total Time313226 + Track Number9 + Track Count14 + Year1992 + Date Modified2007-09-10T10:19:52Z + Date Added2009-10-03T14:58:31Z + Bit Rate192 + Sample Rate44100 + Normalization1745 + Compilation + Persistent ID9D00CC4ADA45A3FC + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Do%20Raaste%20-%20Aaradhana/09%20Yeh%20Reshmi%20Zulfein.m4a + File Folder Count4 + Library Folder Count1 + + 5610 + + Track ID5610 + NameYeh Reshmi Zulfein + ArtistMohammed Rafi + ComposerS.D. Burman + AlbumDo Raaste - Aaradhana + GenreSoundtrack + KindAAC audio file + Size7594428 + Total Time313235 + Track Number9 + Track Count14 + Year1992 + Date Modified2006-07-30T07:58:36Z + Date Added2009-10-03T14:58:31Z + Bit Rate192 + Sample Rate44100 + Normalization1744 + Compilation + Artwork Count1 + Persistent ID21809AC089361453 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Do%20Raaste%20-%20Aaradhana/09%20Yeh%20Reshmi%20Zulfein%201.m4a + File Folder Count4 + Library Folder Count1 + + 5612 + + Track ID5612 + NameMera Naseeb Mein Aye Dost + ArtistKishore Kumar + ComposerS.D. Burman + AlbumDo Raaste - Aaradhana + GenreSoundtrack + KindAAC audio file + Size6853694 + Total Time283000 + Track Number10 + Track Count14 + Year1992 + Date Modified2007-09-10T10:20:26Z + Date Added2009-10-03T14:58:31Z + Bit Rate192 + Sample Rate44100 + Normalization1680 + Compilation + Persistent IDA4D849E119D8BAF6 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Do%20Raaste%20-%20Aaradhana/10%20Mera%20Naseeb%20Mein%20Aye%20Dost.m4a + File Folder Count4 + Library Folder Count1 + + 5614 + + Track ID5614 + NameMera Naseeb Mein Aye Dost + ArtistKishore Kumar + ComposerS.D. Burman + AlbumDo Raaste - Aaradhana + GenreSoundtrack + KindAAC audio file + Size6862756 + Total Time283003 + Track Number10 + Track Count14 + Year1992 + Date Modified2006-07-30T07:58:36Z + Date Added2009-10-03T14:58:32Z + Bit Rate192 + Sample Rate44100 + Normalization1678 + Compilation + Artwork Count1 + Persistent ID18CA992FDA0446EE + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Do%20Raaste%20-%20Aaradhana/10%20Mera%20Naseeb%20Mein%20Aye%20Dost%201.m4a + File Folder Count4 + Library Folder Count1 + + 5616 + + Track ID5616 + NameDil Ne Dil Ko Pukhara + ArtistLata Mangeshkar & Mohd. Rafi + ComposerS.D. Burman + AlbumDo Raaste - Aaradhana + GenreSoundtrack + KindAAC audio file + Size8175410 + Total Time338000 + Track Number11 + Track Count14 + Year1992 + Date Modified2007-09-10T10:21:06Z + Date Added2009-10-03T14:58:32Z + Bit Rate192 + Sample Rate44100 + Normalization2899 + Compilation + Persistent ID6B9D6C4925A89027 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Do%20Raaste%20-%20Aaradhana/11%20Dil%20Ne%20Dil%20Ko%20Pukhara.m4a + File Folder Count4 + Library Folder Count1 + + 5618 + + Track ID5618 + NameDil Ne Dil Ko Pukhara + ArtistLata Mangeshkar & Mohd. Rafi + ComposerS.D. Burman + AlbumDo Raaste - Aaradhana + GenreSoundtrack + KindAAC audio file + Size8185235 + Total Time338011 + Track Number11 + Track Count14 + Year1992 + Date Modified2006-07-30T07:58:36Z + Date Added2009-10-03T14:58:32Z + Bit Rate192 + Sample Rate44100 + Normalization2898 + Compilation + Artwork Count1 + Persistent ID5AACEDE291C3575C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Do%20Raaste%20-%20Aaradhana/11%20Dil%20Ne%20Dil%20Ko%20Pukhara%201.m4a + File Folder Count4 + Library Folder Count1 + + 5620 + + Track ID5620 + NameApni Apni Biwi + ArtistLata Mangeshkar + ComposerS.D. Burman + AlbumDo Raaste - Aaradhana + GenreSoundtrack + KindAAC audio file + Size5361542 + Total Time221773 + Track Number12 + Track Count14 + Year1992 + Date Modified2007-09-10T10:21:34Z + Date Added2009-10-03T14:58:32Z + Bit Rate192 + Sample Rate44100 + Normalization3644 + Compilation + Persistent IDA22DAD645D02C6A0 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Do%20Raaste%20-%20Aaradhana/12%20Apni%20Apni%20Biwi.m4a + File Folder Count4 + Library Folder Count1 + + 5622 + + Track ID5622 + NameApni Apni Biwi + ArtistLata Mangeshkar + ComposerS.D. Burman + AlbumDo Raaste - Aaradhana + GenreSoundtrack + KindAAC audio file + Size5377955 + Total Time221795 + Track Number12 + Track Count14 + Year1992 + Date Modified2006-07-30T07:58:36Z + Date Added2009-10-03T14:58:32Z + Bit Rate192 + Sample Rate44100 + Normalization3646 + Compilation + Artwork Count1 + Persistent IDC2771F9D6CAAE7E1 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Do%20Raaste%20-%20Aaradhana/12%20Apni%20Apni%20Biwi%201.m4a + File Folder Count4 + Library Folder Count1 + + 5624 + + Track ID5624 + NameDo Raaste + ArtistMukesh + ComposerS.D. Burman + AlbumDo Raaste - Aaradhana + GenreSoundtrack + KindAAC audio file + Size6303730 + Total Time260800 + Track Number13 + Track Count14 + Year1992 + Date Modified2007-09-10T10:22:06Z + Date Added2009-10-03T14:58:32Z + Bit Rate192 + Sample Rate44100 + Normalization2557 + Compilation + Persistent IDDD0455F0AEFD1A17 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Do%20Raaste%20-%20Aaradhana/13%20Do%20Raaste.m4a + File Folder Count4 + Library Folder Count1 + + 5626 + + Track ID5626 + NameDo Raaste + ArtistMukesh + ComposerS.D. Burman + AlbumDo Raaste - Aaradhana + GenreSoundtrack + KindAAC audio file + Size6313209 + Total Time260805 + Track Number13 + Track Count14 + Year1992 + Date Modified2006-07-30T07:58:36Z + Date Added2009-10-03T14:58:32Z + Bit Rate192 + Sample Rate44100 + Normalization2557 + Compilation + Artwork Count1 + Persistent ID49BD581150311E4F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Do%20Raaste%20-%20Aaradhana/13%20Do%20Raaste%201.m4a + File Folder Count4 + Library Folder Count1 + + 5628 + + Track ID5628 + NameTitle Music + ArtistInstrumental + ComposerS.D. Burman + AlbumDo Raaste - Aaradhana + GenreSoundtrack + KindAAC audio file + Size3139635 + Total Time131200 + Track Number14 + Track Count14 + Year1992 + Date Modified2007-09-10T10:22:22Z + Date Added2009-10-03T14:58:32Z + Bit Rate192 + Sample Rate44100 + Normalization2180 + Compilation + Persistent IDFC4ACE7F666E8D03 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Do%20Raaste%20-%20Aaradhana/14%20Title%20Music.m4a + File Folder Count4 + Library Folder Count1 + + 5630 + + Track ID5630 + NameTitle Music + ArtistInstrumental + ComposerS.D. Burman + AlbumDo Raaste - Aaradhana + GenreSoundtrack + KindAAC audio file + Size3163372 + Total Time131214 + Track Number14 + Track Count14 + Year1992 + Date Modified2006-07-30T07:58:34Z + Date Added2009-10-03T14:58:33Z + Bit Rate192 + Sample Rate44100 + Normalization2178 + Compilation + Artwork Count2 + Persistent ID3E91A9D17BD5D590 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Do%20Raaste%20-%20Aaradhana/14%20Title%20Music%201.m4a + File Folder Count4 + Library Folder Count1 + + 5632 + + Track ID5632 + NameBhavaye + ArtistSankaran Namboodiri + ComposerSwathi Thirunal + AlbumCompositions of Swathi Thirunal + GenreCarnatic + KindAAC audio file + Size6177407 + Total Time256834 + Disc Number1 + Disc Count1 + Track Number1 + Track Count8 + Year2000 + Date Modified2007-12-02T15:18:12Z + Date Added2009-10-03T14:58:33Z + Bit Rate192 + Sample Rate44100 + CommentsRaga: Pushpalathika Tala: Rupaka + Normalization989 + Compilation + Artwork Count1 + Persistent ID59E5D62E17F07AC5 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Compositions%20of%20Swathi%20Thirunal/01%20Bhavaye.m4a + File Folder Count4 + Library Folder Count1 + + 5634 + + Track ID5634 + NameKalayami Nanda + ArtistSankaran Namboodiri + ComposerSwathi Thirunal + AlbumCompositions of Swathi Thirunal + GenreCarnatic + KindAAC audio file + Size6332248 + Total Time264288 + Disc Number1 + Disc Count1 + Track Number2 + Track Count8 + Year2000 + Date Modified2007-12-02T15:18:04Z + Date Added2009-10-03T14:58:33Z + Bit Rate192 + Sample Rate44100 + CommentsRaga: Kannada Tala: Rupaka + Normalization1004 + Compilation + Artwork Count1 + Persistent ID6219E2218313A17B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Compositions%20of%20Swathi%20Thirunal/02%20Kalayami%20Nanda.m4a + File Folder Count4 + Library Folder Count1 + + 5636 + + Track ID5636 + NameKalayami Raghuramam (Raga: Begada Tala: Mishra Chapu) + ArtistSankaran Namboodiri + ComposerSwathi Thirunal + AlbumCompositions of Swathi Thirunal + GenreCarnatic + KindAAC audio file + Size12735688 + Total Time529877 + Disc Number1 + Disc Count1 + Track Number3 + Track Count8 + Year2000 + Date Modified2007-12-14T03:28:57Z + Date Added2009-10-03T14:58:33Z + Bit Rate192 + Sample Rate44100 + CommentsRaga: Begada Tala: Mishra Chapu + Normalization1177 + Compilation + Artwork Count1 + Persistent ID3CF309FA81C9A477 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Compositions%20of%20Swathi%20Thirunal/03%20Kalayami%20Raghuramam%20(Raga_%20Begada%20Tala_%20Mishra%20Chapu).m4a + File Folder Count4 + Library Folder Count1 + + 5638 + + Track ID5638 + NameMamavakarunayam + ArtistSankaran Namboodiri + ComposerSwathi Thirunal + AlbumCompositions of Swathi Thirunal + GenreCarnatic + KindAAC audio file + Size24575873 + Total Time1017195 + Disc Number1 + Disc Count1 + Track Number4 + Track Count8 + Year2000 + Date Modified2007-12-02T15:18:34Z + Date Added2009-10-03T14:58:33Z + Bit Rate192 + Sample Rate44100 + CommentsRaga: Shanmukhapriya Tala: Mishra Chapu + Normalization1125 + Compilation + Artwork Count1 + Persistent ID9AC79A37D079CA88 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Compositions%20of%20Swathi%20Thirunal/04%20Mamavakarunayam.m4a + File Folder Count4 + Library Folder Count1 + + 5640 + + Track ID5640 + NamePannagendra Shayana (Raga: Ragamalika Tala: Rupaka) + ArtistSankaran Namboodiri + ComposerSwathi Thirunal + AlbumCompositions of Swathi Thirunal + GenreCarnatic + KindAAC audio file + Size15696591 + Total Time652200 + Disc Number1 + Disc Count1 + Track Number5 + Track Count8 + Year2000 + Date Modified2007-12-14T03:29:32Z + Date Added2009-10-03T14:58:33Z + Bit Rate192 + Sample Rate44100 + CommentsRaga: Ragamalika Tala: Rupaka + Normalization868 + Compilation + Artwork Count1 + Persistent IDA7E598F8F4075E80 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Compositions%20of%20Swathi%20Thirunal/05%20Pannagendra%20Shayana%20(Raga_%20Ragamalika%20Tala_%20Rupaka).m4a + File Folder Count4 + Library Folder Count1 + + 5642 + + Track ID5642 + NameSarasijanabha Nin + ArtistSankaran Namboodiri + ComposerSwathi Thirunal + AlbumCompositions of Swathi Thirunal + GenreCarnatic + KindAAC audio file + Size7161405 + Total Time299512 + Disc Number1 + Disc Count1 + Track Number6 + Track Count8 + Year2000 + Date Modified2007-12-02T15:18:49Z + Date Added2009-10-03T14:58:33Z + Bit Rate192 + Sample Rate44100 + CommentsRaga: Sourashtra Tala: Mishra Chapu + Normalization1045 + Compilation + Artwork Count1 + Persistent IDD665A9E174999C0A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Compositions%20of%20Swathi%20Thirunal/06%20Sarasijanabha%20Nin.m4a + File Folder Count4 + Library Folder Count1 + + 5644 + + Track ID5644 + NameRamachandra Prabho (Raga: Sindhubhairavi Tala: Adi) + ArtistSankaran Namboodiri + ComposerSwathi Thirunal + AlbumCompositions of Swathi Thirunal + GenreCarnatic + KindAAC audio file + Size6761717 + Total Time282004 + Disc Number1 + Disc Count1 + Track Number7 + Track Count8 + Year2000 + Date Modified2007-12-14T16:23:08Z + Date Added2009-10-03T14:58:34Z + Bit Rate192 + Sample Rate44100 + CommentsRaga: Sindhubhairavi Tala: Adi + Normalization751 + Compilation + Artwork Count1 + Persistent ID402B39E762AF512F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Compositions%20of%20Swathi%20Thirunal/07%20Ramachandra%20Prabho%20(Raga_%20Sindhubhairavi%20Tala_%20Adi).m4a + File Folder Count4 + Library Folder Count1 + + 5646 + + Track ID5646 + NameIti Sahasamulu + ArtistSankaran Namboodiri + ComposerSwathi Thirunal + AlbumCompositions of Swathi Thirunal + GenreCarnatic + KindAAC audio file + Size4705654 + Total Time192608 + Disc Number1 + Disc Count1 + Track Number8 + Track Count8 + Year2000 + Date Modified2007-12-02T15:18:26Z + Date Added2009-10-03T14:58:34Z + Bit Rate192 + Sample Rate44100 + CommentsRaga: Saindhavi Tala: Adi + Normalization782 + Compilation + Artwork Count1 + Persistent ID511BCCFEFD720B2E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Compositions%20of%20Swathi%20Thirunal/08%20Iti%20Sahasamulu.m4a + File Folder Count4 + Library Folder Count1 + + 5648 + + Track ID5648 + NameOverture/And All That Jazz + ArtistCatherine Zeta-Jones, Renée Zellweger, Taye Diggs & Cast + ComposerJohn Kander, Fred Ebb + AlbumChicago + GenreSoundtrack + KindAAC audio file + Size8839072 + Total Time364760 + Disc Number1 + Disc Count1 + Track Number1 + Track Count18 + Year2003 + Date Modified2006-08-13T06:33:42Z + Date Added2009-10-03T14:58:34Z + Bit Rate192 + Sample Rate44100 + Normalization3829 + Compilation + Artwork Count1 + Persistent IDDC1274BEEDAD32EE + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Chicago/01%20Overture_And%20All%20That%20Jazz.m4a + File Folder Count4 + Library Folder Count1 + + 5650 + + Track ID5650 + NameFunny Honey + ArtistRenée Zellweger, John C. Reilly & Colm Feore + ComposerJohn Kander, Fred Ebb + AlbumChicago + GenreSoundtrack + KindAAC audio file + Size5317805 + Total Time219218 + Disc Number1 + Disc Count1 + Track Number2 + Track Count18 + Year2003 + Date Modified2006-08-13T06:33:38Z + Date Added2009-10-03T14:58:34Z + Bit Rate192 + Sample Rate44100 + Normalization1256 + Compilation + Artwork Count1 + Persistent ID23FB91DB8EEBE43F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Chicago/02%20Funny%20Honey.m4a + File Folder Count4 + Library Folder Count1 + + 5652 + + Track ID5652 + NameWhen You're Good To Mama + ArtistQueen Latifah + ComposerJohn Kander, Fred Ebb + AlbumChicago + GenreSoundtrack + KindAAC audio file + Size4852143 + Total Time199852 + Disc Number1 + Disc Count1 + Track Number3 + Track Count18 + Year2003 + Date Modified2006-08-13T06:33:34Z + Date Added2009-10-03T14:58:34Z + Bit Rate192 + Sample Rate44100 + Normalization2196 + Compilation + Artwork Count1 + Persistent ID786708271C044397 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Chicago/03%20When%20You're%20Good%20To%20Mama.m4a + File Folder Count4 + Library Folder Count1 + + 5654 + + Track ID5654 + NameCell Block Tango + ArtistCatherine Zeta-Jones, Susan Misner, Deidre Goodwin, Denise Faye, Ekaterina Chtchelkanova, Myá Harrison & Cast + ComposerJohn Kander, Fred Ebb + AlbumChicago + GenreSoundtrack + KindAAC audio file + Size10723775 + Total Time442640 + Disc Number1 + Disc Count1 + Track Number4 + Track Count18 + Year2003 + Date Modified2006-08-13T06:33:32Z + Date Added2009-10-03T14:58:34Z + Bit Rate192 + Sample Rate44100 + Normalization1514 + Compilation + Artwork Count1 + Persistent ID235B2D8CC1955090 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Chicago/04%20Cell%20Block%20Tango.m4a + File Folder Count4 + Library Folder Count1 + + 5656 + + Track ID5656 + NameAll I Care About + ArtistRichard Gere & Cast + ComposerJohn Kander, Fred Ebb + AlbumChicago + GenreSoundtrack + KindAAC audio file + Size5540742 + Total Time228204 + Disc Number1 + Disc Count1 + Track Number5 + Track Count18 + Year2003 + Date Modified2006-08-13T06:33:28Z + Date Added2009-10-03T14:58:34Z + Bit Rate192 + Sample Rate44100 + Normalization2447 + Compilation + Artwork Count1 + Persistent ID4220510EC96DC08A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Chicago/05%20All%20I%20Care%20About.m4a + File Folder Count4 + Library Folder Count1 + + 5658 + + Track ID5658 + NameWe Both Reached For The Gun + ArtistRichard Gere, Renée Zellweger, Christine Baranski & Cast + ComposerJohn Kander, Fred Ebb + AlbumChicago + GenreSoundtrack + KindAAC audio file + Size5813041 + Total Time239535 + Disc Number1 + Disc Count1 + Track Number6 + Track Count18 + Year2003 + Date Modified2006-08-13T06:33:26Z + Date Added2009-10-03T14:58:34Z + Bit Rate192 + Sample Rate44100 + Normalization3041 + Compilation + Artwork Count1 + Persistent ID4D2730F791F0E82A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Chicago/06%20We%20Both%20Reached%20For%20The%20Gun.m4a + File Folder Count4 + Library Folder Count1 + + 5660 + + Track ID5660 + NameRoxie + ArtistRenée Zellweger + ComposerJohn Kander, Fred Ebb + AlbumChicago + GenreSoundtrack + KindAAC audio file + Size4916972 + Total Time202546 + Disc Number1 + Disc Count1 + Track Number7 + Track Count18 + Year2003 + Date Modified2006-08-13T06:33:22Z + Date Added2009-10-03T14:58:35Z + Bit Rate192 + Sample Rate44100 + Normalization1747 + Compilation + Artwork Count1 + Persistent ID53BB85B5160CF0C2 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Chicago/07%20Roxie.m4a + File Folder Count4 + Library Folder Count1 + + 5662 + + Track ID5662 + NameI Can't Do It Alone + ArtistCatherine Zeta-Jones + ComposerJohn Kander, Fred Ebb + AlbumChicago + GenreSoundtrack + KindAAC audio file + Size5622793 + Total Time231640 + Disc Number1 + Disc Count1 + Track Number8 + Track Count18 + Year2003 + Date Modified2006-08-13T06:33:20Z + Date Added2009-10-03T14:58:35Z + Bit Rate192 + Sample Rate44100 + Normalization2795 + Compilation + Artwork Count1 + Persistent IDA78B654314D75C42 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Chicago/08%20I%20Can't%20Do%20It%20Alone.m4a + File Folder Count4 + Library Folder Count1 + + 5664 + + Track ID5664 + NameMister Cellophane + ArtistJohn C. Reilly + ComposerJohn Kander, Fred Ebb + AlbumChicago + GenreSoundtrack + KindAAC audio file + Size5774561 + Total Time237933 + Disc Number1 + Disc Count1 + Track Number9 + Track Count18 + Year2003 + Date Modified2006-08-13T06:33:18Z + Date Added2009-10-03T14:58:35Z + Bit Rate192 + Sample Rate44100 + Normalization1256 + Compilation + Artwork Count1 + Persistent ID4F78D45BF629684C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Chicago/09%20Mister%20Cellophane.m4a + File Folder Count4 + Library Folder Count1 + + 5666 + + Track ID5666 + NameRazzle Dazzle + ArtistRichard Gere & Cast + ComposerJohn Kander, Fred Ebb + AlbumChicago + GenreSoundtrack + KindAAC audio file + Size5517879 + Total Time227275 + Disc Number1 + Disc Count1 + Track Number10 + Track Count18 + Year2003 + Date Modified2006-08-13T06:33:16Z + Date Added2009-10-03T14:58:35Z + Bit Rate192 + Sample Rate44100 + Normalization1353 + Compilation + Artwork Count1 + Persistent ID12F3236D826A1568 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Chicago/10%20Razzle%20Dazzle.m4a + File Folder Count4 + Library Folder Count1 + + 5668 + + Track ID5668 + NameClass + ArtistCatherine Zeta-Jones & Queen Latifah + ComposerJohn Kander, Fred Ebb + AlbumChicago + GenreSoundtrack + KindAAC audio file + Size4253503 + Total Time174937 + Disc Number1 + Disc Count1 + Track Number11 + Track Count18 + Year2003 + Date Modified2006-08-13T06:33:14Z + Date Added2009-10-03T14:58:35Z + Bit Rate192 + Sample Rate44100 + Normalization2005 + Compilation + Artwork Count1 + Persistent ID2C0BE14BE05F95FB + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Chicago/11%20Class.m4a + File Folder Count4 + Library Folder Count1 + + 5670 + + Track ID5670 + NameNowadays (Roxie) + ArtistRenée Zellweger, Taye Diggs + ComposerJohn Kander, Fred Ebb + AlbumChicago + GenreSoundtrack + KindAAC audio file + Size3287412 + Total Time134674 + Disc Number1 + Disc Count1 + Track Number12 + Track Count18 + Year2003 + Date Modified2006-08-13T06:33:12Z + Date Added2009-10-03T14:58:35Z + Bit Rate192 + Sample Rate44100 + Normalization1166 + Compilation + Artwork Count1 + Persistent ID09CBA0F027895729 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Chicago/12%20Nowadays%20(Roxie).m4a + File Folder Count4 + Library Folder Count1 + + 5672 + + Track ID5672 + NameNowadays/Hot Honey Rag + ArtistCatherine Zeta-Jones, Renée Zellweger, Taye Diggs + ComposerJohn Kander, Fred Ebb + AlbumChicago + GenreSoundtrack + KindAAC audio file + Size5059559 + Total Time208467 + Disc Number1 + Disc Count1 + Track Number13 + Track Count18 + Year2003 + Date Modified2006-08-13T06:33:10Z + Date Added2009-10-03T14:58:35Z + Bit Rate192 + Sample Rate44100 + Normalization2238 + Compilation + Artwork Count1 + Persistent ID007B7213F0A240E0 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Chicago/13%20Nowadays_Hot%20Honey%20Rag.m4a + File Folder Count4 + Library Folder Count1 + + 5674 + + Track ID5674 + NameI Move On + ArtistCatherine Zeta-Jones, Renée Zellweger + ComposerJohn Kander, Fred Ebb + AlbumChicago + GenreSoundtrack + KindAAC audio file + Size5838124 + Total Time240626 + Disc Number1 + Disc Count1 + Track Number14 + Track Count18 + Year2003 + Date Modified2006-08-13T06:33:08Z + Date Added2009-10-03T14:58:36Z + Bit Rate192 + Sample Rate44100 + Normalization3288 + Compilation + Artwork Count1 + Persistent ID7029E78414C5F413 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Chicago/14%20I%20Move%20On.m4a + File Folder Count4 + Library Folder Count1 + + 5676 + + Track ID5676 + NameAfter Midnight + ArtistDanny Elfman + ComposerDanny Elfman + AlbumChicago + GenreSoundtrack + KindAAC audio file + Size4973849 + Total Time204937 + Disc Number1 + Disc Count1 + Track Number15 + Track Count18 + Year2003 + Date Modified2006-08-13T06:33:04Z + Date Added2009-10-03T14:58:36Z + Bit Rate192 + Sample Rate44100 + Normalization1783 + Compilation + Artwork Count1 + Persistent ID76FBC70F141CE8E5 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Chicago/15%20After%20Midnight.m4a + File Folder Count4 + Library Folder Count1 + + 5678 + + Track ID5678 + NameRoxie's Suite + ArtistDanny Elfman + ComposerDanny Elfman + AlbumChicago + GenreSoundtrack + KindAAC audio file + Size5653823 + Total Time238513 + Disc Number1 + Disc Count1 + Track Number16 + Track Count18 + Year2003 + Date Modified2006-08-13T06:33:02Z + Date Added2009-10-03T14:58:36Z + Bit Rate192 + Sample Rate44100 + Normalization1532 + Compilation + Artwork Count1 + Persistent IDEE6189B6809B84F8 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Chicago/16%20Roxie's%20Suite.m4a + File Folder Count4 + Library Folder Count1 + + 5680 + + Track ID5680 + NameCell Block Tango + ArtistQueen Latifah & Lil' Kim Feat. Macy Gray + ComposerJohn Kander, Fred Ebb + AlbumChicago + GenreSoundtrack + KindAAC audio file + Size5292247 + Total Time220077 + Disc Number1 + Disc Count1 + Track Number17 + Track Count18 + Year2003 + Date Modified2006-08-13T06:33:00Z + Date Added2009-10-03T14:58:36Z + Bit Rate192 + Sample Rate44100 + Normalization2324 + Compilation + Artwork Count1 + Persistent ID835756E97312D87B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Chicago/17%20Cell%20Block%20Tango.m4a + File Folder Count4 + Library Folder Count1 + + 5682 + + Track ID5682 + NameLove Is A Crime + ArtistAnastacia + ComposerDamon Sharpe, Greg Lawson, Denise Rich, Ric Wake + AlbumChicago + GenreSoundtrack + KindAAC audio file + Size4851799 + Total Time200804 + Disc Number1 + Disc Count1 + Track Number18 + Track Count18 + Year2003 + Date Modified2006-08-13T06:32:58Z + Date Added2009-10-03T14:58:36Z + Bit Rate192 + Sample Rate44100 + Normalization5546 + Compilation + Artwork Count1 + Persistent ID1BC5CBE73B4F9ADB + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Chicago/18%20Love%20Is%20A%20Crime.m4a + File Folder Count4 + Library Folder Count1 + + 5684 + + Track ID5684 + NameScheherezade, op. 35, 1. The sea and Sindbad's ship + ArtistKirill Kondrashin : Herman Krebbers : Conertgebouw Orchestra + ComposerNikolai Rimsky-Korsakov + AlbumBorodin Symphony No.2 + GenreClassical + KindAAC audio file + Size14833316 + Total Time612633 + Track Number1 + Track Count8 + Year1980 + Date Modified2006-08-17T16:47:50Z + Date Added2009-10-03T14:58:36Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3406828761 + Play Date UTC2011-12-15T15:49:21Z + Normalization689 + Compilation + Artwork Count1 + Persistent ID89DA75E2F4D061CE + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Borodin%20Symphony%20No.2/01%20Scheherezade,%20op.%2035,%201.%20The%20sea%20and%20Sindbad's%20ship.m4a + File Folder Count4 + Library Folder Count1 + + 5686 + + Track ID5686 + NameScheherezade, op. 35, 2. The story of the Kalender prince + ArtistKirill Kondrashin : Herman Krebbers : Conertgebouw Orchestra + ComposerNikolai Rimsky-Korsakov + AlbumBorodin Symphony No.2 + GenreClassical + KindAAC audio file + Size17746013 + Total Time732982 + Track Number2 + Track Count8 + Year1980 + Date Modified2006-08-17T16:47:50Z + Date Added2009-10-03T14:58:36Z + Bit Rate192 + Sample Rate44100 + Normalization809 + Compilation + Artwork Count1 + Persistent IDC35F7118468D6612 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Borodin%20Symphony%20No.2/02%20Scheherezade,%20op.%2035,%202.%20The%20story%20of%20the%20Kalender%20prince.m4a + File Folder Count4 + Library Folder Count1 + + 5688 + + Track ID5688 + NameScheherezade, op. 35, 3. The young prince and the princess + ArtistKirill Kondrashin : Herman Krebbers : Conertgebouw Orchestra + ComposerNikolai Rimsky-Korsakov + AlbumBorodin Symphony No.2 + GenreClassical + KindAAC audio file + Size14041799 + Total Time579916 + Track Number3 + Track Count8 + Year1980 + Date Modified2006-08-17T16:47:50Z + Date Added2009-10-03T14:58:37Z + Bit Rate192 + Sample Rate44100 + Normalization474 + Compilation + Artwork Count1 + Persistent IDDE4B566A43CB6ECC + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Borodin%20Symphony%20No.2/03%20Scheherezade,%20op.%2035,%203.%20The%20young%20prince%20and%20the%20princess.m4a + File Folder Count4 + Library Folder Count1 + + 5690 + + Track ID5690 + NameScheherezade, op. 35, 4. Festival at Baghdad - The sea - Shi + ArtistKirill Kondrashin : Herman Krebbers : Conertgebouw Orchestra + ComposerNikolai Rimsky-Korsakov + AlbumBorodin Symphony No.2 + GenreClassical + KindAAC audio file + Size18187448 + Total Time751233 + Track Number4 + Track Count8 + Year1980 + Date Modified2006-08-17T16:47:50Z + Date Added2009-10-03T14:58:37Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3338471626 + Play Date UTC2009-10-15T11:43:46Z + Normalization1237 + Compilation + Artwork Count1 + Persistent ID515E7A739E34EBBE + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Borodin%20Symphony%20No.2/04%20Scheherezade,%20op.%2035,%204.%20Festival%20at%20Baghdad%20-%20The%20sea%20-%20Shi.m4a + File Folder Count4 + Library Folder Count1 + + 5692 + + Track ID5692 + NameSymphony No. 2 in B minor, I. Allegro + ArtistKirill Kondrashin : Conertgebouw Orchestra Amsterdam + ComposerBorodin + AlbumBorodin Symphony No.2 + GenreClassical + KindAAC audio file + Size11661454 + Total Time481557 + Track Number5 + Track Count8 + Year1980 + Date Modified2006-08-13T06:32:26Z + Date Added2009-10-03T14:58:37Z + Bit Rate192 + Sample Rate44100 + Normalization975 + Compilation + Artwork Count1 + Persistent ID64787B9FD5C23E54 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Borodin%20Symphony%20No.2/05%20Symphony%20No.%202%20in%20B%20minor,%20I.%20Allegro.m4a + File Folder Count4 + Library Folder Count1 + + 5694 + + Track ID5694 + NameSymphony No. 2 in B minor, II. Scherzo: prestissimo - Trio: + ArtistKirill Kondrashin : Conertgebouw Orchestra Amsterdam + ComposerBorodin + AlbumBorodin Symphony No.2 + GenreClassical + KindAAC audio file + Size8100672 + Total Time334412 + Track Number6 + Track Count8 + Year1980 + Date Modified2006-08-13T06:32:20Z + Date Added2009-10-03T14:58:37Z + Bit Rate192 + Sample Rate44100 + Normalization444 + Compilation + Artwork Count1 + Persistent ID5B04293678E87975 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Borodin%20Symphony%20No.2/06%20Symphony%20No.%202%20in%20B%20minor,%20II.%20Scherzo_%20prestissimo%20-%20Trio_.m4a + File Folder Count4 + Library Folder Count1 + + 5696 + + Track ID5696 + NameSymphony No. 2 in B minor, IV. Andante + ArtistKirill Kondrashin : Conertgebouw Orchestra Amsterdam + ComposerBorodin + AlbumBorodin Symphony No.2 + GenreClassical + KindAAC audio file + Size10736011 + Total Time443313 + Track Number7 + Track Count8 + Year1980 + Date Modified2006-08-13T06:32:16Z + Date Added2009-10-03T14:58:37Z + Bit Rate192 + Sample Rate44100 + Normalization845 + Compilation + Artwork Count1 + Persistent IDCBD788DCC1D49128 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Borodin%20Symphony%20No.2/07%20Symphony%20No.%202%20in%20B%20minor,%20IV.%20Andante.m4a + File Folder Count4 + Library Folder Count1 + + 5698 + + Track ID5698 + NameSymphony No. 2 in B minor, V. Finale: Allegro + ArtistKirill Kondrashin : Conertgebouw Orchestra Amsterdam + ComposerBorodin + AlbumBorodin Symphony No.2 + GenreClassical + KindAAC audio file + Size9486506 + Total Time391788 + Track Number8 + Track Count8 + Year1980 + Date Modified2006-08-13T06:32:12Z + Date Added2009-10-03T14:58:37Z + Bit Rate192 + Sample Rate44100 + Normalization1202 + Compilation + Artwork Count1 + Persistent IDD2CA0DCE63FF6680 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Borodin%20Symphony%20No.2/08%20Symphony%20No.%202%20in%20B%20minor,%20V.%20Finale_%20Allegro.m4a + File Folder Count4 + Library Folder Count1 + + 5700 + + Track ID5700 + NameThe Man I Love + ArtistBillie Holiday & Lester Young + ComposerGeorge Gershwin/Ira Gershwin + AlbumBillie Holiday & Lester Young - A Musical Romance + GenreJazz + KindAAC audio file + Size4484714 + Total Time186710 + Disc Number1 + Disc Count1 + Track Number1 + Track Count16 + Year2002 + Date Modified2006-08-03T12:47:58Z + Date Added2009-10-03T14:58:38Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3337492178 + Play Date UTC2009-10-04T03:39:38Z + Normalization1471 + Compilation + Artwork Count1 + Sort NameMan I Love + Persistent IDB1736A6AFC13909A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Billie%20Holiday%20&%20Lester%20Young%20-%20A%20Musical%20Romance/01%20The%20Man%20I%20Love.m4a + File Folder Count4 + Library Folder Count1 + + 5702 + + Track ID5702 + NameThis Year's Kisses + ArtistBillie Holiday & Lester Young + ComposerIrving Berlin + AlbumBillie Holiday & Lester Young - A Musical Romance + GenreJazz + KindAAC audio file + Size4561952 + Total Time190355 + Disc Number1 + Disc Count1 + Track Number2 + Track Count16 + Year2002 + Date Modified2006-08-03T12:47:58Z + Date Added2009-10-03T14:58:38Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3337492555 + Play Date UTC2009-10-04T03:45:55Z + Normalization1256 + Compilation + Artwork Count1 + Persistent IDA96610E138F9EFB9 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Billie%20Holiday%20&%20Lester%20Young%20-%20A%20Musical%20Romance/02%20This%20Year's%20Kisses.m4a + File Folder Count4 + Library Folder Count1 + + 5704 + + Track ID5704 + NameMean to Me + ArtistBillie Holiday & Lester Young + ComposerFred E. Ahlert/R. Turke + AlbumBillie Holiday & Lester Young - A Musical Romance + GenreJazz + KindAAC audio file + Size4516560 + Total Time188451 + Disc Number1 + Disc Count1 + Track Number3 + Track Count16 + Year2002 + Date Modified2006-08-03T12:47:58Z + Date Added2009-10-03T14:58:38Z + Bit Rate192 + Sample Rate44100 + Normalization1538 + Compilation + Artwork Count1 + Persistent ID0F5C553AC70E95B6 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Billie%20Holiday%20&%20Lester%20Young%20-%20A%20Musical%20Romance/03%20Mean%20to%20Me.m4a + File Folder Count4 + Library Folder Count1 + + 5706 + + Track ID5706 + NameBack in Your Own Backyard + ArtistBillie Holiday & Lester Young + ComposerAl Jolson/Billy Rose/Dave Dreyer + AlbumBillie Holiday & Lester Young - A Musical Romance + GenreJazz + KindAAC audio file + Size3889157 + Total Time162213 + Disc Number1 + Disc Count1 + Track Number4 + Track Count16 + Year2002 + Date Modified2006-08-03T12:47:58Z + Date Added2009-10-03T14:58:38Z + Bit Rate192 + Sample Rate44100 + Normalization1000 + Compilation + Artwork Count1 + Persistent ID185C6EC16E2BC73C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Billie%20Holiday%20&%20Lester%20Young%20-%20A%20Musical%20Romance/04%20Back%20in%20Your%20Own%20Backyard.m4a + File Folder Count4 + Library Folder Count1 + + 5708 + + Track ID5708 + NameI'll Never Be the Same + ArtistBillie Holiday & Lester Young + ComposerFrank Signorelli/Gus Kahn/Matty Malneck + AlbumBillie Holiday & Lester Young - A Musical Romance + GenreJazz + KindAAC audio file + Size4416485 + Total Time183621 + Disc Number1 + Disc Count1 + Track Number5 + Track Count16 + Year2002 + Date Modified2006-08-03T12:47:58Z + Date Added2009-10-03T14:58:39Z + Bit Rate192 + Sample Rate44100 + Normalization1241 + Compilation + Artwork Count1 + Persistent ID09C4DD44B2EFE8BB + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Billie%20Holiday%20&%20Lester%20Young%20-%20A%20Musical%20Romance/05%20I'll%20Never%20Be%20the%20Same.m4a + File Folder Count4 + Library Folder Count1 + + 5710 + + Track ID5710 + NameMe, Myself and I + ArtistBillie Holiday & Lester Young + ComposerAllan Roberts/Alvin Kaufman/Irving Gordon + AlbumBillie Holiday & Lester Young - A Musical Romance + GenreJazz + KindAAC audio file + Size3784167 + Total Time157313 + Disc Number1 + Disc Count1 + Track Number6 + Track Count16 + Year2002 + Date Modified2006-08-03T12:47:58Z + Date Added2009-10-03T14:58:39Z + Bit Rate192 + Sample Rate44100 + Normalization2871 + Compilation + Artwork Count1 + Persistent ID9C01C25D8D19BB42 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Billie%20Holiday%20&%20Lester%20Young%20-%20A%20Musical%20Romance/06%20Me,%20Myself%20and%20I.m4a + File Folder Count4 + Library Folder Count1 + + 5712 + + Track ID5712 + NameTime On My Hands (You In My Arm) + ArtistBillie Holiday & Lester Young + ComposerHarold Adamson/Mack Gordon/Vincent Youmans + AlbumBillie Holiday & Lester Young - A Musical Romance + GenreJazz + KindAAC audio file + Size4482414 + Total Time186617 + Disc Number1 + Disc Count1 + Track Number7 + Track Count16 + Year2002 + Date Modified2006-08-03T12:47:58Z + Date Added2009-10-03T14:58:39Z + Bit Rate192 + Sample Rate44100 + Normalization998 + Compilation + Artwork Count1 + Persistent ID2E231DA8576AD084 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Billie%20Holiday%20&%20Lester%20Young%20-%20A%20Musical%20Romance/07%20Time%20On%20My%20Hands%20(You%20In%20My%20Arm).m4a + File Folder Count4 + Library Folder Count1 + + 5714 + + Track ID5714 + NameWho Wants Love? + ArtistBillie Holiday & Lester Young + ComposerFranz Waxman/Gus Kahn + AlbumBillie Holiday & Lester Young - A Musical Romance + GenreJazz + KindAAC audio file + Size3707717 + Total Time154388 + Disc Number1 + Disc Count1 + Track Number8 + Track Count16 + Year2002 + Date Modified2006-08-03T12:47:58Z + Date Added2009-10-03T14:58:39Z + Bit Rate192 + Sample Rate44100 + Normalization1921 + Compilation + Artwork Count1 + Persistent ID5893B16F183C346F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Billie%20Holiday%20&%20Lester%20Young%20-%20A%20Musical%20Romance/08%20Who%20Wants%20Love_.m4a + File Folder Count4 + Library Folder Count1 + + 5716 + + Track ID5716 + NameI Must Have That Man! + ArtistBillie Holiday & Lester Young + ComposerDorothy Fields/Jimmy McHugh + AlbumBillie Holiday & Lester Young - A Musical Romance + GenreJazz + KindAAC audio file + Size4243587 + Total Time177073 + Disc Number1 + Disc Count1 + Track Number9 + Track Count16 + Year2002 + Date Modified2006-08-03T12:47:58Z + Date Added2009-10-03T14:58:40Z + Bit Rate192 + Sample Rate44100 + Normalization911 + Compilation + Artwork Count1 + Persistent IDC0DBCDF830E18E73 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Billie%20Holiday%20&%20Lester%20Young%20-%20A%20Musical%20Romance/09%20I%20Must%20Have%20That%20Man!.m4a + File Folder Count4 + Library Folder Count1 + + 5718 + + Track ID5718 + NameFoolin' Myself + ArtistBillie Holiday & Lester Young + ComposerJack Lawrence/Peter Tinturin + AlbumBillie Holiday & Lester Young - A Musical Romance + GenreJazz + KindAAC audio file + Size4371067 + Total Time182484 + Disc Number1 + Disc Count1 + Track Number10 + Track Count16 + Year2002 + Date Modified2006-08-03T12:47:58Z + Date Added2009-10-03T14:58:40Z + Bit Rate192 + Sample Rate44100 + Normalization1936 + Compilation + Artwork Count1 + Persistent IDA677E6150D38B139 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Billie%20Holiday%20&%20Lester%20Young%20-%20A%20Musical%20Romance/10%20Foolin'%20Myself.m4a + File Folder Count4 + Library Folder Count1 + + 5720 + + Track ID5720 + NameWhen You're Smiling + ArtistBillie Holiday & Lester Young + ComposerJoe Goodwin/Larry Shay/Mark Fisher + AlbumBillie Holiday & Lester Young - A Musical Romance + GenreJazz + KindAAC audio file + Size4126853 + Total Time172104 + Disc Number1 + Disc Count1 + Track Number11 + Track Count16 + Year2002 + Date Modified2006-08-03T12:47:58Z + Date Added2009-10-03T14:58:40Z + Bit Rate192 + Sample Rate44100 + Normalization1511 + Compilation + Artwork Count1 + Persistent ID96E02740D8170DA0 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Billie%20Holiday%20&%20Lester%20Young%20-%20A%20Musical%20Romance/11%20When%20You're%20Smiling.m4a + File Folder Count4 + Library Folder Count1 + + 5722 + + Track ID5722 + NameA Sailboat in the Moonlight + ArtistBillie Holiday & Lester Young + ComposerCarmen Lombardo/John Jacob Loeb + AlbumBillie Holiday & Lester Young - A Musical Romance + GenreJazz + KindAAC audio file + Size4111019 + Total Time171454 + Disc Number1 + Disc Count1 + Track Number12 + Track Count16 + Year2002 + Date Modified2006-08-03T12:47:58Z + Date Added2009-10-03T14:58:41Z + Bit Rate192 + Sample Rate44100 + Normalization2230 + Compilation + Artwork Count1 + Sort NameSailboat in the Moonlight + Persistent ID5D5109D2D275223F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Billie%20Holiday%20&%20Lester%20Young%20-%20A%20Musical%20Romance/12%20A%20Sailboat%20in%20the%20Moonlight.m4a + File Folder Count4 + Library Folder Count1 + + 5724 + + Track ID5724 + NameHe's Funny That Way + ArtistBillie Holiday & Lester Young + AlbumBillie Holiday & Lester Young - A Musical Romance + GenreJazz + KindAAC audio file + Size3861746 + Total Time161098 + Disc Number1 + Disc Count1 + Track Number13 + Track Count16 + Year2002 + Date Modified2006-08-03T12:47:58Z + Date Added2009-10-03T14:58:41Z + Bit Rate192 + Sample Rate44100 + Normalization1913 + Compilation + Artwork Count1 + Persistent IDA7480860353205BC + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Billie%20Holiday%20&%20Lester%20Young%20-%20A%20Musical%20Romance/13%20He's%20Funny%20That%20Way.m4a + File Folder Count4 + Library Folder Count1 + + 5726 + + Track ID5726 + NameLaughing at Life + ArtistBillie Holiday & Lester Young + ComposerBob Todd/Charles F. Kenny/Cornell Todd/Nick A. Kenny + AlbumBillie Holiday & Lester Young - A Musical Romance + GenreJazz + KindAAC audio file + Size4238389 + Total Time176725 + Disc Number1 + Disc Count1 + Track Number14 + Track Count16 + Year2002 + Date Modified2006-08-03T12:47:58Z + Date Added2009-10-03T14:58:41Z + Bit Rate192 + Sample Rate44100 + Normalization1351 + Compilation + Artwork Count1 + Persistent IDF476A4E9E6850A5B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Billie%20Holiday%20&%20Lester%20Young%20-%20A%20Musical%20Romance/14%20Laughing%20at%20Life.m4a + File Folder Count4 + Library Folder Count1 + + 5728 + + Track ID5728 + NameWithout Your Love + ArtistBillie Holiday & Lester Young + ComposerFred Stryker/John Lange + AlbumBillie Holiday & Lester Young - A Musical Romance + GenreJazz + KindAAC audio file + Size4162935 + Total Time173335 + Disc Number1 + Disc Count1 + Track Number15 + Track Count16 + Year2002 + Date Modified2006-08-03T12:47:58Z + Date Added2009-10-03T14:58:41Z + Bit Rate192 + Sample Rate44100 + Normalization1816 + Compilation + Artwork Count1 + Persistent ID93D8465B920229C9 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Billie%20Holiday%20&%20Lester%20Young%20-%20A%20Musical%20Romance/15%20Without%20Your%20Love.m4a + File Folder Count4 + Library Folder Count1 + + 5730 + + Track ID5730 + NameFine and Mellow + ArtistBillie Holiday & Lester Young + ComposerBillie Holiday + AlbumBillie Holiday & Lester Young - A Musical Romance + GenreJazz + KindAAC audio file + Size9185328 + Total Time379180 + Disc Number1 + Disc Count1 + Track Number16 + Track Count16 + Year2002 + Date Modified2006-08-03T12:47:58Z + Date Added2009-10-03T14:58:41Z + Bit Rate192 + Sample Rate44100 + Normalization1000 + Compilation + Artwork Count1 + Persistent ID876EE8868D102166 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Billie%20Holiday%20&%20Lester%20Young%20-%20A%20Musical%20Romance/16%20Fine%20and%20Mellow.m4a + File Folder Count4 + Library Folder Count1 + + 5732 + + Track ID5732 + NameKaakkai Siraginiley + ArtistK. J. Yesudas + ComposerL. Vaidhyanathan + AlbumBharathiyaar Songs from Tamil Films + GenreWorld + KindAAC audio file + Size3947181 + Total Time167484 + Track Number1 + Track Count15 + Year1981 + Date Modified2006-07-30T02:40:28Z + Date Added2009-10-03T14:58:42Z + Bit Rate192 + Sample Rate44100 + Normalization2124 + Compilation + Artwork Count1 + Persistent ID337AC20C0E3E9EA4 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Bharathiyaar%20Songs%20from%20Tamil%20Films/01%20Kaakkai%20Siraginiley.m4a + File Folder Count4 + Library Folder Count1 + + 5734 + + Track ID5734 + NamePaayumoli & Veenaiyadi + ArtistK.J. Yesudas & B. Neeraja + ComposerL. Vaidhyanathan + AlbumBharathiyaar Songs from Tamil Films + GenreWorld + KindAAC audio file + Size5641472 + Total Time235982 + Track Number2 + Track Count15 + Year1981 + Date Modified2006-07-30T02:40:28Z + Date Added2009-10-03T14:58:42Z + Bit Rate192 + Sample Rate44100 + Normalization2742 + Compilation + Artwork Count1 + Persistent ID4EFA3CC2B6151CB9 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Bharathiyaar%20Songs%20from%20Tamil%20Films/02%20Paayumoli%20&%20Veenaiyadi.m4a + File Folder Count4 + Library Folder Count1 + + 5736 + + Track ID5736 + NameNallathor Veenaisithe + ArtistRajkumar Bharathi + ComposerL. Vaidhyanathan + AlbumBharathiyaar Songs from Tamil Films + GenreWorld + KindAAC audio file + Size4470587 + Total Time187685 + Track Number3 + Track Count15 + Year1981 + Date Modified2006-07-30T02:40:30Z + Date Added2009-10-03T14:58:42Z + Bit Rate192 + Sample Rate44100 + Normalization2748 + Compilation + Artwork Count1 + Persistent ID2D4420C677C6C29A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Bharathiyaar%20Songs%20from%20Tamil%20Films/03%20Nallathor%20Veenaisithe.m4a + File Folder Count4 + Library Folder Count1 + + 5738 + + Track ID5738 + NameKaatru Veliyidai + ArtistPB Sreenivas, P Susheela + ComposerSubramania Bharathi + AlbumBharathiyaar Songs from Tamil Films + GenreWorld + KindAAC audio file + Size4999798 + Total Time209697 + Track Number4 + Track Count15 + Year1961 + Date Modified2006-07-30T02:40:30Z + Date Added2009-10-03T14:58:42Z + Bit Rate192 + Sample Rate44100 + Normalization2395 + Compilation + Artwork Count1 + Persistent ID22820E2F8D131628 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Bharathiyaar%20Songs%20from%20Tamil%20Films/04%20Kaatru%20Veliyidai.m4a + File Folder Count4 + Library Folder Count1 + + 5740 + + Track ID5740 + NameTheeratha Vilaiyaattu + ArtistD.K. Pattammal + ComposerSubramania Bharathi + AlbumBharathiyaar Songs from Tamil Films + GenreWorld + KindAAC audio file + Size6199247 + Total Time259226 + Track Number5 + Track Count15 + Year1949 + Date Modified2006-07-30T02:40:28Z + Date Added2009-10-03T14:58:42Z + Bit Rate192 + Sample Rate44100 + Normalization3600 + Compilation + Artwork Count1 + Persistent ID421FEA371E1824E8 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Bharathiyaar%20Songs%20from%20Tamil%20Films/05%20Theeratha%20Vilaiyaattu.m4a + File Folder Count4 + Library Folder Count1 + + 5742 + + Track ID5742 + NameNenju Porukkuthilliaiye + ArtistCS Jayaraman + ComposerSubramania Bharathi + AlbumBharathiyaar Songs from Tamil Films + GenreWorld + KindAAC audio file + Size4415488 + Total Time185363 + Track Number6 + Track Count15 + Year1952 + Date Modified2006-07-30T02:40:28Z + Date Added2009-10-03T14:58:42Z + Bit Rate192 + Sample Rate44100 + Normalization2148 + Compilation + Artwork Count1 + Persistent IDA21CA0B9922F1808 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Bharathiyaar%20Songs%20from%20Tamil%20Films/06%20Nenju%20Porukkuthilliaiye.m4a + File Folder Count4 + Library Folder Count1 + + 5744 + + Track ID5744 + NameVellippanimalai + ArtistSeergazhi Govindarajan, Trichy Loganathan, & Chorus + ComposerSubramania Bharathi + AlbumBharathiyaar Songs from Tamil Films + GenreWorld + KindAAC audio file + Size4535163 + Total Time190355 + Track Number7 + Track Count15 + Year1961 + Date Modified2006-07-30T02:40:30Z + Date Added2009-10-03T14:58:43Z + Bit Rate192 + Sample Rate44100 + Normalization2910 + Compilation + Artwork Count1 + Persistent ID02C583E663D324B2 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Bharathiyaar%20Songs%20from%20Tamil%20Films/07%20Vellippanimalai.m4a + File Folder Count4 + Library Folder Count1 + + 5746 + + Track ID5746 + NameEngiruntho Vanthaan + ArtistSeergazhi Govindarajan + ComposerSubramania Bharathi + AlbumBharathiyaar Songs from Tamil Films + GenreWorld + KindAAC audio file + Size4567148 + Total Time191702 + Track Number8 + Track Count15 + Year1960 + Date Modified2006-07-30T02:40:30Z + Date Added2009-10-03T14:58:43Z + Bit Rate192 + Sample Rate44100 + Normalization3531 + Compilation + Artwork Count1 + Persistent IDEDBACD5121E7A6D0 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Bharathiyaar%20Songs%20from%20Tamil%20Films/08%20Engiruntho%20Vanthaan.m4a + File Folder Count4 + Library Folder Count1 + + 5748 + + Track ID5748 + NameManadhil Urudhi Vendum + ArtistB. Neeraja + ComposerL. Vaidhyanathan + AlbumBharathiyaar Songs from Tamil Films + GenreWorld + KindAAC audio file + Size2524902 + Total Time106671 + Track Number9 + Track Count15 + Year1981 + Date Modified2006-07-30T02:40:28Z + Date Added2009-10-03T14:58:43Z + Bit Rate192 + Sample Rate44100 + Normalization1882 + Compilation + Artwork Count1 + Persistent ID6F2A1D0EBB63E88A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Bharathiyaar%20Songs%20from%20Tamil%20Films/09%20Manadhil%20Urudhi%20Vendum.m4a + File Folder Count4 + Library Folder Count1 + + 5750 + + Track ID5750 + NameSenthamizh Naadennum + ArtistP Susheela & Chorus + ComposerL. Vaidhyanathan + AlbumBharathiyaar Songs from Tamil Films + GenreWorld + KindAAC audio file + Size5215677 + Total Time218289 + Track Number10 + Track Count15 + Year1981 + Date Modified2006-07-30T02:40:30Z + Date Added2009-10-03T14:58:43Z + Bit Rate192 + Sample Rate44100 + Normalization6867 + Compilation + Artwork Count1 + Persistent ID4E2D8406CC3ED381 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Bharathiyaar%20Songs%20from%20Tamil%20Films/10%20Senthamizh%20Naadennum.m4a + File Folder Count4 + Library Folder Count1 + + 5752 + + Track ID5752 + NameAchchamillai + ArtistS P Balasubramanyam + ComposerL. Vaidhyanathan + AlbumBharathiyaar Songs from Tamil Films + GenreWorld + KindAAC audio file + Size4388842 + Total Time184272 + Track Number11 + Track Count15 + Year1981 + Date Modified2006-07-30T02:40:30Z + Date Added2009-10-03T14:58:43Z + Bit Rate192 + Sample Rate44100 + Normalization4523 + Compilation + Artwork Count1 + Persistent ID37DFFBE62BF460D9 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Bharathiyaar%20Songs%20from%20Tamil%20Films/11%20Achchamillai.m4a + File Folder Count4 + Library Folder Count1 + + 5754 + + Track ID5754 + NameNenjil Uramummindri + ArtistRajkumar Bharathi + ComposerL. Vaidhyanathan + AlbumBharathiyaar Songs from Tamil Films + GenreWorld + KindAAC audio file + Size5688246 + Total Time237956 + Track Number12 + Track Count15 + Year1981 + Date Modified2006-07-30T02:40:30Z + Date Added2009-10-03T14:58:43Z + Bit Rate192 + Sample Rate44100 + Normalization3056 + Compilation + Artwork Count1 + Persistent ID9B2ECB8F4398321C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Bharathiyaar%20Songs%20from%20Tamil%20Films/12%20Nenjil%20Uramummindri.m4a + File Folder Count4 + Library Folder Count1 + + 5756 + + Track ID5756 + NameOdi Vilayadu Pappa + ArtistK.J. Yesudas & Saibaba + ComposerL. Vaidhyanathan + AlbumBharathiyaar Songs from Tamil Films + GenreWorld + KindAAC audio file + Size7070534 + Total Time295263 + Track Number13 + Track Count15 + Year1981 + Date Modified2006-07-30T02:40:30Z + Date Added2009-10-03T14:58:43Z + Bit Rate192 + Sample Rate44100 + Normalization3971 + Compilation + Artwork Count1 + Persistent IDE9DB76C42ADC2F55 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Bharathiyaar%20Songs%20from%20Tamil%20Films/13%20Odi%20Vilayadu%20Pappa.m4a + File Folder Count4 + Library Folder Count1 + + 5758 + + Track ID5758 + NameAaduvome + ArtistP. Susheela, Dheephan Chakravarthy, Dr. Chandilyan, & Madhangi + ComposerL. Vaidhyanathan + AlbumBharathiyaar Songs from Tamil Films + GenreWorld + KindAAC audio file + Size4773506 + Total Time200270 + Track Number14 + Track Count15 + Year1981 + Date Modified2006-07-30T02:40:30Z + Date Added2009-10-03T14:58:44Z + Bit Rate192 + Sample Rate44100 + Normalization3791 + Compilation + Artwork Count1 + Persistent IDD04A32D2F78443C8 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Bharathiyaar%20Songs%20from%20Tamil%20Films/14%20Aaduvome.m4a + File Folder Count4 + Library Folder Count1 + + 5760 + + Track ID5760 + NameSindhu Nadhiyin Meesai + ArtistT.M. Sounderarajan, J.V. Raghavulu, & L.R. Eswari + ComposerSubramania Bharathi + AlbumBharathiyaar Songs from Tamil Films + GenreWorld + KindAAC audio file + Size8651782 + Total Time356889 + Track Number15 + Track Count15 + Year1963 + Date Modified2006-07-30T02:40:30Z + Date Added2009-10-03T14:58:44Z + Bit Rate192 + Sample Rate44100 + Normalization4238 + Compilation + Artwork Count1 + Persistent IDEA1E65402356BC06 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Bharathiyaar%20Songs%20from%20Tamil%20Films/15%20Sindhu%20Nadhiyin%20Meesai.m4a + File Folder Count4 + Library Folder Count1 + + 5762 + + Track ID5762 + NameBartok:Dance Suite (Orch)/1: Moderato + ArtistPierre Boulez; Chicago Symphony Orchestra + ComposerBartók, Béla + AlbumBartók-Boulez:Divertimento, Dance Suite, Hungarian Sketches, Two Pictures + GenreClassical + KindAAC audio file + Size5354638 + Total Time220820 + Track Number1 + Track Count16 + Year1995 + Date Modified2006-08-13T06:32:06Z + Date Added2009-10-03T14:58:45Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Compilation + Artwork Count1 + Persistent ID396F96C4721CFDB1 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Barto%CC%81k-Boulez_Divertimento,%20Dance%20Suite,%20Hungarian%20Sketches,%20Two%20Pictures/01%20Bartok_Dance%20Suite%20(Orch)_1_%20Moderato.m4a + File Folder Count4 + Library Folder Count1 + + 5764 + + Track ID5764 + NameBartok:Dance Suite (Orch)/2: Allegro Molto + ArtistPierre Boulez; Chicago Symphony Orchestra + ComposerBartók, Béla + AlbumBartók-Boulez:Divertimento, Dance Suite, Hungarian Sketches, Two Pictures + GenreClassical + KindAAC audio file + Size3324015 + Total Time136206 + Track Number2 + Track Count16 + Year1995 + Date Modified2006-08-13T06:32:04Z + Date Added2009-10-03T14:58:45Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Compilation + Artwork Count1 + Persistent ID52327BAECE8D8C88 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Barto%CC%81k-Boulez_Divertimento,%20Dance%20Suite,%20Hungarian%20Sketches,%20Two%20Pictures/02%20Bartok_Dance%20Suite%20(Orch)_2_%20Allegro%20Molto.m4a + File Folder Count4 + Library Folder Count1 + + 5766 + + Track ID5766 + NameBartok:Dance Suite (Orch)/3: Allegro Vivace + ArtistPierre Boulez; Chicago Symphony Orchestra + ComposerBartók, Béla + AlbumBartók-Boulez:Divertimento, Dance Suite, Hungarian Sketches, Two Pictures + GenreClassical + KindAAC audio file + Size4312540 + Total Time177352 + Track Number3 + Track Count16 + Year1995 + Date Modified2006-08-13T06:32:02Z + Date Added2009-10-03T14:58:45Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Compilation + Artwork Count1 + Persistent IDF311B14715E96EEE + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Barto%CC%81k-Boulez_Divertimento,%20Dance%20Suite,%20Hungarian%20Sketches,%20Two%20Pictures/03%20Bartok_Dance%20Suite%20(Orch)_3_%20Allegro%20Vivace.m4a + File Folder Count4 + Library Folder Count1 + + 5768 + + Track ID5768 + NameBartok:Dance Suite (Orch)/4: Molto Tranquillo + ArtistPierre Boulez; Chicago Symphony Orchestra + ComposerBartók, Béla + AlbumBartók-Boulez:Divertimento, Dance Suite, Hungarian Sketches, Two Pictures + GenreClassical + KindAAC audio file + Size3796056 + Total Time155850 + Track Number4 + Track Count16 + Year1995 + Date Modified2006-08-13T06:32:00Z + Date Added2009-10-03T14:58:46Z + Bit Rate192 + Sample Rate44100 + Normalization37 + Compilation + Artwork Count1 + Persistent ID4A0AE40A56B4FBC0 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Barto%CC%81k-Boulez_Divertimento,%20Dance%20Suite,%20Hungarian%20Sketches,%20Two%20Pictures/04%20Bartok_Dance%20Suite%20(Orch)_4_%20Molto%20Tranquillo.m4a + File Folder Count4 + Library Folder Count1 + + 5770 + + Track ID5770 + NameBartok:Dance Suite (Orch)/5: Comodo + ArtistPierre Boulez; Chicago Symphony Orchestra + ComposerBartók, Béla + AlbumBartók-Boulez:Divertimento, Dance Suite, Hungarian Sketches, Two Pictures + GenreClassical + KindAAC audio file + Size1529354 + Total Time61508 + Track Number5 + Track Count16 + Year1995 + Date Modified2006-08-13T06:31:58Z + Date Added2009-10-03T14:58:46Z + Bit Rate192 + Sample Rate44100 + Normalization355 + Compilation + Artwork Count1 + Persistent IDE0BF92950DF4A744 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Barto%CC%81k-Boulez_Divertimento,%20Dance%20Suite,%20Hungarian%20Sketches,%20Two%20Pictures/05%20Bartok_Dance%20Suite%20(Orch)_5_%20Comodo.m4a + File Folder Count4 + Library Folder Count1 + + 5772 + + Track ID5772 + NameBartok:Dance Suite (Orch)/6: Finale: Allegro + ArtistPierre Boulez; Chicago Symphony Orchestra + ComposerBartók, Béla + AlbumBartók-Boulez:Divertimento, Dance Suite, Hungarian Sketches, Two Pictures + GenreClassical + KindAAC audio file + Size5932268 + Total Time252353 + Track Number6 + Track Count16 + Year1995 + Date Modified2006-08-13T06:31:58Z + Date Added2009-10-03T14:58:46Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Compilation + Artwork Count1 + Persistent ID0174AFB179AA126C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Barto%CC%81k-Boulez_Divertimento,%20Dance%20Suite,%20Hungarian%20Sketches,%20Two%20Pictures/06%20Bartok_Dance%20Suite%20(Orch)_6_%20Finale_%20Allegro.m4a + File Folder Count4 + Library Folder Count1 + + 5774 + + Track ID5774 + NameBartok:2 Images (Orch)/1: In Full Flower + ArtistPierre Boulez; Chicago Symphony Orchestra + ComposerBartók, Béla + AlbumBartók-Boulez:Divertimento, Dance Suite, Hungarian Sketches, Two Pictures + GenreClassical + KindAAC audio file + Size12620798 + Total Time522006 + Track Number7 + Track Count16 + Year1995 + Date Modified2006-08-13T06:31:56Z + Date Added2009-10-03T14:58:46Z + Bit Rate192 + Sample Rate44100 + Skip Count2 + Skip Date2014-01-05T09:43:42Z + Normalization1259 + Compilation + Artwork Count1 + Persistent ID76D9633F25254D3E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Barto%CC%81k-Boulez_Divertimento,%20Dance%20Suite,%20Hungarian%20Sketches,%20Two%20Pictures/07%20Bartok_2%20Images%20(Orch)_1_%20In%20Full%20Flower.m4a + File Folder Count4 + Library Folder Count1 + + 5776 + + Track ID5776 + NameBartok:2 Images (Orch)/2: Village Dance + ArtistPierre Boulez; Chicago Symphony Orchestra + ComposerBartók, Béla + AlbumBartók-Boulez:Divertimento, Dance Suite, Hungarian Sketches, Two Pictures + GenreClassical + KindAAC audio file + Size14196162 + Total Time593012 + Track Number8 + Track Count16 + Year1995 + Date Modified2006-08-13T06:31:50Z + Date Added2009-10-03T14:58:46Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Compilation + Artwork Count1 + Persistent ID6FCF4C5392E7806D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Barto%CC%81k-Boulez_Divertimento,%20Dance%20Suite,%20Hungarian%20Sketches,%20Two%20Pictures/08%20Bartok_2%20Images%20(Orch)_2_%20Village%20Dance.m4a + File Folder Count4 + Library Folder Count1 + + 5778 + + Track ID5778 + NameBartok:Hungarian Sketches: I.An Evening With The Szekely + ArtistPierre Boulez; Chicago Symphony Orchestra + ComposerBartók, Béla + AlbumBartók-Boulez:Divertimento, Dance Suite, Hungarian Sketches, Two Pictures + GenreClassical + KindAAC audio file + Size4070569 + Total Time168018 + Track Number9 + Track Count16 + Year1995 + Date Modified2006-08-13T06:31:44Z + Date Added2009-10-03T14:58:46Z + Bit Rate192 + Sample Rate44100 + Normalization97 + Compilation + Artwork Count1 + Persistent IDB5754D3A8CB00053 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Barto%CC%81k-Boulez_Divertimento,%20Dance%20Suite,%20Hungarian%20Sketches,%20Two%20Pictures/09%20Bartok_Hungarian%20Sketches_%20I.An%20Evening%20With%20The%20Szekely.m4a + File Folder Count4 + Library Folder Count1 + + 5780 + + Track ID5780 + NameIi.(2:49) Bear Dance + ArtistPierre Boulez; Chicago Symphony Orchestra + ComposerBartók, Béla + AlbumBartók-Boulez:Divertimento, Dance Suite, Hungarian Sketches, Two Pictures + GenreClassical + KindAAC audio file + Size2190281 + Total Time89000 + Track Number10 + Track Count16 + Year1995 + Date Modified2006-08-13T06:31:42Z + Date Added2009-10-03T14:58:46Z + Bit Rate192 + Sample Rate44100 + Normalization610 + Compilation + Artwork Count1 + Persistent ID5719213EE1358C37 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Barto%CC%81k-Boulez_Divertimento,%20Dance%20Suite,%20Hungarian%20Sketches,%20Two%20Pictures/10%20Ii.(2_49)%20Bear%20Dance.m4a + File Folder Count4 + Library Folder Count1 + + 5782 + + Track ID5782 + NameIII.(4:19)Melody + ArtistPierre Boulez; Chicago Symphony Orchestra + ComposerBartók, Béla + AlbumBartók-Boulez:Divertimento, Dance Suite, Hungarian Sketches, Two Pictures + GenreClassical + KindAAC audio file + Size3439615 + Total Time141013 + Track Number11 + Track Count16 + Year1995 + Date Modified2006-08-13T06:31:40Z + Date Added2009-10-03T14:58:46Z + Bit Rate192 + Sample Rate44100 + Normalization413 + Compilation + Artwork Count1 + Persistent ID60F619E09E36437E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Barto%CC%81k-Boulez_Divertimento,%20Dance%20Suite,%20Hungarian%20Sketches,%20Two%20Pictures/11%20III.(4_19)Melody.m4a + File Folder Count4 + Library Folder Count1 + + 5784 + + Track ID5784 + NameIV.(6:40)Slightly Tipsy + ArtistPierre Boulez; Chicago Symphony Orchestra + ComposerBartók, Béla + AlbumBartók-Boulez:Divertimento, Dance Suite, Hungarian Sketches, Two Pictures + GenreClassical + KindAAC audio file + Size3195216 + Total Time130842 + Track Number12 + Track Count16 + Year1995 + Date Modified2006-08-13T06:31:40Z + Date Added2009-10-03T14:58:46Z + Bit Rate192 + Sample Rate44100 + Normalization323 + Compilation + Artwork Count1 + Persistent ID11B4D01BE8553B75 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Barto%CC%81k-Boulez_Divertimento,%20Dance%20Suite,%20Hungarian%20Sketches,%20Two%20Pictures/12%20IV.(6_40)Slightly%20Tipsy.m4a + File Folder Count4 + Library Folder Count1 + + 5786 + + Track ID5786 + NameV.(8:50)Swineherd's Dance + ArtistPierre Boulez; Chicago Symphony Orchestra + ComposerBartók, Béla + AlbumBartók-Boulez:Divertimento, Dance Suite, Hungarian Sketches, Two Pictures + GenreClassical + KindAAC audio file + Size3061067 + Total Time129171 + Track Number13 + Track Count16 + Year1995 + Date Modified2006-08-13T06:31:38Z + Date Added2009-10-03T14:58:46Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Compilation + Artwork Count1 + Persistent IDF5FE0A08DCFEFF10 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Barto%CC%81k-Boulez_Divertimento,%20Dance%20Suite,%20Hungarian%20Sketches,%20Two%20Pictures/13%20V.(8_50)Swineherd's%20Dance.m4a + File Folder Count4 + Library Folder Count1 + + 5788 + + Track ID5788 + NameBartok:Divermento/1: Allegro Non Troppo + ArtistPierre Boulez; Chicago Symphony Orchestra + ComposerBartók, Béla + AlbumBartók-Boulez:Divertimento, Dance Suite, Hungarian Sketches, Two Pictures + GenreClassical + KindAAC audio file + Size13111097 + Total Time542021 + Track Number14 + Track Count16 + Year1995 + Date Modified2006-08-13T06:31:36Z + Date Added2009-10-03T14:58:46Z + Bit Rate192 + Sample Rate44100 + Normalization949 + Compilation + Artwork Count1 + Persistent ID1DE9130D3C45FF6E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Barto%CC%81k-Boulez_Divertimento,%20Dance%20Suite,%20Hungarian%20Sketches,%20Two%20Pictures/14%20Bartok_Divermento_1_%20Allegro%20Non%20Troppo.m4a + File Folder Count4 + Library Folder Count1 + + 5790 + + Track ID5790 + NameBartok:Divermento/2: Molto Adagio + ArtistPierre Boulez; Chicago Symphony Orchestra + ComposerBartók, Béla + AlbumBartók-Boulez:Divertimento, Dance Suite, Hungarian Sketches, Two Pictures + GenreClassical + KindAAC audio file + Size13927843 + Total Time575017 + Track Number15 + Track Count16 + Year1995 + Date Modified2006-08-13T06:31:30Z + Date Added2009-10-03T14:58:47Z + Bit Rate192 + Sample Rate44100 + Normalization306 + Compilation + Artwork Count1 + Persistent IDCC5877FD20852D51 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Barto%CC%81k-Boulez_Divertimento,%20Dance%20Suite,%20Hungarian%20Sketches,%20Two%20Pictures/15%20Bartok_Divermento_2_%20Molto%20Adagio.m4a + File Folder Count4 + Library Folder Count1 + + 5792 + + Track ID5792 + NameBartok:Divermento/3: Allegro Assai + ArtistPierre Boulez; Chicago Symphony Orchestra + ComposerBartók, Béla + AlbumBartók-Boulez:Divertimento, Dance Suite, Hungarian Sketches, Two Pictures + GenreClassical + KindAAC audio file + Size11008494 + Total Time455016 + Track Number16 + Track Count16 + Year1995 + Date Modified2006-08-13T06:31:24Z + Date Added2009-10-03T14:58:47Z + Bit Rate192 + Sample Rate44100 + Normalization786 + Compilation + Artwork Count1 + Persistent ID5CEC27830222603D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Barto%CC%81k-Boulez_Divertimento,%20Dance%20Suite,%20Hungarian%20Sketches,%20Two%20Pictures/16%20Bartok_Divermento_3_%20Allegro%20Assai.m4a + File Folder Count4 + Library Folder Count1 + + 5794 + + Track ID5794 + NameAdagio for Strings + ArtistEugene Ormandy; Philadelphia Orchestra + ComposerBarber, Samuel + AlbumBarber Copland + GenreClassical + KindAAC audio file + Size9247058 + Total Time388630 + Track Number1 + Track Count7 + Date Modified2006-08-13T06:31:18Z + Date Added2009-10-03T14:58:47Z + Bit Rate192 + Sample Rate44100 + Normalization349 + Compilation + Artwork Count1 + Persistent IDF3CF6117A6780873 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Barber%20Copland/01%20Adagio%20for%20Strings.m4a + File Folder Count4 + Library Folder Count1 + + 5796 + + Track ID5796 + NameEl Salon Mexico + ArtistNeville Marriner; Minnesota Orchestra + ComposerCopland, Aaron + AlbumBarber Copland + GenreClassical + KindAAC audio file + Size15993044 + Total Time667014 + Track Number2 + Track Count7 + Date Modified2006-08-13T06:31:14Z + Date Added2009-10-03T14:58:47Z + Bit Rate192 + Sample Rate44100 + Normalization1246 + Compilation + Artwork Count1 + Persistent IDFB85C04B64905A4E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Barber%20Copland/02%20El%20Salon%20Mexico.m4a + File Folder Count4 + Library Folder Count1 + + 5798 + + Track ID5798 + NameFour Dance Episodes from Rodeo: Buckaroo Holiday + ArtistNeville Marriner; Minnesota Orchestra + ComposerCopland, Aaron + AlbumBarber Copland + GenreClassical + KindAAC audio file + Size12001578 + Total Time498554 + Track Number3 + Track Count7 + Date Modified2006-08-13T06:31:08Z + Date Added2009-10-03T14:58:47Z + Bit Rate192 + Sample Rate44100 + Normalization1226 + Compilation + Artwork Count1 + Persistent IDCC0D3238675033E6 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Barber%20Copland/03%20Four%20Dance%20Episodes%20from%20Rodeo_%20Buckaroo%20Holiday.m4a + File Folder Count4 + Library Folder Count1 + + 5800 + + Track ID5800 + NameFour Dance Episodes from Rodeo: Corral Nocture + ArtistNeville Marriner; Minnesota Orchestra + ComposerCopland, Aaron + AlbumBarber Copland + GenreClassical + KindAAC audio file + Size5856180 + Total Time243552 + Track Number4 + Track Count7 + Date Modified2006-08-13T06:31:02Z + Date Added2009-10-03T14:58:47Z + Bit Rate192 + Sample Rate44100 + Normalization145 + Compilation + Artwork Count1 + Persistent IDFA186CF43D29D3EC + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Barber%20Copland/04%20Four%20Dance%20Episodes%20from%20Rodeo_%20Corral%20Nocture.m4a + File Folder Count4 + Library Folder Count1 + + 5802 + + Track ID5802 + NameFour Dance Episodes from Rodeo: Saturday night waltz + ArtistNeville Marriner; Minnesota Orchestra + ComposerCopland, Aaron + AlbumBarber Copland + GenreClassical + KindAAC audio file + Size7993975 + Total Time332995 + Track Number5 + Track Count7 + Date Modified2006-08-13T06:31:00Z + Date Added2009-10-03T14:58:47Z + Bit Rate192 + Sample Rate44100 + Normalization193 + Compilation + Artwork Count1 + Persistent ID2B49731DE9AE2157 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Barber%20Copland/05%20Four%20Dance%20Episodes%20from%20Rodeo_%20Saturday%20night%20waltz.m4a + File Folder Count4 + Library Folder Count1 + + 5804 + + Track ID5804 + NameFour Dance Episodes from Rodeo: Hoe-down + ArtistNeville Marriner; Minnesota Orchestra + ComposerCopland, Aaron + AlbumBarber Copland + GenreClassical + KindAAC audio file + Size5400441 + Total Time229899 + Track Number6 + Track Count7 + Date Modified2006-08-13T06:30:56Z + Date Added2009-10-03T14:58:47Z + Bit Rate192 + Sample Rate44100 + Normalization1071 + Compilation + Artwork Count1 + Persistent ID2ED3A5681E9FAB70 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Barber%20Copland/06%20Four%20Dance%20Episodes%20from%20Rodeo_%20Hoe-down.m4a + File Folder Count4 + Library Folder Count1 + + 5806 + + Track ID5806 + NameAppalachian Spring + ArtistNeville Marriner; Minnesota Orchestra + ComposerCopland, Aaron + AlbumBarber Copland + GenreClassical + KindAAC audio file + Size34444044 + Total Time1423219 + Track Number7 + Track Count7 + Date Modified2006-08-13T06:30:54Z + Date Added2009-10-03T14:58:47Z + Bit Rate192 + Sample Rate44100 + Normalization881 + Compilation + Artwork Count1 + Persistent ID354BBDF8B5607F55 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Barber%20Copland/07%20Appalachian%20Spring.m4a + File Folder Count4 + Library Folder Count1 + + 5808 + + Track ID5808 + NameConcerto No. 1 BWV 1046 in F Major, I. Allegro + ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra + ComposerJohann Sebastian Bach (1685-1750) + AlbumBach: The Brandenburg Concertos and Suites (Karajan) + GenreClassical + KindAAC audio file + Size6444412 + Total Time266935 + Disc Number1 + Disc Count2 + Track Number1 + Track Count17 + Year1965 + Date Modified2006-08-08T03:31:36Z + Date Added2009-10-03T14:58:48Z + Bit Rate192 + Sample Rate44100 + Normalization1162 + Compilation + Artwork Count1 + Persistent ID4EF2DD4AFAD42D86 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Bach_%20The%20Brandenburg%20Concertos%20and%20Suites%20(Karajan)/1-01%20Concerto%20No.%201%20BWV%201046%20in%20F%20Major,%20I.%20Allegro.m4a + File Folder Count4 + Library Folder Count1 + + 5810 + + Track ID5810 + NameConcerto No. 1 BWV 1046 in F Major, II. Adagio + ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra + ComposerJohann Sebastian Bach (1685-1750) + AlbumBach: The Brandenburg Concertos and Suites (Karajan) + GenreClassical + KindAAC audio file + Size7467014 + Total Time307407 + Disc Number1 + Disc Count2 + Track Number2 + Track Count17 + Year1965 + Date Modified2006-08-08T03:31:36Z + Date Added2009-10-03T14:58:48Z + Bit Rate192 + Sample Rate44100 + Normalization442 + Compilation + Artwork Count1 + Persistent ID759CC57A21B5B995 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Bach_%20The%20Brandenburg%20Concertos%20and%20Suites%20(Karajan)/1-02%20Concerto%20No.%201%20BWV%201046%20in%20F%20Major,%20II.%20Adagio.m4a + File Folder Count4 + Library Folder Count1 + + 5812 + + Track ID5812 + NameConcerto No. 1 BWV 1046 in F Major, III. Allegro + ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra + ComposerJohann Sebastian Bach (1685-1750) + AlbumBach: The Brandenburg Concertos and Suites (Karajan) + GenreClassical + KindAAC audio file + Size7271092 + Total Time299303 + Disc Number1 + Disc Count2 + Track Number3 + Track Count17 + Year1965 + Date Modified2006-08-08T03:31:36Z + Date Added2009-10-03T14:58:48Z + Bit Rate192 + Sample Rate44100 + Normalization1200 + Compilation + Artwork Count1 + Persistent ID5E140F4CF10593B9 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Bach_%20The%20Brandenburg%20Concertos%20and%20Suites%20(Karajan)/1-03%20Concerto%20No.%201%20BWV%201046%20in%20F%20Major,%20III.%20Allegro.m4a + File Folder Count4 + Library Folder Count1 + + 5814 + + Track ID5814 + NameConcerto No. 1 BWV 1046 in F Major, I. Menuetto - Trio I - Polacca - Trio II + ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra + ComposerJohann Sebastian Bach (1685-1750) + AlbumBach: The Brandenburg Concertos and Suites (Karajan) + GenreClassical + KindAAC audio file + Size17530714 + Total Time731380 + Disc Number1 + Disc Count2 + Track Number4 + Track Count17 + Year1965 + Date Modified2006-08-08T03:31:36Z + Date Added2009-10-03T14:58:48Z + Bit Rate192 + Sample Rate44100 + Normalization1202 + Compilation + Artwork Count1 + Persistent ID0B993B4694266329 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Bach_%20The%20Brandenburg%20Concertos%20and%20Suites%20(Karajan)/1-04%20Concerto%20No.%201%20BWV%201046%20in%20F%20Major,%20I.%20Menuetto%20-%20Trio%20I%20-%20Polacca%20-%20Trio%20II.m4a + File Folder Count4 + Library Folder Count1 + + 5816 + + Track ID5816 + NameConcerto No. 3 BWV 1048 in G Major, II. Allegro + ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra + ComposerJohann Sebastian Bach (1685-1750) + AlbumBach: The Brandenburg Concertos and Suites (Karajan) + GenreClassical + KindAAC audio file + Size9926020 + Total Time409018 + Disc Number1 + Disc Count2 + Track Number5 + Track Count17 + Year1965 + Date Modified2006-08-08T03:31:34Z + Date Added2009-10-03T14:58:48Z + Bit Rate192 + Sample Rate44100 + Normalization1006 + Compilation + Artwork Count1 + Persistent ID0C3CFB4D588EA45A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Bach_%20The%20Brandenburg%20Concertos%20and%20Suites%20(Karajan)/1-05%20Concerto%20No.%203%20BWV%201048%20in%20G%20Major,%20II.%20Allegro.m4a + File Folder Count4 + Library Folder Count1 + + 5818 + + Track ID5818 + NameConcerto No. 3 BWV 1048 in G Major, II. Adagio + ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra + ComposerJohann Sebastian Bach (1685-1750) + AlbumBach: The Brandenburg Concertos and Suites (Karajan) + GenreClassical + KindAAC audio file + Size567333 + Total Time21430 + Disc Number1 + Disc Count2 + Track Number6 + Track Count17 + Year1965 + Date Modified2006-08-08T03:31:34Z + Date Added2009-10-03T14:58:48Z + Bit Rate192 + Sample Rate44100 + Normalization11 + Compilation + Artwork Count1 + Persistent IDBEA19895540FF8EA + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Bach_%20The%20Brandenburg%20Concertos%20and%20Suites%20(Karajan)/1-06%20Concerto%20No.%203%20BWV%201048%20in%20G%20Major,%20II.%20Adagio.m4a + File Folder Count4 + Library Folder Count1 + + 5820 + + Track ID5820 + NameConcerto No. 3 BWV 1048 in G Major, IV. Allegro + ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra + ComposerJohann Sebastian Bach (1685-1750) + AlbumBach: The Brandenburg Concertos and Suites (Karajan) + GenreClassical + KindAAC audio file + Size8592489 + Total Time361951 + Disc Number1 + Disc Count2 + Track Number7 + Track Count17 + Year1965 + Date Modified2006-08-08T03:31:34Z + Date Added2009-10-03T14:58:49Z + Bit Rate192 + Sample Rate44100 + Normalization691 + Compilation + Artwork Count1 + Persistent ID118B53FB38082BE4 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Bach_%20The%20Brandenburg%20Concertos%20and%20Suites%20(Karajan)/1-07%20Concerto%20No.%203%20BWV%201048%20in%20G%20Major,%20IV.%20Allegro.m4a + File Folder Count4 + Library Folder Count1 + + 5822 + + Track ID5822 + NameConcerto No. 4 BWV 1049, I. Allegro + ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra + ComposerJohann Sebastian Bach (1685-1750) + AlbumBach: The Brandenburg Concertos and Suites (Karajan) + GenreClassical + KindAAC audio file + Size11826562 + Total Time487547 + Disc Number1 + Disc Count2 + Track Number8 + Track Count17 + Year1965 + Date Modified2006-08-08T03:31:34Z + Date Added2009-10-03T14:58:49Z + Bit Rate192 + Sample Rate44100 + Normalization872 + Compilation + Artwork Count1 + Persistent IDF039A1747C2042FF + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Bach_%20The%20Brandenburg%20Concertos%20and%20Suites%20(Karajan)/1-08%20Concerto%20No.%204%20BWV%201049,%20I.%20Allegro.m4a + File Folder Count4 + Library Folder Count1 + + 5824 + + Track ID5824 + NameConcerto No. 4 BWV 1049, II. Andante + ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra + ComposerJohann Sebastian Bach (1685-1750) + AlbumBach: The Brandenburg Concertos and Suites (Karajan) + GenreClassical + KindAAC audio file + Size5876134 + Total Time241509 + Disc Number1 + Disc Count2 + Track Number9 + Track Count17 + Year1965 + Date Modified2006-08-08T03:31:34Z + Date Added2009-10-03T14:58:49Z + Bit Rate192 + Sample Rate44100 + Normalization758 + Compilation + Artwork Count1 + Persistent IDCCDF9C1999826CE7 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Bach_%20The%20Brandenburg%20Concertos%20and%20Suites%20(Karajan)/1-09%20Concerto%20No.%204%20BWV%201049,%20II.%20Andante.m4a + File Folder Count4 + Library Folder Count1 + + 5826 + + Track ID5826 + NameConcerto No. 4 BWV 1049, III. Presto + ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra + ComposerJohann Sebastian Bach (1685-1750) + AlbumBach: The Brandenburg Concertos and Suites (Karajan) + GenreClassical + KindAAC audio file + Size6852403 + Total Time290015 + Disc Number1 + Disc Count2 + Track Number10 + Track Count17 + Year1965 + Date Modified2006-08-08T03:31:34Z + Date Added2009-10-03T14:58:49Z + Bit Rate192 + Sample Rate44100 + Normalization1202 + Compilation + Artwork Count1 + Persistent ID8D82516193717D10 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Bach_%20The%20Brandenburg%20Concertos%20and%20Suites%20(Karajan)/1-10%20Concerto%20No.%204%20BWV%201049,%20III.%20Presto.m4a + File Folder Count4 + Library Folder Count1 + + 5828 + + Track ID5828 + NameSuite No. 2 BWV 1067 in B Minor, I. Ouverture + ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra + ComposerJohann Sebastian Bach (1685-1750) + AlbumBach: The Brandenburg Concertos and Suites (Karajan) + GenreClassical + KindAAC audio file + Size12916535 + Total Time532617 + Disc Number1 + Disc Count2 + Track Number11 + Track Count17 + Year1965 + Date Modified2006-08-08T03:31:34Z + Date Added2009-10-03T14:58:49Z + Bit Rate192 + Sample Rate44100 + Normalization1441 + Compilation + Artwork Count1 + Persistent IDD9A4B85E26739401 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Bach_%20The%20Brandenburg%20Concertos%20and%20Suites%20(Karajan)/1-11%20Suite%20No.%202%20BWV%201067%20in%20B%20Minor,%20I.%20Ouverture.m4a + File Folder Count4 + Library Folder Count1 + + 5830 + + Track ID5830 + NameSuite No. 2 BWV 1067 in B Minor, II. Rondeau + ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra + ComposerJohann Sebastian Bach (1685-1750) + AlbumBach: The Brandenburg Concertos and Suites (Karajan) + GenreClassical + KindAAC audio file + Size2500678 + Total Time101934 + Disc Number1 + Disc Count2 + Track Number12 + Track Count17 + Year1965 + Date Modified2006-08-08T03:31:34Z + Date Added2009-10-03T14:58:49Z + Bit Rate192 + Sample Rate44100 + Normalization787 + Compilation + Artwork Count1 + Persistent IDAAF2C8285C248B0F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Bach_%20The%20Brandenburg%20Concertos%20and%20Suites%20(Karajan)/1-12%20Suite%20No.%202%20BWV%201067%20in%20B%20Minor,%20II.%20Rondeau.m4a + File Folder Count4 + Library Folder Count1 + + 5832 + + Track ID5832 + NameSuite No. 2 BWV 1067 in B Minor, III. Sarabande + ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra + ComposerJohann Sebastian Bach (1685-1750) + AlbumBach: The Brandenburg Concertos and Suites (Karajan) + GenreClassical + KindAAC audio file + Size4393131 + Total Time179767 + Disc Number1 + Disc Count2 + Track Number13 + Track Count17 + Year1965 + Date Modified2006-08-08T03:31:34Z + Date Added2009-10-03T14:58:49Z + Bit Rate192 + Sample Rate44100 + Normalization1256 + Compilation + Artwork Count1 + Persistent IDEF701D99BF772077 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Bach_%20The%20Brandenburg%20Concertos%20and%20Suites%20(Karajan)/1-13%20Suite%20No.%202%20BWV%201067%20in%20B%20Minor,%20III.%20Sarabande.m4a + File Folder Count4 + Library Folder Count1 + + 5834 + + Track ID5834 + NameSuite No. 2 BWV 1067 in B Minor, IV. Bourree I/II + ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra + ComposerJohann Sebastian Bach (1685-1750) + AlbumBach: The Brandenburg Concertos and Suites (Karajan) + GenreClassical + KindAAC audio file + Size3038497 + Total Time124318 + Disc Number1 + Disc Count2 + Track Number14 + Track Count17 + Year1965 + Date Modified2006-08-08T03:31:34Z + Date Added2009-10-03T14:58:50Z + Bit Rate192 + Sample Rate44100 + Normalization1258 + Compilation + Artwork Count1 + Persistent ID2782A17A88A2DEAC + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Bach_%20The%20Brandenburg%20Concertos%20and%20Suites%20(Karajan)/1-14%20Suite%20No.%202%20BWV%201067%20in%20B%20Minor,%20IV.%20Bourree%20I_II.m4a + File Folder Count4 + Library Folder Count1 + + 5836 + + Track ID5836 + NameSuite No. 2 BWV 1067 in B Minor, V. Polonaise - Double + ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra + ComposerJohann Sebastian Bach (1685-1750) + AlbumBach: The Brandenburg Concertos and Suites (Karajan) + GenreClassical + KindAAC audio file + Size4979933 + Total Time204218 + Disc Number1 + Disc Count2 + Track Number15 + Track Count17 + Year1965 + Date Modified2006-08-08T03:31:34Z + Date Added2009-10-03T14:58:50Z + Bit Rate192 + Sample Rate44100 + Normalization1231 + Compilation + Artwork Count1 + Persistent IDFF338886A12CD900 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Bach_%20The%20Brandenburg%20Concertos%20and%20Suites%20(Karajan)/1-15%20Suite%20No.%202%20BWV%201067%20in%20B%20Minor,%20V.%20Polonaise%20-%20Double.m4a + File Folder Count4 + Library Folder Count1 + + 5838 + + Track ID5838 + NameSuite No. 2 BWV 1067 in B Minor, VI. Menuet + ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra + ComposerJohann Sebastian Bach (1685-1750) + AlbumBach: The Brandenburg Concertos and Suites (Karajan) + GenreClassical + KindAAC audio file + Size2045038 + Total Time82963 + Disc Number1 + Disc Count2 + Track Number16 + Track Count17 + Year1965 + Date Modified2006-08-08T03:31:32Z + Date Added2009-10-03T14:58:50Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Compilation + Artwork Count1 + Persistent ID2B3163D55AFACA8B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Bach_%20The%20Brandenburg%20Concertos%20and%20Suites%20(Karajan)/1-16%20Suite%20No.%202%20BWV%201067%20in%20B%20Minor,%20VI.%20Menuet.m4a + File Folder Count4 + Library Folder Count1 + + 5840 + + Track ID5840 + NameSuite No. 2 BWV 1067 in B Minor, VII. Badinerie + ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra + ComposerJohann Sebastian Bach (1685-1750) + AlbumBach: The Brandenburg Concertos and Suites (Karajan) + GenreClassical + KindAAC audio file + Size2029838 + Total Time82847 + Disc Number1 + Disc Count2 + Track Number17 + Track Count17 + Year1965 + Date Modified2006-08-08T03:31:32Z + Date Added2009-10-03T14:58:50Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Compilation + Artwork Count1 + Persistent ID52335F8A05DD186E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Bach_%20The%20Brandenburg%20Concertos%20and%20Suites%20(Karajan)/1-17%20Suite%20No.%202%20BWV%201067%20in%20B%20Minor,%20VII.%20Badinerie.m4a + File Folder Count4 + Library Folder Count1 + + 5842 + + Track ID5842 + NameConcerto No. 2 In F Major BWV 1047, Allegro + ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra + ComposerBach, Johann Sebastian + AlbumBach: The Brandenburg Concertos - Suites Nos. 2 & 3 (Disc 2) + GenreClassical + KindAAC audio file + Size7922450 + Total Time327794 + Disc Number2 + Disc Count2 + Track Number1 + Track Count14 + Year1965 + Date Modified2006-08-08T03:40:10Z + Date Added2009-10-03T14:58:50Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3401033063 + Play Date UTC2011-10-09T13:54:23Z + Normalization755 + Compilation + Artwork Count1 + Persistent IDD765F744435B71BC + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Bach_%20The%20Brandenburg%20Concertos%20-%20Suites%20Nos.%202%20&%203%20(Disc%202)/2-01%20Concerto%20No.%202%20In%20F%20Major%20BWV%201047,%20Allegro.m4a + File Folder Count4 + Library Folder Count1 + + 5844 + + Track ID5844 + NameConcerto No. 2 In F Major BWV 1047, Andante + ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra + ComposerBach, Johann Sebastian + AlbumBach: The Brandenburg Concertos - Suites Nos. 2 & 3 (Disc 2) + GenreClassical + KindAAC audio file + Size6080337 + Total Time250007 + Disc Number2 + Disc Count2 + Track Number2 + Track Count14 + Year1965 + Date Modified2006-08-08T03:40:10Z + Date Added2009-10-03T14:58:50Z + Bit Rate192 + Sample Rate44100 + Normalization412 + Compilation + Artwork Count1 + Persistent ID6C9649D17BA8F456 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Bach_%20The%20Brandenburg%20Concertos%20-%20Suites%20Nos.%202%20&%203%20(Disc%202)/2-02%20Concerto%20No.%202%20In%20F%20Major%20BWV%201047,%20Andante.m4a + File Folder Count4 + Library Folder Count1 + + 5846 + + Track ID5846 + NameConcerto No. 2 In F Major BWV 1047, Allegro assai + ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra + ComposerBach, Johann Sebastian + AlbumBach: The Brandenburg Concertos - Suites Nos. 2 & 3 (Disc 2) + GenreClassical + KindAAC audio file + Size4134464 + Total Time176354 + Disc Number2 + Disc Count2 + Track Number3 + Track Count14 + Year1965 + Date Modified2006-08-08T03:40:10Z + Date Added2009-10-03T14:58:50Z + Bit Rate192 + Sample Rate44100 + Normalization898 + Compilation + Artwork Count1 + Persistent ID36FE8138B317B406 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Bach_%20The%20Brandenburg%20Concertos%20-%20Suites%20Nos.%202%20&%203%20(Disc%202)/2-03%20Concerto%20No.%202%20In%20F%20Major%20BWV%201047,%20Allegro%20assai.m4a + File Folder Count4 + Library Folder Count1 + + 5848 + + Track ID5848 + NameConcerto No. 5 In D Major BWV 1050, Allegro + ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra + ComposerBach, Johann Sebastian + AlbumBach: The Brandenburg Concertos - Suites Nos. 2 & 3 (Disc 2) + GenreClassical + KindAAC audio file + Size16084573 + Total Time663508 + Disc Number2 + Disc Count2 + Track Number4 + Track Count14 + Year1965 + Date Modified2006-08-08T03:40:10Z + Date Added2009-10-03T14:58:51Z + Bit Rate192 + Sample Rate44100 + Normalization587 + Compilation + Artwork Count1 + Persistent ID549062E4A545C941 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Bach_%20The%20Brandenburg%20Concertos%20-%20Suites%20Nos.%202%20&%203%20(Disc%202)/2-04%20Concerto%20No.%205%20In%20D%20Major%20BWV%201050,%20Allegro.m4a + File Folder Count4 + Library Folder Count1 + + 5850 + + Track ID5850 + NameConcerto No. 5 In D Major BWV 1050, Affettuoso + ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra + ComposerBach, Johann Sebastian + AlbumBach: The Brandenburg Concertos - Suites Nos. 2 & 3 (Disc 2) + GenreClassical + KindAAC audio file + Size8765581 + Total Time361068 + Disc Number2 + Disc Count2 + Track Number5 + Track Count14 + Year1965 + Date Modified2006-08-08T03:40:10Z + Date Added2009-10-03T14:58:51Z + Bit Rate192 + Sample Rate44100 + Normalization144 + Compilation + Artwork Count1 + Persistent ID0E9E21527C68111B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Bach_%20The%20Brandenburg%20Concertos%20-%20Suites%20Nos.%202%20&%203%20(Disc%202)/2-05%20Concerto%20No.%205%20In%20D%20Major%20BWV%201050,%20Affettuoso.m4a + File Folder Count4 + Library Folder Count1 + + 5852 + + Track ID5852 + NameConcerto No. 5 In D Major BWV 1050, Allegro + ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra + ComposerBach, Johann Sebastian + AlbumBach: The Brandenburg Concertos - Suites Nos. 2 & 3 (Disc 2) + GenreClassical + KindAAC audio file + Size8249036 + Total Time345441 + Disc Number2 + Disc Count2 + Track Number6 + Track Count14 + Year1965 + Date Modified2006-08-08T03:40:10Z + Date Added2009-10-03T14:58:51Z + Bit Rate192 + Sample Rate44100 + Normalization903 + Compilation + Artwork Count1 + Persistent IDC5D2F35FE321F093 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Bach_%20The%20Brandenburg%20Concertos%20-%20Suites%20Nos.%202%20&%203%20(Disc%202)/2-06%20Concerto%20No.%205%20In%20D%20Major%20BWV%201050,%20Allegro.m4a + File Folder Count4 + Library Folder Count1 + + 5854 + + Track ID5854 + NameConcerto No. 6 In B flat Major BWV 1051, Allegro + ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra + ComposerBach, Johann Sebastian + AlbumBach: The Brandenburg Concertos - Suites Nos. 2 & 3 (Disc 2) + GenreClassical + KindAAC audio file + Size10308711 + Total Time424830 + Disc Number2 + Disc Count2 + Track Number7 + Track Count14 + Year1965 + Date Modified2006-08-08T03:40:10Z + Date Added2009-10-03T14:58:51Z + Bit Rate192 + Sample Rate44100 + Normalization906 + Compilation + Artwork Count1 + Persistent IDB0DFD5ABF399A046 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Bach_%20The%20Brandenburg%20Concertos%20-%20Suites%20Nos.%202%20&%203%20(Disc%202)/2-07%20Concerto%20No.%206%20In%20B%20flat%20Major%20BWV%201051,%20Allegro.m4a + File Folder Count4 + Library Folder Count1 + + 5856 + + Track ID5856 + NameConcerto No. 6 In B flat Major BWV 1051, Adagio ma non tanto + ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra + ComposerBach, Johann Sebastian + AlbumBach: The Brandenburg Concertos - Suites Nos. 2 & 3 (Disc 2) + GenreClassical + KindAAC audio file + Size8623433 + Total Time355194 + Disc Number2 + Disc Count2 + Track Number8 + Track Count14 + Year1965 + Date Modified2006-08-08T03:40:08Z + Date Added2009-10-03T14:58:51Z + Bit Rate192 + Sample Rate44100 + Normalization433 + Compilation + Artwork Count1 + Persistent ID742805E21F4B2403 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Bach_%20The%20Brandenburg%20Concertos%20-%20Suites%20Nos.%202%20&%203%20(Disc%202)/2-08%20Concerto%20No.%206%20In%20B%20flat%20Major%20BWV%201051,%20Adagio%20ma%20non%20tanto.m4a + File Folder Count4 + Library Folder Count1 + + 5858 + + Track ID5858 + NameConcerto No. 6 In B flat Major BWV 1051, Allegro + ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra + ComposerBach, Johann Sebastian + AlbumBach: The Brandenburg Concertos - Suites Nos. 2 & 3 (Disc 2) + GenreClassical + KindAAC audio file + Size8333642 + Total Time349017 + Disc Number2 + Disc Count2 + Track Number9 + Track Count14 + Year1965 + Date Modified2006-08-08T03:40:08Z + Date Added2009-10-03T14:58:51Z + Bit Rate192 + Sample Rate44100 + Normalization1088 + Compilation + Artwork Count1 + Persistent ID74078A70327860FB + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Bach_%20The%20Brandenburg%20Concertos%20-%20Suites%20Nos.%202%20&%203%20(Disc%202)/2-09%20Concerto%20No.%206%20In%20B%20flat%20Major%20BWV%201051,%20Allegro.m4a + File Folder Count4 + Library Folder Count1 + + 5860 + + Track ID5860 + NameSuite No. 3 in D major BWV1068, Ouverture + ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra + ComposerBach, Johann Sebastian + AlbumBach: The Brandenburg Concertos - Suites Nos. 2 & 3 (Disc 2) + GenreClassical + KindAAC audio file + Size13507715 + Total Time557022 + Disc Number2 + Disc Count2 + Track Number10 + Track Count14 + Year1965 + Date Modified2006-08-08T03:40:08Z + Date Added2009-10-03T14:58:51Z + Bit Rate192 + Sample Rate44100 + Normalization1115 + Compilation + Artwork Count1 + Persistent ID154B49313CD39415 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Bach_%20The%20Brandenburg%20Concertos%20-%20Suites%20Nos.%202%20&%203%20(Disc%202)/2-10%20Suite%20No.%203%20in%20D%20major%20BWV1068,%20Ouverture.m4a + File Folder Count4 + Library Folder Count1 + + 5862 + + Track ID5862 + NameSuite No. 3 In D Major BWV 1068, Air + ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra + ComposerBach, Johann Sebastian + AlbumBach: The Brandenburg Concertos - Suites Nos. 2 & 3 (Disc 2) + GenreClassical + KindAAC audio file + Size9558567 + Total Time393832 + Disc Number2 + Disc Count2 + Track Number11 + Track Count14 + Year1965 + Date Modified2006-08-08T03:40:08Z + Date Added2009-10-03T14:58:51Z + Bit Rate192 + Sample Rate44100 + Normalization1223 + Compilation + Artwork Count1 + Persistent ID515CE9177FBAAA4A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Bach_%20The%20Brandenburg%20Concertos%20-%20Suites%20Nos.%202%20&%203%20(Disc%202)/2-11%20Suite%20No.%203%20In%20D%20Major%20BWV%201068,%20Air.m4a + File Folder Count4 + Library Folder Count1 + + 5864 + + Track ID5864 + NameSuite No. 3 In D Major BWV 1068, Gavotte I/II + ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra + ComposerBach, Johann Sebastian + AlbumBach: The Brandenburg Concertos - Suites Nos. 2 & 3 (Disc 2) + GenreClassical + KindAAC audio file + Size5530011 + Total Time227089 + Disc Number2 + Disc Count2 + Track Number12 + Track Count14 + Year1965 + Date Modified2006-08-08T03:40:08Z + Date Added2009-10-03T14:58:51Z + Bit Rate192 + Sample Rate44100 + Normalization1301 + Compilation + Artwork Count1 + Persistent ID0D320E456F72F015 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Bach_%20The%20Brandenburg%20Concertos%20-%20Suites%20Nos.%202%20&%203%20(Disc%202)/2-12%20Suite%20No.%203%20In%20D%20Major%20BWV%201068,%20Gavotte%20I_II.m4a + File Folder Count4 + Library Folder Count1 + + 5866 + + Track ID5866 + NameSuite No. 3 In D Major BWV 1068, Bourree + ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra + ComposerBach, Johann Sebastian + AlbumBach: The Brandenburg Concertos - Suites Nos. 2 & 3 (Disc 2) + GenreClassical + KindAAC audio file + Size1913656 + Total Time77483 + Disc Number2 + Disc Count2 + Track Number13 + Track Count14 + Year1965 + Date Modified2006-08-08T03:40:08Z + Date Added2009-10-03T14:58:51Z + Bit Rate192 + Sample Rate44100 + Normalization605 + Compilation + Artwork Count1 + Persistent IDF08923805E4F3F82 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Bach_%20The%20Brandenburg%20Concertos%20-%20Suites%20Nos.%202%20&%203%20(Disc%202)/2-13%20Suite%20No.%203%20In%20D%20Major%20BWV%201068,%20Bourree.m4a + File Folder Count4 + Library Folder Count1 + + 5868 + + Track ID5868 + NameSuite No. 3 In D Major BWV 1068, Gigue + ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra + ComposerBach, Johann Sebastian + AlbumBach: The Brandenburg Concertos - Suites Nos. 2 & 3 (Disc 2) + GenreClassical + KindAAC audio file + Size4427538 + Total Time181323 + Disc Number2 + Disc Count2 + Track Number14 + Track Count14 + Year1965 + Date Modified2006-08-08T03:40:08Z + Date Added2009-10-03T14:58:52Z + Bit Rate192 + Sample Rate44100 + Normalization1498 + Compilation + Artwork Count1 + Persistent ID892B0C03C196E870 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Bach_%20The%20Brandenburg%20Concertos%20-%20Suites%20Nos.%202%20&%203%20(Disc%202)/2-14%20Suite%20No.%203%20In%20D%20Major%20BWV%201068,%20Gigue.m4a + File Folder Count4 + Library Folder Count1 + + 5870 + + Track ID5870 + NameTum Itna Jo Muskura Rahe Ho + ArtistJagjit Singh + ComposerJagjit Singh + AlbumArth & Saath Saath + GenreWorld + KindAAC audio file + Size7709598 + Total Time317136 + Track Number1 + Track Count11 + Year1982 + Date Modified2006-07-30T01:44:36Z + Date Added2009-10-03T14:58:52Z + Bit Rate192 + Sample Rate44100 + Normalization924 + Compilation + Artwork Count1 + Persistent ID660B32CE04CA5F89 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Arth%20&%20Saath%20Saath/01%20Tum%20Itna%20Jo%20Muskura%20Rahe%20Ho.m4a + File Folder Count4 + Library Folder Count1 + + 5872 + + Track ID5872 + NameJhuki Jhuki Si Nazar + ArtistJagjit Singh + ComposerJagjit Singh + AlbumArth & Saath Saath + GenreWorld + KindAAC audio file + Size7349471 + Total Time302577 + Track Number2 + Track Count11 + Year1982 + Date Modified2006-07-30T01:44:36Z + Date Added2009-10-03T14:58:52Z + Bit Rate192 + Sample Rate44100 + Normalization619 + Compilation + Artwork Count1 + Persistent ID515370F2EF7C62D7 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Arth%20&%20Saath%20Saath/02%20Jhuki%20Jhuki%20Si%20Nazar.m4a + File Folder Count4 + Library Folder Count1 + + 5874 + + Track ID5874 + NameTere Khushboo Mein Base Khat + ArtistJagjit Singh + ComposerJagjit Singh + AlbumArth & Saath Saath + GenreWorld + KindAAC audio file + Size2112112 + Total Time85749 + Track Number3 + Track Count11 + Year1982 + Date Modified2006-07-30T01:44:36Z + Date Added2009-10-03T14:58:52Z + Bit Rate192 + Sample Rate44100 + Normalization478 + Compilation + Artwork Count1 + Persistent ID4291AF96B5098AE2 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Arth%20&%20Saath%20Saath/03%20Tere%20Khushboo%20Mein%20Base%20Khat.m4a + File Folder Count4 + Library Folder Count1 + + 5876 + + Track ID5876 + NameToo Nahin To Zindagi Mein Aur Kya Rah Jayega + ArtistChitra Singh + ComposerJagjit Singh + AlbumArth & Saath Saath + GenreWorld + KindAAC audio file + Size7878728 + Total Time324125 + Track Number4 + Track Count11 + Year1982 + Date Modified2006-07-30T01:44:36Z + Date Added2009-10-03T14:58:52Z + Bit Rate192 + Sample Rate44100 + Normalization932 + Compilation + Artwork Count1 + Persistent IDB538565BC1F6FDA7 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Arth%20&%20Saath%20Saath/04%20Too%20Nahin%20To%20Zindagi%20Mein%20Aur%20Kya%20Rah%20Jayega.m4a + File Folder Count4 + Library Folder Count1 + + 5878 + + Track ID5878 + NameKoi Yeh Kaise Bataye + ArtistJagjit Singh + ComposerJagjit Singh + AlbumArth & Saath Saath + GenreWorld + KindAAC audio file + Size4813644 + Total Time196973 + Track Number5 + Track Count11 + Year1982 + Date Modified2006-07-30T01:44:38Z + Date Added2009-10-03T14:58:52Z + Bit Rate192 + Sample Rate44100 + Normalization694 + Compilation + Artwork Count1 + Persistent IDA31FFBCF7A77C7E4 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Arth%20&%20Saath%20Saath/05%20Koi%20Yeh%20Kaise%20Bataye.m4a + File Folder Count4 + Library Folder Count1 + + 5880 + + Track ID5880 + NameTum Ko Dekha To Yeh Khayal Aaya + ArtistJagjit Singh & Chitra Singh + ComposerKuldeep Singh + AlbumArth & Saath Saath + GenreWorld + KindAAC audio file + Size7076166 + Total Time291525 + Track Number6 + Track Count11 + Year1981 + Date Modified2006-07-30T01:44:38Z + Date Added2009-10-03T14:58:52Z + Bit Rate192 + Sample Rate44100 + Normalization694 + Compilation + Artwork Count1 + Persistent ID8E644E1105C9BAEC + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Arth%20&%20Saath%20Saath/06%20Tum%20Ko%20Dekha%20To%20Yeh%20Khayal%20Aaya.m4a + File Folder Count4 + Library Folder Count1 + + 5882 + + Track ID5882 + NameYeh Bata De Mujhe Zindagi + ArtistJagjit Singh & Chitra Singh + ComposerKuldeep Singh + AlbumArth & Saath Saath + GenreWorld + KindAAC audio file + Size7265066 + Total Time299280 + Track Number7 + Track Count11 + Year1981 + Date Modified2006-07-30T01:44:38Z + Date Added2009-10-03T14:58:53Z + Bit Rate192 + Sample Rate44100 + Normalization1545 + Compilation + Artwork Count1 + Persistent ID2C48F740E26CF1BD + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Arth%20&%20Saath%20Saath/07%20Yeh%20Bata%20De%20Mujhe%20Zindagi.m4a + File Folder Count4 + Library Folder Count1 + + 5884 + + Track ID5884 + NameYun Zindagi Ki Raah Mein Majboor Ho Gaye + ArtistChitra Singh + ComposerKuldeep Singh + AlbumArth & Saath Saath + GenreWorld + KindAAC audio file + Size6988937 + Total Time287949 + Track Number8 + Track Count11 + Year1981 + Date Modified2006-07-30T01:44:36Z + Date Added2009-10-03T14:58:53Z + Bit Rate192 + Sample Rate44100 + Normalization1257 + Compilation + Artwork Count1 + Persistent IDCCE3B48A31D39AB3 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Arth%20&%20Saath%20Saath/08%20Yun%20Zindagi%20Ki%20Raah%20Mein%20Majboor%20Ho%20Gaye.m4a + File Folder Count4 + Library Folder Count1 + + 5886 + + Track ID5886 + NamePyar Mujhse Jo Kiya Tumne To Kya Paogi + ArtistJagjit Singh + ComposerKuldeep Singh + AlbumArth & Saath Saath + GenreWorld + KindAAC audio file + Size6568749 + Total Time270000 + Track Number9 + Track Count11 + Year1981 + Date Modified2006-07-30T01:44:38Z + Date Added2009-10-03T14:58:53Z + Bit Rate192 + Sample Rate44100 + Normalization976 + Compilation + Artwork Count1 + Persistent ID799210A9483DD9ED + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Arth%20&%20Saath%20Saath/09%20Pyar%20Mujhse%20Jo%20Kiya%20Tumne%20To%20Kya%20Paogi.m4a + File Folder Count4 + Library Folder Count1 + + 5888 + + Track ID5888 + NameYeh Tera Ghar Yeh Mera Ghar + ArtistJagjit Singh & Chitra Singh + ComposerKuldeep Singh + AlbumArth & Saath Saath + GenreWorld + KindAAC audio file + Size7626002 + Total Time314164 + Track Number10 + Track Count11 + Year1981 + Date Modified2006-07-30T01:44:38Z + Date Added2009-10-03T14:58:53Z + Bit Rate192 + Sample Rate44100 + Normalization1956 + Compilation + Artwork Count1 + Persistent IDACA8674B0B4C7263 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Arth%20&%20Saath%20Saath/10%20Yeh%20Tera%20Ghar%20Yeh%20Mera%20Ghar.m4a + File Folder Count4 + Library Folder Count1 + + 5890 + + Track ID5890 + NameTum Ko Pata Hai + ArtistAshok Khosla, Murlidhar, Pushpa & Chorus + ComposerKuldeep Singh + AlbumArth & Saath Saath + GenreWorld + KindAAC audio file + Size8163440 + Total Time337175 + Track Number11 + Track Count11 + Year1981 + Date Modified2006-07-30T01:44:18Z + Date Added2009-10-03T14:58:53Z + Bit Rate192 + Sample Rate44100 + Normalization2062 + Compilation + Persistent ID9F83D030A94A0513 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Arth%20&%20Saath%20Saath/11%20Tum%20Ko%20Pata%20Hai.m4a + File Folder Count4 + Library Folder Count1 + + 5892 + + Track ID5892 + NameMere Sapnon Ki Rani (Aradhana) + ArtistKishore Kumar + AlbumAradhana - Kati Patang - Amar Prem + GenreWorld + KindAAC audio file + Size7231172 + Total Time297724 + Track Number1 + Track Count15 + Date Modified2006-07-30T03:51:42Z + Date Added2009-10-03T14:58:53Z + Bit Rate192 + Sample Rate44100 + Normalization2375 + Compilation + Artwork Count1 + Persistent ID149EBDA0505231C0 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Aradhana%20-%20Kati%20Patang%20-%20Amar%20Prem/01%20Mere%20Sapnon%20Ki%20Rani%20(Aradhana).m4a + File Folder Count4 + Library Folder Count1 + + 5894 + + Track ID5894 + NameKora Kagaz Tha Yeh Man Mera (Aradhana) + ArtistLata Mangeshkar & Kishore Kumar + AlbumAradhana - Kati Patang - Amar Prem + GenreWorld + KindAAC audio file + Size8298419 + Total Time341215 + Track Number2 + Track Count15 + Date Modified2006-07-30T03:51:44Z + Date Added2009-10-03T14:58:53Z + Bit Rate192 + Sample Rate44100 + Normalization2227 + Compilation + Artwork Count1 + Persistent ID3B4530F5ABCA63E9 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Aradhana%20-%20Kati%20Patang%20-%20Amar%20Prem/02%20Kora%20Kagaz%20Tha%20Yeh%20Man%20Mera%20(Aradhana).m4a + File Folder Count4 + Library Folder Count1 + + 5896 + + Track ID5896 + NameRoop Tera Mastana (Aradhana) + ArtistKishore Kumar + AlbumAradhana - Kati Patang - Amar Prem + GenreWorld + KindAAC audio file + Size5468378 + Total Time223978 + Track Number3 + Track Count15 + Date Modified2006-07-30T03:51:42Z + Date Added2009-10-03T14:58:53Z + Bit Rate192 + Sample Rate44100 + Normalization1214 + Compilation + Artwork Count1 + Persistent IDDDDFBD64928DA520 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Aradhana%20-%20Kati%20Patang%20-%20Amar%20Prem/03%20Roop%20Tera%20Mastana%20(Aradhana).m4a + File Folder Count4 + Library Folder Count1 + + 5898 + + Track ID5898 + NameBaghon Mein Bahar Hai (Aradhana) + ArtistLata Mangeshkar & Mohd. Rafi + AlbumAradhana - Kati Patang - Amar Prem + GenreWorld + KindAAC audio file + Size5674035 + Total Time232546 + Track Number4 + Track Count15 + Date Modified2006-07-30T03:51:44Z + Date Added2009-10-03T14:58:54Z + Bit Rate192 + Sample Rate44100 + Normalization1500 + Compilation + Artwork Count1 + Persistent ID4FBC3BB32999D401 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Aradhana%20-%20Kati%20Patang%20-%20Amar%20Prem/04%20Baghon%20Mein%20Bahar%20Hai%20(Aradhana).m4a + File Folder Count4 + Library Folder Count1 + + 5900 + + Track ID5900 + NameGunguna Rahe Hain Bhanvre (Aradhana) + ArtistAsha Bhosle & Mohd. Rafi + AlbumAradhana - Kati Patang - Amar Prem + GenreWorld + KindAAC audio file + Size5825813 + Total Time238862 + Track Number5 + Track Count15 + Date Modified2006-07-30T03:51:42Z + Date Added2009-10-03T14:58:54Z + Bit Rate192 + Sample Rate44100 + Normalization1613 + Compilation + Artwork Count1 + Persistent ID9C72F4C44779C9B7 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Aradhana%20-%20Kati%20Patang%20-%20Amar%20Prem/05%20Gunguna%20Rahe%20Hain%20Bhanvre%20(Aradhana).m4a + File Folder Count4 + Library Folder Count1 + + 5902 + + Track ID5902 + NameChanda Hai Tu Mera Suraj Hai Tu (Aradhana) + ArtistLata Mangeshkar + AlbumAradhana - Kati Patang - Amar Prem + GenreWorld + KindAAC audio file + Size6526235 + Total Time267980 + Track Number6 + Track Count15 + Date Modified2006-07-30T03:51:44Z + Date Added2009-10-03T14:58:54Z + Bit Rate192 + Sample Rate44100 + Normalization2588 + Compilation + Artwork Count1 + Persistent ID83CE1980023A6471 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Aradhana%20-%20Kati%20Patang%20-%20Amar%20Prem/06%20Chanda%20Hai%20Tu%20Mera%20Suraj%20Hai%20Tu%20(Aradhana).m4a + File Folder Count4 + Library Folder Count1 + + 5904 + + Track ID5904 + NameNa Koi Umang Hai (Kati Patang) + ArtistLata Mangeshkar + AlbumAradhana - Kati Patang - Amar Prem + GenreWorld + KindAAC audio file + Size6346819 + Total Time260549 + Track Number7 + Track Count15 + Date Modified2006-07-30T03:51:44Z + Date Added2009-10-03T14:58:54Z + Bit Rate192 + Sample Rate44100 + Normalization1834 + Compilation + Artwork Count1 + Persistent IDE59F907AF818E863 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Aradhana%20-%20Kati%20Patang%20-%20Amar%20Prem/07%20Na%20Koi%20Umang%20Hai%20(Kati%20Patang).m4a + File Folder Count4 + Library Folder Count1 + + 5906 + + Track ID5906 + NameJis Gali Mein Tera Ghar (Kati Patang) + ArtistMukesh + AlbumAradhana - Kati Patang - Amar Prem + GenreWorld + KindAAC audio file + Size5989732 + Total Time245688 + Track Number8 + Track Count15 + Date Modified2006-07-30T03:51:44Z + Date Added2009-10-03T14:58:54Z + Bit Rate192 + Sample Rate44100 + Normalization1234 + Compilation + Artwork Count1 + Persistent ID2DE93FC0822B102C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Aradhana%20-%20Kati%20Patang%20-%20Amar%20Prem/08%20Jis%20Gali%20Mein%20Tera%20Ghar%20(Kati%20Patang).m4a + File Folder Count4 + Library Folder Count1 + + 5908 + + Track ID5908 + NameYeh Sham Mastani (Kati Patang) + ArtistKishore Kumar + AlbumAradhana - Kati Patang - Amar Prem + GenreWorld + KindAAC audio file + Size6856013 + Total Time281610 + Track Number9 + Track Count15 + Date Modified2006-07-30T03:51:42Z + Date Added2009-10-03T14:58:54Z + Bit Rate192 + Sample Rate44100 + Normalization2567 + Compilation + Artwork Count1 + Persistent ID06DF4BAB9450BB69 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Aradhana%20-%20Kati%20Patang%20-%20Amar%20Prem/09%20Yeh%20Sham%20Mastani%20(Kati%20Patang).m4a + File Folder Count4 + Library Folder Count1 + + 5910 + + Track ID5910 + NameYeh Jo Mohabbat Hai (Kati Patang) + ArtistKishore Kumar + AlbumAradhana - Kati Patang - Amar Prem + GenreWorld + KindAAC audio file + Size5988243 + Total Time245642 + Track Number10 + Track Count15 + Date Modified2006-07-30T03:51:42Z + Date Added2009-10-03T14:58:54Z + Bit Rate192 + Sample Rate44100 + Normalization2423 + Compilation + Artwork Count1 + Persistent IDD4C71EA1D371002C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Aradhana%20-%20Kati%20Patang%20-%20Amar%20Prem/10%20Yeh%20Jo%20Mohabbat%20Hai%20(Kati%20Patang).m4a + File Folder Count4 + Library Folder Count1 + + 5912 + + Track ID5912 + NamePyar Diwana Hota Hai (Kati Patang) + ArtistKishore Kumar + AlbumAradhana - Kati Patang - Amar Prem + GenreWorld + KindAAC audio file + Size6979014 + Total Time286695 + Track Number11 + Track Count15 + Date Modified2006-07-30T03:51:42Z + Date Added2009-10-03T14:58:54Z + Bit Rate192 + Sample Rate44100 + Normalization1561 + Compilation + Artwork Count1 + Persistent ID694627EBD4AA354A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Aradhana%20-%20Kati%20Patang%20-%20Amar%20Prem/11%20Pyar%20Diwana%20Hota%20Hai%20(Kati%20Patang).m4a + File Folder Count4 + Library Folder Count1 + + 5914 + + Track ID5914 + NameKuchh To Log Kahenge (Amar Prem) + ArtistKishore Kumar + AlbumAradhana - Kati Patang - Amar Prem + GenreWorld + KindAAC audio file + Size6341377 + Total Time260340 + Track Number12 + Track Count15 + Date Modified2006-07-30T03:51:42Z + Date Added2009-10-03T14:58:54Z + Bit Rate192 + Sample Rate44100 + Normalization1637 + Compilation + Artwork Count1 + Persistent ID460491F5B46FBC77 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Aradhana%20-%20Kati%20Patang%20-%20Amar%20Prem/12%20Kuchh%20To%20Log%20Kahenge%20(Amar%20Prem).m4a + File Folder Count4 + Library Folder Count1 + + 5916 + + Track ID5916 + NameChingari Koi Bhadke (Amar Prem) + ArtistKishore Kumar + AlbumAradhana - Kati Patang - Amar Prem + GenreWorld + KindAAC audio file + Size8188835 + Total Time336687 + Track Number13 + Track Count15 + Date Modified2006-07-30T03:51:44Z + Date Added2009-10-03T14:58:55Z + Bit Rate192 + Sample Rate44100 + Normalization1640 + Compilation + Artwork Count1 + Persistent ID8D9E93E665EBB05A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Aradhana%20-%20Kati%20Patang%20-%20Amar%20Prem/13%20Chingari%20Koi%20Bhadke%20(Amar%20Prem).m4a + File Folder Count4 + Library Folder Count1 + + 5918 + + Track ID5918 + NameYeh Kya Hua (Amar Prem) + ArtistKishore Kumar + AlbumAradhana - Kati Patang - Amar Prem + GenreWorld + KindAAC audio file + Size6673914 + Total Time274086 + Track Number14 + Track Count15 + Date Modified2006-07-30T03:51:44Z + Date Added2009-10-03T14:58:55Z + Bit Rate192 + Sample Rate44100 + Normalization1377 + Compilation + Artwork Count1 + Persistent ID288B494B15E6330B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Aradhana%20-%20Kati%20Patang%20-%20Amar%20Prem/14%20Yeh%20Kya%20Hua%20(Amar%20Prem).m4a + File Folder Count4 + Library Folder Count1 + + 5920 + + Track ID5920 + NameRaina Beeti Jaye (Amar Prem) + ArtistLata Mangeshkar + AlbumAradhana - Kati Patang - Amar Prem + GenreWorld + KindAAC audio file + Size8130282 + Total Time335619 + Track Number15 + Track Count15 + Date Modified2006-07-30T03:51:44Z + Date Added2009-10-03T14:58:55Z + Bit Rate192 + Sample Rate44100 + Normalization1814 + Compilation + Artwork Count1 + Persistent IDDE9F0F0B20F40A90 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Aradhana%20-%20Kati%20Patang%20-%20Amar%20Prem/15%20Raina%20Beeti%20Jaye%20(Amar%20Prem).m4a + File Folder Count4 + Library Folder Count1 + + 5922 + + Track ID5922 + NameMahler: Symphony #5 - Adagietto + ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra + ComposerGustav Mahler + AlbumAdagio + GenreClassical + KindAAC audio file + Size17243375 + Total Time717007 + Disc Number1 + Disc Count1 + Track Number1 + Track Count11 + Year1995 + Date Modified2006-08-07T08:39:36Z + Date Added2009-10-03T14:58:55Z + Bit Rate192 + Sample Rate44100 + Normalization1226 + Compilation + Artwork Count1 + Persistent ID2CE56FFDE627B467 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Adagio/01%20Mahler_%20Symphony%20%235%20-%20Adagietto.m4a + File Folder Count4 + Library Folder Count1 + + 5924 + + Track ID5924 + NamePachelbel: Canon & Gigue In D + ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra + ComposerJohann Pachelbel + AlbumAdagio + GenreClassical + KindAAC audio file + Size7397514 + Total Time310008 + Disc Number1 + Disc Count1 + Track Number2 + Track Count11 + Year1995 + Date Modified2006-08-07T08:39:36Z + Date Added2009-10-03T14:58:55Z + Bit Rate192 + Sample Rate44100 + Normalization683 + Compilation + Artwork Count1 + Persistent ID8BED50329424B665 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Adagio/02%20Pachelbel_%20Canon%20&%20Gigue%20In%20D.m4a + File Folder Count4 + Library Folder Count1 + + 5926 + + Track ID5926 + NameMassenet: Thais - Méditation + ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra + ComposerJules Massenet + AlbumAdagio + GenreClassical + KindAAC audio file + Size8715898 + Total Time365016 + Disc Number1 + Disc Count1 + Track Number3 + Track Count11 + Year1995 + Date Modified2006-08-07T08:39:36Z + Date Added2009-10-03T14:58:55Z + Bit Rate192 + Sample Rate44100 + Normalization631 + Compilation + Artwork Count1 + Persistent IDC56207FD440ECAAB + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Adagio/03%20Massenet_%20Thais%20-%20Me%CC%81ditation.m4a + File Folder Count4 + Library Folder Count1 + + 5928 + + Track ID5928 + NameBrahms: Symphony #3 In F, Op. 90 - Andante + ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra + ComposerJohannes Brahms + AlbumAdagio + GenreClassical + KindAAC audio file + Size11875322 + Total Time495001 + Disc Number1 + Disc Count1 + Track Number4 + Track Count11 + Year1995 + Date Modified2006-08-07T08:39:36Z + Date Added2009-10-03T14:58:55Z + Bit Rate192 + Sample Rate44100 + Normalization841 + Compilation + Artwork Count1 + Persistent ID35768F96A9E3630D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Adagio/04%20Brahms_%20Symphony%20%233%20In%20F,%20Op.%2090%20-%20Andante.m4a + File Folder Count4 + Library Folder Count1 + + 5930 + + Track ID5930 + NameVivaldi: Sinfonia Al Santo Sepolcro In B Minor, RV 169 - Adagio Molto + ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra + ComposerAntonio Vivaldi + AlbumAdagio + GenreClassical + KindAAC audio file + Size5082421 + Total Time214016 + Disc Number1 + Disc Count1 + Track Number5 + Track Count11 + Year1995 + Date Modified2006-08-07T08:39:34Z + Date Added2009-10-03T14:58:55Z + Bit Rate192 + Sample Rate44100 + Normalization90 + Compilation + Artwork Count1 + Persistent ID21F7D866FBF1BC0E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Adagio/05%20Vivaldi_%20Sinfonia%20Al%20Santo%20Sepolcro%20In%20B%20Minor,%20RV%20169%20-%20Adagio%20Molto.m4a + File Folder Count4 + Library Folder Count1 + + 5932 + + Track ID5932 + NameGrieg: Peer Gynt Suite #1, Op. 46 - Ases Tod Ases's Death + ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra + ComposerEdvard Grieg + AlbumAdagio + GenreClassical + KindAAC audio file + Size6686330 + Total Time281006 + Disc Number1 + Disc Count1 + Track Number6 + Track Count11 + Year1995 + Date Modified2006-08-07T08:39:34Z + Date Added2009-10-03T14:58:56Z + Bit Rate192 + Sample Rate44100 + Normalization574 + Compilation + Artwork Count1 + Persistent ID8B8A96C3183B3BE8 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Adagio/06%20Grieg_%20Peer%20Gynt%20Suite%20%231,%20Op.%2046%20-%20Ases%20Tod%20Ases's%20Death.m4a + File Folder Count4 + Library Folder Count1 + + 5934 + + Track ID5934 + NameMozart: Divertimento #15 In B Flat, K 287/271h - Adagio + ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra + ComposerWolfgang Amadeus Mozart + AlbumAdagio + GenreClassical + KindAAC audio file + Size10560127 + Total Time441015 + Disc Number1 + Disc Count1 + Track Number7 + Track Count11 + Year1995 + Date Modified2006-08-07T08:39:34Z + Date Added2009-10-03T14:58:56Z + Bit Rate192 + Sample Rate44100 + Normalization484 + Compilation + Artwork Count1 + Persistent IDBD848D17AF61BD8D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Adagio/07%20Mozart_%20Divertimento%20%2315%20In%20B%20Flat,%20K%20287_271h%20-%20Adagio.m4a + File Folder Count4 + Library Folder Count1 + + 5936 + + Track ID5936 + NameAlbinoni: Adagio In G Minor, T. Mi 26 + ArtistDavid Bell, Leon Spierer, Herbert Von Karajan; Berlin Philharmonic Orchestra + ComposerTomaso Albinoni + AlbumAdagio + GenreClassical + KindAAC audio file + Size17068291 + Total Time710018 + Disc Number1 + Disc Count1 + Track Number8 + Track Count11 + Year1995 + Date Modified2006-08-07T08:39:34Z + Date Added2009-10-03T14:58:56Z + Bit Rate192 + Sample Rate44100 + Normalization1164 + Compilation + Artwork Count1 + Persistent IDD8C0B4EF4D444B33 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Adagio/08%20Albinoni_%20Adagio%20In%20G%20Minor,%20T.%20Mi%2026.m4a + File Folder Count4 + Library Folder Count1 + + 5938 + + Track ID5938 + NameBeethoven: Symphony #7 In A, Op. 92 - Allegretto + ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra + ComposerLudwig van Beethoven + AlbumAdagio + GenreClassical + KindAAC audio file + Size11181993 + Total Time467021 + Disc Number1 + Disc Count1 + Track Number9 + Track Count11 + Year1995 + Date Modified2006-08-07T08:39:34Z + Date Added2009-10-03T14:58:56Z + Bit Rate192 + Sample Rate44100 + Normalization1250 + Compilation + Artwork Count1 + Persistent ID252DA719BAE99F2D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Adagio/09%20Beethoven_%20Symphony%20%237%20In%20A,%20Op.%2092%20-%20Allegretto.m4a + File Folder Count4 + Library Folder Count1 + + 5940 + + Track ID5940 + NameJ.S. Bach: Suite #3 In D, BWV 1068 - Air + ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra + ComposerJohann Sebastian Bach + AlbumAdagio + GenreClassical + KindAAC audio file + Size8719692 + Total Time365016 + Disc Number1 + Disc Count1 + Track Number10 + Track Count11 + Year1995 + Date Modified2006-08-07T08:39:34Z + Date Added2009-10-03T14:58:56Z + Bit Rate192 + Sample Rate44100 + Normalization123 + Compilation + Artwork Count1 + Persistent IDE07906A4B996EF7A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Adagio/10%20J.S.%20Bach_%20Suite%20%233%20In%20D,%20BWV%201068%20-%20Air.m4a + File Folder Count4 + Library Folder Count1 + + 5942 + + Track ID5942 + NameGrieg: Kuolema, Op. 44/1 - Valse Triste + ArtistDavid Bell, Herbert Von Karajan; Berlin Philharmonic Orchestra + ComposerJean Sibelius + AlbumAdagio + GenreClassical + KindAAC audio file + Size8804366 + Total Time364017 + Disc Number1 + Disc Count1 + Track Number11 + Track Count11 + Year1995 + Date Modified2006-08-07T08:39:34Z + Date Added2009-10-03T14:58:56Z + Bit Rate192 + Sample Rate44100 + Normalization1051 + Compilation + Artwork Count1 + Persistent ID98E3D48C0D5502BD + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Adagio/11%20Grieg_%20Kuolema,%20Op.%2044_1%20-%20Valse%20Triste.m4a + File Folder Count4 + Library Folder Count1 + + 5944 + + Track ID5944 + Nameダンシング・クイーン + ArtistABBA + AlbumAbba Gold + GenrePop + KindAAC audio file + Size7572754 + Total Time231533 + Disc Number1 + Disc Count1 + Track Number1 + Track Count19 + Year1976 + BPM100 + Date Modified2008-10-17T16:42:33Z + Date Added2009-10-03T14:58:57Z + Bit Rate256 + Sample Rate44100 + Normalization5002 + Compilation + Persistent ID17DDC62A4F51D4F7 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Abba%20Gold/01%20%E3%82%BF%E3%82%99%E3%83%B3%E3%82%B7%E3%83%B3%E3%82%AF%E3%82%99%E3%83%BB%E3%82%AF%E3%82%A4%E3%83%BC%E3%83%B3.m4a + File Folder Count4 + Library Folder Count1 + + 5946 + + Track ID5946 + NameA -Tisket, a-Tasket + ArtistElla Fitzgerald + Album4 By 4 - The Ladies - Ella, Billie, Sarah, Dinah + GenreJazz + KindAAC audio file + Size2784627 + Total Time116167 + Disc Number1 + Disc Count16 + Track Number1 + Track Count16 + Year1999 + Date Modified2006-08-07T09:09:10Z + Date Added2009-10-03T14:58:57Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3337490953 + Play Date UTC2009-10-04T03:19:13Z + Normalization1931 + Compilation + Artwork Count1 + Sort Name-Tisket, a-Tasket + Persistent ID540F7B2D287A4BEA + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/4%20By%204%20-%20The%20Ladies%20-%20Ella,%20Billie,%20Sarah,%20Dinah/1-01%20A%20-Tisket,%20a-Tasket.m4a + File Folder Count4 + Library Folder Count1 + + 5948 + + Track ID5948 + NameMack the Knife + ArtistElla Fitzgerald + Album4 By 4 - The Ladies - Ella, Billie, Sarah, Dinah + GenreJazz + KindAAC audio file + Size6868905 + Total Time285069 + Disc Number1 + Disc Count16 + Track Number2 + Track Count16 + Year1999 + Date Modified2006-08-07T09:09:10Z + Date Added2009-10-03T14:58:57Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3337491238 + Play Date UTC2009-10-04T03:23:58Z + Normalization1610 + Compilation + Artwork Count1 + Persistent ID3A12B018255583A6 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/4%20By%204%20-%20The%20Ladies%20-%20Ella,%20Billie,%20Sarah,%20Dinah/1-02%20Mack%20the%20Knife.m4a + File Folder Count4 + Library Folder Count1 + + 5950 + + Track ID5950 + NameMr. Paganini + ArtistElla Fitzgerald + Album4 By 4 - The Ladies - Ella, Billie, Sarah, Dinah + GenreJazz + KindAAC audio file + Size5915091 + Total Time246013 + Disc Number1 + Disc Count16 + Track Number3 + Track Count16 + Year1999 + Date Modified2006-08-07T09:09:10Z + Date Added2009-10-03T14:58:57Z + Bit Rate192 + Sample Rate44100 + Normalization3534 + Compilation + Artwork Count1 + Persistent ID0100B23C34EA0054 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/4%20By%204%20-%20The%20Ladies%20-%20Ella,%20Billie,%20Sarah,%20Dinah/1-03%20Mr.%20Paganini.m4a + File Folder Count4 + Library Folder Count1 + + 5952 + + Track ID5952 + NameHow High the Moon + ArtistElla Fitzgerald + Album4 By 4 - The Ladies - Ella, Billie, Sarah, Dinah + GenreJazz + KindAAC audio file + Size10179348 + Total Time422346 + Disc Number1 + Disc Count16 + Track Number4 + Track Count16 + Year1999 + Date Modified2006-08-07T09:09:10Z + Date Added2009-10-03T14:58:57Z + Bit Rate192 + Sample Rate44100 + Normalization1813 + Compilation + Artwork Count1 + Persistent ID3411808F935A2418 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/4%20By%204%20-%20The%20Ladies%20-%20Ella,%20Billie,%20Sarah,%20Dinah/1-04%20How%20High%20the%20Moon.m4a + File Folder Count4 + Library Folder Count1 + + 5954 + + Track ID5954 + NameGod Bless the Child + ArtistBillie Holiday + Album4 By 4 - The Ladies - Ella, Billie, Sarah, Dinah + GenreJazz + KindAAC audio file + Size5761266 + Total Time239512 + Disc Number1 + Disc Count16 + Track Number5 + Track Count16 + Year1999 + Date Modified2006-08-07T09:09:10Z + Date Added2009-10-03T14:58:57Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3337491582 + Play Date UTC2009-10-04T03:29:42Z + Normalization1848 + Compilation + Artwork Count1 + Persistent IDCC687BD99FDC94DD + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/4%20By%204%20-%20The%20Ladies%20-%20Ella,%20Billie,%20Sarah,%20Dinah/1-05%20God%20Bless%20the%20Child.m4a + File Folder Count4 + Library Folder Count1 + + 5956 + + Track ID5956 + NameStrange Fruit + ArtistBillie Holiday + Album4 By 4 - The Ladies - Ella, Billie, Sarah, Dinah + GenreJazz + KindAAC audio file + Size4404996 + Total Time183668 + Disc Number1 + Disc Count16 + Track Number6 + Track Count16 + Year1999 + Date Modified2006-08-07T09:09:10Z + Date Added2009-10-03T14:58:57Z + Bit Rate192 + Sample Rate44100 + Skip Count1 + Skip Date2009-10-04T03:29:49Z + Normalization2543 + Compilation + Artwork Count1 + Persistent ID41A83274C57BCEB4 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/4%20By%204%20-%20The%20Ladies%20-%20Ella,%20Billie,%20Sarah,%20Dinah/1-06%20Strange%20Fruit.m4a + File Folder Count4 + Library Folder Count1 + + 5958 + + Track ID5958 + NameWhat a Little Moonlight Can Do + ArtistBillie Holiday + Album4 By 4 - The Ladies - Ella, Billie, Sarah, Dinah + GenreJazz + KindAAC audio file + Size4614979 + Total Time191911 + Disc Number1 + Disc Count16 + Track Number7 + Track Count16 + Year1999 + Date Modified2006-08-07T09:09:10Z + Date Added2009-10-03T14:58:58Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3337491781 + Play Date UTC2009-10-04T03:33:01Z + Normalization1533 + Compilation + Artwork Count1 + Persistent IDD5DD4FECCF6BFB79 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/4%20By%204%20-%20The%20Ladies%20-%20Ella,%20Billie,%20Sarah,%20Dinah/1-07%20What%20a%20Little%20Moonlight%20Can%20Do.m4a + File Folder Count4 + Library Folder Count1 + + 5960 + + Track ID5960 + NameGood Morning Heartache + ArtistBillie Holiday + Album4 By 4 - The Ladies - Ella, Billie, Sarah, Dinah + GenreJazz + KindAAC audio file + Size5055367 + Total Time211067 + Disc Number1 + Disc Count16 + Track Number8 + Track Count16 + Year1999 + Date Modified2006-08-07T09:09:10Z + Date Added2009-10-03T14:58:58Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3337491992 + Play Date UTC2009-10-04T03:36:32Z + Normalization1259 + Compilation + Artwork Count1 + Persistent IDE69FCFE1890477AA + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/4%20By%204%20-%20The%20Ladies%20-%20Ella,%20Billie,%20Sarah,%20Dinah/1-08%20Good%20Morning%20Heartache.m4a + File Folder Count4 + Library Folder Count1 + + 5962 + + Track ID5962 + NameMisty + ArtistSarah Vaughan + Album4 By 4 - The Ladies - Ella, Billie, Sarah, Dinah + GenreJazz + KindAAC audio file + Size4366419 + Total Time181717 + Disc Number1 + Disc Count16 + Track Number9 + Track Count16 + Year1999 + Date Modified2006-08-07T09:09:10Z + Date Added2009-10-03T14:58:58Z + Bit Rate192 + Sample Rate44100 + Normalization1852 + Compilation + Artwork Count1 + Persistent ID4F645E89F05C6C15 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/4%20By%204%20-%20The%20Ladies%20-%20Ella,%20Billie,%20Sarah,%20Dinah/1-09%20Misty.m4a + File Folder Count4 + Library Folder Count1 + + 5964 + + Track ID5964 + NameLullaby of Birdland + ArtistSarah Vaughan + Album4 By 4 - The Ladies - Ella, Billie, Sarah, Dinah + GenreJazz + KindAAC audio file + Size5790257 + Total Time240441 + Disc Number1 + Disc Count16 + Track Number10 + Track Count16 + Year1999 + Date Modified2006-08-07T09:09:10Z + Date Added2009-10-03T14:58:58Z + Bit Rate192 + Sample Rate44100 + Normalization1379 + Compilation + Artwork Count1 + Persistent IDF1A338488061D000 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/4%20By%204%20-%20The%20Ladies%20-%20Ella,%20Billie,%20Sarah,%20Dinah/1-10%20Lullaby%20of%20Birdland.m4a + File Folder Count4 + Library Folder Count1 + + 5966 + + Track ID5966 + NameLover Man + ArtistSarah Vaughan + Album4 By 4 - The Ladies - Ella, Billie, Sarah, Dinah + GenreJazz + KindAAC audio file + Size4766186 + Total Time198180 + Disc Number1 + Disc Count16 + Track Number11 + Track Count16 + Year1999 + Date Modified2006-08-07T09:09:10Z + Date Added2009-10-03T14:58:58Z + Bit Rate192 + Sample Rate44100 + Normalization1266 + Compilation + Artwork Count1 + Persistent IDF7801E10DC0FD415 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/4%20By%204%20-%20The%20Ladies%20-%20Ella,%20Billie,%20Sarah,%20Dinah/1-11%20Lover%20Man.m4a + File Folder Count4 + Library Folder Count1 + + 5968 + + Track ID5968 + NameLush Life + ArtistSarah Vaughan + Album4 By 4 - The Ladies - Ella, Billie, Sarah, Dinah + GenreJazz + KindAAC audio file + Size5852926 + Total Time243715 + Disc Number1 + Disc Count16 + Track Number12 + Track Count16 + Year1999 + Date Modified2006-08-07T09:09:08Z + Date Added2009-10-03T14:58:58Z + Bit Rate192 + Sample Rate44100 + Normalization1812 + Compilation + Artwork Count1 + Persistent IDDE38DBBB679E95F9 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/4%20By%204%20-%20The%20Ladies%20-%20Ella,%20Billie,%20Sarah,%20Dinah/1-12%20Lush%20Life.m4a + File Folder Count4 + Library Folder Count1 + + 5970 + + Track ID5970 + NameThis Bitter Earth + ArtistDinah Washington + Album4 By 4 - The Ladies - Ella, Billie, Sarah, Dinah + GenreJazz + KindAAC audio file + Size3534166 + Total Time147723 + Disc Number1 + Disc Count16 + Track Number13 + Track Count16 + Year1999 + Date Modified2006-08-07T09:09:08Z + Date Added2009-10-03T14:58:58Z + Bit Rate192 + Sample Rate44100 + Normalization3930 + Compilation + Artwork Count1 + Persistent ID9C0D55EA35B9665A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/4%20By%204%20-%20The%20Ladies%20-%20Ella,%20Billie,%20Sarah,%20Dinah/1-13%20This%20Bitter%20Earth.m4a + File Folder Count4 + Library Folder Count1 + + 5972 + + Track ID5972 + NameUnforgettable + ArtistDinah Washington + Album4 By 4 - The Ladies - Ella, Billie, Sarah, Dinah + GenreJazz + KindAAC audio file + Size3915939 + Total Time162886 + Disc Number1 + Disc Count16 + Track Number14 + Track Count16 + Year1999 + Date Modified2006-08-07T09:09:08Z + Date Added2009-10-03T14:58:58Z + Bit Rate192 + Sample Rate44100 + Normalization2889 + Compilation + Artwork Count1 + Persistent IDC77B0348F4503E6A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/4%20By%204%20-%20The%20Ladies%20-%20Ella,%20Billie,%20Sarah,%20Dinah/1-14%20Unforgettable.m4a + File Folder Count4 + Library Folder Count1 + + 5974 + + Track ID5974 + NameMad About the Boy + ArtistDinah Washington + Album4 By 4 - The Ladies - Ella, Billie, Sarah, Dinah + GenreJazz + KindAAC audio file + Size4322586 + Total Time179163 + Disc Number1 + Disc Count16 + Track Number15 + Track Count16 + Year1999 + Date Modified2006-08-07T09:09:08Z + Date Added2009-10-03T14:58:59Z + Bit Rate192 + Sample Rate44100 + Normalization3755 + Compilation + Artwork Count1 + Persistent IDB04E8095C75F7D83 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/4%20By%204%20-%20The%20Ladies%20-%20Ella,%20Billie,%20Sarah,%20Dinah/1-15%20Mad%20About%20the%20Boy.m4a + File Folder Count4 + Library Folder Count1 + + 5976 + + Track ID5976 + NameWhat A Differance A Day Made + ArtistDinah Washington + Album4 By 4 - The Ladies - Ella, Billie, Sarah, Dinah + GenreJazz + KindAAC audio file + Size3591295 + Total Time147654 + Disc Number1 + Disc Count16 + Track Number16 + Track Count16 + Year1999 + Date Modified2006-08-07T09:09:08Z + Date Added2009-10-03T14:58:59Z + Bit Rate192 + Sample Rate44100 + Normalization1252 + Compilation + Artwork Count1 + Persistent IDE4B4D2D0354C0222 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/4%20By%204%20-%20The%20Ladies%20-%20Ella,%20Billie,%20Sarah,%20Dinah/1-16%20What%20A%20Differance%20A%20Day%20Made.m4a + File Folder Count4 + Library Folder Count1 + + 5978 + + Track ID5978 + NameA Message + ArtistColdplay + ComposerBerryman/Buckland/Champion/Martin + AlbumX&Y + GenreAlternative & Punk + KindAAC audio file + Size6995869 + Total Time285306 + Disc Number1 + Disc Count1 + Track Number8 + Track Count13 + Year2005 + Date Modified2007-08-09T16:07:41Z + Date Added2009-10-03T14:59:00Z + Bit Rate192 + Sample Rate44100 + Normalization4725 + Artwork Count1 + Sort NameMessage + Persistent ID90A95525AD2BCFC1 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Coldplay/X&Y/08%20A%20Message.m4a + File Folder Count4 + Library Folder Count1 + + 5980 + + Track ID5980 + NameFix You + ArtistColdplay + ComposerBerryman/Buckland/Champion/Martin + AlbumX&Y + GenreAlternative & Punk + KindAAC audio file + Size7170771 + Total Time294986 + Disc Number1 + Disc Count1 + Track Number4 + Track Count13 + Year2005 + Date Modified2007-08-09T16:05:08Z + Date Added2009-10-03T14:59:00Z + Bit Rate192 + Sample Rate44100 + Normalization5214 + Artwork Count1 + Persistent ID448905B76FDDB701 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Coldplay/X&Y/04%20Fix%20You.m4a + File Folder Count4 + Library Folder Count1 + + 5982 + + Track ID5982 + NameKingdom Come + ArtistColdplay + ComposerBerryman/Buckland/Champion/Martin + AlbumX&Y + GenreAlternative & Punk + KindAAC audio file + Size6084631 + Total Time250666 + Disc Number1 + Disc Count1 + Track Number13 + Track Count13 + Year2005 + Date Modified2007-08-09T16:11:00Z + Date Added2009-10-03T14:59:00Z + Bit Rate192 + Sample Rate44100 + Normalization1934 + Artwork Count1 + Persistent IDF5263BD7BFB9CDD3 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Coldplay/X&Y/13%20Kingdom%20Come.m4a + File Folder Count4 + Library Folder Count1 + + 5984 + + Track ID5984 + NameLow + ArtistColdplay + ComposerBerryman/Buckland/Champion/Martin + AlbumX&Y + GenreAlternative & Punk + KindAAC audio file + Size8066147 + Total Time332093 + Disc Number1 + Disc Count1 + Track Number9 + Track Count13 + Year2005 + Date Modified2007-08-09T16:08:26Z + Date Added2009-10-03T14:59:00Z + Bit Rate192 + Sample Rate44100 + Normalization7106 + Artwork Count1 + Persistent ID76A06178813776E1 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Coldplay/X&Y/09%20Low.m4a + File Folder Count4 + Library Folder Count1 + + 5986 + + Track ID5986 + NameSpeed Of Sound + ArtistColdplay + ComposerBerryman/Buckland/Champion/Martin + AlbumX&Y + GenreAlternative & Punk + KindAAC audio file + Size7034900 + Total Time288440 + Disc Number1 + Disc Count1 + Track Number7 + Track Count13 + Year2005 + Date Modified2007-08-09T16:07:03Z + Date Added2009-10-03T14:59:01Z + Bit Rate192 + Sample Rate44100 + Normalization6093 + Artwork Count1 + Persistent ID5358BEB817A7CABB + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Coldplay/X&Y/07%20Speed%20Of%20Sound.m4a + File Folder Count4 + Library Folder Count1 + + 5988 + + Track ID5988 + NameSquare One + ArtistColdplay + ComposerBerryman/Buckland/Champion/Martin + AlbumX&Y + GenreAlternative & Punk + KindAAC audio file + Size6990075 + Total Time287386 + Disc Number1 + Disc Count1 + Track Number1 + Track Count13 + Year2005 + Date Modified2007-08-09T16:03:05Z + Date Added2009-10-03T14:59:01Z + Bit Rate192 + Sample Rate44100 + Normalization5377 + Artwork Count1 + Persistent IDB5FD301180E10FCA + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Coldplay/X&Y/01%20Square%20One.m4a + File Folder Count4 + Library Folder Count1 + + 5990 + + Track ID5990 + NameSwallowed In The Sea + ArtistColdplay + ComposerBerryman/Buckland/Champion/Martin + AlbumX&Y + GenreAlternative & Punk + KindAAC audio file + Size5792448 + Total Time238960 + Disc Number1 + Disc Count1 + Track Number11 + Track Count13 + Year2005 + Date Modified2007-08-09T16:09:33Z + Date Added2009-10-03T14:59:01Z + Bit Rate192 + Sample Rate44100 + Normalization4815 + Artwork Count1 + Persistent IDB50ACB5CE48F52C6 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Coldplay/X&Y/11%20Swallowed%20In%20The%20Sea.m4a + File Folder Count4 + Library Folder Count1 + + 5992 + + Track ID5992 + NameTalk + ArtistColdplay + ComposerHütter/Schult + AlbumX&Y + GenreAlternative & Punk + KindAAC audio file + Size7670077 + Total Time311253 + Disc Number1 + Disc Count1 + Track Number5 + Track Count13 + Year2005 + Date Modified2007-08-09T16:05:49Z + Date Added2009-10-03T14:59:01Z + Bit Rate192 + Sample Rate44100 + Normalization4085 + Artwork Count1 + Persistent ID91C14848A2CC2010 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Coldplay/X&Y/05%20Talk.m4a + File Folder Count4 + Library Folder Count1 + + 5994 + + Track ID5994 + NameThe Hardest Part + ArtistColdplay + ComposerBerryman/Buckland/Champion/Martin + AlbumX&Y + GenreAlternative & Punk + KindAAC audio file + Size6423930 + Total Time265040 + Disc Number1 + Disc Count1 + Track Number10 + Track Count13 + Year2005 + Date Modified2007-08-09T16:09:01Z + Date Added2009-10-03T14:59:01Z + Bit Rate192 + Sample Rate44100 + Normalization7362 + Artwork Count1 + Sort NameHardest Part + Persistent IDD6EF9A1643A543BC + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Coldplay/X&Y/10%20The%20Hardest%20Part.m4a + File Folder Count4 + Library Folder Count1 + + 5996 + + Track ID5996 + NameTwisted Logic + ArtistColdplay + ComposerBerryman/Buckland/Champion/Martin + AlbumX&Y + GenreAlternative & Punk + KindAAC audio file + Size6672782 + Total Time301866 + Disc Number1 + Disc Count1 + Track Number12 + Track Count13 + Year2005 + Date Modified2007-08-09T16:10:17Z + Date Added2009-10-03T14:59:01Z + Bit Rate192 + Sample Rate44100 + Normalization5556 + Artwork Count1 + Persistent IDDC200853D31368F9 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Coldplay/X&Y/12%20Twisted%20Logic.m4a + File Folder Count4 + Library Folder Count1 + + 5998 + + Track ID5998 + NameWhat If + ArtistColdplay + ComposerBerryman/Buckland/Champion/Martin + AlbumX&Y + GenreAlternative & Punk + KindAAC audio file + Size7219115 + Total Time297040 + Disc Number1 + Disc Count1 + Track Number2 + Track Count13 + Year2005 + Date Modified2007-08-09T16:03:45Z + Date Added2009-10-03T14:59:01Z + Bit Rate192 + Sample Rate44100 + Normalization5898 + Artwork Count1 + Persistent ID1C6EA533302915C2 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Coldplay/X&Y/02%20What%20If.m4a + File Folder Count4 + Library Folder Count1 + + 6000 + + Track ID6000 + NameWhite Shadows + ArtistColdplay + ComposerBerryman/Buckland/Champion/Martin + AlbumX&Y + GenreAlternative & Punk + KindAAC audio file + Size7969841 + Total Time328160 + Disc Number1 + Disc Count1 + Track Number3 + Track Count13 + Year2005 + Date Modified2007-08-09T16:04:29Z + Date Added2009-10-03T14:59:02Z + Bit Rate192 + Sample Rate44100 + Normalization6027 + Artwork Count1 + Persistent IDBC093EB17B0B444F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Coldplay/X&Y/03%20White%20Shadows.m4a + File Folder Count4 + Library Folder Count1 + + 6002 + + Track ID6002 + NameX&Y + ArtistColdplay + ComposerBerryman/Buckland/Champion/Martin + AlbumX&Y + GenreAlternative & Punk + KindAAC audio file + Size6676374 + Total Time274146 + Disc Number1 + Disc Count1 + Track Number6 + Track Count13 + Year2005 + Date Modified2007-08-09T16:06:25Z + Date Added2009-10-03T14:59:02Z + Bit Rate192 + Sample Rate44100 + Normalization7328 + Artwork Count1 + Persistent ID70AFBA134F8B5B59 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Coldplay/X&Y/06%20X&Y.m4a + File Folder Count4 + Library Folder Count1 + + 6004 + + Track ID6004 + NameDon't Panic + ArtistColdplay + ComposerGuy Berryman, Jon Buckland, Will Champion & Chris Martin + AlbumParachutes + GenreAlternative & Punk + KindAAC audio file + Size3556184 + Total Time138893 + Disc Number1 + Disc Count1 + Track Number1 + Track Count10 + Year2000 + Date Modified2007-10-22T04:48:34Z + Date Added2009-10-03T14:59:02Z + Bit Rate192 + Sample Rate44100 + Normalization3514 + Artwork Count1 + Persistent ID6DCD85C41755741E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Coldplay/Parachutes/01%20Don't%20Panic.m4a + File Folder Count4 + Library Folder Count1 + + 6006 + + Track ID6006 + NameEverything's Not Lost + ArtistColdplay + ComposerGuy Berryman, Jon Buckland, Will Champion & Chris Martin + AlbumParachutes + GenreAlternative & Punk + KindAAC audio file + Size10375022 + Total Time434466 + Disc Number1 + Disc Count1 + Track Number10 + Track Count10 + Year2000 + Date Modified2007-10-22T04:54:40Z + Date Added2009-10-03T14:59:02Z + Bit Rate192 + Sample Rate44100 + Normalization3334 + Artwork Count1 + Persistent IDA273C863962F2D95 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Coldplay/Parachutes/10%20Everything's%20Not%20Lost.m4a + File Folder Count4 + Library Folder Count1 + + 6008 + + Track ID6008 + NameHigh Speed + ArtistColdplay + ComposerGuy Berryman, Jon Buckland, Will Champion & Chris Martin + AlbumParachutes + GenreAlternative & Punk + KindAAC audio file + Size6205457 + Total Time256386 + Disc Number1 + Disc Count1 + Track Number8 + Track Count10 + Year2000 + Date Modified2007-10-22T04:52:50Z + Date Added2009-10-03T14:59:02Z + Bit Rate192 + Sample Rate44100 + Normalization2478 + Artwork Count1 + Persistent ID408EC856E268385B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Coldplay/Parachutes/08%20High%20Speed.m4a + File Folder Count4 + Library Folder Count1 + + 6010 + + Track ID6010 + NameParachutes + ArtistColdplay + ComposerGuy Berryman, Jon Buckland, Will Champion & Chris Martin + AlbumParachutes + GenreAlternative & Punk + KindAAC audio file + Size1167836 + Total Time48226 + Disc Number1 + Disc Count1 + Track Number7 + Track Count10 + Year2000 + Date Modified2007-10-22T04:52:10Z + Date Added2009-10-03T14:59:02Z + Bit Rate192 + Sample Rate44100 + Normalization852 + Artwork Count1 + Persistent ID6934DB40C211E01B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Coldplay/Parachutes/07%20Parachutes.m4a + File Folder Count4 + Library Folder Count1 + + 6012 + + Track ID6012 + NameShiver + ArtistColdplay + ComposerGuy Berryman, Jon Buckland, Will Champion & Chris Martin + AlbumParachutes + GenreAlternative & Punk + KindAAC audio file + Size7359606 + Total Time301720 + Disc Number1 + Disc Count1 + Track Number2 + Track Count10 + Year2000 + Date Modified2007-10-22T04:49:19Z + Date Added2009-10-03T14:59:02Z + Bit Rate192 + Sample Rate44100 + Normalization4196 + Artwork Count1 + Persistent IDE6E77BEC8EE293D2 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Coldplay/Parachutes/02%20Shiver.m4a + File Folder Count4 + Library Folder Count1 + + 6014 + + Track ID6014 + NameSparks + ArtistColdplay + ComposerGuy Berryman, Jon Buckland, Will Champion & Chris Martin + AlbumParachutes + GenreAlternative & Punk + KindAAC audio file + Size5499618 + Total Time229120 + Disc Number1 + Disc Count1 + Track Number4 + Track Count10 + Year2000 + Date Modified2007-10-22T04:50:41Z + Date Added2009-10-03T14:59:02Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3484501552 + Play Date UTC2014-06-01T15:35:52Z + Normalization1442 + Artwork Count1 + Persistent ID5D1B65DC0C9D81ED + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Coldplay/Parachutes/04%20Sparks.m4a + File Folder Count4 + Library Folder Count1 + + 6016 + + Track ID6016 + NameSpies + ArtistColdplay + ComposerGuy Berryman, Jon Buckland, Will Champion & Chris Martin + AlbumParachutes + GenreAlternative & Punk + KindAAC audio file + Size7766425 + Total Time320800 + Disc Number1 + Disc Count1 + Track Number3 + Track Count10 + Year2000 + Date Modified2007-10-22T04:50:06Z + Date Added2009-10-03T14:59:03Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3484501323 + Play Date UTC2014-06-01T15:32:03Z + Skip Count1 + Skip Date2010-08-25T10:55:33Z + Normalization4847 + Artwork Count1 + Persistent ID8B1F7AC8BC55E2EB + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Coldplay/Parachutes/03%20Spies.m4a + File Folder Count4 + Library Folder Count1 + + 6018 + + Track ID6018 + NameTrouble + ArtistColdplay + ComposerGuy Berryman, Jon Buckland, Will Champion & Chris Martin + AlbumParachutes + GenreAlternative & Punk + KindAAC audio file + Size6594447 + Total Time272933 + Disc Number1 + Disc Count1 + Track Number6 + Track Count10 + Year2000 + Date Modified2007-10-22T04:52:03Z + Date Added2009-10-03T14:59:03Z + Bit Rate192 + Sample Rate44100 + Normalization3570 + Artwork Count1 + Persistent IDC8B3B56364326BC1 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Coldplay/Parachutes/06%20Trouble.m4a + File Folder Count4 + Library Folder Count1 + + 6020 + + Track ID6020 + NameWe Never Change + ArtistColdplay + ComposerGuy Berryman, Jon Buckland, Will Champion & Chris Martin + AlbumParachutes + GenreAlternative & Punk + KindAAC audio file + Size6063282 + Total Time251426 + Disc Number1 + Disc Count1 + Track Number9 + Track Count10 + Year2000 + Date Modified2007-10-22T04:53:29Z + Date Added2009-10-03T14:59:03Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Persistent ID14821EB52324E664 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Coldplay/Parachutes/09%20We%20Never%20Change.m4a + File Folder Count4 + Library Folder Count1 + + 6022 + + Track ID6022 + NameYellow + ArtistColdplay + ComposerGuy Berryman, Jon Buckland, Will Champion & Chris Martin + AlbumParachutes + GenreAlternative & Punk + KindAAC audio file + Size6642094 + Total Time271226 + Disc Number1 + Disc Count1 + Track Number5 + Track Count10 + Year2000 + Date Modified2007-10-22T04:51:21Z + Date Added2009-10-03T14:59:03Z + Bit Rate192 + Sample Rate44100 + Normalization6447 + Artwork Count1 + Persistent IDABE09EE2EC11694A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Coldplay/Parachutes/05%20Yellow.m4a + File Folder Count4 + Library Folder Count1 + + 6024 + + Track ID6024 + NameA Rush Of Blood To The Head + ArtistColdplay + ComposerCold play + AlbumA Rush Of Blood To The Head + GenreAlternative & Punk + KindAAC audio file + Size8542008 + Total Time351400 + Disc Number1 + Disc Count1 + Track Number10 + Track Count11 + Year2002 + Date Modified2007-08-09T15:10:17Z + Date Added2009-10-03T14:59:03Z + Bit Rate192 + Sample Rate44100 + Normalization3843 + Artwork Count1 + Sort AlbumRush Of Blood To The Head + Sort NameRush Of Blood To The Head + Persistent ID2D55A1840416D605 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Coldplay/A%20Rush%20Of%20Blood%20To%20The%20Head/10%20A%20Rush%20Of%20Blood%20To%20The%20Head.m4a + File Folder Count4 + Library Folder Count1 + + 6026 + + Track ID6026 + NameA Whisper + ArtistColdplay + ComposerCold play + AlbumA Rush Of Blood To The Head + GenreAlternative & Punk + KindAAC audio file + Size5757598 + Total Time238333 + Disc Number1 + Disc Count1 + Track Number9 + Track Count11 + Year2002 + Date Modified2007-08-09T15:09:20Z + Date Added2009-10-03T14:59:03Z + Bit Rate192 + Sample Rate44100 + Skip Count1 + Skip Date2010-08-25T10:55:21Z + Normalization7290 + Artwork Count1 + Sort AlbumRush Of Blood To The Head + Sort NameWhisper + Persistent IDC3B5F89503C5E407 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Coldplay/A%20Rush%20Of%20Blood%20To%20The%20Head/09%20A%20Whisper.m4a + File Folder Count4 + Library Folder Count1 + + 6028 + + Track ID6028 + NameAmsterdam + ArtistColdplay + ComposerCold play + AlbumA Rush Of Blood To The Head + GenreAlternative & Punk + KindAAC audio file + Size7772820 + Total Time319360 + Disc Number1 + Disc Count1 + Track Number11 + Track Count11 + Year2002 + Date Modified2007-08-09T15:11:13Z + Date Added2009-10-03T14:59:03Z + Bit Rate192 + Sample Rate44100 + Normalization2541 + Artwork Count1 + Sort AlbumRush Of Blood To The Head + Persistent ID2CBE6AE1D12F8B83 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Coldplay/A%20Rush%20Of%20Blood%20To%20The%20Head/11%20Amsterdam.m4a + File Folder Count4 + Library Folder Count1 + + 6030 + + Track ID6030 + NameClocks + ArtistColdplay + ComposerCold play + AlbumA Rush Of Blood To The Head + GenreAlternative & Punk + KindAAC audio file + Size7492294 + Total Time307466 + Disc Number1 + Disc Count1 + Track Number5 + Track Count11 + Year2002 + Date Modified2007-08-09T15:06:13Z + Date Added2009-10-03T14:59:04Z + Bit Rate192 + Sample Rate44100 + Play Count3 + Play Date3484555016 + Play Date UTC2014-06-02T06:26:56Z + Normalization4712 + Artwork Count1 + Sort AlbumRush Of Blood To The Head + Persistent ID8528AFE750EF4BA3 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Coldplay/A%20Rush%20Of%20Blood%20To%20The%20Head/05%20Clocks.m4a + File Folder Count4 + Library Folder Count1 + + 6032 + + Track ID6032 + NameDaylight + ArtistColdplay + ComposerCold play + AlbumA Rush Of Blood To The Head + GenreAlternative & Punk + KindAAC audio file + Size7964774 + Total Time327800 + Disc Number1 + Disc Count1 + Track Number6 + Track Count11 + Year2002 + Date Modified2007-08-09T15:07:08Z + Date Added2009-10-03T14:59:04Z + Bit Rate192 + Sample Rate44100 + Normalization5892 + Artwork Count1 + Sort AlbumRush Of Blood To The Head + Persistent ID1312A89B537198D2 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Coldplay/A%20Rush%20Of%20Blood%20To%20The%20Head/06%20Daylight.m4a + File Folder Count4 + Library Folder Count1 + + 6034 + + Track ID6034 + NameGod Put A Smile Upon Your Face + ArtistColdplay + ComposerCold play + AlbumA Rush Of Blood To The Head + GenreAlternative & Punk + KindAAC audio file + Size7257174 + Total Time297266 + Disc Number1 + Disc Count1 + Track Number3 + Track Count11 + Year2002 + Date Modified2007-08-09T15:04:31Z + Date Added2009-10-03T14:59:04Z + Bit Rate192 + Sample Rate44100 + Normalization4428 + Artwork Count1 + Sort AlbumRush Of Blood To The Head + Persistent ID2E1DC692DB95453E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Coldplay/A%20Rush%20Of%20Blood%20To%20The%20Head/03%20God%20Put%20A%20Smile%20Upon%20Your%20Face.m4a + File Folder Count4 + Library Folder Count1 + + 6036 + + Track ID6036 + NameGreen Eyes + ArtistColdplay + ComposerCold play + AlbumA Rush Of Blood To The Head + GenreAlternative & Punk + KindAAC audio file + Size5364778 + Total Time223040 + Disc Number1 + Disc Count1 + Track Number7 + Track Count11 + Year2002 + Date Modified2007-08-09T15:07:46Z + Date Added2009-10-03T14:59:04Z + Bit Rate192 + Sample Rate44100 + Normalization2249 + Artwork Count1 + Sort AlbumRush Of Blood To The Head + Persistent IDD07241BBF60EEED7 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Coldplay/A%20Rush%20Of%20Blood%20To%20The%20Head/07%20Green%20Eyes.m4a + File Folder Count4 + Library Folder Count1 + + 6038 + + Track ID6038 + NameIn My Place + ArtistColdplay + ComposerCold play + AlbumA Rush Of Blood To The Head + GenreAlternative & Punk + KindAAC audio file + Size5529597 + Total Time228733 + Disc Number1 + Disc Count1 + Track Number2 + Track Count11 + Year2002 + Date Modified2007-08-09T15:03:40Z + Date Added2009-10-03T14:59:04Z + Bit Rate192 + Sample Rate44100 + Normalization5387 + Artwork Count1 + Sort AlbumRush Of Blood To The Head + Persistent ID5BCB6D3C741D74AF + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Coldplay/A%20Rush%20Of%20Blood%20To%20The%20Head/02%20In%20My%20Place.m4a + File Folder Count4 + Library Folder Count1 + + 6040 + + Track ID6040 + NamePolitik + ArtistColdplay + ComposerCold play + AlbumA Rush Of Blood To The Head + GenreAlternative & Punk + KindAAC audio file + Size7763307 + Total Time318626 + Disc Number1 + Disc Count1 + Track Number1 + Track Count11 + Year2002 + Date Modified2007-08-09T15:03:02Z + Date Added2009-10-03T14:59:04Z + Bit Rate192 + Sample Rate44100 + Skip Count1 + Skip Date2014-06-01T15:36:21Z + Normalization4640 + Artwork Count1 + Sort AlbumRush Of Blood To The Head + Persistent ID90B3E5C71DE3DBA3 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Coldplay/A%20Rush%20Of%20Blood%20To%20The%20Head/01%20Politik.m4a + File Folder Count4 + Library Folder Count1 + + 6042 + + Track ID6042 + NameThe Scientist + ArtistColdplay + ComposerCold play + AlbumA Rush Of Blood To The Head + GenreAlternative & Punk + KindAAC audio file + Size7574888 + Total Time309200 + Disc Number1 + Disc Count1 + Track Number4 + Track Count11 + Year2002 + Date Modified2007-08-09T15:05:23Z + Date Added2009-10-03T14:59:04Z + Bit Rate192 + Sample Rate44100 + Normalization3575 + Artwork Count1 + Sort AlbumRush Of Blood To The Head + Sort NameScientist + Persistent ID5037D7616E0655A9 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Coldplay/A%20Rush%20Of%20Blood%20To%20The%20Head/04%20The%20Scientist.m4a + File Folder Count4 + Library Folder Count1 + + 6044 + + Track ID6044 + NameWarning Sign + ArtistColdplay + ComposerCold play + AlbumA Rush Of Blood To The Head + GenreAlternative & Punk + KindAAC audio file + Size8050402 + Total Time331133 + Disc Number1 + Disc Count1 + Track Number8 + Track Count11 + Year2002 + Date Modified2007-08-09T15:08:40Z + Date Added2009-10-03T14:59:04Z + Bit Rate192 + Sample Rate44100 + Normalization2593 + Artwork Count1 + Sort AlbumRush Of Blood To The Head + Persistent ID1810B1A26F88F713 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Coldplay/A%20Rush%20Of%20Blood%20To%20The%20Head/08%20Warning%20Sign.m4a + File Folder Count4 + Library Folder Count1 + + 6046 + + Track ID6046 + NameBloomdido + ArtistCharlie Parker/Dizzy Gillespie + AlbumBird And Diz + GenreJazz + KindAAC audio file + Size5090918 + Total Time209767 + Track Number1 + Track Count24 + Date Modified2006-07-28T08:16:22Z + Date Added2009-10-03T14:59:05Z + Bit Rate192 + Sample Rate44100 + Play Count2 + Play Date3437116757 + Play Date UTC2012-11-30T05:09:17Z + Normalization1424 + Persistent ID742E2616AD5F5451 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Charlie%20Parker_Dizzy%20Gillespie/Bird%20And%20Diz/01%20Bloomdido.m4a + File Folder Count4 + Library Folder Count1 + + 6048 + + Track ID6048 + NameMy Melancholy Baby + ArtistCharlie Parker/Dizzy Gillespie + AlbumBird And Diz + GenreJazz + KindAAC audio file + Size5090324 + Total Time209744 + Track Number2 + Track Count24 + Date Modified2006-07-28T08:17:02Z + Date Added2009-10-03T14:59:05Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3437116967 + Play Date UTC2012-11-30T05:12:47Z + Normalization1725 + Persistent IDF870434EBB387D0E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Charlie%20Parker_Dizzy%20Gillespie/Bird%20And%20Diz/02%20My%20Melancholy%20Baby.m4a + File Folder Count4 + Library Folder Count1 + + 6050 + + Track ID6050 + NameRelaxin' With Lee + ArtistCharlie Parker/Dizzy Gillespie + AlbumBird And Diz + GenreJazz + KindAAC audio file + Size4056675 + Total Time170874 + Track Number3 + Track Count24 + Date Modified2006-07-28T08:17:34Z + Date Added2009-10-03T14:59:05Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3437117137 + Play Date UTC2012-11-30T05:15:37Z + Normalization1579 + Persistent IDBD39AF35E4535B4A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Charlie%20Parker_Dizzy%20Gillespie/Bird%20And%20Diz/03%20Relaxin'%20With%20Lee.m4a + File Folder Count4 + Library Folder Count1 + + 6052 + + Track ID6052 + NameLeap Frog + ArtistCharlie Parker/Dizzy Gillespie + AlbumBird And Diz + GenreJazz + KindAAC audio file + Size3648452 + Total Time155641 + Track Number4 + Track Count24 + Date Modified2006-07-28T08:18:04Z + Date Added2009-10-03T14:59:05Z + Bit Rate192 + Sample Rate44100 + Normalization2014 + Persistent IDECFE86A0E9C23E0A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Charlie%20Parker_Dizzy%20Gillespie/Bird%20And%20Diz/04%20Leap%20Frog.m4a + File Folder Count4 + Library Folder Count1 + + 6054 + + Track ID6054 + NameAn Oscar For Treadwell + ArtistCharlie Parker/Dizzy Gillespie + AlbumBird And Diz + GenreJazz + KindAAC audio file + Size5065818 + Total Time208908 + Track Number5 + Track Count24 + Date Modified2006-07-28T08:18:42Z + Date Added2009-10-03T14:59:05Z + Bit Rate192 + Sample Rate44100 + Normalization2495 + Sort NameOscar For Treadwell + Persistent ID99A05AEFBFCBFB70 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Charlie%20Parker_Dizzy%20Gillespie/Bird%20And%20Diz/05%20An%20Oscar%20For%20Treadwell.m4a + File Folder Count4 + Library Folder Count1 + + 6056 + + Track ID6056 + NameMohawk + ArtistCharlie Parker/Dizzy Gillespie + AlbumBird And Diz + GenreJazz + KindAAC audio file + Size5220627 + Total Time224976 + Track Number6 + Track Count24 + Date Modified2006-07-28T08:19:24Z + Date Added2009-10-03T14:59:05Z + Bit Rate192 + Sample Rate44100 + Normalization1485 + Persistent ID97F2A7ADB1E8092B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Charlie%20Parker_Dizzy%20Gillespie/Bird%20And%20Diz/06%20Mohawk.m4a + File Folder Count4 + Library Folder Count1 + + 6058 + + Track ID6058 + NameMy Melancholy Baby [Complete Take] + ArtistCharlie Parker/Dizzy Gillespie + AlbumBird And Diz + GenreJazz + KindAAC audio file + Size4866299 + Total Time200642 + Track Number7 + Track Count24 + Date Modified2006-07-28T08:20:02Z + Date Added2009-10-03T14:59:06Z + Bit Rate192 + Sample Rate44100 + Normalization1791 + Persistent IDD5742C4A18E0BA69 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Charlie%20Parker_Dizzy%20Gillespie/Bird%20And%20Diz/07%20My%20Melancholy%20Baby%20%5BComplete%20Take%5D.m4a + File Folder Count4 + Library Folder Count1 + + 6060 + + Track ID6060 + NameRelaxin' With Lee [Complete Take] + ArtistCharlie Parker/Dizzy Gillespie + AlbumBird And Diz + GenreJazz + KindAAC audio file + Size5805295 + Total Time239512 + Track Number8 + Track Count24 + Date Modified2006-07-28T08:20:50Z + Date Added2009-10-03T14:59:06Z + Bit Rate192 + Sample Rate44100 + Normalization1617 + Persistent ID9EA6D2D961FB2B00 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Charlie%20Parker_Dizzy%20Gillespie/Bird%20And%20Diz/08%20Relaxin'%20With%20Lee%20%5BComplete%20Take%5D.m4a + File Folder Count4 + Library Folder Count1 + + 6062 + + Track ID6062 + NameLeap Frog [Complete Take] + ArtistCharlie Parker/Dizzy Gillespie + AlbumBird And Diz + GenreJazz + KindAAC audio file + Size3765719 + Total Time157336 + Track Number9 + Track Count24 + Date Modified2006-07-28T08:21:22Z + Date Added2009-10-03T14:59:06Z + Bit Rate192 + Sample Rate44100 + Play Count2 + Play Date3435929895 + Play Date UTC2012-11-16T11:28:15Z + Normalization2223 + Persistent IDB6C008DC4D3B307D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Charlie%20Parker_Dizzy%20Gillespie/Bird%20And%20Diz/09%20Leap%20Frog%20%5BComplete%20Take%5D.m4a + File Folder Count4 + Library Folder Count1 + + 6064 + + Track ID6064 + NameLeap Frog [Complete Take] + ArtistCharlie Parker/Dizzy Gillespie + AlbumBird And Diz + GenreJazz + KindAAC audio file + Size3042829 + Total Time124689 + Track Number10 + Track Count24 + Date Modified2006-07-28T08:21:48Z + Date Added2009-10-03T14:59:06Z + Bit Rate192 + Sample Rate44100 + Normalization2143 + Persistent ID7460FC41832A2A0E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Charlie%20Parker_Dizzy%20Gillespie/Bird%20And%20Diz/10%20Leap%20Frog%20%5BComplete%20Take%5D.m4a + File Folder Count4 + Library Folder Count1 + + 6066 + + Track ID6066 + NameLeap Frog [Complete Take] + ArtistCharlie Parker/Dizzy Gillespie + AlbumBird And Diz + GenreJazz + KindAAC audio file + Size3162273 + Total Time129473 + Track Number11 + Track Count24 + Date Modified2006-07-28T08:22:14Z + Date Added2009-10-03T14:59:06Z + Bit Rate192 + Sample Rate44100 + Play Count2 + Play Date3435930024 + Play Date UTC2012-11-16T11:30:24Z + Normalization1806 + Persistent ID5E7A044848A1B095 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Charlie%20Parker_Dizzy%20Gillespie/Bird%20And%20Diz/11%20Leap%20Frog%20%5BComplete%20Take%5D.m4a + File Folder Count4 + Library Folder Count1 + + 6068 + + Track ID6068 + NameAn Oscar For Treadwell [Complete Take] + ArtistCharlie Parker/Dizzy Gillespie + AlbumBird And Diz + GenreJazz + KindAAC audio file + Size4885360 + Total Time204218 + Track Number12 + Track Count24 + Date Modified2006-07-28T08:22:56Z + Date Added2009-10-03T14:59:06Z + Bit Rate192 + Sample Rate44100 + Normalization2266 + Sort NameOscar For Treadwell [Complete Take] + Persistent IDCAFEF036032CE684 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Charlie%20Parker_Dizzy%20Gillespie/Bird%20And%20Diz/12%20An%20Oscar%20For%20Treadwell%20%5BComplete%20Take%5D.m4a + File Folder Count4 + Library Folder Count1 + + 6070 + + Track ID6070 + NameMohawk [Complete Take] + ArtistCharlie Parker/Dizzy Gillespie + AlbumBird And Diz + GenreJazz + KindAAC audio file + Size5931555 + Total Time246339 + Track Number13 + Track Count24 + Date Modified2006-07-28T08:23:42Z + Date Added2009-10-03T14:59:06Z + Bit Rate192 + Sample Rate44100 + Normalization1022 + Persistent IDA11D61B7173AF7D4 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Charlie%20Parker_Dizzy%20Gillespie/Bird%20And%20Diz/13%20Mohawk%20%5BComplete%20Take%5D.m4a + File Folder Count4 + Library Folder Count1 + + 6072 + + Track ID6072 + NameRelaxin' With Lee [Breakdown Take] + ArtistCharlie Parker/Dizzy Gillespie + AlbumBird And Diz + GenreJazz + KindAAC audio file + Size546187 + Total Time20548 + Track Number14 + Track Count24 + Date Modified2006-07-28T08:23:46Z + Date Added2009-10-03T14:59:06Z + Bit Rate192 + Sample Rate44100 + Normalization1562 + Persistent ID1ACB0E48F062F563 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Charlie%20Parker_Dizzy%20Gillespie/Bird%20And%20Diz/14%20Relaxin'%20With%20Lee%20%5BBreakdown%20Take%5D.m4a + File Folder Count4 + Library Folder Count1 + + 6074 + + Track ID6074 + NameRelaxin' With Lee [Breakdown Take] + ArtistCharlie Parker/Dizzy Gillespie + AlbumBird And Diz + GenreJazz + KindAAC audio file + Size1823910 + Total Time73745 + Track Number15 + Track Count24 + Date Modified2006-07-28T08:23:58Z + Date Added2009-10-03T14:59:06Z + Bit Rate192 + Sample Rate44100 + Normalization1267 + Persistent ID3EAA44327D1CC11E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Charlie%20Parker_Dizzy%20Gillespie/Bird%20And%20Diz/15%20Relaxin'%20With%20Lee%20%5BBreakdown%20Take%5D.m4a + File Folder Count4 + Library Folder Count1 + + 6076 + + Track ID6076 + NameRelaxin' With Lee [False Start] + ArtistCharlie Parker/Dizzy Gillespie + AlbumBird And Diz + GenreJazz + KindAAC audio file + Size211448 + Total Time6616 + Track Number16 + Track Count24 + Date Modified2006-07-28T08:24:00Z + Date Added2009-10-03T14:59:06Z + Bit Rate192 + Sample Rate44100 + Normalization11 + Persistent ID214D8ED35233B383 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Charlie%20Parker_Dizzy%20Gillespie/Bird%20And%20Diz/16%20Relaxin'%20With%20Lee%20%5BFalse%20Start%5D.m4a + File Folder Count4 + Library Folder Count1 + + 6078 + + Track ID6078 + NameRelaxin' With Lee [Breakdown Take] + ArtistCharlie Parker/Dizzy Gillespie + AlbumBird And Diz + GenreJazz + KindAAC audio file + Size642433 + Total Time27467 + Track Number17 + Track Count24 + Date Modified2006-07-28T08:24:06Z + Date Added2009-10-03T14:59:07Z + Bit Rate192 + Sample Rate44100 + Normalization547 + Persistent ID49D1309E71550468 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Charlie%20Parker_Dizzy%20Gillespie/Bird%20And%20Diz/17%20Relaxin'%20With%20Lee%20%5BBreakdown%20Take%5D.m4a + File Folder Count4 + Library Folder Count1 + + 6080 + + Track ID6080 + NameLeap Frog [Breakdown Take] + ArtistCharlie Parker/Dizzy Gillespie + AlbumBird And Diz + GenreJazz + KindAAC audio file + Size695037 + Total Time28675 + Track Number18 + Track Count24 + Date Modified2006-07-28T08:24:10Z + Date Added2009-10-03T14:59:07Z + Bit Rate192 + Sample Rate44100 + Normalization595 + Persistent IDCAA8D040BF8A4C30 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Charlie%20Parker_Dizzy%20Gillespie/Bird%20And%20Diz/18%20Leap%20Frog%20%5BBreakdown%20Take%5D.m4a + File Folder Count4 + Library Folder Count1 + + 6082 + + Track ID6082 + NameLeap Frog [Breakdown Take] + ArtistCharlie Parker/Dizzy Gillespie + AlbumBird And Diz + GenreJazz + KindAAC audio file + Size477066 + Total Time17668 + Track Number19 + Track Count24 + Date Modified2006-07-28T08:24:14Z + Date Added2009-10-03T14:59:07Z + Bit Rate192 + Sample Rate44100 + Normalization1442 + Persistent IDAE486BE9DC4CC0B8 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Charlie%20Parker_Dizzy%20Gillespie/Bird%20And%20Diz/19%20Leap%20Frog%20%5BBreakdown%20Take%5D.m4a + File Folder Count4 + Library Folder Count1 + + 6084 + + Track ID6084 + NameLeap Frog [Breakdown Take] + ArtistCharlie Parker/Dizzy Gillespie + AlbumBird And Diz + GenreJazz + KindAAC audio file + Size1053644 + Total Time41678 + Track Number20 + Track Count24 + Date Modified2006-07-28T08:24:22Z + Date Added2009-10-03T14:59:07Z + Bit Rate192 + Sample Rate44100 + Normalization1371 + Persistent IDAF6B856720E96AA8 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Charlie%20Parker_Dizzy%20Gillespie/Bird%20And%20Diz/20%20Leap%20Frog%20%5BBreakdown%20Take%5D.m4a + File Folder Count4 + Library Folder Count1 + + 6086 + + Track ID6086 + NameLeap Frog [Breakdown Take] + ArtistCharlie Parker/Dizzy Gillespie + AlbumBird And Diz + GenreJazz + KindAAC audio file + Size509344 + Total Time19015 + Track Number21 + Track Count24 + Date Modified2006-07-28T08:24:26Z + Date Added2009-10-03T14:59:07Z + Bit Rate192 + Sample Rate44100 + Normalization1379 + Persistent ID7C9334F328BCAFC2 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Charlie%20Parker_Dizzy%20Gillespie/Bird%20And%20Diz/21%20Leap%20Frog%20%5BBreakdown%20Take%5D.m4a + File Folder Count4 + Library Folder Count1 + + 6088 + + Track ID6088 + NameLeap Frog [Breakdown Take] + ArtistCharlie Parker/Dizzy Gillespie + AlbumBird And Diz + GenreJazz + KindAAC audio file + Size565115 + Total Time21337 + Track Number22 + Track Count24 + Date Modified2006-07-28T08:24:30Z + Date Added2009-10-03T14:59:07Z + Bit Rate192 + Sample Rate44100 + Normalization1901 + Persistent IDC2FECD562E82F37B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Charlie%20Parker_Dizzy%20Gillespie/Bird%20And%20Diz/22%20Leap%20Frog%20%5BBreakdown%20Take%5D.m4a + File Folder Count4 + Library Folder Count1 + + 6090 + + Track ID6090 + NameLeap Frog [Breakdown Take] + ArtistCharlie Parker/Dizzy Gillespie + AlbumBird And Diz + GenreJazz + KindAAC audio file + Size413269 + Total Time15021 + Track Number23 + Track Count24 + Date Modified2006-07-28T08:24:32Z + Date Added2009-10-03T14:59:07Z + Bit Rate192 + Sample Rate44100 + Play Count2 + Play Date3435930039 + Play Date UTC2012-11-16T11:30:39Z + Normalization1295 + Persistent IDC5474DA3A7E0D695 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Charlie%20Parker_Dizzy%20Gillespie/Bird%20And%20Diz/23%20Leap%20Frog%20%5BBreakdown%20Take%5D.m4a + File Folder Count4 + Library Folder Count1 + + 6092 + + Track ID6092 + NameLeap Frog [Breakdown Take] + ArtistCharlie Parker/Dizzy Gillespie + AlbumBird And Diz + GenreJazz + KindAAC audio file + Size1037031 + Total Time41353 + Track Number24 + Track Count24 + Date Modified2006-07-28T08:24:40Z + Date Added2009-10-03T14:59:07Z + Bit Rate192 + Sample Rate44100 + Normalization1240 + Persistent ID69EF02337A75171D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Charlie%20Parker_Dizzy%20Gillespie/Bird%20And%20Diz/24%20Leap%20Frog%20%5BBreakdown%20Take%5D.m4a + File Folder Count4 + Library Folder Count1 + + 6094 + + Track ID6094 + NameDuet Solo Dancers + ArtistCharles Mingus + ComposerCharles Mingus + AlbumThe Black Saint And The Sinner Lady + GenreJazz + KindAAC audio file + Size6387761 + Total Time236000 + Disc Number1 + Disc Count1 + Track Number2 + Track Count4 + Year1963 + Date Modified2007-11-26T07:07:36Z + Date Added2009-10-03T14:59:08Z + Bit Rate213 + Sample Rate44100 + Normalization1258 + Artwork Count1 + Sort AlbumBlack Saint And The Sinner Lady + Persistent ID8DB0217AF2430B71 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Charles%20Mingus/The%20Black%20Saint%20And%20The%20Sinner%20Lady/02%20Duet%20Solo%20Dancers.m4a + File Folder Count4 + Library Folder Count1 + + 6096 + + Track ID6096 + NameGroup Dancers + ArtistCharles Mingus + ComposerCharles Mingus + AlbumThe Black Saint And The Sinner Lady + GenreJazz + KindAAC audio file + Size11732738 + Total Time443333 + Disc Number1 + Disc Count1 + Track Number3 + Track Count4 + Year1963 + Date Modified2007-11-26T07:09:50Z + Date Added2009-10-03T14:59:08Z + Bit Rate209 + Sample Rate44100 + Normalization1319 + Artwork Count1 + Sort AlbumBlack Saint And The Sinner Lady + Persistent ID8A3E3054D0BD7C49 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Charles%20Mingus/The%20Black%20Saint%20And%20The%20Sinner%20Lady/03%20Group%20Dancers.m4a + File Folder Count4 + Library Folder Count1 + + 6098 + + Track ID6098 + NameSolo Dancer + ArtistCharles Mingus + ComposerCharles Mingus + AlbumThe Black Saint And The Sinner Lady + GenreJazz + KindAAC audio file + Size10703801 + Total Time399333 + Disc Number1 + Disc Count1 + Track Number1 + Track Count4 + Year1963 + Date Modified2007-11-26T07:12:04Z + Date Added2009-10-03T14:59:08Z + Bit Rate212 + Sample Rate44100 + Normalization1562 + Artwork Count1 + Sort AlbumBlack Saint And The Sinner Lady + Persistent ID352B686C65082749 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Charles%20Mingus/The%20Black%20Saint%20And%20The%20Sinner%20Lady/01%20Solo%20Dancer.m4a + File Folder Count4 + Library Folder Count1 + + 6100 + + Track ID6100 + NameTrio And Group Dancers + ArtistCharles Mingus + ComposerCharles Mingus + AlbumThe Black Saint And The Sinner Lady + GenreJazz + KindAAC audio file + Size29660549 + Total Time1118400 + Disc Number1 + Disc Count1 + Track Number4 + Track Count4 + Year1963 + Date Modified2007-11-26T07:17:38Z + Date Added2009-10-03T14:59:08Z + Bit Rate210 + Sample Rate44100 + Normalization1105 + Artwork Count1 + Sort AlbumBlack Saint And The Sinner Lady + Persistent ID3F371788FD0FEB90 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Charles%20Mingus/The%20Black%20Saint%20And%20The%20Sinner%20Lady/04%20Trio%20And%20Group%20Dancers.m4a + File Folder Count4 + Library Folder Count1 + + 6102 + + Track ID6102 + NameWednesday Night Prayer Meeting + ArtistCharles Mingus + ComposerCharles Mingus + AlbumBlues & Roots + GenreJazz + KindAAC audio file + Size8256656 + Total Time342539 + Disc Number1 + Disc Count1 + Track Number1 + Track Count6 + Year1959 + Date Modified2006-07-30T15:06:02Z + Date Added2009-10-03T14:59:08Z + Bit Rate192 + Sample Rate44100 + Normalization1438 + Artwork Count1 + Persistent IDB992ED86407E92D4 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Charles%20Mingus/Blues%20&%20Roots/01%20Wednesday%20Night%20Prayer%20Meeting.m4a + File Folder Count4 + Library Folder Count1 + + 6104 + + Track ID6104 + NameCryin' Blues + ArtistCharles Mingus + ComposerCharles Mingus + AlbumBlues & Roots + GenreJazz + KindAAC audio file + Size7274694 + Total Time302345 + Disc Number1 + Disc Count1 + Track Number2 + Track Count6 + Year1959 + Date Modified2006-07-30T15:06:04Z + Date Added2009-10-03T14:59:08Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Persistent ID0C1FE70F9B956482 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Charles%20Mingus/Blues%20&%20Roots/02%20Cryin'%20Blues.m4a + File Folder Count4 + Library Folder Count1 + + 6106 + + Track ID6106 + NameMoanin' + ArtistCharles Mingus + ComposerCharles Mingus + AlbumBlues & Roots + GenreJazz + KindAAC audio file + Size11628894 + Total Time482114 + Disc Number1 + Disc Count1 + Track Number3 + Track Count6 + Year1959 + Date Modified2006-07-30T15:06:04Z + Date Added2009-10-03T14:59:08Z + Bit Rate192 + Sample Rate44100 + Normalization1258 + Artwork Count1 + Persistent ID4E151545C1B7ABB5 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Charles%20Mingus/Blues%20&%20Roots/03%20Moanin'.m4a + File Folder Count4 + Library Folder Count1 + + 6108 + + Track ID6108 + NameTensions + ArtistCharles Mingus + ComposerCharles Mingus + AlbumBlues & Roots + GenreJazz + KindAAC audio file + Size9403271 + Total Time390442 + Disc Number1 + Disc Count1 + Track Number4 + Track Count6 + Year1959 + Date Modified2006-07-30T15:06:04Z + Date Added2009-10-03T14:59:08Z + Bit Rate192 + Sample Rate44100 + Normalization944 + Artwork Count1 + Persistent IDCCB28CBFD1B38B14 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Charles%20Mingus/Blues%20&%20Roots/04%20Tensions.m4a + File Folder Count4 + Library Folder Count1 + + 6110 + + Track ID6110 + NameMy Jelly Roll Soul + ArtistCharles Mingus + ComposerCharles Mingus + AlbumBlues & Roots + GenreJazz + KindAAC audio file + Size9886450 + Total Time409946 + Disc Number1 + Disc Count1 + Track Number5 + Track Count6 + Year1959 + Date Modified2006-07-30T15:06:04Z + Date Added2009-10-03T14:59:09Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Persistent IDC2C02BDBA8992EBF + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Charles%20Mingus/Blues%20&%20Roots/05%20My%20Jelly%20Roll%20Soul.m4a + File Folder Count4 + Library Folder Count1 + + 6112 + + Track ID6112 + NameE's Flat Ah's Flat Too + ArtistCharles Mingus + ComposerCharles Mingus + AlbumBlues & Roots + GenreJazz + KindAAC audio file + Size9760413 + Total Time402005 + Disc Number1 + Disc Count1 + Track Number6 + Track Count6 + Year1959 + Date Modified2006-07-30T15:06:04Z + Date Added2009-10-03T14:59:09Z + Bit Rate192 + Sample Rate44100 + Normalization1258 + Artwork Count1 + Persistent ID5C34CAA73D272288 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Charles%20Mingus/Blues%20&%20Roots/06%20E's%20Flat%20Ah's%20Flat%20Too.m4a + File Folder Count4 + Library Folder Count1 + + 6114 + + Track ID6114 + NameBruckner: Symphony #6 In A, WAB 106 - 2. Adagio: Sehr Feierlich + ArtistCesare Cantieri; Süddeutsche Philharmonie + ComposerBruckner, Anton (1824 - 1896) + AlbumBruckner: Symphony #6 + GenreClassical + KindAAC audio file + Size22845048 + Total Time943657 + Disc Number1 + Disc Count1 + Track Number2 + Track Count4 + Year1994 + Date Modified2006-08-08T06:50:44Z + Date Added2009-10-03T14:59:09Z + Bit Rate192 + Sample Rate44100 + Normalization227 + Artwork Count1 + Persistent ID626772FBCE953FDA + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Cesare%20Cantieri%3B%20Su%CC%88ddeutsche%20Philharmonie/Bruckner_%20Symphony%20%236/02%20Bruckner_%20Symphony%20%236%20In%20A,%20WAB%20106%20-%202.%20Adagio_%20Sehr%20Feierlich.m4a + File Folder Count4 + Library Folder Count1 + + 6116 + + Track ID6116 + NameBruckner: Symphony #6 In A, WAB 106 - 3. Scherzo: Ruhig Bewegt, Etwas Gemessen + ArtistCesare Cantieri; Süddeutsche Philharmonie + ComposerBruckner, Anton (1824 - 1896) + AlbumBruckner: Symphony #6 + GenreClassical + KindAAC audio file + Size11829960 + Total Time488476 + Disc Number1 + Disc Count1 + Track Number3 + Track Count4 + Year1994 + Date Modified2006-08-08T06:50:44Z + Date Added2009-10-03T14:59:09Z + Bit Rate192 + Sample Rate44100 + Normalization1113 + Artwork Count1 + Persistent ID571A888C6E77D3C5 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Cesare%20Cantieri%3B%20Su%CC%88ddeutsche%20Philharmonie/Bruckner_%20Symphony%20%236/03%20Bruckner_%20Symphony%20%236%20In%20A,%20WAB%20106%20-%203.%20Scherzo_%20Ruhig%20Bewegt,%20Etwas%20Gemessen.m4a + File Folder Count4 + Library Folder Count1 + + 6118 + + Track ID6118 + NameBruckner: Symphony #6 In A, WAB 106 - 4. Finale: Bewegt, Doch Night Zu Schnell + ArtistCesare Cantieri; Süddeutsche Philharmonie + ComposerBruckner, Anton (1824 - 1896) + AlbumBruckner: Symphony #6 + GenreClassical + KindAAC audio file + Size20151645 + Total Time832619 + Disc Number1 + Disc Count1 + Track Number4 + Track Count4 + Year1994 + Date Modified2006-08-08T06:50:42Z + Date Added2009-10-03T14:59:09Z + Bit Rate192 + Sample Rate44100 + Normalization980 + Artwork Count1 + Persistent IDD7A2FF5365CC110D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Cesare%20Cantieri%3B%20Su%CC%88ddeutsche%20Philharmonie/Bruckner_%20Symphony%20%236/04%20Bruckner_%20Symphony%20%236%20In%20A,%20WAB%20106%20-%204.%20Finale_%20Bewegt,%20Doch%20Night%20Zu%20Schnell.m4a + File Folder Count4 + Library Folder Count1 + + 6120 + + Track ID6120 + NameDuctu Angelico + ArtistCeltic Wanderers + ComposerUnknown (Trinity College, Dublin 15th Century) + AlbumThe Pilgrim's Road + GenreFolk + KindAAC audio file + Size3379877 + Total Time136044 + Disc Number1 + Disc Count1 + Track Number1 + Track Count15 + Year2001 + Date Modified2006-07-31T04:28:00Z + Date Added2009-10-03T14:59:10Z + Bit Rate192 + Sample Rate44100 + Normalization131 + Artwork Count1 + Sort AlbumPilgrim's Road + Persistent IDA60A5E2CFA3B5140 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Celtic%20Wanderers/The%20Pilgrim's%20Road/01%20Ductu%20Angelico.m4a + File Folder Count4 + Library Folder Count1 + + 6122 + + Track ID6122 + NameProsa: Dilecte Deo Galle + ArtistCeltic Wanderers + ComposerNolker Balbulus (10th Century) + AlbumThe Pilgrim's Road + GenreFolk + KindAAC audio file + Size7047638 + Total Time288552 + Disc Number1 + Disc Count1 + Track Number2 + Track Count15 + Year2001 + Date Modified2006-07-31T04:28:02Z + Date Added2009-10-03T14:59:10Z + Bit Rate192 + Sample Rate44100 + Normalization104 + Artwork Count1 + Sort AlbumPilgrim's Road + Persistent ID1BFDC1429898F039 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Celtic%20Wanderers/The%20Pilgrim's%20Road/02%20Prosa_%20Dilecte%20Deo%20Galle.m4a + File Folder Count4 + Library Folder Count1 + + 6124 + + Track ID6124 + NameDuctia Angelorum + ArtistCeltic Wanderers + ComposerUnknown (Trinity College, Dublin 15th Century) + AlbumThe Pilgrim's Road + GenreFolk + KindAAC audio file + Size5985607 + Total Time244527 + Disc Number1 + Disc Count1 + Track Number3 + Track Count15 + Year2001 + Date Modified2006-07-31T04:28:02Z + Date Added2009-10-03T14:59:10Z + Bit Rate192 + Sample Rate44100 + Normalization405 + Artwork Count1 + Sort AlbumPilgrim's Road + Persistent ID0C0AC0D1FF212DA6 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Celtic%20Wanderers/The%20Pilgrim's%20Road/03%20Ductia%20Angelorum.m4a + File Folder Count4 + Library Folder Count1 + + 6126 + + Track ID6126 + NameO mirum admirandum + ArtistCeltic Wanderers + ComposerHildegard von Bingen (1098-1179) + AlbumThe Pilgrim's Road + GenreFolk + KindAAC audio file + Size3845155 + Total Time155409 + Disc Number1 + Disc Count1 + Track Number4 + Track Count15 + Year2001 + Date Modified2006-07-31T04:28:02Z + Date Added2009-10-03T14:59:10Z + Bit Rate192 + Sample Rate44100 + Normalization318 + Artwork Count1 + Sort AlbumPilgrim's Road + Persistent IDAAC6C1F2886BB411 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Celtic%20Wanderers/The%20Pilgrim's%20Road/04%20O%20mirum%20admirandum.m4a + File Folder Count4 + Library Folder Count1 + + 6128 + + Track ID6128 + NameChristi Martir + ArtistCeltic Wanderers + ComposerVespers: Antiphons for St. Kilian (12th Century) + AlbumThe Pilgrim's Road + GenreFolk + KindAAC audio file + Size2709604 + Total Time108133 + Disc Number1 + Disc Count1 + Track Number5 + Track Count15 + Year2001 + Date Modified2006-07-31T04:28:02Z + Date Added2009-10-03T14:59:11Z + Bit Rate192 + Sample Rate44100 + Normalization169 + Artwork Count1 + Sort AlbumPilgrim's Road + Persistent ID7B3C74719F2E680F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Celtic%20Wanderers/The%20Pilgrim's%20Road/05%20Christi%20Martir.m4a + File Folder Count4 + Library Folder Count1 + + 6130 + + Track ID6130 + NameChorus resonet + ArtistCeltic Wanderers + ComposerVespers: Antiphons for St. Kilian (12th Century) + AlbumThe Pilgrim's Road + GenreFolk + KindAAC audio file + Size1681143 + Total Time65316 + Disc Number1 + Disc Count1 + Track Number6 + Track Count15 + Year2001 + Date Modified2006-07-31T04:28:02Z + Date Added2009-10-03T14:59:11Z + Bit Rate192 + Sample Rate44100 + Normalization794 + Artwork Count1 + Sort AlbumPilgrim's Road + Persistent IDF9F832EC4FD4F5F3 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Celtic%20Wanderers/The%20Pilgrim's%20Road/06%20Chorus%20resonet.m4a + File Folder Count4 + Library Folder Count1 + + 6132 + + Track ID6132 + NameIter beatitudinis beatus Kylianus + ArtistCeltic Wanderers + ComposerSix Antiphons from Vigil for the Feast of St. Kilian (Vienna, Schottenstift, Kilian-Fragment 12th Century) + AlbumThe Pilgrim's Road + GenreFolk + KindAAC audio file + Size1765307 + Total Time68822 + Disc Number1 + Disc Count1 + Track Number7 + Track Count15 + Year2001 + Date Modified2006-07-31T04:28:02Z + Date Added2009-10-03T14:59:12Z + Bit Rate192 + Sample Rate44100 + Normalization217 + Artwork Count1 + Sort AlbumPilgrim's Road + Persistent IDCD9D16006EE6A9B7 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Celtic%20Wanderers/The%20Pilgrim's%20Road/07%20Iter%20beatitudinis%20beatus%20Kylianus.m4a + File Folder Count4 + Library Folder Count1 + + 6134 + + Track ID6134 + NameSocios assumpsit itineris + ArtistCeltic Wanderers + ComposerSix Antiphons from Vigil for the Feast of St. Kilian (Vienna, Schottenstift, Kilian-Fragment 12th Century) + AlbumThe Pilgrim's Road + GenreFolk + KindAAC audio file + Size2001288 + Total Time78644 + Disc Number1 + Disc Count1 + Track Number8 + Track Count15 + Year2001 + Date Modified2006-07-31T04:28:02Z + Date Added2009-10-03T14:59:12Z + Bit Rate192 + Sample Rate44100 + Normalization18 + Artwork Count1 + Sort AlbumPilgrim's Road + Persistent IDF41BB3913C921498 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Celtic%20Wanderers/The%20Pilgrim's%20Road/08%20Socios%20assumpsit%20itineris.m4a + File Folder Count4 + Library Folder Count1 + + 6136 + + Track ID6136 + NamePergentes simul mirificati + ArtistCeltic Wanderers + ComposerSix Antiphons from Vigil for the Feast of St. Kilian (Vienna, Schottenstift, Kilian-Fragment 12th Century) + AlbumThe Pilgrim's Road + GenreFolk + KindAAC audio file + Size1614733 + Total Time62553 + Disc Number1 + Disc Count1 + Track Number9 + Track Count15 + Year2001 + Date Modified2006-07-31T04:28:02Z + Date Added2009-10-03T14:59:12Z + Bit Rate192 + Sample Rate44100 + Normalization197 + Artwork Count1 + Sort AlbumPilgrim's Road + Persistent IDF7831BDBE6761C26 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Celtic%20Wanderers/The%20Pilgrim's%20Road/09%20Pergentes%20simul%20mirificati.m4a + File Folder Count4 + Library Folder Count1 + + 6138 + + Track ID6138 + NameGloriati sunt in domino + ArtistCeltic Wanderers + ComposerSix Antiphons from Vigil for the Feast of St. Kilian (Vienna, Schottenstift, Kilian-Fragment 12th Century) + AlbumThe Pilgrim's Road + GenreFolk + KindAAC audio file + Size2169298 + Total Time85633 + Disc Number1 + Disc Count1 + Track Number10 + Track Count15 + Year2001 + Date Modified2006-07-31T04:28:02Z + Date Added2009-10-03T14:59:12Z + Bit Rate192 + Sample Rate44100 + Normalization229 + Artwork Count1 + Sort AlbumPilgrim's Road + Persistent IDA6D15C5A636EC3DF + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Celtic%20Wanderers/The%20Pilgrim's%20Road/10%20Gloriati%20sunt%20in%20domino.m4a + File Folder Count4 + Library Folder Count1 + + 6140 + + Track ID6140 + NameNomen tuum sanctum est domine + ArtistCeltic Wanderers + ComposerSix Antiphons from Vigil for the Feast of St. Kilian (Vienna, Schottenstift, Kilian-Fragment 12th Century) + AlbumThe Pilgrim's Road + GenreFolk + KindAAC audio file + Size2101176 + Total Time82800 + Disc Number1 + Disc Count1 + Track Number11 + Track Count15 + Year2001 + Date Modified2006-07-31T04:28:02Z + Date Added2009-10-03T14:59:13Z + Bit Rate192 + Sample Rate44100 + Normalization136 + Artwork Count1 + Sort AlbumPilgrim's Road + Persistent IDB75B263DF77D11C5 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Celtic%20Wanderers/The%20Pilgrim's%20Road/11%20Nomen%20tuum%20sanctum%20est%20domine.m4a + File Folder Count4 + Library Folder Count1 + + 6142 + + Track ID6142 + NamePredicando verbum dei + ArtistCeltic Wanderers + ComposerSix Antiphons from Vigil for the Feast of St. Kilian (Vienna, Schottenstift, Kilian-Fragment 12th Century) + AlbumThe Pilgrim's Road + GenreFolk + KindAAC audio file + Size1269615 + Total Time48179 + Disc Number1 + Disc Count1 + Track Number12 + Track Count15 + Year2001 + Date Modified2006-07-31T04:28:02Z + Date Added2009-10-03T14:59:13Z + Bit Rate192 + Sample Rate44100 + Normalization131 + Artwork Count1 + Sort AlbumPilgrim's Road + Persistent ID7FEB602525EC78E1 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Celtic%20Wanderers/The%20Pilgrim's%20Road/12%20Predicando%20verbum%20dei.m4a + File Folder Count4 + Library Folder Count1 + + 6144 + + Track ID6144 + NamePuella Christi + ArtistCeltic Wanderers + ComposerUnknown (Vienna, Schottenstift Brigid-Fragment 12th Century) + AlbumThe Pilgrim's Road + GenreFolk + KindAAC audio file + Size10650665 + Total Time437439 + Disc Number1 + Disc Count1 + Track Number13 + Track Count15 + Year2001 + Date Modified2006-07-31T04:28:02Z + Date Added2009-10-03T14:59:13Z + Bit Rate192 + Sample Rate44100 + Normalization635 + Artwork Count1 + Sort AlbumPilgrim's Road + Persistent ID72313AF38FB98E06 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Celtic%20Wanderers/The%20Pilgrim's%20Road/13%20Puella%20Christi.m4a + File Folder Count4 + Library Folder Count1 + + 6146 + + Track ID6146 + NamePlanctus Cygni + ArtistCeltic Wanderers + ComposerUnknown (Paris Bibliotheque Natoinal, MS. Latin 887) + AlbumThe Pilgrim's Road + GenreFolk + KindAAC audio file + Size5762941 + Total Time235263 + Disc Number1 + Disc Count1 + Track Number14 + Track Count15 + Year2001 + Date Modified2006-07-31T04:28:02Z + Date Added2009-10-03T14:59:13Z + Bit Rate192 + Sample Rate44100 + Normalization111 + Artwork Count1 + Sort AlbumPilgrim's Road + Persistent IDC63EE97E1A0CD064 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Celtic%20Wanderers/The%20Pilgrim's%20Road/14%20Planctus%20Cygni.m4a + File Folder Count4 + Library Folder Count1 + + 6148 + + Track ID6148 + NameSamson dux fortissime + ArtistCeltic Wanderers + ComposerSaint Columbanus (c. 1300) + AlbumThe Pilgrim's Road + GenreFolk + KindAAC audio file + Size34267268 + Total Time1413629 + Disc Number1 + Disc Count1 + Track Number15 + Track Count15 + Year2001 + Date Modified2006-07-31T04:28:06Z + Date Added2009-10-03T14:59:14Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Sort AlbumPilgrim's Road + Persistent ID76D051908C133E86 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Celtic%20Wanderers/The%20Pilgrim's%20Road/15%20Samson%20dux%20fortissime.m4a + File Folder Count4 + Library Folder Count1 + + 6150 + + Track ID6150 + NameKeyboard Sonata in C Major (K. 159, L. 104) (Instrumental) + ArtistBéla Fleck + Album ArtistBéla Fleck + ComposerDomenico Scarlatti (1685-1757) + AlbumPerpetual Motion + GenreClassical + KindMPEG audio file + Size4304914 + Total Time135288 + Disc Number1 + Disc Count1 + Track Number1 + Track Count20 + Year2001 + Date Modified2009-06-19T12:47:00Z + Date Added2009-10-03T14:59:14Z + Bit Rate252 + Sample Rate44100 + CommentsAmazon.com Song ID: 203928786 + Play Count2 + Play Date3427119013 + Play Date UTC2012-08-06T12:00:13Z + Skip Count1 + Skip Date2014-05-29T15:56:54Z + Artwork Count1 + Persistent ID8C97337E74C7C6DA + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Be%CC%81la%20Fleck/Perpetual%20Motion/01%20Keyboard%20Sonata%20in%20C%20Major%20(K.%20159,%20L.%20104)%20(Instrumental).mp3 + File Folder Count4 + Library Folder Count1 + + 6152 + + Track ID6152 + NameTwo-Part Invention No. 13 (BWV 784) (Instrumental) + ArtistBéla Fleck + Album ArtistBéla Fleck + ComposerJohann Sebastian Bach (1685-1750) + AlbumPerpetual Motion + GenreClassical + KindMPEG audio file + Size2896244 + Total Time92656 + Disc Number1 + Disc Count1 + Track Number2 + Track Count20 + Year2001 + Date Modified2009-06-19T12:47:49Z + Date Added2009-10-03T14:59:14Z + Bit Rate246 + Sample Rate44100 + CommentsAmazon.com Song ID: 203928784 + Play Count1 + Play Date3338010824 + Play Date UTC2009-10-10T03:43:44Z + Artwork Count1 + Persistent ID22B651E180880ACF + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Be%CC%81la%20Fleck/Perpetual%20Motion/02%20Two-Part%20Invention%20No.%2013%20(BWV%20784)%20(Instrumental).mp3 + File Folder Count4 + Library Folder Count1 + + 6154 + + Track ID6154 + NameDoctor Gradus ad Parnassum from Children's Corner (Instrumental) + ArtistBéla Fleck + Album ArtistBéla Fleck + ComposerClaude Debussy + AlbumPerpetual Motion + GenreClassical + KindMPEG audio file + Size4605065 + Total Time146651 + Disc Number1 + Disc Count1 + Track Number3 + Track Count20 + Year2001 + Date Modified2009-06-19T12:49:02Z + Date Added2009-10-03T14:59:14Z + Bit Rate249 + Sample Rate44100 + CommentsAmazon.com Song ID: 203928777 + Play Count1 + Play Date3338010971 + Play Date UTC2009-10-10T03:46:11Z + Artwork Count1 + Persistent IDDA6640EA0F9FA8BF + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Be%CC%81la%20Fleck/Perpetual%20Motion/03%20Doctor%20Gradus%20ad%20Parnassum%20from%20Children's%20Corner%20(Instrumental).mp3 + File Folder Count4 + Library Folder Count1 + + 6156 + + Track ID6156 + NameMazurka in F-sharp Minor, Op. 59, No. 3 (Instrumental) + ArtistBéla Fleck + Album ArtistBéla Fleck + ComposerFryderyk Chopin + AlbumPerpetual Motion + GenreClassical + KindMPEG audio file + Size6858766 + Total Time218671 + Disc Number1 + Disc Count1 + Track Number4 + Track Count20 + Year2001 + Date Modified2009-06-19T12:50:49Z + Date Added2009-10-03T14:59:14Z + Bit Rate249 + Sample Rate44100 + CommentsAmazon.com Song ID: 203928780 + Play Count1 + Play Date3338011190 + Play Date UTC2009-10-10T03:49:50Z + Artwork Count1 + Persistent IDB575EF6FECC0CB39 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Be%CC%81la%20Fleck/Perpetual%20Motion/04%20Mazurka%20in%20F-sharp%20Minor,%20Op.%2059,%20No.%203%20(Instrumental).mp3 + File Folder Count4 + Library Folder Count1 + + 6158 + + Track ID6158 + NamePrélude from Partita No. 3 for Solo Violin (BWV 1006) (Instrumental) + ArtistBéla Fleck + Album ArtistBéla Fleck + ComposerJohann Sebastian Bach (1685-1750) + AlbumPerpetual Motion + GenreClassical + KindMPEG audio file + Size7050925 + Total Time226063 + Disc Number1 + Disc Count1 + Track Number5 + Track Count20 + Year2001 + Date Modified2009-06-19T12:52:40Z + Date Added2009-10-03T14:59:15Z + Bit Rate248 + Sample Rate44100 + CommentsAmazon.com Song ID: 203928804 + Play Count1 + Play Date3338011415 + Play Date UTC2009-10-10T03:53:35Z + Artwork Count1 + Persistent IDCBF3869F8EBE64D9 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Be%CC%81la%20Fleck/Perpetual%20Motion/05%20Pre%CC%81lude%20from%20Partita%20No.%203%20for%20Solo%20Violin%20(BWV%201006)%20(Instrumental).mp3 + File Folder Count4 + Library Folder Count1 + + 6160 + + Track ID6160 + NameEtude in C-sharp minor, Op. 10, No. 4 (Instrumental) + ArtistBéla Fleck + Album ArtistBéla Fleck + ComposerFryderyk Chopin + AlbumPerpetual Motion + GenreClassical + KindMPEG audio file + Size4325562 + Total Time137168 + Disc Number1 + Disc Count1 + Track Number6 + Track Count20 + Year2001 + Date Modified2009-06-19T12:53:34Z + Date Added2009-10-03T14:59:15Z + Bit Rate250 + Sample Rate44100 + CommentsAmazon.com Song ID: 203928778 + Play Count1 + Play Date3338011553 + Play Date UTC2009-10-10T03:55:53Z + Artwork Count1 + Persistent ID0626694CADFCDFE8 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Be%CC%81la%20Fleck/Perpetual%20Motion/06%20Etude%20in%20C-sharp%20minor,%20Op.%2010,%20No.%204%20(Instrumental).mp3 + File Folder Count4 + Library Folder Count1 + + 6162 + + Track ID6162 + NameMazurka in F-sharp minor, Op. 6, No. 1 (Instrumental) + ArtistBéla Fleck + Album ArtistBéla Fleck + ComposerFryderyk Chopin + AlbumPerpetual Motion + GenreClassical + KindMPEG audio file + Size4342298 + Total Time139520 + Disc Number1 + Disc Count1 + Track Number7 + Track Count20 + Year2001 + Date Modified2009-06-19T12:54:26Z + Date Added2009-10-03T14:59:15Z + Bit Rate246 + Sample Rate44100 + CommentsAmazon.com Song ID: 203928785 + Play Count1 + Play Date3338011692 + Play Date UTC2009-10-10T03:58:12Z + Artwork Count1 + Persistent ID75CBF3E34E6333E2 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Be%CC%81la%20Fleck/Perpetual%20Motion/07%20Mazurka%20in%20F-sharp%20minor,%20Op.%206,%20No.%201%20(Instrumental).mp3 + File Folder Count4 + Library Folder Count1 + + 6164 + + Track ID6164 + NameThree-Part Invention (Sinfonia) No. 10 (BWV 796) (Instrumental) + ArtistBéla Fleck + Album ArtistBéla Fleck + ComposerJohann Sebastian Bach (1685-1750) + AlbumPerpetual Motion + GenreClassical + KindMPEG audio file + Size1842322 + Total Time57756 + Disc Number1 + Disc Count1 + Track Number8 + Track Count20 + Year2001 + Date Modified2009-06-19T12:54:48Z + Date Added2009-10-03T14:59:15Z + Bit Rate250 + Sample Rate44100 + CommentsAmazon.com Song ID: 203928782 + Play Count3 + Play Date3425547498 + Play Date UTC2012-07-19T07:28:18Z + Artwork Count1 + Persistent ID5BD96AA88A302026 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Be%CC%81la%20Fleck/Perpetual%20Motion/08%20Three-Part%20Invention%20(Sinfonia)%20No.%2010%20(BWV%20796)%20(Instrumental).mp3 + File Folder Count4 + Library Folder Count1 + + 6166 + + Track ID6166 + NameMelody in E-flat (Instrumental) + ArtistBéla Fleck + Album ArtistBéla Fleck + ComposerPeter Tchaikovsky (1840-1893) + AlbumPerpetual Motion + GenreClassical + KindMPEG audio file + Size5890573 + Total Time189152 + Disc Number1 + Disc Count1 + Track Number9 + Track Count20 + Year2001 + Date Modified2009-06-19T12:55:59Z + Date Added2009-10-03T14:59:15Z + Bit Rate247 + Sample Rate44100 + CommentsAmazon.com Song ID: 203928788 + Play Count3 + Play Date3383147322 + Play Date UTC2011-03-16T13:38:42Z + Artwork Count1 + Persistent ID12CFB916F77625CE + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Be%CC%81la%20Fleck/Perpetual%20Motion/09%20Melody%20in%20E-flat%20(Instrumental).mp3 + File Folder Count4 + Library Folder Count1 + + 6168 + + Track ID6168 + NamePresto in G minor I after Bach from Five Studies for Piano arrangement of J.S. Bach: Finale from Solo Violin Sonata (BWV 1001) (Instrumental) + ArtistBéla Fleck + Album ArtistBéla Fleck + ComposerJohann Sebastian Bach (1685-1750) + AlbumPerpetual Motion + GenreClassical + KindMPEG audio file + Size3165242 + Total Time101851 + Disc Number1 + Disc Count1 + Track Number10 + Track Count20 + Year2001 + Date Modified2009-06-19T12:56:37Z + Date Added2009-10-03T14:59:15Z + Bit Rate245 + Sample Rate44100 + CommentsAmazon.com Song ID: 203928790 + Play Count3 + Play Date3425560197 + Play Date UTC2012-07-19T10:59:57Z + Artwork Count1 + Persistent ID9C74E9504B4ABE81 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Be%CC%81la%20Fleck/Perpetual%20Motion/10%20Presto%20in%20G%20minor%20I%20after%20Bach%20from%20Five%20Studies%20for%20Piano%20arrangement%20of%20J.S.%20Bach_%20Finale%20from%20Solo%20Violin%20Sonata%20(BWV%201001)%20(Instrumental).mp3 + File Folder Count4 + Library Folder Count1 + + 6170 + + Track ID6170 + NamePrélude from Suite for Unaccompanied Cello No. 1 (BWV 1007) (Instrumental) + ArtistBéla Fleck + Album ArtistBéla Fleck + ComposerJohann Sebastian Bach (1685-1750) + AlbumPerpetual Motion + GenreClassical + KindMPEG audio file + Size4183336 + Total Time134086 + Disc Number1 + Disc Count1 + Track Number11 + Track Count20 + Year2001 + Date Modified2009-06-19T12:57:28Z + Date Added2009-10-03T14:59:15Z + Bit Rate247 + Sample Rate44100 + CommentsAmazon.com Song ID: 203928776 + Play Count1 + Play Date3361691744 + Play Date UTC2010-07-11T05:45:44Z + Artwork Count1 + Persistent IDA5056EAF076EF9D0 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Be%CC%81la%20Fleck/Perpetual%20Motion/11%20Pre%CC%81lude%20from%20Suite%20for%20Unaccompanied%20Cello%20No.%201%20(BWV%201007)%20(Instrumental).mp3 + File Folder Count4 + Library Folder Count1 + + 6172 + + Track ID6172 + NameThree-Part Invention (Sinfonia) No. 15 (BWV 801) (Instrumental) + ArtistBéla Fleck + Album ArtistBéla Fleck + ComposerJohann Sebastian Bach (1685-1750) + AlbumPerpetual Motion + GenreClassical + KindMPEG audio file + Size2271430 + Total Time72359 + Disc Number1 + Disc Count1 + Track Number12 + Track Count20 + Year2001 + Date Modified2009-06-19T12:57:57Z + Date Added2009-10-03T14:59:16Z + Bit Rate247 + Sample Rate44100 + CommentsAmazon.com Song ID: 203928796 + Play Count1 + Play Date3361691816 + Play Date UTC2010-07-11T05:46:56Z + Artwork Count1 + Persistent IDB5DD51B7336F2573 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Be%CC%81la%20Fleck/Perpetual%20Motion/12%20Three-Part%20Invention%20(Sinfonia)%20No.%2015%20(BWV%20801)%20(Instrumental).mp3 + File Folder Count4 + Library Folder Count1 + + 6174 + + Track ID6174 + NameMoto Perpetuo, Op. 11, No. 2 (Instrumental) + ArtistBéla Fleck + Album ArtistBéla Fleck + ComposerNicoló Paganini (1782-1840) + AlbumPerpetual Motion + GenreClassical + KindMPEG audio file + Size6908110 + Total Time219036 + Disc Number1 + Disc Count1 + Track Number13 + Track Count20 + Year2001 + Date Modified2009-06-19T12:59:19Z + Date Added2009-10-03T14:59:16Z + Bit Rate251 + Sample Rate44100 + CommentsAmazon.com Song ID: 203928781 + Play Count1 + Play Date3361692035 + Play Date UTC2010-07-11T05:50:35Z + Artwork Count1 + Persistent IDB4992EBF6FB63AE5 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Be%CC%81la%20Fleck/Perpetual%20Motion/13%20Moto%20Perpetuo,%20Op.%2011,%20No.%202%20(Instrumental).mp3 + File Folder Count4 + Library Folder Count1 + + 6176 + + Track ID6176 + NameKeyboard Sonata in D minor (K. 213, L. 108) (Instrumental) + ArtistBéla Fleck + Album ArtistBéla Fleck + ComposerDomenico Scarlatti (1685-1757) + AlbumPerpetual Motion + GenreClassical + KindMPEG audio file + Size6046584 + Total Time192574 + Disc Number1 + Disc Count1 + Track Number14 + Track Count20 + Year2001 + Date Modified2009-06-19T13:00:48Z + Date Added2009-10-03T14:59:16Z + Bit Rate249 + Sample Rate44100 + CommentsAmazon.com Song ID: 203928792 + Play Count1 + Play Date3361692227 + Play Date UTC2010-07-11T05:53:47Z + Artwork Count1 + Persistent IDF23A6AF06A4B65AC + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Be%CC%81la%20Fleck/Perpetual%20Motion/14%20Keyboard%20Sonata%20in%20D%20minor%20(K.%20213,%20L.%20108)%20(Instrumental).mp3 + File Folder Count4 + Library Folder Count1 + + 6178 + + Track ID6178 + NameTwo-Part Invention No. 6 (BWV 777) (Instrumental) + ArtistBéla Fleck + Album ArtistBéla Fleck + ComposerJohann Sebastian Bach (1685-1750) + AlbumPerpetual Motion + GenreClassical + KindMPEG audio file + Size4688764 + Total Time148453 + Disc Number1 + Disc Count1 + Track Number15 + Track Count20 + Year2001 + Date Modified2009-06-19T13:01:48Z + Date Added2009-10-03T14:59:16Z + Bit Rate250 + Sample Rate44100 + CommentsAmazon.com Song ID: 203928794 + Artwork Count1 + Persistent ID0E78AC801B75BFC0 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Be%CC%81la%20Fleck/Perpetual%20Motion/15%20Two-Part%20Invention%20No.%206%20(BWV%20777)%20(Instrumental).mp3 + File Folder Count4 + Library Folder Count1 + + 6180 + + Track ID6180 + NameAdagio sostenuto from Piano Sonata No. 14 in C-sharp minor, Op. 27, No. 2 "Moonlight" (Instrumental) + ArtistBéla Fleck + Album ArtistBéla Fleck + ComposerLudwig Van Beethoven (1770-1827) + AlbumPerpetual Motion + GenreClassical + KindMPEG audio file + Size9474123 + Total Time302733 + Disc Number1 + Disc Count1 + Track Number16 + Track Count20 + Year2001 + Date Modified2009-06-19T13:03:46Z + Date Added2009-10-03T14:59:16Z + Bit Rate249 + Sample Rate44100 + CommentsAmazon.com Song ID: 203928779 + Artwork Count1 + Persistent ID22F4EF13F77D5559 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Be%CC%81la%20Fleck/Perpetual%20Motion/16%20Adagio%20sostenuto%20from%20Piano%20Sonata%20No.%2014%20in%20C-sharp%20minor,%20Op.%2027,%20No.%202%20_Moonlight_%20(Instrumental).mp3 + File Folder Count4 + Library Folder Count1 + + 6182 + + Track ID6182 + NameTwo-Part Invention No. 11 (BWV 782) (Instrumental) + ArtistBéla Fleck + Album ArtistBéla Fleck + ComposerJohann Sebastian Bach (1685-1750) + AlbumPerpetual Motion + GenreClassical + KindMPEG audio file + Size1698202 + Total Time55719 + Disc Number1 + Disc Count1 + Track Number17 + Track Count20 + Year2001 + Date Modified2009-06-19T13:04:09Z + Date Added2009-10-03T14:59:16Z + Bit Rate238 + Sample Rate44100 + CommentsAmazon.com Song ID: 203928800 + Artwork Count1 + Persistent ID4B226820A2D89841 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Be%CC%81la%20Fleck/Perpetual%20Motion/17%20Two-Part%20Invention%20No.%2011%20(BWV%20782)%20(Instrumental).mp3 + File Folder Count4 + Library Folder Count1 + + 6184 + + Track ID6184 + NameSeven Variations on "God Save the King" (Instrumental) + ArtistBéla Fleck + Album ArtistBéla Fleck + ComposerLudwig Van Beethoven (1770-1827) + AlbumPerpetual Motion + GenreClassical + KindMPEG audio file + Size17058182 + Total Time542981 + Disc Number1 + Disc Count1 + Track Number18 + Track Count20 + Year2001 + Date Modified2009-06-19T13:07:31Z + Date Added2009-10-03T14:59:17Z + Bit Rate250 + Sample Rate44100 + CommentsAmazon.com Song ID: 203928783 + Play Count2 + Play Date3484244185 + Play Date UTC2014-05-29T16:06:25Z + Artwork Count1 + Persistent ID7D5EC00D6AEA3245 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Be%CC%81la%20Fleck/Perpetual%20Motion/18%20Seven%20Variations%20on%20_God%20Save%20the%20King_%20(Instrumental).mp3 + File Folder Count4 + Library Folder Count1 + + 6186 + + Track ID6186 + NameThree-Part Invention (Sinfonia) No. 7 (BWV 793) (Instrumental) + ArtistBéla Fleck + Album ArtistBéla Fleck + ComposerJohann Sebastian Bach (1685-1750) + AlbumPerpetual Motion + GenreClassical + KindMPEG audio file + Size3658123 + Total Time117786 + Disc Number1 + Disc Count1 + Track Number19 + Track Count20 + Year2001 + Date Modified2009-06-19T13:08:15Z + Date Added2009-10-03T14:59:17Z + Bit Rate246 + Sample Rate44100 + CommentsAmazon.com Song ID: 203928787 + Play Count1 + Play Date3484298622 + Play Date UTC2014-05-30T07:13:42Z + Artwork Count1 + Persistent IDCAFEC0285F888D72 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Be%CC%81la%20Fleck/Perpetual%20Motion/19%20Three-Part%20Invention%20(Sinfonia)%20No.%207%20(BWV%20793)%20(Instrumental).mp3 + File Folder Count4 + Library Folder Count1 + + 6188 + + Track ID6188 + NameMoto Perpetuo, Op. 11, No. 2 (Bluegrass version) (Bluegrass) + ArtistBéla Fleck + Album ArtistBéla Fleck + ComposerNicoló Paganini (1782-1840) + AlbumPerpetual Motion + GenreClassical + KindMPEG audio file + Size4993103 + Total Time158955 + Disc Number1 + Disc Count1 + Track Number20 + Track Count20 + Year2001 + Date Modified2009-06-19T13:09:15Z + Date Added2009-10-03T14:59:17Z + Bit Rate249 + Sample Rate44100 + CommentsAmazon.com Song ID: 203928798 + Play Count1 + Play Date3484298804 + Play Date UTC2014-05-30T07:16:44Z + Artwork Count1 + Persistent ID72EF6508EBA24AB4 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Be%CC%81la%20Fleck/Perpetual%20Motion/20%20Moto%20Perpetuo,%20Op.%2011,%20No.%202%20(Bluegrass%20version)%20(Bluegrass).mp3 + File Folder Count4 + Library Folder Count1 + + 6190 + + Track ID6190 + NameFoxglove + ArtistBruce Cockburn + ComposerBruce Cockburn + AlbumSpeechless + GenreFolk + KindAAC audio file + Size2211677 + Total Time87200 + Track Number1 + Track Count15 + Year2005 + Date Modified2007-08-09T04:28:34Z + Date Added2009-10-03T14:59:17Z + Bit Rate192 + Sample Rate44100 + Play Count3 + Play Date3391353005 + Play Date UTC2011-06-19T13:00:05Z + Normalization1012 + Artwork Count1 + Persistent ID25B7A99894598865 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bruce%20Cockburn/Speechless/01%20Foxglove.m4a + File Folder Count4 + Library Folder Count1 + + 6192 + + Track ID6192 + NameTrain In The Rain + ArtistBruce Cockburn + ComposerBruce Cockburn + AlbumSpeechless + GenreFolk + KindAAC audio file + Size5493432 + Total Time224106 + Track Number2 + Track Count15 + Year2005 + Date Modified2007-08-09T04:29:11Z + Date Added2009-10-03T14:59:17Z + Bit Rate192 + Sample Rate44100 + Play Count4 + Play Date3397495452 + Play Date UTC2011-08-29T15:14:12Z + Normalization1533 + Artwork Count1 + Persistent ID601821263FF5B2AB + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bruce%20Cockburn/Speechless/02%20Train%20In%20The%20Rain.m4a + File Folder Count4 + Library Folder Count1 + + 6194 + + Track ID6194 + NameWater Into Wine + ArtistBruce Cockburn + ComposerBruce Cockburn + AlbumSpeechless + GenreFolk + KindAAC audio file + Size8327678 + Total Time331520 + Track Number3 + Track Count15 + Year2005 + Date Modified2007-08-09T04:30:04Z + Date Added2009-10-03T14:59:17Z + Bit Rate192 + Sample Rate44100 + Play Count2 + Play Date3391353561 + Play Date UTC2011-06-19T13:09:21Z + Normalization1259 + Artwork Count1 + Persistent ID25E88D5E952D7E17 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bruce%20Cockburn/Speechless/03%20Water%20Into%20Wine.m4a + File Folder Count4 + Library Folder Count1 + + 6196 + + Track ID6196 + NameElegy + ArtistBruce Cockburn + ComposerBruce Cockburn + AlbumSpeechless + GenreFolk + KindAAC audio file + Size6037376 + Total Time246293 + Track Number4 + Track Count15 + Year2005 + Date Modified2007-08-09T04:30:45Z + Date Added2009-10-03T14:59:17Z + Bit Rate192 + Sample Rate44100 + Play Count2 + Play Date3391353807 + Play Date UTC2011-06-19T13:13:27Z + Normalization1256 + Artwork Count1 + Persistent IDF800E2C1732DFB77 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bruce%20Cockburn/Speechless/04%20Elegy.m4a + File Folder Count4 + Library Folder Count1 + + 6198 + + Track ID6198 + NameMistress Of Storms + ArtistBruce Cockburn + ComposerBruce Cockburn + AlbumSpeechless + GenreFolk + KindAAC audio file + Size9391588 + Total Time369840 + Track Number5 + Track Count15 + Year2005 + Date Modified2007-08-09T04:31:41Z + Date Added2009-10-03T14:59:18Z + Bit Rate192 + Sample Rate44100 + Play Count3 + Play Date3399467716 + Play Date UTC2011-09-21T11:05:16Z + Normalization951 + Artwork Count1 + Persistent IDD24D4D7A3B2A866B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bruce%20Cockburn/Speechless/05%20Mistress%20Of%20Storms.m4a + File Folder Count4 + Library Folder Count1 + + 6200 + + Track ID6200 + NameRouler Sa Bosse + ArtistBruce Cockburn + ComposerBruce Cockburn + AlbumSpeechless + GenreFolk + KindAAC audio file + Size5620767 + Total Time227613 + Track Number6 + Track Count15 + Year2005 + Date Modified2007-08-09T04:32:21Z + Date Added2009-10-03T14:59:18Z + Bit Rate192 + Sample Rate44100 + Play Count2 + Play Date3391354405 + Play Date UTC2011-06-19T13:23:25Z + Normalization1219 + Artwork Count1 + Persistent ID8C1A2EF320E16E45 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bruce%20Cockburn/Speechless/06%20Rouler%20Sa%20Bosse.m4a + File Folder Count4 + Library Folder Count1 + + 6202 + + Track ID6202 + NameSalt, Sun And Time + ArtistBruce Cockburn + ComposerBruce Cockburn + AlbumSpeechless + GenreFolk + KindAAC audio file + Size4709319 + Total Time190440 + Track Number7 + Track Count15 + Year2005 + Date Modified2007-08-09T04:32:52Z + Date Added2009-10-03T14:59:18Z + Bit Rate192 + Sample Rate44100 + Play Count3 + Play Date3397572987 + Play Date UTC2011-08-30T12:46:27Z + Normalization1256 + Artwork Count1 + Persistent IDE1FED9680CE76B40 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bruce%20Cockburn/Speechless/07%20Salt,%20Sun%20And%20Time.m4a + File Folder Count4 + Library Folder Count1 + + 6204 + + Track ID6204 + NameIslands In A Black Sky + ArtistBruce Cockburn + ComposerBruce Cockburn + AlbumSpeechless + GenreFolk + KindAAC audio file + Size11352529 + Total Time460173 + Track Number8 + Track Count15 + Year2005 + Date Modified2007-08-09T04:34:08Z + Date Added2009-10-03T14:59:18Z + Bit Rate192 + Sample Rate44100 + Play Count2 + Play Date3391355055 + Play Date UTC2011-06-19T13:34:15Z + Normalization1256 + Artwork Count1 + Persistent ID190B8C334F53F995 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bruce%20Cockburn/Speechless/08%20Islands%20In%20A%20Black%20Sky.m4a + File Folder Count4 + Library Folder Count1 + + 6206 + + Track ID6206 + NameRise And Fall + ArtistBruce Cockburn + ComposerBruce Cockburn + AlbumSpeechless + GenreFolk + KindAAC audio file + Size12407906 + Total Time497173 + Track Number9 + Track Count15 + Year2005 + Date Modified2007-08-09T04:35:27Z + Date Added2009-10-03T14:59:18Z + Bit Rate192 + Sample Rate44100 + Play Count2 + Play Date3391355552 + Play Date UTC2011-06-19T13:42:32Z + Normalization1256 + Artwork Count1 + Persistent ID678B1059CE559BA5 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bruce%20Cockburn/Speechless/09%20Rise%20And%20Fall.m4a + File Folder Count4 + Library Folder Count1 + + 6208 + + Track ID6208 + NameSunrise On The Mississippi + ArtistBruce Cockburn + ComposerBruce Cockburn + AlbumSpeechless + GenreFolk + KindAAC audio file + Size4447553 + Total Time180880 + Track Number10 + Track Count15 + Year2005 + Date Modified2007-08-09T04:35:57Z + Date Added2009-10-03T14:59:18Z + Bit Rate192 + Sample Rate44100 + Play Count2 + Play Date3391357433 + Play Date UTC2011-06-19T14:13:53Z + Normalization1207 + Artwork Count1 + Persistent IDA850B02D14BBAE14 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bruce%20Cockburn/Speechless/10%20Sunrise%20On%20The%20Mississippi.m4a + File Folder Count4 + Library Folder Count1 + + 6210 + + Track ID6210 + NameKing Kong Goes To Tallahassee + ArtistBruce Cockburn + ComposerBruce Cockburn + AlbumSpeechless + GenreFolk + KindAAC audio file + Size4547067 + Total Time184946 + Track Number11 + Track Count15 + Year2005 + Date Modified2007-08-09T04:36:27Z + Date Added2009-10-03T14:59:18Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3337670197 + Play Date UTC2009-10-06T05:06:37Z + Normalization1256 + Artwork Count1 + Persistent IDA5B1CB394D95E598 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bruce%20Cockburn/Speechless/11%20King%20Kong%20Goes%20To%20Tallahassee.m4a + File Folder Count4 + Library Folder Count1 + + 6212 + + Track ID6212 + NameWhen It's Gone It's Gone + ArtistBruce Cockburn + ComposerBruce Cockburn + AlbumSpeechless + GenreFolk + KindAAC audio file + Size6359358 + Total Time259200 + Track Number12 + Track Count15 + Year2005 + Date Modified2007-08-09T04:37:08Z + Date Added2009-10-03T14:59:18Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3337670457 + Play Date UTC2009-10-06T05:10:57Z + Normalization1256 + Artwork Count1 + Persistent ID8CF2EBD8824AAA5C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bruce%20Cockburn/Speechless/12%20When%20It's%20Gone%20It's%20Gone.m4a + File Folder Count4 + Library Folder Count1 + + 6214 + + Track ID6214 + NameDeep Lake + ArtistBruce Cockburn + ComposerBruce Cockburn + AlbumSpeechless + GenreFolk + KindAAC audio file + Size10401805 + Total Time408000 + Track Number13 + Track Count15 + Year2005 + Date Modified2007-08-09T04:38:06Z + Date Added2009-10-03T14:59:19Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3337670865 + Play Date UTC2009-10-06T05:17:45Z + Normalization1215 + Artwork Count1 + Persistent ID7FF968D018274D15 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bruce%20Cockburn/Speechless/13%20Deep%20Lake.m4a + File Folder Count4 + Library Folder Count1 + + 6216 + + Track ID6216 + NameThe End Of All Rivers + ArtistBruce Cockburn + ComposerBruce Cockburn + AlbumSpeechless + GenreFolk + KindAAC audio file + Size8686386 + Total Time355306 + Track Number14 + Track Count15 + Year2005 + Date Modified2007-08-09T04:38:52Z + Date Added2009-10-03T14:59:19Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3337671220 + Play Date UTC2009-10-06T05:23:40Z + Normalization1458 + Artwork Count1 + Sort NameEnd Of All Rivers + Persistent ID82CE507A3F9B499D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bruce%20Cockburn/Speechless/14%20The%20End%20Of%20All%20Rivers.m4a + File Folder Count4 + Library Folder Count1 + + 6218 + + Track ID6218 + NameSunwheel Dance + ArtistBruce Cockburn + ComposerBruce Cockburn + AlbumSpeechless + GenreFolk + KindAAC audio file + Size2673984 + Total Time106266 + Track Number15 + Track Count15 + Year2005 + Date Modified2007-08-09T04:39:07Z + Date Added2009-10-03T14:59:19Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3337671326 + Play Date UTC2009-10-06T05:25:26Z + Normalization1143 + Artwork Count1 + Persistent ID891B9C2A1050D598 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bruce%20Cockburn/Speechless/15%20Sunwheel%20Dance.m4a + File Folder Count4 + Library Folder Count1 + + 6220 + + Track ID6220 + NameSky Saw (2004 Digital Remaster) + ArtistBrian Eno + Album ArtistBrian Eno + ComposerBrian Eno + AlbumAnother Green World + GenrePop + KindMPEG audio file + Size6275765 + Total Time207725 + Disc Number1 + Disc Count1 + Track Number1 + Track Count14 + Year1975 + Date Modified2008-11-23T17:14:24Z + Date Added2009-10-03T14:59:19Z + Bit Rate240 + Sample Rate44100 + CommentsAmazon.com Song ID: 202025285 + Artwork Count1 + Persistent IDAA1416A81503E73C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Brian%20Eno/Another%20Green%20World/01%20Sky%20Saw%20(2004%20Digital%20Remaster).mp3 + File Folder Count4 + Library Folder Count1 + + 6222 + + Track ID6222 + NameOver Fire Island (2004 Digital Remaster) + ArtistBrian Eno + Album ArtistBrian Eno + ComposerBrian Eno + AlbumAnother Green World + GenrePop + KindMPEG audio file + Size3167406 + Total Time111255 + Disc Number1 + Disc Count1 + Track Number2 + Track Count14 + Year1975 + Date Modified2008-11-23T17:15:10Z + Date Added2009-10-03T14:59:19Z + Bit Rate224 + Sample Rate44100 + CommentsAmazon.com Song ID: 202025286 + Artwork Count1 + Persistent ID6A712BEFF6951FC8 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Brian%20Eno/Another%20Green%20World/02%20Over%20Fire%20Island%20(2004%20Digital%20Remaster).mp3 + File Folder Count4 + Library Folder Count1 + + 6224 + + Track ID6224 + NameSt Elmo's Fire (2004 Digital Remaster) + ArtistBrian Eno + Album ArtistBrian Eno + ComposerBrian Eno + AlbumAnother Green World + GenrePop + KindMPEG audio file + Size5302243 + Total Time182465 + Disc Number1 + Disc Count1 + Track Number3 + Track Count14 + Year1975 + Date Modified2008-11-23T17:16:57Z + Date Added2009-10-03T14:59:19Z + Bit Rate230 + Sample Rate44100 + CommentsAmazon.com Song ID: 202025287 + Artwork Count1 + Persistent IDBAE7A09D52B4EA71 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Brian%20Eno/Another%20Green%20World/03%20St%20Elmo's%20Fire%20(2004%20Digital%20Remaster).mp3 + File Folder Count4 + Library Folder Count1 + + 6226 + + Track ID6226 + NameIn Dark Trees (2004 Digital Remaster) + ArtistBrian Eno + Album ArtistBrian Eno + ComposerBrian Eno + AlbumAnother Green World + GenrePop + KindMPEG audio file + Size4425561 + Total Time151614 + Disc Number1 + Disc Count1 + Track Number4 + Track Count14 + Year1975 + Date Modified2008-11-23T17:18:36Z + Date Added2009-10-03T14:59:19Z + Bit Rate231 + Sample Rate44100 + CommentsAmazon.com Song ID: 202025288 + Artwork Count1 + Persistent ID88695C732BBA8D60 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Brian%20Eno/Another%20Green%20World/04%20In%20Dark%20Trees%20(2004%20Digital%20Remaster).mp3 + File Folder Count4 + Library Folder Count1 + + 6228 + + Track ID6228 + NameThe Big Ship (2004 Digital Remaster) + ArtistBrian Eno + Album ArtistBrian Eno + ComposerBrian Eno + AlbumAnother Green World + GenrePop + KindMPEG audio file + Size5278796 + Total Time181995 + Disc Number1 + Disc Count1 + Track Number5 + Track Count14 + Year1975 + Date Modified2008-11-23T17:20:48Z + Date Added2009-10-03T14:59:20Z + Bit Rate230 + Sample Rate44100 + CommentsAmazon.com Song ID: 202025289 + Artwork Count1 + Sort NameBig Ship (2004 Digital Remaster) + Persistent ID501A703F9AB5D89C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Brian%20Eno/Another%20Green%20World/05%20The%20Big%20Ship%20(2004%20Digital%20Remaster).mp3 + File Folder Count4 + Library Folder Count1 + + 6230 + + Track ID6230 + NameI'll Come Running (2004 Digital Remaster) + ArtistBrian Eno + Album ArtistBrian Eno + ComposerBrian Eno + AlbumAnother Green World + GenrePop + KindMPEG audio file + Size6504834 + Total Time229877 + Disc Number1 + Disc Count1 + Track Number6 + Track Count14 + Year1975 + Date Modified2008-11-23T17:23:14Z + Date Added2009-10-03T14:59:20Z + Bit Rate225 + Sample Rate44100 + CommentsAmazon.com Song ID: 202025290 + Artwork Count1 + Persistent ID86E6313879D2CE2B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Brian%20Eno/Another%20Green%20World/06%20I'll%20Come%20Running%20(2004%20Digital%20Remaster).mp3 + File Folder Count4 + Library Folder Count1 + + 6232 + + Track ID6232 + NameAnother Green World (2004 Digital Remaster) + ArtistBrian Eno + Album ArtistBrian Eno + ComposerBrian Eno + AlbumAnother Green World + GenrePop + KindMPEG audio file + Size2912167 + Total Time101746 + Disc Number1 + Disc Count1 + Track Number7 + Track Count14 + Year1975 + Date Modified2008-11-23T17:24:17Z + Date Added2009-10-03T14:59:20Z + Bit Rate225 + Sample Rate44100 + CommentsAmazon.com Song ID: 202025291 + Play Count1 + Play Date3368624518 + Play Date UTC2010-09-29T11:31:58Z + Artwork Count1 + Persistent ID9995DAC9D90DB682 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Brian%20Eno/Another%20Green%20World/07%20Another%20Green%20World%20(2004%20Digital%20Remaster).mp3 + File Folder Count4 + Library Folder Count1 + + 6234 + + Track ID6234 + NameSombre Reptiles (2004 Digital Remaster) + ArtistBrian Eno + Album ArtistBrian Eno + ComposerBrian Eno + AlbumAnother Green World + GenrePop + KindMPEG audio file + Size3975217 + Total Time141087 + Disc Number1 + Disc Count1 + Track Number8 + Track Count14 + Year1975 + Date Modified2008-11-23T17:25:42Z + Date Added2009-10-03T14:59:20Z + Bit Rate223 + Sample Rate44100 + CommentsAmazon.com Song ID: 202025292 + Artwork Count1 + Persistent ID812C01F796178D11 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Brian%20Eno/Another%20Green%20World/08%20Sombre%20Reptiles%20(2004%20Digital%20Remaster).mp3 + File Folder Count4 + Library Folder Count1 + + 6236 + + Track ID6236 + NameLittle Fishes (2004 Digital Remaster) + ArtistBrian Eno + Album ArtistBrian Eno + ComposerBrian Eno + AlbumAnother Green World + GenrePop + KindMPEG audio file + Size2740403 + Total Time94641 + Disc Number1 + Disc Count1 + Track Number9 + Track Count14 + Year1975 + Date Modified2008-11-23T17:26:45Z + Date Added2009-10-03T14:59:20Z + Bit Rate228 + Sample Rate44100 + CommentsAmazon.com Song ID: 202025293 + Artwork Count1 + Persistent ID23C7683AC891BDE9 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Brian%20Eno/Another%20Green%20World/09%20Little%20Fishes%20(2004%20Digital%20Remaster).mp3 + File Folder Count4 + Library Folder Count1 + + 6238 + + Track ID6238 + NameGolden Hours (2004 Digital Remaster) + ArtistBrian Eno + Album ArtistBrian Eno + ComposerBrian Eno + AlbumAnother Green World + GenrePop + KindMPEG audio file + Size6888098 + Total Time240222 + Disc Number1 + Disc Count1 + Track Number10 + Track Count14 + Year1975 + Date Modified2008-11-23T17:29:30Z + Date Added2009-10-03T14:59:20Z + Bit Rate228 + Sample Rate44100 + CommentsAmazon.com Song ID: 202025294 + Artwork Count1 + Persistent ID47F792D9D4CAE895 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Brian%20Eno/Another%20Green%20World/10%20Golden%20Hours%20(2004%20Digital%20Remaster).mp3 + File Folder Count4 + Library Folder Count1 + + 6240 + + Track ID6240 + NameBecalmed (2004 Digital Remaster) + ArtistBrian Eno + Album ArtistBrian Eno + ComposerBrian Eno + AlbumAnother Green World + GenrePop + KindMPEG audio file + Size6571570 + Total Time236800 + Disc Number1 + Disc Count1 + Track Number11 + Track Count14 + Year1975 + Date Modified2008-11-23T17:31:38Z + Date Added2009-10-03T14:59:21Z + Bit Rate220 + Sample Rate44100 + CommentsAmazon.com Song ID: 202025295 + Artwork Count1 + Persistent IDB08B02D7A19F8026 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Brian%20Eno/Another%20Green%20World/11%20Becalmed%20(2004%20Digital%20Remaster).mp3 + File Folder Count4 + Library Folder Count1 + + 6242 + + Track ID6242 + NameZawinul/Lava (2004 Digital Remaster) + ArtistBrian Eno + Album ArtistBrian Eno + ComposerBrian Eno + AlbumAnother Green World + GenrePop + KindMPEG audio file + Size5110548 + Total Time180349 + Disc Number1 + Disc Count1 + Track Number12 + Track Count14 + Year1975 + Date Modified2008-11-23T17:33:20Z + Date Added2009-10-03T14:59:21Z + Bit Rate224 + Sample Rate44100 + CommentsAmazon.com Song ID: 202025296 + Artwork Count1 + Persistent ID429DED71B10741E1 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Brian%20Eno/Another%20Green%20World/12%20Zawinul_Lava%20(2004%20Digital%20Remaster).mp3 + File Folder Count4 + Library Folder Count1 + + 6244 + + Track ID6244 + NameEverything Merges With The Night (2004 Digital Remaster) + ArtistBrian Eno + Album ArtistBrian Eno + ComposerBrian Eno + AlbumAnother Green World + GenrePop + KindMPEG audio file + Size6876978 + Total Time239360 + Disc Number1 + Disc Count1 + Track Number13 + Track Count14 + Year1975 + Date Modified2008-11-23T17:35:41Z + Date Added2009-10-03T14:59:21Z + Bit Rate228 + Sample Rate44100 + CommentsAmazon.com Song ID: 202025297 + Artwork Count1 + Persistent ID9A7EC6DEE1AFA997 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Brian%20Eno/Another%20Green%20World/13%20Everything%20Merges%20With%20The%20Night%20(2004%20Digital%20Remaster).mp3 + File Folder Count4 + Library Folder Count1 + + 6246 + + Track ID6246 + NameSpirits Drifting (2004 Digital Remaster) + ArtistBrian Eno + Album ArtistBrian Eno + ComposerBrian Eno + AlbumAnother Green World + GenrePop + KindMPEG audio file + Size4311808 + Total Time156238 + Disc Number1 + Disc Count1 + Track Number14 + Track Count14 + Year1975 + Date Modified2008-11-23T17:37:12Z + Date Added2009-10-03T14:59:21Z + Bit Rate218 + Sample Rate44100 + CommentsAmazon.com Song ID: 202025298 + Artwork Count1 + Persistent IDCCBDF528F4CAD62B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Brian%20Eno/Another%20Green%20World/14%20Spirits%20Drifting%20(2004%20Digital%20Remaster).mp3 + File Folder Count4 + Library Folder Count1 + + 6248 + + Track ID6248 + Name1/1 + ArtistBrian Eno + ComposerBrian Eno, Robert Wyatt, Rhett Davies + AlbumAmbient 1 Music For Airports + GenreElectronica/Dance + KindAAC audio file + Size33148265 + Total Time1045093 + Disc Number1 + Disc Count1 + Track Number1 + Track Count4 + Year1978 + BPM192 + Date Modified2011-10-08T11:52:45Z + Date Added2009-10-03T14:59:21Z + Bit Rate256 + Sample Rate44100 + Play Count3 + Play Date3437810234 + Play Date UTC2012-12-08T05:47:14Z + Normalization601 + Persistent ID537E7A8B5E97B4F1 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Brian%20Eno/Ambient%201%20Music%20For%20Airports/01%201_1.m4a + File Folder Count4 + Library Folder Count1 + + 6250 + + Track ID6250 + Name1/2 + ArtistBrian Eno + ComposerBrian Eno, Robert Wyatt, Rhett Davies + AlbumAmbient 1 Music For Airports + GenreElectronica/Dance + KindAAC audio file + Size16748339 + Total Time534240 + Disc Number1 + Disc Count1 + Track Number2 + Track Count4 + Year1978 + BPM192 + Date Modified2011-10-08T11:52:47Z + Date Added2009-10-03T14:59:21Z + Bit Rate256 + Sample Rate44100 + Normalization383 + Persistent IDC3033392AD3C1198 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Brian%20Eno/Ambient%201%20Music%20For%20Airports/02%201_2.m4a + File Folder Count4 + Library Folder Count1 + + 6252 + + Track ID6252 + Name2/1 + ArtistBrian Eno + ComposerBrian Eno, Robert Wyatt, Rhett Davies + AlbumAmbient 1 Music For Airports + GenreElectronica/Dance + KindAAC audio file + Size22841242 + Total Time725533 + Disc Number1 + Disc Count1 + Track Number3 + Track Count4 + Year1978 + BPM192 + Date Modified2011-10-08T11:52:47Z + Date Added2009-10-03T14:59:22Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3428228381 + Play Date UTC2012-08-19T08:09:41Z + Normalization180 + Persistent IDD4F2637595023C3C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Brian%20Eno/Ambient%201%20Music%20For%20Airports/03%202_1.m4a + File Folder Count4 + Library Folder Count1 + + 6254 + + Track ID6254 + Name2/2 + ArtistBrian Eno + ComposerBrian Eno, Robert Wyatt, Rhett Davies + AlbumAmbient 1 Music For Airports + GenreElectronica/Dance + KindAAC audio file + Size18613276 + Total Time608760 + Disc Number1 + Disc Count1 + Track Number4 + Track Count4 + Year1978 + BPM192 + Date Modified2011-10-08T11:52:49Z + Date Added2009-10-03T14:59:22Z + Bit Rate256 + Sample Rate44100 + Normalization1204 + Persistent ID9EC691EC99FA300C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Brian%20Eno/Ambient%201%20Music%20For%20Airports/04%202_2.m4a + File Folder Count4 + Library Folder Count1 + + 6256 + + Track ID6256 + NameCinnan chiru kiliye + ArtistBombay sisters + AlbumBarathiyar songs + KindAAC audio file + Size7971024 + Total Time331904 + Track Number1 + Track Count12 + Date Modified2007-04-03T15:09:58Z + Date Added2009-10-03T14:59:23Z + Bit Rate192 + Sample Rate44100 + Normalization7512 + Artwork Count1 + Persistent IDE5530356B57EFEE6 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bombay%20sisters/Barathiyar%20songs/01%20Cinnan%20chiru%20kiliye.m4a + File Folder Count4 + Library Folder Count1 + + 6258 + + Track ID6258 + Namekayiley pullippathenne + ArtistBombay sisters + AlbumBarathiyar songs + KindAAC audio file + Size6871077 + Total Time286138 + Track Number2 + Track Count12 + Date Modified2007-04-03T15:10:00Z + Date Added2009-10-03T14:59:24Z + Bit Rate192 + Sample Rate44100 + Normalization7127 + Artwork Count1 + Persistent IDD44D0EFB8055BA1A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bombay%20sisters/Barathiyar%20songs/02%20kayiley%20pullippathenne.m4a + File Folder Count4 + Library Folder Count1 + + 6260 + + Track ID6260 + Nametheeratha velayattu pillai + ArtistBombay sisters + AlbumBarathiyar songs + KindAAC audio file + Size5415407 + Total Time225928 + Track Number3 + Track Count12 + Date Modified2007-04-03T15:10:00Z + Date Added2009-10-03T14:59:24Z + Bit Rate192 + Sample Rate44100 + Normalization6786 + Artwork Count1 + Persistent IDFE7ADF5DB499BF20 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bombay%20sisters/Barathiyar%20songs/03%20theeratha%20velayattu%20pillai.m4a + File Folder Count4 + Library Folder Count1 + + 6262 + + Track ID6262 + Namevellai thamarai + ArtistBombay sisters + AlbumBarathiyar songs + KindAAC audio file + Size7303554 + Total Time304249 + Track Number4 + Track Count12 + Date Modified2007-12-03T03:08:26Z + Date Added2009-10-03T14:59:24Z + Bit Rate192 + Sample Rate44100 + CommentsRaga: Abheri Tala: Adi + Normalization5119 + Artwork Count1 + Persistent ID89CC9E0C38814BC5 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bombay%20sisters/Barathiyar%20songs/04%20vellai%20thamarai.m4a + File Folder Count4 + Library Folder Count1 + + 6264 + + Track ID6264 + Nameenthayum thayum + ArtistBombay sisters + AlbumBarathiyar songs + KindAAC audio file + Size6274487 + Total Time261455 + Track Number5 + Track Count12 + Date Modified2007-04-03T15:10:00Z + Date Added2009-10-03T14:59:24Z + Bit Rate192 + Sample Rate44100 + Normalization7022 + Artwork Count1 + Persistent ID504CEDF79CBE7373 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bombay%20sisters/Barathiyar%20songs/05%20enthayum%20thayum.m4a + File Folder Count4 + Library Folder Count1 + + 6266 + + Track ID6266 + Nameparukkulle nalla nadu + ArtistBombay sisters + AlbumBarathiyar songs + KindAAC audio file + Size8499880 + Total Time353661 + Track Number6 + Track Count12 + Date Modified2007-04-03T15:10:02Z + Date Added2009-10-03T14:59:24Z + Bit Rate192 + Sample Rate44100 + Normalization5481 + Artwork Count1 + Persistent IDDE9F72F92F239B28 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bombay%20sisters/Barathiyar%20songs/06%20parukkulle%20nalla%20nadu.m4a + File Folder Count4 + Library Folder Count1 + + 6268 + + Track ID6268 + Nameethhanai kodi enbam + ArtistBombay sisters + AlbumBarathiyar songs + KindAAC audio file + Size6612039 + Total Time275596 + Track Number7 + Track Count12 + Date Modified2007-04-03T15:10:04Z + Date Added2009-10-03T14:59:24Z + Bit Rate192 + Sample Rate44100 + Normalization4521 + Artwork Count1 + Persistent IDB899C44D44E43241 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bombay%20sisters/Barathiyar%20songs/07%20ethhanai%20kodi%20enbam.m4a + File Folder Count4 + Library Folder Count1 + + 6270 + + Track ID6270 + Namethikku theriyatha katill + ArtistBombay sisters + AlbumBarathiyar songs + KindAAC audio file + Size9373954 + Total Time389559 + Track Number8 + Track Count12 + Date Modified2007-04-03T15:10:04Z + Date Added2009-10-03T14:59:24Z + Bit Rate192 + Sample Rate44100 + Skip Count1 + Skip Date2009-10-05T06:12:58Z + Normalization3926 + Artwork Count1 + Persistent IDC06F9D52046224C4 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bombay%20sisters/Barathiyar%20songs/08%20thikku%20theriyatha%20katill.m4a + File Folder Count4 + Library Folder Count1 + + 6272 + + Track ID6272 + Nameoli padaitha kannai + ArtistBombay sisters + AlbumBarathiyar songs + KindAAC audio file + Size5065866 + Total Time211509 + Track Number9 + Track Count12 + Date Modified2007-04-03T15:10:04Z + Date Added2009-10-03T14:59:24Z + Bit Rate192 + Sample Rate44100 + Normalization7896 + Artwork Count1 + Persistent IDA1E9C2EF456718BD + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bombay%20sisters/Barathiyar%20songs/09%20oli%20padaitha%20kannai.m4a + File Folder Count4 + Library Folder Count1 + + 6274 + + Track ID6274 + Namepayum oli nee yenakku + ArtistBombay sisters + AlbumBarathiyar songs + KindAAC audio file + Size8760523 + Total Time364342 + Track Number10 + Track Count12 + Date Modified2007-04-03T15:10:06Z + Date Added2009-10-03T14:59:24Z + Bit Rate192 + Sample Rate44100 + Normalization4542 + Artwork Count1 + Persistent IDBFFD86BFF77C02BA + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bombay%20sisters/Barathiyar%20songs/10%20payum%20oli%20nee%20yenakku.m4a + File Folder Count4 + Library Folder Count1 + + 6276 + + Track ID6276 + Namekakkai chiraginile + ArtistBombay sisters + AlbumBarathiyar songs + KindAAC audio file + Size5455480 + Total Time227600 + Track Number11 + Track Count12 + Date Modified2007-04-03T15:10:06Z + Date Added2009-10-03T14:59:25Z + Bit Rate192 + Sample Rate44100 + Normalization4996 + Artwork Count1 + Persistent ID3961DED97D0BF270 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bombay%20sisters/Barathiyar%20songs/11%20kakkai%20chiraginile.m4a + File Folder Count4 + Library Folder Count1 + + 6278 + + Track ID6278 + Nametheertha karayiniley + ArtistBombay sisters + AlbumBarathiyar songs + KindAAC audio file + Size7747010 + Total Time320642 + Track Number12 + Track Count12 + Date Modified2007-04-03T15:10:06Z + Date Added2009-10-03T14:59:25Z + Bit Rate192 + Sample Rate44100 + Normalization6497 + Artwork Count1 + Persistent IDCF0A596FB3DB386B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bombay%20sisters/Barathiyar%20songs/12%20theertha%20karayiniley.m4a + File Folder Count4 + Library Folder Count1 + + 6280 + + Track ID6280 + NameNatural Mystic + ArtistBob Marley & The Wailers + ComposerBob Marley + AlbumExodus + GenreReggae + KindAAC audio file + Size5033426 + Total Time207375 + Disc Number1 + Disc Count1 + Track Number1 + Track Count10 + Year1977 + Date Modified2006-08-13T06:30:38Z + Date Added2009-10-03T14:59:25Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3430644557 + Play Date UTC2012-09-16T07:19:17Z + Skip Count1 + Skip Date2014-06-06T04:00:54Z + Normalization1024 + Artwork Count1 + Persistent ID5E4D8BEA469BC436 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Marley%20&%20The%20Wailers/Exodus/01%20Natural%20Mystic.m4a + File Folder Count4 + Library Folder Count1 + + 6282 + + Track ID6282 + NameSo Much Things To Say + ArtistBob Marley & The Wailers + ComposerBob Marley + AlbumExodus + GenreReggae + KindAAC audio file + Size4565306 + Total Time187871 + Disc Number1 + Disc Count1 + Track Number2 + Track Count10 + Year1977 + Date Modified2006-08-13T06:30:36Z + Date Added2009-10-03T14:59:25Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3430644745 + Play Date UTC2012-09-16T07:22:25Z + Normalization1254 + Artwork Count1 + Persistent IDA89A9583E1A5C33D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Marley%20&%20The%20Wailers/Exodus/02%20So%20Much%20Things%20To%20Say.m4a + File Folder Count4 + Library Folder Count1 + + 6284 + + Track ID6284 + NameGuiltiness + ArtistBob Marley & The Wailers + ComposerBob Marley + AlbumExodus + GenreReggae + KindAAC audio file + Size4847094 + Total Time199620 + Disc Number1 + Disc Count1 + Track Number3 + Track Count10 + Year1977 + Date Modified2006-08-13T06:30:34Z + Date Added2009-10-03T14:59:25Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3430644944 + Play Date UTC2012-09-16T07:25:44Z + Normalization1148 + Artwork Count1 + Persistent ID3E6C6C272AFEE956 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Marley%20&%20The%20Wailers/Exodus/03%20Guiltiness.m4a + File Folder Count4 + Library Folder Count1 + + 6286 + + Track ID6286 + NameThe Heathen + ArtistBob Marley & The Wailers + ComposerBob Marley + AlbumExodus + GenreReggae + KindAAC audio file + Size3703715 + Total Time152019 + Disc Number1 + Disc Count1 + Track Number4 + Track Count10 + Year1977 + Date Modified2006-08-13T06:30:32Z + Date Added2009-10-03T14:59:25Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3430645096 + Play Date UTC2012-09-16T07:28:16Z + Normalization1077 + Artwork Count1 + Sort NameHeathen + Persistent IDB983E63FCF15B9A6 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Marley%20&%20The%20Wailers/Exodus/04%20The%20Heathen.m4a + File Folder Count4 + Library Folder Count1 + + 6288 + + Track ID6288 + NameExodus + ArtistBob Marley & The Wailers + ComposerBob Marley + AlbumExodus + GenreReggae + KindAAC audio file + Size11022570 + Total Time455434 + Disc Number1 + Disc Count1 + Track Number5 + Track Count10 + Year1977 + Date Modified2006-08-13T06:30:30Z + Date Added2009-10-03T14:59:25Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3430645553 + Play Date UTC2012-09-16T07:35:53Z + Normalization1230 + Artwork Count1 + Persistent ID40CB5C9240593F35 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Marley%20&%20The%20Wailers/Exodus/05%20Exodus.m4a + File Folder Count4 + Library Folder Count1 + + 6290 + + Track ID6290 + NameJamming + ArtistBob Marley & The Wailers + ComposerBob Marley + AlbumExodus + GenreReggae + KindAAC audio file + Size5123890 + Total Time211137 + Disc Number1 + Disc Count1 + Track Number6 + Track Count10 + Year1977 + Date Modified2006-08-13T06:30:24Z + Date Added2009-10-03T14:59:25Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3430645764 + Play Date UTC2012-09-16T07:39:24Z + Normalization1259 + Artwork Count1 + Persistent ID6C835FB2609791F5 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Marley%20&%20The%20Wailers/Exodus/06%20Jamming.m4a + File Folder Count4 + Library Folder Count1 + + 6292 + + Track ID6292 + NameWaiting In Vain + ArtistBob Marley & The Wailers + ComposerBob Marley + AlbumExodus + GenreReggae + KindAAC audio file + Size6164780 + Total Time255580 + Disc Number1 + Disc Count1 + Track Number7 + Track Count10 + Year1977 + Date Modified2006-08-13T06:30:22Z + Date Added2009-10-03T14:59:25Z + Bit Rate192 + Sample Rate44100 + Normalization1165 + Artwork Count1 + Persistent ID917CA51A6DC772EF + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Marley%20&%20The%20Wailers/Exodus/07%20Waiting%20In%20Vain.m4a + File Folder Count4 + Library Folder Count1 + + 6294 + + Track ID6294 + NameTurn Your Lights Down Low + ArtistBob Marley & The Wailers + ComposerBob Marley + AlbumExodus + GenreReggae + KindAAC audio file + Size5318605 + Total Time219241 + Disc Number1 + Disc Count1 + Track Number8 + Track Count10 + Year1977 + Date Modified2006-08-13T06:30:20Z + Date Added2009-10-03T14:59:26Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Persistent IDF2C28C3E8BEEC4BC + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Marley%20&%20The%20Wailers/Exodus/08%20Turn%20Your%20Lights%20Down%20Low.m4a + File Folder Count4 + Library Folder Count1 + + 6296 + + Track ID6296 + NameThree Little Birds + ArtistBob Marley & The Wailers + ComposerBob Marley + AlbumExodus + GenreReggae + KindAAC audio file + Size4378582 + Total Time180115 + Disc Number1 + Disc Count1 + Track Number9 + Track Count10 + Year1977 + Date Modified2006-08-13T06:30:18Z + Date Added2009-10-03T14:59:26Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Persistent IDDF015D3D4B3EEE41 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Marley%20&%20The%20Wailers/Exodus/09%20Three%20Little%20Birds.m4a + File Folder Count4 + Library Folder Count1 + + 6298 + + Track ID6298 + NameOne Love/People Get Ready + ArtistBob Marley & The Wailers + ComposerCurtis Mayfield + AlbumExodus + GenreReggae + KindAAC audio file + Size4158359 + Total Time171152 + Disc Number1 + Disc Count1 + Track Number10 + Track Count10 + Year1977 + Date Modified2006-08-13T06:30:16Z + Date Added2009-10-03T14:59:26Z + Bit Rate192 + Sample Rate44100 + Normalization1244 + Artwork Count1 + Persistent IDB075F63F11AA588A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Marley%20&%20The%20Wailers/Exodus/10%20One%20Love_People%20Get%20Ready.m4a + File Folder Count4 + Library Folder Count1 + + 6300 + + Track ID6300 + NameBlowin' In The Wind + ArtistBob Dylan + ComposerBob Dylan & B. Dylan/H. Thomas + AlbumThe Freewheelin' Bob Dylan + GenreFolk + KindAAC audio file + Size4109380 + Total Time169039 + Disc Number1 + Disc Count1 + Track Number1 + Track Count13 + Year1963 + Date Modified2006-08-07T15:40:02Z + Date Added2009-10-03T14:59:26Z + Bit Rate192 + Sample Rate44100 + Play Count3 + Play Date3457109046 + Play Date UTC2013-07-19T14:34:06Z + Normalization1642 + Artwork Count1 + Sort AlbumFreewheelin' Bob Dylan + Persistent IDE01EE6E6E4EE7994 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Dylan/The%20Freewheelin'%20Bob%20Dylan/01%20Blowin'%20In%20The%20Wind.m4a + File Folder Count4 + Library Folder Count1 + + 6302 + + Track ID6302 + NameGirl From The North Country + ArtistBob Dylan + ComposerBob Dylan & B. Dylan/H. Thomas + AlbumThe Freewheelin' Bob Dylan + GenreFolk + KindAAC audio file + Size4943507 + Total Time203126 + Disc Number1 + Disc Count1 + Track Number2 + Track Count13 + Year1963 + Date Modified2006-08-07T15:40:02Z + Date Added2009-10-03T14:59:26Z + Bit Rate192 + Sample Rate44100 + Play Count2 + Play Date3390316681 + Play Date UTC2011-06-07T13:08:01Z + Skip Count1 + Skip Date2013-07-19T14:34:14Z + Normalization3038 + Artwork Count1 + Sort AlbumFreewheelin' Bob Dylan + Persistent ID42DFA732E1AD0BFC + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Dylan/The%20Freewheelin'%20Bob%20Dylan/02%20Girl%20From%20The%20North%20Country.m4a + File Folder Count4 + Library Folder Count1 + + 6304 + + Track ID6304 + NameMasters Of War + ArtistBob Dylan + ComposerBob Dylan & B. Dylan/H. Thomas + AlbumThe Freewheelin' Bob Dylan + GenreFolk + KindAAC audio file + Size6750068 + Total Time278220 + Disc Number1 + Disc Count1 + Track Number3 + Track Count13 + Year1963 + Date Modified2006-08-07T15:40:02Z + Date Added2009-10-03T14:59:26Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3390316965 + Play Date UTC2011-06-07T13:12:45Z + Normalization2642 + Artwork Count1 + Sort AlbumFreewheelin' Bob Dylan + Persistent ID8D8D3DA9DB5013C5 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Dylan/The%20Freewheelin'%20Bob%20Dylan/03%20Masters%20Of%20War.m4a + File Folder Count4 + Library Folder Count1 + + 6306 + + Track ID6306 + NameDown The Highway + ArtistBob Dylan + ComposerBob Dylan & B. Dylan/H. Thomas + AlbumThe Freewheelin' Bob Dylan + GenreFolk + KindAAC audio file + Size5158874 + Total Time212089 + Disc Number1 + Disc Count1 + Track Number4 + Track Count13 + Year1963 + Date Modified2006-08-07T15:40:02Z + Date Added2009-10-03T14:59:27Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3390317177 + Play Date UTC2011-06-07T13:16:17Z + Normalization1256 + Artwork Count1 + Sort AlbumFreewheelin' Bob Dylan + Persistent ID43D05AC5F35966EA + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Dylan/The%20Freewheelin'%20Bob%20Dylan/04%20Down%20The%20Highway.m4a + File Folder Count4 + Library Folder Count1 + + 6308 + + Track ID6308 + NameBob Dylan's Blues + ArtistBob Dylan + ComposerBob Dylan & B. Dylan/H. Thomas + AlbumThe Freewheelin' Bob Dylan + GenreFolk + KindAAC audio file + Size3629184 + Total Time148908 + Disc Number1 + Disc Count1 + Track Number5 + Track Count13 + Year1963 + Date Modified2006-08-07T15:40:02Z + Date Added2009-10-03T14:59:27Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3390317326 + Play Date UTC2011-06-07T13:18:46Z + Normalization2918 + Artwork Count1 + Sort AlbumFreewheelin' Bob Dylan + Persistent ID781D73E944C86632 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Dylan/The%20Freewheelin'%20Bob%20Dylan/05%20Bob%20Dylan's%20Blues.m4a + File Folder Count4 + Library Folder Count1 + + 6310 + + Track ID6310 + NameA Hard Rain's A-Gonna Fall + ArtistBob Dylan + ComposerBob Dylan & B. Dylan/H. Thomas + AlbumThe Freewheelin' Bob Dylan + GenreFolk + KindAAC audio file + Size10019774 + Total Time413336 + Disc Number1 + Disc Count1 + Track Number6 + Track Count13 + Year1963 + Date Modified2006-08-07T15:40:02Z + Date Added2009-10-03T14:59:27Z + Bit Rate192 + Sample Rate44100 + Play Count2 + Play Date3481475918 + Play Date UTC2014-04-27T15:08:38Z + Normalization1795 + Artwork Count1 + Sort AlbumFreewheelin' Bob Dylan + Sort NameHard Rain's A-Gonna Fall + Persistent ID9631C07C66C9D0CF + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Dylan/The%20Freewheelin'%20Bob%20Dylan/06%20A%20Hard%20Rain's%20A-Gonna%20Fall.m4a + File Folder Count4 + Library Folder Count1 + + 6312 + + Track ID6312 + NameDon't Think Twice, It's All Right + ArtistBob Dylan + ComposerBob Dylan & B. Dylan/H. Thomas + AlbumThe Freewheelin' Bob Dylan + GenreFolk + KindAAC audio file + Size5372437 + Total Time220982 + Disc Number1 + Disc Count1 + Track Number7 + Track Count13 + Year1963 + Date Modified2006-08-07T15:40:02Z + Date Added2009-10-03T14:59:27Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3390317960 + Play Date UTC2011-06-07T13:29:20Z + Normalization1690 + Artwork Count1 + Sort AlbumFreewheelin' Bob Dylan + Persistent IDDBB9CA540F2429A6 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Dylan/The%20Freewheelin'%20Bob%20Dylan/07%20Don't%20Think%20Twice,%20It's%20All%20Right.m4a + File Folder Count4 + Library Folder Count1 + + 6314 + + Track ID6314 + NameBob Dylan's Dream + ArtistBob Dylan + ComposerBob Dylan & B. Dylan/H. Thomas + AlbumThe Freewheelin' Bob Dylan + GenreFolk + KindAAC audio file + Size7343234 + Total Time302763 + Disc Number1 + Disc Count1 + Track Number8 + Track Count13 + Year1963 + Date Modified2006-08-07T15:40:04Z + Date Added2009-10-03T14:59:27Z + Bit Rate192 + Sample Rate44100 + Normalization3091 + Artwork Count1 + Sort AlbumFreewheelin' Bob Dylan + Persistent IDCEC6BE2DF83BA224 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Dylan/The%20Freewheelin'%20Bob%20Dylan/08%20Bob%20Dylan's%20Dream.m4a + File Folder Count4 + Library Folder Count1 + + 6316 + + Track ID6316 + NameOxford Town + ArtistBob Dylan + ComposerBob Dylan & B. Dylan/H. Thomas + AlbumThe Freewheelin' Bob Dylan + GenreFolk + KindAAC audio file + Size2702710 + Total Time110339 + Disc Number1 + Disc Count1 + Track Number9 + Track Count13 + Year1963 + Date Modified2006-08-07T15:40:04Z + Date Added2009-10-03T14:59:27Z + Bit Rate192 + Sample Rate44100 + Normalization1256 + Artwork Count1 + Sort AlbumFreewheelin' Bob Dylan + Persistent IDA1BC38085724DB93 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Dylan/The%20Freewheelin'%20Bob%20Dylan/09%20Oxford%20Town.m4a + File Folder Count4 + Library Folder Count1 + + 6318 + + Track ID6318 + NameTalking World War III Blues + ArtistBob Dylan + ComposerBob Dylan & B. Dylan/H. Thomas + AlbumThe Freewheelin' Bob Dylan + GenreFolk + KindAAC audio file + Size9395467 + Total Time387539 + Disc Number1 + Disc Count1 + Track Number10 + Track Count13 + Year1963 + Date Modified2006-08-07T15:40:04Z + Date Added2009-10-03T14:59:27Z + Bit Rate192 + Sample Rate44100 + Normalization4041 + Artwork Count1 + Sort AlbumFreewheelin' Bob Dylan + Persistent IDA7D02A27CDE6F9A8 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Dylan/The%20Freewheelin'%20Bob%20Dylan/10%20Talking%20World%20War%20III%20Blues.m4a + File Folder Count4 + Library Folder Count1 + + 6320 + + Track ID6320 + NameCorrina, Corrina + ArtistBob Dylan + ComposerBob Dylan & B. Dylan/H. Thomas + AlbumThe Freewheelin' Bob Dylan + GenreFolk + KindAAC audio file + Size3993190 + Total Time164070 + Disc Number1 + Disc Count1 + Track Number11 + Track Count13 + Year1963 + Date Modified2006-08-07T15:40:04Z + Date Added2009-10-03T14:59:27Z + Bit Rate192 + Sample Rate44100 + Normalization2028 + Artwork Count1 + Sort AlbumFreewheelin' Bob Dylan + Persistent IDC116BDFA99567757 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Dylan/The%20Freewheelin'%20Bob%20Dylan/11%20Corrina,%20Corrina.m4a + File Folder Count4 + Library Folder Count1 + + 6322 + + Track ID6322 + NameHoney, Just Allow Me One More Chance + ArtistBob Dylan + ComposerBob Dylan & B. Dylan/H. Thomas + AlbumThe Freewheelin' Bob Dylan + GenreFolk + KindAAC audio file + Size2955301 + Total Time120858 + Disc Number1 + Disc Count1 + Track Number12 + Track Count13 + Year1963 + Date Modified2006-08-07T15:40:04Z + Date Added2009-10-03T14:59:27Z + Bit Rate192 + Sample Rate44100 + Normalization4896 + Artwork Count1 + Sort AlbumFreewheelin' Bob Dylan + Persistent ID91E2DA9234BBD685 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Dylan/The%20Freewheelin'%20Bob%20Dylan/12%20Honey,%20Just%20Allow%20Me%20One%20More%20Chance.m4a + File Folder Count4 + Library Folder Count1 + + 6324 + + Track ID6324 + NameI Shall Be Free + ArtistBob Dylan + ComposerBob Dylan & B. Dylan/H. Thomas + AlbumThe Freewheelin' Bob Dylan + GenreFolk + KindAAC audio file + Size6970611 + Total Time287484 + Disc Number1 + Disc Count1 + Track Number13 + Track Count13 + Year1963 + Date Modified2006-08-07T15:40:04Z + Date Added2009-10-03T14:59:28Z + Bit Rate192 + Sample Rate44100 + Normalization4250 + Artwork Count1 + Sort AlbumFreewheelin' Bob Dylan + Persistent ID71DC047E956926B2 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Dylan/The%20Freewheelin'%20Bob%20Dylan/13%20I%20Shall%20Be%20Free.m4a + File Folder Count4 + Library Folder Count1 + + 6326 + + Track ID6326 + NameTweedle Dee & Tweedle Dum + ArtistBob Dylan + ComposerBob Dylan + AlbumLove & Theft + GenreFolk + KindAAC audio file + Size6902248 + Total Time286532 + Disc Number1 + Disc Count1 + Track Number1 + Track Count12 + Year2001 + Date Modified2006-08-07T08:13:24Z + Date Added2009-10-03T14:59:28Z + Bit Rate192 + Sample Rate44100 + Normalization2794 + Artwork Count1 + Persistent ID9971445C015FEFBE + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Dylan/Love%20&%20Theft/01%20Tweedle%20Dee%20&%20Tweedle%20Dum.m4a + File Folder Count4 + Library Folder Count1 + + 6328 + + Track ID6328 + NameMississippi + ArtistBob Dylan + ComposerBob Dylan + AlbumLove & Theft + GenreFolk + KindAAC audio file + Size7742530 + Total Time321153 + Disc Number1 + Disc Count1 + Track Number2 + Track Count12 + Year2001 + Date Modified2006-08-07T08:13:26Z + Date Added2009-10-03T14:59:28Z + Bit Rate192 + Sample Rate44100 + Normalization3260 + Artwork Count1 + Persistent ID9B0FD4467A0472DE + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Dylan/Love%20&%20Theft/02%20Mississippi.m4a + File Folder Count4 + Library Folder Count1 + + 6330 + + Track ID6330 + NameSummer Days + ArtistBob Dylan + ComposerBob Dylan + AlbumLove & Theft + GenreFolk + KindAAC audio file + Size7057003 + Total Time292802 + Disc Number1 + Disc Count1 + Track Number3 + Track Count12 + Year2001 + Date Modified2006-08-07T08:13:26Z + Date Added2009-10-03T14:59:28Z + Bit Rate192 + Sample Rate44100 + Normalization3211 + Artwork Count1 + Persistent ID01F5EC5187A9E677 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Dylan/Love%20&%20Theft/03%20Summer%20Days.m4a + File Folder Count4 + Library Folder Count1 + + 6332 + + Track ID6332 + NameBye & Bye + ArtistBob Dylan + ComposerBob Dylan + AlbumLove & Theft + GenreFolk + KindAAC audio file + Size4734902 + Total Time196346 + Disc Number1 + Disc Count1 + Track Number4 + Track Count12 + Year2001 + Date Modified2006-08-07T08:13:26Z + Date Added2009-10-03T14:59:28Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Persistent IDDB00BD9A1B258CDE + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Dylan/Love%20&%20Theft/04%20Bye%20&%20Bye.m4a + File Folder Count4 + Library Folder Count1 + + 6334 + + Track ID6334 + NameLonesome Day Blues + ArtistBob Dylan + ComposerBob Dylan + AlbumLove & Theft + GenreFolk + KindAAC audio file + Size8807197 + Total Time365132 + Disc Number1 + Disc Count1 + Track Number5 + Track Count12 + Year2001 + Date Modified2006-08-07T08:13:26Z + Date Added2009-10-03T14:59:28Z + Bit Rate192 + Sample Rate44100 + Normalization5418 + Artwork Count1 + Persistent ID8FE8B842239C1E99 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Dylan/Love%20&%20Theft/05%20Lonesome%20Day%20Blues.m4a + File Folder Count4 + Library Folder Count1 + + 6336 + + Track ID6336 + NameFloater + ArtistBob Dylan + ComposerBob Dylan + AlbumLove & Theft + GenreFolk + KindAAC audio file + Size7220591 + Total Time299582 + Disc Number1 + Disc Count1 + Track Number6 + Track Count12 + Year2001 + Date Modified2006-08-07T08:13:26Z + Date Added2009-10-03T14:59:28Z + Bit Rate192 + Sample Rate44100 + Normalization1972 + Artwork Count1 + Persistent IDFE0362CF07C75798 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Dylan/Love%20&%20Theft/06%20Floater.m4a + File Folder Count4 + Library Folder Count1 + + 6338 + + Track ID6338 + NameHigh Water + ArtistBob Dylan + ComposerBob Dylan + AlbumLove & Theft + GenreFolk + KindAAC audio file + Size5883624 + Total Time244829 + Disc Number1 + Disc Count1 + Track Number7 + Track Count12 + Year2001 + Date Modified2006-08-07T08:13:26Z + Date Added2009-10-03T14:59:28Z + Bit Rate192 + Sample Rate44100 + Normalization2282 + Artwork Count1 + Persistent ID903A71EEB1B13AEA + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Dylan/Love%20&%20Theft/07%20High%20Water.m4a + File Folder Count4 + Library Folder Count1 + + 6340 + + Track ID6340 + NameMoonlight + ArtistBob Dylan + ComposerBob Dylan + AlbumLove & Theft + GenreFolk + KindAAC audio file + Size4898947 + Total Time203173 + Disc Number1 + Disc Count1 + Track Number8 + Track Count12 + Year2001 + Date Modified2006-08-07T08:13:26Z + Date Added2009-10-03T14:59:28Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Persistent ID395F6A4BEAE3E921 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Dylan/Love%20&%20Theft/08%20Moonlight.m4a + File Folder Count4 + Library Folder Count1 + + 6342 + + Track ID6342 + NameHonest With Me + ArtistBob Dylan + ComposerBob Dylan + AlbumLove & Theft + GenreFolk + KindAAC audio file + Size8407554 + Total Time349133 + Disc Number1 + Disc Count1 + Track Number9 + Track Count12 + Year2001 + Date Modified2006-08-07T08:13:26Z + Date Added2009-10-03T14:59:29Z + Bit Rate192 + Sample Rate44100 + Normalization5986 + Artwork Count1 + Persistent ID2B812109DFFA9041 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Dylan/Love%20&%20Theft/09%20Honest%20With%20Me.m4a + File Folder Count4 + Library Folder Count1 + + 6344 + + Track ID6344 + NamePo' Boy + ArtistBob Dylan + ComposerBob Dylan + AlbumLove & Theft + GenreFolk + KindAAC audio file + Size4468535 + Total Time185874 + Disc Number1 + Disc Count1 + Track Number10 + Track Count12 + Year2001 + Date Modified2006-08-07T08:13:26Z + Date Added2009-10-03T14:59:29Z + Bit Rate192 + Sample Rate44100 + Normalization1543 + Artwork Count1 + Persistent ID12AD02EBA1A25AA0 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Dylan/Love%20&%20Theft/10%20Po'%20Boy.m4a + File Folder Count4 + Library Folder Count1 + + 6346 + + Track ID6346 + NameCry A While + ArtistBob Dylan + ComposerBob Dylan + AlbumLove & Theft + GenreFolk + KindAAC audio file + Size7363756 + Total Time305480 + Disc Number1 + Disc Count1 + Track Number11 + Track Count12 + Year2001 + Date Modified2006-08-07T08:13:26Z + Date Added2009-10-03T14:59:29Z + Bit Rate192 + Sample Rate44100 + Normalization3819 + Artwork Count1 + Persistent IDC9624C862A1AF3CF + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Dylan/Love%20&%20Theft/11%20Cry%20A%20While.m4a + File Folder Count4 + Library Folder Count1 + + 6348 + + Track ID6348 + NameSugar Baby + ArtistBob Dylan + ComposerBob Dylan + AlbumLove & Theft + GenreFolk + KindAAC audio file + Size9714105 + Total Time400914 + Disc Number1 + Disc Count1 + Track Number12 + Track Count12 + Year2001 + Date Modified2006-08-07T08:13:28Z + Date Added2009-10-03T14:59:29Z + Bit Rate192 + Sample Rate44100 + Normalization1365 + Artwork Count1 + Persistent ID77C6BBE1EC6AE990 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Dylan/Love%20&%20Theft/12%20Sugar%20Baby.m4a + File Folder Count4 + Library Folder Count1 + + 6350 + + Track ID6350 + NameHurricane + ArtistBob Dylan + ComposerBob Dylan and Jacques Levy + AlbumDesire + GenreFolk + KindAAC audio file + Size12420684 + Total Time512509 + Disc Number1 + Disc Count1 + Track Number1 + Track Count9 + Year1976 + Date Modified2006-08-07T08:25:54Z + Date Added2009-10-03T14:59:29Z + Bit Rate192 + Sample Rate44100 + Skip Count1 + Skip Date2014-06-06T04:00:49Z + Normalization1286 + Artwork Count1 + Persistent ID841795912A9B4925 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Dylan/Desire/01%20Hurricane.m4a + File Folder Count4 + Library Folder Count1 + + 6352 + + Track ID6352 + NameIsis + ArtistBob Dylan + ComposerBob Dylan and Jacques Levy + AlbumDesire + GenreFolk + KindAAC audio file + Size10152859 + Total Time418816 + Disc Number1 + Disc Count1 + Track Number2 + Track Count9 + Year1976 + Date Modified2006-08-07T08:25:56Z + Date Added2009-10-03T14:59:29Z + Bit Rate192 + Sample Rate44100 + Normalization1774 + Artwork Count1 + Persistent IDCE98C72160982C89 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Dylan/Desire/02%20Isis.m4a + File Folder Count4 + Library Folder Count1 + + 6354 + + Track ID6354 + NameMozambique + ArtistBob Dylan + ComposerBob Dylan and Jacques Levy + AlbumDesire + GenreFolk + KindAAC audio file + Size4409515 + Total Time181416 + Disc Number1 + Disc Count1 + Track Number3 + Track Count9 + Year1976 + Date Modified2006-08-07T08:25:56Z + Date Added2009-10-03T14:59:29Z + Bit Rate192 + Sample Rate44100 + Normalization1286 + Artwork Count1 + Persistent IDE2A458CAD8125348 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Dylan/Desire/03%20Mozambique.m4a + File Folder Count4 + Library Folder Count1 + + 6356 + + Track ID6356 + NameOne More Cup Of Coffee + ArtistBob Dylan + ComposerBob Dylan + AlbumDesire + GenreFolk + KindAAC audio file + Size5498012 + Total Time226184 + Disc Number1 + Disc Count1 + Track Number4 + Track Count9 + Year1976 + Date Modified2006-08-07T08:25:56Z + Date Added2009-10-03T14:59:30Z + Bit Rate192 + Sample Rate44100 + Play Count2 + Play Date3426956680 + Play Date UTC2012-08-04T14:54:40Z + Normalization851 + Artwork Count1 + Persistent IDA6765AD809E84365 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Dylan/Desire/04%20One%20More%20Cup%20Of%20Coffee.m4a + File Folder Count4 + Library Folder Count1 + + 6358 + + Track ID6358 + NameOh, Sister + ArtistBob Dylan + ComposerBob Dylan and Jacques Levy + AlbumDesire + GenreFolk + KindAAC audio file + Size5925456 + Total Time243970 + Disc Number1 + Disc Count1 + Track Number5 + Track Count9 + Year1976 + Date Modified2006-08-07T08:25:56Z + Date Added2009-10-03T14:59:30Z + Bit Rate192 + Sample Rate44100 + Play Count2 + Play Date3426956924 + Play Date UTC2012-08-04T14:58:44Z + Normalization1127 + Artwork Count1 + Persistent IDD06D43688B0B26BB + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Dylan/Desire/05%20Oh,%20Sister.m4a + File Folder Count4 + Library Folder Count1 + + 6360 + + Track ID6360 + NameJoey + ArtistBob Dylan + ComposerBob Dylan and Jacques Levy + AlbumDesire + GenreFolk + KindAAC audio file + Size16119675 + Total Time665389 + Disc Number1 + Disc Count1 + Track Number6 + Track Count9 + Year1976 + Date Modified2006-08-07T08:25:56Z + Date Added2009-10-03T14:59:30Z + Bit Rate192 + Sample Rate44100 + Normalization1138 + Artwork Count1 + Persistent IDC8635A7B14D33F87 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Dylan/Desire/06%20Joey.m4a + File Folder Count4 + Library Folder Count1 + + 6362 + + Track ID6362 + NameRomance In Durango + ArtistBob Dylan + ComposerBob Dylan and Jacques Levy + AlbumDesire + GenreFolk + KindAAC audio file + Size8343193 + Total Time344048 + Disc Number1 + Disc Count1 + Track Number7 + Track Count9 + Year1976 + Date Modified2006-08-07T08:25:56Z + Date Added2009-10-03T14:59:30Z + Bit Rate192 + Sample Rate44100 + Normalization1366 + Artwork Count1 + Persistent ID0614C1403E83D872 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Dylan/Desire/07%20Romance%20In%20Durango.m4a + File Folder Count4 + Library Folder Count1 + + 6364 + + Track ID6364 + NameBlack Diamond Bay + ArtistBob Dylan + ComposerBob Dylan and Jacques Levy + AlbumDesire + GenreFolk + KindAAC audio file + Size10913632 + Total Time450256 + Disc Number1 + Disc Count1 + Track Number8 + Track Count9 + Year1976 + Date Modified2006-08-07T08:25:56Z + Date Added2009-10-03T14:59:30Z + Bit Rate192 + Sample Rate44100 + Normalization1352 + Artwork Count1 + Persistent ID6297467A7C729445 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Dylan/Desire/08%20Black%20Diamond%20Bay.m4a + File Folder Count4 + Library Folder Count1 + + 6366 + + Track ID6366 + NameSara + ArtistBob Dylan + ComposerBob Dylan + AlbumDesire + GenreFolk + KindAAC audio file + Size7993697 + Total Time329582 + Disc Number1 + Disc Count1 + Track Number9 + Track Count9 + Year1976 + Date Modified2006-08-07T08:25:56Z + Date Added2009-10-03T14:59:30Z + Bit Rate192 + Sample Rate44100 + Normalization1425 + Artwork Count1 + Persistent ID72F66D90ABD4D7A1 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Dylan/Desire/09%20Sara.m4a + File Folder Count4 + Library Folder Count1 + + 6368 + + Track ID6368 + NamePaathshala-Be A Rebel + ArtistBlaaze, Aslam, Naresh Iyer + ComposerA R Rahman + AlbumRang De Basanti + GenreSoundtracks + KindAAC audio file + Size4613710 + Total Time189310 + Track Number7 + Date Modified2007-04-09T08:52:44Z + Date Added2009-10-03T14:59:30Z + Bit Rate192 + Sample Rate44100 + Normalization2063 + Artwork Count1 + Sort ComposerR Rahman + Persistent IDEB3F3932EA1EDDA7 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Blaaze,%20Aslam,%20Naresh%20Iyer/Rang%20De%20Basanti/07%20Paathshala-Be%20A%20Rebel.m4a + File Folder Count4 + Library Folder Count1 + + 6370 + + Track ID6370 + NamePaathshala-Be A Rebel + ArtistBlaaze, Aslam, Naresh Iyer + ComposerA R Rahman + AlbumRang De Basanti + GenreSoundtracks + KindAAC audio file + Size4554226 + Total Time189289 + Track Number7 + Date Modified2007-07-27T06:38:38Z + Date Added2009-10-03T14:59:31Z + Bit Rate192 + Sample Rate44100 + Normalization2063 + Sort ComposerR Rahman + Persistent IDBC53A203F3D0A29A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Blaaze,%20Aslam,%20Naresh%20Iyer/Rang%20De%20Basanti/07%20Paathshala-Be%20A%20Rebel%201.m4a + File Folder Count4 + Library Folder Count1 + + 6372 + + Track ID6372 + NamePaathshala-Be A Rebel + ArtistBlaaze, Aslam, Naresh Iyer + ComposerA R Rahman + AlbumRang De Basanti + GenreSoundtracks + KindAAC audio file + Size4567424 + Total Time189310 + Track Number7 + Date Modified2006-12-27T10:37:30Z + Date Added2009-10-03T14:59:31Z + Bit Rate192 + Sample Rate44100 + Normalization2063 + Sort ComposerR Rahman + Persistent IDCD8D3DF85AFDE1A2 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Blaaze,%20Aslam,%20Naresh%20Iyer/Rang%20De%20Basanti/07%20Paathshala-Be%20A%20Rebel%202.m4a + File Folder Count4 + Library Folder Count1 + + 6374 + + Track ID6374 + NamePaathshala-Be A Rebel + ArtistBlaaze, Aslam, Naresh Iyer + ComposerA R Rahman + AlbumRang De Basanti + GenreSoundtracks + KindAAC audio file + Size4518685 + Total Time189289 + Track Number7 + Date Modified2007-12-02T08:06:26Z + Date Added2009-10-03T14:59:31Z + Bit Rate189 + Sample Rate44100 + Normalization2063 + Sort ComposerR Rahman + Persistent ID14740497A50B7BBB + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Blaaze,%20Aslam,%20Naresh%20Iyer/Rang%20De%20Basanti/07%20Paathshala-Be%20A%20Rebel%203.m4a + File Folder Count4 + Library Folder Count1 + + 6376 + + Track ID6376 + NameHunter + ArtistBjörk + ComposerBjork + AlbumHomogenic + GenreAlternative & Punk + KindAAC audio file + Size8506913 + Total Time255266 + Disc Number1 + Disc Count1 + Track Number1 + Track Count10 + Year1997 + BPM80 + Date Modified2008-10-15T05:55:04Z + Date Added2009-10-03T14:59:31Z + Bit Rate256 + Sample Rate44100 + Normalization2672 + Artwork Count1 + Persistent IDB4257A97EF877963 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bjo%CC%88rk/Homogenic/01%20Hunter.m4a + File Folder Count4 + Library Folder Count1 + + 6378 + + Track ID6378 + NameJoga + ArtistBjörk + ComposerBjörk and Sigurjon Birgir Sigurdsson (aka Sjòn) + AlbumHomogenic + GenreAlternative & Punk + KindAAC audio file + Size10173249 + Total Time305360 + Disc Number1 + Disc Count1 + Track Number2 + Track Count10 + Year1997 + BPM73 + Date Modified2008-10-15T05:55:08Z + Date Added2009-10-03T14:59:31Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3390500422 + Play Date UTC2011-06-09T16:10:22Z + Normalization4580 + Artwork Count1 + Persistent IDECA31D67C9FA70EE + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bjo%CC%88rk/Homogenic/02%20Joga.m4a + File Folder Count4 + Library Folder Count1 + + 6380 + + Track ID6380 + NameUnravel + ArtistBjörk + ComposerBjörk and Guy Sigsworth + AlbumHomogenic + GenreAlternative & Punk + KindAAC audio file + Size6781212 + Total Time201800 + Disc Number1 + Disc Count1 + Track Number3 + Track Count10 + Year1997 + BPM52 + Date Modified2008-10-15T05:55:12Z + Date Added2009-10-03T14:59:31Z + Bit Rate256 + Sample Rate44100 + Normalization1987 + Artwork Count1 + Persistent ID90B5344DEA1982F7 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bjo%CC%88rk/Homogenic/03%20Unravel.m4a + File Folder Count4 + Library Folder Count1 + + 6382 + + Track ID6382 + NameBachelorette + ArtistBjörk + ComposerBjörk and Sigurjon Birgir Sigurdsson (aka Sjòn) + AlbumHomogenic + GenreAlternative & Punk + KindAAC audio file + Size10345806 + Total Time312666 + Disc Number1 + Disc Count1 + Track Number4 + Track Count10 + Year1997 + BPM98 + Date Modified2008-10-15T05:55:20Z + Date Added2009-10-03T14:59:32Z + Bit Rate256 + Sample Rate44100 + Normalization7345 + Artwork Count1 + Persistent IDCCA152F982D7F330 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bjo%CC%88rk/Homogenic/04%20Bachelorette.m4a + File Folder Count4 + Library Folder Count1 + + 6384 + + Track ID6384 + NameAll Neon Like + ArtistBjörk + ComposerBjork + AlbumHomogenic + GenreAlternative & Punk + KindAAC audio file + Size11443937 + Total Time353266 + Disc Number1 + Disc Count1 + Track Number5 + Track Count10 + Year1997 + BPM77 + Date Modified2008-10-15T05:55:23Z + Date Added2009-10-03T14:59:32Z + Bit Rate256 + Sample Rate44100 + Normalization1937 + Artwork Count1 + Persistent IDA9000E6015645266 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bjo%CC%88rk/Homogenic/05%20All%20Neon%20Like.m4a + File Folder Count4 + Library Folder Count1 + + 6386 + + Track ID6386 + Name5 Years + ArtistBjörk + ComposerBjork + AlbumHomogenic + GenreAlternative & Punk + KindAAC audio file + Size9005340 + Total Time269066 + Disc Number1 + Disc Count1 + Track Number6 + Track Count10 + Year1997 + BPM83 + Date Modified2008-10-15T05:55:26Z + Date Added2009-10-03T14:59:32Z + Bit Rate256 + Sample Rate44100 + Normalization5382 + Artwork Count1 + Persistent ID8659E18F1A851278 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bjo%CC%88rk/Homogenic/06%205%20Years.m4a + File Folder Count4 + Library Folder Count1 + + 6388 + + Track ID6388 + NameImmature + ArtistBjörk + ComposerBjork + AlbumHomogenic + GenreAlternative & Punk + KindAAC audio file + Size6318674 + Total Time186266 + Disc Number1 + Disc Count1 + Track Number7 + Track Count10 + Year1997 + BPM94 + Date Modified2008-10-15T05:55:29Z + Date Added2009-10-03T14:59:32Z + Bit Rate256 + Sample Rate44100 + Normalization2920 + Artwork Count1 + Persistent ID2EAE8F13CAEDA68F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bjo%CC%88rk/Homogenic/07%20Immature.m4a + File Folder Count4 + Library Folder Count1 + + 6390 + + Track ID6390 + NameAlarm Call + ArtistBjörk + ComposerBjork + AlbumHomogenic + GenreAlternative & Punk + KindAAC audio file + Size8511994 + Total Time259773 + Disc Number1 + Disc Count1 + Track Number8 + Track Count10 + Year1997 + BPM97 + Date Modified2008-10-15T05:55:37Z + Date Added2009-10-03T14:59:32Z + Bit Rate256 + Sample Rate44100 + Normalization3683 + Artwork Count1 + Persistent IDAC51CCACFC4CB49C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bjo%CC%88rk/Homogenic/08%20Alarm%20Call.m4a + File Folder Count4 + Library Folder Count1 + + 6392 + + Track ID6392 + NamePluto + ArtistBjörk + ComposerBjörk and Mark Bell + AlbumHomogenic + GenreAlternative & Punk + KindAAC audio file + Size6713289 + Total Time199293 + Disc Number1 + Disc Count1 + Track Number9 + Track Count10 + Year1997 + BPM149 + Date Modified2008-10-15T05:55:42Z + Date Added2009-10-03T14:59:32Z + Bit Rate256 + Sample Rate44100 + Normalization4381 + Artwork Count1 + Persistent ID9929E9E8F2FF5F35 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bjo%CC%88rk/Homogenic/09%20Pluto.m4a + File Folder Count4 + Library Folder Count1 + + 6394 + + Track ID6394 + NameAll Is Full Of Love + ArtistBjörk + ComposerBjork + AlbumHomogenic + GenreAlternative & Punk + KindAAC audio file + Size9000871 + Total Time273106 + Disc Number1 + Disc Count1 + Track Number10 + Track Count10 + Year1997 + BPM55 + Date Modified2008-10-15T05:55:45Z + Date Added2009-10-03T14:59:33Z + Bit Rate256 + Sample Rate44100 + Normalization2418 + Artwork Count1 + Persistent IDDE879376BA5BD501 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bjo%CC%88rk/Homogenic/10%20All%20Is%20Full%20Of%20Love.m4a + File Folder Count4 + Library Folder Count1 + + 6396 + + Track ID6396 + Name(1) Pag Laagan (Vilambit) + ArtistBhimsen Joshi + AlbumGolden Raaga Collection + GenreClassical + KindAAC audio file + Size67721336 + Total Time2797770 + Track Number1 + Track Count2 + Date Modified2006-08-13T07:02:52Z + Date Added2009-10-03T14:59:33Z + Bit Rate192 + Sample Rate44100 + Normalization2191 + Artwork Count1 + Persistent ID3E7A1CB287674C50 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bhimsen%20Joshi/Golden%20Raaga%20Collection/01%20(1)%20Pag%20Laagan%20(Vilambit).m4a + File Folder Count4 + Library Folder Count1 + + 6398 + + Track ID6398 + Namerang raliyan/jamuna ke teer + ArtistBhimsen Joshi + AlbumGolden Raaga Collection + GenreClassical + KindAAC audio file + Size22430567 + Total Time926288 + Track Number2 + Track Count2 + Date Modified2006-08-13T07:02:22Z + Date Added2009-10-03T14:59:33Z + Bit Rate192 + Sample Rate44100 + Normalization2464 + Artwork Count1 + Persistent ID408A0695147BA8D4 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bhimsen%20Joshi/Golden%20Raaga%20Collection/02%20rang%20raliyan_jamuna%20ke%20teer.m4a + File Folder Count4 + Library Folder Count1 + + 6400 + + Track ID6400 + NameLa Mer - 1. From Dawn till Noon on the Sea (De l'aube à midi sur la mer) + ArtistBerliner Philharmoniker + Album ArtistBerliner Philharmoniker + ComposerClaude Debussy + AlbumRavel: Boléro / Debussy: La Mer / Mussorgsky: Pictures at an Exhibition + GenreClassical + KindMPEG audio file + Size16604877 + Total Time515082 + Disc Number1 + Disc Count1 + Track Number1 + Track Count19 + Year1996 + Date Modified2008-11-23T17:19:23Z + Date Added2009-10-03T14:59:33Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 204929326 + Play Count3 + Play Date3408275072 + Play Date UTC2012-01-01T09:34:32Z + Rating80 + Album Rating80 + Album Rating Computed + Artwork Count1 + Persistent IDC6F460041F8369F6 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Berliner%20Philharmoniker/Ravel_%20Bole%CC%81ro%20_%20Debussy_%20La%20Mer%20_%20Mussorgsky_%20Pictures%20at%20an%20Exhibition/01%20La%20Mer%20-%201.%20From%20Dawn%20till%20Noon%20on%20the%20Sea%20(De%20l'aube%20a%CC%80%20midi%20sur%20la%20mer).mp3 + File Folder Count4 + Library Folder Count1 + + 6402 + + Track ID6402 + NameLa Mer - 2. Play of the Waves (Jeux de vagues) + ArtistBerliner Philharmoniker + Album ArtistBerliner Philharmoniker + ComposerClaude Debussy + AlbumRavel: Boléro / Debussy: La Mer / Mussorgsky: Pictures at an Exhibition + GenreClassical + KindMPEG audio file + Size12060799 + Total Time373080 + Disc Number1 + Disc Count1 + Track Number2 + Track Count19 + Year1996 + Date Modified2008-11-23T17:23:34Z + Date Added2009-10-03T14:59:33Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 204929327 + Play Count2 + Play Date3408275445 + Play Date UTC2012-01-01T09:40:45Z + Skip Count1 + Skip Date2011-10-31T11:30:22Z + Album Rating80 + Album Rating Computed + Artwork Count1 + Persistent ID8D583EB79F09970B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Berliner%20Philharmoniker/Ravel_%20Bole%CC%81ro%20_%20Debussy_%20La%20Mer%20_%20Mussorgsky_%20Pictures%20at%20an%20Exhibition/02%20La%20Mer%20-%202.%20Play%20of%20the%20Waves%20(Jeux%20de%20vagues).mp3 + File Folder Count4 + Library Folder Count1 + + 6404 + + Track ID6404 + NameLa Mer - 3. Dialogue of the Wind and the Sea (Dialogue du vent et de la mer) + ArtistBerliner Philharmoniker + Album ArtistBerliner Philharmoniker + ComposerClaude Debussy + AlbumRavel: Boléro / Debussy: La Mer / Mussorgsky: Pictures at an Exhibition + GenreClassical + KindMPEG audio file + Size15164594 + Total Time470073 + Disc Number1 + Disc Count1 + Track Number3 + Track Count19 + Year1996 + Date Modified2008-11-23T17:28:38Z + Date Added2009-10-03T14:59:34Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 204929328 + Play Count1 + Play Date3408275915 + Play Date UTC2012-01-01T09:48:35Z + Skip Count1 + Skip Date2011-10-31T11:30:27Z + Album Rating80 + Album Rating Computed + Artwork Count1 + Persistent IDD9456B280663D082 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Berliner%20Philharmoniker/Ravel_%20Bole%CC%81ro%20_%20Debussy_%20La%20Mer%20_%20Mussorgsky_%20Pictures%20at%20an%20Exhibition/03%20La%20Mer%20-%203.%20Dialogue%20of%20the%20Wind%20and%20the%20Sea%20(Dialogue%20du%20vent%20et%20de%20la%20mer).mp3 + File Folder Count4 + Library Folder Count1 + + 6406 + + Track ID6406 + NamePictures at an Exhibition - Orchestrated by Maurice Ravel - Promenade + ArtistBerliner Philharmoniker + Album ArtistBerliner Philharmoniker + ComposerMussorgsky, Modest Petrovich + AlbumRavel: Boléro / Debussy: La Mer / Mussorgsky: Pictures at an Exhibition + GenreClassical + KindMPEG audio file + Size3653169 + Total Time110341 + Disc Number1 + Disc Count1 + Track Number4 + Track Count19 + Year1996 + Date Modified2008-11-23T17:29:52Z + Date Added2009-10-03T14:59:34Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 204929329 + Play Count2 + Play Date3408276025 + Play Date UTC2012-01-01T09:50:25Z + Album Rating80 + Album Rating Computed + Artwork Count1 + Persistent ID0A29BD4A2D20F99B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Berliner%20Philharmoniker/Ravel_%20Bole%CC%81ro%20_%20Debussy_%20La%20Mer%20_%20Mussorgsky_%20Pictures%20at%20an%20Exhibition/04%20Pictures%20at%20an%20Exhibition%20-%20Orchestrated%20by%20Maurice%20Ravel%20-%20Promenade.mp3 + File Folder Count4 + Library Folder Count1 + + 6408 + + Track ID6408 + NamePictures at an Exhibition - Orchestrated by Maurice Ravel - Gnomus + ArtistBerliner Philharmoniker + Album ArtistBerliner Philharmoniker + ComposerMussorgsky, Modest Petrovich + AlbumRavel: Boléro / Debussy: La Mer / Mussorgsky: Pictures at an Exhibition + GenreClassical + KindMPEG audio file + Size5394384 + Total Time164754 + Disc Number1 + Disc Count1 + Track Number5 + Track Count19 + Year1996 + Date Modified2008-11-23T17:31:55Z + Date Added2009-10-03T14:59:34Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 204929330 + Play Count2 + Play Date3408448610 + Play Date UTC2012-01-03T09:46:50Z + Album Rating80 + Album Rating Computed + Artwork Count1 + Persistent ID3295C23676021F86 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Berliner%20Philharmoniker/Ravel_%20Bole%CC%81ro%20_%20Debussy_%20La%20Mer%20_%20Mussorgsky_%20Pictures%20at%20an%20Exhibition/05%20Pictures%20at%20an%20Exhibition%20-%20Orchestrated%20by%20Maurice%20Ravel%20-%20Gnomus.mp3 + File Folder Count4 + Library Folder Count1 + + 6410 + + Track ID6410 + NamePictures at an Exhibition - Orchestrated by Maurice Ravel - Promenade + ArtistBerliner Philharmoniker + Album ArtistBerliner Philharmoniker + ComposerMussorgsky, Modest Petrovich + AlbumRavel: Boléro / Debussy: La Mer / Mussorgsky: Pictures at an Exhibition + GenreClassical + KindMPEG audio file + Size2505453 + Total Time74475 + Disc Number1 + Disc Count1 + Track Number6 + Track Count19 + Year1996 + Date Modified2008-11-23T17:32:54Z + Date Added2009-10-03T14:59:34Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 204929331 + Album Rating80 + Album Rating Computed + Artwork Count1 + Persistent ID9808123D1B47B3AA + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Berliner%20Philharmoniker/Ravel_%20Bole%CC%81ro%20_%20Debussy_%20La%20Mer%20_%20Mussorgsky_%20Pictures%20at%20an%20Exhibition/06%20Pictures%20at%20an%20Exhibition%20-%20Orchestrated%20by%20Maurice%20Ravel%20-%20Promenade.mp3 + File Folder Count4 + Library Folder Count1 + + 6412 + + Track ID6412 + NamePictures at an Exhibition - Orchestrated by Maurice Ravel - The Old Castle + ArtistBerliner Philharmoniker + Album ArtistBerliner Philharmoniker + ComposerMussorgsky, Modest Petrovich + AlbumRavel: Boléro / Debussy: La Mer / Mussorgsky: Pictures at an Exhibition + GenreClassical + KindMPEG audio file + Size8967107 + Total Time276401 + Disc Number1 + Disc Count1 + Track Number7 + Track Count19 + Year1996 + Date Modified2008-11-23T17:36:11Z + Date Added2009-10-03T14:59:34Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 204929332 + Album Rating80 + Album Rating Computed + Artwork Count1 + Persistent ID541CC8A79D8E1D20 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Berliner%20Philharmoniker/Ravel_%20Bole%CC%81ro%20_%20Debussy_%20La%20Mer%20_%20Mussorgsky_%20Pictures%20at%20an%20Exhibition/07%20Pictures%20at%20an%20Exhibition%20-%20Orchestrated%20by%20Maurice%20Ravel%20-%20The%20Old%20Castle.mp3 + File Folder Count4 + Library Folder Count1 + + 6414 + + Track ID6414 + NamePictures at an Exhibition - Orchestrated by Maurice Ravel - Promenade + ArtistBerliner Philharmoniker + Album ArtistBerliner Philharmoniker + ComposerMussorgsky, Modest Petrovich + AlbumRavel: Boléro / Debussy: La Mer / Mussorgsky: Pictures at an Exhibition + GenreClassical + KindMPEG audio file + Size1462227 + Total Time41874 + Disc Number1 + Disc Count1 + Track Number8 + Track Count19 + Year1996 + Date Modified2008-11-23T17:36:42Z + Date Added2009-10-03T14:59:34Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 204929333 + Play Count1 + Play Date3401473491 + Play Date UTC2011-10-14T16:14:51Z + Album Rating80 + Album Rating Computed + Artwork Count1 + Persistent IDE37A8984A9D2DA13 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Berliner%20Philharmoniker/Ravel_%20Bole%CC%81ro%20_%20Debussy_%20La%20Mer%20_%20Mussorgsky_%20Pictures%20at%20an%20Exhibition/08%20Pictures%20at%20an%20Exhibition%20-%20Orchestrated%20by%20Maurice%20Ravel%20-%20Promenade.mp3 + File Folder Count4 + Library Folder Count1 + + 6416 + + Track ID6416 + NamePictures at an Exhibition - Orchestrated by Maurice Ravel - The Tuileries Gardens + ArtistBerliner Philharmoniker + Album ArtistBerliner Philharmoniker + ComposerMussorgsky, Modest Petrovich + AlbumRavel: Boléro / Debussy: La Mer / Mussorgsky: Pictures at an Exhibition + GenreClassical + KindMPEG audio file + Size2179457 + Total Time64287 + Disc Number1 + Disc Count1 + Track Number9 + Track Count19 + Year1996 + Date Modified2008-11-23T17:37:27Z + Date Added2009-10-03T14:59:34Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 204929334 + Play Count1 + Play Date3401473556 + Play Date UTC2011-10-14T16:15:56Z + Album Rating80 + Album Rating Computed + Artwork Count1 + Persistent ID23DD0A0262FB6027 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Berliner%20Philharmoniker/Ravel_%20Bole%CC%81ro%20_%20Debussy_%20La%20Mer%20_%20Mussorgsky_%20Pictures%20at%20an%20Exhibition/09%20Pictures%20at%20an%20Exhibition%20-%20Orchestrated%20by%20Maurice%20Ravel%20-%20The%20Tuileries%20Gardens.mp3 + File Folder Count4 + Library Folder Count1 + + 6418 + + Track ID6418 + NamePictures at an Exhibition - Orchestrated by Maurice Ravel - Bydlo + ArtistBerliner Philharmoniker + Album ArtistBerliner Philharmoniker + ComposerMussorgsky, Modest Petrovich + AlbumRavel: Boléro / Debussy: La Mer / Mussorgsky: Pictures at an Exhibition + GenreClassical + KindMPEG audio file + Size5543177 + Total Time169404 + Disc Number1 + Disc Count1 + Track Number10 + Track Count19 + Year1996 + Date Modified2008-11-23T17:38:47Z + Date Added2009-10-03T14:59:35Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 204929335 + Album Rating80 + Album Rating Computed + Artwork Count1 + Persistent ID526D84C3DC3CDD76 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Berliner%20Philharmoniker/Ravel_%20Bole%CC%81ro%20_%20Debussy_%20La%20Mer%20_%20Mussorgsky_%20Pictures%20at%20an%20Exhibition/10%20Pictures%20at%20an%20Exhibition%20-%20Orchestrated%20by%20Maurice%20Ravel%20-%20Bydlo.mp3 + File Folder Count4 + Library Folder Count1 + + 6420 + + Track ID6420 + NamePictures at an Exhibition - Orchestrated by Maurice Ravel - Promenade + ArtistBerliner Philharmoniker + Album ArtistBerliner Philharmoniker + ComposerMussorgsky, Modest Petrovich + AlbumRavel: Boléro / Debussy: La Mer / Mussorgsky: Pictures at an Exhibition + GenreClassical + KindMPEG audio file + Size2101705 + Total Time61857 + Disc Number1 + Disc Count1 + Track Number11 + Track Count19 + Year1996 + Date Modified2008-11-23T17:39:19Z + Date Added2009-10-03T14:59:35Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 204929336 + Album Rating80 + Album Rating Computed + Artwork Count1 + Persistent ID9F9BDF56CC894EA8 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Berliner%20Philharmoniker/Ravel_%20Bole%CC%81ro%20_%20Debussy_%20La%20Mer%20_%20Mussorgsky_%20Pictures%20at%20an%20Exhibition/11%20Pictures%20at%20an%20Exhibition%20-%20Orchestrated%20by%20Maurice%20Ravel%20-%20Promenade.mp3 + File Folder Count4 + Library Folder Count1 + + 6422 + + Track ID6422 + NamePictures at an Exhibition - Orchestrated by Maurice Ravel - Ballet of the Chickens in Their Shells + ArtistBerliner Philharmoniker + Album ArtistBerliner Philharmoniker + ComposerMussorgsky, Modest Petrovich + AlbumRavel: Boléro / Debussy: La Mer / Mussorgsky: Pictures at an Exhibition + GenreClassical + KindMPEG audio file + Size2435266 + Total Time72280 + Disc Number1 + Disc Count1 + Track Number12 + Track Count19 + Year1996 + Date Modified2008-11-23T17:39:54Z + Date Added2009-10-03T14:59:35Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 204929337 + Play Count1 + Play Date3401473628 + Play Date UTC2011-10-14T16:17:08Z + Album Rating80 + Album Rating Computed + Artwork Count1 + Persistent ID3739D86BC9090F18 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Berliner%20Philharmoniker/Ravel_%20Bole%CC%81ro%20_%20Debussy_%20La%20Mer%20_%20Mussorgsky_%20Pictures%20at%20an%20Exhibition/12%20Pictures%20at%20an%20Exhibition%20-%20Orchestrated%20by%20Maurice%20Ravel%20-%20Ballet%20of%20the%20Chickens%20in%20Their%20Shells.mp3 + File Folder Count4 + Library Folder Count1 + + 6424 + + Track ID6424 + NamePictures at an Exhibition - Orchestrated by Maurice Ravel - Samuel Goldenberg and Schmuyle + ArtistBerliner Philharmoniker + Album ArtistBerliner Philharmoniker + ComposerMussorgsky, Modest Petrovich + AlbumRavel: Boléro / Debussy: La Mer / Mussorgsky: Pictures at an Exhibition + GenreClassical + KindMPEG audio file + Size4534249 + Total Time137874 + Disc Number1 + Disc Count1 + Track Number13 + Track Count19 + Year1996 + Date Modified2008-11-23T17:41:03Z + Date Added2009-10-03T14:59:35Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 204929338 + Album Rating80 + Album Rating Computed + Artwork Count1 + Persistent ID65F62E1410E01DB2 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Berliner%20Philharmoniker/Ravel_%20Bole%CC%81ro%20_%20Debussy_%20La%20Mer%20_%20Mussorgsky_%20Pictures%20at%20an%20Exhibition/13%20Pictures%20at%20an%20Exhibition%20-%20Orchestrated%20by%20Maurice%20Ravel%20-%20Samuel%20Goldenberg%20and%20Schmuyle.mp3 + File Folder Count4 + Library Folder Count1 + + 6426 + + Track ID6426 + NamePictures at an Exhibition - Orchestrated by Maurice Ravel - The Market-place at Limoges + ArtistBerliner Philharmoniker + Album ArtistBerliner Philharmoniker + ComposerMussorgsky, Modest Petrovich + AlbumRavel: Boléro / Debussy: La Mer / Mussorgsky: Pictures at an Exhibition + GenreClassical + KindMPEG audio file + Size2883307 + Total Time86282 + Disc Number1 + Disc Count1 + Track Number14 + Track Count19 + Year1996 + Date Modified2008-11-23T17:41:43Z + Date Added2009-10-03T14:59:35Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 204929339 + Album Rating80 + Album Rating Computed + Artwork Count1 + Persistent ID5F125C35B6744469 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Berliner%20Philharmoniker/Ravel_%20Bole%CC%81ro%20_%20Debussy_%20La%20Mer%20_%20Mussorgsky_%20Pictures%20at%20an%20Exhibition/14%20Pictures%20at%20an%20Exhibition%20-%20Orchestrated%20by%20Maurice%20Ravel%20-%20The%20Market-place%20at%20Limoges.mp3 + File Folder Count4 + Library Folder Count1 + + 6428 + + Track ID6428 + NamePictures at an Exhibition - Orchestrated by Maurice Ravel - The Catacombs (Sepulchrum romanum) + ArtistBerliner Philharmoniker + Album ArtistBerliner Philharmoniker + ComposerMussorgsky, Modest Petrovich + AlbumRavel: Boléro / Debussy: La Mer / Mussorgsky: Pictures at an Exhibition + GenreClassical + KindMPEG audio file + Size4417224 + Total Time134217 + Disc Number1 + Disc Count1 + Track Number15 + Track Count19 + Year1996 + Date Modified2008-11-23T17:42:50Z + Date Added2009-10-03T14:59:36Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 204929340 + Album Rating80 + Album Rating Computed + Artwork Count1 + Persistent ID045BEFF2ADCB1377 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Berliner%20Philharmoniker/Ravel_%20Bole%CC%81ro%20_%20Debussy_%20La%20Mer%20_%20Mussorgsky_%20Pictures%20at%20an%20Exhibition/15%20Pictures%20at%20an%20Exhibition%20-%20Orchestrated%20by%20Maurice%20Ravel%20-%20The%20Catacombs%20(Sepulchrum%20romanum).mp3 + File Folder Count4 + Library Folder Count1 + + 6430 + + Track ID6430 + NamePictures at an Exhibition - Orchestrated by Maurice Ravel - Cum mortuis in lingua mortua + ArtistBerliner Philharmoniker + Album ArtistBerliner Philharmoniker + ComposerMussorgsky, Modest Petrovich + AlbumRavel: Boléro / Debussy: La Mer / Mussorgsky: Pictures at an Exhibition + GenreClassical + KindMPEG audio file + Size4670501 + Total Time142132 + Disc Number1 + Disc Count1 + Track Number16 + Track Count19 + Year1996 + Date Modified2008-11-23T17:43:57Z + Date Added2009-10-03T14:59:36Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 204929341 + Album Rating80 + Album Rating Computed + Artwork Count1 + Persistent ID95C01D9E4F234E67 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Berliner%20Philharmoniker/Ravel_%20Bole%CC%81ro%20_%20Debussy_%20La%20Mer%20_%20Mussorgsky_%20Pictures%20at%20an%20Exhibition/16%20Pictures%20at%20an%20Exhibition%20-%20Orchestrated%20by%20Maurice%20Ravel%20-%20Cum%20mortuis%20in%20lingua%20mortua.mp3 + File Folder Count4 + Library Folder Count1 + + 6432 + + Track ID6432 + NamePictures at an Exhibition - Orchestrated by Maurice Ravel - The Hut on Fowl's Legs (Baba-Yaga) + ArtistBerliner Philharmoniker + Album ArtistBerliner Philharmoniker + ComposerMussorgsky, Modest Petrovich + AlbumRavel: Boléro / Debussy: La Mer / Mussorgsky: Pictures at an Exhibition + GenreClassical + KindMPEG audio file + Size6879004 + Total Time211147 + Disc Number1 + Disc Count1 + Track Number17 + Track Count19 + Year1996 + Date Modified2008-11-23T17:45:33Z + Date Added2009-10-03T14:59:36Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 204929342 + Album Rating80 + Album Rating Computed + Artwork Count1 + Persistent ID252B415A9A9E2E70 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Berliner%20Philharmoniker/Ravel_%20Bole%CC%81ro%20_%20Debussy_%20La%20Mer%20_%20Mussorgsky_%20Pictures%20at%20an%20Exhibition/17%20Pictures%20at%20an%20Exhibition%20-%20Orchestrated%20by%20Maurice%20Ravel%20-%20The%20Hut%20on%20Fowl's%20Legs%20(Baba-Yaga).mp3 + File Folder Count4 + Library Folder Count1 + + 6434 + + Track ID6434 + NamePictures at an Exhibition - Orchestrated by Maurice Ravel - The Great Gate of Kiev + ArtistBerliner Philharmoniker + Album ArtistBerliner Philharmoniker + ComposerMussorgsky, Modest Petrovich + AlbumRavel: Boléro / Debussy: La Mer / Mussorgsky: Pictures at an Exhibition + GenreClassical + KindMPEG audio file + Size13043890 + Total Time403800 + Disc Number1 + Disc Count1 + Track Number18 + Track Count19 + Year1996 + Date Modified2008-11-23T17:48:49Z + Date Added2009-10-03T14:59:36Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 204929343 + Album Rating80 + Album Rating Computed + Artwork Count1 + Persistent ID1BD37A88D1AD4ED8 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Berliner%20Philharmoniker/Ravel_%20Bole%CC%81ro%20_%20Debussy_%20La%20Mer%20_%20Mussorgsky_%20Pictures%20at%20an%20Exhibition/18%20Pictures%20at%20an%20Exhibition%20-%20Orchestrated%20by%20Maurice%20Ravel%20-%20The%20Great%20Gate%20of%20Kiev.mp3 + File Folder Count4 + Library Folder Count1 + + 6436 + + Track ID6436 + NameBoléro + ArtistBerliner Philharmoniker + Album ArtistBerliner Philharmoniker + ComposerMaurice Ravel + AlbumRavel: Boléro / Debussy: La Mer / Mussorgsky: Pictures at an Exhibition + GenreClassical + KindMPEG audio file + Size31100471 + Total Time968071 + Disc Number1 + Disc Count1 + Track Number19 + Track Count19 + Year1996 + Date Modified2008-11-23T17:56:29Z + Date Added2009-10-03T14:59:36Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 204929344 + Play Count1 + Play Date3402926483 + Play Date UTC2011-10-31T11:51:23Z + Skip Count1 + Skip Date2011-10-31T11:29:35Z + Album Rating80 + Album Rating Computed + Artwork Count1 + Persistent IDD7A388D88B5CDC1B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Berliner%20Philharmoniker/Ravel_%20Bole%CC%81ro%20_%20Debussy_%20La%20Mer%20_%20Mussorgsky_%20Pictures%20at%20an%20Exhibition/19%20Bole%CC%81ro.mp3 + File Folder Count4 + Library Folder Count1 + + 6438 + + Track ID6438 + NameBhajare Sriramam + ArtistBalamurali Krishna + ComposerBhadrachala Ramadas + AlbumBhadrachala Ramadas Krithis + GenreCarnatic + KindMPEG audio file + Size5542607 + Total Time337867 + Track Number13 + Year2001 + Date Modified2007-12-02T16:23:18Z + Date Added2009-10-03T14:59:37Z + Bit Rate131 + Sample Rate44100 + CommentsRaga: Vakulabharanam + Artwork Count1 + Persistent IDE1DE1FD49DF2665D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Balamurali%20Krishna/Bhadrachala%20Ramadas%20Krithis/13%20Bhajare%20Sriramam.mp3 + File Folder Count4 + Library Folder Count1 + + 6440 + + Track ID6440 + NameCharanamule Nammithi + ArtistBalamurali Krishna + ComposerBhadrachala Ramadas + AlbumBhadrachala Ramadas Krithis + GenreCarnatic + KindMPEG audio file + Size6712437 + Total Time403200 + Track Number12 + Year2001 + Date Modified2007-12-02T16:23:17Z + Date Added2009-10-03T14:59:37Z + Bit Rate133 + Sample Rate44100 + CommentsRaga: Kaapi Tala: Adi + Artwork Count1 + Persistent IDCFF9BC3AD3CF94F7 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Balamurali%20Krishna/Bhadrachala%20Ramadas%20Krithis/12%20Charanamule%20Nammithi.mp3 + File Folder Count4 + Library Folder Count1 + + 6442 + + Track ID6442 + NameDiname Sudinamu + ArtistBalamurali Krishna + ComposerBhadrachala Ramadas + AlbumBhadrachala Ramadas Krithis + GenreCarnatic + KindMPEG audio file + Size4169592 + Total Time238550 + Track Number16 + Year2001 + Date Modified2007-12-02T16:23:19Z + Date Added2009-10-03T14:59:37Z + Bit Rate139 + Sample Rate44100 + CommentsRaga: Kaapi + Artwork Count1 + Persistent ID21DB9FE23A28DCBC + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Balamurali%20Krishna/Bhadrachala%20Ramadas%20Krithis/16%20Diname%20Sudinamu.mp3 + File Folder Count4 + Library Folder Count1 + + 6444 + + Track ID6444 + NameEa Theeruga Nanu Dhaya (Raga: Nadanamakriya Tala: Adi) + ArtistBalamurali Krishna + ComposerBhadrachala Ramadas + AlbumBhadrachala Ramadas Krithis + GenreCarnatic + KindMPEG audio file + Size5265333 + Total Time374935 + Track Number4 + Year2001 + Date Modified2007-12-14T10:22:03Z + Date Added2009-10-03T14:59:37Z + Bit Rate112 + Sample Rate44100 + CommentsRaga: Nadanamakriya Tala: Adi + Artwork Count1 + Persistent ID9E3D31F8099D6BF8 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Balamurali%20Krishna/Bhadrachala%20Ramadas%20Krithis/04%20Ea%20Theeruga%20Nanu%20Dhaya%20(Raga_%20Nadanamakriya%20Tala_%20Adi).mp3 + File Folder Count4 + Library Folder Count1 + + 6446 + + Track ID6446 + NameEmira Rama + ArtistBalamurali Krishna + ComposerBhadrachala Ramadas + AlbumBhadrachala Ramadas Krithis + GenreCarnatic + KindMPEG audio file + Size4033299 + Total Time228911 + Track Number19 + Year2001 + Date Modified2007-12-02T16:23:21Z + Date Added2009-10-03T14:59:37Z + Bit Rate140 + Sample Rate44100 + CommentsRaga: Kaapi Narayani + Artwork Count1 + Persistent ID1F136ACC14F18F29 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Balamurali%20Krishna/Bhadrachala%20Ramadas%20Krithis/19%20Emira%20Rama.mp3 + File Folder Count4 + Library Folder Count1 + + 6448 + + Track ID6448 + NameEtu Pothivorama (Raga: Ananda Bhairavi) + ArtistBalamurali Krishna + ComposerBhadrachala Ramadas + AlbumBhadrachala Ramadas Krithis + GenreCarnatic + KindMPEG audio file + Size5416310 + Total Time309524 + Track Number18 + Year2001 + Date Modified2007-12-14T03:28:03Z + Date Added2009-10-03T14:59:37Z + Bit Rate139 + Sample Rate44100 + CommentsRaga: Ananda Bhairavi + Artwork Count1 + Persistent ID89A085CB8AFBD0EE + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Balamurali%20Krishna/Bhadrachala%20Ramadas%20Krithis/18%20Etu%20Pothivorama%20(Raga_%20Ananda%20Bhairavi).mp3 + File Folder Count4 + Library Folder Count1 + + 6450 + + Track ID6450 + NameIdhigo Bhadradri + ArtistBalamurali Krishna + ComposerBhadrachala Ramadas + AlbumBhadrachala Ramadas Krithis + GenreCarnatic + KindMPEG audio file + Size2408706 + Total Time161854 + Track Number1 + Year2001 + Date Modified2007-12-12T07:24:58Z + Date Added2009-10-03T14:59:37Z + Bit Rate118 + Sample Rate44100 + CommentsRaga: Varali Tala: Adi + Artwork Count1 + Persistent IDDB01B70F2685E28A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Balamurali%20Krishna/Bhadrachala%20Ramadas%20Krithis/01%20Idhigo%20Bhadradri.mp3 + File Folder Count4 + Library Folder Count1 + + 6452 + + Track ID6452 + NameIkshvakukula Thilaka + ArtistBalamurali Krishna + ComposerBhadrachala Ramadas + AlbumBhadrachala Ramadas Krithis + GenreCarnatic + KindMPEG audio file + Size6712159 + Total Time429139 + Track Number8 + Year2001 + Date Modified2007-12-12T07:26:55Z + Date Added2009-10-03T14:59:37Z + Bit Rate125 + Sample Rate44100 + CommentsRaga: Yadukula Kamboji Raga: Misra Chapu + Artwork Count1 + Persistent IDDBFDCA539A4208A9 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Balamurali%20Krishna/Bhadrachala%20Ramadas%20Krithis/08%20Ikshvakukula%20Thilaka.mp3 + File Folder Count4 + Library Folder Count1 + + 6454 + + Track ID6454 + NameNannu Brovamani Cheppave + ArtistBalamurali Krishna (Raga: Kalyani Tala: Chapu) + ComposerBhadrachala Ramadas + AlbumBhadrachala Ramadas Krithis + GenreCarnatic + KindMPEG audio file + Size3003399 + Total Time193985 + Track Number7 + Year2001 + Date Modified2007-12-14T10:22:46Z + Date Added2009-10-03T14:59:38Z + Bit Rate123 + Sample Rate44100 + CommentsRaga: Kalyani Tala: Chapu + Artwork Count1 + Persistent ID5E75418E2DFDF167 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Balamurali%20Krishna%20(Raga_%20Kalyani%20Tala_%20Chapu)/Bhadrachala%20Ramadas%20Krithis/07%20Nannu%20Brovamani%20Cheppave.mp3 + File Folder Count4 + Library Folder Count1 + + 6456 + + Track ID6456 + NamePaahimam Srirama (Raga: Edukula Kambhoji) + ArtistBalamurali Krishna + ComposerBhadrachala Ramadas + AlbumBhadrachala Ramadas Krithis + GenreCarnatic + KindMPEG audio file + Size7126181 + Total Time421250 + Track Number14 + Year2001 + Date Modified2007-12-14T03:36:16Z + Date Added2009-10-03T14:59:38Z + Bit Rate135 + Sample Rate44100 + CommentsRaga: Edukula Kambhoji + Artwork Count1 + Persistent ID09D9831392FB4E4E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Balamurali%20Krishna/Bhadrachala%20Ramadas%20Krithis/14%20Paahimam%20Srirama%20(Raga_%20Edukula%20Kambhoji).mp3 + File Folder Count4 + Library Folder Count1 + + 6458 + + Track ID6458 + NamePahi Rama Prabho (Raga: Madyamavati Tala: Jhampa) + ArtistBalamurali Krishna + ComposerBhadrachala Ramadas + AlbumBhadrachala Ramadas Krithis + GenreCarnatic + KindMPEG audio file + Size4696403 + Total Time307853 + Track Number5 + Year2001 + Date Modified2007-12-14T10:23:35Z + Date Added2009-10-03T14:59:38Z + Bit Rate121 + Sample Rate44100 + CommentsRaga: Madyamavati Tala: Jhampa + Artwork Count1 + Persistent ID265A4B66DAE009ED + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Balamurali%20Krishna/Bhadrachala%20Ramadas%20Krithis/05%20Pahi%20Rama%20Prabho%20(Raga_%20Madyamavati%20Tala_%20Jhampa).mp3 + File Folder Count4 + Library Folder Count1 + + 6460 + + Track ID6460 + NamePaluke Bangaramayena (Raga: Anandabairavi Tala: Adi) + ArtistBalamurali Krishna + ComposerBhadrachala Ramadas + AlbumBhadrachala Ramadas Krithis + GenreCarnatic + KindMPEG audio file + Size3997727 + Total Time251820 + Track Number3 + Year2001 + Date Modified2007-12-14T03:31:25Z + Date Added2009-10-03T14:59:38Z + Bit Rate126 + Sample Rate44100 + CommentsRaga: Anandabairavi Tala: Adi + Artwork Count1 + Persistent IDE39B5B30A3795EDF + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Balamurali%20Krishna/Bhadrachala%20Ramadas%20Krithis/03%20Paluke%20Bangaramayena%20(Raga_%20Anandabairavi%20Tala_%20Adi).mp3 + File Folder Count4 + Library Folder Count1 + + 6462 + + Track ID6462 + NameRama Ne Yeda + ArtistBalamurali Krishna + ComposerBhadrachala Ramadas + AlbumBhadrachala Ramadas Krithis + GenreCarnatic + KindMPEG audio file + Size26373379 + Total Time1458625 + Track Number20 + Year2001 + Date Modified2007-12-02T16:23:26Z + Date Added2009-10-03T14:59:38Z + Bit Rate144 + Sample Rate44100 + CommentsRaga: Karaharapriya + Artwork Count1 + Persistent ID8F8F5B1C4E751A7F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Balamurali%20Krishna/Bhadrachala%20Ramadas%20Krithis/20%20Rama%20Ne%20Yeda.mp3 + File Folder Count4 + Library Folder Count1 + + 6464 + + Track ID6464 + NameRamajogi Mandukonare + ArtistBalamurali Krishna + ComposerBhadrachala Ramadas + AlbumBhadrachala Ramadas Krithis + GenreCarnatic + KindMPEG audio file + Size3262136 + Total Time191477 + Track Number15 + Year2001 + Date Modified2007-12-02T16:23:19Z + Date Added2009-10-03T14:59:38Z + Bit Rate136 + Sample Rate44100 + CommentsRaga: Salaga Bhairavi + Artwork Count1 + Persistent IDEFAD83A57C1C4D12 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Balamurali%20Krishna/Bhadrachala%20Ramadas%20Krithis/15%20Ramajogi%20Mandukonare.mp3 + File Folder Count4 + Library Folder Count1 + + 6466 + + Track ID6466 + NameSeetha Ramaswamy + ArtistBalamurali Krishna + ComposerBhadrachala Ramadas + AlbumBhadrachala Ramadas Krithis + GenreCarnatic + KindMPEG audio file + Size11307266 + Total Time593345 + Track Number17 + Year2001 + Date Modified2007-12-02T16:23:20Z + Date Added2009-10-03T14:59:38Z + Bit Rate152 + Sample Rate44100 + CommentsRaga: Mayamalava Gowla + Artwork Count1 + Persistent ID9C9B016CB4117C0F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Balamurali%20Krishna/Bhadrachala%20Ramadas%20Krithis/17%20Seetha%20Ramaswamy.mp3 + File Folder Count4 + Library Folder Count1 + + 6468 + + Track ID6468 + NameThakkuvemimanaku + ArtistBalamurali Krishna + ComposerBhadrachala Ramadas + AlbumBhadrachala Ramadas Krithis + GenreCarnatic + KindMPEG audio file + Size2807664 + Total Time171520 + Track Number9 + Year2001 + Date Modified2007-12-02T16:23:16Z + Date Added2009-10-03T14:59:38Z + Bit Rate130 + Sample Rate44100 + Artwork Count1 + Persistent ID2A3024D6F7497FEA + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Balamurali%20Krishna/Bhadrachala%20Ramadas%20Krithis/09%20Thakkuvemimanaku.mp3 + File Folder Count4 + Library Folder Count1 + + 6470 + + Track ID6470 + NameTharaka Mantramu (Raga: Dhanyasi Tala: Adi) + ArtistBalamurali Krishna + ComposerBhadrachala Ramadas + AlbumBhadrachala Ramadas Krithis + GenreCarnatic + KindMPEG audio file + Size3121552 + Total Time201142 + Track Number2 + Year2001 + Date Modified2007-12-14T03:36:03Z + Date Added2009-10-03T14:59:38Z + Bit Rate124 + Sample Rate44100 + CommentsRaga: Dhanyasi Tala: Adi + Artwork Count1 + Persistent ID67DFDF889D7D24E4 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Balamurali%20Krishna/Bhadrachala%20Ramadas%20Krithis/02%20Tharaka%20Mantramu%20(Raga_%20Dhanyasi%20Tala_%20Adi).mp3 + File Folder Count4 + Library Folder Count1 + + 6472 + + Track ID6472 + NameEmi Ka Sai D'augho + ArtistBabatunde Olatunji + AlbumHealing Session + GenreWorld + KindAAC audio file + Size10514105 + Total Time432075 + Track Number1 + Track Count8 + Year2003 + Date Modified2006-07-27T16:17:40Z + Date Added2009-10-03T14:59:39Z + Bit Rate192 + Sample Rate44100 + Normalization1231 + Artwork Count1 + Persistent ID9B63CF26E42ED648 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Babatunde%20Olatunji/Healing%20Session/01%20Emi%20Ka%20Sai%20D'augho.m4a + File Folder Count4 + Library Folder Count1 + + 6474 + + Track ID6474 + NameAdura + ArtistBabatunde Olatunji + AlbumHealing Session + GenreWorld + KindAAC audio file + Size15513693 + Total Time638663 + Track Number2 + Track Count8 + Year2003 + Date Modified2006-07-27T16:17:42Z + Date Added2009-10-03T14:59:39Z + Bit Rate192 + Sample Rate44100 + Normalization1231 + Artwork Count1 + Persistent ID148ED66D00B6C14B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Babatunde%20Olatunji/Healing%20Session/02%20Adura.m4a + File Folder Count4 + Library Folder Count1 + + 6476 + + Track ID6476 + NameEdunmare + ArtistBabatunde Olatunji + AlbumHealing Session + GenreWorld + KindAAC audio file + Size6348504 + Total Time259922 + Track Number3 + Track Count8 + Year2003 + Date Modified2006-07-27T16:17:42Z + Date Added2009-10-03T14:59:39Z + Bit Rate192 + Sample Rate44100 + Normalization1438 + Artwork Count1 + Persistent ID06263041F48D6EC2 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Babatunde%20Olatunji/Healing%20Session/03%20Edunmare.m4a + File Folder Count4 + Library Folder Count1 + + 6478 + + Track ID6478 + NameAra Mi Le + ArtistBabatunde Olatunji + AlbumHealing Session + GenreWorld + KindAAC audio file + Size8969190 + Total Time368220 + Track Number4 + Track Count8 + Year2003 + Date Modified2006-07-27T16:17:42Z + Date Added2009-10-03T14:59:39Z + Bit Rate192 + Sample Rate44100 + Normalization2331 + Artwork Count1 + Persistent ID32D5D2626431EC78 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Babatunde%20Olatunji/Healing%20Session/04%20Ara%20Mi%20Le.m4a + File Folder Count4 + Library Folder Count1 + + 6480 + + Track ID6480 + NameMystery Of Love + ArtistBabatunde Olatunji + AlbumHealing Session + GenreWorld + KindAAC audio file + Size8710078 + Total Time357539 + Track Number5 + Track Count8 + Year2003 + Date Modified2006-07-27T16:17:44Z + Date Added2009-10-03T14:59:39Z + Bit Rate192 + Sample Rate44100 + Normalization1231 + Artwork Count1 + Persistent IDB2F51C6EBE0325CC + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Babatunde%20Olatunji/Healing%20Session/05%20Mystery%20Of%20Love.m4a + File Folder Count4 + Library Folder Count1 + + 6482 + + Track ID6482 + NameWatusi + ArtistBabatunde Olatunji + AlbumHealing Session + GenreWorld + KindAAC audio file + Size9458236 + Total Time388421 + Track Number6 + Track Count8 + Year2003 + Date Modified2006-07-27T16:17:44Z + Date Added2009-10-03T14:59:39Z + Bit Rate192 + Sample Rate44100 + Normalization1231 + Artwork Count1 + Persistent ID4F01C94B3CCD83E9 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Babatunde%20Olatunji/Healing%20Session/06%20Watusi.m4a + File Folder Count4 + Library Folder Count1 + + 6484 + + Track ID6484 + NameNeNe + ArtistBabatunde Olatunji + AlbumHealing Session + GenreWorld + KindAAC audio file + Size12496862 + Total Time513995 + Track Number7 + Track Count8 + Year2003 + Date Modified2006-07-27T16:17:46Z + Date Added2009-10-03T14:59:40Z + Bit Rate192 + Sample Rate44100 + Normalization3456 + Artwork Count1 + Persistent ID191DC1F89F938F9B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Babatunde%20Olatunji/Healing%20Session/07%20NeNe.m4a + File Folder Count4 + Library Folder Count1 + + 6486 + + Track ID6486 + NamePrimitive Fire + ArtistBabatunde Olatunji + AlbumHealing Session + GenreWorld + KindAAC audio file + Size12295969 + Total Time504753 + Track Number8 + Track Count8 + Year2003 + Date Modified2006-07-27T16:17:46Z + Date Added2009-10-03T14:59:40Z + Bit Rate192 + Sample Rate44100 + Normalization1231 + Artwork Count1 + Persistent ID3C5F4FB400F6E6F2 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Babatunde%20Olatunji/Healing%20Session/08%20Primitive%20Fire.m4a + File Folder Count4 + Library Folder Count1 + + 6488 + + Track ID6488 + NameEvery Day I Have The Blues + ArtistB.B. King + ComposerPeter Chatman + AlbumLive At The Regal + GenreBlues + KindAAC audio file + Size6245627 + Total Time189133 + Disc Number1 + Disc Count1 + Track Number1 + Track Count10 + Year1965 + Date Modified2008-11-07T05:49:42Z + Date Added2009-10-03T14:59:40Z + Bit Rate256 + Sample Rate44100 + Normalization3000 + Artwork Count1 + Persistent IDB3A99A7A20153DE4 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/B.B.%20King/Live%20At%20The%20Regal/01%20Every%20Day%20I%20Have%20The%20Blues.m4a + File Folder Count4 + Library Folder Count1 + + 6490 + + Track ID6490 + NameSweet Little Angel + ArtistB.B. King + ComposerRiley B. King, Jules Taub + AlbumLive At The Regal + GenreBlues + KindAAC audio file + Size8234882 + Total Time249640 + Disc Number1 + Disc Count1 + Track Number2 + Track Count10 + Year1965 + Date Modified2008-11-07T05:49:41Z + Date Added2009-10-03T14:59:40Z + Bit Rate256 + Sample Rate44100 + Normalization3080 + Artwork Count1 + Persistent IDFF22D8A2183348D6 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/B.B.%20King/Live%20At%20The%20Regal/02%20Sweet%20Little%20Angel.m4a + File Folder Count4 + Library Folder Count1 + + 6492 + + Track ID6492 + NameIt's My Own Fault + ArtistB.B. King + ComposerJohn Lee Hooker + AlbumLive At The Regal + GenreBlues + KindAAC audio file + Size6261951 + Total Time189333 + Disc Number1 + Disc Count1 + Track Number3 + Track Count10 + Year1965 + Date Modified2008-11-07T05:49:41Z + Date Added2009-10-03T14:59:40Z + Bit Rate256 + Sample Rate44100 + Normalization2214 + Artwork Count1 + Persistent ID12916A72642E6898 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/B.B.%20King/Live%20At%20The%20Regal/03%20It's%20My%20Own%20Fault.m4a + File Folder Count4 + Library Folder Count1 + + 6494 + + Track ID6494 + NameHow Blue Can You Get? + ArtistB.B. King + ComposerLeonard Feather, Jane Feather + AlbumLive At The Regal + GenreBlues + KindAAC audio file + Size7103243 + Total Time214960 + Disc Number1 + Disc Count1 + Track Number4 + Track Count10 + Year1965 + Date Modified2008-11-07T05:49:40Z + Date Added2009-10-03T14:59:40Z + Bit Rate256 + Sample Rate44100 + Normalization2809 + Artwork Count1 + Persistent ID0D05ECB9E81C052F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/B.B.%20King/Live%20At%20The%20Regal/04%20How%20Blue%20Can%20You%20Get_.m4a + File Folder Count4 + Library Folder Count1 + + 6496 + + Track ID6496 + NamePlease Love Me + ArtistB.B. King + ComposerRiley B. King, Jules Bihari + AlbumLive At The Regal + GenreBlues + KindAAC audio file + Size5900200 + Total Time181800 + Disc Number1 + Disc Count1 + Track Number5 + Track Count10 + Year1965 + Date Modified2008-11-07T05:49:40Z + Date Added2009-10-03T14:59:40Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3390980327 + Play Date UTC2011-06-15T05:28:47Z + Normalization3721 + Artwork Count1 + Persistent ID275A0258DE74D05B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/B.B.%20King/Live%20At%20The%20Regal/05%20Please%20Love%20Me.m4a + File Folder Count4 + Library Folder Count1 + + 6498 + + Track ID6498 + NameYou Upset Me Baby + ArtistB.B. King + ComposerRiley B. King, Jules Bihari + AlbumLive At The Regal + GenreBlues + KindAAC audio file + Size5266238 + Total Time159173 + Disc Number1 + Disc Count1 + Track Number6 + Track Count10 + Year1965 + Date Modified2008-11-07T05:49:39Z + Date Added2009-10-03T14:59:41Z + Bit Rate256 + Sample Rate44100 + Normalization2424 + Artwork Count1 + Persistent ID9F642F11AEC9E292 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/B.B.%20King/Live%20At%20The%20Regal/06%20You%20Upset%20Me%20Baby.m4a + File Folder Count4 + Library Folder Count1 + + 6500 + + Track ID6500 + NameWorry, Worry + ArtistB.B. King + ComposerPlummer Davis, Jules Bihari + AlbumLive At The Regal + GenreBlues + KindAAC audio file + Size12616816 + Total Time383333 + Disc Number1 + Disc Count1 + Track Number7 + Track Count10 + Year1965 + Date Modified2008-11-07T05:49:39Z + Date Added2009-10-03T14:59:41Z + Bit Rate256 + Sample Rate44100 + Normalization2069 + Artwork Count1 + Persistent IDF99C983C205FA88D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/B.B.%20King/Live%20At%20The%20Regal/07%20Worry,%20Worry.m4a + File Folder Count4 + Library Folder Count1 + + 6502 + + Track ID6502 + NameWoke Up This Mornin' (My Baby's Gone) + ArtistB.B. King + ComposerRiley B. King, Jules Bihari + AlbumLive At The Regal + GenreBlues + KindAAC audio file + Size3471879 + Total Time104466 + Disc Number1 + Disc Count1 + Track Number8 + Track Count10 + Year1965 + Date Modified2008-11-07T05:49:38Z + Date Added2009-10-03T14:59:41Z + Bit Rate256 + Sample Rate44100 + Normalization3281 + Artwork Count1 + Persistent IDB6D62FEECA8D3DF9 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/B.B.%20King/Live%20At%20The%20Regal/08%20Woke%20Up%20This%20Mornin'%20(My%20Baby's%20Gone).m4a + File Folder Count4 + Library Folder Count1 + + 6504 + + Track ID6504 + NameYou Done Lost Your Good Thing Now + ArtistB.B. King + ComposerRiley B. King, Joe Josea + AlbumLive At The Regal + GenreBlues + KindAAC audio file + Size9012005 + Total Time273160 + Disc Number1 + Disc Count1 + Track Number9 + Track Count10 + Year1965 + Date Modified2008-11-07T05:49:38Z + Date Added2009-10-03T14:59:41Z + Bit Rate256 + Sample Rate44100 + Normalization2244 + Artwork Count1 + Persistent ID8237E31D99761DA5 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/B.B.%20King/Live%20At%20The%20Regal/09%20You%20Done%20Lost%20Your%20Good%20Thing%20Now.m4a + File Folder Count4 + Library Folder Count1 + + 6506 + + Track ID6506 + NameHelp The Poor + ArtistB.B. King + ComposerCharlie Singleton + AlbumLive At The Regal + GenreBlues + KindAAC audio file + Size5220396 + Total Time158333 + Disc Number1 + Disc Count1 + Track Number10 + Track Count10 + Year1965 + Date Modified2008-11-07T05:49:38Z + Date Added2009-10-03T14:59:41Z + Bit Rate256 + Sample Rate44100 + Normalization1719 + Artwork Count1 + Persistent IDAA0C14BDE54F58F4 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/B.B.%20King/Live%20At%20The%20Regal/10%20Help%20The%20Poor.m4a + File Folder Count4 + Library Folder Count1 + + 6508 + + Track ID6508 + NameRadha Kaise Na Jale + ArtistAsha Bhonsle, Udit Narayan, Vaishali + ComposerA.R. Rahman + AlbumLagaan: Once Upon A Time In India + GenreSoundtrack + KindAAC audio file + Size8136200 + Total Time334714 + Disc Number1 + Disc Count1 + Track Number3 + Track Count8 + Year2001 + Date Modified2006-07-29T04:05:54Z + Date Added2009-10-03T14:59:42Z + Bit Rate192 + Sample Rate44100 + Normalization2222 + Artwork Count1 + Persistent IDF10DB4762A7AE1F2 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Asha%20Bhonsle,%20Udit%20Narayan,%20Vaishali/Lagaan_%20Once%20Upon%20A%20Time%20In%20India/03%20Radha%20Kaise%20Na%20Jale.m4a + File Folder Count4 + Library Folder Count1 + + 6510 + + Track ID6510 + NamePrayer + ArtistArt Blakey & The Afro Drum Ensemble + Composertrad. + AlbumThe African Beat + GenreJazz + KindAAC audio file + Size1372305 + Total Time55215 + Disc Number7 + Disc Count7 + Track Number1 + Track Count7 + Year1962 + Date Modified2006-08-07T08:21:36Z + Date Added2009-10-03T14:59:43Z + Bit Rate192 + Sample Rate44100 + Normalization1118 + Artwork Count1 + Sort AlbumAfrican Beat + Persistent ID5C786A364028AC89 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Art%20Blakey%20&%20The%20Afro%20Drum%20Ensemble/The%20African%20Beat/7-01%20Prayer.m4a + File Folder Count4 + Library Folder Count1 + + 6512 + + Track ID6512 + NameIFE L'AYO (There Is Happiness In Love) + ArtistArt Blakey & The Afro Drum Ensemble + ComposerSolomon Ilori + AlbumThe African Beat + GenreJazz + KindAAC audio file + Size8021493 + Total Time330766 + Disc Number7 + Disc Count7 + Track Number2 + Track Count7 + Year1962 + Date Modified2006-08-07T08:21:38Z + Date Added2009-10-03T14:59:43Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3428046260 + Play Date UTC2012-08-17T05:34:20Z + Normalization2036 + Artwork Count1 + Sort AlbumAfrican Beat + Persistent ID7F4DEAFBACF8E39B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Art%20Blakey%20&%20The%20Afro%20Drum%20Ensemble/The%20African%20Beat/7-02%20IFE%20L'AYO%20(There%20Is%20Happiness%20In%20Love).m4a + File Folder Count4 + Library Folder Count1 + + 6514 + + Track ID6514 + NameOBIRIN AFRICAN (Woman Of Africa) + ArtistArt Blakey & The Afro Drum Ensemble + ComposerGarvin Masseaux + AlbumThe African Beat + GenreJazz + KindAAC audio file + Size5403839 + Total Time222979 + Disc Number7 + Disc Count7 + Track Number3 + Track Count7 + Year1962 + Date Modified2006-08-07T08:21:38Z + Date Added2009-10-03T14:59:44Z + Bit Rate192 + Sample Rate44100 + Normalization1937 + Artwork Count1 + Sort AlbumAfrican Beat + Persistent IDA6F7FBEF3CF819B8 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Art%20Blakey%20&%20The%20Afro%20Drum%20Ensemble/The%20African%20Beat/7-03%20OBIRIN%20AFRICAN%20(Woman%20Of%20Africa).m4a + File Folder Count4 + Library Folder Count1 + + 6516 + + Track ID6516 + NameLOVE, THE MYSTERY OF + ArtistArt Blakey & The Afro Drum Ensemble + ComposerGuy Warren + AlbumThe African Beat + GenreJazz + KindAAC audio file + Size13667403 + Total Time564405 + Disc Number7 + Disc Count7 + Track Number4 + Track Count7 + Year1962 + Date Modified2006-08-07T08:21:38Z + Date Added2009-10-03T14:59:44Z + Bit Rate192 + Sample Rate44100 + Normalization2152 + Artwork Count1 + Sort AlbumAfrican Beat + Persistent ID2FF633441E27B7C9 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Art%20Blakey%20&%20The%20Afro%20Drum%20Ensemble/The%20African%20Beat/7-04%20LOVE,%20THE%20MYSTERY%20OF.m4a + File Folder Count4 + Library Folder Count1 + + 6518 + + Track ID6518 + NameERO TI NR'OJEJE + ArtistArt Blakey & The Afro Drum Ensemble + ComposerSolomon G. Ilori + AlbumThe African Beat + GenreJazz + KindAAC audio file + Size11016444 + Total Time454436 + Disc Number7 + Disc Count7 + Track Number5 + Track Count7 + Year1962 + Date Modified2006-08-07T08:21:38Z + Date Added2009-10-03T14:59:44Z + Bit Rate192 + Sample Rate44100 + Normalization1706 + Artwork Count1 + Sort AlbumAfrican Beat + Persistent ID9C5330B96683E4CE + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Art%20Blakey%20&%20The%20Afro%20Drum%20Ensemble/The%20African%20Beat/7-05%20ERO%20TI%20NR'OJEJE.m4a + File Folder Count4 + Library Folder Count1 + + 6520 + + Track ID6520 + NameAYIKO AYIKO + ArtistArt Blakey & The Afro Drum Ensemble + ComposerSolomon G. Ilori + AlbumThe African Beat + GenreJazz + KindAAC audio file + Size10509761 + Total Time434513 + Disc Number7 + Disc Count7 + Track Number6 + Track Count7 + Year1962 + Date Modified2006-08-07T08:21:38Z + Date Added2009-10-03T14:59:44Z + Bit Rate192 + Sample Rate44100 + Normalization3379 + Artwork Count1 + Sort AlbumAfrican Beat + Persistent IDABCEE4D9CE6DA5EB + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Art%20Blakey%20&%20The%20Afro%20Drum%20Ensemble/The%20African%20Beat/7-06%20AYIKO%20AYIKO.m4a + File Folder Count4 + Library Folder Count1 + + 6522 + + Track ID6522 + NameTOBI ILU + ArtistArt Blakey & The Afro Drum Ensemble + ComposerJames H. Bey + AlbumThe African Beat + GenreJazz + KindAAC audio file + Size8690033 + Total Time357400 + Disc Number7 + Disc Count7 + Track Number7 + Track Count7 + Year1962 + Date Modified2006-08-07T08:21:38Z + Date Added2009-10-03T14:59:44Z + Bit Rate192 + Sample Rate44100 + Normalization1753 + Artwork Count1 + Sort AlbumAfrican Beat + Persistent IDCAAEA24DAA4FA1C6 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Art%20Blakey%20&%20The%20Afro%20Drum%20Ensemble/The%20African%20Beat/7-07%20TOBI%20ILU.m4a + File Folder Count4 + Library Folder Count1 + + 6524 + + Track ID6524 + NameIshwar Allah + ArtistAnuradha Shriram/Sujata Mohan + ComposerA.R. Rahman/Javed Akhtar + Album1947 + GenreSoundtrack + KindAAC audio file + Size7572218 + Total Time315023 + Track Number7 + Year1999 + Date Modified2006-12-26T05:35:58Z + Date Added2009-10-03T14:59:44Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Persistent IDDD089D00573DFEFA + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Anuradha%20Shriram_Sujata%20Mohan/1947/07%20Ishwar%20Allah.m4a + File Folder Count4 + Library Folder Count1 + + 6526 + + Track ID6526 + NameIshwar Allah + ArtistAnuradha Shriram/Sujata Mohan + ComposerA.R. Rahman/Javed Akhtar + Album1947 + GenreSoundtrack + KindAAC audio file + Size7572218 + Total Time315023 + Track Number7 + Year1999 + Date Modified2007-01-17T10:33:02Z + Date Added2009-10-03T14:59:45Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Persistent IDD74ECD6F066A724F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Anuradha%20Shriram_Sujata%20Mohan/1947/07%20Ishwar%20Allah%201.m4a + File Folder Count4 + Library Folder Count1 + + 6528 + + Track ID6528 + NameIshwar Allah + ArtistAnuradha Shriram/Sujata Mohan + ComposerA.R. Rahman/Javed Akhtar + Album1947 + GenreSoundtrack + KindAAC audio file + Size7572188 + Total Time315001 + Track Number7 + Year1999 + Date Modified2007-07-27T05:56:46Z + Date Added2009-10-03T14:59:45Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Persistent ID2A8D37575947C179 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Anuradha%20Shriram_Sujata%20Mohan/1947/07%20Ishwar%20Allah%202.m4a + File Folder Count4 + Library Folder Count1 + + 6530 + + Track ID6530 + NameIshwar Allah + ArtistAnuradha Shriram/Sujata Mohan + ComposerA.R. Rahman/Javed Akhtar + Album1947 + GenreSoundtrack + KindAAC audio file + Size7572218 + Total Time315023 + Track Number7 + Year1999 + Date Modified2006-12-27T09:57:14Z + Date Added2009-10-03T14:59:45Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Persistent IDB40E770F72F35582 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Anuradha%20Shriram_Sujata%20Mohan/1947/07%20Ishwar%20Allah%203.m4a + File Folder Count4 + Library Folder Count1 + + 6532 + + Track ID6532 + NameIshwar Allah + ArtistAnuradha Shriram/Sujata Mohan + ComposerA.R. Rahman/Javed Akhtar + Album1947 + GenreSoundtrack + KindAAC audio file + Size7707736 + Total Time315001 + Track Number7 + Year1999 + Date Modified2007-12-02T07:37:09Z + Date Added2009-10-03T14:59:45Z + Bit Rate194 + Sample Rate44100 + Normalization1259 + Persistent IDBFD2453B4550C280 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Anuradha%20Shriram_Sujata%20Mohan/1947/07%20Ishwar%20Allah%204.m4a + File Folder Count4 + Library Folder Count1 + + 6534 + + Track ID6534 + NameLagaan (Once Upon A Time In India) + ArtistAnudhara Sriram + ComposerA.R. Rahman + AlbumLagaan: Once Upon A Time In India + GenreSoundtrack + KindAAC audio file + Size6103418 + Total Time250611 + Disc Number1 + Disc Count1 + Track Number8 + Track Count8 + Year2001 + Date Modified2006-07-29T04:05:54Z + Date Added2009-10-03T14:59:45Z + Bit Rate192 + Sample Rate44100 + Normalization1867 + Artwork Count1 + Persistent ID73519BD08F4F6852 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Anudhara%20Sriram/Lagaan_%20Once%20Upon%20A%20Time%20In%20India/08%20Lagaan%20(Once%20Upon%20A%20Time%20In%20India).m4a + File Folder Count4 + Library Folder Count1 + + 6536 + + Track ID6536 + NamePrayer In Passing + ArtistAnoushka Shankar + ComposerAnoushka Shankar + AlbumRise + GenreWorld + KindAAC audio file + Size9241437 + Total Time381873 + Disc Number1 + Disc Count1 + Track Number1 + Track Count9 + Year2005 + Date Modified2006-09-05T15:10:34Z + Date Added2009-10-03T14:59:45Z + Bit Rate192 + Sample Rate44100 + Normalization1227 + Artwork Count1 + Persistent ID189476E9FAE9B76C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Anoushka%20Shankar/Rise/01%20Prayer%20In%20Passing.m4a + File Folder Count4 + Library Folder Count1 + + 6538 + + Track ID6538 + NameRed Sun 4 + ArtistAnoushka Shankar + ComposerAnoushka Shankar + AlbumRise + GenreWorld + KindAAC audio file + Size7043131 + Total Time290433 + Disc Number1 + Disc Count1 + Track Number2 + Track Count9 + Year2005 + Date Modified2006-09-05T15:10:32Z + Date Added2009-10-03T14:59:46Z + Bit Rate192 + Sample Rate44100 + Normalization1228 + Artwork Count1 + Persistent IDC5DEEF127F844CA0 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Anoushka%20Shankar/Rise/02%20Red%20Sun%204.m4a + File Folder Count4 + Library Folder Count1 + + 6540 + + Track ID6540 + NameMahadeva + ArtistAnoushka Shankar + ComposerAnoushka Shankar + AlbumRise + GenreWorld + KindAAC audio file + Size8278037 + Total Time341447 + Disc Number1 + Disc Count1 + Track Number3 + Track Count9 + Year2005 + Date Modified2006-09-05T15:10:30Z + Date Added2009-10-03T14:59:46Z + Bit Rate192 + Sample Rate44100 + Normalization2094 + Artwork Count1 + Persistent ID7727EB6CFF0E2262 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Anoushka%20Shankar/Rise/03%20Mahadeva.m4a + File Folder Count4 + Library Folder Count1 + + 6542 + + Track ID6542 + NameNaked + ArtistAnoushka Shankar + ComposerAnoushka Shankar + AlbumRise + GenreWorld + KindAAC audio file + Size6234340 + Total Time256950 + Disc Number1 + Disc Count1 + Track Number4 + Track Count9 + Year2005 + Date Modified2006-09-05T15:10:28Z + Date Added2009-10-03T14:59:46Z + Bit Rate192 + Sample Rate44100 + Normalization855 + Artwork Count1 + Persistent IDCC556584466B9536 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Anoushka%20Shankar/Rise/04%20Naked.m4a + File Folder Count4 + Library Folder Count1 + + 6544 + + Track ID6544 + NameSolea + ArtistAnoushka Shankar + ComposerAnoushka Shankar, Pedro Ricardo Miño + AlbumRise + GenreWorld + KindAAC audio file + Size10808126 + Total Time446007 + Disc Number1 + Disc Count1 + Track Number5 + Track Count9 + Year2005 + Date Modified2006-09-05T15:10:28Z + Date Added2009-10-03T14:59:46Z + Bit Rate192 + Sample Rate44100 + Normalization1227 + Artwork Count1 + Persistent IDDDB0E7B82A5D8CBC + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Anoushka%20Shankar/Rise/05%20Solea.m4a + File Folder Count4 + Library Folder Count1 + + 6546 + + Track ID6546 + NameBeloved + ArtistAnoushka Shankar + ComposerAnoushka Shankar + AlbumRise + GenreWorld + KindAAC audio file + Size10303477 + Total Time425155 + Disc Number1 + Disc Count1 + Track Number6 + Track Count9 + Year2005 + Date Modified2006-09-05T15:10:26Z + Date Added2009-10-03T14:59:46Z + Bit Rate192 + Sample Rate44100 + Normalization1228 + Artwork Count1 + Persistent ID5BEA498BBAD61039 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Anoushka%20Shankar/Rise/06%20Beloved.m4a + File Folder Count4 + Library Folder Count1 + + 6548 + + Track ID6548 + NameSinister Grains + ArtistAnoushka Shankar + ComposerAnoushka Shankar + AlbumRise + GenreWorld + KindAAC audio file + Size9002078 + Total Time371378 + Disc Number1 + Disc Count1 + Track Number7 + Track Count9 + Year2005 + Date Modified2006-09-05T15:10:26Z + Date Added2009-10-03T14:59:47Z + Bit Rate192 + Sample Rate44100 + Normalization1227 + Artwork Count1 + Persistent IDA3C469525C2522EF + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Anoushka%20Shankar/Rise/07%20Sinister%20Grains.m4a + File Folder Count4 + Library Folder Count1 + + 6550 + + Track ID6550 + NameVoice Of The Moon + ArtistAnoushka Shankar + ComposerAnoushka Shankar + AlbumRise + GenreWorld + KindAAC audio file + Size12957490 + Total Time535497 + Disc Number1 + Disc Count1 + Track Number8 + Track Count9 + Year2005 + Date Modified2006-09-05T15:10:24Z + Date Added2009-10-03T14:59:47Z + Bit Rate192 + Sample Rate44100 + Normalization1227 + Artwork Count1 + Persistent IDD4F6417D312B4351 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Anoushka%20Shankar/Rise/08%20Voice%20Of%20The%20Moon.m4a + File Folder Count4 + Library Folder Count1 + + 6552 + + Track ID6552 + NameAncient Love + ArtistAnoushka Shankar + ComposerAnoushka Shankar + AlbumRise + GenreWorld + KindAAC audio file + Size16132743 + Total Time667502 + Disc Number1 + Disc Count1 + Track Number9 + Track Count9 + Year2005 + Date Modified2006-09-05T15:10:24Z + Date Added2009-10-03T14:59:47Z + Bit Rate192 + Sample Rate44100 + Normalization1228 + Artwork Count1 + Persistent ID04A5CBA07B556AC7 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Anoushka%20Shankar/Rise/09%20Ancient%20Love.m4a + File Folder Count4 + Library Folder Count1 + + 6554 + + Track ID6554 + NameRhapsody In Blue + ArtistAndré Previn; London Symphony Orchestra + ComposerGeorge Gershwin + AlbumGershwin: Rhapsody In Blue • Concerto In F • An American In Paris + GenreClassical + KindAAC audio file + Size21575693 + Total Time898935 + Disc Number1 + Disc Count1 + Track Number1 + Track Count5 + Year1971 + Date Modified2006-09-05T15:56:48Z + Date Added2009-10-03T14:59:47Z + Bit Rate192 + Sample Rate44100 + Play Count3 + Play Date3430329438 + Play Date UTC2012-09-12T15:47:18Z + Normalization1057 + Artwork Count1 + Persistent ID90C899A63DE6D57A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Andre%CC%81%20Previn%3B%20London%20Symphony%20Orchestra/Gershwin_%20Rhapsody%20In%20Blue%20%E2%80%A2%20Concerto%20In%20F%20%E2%80%A2%20An%20American%20In%20Paris/01%20Rhapsody%20In%20Blue.m4a + File Folder Count4 + Library Folder Count1 + + 6556 + + Track ID6556 + NameAn American In Paris + ArtistAndré Previn; London Symphony Orchestra + ComposerGeorge Gershwin + AlbumGershwin: Rhapsody In Blue • Concerto In F • An American In Paris + GenreClassical + KindAAC audio file + Size26351564 + Total Time1097094 + Disc Number1 + Disc Count1 + Track Number2 + Track Count5 + Year1971 + Date Modified2006-09-05T15:56:46Z + Date Added2009-10-03T14:59:47Z + Bit Rate192 + Sample Rate44100 + Normalization1090 + Artwork Count1 + Sort NameAmerican In Paris + Persistent ID4C38A0C50B7530DD + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Andre%CC%81%20Previn%3B%20London%20Symphony%20Orchestra/Gershwin_%20Rhapsody%20In%20Blue%20%E2%80%A2%20Concerto%20In%20F%20%E2%80%A2%20An%20American%20In%20Paris/02%20An%20American%20In%20Paris.m4a + File Folder Count4 + Library Folder Count1 + + 6558 + + Track ID6558 + NamePiano Concerto In F (I. Allegro) + ArtistAndré Previn; London Symphony Orchestra + ComposerGeorge Gershwin + AlbumGershwin: Rhapsody In Blue • Concerto In F • An American In Paris + GenreClassical + KindAAC audio file + Size18721277 + Total Time773385 + Disc Number1 + Disc Count1 + Track Number3 + Track Count5 + Year1971 + Date Modified2006-09-05T15:56:44Z + Date Added2009-10-03T14:59:47Z + Bit Rate192 + Sample Rate44100 + Normalization1050 + Artwork Count1 + Persistent IDF34EFF440BF2352C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Andre%CC%81%20Previn%3B%20London%20Symphony%20Orchestra/Gershwin_%20Rhapsody%20In%20Blue%20%E2%80%A2%20Concerto%20In%20F%20%E2%80%A2%20An%20American%20In%20Paris/03%20Piano%20Concerto%20In%20F%20(I.%20Allegro).m4a + File Folder Count4 + Library Folder Count1 + + 6560 + + Track ID6560 + NamePiano Concerto In F (II. Adagio - Adante con moto) + ArtistAndré Previn; London Symphony Orchestra + ComposerGeorge Gershwin + AlbumGershwin: Rhapsody In Blue • Concerto In F • An American In Paris + GenreClassical + KindAAC audio file + Size18068712 + Total Time745777 + Disc Number1 + Disc Count1 + Track Number4 + Track Count5 + Year1971 + Date Modified2006-09-05T15:56:44Z + Date Added2009-10-03T14:59:48Z + Bit Rate192 + Sample Rate44100 + Normalization1066 + Artwork Count1 + Persistent ID96A6D78AA46E1144 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Andre%CC%81%20Previn%3B%20London%20Symphony%20Orchestra/Gershwin_%20Rhapsody%20In%20Blue%20%E2%80%A2%20Concerto%20In%20F%20%E2%80%A2%20An%20American%20In%20Paris/04%20Piano%20Concerto%20In%20F%20(II.%20Adagio%20-%20Adante%20con%20moto).m4a + File Folder Count4 + Library Folder Count1 + + 6562 + + Track ID6562 + NamePiano Concerto In F (III. Allegro agitato) + ArtistAndré Previn; London Symphony Orchestra + ComposerGeorge Gershwin + AlbumGershwin: Rhapsody In Blue • Concerto In F • An American In Paris + GenreClassical + KindAAC audio file + Size9639276 + Total Time397779 + Disc Number1 + Disc Count1 + Track Number5 + Track Count5 + Year1971 + Date Modified2006-09-05T15:56:42Z + Date Added2009-10-03T14:59:48Z + Bit Rate192 + Sample Rate44100 + Normalization1076 + Artwork Count1 + Persistent IDA05F9F223205D41A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Andre%CC%81%20Previn%3B%20London%20Symphony%20Orchestra/Gershwin_%20Rhapsody%20In%20Blue%20%E2%80%A2%20Concerto%20In%20F%20%E2%80%A2%20An%20American%20In%20Paris/05%20Piano%20Concerto%20In%20F%20(III.%20Allegro%20agitato).m4a + File Folder Count4 + Library Folder Count1 + + 6564 + + Track ID6564 + NameRefuge + ArtistAndrew Hill + ComposerAndrew Hill + AlbumPoint Of Departure + GenreJazz + KindAAC audio file + Size23980438 + Total Time736600 + Disc Number1 + Disc Count1 + Track Number1 + Track Count8 + Year1964 + Date Modified2008-11-04T13:27:55Z + Date Added2009-10-03T14:59:48Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3338659955 + Play Date UTC2009-10-17T16:02:35Z + Normalization1892 + Artwork Count1 + Persistent IDB453BC23E552647C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Andrew%20Hill/Point%20Of%20Departure/01%20Refuge.m4a + File Folder Count4 + Library Folder Count1 + + 6566 + + Track ID6566 + NameNew Monastery + ArtistAndrew Hill + ComposerAndrew Hill + AlbumPoint Of Departure + GenreJazz + KindAAC audio file + Size13819908 + Total Time425066 + Disc Number1 + Disc Count1 + Track Number2 + Track Count8 + Year1964 + Date Modified2008-11-04T13:27:53Z + Date Added2009-10-03T14:59:48Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3338660380 + Play Date UTC2009-10-17T16:09:40Z + Normalization2024 + Artwork Count1 + Persistent ID28237172C3542269 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Andrew%20Hill/Point%20Of%20Departure/02%20New%20Monastery.m4a + File Folder Count4 + Library Folder Count1 + + 6568 + + Track ID6568 + NameSpectrum + ArtistAndrew Hill + ComposerAndrew Hill + AlbumPoint Of Departure + GenreJazz + KindAAC audio file + Size18774366 + Total Time587520 + Disc Number1 + Disc Count1 + Track Number3 + Track Count8 + Year1964 + Date Modified2008-11-04T13:27:52Z + Date Added2009-10-03T14:59:48Z + Bit Rate256 + Sample Rate44100 + Normalization1380 + Artwork Count1 + Persistent IDC984270DC0672C79 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Andrew%20Hill/Point%20Of%20Departure/03%20Spectrum.m4a + File Folder Count4 + Library Folder Count1 + + 6570 + + Track ID6570 + NameFlight + ArtistAndrew Hill + ComposerAndrew Hill + AlbumPoint Of Departure + GenreJazz + KindAAC audio file + Size8171499 + Total Time258320 + Disc Number1 + Disc Count1 + Track Number4 + Track Count8 + Year1964 + Date Modified2008-11-04T13:27:51Z + Date Added2009-10-03T14:59:48Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3428045930 + Play Date UTC2012-08-17T05:28:50Z + Normalization1161 + Artwork Count1 + Persistent ID5A92A93BA8D4ACF8 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Andrew%20Hill/Point%20Of%20Departure/04%20Flight.m4a + File Folder Count4 + Library Folder Count1 + + 6572 + + Track ID6572 + NameDedication + ArtistAndrew Hill + ComposerAndrew Hill + AlbumPoint Of Departure + GenreJazz + KindAAC audio file + Size12823652 + Total Time405213 + Disc Number1 + Disc Count1 + Track Number5 + Track Count8 + Year1964 + Date Modified2008-11-04T13:27:50Z + Date Added2009-10-03T14:59:48Z + Bit Rate256 + Sample Rate44100 + Normalization987 + Artwork Count1 + Persistent ID2E10D60D175BF742 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Andrew%20Hill/Point%20Of%20Departure/05%20Dedication.m4a + File Folder Count4 + Library Folder Count1 + + 6574 + + Track ID6574 + NameNew Monastery (Alternate Take) + ArtistAndrew Hill + ComposerAndrew Hill + AlbumPoint Of Departure + GenreJazz + KindAAC audio file + Size12090777 + Total Time373693 + Disc Number1 + Disc Count1 + Track Number6 + Track Count8 + Year1964 + Date Modified2008-11-04T13:27:49Z + Date Added2009-10-03T14:59:48Z + Bit Rate256 + Sample Rate44100 + Normalization1941 + Artwork Count1 + Persistent ID4A023F4CAAF1C8D3 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Andrew%20Hill/Point%20Of%20Departure/06%20New%20Monastery%20(Alternate%20Take).m4a + File Folder Count4 + Library Folder Count1 + + 6576 + + Track ID6576 + NameFlight 19 (Alternate Take) + ArtistAndrew Hill + ComposerAndrew Hill + AlbumPoint Of Departure + GenreJazz + KindAAC audio file + Size7313988 + Total Time229506 + Disc Number1 + Disc Count1 + Track Number7 + Track Count8 + Year1964 + Date Modified2008-11-04T13:27:49Z + Date Added2009-10-03T14:59:49Z + Bit Rate256 + Sample Rate44100 + Normalization1141 + Artwork Count1 + Persistent IDF2D93DC442AF59D0 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Andrew%20Hill/Point%20Of%20Departure/07%20Flight%2019%20(Alternate%20Take).m4a + File Folder Count4 + Library Folder Count1 + + 6578 + + Track ID6578 + NameDedication (Alternate Take) + ArtistAndrew Hill + ComposerAndrew Hill + AlbumPoint Of Departure + GenreJazz + KindAAC audio file + Size13400496 + Total Time421040 + Disc Number1 + Disc Count1 + Track Number8 + Track Count8 + Year1964 + Date Modified2008-11-04T13:27:48Z + Date Added2009-10-03T14:59:49Z + Bit Rate256 + Sample Rate44100 + Normalization1452 + Artwork Count1 + Persistent ID87B859738272E548 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Andrew%20Hill/Point%20Of%20Departure/08%20Dedication%20(Alternate%20Take).m4a + File Folder Count4 + Library Folder Count1 + + 6580 + + Track ID6580 + NameDebe + ArtistAli Farka Touré & Toumani Diabeté + ComposerTraditional, Arranged by Ali Farka Touré & Toumani Diabeté + AlbumIn The Heart Of The Moon + GenreWorld + KindAAC audio file + Size7183541 + Total Time295588 + Disc Number1 + Disc Count1 + Track Number1 + Track Count12 + Year2005 + Date Modified2006-09-05T15:58:00Z + Date Added2009-10-03T14:59:49Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Persistent ID009227F36E2BCE96 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ali%20Farka%20Toure%CC%81%20&%20Toumani%20Diabete%CC%81/In%20The%20Heart%20Of%20The%20Moon/01%20Debe.m4a + File Folder Count4 + Library Folder Count1 + + 6582 + + Track ID6582 + NameKala + ArtistAli Farka Touré & Toumani Diabeté + ComposerTraditional, Arranged by Toumani Diabeté + AlbumIn The Heart Of The Moon + GenreWorld + KindAAC audio file + Size7452632 + Total Time306710 + Disc Number1 + Disc Count1 + Track Number2 + Track Count12 + Year2005 + Date Modified2006-09-05T15:57:58Z + Date Added2009-10-03T14:59:49Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Persistent IDC3DFE7F9BC9B0BE7 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ali%20Farka%20Toure%CC%81%20&%20Toumani%20Diabete%CC%81/In%20The%20Heart%20Of%20The%20Moon/02%20Kala.m4a + File Folder Count4 + Library Folder Count1 + + 6584 + + Track ID6584 + NameMamadou Boutiquier + ArtistAli Farka Touré & Toumani Diabeté + ComposerTraditional, Arranged by Toumani Diabeté + AlbumIn The Heart Of The Moon + GenreWorld + KindAAC audio file + Size7410341 + Total Time304969 + Disc Number1 + Disc Count1 + Track Number3 + Track Count12 + Year2005 + Date Modified2006-09-05T15:57:58Z + Date Added2009-10-03T14:59:49Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Persistent ID9AE2BF896792DB2C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ali%20Farka%20Toure%CC%81%20&%20Toumani%20Diabete%CC%81/In%20The%20Heart%20Of%20The%20Moon/03%20Mamadou%20Boutiquier.m4a + File Folder Count4 + Library Folder Count1 + + 6586 + + Track ID6586 + NameMonsieur Le Maire De Niafunké + ArtistAli Farka Touré & Toumani Diabeté + ComposerToumani Diabeté + AlbumIn The Heart Of The Moon + GenreWorld + KindAAC audio file + Size5816225 + Total Time238908 + Disc Number1 + Disc Count1 + Track Number4 + Track Count12 + Year2005 + Date Modified2006-09-05T15:57:56Z + Date Added2009-10-03T14:59:50Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Persistent IDF4BC7B27A3999C0C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ali%20Farka%20Toure%CC%81%20&%20Toumani%20Diabete%CC%81/In%20The%20Heart%20Of%20The%20Moon/04%20Monsieur%20Le%20Maire%20De%20Niafunke%CC%81.m4a + File Folder Count4 + Library Folder Count1 + + 6588 + + Track ID6588 + NameKaira + ArtistAli Farka Touré & Toumani Diabeté + ComposerTraditional, Arranged by Ali Farka Touré & Toumani Diabeté + AlbumIn The Heart Of The Moon + GenreWorld + KindAAC audio file + Size9345078 + Total Time384915 + Disc Number1 + Disc Count1 + Track Number5 + Track Count12 + Year2005 + Date Modified2006-09-05T15:57:56Z + Date Added2009-10-03T14:59:50Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Persistent ID75BDFE622498FF00 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ali%20Farka%20Toure%CC%81%20&%20Toumani%20Diabete%CC%81/In%20The%20Heart%20Of%20The%20Moon/05%20Kaira.m4a + File Folder Count4 + Library Folder Count1 + + 6590 + + Track ID6590 + NameSimbo + ArtistAli Farka Touré & Toumani Diabeté + ComposerTraditional, Arranged by Ali Farka Touré & Toumani Diabeté + AlbumIn The Heart Of The Moon + GenreWorld + KindAAC audio file + Size5847429 + Total Time240208 + Disc Number1 + Disc Count1 + Track Number6 + Track Count12 + Year2005 + Date Modified2006-09-05T15:57:54Z + Date Added2009-10-03T14:59:50Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Persistent ID1C654ECEB4AAA828 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ali%20Farka%20Toure%CC%81%20&%20Toumani%20Diabete%CC%81/In%20The%20Heart%20Of%20The%20Moon/06%20Simbo.m4a + File Folder Count4 + Library Folder Count1 + + 6592 + + Track ID6592 + NameAi Ga Bani + ArtistAli Farka Touré & Toumani Diabeté + ComposerAli Farka Touré + AlbumIn The Heart Of The Moon + GenreWorld + KindAAC audio file + Size6672268 + Total Time274458 + Disc Number1 + Disc Count1 + Track Number7 + Track Count12 + Year2005 + Date Modified2006-09-05T15:57:54Z + Date Added2009-10-03T14:59:50Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Persistent IDCF1ED35B2D16F72B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ali%20Farka%20Toure%CC%81%20&%20Toumani%20Diabete%CC%81/In%20The%20Heart%20Of%20The%20Moon/07%20Ai%20Ga%20Bani.m4a + File Folder Count4 + Library Folder Count1 + + 6594 + + Track ID6594 + NameSoumbou Ya Ya + ArtistAli Farka Touré & Toumani Diabeté + ComposerTraditional, Arranged by Ali Farka Touré & Toumani Diabeté + AlbumIn The Heart Of The Moon + GenreWorld + KindAAC audio file + Size5129172 + Total Time210301 + Disc Number1 + Disc Count1 + Track Number8 + Track Count12 + Year2005 + Date Modified2006-09-05T15:57:52Z + Date Added2009-10-03T14:59:50Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Persistent ID7C4834B6D2A8BC5C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ali%20Farka%20Toure%CC%81%20&%20Toumani%20Diabete%CC%81/In%20The%20Heart%20Of%20The%20Moon/08%20Soumbou%20Ya%20Ya.m4a + File Folder Count4 + Library Folder Count1 + + 6596 + + Track ID6596 + NameNaweye Toro + ArtistAli Farka Touré & Toumani Diabeté + ComposerTraditional, Arranged by Ali Farka Touré & Toumani Diabeté + AlbumIn The Heart Of The Moon + GenreWorld + KindAAC audio file + Size6415303 + Total Time263846 + Disc Number1 + Disc Count1 + Track Number9 + Track Count12 + Year2005 + Date Modified2006-09-05T15:57:52Z + Date Added2009-10-03T14:59:50Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Persistent ID4F2EEA8C22C0063D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ali%20Farka%20Toure%CC%81%20&%20Toumani%20Diabete%CC%81/In%20The%20Heart%20Of%20The%20Moon/09%20Naweye%20Toro.m4a + File Folder Count4 + Library Folder Count1 + + 6598 + + Track ID6598 + NameKadi Kadi + ArtistAli Farka Touré & Toumani Diabeté + ComposerAli Farka Touré + AlbumIn The Heart Of The Moon + GenreWorld + KindAAC audio file + Size4914279 + Total Time201361 + Disc Number1 + Disc Count1 + Track Number10 + Track Count12 + Year2005 + Date Modified2006-09-05T15:57:50Z + Date Added2009-10-03T14:59:50Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Persistent ID2A57459C4A5A6A2D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ali%20Farka%20Toure%CC%81%20&%20Toumani%20Diabete%CC%81/In%20The%20Heart%20Of%20The%20Moon/10%20Kadi%20Kadi.m4a + File Folder Count4 + Library Folder Count1 + + 6600 + + Track ID6600 + NameGomni + ArtistAli Farka Touré & Toumani Diabeté + ComposerAli Farka Touré + AlbumIn The Heart Of The Moon + GenreWorld + KindAAC audio file + Size6262793 + Total Time257507 + Disc Number1 + Disc Count1 + Track Number11 + Track Count12 + Year2005 + Date Modified2006-09-05T15:57:50Z + Date Added2009-10-03T14:59:51Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Persistent IDABC1C84DDF04A690 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ali%20Farka%20Toure%CC%81%20&%20Toumani%20Diabete%CC%81/In%20The%20Heart%20Of%20The%20Moon/11%20Gomni.m4a + File Folder Count4 + Library Folder Count1 + + 6602 + + Track ID6602 + NameHawa Dolo + ArtistAli Farka Touré & Toumani Diabeté + ComposerAli Farka Touré + AlbumIn The Heart Of The Moon + GenreWorld + KindAAC audio file + Size7312714 + Total Time300929 + Disc Number1 + Disc Count1 + Track Number12 + Track Count12 + Year2005 + Date Modified2006-09-05T15:57:50Z + Date Added2009-10-03T14:59:51Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Persistent IDD017B743A8C73E1D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ali%20Farka%20Toure%CC%81%20&%20Toumani%20Diabete%CC%81/In%20The%20Heart%20Of%20The%20Moon/12%20Hawa%20Dolo.m4a + File Folder Count4 + Library Folder Count1 + + 6604 + + Track ID6604 + NameAll I Really Want + ArtistAlanis Morissette + ComposerMorissette, Alanis and Glen Ballard/Music by Alanis Morissette and Glen Ballard. Lyrics by Alanis Morissette. + AlbumJagged Little Pill + GenreRock + KindAAC audio file + Size6994560 + Total Time283760 + Disc Number1 + Disc Count1 + Track Number1 + Track Count13 + Year1995 + Date Modified2008-10-07T13:58:56Z + Date Added2009-10-03T14:59:51Z + Bit Rate192 + Sample Rate44100 + Normalization3230 + Artwork Count1 + Persistent ID3994851EC17097A0 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alanis%20Morissette/Jagged%20Little%20Pill/01%20All%20I%20Really%20Want.m4a + File Folder Count4 + Library Folder Count1 + + 6606 + + Track ID6606 + NameYou Oughta Know + ArtistAlanis Morissette + ComposerMorissette, Alanis and Glen Ballard/Music by Alanis Morissette and Glen Ballard. Lyrics by Alanis Morissette. + AlbumJagged Little Pill + GenreRock + KindAAC audio file + Size6060808 + Total Time248573 + Disc Number1 + Disc Count1 + Track Number2 + Track Count13 + Year1995 + Date Modified2008-10-07T13:58:55Z + Date Added2009-10-03T14:59:51Z + Bit Rate192 + Sample Rate44100 + Normalization3751 + Artwork Count1 + Persistent ID83D18875C337BBCB + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alanis%20Morissette/Jagged%20Little%20Pill/02%20You%20Oughta%20Know.m4a + File Folder Count4 + Library Folder Count1 + + 6608 + + Track ID6608 + NamePerfect + ArtistAlanis Morissette + ComposerMorissette, Alanis and Glen Ballard/Music by Alanis Morissette and Glen Ballard. Lyrics by Alanis Morissette. + AlbumJagged Little Pill + GenreRock + KindAAC audio file + Size4557122 + Total Time185253 + Disc Number1 + Disc Count1 + Track Number3 + Track Count13 + Year1995 + Date Modified2008-10-07T13:58:55Z + Date Added2009-10-03T14:59:51Z + Bit Rate192 + Sample Rate44100 + Normalization1787 + Artwork Count1 + Persistent ID3723821CB434E013 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alanis%20Morissette/Jagged%20Little%20Pill/03%20Perfect.m4a + File Folder Count4 + Library Folder Count1 + + 6610 + + Track ID6610 + NameHand In My Pocket + ArtistAlanis Morissette + ComposerMorissette, Alanis and Glen Ballard/Music by Alanis Morissette and Glen Ballard. Lyrics by Alanis Morissette. + AlbumJagged Little Pill + GenreRock + KindAAC audio file + Size5336015 + Total Time219333 + Disc Number1 + Disc Count1 + Track Number4 + Track Count13 + Year1995 + Date Modified2008-10-07T13:58:54Z + Date Added2009-10-03T14:59:51Z + Bit Rate192 + Sample Rate44100 + Normalization1951 + Artwork Count1 + Persistent ID59E1B50342384287 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alanis%20Morissette/Jagged%20Little%20Pill/04%20Hand%20In%20My%20Pocket.m4a + File Folder Count4 + Library Folder Count1 + + 6612 + + Track ID6612 + NameRight Through You + ArtistAlanis Morissette + ComposerMorissette, Alanis and Glen Ballard/Music by Alanis Morissette and Glen Ballard. Lyrics by Alanis Morissette. + AlbumJagged Little Pill + GenreRock + KindAAC audio file + Size4258198 + Total Time174533 + Disc Number1 + Disc Count1 + Track Number5 + Track Count13 + Year1995 + Date Modified2008-10-07T13:58:54Z + Date Added2009-10-03T14:59:52Z + Bit Rate192 + Sample Rate44100 + Normalization4757 + Artwork Count1 + Persistent ID45408FF01779DEC9 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alanis%20Morissette/Jagged%20Little%20Pill/05%20Right%20Through%20You.m4a + File Folder Count4 + Library Folder Count1 + + 6614 + + Track ID6614 + NameForgiven + ArtistAlanis Morissette + ComposerMorissette, Alanis and Glen Ballard/Music by Alanis Morissette and Glen Ballard. Lyrics by Alanis Morissette. + AlbumJagged Little Pill + GenreRock + KindAAC audio file + Size7302676 + Total Time297893 + Disc Number1 + Disc Count1 + Track Number6 + Track Count13 + Year1995 + Date Modified2008-10-07T13:58:53Z + Date Added2009-10-03T14:59:52Z + Bit Rate192 + Sample Rate44100 + Normalization5342 + Artwork Count1 + Persistent IDC90329EF6F17591F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alanis%20Morissette/Jagged%20Little%20Pill/06%20Forgiven.m4a + File Folder Count4 + Library Folder Count1 + + 6616 + + Track ID6616 + NameYou Learn + ArtistAlanis Morissette + ComposerMorissette, Alanis and Glen Ballard/Music by Alanis Morissette and Glen Ballard. Lyrics by Alanis Morissette. + AlbumJagged Little Pill + GenreRock + KindAAC audio file + Size5759202 + Total Time239240 + Disc Number1 + Disc Count1 + Track Number7 + Track Count13 + Year1995 + Date Modified2008-10-07T13:58:53Z + Date Added2009-10-03T14:59:52Z + Bit Rate192 + Sample Rate44100 + Normalization3655 + Artwork Count1 + Persistent ID4FE2094D93F52180 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alanis%20Morissette/Jagged%20Little%20Pill/07%20You%20Learn.m4a + File Folder Count4 + Library Folder Count1 + + 6618 + + Track ID6618 + NameHead Over Feet + ArtistAlanis Morissette + ComposerMorissette, Alanis and Glen Ballard/Music by Alanis Morissette and Glen Ballard. Lyrics by Alanis Morissette. + AlbumJagged Little Pill + GenreRock + KindAAC audio file + Size6502576 + Total Time264853 + Disc Number1 + Disc Count1 + Track Number8 + Track Count13 + Year1995 + Date Modified2008-10-07T13:58:52Z + Date Added2009-10-03T14:59:52Z + Bit Rate192 + Sample Rate44100 + Normalization3545 + Artwork Count1 + Persistent ID54EB22460E083B63 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alanis%20Morissette/Jagged%20Little%20Pill/08%20Head%20Over%20Feet.m4a + File Folder Count4 + Library Folder Count1 + + 6620 + + Track ID6620 + NameMary Jane + ArtistAlanis Morissette + ComposerMorissette, Alanis and Glen Ballard/Music by Alanis Morissette and Glen Ballard. Lyrics by Alanis Morissette. + AlbumJagged Little Pill + GenreRock + KindAAC audio file + Size6889019 + Total Time279320 + Disc Number1 + Disc Count1 + Track Number9 + Track Count13 + Year1995 + Date Modified2008-10-07T13:58:52Z + Date Added2009-10-03T14:59:52Z + Bit Rate192 + Sample Rate44100 + Normalization3632 + Artwork Count1 + Persistent ID8976FF2411A688BC + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alanis%20Morissette/Jagged%20Little%20Pill/09%20Mary%20Jane.m4a + File Folder Count4 + Library Folder Count1 + + 6622 + + Track ID6622 + NameIronic + ArtistAlanis Morissette + ComposerMorissette, Alanis and Glen Ballard/Music by Alanis Morissette and Glen Ballard. Lyrics by Alanis Morissette. + AlbumJagged Little Pill + GenreRock + KindAAC audio file + Size5611804 + Total Time228213 + Disc Number1 + Disc Count1 + Track Number10 + Track Count13 + Year1995 + Date Modified2008-10-07T13:58:51Z + Date Added2009-10-03T14:59:52Z + Bit Rate192 + Sample Rate44100 + Normalization2369 + Artwork Count1 + Persistent ID3C0288B8ACED2A74 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alanis%20Morissette/Jagged%20Little%20Pill/10%20Ironic.m4a + File Folder Count4 + Library Folder Count1 + + 6624 + + Track ID6624 + NameNot The Doctor + ArtistAlanis Morissette + ComposerMorissette, Alanis and Glen Ballard/Music by Alanis Morissette and Glen Ballard. Lyrics by Alanis Morissette. + AlbumJagged Little Pill + GenreRock + KindAAC audio file + Size5537344 + Total Time225440 + Disc Number1 + Disc Count1 + Track Number11 + Track Count13 + Year1995 + Date Modified2008-10-07T13:58:50Z + Date Added2009-10-03T14:59:52Z + Bit Rate192 + Sample Rate44100 + Normalization2053 + Artwork Count1 + Persistent ID4E88E0524B8AA851 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alanis%20Morissette/Jagged%20Little%20Pill/11%20Not%20The%20Doctor.m4a + File Folder Count4 + Library Folder Count1 + + 6626 + + Track ID6626 + NameWake Up + ArtistAlanis Morissette + ComposerMorissette, Alanis and Glen Ballard/Music by Alanis Morissette and Glen Ballard. Lyrics by Alanis Morissette. + AlbumJagged Little Pill + GenreRock + KindAAC audio file + Size7286911 + Total Time295146 + Disc Number1 + Disc Count1 + Track Number12 + Track Count13 + Year1995 + Date Modified2008-10-07T13:58:50Z + Date Added2009-10-03T14:59:52Z + Bit Rate192 + Sample Rate44100 + Normalization2643 + Artwork Count1 + Persistent ID4AE6D1A57D766C98 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alanis%20Morissette/Jagged%20Little%20Pill/12%20Wake%20Up.m4a + File Folder Count4 + Library Folder Count1 + + 6628 + + Track ID6628 + NameYou Oughta Know [Alternate Take] + ArtistAlanis Morissette + ComposerMorissette, Alanis and Glen Ballard/Music by Alanis Morissette and Glen Ballard. Lyrics by Alanis Morissette. + AlbumJagged Little Pill + GenreRock + KindAAC audio file + Size10405095 + Total Time436373 + Disc Number1 + Disc Count1 + Track Number13 + Track Count13 + Year1995 + Date Modified2008-10-07T13:58:49Z + Date Added2009-10-03T14:59:52Z + Bit Rate192 + Sample Rate44100 + Normalization3923 + Artwork Count1 + Persistent ID7A1826CE7974E37E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alanis%20Morissette/Jagged%20Little%20Pill/13%20You%20Oughta%20Know%20%5BAlternate%20Take%5D.m4a + File Folder Count4 + Library Folder Count1 + + 6630 + + Track ID6630 + NameHells Bells + ArtistAC/DC + AlbumBack In Black + GenreRock + KindAAC audio file + Size7667370 + Total Time312400 + Disc Number1 + Disc Count1 + Track Number1 + Track Count10 + Year1980 + BPM192 + Date Modified2008-10-05T08:16:20Z + Date Added2009-10-03T14:59:53Z + Bit Rate192 + Sample Rate44100 + Normalization7402 + Artwork Count1 + Persistent IDD86D0E111D3AE152 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/AC_DC/Back%20In%20Black/01%20Hells%20Bells.m4a + File Folder Count4 + Library Folder Count1 + + 6632 + + Track ID6632 + NameShoot To Thrill + ArtistAC/DC + AlbumBack In Black + GenreRock + KindAAC audio file + Size7870311 + Total Time317600 + Disc Number1 + Disc Count1 + Track Number2 + Track Count10 + Year1980 + BPM192 + Date Modified2008-10-05T08:16:21Z + Date Added2009-10-03T14:59:53Z + Bit Rate192 + Sample Rate44100 + Normalization8159 + Artwork Count1 + Persistent ID95970EC01A2DE92D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/AC_DC/Back%20In%20Black/02%20Shoot%20To%20Thrill.m4a + File Folder Count4 + Library Folder Count1 + + 6634 + + Track ID6634 + NameWhat Do You Do For Money Honey + ArtistAC/DC + AlbumBack In Black + GenreRock + KindAAC audio file + Size5294181 + Total Time215226 + Disc Number1 + Disc Count1 + Track Number3 + Track Count10 + Year1980 + BPM192 + Date Modified2008-10-05T08:16:21Z + Date Added2009-10-03T14:59:53Z + Bit Rate192 + Sample Rate44100 + Normalization9486 + Artwork Count1 + Persistent IDA0C483F13547A462 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/AC_DC/Back%20In%20Black/03%20What%20Do%20You%20Do%20For%20Money%20Honey.m4a + File Folder Count4 + Library Folder Count1 + + 6636 + + Track ID6636 + NameGivin' The Dog A Bone + ArtistAC/DC + AlbumBack In Black + GenreRock + KindAAC audio file + Size5259571 + Total Time211933 + Disc Number1 + Disc Count1 + Track Number4 + Track Count10 + Year1980 + BPM192 + Date Modified2008-10-05T08:16:22Z + Date Added2009-10-03T14:59:53Z + Bit Rate192 + Sample Rate44100 + Normalization9997 + Artwork Count1 + Persistent IDE8C44542D30DAFDB + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/AC_DC/Back%20In%20Black/04%20Givin'%20The%20Dog%20A%20Bone.m4a + File Folder Count4 + Library Folder Count1 + + 6638 + + Track ID6638 + NameLet Me Put My Love Into You + ArtistAC/DC + AlbumBack In Black + GenreRock + KindAAC audio file + Size6322986 + Total Time255640 + Disc Number1 + Disc Count1 + Track Number5 + Track Count10 + Year1980 + BPM192 + Date Modified2008-10-05T08:16:22Z + Date Added2009-10-03T14:59:53Z + Bit Rate192 + Sample Rate44100 + Normalization9818 + Artwork Count1 + Persistent IDB67ECBF7506690A1 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/AC_DC/Back%20In%20Black/05%20Let%20Me%20Put%20My%20Love%20Into%20You.m4a + File Folder Count4 + Library Folder Count1 + + 6640 + + Track ID6640 + NameBack In Black + ArtistAC/DC + AlbumBack In Black + GenreRock + KindAAC audio file + Size6320595 + Total Time255293 + Disc Number1 + Disc Count1 + Track Number6 + Track Count10 + Year1980 + BPM192 + Date Modified2008-10-05T08:16:23Z + Date Added2009-10-03T14:59:53Z + Bit Rate192 + Sample Rate44100 + Normalization8072 + Artwork Count1 + Persistent ID99CE6E3C3D06603B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/AC_DC/Back%20In%20Black/06%20Back%20In%20Black.m4a + File Folder Count4 + Library Folder Count1 + + 6642 + + Track ID6642 + NameYou Shook Me All Night Long + ArtistAC/DC + AlbumBack In Black + GenreRock + KindAAC audio file + Size5212877 + Total Time210200 + Disc Number1 + Disc Count1 + Track Number7 + Track Count10 + Year1980 + BPM192 + Date Modified2008-10-05T08:16:23Z + Date Added2009-10-03T14:59:53Z + Bit Rate192 + Sample Rate44100 + Normalization8405 + Artwork Count1 + Persistent IDEACF76E16B8DA6B6 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/AC_DC/Back%20In%20Black/07%20You%20Shook%20Me%20All%20Night%20Long.m4a + File Folder Count4 + Library Folder Count1 + + 6644 + + Track ID6644 + NameHave A Drink On Me + ArtistAC/DC + AlbumBack In Black + GenreRock + KindAAC audio file + Size5902918 + Total Time238640 + Disc Number1 + Disc Count1 + Track Number8 + Track Count10 + Year1980 + BPM192 + Date Modified2008-10-05T08:16:24Z + Date Added2009-10-03T14:59:54Z + Bit Rate192 + Sample Rate44100 + Normalization8482 + Artwork Count1 + Persistent ID826F899140006034 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/AC_DC/Back%20In%20Black/08%20Have%20A%20Drink%20On%20Me.m4a + File Folder Count4 + Library Folder Count1 + + 6646 + + Track ID6646 + NameShake A Leg + ArtistAC/DC + AlbumBack In Black + GenreRock + KindAAC audio file + Size6071578 + Total Time245493 + Disc Number1 + Disc Count1 + Track Number9 + Track Count10 + Year1980 + BPM192 + Date Modified2008-10-05T08:16:24Z + Date Added2009-10-03T14:59:54Z + Bit Rate192 + Sample Rate44100 + Normalization9676 + Artwork Count1 + Persistent IDACBAD1A184EA7D5F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/AC_DC/Back%20In%20Black/09%20Shake%20A%20Leg.m4a + File Folder Count4 + Library Folder Count1 + + 6648 + + Track ID6648 + NameRock And Roll Ain't Noise Pollution + ArtistAC/DC + AlbumBack In Black + GenreRock + KindAAC audio file + Size6333791 + Total Time266040 + Disc Number1 + Disc Count1 + Track Number10 + Track Count10 + Year1980 + BPM192 + Date Modified2008-10-05T08:16:25Z + Date Added2009-10-03T14:59:54Z + Bit Rate192 + Sample Rate44100 + Normalization6777 + Artwork Count1 + Persistent IDAE41B4395D9C8A77 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/AC_DC/Back%20In%20Black/10%20Rock%20And%20Roll%20Ain't%20Noise%20Pollution.m4a + File Folder Count4 + Library Folder Count1 + + 6650 + + Track ID6650 + NameLalkaar + ArtistAamir Khan & Chorus + Composera r rahman + AlbumRang De Basanti + GenreSoundtracks + KindAAC audio file + Size4270741 + Total Time176772 + Track Number9 + Date Modified2007-04-09T09:37:24Z + Date Added2009-10-03T15:00:49Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Sort Composerr rahman + Persistent ID9CC41C25C8E18118 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Aamir%20Khan%20&%20Chorus/Rang%20De%20Basanti/09%20Lalkaar.m4a + File Folder Count4 + Library Folder Count1 + + 6652 + + Track ID6652 + NameLalkaar + ArtistAamir Khan & Chorus + Composera r rahman + AlbumRang De Basanti + GenreSoundtracks + KindAAC audio file + Size4255241 + Total Time176750 + Track Number9 + Date Modified2007-07-27T06:39:12Z + Date Added2009-10-03T15:00:50Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Sort Composerr rahman + Persistent ID9BACD11B50FD5380 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Aamir%20Khan%20&%20Chorus/Rang%20De%20Basanti/09%20Lalkaar%201.m4a + File Folder Count4 + Library Folder Count1 + + 6654 + + Track ID6654 + NameLalkaar + ArtistAamir Khan & Chorus + Composera r rahman + AlbumRang De Basanti + GenreSoundtracks + KindAAC audio file + Size4270741 + Total Time176772 + Track Number9 + Date Modified2006-12-27T10:38:34Z + Date Added2009-10-03T15:00:50Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Sort Composerr rahman + Persistent ID2FCADCC2E978A693 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Aamir%20Khan%20&%20Chorus/Rang%20De%20Basanti/09%20Lalkaar%202.m4a + File Folder Count4 + Library Folder Count1 + + 6656 + + Track ID6656 + NameLalkaar + ArtistAamir Khan & Chorus + Composera r rahman + AlbumRang De Basanti + GenreSoundtracks + KindAAC audio file + Size4169224 + Total Time176750 + Track Number9 + Date Modified2007-12-02T08:06:59Z + Date Added2009-10-03T15:00:50Z + Bit Rate187 + Sample Rate44100 + Normalization1259 + Sort Composerr rahman + Persistent IDE55810F1ACF024EE + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Aamir%20Khan%20&%20Chorus/Rang%20De%20Basanti/09%20Lalkaar%203.m4a + File Folder Count4 + Library Folder Count1 + + 6658 + + Track ID6658 + NameChale Chalo + ArtistA.R. Rahman, Srinivas + ComposerA.R. Rahman + AlbumLagaan: Once Upon A Time In India + GenreSoundtrack + KindAAC audio file + Size9727450 + Total Time400449 + Disc Number1 + Disc Count1 + Track Number5 + Track Count8 + Year2001 + Date Modified2006-07-29T04:05:52Z + Date Added2009-10-03T15:00:50Z + Bit Rate192 + Sample Rate44100 + Skip Count2 + Skip Date2014-06-04T05:21:18Z + Normalization1629 + Artwork Count1 + Persistent ID442EC2B3BD3B548C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/A.R.%20Rahman,%20Srinivas/Lagaan_%20Once%20Upon%20A%20Time%20In%20India/05%20Chale%20Chalo.m4a + File Folder Count4 + Library Folder Count1 + + 6660 + + Track ID6660 + NameRoobaroo + ArtistA R Rahman, Naresh Iyer + Composera r rahman + AlbumRang De Basanti + GenreSoundtracks + KindAAC audio file + Size6848853 + Total Time283026 + Track Number10 + Date Modified2007-04-01T07:26:48Z + Date Added2009-10-03T15:00:50Z + Bit Rate192 + Sample Rate44100 + Normalization2489 + Artwork Count1 + Sort ArtistR Rahman, Naresh Iyer + Sort Composerr rahman + Persistent ID705624DDFD6638C0 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/A%20R%20Rahman,%20Naresh%20Iyer/Rang%20De%20Basanti/10%20Roobaroo.m4a + File Folder Count4 + Library Folder Count1 + + 6662 + + Track ID6662 + NameRoobaroo + ArtistA R Rahman, Naresh Iyer + Composera r rahman + AlbumRang De Basanti + GenreSoundtracks + KindAAC audio file + Size6802512 + Total Time283004 + Track Number10 + Date Modified2007-07-27T06:39:30Z + Date Added2009-10-03T15:00:50Z + Bit Rate192 + Sample Rate44100 + Normalization2489 + Sort ArtistR Rahman, Naresh Iyer + Sort Composerr rahman + Persistent ID083845475EAD97F0 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/A%20R%20Rahman,%20Naresh%20Iyer/Rang%20De%20Basanti/10%20Roobaroo%201.m4a + File Folder Count4 + Library Folder Count1 + + 6664 + + Track ID6664 + NameRoobaroo + ArtistA R Rahman, Naresh Iyer + Composera r rahman + AlbumRang De Basanti + GenreSoundtracks + KindAAC audio file + Size6848853 + Total Time283026 + Track Number10 + Date Modified2007-04-09T08:52:44Z + Date Added2009-10-03T15:00:51Z + Bit Rate192 + Sample Rate44100 + Normalization2489 + Artwork Count1 + Sort ArtistR Rahman, Naresh Iyer + Sort Composerr rahman + Persistent ID85823B1E6FC3F205 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/A%20R%20Rahman,%20Naresh%20Iyer/Rang%20De%20Basanti/10%20Roobaroo%202.m4a + File Folder Count4 + Library Folder Count1 + + 6666 + + Track ID6666 + NameRoobaroo + ArtistA R Rahman, Naresh Iyer + Composera r rahman + AlbumRang De Basanti + GenreSoundtracks + KindAAC audio file + Size6691046 + Total Time283004 + Track Number10 + Date Modified2007-12-02T08:07:16Z + Date Added2009-10-03T15:00:51Z + Bit Rate187 + Sample Rate44100 + Normalization2489 + Sort ArtistR Rahman, Naresh Iyer + Sort Composerr rahman + Persistent ID77BE5E51CC311979 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/A%20R%20Rahman,%20Naresh%20Iyer/Rang%20De%20Basanti/10%20Roobaroo%203.m4a + File Folder Count4 + Library Folder Count1 + + 6668 + + Track ID6668 + NameKhalbali + ArtistA R Rahman, Aslam, Nacim + ComposerA R Rahman + AlbumRang De Basanti + GenreSoundtracks + KindAAC audio file + Size9168274 + Total Time379250 + Track Number5 + Date Modified2007-04-09T09:37:02Z + Date Added2009-10-03T15:00:51Z + Bit Rate192 + Sample Rate44100 + Normalization2495 + Artwork Count2 + Sort ArtistR Rahman, Aslam, Nacim + Sort ComposerR Rahman + Persistent ID2B2C617EC4E37CAF + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/A%20R%20Rahman,%20Aslam,%20Nacim/Rang%20De%20Basanti/05%20Khalbali.m4a + File Folder Count4 + Library Folder Count1 + + 6670 + + Track ID6670 + NameKhalbali + ArtistA R Rahman, Aslam, Nacim + ComposerA R Rahman + AlbumRang De Basanti + GenreSoundtracks + KindAAC audio file + Size9161232 + Total Time379228 + Track Number5 + Date Modified2007-07-27T06:38:14Z + Date Added2009-10-03T15:00:51Z + Bit Rate192 + Sample Rate44100 + Normalization2495 + Sort ArtistR Rahman, Aslam, Nacim + Sort ComposerR Rahman + Persistent IDBCC349BEF908F257 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/A%20R%20Rahman,%20Aslam,%20Nacim/Rang%20De%20Basanti/05%20Khalbali%201.m4a + File Folder Count4 + Library Folder Count1 + + 6672 + + Track ID6672 + NameKhalbali + ArtistA R Rahman, Aslam, Nacim + ComposerA R Rahman + AlbumRang De Basanti + GenreSoundtracks + KindAAC audio file + Size9161341 + Total Time379250 + Track Number5 + Date Modified2006-12-27T10:36:46Z + Date Added2009-10-03T15:00:51Z + Bit Rate192 + Sample Rate44100 + Normalization2495 + Sort ArtistR Rahman, Aslam, Nacim + Sort ComposerR Rahman + Persistent ID59710F3C92F8D065 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/A%20R%20Rahman,%20Aslam,%20Nacim/Rang%20De%20Basanti/05%20Khalbali%202.m4a + File Folder Count4 + Library Folder Count1 + + 6674 + + Track ID6674 + NameKhalbali + ArtistA R Rahman, Aslam, Nacim + ComposerA R Rahman + AlbumRang De Basanti + GenreSoundtracks + KindAAC audio file + Size9011669 + Total Time379228 + Track Number5 + Date Modified2007-12-02T08:06:05Z + Date Added2009-10-03T15:00:51Z + Bit Rate188 + Sample Rate44100 + Normalization2495 + Sort ArtistR Rahman, Aslam, Nacim + Sort ComposerR Rahman + Persistent IDEF157ACE720EDD0D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/A%20R%20Rahman,%20Aslam,%20Nacim/Rang%20De%20Basanti/05%20Khalbali%203.m4a + File Folder Count4 + Library Folder Count1 + + 6676 + + Track ID6676 + NameTokyo Traffic + ArtistDave Brubeck Quartet + Album ArtistDave Brubeck + ComposerDave Brubeck + AlbumJazz Impressions of Japan + GenreJazz + KindMPEG audio file + Size11546758 + Total Time353985 + Track Number1 + Year1964 + Date Modified2011-01-18T10:56:19Z + Date Added2009-10-03T15:00:51Z + Bit Rate256 + Sample Rate44100 + Play Count5 + Play Date3426953991 + Play Date UTC2012-08-04T14:09:51Z + Artwork Count1 + Persistent ID29FF6C672331B1F7 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Dave%20Brubeck/Jazz%20Impressions%20of%20Japan/01%20Tokyo%20Traffic.mp3 + File Folder Count4 + Library Folder Count1 + + 6678 + + Track ID6678 + NameRising Sun + ArtistDave Brubeck Quartet + Album ArtistDave Brubeck + ComposerDave Brubeck + AlbumJazz Impressions of Japan + GenreJazz + KindMPEG audio file + Size9268875 + Total Time282723 + Track Number2 + Year1964 + Date Modified2011-01-18T10:56:20Z + Date Added2009-10-03T15:01:08Z + Bit Rate256 + Sample Rate44100 + Play Count5 + Play Date3426954274 + Play Date UTC2012-08-04T14:14:34Z + Artwork Count1 + Persistent IDB670B19E0945E4B9 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Dave%20Brubeck/Jazz%20Impressions%20of%20Japan/02%20Rising%20Sun.mp3 + File Folder Count4 + Library Folder Count1 + + 6680 + + Track ID6680 + NameToki's Theme from CBS-TV Series, "Mr. Broadway"] + ArtistDave Brubeck Quartet + Album ArtistDave Brubeck + ComposerDave Brubeck + AlbumJazz Impressions of Japan + GenreJazz + KindMPEG audio file + Size4405038 + Total Time130560 + Track Number3 + Year1964 + Date Modified2011-01-18T10:56:20Z + Date Added2009-10-03T15:01:18Z + Bit Rate256 + Sample Rate44100 + Play Count3 + Play Date3426954404 + Play Date UTC2012-08-04T14:16:44Z + Artwork Count1 + Persistent ID96B597F8F3997CB7 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Dave%20Brubeck/Jazz%20Impressions%20of%20Japan/03%20Toki's%20Theme%20from%20CBS-TV%20Series,%20_Mr.%20Broadway_%5D.mp3 + File Folder Count4 + Library Folder Count1 + + 6682 + + Track ID6682 + NameFujiyama + ArtistDave Brubeck Quartet + Album ArtistDave Brubeck + ComposerDave Brubeck + AlbumJazz Impressions of Japan + GenreJazz + KindMPEG audio file + Size10010353 + Total Time305920 + Track Number4 + Year1964 + Date Modified2011-01-18T10:56:21Z + Date Added2009-10-03T15:01:27Z + Bit Rate256 + Sample Rate44100 + Play Count3 + Play Date3426954710 + Play Date UTC2012-08-04T14:21:50Z + Skip Count1 + Skip Date2013-01-20T10:58:33Z + Artwork Count1 + Persistent ID4D6DBFD45088EE05 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Dave%20Brubeck/Jazz%20Impressions%20of%20Japan/04%20Fujiyama.mp3 + File Folder Count4 + Library Folder Count1 + + 6684 + + Track ID6684 + NameZen Is When + ArtistDave Brubeck Quartet + Album ArtistDave Brubeck + ComposerBud Freeman/Leon Pober + AlbumJazz Impressions of Japan + GenreJazz + KindMPEG audio file + Size5838706 + Total Time175412 + Track Number5 + Year1964 + Date Modified2011-01-18T10:56:21Z + Date Added2009-10-03T15:01:39Z + Bit Rate256 + Sample Rate44100 + Play Count3 + Play Date3426954886 + Play Date UTC2012-08-04T14:24:46Z + Artwork Count1 + Persistent IDD8EFE861640F4795 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Dave%20Brubeck/Jazz%20Impressions%20of%20Japan/05%20Zen%20Is%20When.mp3 + File Folder Count4 + Library Folder Count1 + + 6686 + + Track ID6686 + NameThe City Is Crying + ArtistDave Brubeck Quartet + Album ArtistDave Brubeck + ComposerDave Brubeck + AlbumJazz Impressions of Japan + GenreJazz + KindMPEG audio file + Size11859888 + Total Time363781 + Track Number6 + Year1964 + Date Modified2011-01-18T10:56:22Z + Date Added2009-10-03T15:01:46Z + Bit Rate256 + Sample Rate44100 + Play Count3 + Play Date3426955250 + Play Date UTC2012-08-04T14:30:50Z + Artwork Count1 + Sort NameCity Is Crying + Persistent IDA133A08607B1B597 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Dave%20Brubeck/Jazz%20Impressions%20of%20Japan/06%20The%20City%20Is%20Crying.mp3 + File Folder Count4 + Library Folder Count1 + + 6688 + + Track ID6688 + NameOsaka Blues + ArtistDave Brubeck Quartet + Album ArtistDave Brubeck + ComposerDave Brubeck + AlbumJazz Impressions of Japan + GenreJazz + KindMPEG audio file + Size10201571 + Total Time311902 + Track Number7 + Year1964 + Date Modified2011-01-18T10:56:23Z + Date Added2009-10-03T15:02:02Z + Bit Rate256 + Sample Rate44100 + Play Count4 + Play Date3438965165 + Play Date UTC2012-12-21T14:36:05Z + Artwork Count1 + Persistent IDF15844D773013924 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Dave%20Brubeck/Jazz%20Impressions%20of%20Japan/07%20Osaka%20Blues.mp3 + File Folder Count4 + Library Folder Count1 + + 6690 + + Track ID6690 + NameKoto Song + ArtistDave Brubeck Quartet + Album ArtistDave Brubeck + ComposerDave Brubeck + AlbumJazz Impressions of Japan + GenreJazz + KindMPEG audio file + Size6031579 + Total Time181446 + Track Number8 + Year1964 + Date Modified2011-01-18T10:56:24Z + Date Added2009-10-03T15:02:15Z + Bit Rate256 + Sample Rate44100 + Play Count5 + Play Date3438965346 + Play Date UTC2012-12-21T14:39:06Z + Artwork Count1 + Persistent IDFA7140175EA6C9FD + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Dave%20Brubeck/Jazz%20Impressions%20of%20Japan/08%20Koto%20Song.mp3 + File Folder Count4 + Library Folder Count1 + + 6692 + + Track ID6692 + NameBlackbird + ArtistThe Beatles + Album ArtistThe Beatles + ComposerJohn Lennon/Paul McCartney + AlbumThe Beatles [White Album] Disc 1 + GenreRock + KindMPEG audio file + Size5532460 + Total Time138318 + Track Number11 + Year1968 + Date Modified2009-11-02T12:44:32Z + Date Added2009-11-02T12:45:42Z + Bit Rate320 + Sample Rate44100 + Play Count2 + Play Date3393072727 + Play Date UTC2011-07-09T10:42:07Z + Sort AlbumBeatles [White Album] Disc 1 + Sort Album ArtistBeatles + Sort ArtistBeatles + Persistent IDD813DF2764CEB544 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/The%20Beatles%20%5BWhite%20Album%5D%20Disc%201/11%20Blackbird.mp3 + File Folder Count4 + Library Folder Count1 + + 6706 + + Track ID6706 + NameI Loves You Porgy + ArtistJoshua Bell;Chris Botti + Album ArtistJoshua Bell + ComposerGeorge Gershwin + AlbumAt Home With Friends + GenreClassical + KindMPEG audio file + Size7777688 + Total Time253675 + Disc Number1 + Disc Count1 + Track Number1 + Track Count16 + Year2009 + Date Modified2009-11-14T14:04:07Z + Date Added2009-11-14T14:31:10Z + Bit Rate243 + Sample Rate44100 + CommentsAmazon.com Song ID: 212882168 + Play Count1 + Play Date3341074826 + Play Date UTC2009-11-14T14:50:26Z + Artwork Count1 + Persistent IDCD1B6B022DD5D0DB + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Joshua%20Bell/At%20Home%20With%20Friends/01%20I%20Loves%20You%20Porgy.mp3 + File Folder Count4 + Library Folder Count1 + + 6708 + + Track ID6708 + NameCome Again + ArtistJoshua Bell;Sting + Album ArtistJoshua Bell + ComposerJohn Dowland + AlbumAt Home With Friends + GenreClassical + KindMPEG audio file + Size7128175 + Total Time237792 + Disc Number1 + Disc Count1 + Track Number2 + Track Count16 + Year2009 + Date Modified2009-11-14T14:04:47Z + Date Added2009-11-14T14:31:10Z + Bit Rate238 + Sample Rate44100 + CommentsAmazon.com Song ID: 212882172 + Artwork Count1 + Persistent IDD09ECC74E621F599 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Joshua%20Bell/At%20Home%20With%20Friends/02%20Come%20Again.mp3 + File Folder Count4 + Library Folder Count1 + + 6710 + + Track ID6710 + NameOblivion + ArtistJoshua Bell;Carel Kraayenhof + Album ArtistJoshua Bell + ComposerAstor Piazzola + AlbumAt Home With Friends + GenreClassical + KindMPEG audio file + Size7184922 + Total Time234422 + Disc Number1 + Disc Count1 + Track Number3 + Track Count16 + Year2009 + Date Modified2009-11-14T14:05:29Z + Date Added2009-11-14T14:31:10Z + Bit Rate243 + Sample Rate44100 + CommentsAmazon.com Song ID: 212882158 + Artwork Count1 + Persistent ID443416A2402C004D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Joshua%20Bell/At%20Home%20With%20Friends/03%20Oblivion.mp3 + File Folder Count4 + Library Folder Count1 + + 6712 + + Track ID6712 + NameCinema Paradiso + ArtistJoshua Bell;Josh Groban + Album ArtistJoshua Bell + ComposerEnnio Morricone + AlbumAt Home With Friends + GenreClassical + KindMPEG audio file + Size8300053 + Total Time267859 + Disc Number1 + Disc Count1 + Track Number4 + Track Count16 + Year2009 + Date Modified2009-11-14T14:06:55Z + Date Added2009-11-14T14:31:10Z + Bit Rate246 + Sample Rate44100 + CommentsAmazon.com Song ID: 212882161 + Play Count1 + Play Date3341074124 + Play Date UTC2009-11-14T14:38:44Z + Artwork Count1 + Persistent ID888E393D79789A60 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Joshua%20Bell/At%20Home%20With%20Friends/04%20Cinema%20Paradiso.mp3 + File Folder Count4 + Library Folder Count1 + + 6714 + + Track ID6714 + NamePara Tí + ArtistJoshua Bell;Tiempo Libre + Album ArtistJoshua Bell + ComposerJorge Gomez + AlbumAt Home With Friends + GenreClassical + KindMPEG audio file + Size7458082 + Total Time226037 + Disc Number1 + Disc Count1 + Track Number5 + Track Count16 + Year2009 + Date Modified2009-11-14T14:08:06Z + Date Added2009-11-14T14:31:10Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 212882167 + Artwork Count1 + Persistent IDC2AA45269942E7DF + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Joshua%20Bell/At%20Home%20With%20Friends/05%20Para%20Ti%CC%81.mp3 + File Folder Count4 + Library Folder Count1 + + 6716 + + Track ID6716 + NameMy Funny Valentine + ArtistJoshua Bell;Kristin Chenoweth + Album ArtistJoshua Bell + ComposerLorenz Hart + AlbumAt Home With Friends + GenreClassical + KindMPEG audio file + Size10506270 + Total Time345678 + Disc Number1 + Disc Count1 + Track Number6 + Track Count16 + Year2009 + Date Modified2009-11-14T14:09:07Z + Date Added2009-11-14T14:31:10Z + Bit Rate242 + Sample Rate44100 + CommentsAmazon.com Song ID: 212882170 + Artwork Count1 + Persistent ID63B2392CA4E6B49B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Joshua%20Bell/At%20Home%20With%20Friends/06%20My%20Funny%20Valentine.mp3 + File Folder Count4 + Library Folder Count1 + + 6718 + + Track ID6718 + NameMaybe So + ArtistJoshua Bell;Edgar Meyer;Sam Bush;Mike Marshall + Album ArtistJoshua Bell + ComposerSam Bush + AlbumAt Home With Friends + GenreClassical + KindMPEG audio file + Size9212307 + Total Time290586 + Disc Number1 + Disc Count1 + Track Number7 + Track Count16 + Year2009 + Date Modified2009-11-14T14:10:10Z + Date Added2009-11-14T14:31:10Z + Bit Rate252 + Sample Rate44100 + CommentsAmazon.com Song ID: 212882165 + Artwork Count1 + Persistent IDB7B9932DA28DAD07 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Joshua%20Bell/At%20Home%20With%20Friends/07%20Maybe%20So.mp3 + File Folder Count4 + Library Folder Count1 + + 6720 + + Track ID6720 + NameII. Allegretto Espressivo Alla Romanza From Sonata No. 3 In C Minor For Violin And Piano + ArtistJoshua Bell;Sergei Rachmaninoff (Zenph Re-Performance) + Album ArtistJoshua Bell + ComposerEdvard Grieg + AlbumAt Home With Friends + GenreClassical + KindMPEG audio file + Size12305889 + Total Time401057 + Disc Number1 + Disc Count1 + Track Number8 + Track Count16 + Year2009 + Date Modified2009-11-14T14:11:20Z + Date Added2009-11-14T14:31:10Z + Bit Rate244 + Sample Rate44100 + CommentsAmazon.com Song ID: 212882160 + Play Count2 + Play Date3383452198 + Play Date UTC2011-03-20T02:19:58Z + Artwork Count1 + Persistent ID9FAC81C32EE2D52C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Joshua%20Bell/At%20Home%20With%20Friends/08%20II.%20Allegretto%20Espressivo%20Alla%20Romanza%20From%20Sonata%20No.%203%20In%20C%20Minor%20For%20Violin%20And%20Piano.mp3 + File Folder Count4 + Library Folder Count1 + + 6722 + + Track ID6722 + NameEleanor Rigby + ArtistJoshua Bell;Frankie Moreno + Album ArtistJoshua Bell + ComposerJohn Lennon + AlbumAt Home With Friends + GenreClassical + KindMPEG audio file + Size7279100 + Total Time238889 + Disc Number1 + Disc Count1 + Track Number9 + Track Count16 + Year2009 + Date Modified2009-11-14T14:12:02Z + Date Added2009-11-14T14:31:10Z + Bit Rate242 + Sample Rate44100 + CommentsAmazon.com Song ID: 212882157 + Play Count1 + Play Date3341074572 + Play Date UTC2009-11-14T14:46:12Z + Artwork Count1 + Persistent ID55E2C00874869EBA + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Joshua%20Bell/At%20Home%20With%20Friends/09%20Eleanor%20Rigby.mp3 + File Folder Count4 + Library Folder Count1 + + 6724 + + Track ID6724 + NameO, Cease Thy Singing, Maiden Fair, Op. 4 No. 4 + ArtistJoshua Bell;Nathan Gunn + Album ArtistJoshua Bell + ComposerSergie Rachmaninoff + AlbumAt Home With Friends + GenreClassical + KindMPEG audio file + Size7731329 + Total Time252160 + Disc Number1 + Disc Count1 + Track Number10 + Track Count16 + Year2009 + Date Modified2009-11-14T14:12:51Z + Date Added2009-11-14T14:31:10Z + Bit Rate243 + Sample Rate44100 + CommentsAmazon.com Song ID: 212882163 + Artwork Count1 + Persistent IDFAD01F68B35A4885 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Joshua%20Bell/At%20Home%20With%20Friends/10%20O,%20Cease%20Thy%20Singing,%20Maiden%20Fair,%20Op.%204%20No.%204.mp3 + File Folder Count4 + Library Folder Count1 + + 6726 + + Track ID6726 + NameIl Postino + ArtistJoshua Bell;Carel Kraayenhof + Album ArtistJoshua Bell + ComposerLuis Bacalov + AlbumAt Home With Friends + GenreClassical + KindMPEG audio file + Size6705220 + Total Time222040 + Disc Number1 + Disc Count1 + Track Number11 + Track Count16 + Year2009 + Date Modified2009-11-14T14:13:26Z + Date Added2009-11-14T14:31:10Z + Bit Rate239 + Sample Rate44100 + CommentsAmazon.com Song ID: 212882164 + Artwork Count1 + Persistent ID195EF57E5ABC3091 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Joshua%20Bell/At%20Home%20With%20Friends/11%20Il%20Postino.mp3 + File Folder Count4 + Library Folder Count1 + + 6728 + + Track ID6728 + NameLeft Hand Song + ArtistJoshua Bell;Regina Spektor + Album ArtistJoshua Bell + ComposerRegina Spektor + AlbumAt Home With Friends + GenreClassical + KindMPEG audio file + Size5094899 + Total Time166008 + Disc Number1 + Disc Count1 + Track Number12 + Track Count16 + Year2009 + Date Modified2009-11-14T14:13:58Z + Date Added2009-11-14T14:31:10Z + Bit Rate243 + Sample Rate44100 + CommentsAmazon.com Song ID: 212882169 + Artwork Count1 + Persistent ID5BAD2D9CAAFF0D85 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Joshua%20Bell/At%20Home%20With%20Friends/12%20Left%20Hand%20Song.mp3 + File Folder Count4 + Library Folder Count1 + + 6730 + + Track ID6730 + NameChovendo Na Roseira + ArtistJoshua Bell;Dave Grusin + Album ArtistJoshua Bell + ComposerAntonio Carlos Jobim + AlbumAt Home With Friends + GenreClassical + KindMPEG audio file + Size6382061 + Total Time207386 + Disc Number1 + Disc Count1 + Track Number13 + Track Count16 + Year2009 + Date Modified2009-11-14T14:15:39Z + Date Added2009-11-14T14:31:10Z + Bit Rate244 + Sample Rate44100 + CommentsAmazon.com Song ID: 212882171 + Artwork Count1 + Persistent IDBD4D335725E66B60 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Joshua%20Bell/At%20Home%20With%20Friends/13%20Chovendo%20Na%20Roseira.mp3 + File Folder Count4 + Library Folder Count1 + + 6732 + + Track ID6732 + NameLook Away + ArtistJoshua Bell;Edgar Meyer;Chris Thile + Album ArtistJoshua Bell + ComposerChris Thile + AlbumAt Home With Friends + GenreClassical + KindMPEG audio file + Size8005601 + Total Time256574 + Disc Number1 + Disc Count1 + Track Number14 + Track Count16 + Year2009 + Date Modified2009-11-14T14:17:03Z + Date Added2009-11-14T14:31:10Z + Bit Rate248 + Sample Rate44100 + CommentsAmazon.com Song ID: 212882159 + Artwork Count1 + Persistent IDFD60039E6111CC6B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Joshua%20Bell/At%20Home%20With%20Friends/14%20Look%20Away.mp3 + File Folder Count4 + Library Folder Count1 + + 6734 + + Track ID6734 + NameVariant Moods - Duet For Sitar & Violin (Abridged Version) + ArtistJoshua Bell;Anoushka Shankar + Album ArtistJoshua Bell + ComposerRavi Shankar + AlbumAt Home With Friends + GenreClassical + KindMPEG audio file + Size17041186 + Total Time542641 + Disc Number1 + Disc Count1 + Track Number15 + Track Count16 + Year2009 + Date Modified2009-11-14T14:18:44Z + Date Added2009-11-14T14:31:10Z + Bit Rate250 + Sample Rate44100 + CommentsAmazon.com Song ID: 212882162 + Artwork Count1 + Persistent ID3DDC4E25354BF730 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Joshua%20Bell/At%20Home%20With%20Friends/15%20Variant%20Moods%20-%20Duet%20For%20Sitar%20&%20Violin%20(Abridged%20Version).mp3 + File Folder Count4 + Library Folder Count1 + + 6736 + + Track ID6736 + NameI'll Take Manhattan + ArtistJoshua Bell;Marvin Hamlisch + Album ArtistJoshua Bell + ComposerRichard Rodgers + AlbumAt Home With Friends + GenreClassical + KindMPEG audio file + Size6422870 + Total Time206994 + Disc Number1 + Disc Count1 + Track Number16 + Track Count16 + Year2009 + Date Modified2009-11-14T14:19:28Z + Date Added2009-11-14T14:31:10Z + Bit Rate246 + Sample Rate44100 + CommentsAmazon.com Song ID: 212882166 + Play Count1 + Play Date3341075032 + Play Date UTC2009-11-14T14:53:52Z + Artwork Count1 + Persistent ID5F99A9BA6ECAE8D7 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Joshua%20Bell/At%20Home%20With%20Friends/16%20I'll%20Take%20Manhattan.mp3 + File Folder Count4 + Library Folder Count1 + + 6738 + + Track ID6738 + NameJeux interdits (Romance) + ArtistPepe Romero + Album ArtistVarious Artists + ComposerYepes, Narciso + AlbumEssential Guitar + GenreClassical + KindMPEG audio file + Size3642988 + Total Time110106 + Disc Number2 + Disc Count2 + Track Number1 + Track Count19 + Year2002 + Date Modified2009-11-14T14:20:31Z + Date Added2009-11-14T15:03:01Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202532116 + Play Count7 + Play Date3401389562 + Play Date UTC2011-10-13T16:56:02Z + Album Rating80 + Album Rating Computed + Artwork Count1 + Persistent IDFC3ABD5A1D08F4D7 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Essential%20Guitar/2-01%20Jeux%20interdits%20(Romance).mp3 + File Folder Count4 + Library Folder Count1 + + 6740 + + Track ID6740 + NameSuite española, Op.47 - No.3: Sevilla + ArtistEduardo Fernandez + Album ArtistVarious Artists + ComposerAlbéniz, Isaac + AlbumEssential Guitar + GenreClassical + KindMPEG audio file + Size9005423 + Total Time277681 + Disc Number2 + Disc Count2 + Track Number2 + Track Count19 + Year2002 + Date Modified2009-11-14T14:21:37Z + Date Added2009-11-14T15:03:01Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202532117 + Play Count5 + Play Date3400433313 + Play Date UTC2011-10-02T15:18:33Z + Album Rating80 + Album Rating Computed + Artwork Count1 + Persistent ID965A755CEFA291FE + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Essential%20Guitar/2-02%20Suite%20espan%CC%83ola,%20Op.47%20-%20No.3_%20Sevilla.mp3 + File Folder Count4 + Library Folder Count1 + + 6742 + + Track ID6742 + NameSpanish Dance Op.37, No.5 - "Andaluza" + ArtistPepe Romero + Album ArtistVarious Artists + ComposerGranados, Enrique + AlbumEssential Guitar + GenreClassical + KindMPEG audio file + Size7779129 + Total Time239360 + Disc Number2 + Disc Count2 + Track Number3 + Track Count19 + Year2002 + Date Modified2009-11-14T14:22:41Z + Date Added2009-11-14T15:03:01Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202532118 + Play Count7 + Play Date3400958130 + Play Date UTC2011-10-08T17:05:30Z + Album Rating80 + Album Rating Computed + Artwork Count1 + Persistent ID280FFFA3BF5F889F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Essential%20Guitar/2-03%20Spanish%20Dance%20Op.37,%20No.5%20-%20_Andaluza_.mp3 + File Folder Count4 + Library Folder Count1 + + 6744 + + Track ID6744 + NameSuite española, Op.47 - Transcr. Celedonio Romero - Granada (Serenata) + ArtistPepe Romero + Album ArtistVarious Artists + ComposerAlbéniz, Isaac + AlbumEssential Guitar + GenreClassical + KindMPEG audio file + Size8890094 + Total Time274076 + Disc Number2 + Disc Count2 + Track Number4 + Track Count19 + Year2002 + Date Modified2009-11-14T14:23:31Z + Date Added2009-11-14T15:03:01Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202532119 + Play Count6 + Play Date3403724177 + Play Date UTC2011-11-09T17:26:17Z + Album Rating80 + Album Rating Computed + Artwork Count1 + Persistent ID4A9A2E2DEC3CD683 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Essential%20Guitar/2-04%20Suite%20espan%CC%83ola,%20Op.47%20-%20Transcr.%20Celedonio%20Romero%20-%20Granada%20(Serenata).mp3 + File Folder Count4 + Library Folder Count1 + + 6746 + + Track ID6746 + NameOboe Concerto in D minor: Arr. Guitar and Orchestra - 2. Andante sostenuto + ArtistAlexandre Lagoya + Album ArtistVarious Artists + ComposerMarcello, Alessandro + AlbumEssential Guitar + GenreClassical + KindMPEG audio file + Size8547397 + Total Time263366 + Disc Number2 + Disc Count2 + Track Number5 + Track Count19 + Year2002 + Date Modified2009-11-14T14:24:21Z + Date Added2009-11-14T15:03:01Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202532120 + Play Count4 + Play Date3400237117 + Play Date UTC2011-09-30T08:48:37Z + Album Rating80 + Album Rating Computed + Artwork Count1 + Persistent ID20640185FB7F89C8 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Essential%20Guitar/2-05%20Oboe%20Concerto%20in%20D%20minor_%20Arr.%20Guitar%20and%20Orchestra%20-%202.%20Andante%20sostenuto.mp3 + File Folder Count4 + Library Folder Count1 + + 6748 + + Track ID6748 + NameSonata in E, K.380 - Trans. A.Lagoya + ArtistAlexandre Lagoya + Album ArtistVarious Artists + ComposerScarlatti, Domenico + AlbumEssential Guitar + GenreClassical + KindMPEG audio file + Size9983451 + Total Time308244 + Disc Number2 + Disc Count2 + Track Number6 + Track Count19 + Year2002 + Date Modified2009-11-14T14:25:19Z + Date Added2009-11-14T15:03:01Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202532121 + Play Count2 + Play Date3399229097 + Play Date UTC2011-09-18T16:48:17Z + Album Rating80 + Album Rating Computed + Artwork Count1 + Persistent ID95F28EE029D38698 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Essential%20Guitar/2-06%20Sonata%20in%20E,%20K.380%20-%20Trans.%20A.Lagoya.mp3 + File Folder Count4 + Library Folder Count1 + + 6750 + + Track ID6750 + NameSuite for Cello Solo No.3 in C, BWV 1009 - 3. Courante + ArtistPepe Romero + Album ArtistVarious Artists + ComposerJohann Sebastian Bach + AlbumEssential Guitar + GenreClassical + KindMPEG audio file + Size5411828 + Total Time165381 + Disc Number2 + Disc Count2 + Track Number7 + Track Count19 + Year2002 + Date Modified2009-11-14T14:25:51Z + Date Added2009-11-14T15:03:01Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202532122 + Play Count3 + Play Date3401389728 + Play Date UTC2011-10-13T16:58:48Z + Album Rating80 + Album Rating Computed + Artwork Count1 + Persistent ID75AF4871723E914B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Essential%20Guitar/2-07%20Suite%20for%20Cello%20Solo%20No.3%20in%20C,%20BWV%201009%20-%203.%20Courante.mp3 + File Folder Count4 + Library Folder Count1 + + 6752 + + Track ID6752 + NameFantasie Hongroise, Op.65, No.1 - Edited Simon Wynberg + ArtistNicola Hall + Album ArtistVarious Artists + ComposerMertz, Johann Kaspar + AlbumEssential Guitar + GenreClassical + KindMPEG audio file + Size12115892 + Total Time374883 + Disc Number2 + Disc Count2 + Track Number8 + Track Count19 + Year2002 + Date Modified2009-11-14T14:27:18Z + Date Added2009-11-14T15:03:01Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202532123 + Play Count2 + Play Date3400084449 + Play Date UTC2011-09-28T14:24:09Z + Skip Count1 + Skip Date2011-10-11T17:10:53Z + Album Rating80 + Album Rating Computed + Artwork Count1 + Persistent ID5BDA296E87C0FCD0 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Essential%20Guitar/2-08%20Fantasie%20Hongroise,%20Op.65,%20No.1%20-%20Edited%20Simon%20Wynberg.mp3 + File Folder Count4 + Library Folder Count1 + + 6754 + + Track ID6754 + NameBachianas brasileiras No.5 for Soprano and Cellos + ArtistAlexandre Lagoya + Album ArtistVarious Artists + ComposerVilla-Lobos, Heitor + AlbumEssential Guitar + GenreClassical + KindMPEG audio file + Size9124155 + Total Time281391 + Disc Number2 + Disc Count2 + Track Number9 + Track Count19 + Year2002 + Date Modified2009-11-14T14:28:45Z + Date Added2009-11-14T15:03:01Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202532124 + Play Count2 + Play Date3403723594 + Play Date UTC2011-11-09T17:16:34Z + Album Rating80 + Album Rating Computed + Artwork Count1 + Persistent ID1DD8975E48060EBA + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Essential%20Guitar/2-09%20Bachianas%20brasileiras%20No.5%20for%20Soprano%20and%20Cellos.mp3 + File Folder Count4 + Library Folder Count1 + + 6756 + + Track ID6756 + NameFantasía para un gentilhombre for Guitar and Small Orchestra - 1. Villano y Ricercare (Adagietto - Andante moderato) + ArtistAlexandre Lagoya + Album ArtistVarious Artists + ComposerRodrigo, Joaquin + AlbumEssential Guitar + GenreClassical + KindMPEG audio file + Size9278032 + Total Time286197 + Disc Number2 + Disc Count2 + Track Number10 + Track Count19 + Year2002 + Date Modified2009-11-14T14:29:39Z + Date Added2009-11-14T15:03:01Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202532125 + Play Count1 + Play Date3399230205 + Play Date UTC2011-09-18T17:06:45Z + Album Rating80 + Album Rating Computed + Artwork Count1 + Persistent IDD312C04F1C58B493 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Essential%20Guitar/2-10%20Fantasi%CC%81a%20para%20un%20gentilhombre%20for%20Guitar%20and%20Small%20Orchestra%20-%201.%20Villano%20y%20Ricercare%20(Adagietto%20-%20Andante%20moderato).mp3 + File Folder Count4 + Library Folder Count1 + + 6758 + + Track ID6758 + NameConcerto for Cello & Orchestra No.6 in D, G479 - Arr. as Concerto in E for Guitar, Gaspar Cassado (1896/1966) - 2. Andante cantabile + ArtistAndrés Segovia + Album ArtistVarious Artists + ComposerBoccherini, Luigi + AlbumEssential Guitar + GenreClassical + KindMPEG audio file + Size12123508 + Total Time375118 + Disc Number2 + Disc Count2 + Track Number11 + Track Count19 + Year2002 + Date Modified2009-11-14T14:30:46Z + Date Added2009-11-14T15:03:01Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202532126 + Play Count1 + Play Date3399230580 + Play Date UTC2011-09-18T17:13:00Z + Album Rating80 + Album Rating Computed + Artwork Count1 + Persistent IDCC1480C215E84104 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Essential%20Guitar/2-11%20Concerto%20for%20Cello%20&%20Orchestra%20No.6%20in%20D,%20G479%20-%20Arr.%20as%20Concerto%20in%20E%20for%20Guitar,%20Gaspar%20Cassado%20(1896_1966)%20-%202.%20Andante%20cantabile.mp3 + File Folder Count4 + Library Folder Count1 + + 6760 + + Track ID6760 + NamePrelude for Lute in C minor, BWV 999 - transcription for guitar in D minor + ArtistEduardo Fernandez + Album ArtistVarious Artists + ComposerJohann Sebastian Bach + AlbumEssential Guitar + GenreClassical + KindMPEG audio file + Size2973481 + Total Time89182 + Disc Number2 + Disc Count2 + Track Number12 + Track Count19 + Year2002 + Date Modified2009-11-14T14:31:08Z + Date Added2009-11-14T15:03:01Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202532127 + Play Count1 + Play Date3399230669 + Play Date UTC2011-09-18T17:14:29Z + Album Rating80 + Album Rating Computed + Artwork Count1 + Persistent IDF4314B1BA0EB0446 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Essential%20Guitar/2-12%20Prelude%20for%20Lute%20in%20C%20minor,%20BWV%20999%20-%20transcription%20for%20guitar%20in%20D%20minor.mp3 + File Folder Count4 + Library Folder Count1 + + 6762 + + Track ID6762 + Name2 Temas Populares Cubanos - Canción de cuna (Berceuse) + ArtistEduardo Fernandez + Album ArtistVarious Artists + ComposerBrouwer, Leo + AlbumEssential Guitar + GenreClassical + KindMPEG audio file + Size6648985 + Total Time204042 + Disc Number2 + Disc Count2 + Track Number13 + Track Count19 + Year2002 + Date Modified2009-11-14T14:31:48Z + Date Added2009-11-14T15:03:01Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202532128 + Play Count4 + Play Date3403724517 + Play Date UTC2011-11-09T17:31:57Z + Skip Count1 + Album Rating80 + Album Rating Computed + Artwork Count1 + Persistent ID571C25C582881437 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Essential%20Guitar/2-13%202%20Temas%20Populares%20Cubanos%20-%20Cancio%CC%81n%20de%20cuna%20(Berceuse).mp3 + File Folder Count4 + Library Folder Count1 + + 6764 + + Track ID6764 + Name24 Caprices for Violin, Op.1 - Caprice, Op.1, No.24 + ArtistNicola Hall + Album ArtistVarious Artists + ComposerPaganini, Nicolo + AlbumEssential Guitar + GenreClassical + KindMPEG audio file + Size9265405 + Total Time285805 + Disc Number2 + Disc Count2 + Track Number14 + Track Count19 + Year2002 + Date Modified2009-11-14T14:32:46Z + Date Added2009-11-14T15:03:01Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202532129 + Play Count6 + Play Date3400411041 + Play Date UTC2011-10-02T09:07:21Z + Album Rating80 + Album Rating Computed + Artwork Count1 + Persistent ID7F8E5AD6C2C8C991 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Essential%20Guitar/2-14%2024%20Caprices%20for%20Violin,%20Op.1%20-%20Caprice,%20Op.1,%20No.24.mp3 + File Folder Count4 + Library Folder Count1 + + 6766 + + Track ID6766 + NameGuitar Concerto - 3. Con brio + ArtistEduardo Fernandez + Album ArtistVarious Artists + ComposerArnold, Sir Malcolm + AlbumEssential Guitar + GenreClassical + KindMPEG audio file + Size8655187 + Total Time266736 + Disc Number2 + Disc Count2 + Track Number15 + Track Count19 + Year2002 + Date Modified2009-11-14T14:33:38Z + Date Added2009-11-14T15:03:01Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202532130 + Play Count4 + Play Date3401390141 + Play Date UTC2011-10-13T17:05:41Z + Album Rating80 + Album Rating Computed + Artwork Count1 + Persistent ID09128CB198968D4F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Essential%20Guitar/2-15%20Guitar%20Concerto%20-%203.%20Con%20brio.mp3 + File Folder Count4 + Library Folder Count1 + + 6768 + + Track ID6768 + NameBatucada + ArtistEduardo Fernandez + Album ArtistVarious Artists + ComposerSavio, Isaias + AlbumEssential Guitar + GenreClassical + KindMPEG audio file + Size5387540 + Total Time164623 + Disc Number2 + Disc Count2 + Track Number16 + Track Count19 + Year2002 + Date Modified2009-11-14T14:34:06Z + Date Added2009-11-14T15:03:01Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202532131 + Play Count2 + Play Date3400959144 + Play Date UTC2011-10-08T17:22:24Z + Skip Count1 + Skip Date2011-10-09T15:40:43Z + Album Rating80 + Album Rating Computed + Artwork Count1 + Persistent ID8455871D25CDD8D6 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Essential%20Guitar/2-16%20Batucada.mp3 + File Folder Count4 + Library Folder Count1 + + 6770 + + Track ID6770 + NameNoche en Málaga + ArtistLos Romeros + Album ArtistVarious Artists + ComposerRomero, Celedonio + AlbumEssential Guitar + GenreClassical + KindMPEG audio file + Size7766568 + Total Time238968 + Disc Number2 + Disc Count2 + Track Number17 + Track Count19 + Year2002 + Date Modified2009-11-14T14:35:00Z + Date Added2009-11-14T15:03:01Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202532132 + Play Count1 + Play Date3401389451 + Play Date UTC2011-10-13T16:54:11Z + Skip Count1 + Skip Date2011-10-09T15:40:33Z + Album Rating80 + Album Rating Computed + Artwork Count1 + Persistent ID231F0DF119E2A065 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Essential%20Guitar/2-17%20Noche%20en%20Ma%CC%81laga.mp3 + File Folder Count4 + Library Folder Count1 + + 6772 + + Track ID6772 + NameLa Alcazaba (Verdiales) + ArtistPaco Peña + Album ArtistVarious Artists + ComposerPeña, Paco + AlbumEssential Guitar + GenreClassical + KindMPEG audio file + Size6094730 + Total Time186723 + Disc Number2 + Disc Count2 + Track Number18 + Track Count19 + Year2002 + Date Modified2009-11-14T14:36:00Z + Date Added2009-11-14T15:03:01Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202532133 + Album Rating80 + Album Rating Computed + Artwork Count1 + Persistent ID442E04AED91ECED5 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Essential%20Guitar/2-18%20La%20Alcazaba%20(Verdiales).mp3 + File Folder Count4 + Library Folder Count1 + + 6774 + + Track ID6774 + NameEstudio brillante + ArtistEduardo Fernandez + Album ArtistVarious Artists + ComposerAlard, Delphin Jean + AlbumEssential Guitar + GenreClassical + KindMPEG audio file + Size3542683 + Total Time106971 + Disc Number2 + Disc Count2 + Track Number19 + Track Count19 + Year2002 + Date Modified2009-11-14T14:36:23Z + Date Added2009-11-14T15:03:01Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202532134 + Play Count3 + Play Date3400093608 + Play Date UTC2011-09-28T16:56:48Z + Album Rating80 + Album Rating Computed + Artwork Count1 + Persistent ID014D5EB6F224742A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Essential%20Guitar/2-19%20Estudio%20brillante.mp3 + File Folder Count4 + Library Folder Count1 + + 6776 + + Track ID6776 + NameConcierto de Aranjuez for Guitar and Orchestra - 1. Allegro con spirito + ArtistPepe Romero + Album ArtistVarious Artists + ComposerRodrigo, Joaquin + AlbumEssential Guitar + GenreClassical + KindMPEG audio file + Size11733911 + Total Time362945 + Disc Number1 + Disc Count2 + Track Number1 + Track Count18 + Year2002 + Date Modified2009-11-14T14:37:28Z + Date Added2009-11-14T15:03:01Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202532098 + Play Count3 + Play Date3399818796 + Play Date UTC2011-09-25T12:36:36Z + Rating100 + Album Rating80 + Album Rating Computed + Artwork Count1 + Persistent ID3245FADF198007E6 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Essential%20Guitar/1-01%20Concierto%20de%20Aranjuez%20for%20Guitar%20and%20Orchestra%20-%201.%20Allegro%20con%20spirito.mp3 + File Folder Count4 + Library Folder Count1 + + 6778 + + Track ID6778 + NameConcierto de Aranjuez for Guitar and Orchestra - 2. Adagio + ArtistPepe Romero + Album ArtistVarious Artists + ComposerRodrigo, Joaquin + AlbumEssential Guitar + GenreClassical + KindMPEG audio file + Size22230525 + Total Time690964 + Disc Number1 + Disc Count2 + Track Number2 + Track Count18 + Year2002 + Date Modified2009-11-14T14:39:32Z + Date Added2009-11-14T15:03:01Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202532099 + Play Count3 + Play Date3399819589 + Play Date UTC2011-09-25T12:49:49Z + Album Rating80 + Album Rating Computed + Artwork Count1 + Persistent ID8EE79C9C919D8485 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Essential%20Guitar/1-02%20Concierto%20de%20Aranjuez%20for%20Guitar%20and%20Orchestra%20-%202.%20Adagio.mp3 + File Folder Count4 + Library Folder Count1 + + 6780 + + Track ID6780 + NameConcierto de Aranjuez for Guitar and Orchestra - 3. Allegro gentile + ArtistPepe Romero + Album ArtistVarious Artists + ComposerRodrigo, Joaquin + AlbumEssential Guitar + GenreClassical + KindMPEG audio file + Size10010243 + Total Time309080 + Disc Number1 + Disc Count2 + Track Number3 + Track Count18 + Year2002 + Date Modified2009-11-14T14:40:38Z + Date Added2009-11-14T15:03:01Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202532100 + Play Count5 + Play Date3403723903 + Play Date UTC2011-11-09T17:21:43Z + Album Rating80 + Album Rating Computed + Artwork Count1 + Persistent ID3FE7FBFDC407032A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Essential%20Guitar/1-03%20Concierto%20de%20Aranjuez%20for%20Guitar%20and%20Orchestra%20-%203.%20Allegro%20gentile.mp3 + File Folder Count4 + Library Folder Count1 + + 6782 + + Track ID6782 + NameTango, Op.165, No.2 + ArtistPepe Romero + Album ArtistVarious Artists + ComposerAlbéniz, Isaac + AlbumEssential Guitar + GenreClassical + KindMPEG audio file + Size4488096 + Total Time136515 + Disc Number1 + Disc Count2 + Track Number4 + Track Count18 + Year2002 + Date Modified2009-11-14T14:41:06Z + Date Added2009-11-14T15:03:01Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202532101 + Play Count8 + Play Date3401854911 + Play Date UTC2011-10-19T02:11:51Z + Album Rating80 + Album Rating Computed + Artwork Count1 + Persistent IDE6BDC20EBF5F3F3F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Essential%20Guitar/1-04%20Tango,%20Op.165,%20No.2.mp3 + File Folder Count4 + Library Folder Count1 + + 6784 + + Track ID6784 + NameCavatina - Arr. John Williams + ArtistGöran Söllscher + Album ArtistVarious Artists + ComposerMyers, Stanley + AlbumEssential Guitar + GenreClassical + KindMPEG audio file + Size7026794 + Total Time215849 + Disc Number1 + Disc Count2 + Track Number5 + Track Count18 + Year2002 + Date Modified2009-11-14T14:42:00Z + Date Added2009-11-14T15:03:01Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202532102 + Play Count13 + Play Date3403723077 + Play Date UTC2011-11-09T17:07:57Z + Album Rating80 + Album Rating Computed + Artwork Count1 + Persistent ID305D0E331184200E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Essential%20Guitar/1-05%20Cavatina%20-%20Arr.%20John%20Williams.mp3 + File Folder Count4 + Library Folder Count1 + + 6786 + + Track ID6786 + NameSuite in E for Lute, BWV 1006a/1000 - 1. Praeludium + ArtistEduardo Fernandez + Album ArtistVarious Artists + ComposerJohann Sebastian Bach + AlbumEssential Guitar + GenreClassical + KindMPEG audio file + Size7643733 + Total Time235128 + Disc Number1 + Disc Count2 + Track Number6 + Track Count18 + Year2002 + Date Modified2009-11-14T14:42:53Z + Date Added2009-11-14T15:03:01Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202532103 + Play Count11 + Play Date3403723312 + Play Date UTC2011-11-09T17:11:52Z + Album Rating80 + Album Rating Computed + Artwork Count1 + Persistent IDEA072EEF4722639D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Essential%20Guitar/1-06%20Suite%20in%20E%20for%20Lute,%20BWV%201006a_1000%20-%201.%20Praeludium.mp3 + File Folder Count4 + Library Folder Count1 + + 6788 + + Track ID6788 + NameSuite española, Op.47 - Asturias (Leyenda) + ArtistPepe Romero + Album ArtistVarious Artists + ComposerAlbéniz, Isaac + AlbumEssential Guitar + GenreClassical + KindMPEG audio file + Size12100828 + Total Time374413 + Disc Number1 + Disc Count2 + Track Number7 + Track Count18 + Year2002 + Date Modified2009-11-14T14:44:13Z + Date Added2009-11-14T15:03:01Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202532104 + Play Count5 + Play Date3400430629 + Play Date UTC2011-10-02T14:33:49Z + Skip Count1 + Skip Date2011-10-09T15:40:38Z + Album Rating80 + Album Rating Computed + Artwork Count1 + Persistent IDCC064D31188F017C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Essential%20Guitar/1-07%20Suite%20espan%CC%83ola,%20Op.47%20-%20Asturias%20(Leyenda).mp3 + File Folder Count4 + Library Folder Count1 + + 6790 + + Track ID6790 + NameRecuerdos de la Alhambra + ArtistEduardo Fernandez + Album ArtistVarious Artists + ComposerTárrega, Francisco + AlbumEssential Guitar + GenreClassical + KindMPEG audio file + Size9261205 + Total Time285675 + Disc Number1 + Disc Count2 + Track Number8 + Track Count18 + Year2002 + Date Modified2009-11-14T14:47:03Z + Date Added2009-11-14T15:03:01Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202532105 + Play Count6 + Play Date3400430915 + Play Date UTC2011-10-02T14:38:35Z + Album Rating80 + Album Rating Computed + Artwork Count1 + Persistent ID4CBAE28FB5DFBDF7 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Essential%20Guitar/1-08%20Recuerdos%20de%20la%20Alhambra.mp3 + File Folder Count4 + Library Folder Count1 + + 6792 + + Track ID6792 + NameLa vida breve - Transcribed for guitar by Nicola Hall - Act 2 - Spanish Dance No.1 + ArtistNicola Hall + Album ArtistVarious Artists + ComposerShaw, Carlos Fernandez + AlbumEssential Guitar + GenreClassical + KindMPEG audio file + Size7285150 + Total Time223921 + Disc Number1 + Disc Count2 + Track Number9 + Track Count18 + Year2002 + Date Modified2009-11-14T14:47:46Z + Date Added2009-11-14T15:03:01Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202532106 + Play Count5 + Play Date3400431139 + Play Date UTC2011-10-02T14:42:19Z + Skip Count1 + Skip Date2011-10-11T17:10:45Z + Album Rating80 + Album Rating Computed + Artwork Count1 + Persistent IDB9C8C289BFA3EEFB + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Essential%20Guitar/1-09%20La%20vida%20breve%20-%20Transcribed%20for%20guitar%20by%20Nicola%20Hall%20-%20Act%202%20-%20Spanish%20Dance%20No.1.mp3 + File Folder Count4 + Library Folder Count1 + + 6794 + + Track ID6794 + NameCastillos de España - 2. Torija (Elegía) + ArtistAndrés Segovia + Album ArtistVarious Artists + ComposerMoreno Torroba, Federico + AlbumEssential Guitar + GenreClassical + KindMPEG audio file + Size4432125 + Total Time134765 + Disc Number1 + Disc Count2 + Track Number10 + Track Count18 + Year2002 + Date Modified2009-11-14T14:48:18Z + Date Added2009-11-14T15:03:01Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202532107 + Play Count6 + Play Date3401388977 + Play Date UTC2011-10-13T16:46:17Z + Album Rating80 + Album Rating Computed + Artwork Count1 + Persistent ID95EF4CB893828D81 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Essential%20Guitar/1-10%20Castillos%20de%20Espan%CC%83a%20-%202.%20Torija%20(Elegi%CC%81a).mp3 + File Folder Count4 + Library Folder Count1 + + 6796 + + Track ID6796 + NameCastillos de España - 5. Alcañiz (Festiva) + ArtistAndrés Segovia + Album ArtistVarious Artists + ComposerMoreno Torroba, Federico + AlbumEssential Guitar + GenreClassical + KindMPEG audio file + Size3887108 + Total Time117733 + Disc Number1 + Disc Count2 + Track Number11 + Track Count18 + Year2002 + Date Modified2009-11-14T14:48:45Z + Date Added2009-11-14T15:03:01Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202532108 + Play Count6 + Play Date3401389867 + Play Date UTC2011-10-13T17:01:07Z + Album Rating80 + Album Rating Computed + Artwork Count1 + Persistent ID63DFBFB1145F86C0 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Essential%20Guitar/1-11%20Castillos%20de%20Espan%CC%83a%20-%205.%20Alcan%CC%83iz%20(Festiva).mp3 + File Folder Count4 + Library Folder Count1 + + 6798 + + Track ID6798 + NameSuite for Cello Solo No.1 in G, BWV 1007 - Transcribed for solo guitar by John Duarte - 1. Prélude + ArtistJohn Williams + Album ArtistVarious Artists + ComposerJohann Sebastian Bach + AlbumEssential Guitar + GenreClassical + KindMPEG audio file + Size4715555 + Total Time143621 + Disc Number1 + Disc Count2 + Track Number12 + Track Count18 + Year2002 + Date Modified2009-11-14T14:49:21Z + Date Added2009-11-14T15:03:01Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202532109 + Play Count9 + Play Date3401385905 + Play Date UTC2011-10-13T15:55:05Z + Album Rating80 + Album Rating Computed + Artwork Count1 + Persistent ID17AB4CB02F79B865 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Essential%20Guitar/1-12%20Suite%20for%20Cello%20Solo%20No.1%20in%20G,%20BWV%201007%20-%20Transcribed%20for%20solo%20guitar%20by%20John%20Duarte%20-%201.%20Pre%CC%81lude.mp3 + File Folder Count4 + Library Folder Count1 + + 6800 + + Track ID6800 + NameConcerto in D for guitar & strings - 2. Largo + ArtistEduardo Fernandez + Album ArtistVarious Artists + ComposerAntonio Vivaldi + AlbumEssential Guitar + GenreClassical + KindMPEG audio file + Size10045330 + Total Time310177 + Disc Number1 + Disc Count2 + Track Number13 + Track Count18 + Year2002 + Date Modified2009-11-14T14:50:58Z + Date Added2009-11-14T15:03:01Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202532110 + Play Count8 + Play Date3401648351 + Play Date UTC2011-10-16T16:49:11Z + Album Rating80 + Album Rating Computed + Artwork Count1 + Persistent IDA9CE678E2B247575 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Essential%20Guitar/1-13%20Concerto%20in%20D%20for%20guitar%20&%20strings%20-%202.%20Largo.mp3 + File Folder Count4 + Library Folder Count1 + + 6802 + + Track ID6802 + NameRomance de los pinos + ArtistPepe Romero + Album ArtistVarious Artists + ComposerMoreno Torroba, Federico + AlbumEssential Guitar + GenreClassical + KindMPEG audio file + Size3674760 + Total Time111098 + Disc Number1 + Disc Count2 + Track Number14 + Track Count18 + Year2002 + Date Modified2009-11-14T14:51:33Z + Date Added2009-11-14T15:03:01Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202532111 + Play Count8 + Play Date3400788430 + Play Date UTC2011-10-06T17:57:10Z + Album Rating80 + Album Rating Computed + Artwork Count1 + Persistent ID5CA53565305E9FBB + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Essential%20Guitar/1-14%20Romance%20de%20los%20pinos.mp3 + File Folder Count4 + Library Folder Count1 + + 6804 + + Track ID6804 + Name5 Preludes - No. 1 in E minor + ArtistJulian Bream + Album ArtistVarious Artists + ComposerVilla-Lobos, Heitor + AlbumEssential Guitar + GenreClassical + KindMPEG audio file + Size8508045 + Total Time262138 + Disc Number1 + Disc Count2 + Track Number15 + Track Count18 + Year2002 + Date Modified2009-11-14T14:52:29Z + Date Added2009-11-14T15:03:01Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202532112 + Play Count9 + Play Date3400432218 + Play Date UTC2011-10-02T15:00:18Z + Rating60 + Album Rating80 + Album Rating Computed + Artwork Count1 + Persistent IDE31BCFCEE14DAB58 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Essential%20Guitar/1-15%205%20Preludes%20-%20No.%201%20in%20E%20minor.mp3 + File Folder Count4 + Library Folder Count1 + + 6806 + + Track ID6806 + NameDanza paraguaya No.1 - Revised Jesús Benites R. + ArtistEduardo Fernandez + Album ArtistVarious Artists + ComposerBarrios Mangoré, Agustín + AlbumEssential Guitar + GenreClassical + KindMPEG audio file + Size4472259 + Total Time136019 + Disc Number1 + Disc Count2 + Track Number16 + Track Count18 + Year2002 + Date Modified2009-11-14T14:52:55Z + Date Added2009-11-14T15:03:01Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202532113 + Play Count10 + Play Date3406907618 + Play Date UTC2011-12-16T13:43:38Z + Skip Count1 + Album Rating80 + Album Rating Computed + Artwork Count1 + Persistent IDF3F4AB6C88DFBEC3 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Essential%20Guitar/1-16%20Danza%20paraguaya%20No.1%20-%20Revised%20Jesu%CC%81s%20Benites%20R..mp3 + File Folder Count4 + Library Folder Count1 + + 6808 + + Track ID6808 + NameMalagueña + ArtistPepe Romero + Album ArtistVarious Artists + ComposerRomero, Celedonio + AlbumEssential Guitar + GenreClassical + KindMPEG audio file + Size10225834 + Total Time315820 + Disc Number1 + Disc Count2 + Track Number17 + Track Count18 + Year2002 + Date Modified2009-11-14T14:53:48Z + Date Added2009-11-14T15:03:01Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202532114 + Play Count8 + Play Date3400789200 + Play Date UTC2011-10-06T18:10:00Z + Album Rating80 + Album Rating Computed + Artwork Count1 + Persistent IDE8DCB5470610FD84 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Essential%20Guitar/1-17%20Malaguen%CC%83a.mp3 + File Folder Count4 + Library Folder Count1 + + 6810 + + Track ID6810 + NameAyer y hoy (Guajiras) + ArtistPaco Peña + Album ArtistVarious Artists + ComposerPeña, Paco + AlbumEssential Guitar + GenreClassical + KindMPEG audio file + Size8294866 + Total Time255477 + Disc Number1 + Disc Count2 + Track Number18 + Track Count18 + Year2002 + Date Modified2009-11-14T14:54:41Z + Date Added2009-11-14T15:03:01Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202532115 + Play Count6 + Play Date3400432925 + Play Date UTC2011-10-02T15:12:05Z + Album Rating80 + Album Rating Computed + Artwork Count1 + Persistent ID124525090477DDE6 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Essential%20Guitar/1-18%20Ayer%20y%20hoy%20(Guajiras).mp3 + File Folder Count4 + Library Folder Count1 + + 6812 + + Track ID6812 + NameBabar (Feat. Detroit Symphony Orchestra) + ArtistBela Fleck, Zakir Hussein, Edgar Meyer + Album ArtistBela Fleck, Zakir Hussain & Edgar Meyer + AlbumThe Melody Of Rhythm + GenreClassical + KindMPEG audio file + Size10423563 + Total Time370991 + Disc Number1 + Disc Count1 + Track Number1 + Track Count9 + Year2009 + Date Modified2009-11-14T14:55:37Z + Date Added2009-11-14T15:09:31Z + Bit Rate223 + Sample Rate44100 + CommentsAmazon.com Song ID: 212511759 + Play Count7 + Play Date3417369033 + Play Date UTC2012-04-15T15:40:33Z + Skip Count1 + Skip Date2014-01-05T09:44:18Z + Artwork Count1 + Sort AlbumMelody Of Rhythm + Persistent ID036C2B3480D1F76A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bela%20Fleck,%20Zakir%20Hussain%20&%20Edgar%20Meyer/The%20Melody%20Of%20Rhythm/01%20Babar%20(Feat.%20Detroit%20Symphony%20Orchestra).mp3 + File Folder Count4 + Library Folder Count1 + + 6814 + + Track ID6814 + NameOut Of The Blue (Feat. Detroit Symphony Orchestra) + ArtistBela Fleck, Zakir Hussein, Edgar Meyer + Album ArtistBela Fleck, Zakir Hussain & Edgar Meyer + AlbumThe Melody Of Rhythm + GenreClassical + KindMPEG audio file + Size8499464 + Total Time298318 + Disc Number1 + Disc Count1 + Track Number2 + Track Count9 + Year2009 + Date Modified2009-11-14T14:56:32Z + Date Added2009-11-14T15:09:31Z + Bit Rate226 + Sample Rate44100 + CommentsAmazon.com Song ID: 212511760 + Play Count3 + Play Date3341477607 + Play Date UTC2009-11-19T06:43:27Z + Artwork Count1 + Sort AlbumMelody Of Rhythm + Persistent IDCBB6DDE0E61CD3E2 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bela%20Fleck,%20Zakir%20Hussain%20&%20Edgar%20Meyer/The%20Melody%20Of%20Rhythm/02%20Out%20Of%20The%20Blue%20(Feat.%20Detroit%20Symphony%20Orchestra).mp3 + File Folder Count4 + Library Folder Count1 + + 6816 + + Track ID6816 + NameBubbles (Feat. Detroit Symphony Orchestra) + ArtistBela Fleck, Zakir Hussein, Edgar Meyer + Album ArtistBela Fleck, Zakir Hussain & Edgar Meyer + AlbumThe Melody Of Rhythm + GenreClassical + KindMPEG audio file + Size12557318 + Total Time432352 + Disc Number1 + Disc Count1 + Track Number3 + Track Count9 + Year2009 + Date Modified2009-11-14T14:58:12Z + Date Added2009-11-14T15:09:31Z + Bit Rate231 + Sample Rate44100 + CommentsAmazon.com Song ID: 212511761 + Play Count2 + Play Date3341478039 + Play Date UTC2009-11-19T06:50:39Z + Artwork Count1 + Sort AlbumMelody Of Rhythm + Persistent ID76AAB46824E8D882 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bela%20Fleck,%20Zakir%20Hussain%20&%20Edgar%20Meyer/The%20Melody%20Of%20Rhythm/03%20Bubbles%20(Feat.%20Detroit%20Symphony%20Orchestra).mp3 + File Folder Count4 + Library Folder Count1 + + 6818 + + Track ID6818 + NameThe Melody Of Rhythm, Movement 1 (Feat. Detroit Symphony Orchestra) + ArtistBela Fleck, Zakir Hussein, Edgar Meyer + Album ArtistBela Fleck, Zakir Hussain & Edgar Meyer + AlbumThe Melody Of Rhythm + GenreClassical + KindMPEG audio file + Size20772985 + Total Time711366 + Disc Number1 + Disc Count1 + Track Number4 + Track Count9 + Year2009 + Date Modified2009-11-14T15:00:12Z + Date Added2009-11-14T15:09:31Z + Bit Rate232 + Sample Rate44100 + CommentsAmazon.com Song ID: 212511762 + Play Count2 + Play Date3341478751 + Play Date UTC2009-11-19T07:02:31Z + Artwork Count1 + Sort AlbumMelody Of Rhythm + Sort NameMelody Of Rhythm, Movement 1 (Feat. Detroit Symphony Orchestra) + Persistent IDF122EDE7D4B28B57 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bela%20Fleck,%20Zakir%20Hussain%20&%20Edgar%20Meyer/The%20Melody%20Of%20Rhythm/04%20The%20Melody%20Of%20Rhythm,%20Movement%201%20(Feat.%20Detroit%20Symphony%20Orchestra).mp3 + File Folder Count4 + Library Folder Count1 + + 6820 + + Track ID6820 + NameThe Melody Of Rhythm, Movement 2 (Feat. Detroit Symphony Orchestra) + ArtistBela Fleck, Zakir Hussein, Edgar Meyer + Album ArtistBela Fleck, Zakir Hussain & Edgar Meyer + AlbumThe Melody Of Rhythm + GenreClassical + KindMPEG audio file + Size10540520 + Total Time386324 + Disc Number1 + Disc Count1 + Track Number5 + Track Count9 + Year2009 + Date Modified2009-11-14T15:01:24Z + Date Added2009-11-14T15:09:31Z + Bit Rate216 + Sample Rate44100 + CommentsAmazon.com Song ID: 212511763 + Play Count2 + Play Date3341479137 + Play Date UTC2009-11-19T07:08:57Z + Artwork Count1 + Sort AlbumMelody Of Rhythm + Sort NameMelody Of Rhythm, Movement 2 (Feat. Detroit Symphony Orchestra) + Persistent IDEB750EB58FFEE12C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bela%20Fleck,%20Zakir%20Hussain%20&%20Edgar%20Meyer/The%20Melody%20Of%20Rhythm/05%20The%20Melody%20Of%20Rhythm,%20Movement%202%20(Feat.%20Detroit%20Symphony%20Orchestra).mp3 + File Folder Count4 + Library Folder Count1 + + 6822 + + Track ID6822 + NameThe Melody Of Rhythm, Movement 3 (Feat. Detroit Symphony Orchestra) + ArtistBela Fleck, Zakir Hussein, Edgar Meyer + Album ArtistBela Fleck, Zakir Hussain & Edgar Meyer + AlbumThe Melody Of Rhythm + GenreClassical + KindMPEG audio file + Size17203991 + Total Time579239 + Disc Number1 + Disc Count1 + Track Number6 + Track Count9 + Year2009 + Date Modified2009-11-14T15:02:57Z + Date Added2009-11-14T15:09:31Z + Bit Rate236 + Sample Rate44100 + CommentsAmazon.com Song ID: 212511764 + Artwork Count1 + Sort AlbumMelody Of Rhythm + Sort NameMelody Of Rhythm, Movement 3 (Feat. Detroit Symphony Orchestra) + Persistent IDCFEBD920BAF83247 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bela%20Fleck,%20Zakir%20Hussain%20&%20Edgar%20Meyer/The%20Melody%20Of%20Rhythm/06%20The%20Melody%20Of%20Rhythm,%20Movement%203%20(Feat.%20Detroit%20Symphony%20Orchestra).mp3 + File Folder Count4 + Library Folder Count1 + + 6824 + + Track ID6824 + NameCadence (Feat. Detroit Symphony Orchestra) + ArtistBela Fleck, Zakir Hussein, Edgar Meyer + Album ArtistBela Fleck, Zakir Hussain & Edgar Meyer + AlbumThe Melody Of Rhythm + GenreClassical + KindMPEG audio file + Size6862110 + Total Time236277 + Disc Number1 + Disc Count1 + Track Number7 + Track Count9 + Year2009 + Date Modified2009-11-14T15:04:06Z + Date Added2009-11-14T15:09:31Z + Bit Rate230 + Sample Rate44100 + CommentsAmazon.com Song ID: 212511765 + Skip Count1 + Skip Date2014-01-05T09:48:22Z + Artwork Count1 + Sort AlbumMelody Of Rhythm + Persistent ID3B01CE07992F8D17 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bela%20Fleck,%20Zakir%20Hussain%20&%20Edgar%20Meyer/The%20Melody%20Of%20Rhythm/07%20Cadence%20(Feat.%20Detroit%20Symphony%20Orchestra).mp3 + File Folder Count4 + Library Folder Count1 + + 6826 + + Track ID6826 + NameIn Conclusion (Feat. Detroit Symphony Orchestra) + ArtistBela Fleck, Zakir Hussein, Edgar Meyer + Album ArtistBela Fleck, Zakir Hussain & Edgar Meyer + AlbumThe Melody Of Rhythm + GenreClassical + KindMPEG audio file + Size11184535 + Total Time394370 + Disc Number1 + Disc Count1 + Track Number8 + Track Count9 + Year2009 + Date Modified2009-11-14T15:06:39Z + Date Added2009-11-14T15:09:31Z + Bit Rate225 + Sample Rate44100 + CommentsAmazon.com Song ID: 212511767 + Artwork Count1 + Sort AlbumMelody Of Rhythm + Persistent ID85A174CF5AD3FC1E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bela%20Fleck,%20Zakir%20Hussain%20&%20Edgar%20Meyer/The%20Melody%20Of%20Rhythm/08%20In%20Conclusion%20(Feat.%20Detroit%20Symphony%20Orchestra).mp3 + File Folder Count4 + Library Folder Count1 + + 6828 + + Track ID6828 + NameThen Again (Feat. Detroit Symphony Orchestra) + ArtistBela Fleck, Zakir Hussein, Edgar Meyer + Album ArtistBela Fleck, Zakir Hussain & Edgar Meyer + AlbumThe Melody Of Rhythm + GenreJazz + KindMPEG audio file + Size11286404 + Total Time400979 + Disc Number1 + Disc Count1 + Track Number9 + Track Count9 + Year2009 + Date Modified2009-11-14T15:07:42Z + Date Added2009-11-14T15:09:31Z + Bit Rate223 + Sample Rate44100 + CommentsAmazon.com Song ID: 212511769 + Artwork Count1 + Sort AlbumMelody Of Rhythm + Persistent ID86590F63AF323227 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bela%20Fleck,%20Zakir%20Hussain%20&%20Edgar%20Meyer/The%20Melody%20Of%20Rhythm/09%20Then%20Again%20(Feat.%20Detroit%20Symphony%20Orchestra).mp3 + File Folder Count4 + Library Folder Count1 + + 6830 + + Track ID6830 + NameString Quartet No. 5, Sz 102: I. Allegro + ArtistBartok, Bela + ComposerBartok, Bela + AlbumBartók String Quartet #5 - Chilingirian Quartet + GenreClassical + KindMPEG audio file + Size8982652 + Total Time449018 + Track Number10 + Track Count14 + Date Modified2009-11-16T02:06:26Z + Date Added2009-11-16T02:04:39Z + Bit Rate160 + Sample Rate44100 + Commentsfrom-david,digital-only + Play Count1 + Play Date3341295648 + Play Date UTC2009-11-17T04:10:48Z + Normalization1176 + Persistent ID882CDC9D2AF8CB33 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bartok,%20Bela/Barto%CC%81k%20String%20Quartet%20%235%20-%20Chilingirian%20Quartet/10%20String%20Quartet%20No.%205,%20Sz%20102_%20I.%20Allegro.mp3 + File Folder Count4 + Library Folder Count1 + + 6832 + + Track ID6832 + NameString Quartet No. 5, Sz 102: II. Adagio molto + ArtistBartok, Bela + ComposerBartok, Bela + AlbumBartók String Quartet #5 - Chilingirian Quartet + GenreClassical + KindMPEG audio file + Size6784193 + Total Time339095 + Track Number11 + Track Count14 + Date Modified2009-11-16T02:06:26Z + Date Added2009-11-16T02:04:39Z + Bit Rate160 + Sample Rate44100 + Commentsfrom-david,digital-only + Normalization247 + Persistent ID4EB2CBDD68C936D0 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bartok,%20Bela/Barto%CC%81k%20String%20Quartet%20%235%20-%20Chilingirian%20Quartet/11%20String%20Quartet%20No.%205,%20Sz%20102_%20II.%20Adagio%20molto.mp3 + File Folder Count4 + Library Folder Count1 + + 6834 + + Track ID6834 + NameString Quartet No. 5, Sz 102: III. Scherzo + ArtistBartok, Bela + ComposerBartok, Bela + AlbumBartók String Quartet #5 - Chilingirian Quartet + GenreClassical + KindMPEG audio file + Size6063732 + Total Time303072 + Track Number12 + Track Count14 + Date Modified2009-11-16T02:06:26Z + Date Added2009-11-16T02:04:39Z + Bit Rate160 + Sample Rate44100 + Commentsfrom-david,digital-only + Normalization542 + Persistent ID0FC86AD0E16B722C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bartok,%20Bela/Barto%CC%81k%20String%20Quartet%20%235%20-%20Chilingirian%20Quartet/12%20String%20Quartet%20No.%205,%20Sz%20102_%20III.%20Scherzo.mp3 + File Folder Count4 + Library Folder Count1 + + 6836 + + Track ID6836 + NameString Quartet No. 5, Sz 102: IV. Andante + ArtistBartok, Bela + ComposerBartok, Bela + AlbumBartók String Quartet #5 - Chilingirian Quartet + GenreClassical + KindMPEG audio file + Size5799894 + Total Time289880 + Track Number13 + Track Count14 + Date Modified2009-11-16T02:06:26Z + Date Added2009-11-16T02:04:39Z + Bit Rate160 + Sample Rate44100 + Commentsfrom-david,digital-only + Normalization703 + Persistent ID245F0B315D5CC76B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bartok,%20Bela/Barto%CC%81k%20String%20Quartet%20%235%20-%20Chilingirian%20Quartet/13%20String%20Quartet%20No.%205,%20Sz%20102_%20IV.%20Andante.mp3 + File Folder Count4 + Library Folder Count1 + + 6838 + + Track ID6838 + NameString Quartet No. 5, Sz 102: V. Finale + ArtistBartok, Bela + ComposerBartok, Bela + AlbumBartók String Quartet #5 - Chilingirian Quartet + GenreClassical + KindMPEG audio file + Size8403256 + Total Time420048 + Track Number14 + Track Count14 + Date Modified2009-11-16T02:06:26Z + Date Added2009-11-16T02:04:39Z + Bit Rate160 + Sample Rate44100 + Commentsfrom-david,digital-only + Normalization1096 + Persistent ID090E3BE2480F7A34 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bartok,%20Bela/Barto%CC%81k%20String%20Quartet%20%235%20-%20Chilingirian%20Quartet/14%20String%20Quartet%20No.%205,%20Sz%20102_%20V.%20Finale.mp3 + File Folder Count4 + Library Folder Count1 + + 6840 + + Track ID6840 + NameSextet - Allegro Vivace + ArtistCopland, Aaron + ComposerCopland, Aaron + AlbumSextet + GenreClassical + KindMPEG audio file + Size6525543 + Total Time271804 + Disc Number1 + Disc Count1 + Track Number1 + Track Count7 + Year1987 + Date Modified2009-11-16T02:06:26Z + Date Added2009-11-16T02:04:47Z + Bit Rate192 + Sample Rate44100 + Commentsfrom-david,digital-only + Play Count2 + Play Date3341223196 + Play Date UTC2009-11-16T08:03:16Z + Normalization1146 + Compilation + Persistent IDCB0DAF1A7C6F68CD + Track TypeFile + File Type1297106739 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Sextet/01%20Sextet%20-%20Allegro%20Vivace.mp3 + File Folder Count4 + Library Folder Count1 + + 6842 + + Track ID6842 + NameVocalise + ArtistCopland, Aaron + ComposerCopland, Aaron + GenreClassical + KindMPEG audio file + Size6685353 + Total Time278465 + Track Number2 + Track Count11 + Date Modified2009-11-16T02:06:26Z + Date Added2009-11-16T02:04:47Z + Bit Rate192 + Sample Rate44100 + Commentsfrom-david,digital-only + Play Count1 + Play Date3341222436 + Play Date UTC2009-11-16T07:50:36Z + Normalization346 + Persistent IDFF92C18BFDE47084 + Track TypeFile + File Type1297106739 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Copland,%20Aaron/Unknown%20Album/02%20Vocalise.mp3 + File Folder Count4 + Library Folder Count1 + + 6844 + + Track ID6844 + Nameno.4: I. Largo affettuoso :Concerto no.4 in a minor(Handel,Stepner,Quan,Lutzke,Handel&Haydn Society,1991.3.26-29) + ArtistHandel + ComposerHandel + AlbumConcerti Grossi Op. 6, Nos. 1-4 + GenreClassical + KindMPEG audio file + Size3243586 + Total Time162063 + Disc Number1 + Disc Count3 + Track Number15 + Track Count18 + Year1739 + Date Modified2009-11-16T02:06:26Z + Date Added2009-11-16T02:04:52Z + Bit Rate160 + Sample Rate44100 + Commentsfrom-david,digital-only + Play Count2 + Play Date3341222924 + Play Date UTC2009-11-16T07:58:44Z + Normalization233 + Persistent ID03C11AA1E061DA40 + Track TypeFile + File Type1297106739 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Handel/Concerti%20Grossi%20Op.%206,%20Nos.%201-4/1-15%20no.4_%20I.%20Largo%20affettuoso%20_Concerto%20no.4%20in%20a%20minor(Handel,Stepner,Quan,Lutzke,Handel&Haydn%20Society,1991.3.26-29).mp3 + File Folder Count4 + Library Folder Count1 + + 6846 + + Track ID6846 + Nameno.4: II. Allegro :Concerto no.4 in a minor(Handel,Stepner,Quan,Lutzke,Handel&Haydn Society,1991.3.26-29) + ArtistHandel + ComposerHandel + AlbumConcerti Grossi Op. 6, Nos. 1-4 + GenreClassical + KindMPEG audio file + Size3223725 + Total Time161071 + Disc Number1 + Disc Count3 + Track Number16 + Track Count18 + Year1739 + Date Modified2009-11-16T02:06:26Z + Date Added2009-11-16T02:04:53Z + Bit Rate160 + Sample Rate44100 + Commentsfrom-david,digital-only + Play Count1 + Play Date3341221453 + Play Date UTC2009-11-16T07:34:13Z + Normalization474 + Persistent ID16E77B4A9119A993 + Track TypeFile + File Type1297106739 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Handel/Concerti%20Grossi%20Op.%206,%20Nos.%201-4/1-16%20no.4_%20II.%20Allegro%20_Concerto%20no.4%20in%20a%20minor(Handel,Stepner,Quan,Lutzke,Handel&Haydn%20Society,1991.3.26-29).mp3 + File Folder Count4 + Library Folder Count1 + + 6848 + + Track ID6848 + Nameno.4: III. Largo e piano :Concerto no.4 in a minor(Handel,Stepner,Quan,Lutzke,Handel&Haydn Society,1991.3.26-29) + ArtistHandel + ComposerHandel + AlbumConcerti Grossi Op. 6, Nos. 1-4 + GenreClassical + KindMPEG audio file + Size2393561 + Total Time119562 + Disc Number1 + Disc Count3 + Track Number17 + Track Count18 + Year1739 + Date Modified2009-11-16T02:06:26Z + Date Added2009-11-16T02:04:53Z + Bit Rate160 + Sample Rate44100 + Commentsfrom-david,digital-only + Play Count2 + Play Date3383452318 + Play Date UTC2011-03-20T02:21:58Z + Normalization223 + Persistent IDF7334AFD7FC2792C + Track TypeFile + File Type1297106739 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Handel/Concerti%20Grossi%20Op.%206,%20Nos.%201-4/1-17%20no.4_%20III.%20Largo%20e%20piano%20_Concerto%20no.4%20in%20a%20minor(Handel,Stepner,Quan,Lutzke,Handel&Haydn%20Society,1991.3.26-29).mp3 + File Folder Count4 + Library Folder Count1 + + 6850 + + Track ID6850 + Nameno.4: IV. Allegro :Concerto no.4 in a minor(Handel,Stepner,Quan,Lutzke,Handel&Haydn Society,1991.3.26-29) + ArtistHandel + ComposerHandel + AlbumConcerti Grossi Op. 6, Nos. 1-4 + GenreClassical + KindMPEG audio file + Size3030419 + Total Time151405 + Disc Number1 + Disc Count3 + Track Number18 + Track Count18 + Year1739 + Date Modified2009-11-16T02:06:26Z + Date Added2009-11-16T02:04:53Z + Bit Rate160 + Sample Rate44100 + Commentsfrom-david,digital-only + Play Count2 + Play Date3341222762 + Play Date UTC2009-11-16T07:56:02Z + Normalization479 + Persistent IDE8D416A0C8048D92 + Track TypeFile + File Type1297106739 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Handel/Concerti%20Grossi%20Op.%206,%20Nos.%201-4/1-18%20no.4_%20IV.%20Allegro%20_Concerto%20no.4%20in%20a%20minor(Handel,Stepner,Quan,Lutzke,Handel&Haydn%20Society,1991.3.26-29).mp3 + File Folder Count4 + Library Folder Count1 + + 6862 + + Track ID6862 + NameChandan sabadan + GenreHindi Old hits + KindMPEG audio file + Size1288516 + Total Time182592 + Date Modified2009-11-18T00:08:52Z + Date Added2009-11-29T03:28:31Z + Bit Rate56 + Sample Rate24000 + Play Count2 + Play Date3342872538 + Play Date UTC2009-12-05T10:12:18Z + Persistent IDA92F8B2999231909 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Unknown%20Artist/Unknown%20Album/Chandan%20sabadan.mp3 + File Folder Count4 + Library Folder Count1 + + 6866 + + Track ID6866 + Name21/11/09 8:34 PM + KindApple Lossless audio file + Size3483862 + Total Time72074 + Date Modified2009-11-29T14:56:26Z + Date Added2009-11-29T14:56:26Z + Bit Rate386 + Sample Rate44100 + Persistent ID36C0DAD35492CA66 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Voice%20Memos/20091121%20203415.m4a + File Folder Count3 + Library Folder Count1 + + 6868 + + Track ID6868 + Name28/11/09 5:42 PM + KindApple Lossless audio file + Size882031 + Total Time21362 + Date Modified2009-11-29T14:56:26Z + Date Added2009-11-29T14:56:26Z + Bit Rate329 + Sample Rate44100 + Persistent IDDA6AAFEE98E69F0C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Voice%20Memos/20091128%20174203.m4a + File Folder Count3 + Library Folder Count1 + + 6870 + + Track ID6870 + NameIntro + ArtistMark Hanson + AlbumBeyond Basics Fingerstyle Guitar + GenreUnclassifiable + KindAAC audio file + Size2744627 + Total Time83240 + Track Number1 + Track Count72 + Year1997 + Date Modified2009-11-30T08:29:18Z + Date Added2009-11-30T07:45:39Z + Bit Rate256 + Sample Rate44100 + Normalization486 + Artwork Count1 + Persistent ID9AF9093F3F8A1EAE + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/01%20Intro.m4a + File Folder Count4 + Library Folder Count1 + + 6872 + + Track ID6872 + NameTuning Notes + ArtistMark Hanson + AlbumBeyond Basics Fingerstyle Guitar + GenreUnclassifiable + KindAAC audio file + Size1514560 + Total Time47066 + Track Number2 + Track Count72 + Year1997 + Date Modified2009-11-30T08:29:18Z + Date Added2009-11-30T07:46:15Z + Bit Rate256 + Sample Rate44100 + Normalization322 + Artwork Count1 + Persistent IDB3C2A4849CB77CC9 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/02%20Tuning%20Notes.m4a + File Folder Count4 + Library Folder Count1 + + 6874 + + Track ID6874 + NameArpeggios Example 1 + ArtistMark Hanson + AlbumBeyond Basics Fingerstyle Guitar + GenreUnclassifiable + KindAAC audio file + Size1402420 + Total Time43306 + Track Number3 + Track Count72 + Year1997 + Date Modified2009-11-30T08:29:18Z + Date Added2009-11-30T07:46:36Z + Bit Rate256 + Sample Rate44100 + Normalization584 + Artwork Count1 + Persistent ID02712659742FB5B9 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/03%20Arpeggios%20Example%201.m4a + File Folder Count4 + Library Folder Count1 + + 6876 + + Track ID6876 + NameArpeggios Example 2 + ArtistMark Hanson + AlbumBeyond Basics Fingerstyle Guitar + GenreUnclassifiable + KindAAC audio file + Size1771010 + Total Time54440 + Track Number4 + Track Count72 + Year1997 + Date Modified2009-11-30T08:29:18Z + Date Added2009-11-30T07:46:56Z + Bit Rate256 + Sample Rate44100 + Normalization492 + Artwork Count1 + Persistent ID9498213C63D9E8BA + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/04%20Arpeggios%20Example%202.m4a + File Folder Count4 + Library Folder Count1 + + 6878 + + Track ID6878 + NameArpeggios Example 3 + ArtistMark Hanson + AlbumBeyond Basics Fingerstyle Guitar + GenreUnclassifiable + KindAAC audio file + Size1633893 + Total Time50813 + Track Number5 + Track Count72 + Year1997 + Date Modified2009-11-30T08:29:19Z + Date Added2009-11-30T07:47:21Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3342509094 + Play Date UTC2009-12-01T05:14:54Z + Normalization361 + Artwork Count1 + Persistent ID0B87761CFB9D065E + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/05%20Arpeggios%20Example%203.m4a + File Folder Count4 + Library Folder Count1 + + 6880 + + Track ID6880 + NameArpeggios Example 4 + ArtistMark Hanson + AlbumBeyond Basics Fingerstyle Guitar + GenreUnclassifiable + KindAAC audio file + Size3058280 + Total Time94493 + Track Number6 + Track Count72 + Year1997 + Date Modified2009-11-30T08:29:19Z + Date Added2009-11-30T07:47:45Z + Bit Rate256 + Sample Rate44100 + Normalization588 + Artwork Count1 + Persistent IDBD107FD7FC3FD996 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/06%20Arpeggios%20Example%204.m4a + File Folder Count4 + Library Folder Count1 + + 6882 + + Track ID6882 + NameArpeggios Example 5 + ArtistMark Hanson + AlbumBeyond Basics Fingerstyle Guitar + GenreUnclassifiable + KindAAC audio file + Size1275255 + Total Time39893 + Track Number7 + Track Count72 + Year1997 + Date Modified2009-11-30T08:29:19Z + Date Added2009-11-30T07:48:30Z + Bit Rate256 + Sample Rate44100 + Normalization457 + Artwork Count1 + Persistent ID33A1BA3D7F594C80 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/07%20Arpeggios%20Example%205.m4a + File Folder Count4 + Library Folder Count1 + + 6884 + + Track ID6884 + NameCanyon Canon Example 6 + ArtistMark Hanson + AlbumBeyond Basics Fingerstyle Guitar + GenreUnclassifiable + KindAAC audio file + Size1505251 + Total Time46786 + Track Number8 + Track Count72 + Year1997 + Date Modified2009-11-30T08:29:19Z + Date Added2009-11-30T07:48:49Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3342433590 + Play Date UTC2009-11-30T08:16:30Z + Normalization508 + Artwork Count1 + Persistent ID3CC77049463EA9AA + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/08%20Canyon%20Canon%20Example%206.m4a + File Folder Count4 + Library Folder Count1 + + 6886 + + Track ID6886 + NameCanyon Canon Example 7 + ArtistMark Hanson + AlbumBeyond Basics Fingerstyle Guitar + GenreUnclassifiable + KindAAC audio file + Size1497818 + Total Time46280 + Track Number9 + Track Count72 + Year1997 + Date Modified2009-11-30T08:29:19Z + Date Added2009-11-30T07:49:12Z + Bit Rate256 + Sample Rate44100 + Normalization393 + Artwork Count1 + Persistent ID6F5C6805A075E212 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/09%20Canyon%20Canon%20Example%207.m4a + File Folder Count4 + Library Folder Count1 + + 6888 + + Track ID6888 + NameCanyon Canon Example 8 + ArtistMark Hanson + AlbumBeyond Basics Fingerstyle Guitar + GenreUnclassifiable + KindAAC audio file + Size1251437 + Total Time38893 + Track Number10 + Track Count72 + Year1997 + Date Modified2009-11-30T08:29:19Z + Date Added2009-11-30T07:49:36Z + Bit Rate256 + Sample Rate44100 + Normalization388 + Artwork Count1 + Persistent ID03CD900B76CDB0E7 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/10%20Canyon%20Canon%20Example%208.m4a + File Folder Count4 + Library Folder Count1 + + 6890 + + Track ID6890 + NameCanyon Canon Example 9 + ArtistMark Hanson + AlbumBeyond Basics Fingerstyle Guitar + GenreUnclassifiable + KindAAC audio file + Size944913 + Total Time29480 + Track Number11 + Track Count72 + Year1997 + Date Modified2009-11-30T08:29:19Z + Date Added2009-11-30T07:49:55Z + Bit Rate256 + Sample Rate44100 + Normalization338 + Artwork Count1 + Persistent ID4E0152E88E3BCB39 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/11%20Canyon%20Canon%20Example%209.m4a + File Folder Count4 + Library Folder Count1 + + 6892 + + Track ID6892 + NameCanyon Canon Example 10 + ArtistMark Hanson + AlbumBeyond Basics Fingerstyle Guitar + GenreUnclassifiable + KindAAC audio file + Size835653 + Total Time25946 + Track Number12 + Track Count72 + Year1997 + Date Modified2009-11-30T08:29:19Z + Date Added2009-11-30T07:50:11Z + Bit Rate256 + Sample Rate44100 + Play Count2 + Play Date3342853593 + Play Date UTC2009-12-05T04:56:33Z + Normalization165 + Artwork Count1 + Persistent ID28850FC23ACB3CCF + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/12%20Canyon%20Canon%20Example%2010.m4a + File Folder Count4 + Library Folder Count1 + + 6894 + + Track ID6894 + NameCanyon Canon Example 11 + ArtistMark Hanson + AlbumBeyond Basics Fingerstyle Guitar + GenreUnclassifiable + KindAAC audio file + Size797517 + Total Time24840 + Track Number13 + Track Count72 + Year1997 + Date Modified2009-11-30T08:29:19Z + Date Added2009-11-30T07:50:24Z + Bit Rate256 + Sample Rate44100 + Normalization345 + Artwork Count1 + Persistent ID39F9161B578619C3 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/13%20Canyon%20Canon%20Example%2011.m4a + File Folder Count4 + Library Folder Count1 + + 6896 + + Track ID6896 + NameCanyon Canon + ArtistMark Hanson + AlbumBeyond Basics Fingerstyle Guitar + GenreUnclassifiable + KindAAC audio file + Size6942374 + Total Time212000 + Track Number14 + Track Count72 + Year1997 + Date Modified2009-11-30T08:29:19Z + Date Added2009-11-30T07:50:38Z + Bit Rate256 + Sample Rate44100 + Play Count2 + Play Date3398146310 + Play Date UTC2011-09-06T04:01:50Z + Normalization430 + Artwork Count1 + Persistent ID9395C438EF94F4D4 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/14%20Canyon%20Canon.m4a + File Folder Count4 + Library Folder Count1 + + 6898 + + Track ID6898 + NameFingerpicking In 3/4 Time Example 12 + ArtistMark Hanson + AlbumBeyond Basics Fingerstyle Guitar + GenreUnclassifiable + KindAAC audio file + Size2254825 + Total Time70266 + Track Number15 + Track Count72 + Year1997 + Date Modified2009-11-30T08:29:20Z + Date Added2009-11-30T07:52:23Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3342688879 + Play Date UTC2009-12-03T07:11:19Z + Normalization353 + Artwork Count1 + Persistent ID5002A17D7C6BDC36 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/15%20Fingerpicking%20In%203_4%20Time%20Example%2012.m4a + File Folder Count4 + Library Folder Count1 + + 6900 + + Track ID6900 + NameFingerpicking In 3/4 Time Example 13 + ArtistMark Hanson + AlbumBeyond Basics Fingerstyle Guitar + GenreUnclassifiable + KindAAC audio file + Size1649375 + Total Time51133 + Track Number16 + Track Count72 + Year1997 + Date Modified2009-11-30T08:29:20Z + Date Added2009-11-30T07:52:59Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3342688930 + Play Date UTC2009-12-03T07:12:10Z + Normalization394 + Artwork Count1 + Persistent ID7C786D6099FEB81F + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/16%20Fingerpicking%20In%203_4%20Time%20Example%2013.m4a + File Folder Count4 + Library Folder Count1 + + 6902 + + Track ID6902 + NameFingerpicking In 3/4 Time Example 14 + ArtistMark Hanson + AlbumBeyond Basics Fingerstyle Guitar + GenreUnclassifiable + KindAAC audio file + Size3988612 + Total Time122146 + Track Number17 + Track Count72 + Year1997 + Date Modified2009-11-30T08:29:20Z + Date Added2009-11-30T07:53:26Z + Bit Rate256 + Sample Rate44100 + Normalization458 + Artwork Count1 + Persistent IDA980D619A76AFDE3 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/17%20Fingerpicking%20In%203_4%20Time%20Example%2014.m4a + File Folder Count4 + Library Folder Count1 + + 6904 + + Track ID6904 + NameWindows Example 15 + ArtistMark Hanson + AlbumBeyond Basics Fingerstyle Guitar + GenreUnclassifiable + KindAAC audio file + Size1974833 + Total Time60600 + Track Number18 + Track Count72 + Year1997 + Date Modified2009-11-30T08:29:20Z + Date Added2009-11-30T07:54:30Z + Bit Rate256 + Sample Rate44100 + Normalization292 + Artwork Count1 + Persistent ID2B967ACA3B63DD5B + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/18%20Windows%20Example%2015.m4a + File Folder Count4 + Library Folder Count1 + + 6906 + + Track ID6906 + NameWindows Example 16 + ArtistMark Hanson + AlbumBeyond Basics Fingerstyle Guitar + GenreUnclassifiable + KindAAC audio file + Size2823257 + Total Time86840 + Track Number19 + Track Count72 + Year1997 + Date Modified2009-11-30T08:29:20Z + Date Added2009-11-30T07:55:03Z + Bit Rate256 + Sample Rate44100 + Normalization573 + Artwork Count1 + Persistent IDB29DCE4E3DB23C27 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/19%20Windows%20Example%2016.m4a + File Folder Count4 + Library Folder Count1 + + 6908 + + Track ID6908 + NameWindows Example 17 + ArtistMark Hanson + AlbumBeyond Basics Fingerstyle Guitar + GenreUnclassifiable + KindAAC audio file + Size2105614 + Total Time65066 + Track Number20 + Track Count72 + Year1997 + Date Modified2009-11-30T08:29:20Z + Date Added2009-11-30T07:55:49Z + Bit Rate256 + Sample Rate44100 + Normalization387 + Artwork Count1 + Persistent ID1DDB47068D7DA131 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/20%20Windows%20Example%2017.m4a + File Folder Count4 + Library Folder Count1 + + 6910 + + Track ID6910 + NameWindows Example 18 + ArtistMark Hanson + AlbumBeyond Basics Fingerstyle Guitar + GenreUnclassifiable + KindAAC audio file + Size3578616 + Total Time109773 + Track Number21 + Track Count72 + Year1997 + Date Modified2009-11-30T08:29:21Z + Date Added2009-11-30T07:56:25Z + Bit Rate256 + Sample Rate44100 + Normalization345 + Artwork Count1 + Persistent IDCD7D89B39742989C + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/21%20Windows%20Example%2018.m4a + File Folder Count4 + Library Folder Count1 + + 6912 + + Track ID6912 + NameWindows + ArtistMark Hanson + AlbumBeyond Basics Fingerstyle Guitar + GenreUnclassifiable + KindAAC audio file + Size5833524 + Total Time177973 + Track Number22 + Track Count72 + Year1997 + Date Modified2009-11-30T08:29:21Z + Date Added2009-11-30T07:57:25Z + Bit Rate256 + Sample Rate44100 + Play Count2 + Play Date3343584673 + Play Date UTC2009-12-13T16:01:13Z + Normalization491 + Artwork Count1 + Persistent IDD5E82A856D76717D + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/22%20Windows.m4a + File Folder Count4 + Library Folder Count1 + + 6914 + + Track ID6914 + NameThe Travis Picking Pattern Example 19 + ArtistMark Hanson + AlbumBeyond Basics Fingerstyle Guitar + GenreUnclassifiable + KindAAC audio file + Size1532144 + Total Time47426 + Track Number23 + Track Count72 + Year1997 + Date Modified2009-11-30T08:29:21Z + Date Added2009-11-30T07:59:03Z + Bit Rate256 + Sample Rate44100 + Play Count2 + Play Date3343190124 + Play Date UTC2009-12-09T02:25:24Z + Normalization303 + Artwork Count1 + Sort NameTravis Picking Pattern Example 19 + Persistent IDA48EEA7593850587 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/23%20The%20Travis%20Picking%20Pattern%20Example%2019.m4a + File Folder Count4 + Library Folder Count1 + + 6916 + + Track ID6916 + NameThe Travis Picking Pattern Example 20 + ArtistMark Hanson + AlbumBeyond Basics Fingerstyle Guitar + GenreUnclassifiable + KindAAC audio file + Size1900699 + Total Time58600 + Track Number24 + Track Count72 + Year1997 + Date Modified2009-11-30T08:29:21Z + Date Added2009-11-30T07:59:31Z + Bit Rate256 + Sample Rate44100 + Normalization304 + Artwork Count1 + Sort NameTravis Picking Pattern Example 20 + Persistent ID8021483409525B56 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/24%20The%20Travis%20Picking%20Pattern%20Example%2020.m4a + File Folder Count4 + Library Folder Count1 + + 6918 + + Track ID6918 + NameThe Travis Picking Pattern Example 21 + ArtistMark Hanson + AlbumBeyond Basics Fingerstyle Guitar + GenreUnclassifiable + KindAAC audio file + Size848541 + Total Time26413 + Track Number25 + Track Count72 + Year1997 + Date Modified2009-11-30T08:29:21Z + Date Added2009-11-30T08:00:04Z + Bit Rate256 + Sample Rate44100 + Normalization341 + Artwork Count1 + Sort NameTravis Picking Pattern Example 21 + Persistent ID2FAB28472D65F448 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/25%20The%20Travis%20Picking%20Pattern%20Example%2021.m4a + File Folder Count4 + Library Folder Count1 + + 6920 + + Track ID6920 + NameWheels Example 22 + ArtistMark Hanson + AlbumBeyond Basics Fingerstyle Guitar + GenreUnclassifiable + KindAAC audio file + Size1027016 + Total Time32040 + Track Number26 + Track Count72 + Year1997 + Date Modified2009-11-30T08:29:21Z + Date Added2009-11-30T08:00:20Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3343190191 + Play Date UTC2009-12-09T02:26:31Z + Normalization376 + Artwork Count1 + Persistent ID9CB1129ABD719EDC + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/26%20Wheels%20Example%2022.m4a + File Folder Count4 + Library Folder Count1 + + 6922 + + Track ID6922 + NameWheels Example 23 + ArtistMark Hanson + AlbumBeyond Basics Fingerstyle Guitar + GenreUnclassifiable + KindAAC audio file + Size966443 + Total Time30120 + Track Number27 + Track Count72 + Year1997 + Date Modified2009-11-30T08:29:21Z + Date Added2009-11-30T08:00:40Z + Bit Rate256 + Sample Rate44100 + Skip Count1 + Skip Date2009-12-09T02:26:33Z + Normalization213 + Artwork Count1 + Persistent IDC26A48AE4FDEE2D5 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/27%20Wheels%20Example%2023.m4a + File Folder Count4 + Library Folder Count1 + + 6924 + + Track ID6924 + NameWheels Example 24 + ArtistMark Hanson + AlbumBeyond Basics Fingerstyle Guitar + GenreUnclassifiable + KindAAC audio file + Size1122828 + Total Time35053 + Track Number28 + Track Count72 + Year1997 + Date Modified2009-11-30T08:29:21Z + Date Added2009-11-30T08:00:58Z + Bit Rate256 + Sample Rate44100 + Normalization349 + Artwork Count1 + Persistent ID1348CBA1D591EE2D + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/28%20Wheels%20Example%2024.m4a + File Folder Count4 + Library Folder Count1 + + 6926 + + Track ID6926 + NameWheels Example 25 + ArtistMark Hanson + AlbumBeyond Basics Fingerstyle Guitar + GenreUnclassifiable + KindAAC audio file + Size1217946 + Total Time38040 + Track Number29 + Track Count72 + Year1997 + Date Modified2009-11-30T08:29:22Z + Date Added2009-11-30T08:01:19Z + Bit Rate256 + Sample Rate44100 + Skip Count1 + Skip Date2009-12-09T02:26:49Z + Normalization300 + Artwork Count1 + Persistent IDFFD1E5C3E4DF6E35 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/29%20Wheels%20Example%2025.m4a + File Folder Count4 + Library Folder Count1 + + 6928 + + Track ID6928 + NameWheels + ArtistMark Hanson + AlbumBeyond Basics Fingerstyle Guitar + GenreUnclassifiable + KindAAC audio file + Size2834708 + Total Time87706 + Track Number30 + Track Count72 + Year1997 + Date Modified2009-11-30T08:29:22Z + Date Added2009-11-30T08:01:43Z + Bit Rate256 + Sample Rate44100 + Play Count3 + Play Date3343907962 + Play Date UTC2009-12-17T09:49:22Z + Normalization225 + Artwork Count1 + Persistent ID79D3A9738BBF0B5E + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/30%20Wheels.m4a + File Folder Count4 + Library Folder Count1 + + 6930 + + Track ID6930 + NamePlayin' The Blues Example 26 + ArtistMark Hanson + AlbumBeyond Basics Fingerstyle Guitar + GenreUnclassifiable + KindAAC audio file + Size1546708 + Total Time47933 + Track Number31 + Track Count72 + Year1997 + Date Modified2009-11-30T08:29:22Z + Date Added2009-11-30T08:02:34Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3343121815 + Play Date UTC2009-12-08T07:26:55Z + Normalization400 + Artwork Count1 + Persistent ID0EF7D6949E6165D6 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/31%20Playin'%20The%20Blues%20Example%2026.m4a + File Folder Count4 + Library Folder Count1 + + 6932 + + Track ID6932 + NamePlayin' The Blues Example 27 + ArtistMark Hanson + AlbumBeyond Basics Fingerstyle Guitar + GenreUnclassifiable + KindAAC audio file + Size1563622 + Total Time48813 + Track Number32 + Track Count72 + Year1997 + Date Modified2009-11-30T08:29:22Z + Date Added2009-11-30T08:03:03Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3343908023 + Play Date UTC2009-12-17T09:50:23Z + Normalization377 + Artwork Count1 + Persistent IDD2F04D075A0529FE + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/32%20Playin'%20The%20Blues%20Example%2027.m4a + File Folder Count4 + Library Folder Count1 + + 6934 + + Track ID6934 + NamePlayin' The Blues Example 28 + ArtistMark Hanson + AlbumBeyond Basics Fingerstyle Guitar + GenreUnclassifiable + KindAAC audio file + Size672437 + Total Time20866 + Track Number33 + Track Count72 + Year1997 + Date Modified2009-11-30T08:29:22Z + Date Added2009-11-30T08:03:32Z + Bit Rate256 + Sample Rate44100 + Normalization510 + Artwork Count1 + Persistent ID447C914DE890934A + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/33%20Playin'%20The%20Blues%20Example%2028.m4a + File Folder Count4 + Library Folder Count1 + + 6936 + + Track ID6936 + NamePlayin' The Blues Example 29 + ArtistMark Hanson + AlbumBeyond Basics Fingerstyle Guitar + GenreUnclassifiable + KindAAC audio file + Size650569 + Total Time20200 + Track Number34 + Track Count72 + Year1997 + Date Modified2009-11-30T08:29:22Z + Date Added2009-11-30T08:03:45Z + Bit Rate256 + Sample Rate44100 + Normalization434 + Artwork Count1 + Persistent ID1065E7CFD4DE23B7 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/34%20Playin'%20The%20Blues%20Example%2029.m4a + File Folder Count4 + Library Folder Count1 + + 6938 + + Track ID6938 + NamePlayin' The Blues Example 30 + ArtistMark Hanson + AlbumBeyond Basics Fingerstyle Guitar + GenreUnclassifiable + KindAAC audio file + Size1736508 + Total Time53266 + Track Number35 + Track Count72 + Year1997 + Date Modified2009-11-30T08:29:22Z + Date Added2009-11-30T08:03:59Z + Bit Rate256 + Sample Rate44100 + Normalization393 + Artwork Count1 + Persistent ID85AE3658FF1E2C81 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/35%20Playin'%20The%20Blues%20Example%2030.m4a + File Folder Count4 + Library Folder Count1 + + 6940 + + Track ID6940 + NamePlayin' The Blues Example 31 + ArtistMark Hanson + AlbumBeyond Basics Fingerstyle Guitar + GenreUnclassifiable + KindAAC audio file + Size1683204 + Total Time52013 + Track Number36 + Track Count72 + Year1997 + Date Modified2009-11-30T08:29:22Z + Date Added2009-11-30T08:04:32Z + Bit Rate256 + Sample Rate44100 + Normalization483 + Artwork Count1 + Persistent IDE808C61DA08204C0 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/36%20Playin'%20The%20Blues%20Example%2031.m4a + File Folder Count4 + Library Folder Count1 + + 6942 + + Track ID6942 + NamePlayin' The Blues Example 32 + ArtistMark Hanson + AlbumBeyond Basics Fingerstyle Guitar + GenreUnclassifiable + KindAAC audio file + Size643361 + Total Time19906 + Track Number37 + Track Count72 + Year1997 + Date Modified2009-11-30T08:29:22Z + Date Added2009-11-30T08:05:04Z + Bit Rate256 + Sample Rate44100 + Normalization457 + Artwork Count1 + Persistent ID7FD7FAB5781313C2 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/37%20Playin'%20The%20Blues%20Example%2032.m4a + File Folder Count4 + Library Folder Count1 + + 6944 + + Track ID6944 + NamePlayin' The Blues Example 33 + ArtistMark Hanson + AlbumBeyond Basics Fingerstyle Guitar + GenreUnclassifiable + KindAAC audio file + Size4369337 + Total Time133520 + Track Number38 + Track Count72 + Year1997 + Date Modified2009-11-30T08:29:22Z + Date Added2009-11-30T08:05:17Z + Bit Rate256 + Sample Rate44100 + Normalization588 + Artwork Count1 + Persistent ID5B56C30CCC4C60DD + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/38%20Playin'%20The%20Blues%20Example%2033.m4a + File Folder Count4 + Library Folder Count1 + + 6946 + + Track ID6946 + NameOther Alternating Bass Patterns Examples 34 + ArtistMark Hanson + AlbumBeyond Basics Fingerstyle Guitar + GenreUnclassifiable + KindAAC audio file + Size1210272 + Total Time37506 + Track Number39 + Track Count72 + Year1997 + Date Modified2009-11-30T08:29:23Z + Date Added2009-11-30T08:06:38Z + Bit Rate256 + Sample Rate44100 + Play Count2 + Play Date3343908062 + Play Date UTC2009-12-17T09:51:02Z + Normalization405 + Artwork Count1 + Persistent ID4C477C939EB7A11A + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/39%20Other%20Alternating%20Bass%20Patterns%20Examples%2034.m4a + File Folder Count4 + Library Folder Count1 + + 6948 + + Track ID6948 + NameOther Alternating Bass Patterns Examples 35 + ArtistMark Hanson + AlbumBeyond Basics Fingerstyle Guitar + GenreUnclassifiable + KindAAC audio file + Size966161 + Total Time30106 + Track Number40 + Track Count72 + Year1997 + Date Modified2009-11-30T08:29:23Z + Date Added2009-11-30T08:07:02Z + Bit Rate256 + Sample Rate44100 + Play Count2 + Play Date3343924227 + Play Date UTC2009-12-17T14:20:27Z + Normalization469 + Artwork Count1 + Persistent ID0B1A658CD436CFED + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/40%20Other%20Alternating%20Bass%20Patterns%20Examples%2035.m4a + File Folder Count4 + Library Folder Count1 + + 6950 + + Track ID6950 + NameOther Alternating Bass Patterns Examples 36 + ArtistMark Hanson + AlbumBeyond Basics Fingerstyle Guitar + GenreUnclassifiable + KindAAC audio file + Size1511327 + Total Time47000 + Track Number41 + Track Count72 + Year1997 + Date Modified2009-11-30T08:29:23Z + Date Added2009-11-30T08:07:22Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3343125952 + Play Date UTC2009-12-08T08:35:52Z + Normalization543 + Artwork Count1 + Persistent IDD9BB28A81FE633D9 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/41%20Other%20Alternating%20Bass%20Patterns%20Examples%2036.m4a + File Folder Count4 + Library Folder Count1 + + 6952 + + Track ID6952 + NameOther Alternating Bass Patterns Examples 37 + ArtistMark Hanson + AlbumBeyond Basics Fingerstyle Guitar + GenreUnclassifiable + KindAAC audio file + Size1500543 + Total Time46960 + Track Number42 + Track Count72 + Year1997 + Date Modified2009-11-30T08:29:23Z + Date Added2009-11-30T08:07:52Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3343125999 + Play Date UTC2009-12-08T08:36:39Z + Normalization450 + Artwork Count1 + Persistent IDE44EE363661AD1A1 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/42%20Other%20Alternating%20Bass%20Patterns%20Examples%2037.m4a + File Folder Count4 + Library Folder Count1 + + 6954 + + Track ID6954 + NameOther Alternating Bass Patterns Examples 38 + ArtistMark Hanson + AlbumBeyond Basics Fingerstyle Guitar + GenreUnclassifiable + KindAAC audio file + Size754490 + Total Time23386 + Track Number43 + Track Count72 + Year1997 + Date Modified2009-11-30T08:29:23Z + Date Added2009-11-30T08:08:22Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3343126024 + Play Date UTC2009-12-08T08:37:04Z + Normalization578 + Artwork Count1 + Persistent ID9D95CABC4E7E0ABF + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/43%20Other%20Alternating%20Bass%20Patterns%20Examples%2038.m4a + File Folder Count4 + Library Folder Count1 + + 6956 + + Track ID6956 + NameOther Alternating Bass Patterns Examples 39 + ArtistMark Hanson + AlbumBeyond Basics Fingerstyle Guitar + GenreUnclassifiable + KindAAC audio file + Size705662 + Total Time21880 + Track Number44 + Track Count72 + Year1997 + Date Modified2009-11-30T08:29:23Z + Date Added2009-11-30T08:08:38Z + Bit Rate256 + Sample Rate44100 + Normalization602 + Artwork Count1 + Persistent ID9592A1892E274B83 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/44%20Other%20Alternating%20Bass%20Patterns%20Examples%2039.m4a + File Folder Count4 + Library Folder Count1 + + 6958 + + Track ID6958 + NameOther Alternating Bass Patterns Examples 40 + ArtistMark Hanson + AlbumBeyond Basics Fingerstyle Guitar + GenreUnclassifiable + KindAAC audio file + Size1051183 + Total Time32826 + Track Number45 + Track Count72 + Year1997 + Date Modified2009-11-30T08:29:23Z + Date Added2009-11-30T08:08:53Z + Bit Rate256 + Sample Rate44100 + Normalization547 + Artwork Count1 + Persistent IDC68A6FB69B7513B2 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/45%20Other%20Alternating%20Bass%20Patterns%20Examples%2040.m4a + File Folder Count4 + Library Folder Count1 + + 6960 + + Track ID6960 + NameOther Alternating Bass Patterns Examples 41 + ArtistMark Hanson + AlbumBeyond Basics Fingerstyle Guitar + GenreUnclassifiable + KindAAC audio file + Size882713 + Total Time27520 + Track Number46 + Track Count72 + Year1997 + Date Modified2009-11-30T08:29:23Z + Date Added2009-11-30T08:09:14Z + Bit Rate256 + Sample Rate44100 + Normalization431 + Artwork Count1 + Persistent ID6DE1F6BF6B0A4B9B + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/46%20Other%20Alternating%20Bass%20Patterns%20Examples%2041.m4a + File Folder Count4 + Library Folder Count1 + + 6962 + + Track ID6962 + NameFour Per Bar Example 42 + ArtistMark Hanson + AlbumBeyond Basics Fingerstyle Guitar + GenreUnclassifiable + KindAAC audio file + Size1135626 + Total Time35440 + Track Number47 + Track Count72 + Year1997 + Date Modified2009-11-30T08:29:23Z + Date Added2009-11-30T08:09:33Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3343924259 + Play Date UTC2009-12-17T14:20:59Z + Normalization504 + Artwork Count1 + Persistent IDCAF3B844D0665641 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/47%20Four%20Per%20Bar%20Example%2042.m4a + File Folder Count4 + Library Folder Count1 + + 6964 + + Track ID6964 + NameFour Per Bar Example 43 + ArtistMark Hanson + AlbumBeyond Basics Fingerstyle Guitar + GenreUnclassifiable + KindAAC audio file + Size994490 + Total Time30973 + Track Number48 + Track Count72 + Year1997 + Date Modified2009-11-30T08:29:23Z + Date Added2009-11-30T08:09:56Z + Bit Rate256 + Sample Rate44100 + Normalization520 + Artwork Count1 + Persistent IDA133A0493DE72CAE + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/48%20Four%20Per%20Bar%20Example%2043.m4a + File Folder Count4 + Library Folder Count1 + + 6966 + + Track ID6966 + NameFour Per Bar Example 44 + ArtistMark Hanson + AlbumBeyond Basics Fingerstyle Guitar + GenreUnclassifiable + KindAAC audio file + Size1992085 + Total Time61480 + Track Number49 + Track Count72 + Year1997 + Date Modified2009-11-30T08:29:23Z + Date Added2009-11-30T08:10:17Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3343924469 + Play Date UTC2009-12-17T14:24:29Z + Normalization588 + Artwork Count1 + Persistent ID9590FD6C94BBB5ED + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/49%20Four%20Per%20Bar%20Example%2044.m4a + File Folder Count4 + Library Folder Count1 + + 6968 + + Track ID6968 + NameFour Per Bar Example 45 + ArtistMark Hanson + AlbumBeyond Basics Fingerstyle Guitar + GenreUnclassifiable + KindAAC audio file + Size2297996 + Total Time89680 + Track Number50 + Track Count72 + Year1997 + Date Modified2009-11-30T08:29:23Z + Date Added2009-11-30T08:10:57Z + Bit Rate256 + Sample Rate44100 + Normalization589 + Artwork Count1 + Persistent ID37183A7803FAA476 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/50%20Four%20Per%20Bar%20Example%2045.m4a + File Folder Count4 + Library Folder Count1 + + 6970 + + Track ID6970 + NameFour Per Bar + ArtistMark Hanson + AlbumBeyond Basics Fingerstyle Guitar + GenreUnclassifiable + KindAAC audio file + Size2418854 + Total Time74106 + Track Number51 + Track Count72 + Year1997 + Date Modified2009-11-30T08:29:23Z + Date Added2009-11-30T08:11:55Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3343924337 + Play Date UTC2009-12-17T14:22:17Z + Normalization580 + Artwork Count1 + Persistent IDACB3214E839EC87D + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/51%20Four%20Per%20Bar.m4a + File Folder Count4 + Library Folder Count1 + + 6972 + + Track ID6972 + NameOther Accompaniment Patterns Using The Travis Style Example 46 + ArtistMark Hanson + AlbumBeyond Basics Fingerstyle Guitar + GenreUnclassifiable + KindAAC audio file + Size1680026 + Total Time52240 + Track Number52 + Track Count72 + Year1997 + Date Modified2009-11-30T08:29:24Z + Date Added2009-11-30T08:12:44Z + Bit Rate256 + Sample Rate44100 + Normalization588 + Artwork Count1 + Persistent ID11F98B4506695070 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/52%20Other%20Accompaniment%20Patterns%20Using%20The%20Travis%20Style%20Example%2046.m4a + File Folder Count4 + Library Folder Count1 + + 6974 + + Track ID6974 + NameOther Accompaniment Patterns Using The Travis Style Example 47 + ArtistMark Hanson + AlbumBeyond Basics Fingerstyle Guitar + GenreUnclassifiable + KindAAC audio file + Size2835099 + Total Time87200 + Track Number53 + Track Count72 + Year1997 + Date Modified2009-11-30T08:29:24Z + Date Added2009-11-30T08:13:20Z + Bit Rate256 + Sample Rate44100 + Normalization526 + Artwork Count1 + Persistent ID72A9A494F02FC324 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/53%20Other%20Accompaniment%20Patterns%20Using%20The%20Travis%20Style%20Example%2047.m4a + File Folder Count4 + Library Folder Count1 + + 6976 + + Track ID6976 + NameOther Accompaniment Patterns Using The Travis Style Example 48 + ArtistMark Hanson + AlbumBeyond Basics Fingerstyle Guitar + GenreUnclassifiable + KindAAC audio file + Size2646739 + Total Time81533 + Track Number54 + Track Count72 + Year1997 + Date Modified2009-11-30T08:29:24Z + Date Added2009-11-30T08:14:18Z + Bit Rate256 + Sample Rate44100 + Normalization579 + Artwork Count1 + Persistent ID0D14291177DF887B + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/54%20Other%20Accompaniment%20Patterns%20Using%20The%20Travis%20Style%20Example%2048.m4a + File Folder Count4 + Library Folder Count1 + + 6978 + + Track ID6978 + NameOther Accompaniment Patterns Using The Travis Style Example 49 + ArtistMark Hanson + AlbumBeyond Basics Fingerstyle Guitar + GenreUnclassifiable + KindAAC audio file + Size4275764 + Total Time130293 + Track Number55 + Track Count72 + Year1997 + Date Modified2009-11-30T08:29:24Z + Date Added2009-11-30T08:15:13Z + Bit Rate256 + Sample Rate44100 + Normalization588 + Artwork Count1 + Persistent IDCD41515E7A0CEF1F + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/55%20Other%20Accompaniment%20Patterns%20Using%20The%20Travis%20Style%20Example%2049.m4a + File Folder Count4 + Library Folder Count1 + + 6980 + + Track ID6980 + NameOther Accompaniment Patterns Using The Travis Style Example 50 + ArtistMark Hanson + AlbumBeyond Basics Fingerstyle Guitar + GenreUnclassifiable + KindAAC audio file + Size1288986 + Total Time39893 + Track Number56 + Track Count72 + Year1997 + Date Modified2009-11-30T08:29:24Z + Date Added2009-11-30T08:16:40Z + Bit Rate256 + Sample Rate44100 + Normalization588 + Artwork Count1 + Persistent IDFEE8716FAA0FBDD6 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/56%20Other%20Accompaniment%20Patterns%20Using%20The%20Travis%20Style%20Example%2050.m4a + File Folder Count4 + Library Folder Count1 + + 6982 + + Track ID6982 + NameKey To The Kingdom Example 51 + ArtistMark Hanson + AlbumBeyond Basics Fingerstyle Guitar + GenreUnclassifiable + KindAAC audio file + Size1938087 + Total Time59586 + Track Number57 + Track Count72 + Year1997 + Date Modified2009-11-30T08:29:24Z + Date Added2009-11-30T08:17:09Z + Bit Rate256 + Sample Rate44100 + Normalization588 + Artwork Count1 + Persistent IDE41FBB9CD7C01D9B + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/57%20Key%20To%20The%20Kingdom%20Example%2051.m4a + File Folder Count4 + Library Folder Count1 + + 6984 + + Track ID6984 + NameKey To The Kingdom Example 52 + ArtistMark Hanson + AlbumBeyond Basics Fingerstyle Guitar + GenreUnclassifiable + KindAAC audio file + Size1860204 + Total Time57733 + Track Number58 + Track Count72 + Year1997 + Date Modified2009-11-30T08:29:24Z + Date Added2009-11-30T08:17:50Z + Bit Rate256 + Sample Rate44100 + Normalization481 + Artwork Count1 + Persistent ID86CB9C940E1D0CFE + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/58%20Key%20To%20The%20Kingdom%20Example%2052.m4a + File Folder Count4 + Library Folder Count1 + + 6986 + + Track ID6986 + NameKey To The Kingdom Example 53 + ArtistMark Hanson + AlbumBeyond Basics Fingerstyle Guitar + GenreUnclassifiable + KindAAC audio file + Size901329 + Total Time28053 + Track Number59 + Track Count72 + Year1997 + Date Modified2009-11-30T08:29:25Z + Date Added2009-11-30T08:18:30Z + Bit Rate256 + Sample Rate44100 + Normalization416 + Artwork Count1 + Persistent ID7D1CFE794633B4C3 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/59%20Key%20To%20The%20Kingdom%20Example%2053.m4a + File Folder Count4 + Library Folder Count1 + + 6988 + + Track ID6988 + NameKey To The Kingdom + ArtistMark Hanson + AlbumBeyond Basics Fingerstyle Guitar + GenreUnclassifiable + KindAAC audio file + Size2309762 + Total Time71106 + Track Number60 + Track Count72 + Year1997 + Date Modified2009-11-30T08:29:25Z + Date Added2009-11-30T08:18:51Z + Bit Rate256 + Sample Rate44100 + Play Count2 + Play Date3343924594 + Play Date UTC2009-12-17T14:26:34Z + Normalization549 + Artwork Count1 + Persistent ID3E575FBC3A6B7246 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/60%20Key%20To%20The%20Kingdom.m4a + File Folder Count4 + Library Folder Count1 + + 6990 + + Track ID6990 + NameThe Blues With Alternating Bass Example 54 + ArtistMark Hanson + AlbumBeyond Basics Fingerstyle Guitar + GenreUnclassifiable + KindAAC audio file + Size1045792 + Total Time32666 + Track Number61 + Track Count72 + Year1997 + Date Modified2009-11-30T08:29:25Z + Date Added2009-11-30T08:19:41Z + Bit Rate256 + Sample Rate44100 + Normalization552 + Artwork Count1 + Sort NameBlues With Alternating Bass Example 54 + Persistent ID760C27748F2C3B56 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/61%20The%20Blues%20With%20Alternating%20Bass%20Example%2054.m4a + File Folder Count4 + Library Folder Count1 + + 6992 + + Track ID6992 + NameThe Blues With Alternating Bass Example 55 + ArtistMark Hanson + AlbumBeyond Basics Fingerstyle Guitar + GenreUnclassifiable + KindAAC audio file + Size991636 + Total Time30973 + Track Number62 + Track Count72 + Year1997 + Date Modified2009-11-30T08:29:25Z + Date Added2009-11-30T08:20:05Z + Bit Rate256 + Sample Rate44100 + Normalization550 + Artwork Count1 + Sort NameBlues With Alternating Bass Example 55 + Persistent ID2539F0EE636001A9 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/62%20The%20Blues%20With%20Alternating%20Bass%20Example%2055.m4a + File Folder Count4 + Library Folder Count1 + + 6994 + + Track ID6994 + NameThe Blues With Alternating Bass Example 56 + ArtistMark Hanson + AlbumBeyond Basics Fingerstyle Guitar + GenreUnclassifiable + KindAAC audio file + Size1685448 + Total Time52333 + Track Number63 + Track Count72 + Year1997 + Date Modified2009-11-30T08:29:25Z + Date Added2009-11-30T08:20:28Z + Bit Rate256 + Sample Rate44100 + Normalization437 + Artwork Count1 + Sort NameBlues With Alternating Bass Example 56 + Persistent IDA8EE55CA1FCE7F67 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/63%20The%20Blues%20With%20Alternating%20Bass%20Example%2056.m4a + File Folder Count4 + Library Folder Count1 + + 6996 + + Track ID6996 + NameThe Blues With Alternating Bass Example 57 + ArtistMark Hanson + AlbumBeyond Basics Fingerstyle Guitar + GenreUnclassifiable + KindAAC audio file + Size394473 + Total Time12066 + Track Number64 + Track Count72 + Year1997 + Date Modified2009-11-30T08:29:25Z + Date Added2009-11-30T08:21:05Z + Bit Rate256 + Sample Rate44100 + Normalization542 + Artwork Count1 + Sort NameBlues With Alternating Bass Example 57 + Persistent ID3A869ACCBF741F51 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/64%20The%20Blues%20With%20Alternating%20Bass%20Example%2057.m4a + File Folder Count4 + Library Folder Count1 + + 6998 + + Track ID6998 + NameThe Blues With Alternating Bass Example 58 + ArtistMark Hanson + AlbumBeyond Basics Fingerstyle Guitar + GenreUnclassifiable + KindAAC audio file + Size1996189 + Total Time61573 + Track Number65 + Track Count72 + Year1997 + Date Modified2009-11-30T08:29:25Z + Date Added2009-11-30T08:21:15Z + Bit Rate256 + Sample Rate44100 + Normalization576 + Artwork Count1 + Sort NameBlues With Alternating Bass Example 58 + Persistent ID95D231E928D14B67 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/65%20The%20Blues%20With%20Alternating%20Bass%20Example%2058.m4a + File Folder Count4 + Library Folder Count1 + + 7000 + + Track ID7000 + NameTaylor's Ferry Example 59 + ArtistMark Hanson + AlbumBeyond Basics Fingerstyle Guitar + GenreUnclassifiable + KindAAC audio file + Size1892745 + Total Time58613 + Track Number66 + Track Count72 + Year1997 + Date Modified2009-11-30T08:29:25Z + Date Added2009-11-30T08:21:59Z + Bit Rate256 + Sample Rate44100 + Normalization477 + Artwork Count1 + Persistent IDF477C2F268A3FEEA + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/66%20Taylor's%20Ferry%20Example%2059.m4a + File Folder Count4 + Library Folder Count1 + + 7002 + + Track ID7002 + NameTaylor's Ferry Example 60 + ArtistMark Hanson + AlbumBeyond Basics Fingerstyle Guitar + GenreUnclassifiable + KindAAC audio file + Size1860875 + Total Time57520 + Track Number67 + Track Count72 + Year1997 + Date Modified2009-11-30T08:29:25Z + Date Added2009-11-30T08:22:42Z + Bit Rate256 + Sample Rate44100 + Normalization588 + Artwork Count1 + Persistent IDC3D9082CD7ADB85A + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/67%20Taylor's%20Ferry%20Example%2060.m4a + File Folder Count4 + Library Folder Count1 + + 7004 + + Track ID7004 + NameTaylor's Ferry Example 61 + ArtistMark Hanson + AlbumBeyond Basics Fingerstyle Guitar + GenreUnclassifiable + KindAAC audio file + Size3133696 + Total Time96000 + Track Number68 + Track Count72 + Year1997 + Date Modified2009-11-30T08:29:25Z + Date Added2009-11-30T08:23:23Z + Bit Rate256 + Sample Rate44100 + Normalization542 + Artwork Count1 + Persistent IDE1CE4D4C8090D12A + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/68%20Taylor's%20Ferry%20Example%2061.m4a + File Folder Count4 + Library Folder Count1 + + 7006 + + Track ID7006 + NameTaylor's Ferry Example 62 + ArtistMark Hanson + AlbumBeyond Basics Fingerstyle Guitar + GenreUnclassifiable + KindAAC audio file + Size3034474 + Total Time92840 + Track Number69 + Track Count72 + Year1997 + Date Modified2009-11-30T08:29:26Z + Date Added2009-11-30T08:24:32Z + Bit Rate256 + Sample Rate44100 + Normalization393 + Artwork Count1 + Persistent IDEB6106EB56A17B4C + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/69%20Taylor's%20Ferry%20Example%2062.m4a + File Folder Count4 + Library Folder Count1 + + 7008 + + Track ID7008 + NameTaylor's Ferry + ArtistMark Hanson + AlbumBeyond Basics Fingerstyle Guitar + GenreUnclassifiable + KindAAC audio file + Size2168697 + Total Time66386 + Track Number70 + Track Count72 + Year1997 + Date Modified2009-11-30T08:29:26Z + Date Added2009-11-30T08:25:39Z + Bit Rate256 + Sample Rate44100 + Normalization528 + Artwork Count1 + Persistent ID77A224670D91D7DC + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/70%20Taylor's%20Ferry.m4a + File Folder Count4 + Library Folder Count1 + + 7010 + + Track ID7010 + NameBrahm's Lullaby Example 63 (Version I) + ArtistMark Hanson + AlbumBeyond Basics Fingerstyle Guitar + GenreUnclassifiable + KindAAC audio file + Size2565139 + Total Time78960 + Track Number71 + Track Count72 + Year1997 + Date Modified2009-11-30T08:29:26Z + Date Added2009-11-30T08:26:28Z + Bit Rate256 + Sample Rate44100 + Normalization504 + Artwork Count1 + Persistent IDBCCD11BFABCDC272 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/71%20Brahm's%20Lullaby%20Example%2063%20(Version%20I).m4a + File Folder Count4 + Library Folder Count1 + + 7012 + + Track ID7012 + NameBrahm's Lullaby Example 64 (Version II) + ArtistMark Hanson + AlbumBeyond Basics Fingerstyle Guitar + GenreUnclassifiable + KindAAC audio file + Size1624543 + Total Time49066 + Track Number72 + Track Count72 + Year1997 + Date Modified2009-11-30T08:29:26Z + Date Added2009-11-30T08:27:26Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3342509368 + Play Date UTC2009-12-01T05:19:28Z + Normalization377 + Artwork Count1 + Persistent IDE2B37C1B4599AF3C + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/72%20Brahm's%20Lullaby%20Example%2064%20(Version%20II).m4a + File Folder Count4 + Library Folder Count1 + + 7014 + + Track ID7014 + Name"Strawberry Curl" + ArtistMark Hanson + AlbumThe Art Of Solo Fingerpicking + GenreUnclassifiable + KindAAC audio file + Size5442005 + Total Time142093 + Disc Number1 + Disc Count1 + Track Number1 + Track Count45 + Year1988 + Date Modified2009-11-30T10:10:19Z + Date Added2009-11-30T09:41:28Z + Bit Rate256 + Sample Rate44100 + Play Count2 + Play Date3342696732 + Play Date UTC2009-12-03T09:22:12Z + Normalization1243 + Artwork Count1 + Sort AlbumArt Of Solo Fingerpicking + Persistent IDBB8BF5960B0453AF + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/The%20Art%20Of%20Solo%20Fingerpicking/01%20_Strawberry%20Curl_.m4a + File Folder Count4 + Library Folder Count1 + + 7016 + + Track ID7016 + NameIntroduction And Tuning + ArtistMark Hanson + AlbumThe Art Of Solo Fingerpicking + GenreUnclassifiable + KindAAC audio file + Size2503613 + Total Time65480 + Disc Number1 + Disc Count1 + Track Number2 + Track Count45 + Year1988 + Date Modified2009-11-30T10:10:20Z + Date Added2009-11-30T09:41:42Z + Bit Rate256 + Sample Rate44100 + Normalization1178 + Artwork Count1 + Sort AlbumArt Of Solo Fingerpicking + Persistent IDD4B95F977DCAC5BD + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/The%20Art%20Of%20Solo%20Fingerpicking/02%20Introduction%20And%20Tuning.m4a + File Folder Count4 + Library Folder Count1 + + 7018 + + Track ID7018 + NameExs. 7A-B + ArtistMark Hanson + AlbumThe Art Of Solo Fingerpicking + GenreUnclassifiable + KindAAC audio file + Size3202963 + Total Time84306 + Disc Number1 + Disc Count1 + Track Number3 + Track Count45 + Year1988 + Date Modified2009-11-30T10:10:20Z + Date Added2009-11-30T09:41:48Z + Bit Rate256 + Sample Rate44100 + Normalization1134 + Artwork Count1 + Sort AlbumArt Of Solo Fingerpicking + Persistent ID4105082F3F5B5623 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/The%20Art%20Of%20Solo%20Fingerpicking/03%20Exs.%207A-B.m4a + File Folder Count4 + Library Folder Count1 + + 7020 + + Track ID7020 + Name"Red, White & Blue Rag" Slowly + ArtistMark Hanson + AlbumThe Art Of Solo Fingerpicking + GenreUnclassifiable + KindAAC audio file + Size5143844 + Total Time135826 + Disc Number1 + Disc Count1 + Track Number4 + Track Count45 + Year1988 + Date Modified2009-11-30T10:10:20Z + Date Added2009-11-30T09:41:56Z + Bit Rate256 + Sample Rate44100 + Normalization1119 + Artwork Count1 + Sort AlbumArt Of Solo Fingerpicking + Persistent IDECF9E11DBD9B1091 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/The%20Art%20Of%20Solo%20Fingerpicking/04%20_Red,%20White%20&%20Blue%20Rag_%20Slowly.m4a + File Folder Count4 + Library Folder Count1 + + 7022 + + Track ID7022 + NameExs. 13a-D + ArtistMark Hanson + AlbumThe Art Of Solo Fingerpicking + GenreUnclassifiable + KindAAC audio file + Size2439286 + Total Time63853 + Disc Number1 + Disc Count1 + Track Number5 + Track Count45 + Year1988 + Date Modified2009-11-30T10:10:20Z + Date Added2009-11-30T09:42:08Z + Bit Rate256 + Sample Rate44100 + Normalization1023 + Artwork Count1 + Sort AlbumArt Of Solo Fingerpicking + Persistent IDA82F83BA65558504 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/The%20Art%20Of%20Solo%20Fingerpicking/05%20Exs.%2013a-D.m4a + File Folder Count4 + Library Folder Count1 + + 7024 + + Track ID7024 + NameExs. 14a-F + ArtistMark Hanson + AlbumThe Art Of Solo Fingerpicking + GenreUnclassifiable + KindAAC audio file + Size5378099 + Total Time140880 + Disc Number1 + Disc Count1 + Track Number6 + Track Count45 + Year1988 + Date Modified2009-11-30T10:10:20Z + Date Added2009-11-30T09:42:14Z + Bit Rate256 + Sample Rate44100 + Normalization957 + Artwork Count1 + Sort AlbumArt Of Solo Fingerpicking + Persistent IDF3890A147DF5A6CE + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/The%20Art%20Of%20Solo%20Fingerpicking/06%20Exs.%2014a-F.m4a + File Folder Count4 + Library Folder Count1 + + 7026 + + Track ID7026 + NameExs. 15a-D + ArtistMark Hanson + AlbumThe Art Of Solo Fingerpicking + GenreUnclassifiable + KindAAC audio file + Size4443503 + Total Time115866 + Disc Number1 + Disc Count1 + Track Number7 + Track Count45 + Year1988 + Date Modified2009-11-30T10:10:21Z + Date Added2009-11-30T09:42:25Z + Bit Rate256 + Sample Rate44100 + Normalization1126 + Artwork Count1 + Sort AlbumArt Of Solo Fingerpicking + Persistent IDC92AE16E832B9056 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/The%20Art%20Of%20Solo%20Fingerpicking/07%20Exs.%2015a-D.m4a + File Folder Count4 + Library Folder Count1 + + 7028 + + Track ID7028 + NameExs. 16a-C + ArtistMark Hanson + AlbumThe Art Of Solo Fingerpicking + GenreUnclassifiable + KindAAC audio file + Size3817327 + Total Time99986 + Disc Number1 + Disc Count1 + Track Number8 + Track Count45 + Year1988 + Date Modified2009-11-30T10:10:21Z + Date Added2009-11-30T09:42:34Z + Bit Rate256 + Sample Rate44100 + Normalization1060 + Artwork Count1 + Sort AlbumArt Of Solo Fingerpicking + Persistent IDA6E9F73970CD8675 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/The%20Art%20Of%20Solo%20Fingerpicking/08%20Exs.%2016a-C.m4a + File Folder Count4 + Library Folder Count1 + + 7030 + + Track ID7030 + NameEx. 17A + ArtistMark Hanson + AlbumThe Art Of Solo Fingerpicking + GenreUnclassifiable + KindAAC audio file + Size1277441 + Total Time33293 + Disc Number1 + Disc Count1 + Track Number9 + Track Count45 + Year1988 + Date Modified2009-11-30T10:10:21Z + Date Added2009-11-30T09:42:42Z + Bit Rate256 + Sample Rate44100 + Normalization941 + Artwork Count1 + Sort AlbumArt Of Solo Fingerpicking + Persistent ID0508D4CAFB69C613 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/The%20Art%20Of%20Solo%20Fingerpicking/09%20Ex.%2017A.m4a + File Folder Count4 + Library Folder Count1 + + 7032 + + Track ID7032 + Name"Devils's Dream" Slowly + ArtistMark Hanson + AlbumThe Art Of Solo Fingerpicking + GenreUnclassifiable + KindAAC audio file + Size4692357 + Total Time123120 + Disc Number1 + Disc Count1 + Track Number10 + Track Count45 + Year1988 + Date Modified2009-11-30T10:10:21Z + Date Added2009-11-30T09:42:45Z + Bit Rate256 + Sample Rate44100 + Normalization1156 + Artwork Count1 + Sort AlbumArt Of Solo Fingerpicking + Persistent IDA97FAF30F1E1A091 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/The%20Art%20Of%20Solo%20Fingerpicking/10%20_Devils's%20Dream_%20Slowly.m4a + File Folder Count4 + Library Folder Count1 + + 7034 + + Track ID7034 + Name"Freight Train" Slowly + ArtistMark Hanson + AlbumThe Art Of Solo Fingerpicking + GenreUnclassifiable + KindAAC audio file + Size4042645 + Total Time106533 + Disc Number1 + Disc Count1 + Track Number11 + Track Count45 + Year1988 + Date Modified2009-11-30T10:10:21Z + Date Added2009-11-30T09:42:54Z + Bit Rate256 + Sample Rate44100 + Normalization1098 + Artwork Count1 + Sort AlbumArt Of Solo Fingerpicking + Persistent IDD0CCD5A2074BB2BC + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/The%20Art%20Of%20Solo%20Fingerpicking/11%20_Freight%20Train_%20Slowly.m4a + File Folder Count4 + Library Folder Count1 + + 7036 + + Track ID7036 + NameEx. 22A + ArtistMark Hanson + AlbumThe Art Of Solo Fingerpicking + GenreUnclassifiable + KindAAC audio file + Size3880770 + Total Time101666 + Disc Number1 + Disc Count1 + Track Number12 + Track Count45 + Year1988 + Date Modified2009-11-30T10:10:21Z + Date Added2009-11-30T09:43:01Z + Bit Rate256 + Sample Rate44100 + Normalization781 + Artwork Count1 + Sort AlbumArt Of Solo Fingerpicking + Persistent ID13F3E9D50E65E323 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/The%20Art%20Of%20Solo%20Fingerpicking/12%20Ex.%2022A.m4a + File Folder Count4 + Library Folder Count1 + + 7038 + + Track ID7038 + NameExs. 23a-D + ArtistMark Hanson + AlbumThe Art Of Solo Fingerpicking + GenreUnclassifiable + KindAAC audio file + Size4084554 + Total Time107106 + Disc Number1 + Disc Count1 + Track Number13 + Track Count45 + Year1988 + Date Modified2009-11-30T10:10:22Z + Date Added2009-11-30T09:43:08Z + Bit Rate256 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Sort AlbumArt Of Solo Fingerpicking + Persistent ID7CA287360526B515 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/The%20Art%20Of%20Solo%20Fingerpicking/13%20Exs.%2023a-D.m4a + File Folder Count4 + Library Folder Count1 + + 7040 + + Track ID7040 + Name"Fishin' Blues" Slowly + ArtistMark Hanson + AlbumThe Art Of Solo Fingerpicking + GenreUnclassifiable + KindAAC audio file + Size2830373 + Total Time74480 + Disc Number1 + Disc Count1 + Track Number14 + Track Count45 + Year1988 + Date Modified2009-11-30T10:10:22Z + Date Added2009-11-30T09:43:16Z + Bit Rate256 + Sample Rate44100 + Normalization1178 + Artwork Count1 + Sort AlbumArt Of Solo Fingerpicking + Persistent ID187B7481B072E5FD + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/The%20Art%20Of%20Solo%20Fingerpicking/14%20_Fishin'%20Blues_%20Slowly.m4a + File Folder Count4 + Library Folder Count1 + + 7042 + + Track ID7042 + Name"White House Blues" Slowly + ArtistMark Hanson + AlbumThe Art Of Solo Fingerpicking + GenreUnclassifiable + KindAAC audio file + Size6464655 + Total Time170346 + Disc Number1 + Disc Count1 + Track Number15 + Track Count45 + Year1988 + Date Modified2009-11-30T10:10:22Z + Date Added2009-11-30T09:43:21Z + Bit Rate256 + Sample Rate44100 + Normalization1254 + Artwork Count1 + Sort AlbumArt Of Solo Fingerpicking + Persistent IDD958F10142747C20 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/The%20Art%20Of%20Solo%20Fingerpicking/15%20_White%20House%20Blues_%20Slowly.m4a + File Folder Count4 + Library Folder Count1 + + 7044 + + Track ID7044 + NameExs. 32a-C + ArtistMark Hanson + AlbumThe Art Of Solo Fingerpicking + GenreUnclassifiable + KindAAC audio file + Size2665508 + Total Time70346 + Disc Number1 + Disc Count1 + Track Number16 + Track Count45 + Year1988 + Date Modified2009-11-30T10:10:22Z + Date Added2009-11-30T09:43:32Z + Bit Rate256 + Sample Rate44100 + Normalization1114 + Artwork Count1 + Sort AlbumArt Of Solo Fingerpicking + Persistent ID417FE89EB78C2BF9 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/The%20Art%20Of%20Solo%20Fingerpicking/16%20Exs.%2032a-C.m4a + File Folder Count4 + Library Folder Count1 + + 7046 + + Track ID7046 + NameExs. 33a-D + ArtistMark Hanson + AlbumThe Art Of Solo Fingerpicking + GenreUnclassifiable + KindAAC audio file + Size2759523 + Total Time72640 + Disc Number1 + Disc Count1 + Track Number17 + Track Count45 + Year1988 + Date Modified2009-11-30T10:10:22Z + Date Added2009-11-30T09:43:37Z + Bit Rate256 + Sample Rate44100 + Normalization1149 + Artwork Count1 + Sort AlbumArt Of Solo Fingerpicking + Persistent ID88993CBFFBD14917 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/The%20Art%20Of%20Solo%20Fingerpicking/17%20Exs.%2033a-D.m4a + File Folder Count4 + Library Folder Count1 + + 7048 + + Track ID7048 + Name"Over The Waves" + ArtistMark Hanson + AlbumThe Art Of Solo Fingerpicking + GenreUnclassifiable + KindAAC audio file + Size4316028 + Total Time113626 + Disc Number1 + Disc Count1 + Track Number18 + Track Count45 + Year1988 + Date Modified2009-11-30T10:10:23Z + Date Added2009-11-30T09:43:41Z + Bit Rate256 + Sample Rate44100 + Normalization1166 + Artwork Count1 + Sort AlbumArt Of Solo Fingerpicking + Persistent IDCEF9F560F78974C1 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/The%20Art%20Of%20Solo%20Fingerpicking/18%20_Over%20The%20Waves_.m4a + File Folder Count4 + Library Folder Count1 + + 7050 + + Track ID7050 + NameEx. 36A + ArtistMark Hanson + AlbumThe Art Of Solo Fingerpicking + GenreUnclassifiable + KindAAC audio file + Size1475895 + Total Time38880 + Disc Number1 + Disc Count1 + Track Number19 + Track Count45 + Year1988 + Date Modified2009-11-30T10:10:23Z + Date Added2009-11-30T09:43:49Z + Bit Rate256 + Sample Rate44100 + Normalization949 + Artwork Count1 + Sort AlbumArt Of Solo Fingerpicking + Persistent ID187B771BC3AD79FE + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/The%20Art%20Of%20Solo%20Fingerpicking/19%20Ex.%2036A.m4a + File Folder Count4 + Library Folder Count1 + + 7052 + + Track ID7052 + NameExs. 37a-B + ArtistMark Hanson + AlbumThe Art Of Solo Fingerpicking + GenreUnclassifiable + KindAAC audio file + Size2569514 + Total Time68080 + Disc Number1 + Disc Count1 + Track Number20 + Track Count45 + Year1988 + Date Modified2009-11-30T10:10:23Z + Date Added2009-11-30T09:43:51Z + Bit Rate256 + Sample Rate44100 + Normalization1073 + Artwork Count1 + Sort AlbumArt Of Solo Fingerpicking + Persistent IDC42D09B2B90A072C + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/The%20Art%20Of%20Solo%20Fingerpicking/20%20Exs.%2037a-B.m4a + File Folder Count4 + Library Folder Count1 + + 7054 + + Track ID7054 + NameEx. 38A + ArtistMark Hanson + AlbumThe Art Of Solo Fingerpicking + GenreUnclassifiable + KindAAC audio file + Size1843522 + Total Time48200 + Disc Number1 + Disc Count1 + Track Number21 + Track Count45 + Year1988 + Date Modified2009-11-30T10:10:23Z + Date Added2009-11-30T09:43:55Z + Bit Rate256 + Sample Rate44100 + Normalization1108 + Artwork Count1 + Sort AlbumArt Of Solo Fingerpicking + Persistent IDD6E4B8FDB3DB15ED + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/The%20Art%20Of%20Solo%20Fingerpicking/21%20Ex.%2038A.m4a + File Folder Count4 + Library Folder Count1 + + 7056 + + Track ID7056 + Name"Etude" + ArtistMark Hanson + AlbumThe Art Of Solo Fingerpicking + GenreUnclassifiable + KindAAC audio file + Size1670435 + Total Time43946 + Disc Number1 + Disc Count1 + Track Number22 + Track Count45 + Year1988 + Date Modified2009-11-30T10:10:23Z + Date Added2009-11-30T09:43:59Z + Bit Rate256 + Sample Rate44100 + Normalization1198 + Artwork Count1 + Sort AlbumArt Of Solo Fingerpicking + Persistent ID733ABAF1B2365CDE + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/The%20Art%20Of%20Solo%20Fingerpicking/22%20_Etude_.m4a + File Folder Count4 + Library Folder Count1 + + 7058 + + Track ID7058 + NameExs. 40a-C + ArtistMark Hanson + AlbumThe Art Of Solo Fingerpicking + GenreUnclassifiable + KindAAC audio file + Size1992991 + Total Time52520 + Disc Number1 + Disc Count1 + Track Number23 + Track Count45 + Year1988 + Date Modified2009-11-30T10:10:23Z + Date Added2009-11-30T09:44:01Z + Bit Rate256 + Sample Rate44100 + Normalization1100 + Artwork Count1 + Sort AlbumArt Of Solo Fingerpicking + Persistent ID4B6E862EB7261B36 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/The%20Art%20Of%20Solo%20Fingerpicking/23%20Exs.%2040a-C.m4a + File Folder Count4 + Library Folder Count1 + + 7060 + + Track ID7060 + NameExs. 41a-C + ArtistMark Hanson + AlbumThe Art Of Solo Fingerpicking + GenreUnclassifiable + KindAAC audio file + Size2694147 + Total Time70986 + Disc Number1 + Disc Count1 + Track Number24 + Track Count45 + Year1988 + Date Modified2009-11-30T10:10:23Z + Date Added2009-11-30T09:44:05Z + Bit Rate256 + Sample Rate44100 + Normalization977 + Artwork Count1 + Sort AlbumArt Of Solo Fingerpicking + Persistent ID10AF702EAC79F734 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/The%20Art%20Of%20Solo%20Fingerpicking/24%20Exs.%2041a-C.m4a + File Folder Count4 + Library Folder Count1 + + 7062 + + Track ID7062 + Name"Bill Bailey" Slowly + ArtistMark Hanson + AlbumThe Art Of Solo Fingerpicking + GenreUnclassifiable + KindAAC audio file + Size3366326 + Total Time88866 + Disc Number1 + Disc Count1 + Track Number25 + Track Count45 + Year1988 + Date Modified2009-11-30T10:10:24Z + Date Added2009-11-30T09:44:09Z + Bit Rate256 + Sample Rate44100 + Normalization1180 + Artwork Count1 + Sort AlbumArt Of Solo Fingerpicking + Persistent ID605CB29676FE67B7 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/The%20Art%20Of%20Solo%20Fingerpicking/25%20_Bill%20Bailey_%20Slowly.m4a + File Folder Count4 + Library Folder Count1 + + 7064 + + Track ID7064 + Name"Dedicated To Mississippi John Hurt" + ArtistMark Hanson + AlbumThe Art Of Solo Fingerpicking + GenreUnclassifiable + KindAAC audio file + Size3831967 + Total Time101000 + Disc Number1 + Disc Count1 + Track Number26 + Track Count45 + Year1988 + Date Modified2009-11-30T10:10:24Z + Date Added2009-11-30T09:44:14Z + Bit Rate256 + Sample Rate44100 + Normalization1170 + Artwork Count1 + Sort AlbumArt Of Solo Fingerpicking + Persistent IDBDD3E6979450227F + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/The%20Art%20Of%20Solo%20Fingerpicking/26%20_Dedicated%20To%20Mississippi%20John%20Hurt_.m4a + File Folder Count4 + Library Folder Count1 + + 7066 + + Track ID7066 + NameExs. 46a-B + ArtistMark Hanson + AlbumThe Art Of Solo Fingerpicking + GenreUnclassifiable + KindAAC audio file + Size1057189 + Total Time27600 + Disc Number1 + Disc Count1 + Track Number27 + Track Count45 + Year1988 + Date Modified2009-11-30T10:10:24Z + Date Added2009-11-30T09:44:20Z + Bit Rate256 + Sample Rate44100 + Normalization995 + Artwork Count1 + Sort AlbumArt Of Solo Fingerpicking + Persistent ID446F5DB636DAE789 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/The%20Art%20Of%20Solo%20Fingerpicking/27%20Exs.%2046a-B.m4a + File Folder Count4 + Library Folder Count1 + + 7068 + + Track ID7068 + Name"Golden Valley" + ArtistMark Hanson + AlbumThe Art Of Solo Fingerpicking + GenreUnclassifiable + KindAAC audio file + Size8216173 + Total Time216773 + Disc Number1 + Disc Count1 + Track Number28 + Track Count45 + Year1988 + Date Modified2009-11-30T10:10:24Z + Date Added2009-11-30T09:44:22Z + Bit Rate256 + Sample Rate44100 + Normalization1254 + Artwork Count1 + Sort AlbumArt Of Solo Fingerpicking + Persistent IDD4B41A71CEBC07E5 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/The%20Art%20Of%20Solo%20Fingerpicking/28%20_Golden%20Valley_.m4a + File Folder Count4 + Library Folder Count1 + + 7070 + + Track ID7070 + Name"Flier" Slowly + ArtistMark Hanson + AlbumThe Art Of Solo Fingerpicking + GenreUnclassifiable + KindAAC audio file + Size7094439 + Total Time187026 + Disc Number1 + Disc Count1 + Track Number29 + Track Count45 + Year1988 + Date Modified2009-11-30T10:10:25Z + Date Added2009-11-30T09:44:34Z + Bit Rate256 + Sample Rate44100 + Normalization1250 + Artwork Count1 + Sort AlbumArt Of Solo Fingerpicking + Persistent ID52A2F0C58E2F6A09 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/The%20Art%20Of%20Solo%20Fingerpicking/29%20_Flier_%20Slowly.m4a + File Folder Count4 + Library Folder Count1 + + 7072 + + Track ID7072 + NameExs. 58a-C + ArtistMark Hanson + AlbumThe Art Of Solo Fingerpicking + GenreUnclassifiable + KindAAC audio file + Size1786767 + Total Time46506 + Disc Number1 + Disc Count1 + Track Number30 + Track Count45 + Year1988 + Date Modified2009-11-30T10:10:25Z + Date Added2009-11-30T09:44:44Z + Bit Rate256 + Sample Rate44100 + Normalization1049 + Artwork Count1 + Sort AlbumArt Of Solo Fingerpicking + Persistent ID6CBA08EB3A353DFF + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/The%20Art%20Of%20Solo%20Fingerpicking/30%20Exs.%2058a-C.m4a + File Folder Count4 + Library Folder Count1 + + 7074 + + Track ID7074 + NameEx. 59A + ArtistMark Hanson + AlbumThe Art Of Solo Fingerpicking + GenreUnclassifiable + KindAAC audio file + Size810327 + Total Time21000 + Disc Number1 + Disc Count1 + Track Number31 + Track Count45 + Year1988 + Date Modified2009-11-30T10:10:25Z + Date Added2009-11-30T09:44:47Z + Bit Rate256 + Sample Rate44100 + Normalization1117 + Artwork Count1 + Sort AlbumArt Of Solo Fingerpicking + Persistent ID8B9512E0DEF4461F + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/The%20Art%20Of%20Solo%20Fingerpicking/31%20Ex.%2059A.m4a + File Folder Count4 + Library Folder Count1 + + 7076 + + Track ID7076 + Name"Good Time Blues" + ArtistMark Hanson + AlbumThe Art Of Solo Fingerpicking + GenreUnclassifiable + KindAAC audio file + Size5497350 + Total Time145506 + Disc Number1 + Disc Count1 + Track Number32 + Track Count45 + Year1988 + Date Modified2009-11-30T10:10:25Z + Date Added2009-11-30T09:44:48Z + Bit Rate256 + Sample Rate44100 + Normalization1142 + Artwork Count1 + Sort AlbumArt Of Solo Fingerpicking + Persistent ID2D84F43AB06EF9E0 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/The%20Art%20Of%20Solo%20Fingerpicking/32%20_Good%20Time%20Blues_.m4a + File Folder Count4 + Library Folder Count1 + + 7078 + + Track ID7078 + NameExs. 62a-B & 63A + ArtistMark Hanson + AlbumThe Art Of Solo Fingerpicking + GenreUnclassifiable + KindAAC audio file + Size2334003 + Total Time61186 + Disc Number1 + Disc Count1 + Track Number33 + Track Count45 + Year1988 + Date Modified2009-11-30T10:10:25Z + Date Added2009-11-30T09:44:56Z + Bit Rate256 + Sample Rate44100 + Normalization1212 + Artwork Count1 + Sort AlbumArt Of Solo Fingerpicking + Persistent ID0D94C70673922EDD + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/The%20Art%20Of%20Solo%20Fingerpicking/33%20Exs.%2062a-B%20&%2063A.m4a + File Folder Count4 + Library Folder Count1 + + 7080 + + Track ID7080 + NameEx. 64A + ArtistMark Hanson + AlbumThe Art Of Solo Fingerpicking + GenreUnclassifiable + KindAAC audio file + Size2058563 + Total Time53986 + Disc Number1 + Disc Count1 + Track Number34 + Track Count45 + Year1988 + Date Modified2009-11-30T10:10:25Z + Date Added2009-11-30T09:44:59Z + Bit Rate256 + Sample Rate44100 + Normalization1117 + Artwork Count1 + Sort AlbumArt Of Solo Fingerpicking + Persistent ID5E35702E6956C74D + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/The%20Art%20Of%20Solo%20Fingerpicking/34%20Ex.%2064A.m4a + File Folder Count4 + Library Folder Count1 + + 7082 + + Track ID7082 + NameExs. 70a-B + ArtistMark Hanson + AlbumThe Art Of Solo Fingerpicking + GenreUnclassifiable + KindAAC audio file + Size2424825 + Total Time63280 + Disc Number1 + Disc Count1 + Track Number35 + Track Count45 + Year1988 + Date Modified2009-11-30T10:10:25Z + Date Added2009-11-30T09:45:02Z + Bit Rate256 + Sample Rate44100 + Normalization806 + Artwork Count1 + Sort AlbumArt Of Solo Fingerpicking + Persistent ID148267506836C0AA + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/The%20Art%20Of%20Solo%20Fingerpicking/35%20Exs.%2070a-B.m4a + File Folder Count4 + Library Folder Count1 + + 7084 + + Track ID7084 + NameEx. 71A + ArtistMark Hanson + AlbumThe Art Of Solo Fingerpicking + GenreUnclassifiable + KindAAC audio file + Size976241 + Total Time23546 + Disc Number1 + Disc Count1 + Track Number36 + Track Count45 + Year1988 + Date Modified2009-11-30T10:10:25Z + Date Added2009-11-30T09:45:06Z + Bit Rate256 + Sample Rate44100 + Normalization679 + Artwork Count1 + Sort AlbumArt Of Solo Fingerpicking + Persistent ID07FE8DEFDE287CD3 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/The%20Art%20Of%20Solo%20Fingerpicking/36%20Ex.%2071A.m4a + File Folder Count4 + Library Folder Count1 + + 7086 + + Track ID7086 + Name"Strawberry Curl" Slowly + ArtistMark Hanson + AlbumThe Art Of Solo Fingerpicking + GenreUnclassifiable + KindAAC audio file + Size5604135 + Total Time167106 + Disc Number1 + Disc Count1 + Track Number37 + Track Count45 + Year1988 + Date Modified2009-11-30T10:10:26Z + Date Added2009-11-30T09:45:07Z + Bit Rate256 + Sample Rate44100 + Normalization1257 + Artwork Count1 + Sort AlbumArt Of Solo Fingerpicking + Persistent ID5088C77AA4E0F3EE + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/The%20Art%20Of%20Solo%20Fingerpicking/37%20_Strawberry%20Curl_%20Slowly.m4a + File Folder Count4 + Library Folder Count1 + + 7088 + + Track ID7088 + Name"Red, White & Blue Rag" + ArtistMark Hanson + AlbumThe Art Of Solo Fingerpicking + GenreUnclassifiable + KindAAC audio file + Size3915757 + Total Time103120 + Disc Number1 + Disc Count1 + Track Number38 + Track Count45 + Year1988 + Date Modified2009-11-30T10:10:26Z + Date Added2009-11-30T09:45:16Z + Bit Rate256 + Sample Rate44100 + Normalization1157 + Artwork Count1 + Sort AlbumArt Of Solo Fingerpicking + Persistent ID5B4D0BAEFBEE3D1E + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/The%20Art%20Of%20Solo%20Fingerpicking/38%20_Red,%20White%20&%20Blue%20Rag_.m4a + File Folder Count4 + Library Folder Count1 + + 7090 + + Track ID7090 + Name"Devil's Dream" + ArtistMark Hanson + AlbumThe Art Of Solo Fingerpicking + GenreUnclassifiable + KindAAC audio file + Size3165217 + Total Time83400 + Disc Number1 + Disc Count1 + Track Number39 + Track Count45 + Year1988 + Date Modified2009-11-30T10:10:26Z + Date Added2009-11-30T09:45:21Z + Bit Rate256 + Sample Rate44100 + Normalization1218 + Artwork Count1 + Sort AlbumArt Of Solo Fingerpicking + Persistent ID7CF20FA9FD981D3F + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/The%20Art%20Of%20Solo%20Fingerpicking/39%20_Devil's%20Dream_.m4a + File Folder Count4 + Library Folder Count1 + + 7092 + + Track ID7092 + Name"Freight Train" + ArtistMark Hanson + AlbumThe Art Of Solo Fingerpicking + GenreUnclassifiable + KindAAC audio file + Size2491581 + Total Time65346 + Disc Number1 + Disc Count1 + Track Number40 + Track Count45 + Year1988 + Date Modified2009-11-30T10:10:26Z + Date Added2009-11-30T09:45:52Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3342697162 + Play Date UTC2009-12-03T09:29:22Z + Normalization1205 + Artwork Count1 + Sort AlbumArt Of Solo Fingerpicking + Persistent ID7AB56FB8C2325FA7 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/The%20Art%20Of%20Solo%20Fingerpicking/40%20_Freight%20Train_.m4a + File Folder Count4 + Library Folder Count1 + + 7094 + + Track ID7094 + Name"Fishin' Blues" + ArtistMark Hanson + AlbumThe Art Of Solo Fingerpicking + GenreUnclassifiable + KindAAC audio file + Size1758645 + Total Time44026 + Disc Number1 + Disc Count1 + Track Number41 + Track Count45 + Year1988 + Date Modified2009-11-30T10:26:07Z + Date Added2009-11-30T09:49:13Z + Bit Rate256 + Sample Rate44100 + Play Count4 + Play Date3342702820 + Play Date UTC2009-12-03T11:03:40Z + Normalization1584 + Artwork Count2 + Sort AlbumArt Of Solo Fingerpicking + Persistent ID8A2BE45E58C0B451 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/The%20Art%20Of%20Solo%20Fingerpicking/41%20_Fishin'%20Blues_.m4a + File Folder Count4 + Library Folder Count1 + + 7096 + + Track ID7096 + Name"White House Blues" + ArtistMark Hanson + AlbumThe Art Of Solo Fingerpicking + GenreUnclassifiable + KindAAC audio file + Size10984152 + Total Time286426 + Disc Number1 + Disc Count1 + Track Number42 + Track Count45 + Year1988 + Date Modified2009-11-30T10:26:07Z + Date Added2009-11-30T09:56:41Z + Bit Rate256 + Sample Rate44100 + Play Count4 + Play Date3342697492 + Play Date UTC2009-12-03T09:34:52Z + Normalization1088 + Artwork Count2 + Sort AlbumArt Of Solo Fingerpicking + Persistent IDA8173A26A13E0EB9 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/The%20Art%20Of%20Solo%20Fingerpicking/42%20_White%20House%20Blues_.m4a + File Folder Count4 + Library Folder Count1 + + 7098 + + Track ID7098 + Name"Bill Bailey" + ArtistMark Hanson + AlbumThe Art Of Solo Fingerpicking + GenreUnclassifiable + KindAAC audio file + Size4547520 + Total Time117066 + Disc Number1 + Disc Count1 + Track Number43 + Track Count45 + Year1988 + Date Modified2009-11-30T10:26:06Z + Date Added2009-11-30T10:00:22Z + Bit Rate256 + Sample Rate44100 + Play Count3 + Play Date3342697609 + Play Date UTC2009-12-03T09:36:49Z + Normalization1253 + Artwork Count2 + Sort AlbumArt Of Solo Fingerpicking + Persistent IDF2B0B20D0320294B + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/The%20Art%20Of%20Solo%20Fingerpicking/43%20_Bill%20Bailey_.m4a + File Folder Count4 + Library Folder Count1 + + 7100 + + Track ID7100 + Name"Flier" + ArtistMark Hanson + AlbumThe Art Of Solo Fingerpicking + GenreUnclassifiable + KindAAC audio file + Size6737048 + Total Time175666 + Disc Number1 + Disc Count1 + Track Number44 + Track Count45 + Year1988 + Date Modified2009-11-30T10:26:06Z + Date Added2009-11-30T10:04:22Z + Bit Rate256 + Sample Rate44100 + Play Count3 + Play Date3342697785 + Play Date UTC2009-12-03T09:39:45Z + Normalization1120 + Artwork Count2 + Sort AlbumArt Of Solo Fingerpicking + Persistent ID2675EA130F87D386 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/The%20Art%20Of%20Solo%20Fingerpicking/44%20_Flier_.m4a + File Folder Count4 + Library Folder Count1 + + 7102 + + Track ID7102 + Name"Twin Sisters" + ArtistMark Hanson + AlbumThe Art Of Solo Fingerpicking + GenreUnclassifiable + KindAAC audio file + Size7858976 + Total Time207413 + Disc Number1 + Disc Count1 + Track Number45 + Track Count45 + Year1988 + Date Modified2009-11-30T10:26:05Z + Date Added2009-11-30T10:08:03Z + Bit Rate256 + Sample Rate44100 + Play Count3 + Play Date3342697990 + Play Date UTC2009-12-03T09:43:10Z + Normalization1206 + Artwork Count2 + Sort AlbumArt Of Solo Fingerpicking + Persistent IDE564F815146958CF + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/The%20Art%20Of%20Solo%20Fingerpicking/45%20_Twin%20Sisters_.m4a + File Folder Count4 + Library Folder Count1 + + 7106 + + Track ID7106 + NameDt + Artistanupam shadhakar + Composeranupam shadhakar/anupam shadhakar + AlbumDream Theory + GenreClassical + KindAAC audio file + Size32972152 + Total Time1161906 + Track Number1 + Track Count3 + Date Modified2009-12-04T15:03:56Z + Date Added2009-12-04T15:01:01Z + Bit Rate256 + Sample Rate44100 + Normalization1947 + Persistent ID44A3A7DB2188EE5F + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/anupam%20shadhakar/Dream%20Theory/01%20Dt.m4a + File Folder Count4 + Library Folder Count1 + + 7108 + + Track ID7108 + NameDt + Artistanupam shadhakar + Composeranupam shadhakar/anupam shadhakar + AlbumDream Theory + GenreClassical + KindAAC audio file + Size45479075 + Total Time1406373 + Track Number2 + Track Count3 + Date Modified2009-12-04T15:06:32Z + Date Added2009-12-04T15:03:58Z + Bit Rate256 + Sample Rate44100 + Normalization1443 + Persistent ID1337F2227B5C8439 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/anupam%20shadhakar/Dream%20Theory/02%20Dt.m4a + File Folder Count4 + Library Folder Count1 + + 7110 + + Track ID7110 + NameDt + Artistanupam shadhakar + Composeranupam shadhakar/anupam shadhakar + AlbumDream Theory + GenreClassical + KindAAC audio file + Size50581284 + Total Time1541573 + Track Number3 + Track Count3 + Date Modified2009-12-04T15:08:49Z + Date Added2009-12-04T15:06:33Z + Bit Rate256 + Sample Rate44100 + Normalization2367 + Persistent ID2D7594BD1197C8DC + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/anupam%20shadhakar/Dream%20Theory/03%20Dt.m4a + File Folder Count4 + Library Folder Count1 + + 7112 + + Track ID7112 + NameIntroduction + ArtistEar Training Course + AlbumThe Complete Idiot's Guide To Music Theory + GenreJazz + KindAAC audio file + Size1404571 + Total Time56693 + Disc Number1 + Disc Count1 + Track Number1 + Track Count46 + Date Modified2009-12-06T02:58:13Z + Date Added2009-12-05T16:46:21Z + Bit Rate256 + Sample Rate44100 + Normalization88 + Artwork Count1 + Sort AlbumComplete Idiot's Guide To Music Theory + Persistent ID9C76BCDB79A24FDA + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ear%20Training%20Course/The%20Complete%20Idiot's%20Guide%20To%20Music%20Theory/01%20Introduction.m4a + File Folder Count4 + Library Folder Count1 + + 7114 + + Track ID7114 + NameLesson One : Pitches + ArtistEar Training Course + AlbumThe Complete Idiot's Guide To Music Theory + GenreJazz + KindAAC audio file + Size1425240 + Total Time57240 + Disc Number1 + Disc Count1 + Track Number2 + Track Count46 + Date Modified2009-12-06T02:58:13Z + Date Added2009-12-05T16:46:33Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3343033616 + Play Date UTC2009-12-07T06:56:56Z + Normalization59 + Artwork Count1 + Sort AlbumComplete Idiot's Guide To Music Theory + Persistent IDFD4427919F98D4CE + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ear%20Training%20Course/The%20Complete%20Idiot's%20Guide%20To%20Music%20Theory/02%20Lesson%20One%20_%20Pitches.m4a + File Folder Count4 + Library Folder Count1 + + 7116 + + Track ID7116 + NamePitch Exercises 1-5 + ArtistEar Training Course + AlbumThe Complete Idiot's Guide To Music Theory + GenreJazz + KindAAC audio file + Size1503259 + Total Time80880 + Disc Number1 + Disc Count1 + Track Number3 + Track Count46 + Date Modified2009-12-06T02:58:13Z + Date Added2009-12-05T16:46:45Z + Bit Rate256 + Sample Rate44100 + Normalization368 + Artwork Count1 + Sort AlbumComplete Idiot's Guide To Music Theory + Persistent ID7963445845F85FBC + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ear%20Training%20Course/The%20Complete%20Idiot's%20Guide%20To%20Music%20Theory/03%20Pitch%20Exercises%201-5.m4a + File Folder Count4 + Library Folder Count1 + + 7118 + + Track ID7118 + NamePitch Exercises 6-10 + ArtistEar Training Course + AlbumThe Complete Idiot's Guide To Music Theory + GenreJazz + KindAAC audio file + Size925987 + Total Time65506 + Disc Number1 + Disc Count1 + Track Number4 + Track Count46 + Date Modified2009-12-06T02:58:13Z + Date Added2009-12-05T16:47:00Z + Bit Rate256 + Sample Rate44100 + Normalization495 + Artwork Count1 + Sort AlbumComplete Idiot's Guide To Music Theory + Persistent ID517EDEC5FC1D4050 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ear%20Training%20Course/The%20Complete%20Idiot's%20Guide%20To%20Music%20Theory/04%20Pitch%20Exercises%206-10.m4a + File Folder Count4 + Library Folder Count1 + + 7120 + + Track ID7120 + NamePitch Exercises 11-15 + ArtistEar Training Course + AlbumThe Complete Idiot's Guide To Music Theory + GenreJazz + KindAAC audio file + Size936059 + Total Time61880 + Disc Number1 + Disc Count1 + Track Number5 + Track Count46 + Date Modified2009-12-06T02:58:13Z + Date Added2009-12-05T16:47:12Z + Bit Rate256 + Sample Rate44100 + Normalization368 + Artwork Count1 + Sort AlbumComplete Idiot's Guide To Music Theory + Persistent ID83E556AC03219CB5 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ear%20Training%20Course/The%20Complete%20Idiot's%20Guide%20To%20Music%20Theory/05%20Pitch%20Exercises%2011-15.m4a + File Folder Count4 + Library Folder Count1 + + 7122 + + Track ID7122 + NamePitch Exercises 16-20 + ArtistEar Training Course + AlbumThe Complete Idiot's Guide To Music Theory + GenreJazz + KindAAC audio file + Size972015 + Total Time61360 + Disc Number1 + Disc Count1 + Track Number6 + Track Count46 + Date Modified2009-12-06T02:58:13Z + Date Added2009-12-05T16:47:24Z + Bit Rate256 + Sample Rate44100 + Normalization404 + Artwork Count1 + Sort AlbumComplete Idiot's Guide To Music Theory + Persistent ID15CBACCA6B042DE1 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ear%20Training%20Course/The%20Complete%20Idiot's%20Guide%20To%20Music%20Theory/06%20Pitch%20Exercises%2016-20.m4a + File Folder Count4 + Library Folder Count1 + + 7124 + + Track ID7124 + NamePitch Exercsies 21-25 + ArtistEar Training Course + AlbumThe Complete Idiot's Guide To Music Theory + GenreJazz + KindAAC audio file + Size1236107 + Total Time67013 + Disc Number1 + Disc Count1 + Track Number7 + Track Count46 + Date Modified2009-12-06T02:58:13Z + Date Added2009-12-05T16:47:35Z + Bit Rate256 + Sample Rate44100 + Normalization242 + Artwork Count1 + Sort AlbumComplete Idiot's Guide To Music Theory + Persistent IDFACAE115F0E1B45E + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ear%20Training%20Course/The%20Complete%20Idiot's%20Guide%20To%20Music%20Theory/07%20Pitch%20Exercsies%2021-25.m4a + File Folder Count4 + Library Folder Count1 + + 7126 + + Track ID7126 + NamePitch Exercises 26-30 + ArtistEar Training Course + AlbumThe Complete Idiot's Guide To Music Theory + GenreJazz + KindAAC audio file + Size1047900 + Total Time62386 + Disc Number1 + Disc Count1 + Track Number8 + Track Count46 + Date Modified2009-12-06T02:58:13Z + Date Added2009-12-05T16:47:47Z + Bit Rate256 + Sample Rate44100 + Normalization280 + Artwork Count1 + Sort AlbumComplete Idiot's Guide To Music Theory + Persistent ID020D3ECC47EABEC5 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ear%20Training%20Course/The%20Complete%20Idiot's%20Guide%20To%20Music%20Theory/08%20Pitch%20Exercises%2026-30.m4a + File Folder Count4 + Library Folder Count1 + + 7128 + + Track ID7128 + NamePitch Exercises 31-35 + ArtistEar Training Course + AlbumThe Complete Idiot's Guide To Music Theory + GenreJazz + KindAAC audio file + Size1071140 + Total Time60493 + Disc Number1 + Disc Count1 + Track Number9 + Track Count46 + Date Modified2009-12-06T02:58:13Z + Date Added2009-12-05T16:47:58Z + Bit Rate256 + Sample Rate44100 + Skip Count1 + Skip Date2012-08-17T05:48:48Z + Normalization282 + Artwork Count1 + Sort AlbumComplete Idiot's Guide To Music Theory + Persistent ID39C0075F8A4C46B4 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ear%20Training%20Course/The%20Complete%20Idiot's%20Guide%20To%20Music%20Theory/09%20Pitch%20Exercises%2031-35.m4a + File Folder Count4 + Library Folder Count1 + + 7130 + + Track ID7130 + NamePitch Exercises 36-40 + ArtistEar Training Course + AlbumThe Complete Idiot's Guide To Music Theory + GenreJazz + KindAAC audio file + Size1078987 + Total Time61053 + Disc Number1 + Disc Count1 + Track Number10 + Track Count46 + Date Modified2009-12-06T02:58:13Z + Date Added2009-12-05T16:48:08Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3428047189 + Play Date UTC2012-08-17T05:49:49Z + Normalization261 + Artwork Count1 + Sort AlbumComplete Idiot's Guide To Music Theory + Persistent ID2F987FF4D6625ED1 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ear%20Training%20Course/The%20Complete%20Idiot's%20Guide%20To%20Music%20Theory/10%20Pitch%20Exercises%2036-40.m4a + File Folder Count4 + Library Folder Count1 + + 7132 + + Track ID7132 + NameLesson Two Intervals + ArtistEar Training Course + AlbumThe Complete Idiot's Guide To Music Theory + GenreJazz + KindAAC audio file + Size5656343 + Total Time212706 + Disc Number1 + Disc Count1 + Track Number11 + Track Count46 + Date Modified2009-12-06T02:58:13Z + Date Added2009-12-05T16:48:18Z + Bit Rate256 + Sample Rate44100 + Normalization432 + Artwork Count1 + Sort AlbumComplete Idiot's Guide To Music Theory + Persistent ID7D966EC9C8B8A114 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ear%20Training%20Course/The%20Complete%20Idiot's%20Guide%20To%20Music%20Theory/11%20Lesson%20Two%20Intervals.m4a + File Folder Count4 + Library Folder Count1 + + 7134 + + Track ID7134 + NameInterval Exercises 1-5 + ArtistEar Training Course + AlbumThe Complete Idiot's Guide To Music Theory + GenreJazz + KindAAC audio file + Size1423109 + Total Time72426 + Disc Number1 + Disc Count1 + Track Number12 + Track Count46 + Date Modified2009-12-06T02:58:12Z + Date Added2009-12-05T16:48:50Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3428047262 + Play Date UTC2012-08-17T05:51:02Z + Normalization451 + Artwork Count1 + Sort AlbumComplete Idiot's Guide To Music Theory + Persistent ID192C9BF1D6F25819 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ear%20Training%20Course/The%20Complete%20Idiot's%20Guide%20To%20Music%20Theory/12%20Interval%20Exercises%201-5.m4a + File Folder Count4 + Library Folder Count1 + + 7136 + + Track ID7136 + NameInterval Exercises 6-10 + ArtistEar Training Course + AlbumThe Complete Idiot's Guide To Music Theory + GenreJazz + KindAAC audio file + Size1102988 + Total Time61946 + Disc Number1 + Disc Count1 + Track Number13 + Track Count46 + Date Modified2009-12-06T02:58:12Z + Date Added2009-12-05T16:49:01Z + Bit Rate256 + Sample Rate44100 + Normalization462 + Artwork Count1 + Sort AlbumComplete Idiot's Guide To Music Theory + Persistent IDBCC1D04E8422C859 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ear%20Training%20Course/The%20Complete%20Idiot's%20Guide%20To%20Music%20Theory/13%20Interval%20Exercises%206-10.m4a + File Folder Count4 + Library Folder Count1 + + 7138 + + Track ID7138 + NameInterval Exercises 11-15 + ArtistEar Training Course + AlbumThe Complete Idiot's Guide To Music Theory + GenreJazz + KindAAC audio file + Size1102164 + Total Time61746 + Disc Number1 + Disc Count1 + Track Number14 + Track Count46 + Date Modified2009-12-06T02:58:12Z + Date Added2009-12-05T16:49:11Z + Bit Rate256 + Sample Rate44100 + Normalization426 + Artwork Count1 + Sort AlbumComplete Idiot's Guide To Music Theory + Persistent ID4DED3D31396739B2 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ear%20Training%20Course/The%20Complete%20Idiot's%20Guide%20To%20Music%20Theory/14%20Interval%20Exercises%2011-15.m4a + File Folder Count4 + Library Folder Count1 + + 7140 + + Track ID7140 + NameInterval Exercises 16-20 + ArtistEar Training Course + AlbumThe Complete Idiot's Guide To Music Theory + GenreJazz + KindAAC audio file + Size1069099 + Total Time62493 + Disc Number1 + Disc Count1 + Track Number15 + Track Count46 + Date Modified2009-12-06T02:58:12Z + Date Added2009-12-05T16:49:20Z + Bit Rate256 + Sample Rate44100 + Normalization381 + Artwork Count1 + Sort AlbumComplete Idiot's Guide To Music Theory + Persistent ID8224CC25283D7F41 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ear%20Training%20Course/The%20Complete%20Idiot's%20Guide%20To%20Music%20Theory/15%20Interval%20Exercises%2016-20.m4a + File Folder Count4 + Library Folder Count1 + + 7142 + + Track ID7142 + NameInterval Exercises 21-25 + ArtistEar Training Course + AlbumThe Complete Idiot's Guide To Music Theory + GenreJazz + KindAAC audio file + Size1267170 + Total Time66946 + Disc Number1 + Disc Count1 + Track Number16 + Track Count46 + Date Modified2009-12-06T02:58:12Z + Date Added2009-12-05T16:49:29Z + Bit Rate256 + Sample Rate44100 + Normalization366 + Artwork Count1 + Sort AlbumComplete Idiot's Guide To Music Theory + Persistent IDCB3AA72A74F0C9E1 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ear%20Training%20Course/The%20Complete%20Idiot's%20Guide%20To%20Music%20Theory/16%20Interval%20Exercises%2021-25.m4a + File Folder Count4 + Library Folder Count1 + + 7144 + + Track ID7144 + NameInterval Exercises 26-30 + ArtistEar Training Course + AlbumThe Complete Idiot's Guide To Music Theory + GenreJazz + KindAAC audio file + Size1110680 + Total Time60760 + Disc Number1 + Disc Count1 + Track Number17 + Track Count46 + Date Modified2009-12-06T02:58:12Z + Date Added2009-12-05T16:49:39Z + Bit Rate256 + Sample Rate44100 + Normalization391 + Artwork Count1 + Sort AlbumComplete Idiot's Guide To Music Theory + Persistent ID7EE89C566C58E33B + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ear%20Training%20Course/The%20Complete%20Idiot's%20Guide%20To%20Music%20Theory/17%20Interval%20Exercises%2026-30.m4a + File Folder Count4 + Library Folder Count1 + + 7146 + + Track ID7146 + NameInterval Exercises 31-35 + ArtistEar Training Course + AlbumThe Complete Idiot's Guide To Music Theory + GenreJazz + KindAAC audio file + Size1151025 + Total Time59573 + Disc Number1 + Disc Count1 + Track Number18 + Track Count46 + Date Modified2009-12-06T02:58:12Z + Date Added2009-12-05T16:49:48Z + Bit Rate256 + Sample Rate44100 + Normalization450 + Artwork Count1 + Sort AlbumComplete Idiot's Guide To Music Theory + Persistent ID26AEC00A96A28C40 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ear%20Training%20Course/The%20Complete%20Idiot's%20Guide%20To%20Music%20Theory/18%20Interval%20Exercises%2031-35.m4a + File Folder Count4 + Library Folder Count1 + + 7148 + + Track ID7148 + NameInterval Exercises 36-40 + ArtistEar Training Course + AlbumThe Complete Idiot's Guide To Music Theory + GenreJazz + KindAAC audio file + Size1136675 + Total Time59813 + Disc Number1 + Disc Count1 + Track Number19 + Track Count46 + Date Modified2009-12-06T02:58:12Z + Date Added2009-12-05T16:49:56Z + Bit Rate256 + Sample Rate44100 + Normalization450 + Artwork Count1 + Sort AlbumComplete Idiot's Guide To Music Theory + Persistent ID713A664CCB577C88 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ear%20Training%20Course/The%20Complete%20Idiot's%20Guide%20To%20Music%20Theory/19%20Interval%20Exercises%2036-40.m4a + File Folder Count4 + Library Folder Count1 + + 7150 + + Track ID7150 + NameInterval Exercises 41-45 + ArtistEar Training Course + AlbumThe Complete Idiot's Guide To Music Theory + GenreJazz + KindAAC audio file + Size1487453 + Total Time73813 + Disc Number1 + Disc Count1 + Track Number20 + Track Count46 + Date Modified2009-12-06T02:58:12Z + Date Added2009-12-05T16:50:05Z + Bit Rate256 + Sample Rate44100 + Normalization402 + Artwork Count1 + Sort AlbumComplete Idiot's Guide To Music Theory + Persistent IDE9366ACCE9C17095 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ear%20Training%20Course/The%20Complete%20Idiot's%20Guide%20To%20Music%20Theory/20%20Interval%20Exercises%2041-45.m4a + File Folder Count4 + Library Folder Count1 + + 7152 + + Track ID7152 + NameInterval Exercises 46-50 + ArtistEar Training Course + AlbumThe Complete Idiot's Guide To Music Theory + GenreJazz + KindAAC audio file + Size1261633 + Total Time63946 + Disc Number1 + Disc Count1 + Track Number21 + Track Count46 + Date Modified2009-12-06T02:58:12Z + Date Added2009-12-05T16:50:15Z + Bit Rate256 + Sample Rate44100 + Normalization450 + Artwork Count1 + Sort AlbumComplete Idiot's Guide To Music Theory + Persistent ID152879FE7F053C9B + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ear%20Training%20Course/The%20Complete%20Idiot's%20Guide%20To%20Music%20Theory/21%20Interval%20Exercises%2046-50.m4a + File Folder Count4 + Library Folder Count1 + + 7154 + + Track ID7154 + NameInterval Exercises 51-55 + ArtistEar Training Course + AlbumThe Complete Idiot's Guide To Music Theory + GenreJazz + KindAAC audio file + Size1230642 + Total Time64760 + Disc Number1 + Disc Count1 + Track Number22 + Track Count46 + Date Modified2009-12-06T02:58:12Z + Date Added2009-12-05T16:50:23Z + Bit Rate256 + Sample Rate44100 + Normalization412 + Artwork Count1 + Sort AlbumComplete Idiot's Guide To Music Theory + Persistent IDF0C69639E83224CA + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ear%20Training%20Course/The%20Complete%20Idiot's%20Guide%20To%20Music%20Theory/22%20Interval%20Exercises%2051-55.m4a + File Folder Count4 + Library Folder Count1 + + 7156 + + Track ID7156 + NameInterval Exercises 56-60 + ArtistEar Training Course + AlbumThe Complete Idiot's Guide To Music Theory + GenreJazz + KindAAC audio file + Size1167944 + Total Time65040 + Disc Number1 + Disc Count1 + Track Number23 + Track Count46 + Date Modified2009-12-06T02:58:12Z + Date Added2009-12-05T16:50:32Z + Bit Rate256 + Sample Rate44100 + Normalization305 + Artwork Count1 + Sort AlbumComplete Idiot's Guide To Music Theory + Persistent IDB73ECA20870A249D + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ear%20Training%20Course/The%20Complete%20Idiot's%20Guide%20To%20Music%20Theory/23%20Interval%20Exercises%2056-60.m4a + File Folder Count4 + Library Folder Count1 + + 7158 + + Track ID7158 + NameLesson Three: Scales + ArtistEar Training Course + AlbumThe Complete Idiot's Guide To Music Theory + GenreJazz + KindAAC audio file + Size5748548 + Total Time214266 + Disc Number1 + Disc Count1 + Track Number24 + Track Count46 + Date Modified2009-12-06T02:58:12Z + Date Added2009-12-05T16:50:41Z + Bit Rate256 + Sample Rate44100 + Normalization431 + Artwork Count1 + Sort AlbumComplete Idiot's Guide To Music Theory + Persistent ID1A24E7E05C185C63 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ear%20Training%20Course/The%20Complete%20Idiot's%20Guide%20To%20Music%20Theory/24%20Lesson%20Three_%20Scales.m4a + File Folder Count4 + Library Folder Count1 + + 7160 + + Track ID7160 + NameScale Exercises 1-5 + ArtistEar Training Course + AlbumThe Complete Idiot's Guide To Music Theory + GenreJazz + KindAAC audio file + Size2691116 + Total Time121866 + Disc Number1 + Disc Count1 + Track Number25 + Track Count46 + Date Modified2009-12-06T02:58:11Z + Date Added2009-12-05T16:51:06Z + Bit Rate256 + Sample Rate44100 + Normalization529 + Artwork Count1 + Sort AlbumComplete Idiot's Guide To Music Theory + Persistent ID2A85D7BC009F2080 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ear%20Training%20Course/The%20Complete%20Idiot's%20Guide%20To%20Music%20Theory/25%20Scale%20Exercises%201-5.m4a + File Folder Count4 + Library Folder Count1 + + 7162 + + Track ID7162 + NameScale Exercises 6-10 + ArtistEar Training Course + AlbumThe Complete Idiot's Guide To Music Theory + GenreJazz + KindAAC audio file + Size2132404 + Total Time91653 + Disc Number1 + Disc Count1 + Track Number26 + Track Count46 + Date Modified2009-12-06T02:58:11Z + Date Added2009-12-05T16:51:21Z + Bit Rate256 + Sample Rate44100 + Normalization625 + Artwork Count1 + Sort AlbumComplete Idiot's Guide To Music Theory + Persistent IDF688E46776ACD373 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ear%20Training%20Course/The%20Complete%20Idiot's%20Guide%20To%20Music%20Theory/26%20Scale%20Exercises%206-10.m4a + File Folder Count4 + Library Folder Count1 + + 7164 + + Track ID7164 + NameLesson Four: Rhythms + ArtistEar Training Course + AlbumThe Complete Idiot's Guide To Music Theory + GenreJazz + KindAAC audio file + Size2925189 + Total Time115040 + Disc Number1 + Disc Count1 + Track Number27 + Track Count46 + Date Modified2009-12-06T02:58:11Z + Date Added2009-12-05T16:51:32Z + Bit Rate256 + Sample Rate44100 + Normalization57 + Artwork Count1 + Sort AlbumComplete Idiot's Guide To Music Theory + Persistent ID816FD529F987638D + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ear%20Training%20Course/The%20Complete%20Idiot's%20Guide%20To%20Music%20Theory/27%20Lesson%20Four_%20Rhythms.m4a + File Folder Count4 + Library Folder Count1 + + 7166 + + Track ID7166 + NameRhythm Exercises 1-5 + ArtistEar Training Course + AlbumThe Complete Idiot's Guide To Music Theory + GenreJazz + KindAAC audio file + Size2307529 + Total Time111986 + Disc Number1 + Disc Count1 + Track Number28 + Track Count46 + Date Modified2009-12-06T02:58:11Z + Date Added2009-12-05T16:51:45Z + Bit Rate256 + Sample Rate44100 + Normalization209 + Artwork Count1 + Sort AlbumComplete Idiot's Guide To Music Theory + Persistent ID3078C71A21C5216F + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ear%20Training%20Course/The%20Complete%20Idiot's%20Guide%20To%20Music%20Theory/28%20Rhythm%20Exercises%201-5.m4a + File Folder Count4 + Library Folder Count1 + + 7168 + + Track ID7168 + NameRhythm Exercises 6-10 + ArtistEar Training Course + AlbumThe Complete Idiot's Guide To Music Theory + GenreJazz + KindAAC audio file + Size1732266 + Total Time90426 + Disc Number1 + Disc Count1 + Track Number29 + Track Count46 + Date Modified2009-12-06T02:58:11Z + Date Added2009-12-05T16:51:58Z + Bit Rate256 + Sample Rate44100 + Normalization208 + Artwork Count1 + Sort AlbumComplete Idiot's Guide To Music Theory + Persistent ID5DBD23C870CFA38C + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ear%20Training%20Course/The%20Complete%20Idiot's%20Guide%20To%20Music%20Theory/29%20Rhythm%20Exercises%206-10.m4a + File Folder Count4 + Library Folder Count1 + + 7170 + + Track ID7170 + NameRhythm Exercises 11-15 + ArtistEar Training Course + AlbumThe Complete Idiot's Guide To Music Theory + GenreJazz + KindAAC audio file + Size1787288 + Total Time89960 + Disc Number1 + Disc Count1 + Track Number30 + Track Count46 + Date Modified2009-12-06T02:58:11Z + Date Added2009-12-05T16:52:08Z + Bit Rate256 + Sample Rate44100 + Normalization215 + Artwork Count1 + Sort AlbumComplete Idiot's Guide To Music Theory + Persistent ID9F6AC7A5C0C5B02B + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ear%20Training%20Course/The%20Complete%20Idiot's%20Guide%20To%20Music%20Theory/30%20Rhythm%20Exercises%2011-15.m4a + File Folder Count4 + Library Folder Count1 + + 7172 + + Track ID7172 + NameRhythm Exercises 16-20 + ArtistEar Training Course + AlbumThe Complete Idiot's Guide To Music Theory + GenreJazz + KindAAC audio file + Size1648062 + Total Time89213 + Disc Number1 + Disc Count1 + Track Number31 + Track Count46 + Date Modified2009-12-06T02:58:11Z + Date Added2009-12-05T16:52:18Z + Bit Rate256 + Sample Rate44100 + Normalization173 + Artwork Count1 + Sort AlbumComplete Idiot's Guide To Music Theory + Persistent ID9EC0DEF62034CE73 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ear%20Training%20Course/The%20Complete%20Idiot's%20Guide%20To%20Music%20Theory/31%20Rhythm%20Exercises%2016-20.m4a + File Folder Count4 + Library Folder Count1 + + 7174 + + Track ID7174 + NameRhythm Exercises 21-25 + ArtistEar Training Course + AlbumThe Complete Idiot's Guide To Music Theory + GenreJazz + KindAAC audio file + Size1855455 + Total Time89560 + Disc Number1 + Disc Count1 + Track Number32 + Track Count46 + Date Modified2009-12-06T02:58:10Z + Date Added2009-12-05T16:52:28Z + Bit Rate256 + Sample Rate44100 + Normalization255 + Artwork Count1 + Sort AlbumComplete Idiot's Guide To Music Theory + Persistent IDE4E6BC48A7CF469D + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ear%20Training%20Course/The%20Complete%20Idiot's%20Guide%20To%20Music%20Theory/32%20Rhythm%20Exercises%2021-25.m4a + File Folder Count4 + Library Folder Count1 + + 7176 + + Track ID7176 + NameRhythm Exercises 26-30 + ArtistEar Training Course + AlbumThe Complete Idiot's Guide To Music Theory + GenreJazz + KindAAC audio file + Size1843656 + Total Time89840 + Disc Number1 + Disc Count1 + Track Number33 + Track Count46 + Date Modified2009-12-06T02:58:10Z + Date Added2009-12-05T16:52:38Z + Bit Rate256 + Sample Rate44100 + Normalization285 + Artwork Count1 + Sort AlbumComplete Idiot's Guide To Music Theory + Persistent ID5FF36F72DD53E396 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ear%20Training%20Course/The%20Complete%20Idiot's%20Guide%20To%20Music%20Theory/33%20Rhythm%20Exercises%2026-30.m4a + File Folder Count4 + Library Folder Count1 + + 7178 + + Track ID7178 + NameRhythm Exercises 31-35 + ArtistEar Training Course + AlbumThe Complete Idiot's Guide To Music Theory + GenreJazz + KindAAC audio file + Size1858068 + Total Time88880 + Disc Number1 + Disc Count1 + Track Number34 + Track Count46 + Date Modified2009-12-06T02:58:10Z + Date Added2009-12-05T16:52:48Z + Bit Rate256 + Sample Rate44100 + Normalization233 + Artwork Count1 + Sort AlbumComplete Idiot's Guide To Music Theory + Persistent ID2080A61A14ACD929 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ear%20Training%20Course/The%20Complete%20Idiot's%20Guide%20To%20Music%20Theory/34%20Rhythm%20Exercises%2031-35.m4a + File Folder Count4 + Library Folder Count1 + + 7180 + + Track ID7180 + NameRhythm Exercises 36-40 + ArtistEar Training Course + AlbumThe Complete Idiot's Guide To Music Theory + GenreJazz + KindAAC audio file + Size1820230 + Total Time89586 + Disc Number1 + Disc Count1 + Track Number35 + Track Count46 + Date Modified2009-12-06T02:58:10Z + Date Added2009-12-05T16:52:57Z + Bit Rate256 + Sample Rate44100 + Normalization211 + Artwork Count1 + Sort AlbumComplete Idiot's Guide To Music Theory + Persistent ID6F16D7B6A6E747E4 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ear%20Training%20Course/The%20Complete%20Idiot's%20Guide%20To%20Music%20Theory/35%20Rhythm%20Exercises%2036-40.m4a + File Folder Count4 + Library Folder Count1 + + 7182 + + Track ID7182 + NameLesson Five: Melodies + ArtistEar Training Course + AlbumThe Complete Idiot's Guide To Music Theory + GenreJazz + KindAAC audio file + Size1245293 + Total Time50360 + Disc Number1 + Disc Count1 + Track Number36 + Track Count46 + Date Modified2009-12-06T02:58:10Z + Date Added2009-12-05T16:53:07Z + Bit Rate256 + Sample Rate44100 + Normalization48 + Artwork Count1 + Sort AlbumComplete Idiot's Guide To Music Theory + Persistent ID43D6CDC7BBADDDCA + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ear%20Training%20Course/The%20Complete%20Idiot's%20Guide%20To%20Music%20Theory/36%20Lesson%20Five_%20Melodies.m4a + File Folder Count4 + Library Folder Count1 + + 7184 + + Track ID7184 + NameMelody Exercises 1-5 + ArtistEar Training Course + AlbumThe Complete Idiot's Guide To Music Theory + GenreJazz + KindAAC audio file + Size2644718 + Total Time124960 + Disc Number1 + Disc Count1 + Track Number37 + Track Count46 + Date Modified2009-12-06T02:58:10Z + Date Added2009-12-05T16:53:13Z + Bit Rate256 + Sample Rate44100 + Normalization412 + Artwork Count1 + Sort AlbumComplete Idiot's Guide To Music Theory + Persistent ID2DC51B7EE78DFEE9 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ear%20Training%20Course/The%20Complete%20Idiot's%20Guide%20To%20Music%20Theory/37%20Melody%20Exercises%201-5.m4a + File Folder Count4 + Library Folder Count1 + + 7186 + + Track ID7186 + NameMelody Exercises 6-10 + ArtistEar Training Course + AlbumThe Complete Idiot's Guide To Music Theory + GenreJazz + KindAAC audio file + Size2016687 + Total Time94360 + Disc Number1 + Disc Count1 + Track Number38 + Track Count46 + Date Modified2009-12-06T02:58:10Z + Date Added2009-12-05T16:53:26Z + Bit Rate256 + Sample Rate44100 + Normalization515 + Artwork Count1 + Sort AlbumComplete Idiot's Guide To Music Theory + Persistent ID74E5DC907570637E + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ear%20Training%20Course/The%20Complete%20Idiot's%20Guide%20To%20Music%20Theory/38%20Melody%20Exercises%206-10.m4a + File Folder Count4 + Library Folder Count1 + + 7188 + + Track ID7188 + NameMelody Exercises 11-15 + ArtistEar Training Course + AlbumThe Complete Idiot's Guide To Music Theory + GenreJazz + KindAAC audio file + Size3237370 + Total Time142813 + Disc Number1 + Disc Count1 + Track Number39 + Track Count46 + Date Modified2009-12-06T02:58:10Z + Date Added2009-12-05T16:53:36Z + Bit Rate256 + Sample Rate44100 + Normalization450 + Artwork Count1 + Sort AlbumComplete Idiot's Guide To Music Theory + Persistent ID392E90ADB80A8C63 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ear%20Training%20Course/The%20Complete%20Idiot's%20Guide%20To%20Music%20Theory/39%20Melody%20Exercises%2011-15.m4a + File Folder Count4 + Library Folder Count1 + + 7190 + + Track ID7190 + NameMelody Exercises 16-20 + ArtistEar Training Course + AlbumThe Complete Idiot's Guide To Music Theory + GenreJazz + KindAAC audio file + Size2890323 + Total Time127053 + Disc Number1 + Disc Count1 + Track Number40 + Track Count46 + Date Modified2009-12-06T02:58:10Z + Date Added2009-12-05T16:53:50Z + Bit Rate256 + Sample Rate44100 + Normalization688 + Artwork Count1 + Sort AlbumComplete Idiot's Guide To Music Theory + Persistent ID807B1CD264000078 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ear%20Training%20Course/The%20Complete%20Idiot's%20Guide%20To%20Music%20Theory/40%20Melody%20Exercises%2016-20.m4a + File Folder Count4 + Library Folder Count1 + + 7192 + + Track ID7192 + NameLesson Six: Chords + ArtistEar Training Course + AlbumThe Complete Idiot's Guide To Music Theory + GenreJazz + KindAAC audio file + Size7551895 + Total Time284920 + Disc Number1 + Disc Count1 + Track Number41 + Track Count46 + Date Modified2009-12-06T02:58:09Z + Date Added2009-12-05T16:54:03Z + Bit Rate256 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Sort AlbumComplete Idiot's Guide To Music Theory + Persistent IDD7BF0C68B679D5D6 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ear%20Training%20Course/The%20Complete%20Idiot's%20Guide%20To%20Music%20Theory/41%20Lesson%20Six_%20Chords.m4a + File Folder Count4 + Library Folder Count1 + + 7194 + + Track ID7194 + NameChord Exercises 1-5 + ArtistEar Training Course + AlbumThe Complete Idiot's Guide To Music Theory + GenreJazz + KindAAC audio file + Size2123406 + Total Time97173 + Disc Number1 + Disc Count1 + Track Number42 + Track Count46 + Date Modified2009-12-06T02:58:09Z + Date Added2009-12-05T16:54:30Z + Bit Rate256 + Sample Rate44100 + Normalization1117 + Artwork Count1 + Sort AlbumComplete Idiot's Guide To Music Theory + Persistent ID091866AAFBE7F7A0 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ear%20Training%20Course/The%20Complete%20Idiot's%20Guide%20To%20Music%20Theory/42%20Chord%20Exercises%201-5.m4a + File Folder Count4 + Library Folder Count1 + + 7196 + + Track ID7196 + NameChord Exercises 6-10 + ArtistEar Training Course + AlbumThe Complete Idiot's Guide To Music Theory + GenreJazz + KindAAC audio file + Size1497604 + Total Time71106 + Disc Number1 + Disc Count1 + Track Number43 + Track Count46 + Date Modified2009-12-06T02:58:09Z + Date Added2009-12-05T16:54:41Z + Bit Rate256 + Sample Rate44100 + Normalization953 + Artwork Count1 + Sort AlbumComplete Idiot's Guide To Music Theory + Persistent IDB0310272564B1981 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ear%20Training%20Course/The%20Complete%20Idiot's%20Guide%20To%20Music%20Theory/43%20Chord%20Exercises%206-10.m4a + File Folder Count4 + Library Folder Count1 + + 7198 + + Track ID7198 + NameChord Exercises 11-15 + ArtistEar Training Course + AlbumThe Complete Idiot's Guide To Music Theory + GenreJazz + KindAAC audio file + Size1825999 + Total Time85560 + Disc Number1 + Disc Count1 + Track Number44 + Track Count46 + Date Modified2009-12-06T02:58:09Z + Date Added2009-12-05T16:54:49Z + Bit Rate256 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Sort AlbumComplete Idiot's Guide To Music Theory + Persistent IDEE4D164CED61F9B9 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ear%20Training%20Course/The%20Complete%20Idiot's%20Guide%20To%20Music%20Theory/44%20Chord%20Exercises%2011-15.m4a + File Folder Count4 + Library Folder Count1 + + 7200 + + Track ID7200 + NameChord Exercises 16-20 + ArtistEar Training Course + AlbumThe Complete Idiot's Guide To Music Theory + GenreJazz + KindAAC audio file + Size2299700 + Total Time102280 + Disc Number1 + Disc Count1 + Track Number45 + Track Count46 + Date Modified2009-12-06T02:58:09Z + Date Added2009-12-05T16:54:58Z + Bit Rate256 + Sample Rate44100 + Normalization1163 + Artwork Count1 + Sort AlbumComplete Idiot's Guide To Music Theory + Persistent IDE1391FC82F78159E + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ear%20Training%20Course/The%20Complete%20Idiot's%20Guide%20To%20Music%20Theory/45%20Chord%20Exercises%2016-20.m4a + File Folder Count4 + Library Folder Count1 + + 7202 + + Track ID7202 + NameCoda + ArtistEar Training Course + AlbumThe Complete Idiot's Guide To Music Theory + GenreJazz + KindAAC audio file + Size648558 + Total Time24293 + Disc Number1 + Disc Count1 + Track Number46 + Track Count46 + Date Modified2009-12-06T02:58:09Z + Date Added2009-12-05T16:55:08Z + Bit Rate256 + Sample Rate44100 + Normalization43 + Artwork Count1 + Sort AlbumComplete Idiot's Guide To Music Theory + Persistent ID2034741368AA27E9 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ear%20Training%20Course/The%20Complete%20Idiot's%20Guide%20To%20Music%20Theory/46%20Coda.m4a + File Folder Count4 + Library Folder Count1 + + 7204 + + Track ID7204 + NameTuning + ArtistHal Leonard + AlbumGuitar Method: Book 1 + GenreEasy Listening + KindAAC audio file + Size1919049 + Total Time60600 + Disc Number1 + Disc Count1 + Track Number1 + Track Count47 + Year2002 + Date Modified2009-12-06T03:29:47Z + Date Added2009-12-06T02:59:09Z + Bit Rate256 + Sample Rate44100 + Normalization671 + Artwork Count1 + Persistent ID20A8C69A14AB8C98 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method_%20Book%201/01%20Tuning.m4a + File Folder Count4 + Library Folder Count1 + + 7206 + + Track ID7206 + NameUntitled + ArtistHal Leonard + AlbumGuitar Method: Book 1 + GenreEasy Listening + KindAAC audio file + Size1099449 + Total Time30120 + Disc Number1 + Disc Count1 + Track Number2 + Track Count47 + Year2002 + Date Modified2009-12-06T03:29:47Z + Date Added2009-12-06T02:59:22Z + Bit Rate256 + Sample Rate44100 + Normalization4557 + Artwork Count1 + Persistent ID2B7C1B1907E13BB7 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method_%20Book%201/02%20Untitled.m4a + File Folder Count4 + Library Folder Count1 + + 7208 + + Track ID7208 + NameSpanish Theme + ArtistHal Leonard + AlbumGuitar Method: Book 1 + GenreEasy Listening + KindAAC audio file + Size1063686 + Total Time30040 + Disc Number1 + Disc Count1 + Track Number3 + Track Count47 + Year2002 + Date Modified2009-12-06T03:29:47Z + Date Added2009-12-06T02:59:28Z + Bit Rate256 + Sample Rate44100 + Play Count3 + Play Date3392054178 + Play Date UTC2011-06-27T15:46:18Z + Normalization1190 + Artwork Count1 + Persistent IDF392F62BF5FE7BB4 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method_%20Book%201/03%20Spanish%20Theme.m4a + File Folder Count4 + Library Folder Count1 + + 7210 + + Track ID7210 + NameWorld Beat + ArtistHal Leonard + AlbumGuitar Method: Book 1 + GenreEasy Listening + KindAAC audio file + Size1150878 + Total Time32786 + Disc Number1 + Disc Count1 + Track Number4 + Track Count47 + Year2002 + Date Modified2009-12-06T03:29:47Z + Date Added2009-12-06T02:59:34Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3391612242 + Play Date UTC2011-06-22T13:00:42Z + Normalization4411 + Artwork Count1 + Persistent IDD0BA3CB36C57EE36 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method_%20Book%201/04%20World%20Beat.m4a + File Folder Count4 + Library Folder Count1 + + 7212 + + Track ID7212 + NameOde To Joy + ArtistHal Leonard + AlbumGuitar Method: Book 1 + GenreEasy Listening + KindAAC audio file + Size3447773 + Total Time97640 + Disc Number1 + Disc Count1 + Track Number5 + Track Count47 + Year2002 + Date Modified2009-12-06T03:29:47Z + Date Added2009-12-06T02:59:41Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3391612177 + Play Date UTC2011-06-22T12:59:37Z + Normalization1596 + Artwork Count1 + Persistent ID66E42A7457A8D4D2 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method_%20Book%201/05%20Ode%20To%20Joy.m4a + File Folder Count4 + Library Folder Count1 + + 7214 + + Track ID7214 + NameBlues + ArtistHal Leonard + AlbumGuitar Method: Book 1 + GenreEasy Listening + KindAAC audio file + Size1219194 + Total Time33453 + Disc Number1 + Disc Count1 + Track Number6 + Track Count47 + Year2002 + Date Modified2009-12-06T03:29:47Z + Date Added2009-12-06T02:59:59Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3391612083 + Play Date UTC2011-06-22T12:58:03Z + Normalization7549 + Artwork Count1 + Persistent ID62011C9A737DC8F1 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method_%20Book%201/06%20Blues.m4a + File Folder Count4 + Library Folder Count1 + + 7216 + + Track ID7216 + NameRockin' Robin + ArtistHal Leonard + AlbumGuitar Method: Book 1 + GenreEasy Listening + KindAAC audio file + Size2415863 + Total Time64226 + Disc Number1 + Disc Count1 + Track Number7 + Track Count47 + Year2002 + Date Modified2009-12-06T03:29:47Z + Date Added2009-12-06T03:00:06Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3392729568 + Play Date UTC2011-07-05T11:22:48Z + Normalization4142 + Artwork Count1 + Persistent ID0E8A6C8AEE15FCDC + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method_%20Book%201/07%20Rockin'%20Robin.m4a + File Folder Count4 + Library Folder Count1 + + 7218 + + Track ID7218 + NameYankee Doodle + ArtistHal Leonard + AlbumGuitar Method: Book 1 + GenreEasy Listening + KindAAC audio file + Size1442054 + Total Time41760 + Disc Number1 + Disc Count1 + Track Number8 + Track Count47 + Year2002 + Date Modified2009-12-06T03:29:47Z + Date Added2009-12-06T03:00:17Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3392729610 + Play Date UTC2011-07-05T11:23:30Z + Normalization2959 + Artwork Count1 + Persistent ID8783583A12D2080F + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method_%20Book%201/08%20Yankee%20Doodle.m4a + File Folder Count4 + Library Folder Count1 + + 7220 + + Track ID7220 + NameSurf Rock + ArtistHal Leonard + AlbumGuitar Method: Book 1 + GenreEasy Listening + KindAAC audio file + Size1993687 + Total Time60280 + Disc Number1 + Disc Count1 + Track Number9 + Track Count47 + Year2002 + Date Modified2009-12-06T03:29:47Z + Date Added2009-12-06T03:00:25Z + Bit Rate256 + Sample Rate44100 + Normalization8534 + Artwork Count1 + Persistent IDFF14BB34CB5E481E + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method_%20Book%201/09%20Surf%20Rock.m4a + File Folder Count4 + Library Folder Count1 + + 7222 + + Track ID7222 + NameAu Claire De La Lune + ArtistHal Leonard + AlbumGuitar Method: Book 1 + GenreEasy Listening + KindAAC audio file + Size1726671 + Total Time48480 + Disc Number1 + Disc Count1 + Track Number10 + Track Count47 + Year2002 + Date Modified2009-12-06T03:29:46Z + Date Added2009-12-06T03:00:35Z + Bit Rate256 + Sample Rate44100 + Normalization1643 + Artwork Count1 + Persistent ID2DCEF82E3B541A57 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method_%20Book%201/10%20Au%20Claire%20De%20La%20Lune.m4a + File Folder Count4 + Library Folder Count1 + + 7224 + + Track ID7224 + NameAura Lee + ArtistHal Leonard + AlbumGuitar Method: Book 1 + GenreEasy Listening + KindAAC audio file + Size1753647 + Total Time52893 + Disc Number1 + Disc Count1 + Track Number11 + Track Count47 + Year2002 + Date Modified2009-12-06T03:29:46Z + Date Added2009-12-06T03:00:44Z + Bit Rate256 + Sample Rate44100 + Play Count2 + Play Date3392814614 + Play Date UTC2011-07-06T11:00:14Z + Normalization1122 + Artwork Count1 + Persistent IDEA8862E48EC02627 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method_%20Book%201/11%20Aura%20Lee.m4a + File Folder Count4 + Library Folder Count1 + + 7226 + + Track ID7226 + NameHe's A Jolly Good Fellow + ArtistHal Leonard + AlbumGuitar Method: Book 1 + GenreEasy Listening + KindAAC audio file + Size954625 + Total Time26866 + Disc Number1 + Disc Count1 + Track Number12 + Track Count47 + Year2002 + Date Modified2009-12-06T03:29:46Z + Date Added2009-12-06T03:00:53Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3392814641 + Play Date UTC2011-07-06T11:00:41Z + Normalization3885 + Artwork Count1 + Persistent IDDAF8B846C7045483 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method_%20Book%201/12%20He's%20A%20Jolly%20Good%20Fellow.m4a + File Folder Count4 + Library Folder Count1 + + 7228 + + Track ID7228 + NameWorried Man Blues + ArtistHal Leonard + AlbumGuitar Method: Book 1 + GenreEasy Listening + KindAAC audio file + Size2770875 + Total Time79480 + Disc Number1 + Disc Count1 + Track Number13 + Track Count47 + Year2002 + Date Modified2009-12-06T03:29:46Z + Date Added2009-12-06T03:00:57Z + Bit Rate256 + Sample Rate44100 + Normalization4035 + Artwork Count1 + Persistent ID1EA34087E6E8A5FB + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method_%20Book%201/13%20Worried%20Man%20Blues.m4a + File Folder Count4 + Library Folder Count1 + + 7230 + + Track ID7230 + NameTom Dooley + ArtistHal Leonard + AlbumGuitar Method: Book 1 + GenreEasy Listening + KindAAC audio file + Size883955 + Total Time25226 + Disc Number1 + Disc Count1 + Track Number14 + Track Count47 + Year2002 + Date Modified2009-12-06T03:29:46Z + Date Added2009-12-06T03:01:10Z + Bit Rate256 + Sample Rate44100 + Normalization3091 + Artwork Count1 + Persistent ID176E1F7CFCD287BE + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method_%20Book%201/14%20Tom%20Dooley.m4a + File Folder Count4 + Library Folder Count1 + + 7232 + + Track ID7232 + NamePay Me My Money Down + ArtistHal Leonard + AlbumGuitar Method: Book 1 + GenreEasy Listening + KindAAC audio file + Size926861 + Total Time25986 + Disc Number1 + Disc Count1 + Track Number15 + Track Count47 + Year2002 + Date Modified2009-12-06T03:29:46Z + Date Added2009-12-06T03:01:14Z + Bit Rate256 + Sample Rate44100 + Normalization4268 + Artwork Count1 + Persistent ID3E17A3BAD0D508FD + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method_%20Book%201/15%20Pay%20Me%20My%20Money%20Down.m4a + File Folder Count4 + Library Folder Count1 + + 7234 + + Track ID7234 + Name12-Bar Rock + ArtistHal Leonard + AlbumGuitar Method: Book 1 + GenreEasy Listening + KindAAC audio file + Size2250928 + Total Time62666 + Disc Number1 + Disc Count1 + Track Number16 + Track Count47 + Year2002 + Date Modified2009-12-06T03:29:46Z + Date Added2009-12-06T03:01:19Z + Bit Rate256 + Sample Rate44100 + Normalization15872 + Artwork Count1 + Persistent IDA010729D64ADF2EA + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method_%20Book%201/16%2012-Bar%20Rock.m4a + File Folder Count4 + Library Folder Count1 + + 7236 + + Track ID7236 + NameAmazing Grace + ArtistHal Leonard + AlbumGuitar Method: Book 1 + GenreEasy Listening + KindAAC audio file + Size1357732 + Total Time36773 + Disc Number1 + Disc Count1 + Track Number17 + Track Count47 + Year2002 + Date Modified2009-12-06T03:29:46Z + Date Added2009-12-06T03:01:28Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3392213722 + Play Date UTC2011-06-29T12:05:22Z + Normalization1278 + Artwork Count1 + Persistent ID95B948D6166BC233 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method_%20Book%201/17%20Amazing%20Grace.m4a + File Folder Count4 + Library Folder Count1 + + 7238 + + Track ID7238 + NameRiffin' + ArtistHal Leonard + AlbumGuitar Method: Book 1 + GenreEasy Listening + KindAAC audio file + Size2154395 + Total Time61853 + Disc Number1 + Disc Count1 + Track Number18 + Track Count47 + Year2002 + Date Modified2009-12-06T03:29:46Z + Date Added2009-12-06T03:01:34Z + Bit Rate256 + Sample Rate44100 + Normalization4857 + Artwork Count1 + Persistent IDA0DC97F192F7A1BA + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method_%20Book%201/18%20Riffin'.m4a + File Folder Count4 + Library Folder Count1 + + 7240 + + Track ID7240 + NameWhen The Saints Go Marching In + ArtistHal Leonard + AlbumGuitar Method: Book 1 + GenreEasy Listening + KindAAC audio file + Size2636017 + Total Time74186 + Disc Number1 + Disc Count1 + Track Number19 + Track Count47 + Year2002 + Date Modified2009-12-06T03:29:46Z + Date Added2009-12-06T03:01:43Z + Bit Rate256 + Sample Rate44100 + Normalization3654 + Artwork Count1 + Persistent ID2318183259A4FFD0 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method_%20Book%201/19%20When%20The%20Saints%20Go%20Marching%20In.m4a + File Folder Count4 + Library Folder Count1 + + 7242 + + Track ID7242 + NameWill The Circle Be Unbroken + ArtistHal Leonard + AlbumGuitar Method: Book 1 + GenreEasy Listening + KindAAC audio file + Size1287814 + Total Time40080 + Disc Number1 + Disc Count1 + Track Number20 + Track Count47 + Year2002 + Date Modified2009-12-06T03:29:46Z + Date Added2009-12-06T03:01:54Z + Bit Rate256 + Sample Rate44100 + Normalization1484 + Artwork Count1 + Persistent ID219BD7CDF1BFDA39 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method_%20Book%201/20%20Will%20The%20Circle%20Be%20Unbroken.m4a + File Folder Count4 + Library Folder Count1 + + 7244 + + Track ID7244 + NameBlues Bass + ArtistHal Leonard + AlbumGuitar Method: Book 1 + GenreEasy Listening + KindAAC audio file + Size1907427 + Total Time55000 + Disc Number1 + Disc Count1 + Track Number21 + Track Count47 + Year2002 + Date Modified2009-12-06T03:29:45Z + Date Added2009-12-06T03:02:00Z + Bit Rate256 + Sample Rate44100 + Normalization15835 + Artwork Count1 + Persistent ID82F21C85B1FE908E + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method_%20Book%201/21%20Blues%20Bass.m4a + File Folder Count4 + Library Folder Count1 + + 7246 + + Track ID7246 + NameJoshua Fought The Battle Of Jericho + ArtistHal Leonard + AlbumGuitar Method: Book 1 + GenreEasy Listening + KindAAC audio file + Size1566522 + Total Time44013 + Disc Number1 + Disc Count1 + Track Number22 + Track Count47 + Year2002 + Date Modified2009-12-06T03:29:45Z + Date Added2009-12-06T03:02:08Z + Bit Rate256 + Sample Rate44100 + Normalization3656 + Artwork Count1 + Persistent ID1095BE63005F564B + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method_%20Book%201/22%20Joshua%20Fought%20The%20Battle%20Of%20Jericho.m4a + File Folder Count4 + Library Folder Count1 + + 7248 + + Track ID7248 + NameGreensleeves + ArtistHal Leonard + AlbumGuitar Method: Book 1 + GenreEasy Listening + KindAAC audio file + Size4390488 + Total Time128866 + Disc Number1 + Disc Count1 + Track Number23 + Track Count47 + Year2002 + Date Modified2009-12-06T03:29:45Z + Date Added2009-12-06T03:02:15Z + Bit Rate256 + Sample Rate44100 + Play Count2 + Play Date3392814560 + Play Date UTC2011-07-06T10:59:20Z + Normalization1504 + Artwork Count1 + Persistent IDD691ABDAC8230050 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method_%20Book%201/23%20Greensleeves.m4a + File Folder Count4 + Library Folder Count1 + + 7250 + + Track ID7250 + NameDoo Wop + ArtistHal Leonard + AlbumGuitar Method: Book 1 + GenreEasy Listening + KindAAC audio file + Size1245177 + Total Time34986 + Disc Number1 + Disc Count1 + Track Number24 + Track Count47 + Year2002 + Date Modified2009-12-06T03:29:45Z + Date Added2009-12-06T03:02:32Z + Bit Rate256 + Sample Rate44100 + Normalization3686 + Artwork Count1 + Persistent ID18FDF2CF1CBF8A53 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method_%20Book%201/24%20Doo%20Wop.m4a + File Folder Count4 + Library Folder Count1 + + 7252 + + Track ID7252 + NameGive My Regards To Broadway + ArtistHal Leonard + AlbumGuitar Method: Book 1 + GenreEasy Listening + KindAAC audio file + Size2446565 + Total Time68373 + Disc Number1 + Disc Count1 + Track Number25 + Track Count47 + Year2002 + Date Modified2009-12-06T03:29:45Z + Date Added2009-12-06T03:02:37Z + Bit Rate256 + Sample Rate44100 + Normalization1204 + Artwork Count1 + Persistent IDDACDD0868C5CDC36 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method_%20Book%201/25%20Give%20My%20Regards%20To%20Broadway.m4a + File Folder Count4 + Library Folder Count1 + + 7254 + + Track ID7254 + NameBass Rock + ArtistHal Leonard + AlbumGuitar Method: Book 1 + GenreEasy Listening + KindAAC audio file + Size1901185 + Total Time52893 + Disc Number1 + Disc Count1 + Track Number26 + Track Count47 + Year2002 + Date Modified2009-12-06T03:29:45Z + Date Added2009-12-06T03:02:46Z + Bit Rate256 + Sample Rate44100 + Normalization12324 + Artwork Count1 + Persistent IDEE8A9EE81103D0EE + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method_%20Book%201/26%20Bass%20Rock.m4a + File Folder Count4 + Library Folder Count1 + + 7256 + + Track ID7256 + NameDanny Boy (Londonderry Air) + ArtistHal Leonard + AlbumGuitar Method: Book 1 + GenreEasy Listening + KindAAC audio file + Size1658551 + Total Time49146 + Disc Number1 + Disc Count1 + Track Number27 + Track Count47 + Year2002 + Date Modified2009-12-06T03:29:45Z + Date Added2009-12-06T03:02:53Z + Bit Rate256 + Sample Rate44100 + Normalization1733 + Artwork Count1 + Persistent ID6EA079CE1D63552D + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method_%20Book%201/27%20Danny%20Boy%20(Londonderry%20Air).m4a + File Folder Count4 + Library Folder Count1 + + 7258 + + Track ID7258 + NameShenandoah + ArtistHal Leonard + AlbumGuitar Method: Book 1 + GenreEasy Listening + KindAAC audio file + Size1696761 + Total Time46880 + Disc Number1 + Disc Count1 + Track Number28 + Track Count47 + Year2002 + Date Modified2009-12-06T03:29:45Z + Date Added2009-12-06T03:02:59Z + Bit Rate256 + Sample Rate44100 + Normalization2536 + Artwork Count1 + Persistent ID72949E8362C51798 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method_%20Book%201/28%20Shenandoah.m4a + File Folder Count4 + Library Folder Count1 + + 7260 + + Track ID7260 + NameSpy Riff + ArtistHal Leonard + AlbumGuitar Method: Book 1 + GenreEasy Listening + KindAAC audio file + Size1440633 + Total Time41493 + Disc Number1 + Disc Count1 + Track Number29 + Track Count47 + Year2002 + Date Modified2009-12-06T03:29:45Z + Date Added2009-12-06T03:03:05Z + Bit Rate256 + Sample Rate44100 + Normalization2568 + Artwork Count1 + Persistent ID5486F937C6996E2B + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method_%20Book%201/29%20Spy%20Riff.m4a + File Folder Count4 + Library Folder Count1 + + 7262 + + Track ID7262 + NameDeep Blue + ArtistHal Leonard + AlbumGuitar Method: Book 1 + GenreEasy Listening + KindAAC audio file + Size436275 + Total Time14333 + Disc Number1 + Disc Count1 + Track Number30 + Track Count47 + Year2002 + Date Modified2009-12-06T03:29:45Z + Date Added2009-12-06T03:03:11Z + Bit Rate256 + Sample Rate44100 + Normalization4118 + Artwork Count1 + Persistent ID5AD5FBCAA2580B0C + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method_%20Book%201/30%20Deep%20Blue.m4a + File Folder Count4 + Library Folder Count1 + + 7264 + + Track ID7264 + NameRed River Valley + ArtistHal Leonard + AlbumGuitar Method: Book 1 + GenreEasy Listening + KindAAC audio file + Size1170892 + Total Time37853 + Disc Number1 + Disc Count1 + Track Number31 + Track Count47 + Year2002 + Date Modified2009-12-06T03:29:45Z + Date Added2009-12-06T03:03:13Z + Bit Rate256 + Sample Rate44100 + Normalization2310 + Artwork Count1 + Persistent IDD4A5479D46545524 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method_%20Book%201/31%20Red%20River%20Valley.m4a + File Folder Count4 + Library Folder Count1 + + 7266 + + Track ID7266 + NameTwang + ArtistHal Leonard + AlbumGuitar Method: Book 1 + GenreEasy Listening + KindAAC audio file + Size651396 + Total Time21866 + Disc Number1 + Disc Count1 + Track Number32 + Track Count47 + Year2002 + Date Modified2009-12-06T03:29:44Z + Date Added2009-12-06T03:03:18Z + Bit Rate256 + Sample Rate44100 + Normalization1762 + Artwork Count1 + Persistent ID765A1F6E5A38B2EA + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method_%20Book%201/32%20Twang.m4a + File Folder Count4 + Library Folder Count1 + + 7268 + + Track ID7268 + NameRock 'N' Rest + ArtistHal Leonard + AlbumGuitar Method: Book 1 + GenreEasy Listening + KindAAC audio file + Size560025 + Total Time15653 + Disc Number1 + Disc Count1 + Track Number33 + Track Count47 + Year2002 + Date Modified2009-12-06T03:29:44Z + Date Added2009-12-06T03:03:21Z + Bit Rate256 + Sample Rate44100 + Normalization4057 + Artwork Count1 + Persistent ID6BDBAD40D1A67FAF + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method_%20Book%201/33%20Rock%20'N'%20Rest.m4a + File Folder Count4 + Library Folder Count1 + + 7270 + + Track ID7270 + NameSea Shanty + ArtistHal Leonard + AlbumGuitar Method: Book 1 + GenreEasy Listening + KindAAC audio file + Size3197203 + Total Time89546 + Disc Number1 + Disc Count1 + Track Number34 + Track Count47 + Year2002 + Date Modified2009-12-06T03:29:44Z + Date Added2009-12-06T03:03:24Z + Bit Rate256 + Sample Rate44100 + Normalization3940 + Artwork Count1 + Persistent ID71D55DEBA1EA0132 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method_%20Book%201/34%20Sea%20Shanty.m4a + File Folder Count4 + Library Folder Count1 + + 7272 + + Track ID7272 + NameFrére Jacques + ArtistHal Leonard + AlbumGuitar Method: Book 1 + GenreEasy Listening + KindAAC audio file + Size1985569 + Total Time56360 + Disc Number1 + Disc Count1 + Track Number35 + Track Count47 + Year2002 + Date Modified2009-12-06T03:29:44Z + Date Added2009-12-06T03:03:34Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3392214048 + Play Date UTC2011-06-29T12:10:48Z + Normalization1341 + Artwork Count1 + Persistent ID655887E1C15B854B + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method_%20Book%201/35%20Fre%CC%81re%20Jacques.m4a + File Folder Count4 + Library Folder Count1 + + 7274 + + Track ID7274 + NameSnake Charmer + ArtistHal Leonard + AlbumGuitar Method: Book 1 + GenreEasy Listening + KindAAC audio file + Size1910499 + Total Time54760 + Disc Number1 + Disc Count1 + Track Number36 + Track Count47 + Year2002 + Date Modified2009-12-06T03:29:44Z + Date Added2009-12-06T03:03:41Z + Bit Rate256 + Sample Rate44100 + Skip Count1 + Normalization1855 + Artwork Count1 + Persistent IDF0EC5501691D8A92 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method_%20Book%201/36%20Snake%20Charmer.m4a + File Folder Count4 + Library Folder Count1 + + 7276 + + Track ID7276 + NameThe Star-Spangeled Banner + ArtistHal Leonard + AlbumGuitar Method: Book 1 + GenreEasy Listening + KindAAC audio file + Size2744671 + Total Time81226 + Disc Number1 + Disc Count1 + Track Number37 + Track Count47 + Year2002 + Date Modified2009-12-06T03:29:44Z + Date Added2009-12-06T03:03:48Z + Bit Rate256 + Sample Rate44100 + Normalization3991 + Artwork Count1 + Sort NameStar-Spangeled Banner + Persistent IDD5EF6C8D66507707 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method_%20Book%201/37%20The%20Star-Spangeled%20Banner.m4a + File Folder Count4 + Library Folder Count1 + + 7278 + + Track ID7278 + NameHey, Ho, Nobody Home + ArtistHal Leonard + AlbumGuitar Method: Book 1 + GenreEasy Listening + KindAAC audio file + Size2317984 + Total Time71653 + Disc Number1 + Disc Count1 + Track Number38 + Track Count47 + Year2002 + Date Modified2009-12-06T03:29:44Z + Date Added2009-12-06T03:03:58Z + Bit Rate256 + Sample Rate44100 + Normalization1766 + Artwork Count1 + Persistent ID03740862EF0AFB51 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method_%20Book%201/38%20Hey,%20Ho,%20Nobody%20Home.m4a + File Folder Count4 + Library Folder Count1 + + 7280 + + Track ID7280 + NameShalom Chaverim (Peace, My Friend) + ArtistHal Leonard + AlbumGuitar Method: Book 1 + GenreEasy Listening + KindAAC audio file + Size2668427 + Total Time82440 + Disc Number1 + Disc Count1 + Track Number39 + Track Count47 + Year2002 + Date Modified2009-12-06T03:29:44Z + Date Added2009-12-06T03:04:06Z + Bit Rate256 + Sample Rate44100 + Normalization2540 + Artwork Count1 + Persistent ID7FC7DBAB3F56492F + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method_%20Book%201/39%20Shalom%20Chaverim%20(Peace,%20My%20Friend).m4a + File Folder Count4 + Library Folder Count1 + + 7282 + + Track ID7282 + NameThis Train + ArtistHal Leonard + AlbumGuitar Method: Book 1 + GenreEasy Listening + KindAAC audio file + Size2198935 + Total Time64800 + Disc Number1 + Disc Count1 + Track Number40 + Track Count47 + Year2002 + Date Modified2009-12-06T03:29:43Z + Date Added2009-12-06T03:04:15Z + Bit Rate256 + Sample Rate44100 + Normalization3581 + Artwork Count1 + Persistent ID40DCDBA789ABC653 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method_%20Book%201/40%20This%20Train.m4a + File Folder Count4 + Library Folder Count1 + + 7284 + + Track ID7284 + NameBoogie Bass + ArtistHal Leonard + AlbumGuitar Method: Book 1 + GenreEasy Listening + KindAAC audio file + Size2943245 + Total Time81813 + Disc Number1 + Disc Count1 + Track Number41 + Track Count47 + Year2002 + Date Modified2009-12-06T03:29:43Z + Date Added2009-12-06T03:04:23Z + Bit Rate256 + Sample Rate44100 + Normalization6005 + Artwork Count1 + Persistent IDD0EB52B762AB8994 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method_%20Book%201/41%20Boogie%20Bass.m4a + File Folder Count4 + Library Folder Count1 + + 7286 + + Track ID7286 + NameSimple Gifts + ArtistHal Leonard + AlbumGuitar Method: Book 1 + GenreEasy Listening + KindAAC audio file + Size3755482 + Total Time103946 + Disc Number1 + Disc Count1 + Track Number42 + Track Count47 + Year2002 + Date Modified2009-12-06T03:29:43Z + Date Added2009-12-06T03:04:32Z + Bit Rate256 + Sample Rate44100 + Normalization3705 + Artwork Count1 + Persistent ID993F50FF809EB10B + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method_%20Book%201/42%20Simple%20Gifts.m4a + File Folder Count4 + Library Folder Count1 + + 7288 + + Track ID7288 + NameRockin' Blues + ArtistHal Leonard + AlbumGuitar Method: Book 1 + GenreEasy Listening + KindAAC audio file + Size1079188 + Total Time30439 + Disc Number1 + Disc Count1 + Track Number43 + Track Count47 + Year2002 + Date Modified2009-12-23T11:26:04Z + Date Added2009-12-06T03:04:43Z + Bit Rate256 + Sample Rate44100 + Normalization5328 + Persistent IDA55D5934CB126D20 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method_%20Book%201/43%20Rockin'%20Blues.m4a + File Folder Count4 + Library Folder Count1 + + 7290 + + Track ID7290 + NameDown In The Valley + ArtistHal Leonard + AlbumGuitar Method: Book 1 + GenreEasy Listening + KindAAC audio file + Size1344502 + Total Time41466 + Disc Number1 + Disc Count1 + Track Number44 + Track Count47 + Year2002 + Date Modified2009-12-06T03:29:43Z + Date Added2009-12-06T03:04:47Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3392224120 + Play Date UTC2011-06-29T14:58:40Z + Normalization2404 + Artwork Count1 + Persistent ID20827BA018B79E2E + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method_%20Book%201/44%20Down%20In%20The%20Valley.m4a + File Folder Count4 + Library Folder Count1 + + 7292 + + Track ID7292 + NameMinuet In G + ArtistHal Leonard + AlbumGuitar Method: Book 1 + GenreEasy Listening + KindAAC audio file + Size10187336 + Total Time299386 + Disc Number1 + Disc Count1 + Track Number45 + Track Count47 + Year2002 + Date Modified2009-12-06T03:29:43Z + Date Added2009-12-06T03:04:52Z + Bit Rate256 + Sample Rate44100 + Normalization2805 + Artwork Count1 + Persistent IDBC3C94392225DD54 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method_%20Book%201/45%20Minuet%20In%20G.m4a + File Folder Count4 + Library Folder Count1 + + 7294 + + Track ID7294 + NameTime Is On My Side + ArtistHal Leonard + AlbumGuitar Method: Book 1 + GenreEasy Listening + KindAAC audio file + Size3025636 + Total Time94293 + Disc Number1 + Disc Count1 + Track Number46 + Track Count47 + Year2002 + Date Modified2009-12-06T03:29:42Z + Date Added2009-12-06T03:05:22Z + Bit Rate256 + Sample Rate44100 + Normalization10661 + Artwork Count1 + Persistent ID482FF8AFC22881BE + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method_%20Book%201/46%20Time%20Is%20On%20My%20Side.m4a + File Folder Count4 + Library Folder Count1 + + 7296 + + Track ID7296 + NameGrand Finale + ArtistHal Leonard + AlbumGuitar Method: Book 1 + GenreEasy Listening + KindAAC audio file + Size2534138 + Total Time69040 + Disc Number1 + Disc Count1 + Track Number47 + Track Count47 + Year2002 + Date Modified2009-12-06T03:29:42Z + Date Added2009-12-06T03:05:32Z + Bit Rate256 + Sample Rate44100 + Normalization5334 + Artwork Count1 + Persistent IDBA7449999D64D8A0 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method_%20Book%201/47%20Grand%20Finale.m4a + File Folder Count4 + Library Folder Count1 + + 7298 + + Track ID7298 + NameTuning Notes (Am Chord) + ArtistHal Leonard + AlbumGuitar Method Book 2 + GenreSoundtrack + KindAAC audio file + Size1915827 + Total Time59600 + Disc Number2 + Disc Count3 + Track Number1 + Track Count58 + Year2002 + Date Modified2009-12-06T03:29:42Z + Date Added2009-12-06T03:06:44Z + Bit Rate256 + Sample Rate44100 + Normalization498 + Artwork Count1 + Persistent ID41EA5E41CC831E67 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-01%20Tuning%20Notes%20(Am%20Chord).m4a + File Folder Count4 + Library Folder Count1 + + 7300 + + Track ID7300 + NameSinner Man + ArtistHal Leonard + AlbumGuitar Method Book 2 + GenreSoundtrack + KindAAC audio file + Size1459751 + Total Time44786 + Disc Number2 + Disc Count3 + Track Number2 + Track Count58 + Year2002 + Date Modified2009-12-06T03:29:42Z + Date Added2009-12-06T03:06:50Z + Bit Rate256 + Sample Rate44100 + Normalization2535 + Artwork Count1 + Persistent ID1A771DA04868128F + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-02%20Sinner%20Man.m4a + File Folder Count4 + Library Folder Count1 + + 7302 + + Track ID7302 + NameJoshua Fought The Battle Of Jericho + ArtistHal Leonard + AlbumGuitar Method Book 2 + GenreSoundtrack + KindAAC audio file + Size1759464 + Total Time52346 + Disc Number2 + Disc Count3 + Track Number3 + Track Count58 + Year2002 + Date Modified2009-12-06T03:29:42Z + Date Added2009-12-06T03:06:54Z + Bit Rate256 + Sample Rate44100 + Normalization2823 + Artwork Count1 + Persistent ID509448C42299CE46 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-03%20Joshua%20Fought%20The%20Battle%20Of%20Jericho.m4a + File Folder Count4 + Library Folder Count1 + + 7304 + + Track ID7304 + NameRock-a-my-Soul + ArtistHal Leonard + AlbumGuitar Method Book 2 + GenreSoundtrack + KindAAC audio file + Size1626911 + Total Time50426 + Disc Number2 + Disc Count3 + Track Number4 + Track Count58 + Year2002 + Date Modified2009-12-06T03:29:42Z + Date Added2009-12-06T03:07:00Z + Bit Rate256 + Sample Rate44100 + Normalization2960 + Artwork Count1 + Persistent ID6B7278711CB0B636 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-04%20Rock-a-my-Soul.m4a + File Folder Count4 + Library Folder Count1 + + 7306 + + Track ID7306 + NameJamaica Farewell + ArtistHal Leonard + AlbumGuitar Method Book 2 + GenreSoundtrack + KindAAC audio file + Size2955256 + Total Time90120 + Disc Number2 + Disc Count3 + Track Number5 + Track Count58 + Year2002 + Date Modified2009-12-06T03:29:42Z + Date Added2009-12-06T03:07:05Z + Bit Rate256 + Sample Rate44100 + Normalization1570 + Artwork Count1 + Persistent IDC6A4E1557DAC06EF + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-05%20Jamaica%20Farewell.m4a + File Folder Count4 + Library Folder Count1 + + 7308 + + Track ID7308 + NameOh, Mary Don't You Weep + ArtistHal Leonard + AlbumGuitar Method Book 2 + GenreSoundtrack + KindAAC audio file + Size1790251 + Total Time49000 + Disc Number2 + Disc Count3 + Track Number6 + Track Count58 + Year2002 + Date Modified2009-12-06T03:29:42Z + Date Added2009-12-06T03:07:13Z + Bit Rate256 + Sample Rate44100 + Normalization1587 + Artwork Count1 + Persistent ID35639DE9201B94AE + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-06%20Oh,%20Mary%20Don't%20You%20Weep.m4a + File Folder Count4 + Library Folder Count1 + + 7310 + + Track ID7310 + NameDe Colores + ArtistHal Leonard + AlbumGuitar Method Book 2 + GenreSoundtrack + KindAAC audio file + Size1751082 + Total Time53920 + Disc Number2 + Disc Count3 + Track Number7 + Track Count58 + Year2002 + Date Modified2009-12-06T03:29:42Z + Date Added2009-12-06T03:07:17Z + Bit Rate256 + Sample Rate44100 + Normalization1324 + Artwork Count1 + Persistent ID975BCB27777BF648 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-07%20De%20Colores.m4a + File Folder Count4 + Library Folder Count1 + + 7312 + + Track ID7312 + NameAngels We Have Heard On High + ArtistHal Leonard + AlbumGuitar Method Book 2 + GenreSoundtrack + KindAAC audio file + Size2476629 + Total Time67000 + Disc Number2 + Disc Count3 + Track Number8 + Track Count58 + Year2002 + Date Modified2009-12-06T03:29:41Z + Date Added2009-12-06T03:07:22Z + Bit Rate256 + Sample Rate44100 + Normalization1234 + Artwork Count1 + Persistent ID2EF906C96DEB651C + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-08%20Angels%20We%20Have%20Heard%20On%20High.m4a + File Folder Count4 + Library Folder Count1 + + 7314 + + Track ID7314 + NameCatchy Riff + ArtistHal Leonard + AlbumGuitar Method Book 2 + GenreSoundtrack + KindAAC audio file + Size1071909 + Total Time34293 + Disc Number2 + Disc Count3 + Track Number9 + Track Count58 + Year2002 + Date Modified2009-12-06T03:29:41Z + Date Added2009-12-06T03:07:28Z + Bit Rate256 + Sample Rate44100 + Normalization1233 + Artwork Count1 + Persistent IDF0983B2503F14B4D + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-09%20Catchy%20Riff.m4a + File Folder Count4 + Library Folder Count1 + + 7316 + + Track ID7316 + NameMarianne + ArtistHal Leonard + AlbumGuitar Method Book 2 + GenreSoundtrack + KindAAC audio file + Size1210573 + Total Time38000 + Disc Number2 + Disc Count3 + Track Number10 + Track Count58 + Year2002 + Date Modified2009-12-06T03:29:41Z + Date Added2009-12-06T03:07:31Z + Bit Rate256 + Sample Rate44100 + Normalization1221 + Artwork Count1 + Persistent ID20C4DC410B748C4A + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-10%20Marianne.m4a + File Folder Count4 + Library Folder Count1 + + 7318 + + Track ID7318 + NameBlues/Rock Riff + ArtistHal Leonard + AlbumGuitar Method Book 2 + GenreSoundtrack + KindAAC audio file + Size1605774 + Total Time45346 + Disc Number2 + Disc Count3 + Track Number11 + Track Count58 + Year2002 + Date Modified2009-12-06T03:29:41Z + Date Added2009-12-06T03:07:34Z + Bit Rate256 + Sample Rate44100 + Normalization3450 + Artwork Count1 + Persistent IDB851043F2BD42C49 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-11%20Blues_Rock%20Riff.m4a + File Folder Count4 + Library Folder Count1 + + 7320 + + Track ID7320 + NameThe Wabash Cannonball + ArtistHal Leonard + AlbumGuitar Method Book 2 + GenreSoundtrack + KindAAC audio file + Size1054698 + Total Time32760 + Disc Number2 + Disc Count3 + Track Number12 + Track Count58 + Year2002 + Date Modified2009-12-06T03:29:41Z + Date Added2009-12-06T03:07:38Z + Bit Rate256 + Sample Rate44100 + Normalization2440 + Artwork Count1 + Sort NameWabash Cannonball + Persistent IDCB896D97FC1C5174 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-12%20The%20Wabash%20Cannonball.m4a + File Folder Count4 + Library Folder Count1 + + 7322 + + Track ID7322 + NameLa Bamba + ArtistHal Leonard + AlbumGuitar Method Book 2 + GenreSoundtrack + KindAAC audio file + Size1143685 + Total Time32000 + Disc Number2 + Disc Count3 + Track Number13 + Track Count58 + Year2002 + Date Modified2009-12-06T03:29:41Z + Date Added2009-12-06T03:07:41Z + Bit Rate256 + Sample Rate44100 + Normalization1526 + Artwork Count1 + Persistent ID8ACFC43C7096372A + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-13%20La%20Bamba.m4a + File Folder Count4 + Library Folder Count1 + + 7324 + + Track ID7324 + NameJoy To The World + ArtistHal Leonard + AlbumGuitar Method Book 2 + GenreSoundtrack + KindAAC audio file + Size1533146 + Total Time43133 + Disc Number2 + Disc Count3 + Track Number14 + Track Count58 + Year2002 + Date Modified2009-12-06T03:29:41Z + Date Added2009-12-06T03:07:44Z + Bit Rate256 + Sample Rate44100 + Normalization1793 + Artwork Count1 + Persistent ID9D513073BDB9EDE3 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-14%20Joy%20To%20The%20World.m4a + File Folder Count4 + Library Folder Count1 + + 7326 + + Track ID7326 + NameSteady Groove + ArtistHal Leonard + AlbumGuitar Method Book 2 + GenreSoundtrack + KindAAC audio file + Size2003248 + Total Time56466 + Disc Number2 + Disc Count3 + Track Number15 + Track Count58 + Year2002 + Date Modified2009-12-06T03:29:41Z + Date Added2009-12-06T03:07:47Z + Bit Rate256 + Sample Rate44100 + Normalization3196 + Artwork Count1 + Persistent ID41EEE6D6B8BB7173 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-15%20Steady%20Groove.m4a + File Folder Count4 + Library Folder Count1 + + 7328 + + Track ID7328 + NamePower Chord Shuffle + ArtistHal Leonard + AlbumGuitar Method Book 2 + GenreSoundtrack + KindAAC audio file + Size3633527 + Total Time102346 + Disc Number2 + Disc Count3 + Track Number16 + Track Count58 + Year2002 + Date Modified2009-12-06T03:29:41Z + Date Added2009-12-06T03:07:52Z + Bit Rate256 + Sample Rate44100 + Normalization8570 + Artwork Count1 + Persistent ID4ABDAED1526E0DA1 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-16%20Power%20Chord%20Shuffle.m4a + File Folder Count4 + Library Folder Count1 + + 7330 + + Track ID7330 + NameMidnight Special + ArtistHal Leonard + AlbumGuitar Method Book 2 + GenreSoundtrack + KindAAC audio file + Size1906613 + Total Time53573 + Disc Number2 + Disc Count3 + Track Number17 + Track Count58 + Year2002 + Date Modified2009-12-06T03:29:41Z + Date Added2009-12-06T03:08:00Z + Bit Rate256 + Sample Rate44100 + Normalization7647 + Artwork Count1 + Persistent IDD0E0A3F1073D1389 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-17%20Midnight%20Special.m4a + File Folder Count4 + Library Folder Count1 + + 7332 + + Track ID7332 + NameMidnight Special W/ 8th Note Rock Feel + ArtistHal Leonard + AlbumGuitar Method Book 2 + GenreSoundtrack + KindAAC audio file + Size1814623 + Total Time49280 + Disc Number2 + Disc Count3 + Track Number18 + Track Count58 + Year2002 + Date Modified2009-12-06T03:29:41Z + Date Added2009-12-06T03:08:04Z + Bit Rate256 + Sample Rate44100 + Normalization10113 + Artwork Count1 + Persistent ID7D50C8A099C2BC0C + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-18%20Midnight%20Special%20W_%208th%20Note%20Rock%20Feel.m4a + File Folder Count4 + Library Folder Count1 + + 7334 + + Track ID7334 + NameBlues In A + ArtistHal Leonard + AlbumGuitar Method Book 2 + GenreSoundtrack + KindAAC audio file + Size2201998 + Total Time63613 + Disc Number2 + Disc Count3 + Track Number19 + Track Count58 + Year2002 + Date Modified2009-12-06T03:29:40Z + Date Added2009-12-06T03:08:08Z + Bit Rate256 + Sample Rate44100 + Normalization6492 + Artwork Count1 + Persistent IDC767E423569515DF + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-19%20Blues%20In%20A.m4a + File Folder Count4 + Library Folder Count1 + + 7336 + + Track ID7336 + NameC. C. Rider + ArtistHal Leonard + AlbumGuitar Method Book 2 + GenreSoundtrack + KindAAC audio file + Size2537942 + Total Time78533 + Disc Number2 + Disc Count3 + Track Number20 + Track Count58 + Year2002 + Date Modified2009-12-06T03:29:40Z + Date Added2009-12-06T03:08:12Z + Bit Rate256 + Sample Rate44100 + Normalization2159 + Artwork Count1 + Persistent IDB70D223D96BEFBB9 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-20%20C.%20C.%20Rider.m4a + File Folder Count4 + Library Folder Count1 + + 7338 + + Track ID7338 + NameShuffle Riff + ArtistHal Leonard + AlbumGuitar Method Book 2 + GenreSoundtrack + KindAAC audio file + Size4568677 + Total Time131253 + Disc Number2 + Disc Count3 + Track Number21 + Track Count58 + Year2002 + Date Modified2009-12-06T03:29:40Z + Date Added2009-12-06T03:08:18Z + Bit Rate256 + Sample Rate44100 + Normalization1255 + Artwork Count1 + Persistent ID70BCF7296402D156 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-21%20Shuffle%20Riff.m4a + File Folder Count4 + Library Folder Count1 + + 7340 + + Track ID7340 + NameWayfaring Stranger + ArtistHal Leonard + AlbumGuitar Method Book 2 + GenreSoundtrack + KindAAC audio file + Size2125270 + Total Time57733 + Disc Number2 + Disc Count3 + Track Number22 + Track Count58 + Year2002 + Date Modified2009-12-06T03:29:40Z + Date Added2009-12-06T03:08:27Z + Bit Rate256 + Sample Rate44100 + Normalization918 + Artwork Count1 + Persistent ID24760EDEE5C5AA79 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-22%20Wayfaring%20Stranger.m4a + File Folder Count4 + Library Folder Count1 + + 7342 + + Track ID7342 + NameHava Nagila + ArtistHal Leonard + AlbumGuitar Method Book 2 + GenreSoundtrack + KindAAC audio file + Size5324357 + Total Time155986 + Disc Number2 + Disc Count3 + Track Number23 + Track Count58 + Year2002 + Date Modified2009-12-06T03:29:40Z + Date Added2009-12-06T03:08:31Z + Bit Rate256 + Sample Rate44100 + Normalization2203 + Artwork Count1 + Persistent ID768BD7BE2511C347 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-23%20Hava%20Nagila.m4a + File Folder Count4 + Library Folder Count1 + + 7344 + + Track ID7344 + NameSwing Low, Sweet Chariot + ArtistHal Leonard + AlbumGuitar Method Book 2 + GenreSoundtrack + KindAAC audio file + Size2160579 + Total Time58533 + Disc Number2 + Disc Count3 + Track Number24 + Track Count58 + Year2002 + Date Modified2009-12-06T03:29:40Z + Date Added2009-12-06T03:08:41Z + Bit Rate256 + Sample Rate44100 + Normalization1986 + Artwork Count1 + Persistent ID06E36B75A9A91E3D + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-24%20Swing%20Low,%20Sweet%20Chariot.m4a + File Folder Count4 + Library Folder Count1 + + 7346 + + Track ID7346 + NameScarborough Fair + ArtistHal Leonard + AlbumGuitar Method Book 2 + GenreSoundtrack + KindAAC audio file + Size1644451 + Total Time46466 + Disc Number2 + Disc Count3 + Track Number25 + Track Count58 + Year2002 + Date Modified2009-12-06T03:29:39Z + Date Added2009-12-06T03:08:44Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3392224446 + Play Date UTC2011-06-29T15:04:06Z + Normalization2334 + Artwork Count1 + Persistent ID69390ADF3322C46B + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-25%20Scarborough%20Fair.m4a + File Folder Count4 + Library Folder Count1 + + 7348 + + Track ID7348 + NameThe Water Is Wide + ArtistHal Leonard + AlbumGuitar Method Book 2 + GenreSoundtrack + KindAAC audio file + Size1978880 + Total Time54333 + Disc Number2 + Disc Count3 + Track Number26 + Track Count58 + Year2002 + Date Modified2009-12-06T03:29:39Z + Date Added2009-12-06T03:08:48Z + Bit Rate256 + Sample Rate44100 + Normalization1554 + Artwork Count1 + Sort NameWater Is Wide + Persistent IDA81221BAFEFEB157 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-26%20The%20Water%20Is%20Wide.m4a + File Folder Count4 + Library Folder Count1 + + 7350 + + Track ID7350 + NamePicking Chords-The F Chord + ArtistHal Leonard + AlbumGuitar Method Book 2 + GenreSoundtrack + KindAAC audio file + Size853202 + Total Time24546 + Disc Number2 + Disc Count3 + Track Number27 + Track Count58 + Year2002 + Date Modified2009-12-06T03:29:39Z + Date Added2009-12-06T03:08:51Z + Bit Rate256 + Sample Rate44100 + Normalization2400 + Artwork Count1 + Persistent ID916515B5C9C76F82 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-27%20Picking%20Chords-The%20F%20Chord.m4a + File Folder Count4 + Library Folder Count1 + + 7352 + + Track ID7352 + NameHouse Of The Rising Sun + ArtistHal Leonard + AlbumGuitar Method Book 2 + GenreSoundtrack + KindAAC audio file + Size1420753 + Total Time39360 + Disc Number2 + Disc Count3 + Track Number28 + Track Count58 + Year2002 + Date Modified2009-12-06T03:29:39Z + Date Added2009-12-06T03:08:53Z + Bit Rate256 + Sample Rate44100 + Normalization2713 + Artwork Count1 + Persistent ID10C6D3F2381C0D9D + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-28%20House%20Of%20The%20Rising%20Sun.m4a + File Folder Count4 + Library Folder Count1 + + 7354 + + Track ID7354 + NameCarter Style-Row, Row, Row Your Boat + ArtistHal Leonard + AlbumGuitar Method Book 2 + GenreSoundtrack + KindAAC audio file + Size904284 + Total Time27826 + Disc Number2 + Disc Count3 + Track Number29 + Track Count58 + Year2002 + Date Modified2009-12-06T03:29:39Z + Date Added2009-12-06T03:08:56Z + Bit Rate256 + Sample Rate44100 + Normalization830 + Artwork Count1 + Persistent ID0113B81A78AE836F + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-29%20Carter%20Style-Row,%20Row,%20Row%20Your%20Boat.m4a + File Folder Count4 + Library Folder Count1 + + 7356 + + Track ID7356 + NameMan Of Constant Sorrow + ArtistHal Leonard + AlbumGuitar Method Book 2 + GenreSoundtrack + KindAAC audio file + Size2830047 + Total Time86333 + Disc Number2 + Disc Count3 + Track Number30 + Track Count58 + Year2002 + Date Modified2009-12-06T03:29:39Z + Date Added2009-12-06T03:08:57Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3392787644 + Play Date UTC2011-07-06T03:30:44Z + Normalization1149 + Artwork Count1 + Persistent ID48564069F7BA2D8F + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-30%20Man%20Of%20Constant%20Sorrow.m4a + File Folder Count4 + Library Folder Count1 + + 7358 + + Track ID7358 + NameWildwood Flower + ArtistHal Leonard + AlbumGuitar Method Book 2 + GenreSoundtrack + KindAAC audio file + Size2619132 + Total Time79800 + Disc Number2 + Disc Count3 + Track Number31 + Track Count58 + Year2002 + Date Modified2009-12-06T03:29:39Z + Date Added2009-12-06T03:09:03Z + Bit Rate256 + Sample Rate44100 + Normalization1339 + Artwork Count1 + Persistent IDF2D2D7F6E58C80DB + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-31%20Wildwood%20Flower.m4a + File Folder Count4 + Library Folder Count1 + + 7360 + + Track ID7360 + NameBass Runs-Goin' Down The Road + ArtistHal Leonard + AlbumGuitar Method Book 2 + GenreSoundtrack + KindAAC audio file + Size827555 + Total Time26946 + Disc Number2 + Disc Count3 + Track Number32 + Track Count58 + Year2002 + Date Modified2009-12-06T03:29:39Z + Date Added2009-12-06T03:09:08Z + Bit Rate256 + Sample Rate44100 + Normalization2617 + Artwork Count1 + Persistent ID185581C80606379F + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-32%20Bass%20Runs-Goin'%20Down%20The%20Road.m4a + File Folder Count4 + Library Folder Count1 + + 7362 + + Track ID7362 + NameB7-We Three Kings + ArtistHal Leonard + AlbumGuitar Method Book 2 + GenreSoundtrack + KindAAC audio file + Size971789 + Total Time29720 + Disc Number2 + Disc Count3 + Track Number33 + Track Count58 + Year2002 + Date Modified2009-12-06T03:29:39Z + Date Added2009-12-06T03:09:09Z + Bit Rate256 + Sample Rate44100 + Normalization2282 + Artwork Count1 + Persistent IDE15D0E745D13AD5F + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-33%20B7-We%20Three%20Kings.m4a + File Folder Count4 + Library Folder Count1 + + 7364 + + Track ID7364 + NameE- By The Waters Of Babylon + ArtistHal Leonard + AlbumGuitar Method Book 2 + GenreSoundtrack + KindAAC audio file + Size1424197 + Total Time44266 + Disc Number2 + Disc Count3 + Track Number34 + Track Count58 + Year2002 + Date Modified2009-12-06T03:29:39Z + Date Added2009-12-06T03:09:11Z + Bit Rate256 + Sample Rate44100 + Normalization2588 + Artwork Count1 + Persistent IDEEE392439E44412C + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-34%20E-%20By%20The%20Waters%20Of%20Babylon.m4a + File Folder Count4 + Library Folder Count1 + + 7366 + + Track ID7366 + NameE-Battle Hymn Of The Republic + ArtistHal Leonard + AlbumGuitar Method Book 2 + GenreSoundtrack + KindAAC audio file + Size896422 + Total Time27173 + Disc Number2 + Disc Count3 + Track Number35 + Track Count58 + Year2002 + Date Modified2009-12-06T03:29:39Z + Date Added2009-12-06T03:09:14Z + Bit Rate256 + Sample Rate44100 + Normalization2154 + Artwork Count1 + Persistent ID18843F9F6B0355F8 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-35%20E-Battle%20Hymn%20Of%20The%20Republic.m4a + File Folder Count4 + Library Folder Count1 + + 7368 + + Track ID7368 + NameJesu, Joy Of Man's Desiring(Triplets) + ArtistHal Leonard + AlbumGuitar Method Book 2 + GenreSoundtrack + KindAAC audio file + Size1157258 + Total Time31653 + Disc Number2 + Disc Count3 + Track Number36 + Track Count58 + Year2002 + Date Modified2009-12-06T03:29:39Z + Date Added2009-12-06T03:09:16Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3392224362 + Play Date UTC2011-06-29T15:02:42Z + Normalization1942 + Artwork Count1 + Persistent ID4EF58C4888A0B51D + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-36%20Jesu,%20Joy%20Of%20Man's%20Desiring(Triplets).m4a + File Folder Count4 + Library Folder Count1 + + 7370 + + Track ID7370 + Nameshuffle-Deep Blues + ArtistHal Leonard + AlbumGuitar Method Book 2 + GenreSoundtrack + KindAAC audio file + Size362598 + Total Time12546 + Disc Number2 + Disc Count3 + Track Number37 + Track Count58 + Year2002 + Date Modified2009-12-06T03:29:39Z + Date Added2009-12-06T03:09:18Z + Bit Rate256 + Sample Rate44100 + Normalization4187 + Artwork Count1 + Persistent ID7C037B1A826550C4 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-37%20shuffle-Deep%20Blues.m4a + File Folder Count4 + Library Folder Count1 + + 7372 + + Track ID7372 + NameLost In The Shuffle + ArtistHal Leonard + AlbumGuitar Method Book 2 + GenreSoundtrack + KindAAC audio file + Size2120654 + Total Time66266 + Disc Number2 + Disc Count3 + Track Number38 + Track Count58 + Year2002 + Date Modified2009-12-06T03:29:39Z + Date Added2009-12-06T03:09:19Z + Bit Rate256 + Sample Rate44100 + Normalization4521 + Artwork Count1 + Persistent ID034393BC8154E4A4 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-38%20Lost%20In%20The%20Shuffle.m4a + File Folder Count4 + Library Folder Count1 + + 7374 + + Track ID7374 + NamePentatonicScale- Rock Lick + ArtistHal Leonard + AlbumGuitar Method Book 2 + GenreSoundtrack + KindAAC audio file + Size441832 + Total Time14573 + Disc Number2 + Disc Count3 + Track Number39 + Track Count58 + Year2002 + Date Modified2009-12-06T03:29:39Z + Date Added2009-12-06T03:09:23Z + Bit Rate256 + Sample Rate44100 + Normalization14522 + Artwork Count1 + Persistent ID29F5F10A23C11D9D + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-39%20PentatonicScale-%20Rock%20Lick.m4a + File Folder Count4 + Library Folder Count1 + + 7376 + + Track ID7376 + NameCountry/Rock Lick + ArtistHal Leonard + AlbumGuitar Method Book 2 + GenreSoundtrack + KindAAC audio file + Size344018 + Total Time11093 + Disc Number2 + Disc Count3 + Track Number40 + Track Count58 + Year2002 + Date Modified2009-12-06T03:29:39Z + Date Added2009-12-06T03:09:24Z + Bit Rate256 + Sample Rate44100 + Normalization10784 + Artwork Count1 + Persistent ID11328196E28A6624 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-40%20Country_Rock%20Lick.m4a + File Folder Count4 + Library Folder Count1 + + 7378 + + Track ID7378 + NameHard Rock Lick + ArtistHal Leonard + AlbumGuitar Method Book 2 + GenreSoundtrack + KindAAC audio file + Size444111 + Total Time14560 + Disc Number2 + Disc Count3 + Track Number41 + Track Count58 + Year2002 + Date Modified2009-12-06T03:29:39Z + Date Added2009-12-06T03:09:25Z + Bit Rate256 + Sample Rate44100 + Normalization12880 + Artwork Count1 + Persistent ID4C763DD4F2659BFC + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-41%20Hard%20Rock%20Lick.m4a + File Folder Count4 + Library Folder Count1 + + 7380 + + Track ID7380 + NameBluegrass Lick + ArtistHal Leonard + AlbumGuitar Method Book 2 + GenreSoundtrack + KindAAC audio file + Size294050 + Total Time10240 + Disc Number2 + Disc Count3 + Track Number42 + Track Count58 + Year2002 + Date Modified2009-12-06T03:29:39Z + Date Added2009-12-06T03:09:26Z + Bit Rate256 + Sample Rate44100 + Normalization829 + Artwork Count1 + Persistent IDCD15579B8CDA191E + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-42%20Bluegrass%20Lick.m4a + File Folder Count4 + Library Folder Count1 + + 7382 + + Track ID7382 + NameCountry Lick + ArtistHal Leonard + AlbumGuitar Method Book 2 + GenreSoundtrack + KindAAC audio file + Size290796 + Total Time11213 + Disc Number2 + Disc Count3 + Track Number43 + Track Count58 + Year2002 + Date Modified2009-12-06T03:29:39Z + Date Added2009-12-06T03:09:27Z + Bit Rate256 + Sample Rate44100 + Normalization2653 + Artwork Count1 + Persistent ID5CBE6129DEFF49D1 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-43%20Country%20Lick.m4a + File Folder Count4 + Library Folder Count1 + + 7384 + + Track ID7384 + NameBlues Lick + ArtistHal Leonard + AlbumGuitar Method Book 2 + GenreSoundtrack + KindAAC audio file + Size273749 + Total Time12106 + Disc Number2 + Disc Count3 + Track Number44 + Track Count58 + Year2002 + Date Modified2009-12-06T03:29:39Z + Date Added2009-12-06T03:09:28Z + Bit Rate256 + Sample Rate44100 + Normalization1064 + Artwork Count1 + Persistent IDBA4AFE1AE84C6B1E + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-44%20Blues%20Lick.m4a + File Folder Count4 + Library Folder Count1 + + 7386 + + Track ID7386 + NameRock 'n' Roll Lick + ArtistHal Leonard + AlbumGuitar Method Book 2 + GenreSoundtrack + KindAAC audio file + Size278169 + Total Time10453 + Disc Number2 + Disc Count3 + Track Number45 + Track Count58 + Year2002 + Date Modified2009-12-06T03:29:39Z + Date Added2009-12-06T03:09:29Z + Bit Rate256 + Sample Rate44100 + Normalization6361 + Artwork Count1 + Persistent ID68865383ED174321 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-45%20Rock%20'n'%20Roll%20Lick.m4a + File Folder Count4 + Library Folder Count1 + + 7388 + + Track ID7388 + NameBlues/Rock Lick + ArtistHal Leonard + AlbumGuitar Method Book 2 + GenreSoundtrack + KindAAC audio file + Size327627 + Total Time11573 + Disc Number2 + Disc Count3 + Track Number46 + Track Count58 + Year2002 + Date Modified2009-12-06T03:29:38Z + Date Added2009-12-06T03:09:30Z + Bit Rate256 + Sample Rate44100 + Normalization9592 + Artwork Count1 + Persistent ID1D59ADF3DE1F68BC + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-46%20Blues_Rock%20Lick.m4a + File Folder Count4 + Library Folder Count1 + + 7390 + + Track ID7390 + NamePentatonic Lead Guitar + ArtistHal Leonard + AlbumGuitar Method Book 2 + GenreSoundtrack + KindAAC audio file + Size3105133 + Total Time92853 + Disc Number2 + Disc Count3 + Track Number47 + Track Count58 + Year2002 + Date Modified2009-12-06T03:29:38Z + Date Added2009-12-06T03:09:31Z + Bit Rate256 + Sample Rate44100 + Normalization2583 + Artwork Count1 + Persistent ID3E976175CD8C9307 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-47%20Pentatonic%20Lead%20Guitar.m4a + File Folder Count4 + Library Folder Count1 + + 7392 + + Track ID7392 + NameOpen Jam + ArtistHal Leonard + AlbumGuitar Method Book 2 + GenreSoundtrack + KindAAC audio file + Size3360915 + Total Time103200 + Disc Number2 + Disc Count3 + Track Number48 + Track Count58 + Year2002 + Date Modified2009-12-06T03:29:38Z + Date Added2009-12-06T03:09:36Z + Bit Rate256 + Sample Rate44100 + Normalization1216 + Artwork Count1 + Persistent ID9544761F4AF0F2AD + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-48%20Open%20Jam.m4a + File Folder Count4 + Library Folder Count1 + + 7394 + + Track ID7394 + NamePop Riff + ArtistHal Leonard + AlbumGuitar Method Book 2 + GenreSoundtrack + KindAAC audio file + Size535121 + Total Time15466 + Disc Number2 + Disc Count3 + Track Number49 + Track Count58 + Year2002 + Date Modified2009-12-06T03:29:38Z + Date Added2009-12-06T03:09:42Z + Bit Rate256 + Sample Rate44100 + Normalization1544 + Artwork Count1 + Persistent ID7107CCB48420BA91 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-49%20Pop%20Riff.m4a + File Folder Count4 + Library Folder Count1 + + 7396 + + Track ID7396 + NameEarly Rock Riff + ArtistHal Leonard + AlbumGuitar Method Book 2 + GenreSoundtrack + KindAAC audio file + Size460704 + Total Time14426 + Disc Number2 + Disc Count3 + Track Number50 + Track Count58 + Year2002 + Date Modified2009-12-06T03:29:38Z + Date Added2009-12-06T03:09:43Z + Bit Rate256 + Sample Rate44100 + Normalization3242 + Artwork Count1 + Persistent ID879E294FB9F00F95 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-50%20Early%20Rock%20Riff.m4a + File Folder Count4 + Library Folder Count1 + + 7398 + + Track ID7398 + NameHard Rock Riff + ArtistHal Leonard + AlbumGuitar Method Book 2 + GenreSoundtrack + KindAAC audio file + Size439136 + Total Time12640 + Disc Number2 + Disc Count3 + Track Number51 + Track Count58 + Year2002 + Date Modified2009-12-06T03:29:38Z + Date Added2009-12-06T03:09:46Z + Bit Rate256 + Sample Rate44100 + Normalization5922 + Artwork Count1 + Persistent IDBAC6C3C38822B513 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-51%20Hard%20Rock%20Riff.m4a + File Folder Count4 + Library Folder Count1 + + 7400 + + Track ID7400 + NamePop Rock Riff + ArtistHal Leonard + AlbumGuitar Method Book 2 + GenreSoundtrack + KindAAC audio file + Size583220 + Total Time16373 + Disc Number2 + Disc Count3 + Track Number52 + Track Count58 + Year2002 + Date Modified2009-12-06T03:29:38Z + Date Added2009-12-06T03:09:47Z + Bit Rate256 + Sample Rate44100 + Normalization6276 + Artwork Count1 + Persistent ID1A957051DE69BF47 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-52%20Pop%20Rock%20Riff.m4a + File Folder Count4 + Library Folder Count1 + + 7402 + + Track ID7402 + NameRockabilly Riff + ArtistHal Leonard + AlbumGuitar Method Book 2 + GenreSoundtrack + KindAAC audio file + Size511744 + Total Time15306 + Disc Number2 + Disc Count3 + Track Number53 + Track Count58 + Year2002 + Date Modified2009-12-06T03:29:38Z + Date Added2009-12-06T03:09:50Z + Bit Rate256 + Sample Rate44100 + Normalization1606 + Artwork Count1 + Persistent IDCC0C66E3D4CAD004 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-53%20Rockabilly%20Riff.m4a + File Folder Count4 + Library Folder Count1 + + 7404 + + Track ID7404 + NameClassic Rock Riff + ArtistHal Leonard + AlbumGuitar Method Book 2 + GenreSoundtrack + KindAAC audio file + Size817421 + Total Time23240 + Disc Number2 + Disc Count3 + Track Number54 + Track Count58 + Year2002 + Date Modified2009-12-06T03:29:38Z + Date Added2009-12-06T03:09:51Z + Bit Rate256 + Sample Rate44100 + Normalization2874 + Artwork Count1 + Persistent ID786A24CB05D47A14 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-54%20Classic%20Rock%20Riff.m4a + File Folder Count4 + Library Folder Count1 + + 7406 + + Track ID7406 + NameHeavy Rock Riff + ArtistHal Leonard + AlbumGuitar Method Book 2 + GenreSoundtrack + KindAAC audio file + Size928078 + Total Time25866 + Disc Number2 + Disc Count3 + Track Number55 + Track Count58 + Year2002 + Date Modified2009-12-06T03:29:38Z + Date Added2009-12-06T03:09:56Z + Bit Rate256 + Sample Rate44100 + Normalization3229 + Artwork Count1 + Persistent ID4D540F38ED834844 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-55%20Heavy%20Rock%20Riff.m4a + File Folder Count4 + Library Folder Count1 + + 7408 + + Track ID7408 + NameMuted Groove + ArtistHal Leonard + AlbumGuitar Method Book 2 + GenreSoundtrack + KindAAC audio file + Size909532 + Total Time25493 + Disc Number2 + Disc Count3 + Track Number56 + Track Count58 + Year2002 + Date Modified2009-12-06T03:29:38Z + Date Added2009-12-06T03:10:05Z + Bit Rate256 + Sample Rate44100 + Normalization8675 + Artwork Count1 + Persistent IDBE1C166D871AEEAD + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-56%20Muted%20Groove.m4a + File Folder Count4 + Library Folder Count1 + + 7410 + + Track ID7410 + NameAccented Rhythm + ArtistHal Leonard + AlbumGuitar Method Book 2 + GenreSoundtrack + KindAAC audio file + Size606559 + Total Time17960 + Disc Number2 + Disc Count3 + Track Number57 + Track Count58 + Year2002 + Date Modified2009-12-06T03:29:38Z + Date Added2009-12-06T03:10:08Z + Bit Rate256 + Sample Rate44100 + Normalization7344 + Artwork Count1 + Persistent IDCAC5D76BCA86EE7F + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-57%20Accented%20Rhythm.m4a + File Folder Count4 + Library Folder Count1 + + 7412 + + Track ID7412 + NameGrand Finale #2 + ArtistHal Leonard + AlbumGuitar Method Book 2 + GenreSoundtrack + KindAAC audio file + Size3152908 + Total Time86386 + Disc Number2 + Disc Count3 + Track Number58 + Track Count58 + Year2002 + Date Modified2009-12-06T03:29:38Z + Date Added2009-12-06T03:10:10Z + Bit Rate256 + Sample Rate44100 + Normalization6216 + Artwork Count1 + Persistent IDE2824151495F6B6F + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-58%20Grand%20Finale%20%232.m4a + File Folder Count4 + Library Folder Count1 + + 7414 + + Track ID7414 + NameTrack 1: Tuning Notes + ArtistHal Leonard + AlbumGuitar Method Book 3 + GenreSoundtrack + KindAAC audio file + Size1923525 + Total Time59600 + Disc Number3 + Disc Count3 + Track Number1 + Track Count61 + Year2002 + Date Modified2009-12-06T03:29:38Z + Date Added2009-12-06T03:20:53Z + Bit Rate256 + Sample Rate44100 + Normalization671 + Artwork Count1 + Persistent ID064D322223B3EEE5 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-01%20Track%201_%20Tuning%20Notes.m4a + File Folder Count4 + Library Folder Count1 + + 7416 + + Track ID7416 + NameTrack 2: Chord Progression 1 + ArtistHal Leonard + AlbumGuitar Method Book 3 + GenreSoundtrack + KindAAC audio file + Size3347384 + Total Time103626 + Disc Number3 + Disc Count3 + Track Number2 + Track Count61 + Year2002 + Date Modified2009-12-06T03:29:38Z + Date Added2009-12-06T03:21:06Z + Bit Rate256 + Sample Rate44100 + Normalization1357 + Artwork Count1 + Persistent ID50BDCB1FDC6CCFE8 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-02%20Track%202_%20Chord%20Progression%201.m4a + File Folder Count4 + Library Folder Count1 + + 7418 + + Track ID7418 + NameTrack 3: Chord Progression 2 + ArtistHal Leonard + AlbumGuitar Method Book 3 + GenreSoundtrack + KindAAC audio file + Size2492688 + Total Time78400 + Disc Number3 + Disc Count3 + Track Number3 + Track Count61 + Year2002 + Date Modified2009-12-06T03:29:37Z + Date Added2009-12-06T03:21:25Z + Bit Rate256 + Sample Rate44100 + Normalization1158 + Artwork Count1 + Persistent ID170C380B2DA04940 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-03%20Track%203_%20Chord%20Progression%202.m4a + File Folder Count4 + Library Folder Count1 + + 7420 + + Track ID7420 + NameTrack 4: Chord Progression 3 + ArtistHal Leonard + AlbumGuitar Method Book 3 + GenreSoundtrack + KindAAC audio file + Size2490885 + Total Time69013 + Disc Number3 + Disc Count3 + Track Number4 + Track Count61 + Year2002 + Date Modified2009-12-06T03:29:37Z + Date Added2009-12-06T03:21:40Z + Bit Rate256 + Sample Rate44100 + Normalization1223 + Artwork Count1 + Persistent ID8AEC6D347C895293 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-04%20Track%204_%20Chord%20Progression%203.m4a + File Folder Count4 + Library Folder Count1 + + 7422 + + Track ID7422 + NameTrack 5: The First Noel + ArtistHal Leonard + AlbumGuitar Method Book 3 + GenreSoundtrack + KindAAC audio file + Size1599783 + Total Time43706 + Disc Number3 + Disc Count3 + Track Number5 + Track Count61 + Year2002 + Date Modified2009-12-06T03:29:37Z + Date Added2009-12-06T03:21:52Z + Bit Rate256 + Sample Rate44100 + Normalization1174 + Artwork Count1 + Persistent ID77F6248F3A72C990 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-05%20Track%205_%20The%20First%20Noel.m4a + File Folder Count4 + Library Folder Count1 + + 7424 + + Track ID7424 + NameTrack 6: Riff In D + ArtistHal Leonard + AlbumGuitar Method Book 3 + GenreSoundtrack + KindAAC audio file + Size1263986 + Total Time39226 + Disc Number3 + Disc Count3 + Track Number6 + Track Count61 + Year2002 + Date Modified2009-12-06T03:29:37Z + Date Added2009-12-06T03:22:00Z + Bit Rate256 + Sample Rate44100 + Normalization3721 + Artwork Count1 + Persistent IDDF20399457D6A48C + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-06%20Track%206_%20Riff%20In%20D.m4a + File Folder Count4 + Library Folder Count1 + + 7426 + + Track ID7426 + NameTrack 7: Arkansas Traveler + ArtistHal Leonard + AlbumGuitar Method Book 3 + GenreSoundtrack + KindAAC audio file + Size3983475 + Total Time119560 + Disc Number3 + Disc Count3 + Track Number7 + Track Count61 + Year2002 + Date Modified2009-12-06T03:29:37Z + Date Added2009-12-06T03:22:07Z + Bit Rate256 + Sample Rate44100 + Normalization3091 + Artwork Count1 + Persistent IDB28D30636F9C203F + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-07%20Track%207_%20Arkansas%20Traveler.m4a + File Folder Count4 + Library Folder Count1 + + 7428 + + Track ID7428 + NameTrack 8: Exotic Rock + ArtistHal Leonard + AlbumGuitar Method Book 3 + GenreSoundtrack + KindAAC audio file + Size1141083 + Total Time33960 + Disc Number3 + Disc Count3 + Track Number8 + Track Count61 + Year2002 + Date Modified2009-12-06T03:29:37Z + Date Added2009-12-06T03:22:27Z + Bit Rate256 + Sample Rate44100 + Normalization3288 + Artwork Count1 + Persistent IDC821211A1C858630 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-08%20Track%208_%20Exotic%20Rock.m4a + File Folder Count4 + Library Folder Count1 + + 7430 + + Track ID7430 + NameTrack 9: Freedom Rock + ArtistHal Leonard + AlbumGuitar Method Book 3 + GenreSoundtrack + KindAAC audio file + Size1005183 + Total Time30053 + Disc Number3 + Disc Count3 + Track Number9 + Track Count61 + Year2002 + Date Modified2009-12-06T03:29:37Z + Date Added2009-12-06T03:22:33Z + Bit Rate256 + Sample Rate44100 + Normalization2677 + Artwork Count1 + Persistent IDAE808E564B87D349 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-09%20Track%209_%20Freedom%20Rock.m4a + File Folder Count4 + Library Folder Count1 + + 7432 + + Track ID7432 + NameTrack 1 : Eine Kleine Nachtmusik + ArtistHal Leonard + AlbumGuitar Method Book 3 + GenreSoundtrack + KindAAC audio file + Size1501482 + Total Time45560 + Disc Number3 + Disc Count3 + Track Number10 + Track Count61 + Year2002 + Date Modified2009-12-06T03:29:37Z + Date Added2009-12-06T03:22:38Z + Bit Rate256 + Sample Rate44100 + Normalization1088 + Artwork Count1 + Persistent IDFCB2A68B0E86FBF7 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-10%20Track%201%20_%20Eine%20Kleine%20Nachtmusik.m4a + File Folder Count4 + Library Folder Count1 + + 7434 + + Track ID7434 + NameTrack 11: Tramp, Tramp, Tramp + ArtistHal Leonard + AlbumGuitar Method Book 3 + GenreSoundtrack + KindAAC audio file + Size1422642 + Total Time43533 + Disc Number3 + Disc Count3 + Track Number11 + Track Count61 + Year2002 + Date Modified2009-12-06T03:29:37Z + Date Added2009-12-06T03:22:45Z + Bit Rate256 + Sample Rate44100 + Normalization1474 + Artwork Count1 + Persistent IDDC587FAE26637A4D + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-11%20Track%2011_%20Tramp,%20Tramp,%20Tramp.m4a + File Folder Count4 + Library Folder Count1 + + 7436 + + Track ID7436 + NameTrack 12: The Entertainer + ArtistHal Leonard + AlbumGuitar Method Book 3 + GenreSoundtrack + KindAAC audio file + Size5148381 + Total Time157120 + Disc Number3 + Disc Count3 + Track Number12 + Track Count61 + Year2002 + Date Modified2009-12-06T03:29:36Z + Date Added2009-12-06T03:22:53Z + Bit Rate256 + Sample Rate44100 + Normalization1310 + Artwork Count1 + Persistent IDD383F6DED981C2DC + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-12%20Track%2012_%20The%20Entertainer.m4a + File Folder Count4 + Library Folder Count1 + + 7438 + + Track ID7438 + NameTrack 13: In The Hall Of The Mountain King + ArtistHal Leonard + AlbumGuitar Method Book 3 + GenreSoundtrack + KindAAC audio file + Size3248760 + Total Time100733 + Disc Number3 + Disc Count3 + Track Number13 + Track Count61 + Year2002 + Date Modified2009-12-06T03:29:36Z + Date Added2009-12-06T03:23:16Z + Bit Rate256 + Sample Rate44100 + Normalization1374 + Artwork Count1 + Persistent ID76768CC5B8BC54A2 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-13%20Track%2013_%20In%20The%20Hall%20Of%20The%20Mountain%20King.m4a + File Folder Count4 + Library Folder Count1 + + 7440 + + Track ID7440 + NameTrack 14: Estudio + ArtistHal Leonard + AlbumGuitar Method Book 3 + GenreSoundtrack + KindAAC audio file + Size1645786 + Total Time50066 + Disc Number3 + Disc Count3 + Track Number14 + Track Count61 + Year2002 + Date Modified2009-12-06T03:29:36Z + Date Added2009-12-06T03:23:30Z + Bit Rate256 + Sample Rate44100 + Normalization579 + Artwork Count1 + Persistent IDA603A612330B8DCB + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-14%20Track%2014_%20Estudio.m4a + File Folder Count4 + Library Folder Count1 + + 7442 + + Track ID7442 + NameTrack 15: St. Louis Blues + ArtistHal Leonard + AlbumGuitar Method Book 3 + GenreSoundtrack + KindAAC audio file + Size4804120 + Total Time147000 + Disc Number3 + Disc Count3 + Track Number15 + Track Count61 + Year2002 + Date Modified2009-12-06T03:29:36Z + Date Added2009-12-06T03:23:37Z + Bit Rate256 + Sample Rate44100 + Normalization1244 + Artwork Count1 + Persistent ID8246DA3EA7D2CD40 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-15%20Track%2015_%20St.%20Louis%20Blues.m4a + File Folder Count4 + Library Folder Count1 + + 7444 + + Track ID7444 + NameTrack 16: Barre CHORDS-Classic Rock + ArtistHal Leonard + AlbumGuitar Method Book 3 + GenreSoundtrack + KindAAC audio file + Size587320 + Total Time19160 + Disc Number3 + Disc Count3 + Track Number16 + Track Count61 + Year2002 + Date Modified2009-12-06T03:29:36Z + Date Added2009-12-06T03:23:57Z + Bit Rate256 + Sample Rate44100 + Normalization2080 + Artwork Count1 + Persistent ID685BFB92FC6F95F0 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-16%20Track%2016_%20Barre%20CHORDS-Classic%20Rock.m4a + File Folder Count4 + Library Folder Count1 + + 7446 + + Track ID7446 + NameTrack 17: Barre CHORDS-Swingin' + ArtistHal Leonard + AlbumGuitar Method Book 3 + GenreSoundtrack + KindAAC audio file + Size1507324 + Total Time47600 + Disc Number3 + Disc Count3 + Track Number17 + Track Count61 + Year2002 + Date Modified2009-12-06T03:29:36Z + Date Added2009-12-06T03:24:00Z + Bit Rate256 + Sample Rate44100 + Normalization821 + Artwork Count1 + Persistent IDE043A4BED73D3BD0 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-17%20Track%2017_%20Barre%20CHORDS-Swingin'.m4a + File Folder Count4 + Library Folder Count1 + + 7448 + + Track ID7448 + NameTrack 18: Barre CHORDS-Alt. Rock + ArtistHal Leonard + AlbumGuitar Method Book 3 + GenreSoundtrack + KindAAC audio file + Size816840 + Total Time24000 + Disc Number3 + Disc Count3 + Track Number18 + Track Count61 + Year2002 + Date Modified2009-12-06T03:29:36Z + Date Added2009-12-06T03:24:07Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3392213686 + Play Date UTC2011-06-29T12:04:46Z + Normalization4169 + Artwork Count1 + Persistent IDB116DB5AEC10BA67 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-18%20Track%2018_%20Barre%20CHORDS-Alt.%20Rock.m4a + File Folder Count4 + Library Folder Count1 + + 7450 + + Track ID7450 + NameTrack 19: Barre CHORDS-Slow Rock + ArtistHal Leonard + AlbumGuitar Method Book 3 + GenreSoundtrack + KindAAC audio file + Size1170787 + Total Time37186 + Disc Number3 + Disc Count3 + Track Number19 + Track Count61 + Year2002 + Date Modified2009-12-06T03:29:35Z + Date Added2009-12-06T03:24:11Z + Bit Rate256 + Sample Rate44100 + Normalization814 + Artwork Count1 + Persistent ID3FFD397C97807E0F + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-19%20Track%2019_%20Barre%20CHORDS-Slow%20Rock.m4a + File Folder Count4 + Library Folder Count1 + + 7452 + + Track ID7452 + NameTrack 20: Barre CHORDS-Minor Groove + ArtistHal Leonard + AlbumGuitar Method Book 3 + GenreSoundtrack + KindAAC audio file + Size857055 + Total Time24480 + Disc Number3 + Disc Count3 + Track Number20 + Track Count61 + Year2002 + Date Modified2009-12-06T03:29:35Z + Date Added2009-12-06T03:24:16Z + Bit Rate256 + Sample Rate44100 + Normalization1094 + Artwork Count1 + Persistent ID41ED4B8760E86436 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-20%20Track%2020_%20Barre%20CHORDS-Minor%20Groove.m4a + File Folder Count4 + Library Folder Count1 + + 7454 + + Track ID7454 + NameTrack 21: Barre CHORDS-Jazzy + ArtistHal Leonard + AlbumGuitar Method Book 3 + GenreSoundtrack + KindAAC audio file + Size668406 + Total Time22093 + Disc Number3 + Disc Count3 + Track Number21 + Track Count61 + Year2002 + Date Modified2009-12-06T03:29:35Z + Date Added2009-12-06T03:24:19Z + Bit Rate256 + Sample Rate44100 + Normalization1566 + Artwork Count1 + Persistent IDD54C4813F6EDD883 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-21%20Track%2021_%20Barre%20CHORDS-Jazzy.m4a + File Folder Count4 + Library Folder Count1 + + 7456 + + Track ID7456 + NameTrack 22: Barre CHORDS-Bossa Nova + ArtistHal Leonard + AlbumGuitar Method Book 3 + GenreSoundtrack + KindAAC audio file + Size1302230 + Total Time36786 + Disc Number3 + Disc Count3 + Track Number22 + Track Count61 + Year2002 + Date Modified2009-12-06T03:29:35Z + Date Added2009-12-06T03:24:23Z + Bit Rate256 + Sample Rate44100 + Normalization765 + Artwork Count1 + Persistent ID179A9898AE2C89E4 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-22%20Track%2022_%20Barre%20CHORDS-Bossa%20Nova.m4a + File Folder Count4 + Library Folder Count1 + + 7458 + + Track ID7458 + NameTrack 23: Barre CHORDS-Hard Rock + ArtistHal Leonard + AlbumGuitar Method Book 3 + GenreSoundtrack + KindAAC audio file + Size669900 + Total Time22013 + Disc Number3 + Disc Count3 + Track Number23 + Track Count61 + Year2002 + Date Modified2009-12-06T03:29:35Z + Date Added2009-12-06T03:24:28Z + Bit Rate256 + Sample Rate44100 + Normalization3260 + Artwork Count1 + Persistent ID5AE11CDC3B0AC500 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-23%20Track%2023_%20Barre%20CHORDS-Hard%20Rock.m4a + File Folder Count4 + Library Folder Count1 + + 7460 + + Track ID7460 + NameTrack 24: Barre CHORDS-Barre Exam + ArtistHal Leonard + AlbumGuitar Method Book 3 + GenreSoundtrack + KindAAC audio file + Size574789 + Total Time19440 + Disc Number3 + Disc Count3 + Track Number24 + Track Count61 + Year2002 + Date Modified2009-12-06T03:29:35Z + Date Added2009-12-06T03:24:31Z + Bit Rate256 + Sample Rate44100 + Normalization4327 + Artwork Count1 + Persistent IDD0C5D05DB52AB8E4 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-24%20Track%2024_%20Barre%20CHORDS-Barre%20Exam.m4a + File Folder Count4 + Library Folder Count1 + + 7462 + + Track ID7462 + NameTrack 25: Travis Picking-Sometimes I Feel Like A Motherless Child + ArtistHal Leonard + AlbumGuitar Method Book 3 + GenreSoundtrack + KindAAC audio file + Size1839518 + Total Time50560 + Disc Number3 + Disc Count3 + Track Number25 + Track Count61 + Year2002 + Date Modified2009-12-06T03:29:35Z + Date Added2009-12-06T03:24:34Z + Bit Rate256 + Sample Rate44100 + Normalization1082 + Artwork Count1 + Persistent IDED9FED03822AF2BF + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-25%20Track%2025_%20Travis%20Picking-Sometimes%20I%20Feel%20Like%20A%20Motherless%20Child.m4a + File Folder Count4 + Library Folder Count1 + + 7464 + + Track ID7464 + NameTrack 26: Travis Picking-Freight Train + ArtistHal Leonard + AlbumGuitar Method Book 3 + GenreSoundtrack + KindAAC audio file + Size2592903 + Total Time74506 + Disc Number3 + Disc Count3 + Track Number26 + Track Count61 + Year2002 + Date Modified2009-12-06T03:29:35Z + Date Added2009-12-06T03:24:41Z + Bit Rate256 + Sample Rate44100 + Normalization1552 + Artwork Count1 + Persistent IDF4B3CD9E4F12E791 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-26%20Track%2026_%20Travis%20Picking-Freight%20Train.m4a + File Folder Count4 + Library Folder Count1 + + 7466 + + Track ID7466 + NameTrack 27: Alt.Tuning(Drop D)-Pop/Rock + ArtistHal Leonard + AlbumGuitar Method Book 3 + GenreSoundtrack + KindAAC audio file + Size1098111 + Total Time30906 + Disc Number3 + Disc Count3 + Track Number27 + Track Count61 + Year2002 + Date Modified2009-12-06T03:29:35Z + Date Added2009-12-06T03:24:50Z + Bit Rate256 + Sample Rate44100 + Normalization1924 + Artwork Count1 + Persistent ID3A8FE549D08AECBC + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-27%20Track%2027_%20Alt.Tuning(Drop%20D)-Pop_Rock.m4a + File Folder Count4 + Library Folder Count1 + + 7468 + + Track ID7468 + NameTrack 28: Alt.Tuning-Grunge + ArtistHal Leonard + AlbumGuitar Method Book 3 + GenreSoundtrack + KindAAC audio file + Size996774 + Total Time26973 + Disc Number3 + Disc Count3 + Track Number28 + Track Count61 + Year2002 + Date Modified2009-12-06T03:29:35Z + Date Added2009-12-06T03:24:54Z + Bit Rate256 + Sample Rate44100 + Normalization6013 + Artwork Count1 + Persistent IDF03775B6FD9E70F0 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-28%20Track%2028_%20Alt.Tuning-Grunge.m4a + File Folder Count4 + Library Folder Count1 + + 7470 + + Track ID7470 + NameTrack 29: Alt.Tuning-Folk Rock + ArtistHal Leonard + AlbumGuitar Method Book 3 + GenreSoundtrack + KindAAC audio file + Size1140276 + Total Time33746 + Disc Number3 + Disc Count3 + Track Number29 + Track Count61 + Year2002 + Date Modified2009-12-06T03:29:35Z + Date Added2009-12-06T03:24:58Z + Bit Rate256 + Sample Rate44100 + Normalization1164 + Artwork Count1 + Persistent ID2D338DAA726F09DF + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-29%20Track%2029_%20Alt.Tuning-Folk%20Rock.m4a + File Folder Count4 + Library Folder Count1 + + 7472 + + Track ID7472 + NameTrack 30: Miss McLeod's Reel-Moveable Scales + ArtistHal Leonard + AlbumGuitar Method Book 3 + GenreSoundtrack + KindAAC audio file + Size1412367 + Total Time41453 + Disc Number3 + Disc Count3 + Track Number30 + Track Count61 + Year2002 + Date Modified2009-12-06T03:29:35Z + Date Added2009-12-06T03:25:02Z + Bit Rate256 + Sample Rate44100 + Normalization3194 + Artwork Count1 + Persistent ID79E12F45DC098CD2 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-30%20Track%2030_%20Miss%20McLeod's%20Reel-Moveable%20Scales.m4a + File Folder Count4 + Library Folder Count1 + + 7474 + + Track ID7474 + NameTrack 31: God Rest Ye Merry Gentlemen-Moveable Scales + ArtistHal Leonard + AlbumGuitar Method Book 3 + GenreSoundtrack + KindAAC audio file + Size1449500 + Total Time44933 + Disc Number3 + Disc Count3 + Track Number31 + Track Count61 + Year2002 + Date Modified2009-12-06T03:29:35Z + Date Added2009-12-06T03:25:08Z + Bit Rate256 + Sample Rate44100 + Normalization1327 + Artwork Count1 + Persistent IDD8A46213FC5D0C24 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-31%20Track%2031_%20God%20Rest%20Ye%20Merry%20Gentlemen-Moveable%20Scales.m4a + File Folder Count4 + Library Folder Count1 + + 7476 + + Track ID7476 + NameTrack 32: Deep River-Moveable Scales + ArtistHal Leonard + AlbumGuitar Method Book 3 + GenreSoundtrack + KindAAC audio file + Size1513479 + Total Time48960 + Disc Number3 + Disc Count3 + Track Number32 + Track Count61 + Year2002 + Date Modified2009-12-06T03:29:35Z + Date Added2009-12-06T03:25:13Z + Bit Rate256 + Sample Rate44100 + Normalization1182 + Artwork Count1 + Persistent ID9A9E95F5C25AB8C2 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-32%20Track%2032_%20Deep%20River-Moveable%20Scales.m4a + File Folder Count4 + Library Folder Count1 + + 7478 + + Track ID7478 + NameTrack 33: Bouree-Moveable Scales + ArtistHal Leonard + AlbumGuitar Method Book 3 + GenreSoundtrack + KindAAC audio file + Size1301079 + Total Time38160 + Disc Number3 + Disc Count3 + Track Number33 + Track Count61 + Year2002 + Date Modified2009-12-06T03:29:35Z + Date Added2009-12-06T03:25:19Z + Bit Rate256 + Sample Rate44100 + Normalization1162 + Artwork Count1 + Persistent ID182E1A8B3B123349 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-33%20Track%2033_%20Bouree-Moveable%20Scales.m4a + File Folder Count4 + Library Folder Count1 + + 7480 + + Track ID7480 + NameTrack 34: Heavy Rock-Moveable Scales + ArtistHal Leonard + AlbumGuitar Method Book 3 + GenreSoundtrack + KindAAC audio file + Size1155215 + Total Time35746 + Disc Number3 + Disc Count3 + Track Number34 + Track Count61 + Year2002 + Date Modified2009-12-06T03:29:35Z + Date Added2009-12-06T03:25:24Z + Bit Rate256 + Sample Rate44100 + Normalization3565 + Artwork Count1 + Persistent ID604AD9DEB2730DB9 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-34%20Track%2034_%20Heavy%20Rock-Moveable%20Scales.m4a + File Folder Count4 + Library Folder Count1 + + 7482 + + Track ID7482 + NameTrack 35: Jazzin' The Blues-Moveable Scales + ArtistHal Leonard + AlbumGuitar Method Book 3 + GenreSoundtrack + KindAAC audio file + Size1062935 + Total Time33693 + Disc Number3 + Disc Count3 + Track Number35 + Track Count61 + Year2002 + Date Modified2009-12-06T03:29:35Z + Date Added2009-12-06T03:25:29Z + Bit Rate256 + Sample Rate44100 + Normalization1150 + Artwork Count1 + Persistent ID0910FA577760F17A + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-35%20Track%2035_%20Jazzin'%20The%20Blues-Moveable%20Scales.m4a + File Folder Count4 + Library Folder Count1 + + 7484 + + Track ID7484 + NameTrack 36: F-Sloop John B. + ArtistHal Leonard + AlbumGuitar Method Book 3 + GenreSoundtrack + KindAAC audio file + Size2015003 + Total Time59186 + Disc Number3 + Disc Count3 + Track Number36 + Track Count61 + Year2002 + Date Modified2009-12-06T03:29:34Z + Date Added2009-12-06T03:25:33Z + Bit Rate256 + Sample Rate44100 + Normalization1306 + Artwork Count1 + Persistent IDB915D705FB4FA40B + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-36%20Track%2036_%20F-Sloop%20John%20B..m4a + File Folder Count4 + Library Folder Count1 + + 7486 + + Track ID7486 + NameTrack 37: I Saw Three Ships + ArtistHal Leonard + AlbumGuitar Method Book 3 + GenreSoundtrack + KindAAC audio file + Size603539 + Total Time19626 + Disc Number3 + Disc Count3 + Track Number37 + Track Count61 + Year2002 + Date Modified2009-12-06T03:29:34Z + Date Added2009-12-06T03:25:40Z + Bit Rate256 + Sample Rate44100 + Normalization1822 + Artwork Count1 + Persistent ID5713D77478B8A988 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-37%20Track%2037_%20I%20Saw%20Three%20Ships.m4a + File Folder Count4 + Library Folder Count1 + + 7488 + + Track ID7488 + NameTrack 38: 12/8 time-Slow Blues + ArtistHal Leonard + AlbumGuitar Method Book 3 + GenreSoundtrack + KindAAC audio file + Size1768125 + Total Time54946 + Disc Number3 + Disc Count3 + Track Number38 + Track Count61 + Year2002 + Date Modified2009-12-06T03:29:34Z + Date Added2009-12-06T03:25:43Z + Bit Rate256 + Sample Rate44100 + Normalization1018 + Artwork Count1 + Persistent ID69EBA61C17B575F7 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-38%20Track%2038_%2012_8%20time-Slow%20Blues.m4a + File Folder Count4 + Library Folder Count1 + + 7490 + + Track ID7490 + NameTrack 39: Hammer-On/Bouncy Blues + ArtistHal Leonard + AlbumGuitar Method Book 3 + GenreSoundtrack + KindAAC audio file + Size483166 + Total Time14866 + Disc Number3 + Disc Count3 + Track Number39 + Track Count61 + Year2002 + Date Modified2009-12-06T03:29:34Z + Date Added2009-12-06T03:25:49Z + Bit Rate256 + Sample Rate44100 + Normalization1094 + Artwork Count1 + Persistent IDB17FC6F1778000B3 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-39%20Track%2039_%20Hammer-On_Bouncy%20Blues.m4a + File Folder Count4 + Library Folder Count1 + + 7492 + + Track ID7492 + NameTrack 40: Hammer-On/POWER Chord Slides + ArtistHal Leonard + AlbumGuitar Method Book 3 + GenreSoundtrack + KindAAC audio file + Size877462 + Total Time27053 + Disc Number3 + Disc Count3 + Track Number40 + Track Count61 + Year2002 + Date Modified2009-12-06T03:29:34Z + Date Added2009-12-06T03:25:51Z + Bit Rate256 + Sample Rate44100 + Normalization2003 + Artwork Count1 + Persistent ID5B6F71DEBC322757 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-40%20Track%2040_%20Hammer-On_POWER%20Chord%20Slides.m4a + File Folder Count4 + Library Folder Count1 + + 7494 + + Track ID7494 + NameTrack 40: Hammer-On/Folk Pattern + ArtistHal Leonard + AlbumGuitar Method Book 3 + GenreSoundtrack + KindAAC audio file + Size284709 + Total Time12373 + Disc Number3 + Disc Count3 + Track Number41 + Track Count61 + Year2002 + Date Modified2009-12-06T03:29:34Z + Date Added2009-12-06T03:25:55Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3392224229 + Play Date UTC2011-06-29T15:00:29Z + Normalization767 + Artwork Count1 + Persistent ID4BC9BE648F497F74 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-41%20Track%2040_%20Hammer-On_Folk%20Pattern.m4a + File Folder Count4 + Library Folder Count1 + + 7496 + + Track ID7496 + NameTrack 42: Hammer-On/Rock 'n' Hammer + ArtistHal Leonard + AlbumGuitar Method Book 3 + GenreSoundtrack + KindAAC audio file + Size395001 + Total Time13000 + Disc Number3 + Disc Count3 + Track Number42 + Track Count61 + Year2002 + Date Modified2009-12-06T03:29:34Z + Date Added2009-12-06T03:25:57Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3392224235 + Play Date UTC2011-06-29T15:00:35Z + Normalization6296 + Artwork Count1 + Persistent ID14C4C57FFA2C167D + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-42%20Track%2042_%20Hammer-On_Rock%20'n'%20Hammer.m4a + File Folder Count4 + Library Folder Count1 + + 7498 + + Track ID7498 + NameTrack 43: Hammer-On/Acoustic Rock + ArtistHal Leonard + AlbumGuitar Method Book 3 + GenreSoundtrack + KindAAC audio file + Size583667 + Total Time18213 + Disc Number3 + Disc Count3 + Track Number43 + Track Count61 + Year2002 + Date Modified2009-12-06T03:29:34Z + Date Added2009-12-06T03:25:59Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3392224215 + Play Date UTC2011-06-29T15:00:15Z + Normalization1244 + Artwork Count1 + Persistent IDEE0AC93250051D82 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-43%20Track%2043_%20Hammer-On_Acoustic%20Rock.m4a + File Folder Count4 + Library Folder Count1 + + 7500 + + Track ID7500 + NameTrack 44: Hammer-On/Boogie Blues + ArtistHal Leonard + AlbumGuitar Method Book 3 + GenreSoundtrack + KindAAC audio file + Size343713 + Total Time12173 + Disc Number3 + Disc Count3 + Track Number44 + Track Count61 + Year2002 + Date Modified2009-12-06T03:29:34Z + Date Added2009-12-06T03:26:01Z + Bit Rate256 + Sample Rate44100 + Normalization1176 + Artwork Count1 + Persistent ID12A6C468471D909E + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-44%20Track%2044_%20Hammer-On_Boogie%20Blues.m4a + File Folder Count4 + Library Folder Count1 + + 7502 + + Track ID7502 + NameTrack 45: Pull-Off/POWER Pull + ArtistHal Leonard + AlbumGuitar Method Book 3 + GenreSoundtrack + KindAAC audio file + Size450914 + Total Time14333 + Disc Number3 + Disc Count3 + Track Number45 + Track Count61 + Year2002 + Date Modified2009-12-06T03:29:34Z + Date Added2009-12-06T03:26:03Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3392224196 + Play Date UTC2011-06-29T14:59:56Z + Normalization5863 + Artwork Count1 + Persistent ID16A891361C40870C + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-45%20Track%2045_%20Pull-Off_POWER%20Pull.m4a + File Folder Count4 + Library Folder Count1 + + 7504 + + Track ID7504 + NameTrack 46: Pull-Off/BLUES Waltz + ArtistHal Leonard + AlbumGuitar Method Book 3 + GenreSoundtrack + KindAAC audio file + Size296229 + Total Time11333 + Disc Number3 + Disc Count3 + Track Number46 + Track Count61 + Year2002 + Date Modified2009-12-06T03:29:34Z + Date Added2009-12-06T03:26:05Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3392224247 + Play Date UTC2011-06-29T15:00:47Z + Normalization1232 + Artwork Count1 + Persistent ID433E8D5D2DF305CB + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-46%20Track%2046_%20Pull-Off_BLUES%20Waltz.m4a + File Folder Count4 + Library Folder Count1 + + 7506 + + Track ID7506 + NameTrack 47: Pull-Off/BLUEGRASS RUN + ArtistHal Leonard + AlbumGuitar Method Book 3 + GenreSoundtrack + KindAAC audio file + Size1657571 + Total Time46826 + Disc Number3 + Disc Count3 + Track Number47 + Track Count61 + Year2002 + Date Modified2009-12-06T03:29:34Z + Date Added2009-12-06T03:26:07Z + Bit Rate256 + Sample Rate44100 + Normalization1289 + Artwork Count1 + Persistent ID714D5411A99AAC80 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-47%20Track%2047_%20Pull-Off_BLUEGRASS%20RUN.m4a + File Folder Count4 + Library Folder Count1 + + 7508 + + Track ID7508 + NameTrack 48: Pull-Off/ROCK Lick + ArtistHal Leonard + AlbumGuitar Method Book 3 + GenreSoundtrack + KindAAC audio file + Size292683 + Total Time11266 + Disc Number3 + Disc Count3 + Track Number48 + Track Count61 + Year2002 + Date Modified2009-12-06T03:29:34Z + Date Added2009-12-06T03:26:12Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3392224259 + Play Date UTC2011-06-29T15:00:59Z + Normalization3452 + Artwork Count1 + Persistent ID1AF1C5FDE9CC742C + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-48%20Track%2048_%20Pull-Off_ROCK%20Lick.m4a + File Folder Count4 + Library Folder Count1 + + 7510 + + Track ID7510 + NameTrack 49: Pull-Off/SWAMPY Blues + ArtistHal Leonard + AlbumGuitar Method Book 3 + GenreSoundtrack + KindAAC audio file + Size371181 + Total Time12573 + Disc Number3 + Disc Count3 + Track Number49 + Track Count61 + Year2002 + Date Modified2009-12-06T03:29:34Z + Date Added2009-12-06T03:26:14Z + Bit Rate256 + Sample Rate44100 + Normalization3080 + Artwork Count1 + Persistent IDAEF2CCBBE63DC1E4 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-49%20Track%2049_%20Pull-Off_SWAMPY%20Blues.m4a + File Folder Count4 + Library Folder Count1 + + 7512 + + Track ID7512 + NameTrack 50: Pull-Off/DOUBLE-STOP Bend + ArtistHal Leonard + AlbumGuitar Method Book 3 + GenreSoundtrack + KindAAC audio file + Size250670 + Total Time10026 + Disc Number3 + Disc Count3 + Track Number50 + Track Count61 + Year2002 + Date Modified2009-12-06T03:29:34Z + Date Added2009-12-06T03:26:16Z + Bit Rate256 + Sample Rate44100 + Normalization2954 + Artwork Count1 + Persistent IDFEE3093C8D5BC8C5 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-50%20Track%2050_%20Pull-Off_DOUBLE-STOP%20Bend.m4a + File Folder Count4 + Library Folder Count1 + + 7514 + + Track ID7514 + NameTrack 51: Jam Session-POP/ROCK Ballad + ArtistHal Leonard + AlbumGuitar Method Book 3 + GenreSoundtrack + KindAAC audio file + Size2787793 + Total Time86013 + Disc Number3 + Disc Count3 + Track Number51 + Track Count61 + Year2002 + Date Modified2009-12-06T03:29:34Z + Date Added2009-12-06T03:26:17Z + Bit Rate256 + Sample Rate44100 + Normalization1471 + Artwork Count1 + Persistent ID09F719DB47934807 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-51%20Track%2051_%20Jam%20Session-POP_ROCK%20Ballad.m4a + File Folder Count4 + Library Folder Count1 + + 7516 + + Track ID7516 + NameTrack 52: Jam Session/FUNK + ArtistHal Leonard + AlbumGuitar Method Book 3 + GenreSoundtrack + KindAAC audio file + Size2868720 + Total Time89213 + Disc Number3 + Disc Count3 + Track Number52 + Track Count61 + Year2002 + Date Modified2009-12-06T03:29:34Z + Date Added2009-12-06T03:26:27Z + Bit Rate256 + Sample Rate44100 + Normalization2715 + Artwork Count1 + Persistent ID9FA7F86440671EFA + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-52%20Track%2052_%20Jam%20Session_FUNK.m4a + File Folder Count4 + Library Folder Count1 + + 7518 + + Track ID7518 + NameTrack 53: Jam Session/SMOOTH Jazz + ArtistHal Leonard + AlbumGuitar Method Book 3 + GenreSoundtrack + KindAAC audio file + Size3300717 + Total Time102266 + Disc Number3 + Disc Count3 + Track Number53 + Track Count61 + Year2002 + Date Modified2009-12-06T03:29:34Z + Date Added2009-12-06T03:26:36Z + Bit Rate256 + Sample Rate44100 + Normalization1013 + Artwork Count1 + Persistent ID44CE8B0F6AD7C5E7 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-53%20Track%2053_%20Jam%20Session_SMOOTH%20Jazz.m4a + File Folder Count4 + Library Folder Count1 + + 7520 + + Track ID7520 + NameTrack 54: Jam Session/LATIN Rock + ArtistHal Leonard + AlbumGuitar Method Book 3 + GenreSoundtrack + KindAAC audio file + Size2096810 + Total Time65680 + Disc Number3 + Disc Count3 + Track Number54 + Track Count61 + Year2002 + Date Modified2009-12-06T03:29:33Z + Date Added2009-12-06T03:26:47Z + Bit Rate256 + Sample Rate44100 + Normalization2643 + Artwork Count1 + Persistent ID0A4ACF78A71369CD + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-54%20Track%2054_%20Jam%20Session_LATIN%20Rock.m4a + File Folder Count4 + Library Folder Count1 + + 7522 + + Track ID7522 + NameTrack 55: Jam Session/COUNTRY + ArtistHal Leonard + AlbumGuitar Method Book 3 + GenreSoundtrack + KindAAC audio file + Size2020550 + Total Time63533 + Disc Number3 + Disc Count3 + Track Number55 + Track Count61 + Year2002 + Date Modified2009-12-06T03:29:33Z + Date Added2009-12-06T03:26:54Z + Bit Rate256 + Sample Rate44100 + Normalization2636 + Artwork Count1 + Persistent IDA9C2D55DED3F0CFD + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-55%20Track%2055_%20Jam%20Session_COUNTRY.m4a + File Folder Count4 + Library Folder Count1 + + 7524 + + Track ID7524 + NameTrack 56: Jam Session/JAZZ Waltz + ArtistHal Leonard + AlbumGuitar Method Book 3 + GenreSoundtrack + KindAAC audio file + Size1163484 + Total Time36773 + Disc Number3 + Disc Count3 + Track Number56 + Track Count61 + Year2002 + Date Modified2009-12-06T03:29:33Z + Date Added2009-12-06T03:27:01Z + Bit Rate256 + Sample Rate44100 + Normalization1216 + Artwork Count1 + Persistent ID02B70AC2A2113D9B + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-56%20Track%2056_%20Jam%20Session_JAZZ%20Waltz.m4a + File Folder Count4 + Library Folder Count1 + + 7526 + + Track ID7526 + NameTrack 57: Jam Session/REGGAE + ArtistHal Leonard + AlbumGuitar Method Book 3 + GenreSoundtrack + KindAAC audio file + Size2491261 + Total Time77026 + Disc Number3 + Disc Count3 + Track Number57 + Track Count61 + Year2002 + Date Modified2009-12-06T03:29:33Z + Date Added2009-12-06T03:27:05Z + Bit Rate256 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Persistent ID2EBBEA6FC0965E45 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-57%20Track%2057_%20Jam%20Session_REGGAE.m4a + File Folder Count4 + Library Folder Count1 + + 7528 + + Track ID7528 + NameTrack 58: Jam Session/HARD Rock + ArtistHal Leonard + AlbumGuitar Method Book 3 + GenreSoundtrack + KindAAC audio file + Size2305011 + Total Time71453 + Disc Number3 + Disc Count3 + Track Number58 + Track Count61 + Year2002 + Date Modified2009-12-06T03:29:33Z + Date Added2009-12-06T03:27:13Z + Bit Rate256 + Sample Rate44100 + Normalization8565 + Artwork Count1 + Persistent ID80806C1C8FDB303C + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-58%20Track%2058_%20Jam%20Session_HARD%20Rock.m4a + File Folder Count4 + Library Folder Count1 + + 7530 + + Track ID7530 + NameTrack 59: Jam Session/BLUES + ArtistHal Leonard + AlbumGuitar Method Book 3 + GenreSoundtrack + KindAAC audio file + Size2506402 + Total Time68573 + Disc Number3 + Disc Count3 + Track Number59 + Track Count61 + Year2002 + Date Modified2009-12-06T03:29:33Z + Date Added2009-12-06T03:27:20Z + Bit Rate256 + Sample Rate44100 + Normalization1198 + Artwork Count1 + Persistent ID3E3CD9DA4C5834E9 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-59%20Track%2059_%20Jam%20Session_BLUES.m4a + File Folder Count4 + Library Folder Count1 + + 7532 + + Track ID7532 + NameTrack 60: Jam Session/JAZZ Rock + ArtistHal Leonard + AlbumGuitar Method Book 3 + GenreSoundtrack + KindAAC audio file + Size2795585 + Total Time87653 + Disc Number3 + Disc Count3 + Track Number60 + Track Count61 + Year2002 + Date Modified2009-12-06T03:29:33Z + Date Added2009-12-06T03:27:28Z + Bit Rate256 + Sample Rate44100 + Normalization1211 + Artwork Count1 + Persistent IDC1E0367553A8C1E8 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-60%20Track%2060_%20Jam%20Session_JAZZ%20Rock.m4a + File Folder Count4 + Library Folder Count1 + + 7534 + + Track ID7534 + NameTrack 61: Grand Finale #3 + ArtistHal Leonard + AlbumGuitar Method Book 3 + GenreSoundtrack + KindAAC audio file + Size4547434 + Total Time137186 + Disc Number3 + Disc Count3 + Track Number61 + Track Count61 + Year2002 + Date Modified2009-12-06T03:29:33Z + Date Added2009-12-06T03:27:36Z + Bit Rate256 + Sample Rate44100 + Normalization5873 + Artwork Count1 + Persistent ID8F5458CA81E89A04 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-61%20Track%2061_%20Grand%20Finale%20%233.m4a + File Folder Count4 + Library Folder Count1 + + 7536 + + Track ID7536 + NameSgt. Pepper's Lonely Hearts Club Band + ArtistThe Beatles + Album ArtistThe Beatles + ComposerJohn Lennon/Paul McCartney + AlbumSgt. Pepper's Lonely Hearts Club Band + GenreRock + KindMPEG audio file + Size5270727 + Total Time122305 + Track Number1 + Year1967 + Date Modified2009-12-16T02:31:48Z + Date Added2009-12-16T01:59:40Z + Bit Rate320 + Sample Rate44100 + Play Count2 + Play Date3343802958 + Play Date UTC2009-12-16T04:39:18Z + Skip Count1 + Skip Date2014-01-02T14:56:16Z + Artwork Count1 + Sort Album ArtistBeatles + Sort ArtistBeatles + Persistent ID6F35793EF2C362D0 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Sgt.%20Pepper's%20Lonely%20Hearts%20Club%20Band/01%20Sgt.%20Pepper's%20Lonely%20Hearts%20Club%20Band.mp3 + File Folder Count4 + Library Folder Count1 + + 7538 + + Track ID7538 + NameWith a Little Help from My Friends + ArtistThe Beatles + Album ArtistThe Beatles + ComposerJohn Lennon/Paul McCartney + AlbumSgt. Pepper's Lonely Hearts Club Band + GenreRock + KindMPEG audio file + Size6932772 + Total Time163996 + Track Number2 + Year1967 + Date Modified2009-12-16T02:31:50Z + Date Added2009-12-16T01:59:40Z + Bit Rate320 + Sample Rate44100 + Play Count3 + Play Date3344002760 + Play Date UTC2009-12-18T12:09:20Z + Artwork Count1 + Sort Album ArtistBeatles + Sort ArtistBeatles + Persistent IDE6958E4F53C0E718 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Sgt.%20Pepper's%20Lonely%20Hearts%20Club%20Band/02%20With%20a%20Little%20Help%20from%20My%20Friends.mp3 + File Folder Count4 + Library Folder Count1 + + 7540 + + Track ID7540 + NameLucy in the Sky With Diamonds + ArtistThe Beatles + Album ArtistThe Beatles + ComposerJohn Lennon/Paul McCartney + AlbumSgt. Pepper's Lonely Hearts Club Band + GenreRock + KindMPEG audio file + Size8708611 + Total Time208431 + Track Number3 + Year1967 + Date Modified2009-12-16T02:31:48Z + Date Added2009-12-16T01:59:40Z + Bit Rate320 + Sample Rate44100 + Play Count3 + Play Date3344002968 + Play Date UTC2009-12-18T12:12:48Z + Artwork Count1 + Sort Album ArtistBeatles + Sort ArtistBeatles + Persistent ID0DF3E29462E675E2 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Sgt.%20Pepper's%20Lonely%20Hearts%20Club%20Band/03%20Lucy%20in%20the%20Sky%20With%20Diamonds.mp3 + File Folder Count4 + Library Folder Count1 + + 7542 + + Track ID7542 + NameGetting Better + ArtistThe Beatles + Album ArtistThe Beatles + ComposerJohn Lennon/Paul McCartney + AlbumSgt. Pepper's Lonely Hearts Club Band + GenreRock + KindMPEG audio file + Size7087264 + Total Time167862 + Track Number4 + Year1967 + Date Modified2009-12-16T02:31:46Z + Date Added2009-12-16T01:59:40Z + Bit Rate320 + Sample Rate44100 + Play Count3 + Play Date3344003136 + Play Date UTC2009-12-18T12:15:36Z + Artwork Count1 + Sort Album ArtistBeatles + Sort ArtistBeatles + Persistent IDD3384122A9E8C982 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Sgt.%20Pepper's%20Lonely%20Hearts%20Club%20Band/04%20Getting%20Better.mp3 + File Folder Count4 + Library Folder Count1 + + 7544 + + Track ID7544 + NameFixing a Hole + ArtistThe Beatles + Album ArtistThe Beatles + ComposerJohn Lennon/Paul McCartney + AlbumSgt. Pepper's Lonely Hearts Club Band + GenreRock + KindMPEG audio file + Size6637299 + Total Time156604 + Track Number5 + Year1967 + Date Modified2009-12-16T02:31:46Z + Date Added2009-12-16T01:59:40Z + Bit Rate320 + Sample Rate44100 + Play Count3 + Play Date3344003293 + Play Date UTC2009-12-18T12:18:13Z + Artwork Count1 + Sort Album ArtistBeatles + Sort ArtistBeatles + Persistent ID943BF6CEBD22D429 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Sgt.%20Pepper's%20Lonely%20Hearts%20Club%20Band/05%20Fixing%20a%20Hole.mp3 + File Folder Count4 + Library Folder Count1 + + 7546 + + Track ID7546 + NameShe's Leaving Home + ArtistThe Beatles + Album ArtistThe Beatles + ComposerJohn Lennon/Paul McCartney + AlbumSgt. Pepper's Lonely Hearts Club Band + GenreRock + KindMPEG audio file + Size8972732 + Total Time214857 + Track Number6 + Year1967 + Date Modified2009-12-16T02:31:50Z + Date Added2009-12-16T01:59:40Z + Bit Rate320 + Sample Rate44100 + Play Count2 + Play Date3344003508 + Play Date UTC2009-12-18T12:21:48Z + Artwork Count1 + Sort Album ArtistBeatles + Sort ArtistBeatles + Persistent IDCCD7B7F705C1AF37 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Sgt.%20Pepper's%20Lonely%20Hearts%20Club%20Band/06%20She's%20Leaving%20Home.mp3 + File Folder Count4 + Library Folder Count1 + + 7548 + + Track ID7548 + NameBeing for the Benefit of Mr. Kite! + ArtistThe Beatles + Album ArtistThe Beatles + ComposerJohn Lennon/Paul McCartney + AlbumSgt. Pepper's Lonely Hearts Club Band + GenreRock + KindMPEG audio file + Size6656112 + Total Time157074 + Track Number7 + Year1967 + Date Modified2009-12-16T02:31:45Z + Date Added2009-12-16T01:59:40Z + Bit Rate320 + Sample Rate44100 + Play Count2 + Play Date3344003665 + Play Date UTC2009-12-18T12:24:25Z + Artwork Count1 + Sort Album ArtistBeatles + Sort ArtistBeatles + Persistent ID4AB95ABDB601CBAB + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Sgt.%20Pepper's%20Lonely%20Hearts%20Club%20Band/07%20Being%20for%20the%20Benefit%20of%20Mr.%20Kite!.mp3 + File Folder Count4 + Library Folder Count1 + + 7550 + + Track ID7550 + NameWithin You Without You + ArtistThe Beatles + Album ArtistThe Beatles + ComposerGeorge Harrison + AlbumSgt. Pepper's Lonely Hearts Club Band + GenreRock + KindMPEG audio file + Size12570349 + Total Time304796 + Track Number8 + Year1967 + Date Modified2009-12-16T02:31:51Z + Date Added2009-12-16T01:59:40Z + Bit Rate320 + Sample Rate44100 + Play Count1 + Play Date3343796899 + Play Date UTC2009-12-16T02:58:19Z + Artwork Count1 + Sort Album ArtistBeatles + Sort ArtistBeatles + Persistent IDF404E640DEE353FE + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Sgt.%20Pepper's%20Lonely%20Hearts%20Club%20Band/08%20Within%20You%20Without%20You.mp3 + File Folder Count4 + Library Folder Count1 + + 7552 + + Track ID7552 + NameWhen I'm Sixty-Four + ArtistThe Beatles + Album ArtistThe Beatles + ComposerJohn Lennon/Paul McCartney + AlbumSgt. Pepper's Lonely Hearts Club Band + GenreRock + KindMPEG audio file + Size6681153 + Total Time157701 + Track Number9 + Year1967 + Date Modified2009-12-16T02:31:50Z + Date Added2009-12-16T01:59:40Z + Bit Rate320 + Sample Rate44100 + Play Count1 + Play Date3343797057 + Play Date UTC2009-12-16T03:00:57Z + Artwork Count1 + Sort Album ArtistBeatles + Sort ArtistBeatles + Persistent ID95E0772F16F36F9C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Sgt.%20Pepper's%20Lonely%20Hearts%20Club%20Band/09%20When%20I'm%20Sixty-Four.mp3 + File Folder Count4 + Library Folder Count1 + + 7554 + + Track ID7554 + NameLovely Rita + ArtistThe Beatles + Album ArtistThe Beatles + ComposerJohn Lennon/Paul McCartney + AlbumSgt. Pepper's Lonely Hearts Club Band + GenreRock + KindMPEG audio file + Size6856538 + Total Time162089 + Track Number10 + Year1967 + Date Modified2009-12-16T02:31:47Z + Date Added2009-12-16T01:59:40Z + Bit Rate320 + Sample Rate44100 + Play Count1 + Play Date3343797219 + Play Date UTC2009-12-16T03:03:39Z + Artwork Count1 + Sort Album ArtistBeatles + Sort ArtistBeatles + Persistent IDEFD9EC6CB0A8EEBD + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Sgt.%20Pepper's%20Lonely%20Hearts%20Club%20Band/10%20Lovely%20Rita.mp3 + File Folder Count4 + Library Folder Count1 + + 7556 + + Track ID7556 + NameGood Morning Good Morning + ArtistThe Beatles + Album ArtistThe Beatles + ComposerJohn Lennon/Paul McCartney + AlbumSgt. Pepper's Lonely Hearts Club Band + GenreRock + KindMPEG audio file + Size6825232 + Total Time161306 + Track Number11 + Year1967 + Date Modified2009-12-16T02:31:47Z + Date Added2009-12-16T01:59:40Z + Bit Rate320 + Sample Rate44100 + Play Count1 + Play Date3343797380 + Play Date UTC2009-12-16T03:06:20Z + Artwork Count1 + Sort Album ArtistBeatles + Sort ArtistBeatles + Persistent ID655B791FC0B8BBF0 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Sgt.%20Pepper's%20Lonely%20Hearts%20Club%20Band/11%20Good%20Morning%20Good%20Morning.mp3 + File Folder Count4 + Library Folder Count1 + + 7558 + + Track ID7558 + NameSgt. Pepper's Lonely Hearts Club Band (Reprise) + ArtistThe Beatles + Album ArtistThe Beatles + ComposerJohn Lennon/Paul McCartney + AlbumSgt. Pepper's Lonely Hearts Club Band + GenreRock + KindMPEG audio file + Size3531433 + Total Time78889 + Track Number12 + Year1967 + Date Modified2009-12-16T02:31:49Z + Date Added2009-12-16T01:59:40Z + Bit Rate320 + Sample Rate44100 + Play Count1 + Play Date3343797459 + Play Date UTC2009-12-16T03:07:39Z + Artwork Count1 + Sort Album ArtistBeatles + Sort ArtistBeatles + Persistent IDB7BDA27E0BA7F94A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Sgt.%20Pepper's%20Lonely%20Hearts%20Club%20Band/12%20Sgt.%20Pepper's%20Lonely%20Hearts%20Club%20Band%20(Reprise).mp3 + File Folder Count4 + Library Folder Count1 + + 7560 + + Track ID7560 + NameA Day in the Life + ArtistThe Beatles + Album ArtistThe Beatles + ComposerJohn Lennon/Paul McCartney + AlbumSgt. Pepper's Lonely Hearts Club Band + GenreRock + KindMPEG audio file + Size13721888 + Total Time333583 + Track Number13 + Year1967 + Date Modified2009-12-16T02:31:45Z + Date Added2009-12-16T01:59:40Z + Bit Rate320 + Sample Rate44100 + Play Count1 + Play Date3393073192 + Play Date UTC2011-07-09T10:49:52Z + Artwork Count1 + Sort Album ArtistBeatles + Sort ArtistBeatles + Sort NameDay in the Life + Persistent IDB8DDD0452FA47967 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Sgt.%20Pepper's%20Lonely%20Hearts%20Club%20Band/13%20A%20Day%20in%20the%20Life.mp3 + File Folder Count4 + Library Folder Count1 + + 7562 + + Track ID7562 + NameOver And Out Rag + ArtistTravis Picking + ComposerTravis Picking via Mark Hanson + AlbumThe Art Of Contemporary Travis Picking + GenreBlues + KindAAC audio file + Size3187556 + Total Time76893 + Disc Number1 + Disc Count1 + Track Number1 + Track Count47 + Year1986 + Date Modified2009-12-18T06:23:04Z + Date Added2009-12-18T06:12:32Z + Bit Rate256 + Sample Rate44100 + Normalization2047 + Artwork Count1 + Sort AlbumArt Of Contemporary Travis Picking + Persistent ID9952D919CCA4C33F + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Travis%20Picking/The%20Art%20Of%20Contemporary%20Travis%20Picking/01%20Over%20And%20Out%20Rag.m4a + File Folder Count4 + Library Folder Count1 + + 7564 + + Track ID7564 + NameIntroduction And Tuning + ArtistTravis Picking + ComposerTravis Picking via Mark Hanson + AlbumThe Art Of Contemporary Travis Picking + GenreBlues + KindAAC audio file + Size1136510 + Total Time32000 + Disc Number1 + Disc Count1 + Track Number2 + Track Count47 + Year1986 + Date Modified2009-12-18T06:23:04Z + Date Added2009-12-18T06:12:47Z + Bit Rate256 + Sample Rate44100 + Normalization591 + Artwork Count1 + Sort AlbumArt Of Contemporary Travis Picking + Persistent IDD7F2650FB89F79D9 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Travis%20Picking/The%20Art%20Of%20Contemporary%20Travis%20Picking/02%20Introduction%20And%20Tuning.m4a + File Folder Count4 + Library Folder Count1 + + 7566 + + Track ID7566 + NamePattern 1 - Outside In + ArtistTravis Picking + ComposerTravis Picking via Mark Hanson + AlbumThe Art Of Contemporary Travis Picking + GenreBlues + KindAAC audio file + Size8947087 + Total Time260440 + Disc Number1 + Disc Count1 + Track Number3 + Track Count47 + Year1986 + Date Modified2009-12-18T06:23:05Z + Date Added2009-12-18T06:12:54Z + Bit Rate256 + Sample Rate44100 + Normalization1202 + Artwork Count1 + Sort AlbumArt Of Contemporary Travis Picking + Persistent IDAF47FA05CD350595 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Travis%20Picking/The%20Art%20Of%20Contemporary%20Travis%20Picking/03%20Pattern%201%20-%20Outside%20In.m4a + File Folder Count4 + Library Folder Count1 + + 7568 + + Track ID7568 + NameOI- Exercise 1 + ArtistTravis Picking + ComposerTravis Picking via Mark Hanson + AlbumThe Art Of Contemporary Travis Picking + GenreBlues + KindAAC audio file + Size6160965 + Total Time174400 + Disc Number1 + Disc Count1 + Track Number4 + Track Count47 + Year1986 + Date Modified2009-12-18T06:23:05Z + Date Added2009-12-18T06:13:39Z + Bit Rate256 + Sample Rate44100 + Normalization1202 + Artwork Count1 + Sort AlbumArt Of Contemporary Travis Picking + Persistent ID40F1D7CA4FAB9DBE + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Travis%20Picking/The%20Art%20Of%20Contemporary%20Travis%20Picking/04%20OI-%20Exercise%201.m4a + File Folder Count4 + Library Folder Count1 + + 7570 + + Track ID7570 + NameOI - Exercise 2 + ArtistTravis Picking + ComposerTravis Picking via Mark Hanson + AlbumThe Art Of Contemporary Travis Picking + GenreBlues + KindAAC audio file + Size6419723 + Total Time183120 + Disc Number1 + Disc Count1 + Track Number5 + Track Count47 + Year1986 + Date Modified2009-12-18T06:23:05Z + Date Added2009-12-18T06:14:07Z + Bit Rate256 + Sample Rate44100 + Normalization1202 + Artwork Count1 + Sort AlbumArt Of Contemporary Travis Picking + Persistent ID1BB194B808AFD35D + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Travis%20Picking/The%20Art%20Of%20Contemporary%20Travis%20Picking/05%20OI%20-%20Exercise%202.m4a + File Folder Count4 + Library Folder Count1 + + 7572 + + Track ID7572 + NameSloop John B. - Slowly + ArtistTravis Picking + ComposerTravis Picking via Mark Hanson + AlbumThe Art Of Contemporary Travis Picking + GenreBlues + KindAAC audio file + Size1908896 + Total Time46213 + Disc Number1 + Disc Count1 + Track Number6 + Track Count47 + Year1986 + Date Modified2009-12-18T06:23:05Z + Date Added2009-12-18T06:14:36Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3343982071 + Play Date UTC2009-12-18T06:24:31Z + Normalization1254 + Artwork Count1 + Sort AlbumArt Of Contemporary Travis Picking + Persistent ID8334686E0BE336BC + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Travis%20Picking/The%20Art%20Of%20Contemporary%20Travis%20Picking/06%20Sloop%20John%20B.%20-%20Slowly.m4a + File Folder Count4 + Library Folder Count1 + + 7574 + + Track ID7574 + NameInside Out + ArtistTravis Picking + ComposerTravis Picking via Mark Hanson + AlbumThe Art Of Contemporary Travis Picking + GenreBlues + KindAAC audio file + Size5112403 + Total Time140853 + Disc Number1 + Disc Count1 + Track Number7 + Track Count47 + Year1986 + Date Modified2009-12-18T06:23:06Z + Date Added2009-12-18T06:14:45Z + Bit Rate256 + Sample Rate44100 + Normalization1202 + Artwork Count1 + Sort AlbumArt Of Contemporary Travis Picking + Persistent IDF208252DAD5D5969 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Travis%20Picking/The%20Art%20Of%20Contemporary%20Travis%20Picking/07%20Inside%20Out.m4a + File Folder Count4 + Library Folder Count1 + + 7576 + + Track ID7576 + NameJohn Barleycorn - Slowly + ArtistTravis Picking + ComposerTravis Picking via Mark Hanson + AlbumThe Art Of Contemporary Travis Picking + GenreBlues + KindAAC audio file + Size3323504 + Total Time82546 + Disc Number1 + Disc Count1 + Track Number8 + Track Count47 + Year1986 + Date Modified2009-12-18T06:23:06Z + Date Added2009-12-18T06:15:09Z + Bit Rate256 + Sample Rate44100 + Normalization1527 + Artwork Count1 + Sort AlbumArt Of Contemporary Travis Picking + Persistent ID8A807D7373EB7FE6 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Travis%20Picking/The%20Art%20Of%20Contemporary%20Travis%20Picking/08%20John%20Barleycorn%20-%20Slowly.m4a + File Folder Count4 + Library Folder Count1 + + 7578 + + Track ID7578 + NamePinch + ArtistTravis Picking + ComposerTravis Picking via Mark Hanson + AlbumThe Art Of Contemporary Travis Picking + GenreBlues + KindAAC audio file + Size3455979 + Total Time90960 + Disc Number1 + Disc Count1 + Track Number9 + Track Count47 + Year1986 + Date Modified2009-12-18T06:23:06Z + Date Added2009-12-18T06:15:23Z + Bit Rate256 + Sample Rate44100 + Normalization1104 + Artwork Count1 + Sort AlbumArt Of Contemporary Travis Picking + Persistent ID570BCC15CFDBEE21 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Travis%20Picking/The%20Art%20Of%20Contemporary%20Travis%20Picking/09%20Pinch.m4a + File Folder Count4 + Library Folder Count1 + + 7580 + + Track ID7580 + NameWill The Circle Be Unbroken - Slowly + ArtistTravis Picking + ComposerTravis Picking via Mark Hanson + AlbumThe Art Of Contemporary Travis Picking + GenreBlues + KindAAC audio file + Size1837317 + Total Time42693 + Disc Number1 + Disc Count1 + Track Number10 + Track Count47 + Year1986 + Date Modified2009-12-18T06:23:06Z + Date Added2009-12-18T06:15:38Z + Bit Rate256 + Sample Rate44100 + Normalization1766 + Artwork Count1 + Sort AlbumArt Of Contemporary Travis Picking + Persistent ID594238004AB82AD4 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Travis%20Picking/The%20Art%20Of%20Contemporary%20Travis%20Picking/10%20Will%20The%20Circle%20Be%20Unbroken%20-%20Slowly.m4a + File Folder Count4 + Library Folder Count1 + + 7582 + + Track ID7582 + NameExample 22A + ArtistTravis Picking + ComposerTravis Picking via Mark Hanson + AlbumThe Art Of Contemporary Travis Picking + GenreBlues + KindAAC audio file + Size1643251 + Total Time39120 + Disc Number1 + Disc Count1 + Track Number11 + Track Count47 + Year1986 + Date Modified2009-12-18T06:23:06Z + Date Added2009-12-18T06:15:45Z + Bit Rate256 + Sample Rate44100 + Normalization1106 + Artwork Count1 + Sort AlbumArt Of Contemporary Travis Picking + Persistent ID3EEE17ED7E73790D + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Travis%20Picking/The%20Art%20Of%20Contemporary%20Travis%20Picking/11%20Example%2022A.m4a + File Folder Count4 + Library Folder Count1 + + 7584 + + Track ID7584 + NameThe Trees They Do Grow High - Slowly + ArtistTravis Picking + ComposerTravis Picking via Mark Hanson + AlbumThe Art Of Contemporary Travis Picking + GenreBlues + KindAAC audio file + Size1908705 + Total Time45293 + Disc Number1 + Disc Count1 + Track Number12 + Track Count47 + Year1986 + Date Modified2009-12-18T06:23:06Z + Date Added2009-12-18T06:15:52Z + Bit Rate256 + Sample Rate44100 + Normalization1660 + Artwork Count1 + Sort AlbumArt Of Contemporary Travis Picking + Sort NameTrees They Do Grow High - Slowly + Persistent IDC80996FAA6C5DE57 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Travis%20Picking/The%20Art%20Of%20Contemporary%20Travis%20Picking/12%20The%20Trees%20They%20Do%20Grow%20High%20-%20Slowly.m4a + File Folder Count4 + Library Folder Count1 + + 7586 + + Track ID7586 + NameDescending Arpeggio + ArtistTravis Picking + ComposerTravis Picking via Mark Hanson + AlbumThe Art Of Contemporary Travis Picking + GenreBlues + KindAAC audio file + Size1547059 + Total Time36400 + Disc Number1 + Disc Count1 + Track Number13 + Track Count47 + Year1986 + Date Modified2009-12-18T06:23:06Z + Date Added2009-12-18T06:16:00Z + Bit Rate256 + Sample Rate44100 + Normalization1186 + Artwork Count1 + Sort AlbumArt Of Contemporary Travis Picking + Persistent IDC45B64DD5CEB4CB1 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Travis%20Picking/The%20Art%20Of%20Contemporary%20Travis%20Picking/13%20Descending%20Arpeggio.m4a + File Folder Count4 + Library Folder Count1 + + 7588 + + Track ID7588 + NameRing Finger Variations + ArtistTravis Picking + ComposerTravis Picking via Mark Hanson + AlbumThe Art Of Contemporary Travis Picking + GenreBlues + KindAAC audio file + Size2233755 + Total Time56266 + Disc Number1 + Disc Count1 + Track Number14 + Track Count47 + Year1986 + Date Modified2009-12-18T06:23:06Z + Date Added2009-12-18T06:16:06Z + Bit Rate256 + Sample Rate44100 + Normalization1003 + Artwork Count1 + Sort AlbumArt Of Contemporary Travis Picking + Persistent ID9CF38CBB379191C2 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Travis%20Picking/The%20Art%20Of%20Contemporary%20Travis%20Picking/14%20Ring%20Finger%20Variations.m4a + File Folder Count4 + Library Folder Count1 + + 7590 + + Track ID7590 + NameRFV Chart + ArtistTravis Picking + ComposerTravis Picking via Mark Hanson + AlbumThe Art Of Contemporary Travis Picking + GenreBlues + KindAAC audio file + Size7349236 + Total Time196106 + Disc Number1 + Disc Count1 + Track Number15 + Track Count47 + Year1986 + Date Modified2009-12-18T06:23:07Z + Date Added2009-12-18T06:16:15Z + Bit Rate256 + Sample Rate44100 + Normalization1202 + Artwork Count1 + Sort AlbumArt Of Contemporary Travis Picking + Persistent ID1C68B5C09EDF8389 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Travis%20Picking/The%20Art%20Of%20Contemporary%20Travis%20Picking/15%20RFV%20Chart.m4a + File Folder Count4 + Library Folder Count1 + + 7592 + + Track ID7592 + NameGoin' Down The Road Feelin' Bad - Slowly + ArtistTravis Picking + ComposerTravis Picking via Mark Hanson + AlbumThe Art Of Contemporary Travis Picking + GenreBlues + KindAAC audio file + Size1737490 + Total Time37800 + Disc Number1 + Disc Count1 + Track Number16 + Track Count47 + Year1986 + Date Modified2009-12-18T06:23:07Z + Date Added2009-12-18T06:16:44Z + Bit Rate256 + Sample Rate44100 + Normalization1279 + Artwork Count1 + Sort AlbumArt Of Contemporary Travis Picking + Persistent ID10D5DDB9A0D66719 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Travis%20Picking/The%20Art%20Of%20Contemporary%20Travis%20Picking/16%20Goin'%20Down%20The%20Road%20Feelin'%20Bad%20-%20Slowly.m4a + File Folder Count4 + Library Folder Count1 + + 7594 + + Track ID7594 + NameFreight Train - Slowly + ArtistTravis Picking + ComposerTravis Picking via Mark Hanson + AlbumThe Art Of Contemporary Travis Picking + GenreBlues + KindAAC audio file + Size2382679 + Total Time54093 + Disc Number1 + Disc Count1 + Track Number17 + Track Count47 + Year1986 + Date Modified2009-12-18T06:23:07Z + Date Added2009-12-18T06:16:50Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3398610148 + Play Date UTC2011-09-11T12:52:28Z + Normalization946 + Artwork Count1 + Sort AlbumArt Of Contemporary Travis Picking + Persistent IDFB766D47499CFA41 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Travis%20Picking/The%20Art%20Of%20Contemporary%20Travis%20Picking/17%20Freight%20Train%20-%20Slowly.m4a + File Folder Count4 + Library Folder Count1 + + 7596 + + Track ID7596 + NameExample 34A + ArtistTravis Picking + ComposerTravis Picking via Mark Hanson + AlbumThe Art Of Contemporary Travis Picking + GenreBlues + KindAAC audio file + Size1525880 + Total Time34613 + Disc Number1 + Disc Count1 + Track Number18 + Track Count47 + Year1986 + Date Modified2009-12-18T06:23:07Z + Date Added2009-12-18T06:16:59Z + Bit Rate256 + Sample Rate44100 + Normalization882 + Artwork Count1 + Sort AlbumArt Of Contemporary Travis Picking + Persistent IDE74F04D588FA3964 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Travis%20Picking/The%20Art%20Of%20Contemporary%20Travis%20Picking/18%20Example%2034A.m4a + File Folder Count4 + Library Folder Count1 + + 7598 + + Track ID7598 + NameWatch The Stars - Slowly + ArtistTravis Picking + ComposerTravis Picking via Mark Hanson + AlbumThe Art Of Contemporary Travis Picking + GenreBlues + KindAAC audio file + Size1848581 + Total Time43786 + Disc Number1 + Disc Count1 + Track Number19 + Track Count47 + Year1986 + Date Modified2009-12-18T06:23:07Z + Date Added2009-12-18T06:17:04Z + Bit Rate256 + Sample Rate44100 + Normalization932 + Artwork Count1 + Sort AlbumArt Of Contemporary Travis Picking + Persistent ID079AF3318CC1E1D5 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Travis%20Picking/The%20Art%20Of%20Contemporary%20Travis%20Picking/19%20Watch%20The%20Stars%20-%20Slowly.m4a + File Folder Count4 + Library Folder Count1 + + 7600 + + Track ID7600 + NameExample 38A + ArtistTravis Picking + ComposerTravis Picking via Mark Hanson + AlbumThe Art Of Contemporary Travis Picking + GenreBlues + KindAAC audio file + Size2362346 + Total Time57800 + Disc Number1 + Disc Count1 + Track Number20 + Track Count47 + Year1986 + Date Modified2009-12-18T06:23:07Z + Date Added2009-12-18T06:17:11Z + Bit Rate256 + Sample Rate44100 + Normalization867 + Artwork Count1 + Sort AlbumArt Of Contemporary Travis Picking + Persistent ID606C1CD252A98C8F + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Travis%20Picking/The%20Art%20Of%20Contemporary%20Travis%20Picking/20%20Example%2038A.m4a + File Folder Count4 + Library Folder Count1 + + 7602 + + Track ID7602 + NameRoll In My Sweet Baby's Arms - Slowly + ArtistTravis Picking + ComposerTravis Picking via Mark Hanson + AlbumThe Art Of Contemporary Travis Picking + GenreBlues + KindAAC audio file + Size1911911 + Total Time42146 + Disc Number1 + Disc Count1 + Track Number21 + Track Count47 + Year1986 + Date Modified2009-12-18T06:23:07Z + Date Added2009-12-18T06:17:19Z + Bit Rate256 + Sample Rate44100 + Normalization1367 + Artwork Count1 + Sort AlbumArt Of Contemporary Travis Picking + Persistent IDD0FAC64A3C2CBBE9 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Travis%20Picking/The%20Art%20Of%20Contemporary%20Travis%20Picking/21%20Roll%20In%20My%20Sweet%20Baby's%20Arms%20-%20Slowly.m4a + File Folder Count4 + Library Folder Count1 + + 7604 + + Track ID7604 + NameExample 42A + ArtistTravis Picking + ComposerTravis Picking via Mark Hanson + AlbumThe Art Of Contemporary Travis Picking + GenreBlues + KindAAC audio file + Size3073419 + Total Time77546 + Disc Number1 + Disc Count1 + Track Number22 + Track Count47 + Year1986 + Date Modified2009-12-18T06:23:08Z + Date Added2009-12-18T06:17:26Z + Bit Rate256 + Sample Rate44100 + Normalization857 + Artwork Count1 + Sort AlbumArt Of Contemporary Travis Picking + Persistent ID1911670C4E7E7145 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Travis%20Picking/The%20Art%20Of%20Contemporary%20Travis%20Picking/22%20Example%2042A.m4a + File Folder Count4 + Library Folder Count1 + + 7606 + + Track ID7606 + NameExample 43A + ArtistTravis Picking + ComposerTravis Picking via Mark Hanson + AlbumThe Art Of Contemporary Travis Picking + GenreBlues + KindAAC audio file + Size1736056 + Total Time40506 + Disc Number1 + Disc Count1 + Track Number23 + Track Count47 + Year1986 + Date Modified2009-12-18T06:23:08Z + Date Added2009-12-18T06:17:37Z + Bit Rate256 + Sample Rate44100 + Normalization1034 + Artwork Count1 + Sort AlbumArt Of Contemporary Travis Picking + Persistent IDAC0EAB4DD1CA0749 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Travis%20Picking/The%20Art%20Of%20Contemporary%20Travis%20Picking/23%20Example%2043A.m4a + File Folder Count4 + Library Folder Count1 + + 7608 + + Track ID7608 + NameExample 44A + ArtistTravis Picking + ComposerTravis Picking via Mark Hanson + AlbumThe Art Of Contemporary Travis Picking + GenreBlues + KindAAC audio file + Size2970901 + Total Time75493 + Disc Number1 + Disc Count1 + Track Number24 + Track Count47 + Year1986 + Date Modified2009-12-18T06:23:08Z + Date Added2009-12-18T06:17:43Z + Bit Rate256 + Sample Rate44100 + Normalization1122 + Artwork Count1 + Sort AlbumArt Of Contemporary Travis Picking + Persistent IDEDE2FBB2F6335FFC + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Travis%20Picking/The%20Art%20Of%20Contemporary%20Travis%20Picking/24%20Example%2044A.m4a + File Folder Count4 + Library Folder Count1 + + 7610 + + Track ID7610 + NameExample 45A + ArtistTravis Picking + ComposerTravis Picking via Mark Hanson + AlbumThe Art Of Contemporary Travis Picking + GenreBlues + KindAAC audio file + Size4185735 + Total Time109866 + Disc Number1 + Disc Count1 + Track Number25 + Track Count47 + Year1986 + Date Modified2009-12-18T06:23:08Z + Date Added2009-12-18T06:17:54Z + Bit Rate256 + Sample Rate44100 + Normalization1202 + Artwork Count1 + Sort AlbumArt Of Contemporary Travis Picking + Persistent IDC8E829D46D9757E0 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Travis%20Picking/The%20Art%20Of%20Contemporary%20Travis%20Picking/25%20Example%2045A.m4a + File Folder Count4 + Library Folder Count1 + + 7612 + + Track ID7612 + NameI Know You Rider - Slowly + ArtistTravis Picking + ComposerTravis Picking via Mark Hanson + AlbumThe Art Of Contemporary Travis Picking + GenreBlues + KindAAC audio file + Size2204732 + Total Time53960 + Disc Number1 + Disc Count1 + Track Number26 + Track Count47 + Year1986 + Date Modified2009-12-18T06:23:08Z + Date Added2009-12-18T06:18:08Z + Bit Rate256 + Sample Rate44100 + Normalization2625 + Artwork Count1 + Sort AlbumArt Of Contemporary Travis Picking + Persistent ID53BE73AAFFC7940B + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Travis%20Picking/The%20Art%20Of%20Contemporary%20Travis%20Picking/26%20I%20Know%20You%20Rider%20-%20Slowly.m4a + File Folder Count4 + Library Folder Count1 + + 7614 + + Track ID7614 + NameExample 48A + ArtistTravis Picking + ComposerTravis Picking via Mark Hanson + AlbumThe Art Of Contemporary Travis Picking + GenreBlues + KindAAC audio file + Size2378415 + Total Time58933 + Disc Number1 + Disc Count1 + Track Number27 + Track Count47 + Year1986 + Date Modified2009-12-18T06:23:08Z + Date Added2009-12-18T06:18:16Z + Bit Rate256 + Sample Rate44100 + Normalization1202 + Artwork Count1 + Sort AlbumArt Of Contemporary Travis Picking + Persistent IDC8B964931F0E31FA + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Travis%20Picking/The%20Art%20Of%20Contemporary%20Travis%20Picking/27%20Example%2048A.m4a + File Folder Count4 + Library Folder Count1 + + 7616 + + Track ID7616 + NameExample 49A + ArtistTravis Picking + ComposerTravis Picking via Mark Hanson + AlbumThe Art Of Contemporary Travis Picking + GenreBlues + KindAAC audio file + Size1219748 + Total Time26413 + Disc Number1 + Disc Count1 + Track Number28 + Track Count47 + Year1986 + Date Modified2009-12-18T06:23:08Z + Date Added2009-12-18T06:18:24Z + Bit Rate256 + Sample Rate44100 + Normalization990 + Artwork Count1 + Sort AlbumArt Of Contemporary Travis Picking + Persistent IDC04ED1AB554FCCEA + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Travis%20Picking/The%20Art%20Of%20Contemporary%20Travis%20Picking/28%20Example%2049A.m4a + File Folder Count4 + Library Folder Count1 + + 7618 + + Track ID7618 + NameWanderin' - Slowly + ArtistTravis Picking + ComposerTravis Picking via Mark Hanson + AlbumThe Art Of Contemporary Travis Picking + GenreBlues + KindAAC audio file + Size1459870 + Total Time32946 + Disc Number1 + Disc Count1 + Track Number29 + Track Count47 + Year1986 + Date Modified2009-12-18T06:23:08Z + Date Added2009-12-18T06:18:28Z + Bit Rate256 + Sample Rate44100 + Normalization1547 + Artwork Count1 + Sort AlbumArt Of Contemporary Travis Picking + Persistent ID0E65A916A7B8C48F + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Travis%20Picking/The%20Art%20Of%20Contemporary%20Travis%20Picking/29%20Wanderin'%20-%20Slowly.m4a + File Folder Count4 + Library Folder Count1 + + 7620 + + Track ID7620 + NameExample 52A + ArtistTravis Picking + ComposerTravis Picking via Mark Hanson + AlbumThe Art Of Contemporary Travis Picking + GenreBlues + KindAAC audio file + Size2688084 + Total Time67346 + Disc Number1 + Disc Count1 + Track Number30 + Track Count47 + Year1986 + Date Modified2009-12-18T06:23:09Z + Date Added2009-12-18T06:18:33Z + Bit Rate256 + Sample Rate44100 + Normalization1065 + Artwork Count1 + Sort AlbumArt Of Contemporary Travis Picking + Persistent ID681ACD6F8B2EC80F + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Travis%20Picking/The%20Art%20Of%20Contemporary%20Travis%20Picking/30%20Example%2052A.m4a + File Folder Count4 + Library Folder Count1 + + 7622 + + Track ID7622 + NameThe Water Is Wide - Slowly + ArtistTravis Picking + ComposerTravis Picking via Mark Hanson + AlbumThe Art Of Contemporary Travis Picking + GenreBlues + KindAAC audio file + Size2380294 + Total Time57453 + Disc Number1 + Disc Count1 + Track Number31 + Track Count47 + Year1986 + Date Modified2009-12-18T06:23:09Z + Date Added2009-12-18T06:18:42Z + Bit Rate256 + Sample Rate44100 + Normalization1469 + Artwork Count1 + Sort AlbumArt Of Contemporary Travis Picking + Sort NameWater Is Wide - Slowly + Persistent ID3F9A38854632E388 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Travis%20Picking/The%20Art%20Of%20Contemporary%20Travis%20Picking/31%20The%20Water%20Is%20Wide%20-%20Slowly.m4a + File Folder Count4 + Library Folder Count1 + + 7624 + + Track ID7624 + NameExample 56A + ArtistTravis Picking + ComposerTravis Picking via Mark Hanson + AlbumThe Art Of Contemporary Travis Picking + GenreBlues + KindAAC audio file + Size1342888 + Total Time29893 + Disc Number1 + Disc Count1 + Track Number32 + Track Count47 + Year1986 + Date Modified2009-12-18T06:23:09Z + Date Added2009-12-18T06:18:49Z + Bit Rate256 + Sample Rate44100 + Normalization825 + Artwork Count1 + Sort AlbumArt Of Contemporary Travis Picking + Persistent ID15C7675AC19B8CFF + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Travis%20Picking/The%20Art%20Of%20Contemporary%20Travis%20Picking/32%20Example%2056A.m4a + File Folder Count4 + Library Folder Count1 + + 7626 + + Track ID7626 + NameHesitation Blues - Slowly + ArtistTravis Picking + ComposerTravis Picking via Mark Hanson + AlbumThe Art Of Contemporary Travis Picking + GenreBlues + KindAAC audio file + Size1837765 + Total Time41466 + Disc Number1 + Disc Count1 + Track Number33 + Track Count47 + Year1986 + Date Modified2009-12-18T06:23:09Z + Date Added2009-12-18T06:18:54Z + Bit Rate256 + Sample Rate44100 + Normalization1024 + Artwork Count1 + Sort AlbumArt Of Contemporary Travis Picking + Persistent ID9D9D8DF95D539D52 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Travis%20Picking/The%20Art%20Of%20Contemporary%20Travis%20Picking/33%20Hesitation%20Blues%20-%20Slowly.m4a + File Folder Count4 + Library Folder Count1 + + 7628 + + Track ID7628 + NameOver And Out Rag - Slowly + ArtistTravis Picking + ComposerTravis Picking via Mark Hanson + AlbumThe Art Of Contemporary Travis Picking + GenreBlues + KindAAC audio file + Size4471475 + Total Time113840 + Disc Number1 + Disc Count1 + Track Number34 + Track Count47 + Year1986 + Date Modified2009-12-18T06:23:09Z + Date Added2009-12-18T06:18:59Z + Bit Rate256 + Sample Rate44100 + Normalization1079 + Artwork Count1 + Sort AlbumArt Of Contemporary Travis Picking + Persistent ID31339460DBB54F4D + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Travis%20Picking/The%20Art%20Of%20Contemporary%20Travis%20Picking/34%20Over%20And%20Out%20Rag%20-%20Slowly.m4a + File Folder Count4 + Library Folder Count1 + + 7630 + + Track ID7630 + NameSloop John B. + ArtistTravis Picking + ComposerTravis Picking via Mark Hanson + AlbumThe Art Of Contemporary Travis Picking + GenreBlues + KindAAC audio file + Size6199722 + Total Time165226 + Disc Number1 + Disc Count1 + Track Number35 + Track Count47 + Year1986 + Date Modified2009-12-18T06:23:09Z + Date Added2009-12-18T06:19:14Z + Bit Rate256 + Sample Rate44100 + Normalization1955 + Artwork Count1 + Sort AlbumArt Of Contemporary Travis Picking + Persistent IDD584F2035F206D4D + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Travis%20Picking/The%20Art%20Of%20Contemporary%20Travis%20Picking/35%20Sloop%20John%20B..m4a + File Folder Count4 + Library Folder Count1 + + 7632 + + Track ID7632 + NameJohn Barleycorn + ArtistTravis Picking + ComposerTravis Picking via Mark Hanson + AlbumThe Art Of Contemporary Travis Picking + GenreBlues + KindAAC audio file + Size8766778 + Total Time235493 + Disc Number1 + Disc Count1 + Track Number36 + Track Count47 + Year1986 + Date Modified2009-12-18T06:23:10Z + Date Added2009-12-18T06:19:34Z + Bit Rate256 + Sample Rate44100 + Normalization2122 + Artwork Count1 + Sort AlbumArt Of Contemporary Travis Picking + Persistent IDEE97997BB32F9DAB + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Travis%20Picking/The%20Art%20Of%20Contemporary%20Travis%20Picking/36%20John%20Barleycorn.m4a + File Folder Count4 + Library Folder Count1 + + 7634 + + Track ID7634 + NameWill The Circle Be Unbroken + ArtistTravis Picking + ComposerTravis Picking via Mark Hanson + AlbumThe Art Of Contemporary Travis Picking + GenreBlues + KindAAC audio file + Size6417608 + Total Time160000 + Disc Number1 + Disc Count1 + Track Number37 + Track Count47 + Year1986 + Date Modified2009-12-18T06:23:10Z + Date Added2009-12-18T06:20:01Z + Bit Rate256 + Sample Rate44100 + Normalization1231 + Artwork Count1 + Sort AlbumArt Of Contemporary Travis Picking + Persistent ID77A2E345933BD27C + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Travis%20Picking/The%20Art%20Of%20Contemporary%20Travis%20Picking/37%20Will%20The%20Circle%20Be%20Unbroken.m4a + File Folder Count4 + Library Folder Count1 + + 7636 + + Track ID7636 + NameThe Trees They Do Grow High + ArtistTravis Picking + ComposerTravis Picking via Mark Hanson + AlbumThe Art Of Contemporary Travis Picking + GenreBlues + KindAAC audio file + Size7189795 + Total Time193240 + Disc Number1 + Disc Count1 + Track Number38 + Track Count47 + Year1986 + Date Modified2009-12-18T06:23:11Z + Date Added2009-12-18T06:20:20Z + Bit Rate256 + Sample Rate44100 + Normalization1770 + Artwork Count1 + Sort AlbumArt Of Contemporary Travis Picking + Sort NameTrees They Do Grow High + Persistent IDE2809E4D22CD41C6 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Travis%20Picking/The%20Art%20Of%20Contemporary%20Travis%20Picking/38%20The%20Trees%20They%20Do%20Grow%20High.m4a + File Folder Count4 + Library Folder Count1 + + 7638 + + Track ID7638 + NameHush, Little Baby + ArtistTravis Picking + ComposerTravis Picking via Mark Hanson + AlbumThe Art Of Contemporary Travis Picking + GenreBlues + KindAAC audio file + Size2915507 + Total Time74226 + Disc Number1 + Disc Count1 + Track Number39 + Track Count47 + Year1986 + Date Modified2009-12-18T06:23:11Z + Date Added2009-12-18T06:20:42Z + Bit Rate256 + Sample Rate44100 + Normalization1559 + Artwork Count1 + Sort AlbumArt Of Contemporary Travis Picking + Persistent IDB45CD7B7305F648B + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Travis%20Picking/The%20Art%20Of%20Contemporary%20Travis%20Picking/39%20Hush,%20Little%20Baby.m4a + File Folder Count4 + Library Folder Count1 + + 7640 + + Track ID7640 + NameGoin' Down The Road Feelin' Bad + ArtistTravis Picking + ComposerTravis Picking via Mark Hanson + AlbumThe Art Of Contemporary Travis Picking + GenreBlues + KindAAC audio file + Size2953083 + Total Time75813 + Disc Number1 + Disc Count1 + Track Number40 + Track Count47 + Year1986 + Date Modified2009-12-18T06:23:11Z + Date Added2009-12-18T06:20:50Z + Bit Rate256 + Sample Rate44100 + Normalization1542 + Artwork Count1 + Sort AlbumArt Of Contemporary Travis Picking + Persistent IDE11AA474BAD4368E + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Travis%20Picking/The%20Art%20Of%20Contemporary%20Travis%20Picking/40%20Goin'%20Down%20The%20Road%20Feelin'%20Bad.m4a + File Folder Count4 + Library Folder Count1 + + 7642 + + Track ID7642 + NameFreight Train + ArtistTravis Picking + ComposerTravis Picking via Mark Hanson + AlbumThe Art Of Contemporary Travis Picking + GenreBlues + KindAAC audio file + Size2304138 + Total Time60506 + Disc Number1 + Disc Count1 + Track Number41 + Track Count47 + Year1986 + Date Modified2009-12-18T06:23:11Z + Date Added2009-12-18T06:20:59Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3398610094 + Play Date UTC2011-09-11T12:51:34Z + Normalization1120 + Artwork Count1 + Sort AlbumArt Of Contemporary Travis Picking + Persistent IDEAC509A74480AA86 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Travis%20Picking/The%20Art%20Of%20Contemporary%20Travis%20Picking/41%20Freight%20Train.m4a + File Folder Count4 + Library Folder Count1 + + 7644 + + Track ID7644 + NameWatch The Stars + ArtistTravis Picking + ComposerTravis Picking via Mark Hanson + AlbumThe Art Of Contemporary Travis Picking + GenreBlues + KindAAC audio file + Size4572496 + Total Time120813 + Disc Number1 + Disc Count1 + Track Number42 + Track Count47 + Year1986 + Date Modified2009-12-18T06:23:11Z + Date Added2009-12-18T06:21:06Z + Bit Rate256 + Sample Rate44100 + Normalization1280 + Artwork Count1 + Sort AlbumArt Of Contemporary Travis Picking + Persistent ID1B5FD0DF06631FD7 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Travis%20Picking/The%20Art%20Of%20Contemporary%20Travis%20Picking/42%20Watch%20The%20Stars.m4a + File Folder Count4 + Library Folder Count1 + + 7646 + + Track ID7646 + NameRoll In My Sweet Baby's Arms + ArtistTravis Picking + ComposerTravis Picking via Mark Hanson + AlbumThe Art Of Contemporary Travis Picking + GenreBlues + KindAAC audio file + Size5454218 + Total Time146373 + Disc Number1 + Disc Count1 + Track Number43 + Track Count47 + Year1986 + Date Modified2009-12-18T06:23:12Z + Date Added2009-12-18T06:21:19Z + Bit Rate256 + Sample Rate44100 + Normalization1596 + Artwork Count1 + Sort AlbumArt Of Contemporary Travis Picking + Persistent IDE04CE39ACE3032F0 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Travis%20Picking/The%20Art%20Of%20Contemporary%20Travis%20Picking/43%20Roll%20In%20My%20Sweet%20Baby's%20Arms.m4a + File Folder Count4 + Library Folder Count1 + + 7648 + + Track ID7648 + NameI Know You Rider + ArtistTravis Picking + ComposerTravis Picking via Mark Hanson + AlbumThe Art Of Contemporary Travis Picking + GenreBlues + KindAAC audio file + Size5792892 + Total Time157880 + Disc Number1 + Disc Count1 + Track Number44 + Track Count47 + Year1986 + Date Modified2009-12-18T06:23:12Z + Date Added2009-12-18T06:21:35Z + Bit Rate256 + Sample Rate44100 + Normalization1834 + Artwork Count1 + Sort AlbumArt Of Contemporary Travis Picking + Persistent IDC28C9EFD8F4AD6DD + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Travis%20Picking/The%20Art%20Of%20Contemporary%20Travis%20Picking/44%20I%20Know%20You%20Rider.m4a + File Folder Count4 + Library Folder Count1 + + 7650 + + Track ID7650 + NameWanderin' + ArtistTravis Picking + ComposerTravis Picking via Mark Hanson + AlbumThe Art Of Contemporary Travis Picking + GenreBlues + KindAAC audio file + Size4602556 + Total Time123973 + Disc Number1 + Disc Count1 + Track Number45 + Track Count47 + Year1986 + Date Modified2009-12-18T06:23:12Z + Date Added2009-12-18T06:21:52Z + Bit Rate256 + Sample Rate44100 + Normalization687 + Artwork Count1 + Sort AlbumArt Of Contemporary Travis Picking + Persistent IDF60A00B32B8E41E1 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Travis%20Picking/The%20Art%20Of%20Contemporary%20Travis%20Picking/45%20Wanderin'.m4a + File Folder Count4 + Library Folder Count1 + + 7652 + + Track ID7652 + NameThe Water Is Wide + ArtistTravis Picking + ComposerTravis Picking via Mark Hanson + AlbumThe Art Of Contemporary Travis Picking + GenreBlues + KindAAC audio file + Size6718547 + Total Time180960 + Disc Number1 + Disc Count1 + Track Number46 + Track Count47 + Year1986 + Date Modified2009-12-18T06:23:13Z + Date Added2009-12-18T06:22:05Z + Bit Rate256 + Sample Rate44100 + Normalization1241 + Artwork Count1 + Sort AlbumArt Of Contemporary Travis Picking + Sort NameWater Is Wide + Persistent ID41020ABBC5234EFE + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Travis%20Picking/The%20Art%20Of%20Contemporary%20Travis%20Picking/46%20The%20Water%20Is%20Wide.m4a + File Folder Count4 + Library Folder Count1 + + 7654 + + Track ID7654 + NameHesitation Blues + ArtistTravis Picking + ComposerTravis Picking via Mark Hanson + AlbumThe Art Of Contemporary Travis Picking + GenreBlues + KindAAC audio file + Size3805722 + Total Time101040 + Disc Number1 + Disc Count1 + Track Number47 + Track Count47 + Year1986 + Date Modified2009-12-18T06:23:13Z + Date Added2009-12-18T06:22:23Z + Bit Rate256 + Sample Rate44100 + Normalization1573 + Artwork Count1 + Sort AlbumArt Of Contemporary Travis Picking + Persistent ID848CB1C4C7C97F6B + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Travis%20Picking/The%20Art%20Of%20Contemporary%20Travis%20Picking/47%20Hesitation%20Blues.m4a + File Folder Count4 + Library Folder Count1 + + 7656 + + Track ID7656 + NameBack In The USSR + ArtistThe Beatles + ComposerJohn Lennon & Paul McCartney + AlbumThe Beatles (White Album) [Disc 1] [2009 Stereo Remaster] + GenreRock + KindAAC audio file + Size6317754 + Total Time163453 + Disc Number1 + Disc Count2 + Track Number1 + Track Count17 + Year1968 + Date Modified2009-12-18T13:43:57Z + Date Added2009-12-18T13:30:36Z + Bit Rate256 + Sample Rate44100 + Normalization8245 + Artwork Count1 + Sort AlbumBeatles (White Album) [Disc 1] [2009 Stereo Remaster] + Sort ArtistBeatles + Persistent ID82D98C2C94BCC0A8 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/The%20Beatles%20(White%20Album)%20%5BDisc%201%5D%20%5B2009%20Stereo%20Remaster%5D/1-01%20Back%20In%20The%20USSR.m4a + File Folder Count4 + Library Folder Count1 + + 7658 + + Track ID7658 + NameDear Prudence + ArtistThe Beatles + ComposerJohn Lennon & Paul McCartney + AlbumThe Beatles (White Album) [Disc 1] [2009 Stereo Remaster] + GenreRock + KindAAC audio file + Size9030240 + Total Time235773 + Disc Number1 + Disc Count2 + Track Number2 + Track Count17 + Year1968 + Date Modified2009-12-18T13:43:57Z + Date Added2009-12-18T13:30:52Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3393073428 + Play Date UTC2011-07-09T10:53:48Z + Normalization2617 + Artwork Count1 + Sort AlbumBeatles (White Album) [Disc 1] [2009 Stereo Remaster] + Sort ArtistBeatles + Persistent IDCDDA4473F8229436 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/The%20Beatles%20(White%20Album)%20%5BDisc%201%5D%20%5B2009%20Stereo%20Remaster%5D/1-02%20Dear%20Prudence.m4a + File Folder Count4 + Library Folder Count1 + + 7660 + + Track ID7660 + NameGlass Onion + ArtistThe Beatles + ComposerJohn Lennon & Paul McCartney + AlbumThe Beatles (White Album) [Disc 1] [2009 Stereo Remaster] + GenreRock + KindAAC audio file + Size5088234 + Total Time137840 + Disc Number1 + Disc Count2 + Track Number3 + Track Count17 + Year1968 + Date Modified2009-12-18T13:43:56Z + Date Added2009-12-18T13:31:12Z + Bit Rate256 + Sample Rate44100 + Normalization2767 + Artwork Count1 + Sort AlbumBeatles (White Album) [Disc 1] [2009 Stereo Remaster] + Sort ArtistBeatles + Persistent ID909BACF0A302A1DC + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/The%20Beatles%20(White%20Album)%20%5BDisc%201%5D%20%5B2009%20Stereo%20Remaster%5D/1-03%20Glass%20Onion.m4a + File Folder Count4 + Library Folder Count1 + + 7662 + + Track ID7662 + NameOb-La-Di, Ob-La-Da + ArtistThe Beatles + ComposerJohn Lennon & Paul McCartney + AlbumThe Beatles (White Album) [Disc 1] [2009 Stereo Remaster] + GenreRock + KindAAC audio file + Size6279380 + Total Time188960 + Disc Number1 + Disc Count2 + Track Number4 + Track Count17 + Year1968 + Date Modified2009-12-18T13:43:56Z + Date Added2009-12-18T13:31:23Z + Bit Rate256 + Sample Rate44100 + Normalization4077 + Artwork Count1 + Sort AlbumBeatles (White Album) [Disc 1] [2009 Stereo Remaster] + Sort ArtistBeatles + Persistent ID7E3157A1235F8D4E + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/The%20Beatles%20(White%20Album)%20%5BDisc%201%5D%20%5B2009%20Stereo%20Remaster%5D/1-04%20Ob-La-Di,%20Ob-La-Da.m4a + File Folder Count4 + Library Folder Count1 + + 7664 + + Track ID7664 + NameWild Honey Pie + ArtistThe Beatles + ComposerJohn Lennon & Paul McCartney + AlbumThe Beatles (White Album) [Disc 1] [2009 Stereo Remaster] + GenreRock + KindAAC audio file + Size2009188 + Total Time52973 + Disc Number1 + Disc Count2 + Track Number5 + Track Count17 + Year1968 + Date Modified2009-12-18T13:43:56Z + Date Added2009-12-18T13:31:38Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3344182911 + Play Date UTC2009-12-20T14:11:51Z + Normalization3225 + Artwork Count1 + Sort AlbumBeatles (White Album) [Disc 1] [2009 Stereo Remaster] + Sort ArtistBeatles + Persistent IDDAB9768690789EC5 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/The%20Beatles%20(White%20Album)%20%5BDisc%201%5D%20%5B2009%20Stereo%20Remaster%5D/1-05%20Wild%20Honey%20Pie.m4a + File Folder Count4 + Library Folder Count1 + + 7666 + + Track ID7666 + NameThe Continuing Story Of Bungalow Bill + ArtistThe Beatles + ComposerJohn Lennon & Paul McCartney + AlbumThe Beatles (White Album) [Disc 1] [2009 Stereo Remaster] + GenreRock + KindAAC audio file + Size7209566 + Total Time194160 + Disc Number1 + Disc Count2 + Track Number6 + Track Count17 + Year1968 + Date Modified2009-12-18T13:43:56Z + Date Added2009-12-18T13:31:42Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3344183276 + Play Date UTC2009-12-20T14:17:56Z + Skip Count1 + Normalization3505 + Artwork Count1 + Sort AlbumBeatles (White Album) [Disc 1] [2009 Stereo Remaster] + Sort ArtistBeatles + Sort NameContinuing Story Of Bungalow Bill + Persistent ID0CA5273E4035A33E + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/The%20Beatles%20(White%20Album)%20%5BDisc%201%5D%20%5B2009%20Stereo%20Remaster%5D/1-06%20The%20Continuing%20Story%20Of%20Bungalow%20Bill.m4a + File Folder Count4 + Library Folder Count1 + + 7668 + + Track ID7668 + NameWhile My Guitar Gently Weeps + ArtistThe Beatles + ComposerGeorge Harrison/John Lennon & Paul McCartney + AlbumThe Beatles (White Album) [Disc 1] [2009 Stereo Remaster] + GenreRock + KindAAC audio file + Size10741270 + Total Time285000 + Disc Number1 + Disc Count2 + Track Number7 + Track Count17 + Year1968 + Date Modified2009-12-18T13:43:55Z + Date Added2009-12-18T13:31:56Z + Bit Rate256 + Sample Rate44100 + Normalization6308 + Artwork Count1 + Sort AlbumBeatles (White Album) [Disc 1] [2009 Stereo Remaster] + Sort ArtistBeatles + Persistent ID9B0C3398AA7906CB + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/The%20Beatles%20(White%20Album)%20%5BDisc%201%5D%20%5B2009%20Stereo%20Remaster%5D/1-07%20While%20My%20Guitar%20Gently%20Weeps.m4a + File Folder Count4 + Library Folder Count1 + + 7670 + + Track ID7670 + NameHappiness Is A Warm Gun + ArtistThe Beatles + ComposerJohn Lennon & Paul McCartney + AlbumThe Beatles (White Album) [Disc 1] [2009 Stereo Remaster] + GenreRock + KindAAC audio file + Size6181162 + Total Time164546 + Disc Number1 + Disc Count2 + Track Number8 + Track Count17 + Year1968 + Date Modified2009-12-18T13:43:55Z + Date Added2009-12-18T13:32:15Z + Bit Rate256 + Sample Rate44100 + Normalization4450 + Artwork Count1 + Sort AlbumBeatles (White Album) [Disc 1] [2009 Stereo Remaster] + Sort ArtistBeatles + Persistent IDB1D78E3F33E1ADCB + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/The%20Beatles%20(White%20Album)%20%5BDisc%201%5D%20%5B2009%20Stereo%20Remaster%5D/1-08%20Happiness%20Is%20A%20Warm%20Gun.m4a + File Folder Count4 + Library Folder Count1 + + 7672 + + Track ID7672 + NameMartha My Dear + ArtistThe Beatles + ComposerJohn Lennon & Paul McCartney + AlbumThe Beatles (White Album) [Disc 1] [2009 Stereo Remaster] + GenreRock + KindAAC audio file + Size5688609 + Total Time148573 + Disc Number1 + Disc Count2 + Track Number9 + Track Count17 + Year1968 + Date Modified2009-12-18T13:43:54Z + Date Added2009-12-18T13:32:25Z + Bit Rate256 + Sample Rate44100 + Normalization1861 + Artwork Count1 + Sort AlbumBeatles (White Album) [Disc 1] [2009 Stereo Remaster] + Sort ArtistBeatles + Persistent ID842D4934D598A8E6 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/The%20Beatles%20(White%20Album)%20%5BDisc%201%5D%20%5B2009%20Stereo%20Remaster%5D/1-09%20Martha%20My%20Dear.m4a + File Folder Count4 + Library Folder Count1 + + 7674 + + Track ID7674 + NameI'm So Tired + ArtistThe Beatles + ComposerJohn Lennon & Paul McCartney + AlbumThe Beatles (White Album) [Disc 1] [2009 Stereo Remaster] + GenreRock + KindAAC audio file + Size4167398 + Total Time123493 + Disc Number1 + Disc Count2 + Track Number10 + Track Count17 + Year1968 + Date Modified2009-12-18T13:43:54Z + Date Added2009-12-18T13:32:35Z + Bit Rate256 + Sample Rate44100 + Normalization2055 + Artwork Count1 + Sort AlbumBeatles (White Album) [Disc 1] [2009 Stereo Remaster] + Sort ArtistBeatles + Persistent ID5CA00413F8224A6B + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/The%20Beatles%20(White%20Album)%20%5BDisc%201%5D%20%5B2009%20Stereo%20Remaster%5D/1-10%20I'm%20So%20Tired.m4a + File Folder Count4 + Library Folder Count1 + + 7676 + + Track ID7676 + NameBlackbird + ArtistThe Beatles + ComposerJohn Lennon & Paul McCartney + AlbumThe Beatles (White Album) [Disc 1] [2009 Stereo Remaster] + GenreRock + KindAAC audio file + Size5170194 + Total Time138386 + Disc Number1 + Disc Count2 + Track Number11 + Track Count17 + Year1968 + Date Modified2009-12-18T13:43:54Z + Date Added2009-12-18T13:32:42Z + Bit Rate256 + Sample Rate44100 + Play Count3 + Play Date3392224877 + Play Date UTC2011-06-29T15:11:17Z + Normalization1156 + Artwork Count1 + Sort AlbumBeatles (White Album) [Disc 1] [2009 Stereo Remaster] + Sort ArtistBeatles + Persistent ID6607DB6E1FA54770 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/The%20Beatles%20(White%20Album)%20%5BDisc%201%5D%20%5B2009%20Stereo%20Remaster%5D/1-11%20Blackbird.m4a + File Folder Count4 + Library Folder Count1 + + 7678 + + Track ID7678 + NamePiggies + ArtistThe Beatles + ComposerJohn Lennon & Paul McCartney/George Harrison + AlbumThe Beatles (White Album) [Disc 1] [2009 Stereo Remaster] + GenreRock + KindAAC audio file + Size4535673 + Total Time124266 + Disc Number1 + Disc Count2 + Track Number12 + Track Count17 + Year1968 + Date Modified2009-12-18T13:43:53Z + Date Added2009-12-18T13:32:50Z + Bit Rate256 + Sample Rate44100 + Normalization2243 + Artwork Count1 + Sort AlbumBeatles (White Album) [Disc 1] [2009 Stereo Remaster] + Sort ArtistBeatles + Persistent IDBF9D4B98FF2884A3 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/The%20Beatles%20(White%20Album)%20%5BDisc%201%5D%20%5B2009%20Stereo%20Remaster%5D/1-12%20Piggies.m4a + File Folder Count4 + Library Folder Count1 + + 7680 + + Track ID7680 + NameRocky Racoon + ArtistThe Beatles + ComposerJohn Lennon & Paul McCartney + AlbumThe Beatles (White Album) [Disc 1] [2009 Stereo Remaster] + GenreRock + KindAAC audio file + Size8048078 + Total Time213106 + Disc Number1 + Disc Count2 + Track Number13 + Track Count17 + Year1968 + Date Modified2009-12-18T13:43:53Z + Date Added2009-12-18T13:32:58Z + Bit Rate256 + Sample Rate44100 + Normalization1161 + Artwork Count1 + Sort AlbumBeatles (White Album) [Disc 1] [2009 Stereo Remaster] + Sort ArtistBeatles + Persistent ID9CB49BF865FF9F5F + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/The%20Beatles%20(White%20Album)%20%5BDisc%201%5D%20%5B2009%20Stereo%20Remaster%5D/1-13%20Rocky%20Racoon.m4a + File Folder Count4 + Library Folder Count1 + + 7682 + + Track ID7682 + NameDon't Pass Me By + ArtistThe Beatles + ComposerRichard Starkey + AlbumThe Beatles (White Album) [Disc 1] [2009 Stereo Remaster] + GenreRock + KindAAC audio file + Size8733217 + Total Time230453 + Disc Number1 + Disc Count2 + Track Number14 + Track Count17 + Year1968 + Date Modified2009-12-18T13:43:53Z + Date Added2009-12-18T13:33:10Z + Bit Rate256 + Sample Rate44100 + Normalization2944 + Artwork Count1 + Sort AlbumBeatles (White Album) [Disc 1] [2009 Stereo Remaster] + Sort ArtistBeatles + Persistent ID234D0055C074CAC2 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/The%20Beatles%20(White%20Album)%20%5BDisc%201%5D%20%5B2009%20Stereo%20Remaster%5D/1-14%20Don't%20Pass%20Me%20By.m4a + File Folder Count4 + Library Folder Count1 + + 7684 + + Track ID7684 + NameWhy Don't We Do It In The Road? + ArtistThe Beatles + ComposerJohn Lennon & Paul McCartney + AlbumThe Beatles (White Album) [Disc 1] [2009 Stereo Remaster] + GenreRock + KindAAC audio file + Size3445160 + Total Time101160 + Disc Number1 + Disc Count2 + Track Number15 + Track Count17 + Year1968 + Date Modified2009-12-18T13:43:52Z + Date Added2009-12-18T13:33:22Z + Bit Rate256 + Sample Rate44100 + Normalization2720 + Artwork Count1 + Sort AlbumBeatles (White Album) [Disc 1] [2009 Stereo Remaster] + Sort ArtistBeatles + Persistent IDAEAD99562F66BEE0 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/The%20Beatles%20(White%20Album)%20%5BDisc%201%5D%20%5B2009%20Stereo%20Remaster%5D/1-15%20Why%20Don't%20We%20Do%20It%20In%20The%20Road_.m4a + File Folder Count4 + Library Folder Count1 + + 7686 + + Track ID7686 + NameI Will + ArtistThe Beatles + ComposerJohn Lennon & Paul McCartney + AlbumThe Beatles (White Album) [Disc 1] [2009 Stereo Remaster] + GenreRock + KindAAC audio file + Size3845943 + Total Time105933 + Disc Number1 + Disc Count2 + Track Number16 + Track Count17 + Year1968 + Date Modified2009-12-18T13:43:52Z + Date Added2009-12-18T13:33:27Z + Bit Rate256 + Sample Rate44100 + Normalization1570 + Artwork Count1 + Sort AlbumBeatles (White Album) [Disc 1] [2009 Stereo Remaster] + Sort ArtistBeatles + Persistent IDD134666D05ADDD87 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/The%20Beatles%20(White%20Album)%20%5BDisc%201%5D%20%5B2009%20Stereo%20Remaster%5D/1-16%20I%20Will.m4a + File Folder Count4 + Library Folder Count1 + + 7688 + + Track ID7688 + NameJulia + ArtistThe Beatles + ComposerJohn Lennon & Paul McCartney + AlbumThe Beatles (White Album) [Disc 1] [2009 Stereo Remaster] + GenreRock + KindAAC audio file + Size6040372 + Total Time176666 + Disc Number1 + Disc Count2 + Track Number17 + Track Count17 + Year1968 + Date Modified2009-12-18T13:43:52Z + Date Added2009-12-18T13:33:33Z + Bit Rate256 + Sample Rate44100 + Normalization1155 + Artwork Count1 + Sort AlbumBeatles (White Album) [Disc 1] [2009 Stereo Remaster] + Sort ArtistBeatles + Persistent ID22A83F5B332DD9B6 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/The%20Beatles%20(White%20Album)%20%5BDisc%201%5D%20%5B2009%20Stereo%20Remaster%5D/1-17%20Julia.m4a + File Folder Count4 + Library Folder Count1 + + 7690 + + Track ID7690 + NameBirthday + ArtistThe Beatles + ComposerMcCartney/Lennnon + AlbumThe Beatles (White Album) [Disc 2] [2009 Stereo Remaster] + GenreRock + KindAAC audio file + Size5440540 + Total Time163080 + Disc Number2 + Disc Count2 + Track Number1 + Track Count13 + Year1968 + Date Modified2009-12-18T13:43:51Z + Date Added2009-12-18T13:34:44Z + Bit Rate256 + Sample Rate44100 + Normalization4141 + Artwork Count1 + Sort AlbumBeatles (White Album) [Disc 2] [2009 Stereo Remaster] + Sort ArtistBeatles + Persistent ID6EEECE156AE40156 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/The%20Beatles%20(White%20Album)%20%5BDisc%202%5D%20%5B2009%20Stereo%20Remaster%5D/2-01%20Birthday.m4a + File Folder Count4 + Library Folder Count1 + + 7692 + + Track ID7692 + NameYer Blues + ArtistThe Beatles + ComposerLennnon/McCartney + AlbumThe Beatles (White Album) [Disc 2] [2009 Stereo Remaster] + GenreRock + KindAAC audio file + Size8925818 + Total Time240453 + Disc Number2 + Disc Count2 + Track Number2 + Track Count13 + Year1968 + Date Modified2009-12-18T13:43:51Z + Date Added2009-12-18T13:35:14Z + Bit Rate256 + Sample Rate44100 + Normalization3872 + Artwork Count1 + Sort AlbumBeatles (White Album) [Disc 2] [2009 Stereo Remaster] + Sort ArtistBeatles + Persistent ID5CDD7002BA46C80F + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/The%20Beatles%20(White%20Album)%20%5BDisc%202%5D%20%5B2009%20Stereo%20Remaster%5D/2-02%20Yer%20Blues.m4a + File Folder Count4 + Library Folder Count1 + + 7694 + + Track ID7694 + NameMother Nature's Son + ArtistThe Beatles + ComposerLennnon/McCartney + AlbumThe Beatles (White Album) [Disc 2] [2009 Stereo Remaster] + GenreRock + KindAAC audio file + Size6331298 + Total Time168026 + Disc Number2 + Disc Count2 + Track Number3 + Track Count13 + Year1968 + Date Modified2009-12-18T13:43:51Z + Date Added2009-12-18T13:35:55Z + Bit Rate256 + Sample Rate44100 + Normalization1156 + Artwork Count1 + Sort AlbumBeatles (White Album) [Disc 2] [2009 Stereo Remaster] + Sort ArtistBeatles + Persistent IDBC383788E59291DB + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/The%20Beatles%20(White%20Album)%20%5BDisc%202%5D%20%5B2009%20Stereo%20Remaster%5D/2-03%20Mother%20Nature's%20Son.m4a + File Folder Count4 + Library Folder Count1 + + 7696 + + Track ID7696 + NameEverybody's Got Something To Hide Except Me And My Monkey + ArtistThe Beatles + ComposerMcCartney/Lennnon + AlbumThe Beatles (White Album) [Disc 2] [2009 Stereo Remaster] + GenreRock + KindAAC audio file + Size5597898 + Total Time144773 + Disc Number2 + Disc Count2 + Track Number4 + Track Count13 + Year1968 + Date Modified2009-12-18T13:43:50Z + Date Added2009-12-18T13:36:23Z + Bit Rate256 + Sample Rate44100 + Normalization6132 + Artwork Count1 + Sort AlbumBeatles (White Album) [Disc 2] [2009 Stereo Remaster] + Sort ArtistBeatles + Persistent ID90AD8CA73A4CC1A6 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/The%20Beatles%20(White%20Album)%20%5BDisc%202%5D%20%5B2009%20Stereo%20Remaster%5D/2-04%20Everybody's%20Got%20Something%20To%20Hide%20Except%20Me%20And%20My%20Monkey.m4a + File Folder Count4 + Library Folder Count1 + + 7698 + + Track ID7698 + NameSexy Sadie + ArtistThe Beatles + ComposerLennnon/McCartney + AlbumThe Beatles (White Album) [Disc 2] [2009 Stereo Remaster] + GenreRock + KindAAC audio file + Size6962850 + Total Time195266 + Disc Number2 + Disc Count2 + Track Number5 + Track Count13 + Year1968 + Date Modified2009-12-18T13:43:50Z + Date Added2009-12-18T13:36:45Z + Bit Rate256 + Sample Rate44100 + Normalization2197 + Artwork Count1 + Sort AlbumBeatles (White Album) [Disc 2] [2009 Stereo Remaster] + Sort ArtistBeatles + Persistent IDF57CFC7EFC2D6E34 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/The%20Beatles%20(White%20Album)%20%5BDisc%202%5D%20%5B2009%20Stereo%20Remaster%5D/2-05%20Sexy%20Sadie.m4a + File Folder Count4 + Library Folder Count1 + + 7700 + + Track ID7700 + NameHelter Skelter + ArtistThe Beatles + ComposerLennnon/McCartney + AlbumThe Beatles (White Album) [Disc 2] [2009 Stereo Remaster] + GenreRock + KindAAC audio file + Size10268676 + Total Time269786 + Disc Number2 + Disc Count2 + Track Number6 + Track Count13 + Year1968 + Date Modified2009-12-18T13:43:50Z + Date Added2009-12-18T13:37:13Z + Bit Rate256 + Sample Rate44100 + Normalization6670 + Artwork Count1 + Sort AlbumBeatles (White Album) [Disc 2] [2009 Stereo Remaster] + Sort ArtistBeatles + Persistent ID12AF35248A3A8624 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/The%20Beatles%20(White%20Album)%20%5BDisc%202%5D%20%5B2009%20Stereo%20Remaster%5D/2-06%20Helter%20Skelter.m4a + File Folder Count4 + Library Folder Count1 + + 7702 + + Track ID7702 + NameLong, Long, Long + ArtistThe Beatles + ComposerHarrison + AlbumThe Beatles (White Album) [Disc 2] [2009 Stereo Remaster] + GenreRock + KindAAC audio file + Size6753161 + Total Time186306 + Disc Number2 + Disc Count2 + Track Number7 + Track Count13 + Year1968 + Date Modified2009-12-18T13:43:49Z + Date Added2009-12-18T13:37:50Z + Bit Rate256 + Sample Rate44100 + Normalization1156 + Artwork Count1 + Sort AlbumBeatles (White Album) [Disc 2] [2009 Stereo Remaster] + Sort ArtistBeatles + Persistent ID1C67CCAFC12348DA + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/The%20Beatles%20(White%20Album)%20%5BDisc%202%5D%20%5B2009%20Stereo%20Remaster%5D/2-07%20Long,%20Long,%20Long.m4a + File Folder Count4 + Library Folder Count1 + + 7704 + + Track ID7704 + NameRevolution 1 + ArtistThe Beatles + ComposerMcCartney/Lennnon + AlbumThe Beatles (White Album) [Disc 2] [2009 Stereo Remaster] + GenreRock + KindAAC audio file + Size8699595 + Total Time255706 + Disc Number2 + Disc Count2 + Track Number8 + Track Count13 + Year1968 + Date Modified2009-12-18T13:43:49Z + Date Added2009-12-18T13:38:14Z + Bit Rate256 + Sample Rate44100 + Normalization3282 + Artwork Count1 + Sort AlbumBeatles (White Album) [Disc 2] [2009 Stereo Remaster] + Sort ArtistBeatles + Persistent ID370954B4DE96D77A + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/The%20Beatles%20(White%20Album)%20%5BDisc%202%5D%20%5B2009%20Stereo%20Remaster%5D/2-08%20Revolution%201.m4a + File Folder Count4 + Library Folder Count1 + + 7706 + + Track ID7706 + NameHoney Pie + ArtistThe Beatles + ComposerLennnon/McCartney + AlbumThe Beatles (White Album) [Disc 2] [2009 Stereo Remaster] + GenreRock + KindAAC audio file + Size6235547 + Total Time161160 + Disc Number2 + Disc Count2 + Track Number9 + Track Count13 + Year1968 + Date Modified2009-12-18T13:43:48Z + Date Added2009-12-18T13:38:45Z + Bit Rate256 + Sample Rate44100 + Normalization798 + Artwork Count1 + Sort AlbumBeatles (White Album) [Disc 2] [2009 Stereo Remaster] + Sort ArtistBeatles + Persistent IDCC2FC357F2B9C48D + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/The%20Beatles%20(White%20Album)%20%5BDisc%202%5D%20%5B2009%20Stereo%20Remaster%5D/2-09%20Honey%20Pie.m4a + File Folder Count4 + Library Folder Count1 + + 7708 + + Track ID7708 + NameSavoy Truffle + ArtistThe Beatles + ComposerHarrison + AlbumThe Beatles (White Album) [Disc 2] [2009 Stereo Remaster] + GenreRock + KindAAC audio file + Size6732003 + Total Time174466 + Disc Number2 + Disc Count2 + Track Number10 + Track Count13 + Year1968 + Date Modified2009-12-18T13:43:48Z + Date Added2009-12-18T13:39:04Z + Bit Rate256 + Sample Rate44100 + Normalization4442 + Artwork Count1 + Sort AlbumBeatles (White Album) [Disc 2] [2009 Stereo Remaster] + Sort ArtistBeatles + Persistent ID7C7D4F819A171A6B + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/The%20Beatles%20(White%20Album)%20%5BDisc%202%5D%20%5B2009%20Stereo%20Remaster%5D/2-10%20Savoy%20Truffle.m4a + File Folder Count4 + Library Folder Count1 + + 7710 + + Track ID7710 + NameCry Baby Cry + ArtistThe Beatles + ComposerLennnon/McCartney + AlbumThe Beatles (White Album) [Disc 2] [2009 Stereo Remaster] + GenreRock + KindAAC audio file + Size6767430 + Total Time182080 + Disc Number2 + Disc Count2 + Track Number11 + Track Count13 + Year1968 + Date Modified2009-12-18T13:43:47Z + Date Added2009-12-18T13:39:25Z + Bit Rate256 + Sample Rate44100 + Normalization1466 + Artwork Count1 + Sort AlbumBeatles (White Album) [Disc 2] [2009 Stereo Remaster] + Sort ArtistBeatles + Persistent ID5BE149A3AC519B0E + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/The%20Beatles%20(White%20Album)%20%5BDisc%202%5D%20%5B2009%20Stereo%20Remaster%5D/2-11%20Cry%20Baby%20Cry.m4a + File Folder Count4 + Library Folder Count1 + + 7712 + + Track ID7712 + NameRevolution 9 + ArtistThe Beatles + ComposerLennnon/McCartney + AlbumThe Beatles (White Album) [Disc 2] [2009 Stereo Remaster] + GenreRock + KindAAC audio file + Size18710142 + Total Time502013 + Disc Number2 + Disc Count2 + Track Number12 + Track Count13 + Year1968 + Date Modified2009-12-18T13:43:47Z + Date Added2009-12-18T13:39:45Z + Bit Rate256 + Sample Rate44100 + Normalization2428 + Artwork Count1 + Sort AlbumBeatles (White Album) [Disc 2] [2009 Stereo Remaster] + Sort ArtistBeatles + Persistent ID8CB68E4971D5EE89 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/The%20Beatles%20(White%20Album)%20%5BDisc%202%5D%20%5B2009%20Stereo%20Remaster%5D/2-12%20Revolution%209.m4a + File Folder Count4 + Library Folder Count1 + + 7714 + + Track ID7714 + NameGood Night + ArtistThe Beatles + ComposerLennnon/McCartney + AlbumThe Beatles (White Album) [Disc 2] [2009 Stereo Remaster] + GenreRock + KindAAC audio file + Size6825856 + Total Time193760 + Disc Number2 + Disc Count2 + Track Number13 + Track Count13 + Year1968 + Date Modified2009-12-18T13:40:56Z + Date Added2009-12-18T13:40:38Z + Bit Rate256 + Sample Rate44100 + Normalization1332 + Sort AlbumBeatles (White Album) [Disc 2] [2009 Stereo Remaster] + Sort ArtistBeatles + Persistent IDA2E4F6E6D2518CEA + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/The%20Beatles%20(White%20Album)%20%5BDisc%202%5D%20%5B2009%20Stereo%20Remaster%5D/2-13%20Good%20Night.m4a + File Folder Count4 + Library Folder Count1 + + 7716 + + Track ID7716 + NameLove Me Do + ArtistThe Beatles + ComposerJohn Lennon & Paul McCartney + Album1 + GenrePop + KindAAC audio file + Size4146279 + Total Time140733 + Disc Number1 + Disc Count1 + Track Number1 + Track Count27 + Year1962 + BPM146 + Date Modified2010-01-02T05:43:12Z + Date Added2010-01-02T05:27:55Z + Bit Rate256 + Sample Rate44100 + Play Count2 + Play Date3471538850 + Play Date UTC2014-01-02T14:50:50Z + Normalization3317 + Artwork Count1 + Sort ArtistBeatles + Persistent IDBDC7F998F3E877D6 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/1/01%20Love%20Me%20Do.m4a + File Folder Count4 + Library Folder Count1 + + 7718 + + Track ID7718 + NameFrom Me To You + ArtistThe Beatles + ComposerJohn Lennon & Paul McCartney + Album1 + GenrePop + KindAAC audio file + Size3482518 + Total Time116160 + Disc Number1 + Disc Count1 + Track Number2 + Track Count27 + Year1963 + BPM138 + Date Modified2010-01-02T05:43:12Z + Date Added2010-01-02T05:28:21Z + Bit Rate256 + Sample Rate44100 + Skip Count1 + Skip Date2014-01-02T14:50:53Z + Normalization4262 + Artwork Count1 + Sort ArtistBeatles + Persistent IDC2D02256928BB7D0 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/1/02%20From%20Me%20To%20You.m4a + File Folder Count4 + Library Folder Count1 + + 7720 + + Track ID7720 + NameShe Loves You + ArtistThe Beatles + ComposerJohn Lennon & Paul McCartney + Album1 + GenrePop + KindAAC audio file + Size4293233 + Total Time141173 + Disc Number1 + Disc Count1 + Track Number3 + Track Count27 + Year1963 + BPM153 + Date Modified2010-01-02T05:43:12Z + Date Added2010-01-02T05:28:42Z + Bit Rate256 + Sample Rate44100 + Normalization6711 + Artwork Count1 + Sort ArtistBeatles + Persistent ID3ECAED04E5415768 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/1/03%20She%20Loves%20You.m4a + File Folder Count4 + Library Folder Count1 + + 7722 + + Track ID7722 + NameI Want To Hold Your Hand + ArtistThe Beatles + ComposerSomething + Album1 + GenrePop + KindAAC audio file + Size5446560 + Total Time144960 + Disc Number1 + Disc Count1 + Track Number4 + Track Count27 + Year1963 + BPM133 + Date Modified2010-01-02T05:43:12Z + Date Added2010-01-02T05:29:06Z + Bit Rate256 + Sample Rate44100 + Normalization7819 + Artwork Count1 + Sort ArtistBeatles + Persistent IDD02432AF743C2084 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/1/04%20I%20Want%20To%20Hold%20Your%20Hand.m4a + File Folder Count4 + Library Folder Count1 + + 7724 + + Track ID7724 + NameCan't Buy Me Love + ArtistThe Beatles + ComposerJohn Lennon & Paul McCartney + Album1 + GenrePop + KindAAC audio file + Size4777319 + Total Time131573 + Disc Number1 + Disc Count1 + Track Number5 + Track Count27 + Year1964 + BPM174 + Date Modified2010-01-02T05:43:12Z + Date Added2010-01-02T05:29:29Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3393072859 + Play Date UTC2011-07-09T10:44:19Z + Normalization6763 + Artwork Count1 + Sort ArtistBeatles + Persistent ID5FE61891FFF73C18 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/1/05%20Can't%20Buy%20Me%20Love.m4a + File Folder Count4 + Library Folder Count1 + + 7726 + + Track ID7726 + NameA Hard Day's Night + ArtistThe Beatles + ComposerJohn Lennon & Paul McCartney + Album1 + GenrePop + KindAAC audio file + Size5733772 + Total Time153426 + Disc Number1 + Disc Count1 + Track Number6 + Track Count27 + Year1964 + BPM139 + Date Modified2010-01-02T05:43:13Z + Date Added2010-01-02T05:29:50Z + Bit Rate256 + Sample Rate44100 + Normalization9506 + Artwork Count1 + Sort ArtistBeatles + Sort NameHard Day's Night + Persistent ID9019EFDC36CAD79A + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/1/06%20A%20Hard%20Day's%20Night.m4a + File Folder Count4 + Library Folder Count1 + + 7728 + + Track ID7728 + NameI Feel Fine + ArtistThe Beatles + ComposerSomething + Album1 + GenrePop + KindAAC audio file + Size5063076 + Total Time138333 + Disc Number1 + Disc Count1 + Track Number7 + Track Count27 + Year1964 + BPM180 + Date Modified2010-01-02T05:43:13Z + Date Added2010-01-02T05:30:13Z + Bit Rate256 + Sample Rate44100 + Normalization9068 + Artwork Count1 + Sort ArtistBeatles + Persistent ID1F38DBF689113D08 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/1/07%20I%20Feel%20Fine.m4a + File Folder Count4 + Library Folder Count1 + + 7730 + + Track ID7730 + NameEight Days A Week + ArtistThe Beatles + ComposerJohn Lennon & Paul McCartney + Album1 + GenrePop + KindAAC audio file + Size5912554 + Total Time164373 + Disc Number1 + Disc Count1 + Track Number8 + Track Count27 + Year1964 + BPM138 + Date Modified2010-01-02T05:43:13Z + Date Added2010-01-02T05:30:33Z + Bit Rate256 + Sample Rate44100 + Normalization8571 + Artwork Count1 + Sort ArtistBeatles + Persistent ID7FB48C9A330847CB + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/1/08%20Eight%20Days%20A%20Week.m4a + File Folder Count4 + Library Folder Count1 + + 7732 + + Track ID7732 + NameTicket To Ride + ArtistThe Beatles + ComposerSomething + Album1 + GenrePop + KindAAC audio file + Size6305264 + Total Time190533 + Disc Number1 + Disc Count1 + Track Number9 + Track Count27 + Year1964 + BPM126 + Date Modified2010-01-02T05:43:14Z + Date Added2010-01-02T05:30:56Z + Bit Rate256 + Sample Rate44100 + Normalization6494 + Artwork Count1 + Sort ArtistBeatles + Persistent ID28FFE41D2D6D5F3F + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/1/09%20Ticket%20To%20Ride.m4a + File Folder Count4 + Library Folder Count1 + + 7734 + + Track ID7734 + NameHelp! + ArtistThe Beatles + ComposerJohn Lennon & Paul McCartney + Album1 + GenrePop + KindAAC audio file + Size4570230 + Total Time138826 + Disc Number1 + Disc Count1 + Track Number10 + Track Count27 + Year1965 + BPM191 + Date Modified2010-01-02T05:43:14Z + Date Added2010-01-02T05:31:21Z + Bit Rate256 + Sample Rate44100 + Normalization5905 + Artwork Count1 + Sort ArtistBeatles + Persistent ID0AD82867DC405839 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/1/10%20Help!.m4a + File Folder Count4 + Library Folder Count1 + + 7736 + + Track ID7736 + NameYesterday + ArtistThe Beatles + ComposerJohn Lennon & Paul McCartney + Album1 + GenrePop + KindAAC audio file + Size4426178 + Total Time125400 + Disc Number1 + Disc Count1 + Track Number11 + Track Count27 + Year1965 + BPM100 + Date Modified2010-01-02T05:43:15Z + Date Added2010-01-02T05:31:39Z + Bit Rate256 + Sample Rate44100 + Normalization1760 + Artwork Count1 + Sort ArtistBeatles + Persistent ID074816ECFE331F95 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/1/11%20Yesterday.m4a + File Folder Count4 + Library Folder Count1 + + 7738 + + Track ID7738 + NameDay Tripper + ArtistThe Beatles + ComposerSomething + Album1 + GenrePop + KindAAC audio file + Size6030512 + Total Time168400 + Disc Number1 + Disc Count1 + Track Number12 + Track Count27 + Year1965 + BPM138 + Date Modified2010-01-02T05:43:15Z + Date Added2010-01-02T05:31:54Z + Bit Rate256 + Sample Rate44100 + Normalization8796 + Artwork Count1 + Sort ArtistBeatles + Persistent ID3060E9E626605E40 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/1/12%20Day%20Tripper.m4a + File Folder Count4 + Library Folder Count1 + + 7740 + + Track ID7740 + NameWe Can Work It Out + ArtistThe Beatles + ComposerJohn Lennon & Paul McCartney + Album1 + GenrePop + KindAAC audio file + Size4796679 + Total Time135133 + Disc Number1 + Disc Count1 + Track Number13 + Track Count27 + Year1965 + BPM104 + Date Modified2010-01-02T05:43:15Z + Date Added2010-01-02T05:32:15Z + Bit Rate256 + Sample Rate44100 + Normalization6850 + Artwork Count1 + Sort ArtistBeatles + Persistent ID3AEF3109E4A36A56 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/1/13%20We%20Can%20Work%20It%20Out.m4a + File Folder Count4 + Library Folder Count1 + + 7742 + + Track ID7742 + NamePaperback Writer + ArtistThe Beatles + ComposerJohn Lennon & Paul McCartney + Album1 + GenrePop + KindAAC audio file + Size5295979 + Total Time138400 + Disc Number1 + Disc Count1 + Track Number14 + Track Count27 + Year1966 + BPM158 + Date Modified2010-01-02T05:43:15Z + Date Added2010-01-02T05:32:31Z + Bit Rate256 + Sample Rate44100 + Normalization10784 + Artwork Count1 + Sort ArtistBeatles + Persistent ID961FE4EC56152462 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/1/14%20Paperback%20Writer.m4a + File Folder Count4 + Library Folder Count1 + + 7744 + + Track ID7744 + NameYellow Submarine + ArtistThe Beatles + ComposerJohn Lennon & Paul McCartney + Album1 + GenrePop + KindAAC audio file + Size5896947 + Total Time158373 + Disc Number1 + Disc Count1 + Track Number15 + Track Count27 + Year1966 + BPM113 + Date Modified2010-01-02T05:43:16Z + Date Added2010-01-02T05:32:47Z + Bit Rate256 + Sample Rate44100 + Play Count2 + Play Date3471539011 + Play Date UTC2014-01-02T14:53:31Z + Skip Count1 + Skip Date2014-05-16T15:38:27Z + Normalization5717 + Artwork Count1 + Sort ArtistBeatles + Persistent ID16D0D53DD6D0EFA2 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/1/15%20Yellow%20Submarine.m4a + File Folder Count4 + Library Folder Count1 + + 7746 + + Track ID7746 + NameEleanor Rigby + ArtistThe Beatles + ComposerJohn Lennon & Paul McCartney + Album1 + GenrePop + KindAAC audio file + Size4571808 + Total Time126826 + Disc Number1 + Disc Count1 + Track Number16 + Track Count27 + Year1966 + BPM137 + Date Modified2010-01-02T05:43:16Z + Date Added2010-01-02T05:33:05Z + Bit Rate256 + Sample Rate44100 + Play Count3 + Play Date3471539138 + Play Date UTC2014-01-02T14:55:38Z + Normalization3378 + Artwork Count1 + Sort ArtistBeatles + Persistent IDDC03D6ABE1A1DE92 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/1/16%20Eleanor%20Rigby.m4a + File Folder Count4 + Library Folder Count1 + + 7748 + + Track ID7748 + NamePenny Lane + ArtistThe Beatles + ComposerJohn Lennon & Paul McCartney + Album1 + GenrePop + KindAAC audio file + Size5929389 + Total Time179906 + Disc Number1 + Disc Count1 + Track Number17 + Track Count27 + Year1967 + BPM114 + Date Modified2010-01-02T05:43:16Z + Date Added2010-01-02T05:33:19Z + Bit Rate256 + Sample Rate44100 + Normalization6901 + Artwork Count1 + Sort ArtistBeatles + Persistent IDE519B93AA0F2D9CA + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/1/17%20Penny%20Lane.m4a + File Folder Count4 + Library Folder Count1 + + 7750 + + Track ID7750 + NameAll You Need Is Love + ArtistThe Beatles + ComposerJohn Lennon & Paul McCartney + Album1 + GenrePop + KindAAC audio file + Size8091543 + Total Time227493 + Disc Number1 + Disc Count1 + Track Number18 + Track Count27 + Year1967 + BPM100 + Date Modified2010-01-02T05:43:16Z + Date Added2010-01-02T05:33:39Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3393072438 + Play Date UTC2011-07-09T10:37:18Z + Normalization5018 + Artwork Count1 + Sort ArtistBeatles + Persistent ID0964F19B8E1039B9 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/1/18%20All%20You%20Need%20Is%20Love.m4a + File Folder Count4 + Library Folder Count1 + + 7752 + + Track ID7752 + NameHello Goodbye + ArtistThe Beatles + ComposerSomething + Album1 + GenrePop + KindAAC audio file + Size7630431 + Total Time207133 + Disc Number1 + Disc Count1 + Track Number19 + Track Count27 + Year1967 + BPM98 + Date Modified2010-01-02T05:43:17Z + Date Added2010-01-02T05:34:02Z + Bit Rate256 + Sample Rate44100 + Normalization6063 + Artwork Count1 + Sort ArtistBeatles + Persistent IDCCB1BACDF78A4FA8 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/1/19%20Hello%20Goodbye.m4a + File Folder Count4 + Library Folder Count1 + + 7754 + + Track ID7754 + NameLady Madonna + ArtistThe Beatles + ComposerJohn Lennon & Paul McCartney + Album1 + GenrePop + KindAAC audio file + Size5059590 + Total Time136933 + Disc Number1 + Disc Count1 + Track Number20 + Track Count27 + Year1968 + BPM110 + Date Modified2010-01-02T05:43:17Z + Date Added2010-01-02T05:34:24Z + Bit Rate256 + Sample Rate44100 + Normalization5224 + Artwork Count1 + Sort ArtistBeatles + Persistent ID4DBF889D919B5E7D + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/1/20%20Lady%20Madonna.m4a + File Folder Count4 + Library Folder Count1 + + 7756 + + Track ID7756 + NameHey Jude + ArtistThe Beatles + ComposerJohn Lennon & Paul McCartney/George Harrison + Album1 + GenrePop + KindAAC audio file + Size15597465 + Total Time424440 + Disc Number1 + Disc Count1 + Track Number21 + Track Count27 + Year1968 + BPM76 + Date Modified2010-01-02T05:43:18Z + Date Added2010-01-02T05:34:38Z + Bit Rate256 + Sample Rate44100 + Normalization2853 + Artwork Count1 + Sort ArtistBeatles + Persistent ID09C15C08D4A7E784 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/1/21%20Hey%20Jude.m4a + File Folder Count4 + Library Folder Count1 + + 7758 + + Track ID7758 + NameGet Back + ArtistThe Beatles + ComposerJohn Lennon & Paul McCartney + Album1 + GenrePop + KindAAC audio file + Size7249507 + Total Time192066 + Disc Number1 + Disc Count1 + Track Number22 + Track Count27 + Year1969 + BPM126 + Date Modified2010-01-02T05:43:18Z + Date Added2010-01-02T05:35:18Z + Bit Rate256 + Sample Rate44100 + Normalization3952 + Artwork Count1 + Sort ArtistBeatles + Persistent IDA752B884EDE93E75 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/1/22%20Get%20Back.m4a + File Folder Count4 + Library Folder Count1 + + 7760 + + Track ID7760 + NameThe Ballad Of John And Yoko + ArtistThe Beatles + ComposerJohn Lennon & Paul McCartney + Album1 + GenrePop + KindAAC audio file + Size6400291 + Total Time179493 + Disc Number1 + Disc Count1 + Track Number23 + Track Count27 + Year1969 + BPM136 + Date Modified2010-01-02T05:43:19Z + Date Added2010-01-02T05:35:36Z + Bit Rate256 + Sample Rate44100 + Normalization3184 + Artwork Count1 + Sort ArtistBeatles + Sort NameBallad Of John And Yoko + Persistent ID6A94F04C2122C788 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/1/23%20The%20Ballad%20Of%20John%20And%20Yoko.m4a + File Folder Count4 + Library Folder Count1 + + 7762 + + Track ID7762 + NameSomething + ArtistThe Beatles + ComposerGeorge Harrison + Album1 + GenrePop + KindAAC audio file + Size6332009 + Total Time181200 + Disc Number1 + Disc Count1 + Track Number24 + Track Count27 + Year1969 + BPM70 + Date Modified2010-01-02T05:43:19Z + Date Added2010-01-02T05:35:53Z + Bit Rate256 + Sample Rate44100 + Normalization3261 + Artwork Count1 + Sort ArtistBeatles + Persistent IDA661C944A34D0AEE + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/1/24%20Something.m4a + File Folder Count4 + Library Folder Count1 + + 7764 + + Track ID7764 + NameCome Together + ArtistThe Beatles + ComposerJohn Lennon & Paul McCartney + Album1 + GenrePop + KindAAC audio file + Size9600425 + Total Time258506 + Disc Number1 + Disc Count1 + Track Number25 + Track Count27 + Year1969 + BPM83 + Date Modified2010-01-02T05:43:20Z + Date Added2010-01-02T05:36:10Z + Bit Rate256 + Sample Rate44100 + Normalization2171 + Artwork Count1 + Sort ArtistBeatles + Persistent ID8C1DFABE574AFCF3 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/1/25%20Come%20Together.m4a + File Folder Count4 + Library Folder Count1 + + 7766 + + Track ID7766 + NameLet It Be + ArtistThe Beatles + ComposerJohn Lennon & Paul McCartney + Album1 + GenrePop + KindAAC audio file + Size8047574 + Total Time230826 + Disc Number1 + Disc Count1 + Track Number26 + Track Count27 + Year1970 + BPM65 + Date Modified2010-01-02T05:43:20Z + Date Added2010-01-02T05:36:33Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3393055754 + Play Date UTC2011-07-09T05:59:14Z + Normalization3665 + Artwork Count1 + Sort ArtistBeatles + Persistent ID811D48DE3F7BE7FE + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/1/26%20Let%20It%20Be.m4a + File Folder Count4 + Library Folder Count1 + + 7768 + + Track ID7768 + NameThe Long And Winding Road + ArtistThe Beatles + ComposerJohn Lennon & Paul McCartney + Album1 + GenrePop + KindAAC audio file + Size7951679 + Total Time217666 + Disc Number1 + Disc Count1 + Track Number27 + Track Count27 + Year1970 + BPM68 + Date Modified2010-01-02T05:43:20Z + Date Added2010-01-02T05:36:54Z + Bit Rate256 + Sample Rate44100 + Normalization3620 + Artwork Count1 + Sort ArtistBeatles + Sort NameLong And Winding Road + Persistent ID712A25DB2773D649 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/1/27%20The%20Long%20And%20Winding%20Road.m4a + File Folder Count4 + Library Folder Count1 + + 7770 + + Track ID7770 + Name01 Ras Gagan Gufaa Mein Ajar Jharay + ArtistShubha Mudgal + AlbumShubha - The Eternal Voice + GenreHindustani Classical + KindMPEG audio file + Size13607453 + Total Time679157 + Track Number1 + Date Modified2010-02-20T10:35:55Z + Date Added2010-02-20T10:32:14Z + Bit Rate160 + Sample Rate44100 + CommentsGBBFW0355085 + + Artwork Count1 + Persistent ID292B9F111E98E70B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Shubha%20Mudgal/Shubha%20-%20The%20Eternal%20Voice/01%2001%20Ras%20Gagan%20Gufaa%20Mein%20Ajar%20Jharay.mp3 + File Folder Count4 + Library Folder Count1 + + 7772 + + Track ID7772 + Name02 Gaayi Gaayi Ab Kaa Kahi - Ravidas + ArtistShubha Mudgal + ComposerRaidas + AlbumShubha - The Eternal Voice + GenreHindustani Classical + KindMPEG audio file + Size12812407 + Total Time639399 + Disc Number1 + Disc Count1 + Track Number2 + Year2003 + Date Modified2010-02-20T10:35:55Z + Date Added2010-02-20T10:32:15Z + Bit Rate160 + Sample Rate44100 + CommentsGBBFW0355081 + + Artwork Count1 + Persistent ID158B3F5BD3892B8B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Shubha%20Mudgal/Shubha%20-%20The%20Eternal%20Voice/02%2002%20Gaayi%20Gaayi%20Ab%20Kaa%20Kahi%20-%20Ravidas.mp3 + File Folder Count4 + Library Folder Count1 + + 7774 + + Track ID7774 + Name03 Ud Re Ud Bihangam - Yaari Sahab + ArtistShubha Mudgal + AlbumShubha - The Eternal Voice + GenreHindustani Classical + KindMPEG audio file + Size11076290 + Total Time552594 + Disc Number1 + Disc Count1 + Track Number3 + Year2003 + Date Modified2010-02-20T10:35:55Z + Date Added2010-02-20T10:32:16Z + Bit Rate160 + Sample Rate44100 + CommentsGBBFW0355082 + + Artwork Count1 + Persistent ID27F89ECDE6D0C549 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Shubha%20Mudgal/Shubha%20-%20The%20Eternal%20Voice/03%2003%20Ud%20Re%20Ud%20Bihangam%20-%20Yaari%20Sahab.mp3 + File Folder Count4 + Library Folder Count1 + + 7776 + + Track ID7776 + Name04 Bahut Rahi Babul Ghar Dulahin - Amir Khusrao + ArtistShubha Mudgal + ComposerAmir Khusrau + AlbumShubha - The Eternal Voice + GenreHindustani Classical + KindMPEG audio file + Size17628358 + Total Time880195 + Disc Number1 + Disc Count1 + Track Number4 + Year2003 + Date Modified2010-02-20T10:35:55Z + Date Added2010-02-20T10:32:16Z + Bit Rate160 + Sample Rate44100 + CommentsGBBFW0355083 + + Artwork Count1 + Persistent ID15CB7556A0B320BB + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Shubha%20Mudgal/Shubha%20-%20The%20Eternal%20Voice/04%2004%20Bahut%20Rahi%20Babul%20Ghar%20Dulahin%20-%20Amir%20Khusrao.mp3 + File Folder Count4 + Library Folder Count1 + + 7778 + + Track ID7778 + Name05 Ab Kaise Chhoote Naam Ratt laagi - Ravidas + ArtistShubha Mudgal + ComposerRaidas + AlbumShubha - The Eternal Voice + GenreHindustani Classical + KindMPEG audio file + Size16825869 + Total Time840071 + Disc Number1 + Disc Count1 + Track Number5 + Year2003 + Date Modified2010-02-20T10:35:55Z + Date Added2010-02-20T10:32:16Z + Bit Rate160 + Sample Rate44100 + CommentsGBBFW0355084 + + Artwork Count1 + Persistent IDB37600F1B911EC38 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Shubha%20Mudgal/Shubha%20-%20The%20Eternal%20Voice/05%2005%20Ab%20Kaise%20Chhoote%20Naam%20Ratt%20laagi%20-%20Ravidas.mp3 + File Folder Count4 + Library Folder Count1 + + 7780 + + Track ID7780 + Name06 Murat Aaj Nihari Mai - Alap + ArtistShubha Mudgal + AlbumShubha - The Eternal Voice + GenreHindustani Classical + KindMPEG audio file + Size4823616 + Total Time239960 + Disc Number1 + Disc Count1 + Track Number6 + Year2004 + Date Modified2010-02-20T10:35:55Z + Date Added2010-02-20T10:32:17Z + Bit Rate160 + Sample Rate44100 + CommentsGBBFW0501691 + + Artwork Count1 + Persistent IDFBFBB4FA9A145A71 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Shubha%20Mudgal/Shubha%20-%20The%20Eternal%20Voice/06%2006%20Murat%20Aaj%20Nihari%20Mai%20-%20Alap.mp3 + File Folder Count4 + Library Folder Count1 + + 7782 + + Track ID7782 + Name07 Murat Aaj Nihari Mai - Raga Bihag in Vilambit Ektal + ArtistShubha Mudgal + AlbumShubha - The Eternal Voice + GenreHindustani Classical + KindMPEG audio file + Size26645289 + Total Time1331043 + Disc Number1 + Disc Count1 + Track Number7 + Year2004 + Date Modified2010-02-20T10:35:55Z + Date Added2010-02-20T10:32:17Z + Bit Rate160 + Sample Rate44100 + CommentsGBBFW0501691 + + Artwork Count1 + Persistent ID387C9F8DFFE8D48B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Shubha%20Mudgal/Shubha%20-%20The%20Eternal%20Voice/07%2007%20Murat%20Aaj%20Nihari%20Mai%20-%20Raga%20Bihag%20in%20Vilambit%20Ektal.mp3 + File Folder Count4 + Library Folder Count1 + + 7784 + + Track ID7784 + Name08 Chhip Ja Ri Chandni Raat - Raga Bihag in madhyalay Teental + ArtistShubha Mudgal + AlbumShubha - The Eternal Voice + GenreHindustani Classical + KindMPEG audio file + Size13057966 + Total Time651676 + Disc Number1 + Disc Count1 + Track Number8 + Year2004 + Date Modified2010-02-20T10:35:55Z + Date Added2010-02-20T10:32:17Z + Bit Rate160 + Sample Rate44100 + CommentsGBBFW0501692 + + Artwork Count1 + Persistent ID3EF468E35EF4BB68 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Shubha%20Mudgal/Shubha%20-%20The%20Eternal%20Voice/08%2008%20Chhip%20Ja%20Ri%20Chandni%20Raat%20-%20Raga%20Bihag%20in%20madhyalay%20Teental.mp3 + File Folder Count4 + Library Folder Count1 + + 7786 + + Track ID7786 + Name09 Chaturang Gaao - Alap + ArtistShubha Mudgal + AlbumShubha - The Eternal Voice + GenreHindustani Classical + KindMPEG audio file + Size1381194 + Total Time67840 + Disc Number1 + Disc Count1 + Track Number9 + Year2004 + Date Modified2010-02-20T10:35:55Z + Date Added2010-02-20T10:32:17Z + Bit Rate160 + Sample Rate44100 + CommentsGBBFW0501693 + + Artwork Count1 + Persistent ID50CCB87AE66D3B7D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Shubha%20Mudgal/Shubha%20-%20The%20Eternal%20Voice/09%2009%20Chaturang%20Gaao%20-%20Alap.mp3 + File Folder Count4 + Library Folder Count1 + + 7788 + + Track ID7788 + Name10 Chaturang Gaao - Raga Sindhura + ArtistShubha Mudgal + AlbumShubha - The Eternal Voice + GenreHindustani Classical + KindMPEG audio file + Size11708453 + Total Time584202 + Disc Number1 + Disc Count1 + Track Number10 + Year2004 + Date Modified2010-02-20T10:35:55Z + Date Added2010-02-20T10:32:17Z + Bit Rate160 + Sample Rate44100 + CommentsGBBFW0501693 + + Artwork Count1 + Persistent ID6A4294E9CF6039E5 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Shubha%20Mudgal/Shubha%20-%20The%20Eternal%20Voice/10%2010%20Chaturang%20Gaao%20-%20Raga%20Sindhura.mp3 + File Folder Count4 + Library Folder Count1 + + 7790 + + Track ID7790 + Name11 Aaye Anokhe Khelaiyya - Raga Desh + ArtistShubha Mudgal + AlbumShubha - The Eternal Voice + GenreHindustani Classical + KindMPEG audio file + Size18271982 + Total Time912378 + Disc Number1 + Disc Count1 + Track Number11 + Year2004 + Date Modified2010-02-20T10:35:55Z + Date Added2010-02-20T10:32:18Z + Bit Rate160 + Sample Rate44100 + CommentsGBBFW0501694 + + Artwork Count1 + Persistent IDA7F6E44505D28964 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Shubha%20Mudgal/Shubha%20-%20The%20Eternal%20Voice/11%2011%20Aaye%20Anokhe%20Khelaiyya%20-%20Raga%20Desh.mp3 + File Folder Count4 + Library Folder Count1 + + 7792 + + Track ID7792 + Name12 Piyari Na Pahirab - Alap + ArtistShubha Mudgal + AlbumShubha - The Eternal Voice + GenreHindustani Classical + KindMPEG audio file + Size2896822 + Total Time143621 + Disc Number1 + Disc Count1 + Track Number12 + Year2004 + Date Modified2010-02-20T10:35:55Z + Date Added2010-02-20T10:32:18Z + Bit Rate160 + Sample Rate44100 + CommentsGBBFW0501695 + + Artwork Count1 + Persistent ID6D30EF872B1159BB + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Shubha%20Mudgal/Shubha%20-%20The%20Eternal%20Voice/12%2012%20Piyari%20Na%20Pahirab%20-%20Alap.mp3 + File Folder Count4 + Library Folder Count1 + + 7794 + + Track ID7794 + Name13 Piyari Na Pahirab - Raga Mishra Piloo + ArtistShubha Mudgal + AlbumShubha - The Eternal Voice + GenreHindustani Classical + KindMPEG audio file + Size10397635 + Total Time518661 + Disc Number1 + Disc Count1 + Track Number13 + Year2004 + Date Modified2010-02-20T10:35:55Z + Date Added2010-02-20T10:32:18Z + Bit Rate160 + Sample Rate44100 + CommentsGBBFW0501695 + + Artwork Count1 + Persistent IDDC0628AD0D1D510A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Shubha%20Mudgal/Shubha%20-%20The%20Eternal%20Voice/13%2013%20Piyari%20Na%20Pahirab%20-%20Raga%20Mishra%20Piloo.mp3 + File Folder Count4 + Library Folder Count1 + + 7796 + + Track ID7796 + NameRaga Malkauns: Pag Laagan (Vilambit); Rang Rliyaan Karat (Drut) + ArtistBhimsen Joshi + AlbumGolden Raaga Collection + GenreClassical + KindAAC audio file + Size92275577 + Total Time2797760 + Disc Number1 + Disc Count1 + Track Number1 + Track Count2 + Date Modified2010-02-20T10:41:28Z + Date Added2010-02-20T10:35:35Z + Bit Rate256 + Sample Rate44100 + Normalization2196 + Persistent ID6894A502DB31625E + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bhimsen%20Joshi/Golden%20Raaga%20Collection/01%20Raga%20Malkauns_%20Pag%20Laagan%20(Vilambit)%3B%20Rang%20Rliyaan%20Karat%20(Drut).m4a + File Folder Count4 + Library Folder Count1 + + 7798 + + Track ID7798 + NameRaga Bhairvi: Jamuna Ke Teer + ArtistBhimsen Joshi + AlbumGolden Raaga Collection + GenreClassical + KindAAC audio file + Size30485339 + Total Time926266 + Disc Number1 + Disc Count1 + Track Number2 + Track Count2 + Date Modified2010-02-20T10:42:52Z + Date Added2010-02-20T10:41:29Z + Bit Rate256 + Sample Rate44100 + Normalization2460 + Persistent ID33302BD8E46C3B33 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bhimsen%20Joshi/Golden%20Raaga%20Collection/02%20Raga%20Bhairvi_%20Jamuna%20Ke%20Teer.m4a + File Folder Count4 + Library Folder Count1 + + 7838 + + Track ID7838 + NameI Gotta Feeling + ArtistBlack Eyed Peas + Album2010 Grammy Nominees + GenrePop + KindAAC audio file + Size8734259 + Total Time247106 + Disc Number1 + Disc Count1 + Track Number1 + Track Count20 + Year2009 + Date Modified2010-06-26T09:44:45Z + Date Added2010-06-26T09:28:03Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3360416871 + Play Date UTC2010-06-26T11:37:51Z + Normalization5700 + Compilation + Artwork Count1 + Persistent IDCC8FE6C898EA801C + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/2010%20Grammy%20Nominees/01%20I%20Gotta%20Feeling.m4a + File Folder Count4 + Library Folder Count1 + + 7840 + + Track ID7840 + NamePoker Face + ArtistLady Gaga + Album2010 Grammy Nominees + GenrePop + KindAAC audio file + Size8676825 + Total Time238213 + Disc Number1 + Disc Count1 + Track Number2 + Track Count20 + Year2008 + Date Modified2010-06-26T09:44:46Z + Date Added2010-06-26T09:28:47Z + Bit Rate256 + Sample Rate44100 + Play Count7 + Play Date3378127784 + Play Date UTC2011-01-17T11:19:44Z + Skip Count1 + Skip Date2011-01-07T11:14:32Z + Normalization6387 + Compilation + Artwork Count1 + Persistent ID86EA99BB35FC3F41 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/2010%20Grammy%20Nominees/02%20Poker%20Face.m4a + File Folder Count4 + Library Folder Count1 + + 7842 + + Track ID7842 + NameUse Somebody + ArtistKings Of Leon + Album2010 Grammy Nominees + GenrePop + KindAAC audio file + Size8212723 + Total Time232293 + Disc Number1 + Disc Count1 + Track Number3 + Track Count20 + Year2008 + Date Modified2010-06-26T09:44:46Z + Date Added2010-06-26T09:29:26Z + Bit Rate256 + Sample Rate44100 + Play Count2 + Play Date3360515760 + Play Date UTC2010-06-27T15:06:00Z + Normalization8605 + Compilation + Artwork Count1 + Persistent ID30896C97573E38C4 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/2010%20Grammy%20Nominees/03%20Use%20Somebody.m4a + File Folder Count4 + Library Folder Count1 + + 7844 + + Track ID7844 + NameYou & Me + ArtistDave Matthews Band + Album2010 Grammy Nominees + GenrePop + KindAAC audio file + Size9371427 + Total Time259693 + Disc Number1 + Disc Count1 + Track Number4 + Track Count20 + Year2010 + Date Modified2010-06-26T09:44:47Z + Date Added2010-06-26T09:30:01Z + Bit Rate256 + Sample Rate44100 + Play Count2 + Play Date3360516019 + Play Date UTC2010-06-27T15:10:19Z + Normalization3873 + Compilation + Artwork Count1 + Persistent ID6C30F8D28DBFE9B5 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/2010%20Grammy%20Nominees/04%20You%20&%20Me.m4a + File Folder Count4 + Library Folder Count1 + + 7846 + + Track ID7846 + NameYou Belong With Me + ArtistTaylor Swift + Album2010 Grammy Nominees + GenrePop + KindAAC audio file + Size8159837 + Total Time231626 + Disc Number1 + Disc Count1 + Track Number5 + Track Count20 + Year2010 + Date Modified2010-06-26T09:44:47Z + Date Added2010-06-26T09:30:38Z + Bit Rate256 + Sample Rate44100 + Play Count2 + Play Date3360516251 + Play Date UTC2010-06-27T15:14:11Z + Normalization8264 + Compilation + Artwork Count1 + Persistent IDD61BEC2B7D7417C9 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/2010%20Grammy%20Nominees/05%20You%20Belong%20With%20Me.m4a + File Folder Count4 + Library Folder Count1 + + 7848 + + Track ID7848 + NameFallin' For You + ArtistColbie Caillat + Album2010 Grammy Nominees + GenrePop + KindAAC audio file + Size8141444 + Total Time217426 + Disc Number1 + Disc Count1 + Track Number6 + Track Count20 + Year2009 + Date Modified2010-06-26T09:44:48Z + Date Added2010-06-26T09:31:10Z + Bit Rate256 + Sample Rate44100 + Play Count2 + Play Date3360516468 + Play Date UTC2010-06-27T15:17:48Z + Normalization5537 + Compilation + Artwork Count1 + Persistent ID067A085E34E06D6D + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/2010%20Grammy%20Nominees/06%20Fallin'%20For%20You.m4a + File Folder Count4 + Library Folder Count1 + + 7850 + + Track ID7850 + NameYou Found Me + ArtistThe Fray + Album2010 Grammy Nominees + GenrePop + KindAAC audio file + Size8672154 + Total Time243173 + Disc Number1 + Disc Count1 + Track Number7 + Track Count20 + Year2010 + Date Modified2010-06-26T09:44:49Z + Date Added2010-06-26T09:31:38Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3360418294 + Play Date UTC2010-06-26T12:01:34Z + Normalization7212 + Compilation + Artwork Count1 + Sort ArtistFray + Persistent ID5E457145A115B3D4 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/2010%20Grammy%20Nominees/07%20You%20Found%20Me.m4a + File Folder Count4 + Library Folder Count1 + + 7852 + + Track ID7852 + NameSober + ArtistPink + Album2010 Grammy Nominees + GenrePop + KindAAC audio file + Size8820783 + Total Time253413 + Disc Number1 + Disc Count1 + Track Number8 + Track Count20 + Year2008 + Date Modified2010-06-26T09:44:49Z + Date Added2010-06-26T09:32:09Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3360418547 + Play Date UTC2010-06-26T12:05:47Z + Normalization7270 + Compilation + Artwork Count1 + Persistent ID37FD6B605F116500 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/2010%20Grammy%20Nominees/08%20Sober.m4a + File Folder Count4 + Library Folder Count1 + + 7854 + + Track ID7854 + NameMy Life Would Suck Without You + ArtistKelly Clarkson + Album2010 Grammy Nominees + GenrePop + KindAAC audio file + Size7549327 + Total Time213760 + Disc Number1 + Disc Count1 + Track Number9 + Track Count20 + Year2009 + Date Modified2010-06-26T09:44:49Z + Date Added2010-06-26T09:32:39Z + Bit Rate256 + Sample Rate44100 + Normalization10630 + Compilation + Artwork Count1 + Persistent ID03751818575140DC + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/2010%20Grammy%20Nominees/09%20My%20Life%20Would%20Suck%20Without%20You.m4a + File Folder Count4 + Library Folder Count1 + + 7856 + + Track ID7856 + NameHot N Cold + ArtistKaty Perry + Album2010 Grammy Nominees + GenrePop + KindAAC audio file + Size7762062 + Total Time221346 + Disc Number1 + Disc Count1 + Track Number10 + Track Count20 + Year2008 + Date Modified2010-06-26T09:44:50Z + Date Added2010-06-26T09:33:04Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3360517647 + Play Date UTC2010-06-27T15:37:27Z + Normalization7376 + Compilation + Artwork Count1 + Persistent ID51B858CEAC19135D + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/2010%20Grammy%20Nominees/10%20Hot%20N%20Cold.m4a + File Folder Count4 + Library Folder Count1 + + 7858 + + Track ID7858 + NameHalo + ArtistBeyoncé + Album2010 Grammy Nominees + GenrePop + KindAAC audio file + Size8838806 + Total Time225960 + Disc Number1 + Disc Count1 + Track Number11 + Track Count20 + Year2008 + Date Modified2010-06-26T09:44:50Z + Date Added2010-06-26T09:33:28Z + Bit Rate256 + Sample Rate44100 + Play Count7 + Play Date3441560957 + Play Date UTC2013-01-20T15:39:17Z + Normalization5884 + Compilation + Artwork Count1 + Persistent IDB73EEE67008380B7 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/2010%20Grammy%20Nominees/11%20Halo.m4a + File Folder Count4 + Library Folder Count1 + + 7860 + + Track ID7860 + NameHometown Glory + ArtistAdele + Album2010 Grammy Nominees + GenrePop + KindAAC audio file + Size7590176 + Total Time212933 + Disc Number1 + Disc Count1 + Track Number12 + Track Count20 + Year2010 + Date Modified2010-06-26T09:44:51Z + Date Added2010-06-26T09:33:53Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3360518086 + Play Date UTC2010-06-27T15:44:46Z + Normalization3105 + Compilation + Artwork Count1 + Persistent ID1BEE3074693C6BD0 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/2010%20Grammy%20Nominees/12%20Hometown%20Glory.m4a + File Folder Count4 + Library Folder Count1 + + 7862 + + Track ID7862 + NameChicken Fried + ArtistZac Brown Band + Album2010 Grammy Nominees + GenrePop + KindAAC audio file + Size7577784 + Total Time214813 + Disc Number1 + Disc Count1 + Track Number13 + Track Count20 + Year2010 + Date Modified2010-06-26T09:44:51Z + Date Added2010-06-26T09:34:15Z + Bit Rate256 + Sample Rate44100 + Play Count3 + Play Date3377257441 + Play Date UTC2011-01-07T09:34:01Z + Normalization6038 + Compilation + Artwork Count1 + Persistent IDFAEAAC7AC2C90EDF + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/2010%20Grammy%20Nominees/13%20Chicken%20Fried.m4a + File Folder Count4 + Library Folder Count1 + + 7864 + + Track ID7864 + NameIt Happens + ArtistSugarland + Album2010 Grammy Nominees + GenrePop + KindAAC audio file + Size6530660 + Total Time182386 + Disc Number1 + Disc Count1 + Track Number14 + Track Count20 + Year2010 + Date Modified2010-06-26T09:44:52Z + Date Added2010-06-26T09:34:37Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3360518484 + Play Date UTC2010-06-27T15:51:24Z + Normalization8686 + Compilation + Artwork Count1 + Persistent IDEC2A61AA261F9FF6 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/2010%20Grammy%20Nominees/14%20It%20Happens.m4a + File Folder Count4 + Library Folder Count1 + + 7866 + + Track ID7866 + NameI Run To You + ArtistLady Antebellum + Album2010 Grammy Nominees + GenrePop + KindAAC audio file + Size8027362 + Total Time229586 + Disc Number1 + Disc Count1 + Track Number15 + Track Count20 + Year2010 + Date Modified2010-06-26T09:44:52Z + Date Added2010-06-26T09:34:56Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3360518713 + Play Date UTC2010-06-27T15:55:13Z + Normalization5696 + Compilation + Artwork Count1 + Persistent ID143B39B8CDE50987 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/2010%20Grammy%20Nominees/15%20I%20Run%20To%20You.m4a + File Folder Count4 + Library Folder Count1 + + 7868 + + Track ID7868 + NameHere Comes Goodbye + ArtistRascal Flatts + Album2010 Grammy Nominees + GenrePop + KindAAC audio file + Size8802460 + Total Time245360 + Disc Number1 + Disc Count1 + Track Number16 + Track Count20 + Year2010 + Date Modified2010-06-26T09:44:53Z + Date Added2010-06-26T09:35:18Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3360518958 + Play Date UTC2010-06-27T15:59:18Z + Normalization6602 + Compilation + Artwork Count1 + Persistent IDB7306DDC8C73BC6D + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/2010%20Grammy%20Nominees/16%20Here%20Comes%20Goodbye.m4a + File Folder Count4 + Library Folder Count1 + + 7870 + + Track ID7870 + Name21 Guns + ArtistGreen Day + Album2010 Grammy Nominees + GenrePop + KindAAC audio file + Size11561836 + Total Time322946 + Disc Number1 + Disc Count1 + Track Number17 + Track Count20 + Year2009 + Date Modified2010-06-26T09:44:53Z + Date Added2010-06-26T09:35:42Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3360519281 + Play Date UTC2010-06-27T16:04:41Z + Normalization8137 + Compilation + Artwork Count1 + Persistent ID28481033C27792BD + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/2010%20Grammy%20Nominees/17%2021%20Guns.m4a + File Folder Count4 + Library Folder Count1 + + 7872 + + Track ID7872 + NameLife In Technicolor II + ArtistColdplay + Album2010 Grammy Nominees + GenrePop + KindAAC audio file + Size7992401 + Total Time217186 + Disc Number1 + Disc Count1 + Track Number18 + Track Count20 + Year2010 + Date Modified2010-06-26T09:44:54Z + Date Added2010-06-26T09:36:11Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3360519499 + Play Date UTC2010-06-27T16:08:19Z + Normalization6891 + Compilation + Artwork Count1 + Persistent IDDFE4D7A43B6EEAFA + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/2010%20Grammy%20Nominees/18%20Life%20In%20Technicolor%20II.m4a + File Folder Count4 + Library Folder Count1 + + 7874 + + Track ID7874 + NameI'll Go Crazy If I Don't Go Crazy Tonight + ArtistU2 + Album2010 Grammy Nominees + GenrePop + KindAAC audio file + Size8906263 + Total Time254360 + Disc Number1 + Disc Count1 + Track Number19 + Track Count20 + Year2010 + Date Modified2010-06-26T09:44:54Z + Date Added2010-06-26T09:36:31Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3360430648 + Play Date UTC2010-06-26T15:27:28Z + Normalization8297 + Compilation + Artwork Count1 + Persistent IDF788704BA742955F + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/2010%20Grammy%20Nominees/19%20I'll%20Go%20Crazy%20If%20I%20Don't%20Go%20Crazy%20Tonight.m4a + File Folder Count4 + Library Folder Count1 + + 7876 + + Track ID7876 + NameCan't Find My Way Home + ArtistEric Clapton & Steve Winwood + Album2010 Grammy Nominees + GenrePop + KindAAC audio file + Size11520750 + Total Time332906 + Disc Number1 + Disc Count1 + Track Number20 + Track Count20 + Year2010 + Date Modified2010-06-26T09:44:55Z + Date Added2010-06-26T09:36:53Z + Bit Rate256 + Sample Rate44100 + Normalization2907 + Compilation + Artwork Count1 + Persistent IDE60BEE96DC3399C7 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/2010%20Grammy%20Nominees/20%20Can't%20Find%20My%20Way%20Home.m4a + File Folder Count4 + Library Folder Count1 + + 7884 + + Track ID7884 + NameShri Ganesh Stuti + ArtistAshit Desai + ComposerAshit Desai + AlbumHimalayan Chants + GenrePop + KindAAC audio file + Size10462867 + Total Time281920 + Disc Number1 + Disc Count1 + Track Number1 + Track Count12 + Year2001 + Date Modified2010-06-27T15:35:13Z + Date Added2010-06-27T14:57:33Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3457590665 + Play Date UTC2013-07-25T04:21:05Z + Normalization1760 + Artwork Count1 + Persistent ID555794E83F720ADB + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ashit%20Desai/Himalayan%20Chants/01%20Shri%20Ganesh%20Stuti.m4a + File Folder Count4 + Library Folder Count1 + + 7886 + + Track ID7886 + NamePartah Smaran + ArtistAshit Desai + ComposerAshit Desai + AlbumHimalayan Chants + GenrePop + KindAAC audio file + Size4554914 + Total Time102880 + Disc Number1 + Disc Count1 + Track Number2 + Track Count12 + Year2001 + Date Modified2010-06-27T15:35:14Z + Date Added2010-06-27T14:58:24Z + Bit Rate256 + Sample Rate44100 + Normalization5943 + Artwork Count1 + Persistent ID9B217145EF078DEA + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ashit%20Desai/Himalayan%20Chants/02%20Partah%20Smaran.m4a + File Folder Count4 + Library Folder Count1 + + 7888 + + Track ID7888 + NameShri Guru Stuti + ArtistAshit Desai + ComposerAshit Desai + AlbumHimalayan Chants + GenrePop + KindAAC audio file + Size1967374 + Total Time26866 + Disc Number1 + Disc Count1 + Track Number3 + Track Count12 + Year2001 + Date Modified2010-06-27T15:35:14Z + Date Added2010-06-27T14:58:42Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3373618096 + Play Date UTC2010-11-26T06:38:16Z + Normalization1544 + Artwork Count1 + Persistent ID0B762D223E60A8FE + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ashit%20Desai/Himalayan%20Chants/03%20Shri%20Guru%20Stuti.m4a + File Folder Count4 + Library Folder Count1 + + 7890 + + Track ID7890 + NameShri Shanker Stuti + ArtistAshit Desai + ComposerAshit Desai + AlbumHimalayan Chants + GenrePop + KindAAC audio file + Size7728863 + Total Time199000 + Disc Number1 + Disc Count1 + Track Number4 + Track Count12 + Year2001 + Date Modified2010-06-27T15:35:14Z + Date Added2010-06-27T14:58:47Z + Bit Rate256 + Sample Rate44100 + Normalization5968 + Artwork Count1 + Persistent IDD4CC98C16A32F4FE + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ashit%20Desai/Himalayan%20Chants/04%20Shri%20Shanker%20Stuti.m4a + File Folder Count4 + Library Folder Count1 + + 7892 + + Track ID7892 + NameShri Vishnu Stuti + ArtistAshit Desai + ComposerAshit Desai + AlbumHimalayan Chants + GenrePop + KindAAC audio file + Size3824648 + Total Time82666 + Disc Number1 + Disc Count1 + Track Number5 + Track Count12 + Year2001 + Date Modified2010-06-27T15:35:15Z + Date Added2010-06-27T14:59:18Z + Bit Rate256 + Sample Rate44100 + Normalization4656 + Artwork Count1 + Persistent ID3DDC683439CB177C + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ashit%20Desai/Himalayan%20Chants/05%20Shri%20Vishnu%20Stuti.m4a + File Folder Count4 + Library Folder Count1 + + 7894 + + Track ID7894 + NameShri Krishna Stuti + ArtistAshit Desai + ComposerAshit Desai + AlbumHimalayan Chants + GenrePop + KindAAC audio file + Size3766661 + Total Time80560 + Disc Number1 + Disc Count1 + Track Number6 + Track Count12 + Year2001 + Date Modified2010-06-27T15:35:15Z + Date Added2010-06-27T14:59:31Z + Bit Rate256 + Sample Rate44100 + Normalization3942 + Artwork Count1 + Persistent ID62439D5EA21D92D1 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ashit%20Desai/Himalayan%20Chants/06%20Shri%20Krishna%20Stuti.m4a + File Folder Count4 + Library Folder Count1 + + 7896 + + Track ID7896 + NameShri Devi Stuti + ArtistAshit Desai + ComposerAshit Desai + AlbumHimalayan Chants + GenrePop + KindAAC audio file + Size6239350 + Total Time155040 + Disc Number1 + Disc Count1 + Track Number7 + Track Count12 + Year2001 + Date Modified2010-06-27T15:35:15Z + Date Added2010-06-27T14:59:44Z + Bit Rate256 + Sample Rate44100 + Normalization5720 + Artwork Count1 + Persistent ID11F2475BFF46E2F1 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ashit%20Desai/Himalayan%20Chants/07%20Shri%20Devi%20Stuti.m4a + File Folder Count4 + Library Folder Count1 + + 7898 + + Track ID7898 + NamePrakirna: Mantra, Shloka + ArtistAshit Desai + ComposerAshit Desai + AlbumHimalayan Chants + GenrePop + KindAAC audio file + Size3427804 + Total Time68533 + Disc Number1 + Disc Count1 + Track Number8 + Track Count12 + Year2001 + Date Modified2010-06-27T15:35:15Z + Date Added2010-06-27T15:00:06Z + Bit Rate256 + Sample Rate44100 + Normalization7691 + Artwork Count1 + Persistent IDB5C043F4974ECBDA + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ashit%20Desai/Himalayan%20Chants/08%20Prakirna_%20Mantra,%20Shloka.m4a + File Folder Count4 + Library Folder Count1 + + 7900 + + Track ID7900 + NamePrakirna: Mantra + ArtistAshit Desai + ComposerAshit Desai + AlbumHimalayan Chants + GenrePop + KindAAC audio file + Size26878595 + Total Time780160 + Disc Number1 + Disc Count1 + Track Number9 + Track Count12 + Year2001 + Date Modified2010-06-27T15:35:17Z + Date Added2010-06-27T15:00:16Z + Bit Rate256 + Sample Rate44100 + Normalization3138 + Artwork Count1 + Persistent IDA262B883F2C5271D + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ashit%20Desai/Himalayan%20Chants/09%20Prakirna_%20Mantra.m4a + File Folder Count4 + Library Folder Count1 + + 7902 + + Track ID7902 + NameSangachhadnam + ArtistAshit Desai + ComposerAshit Desai + AlbumHimalayan Chants + GenrePop + KindAAC audio file + Size7362631 + Total Time185106 + Disc Number1 + Disc Count1 + Track Number10 + Track Count12 + Year2001 + Date Modified2010-06-27T15:35:17Z + Date Added2010-06-27T15:01:50Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3373618354 + Play Date UTC2010-11-26T06:42:34Z + Normalization3682 + Artwork Count1 + Persistent ID027F2EBC9D3BF7FC + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ashit%20Desai/Himalayan%20Chants/10%20Sangachhadnam.m4a + File Folder Count4 + Library Folder Count1 + + 7904 + + Track ID7904 + NameNirvanshatakam + ArtistAshit Desai + ComposerAshit Desai + AlbumHimalayan Chants + GenrePop + KindAAC audio file + Size9138286 + Total Time243160 + Disc Number1 + Disc Count1 + Track Number11 + Track Count12 + Year2001 + Date Modified2010-06-27T15:35:18Z + Date Added2010-06-27T15:02:12Z + Bit Rate256 + Sample Rate44100 + Normalization2743 + Artwork Count1 + Persistent ID9E86D13169280B56 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ashit%20Desai/Himalayan%20Chants/11%20Nirvanshatakam.m4a + File Folder Count4 + Library Folder Count1 + + 7906 + + Track ID7906 + NameDevi Suktam + ArtistAshit Desai + ComposerAshit Desai + AlbumHimalayan Chants + GenrePop + KindAAC audio file + Size19746128 + Total Time553800 + Disc Number1 + Disc Count1 + Track Number12 + Track Count12 + Year2001 + Date Modified2010-06-27T15:35:20Z + Date Added2010-06-27T15:02:38Z + Bit Rate256 + Sample Rate44100 + Normalization5488 + Artwork Count1 + Persistent ID5B4D867960AFC8CE + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ashit%20Desai/Himalayan%20Chants/12%20Devi%20Suktam.m4a + File Folder Count4 + Library Folder Count1 + + 7930 + + Track ID7930 + NameTrack 01 + ArtistTraditional Khmer Music + AlbumTraditional Khmer Music + KindAAC audio file + Size11070772 + Total Time307360 + Track Number1 + Track Count12 + Date Modified2011-01-01T13:16:05Z + Date Added2010-12-26T04:44:42Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3376204103 + Play Date UTC2010-12-26T04:58:23Z + Normalization1259 + Persistent ID9BA8CE817695FF95 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Traditional%20Khmer%20Music/Traditional%20Khmer%20Music/01%20Track%2001.m4a + File Folder Count4 + Library Folder Count1 + + 7932 + + Track ID7932 + NameTrack 02 + ArtistTraditional Khmer Music + AlbumTraditional Khmer Music + KindAAC audio file + Size13245957 + Total Time404400 + Track Number2 + Track Count12 + Date Modified2011-01-01T13:16:05Z + Date Added2010-12-26T04:45:36Z + Bit Rate256 + Sample Rate44100 + Normalization1259 + Persistent ID610EFB23D85382F6 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Traditional%20Khmer%20Music/Traditional%20Khmer%20Music/02%20Track%2002.m4a + File Folder Count4 + Library Folder Count1 + + 7934 + + Track ID7934 + NameTrack 03 + ArtistTraditional Khmer Music + AlbumTraditional Khmer Music + KindAAC audio file + Size8415220 + Total Time239640 + Track Number3 + Track Count12 + Date Modified2011-01-01T13:16:05Z + Date Added2010-12-26T04:46:39Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3376310337 + Play Date UTC2010-12-27T10:28:57Z + Normalization1258 + Persistent IDA9C1F9030C1DFBEE + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Traditional%20Khmer%20Music/Traditional%20Khmer%20Music/03%20Track%2003.m4a + File Folder Count4 + Library Folder Count1 + + 7936 + + Track ID7936 + NameTrack 04 + ArtistTraditional Khmer Music + AlbumTraditional Khmer Music + KindAAC audio file + Size14069519 + Total Time390960 + Track Number4 + Track Count12 + Date Modified2011-01-01T13:16:05Z + Date Added2010-12-26T04:47:13Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3376310727 + Play Date UTC2010-12-27T10:35:27Z + Normalization1259 + Persistent IDD37B4DC5BFF36C14 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Traditional%20Khmer%20Music/Traditional%20Khmer%20Music/04%20Track%2004.m4a + File Folder Count4 + Library Folder Count1 + + 7938 + + Track ID7938 + NameTrack 05 + ArtistTraditional Khmer Music + AlbumTraditional Khmer Music + KindAAC audio file + Size16638271 + Total Time441826 + Track Number5 + Track Count12 + Date Modified2011-01-01T13:16:05Z + Date Added2010-12-26T04:48:04Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3376311169 + Play Date UTC2010-12-27T10:42:49Z + Normalization1259 + Persistent ID9E844D7A92FAD2FC + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Traditional%20Khmer%20Music/Traditional%20Khmer%20Music/05%20Track%2005.m4a + File Folder Count4 + Library Folder Count1 + + 7940 + + Track ID7940 + NameTrack 06 + ArtistTraditional Khmer Music + AlbumTraditional Khmer Music + KindAAC audio file + Size10662689 + Total Time283706 + Track Number6 + Track Count12 + Date Modified2011-01-01T13:16:05Z + Date Added2010-12-26T04:48:58Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3376311453 + Play Date UTC2010-12-27T10:47:33Z + Normalization1259 + Persistent ID5F2C926B290C3D13 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Traditional%20Khmer%20Music/Traditional%20Khmer%20Music/06%20Track%2006.m4a + File Folder Count4 + Library Folder Count1 + + 7942 + + Track ID7942 + NameTrack 07 + ArtistTraditional Khmer Music + AlbumTraditional Khmer Music + KindAAC audio file + Size14149394 + Total Time405573 + Track Number7 + Track Count12 + Date Modified2011-01-01T13:16:05Z + Date Added2010-12-26T04:49:30Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3376311859 + Play Date UTC2010-12-27T10:54:19Z + Normalization1259 + Persistent ID7CDC5C8056DC9038 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Traditional%20Khmer%20Music/Traditional%20Khmer%20Music/07%20Track%2007.m4a + File Folder Count4 + Library Folder Count1 + + 7944 + + Track ID7944 + NameTrack 08 + ArtistTraditional Khmer Music + AlbumTraditional Khmer Music + KindAAC audio file + Size11626477 + Total Time340173 + Track Number8 + Track Count12 + Date Modified2011-01-01T13:16:05Z + Date Added2010-12-26T04:50:13Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3376312199 + Play Date UTC2010-12-27T10:59:59Z + Normalization1259 + Persistent IDBB79271206F5E19A + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Traditional%20Khmer%20Music/Traditional%20Khmer%20Music/08%20Track%2008.m4a + File Folder Count4 + Library Folder Count1 + + 7946 + + Track ID7946 + NameTrack 09 + ArtistTraditional Khmer Music + AlbumTraditional Khmer Music + KindAAC audio file + Size12303100 + Total Time359000 + Track Number9 + Track Count12 + Date Modified2011-01-01T13:16:05Z + Date Added2010-12-26T04:50:48Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3376312558 + Play Date UTC2010-12-27T11:05:58Z + Normalization1329 + Persistent ID56386BA88A72C43D + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Traditional%20Khmer%20Music/Traditional%20Khmer%20Music/09%20Track%2009.m4a + File Folder Count4 + Library Folder Count1 + + 7948 + + Track ID7948 + NameTrack 10 + ArtistTraditional Khmer Music + AlbumTraditional Khmer Music + KindAAC audio file + Size13998901 + Total Time415346 + Track Number10 + Track Count12 + Date Modified2011-01-01T13:16:05Z + Date Added2010-12-26T04:51:23Z + Bit Rate256 + Sample Rate44100 + Play Count2 + Play Date3376735113 + Play Date UTC2011-01-01T08:28:33Z + Normalization1390 + Persistent ID69BBB81ECF8EE4C4 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Traditional%20Khmer%20Music/Traditional%20Khmer%20Music/10%20Track%2010.m4a + File Folder Count4 + Library Folder Count1 + + 7950 + + Track ID7950 + NameTrack 11 + ArtistTraditional Khmer Music + AlbumTraditional Khmer Music + KindAAC audio file + Size14194613 + Total Time399946 + Track Number11 + Track Count12 + Date Modified2011-01-01T13:16:05Z + Date Added2010-12-26T04:52:02Z + Bit Rate256 + Sample Rate44100 + Normalization1259 + Persistent IDBC6D61D178E51B04 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Traditional%20Khmer%20Music/Traditional%20Khmer%20Music/11%20Track%2011.m4a + File Folder Count4 + Library Folder Count1 + + 7952 + + Track ID7952 + NameTrack 12 + ArtistTraditional Khmer Music + AlbumTraditional Khmer Music + KindAAC audio file + Size12287376 + Total Time340786 + Track Number12 + Track Count12 + Date Modified2011-01-01T13:16:05Z + Date Added2010-12-26T04:52:38Z + Bit Rate256 + Sample Rate44100 + Normalization1653 + Persistent ID363C06770DF28BF8 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Traditional%20Khmer%20Music/Traditional%20Khmer%20Music/12%20Track%2012.m4a + File Folder Count4 + Library Folder Count1 + + 7954 + + Track ID7954 + Nameความรัก + ArtistBodyslam + AlbumGMM Grammy Best Of The Year 2010 + GenrePop + KindAAC audio file + Size10203984 + Total Time293080 + Disc Number1 + Disc Count2 + Track Number1 + Track Count12 + Year2010 + Date Modified2011-01-01T08:17:17Z + Date Added2011-01-01T08:16:25Z + Bit Rate256 + Sample Rate44100 + Normalization9487 + Compilation + Persistent IDDCF25FFECD2B1BE4 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/GMM%20Grammy%20Best%20Of%20The%20Year%202010/1-01%20%E0%B8%84%E0%B8%A7%E0%B8%B2%E0%B8%A1%E0%B8%A3%E0%B8%B1%E0%B8%81.m4a + File Folder Count4 + Library Folder Count1 + + 7956 + + Track ID7956 + Nameยินดีที่ไม่รู้จัก + Artist25 Hours + AlbumGMM Grammy Best Of The Year 2010 + GenrePop + KindAAC audio file + Size6805214 + Total Time203133 + Disc Number1 + Disc Count2 + Track Number2 + Track Count12 + Year2010 + Date Modified2011-01-01T08:17:52Z + Date Added2011-01-01T08:17:20Z + Bit Rate256 + Sample Rate44100 + Normalization8186 + Compilation + Persistent ID0A3E4933C8506828 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/GMM%20Grammy%20Best%20Of%20The%20Year%202010/1-02%20%E0%B8%A2%E0%B8%B4%E0%B8%99%E0%B8%94%E0%B8%B5%E0%B8%97%E0%B8%B5%E0%B9%88%E0%B9%84%E0%B8%A1%E0%B9%88%E0%B8%A3%E0%B8%B9%E0%B9%89%E0%B8%88%E0%B8%B1%E0%B8%81.m4a + File Folder Count4 + Library Folder Count1 + + 7958 + + Track ID7958 + Nameจะรักหรือจะร้าย + ArtistKlear + AlbumGMM Grammy Best Of The Year 2010 + GenrePop + KindAAC audio file + Size8000737 + Total Time236133 + Disc Number1 + Disc Count2 + Track Number3 + Track Count12 + Year2010 + Date Modified2011-01-01T08:18:29Z + Date Added2011-01-01T08:17:54Z + Bit Rate256 + Sample Rate44100 + Normalization12968 + Compilation + Persistent ID8C57B5F596DAFC5A + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/GMM%20Grammy%20Best%20Of%20The%20Year%202010/1-03%20%E0%B8%88%E0%B8%B0%E0%B8%A3%E0%B8%B1%E0%B8%81%E0%B8%AB%E0%B8%A3%E0%B8%B7%E0%B8%AD%E0%B8%88%E0%B8%B0%E0%B8%A3%E0%B9%89%E0%B8%B2%E0%B8%A2.m4a + File Folder Count4 + Library Folder Count1 + + 7960 + + Track ID7960 + Nameแบบไหนที่เธอรัก + ArtistZeal + AlbumGMM Grammy Best Of The Year 2010 + GenrePop + KindAAC audio file + Size8142542 + Total Time235000 + Disc Number1 + Disc Count2 + Track Number4 + Track Count12 + Year2010 + Date Modified2011-01-01T08:19:04Z + Date Added2011-01-01T08:18:32Z + Bit Rate256 + Sample Rate44100 + Normalization8714 + Compilation + Persistent IDC72E78542FBA4D7C + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/GMM%20Grammy%20Best%20Of%20The%20Year%202010/1-04%20%E0%B9%81%E0%B8%9A%E0%B8%9A%E0%B9%84%E0%B8%AB%E0%B8%99%E0%B8%97%E0%B8%B5%E0%B9%88%E0%B9%80%E0%B8%98%E0%B8%AD%E0%B8%A3%E0%B8%B1%E0%B8%81.m4a + File Folder Count4 + Library Folder Count1 + + 7962 + + Track ID7962 + Nameระยะทำใจ + Artistกัน The Star + AlbumGMM Grammy Best Of The Year 2010 + GenrePop + KindAAC audio file + Size7570061 + Total Time221293 + Disc Number1 + Disc Count2 + Track Number5 + Track Count12 + Year2010 + Date Modified2011-01-01T08:19:35Z + Date Added2011-01-01T08:19:06Z + Bit Rate256 + Sample Rate44100 + Normalization4210 + Compilation + Persistent IDF2D272548DB469F9 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/GMM%20Grammy%20Best%20Of%20The%20Year%202010/1-05%20%E0%B8%A3%E0%B8%B0%E0%B8%A2%E0%B8%B0%E0%B8%97%E0%B8%B3%E0%B9%83%E0%B8%88.m4a + File Folder Count4 + Library Folder Count1 + + 7964 + + Track ID7964 + Nameเมื่อไม่มีเธอ (ในวันที่ฟ้าสีเทา) + Artistบีม จารุวรรณ + AlbumGMM Grammy Best Of The Year 2010 + GenrePop + KindAAC audio file + Size9183852 + Total Time279293 + Disc Number1 + Disc Count2 + Track Number6 + Track Count12 + Year2010 + Date Modified2011-01-01T08:20:11Z + Date Added2011-01-01T08:19:37Z + Bit Rate256 + Sample Rate44100 + Normalization5295 + Compilation + Persistent IDE666FCEC39DFA0C9 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/GMM%20Grammy%20Best%20Of%20The%20Year%202010/1-06%20%E0%B9%80%E0%B8%A1%E0%B8%B7%E0%B9%88%E0%B8%AD%E0%B9%84%E0%B8%A1%E0%B9%88%E0%B8%A1%E0%B8%B5%E0%B9%80%E0%B8%98%E0%B8%AD%20(%E0%B9%83%E0%B8%99%E0%B8%A7%E0%B8%B1%E0%B8%99%E0%B8%97%E0%B8%B5%E0%B9%88%E0%B8%9F%E0%B9%89%E0%B8%B2%E0%B8%AA%E0%B8%B5%E0%B9%80%E0%B8%97%E0%B8%B2).m4a + File Folder Count4 + Library Folder Count1 + + 7966 + + Track ID7966 + Nameครั้งหนึ่ง...เราเคยรักกัน + Artistดา Endorphine + AlbumGMM Grammy Best Of The Year 2010 + GenrePop + KindAAC audio file + Size8485292 + Total Time252533 + Disc Number1 + Disc Count2 + Track Number7 + Track Count12 + Year2010 + Date Modified2011-01-01T08:20:42Z + Date Added2011-01-01T08:20:14Z + Bit Rate256 + Sample Rate44100 + Normalization4567 + Compilation + Persistent IDB498D04DBEDF3DD5 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/GMM%20Grammy%20Best%20Of%20The%20Year%202010/1-07%20%E0%B8%84%E0%B8%A3%E0%B8%B1%E0%B9%89%E0%B8%87%E0%B8%AB%E0%B8%99%E0%B8%B6%E0%B9%88%E0%B8%87...%E0%B9%80%E0%B8%A3%E0%B8%B2%E0%B9%80%E0%B8%84%E0%B8%A2%E0%B8%A3%E0%B8%B1%E0%B8%81%E0%B8%81%E0%B8%B1%E0%B8%99.m4a + File Folder Count4 + Library Folder Count1 + + 7968 + + Track ID7968 + Nameเพลงรัก + Artistบี้ สุกฤษฎิ์ + AlbumGMM Grammy Best Of The Year 2010 + GenrePop + KindAAC audio file + Size8820475 + Total Time266213 + Disc Number1 + Disc Count2 + Track Number8 + Track Count12 + Year2010 + Date Modified2011-01-01T08:21:14Z + Date Added2011-01-01T08:20:45Z + Bit Rate256 + Sample Rate44100 + Normalization8538 + Compilation + Persistent ID6B8D92DE446F0E67 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/GMM%20Grammy%20Best%20Of%20The%20Year%202010/1-08%20%E0%B9%80%E0%B8%9E%E0%B8%A5%E0%B8%87%E0%B8%A3%E0%B8%B1%E0%B8%81.m4a + File Folder Count4 + Library Folder Count1 + + 7970 + + Track ID7970 + Nameมากกว่ารัก + Artistโรส ศิรินทิพย์ + AlbumGMM Grammy Best Of The Year 2010 + GenrePop + KindAAC audio file + Size7992588 + Total Time242760 + Disc Number1 + Disc Count2 + Track Number9 + Track Count12 + Year2010 + Date Modified2011-01-01T08:21:42Z + Date Added2011-01-01T08:21:17Z + Bit Rate256 + Sample Rate44100 + Normalization3218 + Compilation + Persistent IDC21D375CC19A374D + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/GMM%20Grammy%20Best%20Of%20The%20Year%202010/1-09%20%E0%B8%A1%E0%B8%B2%E0%B8%81%E0%B8%81%E0%B8%A7%E0%B9%88%E0%B8%B2%E0%B8%A3%E0%B8%B1%E0%B8%81.m4a + File Folder Count4 + Library Folder Count1 + + 7972 + + Track ID7972 + Nameความคิดถึงไม่พึ่งปาฏิหาริย์ + ArtistPancake + AlbumGMM Grammy Best Of The Year 2010 + GenrePop + KindAAC audio file + Size9764727 + Total Time279080 + Disc Number1 + Disc Count2 + Track Number10 + Track Count12 + Year2010 + Date Modified2011-01-01T08:22:12Z + Date Added2011-01-01T08:21:44Z + Bit Rate256 + Sample Rate44100 + Normalization3803 + Compilation + Persistent ID63CDAE4C4E638476 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/GMM%20Grammy%20Best%20Of%20The%20Year%202010/1-10%20%E0%B8%84%E0%B8%A7%E0%B8%B2%E0%B8%A1%E0%B8%84%E0%B8%B4%E0%B8%94%E0%B8%96%E0%B8%B6%E0%B8%87%E0%B9%84%E0%B8%A1%E0%B9%88%E0%B8%9E%E0%B8%B6%E0%B9%88%E0%B8%87%E0%B8%9B%E0%B8%B2%E0%B8%8F%E0%B8%B4%E0%B8%AB%E0%B8%B2%E0%B8%A3%E0%B8%B4%E0%B8%A2%E0%B9%8C.m4a + File Folder Count4 + Library Folder Count1 + + 7974 + + Track ID7974 + Nameไม่เห็นฝุ่น + ArtistKala + AlbumGMM Grammy Best Of The Year 2010 + GenrePop + KindAAC audio file + Size8711531 + Total Time250813 + Disc Number1 + Disc Count2 + Track Number11 + Track Count12 + Year2010 + Date Modified2011-01-01T08:22:39Z + Date Added2011-01-01T08:22:15Z + Bit Rate256 + Sample Rate44100 + Normalization6953 + Compilation + Persistent ID84826110F3391EFD + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/GMM%20Grammy%20Best%20Of%20The%20Year%202010/1-11%20%E0%B9%84%E0%B8%A1%E0%B9%88%E0%B9%80%E0%B8%AB%E0%B9%87%E0%B8%99%E0%B8%9D%E0%B8%B8%E0%B9%88%E0%B8%99.m4a + File Folder Count4 + Library Folder Count1 + + 7976 + + Track ID7976 + Nameไม่ใช่ฉันใช่ไหม (Featuring ดา Endorphine) + Artistเสก โลโซ + AlbumGMM Grammy Best Of The Year 2010 + GenrePop + KindAAC audio file + Size8694609 + Total Time262013 + Disc Number1 + Disc Count2 + Track Number12 + Track Count12 + Year2010 + Date Modified2011-01-01T08:23:04Z + Date Added2011-01-01T08:22:40Z + Bit Rate256 + Sample Rate44100 + Normalization10224 + Compilation + Persistent ID33F4282E5D359B87 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/GMM%20Grammy%20Best%20Of%20The%20Year%202010/1-12%20%E0%B9%84%E0%B8%A1%E0%B9%88%E0%B9%83%E0%B8%8A%E0%B9%88%E0%B8%89%E0%B8%B1%E0%B8%99%E0%B9%83%E0%B8%8A%E0%B9%88%E0%B9%84%E0%B8%AB%E0%B8%A1%20(Featuring%20%E0%B8%94%E0%B8%B2%20Endorphine).m4a + File Folder Count4 + Library Folder Count1 + + 8000 + + Track ID8000 + NameForget You + ArtistCee Lo Green + ComposerAri Levine/Cee Lo Green/Bruno Mars/Phillip Lawrence/Christopher Steven Brown + Album2011 Grammy Nominees + GenrePop + KindAAC audio file + Size8264857 + Total Time223293 + Disc Number1 + Disc Count1 + Track Number1 + Track Count19 + Year2011 + Date Modified2011-02-19T11:14:37Z + Date Added2011-02-13T13:40:53Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3380471283 + Play Date UTC2011-02-13T14:18:03Z + Normalization7065 + Compilation + Artwork Count1 + Persistent ID62C0ABD0C12E5AF9 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/2011%20Grammy%20Nominees/01%20Forget%20You.m4a + File Folder Count4 + Library Folder Count1 + + 8002 + + Track ID8002 + NameNothin' On You + ArtistB.o.B Feat. Bruno Mars + ComposerBruno Mars/Ari Levine/Bobby Simmons Jr./Phillip Lawrence + Album2011 Grammy Nominees + GenrePop + KindAAC audio file + Size7935701 + Total Time224200 + Disc Number1 + Disc Count1 + Track Number2 + Track Count19 + Year2011 + Date Modified2011-02-19T11:14:37Z + Date Added2011-02-13T13:41:14Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3380471507 + Play Date UTC2011-02-13T14:21:47Z + Normalization8323 + Compilation + Artwork Count1 + Persistent ID2B3D130AF9B56D72 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/2011%20Grammy%20Nominees/02%20Nothin'%20On%20You.m4a + File Folder Count4 + Library Folder Count1 + + 8004 + + Track ID8004 + NameCalifornia Gurls + ArtistKaty Perry Feat. Snoop Dogg + ComposerB. McKee/M.S. Martin/B. Levin/K. Perry/C.Broadus/L Gottwald + Album2011 Grammy Nominees + GenrePop + KindAAC audio file + Size8304125 + Total Time235026 + Disc Number1 + Disc Count1 + Track Number3 + Track Count19 + Year2011 + Date Modified2011-02-19T11:14:38Z + Date Added2011-02-13T13:41:34Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3380471742 + Play Date UTC2011-02-13T14:25:42Z + Normalization6560 + Compilation + Artwork Count1 + Persistent ID4DD81A1A5A95E368 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/2011%20Grammy%20Nominees/03%20California%20Gurls.m4a + File Folder Count4 + Library Folder Count1 + + 8006 + + Track ID8006 + NameTelephone + ArtistLady Gaga Feat. Beyoncé + ComposerLaShawn Daniels/Lady Gaga/Lazonte Franklin/Rodney Jerkins/Beyoncé + Album2011 Grammy Nominees + GenrePop + KindAAC audio file + Size7999515 + Total Time221840 + Disc Number1 + Disc Count1 + Track Number4 + Track Count19 + Year2011 + Date Modified2011-02-19T11:14:39Z + Date Added2011-02-13T13:41:52Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3380471964 + Play Date UTC2011-02-13T14:29:24Z + Normalization5217 + Compilation + Artwork Count1 + Persistent ID3500DB9A6271359F + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/2011%20Grammy%20Nominees/04%20Telephone.m4a + File Folder Count4 + Library Folder Count1 + + 8008 + + Track ID8008 + NameLove The Way You Lie + ArtistEminem Feat. Rihanna + ComposerSkylar Grey/ALEXANDER GRANT/Marshall Mathers III + Album2011 Grammy Nominees + GenrePop + KindAAC audio file + Size9539935 + Total Time265453 + Disc Number1 + Disc Count1 + Track Number5 + Track Count19 + Year2011 + Date Modified2011-02-19T11:14:40Z + Date Added2011-02-13T13:42:09Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3380472229 + Play Date UTC2011-02-13T14:33:49Z + Normalization7905 + Compilation + Artwork Count1 + Persistent ID5CD75541AEF7B581 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/2011%20Grammy%20Nominees/05%20Love%20The%20Way%20You%20Lie.m4a + File Folder Count4 + Library Folder Count1 + + 8010 + + Track ID8010 + NameNeed You Now + ArtistLady Antebellum + ComposerC. Kelley/D. Haywood/H. Scott/J.Kear + Album2011 Grammy Nominees + GenrePop + KindAAC audio file + Size8461536 + Total Time234880 + Disc Number1 + Disc Count1 + Track Number6 + Track Count19 + Year2011 + Date Modified2011-02-19T11:14:42Z + Date Added2011-02-13T13:42:28Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3380472464 + Play Date UTC2011-02-13T14:37:44Z + Normalization8125 + Compilation + Artwork Count1 + Persistent IDC03C984F3E7BD96A + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/2011%20Grammy%20Nominees/06%20Need%20You%20Now.m4a + File Folder Count4 + Library Folder Count1 + + 8012 + + Track ID8012 + NameReady To Start + ArtistArcade Fire + ComposerArcade Fire + Album2011 Grammy Nominees + GenrePop + KindAAC audio file + Size9278967 + Total Time259453 + Disc Number1 + Disc Count1 + Track Number7 + Track Count19 + Year2011 + Date Modified2011-02-19T11:14:44Z + Date Added2011-02-13T13:42:43Z + Bit Rate256 + Sample Rate44100 + Normalization7967 + Compilation + Artwork Count1 + Persistent ID9A0AAA8EACCAA306 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/2011%20Grammy%20Nominees/07%20Ready%20To%20Start.m4a + File Folder Count4 + Library Folder Count1 + + 8014 + + Track ID8014 + NameWhataya Want From Me + ArtistAdam Lambert + ComposerMax Martin/Shellback/P!nk + Album2011 Grammy Nominees + GenrePop + KindAAC audio file + Size8315901 + Total Time227613 + Disc Number1 + Disc Count1 + Track Number8 + Track Count19 + Year2011 + Date Modified2011-02-19T11:14:45Z + Date Added2011-02-13T13:43:00Z + Bit Rate256 + Sample Rate44100 + Normalization8019 + Compilation + Artwork Count1 + Persistent IDA9C32B8D7F7CA843 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/2011%20Grammy%20Nominees/08%20Whataya%20Want%20From%20Me.m4a + File Folder Count4 + Library Folder Count1 + + 8016 + + Track ID8016 + NameHalf Of My Heart (With Taylor Swift) + ArtistJohn Mayer + ComposerJohn Mayer + Album2011 Grammy Nominees + GenrePop + KindAAC audio file + Size8804470 + Total Time234266 + Disc Number1 + Disc Count1 + Track Number9 + Track Count19 + Year2011 + Date Modified2011-02-19T11:14:46Z + Date Added2011-02-13T13:43:13Z + Bit Rate256 + Sample Rate44100 + Normalization5661 + Compilation + Artwork Count1 + Persistent ID8FFC4DE1F6AD0AFE + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/2011%20Grammy%20Nominees/09%20Half%20Of%20My%20Heart%20(With%20Taylor%20Swift).m4a + File Folder Count4 + Library Folder Count1 + + 8018 + + Track ID8018 + NameHaven't Met You Yet + ArtistMichael Bublé + ComposerAmy Foster/Michael Bublé/Alan Chang + Album2011 Grammy Nominees + GenrePop + KindAAC audio file + Size8731911 + Total Time245053 + Disc Number1 + Disc Count1 + Track Number10 + Track Count19 + Year2011 + Date Modified2011-02-19T11:14:46Z + Date Added2011-02-13T13:43:27Z + Bit Rate256 + Sample Rate44100 + Normalization6246 + Compilation + Artwork Count1 + Persistent ID3A4A617863799727 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/2011%20Grammy%20Nominees/10%20Haven't%20Met%20You%20Yet.m4a + File Folder Count4 + Library Folder Count1 + + 8020 + + Track ID8020 + NameJust The Way You Are + ArtistBruno Mars + ComposerPhillip Lawrence/Ari Levine/Bruno Mars/Khalil Walton/Khari Cain + Album2011 Grammy Nominees + GenrePop + KindAAC audio file + Size7803245 + Total Time218573 + Disc Number1 + Disc Count1 + Track Number11 + Track Count19 + Year2011 + Date Modified2011-02-19T11:14:47Z + Date Added2011-02-13T13:43:41Z + Bit Rate256 + Sample Rate44100 + Normalization4404 + Compilation + Artwork Count1 + Persistent ID7D3772F67F060F2A + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/2011%20Grammy%20Nominees/11%20Just%20The%20Way%20You%20Are.m4a + File Folder Count4 + Library Folder Count1 + + 8022 + + Track ID8022 + NameThis Is It + ArtistMichael Jackson + ComposerMichael Jackson/Paul Anka + Album2011 Grammy Nominees + GenrePop + KindAAC audio file + Size8369383 + Total Time222453 + Disc Number1 + Disc Count1 + Track Number12 + Track Count19 + Year2011 + Date Modified2011-02-19T11:14:48Z + Date Added2011-02-13T13:43:53Z + Bit Rate256 + Sample Rate44100 + Normalization5194 + Compilation + Artwork Count1 + Persistent ID47D9DA57D8BBF5EE + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/2011%20Grammy%20Nominees/12%20This%20Is%20It.m4a + File Folder Count4 + Library Folder Count1 + + 8024 + + Track ID8024 + NameBeg Steal Or Borrow + ArtistRay LaMontagne & The Pariah Dogs + ComposerRay LaMontagne + Album2011 Grammy Nominees + GenrePop + KindAAC audio file + Size9572347 + Total Time272493 + Disc Number1 + Disc Count1 + Track Number13 + Track Count19 + Year2011 + Date Modified2011-02-19T11:14:48Z + Date Added2011-02-13T13:44:04Z + Bit Rate256 + Sample Rate44100 + Normalization2923 + Compilation + Artwork Count1 + Persistent IDD19B4E478E75073E + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/2011%20Grammy%20Nominees/13%20Beg%20Steal%20Or%20Borrow.m4a + File Folder Count4 + Library Folder Count1 + + 8026 + + Track ID8026 + NameThe House That Built Me + ArtistMiranda Lambert + ComposerAllen Shamblin/Tom Douglas + Album2011 Grammy Nominees + GenrePop + KindAAC audio file + Size8080778 + Total Time227733 + Disc Number1 + Disc Count1 + Track Number14 + Track Count19 + Year2011 + Date Modified2011-02-19T11:14:49Z + Date Added2011-02-13T13:44:18Z + Bit Rate256 + Sample Rate44100 + Normalization3091 + Compilation + Artwork Count1 + Sort NameHouse That Built Me + Persistent ID847A2A294671BCE6 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/2011%20Grammy%20Nominees/14%20The%20House%20That%20Built%20Me.m4a + File Folder Count4 + Library Folder Count1 + + 8028 + + Track ID8028 + NameBabyfather + ArtistSade + ComposerHelen Adu/Stuart Matthewman/Juan Janes/Andrew Nicholls + Album2011 Grammy Nominees + GenrePop + KindAAC audio file + Size8580702 + Total Time242600 + Disc Number1 + Disc Count1 + Track Number15 + Track Count19 + Year2011 + Date Modified2011-02-19T11:14:50Z + Date Added2011-02-13T13:44:29Z + Bit Rate256 + Sample Rate44100 + Normalization2325 + Compilation + Artwork Count1 + Persistent ID24F6164D015C3B18 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/2011%20Grammy%20Nominees/15%20Babyfather.m4a + File Folder Count4 + Library Folder Count1 + + 8030 + + Track ID8030 + NameThe Only Exception + ArtistParamore + ComposerHayley Williams/Josh Farro + Album2011 Grammy Nominees + GenrePop + KindAAC audio file + Size10053684 + Total Time267493 + Disc Number1 + Disc Count1 + Track Number16 + Track Count19 + Year2011 + Date Modified2011-02-19T11:14:50Z + Date Added2011-02-13T13:44:41Z + Bit Rate256 + Sample Rate44100 + Normalization3796 + Compilation + Artwork Count1 + Sort NameOnly Exception + Persistent IDF1C10A9B56D76EE3 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/2011%20Grammy%20Nominees/16%20The%20Only%20Exception.m4a + File Folder Count4 + Library Folder Count1 + + 8032 + + Track ID8032 + NameHey, Soul Sister (Live) + ArtistTrain + ComposerEspen Lind/Pat Monahan/Amund Björklund + Album2011 Grammy Nominees + GenrePop + KindAAC audio file + Size8023217 + Total Time213226 + Disc Number1 + Disc Count1 + Track Number17 + Track Count19 + Year2011 + Date Modified2011-02-19T11:14:51Z + Date Added2011-02-13T13:44:54Z + Bit Rate256 + Sample Rate44100 + Normalization5897 + Compilation + Artwork Count1 + Persistent IDED130F7E778DE387 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/2011%20Grammy%20Nominees/17%20Hey,%20Soul%20Sister%20(Live).m4a + File Folder Count4 + Library Folder Count1 + + 8034 + + Track ID8034 + NameMisery + ArtistMaroon 5 + ComposerSam Farrar/Jesse Carmichael/Adam Levine + Album2011 Grammy Nominees + GenrePop + KindAAC audio file + Size7675895 + Total Time213213 + Disc Number1 + Disc Count1 + Track Number18 + Track Count19 + Year2011 + Date Modified2011-02-19T11:14:51Z + Date Added2011-02-13T13:45:04Z + Bit Rate256 + Sample Rate44100 + Normalization8064 + Compilation + Artwork Count1 + Persistent ID4EE4AA17950B0D6C + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/2011%20Grammy%20Nominees/18%20Misery.m4a + File Folder Count4 + Library Folder Count1 + + 8036 + + Track ID8036 + NameDon't Stop Believin' (Regionals Version) + ArtistGlee Cast + ComposerN Schon/J. Cain/Perry's + Album2011 Grammy Nominees + GenrePop + KindAAC audio file + Size7996215 + Total Time223520 + Disc Number1 + Disc Count1 + Track Number19 + Track Count19 + Year2011 + Date Modified2011-02-19T11:14:52Z + Date Added2011-02-13T13:45:13Z + Bit Rate256 + Sample Rate44100 + Normalization10393 + Compilation + Artwork Count1 + Persistent ID980E7BC0262776D1 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/2011%20Grammy%20Nominees/19%20Don't%20Stop%20Believin'%20(Regionals%20Version).m4a + File Folder Count4 + Library Folder Count1 + + 8038 + + Track ID8038 + NameFirefly - Main Title + ArtistGreg Edmonson, Sonny Rhodes + Album ArtistGreg Edmonson + ComposerGreg Edmonson + AlbumFirefly + GenreSoundtracks + KindMPEG audio file + Size1564708 + Total Time52323 + Disc Number1 + Disc Count1 + Track Number1 + Track Count25 + Year2005 + Date Modified2011-03-21T16:03:04Z + Date Added2011-03-21T16:36:10Z + Bit Rate226 + Sample Rate44100 + CommentsAmazon.com Song ID: 211958476 + Play Count3 + Play Date3385878313 + Play Date UTC2011-04-17T04:15:13Z + Artwork Count1 + Persistent ID8A9113C5A13BA5FE + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Greg%20Edmonson/Firefly/01%20Firefly%20-%20Main%20Title.mp3 + File Folder Count4 + Library Folder Count1 + + 8040 + + Track ID8040 + NameBig Bar Fight + ArtistGreg Edmonson + Album ArtistGreg Edmonson + ComposerGreg Edmonson + AlbumFirefly + GenreSoundtracks + KindMPEG audio file + Size3468971 + Total Time117002 + Disc Number1 + Disc Count1 + Track Number2 + Track Count25 + Year2005 + Date Modified2011-03-21T16:04:14Z + Date Added2011-03-21T16:36:10Z + Bit Rate231 + Sample Rate44100 + CommentsAmazon.com Song ID: 211958477 + Play Count4 + Play Date3385878430 + Play Date UTC2011-04-17T04:17:10Z + Artwork Count1 + Persistent ID23906ECED38A0F93 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Greg%20Edmonson/Firefly/02%20Big%20Bar%20Fight.mp3 + File Folder Count4 + Library Folder Count1 + + 8042 + + Track ID8042 + NameHeart of Gold Montage + ArtistGreg Edmonson + Album ArtistGreg Edmonson + ComposerGreg Edmonson + AlbumFirefly + GenreSoundtracks + KindMPEG audio file + Size3760146 + Total Time130821 + Disc Number1 + Disc Count1 + Track Number3 + Track Count25 + Year2005 + Date Modified2011-03-21T15:57:49Z + Date Added2011-03-21T16:36:10Z + Bit Rate225 + Sample Rate44100 + CommentsAmazon.com Song ID: 211958478 + Play Count4 + Play Date3385878561 + Play Date UTC2011-04-17T04:19:21Z + Artwork Count1 + Persistent ID72021235A0DE1E7D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Greg%20Edmonson/Firefly/03%20Heart%20of%20Gold%20Montage.mp3 + File Folder Count4 + Library Folder Count1 + + 8044 + + Track ID8044 + NameWhitefall / Book + ArtistGreg Edmonson + Album ArtistGreg Edmonson + ComposerGreg Edmonson + AlbumFirefly + GenreSoundtracks + KindMPEG audio file + Size3952892 + Total Time140512 + Disc Number1 + Disc Count1 + Track Number4 + Track Count25 + Year2005 + Date Modified2011-03-21T16:02:02Z + Date Added2011-03-21T16:36:10Z + Bit Rate220 + Sample Rate44100 + CommentsAmazon.com Song ID: 211958479 + Play Count5 + Play Date3385878701 + Play Date UTC2011-04-17T04:21:41Z + Artwork Count1 + Persistent IDF82C3C0AF09AF11D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Greg%20Edmonson/Firefly/04%20Whitefall%20_%20Book.mp3 + File Folder Count4 + Library Folder Count1 + + 8046 + + Track ID8046 + NameEarly Takes Serenity + ArtistGreg Edmonson + Album ArtistGreg Edmonson + ComposerGreg Edmonson + AlbumFirefly + GenreSoundtracks + KindMPEG audio file + Size4473093 + Total Time156290 + Disc Number1 + Disc Count1 + Track Number5 + Track Count25 + Year2005 + Date Modified2011-03-21T16:27:10Z + Date Added2011-03-21T16:36:10Z + Bit Rate224 + Sample Rate44100 + CommentsAmazon.com Song ID: 211958480 + Play Count2 + Play Date3385878858 + Play Date UTC2011-04-17T04:24:18Z + Artwork Count1 + Persistent IDB807F6183A5D5AEB + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Greg%20Edmonson/Firefly/05%20Early%20Takes%20Serenity.mp3 + File Folder Count4 + Library Folder Count1 + + 8048 + + Track ID8048 + NameThe Funeral + ArtistGreg Edmonson + Album ArtistGreg Edmonson + ComposerGreg Edmonson + AlbumFirefly + GenreSoundtracks + KindMPEG audio file + Size4231258 + Total Time156186 + Disc Number1 + Disc Count1 + Track Number6 + Track Count25 + Year2005 + Date Modified2011-03-21T16:22:20Z + Date Added2011-03-21T16:36:10Z + Bit Rate212 + Sample Rate44100 + CommentsAmazon.com Song ID: 211958481 + Play Count2 + Play Date3385879014 + Play Date UTC2011-04-17T04:26:54Z + Artwork Count1 + Sort NameFuneral + Persistent ID76FFECE866BD0F02 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Greg%20Edmonson/Firefly/06%20The%20Funeral.mp3 + File Folder Count4 + Library Folder Count1 + + 8050 + + Track ID8050 + NameRiver's Perception / Saffron + ArtistGreg Edmonson + Album ArtistGreg Edmonson + ComposerGreg Edmonson + AlbumFirefly + GenreSoundtracks + KindMPEG audio file + Size3965159 + Total Time134922 + Disc Number1 + Disc Count1 + Track Number7 + Track Count25 + Year2005 + Date Modified2011-03-21T16:17:12Z + Date Added2011-03-21T16:36:10Z + Bit Rate230 + Sample Rate44100 + CommentsAmazon.com Song ID: 211958482 + Play Count2 + Play Date3385879149 + Play Date UTC2011-04-17T04:29:09Z + Artwork Count1 + Persistent IDB6620C831311233F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Greg%20Edmonson/Firefly/07%20River's%20Perception%20_%20Saffron.mp3 + File Folder Count4 + Library Folder Count1 + + 8052 + + Track ID8052 + NameMal Fights Niska / Back Home + ArtistGreg Edmonson + Album ArtistGreg Edmonson + ComposerGreg Edmonson + AlbumFirefly + GenreSoundtracks + KindMPEG audio file + Size3375460 + Total Time114442 + Disc Number1 + Disc Count1 + Track Number8 + Track Count25 + Year2005 + Date Modified2011-03-21T16:19:31Z + Date Added2011-03-21T16:36:10Z + Bit Rate230 + Sample Rate44100 + CommentsAmazon.com Song ID: 211958483 + Play Count3 + Play Date3385879263 + Play Date UTC2011-04-17T04:31:03Z + Artwork Count1 + Persistent ID54D3F8833A4A0A19 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Greg%20Edmonson/Firefly/08%20Mal%20Fights%20Niska%20_%20Back%20Home.mp3 + File Folder Count4 + Library Folder Count1 + + 8054 + + Track ID8054 + NameRiver Tricks Early + ArtistGreg Edmonson + Album ArtistGreg Edmonson + ComposerGreg Edmonson + AlbumFirefly + GenreSoundtracks + KindMPEG audio file + Size5845654 + Total Time210442 + Disc Number1 + Disc Count1 + Track Number9 + Track Count25 + Year2005 + Date Modified2011-03-21T16:07:57Z + Date Added2011-03-21T16:36:10Z + Bit Rate219 + Sample Rate44100 + CommentsAmazon.com Song ID: 211958484 + Play Count2 + Play Date3385879474 + Play Date UTC2011-04-17T04:34:34Z + Artwork Count1 + Persistent IDC21DDDC04489FAC7 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Greg%20Edmonson/Firefly/09%20River%20Tricks%20Early.mp3 + File Folder Count4 + Library Folder Count1 + + 8056 + + Track ID8056 + NameRiver Understands Simon + ArtistGreg Edmonson + Album ArtistGreg Edmonson + ComposerGreg Edmonson + AlbumFirefly + GenreSoundtracks + KindMPEG audio file + Size3317805 + Total Time124238 + Disc Number1 + Disc Count1 + Track Number10 + Track Count25 + Year2005 + Date Modified2011-03-21T16:25:10Z + Date Added2011-03-21T16:36:10Z + Bit Rate208 + Sample Rate44100 + CommentsAmazon.com Song ID: 211958485 + Play Count1 + Play Date3383629141 + Play Date UTC2011-03-22T03:29:01Z + Artwork Count1 + Persistent ID8AB67BFD855B0180 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Greg%20Edmonson/Firefly/10%20River%20Understands%20Simon.mp3 + File Folder Count4 + Library Folder Count1 + + 8058 + + Track ID8058 + NameLeaving / Caper / Spaceball + ArtistGreg Edmonson + Album ArtistGreg Edmonson + ComposerGreg Edmonson + AlbumFirefly + GenreSoundtracks + KindMPEG audio file + Size4447826 + Total Time159216 + Disc Number1 + Disc Count1 + Track Number11 + Track Count25 + Year2005 + Date Modified2011-03-21T15:59:12Z + Date Added2011-03-21T16:36:10Z + Bit Rate219 + Sample Rate44100 + CommentsAmazon.com Song ID: 211958486 + Play Count1 + Play Date3383629300 + Play Date UTC2011-03-22T03:31:40Z + Artwork Count1 + Persistent IDEEBF81F4C2C6A2EB + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Greg%20Edmonson/Firefly/11%20Leaving%20_%20Caper%20_%20Spaceball.mp3 + File Folder Count4 + Library Folder Count1 + + 8060 + + Track ID8060 + NameRiver's Afraid / Niska / Torture + ArtistGreg Edmonson + Album ArtistGreg Edmonson + ComposerGreg Edmonson + AlbumFirefly + GenreSoundtracks + KindMPEG audio file + Size5563287 + Total Time201377 + Disc Number1 + Disc Count1 + Track Number12 + Track Count25 + Year2005 + Date Modified2011-03-21T16:21:03Z + Date Added2011-03-21T16:36:10Z + Bit Rate217 + Sample Rate44100 + CommentsAmazon.com Song ID: 211958487 + Play Count1 + Play Date3383629502 + Play Date UTC2011-03-22T03:35:02Z + Artwork Count1 + Persistent IDD18D4AF8ED6BF114 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Greg%20Edmonson/Firefly/12%20River's%20Afraid%20_%20Niska%20_%20Torture.mp3 + File Folder Count4 + Library Folder Count1 + + 8062 + + Track ID8062 + NameIn My Bunk / Jayne's Statue / Boom + ArtistGreg Edmonson + Album ArtistGreg Edmonson + ComposerGreg Edmonson + AlbumFirefly + GenreSoundtracks + KindMPEG audio file + Size4168249 + Total Time148793 + Disc Number1 + Disc Count1 + Track Number13 + Track Count25 + Year2005 + Date Modified2011-03-21T16:00:11Z + Date Added2011-03-21T16:36:10Z + Bit Rate219 + Sample Rate44100 + CommentsAmazon.com Song ID: 211958488 + Play Count1 + Play Date3383630566 + Play Date UTC2011-03-22T03:52:46Z + Artwork Count1 + Persistent ID055FE23D0C09031C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Greg%20Edmonson/Firefly/13%20In%20My%20Bunk%20_%20Jayne's%20Statue%20_%20Boom.mp3 + File Folder Count4 + Library Folder Count1 + + 8064 + + Track ID8064 + NameInara's Suite + ArtistGreg Edmonson + Album ArtistGreg Edmonson + ComposerGreg Edmonson + AlbumFirefly + GenreSoundtracks + KindMPEG audio file + Size5599219 + Total Time209893 + Disc Number1 + Disc Count1 + Track Number14 + Track Count25 + Year2005 + Date Modified2011-03-21T16:13:20Z + Date Added2011-03-21T16:36:10Z + Bit Rate210 + Sample Rate44100 + CommentsAmazon.com Song ID: 211958489 + Play Count3 + Play Date3383670674 + Play Date UTC2011-03-22T15:01:14Z + Artwork Count1 + Persistent IDCA00EEE4FD956217 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Greg%20Edmonson/Firefly/14%20Inara's%20Suite.mp3 + File Folder Count4 + Library Folder Count1 + + 8066 + + Track ID8066 + NameOut Of Gas / Empty Derelict + ArtistGreg Edmonson + Album ArtistGreg Edmonson + ComposerGreg Edmonson + AlbumFirefly + GenreSoundtracks + KindMPEG audio file + Size3167180 + Total Time110576 + Disc Number1 + Disc Count1 + Track Number15 + Track Count25 + Year2005 + Date Modified2011-03-21T16:14:11Z + Date Added2011-03-21T16:36:10Z + Bit Rate223 + Sample Rate44100 + CommentsAmazon.com Song ID: 211958490 + Play Count2 + Play Date3383630886 + Play Date UTC2011-03-22T03:58:06Z + Artwork Count1 + Persistent ID820CF2B82B0710C2 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Greg%20Edmonson/Firefly/15%20Out%20Of%20Gas%20_%20Empty%20Derelict.mp3 + File Folder Count4 + Library Folder Count1 + + 8068 + + Track ID8068 + NameBook's Hair / Ready For Battle + ArtistGreg Edmonson + Album ArtistGreg Edmonson + ComposerGreg Edmonson + AlbumFirefly + GenreSoundtracks + KindMPEG audio file + Size3509096 + Total Time119484 + Disc Number1 + Disc Count1 + Track Number16 + Track Count25 + Year2005 + Date Modified2011-03-21T16:23:50Z + Date Added2011-03-21T16:36:10Z + Bit Rate229 + Sample Rate44100 + CommentsAmazon.com Song ID: 211958491 + Play Count1 + Play Date3383631006 + Play Date UTC2011-03-22T04:00:06Z + Artwork Count1 + Persistent IDD53ED034610CD0BC + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Greg%20Edmonson/Firefly/16%20Book's%20Hair%20_%20Ready%20For%20Battle.mp3 + File Folder Count4 + Library Folder Count1 + + 8070 + + Track ID8070 + NameTears / River's Eyes + ArtistGreg Edmonson + Album ArtistGreg Edmonson + ComposerGreg Edmonson + AlbumFirefly + GenreSoundtracks + KindMPEG audio file + Size3371326 + Total Time119823 + Disc Number1 + Disc Count1 + Track Number17 + Track Count25 + Year2005 + Date Modified2011-03-21T16:11:19Z + Date Added2011-03-21T16:36:10Z + Bit Rate219 + Sample Rate44100 + CommentsAmazon.com Song ID: 211958492 + Play Count2 + Play Date3383670871 + Play Date UTC2011-03-22T15:04:31Z + Artwork Count1 + Persistent IDAD8F1B9892CF1C2E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Greg%20Edmonson/Firefly/17%20Tears%20_%20River's%20Eyes.mp3 + File Folder Count4 + Library Folder Count1 + + 8072 + + Track ID8072 + NameCows / New Dress / My Crew + ArtistGreg Edmonson + Album ArtistGreg Edmonson + ComposerGreg Edmonson + AlbumFirefly + GenreSoundtracks + KindMPEG audio file + Size3743706 + Total Time131683 + Disc Number1 + Disc Count1 + Track Number18 + Track Count25 + Year2005 + Date Modified2011-03-21T16:01:13Z + Date Added2011-03-21T16:36:10Z + Bit Rate222 + Sample Rate44100 + CommentsAmazon.com Song ID: 211958493 + Play Count2 + Play Date3383671003 + Play Date UTC2011-03-22T15:06:43Z + Artwork Count1 + Persistent ID57921B8F2726985E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Greg%20Edmonson/Firefly/18%20Cows%20_%20New%20Dress%20_%20My%20Crew.mp3 + File Folder Count4 + Library Folder Count1 + + 8074 + + Track ID8074 + NameBoarding The Serenity / Derelict + ArtistGreg Edmonson + Album ArtistGreg Edmonson + ComposerGreg Edmonson + AlbumFirefly + GenreSoundtracks + KindMPEG audio file + Size3420068 + Total Time122253 + Disc Number1 + Disc Count1 + Track Number19 + Track Count25 + Year2005 + Date Modified2011-03-21T16:15:34Z + Date Added2011-03-21T16:36:10Z + Bit Rate218 + Sample Rate44100 + CommentsAmazon.com Song ID: 211958494 + Play Count2 + Play Date3383671125 + Play Date UTC2011-03-22T15:08:45Z + Artwork Count1 + Persistent ID9D38091D18A16C78 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Greg%20Edmonson/Firefly/19%20Boarding%20The%20Serenity%20_%20Derelict.mp3 + File Folder Count4 + Library Folder Count1 + + 8076 + + Track ID8076 + NameBurgess Kills / Captain & Ship + ArtistGreg Edmonson + Album ArtistGreg Edmonson + ComposerGreg Edmonson, Alan Steinberger + AlbumFirefly + GenreSoundtracks + KindMPEG audio file + Size6180956 + Total Time206680 + Disc Number1 + Disc Count1 + Track Number20 + Track Count25 + Year2005 + Date Modified2011-03-21T16:09:07Z + Date Added2011-03-21T16:36:10Z + Bit Rate236 + Sample Rate44100 + CommentsAmazon.com Song ID: 211958495 + Play Count1 + Play Date3383631586 + Play Date UTC2011-03-22T04:09:46Z + Artwork Count1 + Persistent ID11B7C7433B453B24 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Greg%20Edmonson/Firefly/20%20Burgess%20Kills%20_%20Captain%20&%20Ship.mp3 + File Folder Count4 + Library Folder Count1 + + 8078 + + Track ID8078 + NameSaved / Isn't Home? / Reavers + ArtistGreg Edmonson + Album ArtistGreg Edmonson + ComposerGreg Edmonson + AlbumFirefly + GenreSoundtracks + KindMPEG audio file + Size4992461 + Total Time176013 + Disc Number1 + Disc Count1 + Track Number21 + Track Count25 + Year2005 + Date Modified2011-03-21T16:10:33Z + Date Added2011-03-21T16:36:10Z + Bit Rate223 + Sample Rate44100 + CommentsAmazon.com Song ID: 211958496 + Play Count1 + Play Date3383631762 + Play Date UTC2011-03-22T04:12:42Z + Artwork Count1 + Persistent IDE8B45325E64B7571 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Greg%20Edmonson/Firefly/21%20Saved%20_%20Isn't%20Home_%20_%20Reavers.mp3 + File Folder Count4 + Library Folder Count1 + + 8080 + + Track ID8080 + NameReavers Chase Serenity + ArtistGreg Edmonson + Album ArtistGreg Edmonson + ComposerGreg Edmonson + AlbumFirefly + GenreSoundtracks + KindMPEG audio file + Size6313592 + Total Time202396 + Disc Number1 + Disc Count1 + Track Number22 + Track Count25 + Year2005 + Date Modified2011-03-21T16:05:45Z + Date Added2011-03-21T16:36:10Z + Bit Rate246 + Sample Rate44100 + CommentsAmazon.com Song ID: 211958497 + Play Count1 + Play Date3383631964 + Play Date UTC2011-03-22T04:16:04Z + Artwork Count1 + Persistent ID2D29928AAC4773FB + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Greg%20Edmonson/Firefly/22%20Reavers%20Chase%20Serenity.mp3 + File Folder Count4 + Library Folder Count1 + + 8082 + + Track ID8082 + NameRiver's Dance + ArtistGreg Edmonson + Album ArtistGreg Edmonson + ComposerGreg Edmonson + AlbumFirefly + GenreSoundtracks + KindMPEG audio file + Size2399382 + Total Time110968 + Disc Number1 + Disc Count1 + Track Number23 + Track Count25 + Year2005 + Date Modified2011-03-21T16:03:34Z + Date Added2011-03-21T16:36:10Z + Bit Rate167 + Sample Rate44100 + CommentsAmazon.com Song ID: 211958498 + Play Count2 + Play Date3383671240 + Play Date UTC2011-03-22T15:10:40Z + Artwork Count1 + Persistent IDE04BDE38C61FC00B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Greg%20Edmonson/Firefly/23%20River's%20Dance.mp3 + File Folder Count4 + Library Folder Count1 + + 8084 + + Track ID8084 + NameInside The Tam House + ArtistGreg Edmonson + Album ArtistGreg Edmonson + ComposerGreg Edmonson, Alan Steinberger + AlbumFirefly + GenreSoundtracks + KindMPEG audio file + Size4005666 + Total Time142315 + Disc Number1 + Disc Count1 + Track Number24 + Track Count25 + Year2005 + Date Modified2011-03-21T16:18:42Z + Date Added2011-03-21T16:36:10Z + Bit Rate220 + Sample Rate44100 + CommentsAmazon.com Song ID: 211958499 + Play Count2 + Play Date3383671384 + Play Date UTC2011-03-22T15:13:04Z + Artwork Count1 + Persistent IDCC68F01C25D7778A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Greg%20Edmonson/Firefly/24%20Inside%20The%20Tam%20House.mp3 + File Folder Count4 + Library Folder Count1 + + 8086 + + Track ID8086 + NameDying Ship / Naked Mal + ArtistGreg Edmonson + Album ArtistGreg Edmonson + ComposerGreg Edmonson + AlbumFirefly + GenreSoundtracks + KindMPEG audio file + Size3744317 + Total Time130716 + Disc Number1 + Disc Count1 + Track Number25 + Track Count25 + Year2005 + Date Modified2011-03-21T16:02:44Z + Date Added2011-03-21T16:36:10Z + Bit Rate224 + Sample Rate44100 + CommentsAmazon.com Song ID: 211958500 + Play Count3 + Play Date3384364998 + Play Date UTC2011-03-30T15:53:18Z + Artwork Count1 + Persistent ID81DA75B23F049775 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Greg%20Edmonson/Firefly/25%20Dying%20Ship%20_%20Naked%20Mal.mp3 + File Folder Count4 + Library Folder Count1 + + 8094 + + Track ID8094 + NameString Quartet No. 5: I. + ArtistKronos Quartet + Album ArtistKronos Quartet + ComposerPhilip Glass + AlbumKronos Quartet Performs Philip Glass + GenreClassical + KindMPEG audio file + Size2611760 + Total Time71079 + Disc Number1 + Disc Count1 + Track Number1 + Track Count18 + Year2005 + Date Modified2011-03-28T02:06:36Z + Date Added2011-03-28T03:22:17Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 203498456 + Play Count8 + Play Date3457606549 + Play Date UTC2013-07-25T08:45:49Z + Skip Count1 + Skip Date2013-04-16T09:02:14Z + Artwork Count1 + Persistent ID1806C9E8C4069F95 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kronos%20Quartet/Kronos%20Quartet%20Performs%20Philip%20Glass/01%20String%20Quartet%20No.%205_%20I..mp3 + File Folder Count4 + Library Folder Count1 + + 8096 + + Track ID8096 + NameString Quartet No. 5: II. + ArtistKronos Quartet + Album ArtistKronos Quartet + ComposerPhilip Glass + AlbumKronos Quartet Performs Philip Glass + GenreClassical + KindMPEG audio file + Size6071628 + Total Time179200 + Disc Number1 + Disc Count1 + Track Number2 + Track Count18 + Year2005 + Date Modified2011-03-28T02:02:17Z + Date Added2011-03-28T03:22:17Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 203498457 + Play Count4 + Play Date3385742138 + Play Date UTC2011-04-15T14:25:38Z + Artwork Count1 + Persistent ID8367EAAD79FC5F2A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kronos%20Quartet/Kronos%20Quartet%20Performs%20Philip%20Glass/02%20String%20Quartet%20No.%205_%20II..mp3 + File Folder Count4 + Library Folder Count1 + + 8098 + + Track ID8098 + NameString Quartet No. 5: III. + ArtistKronos Quartet + Album ArtistKronos Quartet + ComposerPhilip Glass + AlbumKronos Quartet Performs Philip Glass + GenreClassical + KindMPEG audio file + Size10839708 + Total Time328202 + Disc Number1 + Disc Count1 + Track Number3 + Track Count18 + Year2005 + Date Modified2011-03-28T02:05:51Z + Date Added2011-03-28T03:22:17Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 203498458 + Play Count4 + Play Date3385742466 + Play Date UTC2011-04-15T14:31:06Z + Artwork Count1 + Persistent ID111FF75612035CF8 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kronos%20Quartet/Kronos%20Quartet%20Performs%20Philip%20Glass/03%20String%20Quartet%20No.%205_%20III..mp3 + File Folder Count4 + Library Folder Count1 + + 8100 + + Track ID8100 + NameString Quartet No. 5: IV. + ArtistKronos Quartet + Album ArtistKronos Quartet + ComposerPhilip Glass + AlbumKronos Quartet Performs Philip Glass + GenreClassical + KindMPEG audio file + Size9240594 + Total Time278230 + Disc Number1 + Disc Count1 + Track Number4 + Track Count18 + Year2005 + Date Modified2011-03-28T02:15:08Z + Date Added2011-03-28T03:22:17Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 203498459 + Play Count5 + Play Date3385742744 + Play Date UTC2011-04-15T14:35:44Z + Artwork Count1 + Persistent IDBFE0D437D4C47A32 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kronos%20Quartet/Kronos%20Quartet%20Performs%20Philip%20Glass/04%20String%20Quartet%20No.%205_%20IV..mp3 + File Folder Count4 + Library Folder Count1 + + 8102 + + Track ID8102 + NameString Quartet No. 5: V. + ArtistKronos Quartet + Album ArtistKronos Quartet + ComposerPhilip Glass + AlbumKronos Quartet Performs Philip Glass + GenreClassical + KindMPEG audio file + Size15097872 + Total Time461270 + Disc Number1 + Disc Count1 + Track Number5 + Track Count18 + Year2005 + Date Modified2011-03-28T02:14:21Z + Date Added2011-03-28T03:22:17Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 203498460 + Play Count2 + Play Date3385743205 + Play Date UTC2011-04-15T14:43:25Z + Artwork Count1 + Persistent ID5618EF95DEF71315 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kronos%20Quartet/Kronos%20Quartet%20Performs%20Philip%20Glass/05%20String%20Quartet%20No.%205_%20V..mp3 + File Folder Count4 + Library Folder Count1 + + 8104 + + Track ID8104 + NameString Quartet No. 4 (Buzcak): I. + ArtistKronos Quartet + Album ArtistKronos Quartet + ComposerPhilip Glass + AlbumKronos Quartet Performs Philip Glass + GenreClassical + KindMPEG audio file + Size15699751 + Total Time480078 + Disc Number1 + Disc Count1 + Track Number6 + Track Count18 + Year2005 + Date Modified2011-03-28T02:09:30Z + Date Added2011-03-28T03:22:17Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 203498461 + Play Count1 + Play Date3384399804 + Play Date UTC2011-03-31T01:33:24Z + Artwork Count1 + Persistent ID65B373988731A08A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kronos%20Quartet/Kronos%20Quartet%20Performs%20Philip%20Glass/06%20String%20Quartet%20No.%204%20(Buzcak)_%20I..mp3 + File Folder Count4 + Library Folder Count1 + + 8106 + + Track ID8106 + NameString Quartet No. 4 (Buczak): II. + ArtistKronos Quartet + Album ArtistKronos Quartet + ComposerPhilip Glass + AlbumKronos Quartet Performs Philip Glass + GenreClassical + KindMPEG audio file + Size12659518 + Total Time385071 + Disc Number1 + Disc Count1 + Track Number7 + Track Count18 + Year2005 + Date Modified2011-03-28T02:16:20Z + Date Added2011-03-28T03:22:17Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 203498462 + Artwork Count1 + Persistent ID2093094AC33997E2 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kronos%20Quartet/Kronos%20Quartet%20Performs%20Philip%20Glass/07%20String%20Quartet%20No.%204%20(Buczak)_%20II..mp3 + File Folder Count4 + Library Folder Count1 + + 8108 + + Track ID8108 + NameString Quartet No. 4 (Buczak): III. + ArtistKronos Quartet + Album ArtistKronos Quartet + ComposerPhilip Glass + AlbumKronos Quartet Performs Philip Glass + GenreClassical + KindMPEG audio file + Size17244533 + Total Time528352 + Disc Number1 + Disc Count1 + Track Number8 + Track Count18 + Year2005 + Date Modified2011-03-28T02:08:04Z + Date Added2011-03-28T03:22:17Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 203498463 + Artwork Count1 + Persistent IDAF28B8B4F7751183 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kronos%20Quartet/Kronos%20Quartet%20Performs%20Philip%20Glass/08%20String%20Quartet%20No.%204%20(Buczak)_%20III..mp3 + File Folder Count4 + Library Folder Count1 + + 8110 + + Track ID8110 + NameString Quartet No. 2 (Company): I. + ArtistKronos Quartet + Album ArtistKronos Quartet + ComposerPhilip Glass + AlbumKronos Quartet Performs Philip Glass + GenreClassical + KindMPEG audio file + Size4510150 + Total Time130403 + Disc Number1 + Disc Count1 + Track Number9 + Track Count18 + Year2005 + Date Modified2011-03-28T02:10:34Z + Date Added2011-03-28T03:22:17Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 203498464 + Artwork Count1 + Persistent ID9388853FDC866838 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kronos%20Quartet/Kronos%20Quartet%20Performs%20Philip%20Glass/09%20String%20Quartet%20No.%202%20(Company)_%20I..mp3 + File Folder Count4 + Library Folder Count1 + + 8112 + + Track ID8112 + NameString Quartet No. 2 (Company): II. + ArtistKronos Quartet + Album ArtistKronos Quartet + ComposerPhilip Glass + AlbumKronos Quartet Performs Philip Glass + GenreClassical + KindMPEG audio file + Size3421788 + Total Time96391 + Disc Number1 + Disc Count1 + Track Number10 + Track Count18 + Year2005 + Date Modified2011-03-28T02:04:09Z + Date Added2011-03-28T03:22:17Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 203498465 + Artwork Count1 + Persistent ID8FFE82615A3E01F7 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kronos%20Quartet/Kronos%20Quartet%20Performs%20Philip%20Glass/10%20String%20Quartet%20No.%202%20(Company)_%20II..mp3 + File Folder Count4 + Library Folder Count1 + + 8114 + + Track ID8114 + NameString Quartet No. 2 (Company): III. + ArtistKronos Quartet + Album ArtistKronos Quartet + ComposerPhilip Glass + AlbumKronos Quartet Performs Philip Glass + GenreClassical + KindMPEG audio file + Size3303090 + Total Time92682 + Disc Number1 + Disc Count1 + Track Number11 + Track Count18 + Year2005 + Date Modified2011-03-28T02:03:50Z + Date Added2011-03-28T03:22:17Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 203498466 + Artwork Count1 + Persistent IDCCAF0B07BEE21ACF + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kronos%20Quartet/Kronos%20Quartet%20Performs%20Philip%20Glass/11%20String%20Quartet%20No.%202%20(Company)_%20III..mp3 + File Folder Count4 + Library Folder Count1 + + 8116 + + Track ID8116 + NameString Quartet No. 2 (Company): IV. + ArtistKronos Quartet + Album ArtistKronos Quartet + ComposerPhilip Glass + AlbumKronos Quartet Performs Philip Glass + GenreClassical + KindMPEG audio file + Size4570340 + Total Time132284 + Disc Number1 + Disc Count1 + Track Number12 + Track Count18 + Year2005 + Date Modified2011-03-28T02:12:42Z + Date Added2011-03-28T03:22:17Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 203498467 + Artwork Count1 + Persistent ID1DE992764B28170D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kronos%20Quartet/Kronos%20Quartet%20Performs%20Philip%20Glass/12%20String%20Quartet%20No.%202%20(Company)_%20IV..mp3 + File Folder Count4 + Library Folder Count1 + + 8118 + + Track ID8118 + NameString Quartet No. 3 (Mishima): 1957-Award Montage + ArtistKronos Quartet + Album ArtistKronos Quartet + ComposerPhilip Glass + AlbumKronos Quartet Performs Philip Glass + GenreClassical + KindMPEG audio file + Size7132460 + Total Time212349 + Disc Number1 + Disc Count1 + Track Number13 + Track Count18 + Year2005 + Date Modified2011-03-28T02:10:10Z + Date Added2011-03-28T03:22:17Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 203498468 + Artwork Count1 + Persistent IDA6B93DD33B58C75B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kronos%20Quartet/Kronos%20Quartet%20Performs%20Philip%20Glass/13%20String%20Quartet%20No.%203%20(Mishima)_%201957-Award%20Montage.mp3 + File Folder Count4 + Library Folder Count1 + + 8120 + + Track ID8120 + NameString Quartet No. 3 (Mishima): November 25-Ichigaya + ArtistKronos Quartet + Album ArtistKronos Quartet + ComposerPhilip Glass + AlbumKronos Quartet Performs Philip Glass + GenreClassical + KindMPEG audio file + Size2986309 + Total Time82782 + Disc Number1 + Disc Count1 + Track Number14 + Track Count18 + Year2005 + Date Modified2011-03-28T02:11:51Z + Date Added2011-03-28T03:22:17Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 203498469 + Artwork Count1 + Persistent ID795397D30CEDA7E9 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kronos%20Quartet/Kronos%20Quartet%20Performs%20Philip%20Glass/14%20String%20Quartet%20No.%203%20(Mishima)_%20November%2025-Ichigaya.mp3 + File Folder Count4 + Library Folder Count1 + + 8122 + + Track ID8122 + NameString Quartet No. 3 (Mishima): 1934-Grandmother and Kimitake + ArtistKronos Quartet + Album ArtistKronos Quartet + ComposerPhilip Glass + AlbumKronos Quartet Performs Philip Glass + GenreClassical + KindMPEG audio file + Size5584361 + Total Time163970 + Disc Number1 + Disc Count1 + Track Number15 + Track Count18 + Year2005 + Date Modified2011-03-28T02:11:11Z + Date Added2011-03-28T03:22:17Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 203498470 + Artwork Count1 + Persistent ID8FEF74219A2116E1 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kronos%20Quartet/Kronos%20Quartet%20Performs%20Philip%20Glass/15%20String%20Quartet%20No.%203%20(Mishima)_%201934-Grandmother%20and%20Kimitake.mp3 + File Folder Count4 + Library Folder Count1 + + 8124 + + Track ID8124 + NameString Quartet No. 3 (Mishima): 1962-Body Building + ArtistKronos Quartet + Album ArtistKronos Quartet + ComposerPhilip Glass + AlbumKronos Quartet Performs Philip Glass + GenreClassical + KindMPEG audio file + Size3548042 + Total Time100336 + Disc Number1 + Disc Count1 + Track Number16 + Track Count18 + Year2005 + Date Modified2011-03-28T02:11:33Z + Date Added2011-03-28T03:22:17Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 203498471 + Play Count1 + Play Date3384192001 + Play Date UTC2011-03-28T15:50:01Z + Artwork Count1 + Persistent ID3511B6E96B589667 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kronos%20Quartet/Kronos%20Quartet%20Performs%20Philip%20Glass/16%20String%20Quartet%20No.%203%20(Mishima)_%201962-Body%20Building.mp3 + File Folder Count4 + Library Folder Count1 + + 8126 + + Track ID8126 + NameString Quartet No. 3 (Mishima): Blood Oath + ArtistKronos Quartet + Album ArtistKronos Quartet + ComposerPhilip Glass + AlbumKronos Quartet Performs Philip Glass + GenreClassical + KindMPEG audio file + Size6551481 + Total Time194194 + Disc Number1 + Disc Count1 + Track Number17 + Track Count18 + Year2005 + Date Modified2011-03-28T02:03:31Z + Date Added2011-03-28T03:22:17Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 203498472 + Artwork Count1 + Persistent IDBA52FFA5F71B3CD6 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kronos%20Quartet/Kronos%20Quartet%20Performs%20Philip%20Glass/17%20String%20Quartet%20No.%203%20(Mishima)_%20Blood%20Oath.mp3 + File Folder Count4 + Library Folder Count1 + + 8128 + + Track ID8128 + NameString Quartet No. 3 (Mishima): Mishima/Closing + ArtistKronos Quartet + Album ArtistKronos Quartet + ComposerPhilip Glass + AlbumKronos Quartet Performs Philip Glass + GenreClassical + KindMPEG audio file + Size6260591 + Total Time185103 + Disc Number1 + Disc Count1 + Track Number18 + Track Count18 + Year2005 + Date Modified2011-03-28T02:02:55Z + Date Added2011-03-28T03:22:17Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 203498473 + Artwork Count1 + Persistent ID0408A42917DD8145 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kronos%20Quartet/Kronos%20Quartet%20Performs%20Philip%20Glass/18%20String%20Quartet%20No.%203%20(Mishima)_%20Mishima_Closing.mp3 + File Folder Count4 + Library Folder Count1 + + 8130 + + Track ID8130 + NameIs Not All One + ArtistTony Scott + Album ArtistTony Scott + ComposerHozan Yamamoto + AlbumMusic For Zen Meditation And Other Joys + GenreJazz + KindMPEG audio file + Size6458777 + Total Time192052 + Disc Number1 + Disc Count1 + Track Number1 + Track Count9 + Year1964 + Date Modified2011-03-28T02:38:34Z + Date Added2011-03-28T03:22:17Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202688993 + Play Count3 + Play Date3424525220 + Play Date UTC2012-07-07T11:30:20Z + Artwork Count1 + Persistent IDEB51D7C480970F4E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tony%20Scott/Music%20For%20Zen%20Meditation%20And%20Other%20Joys/01%20Is%20Not%20All%20One.mp3 + File Folder Count4 + Library Folder Count1 + + 8132 + + Track ID8132 + NameThe Murmuring Sound Of The Mountain Stream + ArtistTony Scott + Album ArtistTony Scott + ComposerShinichi Yuize + AlbumMusic For Zen Meditation And Other Joys + GenreJazz + KindMPEG audio file + Size15688208 + Total Time480470 + Disc Number1 + Disc Count1 + Track Number2 + Track Count9 + Year1964 + Date Modified2011-03-28T02:36:24Z + Date Added2011-03-28T03:22:17Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202688994 + Play Count2 + Play Date3424525700 + Play Date UTC2012-07-07T11:38:20Z + Artwork Count1 + Sort NameMurmuring Sound Of The Mountain Stream + Persistent ID942D654F218B858A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tony%20Scott/Music%20For%20Zen%20Meditation%20And%20Other%20Joys/02%20The%20Murmuring%20Sound%20Of%20The%20Mountain%20Stream.mp3 + File Folder Count4 + Library Folder Count1 + + 8134 + + Track ID8134 + NameA Quivering Leaf Ask The Winds + ArtistTony Scott + Album ArtistTony Scott + ComposerYamamoto + AlbumMusic For Zen Meditation And Other Joys + GenreJazz + KindMPEG audio file + Size5102937 + Total Time149681 + Disc Number1 + Disc Count1 + Track Number3 + Track Count9 + Year1964 + Date Modified2011-03-28T02:34:03Z + Date Added2011-03-28T03:22:17Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202688995 + Play Count2 + Play Date3424525850 + Play Date UTC2012-07-07T11:40:50Z + Artwork Count1 + Sort NameQuivering Leaf Ask The Winds + Persistent ID180F67871490AB53 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tony%20Scott/Music%20For%20Zen%20Meditation%20And%20Other%20Joys/03%20A%20Quivering%20Leaf%20Ask%20The%20Winds.mp3 + File Folder Count4 + Library Folder Count1 + + 8136 + + Track ID8136 + NameAfter The Snow The Fragrance + ArtistTony Scott + Album ArtistTony Scott + ComposerTony Scott + AlbumMusic For Zen Meditation And Other Joys + GenreJazz + KindMPEG audio file + Size13823238 + Total Time422191 + Disc Number1 + Disc Count1 + Track Number4 + Track Count9 + Year1964 + Date Modified2011-03-28T02:38:00Z + Date Added2011-03-28T03:22:17Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202688996 + Play Count2 + Play Date3384528598 + Play Date UTC2011-04-01T13:19:58Z + Artwork Count1 + Persistent IDB4CDF7C5999320CD + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tony%20Scott/Music%20For%20Zen%20Meditation%20And%20Other%20Joys/04%20After%20The%20Snow%20The%20Fragrance.mp3 + File Folder Count4 + Library Folder Count1 + + 8138 + + Track ID8138 + NameTo Drift Like Clouds + ArtistTony Scott + Album ArtistTony Scott + ComposerHozan Yamamoto + AlbumMusic For Zen Meditation And Other Joys + GenreJazz + KindMPEG audio file + Size3411030 + Total Time96809 + Disc Number1 + Disc Count1 + Track Number5 + Track Count9 + Year1964 + Date Modified2011-03-28T02:30:45Z + Date Added2011-03-28T03:22:17Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202688997 + Play Count1 + Play Date3384415782 + Play Date UTC2011-03-31T05:59:42Z + Artwork Count1 + Persistent ID511BFF20BE678A0E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tony%20Scott/Music%20For%20Zen%20Meditation%20And%20Other%20Joys/05%20To%20Drift%20Like%20Clouds.mp3 + File Folder Count4 + Library Folder Count1 + + 8140 + + Track ID8140 + NameZa Zen (Meditation) + ArtistTony Scott + Album ArtistTony Scott + ComposerHozan Yamamoto + AlbumMusic For Zen Meditation And Other Joys + GenreJazz + KindMPEG audio file + Size4233572 + Total Time122514 + Disc Number1 + Disc Count1 + Track Number6 + Track Count9 + Year1964 + Date Modified2011-03-28T02:36:49Z + Date Added2011-03-28T03:22:17Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202688998 + Play Count3 + Play Date3427467518 + Play Date UTC2012-08-10T12:48:38Z + Artwork Count1 + Persistent ID7219B74B3AD86B44 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tony%20Scott/Music%20For%20Zen%20Meditation%20And%20Other%20Joys/06%20Za%20Zen%20(Meditation).mp3 + File Folder Count4 + Library Folder Count1 + + 8142 + + Track ID8142 + NamePrajna-Paramita-Hridaya Sutra (Sutra Chant) + ArtistTony Scott + Album ArtistTony Scott + ComposerShinichi Yuize + AlbumMusic For Zen Meditation And Other Joys + GenreJazz + KindMPEG audio file + Size14059005 + Total Time429557 + Disc Number1 + Disc Count1 + Track Number7 + Track Count9 + Year1964 + Date Modified2011-03-28T02:33:31Z + Date Added2011-03-28T03:22:17Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202688999 + Play Count2 + Play Date3384447862 + Play Date UTC2011-03-31T14:54:22Z + Artwork Count1 + Persistent ID1DB804C6A7AA5C36 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tony%20Scott/Music%20For%20Zen%20Meditation%20And%20Other%20Joys/07%20Prajna-Paramita-Hridaya%20Sutra%20(Sutra%20Chant).mp3 + File Folder Count4 + Library Folder Count1 + + 8144 + + Track ID8144 + NameSanzen (Moment Of Truth) + ArtistTony Scott + Album ArtistTony Scott + ComposerShinichi Yuize + AlbumMusic For Zen Meditation And Other Joys + GenreJazz + KindMPEG audio file + Size13232243 + Total Time403722 + Disc Number1 + Disc Count1 + Track Number8 + Track Count9 + Year1964 + Date Modified2011-03-28T02:31:54Z + Date Added2011-03-28T03:22:17Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202689000 + Play Count2 + Play Date3384448266 + Play Date UTC2011-03-31T15:01:06Z + Artwork Count1 + Persistent ID66C2B981C28D57D0 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tony%20Scott/Music%20For%20Zen%20Meditation%20And%20Other%20Joys/08%20Sanzen%20(Moment%20Of%20Truth).mp3 + File Folder Count4 + Library Folder Count1 + + 8146 + + Track ID8146 + NameSatori (Enlightenment) + ArtistTony Scott + Album ArtistTony Scott + ComposerShinichi Yuize + AlbumMusic For Zen Meditation And Other Joys + GenreJazz + KindMPEG audio file + Size10640057 + Total Time322716 + Disc Number1 + Disc Count1 + Track Number9 + Track Count9 + Year1964 + Date Modified2011-03-28T02:35:01Z + Date Added2011-03-28T03:22:17Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202689001 + Play Count2 + Play Date3384448588 + Play Date UTC2011-03-31T15:06:28Z + Artwork Count1 + Persistent IDC4A2CBAD04BBAEF9 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tony%20Scott/Music%20For%20Zen%20Meditation%20And%20Other%20Joys/09%20Satori%20(Enlightenment).mp3 + File Folder Count4 + Library Folder Count1 + + 8148 + + Track ID8148 + NameThe Moon Mirrored In The Pool + ArtistVarious + Album ArtistVarious + ComposerYan Jun Hua + AlbumPhases of the Moon + GenreClassical + KindMPEG audio file + Size9797214 + Total Time312346 + Disc Number1 + Disc Count1 + Track Number1 + Track Count11 + Year1988 + Date Modified2011-03-28T03:11:28Z + Date Added2011-03-28T03:22:17Z + Bit Rate245 + Sample Rate44100 + CommentsAmazon.com Song ID: 203976768 + Play Count2 + Play Date3384448901 + Play Date UTC2011-03-31T15:11:41Z + Artwork Count1 + Sort NameMoon Mirrored In The Pool + Persistent ID103104E98A3557DA + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various/Phases%20of%20the%20Moon/01%20The%20Moon%20Mirrored%20In%20The%20Pool.mp3 + File Folder Count4 + Library Folder Count1 + + 8150 + + Track ID8150 + NameThe Moon On High + ArtistVarious + Album ArtistVarious + ComposerTraditional + AlbumPhases of the Moon + GenreClassical + KindMPEG audio file + Size22559383 + Total Time728215 + Disc Number1 + Disc Count1 + Track Number2 + Track Count11 + Year1988 + Date Modified2011-03-28T03:08:52Z + Date Added2011-03-28T03:22:17Z + Bit Rate245 + Sample Rate44100 + CommentsAmazon.com Song ID: 203976793 + Artwork Count1 + Sort NameMoon On High + Persistent IDCE2D2D1CA1196E06 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various/Phases%20of%20the%20Moon/02%20The%20Moon%20On%20High.mp3 + File Folder Count4 + Library Folder Count1 + + 8152 + + Track ID8152 + NameDays of Emancipation + ArtistThe Central Broadcasting Traditional Instruments Orchestra + Album ArtistVarious + ComposerZhu Jianer + AlbumPhases of the Moon + GenreClassical + KindMPEG audio file + Size5176209 + Total Time160417 + Disc Number1 + Disc Count1 + Track Number3 + Track Count11 + Year1988 + Date Modified2011-03-28T03:14:15Z + Date Added2011-03-28T03:22:17Z + Bit Rate247 + Sample Rate44100 + CommentsAmazon.com Song ID: 203976772 + Artwork Count1 + Sort ArtistCentral Broadcasting Traditional Instruments Orchestra + Persistent ID324B6D61332A9D6E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various/Phases%20of%20the%20Moon/03%20Days%20of%20Emancipation.mp3 + File Folder Count4 + Library Folder Count1 + + 8154 + + Track ID8154 + NameDance of the Yao People + ArtistVarious + Album ArtistVarious + ComposerLiu Tieshan + AlbumPhases of the Moon + GenreClassical + KindMPEG audio file + Size11552656 + Total Time366863 + Disc Number1 + Disc Count1 + Track Number4 + Track Count11 + Year1988 + Date Modified2011-03-28T03:16:53Z + Date Added2011-03-28T03:22:17Z + Bit Rate247 + Sample Rate44100 + CommentsAmazon.com Song ID: 203976782 + Artwork Count1 + Persistent IDF874B701384CC743 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various/Phases%20of%20the%20Moon/04%20Dance%20of%20the%20Yao%20People.mp3 + File Folder Count4 + Library Folder Count1 + + 8156 + + Track ID8156 + NamePeking Opera Melody: Flowing Water + ArtistVarious + Album ArtistVarious + ComposerGu Guanren + AlbumPhases of the Moon + GenreClassical + KindMPEG audio file + Size6142235 + Total Time192052 + Disc Number1 + Disc Count1 + Track Number5 + Track Count11 + Year1988 + Date Modified2011-03-28T03:09:29Z + Date Added2011-03-28T03:22:17Z + Bit Rate247 + Sample Rate44100 + CommentsAmazon.com Song ID: 203976763 + Artwork Count1 + Persistent IDA4E5FE4117FE8E33 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various/Phases%20of%20the%20Moon/05%20Peking%20Opera%20Melody_%20Flowing%20Water.mp3 + File Folder Count4 + Library Folder Count1 + + 8158 + + Track ID8158 + NameTashwayi + ArtistVarious + Album ArtistVarious + ComposerTraditional + AlbumPhases of the Moon + GenreClassical + KindMPEG audio file + Size9530824 + Total Time300643 + Disc Number1 + Disc Count1 + Track Number6 + Track Count11 + Year1988 + Date Modified2011-03-28T03:06:59Z + Date Added2011-03-28T03:22:17Z + Bit Rate248 + Sample Rate44100 + CommentsAmazon.com Song ID: 203976785 + Artwork Count1 + Persistent ID7107E724FCEC4462 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various/Phases%20of%20the%20Moon/06%20Tashwayi.mp3 + File Folder Count4 + Library Folder Count1 + + 8160 + + Track ID8160 + NameSpring on the Pamir Plateau + ArtistVarious + Album ArtistVarious + ComposerTraditional + AlbumPhases of the Moon + GenreClassical + KindMPEG audio file + Size6520442 + Total Time202553 + Disc Number1 + Disc Count1 + Track Number7 + Track Count11 + Year1988 + Date Modified2011-03-28T03:13:39Z + Date Added2011-03-28T03:22:17Z + Bit Rate249 + Sample Rate44100 + CommentsAmazon.com Song ID: 203976784 + Artwork Count1 + Persistent IDA4581EB9A4B79443 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various/Phases%20of%20the%20Moon/07%20Spring%20on%20the%20Pamir%20Plateau.mp3 + File Folder Count4 + Library Folder Count1 + + 8162 + + Track ID8162 + NamePurple Bamboo Melody + ArtistShanghai Philharmonic Orchestra + Album ArtistVarious + ComposerTraditional + AlbumPhases of the Moon + GenreClassical + KindMPEG audio file + Size5085985 + Total Time159242 + Disc Number1 + Disc Count1 + Track Number8 + Track Count11 + Year1988 + Date Modified2011-03-28T03:10:22Z + Date Added2011-03-28T03:22:17Z + Bit Rate245 + Sample Rate44100 + CommentsAmazon.com Song ID: 203976762 + Play Count1 + Play Date3384399199 + Play Date UTC2011-03-31T01:23:19Z + Artwork Count1 + Persistent ID9052B9483EEDF833 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various/Phases%20of%20the%20Moon/08%20Purple%20Bamboo%20Melody.mp3 + File Folder Count4 + Library Folder Count1 + + 8164 + + Track ID8164 + NameDancing in the Moonlight + ArtistVarious + Album ArtistVarious + ComposerTraditional + AlbumPhases of the Moon + GenreClassical + KindMPEG audio file + Size4230366 + Total Time130063 + Disc Number1 + Disc Count1 + Track Number9 + Track Count11 + Year1988 + Date Modified2011-03-28T03:13:00Z + Date Added2011-03-28T03:22:17Z + Bit Rate247 + Sample Rate44100 + CommentsAmazon.com Song ID: 203976775 + Play Count1 + Play Date3384399321 + Play Date UTC2011-03-31T01:25:21Z + Artwork Count1 + Persistent ID116A89B5A07CE11C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various/Phases%20of%20the%20Moon/09%20Dancing%20in%20the%20Moonlight.mp3 + File Folder Count4 + Library Folder Count1 + + 8166 + + Track ID8166 + NameSong of the Herdsmen + ArtistVarious + Album ArtistVarious + ComposerTraditional + AlbumPhases of the Moon + GenreClassical + KindMPEG audio file + Size11351281 + Total Time365348 + Disc Number1 + Disc Count1 + Track Number10 + Track Count11 + Year1988 + Date Modified2011-03-28T03:12:37Z + Date Added2011-03-28T03:22:17Z + Bit Rate244 + Sample Rate44100 + CommentsAmazon.com Song ID: 203976755 + Artwork Count1 + Persistent IDFC44CD159C73BA15 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various/Phases%20of%20the%20Moon/10%20Song%20of%20the%20Herdsmen.mp3 + File Folder Count4 + Library Folder Count1 + + 8168 + + Track ID8168 + NameSpring on a Moonlit River + ArtistVarious + Album ArtistVarious + ComposerTraditional + AlbumPhases of the Moon + GenreClassical + KindMPEG audio file + Size17416867 + Total Time565054 + Disc Number1 + Disc Count1 + Track Number11 + Track Count11 + Year1988 + Date Modified2011-03-28T03:15:54Z + Date Added2011-03-28T03:22:17Z + Bit Rate243 + Sample Rate44100 + CommentsAmazon.com Song ID: 203976765 + Artwork Count1 + Persistent IDE277D4D6A2592B0F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various/Phases%20of%20the%20Moon/11%20Spring%20on%20a%20Moonlit%20River.mp3 + File Folder Count4 + Library Folder Count1 + + 8170 + + Track ID8170 + NameMai Nozipo ("Mother Nozipo") + ArtistKronos Quartet + Album ArtistKronos Quartet + ComposerDumisani Maraire + AlbumPieces of Africa + GenreClassical + KindMPEG audio file + Size13490277 + Total Time419448 + Disc Number1 + Disc Count1 + Track Number1 + Track Count12 + Year2005 + Date Modified2011-03-28T02:58:44Z + Date Added2011-03-28T03:22:17Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 212029791 + Play Count1 + Play Date3384165490 + Play Date UTC2011-03-28T08:28:10Z + Artwork Count1 + Persistent ID42862B93BDB89685 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kronos%20Quartet/Pieces%20of%20Africa/01%20Mai%20Nozipo%20(_Mother%20Nozipo_).mp3 + File Folder Count4 + Library Folder Count1 + + 8172 + + Track ID8172 + NameSaade ("I'm Happy") + ArtistKronos Quartet + Album ArtistKronos Quartet + ComposerHassan Hakmoun + AlbumPieces of Africa + GenreClassical + KindMPEG audio file + Size6502813 + Total Time201090 + Disc Number1 + Disc Count1 + Track Number2 + Track Count12 + Year2005 + Date Modified2011-03-28T02:57:14Z + Date Added2011-03-28T03:22:17Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 212029792 + Play Count1 + Play Date3384165691 + Play Date UTC2011-03-28T08:31:31Z + Artwork Count1 + Persistent ID31B9128B9530CD55 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kronos%20Quartet/Pieces%20of%20Africa/02%20Saade%20(_I'm%20Happy_).mp3 + File Folder Count4 + Library Folder Count1 + + 8174 + + Track ID8174 + NameTilliboyo ("Sunset") + ArtistKronos Quartet + Album ArtistKronos Quartet + ComposerFoday Musa Suso + AlbumPieces of Africa + GenreClassical + KindMPEG audio file + Size8419578 + Total Time260989 + Disc Number1 + Disc Count1 + Track Number3 + Track Count12 + Year2005 + Date Modified2011-03-28T03:01:50Z + Date Added2011-03-28T03:22:17Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 212029793 + Play Count1 + Play Date3384165952 + Play Date UTC2011-03-28T08:35:52Z + Artwork Count1 + Persistent ID3F13D85A5EDE2A13 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kronos%20Quartet/Pieces%20of%20Africa/03%20Tilliboyo%20(_Sunset_).mp3 + File Folder Count4 + Library Folder Count1 + + 8176 + + Track ID8176 + NameEkitundu Ekisooka ("First Movement") + ArtistKronos Quartet + Album ArtistKronos Quartet + ComposerJustinian Tamasuza + AlbumPieces of Africa + GenreClassical + KindMPEG audio file + Size10842943 + Total Time336718 + Disc Number1 + Disc Count1 + Track Number4 + Track Count12 + Year2005 + Date Modified2011-03-28T02:53:58Z + Date Added2011-03-28T03:22:17Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 212029794 + Play Count1 + Play Date3384166288 + Play Date UTC2011-03-28T08:41:28Z + Artwork Count1 + Persistent IDB99E1A964B647F11 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kronos%20Quartet/Pieces%20of%20Africa/04%20Ekitundu%20Ekisooka%20(_First%20Movement_).mp3 + File Folder Count4 + Library Folder Count1 + + 8178 + + Track ID8178 + NameEscalay ("Waterwheel") + ArtistKronos Quartet + Album ArtistKronos Quartet + ComposerHamza El Din + AlbumPieces of Africa + GenreClassical + KindMPEG audio file + Size23667563 + Total Time737488 + Disc Number1 + Disc Count1 + Track Number5 + Track Count12 + Year2005 + Date Modified2011-03-28T03:04:44Z + Date Added2011-03-28T03:22:17Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 212029795 + Play Count1 + Play Date3384167026 + Play Date UTC2011-03-28T08:53:46Z + Artwork Count1 + Persistent ID62ECD5F0E5FFC4D8 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kronos%20Quartet/Pieces%20of%20Africa/05%20Escalay%20(_Waterwheel_).mp3 + File Folder Count4 + Library Folder Count1 + + 8180 + + Track ID8180 + NameWawshishijay ("Our Beginning") + ArtistKronos Quartet + Album ArtistKronos Quartet + ComposerObo Addy + AlbumPieces of Africa + GenreClassical + KindMPEG audio file + Size9390921 + Total Time291343 + Disc Number1 + Disc Count1 + Track Number6 + Track Count12 + Year2005 + Date Modified2011-03-28T02:59:45Z + Date Added2011-03-28T03:22:17Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 212029796 + Play Count1 + Play Date3384167317 + Play Date UTC2011-03-28T08:58:37Z + Artwork Count1 + Persistent ID122D659ED9621A28 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kronos%20Quartet/Pieces%20of%20Africa/06%20Wawshishijay%20(_Our%20Beginning_).mp3 + File Folder Count4 + Library Folder Count1 + + 8182 + + Track ID8182 + NameI. White Man Sleeps + ArtistKronos Quartet + Album ArtistKronos Quartet + ComposerKevin Volans + AlbumPieces of Africa + GenreClassical + KindMPEG audio file + Size7880403 + Total Time244140 + Disc Number1 + Disc Count1 + Track Number7 + Track Count12 + Year2005 + Date Modified2011-03-28T02:52:52Z + Date Added2011-03-28T03:22:17Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 212029797 + Play Count1 + Play Date3384167561 + Play Date UTC2011-03-28T09:02:41Z + Artwork Count1 + Persistent IDFE1E40C78D6D8723 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kronos%20Quartet/Pieces%20of%20Africa/07%20I.%20White%20Man%20Sleeps.mp3 + File Folder Count4 + Library Folder Count1 + + 8184 + + Track ID8184 + NameII. White Man Sleeps + ArtistKronos Quartet + Album ArtistKronos Quartet + ComposerKevin Volans + AlbumPieces of Africa + GenreClassical + KindMPEG audio file + Size9923389 + Total Time307983 + Disc Number1 + Disc Count1 + Track Number8 + Track Count12 + Year2005 + Date Modified2011-03-28T02:55:16Z + Date Added2011-03-28T03:22:17Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 212029798 + Play Count1 + Play Date3439100030 + Play Date UTC2012-12-23T04:03:50Z + Artwork Count1 + Persistent ID8C3B798690B181D8 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kronos%20Quartet/Pieces%20of%20Africa/08%20II.%20White%20Man%20Sleeps.mp3 + File Folder Count4 + Library Folder Count1 + + 8186 + + Track ID8186 + NameIII. White Man Sleeps + ArtistKronos Quartet + Album ArtistKronos Quartet + ComposerKevin Volans + AlbumPieces of Africa + GenreClassical + KindMPEG audio file + Size6711793 + Total Time207621 + Disc Number1 + Disc Count1 + Track Number9 + Track Count12 + Year2005 + Date Modified2011-03-28T03:05:25Z + Date Added2011-03-28T03:22:17Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 212029799 + Artwork Count1 + Persistent IDE4ED3FCF5825B32F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kronos%20Quartet/Pieces%20of%20Africa/09%20III.%20White%20Man%20Sleeps.mp3 + File Folder Count4 + Library Folder Count1 + + 8188 + + Track ID8188 + NameIV. White Man Sleeps + ArtistKronos Quartet + Album ArtistKronos Quartet + ComposerKevin Volans + AlbumPieces of Africa + GenreClassical + KindMPEG audio file + Size12240557 + Total Time380395 + Disc Number1 + Disc Count1 + Track Number10 + Track Count12 + Year2005 + Date Modified2011-03-28T03:00:57Z + Date Added2011-03-28T03:22:17Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 212029800 + Artwork Count1 + Persistent IDAF1DA02E51A90B0C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kronos%20Quartet/Pieces%20of%20Africa/10%20IV.%20White%20Man%20Sleeps.mp3 + File Folder Count4 + Library Folder Count1 + + 8190 + + Track ID8190 + NameV. White Man Sleeps + ArtistKronos Quartet + Album ArtistKronos Quartet + ComposerKevin Volans + AlbumPieces of Africa + GenreClassical + KindMPEG audio file + Size6720986 + Total Time207908 + Disc Number1 + Disc Count1 + Track Number11 + Track Count12 + Year2005 + Date Modified2011-03-28T03:06:07Z + Date Added2011-03-28T03:22:17Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 212029801 + Artwork Count1 + Persistent ID1461F47E4F3C3835 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kronos%20Quartet/Pieces%20of%20Africa/11%20V.%20White%20Man%20Sleeps.mp3 + File Folder Count4 + Library Folder Count1 + + 8192 + + Track ID8192 + NameKutambarara (" Spreading") + ArtistKronos Quartet + Album ArtistKronos Quartet + ComposerDumisani Maraire + AlbumPieces of Africa + GenreClassical + KindMPEG audio file + Size13830494 + Total Time430080 + Disc Number1 + Disc Count1 + Track Number12 + Track Count12 + Year2005 + Date Modified2011-03-28T02:56:33Z + Date Added2011-03-28T03:22:17Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 212029802 + Artwork Count1 + Persistent ID7D812D6E7769C0EF + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kronos%20Quartet/Pieces%20of%20Africa/12%20Kutambarara%20(_%20Spreading_).mp3 + File Folder Count4 + Library Folder Count1 + + 8194 + + Track ID8194 + NameMongolian Traditional longsong + ArtistGanbaatar Khongorzul + Album ArtistYo-Yo Ma & The Silk Road Ensemble + ComposerTraditional + AlbumSilk Road Journeys - When Strangers Meet + GenreClassical + KindMPEG audio file + Size2818149 + Total Time90723 + Disc Number1 + Disc Count1 + Track Number1 + Track Count12 + Year2002 + Date Modified2011-03-28T02:49:08Z + Date Added2011-03-28T03:22:17Z + Bit Rate228 + Sample Rate44100 + CommentsAmazon.com Song ID: 203913592 + Play Count2 + Play Date3406908093 + Play Date UTC2011-12-16T13:51:33Z + Artwork Count1 + Persistent ID2E1DB8F325538FCB + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yo-Yo%20Ma%20&%20The%20Silk%20Road%20Ensemble/Silk%20Road%20Journeys%20-%20When%20Strangers%20Meet/01%20Mongolian%20Traditional%20longsong.mp3 + File Folder Count4 + Library Folder Count1 + + 8196 + + Track ID8196 + NameLegend of Herlen + ArtistYo-Yo Ma + Album ArtistYo-Yo Ma & The Silk Road Ensemble + ComposerByambasuren Sharav + AlbumSilk Road Journeys - When Strangers Meet + GenreClassical + KindMPEG audio file + Size20597068 + Total Time678791 + Disc Number1 + Disc Count1 + Track Number2 + Track Count12 + Year2002 + Date Modified2011-03-28T02:48:43Z + Date Added2011-03-28T03:22:17Z + Bit Rate240 + Sample Rate44100 + CommentsAmazon.com Song ID: 203913591 + Artwork Count1 + Persistent ID34F4E8EA7AF3CC2E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yo-Yo%20Ma%20&%20The%20Silk%20Road%20Ensemble/Silk%20Road%20Journeys%20-%20When%20Strangers%20Meet/02%20Legend%20of%20Herlen.mp3 + File Folder Count4 + Library Folder Count1 + + 8198 + + Track ID8198 + NameBlue Little Flower (Chinese Traditional) + ArtistYo-Yo Ma + Album ArtistYo-Yo Ma & The Silk Road Ensemble + ComposerTraditional + AlbumSilk Road Journeys - When Strangers Meet + GenreClassical + KindMPEG audio file + Size8324466 + Total Time265639 + Disc Number1 + Disc Count1 + Track Number3 + Track Count12 + Year2002 + Date Modified2011-03-28T02:39:20Z + Date Added2011-03-28T03:22:17Z + Bit Rate243 + Sample Rate44100 + CommentsAmazon.com Song ID: 203913595 + Artwork Count1 + Persistent IDF241723C529D9099 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yo-Yo%20Ma%20&%20The%20Silk%20Road%20Ensemble/Silk%20Road%20Journeys%20-%20When%20Strangers%20Meet/03%20Blue%20Little%20Flower%20(Chinese%20Traditional).mp3 + File Folder Count4 + Library Folder Count1 + + 8200 + + Track ID8200 + NameMido Mountain (Chinese Traditional) + ArtistYo-Yo Ma + Album ArtistYo-Yo Ma & The Silk Road Ensemble + ComposerTraditional + AlbumSilk Road Journeys - When Strangers Meet + GenreClassical + KindMPEG audio file + Size7373348 + Total Time233822 + Disc Number1 + Disc Count1 + Track Number4 + Track Count12 + Year2002 + Date Modified2011-03-28T02:43:09Z + Date Added2011-03-28T03:22:17Z + Bit Rate244 + Sample Rate44100 + CommentsAmazon.com Song ID: 203913589 + Artwork Count1 + Persistent ID3D034990DAFEED15 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yo-Yo%20Ma%20&%20The%20Silk%20Road%20Ensemble/Silk%20Road%20Journeys%20-%20When%20Strangers%20Meet/04%20Mido%20Mountain%20(Chinese%20Traditional).mp3 + File Folder Count4 + Library Folder Count1 + + 8202 + + Track ID8202 + NameMoon over Guan Mountain + ArtistYo-Yo Ma + Album ArtistYo-Yo Ma & The Silk Road Ensemble + ComposerZhao Jiping + AlbumSilk Road Journeys - When Strangers Meet + GenreClassical + KindMPEG audio file + Size22021191 + Total Time709720 + Disc Number1 + Disc Count1 + Track Number5 + Track Count12 + Year2002 + Date Modified2011-03-28T02:52:10Z + Date Added2011-03-28T03:22:17Z + Bit Rate245 + Sample Rate44100 + CommentsAmazon.com Song ID: 203913585 + Artwork Count1 + Persistent IDC04B000F84E4E35C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yo-Yo%20Ma%20&%20The%20Silk%20Road%20Ensemble/Silk%20Road%20Journeys%20-%20When%20Strangers%20Meet/05%20Moon%20over%20Guan%20Mountain.mp3 + File Folder Count4 + Library Folder Count1 + + 8204 + + Track ID8204 + NameNo. 3 Miero vuotti uutta kuuta from Five Finnish Folk Songs (Edited Version) + ArtistYo-Yo Ma + Album ArtistYo-Yo Ma & The Silk Road Ensemble + ComposerMichio Mamiya + AlbumSilk Road Journeys - When Strangers Meet + GenreClassical + KindMPEG audio file + Size3882575 + Total Time120894 + Disc Number1 + Disc Count1 + Track Number6 + Track Count12 + Year2002 + Date Modified2011-03-28T02:39:41Z + Date Added2011-03-28T03:22:17Z + Bit Rate241 + Sample Rate44100 + CommentsAmazon.com Song ID: 203913582 + Artwork Count1 + Persistent ID556C3BD435755A75 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yo-Yo%20Ma%20&%20The%20Silk%20Road%20Ensemble/Silk%20Road%20Journeys%20-%20When%20Strangers%20Meet/06%20No.%203%20Miero%20vuotti%20uutta%20kuuta%20from%20Five%20Finnish%20Folk%20Songs%20(Edited%20Version).mp3 + File Folder Count4 + Library Folder Count1 + + 8206 + + Track ID8206 + NameNo. 5 Joiku from Five Finnish Folk Songs (Edited Version) + ArtistYo-Yo Ma + Album ArtistYo-Yo Ma & The Silk Road Ensemble + ComposerMichio Mamiya + AlbumSilk Road Journeys - When Strangers Meet + GenreClassical + KindMPEG audio file + Size4755311 + Total Time146050 + Disc Number1 + Disc Count1 + Track Number7 + Track Count12 + Year2002 + Date Modified2011-03-28T02:46:54Z + Date Added2011-03-28T03:22:18Z + Bit Rate248 + Sample Rate44100 + CommentsAmazon.com Song ID: 203913583 + Artwork Count1 + Persistent ID1C0CD8B176FAC70E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yo-Yo%20Ma%20&%20The%20Silk%20Road%20Ensemble/Silk%20Road%20Journeys%20-%20When%20Strangers%20Meet/07%20No.%205%20Joiku%20from%20Five%20Finnish%20Folk%20Songs%20(Edited%20Version).mp3 + File Folder Count4 + Library Folder Count1 + + 8208 + + Track ID8208 + NamePersian Traditional Avaz-e Dashti + ArtistKayhan Kalhor;Siamak Jahangiri;Siamak Aghaei + Album ArtistYo-Yo Ma & The Silk Road Ensemble + ComposerTraditional + AlbumSilk Road Journeys - When Strangers Meet + GenreClassical + KindMPEG audio file + Size11273847 + Total Time363049 + Disc Number1 + Disc Count1 + Track Number8 + Track Count12 + Year2002 + Date Modified2011-03-28T02:46:28Z + Date Added2011-03-28T03:22:18Z + Bit Rate243 + Sample Rate44100 + CommentsAmazon.com Song ID: 203913593 + Artwork Count1 + Persistent ID970F1D1D331E52C2 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yo-Yo%20Ma%20&%20The%20Silk%20Road%20Ensemble/Silk%20Road%20Journeys%20-%20When%20Strangers%20Meet/08%20Persian%20Traditional%20Avaz-e%20Dashti.mp3 + File Folder Count4 + Library Folder Count1 + + 8210 + + Track ID8210 + NameHabil-Sayagy (In Habil's Style) + ArtistYo-Yo Ma + Album ArtistYo-Yo Ma & The Silk Road Ensemble + ComposerFranghiz Ali-Zadeh (B.1947) + AlbumSilk Road Journeys - When Strangers Meet + GenreClassical + KindMPEG audio file + Size24768405 + Total Time807183 + Disc Number1 + Disc Count1 + Track Number9 + Track Count12 + Year2002 + Date Modified2011-03-28T02:45:29Z + Date Added2011-03-28T03:22:18Z + Bit Rate243 + Sample Rate44100 + CommentsAmazon.com Song ID: 203913594 + Artwork Count1 + Persistent ID0D5552021E1FB6BF + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yo-Yo%20Ma%20&%20The%20Silk%20Road%20Ensemble/Silk%20Road%20Journeys%20-%20When%20Strangers%20Meet/09%20Habil-Sayagy%20(In%20Habil's%20Style).mp3 + File Folder Count4 + Library Folder Count1 + + 8212 + + Track ID8212 + NameBlue As The Turquoise Night of Neyshabur + ArtistYo-Yo Ma + Album ArtistYo-Yo Ma & The Silk Road Ensemble + ComposerKayhan Kalhor + AlbumSilk Road Journeys - When Strangers Meet + GenreClassical + KindMPEG audio file + Size29389884 + Total Time937090 + Disc Number1 + Disc Count1 + Track Number10 + Track Count12 + Year2002 + Date Modified2011-03-28T02:42:31Z + Date Added2011-03-28T03:22:18Z + Bit Rate248 + Sample Rate44100 + CommentsAmazon.com Song ID: 203913590 + Artwork Count1 + Persistent IDB1D572C04F2A9072 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yo-Yo%20Ma%20&%20The%20Silk%20Road%20Ensemble/Silk%20Road%20Journeys%20-%20When%20Strangers%20Meet/10%20Blue%20As%20The%20Turquoise%20Night%20of%20Neyshabur.mp3 + File Folder Count4 + Library Folder Count1 + + 8214 + + Track ID8214 + NameChi passa per'sta strada + ArtistYo-Yo Ma + Album ArtistYo-Yo Ma & The Silk Road Ensemble + ComposerFilippo Azzaiolo (Ca. 1530-After 1569) + AlbumSilk Road Journeys - When Strangers Meet + GenreClassical + KindMPEG audio file + Size9058148 + Total Time286850 + Disc Number1 + Disc Count1 + Track Number11 + Track Count12 + Year2002 + Date Modified2011-03-28T02:50:01Z + Date Added2011-03-28T03:22:18Z + Bit Rate246 + Sample Rate44100 + CommentsAmazon.com Song ID: 203913587 + Artwork Count1 + Persistent ID476A3DEA03FCE101 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yo-Yo%20Ma%20&%20The%20Silk%20Road%20Ensemble/Silk%20Road%20Journeys%20-%20When%20Strangers%20Meet/11%20Chi%20passa%20per'sta%20strada.mp3 + File Folder Count4 + Library Folder Count1 + + 8216 + + Track ID8216 + NameDesert Capriccio (Music from the film Crouching Tiger, Hidden Dragon) + ArtistYo-Yo Ma + Album ArtistYo-Yo Ma & The Silk Road Ensemble + ComposerTAN DUN (b. 1957) + AlbumSilk Road Journeys - When Strangers Meet + GenreClassical + KindMPEG audio file + Size3129259 + Total Time97175 + Disc Number1 + Disc Count1 + Track Number12 + Track Count12 + Year2002 + Date Modified2011-03-28T02:39:59Z + Date Added2011-03-28T03:22:18Z + Bit Rate238 + Sample Rate44100 + CommentsAmazon.com Song ID: 203913588 + Play Count1 + Play Date3384399040 + Play Date UTC2011-03-31T01:20:40Z + Artwork Count1 + Persistent IDAC93406F28A0391A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yo-Yo%20Ma%20&%20The%20Silk%20Road%20Ensemble/Silk%20Road%20Journeys%20-%20When%20Strangers%20Meet/12%20Desert%20Capriccio%20(Music%20from%20the%20film%20Crouching%20Tiger,%20Hidden%20Dragon).mp3 + File Folder Count4 + Library Folder Count1 + + 8218 + + Track ID8218 + NameLam Tooro + ArtistBaaba Maal + Album ArtistBaaba Maal + AlbumDjam Leelii: The Adventurers + GenreInternational + KindMPEG audio file + Size11701470 + Total Time401005 + Disc Number1 + Disc Count1 + Track Number1 + Track Count12 + Year1989 + Date Modified2011-03-28T15:50:41Z + Date Added2011-03-28T16:30:17Z + Bit Rate231 + Sample Rate44100 + CommentsAmazon.com Song ID: 208738057 + Artwork Count1 + Persistent IDE47F071678BBDE79 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Baaba%20Maal/Djam%20Leelii_%20The%20Adventurers/01%20Lam%20Tooro.mp3 + File Folder Count4 + Library Folder Count1 + + 8220 + + Track ID8220 + NameLoodo + ArtistBaaba Maal + Album ArtistBaaba Maal + AlbumDjam Leelii: The Adventurers + GenreInternational + KindMPEG audio file + Size11027314 + Total Time371017 + Disc Number1 + Disc Count1 + Track Number2 + Track Count12 + Year1989 + Date Modified2011-03-28T15:53:46Z + Date Added2011-03-28T16:30:17Z + Bit Rate236 + Sample Rate44100 + CommentsAmazon.com Song ID: 208738058 + Artwork Count1 + Persistent ID70558301FAF65374 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Baaba%20Maal/Djam%20Leelii_%20The%20Adventurers/02%20Loodo.mp3 + File Folder Count4 + Library Folder Count1 + + 8222 + + Track ID8222 + NameMuudo Hormo + ArtistBaaba Maal + Album ArtistBaaba Maal + AlbumDjam Leelii: The Adventurers + GenreInternational + KindMPEG audio file + Size10803275 + Total Time373420 + Disc Number1 + Disc Count1 + Track Number3 + Track Count12 + Year1989 + Date Modified2011-03-28T15:46:34Z + Date Added2011-03-28T16:30:17Z + Bit Rate229 + Sample Rate44100 + CommentsAmazon.com Song ID: 208738059 + Artwork Count1 + Persistent ID0BE07500E07FF23F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Baaba%20Maal/Djam%20Leelii_%20The%20Adventurers/03%20Muudo%20Hormo.mp3 + File Folder Count4 + Library Folder Count1 + + 8224 + + Track ID8224 + NameSalminanam + ArtistBaaba Maal + Album ArtistBaaba Maal + AlbumDjam Leelii: The Adventurers + GenreInternational + KindMPEG audio file + Size8353801 + Total Time269113 + Disc Number1 + Disc Count1 + Track Number4 + Track Count12 + Year1989 + Date Modified2011-03-28T15:52:47Z + Date Added2011-03-28T16:30:17Z + Bit Rate246 + Sample Rate44100 + CommentsAmazon.com Song ID: 208738060 + Skip Count1 + Skip Date2011-03-30T15:56:52Z + Artwork Count1 + Persistent ID79FD268105987220 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Baaba%20Maal/Djam%20Leelii_%20The%20Adventurers/04%20Salminanam.mp3 + File Folder Count4 + Library Folder Count1 + + 8226 + + Track ID8226 + NameMaacina Tooro + ArtistBaaba Maal + Album ArtistBaaba Maal + AlbumDjam Leelii: The Adventurers + GenreInternational + KindMPEG audio file + Size11006631 + Total Time349100 + Disc Number1 + Disc Count1 + Track Number5 + Track Count12 + Year1989 + Date Modified2011-03-28T15:49:03Z + Date Added2011-03-28T16:30:17Z + Bit Rate250 + Sample Rate44100 + CommentsAmazon.com Song ID: 208738061 + Artwork Count1 + Persistent ID50B8C0FB8D02E101 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Baaba%20Maal/Djam%20Leelii_%20The%20Adventurers/05%20Maacina%20Tooro.mp3 + File Folder Count4 + Library Folder Count1 + + 8228 + + Track ID8228 + NameDjam Leelii + ArtistBaaba Maal + Album ArtistBaaba Maal + AlbumDjam Leelii: The Adventurers + GenreInternational + KindMPEG audio file + Size10426571 + Total Time362840 + Disc Number1 + Disc Count1 + Track Number6 + Track Count12 + Year1989 + Date Modified2011-03-28T15:57:14Z + Date Added2011-03-28T16:30:17Z + Bit Rate228 + Sample Rate44100 + CommentsAmazon.com Song ID: 208738062 + Artwork Count1 + Persistent IDF128D42349B0D4C9 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Baaba%20Maal/Djam%20Leelii_%20The%20Adventurers/06%20Djam%20Leelii.mp3 + File Folder Count4 + Library Folder Count1 + + 8230 + + Track ID8230 + NameBibbe Leydy + ArtistBaaba Maal + Album ArtistBaaba Maal + AlbumDjam Leelii: The Adventurers + GenreInternational + KindMPEG audio file + Size11654203 + Total Time387578 + Disc Number1 + Disc Count1 + Track Number7 + Track Count12 + Year1989 + Date Modified2011-03-28T15:43:15Z + Date Added2011-03-28T16:30:17Z + Bit Rate239 + Sample Rate44100 + CommentsAmazon.com Song ID: 208738063 + Artwork Count1 + Persistent ID987022347C4AF10E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Baaba%20Maal/Djam%20Leelii_%20The%20Adventurers/07%20Bibbe%20Leydy.mp3 + File Folder Count4 + Library Folder Count1 + + 8232 + + Track ID8232 + NameSehilam + ArtistBaaba Maal + Album ArtistBaaba Maal + AlbumDjam Leelii: The Adventurers + GenreInternational + KindMPEG audio file + Size12248881 + Total Time384261 + Disc Number1 + Disc Count1 + Track Number8 + Track Count12 + Year1989 + Date Modified2011-03-28T15:56:06Z + Date Added2011-03-28T16:30:17Z + Bit Rate253 + Sample Rate44100 + CommentsAmazon.com Song ID: 208738064 + Skip Count2 + Skip Date2011-03-30T16:01:44Z + Artwork Count1 + Persistent ID4071A592437A525A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Baaba%20Maal/Djam%20Leelii_%20The%20Adventurers/08%20Sehilam.mp3 + File Folder Count4 + Library Folder Count1 + + 8234 + + Track ID8234 + NameKettodee + ArtistBaaba Maal + Album ArtistBaaba Maal + AlbumDjam Leelii: The Adventurers + GenreInternational + KindMPEG audio file + Size9237201 + Total Time294974 + Disc Number1 + Disc Count1 + Track Number9 + Track Count12 + Year1989 + Date Modified2011-03-28T15:54:44Z + Date Added2011-03-28T16:30:17Z + Bit Rate248 + Sample Rate44100 + CommentsAmazon.com Song ID: 208738065 + Skip Count1 + Skip Date2011-03-30T16:01:54Z + Artwork Count1 + Persistent ID8BB804A53A7A4875 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Baaba%20Maal/Djam%20Leelii_%20The%20Adventurers/09%20Kettodee.mp3 + File Folder Count4 + Library Folder Count1 + + 8236 + + Track ID8236 + NameKo Wone Mayo + ArtistBaaba Maal + Album ArtistBaaba Maal + AlbumDjam Leelii: The Adventurers + GenreInternational + KindMPEG audio file + Size16518029 + Total Time569547 + Disc Number1 + Disc Count1 + Track Number10 + Track Count12 + Year1989 + Date Modified2011-03-28T15:44:50Z + Date Added2011-03-28T16:30:17Z + Bit Rate230 + Sample Rate44100 + CommentsAmazon.com Song ID: 208738066 + Artwork Count1 + Persistent IDD02DCE2D1B1DCE6D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Baaba%20Maal/Djam%20Leelii_%20The%20Adventurers/10%20Ko%20Wone%20Mayo.mp3 + File Folder Count4 + Library Folder Count1 + + 8238 + + Track ID8238 + NameDaande Lenol + ArtistBaaba Maal + Album ArtistBaaba Maal + AlbumDjam Leelii: The Adventurers + GenreInternational + KindMPEG audio file + Size8136416 + Total Time274102 + Disc Number1 + Disc Count1 + Track Number11 + Track Count12 + Year1989 + Date Modified2011-03-28T15:42:05Z + Date Added2011-03-28T16:30:17Z + Bit Rate235 + Sample Rate44100 + CommentsAmazon.com Song ID: 208738067 + Artwork Count1 + Persistent IDDB791BB256263162 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Baaba%20Maal/Djam%20Leelii_%20The%20Adventurers/11%20Daande%20Lenol.mp3 + File Folder Count4 + Library Folder Count1 + + 8240 + + Track ID8240 + NameTaara + ArtistBaaba Maal + Album ArtistBaaba Maal + AlbumDjam Leelii: The Adventurers + GenreInternational + KindMPEG audio file + Size9344153 + Total Time323552 + Disc Number1 + Disc Count1 + Track Number12 + Track Count12 + Year1989 + Date Modified2011-03-28T15:51:40Z + Date Added2011-03-28T16:30:17Z + Bit Rate229 + Sample Rate44100 + CommentsAmazon.com Song ID: 208738068 + Artwork Count1 + Persistent IDACA9C85D81D02EE8 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Baaba%20Maal/Djam%20Leelii_%20The%20Adventurers/12%20Taara.mp3 + File Folder Count4 + Library Folder Count1 + + 8242 + + Track ID8242 + NameUnder Stars (2005 Digital Remaster) + ArtistBrian Eno + Album ArtistBrian Eno + ComposerBrian Eno + AlbumApollo + GenrePop + KindMPEG audio file + Size7515423 + Total Time270341 + Disc Number1 + Disc Count1 + Track Number1 + Track Count12 + Year2005 + Date Modified2011-03-28T16:26:59Z + Date Added2011-03-28T16:30:17Z + Bit Rate213 + Sample Rate44100 + CommentsAmazon.com Song ID: 202160158 + Artwork Count1 + Persistent IDDE6EB6A1A7E1E60F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Brian%20Eno/Apollo/01%20Under%20Stars%20(2005%20Digital%20Remaster).mp3 + File Folder Count4 + Library Folder Count1 + + 8244 + + Track ID8244 + NameThe Secret Place (2005 Digital Remaster) + ArtistBrian Eno + Album ArtistBrian Eno + ComposerBrian Eno + AlbumApollo + GenrePop + KindMPEG audio file + Size5887431 + Total Time209737 + Disc Number1 + Disc Count1 + Track Number2 + Track Count12 + Year2005 + Date Modified2011-03-28T16:26:11Z + Date Added2011-03-28T16:30:17Z + Bit Rate213 + Sample Rate44100 + CommentsAmazon.com Song ID: 202160159 + Play Count1 + Play Date3384512909 + Play Date UTC2011-04-01T08:58:29Z + Artwork Count1 + Sort NameSecret Place (2005 Digital Remaster) + Persistent ID5AEBC80F09934DF0 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Brian%20Eno/Apollo/02%20The%20Secret%20Place%20(2005%20Digital%20Remaster).mp3 + File Folder Count4 + Library Folder Count1 + + 8246 + + Track ID8246 + NameMatta (2005 Digital Remaster) + ArtistBrian Eno + Album ArtistBrian Eno + ComposerBrian Eno + AlbumApollo + GenrePop + KindMPEG audio file + Size7466216 + Total Time259735 + Disc Number1 + Disc Count1 + Track Number3 + Track Count12 + Year2005 + Date Modified2011-03-28T16:21:32Z + Date Added2011-03-28T16:30:17Z + Bit Rate221 + Sample Rate44100 + CommentsAmazon.com Song ID: 202160160 + Play Count1 + Play Date3384513169 + Play Date UTC2011-04-01T09:02:49Z + Artwork Count1 + Persistent ID09766F08512EBF2C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Brian%20Eno/Apollo/03%20Matta%20(2005%20Digital%20Remaster).mp3 + File Folder Count4 + Library Folder Count1 + + 8248 + + Track ID8248 + NameSignals (2005 Digital Remaster) + ArtistBrian Eno + Album ArtistBrian Eno + ComposerBrian Eno + AlbumApollo + GenrePop + KindMPEG audio file + Size4648497 + Total Time166608 + Disc Number1 + Disc Count1 + Track Number4 + Track Count12 + Year2005 + Date Modified2011-03-28T16:19:52Z + Date Added2011-03-28T16:30:17Z + Bit Rate209 + Sample Rate44100 + CommentsAmazon.com Song ID: 202160161 + Play Count1 + Play Date3384513335 + Play Date UTC2011-04-01T09:05:35Z + Artwork Count1 + Persistent ID9017BA1666FE8156 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Brian%20Eno/Apollo/04%20Signals%20(2005%20Digital%20Remaster).mp3 + File Folder Count4 + Library Folder Count1 + + 8250 + + Track ID8250 + NameAn Ending (Ascent) (2005 Digital Remaster) + ArtistBrian Eno + Album ArtistBrian Eno + ComposerBrian Eno + AlbumApollo + GenrePop + KindMPEG audio file + Size7550453 + Total Time266240 + Disc Number1 + Disc Count1 + Track Number5 + Track Count12 + Year2005 + Date Modified2011-03-28T16:25:36Z + Date Added2011-03-28T16:30:17Z + Bit Rate218 + Sample Rate44100 + CommentsAmazon.com Song ID: 202160162 + Play Count1 + Play Date3384513601 + Play Date UTC2011-04-01T09:10:01Z + Artwork Count1 + Sort NameEnding (Ascent) (2005 Digital Remaster) + Persistent IDB92AA4E604D3F4B4 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Brian%20Eno/Apollo/05%20An%20Ending%20(Ascent)%20(2005%20Digital%20Remaster).mp3 + File Folder Count4 + Library Folder Count1 + + 8252 + + Track ID8252 + NameUnder Stars II (2005 Digital Remaster) + ArtistBrian Eno + Album ArtistBrian Eno + ComposerBrian Eno + AlbumApollo + GenrePop + KindMPEG audio file + Size5725150 + Total Time202814 + Disc Number1 + Disc Count1 + Track Number6 + Track Count12 + Year2005 + Date Modified2011-03-28T16:20:23Z + Date Added2011-03-28T16:30:17Z + Bit Rate214 + Sample Rate44100 + CommentsAmazon.com Song ID: 202160163 + Play Count1 + Play Date3384513804 + Play Date UTC2011-04-01T09:13:24Z + Artwork Count1 + Persistent IDEE1FAD5FE2779A29 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Brian%20Eno/Apollo/06%20Under%20Stars%20II%20(2005%20Digital%20Remaster).mp3 + File Folder Count4 + Library Folder Count1 + + 8254 + + Track ID8254 + NameDrift (2005 Digital Remaster) + ArtistBrian Eno + Album ArtistBrian Eno + ComposerRoger Eno + AlbumApollo + GenrePop + KindMPEG audio file + Size5362901 + Total Time189518 + Disc Number1 + Disc Count1 + Track Number7 + Track Count12 + Year2005 + Date Modified2011-03-28T16:24:00Z + Date Added2011-03-28T16:30:17Z + Bit Rate214 + Sample Rate44100 + CommentsAmazon.com Song ID: 202160164 + Play Count1 + Play Date3384513993 + Play Date UTC2011-04-01T09:16:33Z + Skip Count1 + Skip Date2011-03-30T15:54:09Z + Artwork Count1 + Persistent ID7EF5D9199F4D35B2 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Brian%20Eno/Apollo/07%20Drift%20(2005%20Digital%20Remaster).mp3 + File Folder Count4 + Library Folder Count1 + + 8256 + + Track ID8256 + NameSilver Morning (2005 Digital Remaster) + ArtistBrian Eno + Album ArtistBrian Eno + ComposerDaniel Lanois + AlbumApollo + GenrePop + KindMPEG audio file + Size5167633 + Total Time159529 + Disc Number1 + Disc Count1 + Track Number8 + Track Count12 + Year2005 + Date Modified2011-03-28T16:20:50Z + Date Added2011-03-28T16:30:17Z + Bit Rate244 + Sample Rate44100 + CommentsAmazon.com Song ID: 202160165 + Play Count1 + Play Date3384514153 + Play Date UTC2011-04-01T09:19:13Z + Skip Count1 + Skip Date2011-03-30T15:54:05Z + Artwork Count1 + Persistent IDE5DFE6443959C535 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Brian%20Eno/Apollo/08%20Silver%20Morning%20(2005%20Digital%20Remaster).mp3 + File Folder Count4 + Library Folder Count1 + + 8258 + + Track ID8258 + NameDeep Blue Day (2005 Digital Remaster) + ArtistBrian Eno + Album ArtistBrian Eno + ComposerRoger Eno + AlbumApollo + GenrePop + KindMPEG audio file + Size7679115 + Total Time238837 + Disc Number1 + Disc Count1 + Track Number9 + Track Count12 + Year2005 + Date Modified2011-03-28T16:24:47Z + Date Added2011-03-28T16:30:17Z + Bit Rate247 + Sample Rate44100 + CommentsAmazon.com Song ID: 202160166 + Play Count2 + Play Date3384514392 + Play Date UTC2011-04-01T09:23:12Z + Artwork Count1 + Persistent ID1034B310A1B479F8 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Brian%20Eno/Apollo/09%20Deep%20Blue%20Day%20(2005%20Digital%20Remaster).mp3 + File Folder Count4 + Library Folder Count1 + + 8260 + + Track ID8260 + NameWeightless (2005 Digital Remaster) + ArtistBrian Eno + Album ArtistBrian Eno + ComposerRoger Eno + AlbumApollo + GenrePop + KindMPEG audio file + Size8204457 + Total Time275226 + Disc Number1 + Disc Count1 + Track Number10 + Track Count12 + Year2005 + Date Modified2011-03-28T16:22:25Z + Date Added2011-03-28T16:30:17Z + Bit Rate230 + Sample Rate44100 + CommentsAmazon.com Song ID: 202160167 + Play Count1 + Play Date3384514667 + Play Date UTC2011-04-01T09:27:47Z + Artwork Count1 + Persistent IDE04DC06D47F0BD2F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Brian%20Eno/Apollo/10%20Weightless%20(2005%20Digital%20Remaster).mp3 + File Folder Count4 + Library Folder Count1 + + 8262 + + Track ID8262 + NameAlways Returning (2005 Digital Remaster) + ArtistBrian Eno + Album ArtistBrian Eno + ComposerRoger Eno + AlbumApollo + GenrePop + KindMPEG audio file + Size7240705 + Total Time244244 + Disc Number1 + Disc Count1 + Track Number11 + Track Count12 + Year2005 + Date Modified2011-03-28T16:23:28Z + Date Added2011-03-28T16:30:17Z + Bit Rate227 + Sample Rate44100 + CommentsAmazon.com Song ID: 202160168 + Play Count2 + Play Date3384514911 + Play Date UTC2011-04-01T09:31:51Z + Artwork Count1 + Persistent ID4123ABE896A1DD4E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Brian%20Eno/Apollo/11%20Always%20Returning%20(2005%20Digital%20Remaster).mp3 + File Folder Count4 + Library Folder Count1 + + 8264 + + Track ID8264 + NameStars (2005 Digital Remaster) + ArtistBrian Eno + Album ArtistBrian Eno + ComposerBrian Eno + AlbumApollo + GenrePop + KindMPEG audio file + Size12955470 + Total Time480339 + Disc Number1 + Disc Count1 + Track Number12 + Track Count12 + Year2005 + Date Modified2011-03-28T16:19:19Z + Date Added2011-03-28T16:30:17Z + Bit Rate210 + Sample Rate44100 + CommentsAmazon.com Song ID: 202160169 + Play Count2 + Play Date3384541316 + Play Date UTC2011-04-01T16:51:56Z + Artwork Count1 + Persistent ID5FF8BFD7F0CAFF06 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Brian%20Eno/Apollo/12%20Stars%20(2005%20Digital%20Remaster).mp3 + File Folder Count4 + Library Folder Count1 + + 8266 + + Track ID8266 + NamePilentze Pee + ArtistBulgarian State Television Female Choir + Album ArtistBulgarian State Television Female Choir + AlbumLe Mystere Des Voix Bulgares + GenreInternational + KindMPEG audio file + Size4572602 + Total Time141583 + Disc Number1 + Disc Count1 + Track Number1 + Track Count13 + Year2006 + Date Modified2011-03-28T16:17:00Z + Date Added2011-03-28T16:30:17Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 203510891 + Play Count3 + Play Date3390500670 + Play Date UTC2011-06-09T16:14:30Z + Artwork Count1 + Persistent IDB5F078378E6F0037 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bulgarian%20State%20Television%20Female%20Choir/Le%20Mystere%20Des%20Voix%20Bulgares/01%20Pilentze%20Pee.mp3 + File Folder Count4 + Library Folder Count1 + + 8268 + + Track ID8268 + NameSvatba (The Wedding) + ArtistBulgarian State Television Female Choir + Album ArtistBulgarian State Television Female Choir + AlbumLe Mystere Des Voix Bulgares + GenreInternational + KindMPEG audio file + Size2835580 + Total Time87301 + Disc Number1 + Disc Count1 + Track Number2 + Track Count13 + Year2006 + Date Modified2011-03-28T16:13:32Z + Date Added2011-03-28T16:30:17Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 203510892 + Play Count3 + Play Date3390500757 + Play Date UTC2011-06-09T16:15:57Z + Artwork Count1 + Persistent ID690E407A88FFD1E2 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bulgarian%20State%20Television%20Female%20Choir/Le%20Mystere%20Des%20Voix%20Bulgares/02%20Svatba%20(The%20Wedding).mp3 + File Folder Count4 + Library Folder Count1 + + 8270 + + Track ID8270 + NameKalimankou Denkou (The Evening Gathering) + ArtistBulgarian State Television Female Choir + Album ArtistBulgarian State Television Female Choir + AlbumLe Mystere Des Voix Bulgares + GenreInternational + KindMPEG audio file + Size9840618 + Total Time306207 + Disc Number1 + Disc Count1 + Track Number3 + Track Count13 + Year2006 + Date Modified2011-03-28T16:16:07Z + Date Added2011-03-28T16:30:17Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 203510893 + Play Count1 + Play Date3384866292 + Play Date UTC2011-04-05T11:08:12Z + Artwork Count1 + Persistent IDFD95A83EDF35A51D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bulgarian%20State%20Television%20Female%20Choir/Le%20Mystere%20Des%20Voix%20Bulgares/03%20Kalimankou%20Denkou%20(The%20Evening%20Gathering).mp3 + File Folder Count4 + Library Folder Count1 + + 8272 + + Track ID8272 + NameStrati na Angelaki Doumasche (Haiduk Song) + ArtistBulgarian State Television Female Choir + Album ArtistBulgarian State Television Female Choir + AlbumLe Mystere Des Voix Bulgares + GenreInternational + KindMPEG audio file + Size5064182 + Total Time156943 + Disc Number1 + Disc Count1 + Track Number4 + Track Count13 + Year2006 + Date Modified2011-03-28T16:14:33Z + Date Added2011-03-28T16:30:17Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 203510894 + Play Count1 + Play Date3384866449 + Play Date UTC2011-04-05T11:10:49Z + Artwork Count1 + Persistent ID30B7B77A5E9DA1E1 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bulgarian%20State%20Television%20Female%20Choir/Le%20Mystere%20Des%20Voix%20Bulgares/04%20Strati%20na%20Angelaki%20Doumasche%20(Haiduk%20Song).mp3 + File Folder Count4 + Library Folder Count1 + + 8274 + + Track ID8274 + NamePolegnala e Pschenitza (Harvest Song from Thrace) + ArtistBulgarian State Television Female Choir + Album ArtistBulgarian State Television Female Choir + AlbumLe Mystere Des Voix Bulgares + GenreInternational + KindMPEG audio file + Size3935706 + Total Time121678 + Disc Number1 + Disc Count1 + Track Number5 + Track Count13 + Year2006 + Date Modified2011-03-28T16:13:56Z + Date Added2011-03-28T16:30:17Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 203510895 + Play Count1 + Play Date3384365739 + Play Date UTC2011-03-30T16:05:39Z + Artwork Count1 + Persistent ID4E40DB3B39FABA71 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bulgarian%20State%20Television%20Female%20Choir/Le%20Mystere%20Des%20Voix%20Bulgares/05%20Polegnala%20e%20Pschenitza%20(Harvest%20Song%20from%20Thrace).mp3 + File Folder Count4 + Library Folder Count1 + + 8276 + + Track ID8276 + NameMessetschinko lio Gre_livko (Love Song from the Mountains) + ArtistBulgarian State Television Female Choir + Album ArtistBulgarian State Television Female Choir + AlbumLe Mystere Des Voix Bulgares + GenreInternational + KindMPEG audio file + Size4878640 + Total Time151144 + Disc Number1 + Disc Count1 + Track Number6 + Track Count13 + Year2006 + Date Modified2011-03-28T16:13:13Z + Date Added2011-03-28T16:30:17Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 203510896 + Play Count2 + Play Date3385469274 + Play Date UTC2011-04-12T10:37:54Z + Artwork Count1 + Persistent IDC0BD23986D6DFC67 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bulgarian%20State%20Television%20Female%20Choir/Le%20Mystere%20Des%20Voix%20Bulgares/06%20Messetschinko%20lio%20Gre_livko%20(Love%20Song%20from%20the%20Mountains).mp3 + File Folder Count4 + Library Folder Count1 + + 8278 + + Track ID8278 + NameBre_Yvance (Dancing Song) + ArtistBulgarian State Television Female Choir + Album ArtistBulgarian State Television Female Choir + AlbumLe Mystere Des Voix Bulgares + GenreInternational + KindMPEG audio file + Size2950947 + Total Time90906 + Disc Number1 + Disc Count1 + Track Number7 + Track Count13 + Year2006 + Date Modified2011-03-28T16:11:31Z + Date Added2011-03-28T16:30:17Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 203510897 + Artwork Count1 + Persistent ID460B962CAE0B536F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bulgarian%20State%20Television%20Female%20Choir/Le%20Mystere%20Des%20Voix%20Bulgares/07%20Bre_Yvance%20(Dancing%20Song).mp3 + File Folder Count4 + Library Folder Count1 + + 8280 + + Track ID8280 + NameErghan Diado (Song of Schopsko) + ArtistBulgarian State Television Female Choir + Album ArtistBulgarian State Television Female Choir + AlbumLe Mystere Des Voix Bulgares + GenreInternational + KindMPEG audio file + Size5497166 + Total Time170475 + Disc Number1 + Disc Count1 + Track Number8 + Track Count13 + Year2006 + Date Modified2011-03-28T16:17:58Z + Date Added2011-03-28T16:30:17Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 203510898 + Play Count1 + Play Date3385037610 + Play Date UTC2011-04-07T10:43:30Z + Artwork Count1 + Persistent ID3FE85B8297AD100C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bulgarian%20State%20Television%20Female%20Choir/Le%20Mystere%20Des%20Voix%20Bulgares/08%20Erghan%20Diado%20(Song%20of%20Schopsko).mp3 + File Folder Count4 + Library Folder Count1 + + 8282 + + Track ID8282 + NameSableyalo mi Agontze (The Bleating Lamb) + ArtistBulgarian State Television Female Choir + Album ArtistBulgarian State Television Female Choir + AlbumLe Mystere Des Voix Bulgares + GenreInternational + KindMPEG audio file + Size8713798 + Total Time270994 + Disc Number1 + Disc Count1 + Track Number9 + Track Count13 + Year2006 + Date Modified2011-03-28T16:12:40Z + Date Added2011-03-28T16:30:17Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 203510899 + Artwork Count1 + Persistent ID1CE6B958B961C2CA + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bulgarian%20State%20Television%20Female%20Choir/Le%20Mystere%20Des%20Voix%20Bulgares/09%20Sableyalo%20mi%20Agontze%20(The%20Bleating%20Lamb).mp3 + File Folder Count4 + Library Folder Count1 + + 8284 + + Track ID8284 + NameMir Stanke le (Harvest Song from Thrace) + ArtistBulgarian State Television Female Choir + Album ArtistBulgarian State Television Female Choir + AlbumLe Mystere Des Voix Bulgares + GenreInternational + KindMPEG audio file + Size5350900 + Total Time165903 + Disc Number1 + Disc Count1 + Track Number10 + Track Count13 + Year2006 + Date Modified2011-03-28T16:17:29Z + Date Added2011-03-28T16:30:17Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 203510900 + Artwork Count1 + Persistent ID807A9DAD758AB893 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bulgarian%20State%20Television%20Female%20Choir/Le%20Mystere%20Des%20Voix%20Bulgares/10%20Mir%20Stanke%20le%20(Harvest%20Song%20from%20Thrace).mp3 + File Folder Count4 + Library Folder Count1 + + 8286 + + Track ID8286 + NamePr_tour_tze Planinata (Song from the Tracian Plain) + ArtistBulgarian State Television Female Choir + Album ArtistBulgarian State Television Female Choir + AlbumLe Mystere Des Voix Bulgares + GenreInternational + KindMPEG audio file + Size6122475 + Total Time190014 + Disc Number1 + Disc Count1 + Track Number11 + Track Count13 + Year2006 + Date Modified2011-03-28T16:15:08Z + Date Added2011-03-28T16:30:17Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 203510901 + Artwork Count1 + Persistent IDC798D1F9A704DBD5 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bulgarian%20State%20Television%20Female%20Choir/Le%20Mystere%20Des%20Voix%20Bulgares/11%20Pr_tour_tze%20Planinata%20(Song%20from%20the%20Tracian%20Plain).mp3 + File Folder Count4 + Library Folder Count1 + + 8288 + + Track ID8288 + NameSchopska Pesen (Diaphonic Chant) + ArtistBulgarian State Television Female Choir + Album ArtistBulgarian State Television Female Choir + AlbumLe Mystere Des Voix Bulgares + GenreInternational + KindMPEG audio file + Size2847309 + Total Time87666 + Disc Number1 + Disc Count1 + Track Number12 + Track Count13 + Year2006 + Date Modified2011-03-28T16:16:29Z + Date Added2011-03-28T16:30:17Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 203510902 + Play Count1 + Play Date3384398727 + Play Date UTC2011-03-31T01:15:27Z + Artwork Count1 + Persistent ID79980CF4D3171C63 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bulgarian%20State%20Television%20Female%20Choir/Le%20Mystere%20Des%20Voix%20Bulgares/12%20Schopska%20Pesen%20(Diaphonic%20Chant).mp3 + File Folder Count4 + Library Folder Count1 + + 8290 + + Track ID8290 + NamePolegnala e Todora (Love Song) + ArtistBulgarian State Television Female Choir + Album ArtistBulgarian State Television Female Choir + AlbumLe Mystere Des Voix Bulgares + GenreInternational + KindMPEG audio file + Size7011014 + Total Time217782 + Disc Number1 + Disc Count1 + Track Number13 + Track Count13 + Year2006 + Date Modified2011-03-28T16:11:12Z + Date Added2011-03-28T16:30:17Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 203510903 + Play Count1 + Play Date3384398941 + Play Date UTC2011-03-31T01:19:01Z + Artwork Count1 + Persistent IDE6803394ECA307BD + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bulgarian%20State%20Television%20Female%20Choir/Le%20Mystere%20Des%20Voix%20Bulgares/13%20Polegnala%20e%20Todora%20(Love%20Song).mp3 + File Folder Count4 + Library Folder Count1 + + 8292 + + Track ID8292 + NameFratres + ArtistGidon Kremer + Album ArtistGidon Kremer + ComposerPärt, Arvo + AlbumArvo Pärt: Tabula Rasa + GenreClassical + KindMPEG audio file + Size22061653 + Total Time686811 + Disc Number1 + Disc Count1 + Track Number1 + Track Count4 + Year1999 + Date Modified2011-03-28T16:07:03Z + Date Added2011-03-28T16:30:17Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202413495 + Play Count3 + Play Date3384542002 + Play Date UTC2011-04-01T17:03:22Z + Artwork Count1 + Persistent ID2C715D618B90870F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Gidon%20Kremer/Arvo%20Pa%CC%88rt_%20Tabula%20Rasa/01%20Fratres.mp3 + File Folder Count4 + Library Folder Count1 + + 8294 + + Track ID8294 + NameCantus In Memory Of Benjamin Britten + ArtistStaatsorchester Stuttgart + Album ArtistGidon Kremer + ComposerPärt, Arvo + AlbumArvo Pärt: Tabula Rasa + GenreClassical + KindMPEG audio file + Size9803036 + Total Time303725 + Disc Number1 + Disc Count1 + Track Number2 + Track Count4 + Year1999 + Date Modified2011-03-28T16:04:36Z + Date Added2011-03-28T16:30:17Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202413496 + Play Count2 + Play Date3384542306 + Play Date UTC2011-04-01T17:08:26Z + Artwork Count1 + Persistent ID5AD73803DF2D4B68 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Gidon%20Kremer/Arvo%20Pa%CC%88rt_%20Tabula%20Rasa/02%20Cantus%20In%20Memory%20Of%20Benjamin%20Britten.mp3 + File Folder Count4 + Library Folder Count1 + + 8296 + + Track ID8296 + NameFratres + Artist12 Cellists Of The Berlin Philh. + Album ArtistGidon Kremer + ComposerPärt, Arvo + AlbumArvo Pärt: Tabula Rasa + GenreClassical + KindMPEG audio file + Size23053092 + Total Time717792 + Disc Number1 + Disc Count1 + Track Number3 + Track Count4 + Year1999 + Date Modified2011-03-28T16:10:19Z + Date Added2011-03-28T16:30:17Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202413497 + Play Count1 + Play Date3384506930 + Play Date UTC2011-04-01T07:18:50Z + Artwork Count1 + Persistent IDED70D5F4597C80C6 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Gidon%20Kremer/Arvo%20Pa%CC%88rt_%20Tabula%20Rasa/03%20Fratres.mp3 + File Folder Count4 + Library Folder Count1 + + 8298 + + Track ID8298 + NameTabula Rasa + ArtistLithuanian Chamber Orchestra + Album ArtistGidon Kremer + ComposerPärt, Arvo + AlbumArvo Pärt: Tabula Rasa + GenreClassical + KindMPEG audio file + Size51154192 + Total Time1595951 + Disc Number1 + Disc Count1 + Track Number4 + Track Count4 + Year1999 + Date Modified2011-03-28T16:03:03Z + Date Added2011-03-28T16:30:17Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202413498 + Artwork Count1 + Persistent IDAF4F960274B3B475 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Gidon%20Kremer/Arvo%20Pa%CC%88rt_%20Tabula%20Rasa/04%20Tabula%20Rasa.mp3 + File Folder Count4 + Library Folder Count1 + + 8304 + + Track ID8304 + NameDance Me To The End Of Love + ArtistMadeleine Peyroux + ComposerLeonard Cohen + AlbumCareless Love + GenrePop + KindAAC audio file + Size3878645 + Total Time239674 + Disc Number1 + Disc Count1 + Track Number1 + Track Count12 + Year2004 + Date Modified2008-10-05T13:31:02Z + Date Added2011-05-31T15:40:06Z + Bit Rate128 + Sample Rate44100 + Play Count2 + Play Date3430070775 + Play Date UTC2012-09-09T15:56:15Z + Normalization2676 + Artwork Count1 + Persistent IDFA617C15C8C3314A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Madeleine%20Peyroux/Careless%20Love/01%20Dance%20Me%20To%20The%20End%20Of%20Love.m4a + File Folder Count4 + Library Folder Count1 + + 8306 + + Track ID8306 + NameDon't Wait Too Long + ArtistMadeleine Peyroux + ComposerMadeleine Peyroux, Jesse Harris, Larry Klein + AlbumCareless Love + GenrePop + KindAAC audio file + Size3141994 + Total Time193978 + Disc Number1 + Disc Count1 + Track Number2 + Track Count12 + Year2004 + Date Modified2006-06-22T18:07:34Z + Date Added2011-05-31T15:40:07Z + Bit Rate128 + Sample Rate44100 + Play Count1 + Play Date3430070969 + Play Date UTC2012-09-09T15:59:29Z + Normalization2120 + Artwork Count1 + Persistent IDE605AC56CE796F52 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Madeleine%20Peyroux/Careless%20Love/02%20Don't%20Wait%20Too%20Long.m4a + File Folder Count4 + Library Folder Count1 + + 8308 + + Track ID8308 + NameDon't Cry Baby + ArtistMadeleine Peyroux + ComposerS. Bernie, J. Johnson, S. Unger + AlbumCareless Love + GenrePop + KindAAC audio file + Size3250268 + Total Time200386 + Disc Number1 + Disc Count1 + Track Number3 + Track Count12 + Year2004 + Date Modified2006-06-22T18:07:34Z + Date Added2011-05-31T15:40:07Z + Bit Rate128 + Sample Rate44100 + Normalization2877 + Artwork Count1 + Persistent ID073A66EAE1830D8F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Madeleine%20Peyroux/Careless%20Love/03%20Don't%20Cry%20Baby.m4a + File Folder Count4 + Library Folder Count1 + + 8310 + + Track ID8310 + NameYou're Gonna Make Me Lonesome When You Go + ArtistMadeleine Peyroux + ComposerBob Dylan + AlbumCareless Love + GenrePop + KindAAC audio file + Size3396710 + Total Time209930 + Disc Number1 + Disc Count1 + Track Number4 + Track Count12 + Year2004 + Date Modified2008-10-05T13:31:20Z + Date Added2011-05-31T15:40:07Z + Bit Rate128 + Sample Rate44100 + Play Count1 + Play Date3389724277 + Play Date UTC2011-05-31T16:34:37Z + Normalization2802 + Artwork Count1 + Persistent IDE609931BE75B63E9 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Madeleine%20Peyroux/Careless%20Love/04%20You're%20Gonna%20Make%20Me%20Lonesome%20When%20You%20Go.m4a + File Folder Count4 + Library Folder Count1 + + 8312 + + Track ID8312 + NameBetween The Bars + ArtistMadeleine Peyroux + ComposerSteven Paul Smith + AlbumCareless Love + GenrePop + KindAAC audio file + Size3661698 + Total Time227020 + Disc Number1 + Disc Count1 + Track Number5 + Track Count12 + Year2004 + Date Modified2006-06-22T18:07:36Z + Date Added2011-05-31T15:40:07Z + Bit Rate128 + Sample Rate44100 + Normalization2027 + Artwork Count1 + Persistent ID6DE8D7263AB2927E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Madeleine%20Peyroux/Careless%20Love/05%20Between%20The%20Bars.m4a + File Folder Count4 + Library Folder Count1 + + 8314 + + Track ID8314 + NameNo More + ArtistMadeleine Peyroux + ComposerSalvador Camarata, Bob Russell + AlbumCareless Love + GenrePop + KindAAC audio file + Size3488521 + Total Time215340 + Disc Number1 + Disc Count1 + Track Number6 + Track Count12 + Year2004 + Date Modified2006-06-22T18:07:36Z + Date Added2011-05-31T15:40:07Z + Bit Rate128 + Sample Rate44100 + Normalization1843 + Artwork Count1 + Persistent ID17A3122752EA3882 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Madeleine%20Peyroux/Careless%20Love/06%20No%20More.m4a + File Folder Count4 + Library Folder Count1 + + 8316 + + Track ID8316 + NameLonesome Road + ArtistMadeleine Peyroux + ComposerGene Austin, Nathaniel Shilkret + AlbumCareless Love + GenrePop + KindAAC audio file + Size3139112 + Total Time193861 + Disc Number1 + Disc Count1 + Track Number7 + Track Count12 + Year2004 + Date Modified2006-06-22T18:07:36Z + Date Added2011-05-31T15:40:07Z + Bit Rate128 + Sample Rate44100 + Normalization2705 + Artwork Count1 + Persistent ID76A680BCFB000F0B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Madeleine%20Peyroux/Careless%20Love/07%20Lonesome%20Road.m4a + File Folder Count4 + Library Folder Count1 + + 8318 + + Track ID8318 + NameJ'ai Deux Amours + ArtistMadeleine Peyroux + ComposerVincent Scotto, Georges Koger, Henri Varna + AlbumCareless Love + GenrePop + KindAAC audio file + Size2894054 + Total Time178165 + Disc Number1 + Disc Count1 + Track Number8 + Track Count12 + Year2004 + Date Modified2006-06-22T18:07:36Z + Date Added2011-05-31T15:40:07Z + Bit Rate128 + Sample Rate44100 + Play Count1 + Play Date3389724067 + Play Date UTC2011-05-31T16:31:07Z + Normalization2872 + Artwork Count1 + Persistent ID442E382B8C1ED1E8 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Madeleine%20Peyroux/Careless%20Love/08%20J'ai%20Deux%20Amours.m4a + File Folder Count4 + Library Folder Count1 + + 8320 + + Track ID8320 + NameWeary Blues + ArtistMadeleine Peyroux + ComposerHank Williams + AlbumCareless Love + GenrePop + KindAAC audio file + Size3608648 + Total Time222701 + Disc Number1 + Disc Count1 + Track Number9 + Track Count12 + Year2004 + Date Modified2006-06-22T18:07:38Z + Date Added2011-05-31T15:40:07Z + Bit Rate128 + Sample Rate44100 + Normalization2295 + Artwork Count1 + Persistent ID4BB58E0808DD265B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Madeleine%20Peyroux/Careless%20Love/09%20Weary%20Blues.m4a + File Folder Count4 + Library Folder Count1 + + 8322 + + Track ID8322 + NameI'll Look Around + ArtistMadeleine Peyroux + ComposerGeorge Cory, Douglas Cross + AlbumCareless Love + GenrePop + KindAAC audio file + Size4699774 + Total Time290689 + Disc Number1 + Disc Count1 + Track Number10 + Track Count12 + Year2004 + Date Modified2006-06-22T18:07:38Z + Date Added2011-05-31T15:40:07Z + Bit Rate128 + Sample Rate44100 + Normalization1771 + Artwork Count1 + Persistent ID85699062A43618E6 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Madeleine%20Peyroux/Careless%20Love/10%20I'll%20Look%20Around.m4a + File Folder Count4 + Library Folder Count1 + + 8324 + + Track ID8324 + NameCareless Love + ArtistMadeleine Peyroux + ComposerWilliam C. Handy, Martha Koening, Spencer Williams + AlbumCareless Love + GenrePop + KindAAC audio file + Size3780589 + Total Time233823 + Disc Number1 + Disc Count1 + Track Number11 + Track Count12 + Year2004 + Date Modified2006-06-22T18:07:38Z + Date Added2011-05-31T15:40:07Z + Bit Rate128 + Sample Rate44100 + Normalization2443 + Artwork Count1 + Persistent ID23CE26B638766118 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Madeleine%20Peyroux/Careless%20Love/11%20Careless%20Love.m4a + File Folder Count4 + Library Folder Count1 + + 8326 + + Track ID8326 + NameThis Is Heaven To Me + ArtistMadeleine Peyroux + ComposerFrank Reardon, Ernest Schweikert, Theodore Presser + AlbumCareless Love + GenrePop + KindAAC audio file + Size3162490 + Total Time191539 + Disc Number1 + Disc Count1 + Track Number12 + Track Count12 + Year2004 + Date Modified2006-06-22T18:07:40Z + Date Added2011-05-31T15:40:07Z + Bit Rate128 + Sample Rate44100 + Normalization2731 + Artwork Count1 + Persistent ID78D60C4A7685386F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Madeleine%20Peyroux/Careless%20Love/12%20This%20Is%20Heaven%20To%20Me.m4a + File Folder Count4 + Library Folder Count1 + + 8330 + + Track ID8330 + NameLet's Call The Whole Thing Off + ArtistElla Fitzgerald + Album ArtistElla Fitzgerald + ComposerGeorge Gershwin + AlbumThe Best Of Ella Fitzgerald And Louis Armstrong On Verve + GenreJazz + KindMPEG audio file + Size8390433 + Total Time254380 + Disc Number1 + Disc Count1 + Track Number1 + Track Count15 + Year1997 + Date Modified2011-06-04T01:10:55Z + Date Added2011-06-04T01:28:16Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202661676 + Play Count2 + Play Date3390625113 + Play Date UTC2011-06-11T02:48:33Z + Artwork Count1 + Sort AlbumBest Of Ella Fitzgerald And Louis Armstrong On Verve + Persistent IDBFFCE47DFF7D72A9 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ella%20Fitzgerald/The%20Best%20Of%20Ella%20Fitzgerald%20And%20Louis%20Armstrong%20On%20Verve/01%20-%20Let's%20Call%20The%20Whole%20Thing%20Off.mp3 + File Folder Count4 + Library Folder Count1 + + 8332 + + Track ID8332 + NameLove Is Here To Stay + ArtistElla Fitzgerald + Album ArtistElla Fitzgerald + ComposerIra Gershwin + AlbumThe Best Of Ella Fitzgerald And Louis Armstrong On Verve + GenreJazz + KindMPEG audio file + Size7944863 + Total Time240457 + Disc Number1 + Disc Count1 + Track Number2 + Track Count15 + Year1997 + Date Modified2011-06-04T01:07:35Z + Date Added2011-06-04T01:28:16Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202661677 + Play Count2 + Play Date3390625353 + Play Date UTC2011-06-11T02:52:33Z + Artwork Count1 + Sort AlbumBest Of Ella Fitzgerald And Louis Armstrong On Verve + Persistent ID953735397764CFE0 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ella%20Fitzgerald/The%20Best%20Of%20Ella%20Fitzgerald%20And%20Louis%20Armstrong%20On%20Verve/02%20-%20Love%20Is%20Here%20To%20Stay.mp3 + File Folder Count4 + Library Folder Count1 + + 8334 + + Track ID8334 + NameThe Nearness Of You + ArtistElla Fitzgerald + Album ArtistElla Fitzgerald + ComposerNed Washington + AlbumThe Best Of Ella Fitzgerald And Louis Armstrong On Verve + GenreJazz + KindMPEG audio file + Size11211634 + Total Time342543 + Disc Number1 + Disc Count1 + Track Number3 + Track Count15 + Year1997 + Date Modified2011-06-04T01:14:34Z + Date Added2011-06-04T01:28:16Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202661678 + Play Count2 + Play Date3428047627 + Play Date UTC2012-08-17T05:57:07Z + Artwork Count1 + Sort AlbumBest Of Ella Fitzgerald And Louis Armstrong On Verve + Sort NameNearness Of You + Persistent ID63C040F0CE1EC9CA + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ella%20Fitzgerald/The%20Best%20Of%20Ella%20Fitzgerald%20And%20Louis%20Armstrong%20On%20Verve/03%20The%20Nearness%20Of%20You.mp3 + File Folder Count4 + Library Folder Count1 + + 8336 + + Track ID8336 + NameStars Fell On Alabama + ArtistElla Fitzgerald + Album ArtistElla Fitzgerald + ComposerFrank S. Perkins + AlbumThe Best Of Ella Fitzgerald And Louis Armstrong On Verve + GenreJazz + KindMPEG audio file + Size7131524 + Total Time215040 + Disc Number1 + Disc Count1 + Track Number4 + Track Count15 + Year1997 + Date Modified2011-06-04T01:03:24Z + Date Added2011-06-04T01:28:16Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202661679 + Artwork Count1 + Sort AlbumBest Of Ella Fitzgerald And Louis Armstrong On Verve + Persistent IDFE69D34AFD2C2205 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ella%20Fitzgerald/The%20Best%20Of%20Ella%20Fitzgerald%20And%20Louis%20Armstrong%20On%20Verve/04%20Stars%20Fell%20On%20Alabama.mp3 + File Folder Count4 + Library Folder Count1 + + 8338 + + Track ID8338 + NameGee Baby Ain't I Good To You + ArtistElla Fitzgerald + Album ArtistElla Fitzgerald + ComposerDon Redman + AlbumThe Best Of Ella Fitzgerald And Louis Armstrong On Verve + GenreJazz + KindMPEG audio file + Size8370357 + Total Time253753 + Disc Number1 + Disc Count1 + Track Number5 + Track Count15 + Year1997 + Date Modified2011-06-04T01:06:56Z + Date Added2011-06-04T01:28:16Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202661680 + Artwork Count1 + Sort AlbumBest Of Ella Fitzgerald And Louis Armstrong On Verve + Persistent ID2024E3CF0A313536 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ella%20Fitzgerald/The%20Best%20Of%20Ella%20Fitzgerald%20And%20Louis%20Armstrong%20On%20Verve/05%20Gee%20Baby%20Ain't%20I%20Good%20To%20You.mp3 + File Folder Count4 + Library Folder Count1 + + 8340 + + Track ID8340 + NameThey Can't Take That Away From Me + ArtistElla Fitzgerald + Album ArtistElla Fitzgerald + ComposerIra Gershwin + AlbumThe Best Of Ella Fitzgerald And Louis Armstrong On Verve + GenreJazz + KindMPEG audio file + Size9218828 + Total Time280267 + Disc Number1 + Disc Count1 + Track Number6 + Track Count15 + Year1997 + Date Modified2011-06-04T01:04:13Z + Date Added2011-06-04T01:28:16Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202661681 + Artwork Count1 + Sort AlbumBest Of Ella Fitzgerald And Louis Armstrong On Verve + Persistent ID6D97E30C20054630 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ella%20Fitzgerald/The%20Best%20Of%20Ella%20Fitzgerald%20And%20Louis%20Armstrong%20On%20Verve/06%20They%20Can't%20Take%20That%20Away%20From%20Me.mp3 + File Folder Count4 + Library Folder Count1 + + 8342 + + Track ID8342 + NameAutumn In New York + ArtistElla Fitzgerald + Album ArtistElla Fitzgerald + ComposerVernon Duke + AlbumThe Best Of Ella Fitzgerald And Louis Armstrong On Verve + GenreJazz + KindMPEG audio file + Size11747449 + Total Time359288 + Disc Number1 + Disc Count1 + Track Number7 + Track Count15 + Year1997 + Date Modified2011-06-04T01:06:12Z + Date Added2011-06-04T01:28:16Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202661682 + Artwork Count1 + Sort AlbumBest Of Ella Fitzgerald And Louis Armstrong On Verve + Persistent IDE853B27159959EC3 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ella%20Fitzgerald/The%20Best%20Of%20Ella%20Fitzgerald%20And%20Louis%20Armstrong%20On%20Verve/07%20Autumn%20In%20New%20York.mp3 + File Folder Count4 + Library Folder Count1 + + 8344 + + Track ID8344 + NameSummertime + ArtistLouis Armstrong + Album ArtistElla Fitzgerald + ComposerDubose Heyward + AlbumThe Best Of Ella Fitzgerald And Louis Armstrong On Verve + GenreJazz + KindMPEG audio file + Size9905103 + Total Time301714 + Disc Number1 + Disc Count1 + Track Number8 + Track Count15 + Year1997 + Date Modified2011-06-04T01:08:24Z + Date Added2011-06-04T01:28:17Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202661683 + Artwork Count1 + Sort AlbumBest Of Ella Fitzgerald And Louis Armstrong On Verve + Persistent ID5963CBA69693B93F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ella%20Fitzgerald/The%20Best%20Of%20Ella%20Fitzgerald%20And%20Louis%20Armstrong%20On%20Verve/08%20Summertime.mp3 + File Folder Count4 + Library Folder Count1 + + 8346 + + Track ID8346 + NameTenderly + ArtistElla Fitzgerald + Album ArtistElla Fitzgerald + ComposerJack Lawrence + AlbumThe Best Of Ella Fitzgerald And Louis Armstrong On Verve + GenreJazz + KindMPEG audio file + Size10144978 + Total Time309211 + Disc Number1 + Disc Count1 + Track Number9 + Track Count15 + Year1997 + Date Modified2011-06-04T01:10:04Z + Date Added2011-06-04T01:28:17Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202661684 + Artwork Count1 + Sort AlbumBest Of Ella Fitzgerald And Louis Armstrong On Verve + Persistent IDC1CACF4F357F00AD + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ella%20Fitzgerald/The%20Best%20Of%20Ella%20Fitzgerald%20And%20Louis%20Armstrong%20On%20Verve/09%20Tenderly.mp3 + File Folder Count4 + Library Folder Count1 + + 8348 + + Track ID8348 + NameStompin' At The Savoy + ArtistElla Fitzgerald + Album ArtistElla Fitzgerald + ComposerBenny Goodman + AlbumThe Best Of Ella Fitzgerald And Louis Armstrong On Verve + GenreJazz + KindMPEG audio file + Size10316369 + Total Time314566 + Disc Number1 + Disc Count1 + Track Number10 + Track Count15 + Year1997 + Date Modified2011-06-04T01:11:47Z + Date Added2011-06-04T01:28:17Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202661685 + Artwork Count1 + Sort AlbumBest Of Ella Fitzgerald And Louis Armstrong On Verve + Persistent IDFC49A37A51AE029C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ella%20Fitzgerald/The%20Best%20Of%20Ella%20Fitzgerald%20And%20Louis%20Armstrong%20On%20Verve/10%20Stompin'%20At%20The%20Savoy.mp3 + File Folder Count4 + Library Folder Count1 + + 8350 + + Track ID8350 + NameUnder A Blanket Of Blue + ArtistElla Fitzgerald + Album ArtistElla Fitzgerald + ComposerAl J. Neiburg + AlbumThe Best Of Ella Fitzgerald And Louis Armstrong On Verve + GenreJazz + KindMPEG audio file + Size8533359 + Total Time258847 + Disc Number1 + Disc Count1 + Track Number11 + Track Count15 + Year1997 + Date Modified2011-06-04T01:09:06Z + Date Added2011-06-04T01:28:17Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202661686 + Artwork Count1 + Sort AlbumBest Of Ella Fitzgerald And Louis Armstrong On Verve + Persistent IDA408D21226CDE190 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ella%20Fitzgerald/The%20Best%20Of%20Ella%20Fitzgerald%20And%20Louis%20Armstrong%20On%20Verve/11%20Under%20A%20Blanket%20Of%20Blue.mp3 + File Folder Count4 + Library Folder Count1 + + 8352 + + Track ID8352 + NameI Wants To Stay Here + ArtistLouis Armstrong + Album ArtistElla Fitzgerald + ComposerDubose Heyward + AlbumThe Best Of Ella Fitzgerald And Louis Armstrong On Verve + GenreJazz + KindMPEG audio file + Size9147755 + Total Time278047 + Disc Number1 + Disc Count1 + Track Number12 + Track Count15 + Year1997 + Date Modified2011-06-04T01:12:42Z + Date Added2011-06-04T01:28:17Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202661687 + Artwork Count1 + Sort AlbumBest Of Ella Fitzgerald And Louis Armstrong On Verve + Persistent ID18CCD78F4E21749A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ella%20Fitzgerald/The%20Best%20Of%20Ella%20Fitzgerald%20And%20Louis%20Armstrong%20On%20Verve/12%20I%20Wants%20To%20Stay%20Here.mp3 + File Folder Count4 + Library Folder Count1 + + 8354 + + Track ID8354 + NameI've Got My Love To Keep Me Warm + ArtistElla Fitzgerald + Album ArtistElla Fitzgerald + ComposerIrving Berlin + AlbumThe Best Of Ella Fitzgerald And Louis Armstrong On Verve + GenreJazz + KindMPEG audio file + Size6384231 + Total Time191686 + Disc Number1 + Disc Count1 + Track Number13 + Track Count15 + Year1997 + Date Modified2011-06-04T01:02:48Z + Date Added2011-06-04T01:28:17Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202661688 + Artwork Count1 + Sort AlbumBest Of Ella Fitzgerald And Louis Armstrong On Verve + Persistent ID235AC734223B45A3 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ella%20Fitzgerald/The%20Best%20Of%20Ella%20Fitzgerald%20And%20Louis%20Armstrong%20On%20Verve/13%20I've%20Got%20My%20Love%20To%20Keep%20Me%20Warm.mp3 + File Folder Count4 + Library Folder Count1 + + 8356 + + Track ID8356 + NameThere's A Boat Dat's Leavin' Soon For New York + ArtistLouis Armstrong + Album ArtistElla Fitzgerald + ComposerDubose Heyward + AlbumThe Best Of Ella Fitzgerald And Louis Armstrong On Verve + GenreJazz + KindMPEG audio file + Size9687002 + Total Time294896 + Disc Number1 + Disc Count1 + Track Number14 + Track Count15 + Year1997 + Date Modified2011-06-04T01:13:36Z + Date Added2011-06-04T01:28:17Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202661689 + Artwork Count1 + Sort AlbumBest Of Ella Fitzgerald And Louis Armstrong On Verve + Persistent ID50A7975D048FE107 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ella%20Fitzgerald/The%20Best%20Of%20Ella%20Fitzgerald%20And%20Louis%20Armstrong%20On%20Verve/14%20There's%20A%20Boat%20Dat's%20Leavin'%20Soon%20For%20New%20York.mp3 + File Folder Count4 + Library Folder Count1 + + 8358 + + Track ID8358 + NameYou Won't Be Satisfied (Until You Break My Heart) + ArtistElla Fitzgerald + Album ArtistElla Fitzgerald + ComposerTeddy Powell + AlbumThe Best Of Ella Fitzgerald And Louis Armstrong On Verve + GenreJazz + KindMPEG audio file + Size6311538 + Total Time189413 + Disc Number1 + Disc Count1 + Track Number15 + Track Count15 + Year1997 + Date Modified2011-06-04T01:05:03Z + Date Added2011-06-04T01:28:17Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202661690 + Artwork Count1 + Sort AlbumBest Of Ella Fitzgerald And Louis Armstrong On Verve + Persistent IDDF58ABA490766695 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ella%20Fitzgerald/The%20Best%20Of%20Ella%20Fitzgerald%20And%20Louis%20Armstrong%20On%20Verve/15%20You%20Won't%20Be%20Satisfied%20(Until%20You%20Break%20My%20Heart).mp3 + File Folder Count4 + Library Folder Count1 + + 8360 + + Track ID8360 + NameA Day Without Rain + ArtistEnya + Album ArtistEnya + AlbumA Day Without Rain [with booklet artwork] + GenrePop + KindMPEG audio file + Size5325782 + Total Time157544 + Disc Number1 + Disc Count1 + Track Number1 + Track Count12 + Year2005 + Date Modified2011-06-04T01:21:04Z + Date Added2011-06-04T01:28:17Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 212707111 + Play Count5 + Play Date3483119647 + Play Date UTC2014-05-16T15:44:07Z + Artwork Count1 + Sort AlbumDay Without Rain [with booklet artwork] + Sort NameDay Without Rain + Persistent IDDAD2EDD91EE8F1D0 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enya/A%20Day%20Without%20Rain%20%5Bwith%20booklet%20artwork%5D/01%20A%20Day%20Without%20Rain.mp3 + File Folder Count4 + Library Folder Count1 + + 8362 + + Track ID8362 + NameWild Child + ArtistEnya + Album ArtistEnya + AlbumA Day Without Rain [with booklet artwork] + GenrePop + KindMPEG audio file + Size7539278 + Total Time226716 + Disc Number1 + Disc Count1 + Track Number2 + Track Count12 + Year2005 + Date Modified2011-06-04T01:18:07Z + Date Added2011-06-04T01:28:18Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 212707112 + Play Count3 + Play Date3431278862 + Play Date UTC2012-09-23T15:31:02Z + Skip Count1 + Skip Date2014-05-16T15:44:20Z + Artwork Count1 + Sort AlbumDay Without Rain [with booklet artwork] + Persistent ID128296CAEAF38479 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enya/A%20Day%20Without%20Rain%20%5Bwith%20booklet%20artwork%5D/02%20Wild%20Child.mp3 + File Folder Count4 + Library Folder Count1 + + 8364 + + Track ID8364 + NameOnly Time (Original Version) + ArtistEnya + Album ArtistEnya + AlbumA Day Without Rain [with booklet artwork] + GenrePop + KindMPEG audio file + Size7204111 + Total Time216241 + Disc Number1 + Disc Count1 + Track Number3 + Track Count12 + Year2005 + Date Modified2011-06-04T01:15:12Z + Date Added2011-06-04T01:28:18Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 212707113 + Play Count4 + Play Date3431279277 + Play Date UTC2012-09-23T15:37:57Z + Artwork Count1 + Sort AlbumDay Without Rain [with booklet artwork] + Persistent ID5A87766968322904 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enya/A%20Day%20Without%20Rain%20%5Bwith%20booklet%20artwork%5D/03%20Only%20Time%20(Original%20Version).mp3 + File Folder Count4 + Library Folder Count1 + + 8366 + + Track ID8366 + NameTempus Vernum + ArtistEnya + Album ArtistEnya + ComposerRyan + AlbumA Day Without Rain [with booklet artwork] + GenrePop + KindMPEG audio file + Size4907821 + Total Time144483 + Disc Number1 + Disc Count1 + Track Number4 + Track Count12 + Year2005 + Date Modified2011-06-04T01:17:02Z + Date Added2011-06-04T01:28:18Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 212707114 + Play Count1 + Play Date3390022549 + Play Date UTC2011-06-04T03:25:49Z + Artwork Count1 + Sort AlbumDay Without Rain [with booklet artwork] + Persistent ID6C869A99B624E834 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enya/A%20Day%20Without%20Rain%20%5Bwith%20booklet%20artwork%5D/04%20Tempus%20Vernum.mp3 + File Folder Count4 + Library Folder Count1 + + 8368 + + Track ID8368 + NameDeora Ar Mo Chroí + ArtistEnya + Album ArtistEnya + ComposerEnya + AlbumA Day Without Rain [with booklet artwork] + GenrePop + KindMPEG audio file + Size5645109 + Total Time167523 + Disc Number1 + Disc Count1 + Track Number5 + Track Count12 + Year2005 + Date Modified2011-06-04T01:17:30Z + Date Added2011-06-04T01:28:18Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 212707115 + Play Count1 + Play Date3390022717 + Play Date UTC2011-06-04T03:28:37Z + Artwork Count1 + Sort AlbumDay Without Rain [with booklet artwork] + Persistent IDC0E91B5A576BD5C6 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enya/A%20Day%20Without%20Rain%20%5Bwith%20booklet%20artwork%5D/05%20Deora%20Ar%20Mo%20Chroi%CC%81.mp3 + File Folder Count4 + Library Folder Count1 + + 8370 + + Track ID8370 + NameFlora's Secret + ArtistEnya + Album ArtistEnya + AlbumA Day Without Rain [with booklet artwork] + GenrePop + KindMPEG audio file + Size8132788 + Total Time245263 + Disc Number1 + Disc Count1 + Track Number6 + Track Count12 + Year2005 + Date Modified2011-06-04T01:20:38Z + Date Added2011-06-04T01:28:18Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 212707116 + Play Count1 + Play Date3390022962 + Play Date UTC2011-06-04T03:32:42Z + Artwork Count1 + Sort AlbumDay Without Rain [with booklet artwork] + Persistent ID42A5A94D6DB5EF58 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enya/A%20Day%20Without%20Rain%20%5Bwith%20booklet%20artwork%5D/06%20Flora's%20Secret.mp3 + File Folder Count4 + Library Folder Count1 + + 8372 + + Track ID8372 + NameFallen Embers + ArtistEnya + Album ArtistEnya + ComposerEnya + AlbumA Day Without Rain [with booklet artwork] + GenrePop + KindMPEG audio file + Size5048255 + Total Time148871 + Disc Number1 + Disc Count1 + Track Number7 + Track Count12 + Year2005 + Date Modified2011-06-04T01:19:59Z + Date Added2011-06-04T01:28:18Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 212707117 + Play Count1 + Play Date3390023110 + Play Date UTC2011-06-04T03:35:10Z + Artwork Count1 + Sort AlbumDay Without Rain [with booklet artwork] + Persistent ID4264F7FBA2DD5F14 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enya/A%20Day%20Without%20Rain%20%5Bwith%20booklet%20artwork%5D/07%20Fallen%20Embers.mp3 + File Folder Count4 + Library Folder Count1 + + 8374 + + Track ID8374 + NameSilver Inches + ArtistEnya + Album ArtistEnya + ComposerEnya + AlbumA Day Without Rain [with booklet artwork] + GenrePop + KindMPEG audio file + Size3419886 + Total Time97985 + Disc Number1 + Disc Count1 + Track Number8 + Track Count12 + Year2005 + Date Modified2011-06-04T01:18:55Z + Date Added2011-06-04T01:28:18Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 212707118 + Play Count1 + Play Date3390023208 + Play Date UTC2011-06-04T03:36:48Z + Artwork Count1 + Sort AlbumDay Without Rain [with booklet artwork] + Persistent ID8B8B723D73A76D74 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enya/A%20Day%20Without%20Rain%20%5Bwith%20booklet%20artwork%5D/08%20Silver%20Inches.mp3 + File Folder Count4 + Library Folder Count1 + + 8376 + + Track ID8376 + NamePilgrim + ArtistEnya + Album ArtistEnya + ComposerRyan + AlbumA Day Without Rain [with booklet artwork] + GenrePop + KindMPEG audio file + Size6453422 + Total Time192783 + Disc Number1 + Disc Count1 + Track Number9 + Track Count12 + Year2005 + Date Modified2011-06-04T01:15:47Z + Date Added2011-06-04T01:28:18Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 212707119 + Artwork Count1 + Sort AlbumDay Without Rain [with booklet artwork] + Persistent IDE1074D13AB9B039D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enya/A%20Day%20Without%20Rain%20%5Bwith%20booklet%20artwork%5D/09%20Pilgrim.mp3 + File Folder Count4 + Library Folder Count1 + + 8378 + + Track ID8378 + NameOne By One + ArtistEnya + Album ArtistEnya + ComposerEnya + AlbumA Day Without Rain [with booklet artwork] + GenrePop + KindMPEG audio file + Size7738237 + Total Time232933 + Disc Number1 + Disc Count1 + Track Number10 + Track Count12 + Year2005 + Date Modified2011-06-04T01:19:33Z + Date Added2011-06-04T01:28:18Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 212707120 + Artwork Count1 + Sort AlbumDay Without Rain [with booklet artwork] + Persistent ID903A79218218C613 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enya/A%20Day%20Without%20Rain%20%5Bwith%20booklet%20artwork%5D/10%20One%20By%20One.mp3 + File Folder Count4 + Library Folder Count1 + + 8380 + + Track ID8380 + NameThe First Of Autumn + ArtistEnya + Album ArtistEnya + ComposerNicky Ryan + AlbumA Day Without Rain [with booklet artwork] + GenrePop + KindMPEG audio file + Size6338103 + Total Time189178 + Disc Number1 + Disc Count1 + Track Number11 + Track Count12 + Year2005 + Date Modified2011-06-04T01:18:38Z + Date Added2011-06-04T01:28:18Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 212707121 + Play Count1 + Play Date3390498977 + Play Date UTC2011-06-09T15:46:17Z + Artwork Count1 + Sort AlbumDay Without Rain [with booklet artwork] + Sort NameFirst Of Autumn + Persistent IDF6A282DA07C9DD22 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enya/A%20Day%20Without%20Rain%20%5Bwith%20booklet%20artwork%5D/11%20The%20First%20Of%20Autumn.mp3 + File Folder Count4 + Library Folder Count1 + + 8382 + + Track ID8382 + NameLazy Days + ArtistEnya + Album ArtistEnya + ComposerEnya + AlbumA Day Without Rain [with booklet artwork] + GenrePop + KindMPEG audio file + Size7368759 + Total Time221387 + Disc Number1 + Disc Count1 + Track Number12 + Track Count12 + Year2005 + Date Modified2011-06-04T01:16:32Z + Date Added2011-06-04T01:28:18Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 212707122 + Artwork Count1 + Sort AlbumDay Without Rain [with booklet artwork] + Persistent IDF33BF6E657A0091E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enya/A%20Day%20Without%20Rain%20%5Bwith%20booklet%20artwork%5D/12%20Lazy%20Days.mp3 + File Folder Count4 + Library Folder Count1 + + 8384 + + Track ID8384 + NameCrouching Tiger, Hidden Dragon + ArtistTan Dun with Yo-Yo Ma + Album ArtistTan Dun, Yo-Yo Ma + ComposerTAN DUN (b. 1957) + AlbumCrouching Tiger, Hidden Dragon - Omps + GenreSoundtracks + KindMPEG audio file + Size6405934 + Total Time206419 + Disc Number1 + Disc Count1 + Track Number1 + Track Count15 + Year2000 + Date Modified2011-06-04T01:29:33Z + Date Added2011-06-04T01:30:25Z + Bit Rate245 + Sample Rate44100 + CommentsAmazon.com Song ID: 203911836 + Play Count1 + Play Date3390061486 + Play Date UTC2011-06-04T14:14:46Z + Artwork Count1 + Persistent ID6C7B7C5DD4235793 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tan%20Dun,%20Yo-Yo%20Ma/Crouching%20Tiger,%20Hidden%20Dragon%20-%20Omps/01%20Crouching%20Tiger,%20Hidden%20Dragon.mp3 + File Folder Count4 + Library Folder Count1 + + 8386 + + Track ID8386 + NameThe Eternal Vow from Crouching Tiger, Hidden Dragon + ArtistYo-Yo Ma;Tan Dun + Album ArtistTan Dun, Yo-Yo Ma + ComposerTAN DUN (b. 1957) + AlbumCrouching Tiger, Hidden Dragon - Omps + GenreSoundtracks + KindMPEG audio file + Size5513436 + Total Time178233 + Disc Number1 + Disc Count1 + Track Number2 + Track Count15 + Year2000 + Date Modified2011-06-04T01:23:44Z + Date Added2011-06-04T01:30:25Z + Bit Rate244 + Sample Rate44100 + CommentsAmazon.com Song ID: 203911847 + Play Count1 + Play Date3390061664 + Play Date UTC2011-06-04T14:17:44Z + Artwork Count1 + Sort NameEternal Vow from Crouching Tiger, Hidden Dragon + Persistent ID47E3758D38349947 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tan%20Dun,%20Yo-Yo%20Ma/Crouching%20Tiger,%20Hidden%20Dragon%20-%20Omps/02%20The%20Eternal%20Vow%20from%20Crouching%20Tiger,%20Hidden%20Dragon.mp3 + File Folder Count4 + Library Folder Count1 + + 8388 + + Track ID8388 + NameA Wedding Interrupted (Instrumental) + ArtistYo-Yo Ma;Tan Dun + Album ArtistTan Dun, Yo-Yo Ma + ComposerTAN DUN (b. 1957) + AlbumCrouching Tiger, Hidden Dragon - Omps + GenreSoundtracks + KindMPEG audio file + Size4334737 + Total Time137273 + Disc Number1 + Disc Count1 + Track Number3 + Track Count15 + Year2000 + Date Modified2011-06-04T01:22:03Z + Date Added2011-06-04T01:30:25Z + Bit Rate248 + Sample Rate44100 + CommentsAmazon.com Song ID: 203911851 + Play Count1 + Play Date3390061801 + Play Date UTC2011-06-04T14:20:01Z + Artwork Count1 + Sort NameWedding Interrupted (Instrumental) + Persistent IDE4B58E75185E9B57 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tan%20Dun,%20Yo-Yo%20Ma/Crouching%20Tiger,%20Hidden%20Dragon%20-%20Omps/03%20A%20Wedding%20Interrupted%20(Instrumental).mp3 + File Folder Count4 + Library Folder Count1 + + 8390 + + Track ID8390 + NameNight Fight (Instrumental) + ArtistYo-Yo Ma;Tan Dun + Album ArtistTan Dun, Yo-Yo Ma + ComposerTAN DUN (b. 1957) + AlbumCrouching Tiger, Hidden Dragon - Omps + GenreSoundtracks + KindMPEG audio file + Size6131615 + Total Time189022 + Disc Number1 + Disc Count1 + Track Number4 + Track Count15 + Year2000 + Date Modified2011-06-04T01:22:35Z + Date Added2011-06-04T01:30:25Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 203911841 + Artwork Count1 + Persistent IDD9746552461FD17F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tan%20Dun,%20Yo-Yo%20Ma/Crouching%20Tiger,%20Hidden%20Dragon%20-%20Omps/04%20Night%20Fight%20(Instrumental).mp3 + File Folder Count4 + Library Folder Count1 + + 8392 + + Track ID8392 + NameSilk Road (Instrumental) + ArtistYo-Yo Ma;Tan Dun + Album ArtistTan Dun, Yo-Yo Ma + ComposerTAN DUN (b. 1957) + AlbumCrouching Tiger, Hidden Dragon - Omps + GenreSoundtracks + KindMPEG audio file + Size5815033 + Total Time190824 + Disc Number1 + Disc Count1 + Track Number5 + Track Count15 + Year2000 + Date Modified2011-06-04T01:26:44Z + Date Added2011-06-04T01:30:25Z + Bit Rate240 + Sample Rate44100 + CommentsAmazon.com Song ID: 203911840 + Artwork Count1 + Persistent ID9DE5046965C29CE1 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tan%20Dun,%20Yo-Yo%20Ma/Crouching%20Tiger,%20Hidden%20Dragon%20-%20Omps/05%20Silk%20Road%20(Instrumental).mp3 + File Folder Count4 + Library Folder Count1 + + 8394 + + Track ID8394 + NameTo the South (Instrumental) + ArtistYo-Yo Ma;Tan Dun + Album ArtistTan Dun, Yo-Yo Ma + ComposerTAN DUN (b. 1957) + AlbumCrouching Tiger, Hidden Dragon - Omps + GenreSoundtracks + KindMPEG audio file + Size4446792 + Total Time142445 + Disc Number1 + Disc Count1 + Track Number6 + Track Count15 + Year2000 + Date Modified2011-06-04T01:24:06Z + Date Added2011-06-04T01:30:25Z + Bit Rate245 + Sample Rate44100 + CommentsAmazon.com Song ID: 203911842 + Artwork Count1 + Persistent ID538DFF849DFFD10B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tan%20Dun,%20Yo-Yo%20Ma/Crouching%20Tiger,%20Hidden%20Dragon%20-%20Omps/06%20To%20the%20South%20(Instrumental).mp3 + File Folder Count4 + Library Folder Count1 + + 8396 + + Track ID8396 + NameThrough the Bamboo Forest (Instrumental) + ArtistYo-Yo Ma;Tan Dun + Album ArtistTan Dun, Yo-Yo Ma + ComposerTAN DUN (b. 1957) + AlbumCrouching Tiger, Hidden Dragon - Omps + GenreSoundtracks + KindMPEG audio file + Size8148603 + Total Time261851 + Disc Number1 + Disc Count1 + Track Number7 + Track Count15 + Year2000 + Date Modified2011-06-04T01:25:23Z + Date Added2011-06-04T01:30:25Z + Bit Rate246 + Sample Rate44100 + CommentsAmazon.com Song ID: 203911835 + Artwork Count1 + Persistent IDE5B55DBB6DB9A0B5 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tan%20Dun,%20Yo-Yo%20Ma/Crouching%20Tiger,%20Hidden%20Dragon%20-%20Omps/07%20Through%20the%20Bamboo%20Forest%20(Instrumental).mp3 + File Folder Count4 + Library Folder Count1 + + 8398 + + Track ID8398 + NameThe Encounter (Instrumental) + ArtistYo-Yo Ma;Tan Dun + Album ArtistTan Dun, Yo-Yo Ma + ComposerTAN DUN (b. 1957) + AlbumCrouching Tiger, Hidden Dragon - Omps + GenreSoundtracks + KindMPEG audio file + Size5035241 + Total Time159190 + Disc Number1 + Disc Count1 + Track Number8 + Track Count15 + Year2000 + Date Modified2011-06-04T01:24:35Z + Date Added2011-06-04T01:30:25Z + Bit Rate249 + Sample Rate44100 + CommentsAmazon.com Song ID: 203911839 + Artwork Count1 + Sort NameEncounter (Instrumental) + Persistent ID3800430BAB67E1E9 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tan%20Dun,%20Yo-Yo%20Ma/Crouching%20Tiger,%20Hidden%20Dragon%20-%20Omps/08%20The%20Encounter%20(Instrumental).mp3 + File Folder Count4 + Library Folder Count1 + + 8400 + + Track ID8400 + NameDesert Capriccio (Instrumental) + ArtistYo-Yo Ma;Tan Dun + Album ArtistTan Dun, Yo-Yo Ma + ComposerTAN DUN (b. 1957) + AlbumCrouching Tiger, Hidden Dragon - Omps + GenreSoundtracks + KindMPEG audio file + Size8701064 + Total Time274729 + Disc Number1 + Disc Count1 + Track Number9 + Track Count15 + Year2000 + Date Modified2011-06-04T01:26:12Z + Date Added2011-06-04T01:30:25Z + Bit Rate251 + Sample Rate44100 + CommentsAmazon.com Song ID: 203911850 + Artwork Count1 + Persistent IDBECE3CFC415EA1A6 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tan%20Dun,%20Yo-Yo%20Ma/Crouching%20Tiger,%20Hidden%20Dragon%20-%20Omps/09%20Desert%20Capriccio%20(Instrumental).mp3 + File Folder Count4 + Library Folder Count1 + + 8402 + + Track ID8402 + NameIn the Old Temple (Instrumental) + ArtistYo-Yo Ma;Tan Dun + Album ArtistTan Dun, Yo-Yo Ma + ComposerTAN DUN (b. 1957) + AlbumCrouching Tiger, Hidden Dragon - Omps + GenreSoundtracks + KindMPEG audio file + Size7068608 + Total Time224783 + Disc Number1 + Disc Count1 + Track Number10 + Track Count15 + Year2000 + Date Modified2011-06-04T01:29:01Z + Date Added2011-06-04T01:30:25Z + Bit Rate249 + Sample Rate44100 + CommentsAmazon.com Song ID: 203911844 + Artwork Count1 + Persistent IDE8709F34AFEADAC7 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tan%20Dun,%20Yo-Yo%20Ma/Crouching%20Tiger,%20Hidden%20Dragon%20-%20Omps/10%20In%20the%20Old%20Temple%20(Instrumental).mp3 + File Folder Count4 + Library Folder Count1 + + 8404 + + Track ID8404 + NameYearning of the Sword (Instrumental) + ArtistYo-Yo Ma;Tan Dun + Album ArtistTan Dun, Yo-Yo Ma + ComposerTAN DUN (b. 1957) + AlbumCrouching Tiger, Hidden Dragon - Omps + GenreSoundtracks + KindMPEG audio file + Size6609172 + Total Time214230 + Disc Number1 + Disc Count1 + Track Number11 + Track Count15 + Year2000 + Date Modified2011-06-04T01:28:25Z + Date Added2011-06-04T01:30:25Z + Bit Rate244 + Sample Rate44100 + CommentsAmazon.com Song ID: 203911848 + Artwork Count1 + Persistent IDE792DAFD85706105 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tan%20Dun,%20Yo-Yo%20Ma/Crouching%20Tiger,%20Hidden%20Dragon%20-%20Omps/11%20Yearning%20of%20the%20Sword%20(Instrumental).mp3 + File Folder Count4 + Library Folder Count1 + + 8406 + + Track ID8406 + NameSorrow (Instrumental) + ArtistYo-Yo Ma;Tan Dun + Album ArtistTan Dun, Yo-Yo Ma + ComposerTAN DUN (b. 1957) + AlbumCrouching Tiger, Hidden Dragon - Omps + GenreSoundtracks + KindMPEG audio file + Size7616303 + Total Time244819 + Disc Number1 + Disc Count1 + Track Number12 + Track Count15 + Year2000 + Date Modified2011-06-04T01:23:14Z + Date Added2011-06-04T01:30:25Z + Bit Rate246 + Sample Rate44100 + CommentsAmazon.com Song ID: 203911845 + Artwork Count1 + Persistent IDB00A143F53E76FF8 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tan%20Dun,%20Yo-Yo%20Ma/Crouching%20Tiger,%20Hidden%20Dragon%20-%20Omps/12%20Sorrow%20(Instrumental).mp3 + File Folder Count4 + Library Folder Count1 + + 8408 + + Track ID8408 + NameFarewell (Instrumental) + ArtistYo-Yo Ma;Tan Dun + Album ArtistTan Dun, Yo-Yo Ma + ComposerTAN DUN (b. 1957) + AlbumCrouching Tiger, Hidden Dragon - Omps + GenreSoundtracks + KindMPEG audio file + Size4618098 + Total Time148480 + Disc Number1 + Disc Count1 + Track Number13 + Track Count15 + Year2000 + Date Modified2011-06-04T01:27:50Z + Date Added2011-06-04T01:30:25Z + Bit Rate244 + Sample Rate44100 + CommentsAmazon.com Song ID: 203911837 + Artwork Count1 + Persistent ID25B5168BCAEFB308 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tan%20Dun,%20Yo-Yo%20Ma/Crouching%20Tiger,%20Hidden%20Dragon%20-%20Omps/13%20Farewell%20(Instrumental).mp3 + File Folder Count4 + Library Folder Count1 + + 8410 + + Track ID8410 + NameA Love Before Time (Voice) + ArtistYo-Yo Ma + Album ArtistTan Dun, Yo-Yo Ma + ComposerTAN DUN (b.1957) + AlbumCrouching Tiger, Hidden Dragon - Omps + GenreSoundtracks + KindMPEG audio file + Size6685518 + Total Time218853 + Disc Number1 + Disc Count1 + Track Number14 + Track Count15 + Year2000 + Date Modified2011-06-04T01:21:39Z + Date Added2011-06-04T01:30:25Z + Bit Rate241 + Sample Rate44100 + CommentsAmazon.com Song ID: 203911838 + Artwork Count1 + Sort NameLove Before Time (Voice) + Persistent ID2C787F7124CF2672 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tan%20Dun,%20Yo-Yo%20Ma/Crouching%20Tiger,%20Hidden%20Dragon%20-%20Omps/14%20A%20Love%20Before%20Time%20(Voice).mp3 + File Folder Count4 + Library Folder Count1 + + 8412 + + Track ID8412 + NameA Love Before Time (Mandarin) (Voice) + ArtistCoco Lee + Album ArtistTan Dun, Yo-Yo Ma + ComposerJorge Calandrelli + AlbumCrouching Tiger, Hidden Dragon - Omps + GenreSoundtracks + KindMPEG audio file + Size6685326 + Total Time218096 + Disc Number1 + Disc Count1 + Track Number15 + Track Count15 + Year2000 + Date Modified2011-06-04T01:27:20Z + Date Added2011-06-04T01:30:25Z + Bit Rate242 + Sample Rate44100 + CommentsAmazon.com Song ID: 203911843 + Artwork Count1 + Sort NameLove Before Time (Mandarin) (Voice) + Persistent IDE37D6258434446A7 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tan%20Dun,%20Yo-Yo%20Ma/Crouching%20Tiger,%20Hidden%20Dragon%20-%20Omps/15%20A%20Love%20Before%20Time%20(Mandarin)%20(Voice).mp3 + File Folder Count4 + Library Folder Count1 + + 8414 + + Track ID8414 + NameTea For Two + ArtistArt Tatum + Album ArtistArt Tatum + ComposerVincent Youmans + AlbumPiano Starts Here + GenreJazz + KindMPEG audio file + Size4589613 + Total Time195918 + Disc Number1 + Disc Count1 + Track Number1 + Track Count13 + Year1995 + Date Modified2011-06-07T15:01:06Z + Date Added2011-06-07T15:10:36Z + Bit Rate184 + Sample Rate44100 + CommentsAmazon.com Song ID: 203969978 + Play Count1 + Play Date3390325317 + Play Date UTC2011-06-07T15:31:57Z + Artwork Count1 + Persistent ID55CC202A5398275E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Art%20Tatum/Piano%20Starts%20Here/01%20-%20Tea%20For%20Two.mp3 + File Folder Count4 + Library Folder Count1 + + 8416 + + Track ID8416 + NameSt. Louis Blues + ArtistArt Tatum + Album ArtistArt Tatum + ComposerW.C. Handy + AlbumPiano Starts Here + GenreJazz + KindMPEG audio file + Size3616169 + Total Time158824 + Disc Number1 + Disc Count1 + Track Number2 + Track Count13 + Year1995 + Date Modified2011-06-07T15:02:45Z + Date Added2011-06-07T15:10:37Z + Bit Rate179 + Sample Rate44100 + CommentsAmazon.com Song ID: 203969981 + Play Count1 + Play Date3390325476 + Play Date UTC2011-06-07T15:34:36Z + Artwork Count1 + Persistent ID2E6B5392353CF198 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Art%20Tatum/Piano%20Starts%20Here/02%20-%20St.%20Louis%20Blues.mp3 + File Folder Count4 + Library Folder Count1 + + 8418 + + Track ID8418 + NameTiger Rag + ArtistArt Tatum + Album ArtistArt Tatum + ComposerD. James LaRocca + AlbumPiano Starts Here + GenreJazz + KindMPEG audio file + Size3271838 + Total Time141348 + Disc Number1 + Disc Count1 + Track Number3 + Track Count13 + Year1995 + Date Modified2011-06-07T15:03:57Z + Date Added2011-06-07T15:10:37Z + Bit Rate181 + Sample Rate44100 + CommentsAmazon.com Song ID: 203969993 + Play Count2 + Play Date3390892248 + Play Date UTC2011-06-14T05:00:48Z + Artwork Count1 + Persistent ID47A98A591077F0CC + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Art%20Tatum/Piano%20Starts%20Here/03%20Tiger%20Rag.mp3 + File Folder Count4 + Library Folder Count1 + + 8420 + + Track ID8420 + NameSophisticated Lady + ArtistArt Tatum + Album ArtistArt Tatum + ComposerD. Ellington + AlbumPiano Starts Here + GenreJazz + KindMPEG audio file + Size4599506 + Total Time198112 + Disc Number1 + Disc Count1 + Track Number4 + Track Count13 + Year1995 + Date Modified2011-06-07T14:57:25Z + Date Added2011-06-07T15:10:37Z + Bit Rate183 + Sample Rate44100 + CommentsAmazon.com Song ID: 203969988 + Play Count1 + Play Date3390325815 + Play Date UTC2011-06-07T15:40:15Z + Artwork Count1 + Persistent ID3DD179C9BAC171E8 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Art%20Tatum/Piano%20Starts%20Here/04%20Sophisticated%20Lady.mp3 + File Folder Count4 + Library Folder Count1 + + 8422 + + Track ID8422 + NameHow High The Moon (Live) + ArtistArt Tatum + Album ArtistArt Tatum + ComposerNancy Hamilton + AlbumPiano Starts Here + GenreJazz + KindMPEG audio file + Size3351518 + Total Time146416 + Disc Number1 + Disc Count1 + Track Number5 + Track Count13 + Year1995 + Date Modified2011-06-07T14:59:14Z + Date Added2011-06-07T15:10:38Z + Bit Rate179 + Sample Rate44100 + CommentsAmazon.com Song ID: 203969983 + Play Count1 + Play Date3390325961 + Play Date UTC2011-06-07T15:42:41Z + Artwork Count1 + Persistent IDF04CCAC27C9B9264 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Art%20Tatum/Piano%20Starts%20Here/05%20-%20How%20High%20The%20Moon%20(Live).mp3 + File Folder Count4 + Library Folder Count1 + + 8424 + + Track ID8424 + NameHumoresque + ArtistArt Tatum + Album ArtistArt Tatum + ComposerAntonin Dvorak + AlbumPiano Starts Here + GenreJazz + KindMPEG audio file + Size5228914 + Total Time229198 + Disc Number1 + Disc Count1 + Track Number6 + Track Count13 + Year1995 + Date Modified2011-06-07T14:52:21Z + Date Added2011-06-07T15:10:38Z + Bit Rate180 + Sample Rate44100 + CommentsAmazon.com Song ID: 203969990 + Play Count1 + Play Date3390326190 + Play Date UTC2011-06-07T15:46:30Z + Artwork Count1 + Persistent IDCF3F96E4C5A64737 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Art%20Tatum/Piano%20Starts%20Here/06%20-%20Humoresque.mp3 + File Folder Count4 + Library Folder Count1 + + 8426 + + Track ID8426 + NameSomeone To Watch Over Me + ArtistArt Tatum + Album ArtistArt Tatum + ComposerGeorge Gershwin + AlbumPiano Starts Here + GenreJazz + KindMPEG audio file + Size4763061 + Total Time209423 + Disc Number1 + Disc Count1 + Track Number7 + Track Count13 + Year1995 + Date Modified2011-06-07T14:45:37Z + Date Added2011-06-07T15:10:38Z + Bit Rate179 + Sample Rate44100 + CommentsAmazon.com Song ID: 203969984 + Play Count1 + Play Date3390326400 + Play Date UTC2011-06-07T15:50:00Z + Artwork Count1 + Persistent ID0532D0C2D47C2509 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Art%20Tatum/Piano%20Starts%20Here/07%20Someone%20To%20Watch%20Over%20Me.mp3 + File Folder Count4 + Library Folder Count1 + + 8428 + + Track ID8428 + NameYesterdays + ArtistArt Tatum + Album ArtistArt Tatum + ComposerO. Harbach + AlbumPiano Starts Here + GenreJazz + KindMPEG audio file + Size4675281 + Total Time205008 + Disc Number1 + Disc Count1 + Track Number8 + Track Count13 + Year1995 + Date Modified2011-06-07T14:54:20Z + Date Added2011-06-07T15:10:38Z + Bit Rate180 + Sample Rate44100 + CommentsAmazon.com Song ID: 203969991 + Play Count1 + Play Date3390326605 + Play Date UTC2011-06-07T15:53:25Z + Artwork Count1 + Persistent IDA7673419B0C65EA7 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Art%20Tatum/Piano%20Starts%20Here/08%20Yesterdays.mp3 + File Folder Count4 + Library Folder Count1 + + 8430 + + Track ID8430 + NameI Know That You Know (Live) + ArtistArt Tatum + Album ArtistArt Tatum + ComposerV. Youmans + AlbumPiano Starts Here + GenreJazz + KindMPEG audio file + Size3556812 + Total Time155245 + Disc Number1 + Disc Count1 + Track Number9 + Track Count13 + Year1995 + Date Modified2011-06-07T14:55:43Z + Date Added2011-06-07T15:10:39Z + Bit Rate180 + Sample Rate44100 + CommentsAmazon.com Song ID: 203969986 + Play Count1 + Play Date3390326760 + Play Date UTC2011-06-07T15:56:00Z + Artwork Count1 + Persistent ID97C9BDF3E2C137F9 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Art%20Tatum/Piano%20Starts%20Here/09%20I%20Know%20That%20You%20Know%20(Live).mp3 + File Folder Count4 + Library Folder Count1 + + 8432 + + Track ID8432 + NameWillow Weep For Me (Live) + ArtistArt Tatum + Album ArtistArt Tatum + ComposerA. Ronell + AlbumPiano Starts Here + GenreJazz + KindMPEG audio file + Size4490058 + Total Time196963 + Disc Number1 + Disc Count1 + Track Number10 + Track Count13 + Year1995 + Date Modified2011-06-07T14:46:51Z + Date Added2011-06-07T15:10:39Z + Bit Rate179 + Sample Rate44100 + CommentsAmazon.com Song ID: 203969977 + Play Count1 + Play Date3390326957 + Play Date UTC2011-06-07T15:59:17Z + Artwork Count1 + Persistent IDB1F2A58010C77674 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Art%20Tatum/Piano%20Starts%20Here/10%20Willow%20Weep%20For%20Me%20(Live).mp3 + File Folder Count4 + Library Folder Count1 + + 8434 + + Track ID8434 + NameTatum Pole Boogie (Live) + ArtistArt Tatum + Album ArtistArt Tatum + ComposerA. Tatum + AlbumPiano Starts Here + GenreJazz + KindMPEG audio file + Size3364170 + Total Time145841 + Disc Number1 + Disc Count1 + Track Number11 + Track Count13 + Year1995 + Date Modified2011-06-07T15:02:02Z + Date Added2011-06-07T15:10:39Z + Bit Rate181 + Sample Rate44100 + CommentsAmazon.com Song ID: 203969979 + Play Count1 + Play Date3390327103 + Play Date UTC2011-06-07T16:01:43Z + Artwork Count1 + Persistent ID25F4551F731E564C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Art%20Tatum/Piano%20Starts%20Here/11%20Tatum%20Pole%20Boogie%20(Live).mp3 + File Folder Count4 + Library Folder Count1 + + 8436 + + Track ID8436 + NameThe Kerry Dance (Live) + ArtistArt Tatum + Album ArtistArt Tatum + ComposerMolloy + AlbumPiano Starts Here + GenreJazz + KindMPEG audio file + Size1555843 + Total Time67134 + Disc Number1 + Disc Count1 + Track Number12 + Track Count13 + Year1995 + Date Modified2011-06-07T15:05:22Z + Date Added2011-06-07T15:10:40Z + Bit Rate178 + Sample Rate44100 + CommentsAmazon.com Song ID: 203969980 + Play Count1 + Play Date3390327170 + Play Date UTC2011-06-07T16:02:50Z + Artwork Count1 + Sort NameKerry Dance (Live) + Persistent ID105B0C61778AC897 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Art%20Tatum/Piano%20Starts%20Here/12%20The%20Kerry%20Dance%20(Live).mp3 + File Folder Count4 + Library Folder Count1 + + 8438 + + Track ID8438 + NameThe Man I Love (Live) + ArtistArt Tatum + Album ArtistArt Tatum + ComposerIra Gershwin + AlbumPiano Starts Here + GenreJazz + KindMPEG audio file + Size3010511 + Total Time128391 + Disc Number1 + Disc Count1 + Track Number13 + Track Count13 + Year1995 + Date Modified2011-06-07T15:07:02Z + Date Added2011-06-07T15:10:40Z + Bit Rate183 + Sample Rate44100 + CommentsAmazon.com Song ID: 203969982 + Play Count1 + Play Date3390327298 + Play Date UTC2011-06-07T16:04:58Z + Artwork Count1 + Sort NameMan I Love (Live) + Persistent ID4ACB1E7EE7EC7FCC + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Art%20Tatum/Piano%20Starts%20Here/13%20The%20Man%20I%20Love%20(Live).mp3 + File Folder Count4 + Library Folder Count1 + + 8440 + + Track ID8440 + NameNight Train + ArtistOscar Peterson Trio + ComposerDuke Ellington + AlbumNight Train + GenreJazz + KindAAC audio file + Size5163334 + Total Time292800 + Disc Number1 + Disc Count1 + Track Number1 + Track Count17 + Year1962 + Date Modified2011-06-14T01:44:14Z + Date Added2011-06-07T16:11:19Z + Bit Rate128 + Sample Rate44100 + Play Count1 + Play Date3390839264 + Play Date UTC2011-06-13T14:17:44Z + Normalization1050 + Artwork Count1 + Persistent ID598ACF0B27CD7110 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Oscar%20Peterson%20Trio/Night%20Train/01%20Night%20Train.m4a + File Folder Count4 + Library Folder Count1 + + 8442 + + Track ID8442 + NameC-Jam Blues + ArtistOscar Peterson Trio + ComposerBilly Strayhorn & Duke Ellington + AlbumNight Train + GenreJazz + KindAAC audio file + Size3730864 + Total Time206093 + Disc Number1 + Disc Count1 + Track Number2 + Track Count17 + Year1962 + Date Modified2011-06-14T01:44:12Z + Date Added2011-06-07T16:11:20Z + Bit Rate128 + Sample Rate44100 + Play Count2 + Play Date3390839470 + Play Date UTC2011-06-13T14:21:10Z + Normalization1259 + Artwork Count1 + Persistent ID5C11B7E51D5E6FFD + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Oscar%20Peterson%20Trio/Night%20Train/02%20C-Jam%20Blues.m4a + File Folder Count4 + Library Folder Count1 + + 8444 + + Track ID8444 + NameGeorgia On My Mind + ArtistOscar Peterson Trio + ComposerHoagland Howard "Hoagy" Carmichael + AlbumNight Train + GenreJazz + KindAAC audio file + Size4079340 + Total Time226600 + Disc Number1 + Disc Count1 + Track Number3 + Track Count17 + Year1962 + Date Modified2011-06-14T01:44:12Z + Date Added2011-06-07T16:11:20Z + Bit Rate128 + Sample Rate44100 + Play Count1 + Play Date3390839696 + Play Date UTC2011-06-13T14:24:56Z + Normalization382 + Artwork Count1 + Persistent ID1FD4BB12619423DF + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Oscar%20Peterson%20Trio/Night%20Train/03%20Georgia%20On%20My%20Mind.m4a + File Folder Count4 + Library Folder Count1 + + 8446 + + Track ID8446 + NameBag's Groove + ArtistOscar Peterson Trio + ComposerMilt Jackson + AlbumNight Train + GenreJazz + KindAAC audio file + Size5993840 + Total Time343040 + Disc Number1 + Disc Count1 + Track Number4 + Track Count17 + Year1962 + Date Modified2011-06-14T01:44:11Z + Date Added2011-06-07T16:11:20Z + Bit Rate128 + Sample Rate44100 + Play Count1 + Play Date3390840040 + Play Date UTC2011-06-13T14:30:40Z + Normalization721 + Artwork Count1 + Persistent ID2A9C5900DF56DB66 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Oscar%20Peterson%20Trio/Night%20Train/04%20Bag's%20Groove.m4a + File Folder Count4 + Library Folder Count1 + + 8448 + + Track ID8448 + NameMoten Swing + ArtistOscar Peterson Trio + ComposerEddie Durham + AlbumNight Train + GenreJazz + KindAAC audio file + Size3228106 + Total Time175466 + Disc Number1 + Disc Count1 + Track Number5 + Track Count17 + Year1962 + Date Modified2011-06-14T01:44:13Z + Date Added2011-06-07T16:11:20Z + Bit Rate128 + Sample Rate44100 + Play Count1 + Play Date3390840215 + Play Date UTC2011-06-13T14:33:35Z + Normalization1259 + Artwork Count1 + Persistent IDB7145CEE644E3187 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Oscar%20Peterson%20Trio/Night%20Train/05%20Moten%20Swing.m4a + File Folder Count4 + Library Folder Count1 + + 8450 + + Track ID8450 + NameEasy Does It + ArtistOscar Peterson Trio + ComposerMelvin James "Sy" Oliver & Lester Willis Young + AlbumNight Train + GenreJazz + KindAAC audio file + Size3082102 + Total Time165693 + Disc Number1 + Disc Count1 + Track Number6 + Track Count17 + Year1962 + Date Modified2011-06-14T01:44:12Z + Date Added2011-06-07T16:11:20Z + Bit Rate128 + Sample Rate44100 + Play Count2 + Play Date3390840381 + Play Date UTC2011-06-13T14:36:21Z + Normalization800 + Artwork Count1 + Persistent IDCCF8C0BABC28C567 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Oscar%20Peterson%20Trio/Night%20Train/06%20Easy%20Does%20It.m4a + File Folder Count4 + Library Folder Count1 + + 8452 + + Track ID8452 + NameThe Honeydripper + ArtistOscar Peterson Trio + ComposerJoseph C "Joe" Liggins, Jr + AlbumNight Train + GenreJazz + KindAAC audio file + Size2723829 + Total Time144733 + Disc Number1 + Disc Count1 + Track Number7 + Track Count17 + Year1962 + Date Modified2011-06-14T01:44:13Z + Date Added2011-06-07T16:11:20Z + Bit Rate128 + Sample Rate44100 + Play Count1 + Play Date3390840525 + Play Date UTC2011-06-13T14:38:45Z + Normalization1129 + Artwork Count1 + Sort NameHoneydripper + Persistent ID044809DA54EDC56D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Oscar%20Peterson%20Trio/Night%20Train/07%20The%20Honeydripper.m4a + File Folder Count4 + Library Folder Count1 + + 8454 + + Track ID8454 + NameThings Ain't What They Used To Be + ArtistOscar Peterson Trio + ComposerMercer Kennedy Ellington & Ted Persons + AlbumNight Train + GenreJazz + KindAAC audio file + Size4940871 + Total Time278773 + Disc Number1 + Disc Count1 + Track Number8 + Track Count17 + Year1962 + Date Modified2011-06-14T01:44:13Z + Date Added2011-06-07T16:11:20Z + Bit Rate128 + Sample Rate44100 + Play Count1 + Play Date3390840804 + Play Date UTC2011-06-13T14:43:24Z + Normalization1167 + Artwork Count1 + Persistent ID86F653EA45FCC200 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Oscar%20Peterson%20Trio/Night%20Train/08%20Things%20Ain't%20What%20They%20Used%20To%20Be.m4a + File Folder Count4 + Library Folder Count1 + + 8456 + + Track ID8456 + NameI Got It Bad + ArtistOscar Peterson Trio + ComposerDuke Ellington & Paul Francis Webster + AlbumNight Train + GenreJazz + KindAAC audio file + Size5437735 + Total Time308893 + Disc Number1 + Disc Count1 + Track Number9 + Track Count17 + Year1962 + Date Modified2011-06-14T01:44:09Z + Date Added2011-06-07T16:11:21Z + Bit Rate128 + Sample Rate44100 + Play Count1 + Play Date3390841113 + Play Date UTC2011-06-13T14:48:33Z + Normalization352 + Artwork Count1 + Persistent IDB91B04FBBD417A36 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Oscar%20Peterson%20Trio/Night%20Train/09%20I%20Got%20It%20Bad.m4a + File Folder Count4 + Library Folder Count1 + + 8458 + + Track ID8458 + NameBand Call + ArtistOscar Peterson Trio + ComposerDuke Ellington + AlbumNight Train + GenreJazz + KindAAC audio file + Size4215357 + Total Time235466 + Disc Number1 + Disc Count1 + Track Number10 + Track Count17 + Year1962 + Date Modified2011-06-14T01:44:08Z + Date Added2011-06-07T16:11:21Z + Bit Rate128 + Sample Rate44100 + Play Count1 + Play Date3390841348 + Play Date UTC2011-06-13T14:52:28Z + Normalization1259 + Artwork Count1 + Persistent ID1102C0DB8B9D0BA9 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Oscar%20Peterson%20Trio/Night%20Train/10%20Band%20Call.m4a + File Folder Count4 + Library Folder Count1 + + 8460 + + Track ID8460 + NameHymn To Freedom + ArtistOscar Peterson Trio + ComposerOscar Peterson + AlbumNight Train + GenreJazz + KindAAC audio file + Size5853299 + Total Time338133 + Disc Number1 + Disc Count1 + Track Number11 + Track Count17 + Year1962 + Date Modified2011-06-14T01:44:08Z + Date Added2011-06-07T16:11:21Z + Bit Rate128 + Sample Rate44100 + Play Count1 + Play Date3390841687 + Play Date UTC2011-06-13T14:58:07Z + Normalization911 + Artwork Count1 + Persistent ID658AEE87B9158F57 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Oscar%20Peterson%20Trio/Night%20Train/11%20Hymn%20To%20Freedom.m4a + File Folder Count4 + Library Folder Count1 + + 8462 + + Track ID8462 + NameHappy-Go-lucky Local (Night Train) + ArtistOscar Peterson Trio + ComposerDuke Ellington + AlbumNight Train + GenreJazz + KindAAC audio file + Size5290279 + Total Time300066 + Disc Number1 + Disc Count1 + Track Number12 + Track Count17 + Year1962 + Date Modified2011-06-14T01:44:08Z + Date Added2011-06-07T16:11:21Z + Bit Rate128 + Sample Rate44100 + Play Count1 + Play Date3390841987 + Play Date UTC2011-06-13T15:03:07Z + Normalization1134 + Artwork Count1 + Persistent IDFAC3FCAB776F4A41 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Oscar%20Peterson%20Trio/Night%20Train/12%20Happy-Go-lucky%20Local%20(Night%20Train).m4a + File Folder Count4 + Library Folder Count1 + + 8464 + + Track ID8464 + NameVolare + ArtistOscar Peterson Trio + ComposerDomenico Modugno & Francesco Migliacci + AlbumNight Train + GenreJazz + KindAAC audio file + Size3118876 + Total Time169306 + Disc Number1 + Disc Count1 + Track Number13 + Track Count17 + Year1962 + Date Modified2011-06-14T01:44:11Z + Date Added2011-06-07T16:11:21Z + Bit Rate128 + Sample Rate44100 + Play Count1 + Play Date3390842156 + Play Date UTC2011-06-13T15:05:56Z + Normalization1259 + Artwork Count1 + Persistent IDD7F312BC94102B44 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Oscar%20Peterson%20Trio/Night%20Train/13%20Volare.m4a + File Folder Count4 + Library Folder Count1 + + 8466 + + Track ID8466 + NameMy Heart Belongs To Daddy + ArtistOscar Peterson Trio + ComposerCole Porter + AlbumNight Train + GenreJazz + KindAAC audio file + Size4260340 + Total Time237693 + Disc Number1 + Disc Count1 + Track Number14 + Track Count17 + Year1962 + Date Modified2011-06-14T01:44:10Z + Date Added2011-06-07T16:11:21Z + Bit Rate128 + Sample Rate44100 + Play Count1 + Play Date3390842394 + Play Date UTC2011-06-13T15:09:54Z + Normalization1259 + Artwork Count1 + Persistent ID190C60D2CC97EE93 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Oscar%20Peterson%20Trio/Night%20Train/14%20My%20Heart%20Belongs%20To%20Daddy.m4a + File Folder Count4 + Library Folder Count1 + + 8468 + + Track ID8468 + NameMoten Swing + ArtistOscar Peterson Trio + ComposerEddie Durham + AlbumNight Train + GenreJazz + KindAAC audio file + Size3890493 + Total Time216706 + Disc Number1 + Disc Count1 + Track Number15 + Track Count17 + Year1962 + Date Modified2011-06-14T01:44:09Z + Date Added2011-06-07T16:11:21Z + Bit Rate128 + Sample Rate44100 + Play Count1 + Play Date3390842610 + Play Date UTC2011-06-13T15:13:30Z + Normalization1259 + Artwork Count1 + Persistent ID313DD44658580768 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Oscar%20Peterson%20Trio/Night%20Train/15%20Moten%20Swing.m4a + File Folder Count4 + Library Folder Count1 + + 8470 + + Track ID8470 + NameNow Is The Time + ArtistOscar Peterson Trio + ComposerCharlie Parker + AlbumNight Train + GenreJazz + KindAAC audio file + Size2920433 + Total Time156693 + Disc Number1 + Disc Count1 + Track Number16 + Track Count17 + Year1962 + Date Modified2011-06-14T01:44:10Z + Date Added2011-06-07T16:11:21Z + Bit Rate128 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Persistent ID3C7612D4BE17C379 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Oscar%20Peterson%20Trio/Night%20Train/16%20Now%20Is%20The%20Time.m4a + File Folder Count4 + Library Folder Count1 + + 8472 + + Track ID8472 + NameThis Could Be The Start Of Something + ArtistOscar Peterson Trio + ComposerStephen Valentine Patrick William "Steve" Allen + AlbumNight Train + GenreJazz + KindAAC audio file + Size5084351 + Total Time311800 + Disc Number1 + Disc Count1 + Track Number17 + Track Count17 + Year1962 + Date Modified2011-06-14T01:44:11Z + Date Added2011-06-07T16:11:21Z + Bit Rate128 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Persistent IDA7F553FB0BC61756 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Oscar%20Peterson%20Trio/Night%20Train/17%20This%20Could%20Be%20The%20Start%20Of%20Something.m4a + File Folder Count4 + Library Folder Count1 + + 8474 + + Track ID8474 + NameFire + ArtistGhazal + Album ArtistGhazal + ComposerShujaat Husain Khan + AlbumThe Rain + GenreJazz + KindMPEG audio file + Size35464702 + Total Time1098814 + Disc Number1 + Disc Count1 + Track Number1 + Track Count3 + Year2003 + Date Modified2011-06-07T16:42:28Z + Date Added2011-06-08T01:53:26Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202480263 + Play Count1 + Play Date3390417849 + Play Date UTC2011-06-08T17:14:09Z + Artwork Count1 + Sort AlbumRain + Persistent IDD53F80F883498DFD + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ghazal/The%20Rain/01%20Fire.mp3 + File Folder Count4 + Library Folder Count1 + + 8476 + + Track ID8476 + NameDawn + ArtistGhazal + Album ArtistGhazal + ComposerShujaat Husain Khan + AlbumThe Rain + GenreJazz + KindMPEG audio file + Size29068255 + Total Time898925 + Disc Number1 + Disc Count1 + Track Number2 + Track Count3 + Year2003 + Date Modified2011-06-08T01:45:49Z + Date Added2011-06-08T01:53:26Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202480264 + Play Count1 + Play Date3390418748 + Play Date UTC2011-06-08T17:29:08Z + Artwork Count1 + Sort AlbumRain + Persistent ID9D47C950D4CC0F0B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ghazal/The%20Rain/02%20Dawn.mp3 + File Folder Count4 + Library Folder Count1 + + 8478 + + Track ID8478 + NameEternity + ArtistGhazal + Album ArtistGhazal + ComposerKayhan Kalhor + AlbumThe Rain + GenreJazz + KindMPEG audio file + Size38410475 + Total Time1190870 + Disc Number1 + Disc Count1 + Track Number3 + Track Count3 + Year2003 + Date Modified2011-06-08T01:46:07Z + Date Added2011-06-08T01:53:26Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202480265 + Artwork Count1 + Sort AlbumRain + Persistent IDAEF005A1E3F889DC + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ghazal/The%20Rain/03%20Eternity.mp3 + File Folder Count4 + Library Folder Count1 + + 8480 + + Track ID8480 + NameHazarat Khwaja Sangh Kheliye Dhamar (An Overture In Raga Bahar) + ArtistNusrat Fateh Ali Khan + AlbumTraditional Sufi Qawwalis. Live From London-Vol I (1993 Navras Records) + GenreReligious + KindAAC audio file + Size49698290 + Total Time1505693 + Track Number1 + Track Count3 + Date Modified2011-06-14T01:49:03Z + Date Added2011-06-08T15:31:46Z + Bit Rate256 + Sample Rate44100 + Normalization794 + Artwork Count1 + Persistent IDA237066530B7EDE0 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Nusrat%20Fateh%20Ali%20Khan/Traditional%20Sufi%20Qawwalis.%20Live%20From%20London-Vol%20I%20(1993%20Navras%20Records)/01%20Hazarat%20Khwaja%20Sangh%20Kheliye%20Dhamar%20(An%20Overture%20In%20Raga%20Bahar).m4a + File Folder Count4 + Library Folder Count1 + + 8482 + + Track ID8482 + NameAllah Hoo Allah Hoo Allah Hoo (Hamd - In Raga Mishra Khamaj) + ArtistNusrat Fateh Ali Khan + AlbumTraditional Sufi Qawwalis. Live From London-Vol I (1993 Navras Records) + GenreReligious + KindAAC audio file + Size55388575 + Total Time1677373 + Track Number2 + Track Count3 + Date Modified2011-06-14T01:49:00Z + Date Added2011-06-08T15:35:24Z + Bit Rate256 + Sample Rate44100 + Normalization794 + Artwork Count1 + Persistent IDA899696B7C0B2D34 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Nusrat%20Fateh%20Ali%20Khan/Traditional%20Sufi%20Qawwalis.%20Live%20From%20London-Vol%20I%20(1993%20Navras%20Records)/02%20Allah%20Hoo%20Allah%20Hoo%20Allah%20Hoo%20(Hamd%20-%20In%20Raga%20Mishra%20Khamaj).m4a + File Folder Count4 + Library Folder Count1 + + 8484 + + Track ID8484 + NameFarsuda Japara Zeh Hisra, Yaar Rasool Allah (Naat I Sharif) + ArtistNusrat Fateh Ali Khan + AlbumTraditional Sufi Qawwalis. Live From London-Vol I (1993 Navras Records) + GenreReligious + KindAAC audio file + Size37738419 + Total Time1140933 + Track Number3 + Track Count3 + Date Modified2011-06-14T01:48:56Z + Date Added2011-06-08T15:38:17Z + Bit Rate256 + Sample Rate44100 + Normalization438 + Artwork Count1 + Persistent ID6F2CF7D24F25B6CE + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Nusrat%20Fateh%20Ali%20Khan/Traditional%20Sufi%20Qawwalis.%20Live%20From%20London-Vol%20I%20(1993%20Navras%20Records)/03%20Farsuda%20Japara%20Zeh%20Hisra,%20Yaar%20Rasool%20Allah%20(Naat%20I%20Sharif).m4a + File Folder Count4 + Library Folder Count1 + + 8486 + + Track ID8486 + NameManqabat In Raga Bhairvi + ArtistNusrat Fateh Ali Khan + AlbumTraditional Sufi Qawwalis - Live In London Vol.2 + GenreReligious + KindAAC audio file + Size53403384 + Total Time1616106 + Disc Number2 + Disc Count4 + Track Number1 + Track Count4 + Year1993 + Date Modified2011-06-14T01:48:53Z + Date Added2011-06-08T15:41:31Z + Bit Rate256 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Persistent ID3FC9DB2126052650 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Nusrat%20Fateh%20Ali%20Khan/Traditional%20Sufi%20Qawwalis%20-%20Live%20In%20London%20Vol.2/2-01%20Manqabat%20In%20Raga%20Bhairvi.m4a + File Folder Count4 + Library Folder Count1 + + 8488 + + Track ID8488 + NameGhazal In Raga Kedar + ArtistNusrat Fateh Ali Khan + AlbumTraditional Sufi Qawwalis - Live In London Vol.2 + GenreReligious + KindAAC audio file + Size38732621 + Total Time1173200 + Disc Number2 + Disc Count4 + Track Number2 + Track Count4 + Year1993 + Date Modified2011-06-14T01:48:50Z + Date Added2011-06-08T15:46:08Z + Bit Rate256 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Persistent IDBB579C2ECDC2BC46 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Nusrat%20Fateh%20Ali%20Khan/Traditional%20Sufi%20Qawwalis%20-%20Live%20In%20London%20Vol.2/2-02%20Ghazal%20In%20Raga%20Kedar.m4a + File Folder Count4 + Library Folder Count1 + + 8490 + + Track ID8490 + NameSong In Raga Bilawal + ArtistNusrat Fateh Ali Khan + AlbumTraditional Sufi Qawwalis - Live In London Vol.2 + GenreReligious + KindAAC audio file + Size26515668 + Total Time802893 + Disc Number2 + Disc Count4 + Track Number3 + Track Count4 + Year1993 + Date Modified2011-06-14T01:48:49Z + Date Added2011-06-08T15:48:36Z + Bit Rate256 + Sample Rate44100 + Normalization1228 + Artwork Count1 + Persistent IDD06E99AFD56B31E0 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Nusrat%20Fateh%20Ali%20Khan/Traditional%20Sufi%20Qawwalis%20-%20Live%20In%20London%20Vol.2/2-03%20Song%20In%20Raga%20Bilawal.m4a + File Folder Count4 + Library Folder Count1 + + 8492 + + Track ID8492 + NameQaul/Qalbana In Raga Bhopali, Yaman Kalyan + ArtistNusrat Fateh Ali Khan + AlbumTraditional Sufi Qawwalis - Live In London Vol.2 + GenreReligious + KindAAC audio file + Size19323917 + Total Time585200 + Disc Number2 + Disc Count4 + Track Number4 + Track Count4 + Year1993 + Date Modified2011-06-14T01:48:47Z + Date Added2011-06-08T15:50:05Z + Bit Rate256 + Sample Rate44100 + Normalization941 + Artwork Count1 + Persistent ID2AA4E37D03A34C26 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Nusrat%20Fateh%20Ali%20Khan/Traditional%20Sufi%20Qawwalis%20-%20Live%20In%20London%20Vol.2/2-04%20Qaul_Qalbana%20In%20Raga%20Bhopali,%20Yaman%20Kalyan.m4a + File Folder Count4 + Library Folder Count1 + + 8494 + + Track ID8494 + NameClassical Qawwali in Raga Gawoti (Araj soonli jho, Kwaja mori araj soonli jho) + ArtistNusrat Fateh Ali Khan + AlbumTraditional Sufi Qawwalis - Live in London, Vol. III + GenreReligious + KindAAC audio file + Size18302879 + Total Time556600 + Disc Number1 + Disc Count1 + Track Number1 + Track Count4 + Year2006 + Date Modified2011-06-14T01:48:47Z + Date Added2011-06-08T15:53:19Z + Bit Rate256 + Sample Rate44100 + Normalization1000 + Artwork Count1 + Persistent ID22B4C88A4C7DD6DF + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Nusrat%20Fateh%20Ali%20Khan/Traditional%20Sufi%20Qawwalis%20-%20Live%20in%20London,%20Vol.%20III/01%20Classical%20Qawwali%20in%20Raga%20Gawoti%20(Araj%20soonli%20jho,%20Kwaja%20mori%20araj%20soonli%20jho).m4a + File Folder Count4 + Library Folder Count1 + + 8496 + + Track ID8496 + NameQawwali in Farsi by Hazrat Amir Kusrau in Raga Khamaj (Nami danam chi manzil bud shab jai ki man budam) + ArtistNusrat Fateh Ali Khan + AlbumTraditional Sufi Qawwalis - Live in London, Vol. III + GenreReligious + KindAAC audio file + Size14893202 + Total Time453040 + Disc Number1 + Disc Count1 + Track Number2 + Track Count4 + Year2006 + Date Modified2011-06-14T01:48:46Z + Date Added2011-06-08T15:55:11Z + Bit Rate256 + Sample Rate44100 + Normalization911 + Artwork Count1 + Persistent IDCEF3F06A3CED88F2 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Nusrat%20Fateh%20Ali%20Khan/Traditional%20Sufi%20Qawwalis%20-%20Live%20in%20London,%20Vol.%20III/02%20Qawwali%20in%20Farsi%20by%20Hazrat%20Amir%20Kusrau%20in%20Raga%20Khamaj%20(Nami%20danam%20chi%20manzil%20bud%20shab%20jai%20ki%20man%20budam).m4a + File Folder Count4 + Library Folder Count1 + + 8498 + + Track ID8498 + NameTraditional Qawwali by Hazrat Amir Khusrau in Raga Mishra Kafi (Kirpa karo maharaj, Mohinuddin Khwaja) + ArtistNusrat Fateh Ali Khan + AlbumTraditional Sufi Qawwalis - Live in London, Vol. III + GenreReligious + KindAAC audio file + Size27486012 + Total Time832533 + Disc Number1 + Disc Count1 + Track Number3 + Track Count4 + Year2006 + Date Modified2011-06-14T01:48:44Z + Date Added2011-06-08T15:56:27Z + Bit Rate256 + Sample Rate44100 + Normalization1000 + Artwork Count1 + Persistent IDF6C31C734A0EBD66 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Nusrat%20Fateh%20Ali%20Khan/Traditional%20Sufi%20Qawwalis%20-%20Live%20in%20London,%20Vol.%20III/03%20Traditional%20Qawwali%20by%20Hazrat%20Amir%20Khusrau%20in%20Raga%20Mishra%20Kafi%20(Kirpa%20karo%20maharaj,%20Mohinuddin%20Khwaja).m4a + File Folder Count4 + Library Folder Count1 + + 8500 + + Track ID8500 + NameModern Qawwali by Allama Iqbal in Raga Bilawal (Shiwa jawab shikwa) + ArtistNusrat Fateh Ali Khan + AlbumTraditional Sufi Qawwalis - Live in London, Vol. III + GenreReligious + KindAAC audio file + Size40957372 + Total Time1239200 + Disc Number1 + Disc Count1 + Track Number4 + Track Count4 + Year2006 + Date Modified2011-06-14T01:48:42Z + Date Added2011-06-08T15:58:25Z + Bit Rate256 + Sample Rate44100 + Normalization1000 + Artwork Count1 + Persistent ID5CD32D0F588936CA + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Nusrat%20Fateh%20Ali%20Khan/Traditional%20Sufi%20Qawwalis%20-%20Live%20in%20London,%20Vol.%20III/04%20Modern%20Qawwali%20by%20Allama%20Iqbal%20in%20Raga%20Bilawal%20(Shiwa%20jawab%20shikwa).m4a + File Folder Count4 + Library Folder Count1 + + 8502 + + Track ID8502 + NameTraditional Qawwali in Ragas Marwa & Bhatiyar + ArtistNusrat Fateh Ali Khan + AlbumTraditional Sufi Qawwalis - Live in London, Vol IV + GenreReligious + KindAAC audio file + Size30292714 + Total Time919133 + Disc Number1 + Disc Count1 + Track Number1 + Track Count3 + Year2006 + Date Modified2011-06-14T01:48:41Z + Date Added2011-06-08T16:01:43Z + Bit Rate256 + Sample Rate44100 + Normalization846 + Artwork Count1 + Persistent IDF8F71E6191773508 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Nusrat%20Fateh%20Ali%20Khan/Traditional%20Sufi%20Qawwalis%20-%20Live%20in%20London,%20Vol%20IV/01%20Traditional%20Qawwali%20in%20Ragas%20Marwa%20&%20Bhatiyar.m4a + File Folder Count4 + Library Folder Count1 + + 8504 + + Track ID8504 + NameTraditional Qawwali (Punjabi) by Baba Buleh Shah in Ragas Tilang & Khamaj + ArtistNusrat Fateh Ali Khan + AlbumTraditional Sufi Qawwalis - Live in London, Vol IV + GenreReligious + KindAAC audio file + Size51340059 + Total Time1564040 + Disc Number1 + Disc Count1 + Track Number2 + Track Count3 + Year2006 + Date Modified2011-06-14T01:48:39Z + Date Added2011-06-08T16:04:36Z + Bit Rate256 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Persistent ID6A167EC6239C0150 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Nusrat%20Fateh%20Ali%20Khan/Traditional%20Sufi%20Qawwalis%20-%20Live%20in%20London,%20Vol%20IV/02%20Traditional%20Qawwali%20(Punjabi)%20by%20Baba%20Buleh%20Shah%20in%20Ragas%20Tilang%20&%20Khamaj.m4a + File Folder Count4 + Library Folder Count1 + + 8506 + + Track ID8506 + NameTraditional Qawwali in Hindi by Hazrat Amir Khusrau in Raga Khamaj + ArtistNusrat Fateh Ali Khan + AlbumTraditional Sufi Qawwalis - Live in London, Vol IV + GenreReligious + KindAAC audio file + Size35875556 + Total Time1084960 + Disc Number1 + Disc Count1 + Track Number3 + Track Count3 + Year2006 + Date Modified2011-06-14T01:48:37Z + Date Added2011-06-08T16:08:08Z + Bit Rate256 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Persistent ID4B9D6C41B733F403 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Nusrat%20Fateh%20Ali%20Khan/Traditional%20Sufi%20Qawwalis%20-%20Live%20in%20London,%20Vol%20IV/03%20Traditional%20Qawwali%20in%20Hindi%20by%20Hazrat%20Amir%20Khusrau%20in%20Raga%20Khamaj.m4a + File Folder Count4 + Library Folder Count1 + + 8508 + + Track ID8508 + Namecha rahi kaali ghata + ArtistBegum Akhtar + Albumfarmaish + GenreTraditional + KindAAC audio file + Size19534299 + Total Time605986 + Track Number1 + Track Count11 + Date Modified2011-06-14T01:45:38Z + Date Added2011-06-09T04:52:42Z + Bit Rate256 + Sample Rate44100 + Normalization2009 + Artwork Count1 + Persistent ID1294183F90985C08 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Begum%20Akhtar/farmaish/01%20cha%20rahi%20kaali%20ghata.m4a + File Folder Count4 + Library Folder Count1 + + 8510 + + Track ID8510 + Namehar jagah har sitam + ArtistBegum Akhtar + Albumfarmaish + GenreTraditional + KindAAC audio file + Size14515516 + Total Time434946 + Track Number2 + Track Count11 + Date Modified2011-06-14T01:45:37Z + Date Added2011-06-09T04:54:43Z + Bit Rate256 + Sample Rate44100 + Normalization2922 + Artwork Count1 + Persistent ID153DD24A94D4C834 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Begum%20Akhtar/farmaish/02%20har%20jagah%20har%20sitam.m4a + File Folder Count4 + Library Folder Count1 + + 8512 + + Track ID8512 + Nameaiye balam + ArtistBegum Akhtar + Albumfarmaish + GenreTraditional + KindAAC audio file + Size13297402 + Total Time427320 + Track Number3 + Track Count11 + Date Modified2011-06-14T01:45:36Z + Date Added2011-06-09T04:55:57Z + Bit Rate256 + Sample Rate44100 + Normalization2323 + Artwork Count1 + Persistent ID2F01DC88E97EAFAB + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Begum%20Akhtar/farmaish/03%20aiye%20balam.m4a + File Folder Count4 + Library Folder Count1 + + 8514 + + Track ID8514 + Namehamar kahi manoji + ArtistBegum Akhtar + Albumfarmaish + GenreTraditional + KindAAC audio file + Size7644178 + Total Time227720 + Track Number4 + Track Count11 + Date Modified2011-06-14T01:45:35Z + Date Added2011-06-09T04:57:02Z + Bit Rate256 + Sample Rate44100 + Normalization2755 + Artwork Count1 + Persistent IDE45061B070111DA8 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Begum%20Akhtar/farmaish/04%20hamar%20kahi%20manoji.m4a + File Folder Count4 + Library Folder Count1 + + 8516 + + Track ID8516 + Namekesaria + ArtistBegum Akhtar + Albumfarmaish + GenreTraditional + KindAAC audio file + Size9178211 + Total Time274466 + Track Number5 + Track Count11 + Date Modified2011-06-14T01:45:35Z + Date Added2011-06-09T04:57:35Z + Bit Rate256 + Sample Rate44100 + Normalization2101 + Artwork Count1 + Persistent ID39DFB9F665D20767 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Begum%20Akhtar/farmaish/05%20kesaria.m4a + File Folder Count4 + Library Folder Count1 + + 8518 + + Track ID8518 + Namewo dil mein + ArtistBegum Akhtar + Albumfarmaish + GenreTraditional + KindAAC audio file + Size14060002 + Total Time421293 + Track Number6 + Track Count11 + Date Modified2011-06-14T01:45:34Z + Date Added2011-06-09T04:58:13Z + Bit Rate256 + Sample Rate44100 + Normalization2127 + Artwork Count1 + Persistent ID04FB23212900DB79 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Begum%20Akhtar/farmaish/06%20wo%20dil%20mein.m4a + File Folder Count4 + Library Folder Count1 + + 8520 + + Track ID8520 + Namesovat nindiya + ArtistBegum Akhtar + Albumfarmaish + GenreTraditional + KindAAC audio file + Size6870672 + Total Time204600 + Track Number7 + Track Count11 + Date Modified2011-06-14T01:45:33Z + Date Added2011-06-09T04:59:07Z + Bit Rate256 + Sample Rate44100 + Normalization2595 + Artwork Count1 + Persistent ID93E317FAD204AEC3 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Begum%20Akhtar/farmaish/07%20sovat%20nindiya.m4a + File Folder Count4 + Library Folder Count1 + + 8522 + + Track ID8522 + Namehaye ram ka leke + ArtistBegum Akhtar + Albumfarmaish + GenreTraditional + KindAAC audio file + Size14759450 + Total Time441706 + Track Number8 + Track Count11 + Date Modified2011-06-14T01:45:33Z + Date Added2011-06-09T04:59:33Z + Bit Rate256 + Sample Rate44100 + Normalization2577 + Artwork Count1 + Persistent ID8E35D85E4BC41855 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Begum%20Akhtar/farmaish/08%20haye%20ram%20ka%20leke.m4a + File Folder Count4 + Library Folder Count1 + + 8524 + + Track ID8524 + Namemori o preet + ArtistBegum Akhtar + Albumfarmaish + GenreTraditional + KindAAC audio file + Size16476169 + Total Time498066 + Track Number9 + Track Count11 + Date Modified2011-06-14T01:45:32Z + Date Added2011-06-09T05:00:25Z + Bit Rate256 + Sample Rate44100 + Normalization2224 + Artwork Count1 + Persistent ID934DD41D5C2E1EBC + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Begum%20Akhtar/farmaish/09%20mori%20o%20preet.m4a + File Folder Count4 + Library Folder Count1 + + 8526 + + Track ID8526 + Namepat rakho + ArtistBegum Akhtar + Albumfarmaish + GenreTraditional + KindAAC audio file + Size10831515 + Total Time324280 + Track Number10 + Track Count11 + Date Modified2011-06-14T01:45:31Z + Date Added2011-06-09T05:01:21Z + Bit Rate256 + Sample Rate44100 + Normalization2914 + Artwork Count1 + Persistent ID07D5CFAD0B101ADC + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Begum%20Akhtar/farmaish/10%20pat%20rakho.m4a + File Folder Count4 + Library Folder Count1 + + 8528 + + Track ID8528 + Namedono jahan teri + ArtistBegum Akhtar + Albumfarmaish + GenreTraditional + KindAAC audio file + Size14837312 + Total Time443613 + Track Number11 + Track Count11 + Date Modified2011-06-14T01:45:30Z + Date Added2011-06-09T05:01:55Z + Bit Rate256 + Sample Rate44100 + Normalization4063 + Artwork Count1 + Persistent ID767FA2DF1AB4B843 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Begum%20Akhtar/farmaish/11%20dono%20jahan%20teri.m4a + File Folder Count4 + Library Folder Count1 + + 8530 + + Track ID8530 + NameRanjish Hi Sahi + ArtistMehdi Hassan + AlbumFarmaaish + GenreTraditional + KindAAC audio file + Size17751216 + Total Time533320 + Track Number1 + Track Count7 + Date Modified2011-06-14T01:45:29Z + Date Added2011-06-09T05:07:57Z + Bit Rate256 + Sample Rate44100 + Normalization1886 + Artwork Count1 + Persistent ID0E2D86FB09E3214A + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mehdi%20Hassan/Farmaaish/01%20Ranjish%20Hi%20Sahi.m4a + File Folder Count4 + Library Folder Count1 + + 8532 + + Track ID8532 + NameTu Husn Ki Devi Hai + ArtistMehdi Hassan + AlbumFarmaaish + GenreTraditional + KindAAC audio file + Size12025525 + Total Time359880 + Track Number2 + Track Count7 + Date Modified2011-06-14T01:45:28Z + Date Added2011-06-09T05:09:46Z + Bit Rate256 + Sample Rate44100 + Normalization1894 + Artwork Count1 + Persistent ID0E6B59EBC654C87A + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mehdi%20Hassan/Farmaaish/02%20Tu%20Husn%20Ki%20Devi%20Hai.m4a + File Folder Count4 + Library Folder Count1 + + 8534 + + Track ID8534 + NameRoshan Jammal-E-Yaar Se + ArtistMehdi Hassan + AlbumFarmaaish + GenreTraditional + KindAAC audio file + Size13649057 + Total Time407666 + Track Number3 + Track Count7 + Date Modified2011-06-14T01:45:28Z + Date Added2011-06-09T05:10:49Z + Bit Rate256 + Sample Rate44100 + Normalization2133 + Artwork Count1 + Persistent IDD14B4C7E3FC9440F + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mehdi%20Hassan/Farmaaish/03%20Roshan%20Jammal-E-Yaar%20Se.m4a + File Folder Count4 + Library Folder Count1 + + 8536 + + Track ID8536 + NameShola Tha Jal Bujha Hoon + ArtistMehdi Hassan + AlbumFarmaaish + GenreTraditional + KindAAC audio file + Size15065813 + Total Time450546 + Track Number4 + Track Count7 + Date Modified2011-06-14T01:45:27Z + Date Added2011-06-09T05:11:53Z + Bit Rate256 + Sample Rate44100 + Normalization2275 + Artwork Count1 + Persistent ID49186658976F6EC6 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mehdi%20Hassan/Farmaaish/04%20Shola%20Tha%20Jal%20Bujha%20Hoon.m4a + File Folder Count4 + Library Folder Count1 + + 8538 + + Track ID8538 + NameBhooli Bisri Chand Umeeden + ArtistMehdi Hassan + AlbumFarmaaish + GenreTraditional + KindAAC audio file + Size19492392 + Total Time585373 + Track Number5 + Track Count7 + Date Modified2011-06-14T01:45:26Z + Date Added2011-06-09T05:12:57Z + Bit Rate256 + Sample Rate44100 + Normalization1599 + Artwork Count1 + Persistent IDACD20FC86A8C3CAC + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mehdi%20Hassan/Farmaaish/05%20Bhooli%20Bisri%20Chand%20Umeeden.m4a + File Folder Count4 + Library Folder Count1 + + 8540 + + Track ID8540 + NameMohabbat Karne Wale Kam Na Honge + ArtistMehdi Hassan + AlbumFarmaaish + GenreTraditional + KindAAC audio file + Size22478628 + Total Time675453 + Track Number6 + Track Count7 + Date Modified2011-06-14T01:45:25Z + Date Added2011-06-09T05:14:12Z + Bit Rate256 + Sample Rate44100 + Normalization1441 + Artwork Count1 + Persistent IDC7FB6F98247AEDF6 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mehdi%20Hassan/Farmaaish/06%20Mohabbat%20Karne%20Wale%20Kam%20Na%20Honge.m4a + File Folder Count4 + Library Folder Count1 + + 8542 + + Track ID8542 + NameAb Ke Hum Bichhde + ArtistMehdi Hassan + AlbumFarmaaish + GenreTraditional + KindAAC audio file + Size18369370 + Total Time550040 + Track Number7 + Track Count7 + Date Modified2011-06-14T01:45:24Z + Date Added2011-06-09T05:15:32Z + Bit Rate256 + Sample Rate44100 + Normalization1819 + Artwork Count1 + Persistent IDB0951C06AA6732BE + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mehdi%20Hassan/Farmaaish/07%20Ab%20Ke%20Hum%20Bichhde.m4a + File Folder Count4 + Library Folder Count1 + + 8544 + + Track ID8544 + NameQadar Na Jaani More Balma (Traditional Thumri) + ArtistGhulam Ali + AlbumFarmaaish Vol-1 + GenreTraditional + KindAAC audio file + Size55869570 + Total Time1686493 + Track Number1 + Track Count5 + Date Modified2011-06-14T01:45:22Z + Date Added2011-06-09T05:17:23Z + Bit Rate256 + Sample Rate44100 + Normalization1411 + Artwork Count1 + Persistent ID9F94A30D3332A9B4 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ghulam%20Ali/Farmaaish%20Vol-1/01%20Qadar%20Na%20Jaani%20More%20Balma%20(Traditional%20Thumri).m4a + File Folder Count4 + Library Folder Count1 + + 8546 + + Track ID8546 + NameAnkhan Sauni Vich Dudla Khumar ( Punjabi Geet ) + ArtistGhulam Ali + AlbumFarmaaish Vol-1 + GenreTraditional + KindAAC audio file + Size18228113 + Total Time549240 + Track Number2 + Track Count5 + Date Modified2011-06-14T01:45:20Z + Date Added2011-06-09T05:22:13Z + Bit Rate256 + Sample Rate44100 + Normalization2357 + Artwork Count1 + Persistent ID5A2D90935443862B + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ghulam%20Ali/Farmaaish%20Vol-1/02%20Ankhan%20Sauni%20Vich%20Dudla%20Khumar%20(%20Punjabi%20Geet%20).m4a + File Folder Count4 + Library Folder Count1 + + 8548 + + Track ID8548 + NameMera JO Haal HO SO HO ( ghazal-Jigar Moradabadi ) + ArtistGhulam Ali + AlbumFarmaaish Vol-1 + GenreTraditional + KindAAC audio file + Size30599261 + Total Time923040 + Track Number3 + Track Count5 + Date Modified2011-06-14T01:45:18Z + Date Added2011-06-09T05:23:26Z + Bit Rate256 + Sample Rate44100 + Normalization1641 + Artwork Count1 + Persistent ID2DBD1E7804EE4D46 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ghulam%20Ali/Farmaaish%20Vol-1/03%20Mera%20JO%20Haal%20HO%20SO%20HO%20(%20ghazal-Jigar%20Moradabadi%20).m4a + File Folder Count4 + Library Folder Count1 + + 8550 + + Track ID8550 + NamePhir USI Raahguzar PAR Shayaad ( Ghazal-Ahmed Faraz ) + ArtistGhulam Ali + AlbumFarmaaish Vol-1 + GenreTraditional + KindAAC audio file + Size22819789 + Total Time688600 + Track Number4 + Track Count5 + Date Modified2011-06-14T01:45:17Z + Date Added2011-06-09T05:25:17Z + Bit Rate256 + Sample Rate44100 + Normalization1905 + Artwork Count1 + Persistent ID419A33EB6E83FD97 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ghulam%20Ali/Farmaaish%20Vol-1/04%20Phir%20USI%20Raahguzar%20PAR%20Shayaad%20(%20Ghazal-Ahmed%20Faraz%20).m4a + File Folder Count4 + Library Folder Count1 + + 8552 + + Track ID8552 + NameAe Husn-E-Beparva Tujhe + ArtistGhulam Ali + AlbumFarmaaish Vol-1 + GenreTraditional + KindAAC audio file + Size19367339 + Total Time581746 + Track Number5 + Track Count5 + Date Modified2011-06-14T01:45:16Z + Date Added2011-06-09T05:26:32Z + Bit Rate256 + Sample Rate44100 + Normalization1897 + Artwork Count1 + Persistent IDF99AAA6174B53F54 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ghulam%20Ali/Farmaaish%20Vol-1/05%20Ae%20Husn-E-Beparva%20Tujhe.m4a + File Folder Count4 + Library Folder Count1 + + 8554 + + Track ID8554 + NameYaad Nahin + ArtistJagjit Singh + AlbumParwaaz [Live] [Disc 1] + GenreTraditional + KindAAC audio file + Size11150283 + Total Time331413 + Disc Number1 + Disc Count2 + Track Number1 + Track Count7 + Year2004 + Date Modified2011-06-14T01:45:15Z + Date Added2011-06-09T05:37:24Z + Bit Rate256 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Persistent ID5A5DED4C359DD88B + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jagjit%20Singh/Parwaaz%20%5BLive%5D%20%5BDisc%201%5D/1-01%20Yaad%20Nahin.m4a + File Folder Count4 + Library Folder Count1 + + 8556 + + Track ID8556 + NameTere Barey Mein + ArtistJagjit Singh + AlbumParwaaz [Live] [Disc 1] + GenreTraditional + KindAAC audio file + Size11243706 + Total Time336666 + Disc Number1 + Disc Count2 + Track Number2 + Track Count7 + Year2004 + Date Modified2011-06-14T01:45:14Z + Date Added2011-06-09T05:38:34Z + Bit Rate256 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Persistent IDB2B9419654EE01A5 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jagjit%20Singh/Parwaaz%20%5BLive%5D%20%5BDisc%201%5D/1-02%20Tere%20Barey%20Mein.m4a + File Folder Count4 + Library Folder Count1 + + 8558 + + Track ID8558 + NameHosh Walon Ko + ArtistJagjit Singh + AlbumParwaaz [Live] [Disc 1] + GenreTraditional + KindAAC audio file + Size15519730 + Total Time467693 + Disc Number1 + Disc Count2 + Track Number3 + Track Count7 + Year2004 + Date Modified2011-06-14T01:45:13Z + Date Added2011-06-09T05:39:36Z + Bit Rate256 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Persistent IDA0C69F54D24D7D61 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jagjit%20Singh/Parwaaz%20%5BLive%5D%20%5BDisc%201%5D/1-03%20Hosh%20Walon%20Ko.m4a + File Folder Count4 + Library Folder Count1 + + 8560 + + Track ID8560 + NameKagaj Ki Kashti + ArtistJagjit Singh + AlbumParwaaz [Live] [Disc 1] + GenreTraditional + KindAAC audio file + Size13530397 + Total Time405093 + Disc Number1 + Disc Count2 + Track Number4 + Track Count7 + Year2004 + Date Modified2011-06-14T01:45:13Z + Date Added2011-06-09T05:40:52Z + Bit Rate256 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Persistent ID1611F7353EDD2031 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jagjit%20Singh/Parwaaz%20%5BLive%5D%20%5BDisc%201%5D/1-04%20Kagaj%20Ki%20Kashti.m4a + File Folder Count4 + Library Folder Count1 + + 8562 + + Track ID8562 + NameKiska Chera + ArtistJagjit Singh + AlbumParwaaz [Live] [Disc 1] + GenreTraditional + KindAAC audio file + Size12250672 + Total Time367106 + Disc Number1 + Disc Count2 + Track Number5 + Track Count7 + Year2004 + Date Modified2011-06-14T01:45:12Z + Date Added2011-06-09T05:41:51Z + Bit Rate256 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Persistent ID5BA3B3CA147FA2F0 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jagjit%20Singh/Parwaaz%20%5BLive%5D%20%5BDisc%201%5D/1-05%20Kiska%20Chera.m4a + File Folder Count4 + Library Folder Count1 + + 8564 + + Track ID8564 + NameKal Chaudhivi Ki Raat + ArtistJagjit Singh + AlbumParwaaz [Live] [Disc 1] + GenreTraditional + KindAAC audio file + Size16223290 + Total Time485720 + Disc Number1 + Disc Count2 + Track Number6 + Track Count7 + Year2004 + Date Modified2011-06-14T01:45:11Z + Date Added2011-06-09T05:42:40Z + Bit Rate256 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Persistent IDD32F5DAF7FF173C2 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jagjit%20Singh/Parwaaz%20%5BLive%5D%20%5BDisc%201%5D/1-06%20Kal%20Chaudhivi%20Ki%20Raat.m4a + File Folder Count4 + Library Folder Count1 + + 8566 + + Track ID8566 + NameTera Chera + ArtistJagjit Singh + AlbumParwaaz [Live] [Disc 1] + GenreTraditional + KindAAC audio file + Size22174872 + Total Time667133 + Disc Number1 + Disc Count2 + Track Number7 + Track Count7 + Year2004 + Date Modified2011-06-14T01:45:10Z + Date Added2011-06-09T05:43:40Z + Bit Rate256 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Persistent ID087374443ACDC38F + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jagjit%20Singh/Parwaaz%20%5BLive%5D%20%5BDisc%201%5D/1-07%20Tera%20Chera.m4a + File Folder Count4 + Library Folder Count1 + + 8568 + + Track ID8568 + NameTale Of Fairies + ArtistVarious Artists + AlbumThe Legacy + GenreTraditional + KindAAC audio file + Size14500583 + Total Time441440 + Disc Number1 + Disc Count1 + Track Number1 + Track Count7 + Year2011 + Date Modified2011-06-13T10:57:43Z + Date Added2011-06-13T10:37:16Z + Bit Rate256 + Sample Rate44100 + Play Count5 + Play Date3426230657 + Play Date UTC2012-07-27T05:14:17Z + Normalization1498 + Compilation + Artwork Count1 + Sort AlbumLegacy + Persistent IDC13A04349FF17990 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Legacy/01%20Tale%20Of%20Fairies.m4a + File Folder Count4 + Library Folder Count1 + + 8570 + + Track ID8570 + NameSurrender + ArtistVarious Artists + AlbumThe Legacy + GenreTraditional + KindAAC audio file + Size11908274 + Total Time338346 + Disc Number1 + Disc Count1 + Track Number2 + Track Count7 + Year2011 + Date Modified2011-06-13T10:57:42Z + Date Added2011-06-13T10:38:33Z + Bit Rate256 + Sample Rate44100 + Play Count3 + Play Date3392653908 + Play Date UTC2011-07-04T14:21:48Z + Normalization2400 + Compilation + Artwork Count1 + Sort AlbumLegacy + Persistent IDC1C9877FCF40E58F + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Legacy/02%20Surrender.m4a + File Folder Count4 + Library Folder Count1 + + 8572 + + Track ID8572 + NameMystic Emotion + ArtistVarious Artists + AlbumThe Legacy + GenreTraditional + KindAAC audio file + Size11624327 + Total Time348333 + Disc Number1 + Disc Count1 + Track Number3 + Track Count7 + Year2011 + Date Modified2011-06-13T10:57:41Z + Date Added2011-06-13T10:39:24Z + Bit Rate256 + Sample Rate44100 + Play Count4 + Play Date3426262915 + Play Date UTC2012-07-27T14:11:55Z + Normalization1720 + Compilation + Artwork Count1 + Sort AlbumLegacy + Persistent ID25E5C5C756820F10 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Legacy/03%20Mystic%20Emotion.m4a + File Folder Count4 + Library Folder Count1 + + 8574 + + Track ID8574 + NameCosmic Bliss + ArtistVarious Artists + AlbumThe Legacy + GenreTraditional + KindAAC audio file + Size13300764 + Total Time402786 + Disc Number1 + Disc Count1 + Track Number4 + Track Count7 + Year2011 + Date Modified2011-06-13T10:57:40Z + Date Added2011-06-13T10:40:12Z + Bit Rate256 + Sample Rate44100 + Play Count3 + Play Date3426263318 + Play Date UTC2012-07-27T14:18:38Z + Normalization1230 + Compilation + Artwork Count1 + Sort AlbumLegacy + Persistent IDC820E2F67CA4D5F2 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Legacy/04%20Cosmic%20Bliss.m4a + File Folder Count4 + Library Folder Count1 + + 8576 + + Track ID8576 + NameSweet Farewell + ArtistVarious Artists + AlbumThe Legacy + GenreTraditional + KindAAC audio file + Size12570767 + Total Time374973 + Disc Number1 + Disc Count1 + Track Number5 + Track Count7 + Year2011 + Date Modified2011-06-13T10:57:39Z + Date Added2011-06-13T10:41:02Z + Bit Rate256 + Sample Rate44100 + Play Count2 + Play Date3390836945 + Play Date UTC2011-06-13T13:39:05Z + Normalization1230 + Compilation + Artwork Count1 + Sort AlbumLegacy + Persistent ID165F34E260682D58 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Legacy/05%20Sweet%20Farewell.m4a + File Folder Count4 + Library Folder Count1 + + 8578 + + Track ID8578 + NameCelebration + ArtistVarious Artists + AlbumThe Legacy + GenreTraditional + KindAAC audio file + Size9185798 + Total Time271600 + Disc Number1 + Disc Count1 + Track Number6 + Track Count7 + Year2011 + Date Modified2011-06-13T10:57:39Z + Date Added2011-06-13T10:41:45Z + Bit Rate256 + Sample Rate44100 + Play Count2 + Play Date3390837217 + Play Date UTC2011-06-13T13:43:37Z + Normalization1320 + Compilation + Artwork Count1 + Sort AlbumLegacy + Persistent IDC6435D851A9060C7 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Legacy/06%20Celebration.m4a + File Folder Count4 + Library Folder Count1 + + 8580 + + Track ID8580 + NameNostalgia + ArtistVarious Artists + AlbumThe Legacy + GenreTraditional + KindAAC audio file + Size13758297 + Total Time416386 + Disc Number1 + Disc Count1 + Track Number7 + Track Count7 + Year2011 + Date Modified2011-06-13T10:57:38Z + Date Added2011-06-13T10:42:15Z + Bit Rate256 + Sample Rate44100 + Play Count2 + Play Date3390837633 + Play Date UTC2011-06-13T13:50:33Z + Normalization2363 + Compilation + Artwork Count1 + Sort AlbumLegacy + Persistent ID17B2B0C17F1E58F2 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Legacy/07%20Nostalgia.m4a + File Folder Count4 + Library Folder Count1 + + 8582 + + Track ID8582 + NameShadow Captain + ArtistCrosby, Stills & Nash + Album ArtistCrosby, Stills & Nash + ComposerD.Crosby-C.Doerge + AlbumCSN + GenreRock + KindAAC audio file + Size6999142 + Total Time274066 + Disc Number1 + Disc Count1 + Track Number1 + Track Count12 + Year1977 + Date Modified2011-06-14T01:17:44Z + Date Added2011-06-14T01:43:14Z + Bit Rate192 + Sample Rate44100 + Play Count2 + Play Date3392307363 + Play Date UTC2011-06-30T14:06:03Z + Normalization1122 + Artwork Count1 + Persistent IDD62065704B0C4255 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Crosby,%20Stills%20&%20Nash/CSN/01%20Shadow%20Captain.m4a + File Folder Count4 + Library Folder Count1 + + 8584 + + Track ID8584 + NameSee The Changes + ArtistCrosby, Stills & Nash + Album ArtistCrosby, Stills & Nash + ComposerS.Stills + AlbumCSN + GenreRock + KindAAC audio file + Size4334073 + Total Time177693 + Disc Number1 + Disc Count1 + Track Number2 + Track Count12 + Year1977 + Date Modified2011-06-14T01:15:51Z + Date Added2011-06-14T01:43:14Z + Bit Rate192 + Sample Rate44100 + Play Count3 + Play Date3392307541 + Play Date UTC2011-06-30T14:09:01Z + Normalization1093 + Artwork Count1 + Persistent IDF680052CF7537234 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Crosby,%20Stills%20&%20Nash/CSN/02%20See%20The%20Changes.m4a + File Folder Count4 + Library Folder Count1 + + 8586 + + Track ID8586 + NameCarried Away + ArtistCrosby, Stills & Nash + ComposerG.Nash + AlbumCSN + GenreRock + KindAAC audio file + Size3771630 + Total Time154026 + Disc Number1 + Disc Count1 + Track Number3 + Track Count12 + Year1977 + Date Modified2011-06-14T01:15:04Z + Date Added2011-06-14T01:43:15Z + Bit Rate192 + Sample Rate44100 + Play Count3 + Play Date3392307695 + Play Date UTC2011-06-30T14:11:35Z + Normalization1122 + Artwork Count1 + Persistent IDF1D85E79E6D2C1DC + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Crosby,%20Stills%20&%20Nash/CSN/03%20Carried%20Away.m4a + File Folder Count4 + Library Folder Count1 + + 8588 + + Track ID8588 + NameFair Game + ArtistCrosby, Stills & Nash + Album ArtistCrosby, Stills & Nash + ComposerS.Stills + AlbumCSN + GenreRock + KindAAC audio file + Size5413302 + Total Time212053 + Disc Number1 + Disc Count1 + Track Number4 + Track Count12 + Year1977 + Date Modified2011-06-14T01:22:31Z + Date Added2011-06-14T01:43:15Z + Bit Rate192 + Sample Rate44100 + Play Count3 + Play Date3392307907 + Play Date UTC2011-06-30T14:15:07Z + Normalization1122 + Artwork Count1 + Persistent ID13DA677DA5E164D3 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Crosby,%20Stills%20&%20Nash/CSN/04%20Fair%20Game.m4a + File Folder Count4 + Library Folder Count1 + + 8590 + + Track ID8590 + NameAnything At All + ArtistCrosby, Stills & Nash + Album ArtistCrosby, Stills & Nash + ComposerD.Crosby + AlbumCSN + GenreRock + KindAAC audio file + Size4727639 + Total Time186133 + Disc Number1 + Disc Count1 + Track Number5 + Track Count12 + Year1977 + Date Modified2011-06-14T01:23:51Z + Date Added2011-06-14T01:43:15Z + Bit Rate192 + Sample Rate44100 + Play Count3 + Play Date3392308093 + Play Date UTC2011-06-30T14:18:13Z + Normalization1122 + Artwork Count1 + Persistent ID243DF7A367C2F8CC + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Crosby,%20Stills%20&%20Nash/CSN/05%20Anything%20At%20All.m4a + File Folder Count4 + Library Folder Count1 + + 8592 + + Track ID8592 + NameCathedral + ArtistCrosby, Stills & Nash + Album ArtistCrosby, Stills & Nash + ComposerG.Nash + AlbumCSN + GenreRock + KindAAC audio file + Size8000717 + Total Time317653 + Disc Number1 + Disc Count1 + Track Number6 + Track Count12 + Year1977 + Date Modified2011-06-14T01:18:40Z + Date Added2011-06-14T01:43:15Z + Bit Rate192 + Sample Rate44100 + Play Count4 + Play Date3427906214 + Play Date UTC2012-08-15T14:40:14Z + Normalization1122 + Artwork Count1 + Persistent ID41013D345B95B8AB + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Crosby,%20Stills%20&%20Nash/CSN/06%20Cathedral.m4a + File Folder Count4 + Library Folder Count1 + + 8594 + + Track ID8594 + NameDark Star + ArtistCrosby, Stills & Nash + Album ArtistCrosby, Stills & Nash + ComposerS.Stills + AlbumCSN + GenreRock + KindAAC audio file + Size7415051 + Total Time285733 + Disc Number1 + Disc Count1 + Track Number7 + Track Count12 + Year1977 + Date Modified2011-06-14T01:21:42Z + Date Added2011-06-14T01:43:15Z + Bit Rate192 + Sample Rate44100 + Play Count4 + Play Date3427906500 + Play Date UTC2012-08-15T14:45:00Z + Normalization1122 + Artwork Count1 + Persistent ID558549C4DAFA979C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Crosby,%20Stills%20&%20Nash/CSN/07%20Dark%20Star.m4a + File Folder Count4 + Library Folder Count1 + + 8596 + + Track ID8596 + NameJust A Song Before I Go + ArtistCrosby, Stills & Nash + Album ArtistCrosby, Stills & Nash + ComposerG.Nash + AlbumCSN + GenreRock + KindAAC audio file + Size3375400 + Total Time133986 + Disc Number1 + Disc Count1 + Track Number8 + Track Count12 + Year1977 + Date Modified2011-06-14T01:16:46Z + Date Added2011-06-14T01:43:15Z + Bit Rate192 + Sample Rate44100 + Play Count3 + Play Date3427906634 + Play Date UTC2012-08-15T14:47:14Z + Normalization1122 + Artwork Count1 + Persistent ID383D795B7ADBC461 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Crosby,%20Stills%20&%20Nash/CSN/08%20Just%20A%20Song%20Before%20I%20Go.m4a + File Folder Count4 + Library Folder Count1 + + 8598 + + Track ID8598 + NameRun From Tears + ArtistCrosby, Stills & Nash + Album ArtistCrosby, Stills & Nash + ComposerS.Stills + AlbumCSN + GenreRock + KindAAC audio file + Size6047273 + Total Time242893 + Disc Number1 + Disc Count1 + Track Number9 + Track Count12 + Year1977 + Date Modified2011-06-14T01:19:21Z + Date Added2011-06-14T01:43:15Z + Bit Rate192 + Sample Rate44100 + Play Count2 + Play Date3427906877 + Play Date UTC2012-08-15T14:51:17Z + Normalization1122 + Artwork Count1 + Persistent ID97FC0F77DE991F87 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Crosby,%20Stills%20&%20Nash/CSN/09%20Run%20From%20Tears.m4a + File Folder Count4 + Library Folder Count1 + + 8600 + + Track ID8600 + NameCold Rain + ArtistCrosby, Stills & Nash + Album ArtistCrosby, Stills & Nash + ComposerG.Nash + AlbumCSN + GenreRock + KindAAC audio file + Size3847664 + Total Time154626 + Disc Number1 + Disc Count1 + Track Number10 + Track Count12 + Year1977 + Date Modified2011-06-14T01:16:13Z + Date Added2011-06-14T01:43:15Z + Bit Rate192 + Sample Rate44100 + Play Count4 + Play Date3431278461 + Play Date UTC2012-09-23T15:24:21Z + Normalization1114 + Artwork Count1 + Persistent ID2CD5BDA825B25530 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Crosby,%20Stills%20&%20Nash/CSN/10%20Cold%20Rain.m4a + File Folder Count4 + Library Folder Count1 + + 8602 + + Track ID8602 + NameIn My Dreams + ArtistCrosby, Stills & Nash + ComposerD.Crosby + AlbumCSN + GenreRock + KindAAC audio file + Size7988528 + Total Time311866 + Disc Number1 + Disc Count1 + Track Number11 + Track Count12 + Year1977 + Date Modified2011-06-14T01:23:19Z + Date Added2011-06-14T01:43:15Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3391359909 + Play Date UTC2011-06-19T14:55:09Z + Normalization1122 + Artwork Count1 + Persistent IDA1066B2A7DDD3EF4 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Crosby,%20Stills%20&%20Nash/CSN/11%20In%20My%20Dreams.m4a + File Folder Count4 + Library Folder Count1 + + 8604 + + Track ID8604 + NameI Give You Give Blind + ArtistCrosby, Stills & Nash + Album ArtistCrosby, Stills & Nash + ComposerS.Stills + AlbumCSN + GenreRock + KindAAC audio file + Size5166643 + Total Time201186 + Disc Number1 + Disc Count1 + Track Number12 + Track Count12 + Year1977 + Date Modified2011-06-14T01:19:52Z + Date Added2011-06-14T01:43:15Z + Bit Rate192 + Sample Rate44100 + Normalization1827 + Artwork Count1 + Persistent ID7C21DB55FC3421B0 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Crosby,%20Stills%20&%20Nash/CSN/12%20I%20Give%20You%20Give%20Blind.m4a + File Folder Count4 + Library Folder Count1 + + 8606 + + Track ID8606 + NameMargaret vs. Pauline + ArtistNeko Case + Album ArtistNeko Case + ComposerNeko Case + AlbumFox Confessor Brings the Flood + GenreAlternative + KindAAC audio file + Size4186468 + Total Time172586 + Track Number1 + Year2006 + Date Modified2011-06-14T01:25:28Z + Date Added2011-06-14T01:43:15Z + Bit Rate192 + Sample Rate44100 + Skip Count1 + Skip Date2014-01-05T15:01:44Z + Normalization3640 + Artwork Count1 + Persistent IDC4C0BC7808B287CD + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Neko%20Case/Fox%20Confessor%20Brings%20the%20Flood/01%20Margaret%20vs.%20Pauline.m4a + File Folder Count4 + Library Folder Count1 + + 8608 + + Track ID8608 + NameStar Witness + ArtistNeko Case + Album ArtistNeko Case + ComposerNeko Case + AlbumFox Confessor Brings the Flood + GenreAlternative + KindAAC audio file + Size7609913 + Total Time316466 + Track Number2 + Year2006 + Date Modified2011-06-14T01:29:30Z + Date Added2011-06-14T01:43:15Z + Bit Rate192 + Sample Rate44100 + Normalization3920 + Artwork Count1 + Persistent ID84125F858E8D6018 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Neko%20Case/Fox%20Confessor%20Brings%20the%20Flood/02%20Star%20Witness.m4a + File Folder Count4 + Library Folder Count1 + + 8610 + + Track ID8610 + NameHold on, Hold On + ArtistNeko Case + Album ArtistNeko Case + ComposerNeko Case/The Sadies + AlbumFox Confessor Brings the Flood + GenreAlternative + KindAAC audio file + Size3985956 + Total Time166546 + Track Number3 + Year2006 + Date Modified2011-06-14T01:24:19Z + Date Added2011-06-14T01:43:15Z + Bit Rate192 + Sample Rate44100 + Normalization6601 + Artwork Count1 + Persistent ID49AB4C5781A6BF08 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Neko%20Case/Fox%20Confessor%20Brings%20the%20Flood/03%20Hold%20on,%20Hold%20On.m4a + File Folder Count4 + Library Folder Count1 + + 8612 + + Track ID8612 + NameA Widow's Toast + ArtistNeko Case + Album ArtistNeko Case + ComposerNeko Case + AlbumFox Confessor Brings the Flood + GenreAlternative + KindAAC audio file + Size2319187 + Total Time96573 + Track Number4 + Year2006 + Date Modified2011-06-14T01:26:38Z + Date Added2011-06-14T01:43:15Z + Bit Rate192 + Sample Rate44100 + Normalization3647 + Artwork Count1 + Sort NameWidow's Toast + Persistent ID79EA4172BEE27055 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Neko%20Case/Fox%20Confessor%20Brings%20the%20Flood/04%20A%20Widow's%20Toast.m4a + File Folder Count4 + Library Folder Count1 + + 8614 + + Track ID8614 + NameThat Teenage Feeling + ArtistNeko Case + Album ArtistNeko Case + ComposerNeko Case + AlbumFox Confessor Brings the Flood + GenreAlternative + KindAAC audio file + Size3913775 + Total Time162893 + Track Number5 + Year2006 + Date Modified2011-06-14T01:25:56Z + Date Added2011-06-14T01:43:15Z + Bit Rate192 + Sample Rate44100 + Normalization6790 + Artwork Count1 + Persistent ID2DEB94502E6C3016 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Neko%20Case/Fox%20Confessor%20Brings%20the%20Flood/05%20That%20Teenage%20Feeling.m4a + File Folder Count4 + Library Folder Count1 + + 8616 + + Track ID8616 + NameFox Confessor Brings the Flood + ArtistNeko Case + Album ArtistNeko Case + ComposerNeko Case/Paul Rigby + AlbumFox Confessor Brings the Flood + GenreAlternative + KindAAC audio file + Size3898579 + Total Time162373 + Track Number6 + Year2006 + Date Modified2011-06-14T01:28:42Z + Date Added2011-06-14T01:43:15Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3390882826 + Play Date UTC2011-06-14T02:23:46Z + Normalization4841 + Artwork Count1 + Persistent ID6A355D3F8835697D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Neko%20Case/Fox%20Confessor%20Brings%20the%20Flood/06%20Fox%20Confessor%20Brings%20the%20Flood.m4a + File Folder Count4 + Library Folder Count1 + + 8618 + + Track ID8618 + NameJohn Saw That Number + ArtistNeko Case + Album ArtistNeko Case + ComposerNeko Case/Traditional + AlbumFox Confessor Brings the Flood + GenreAlternative + KindAAC audio file + Size5818183 + Total Time246088 + Track Number7 + Year2006 + Date Modified2011-06-14T01:24:51Z + Date Added2011-06-14T01:43:15Z + Bit Rate192 + Sample Rate44100 + Normalization5721 + Artwork Count1 + Persistent ID551034BAD4F94ABD + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Neko%20Case/Fox%20Confessor%20Brings%20the%20Flood/07%20John%20Saw%20That%20Number.m4a + File Folder Count4 + Library Folder Count1 + + 8620 + + Track ID8620 + NameDirty Knife + ArtistNeko Case + Album ArtistNeko Case + ComposerNeko Case + AlbumFox Confessor Brings the Flood + GenreAlternative + KindAAC audio file + Size4792029 + Total Time198760 + Track Number8 + Year2006 + Date Modified2011-06-14T01:26:25Z + Date Added2011-06-14T01:43:15Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3390882451 + Play Date UTC2011-06-14T02:17:31Z + Normalization2048 + Artwork Count1 + Persistent ID358C912CA4E8CA1A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Neko%20Case/Fox%20Confessor%20Brings%20the%20Flood/08%20Dirty%20Knife.m4a + File Folder Count4 + Library Folder Count1 + + 8622 + + Track ID8622 + NameLion's Jaws + ArtistNeko Case + Album ArtistNeko Case + ComposerNeko Case/The Sadies + AlbumFox Confessor Brings the Flood + GenreAlternative + KindAAC audio file + Size3572029 + Total Time148160 + Track Number9 + Year2006 + Date Modified2011-06-14T01:27:50Z + Date Added2011-06-14T01:43:15Z + Bit Rate192 + Sample Rate44100 + Normalization2690 + Artwork Count1 + Persistent ID989C9373ADE454C1 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Neko%20Case/Fox%20Confessor%20Brings%20the%20Flood/09%20Lion's%20Jaws.m4a + File Folder Count4 + Library Folder Count1 + + 8624 + + Track ID8624 + NameMaybe Sparrow + ArtistNeko Case + Album ArtistNeko Case + ComposerNeko Case + AlbumFox Confessor Brings the Flood + GenreAlternative + KindAAC audio file + Size3739610 + Total Time157493 + Track Number10 + Year2006 + Date Modified2011-06-14T01:27:21Z + Date Added2011-06-14T01:43:15Z + Bit Rate192 + Sample Rate44100 + Normalization4736 + Artwork Count1 + Persistent IDDDDB34943B04056D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Neko%20Case/Fox%20Confessor%20Brings%20the%20Flood/10%20Maybe%20Sparrow.m4a + File Folder Count4 + Library Folder Count1 + + 8626 + + Track ID8626 + NameAt Last + ArtistNeko Case + Album ArtistNeko Case + ComposerNeko Case + AlbumFox Confessor Brings the Flood + GenreAlternative + KindAAC audio file + Size2253407 + Total Time95545 + Track Number11 + Year2006 + Date Modified2011-06-14T01:26:52Z + Date Added2011-06-14T01:43:15Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3390881341 + Play Date UTC2011-06-14T01:59:01Z + Normalization1714 + Artwork Count1 + Persistent ID6DC12B578584EFF0 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Neko%20Case/Fox%20Confessor%20Brings%20the%20Flood/11%20At%20Last.m4a + File Folder Count4 + Library Folder Count1 + + 8628 + + Track ID8628 + NameThe Needle Has Landed + ArtistNeko Case + Album ArtistNeko Case + ComposerNeko Case/The Sadies + AlbumFox Confessor Brings the Flood + GenreAlternative + KindAAC audio file + Size5477602 + Total Time225880 + Track Number12 + Year2006 + Date Modified2011-06-14T01:28:19Z + Date Added2011-06-14T01:43:16Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3390881059 + Play Date UTC2011-06-14T01:54:19Z + Normalization4992 + Artwork Count1 + Sort NameNeedle Has Landed + Persistent IDA0730C4F40B270A5 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Neko%20Case/Fox%20Confessor%20Brings%20the%20Flood/12%20The%20Needle%20Has%20Landed.m4a + File Folder Count4 + Library Folder Count1 + + 8630 + + Track ID8630 + NameOne Quiet Night + ArtistPat Metheny + ComposerPat Metheny + AlbumOne Quiet Night + GenreJazz + KindAAC audio file + Size4909911 + Total Time301881 + Disc Number1 + Disc Count1 + Track Number1 + Track Count12 + Year2003 + Date Modified2009-11-09T09:03:54Z + Date Added2011-06-14T15:56:30Z + Bit Rate128 + Sample Rate44100 + Play Count4 + Play Date3436266774 + Play Date UTC2012-11-20T09:02:54Z + Normalization1254 + Artwork Count1 + Persistent ID347127E6C02CDD51 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pat%20Metheny/One%20Quiet%20Night/01%20One%20Quiet%20Night.m4a + File Folder Count4 + Library Folder Count1 + + 8632 + + Track ID8632 + NameSong For The Boys + ArtistPat Metheny + ComposerPat Metheny + AlbumOne Quiet Night + GenreJazz + KindAAC audio file + Size4385791 + Total Time271555 + Disc Number1 + Disc Count1 + Track Number2 + Track Count12 + Year2003 + Date Modified2009-11-09T09:03:55Z + Date Added2011-06-14T15:56:31Z + Bit Rate128 + Sample Rate44100 + Play Count3 + Play Date3392057967 + Play Date UTC2011-06-27T16:49:27Z + Normalization1259 + Artwork Count1 + Persistent ID2B849D13FDC77166 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pat%20Metheny/One%20Quiet%20Night/02%20Song%20For%20The%20Boys.m4a + File Folder Count4 + Library Folder Count1 + + 8634 + + Track ID8634 + NameDon't Know Why + ArtistPat Metheny + ComposerJesse Harris + AlbumOne Quiet Night + GenreJazz + KindAAC audio file + Size3066667 + Total Time188614 + Disc Number1 + Disc Count1 + Track Number3 + Track Count12 + Year2003 + Date Modified2009-11-09T09:03:56Z + Date Added2011-06-14T15:56:31Z + Bit Rate128 + Sample Rate44100 + Play Count2 + Play Date3391962622 + Play Date UTC2011-06-26T14:20:22Z + Normalization1259 + Artwork Count1 + Persistent IDDC080641F21059A4 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pat%20Metheny/One%20Quiet%20Night/03%20Don't%20Know%20Why.m4a + File Folder Count4 + Library Folder Count1 + + 8636 + + Track ID8636 + NameAnother Chance + ArtistPat Metheny + ComposerPat Metheny + AlbumOne Quiet Night + GenreJazz + KindAAC audio file + Size6618753 + Total Time414312 + Disc Number1 + Disc Count1 + Track Number4 + Track Count12 + Year2003 + Date Modified2009-11-09T09:03:57Z + Date Added2011-06-14T15:56:31Z + Bit Rate128 + Sample Rate44100 + Play Count1 + Play Date3391014276 + Play Date UTC2011-06-15T14:54:36Z + Normalization1253 + Artwork Count1 + Persistent IDDD014855FE92400C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pat%20Metheny/One%20Quiet%20Night/04%20Another%20Chance.m4a + File Folder Count4 + Library Folder Count1 + + 8638 + + Track ID8638 + NameTime Goes On + ArtistPat Metheny + ComposerPat Metheny + AlbumOne Quiet Night + GenreJazz + KindAAC audio file + Size3235756 + Total Time199550 + Disc Number1 + Disc Count1 + Track Number5 + Track Count12 + Year2003 + Date Modified2009-11-09T09:03:58Z + Date Added2011-06-14T15:56:31Z + Bit Rate128 + Sample Rate44100 + Play Count1 + Play Date3391014476 + Play Date UTC2011-06-15T14:57:56Z + Normalization1250 + Artwork Count1 + Persistent ID14542A288002694A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pat%20Metheny/One%20Quiet%20Night/05%20Time%20Goes%20On.m4a + File Folder Count4 + Library Folder Count1 + + 8640 + + Track ID8640 + NameMy Song + ArtistPat Metheny + ComposerKeith Jarrett + AlbumOne Quiet Night + GenreJazz + KindAAC audio file + Size4234689 + Total Time262314 + Disc Number1 + Disc Count1 + Track Number6 + Track Count12 + Year2003 + Date Modified2009-11-09T09:03:59Z + Date Added2011-06-14T15:56:31Z + Bit Rate128 + Sample Rate44100 + Play Count1 + Play Date3391014738 + Play Date UTC2011-06-15T15:02:18Z + Normalization1257 + Artwork Count1 + Persistent ID208AC146A56FB77F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pat%20Metheny/One%20Quiet%20Night/06%20My%20Song.m4a + File Folder Count4 + Library Folder Count1 + + 8642 + + Track ID8642 + NamePeace Memory + ArtistPat Metheny + ComposerPat Metheny + AlbumOne Quiet Night + GenreJazz + KindAAC audio file + Size6020608 + Total Time372516 + Disc Number1 + Disc Count1 + Track Number7 + Track Count12 + Year2003 + Date Modified2009-11-09T09:04:00Z + Date Added2011-06-14T15:56:31Z + Bit Rate128 + Sample Rate44100 + Play Count1 + Play Date3391015110 + Play Date UTC2011-06-15T15:08:30Z + Normalization1245 + Artwork Count1 + Persistent IDD8F4CF4C91AEE823 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pat%20Metheny/One%20Quiet%20Night/07%20Peace%20Memory.m4a + File Folder Count4 + Library Folder Count1 + + 8644 + + Track ID8644 + NameFerry Cross The Mersey + ArtistPat Metheny + ComposerGerry Marsden + AlbumOne Quiet Night + GenreJazz + KindAAC audio file + Size3861232 + Total Time238142 + Disc Number1 + Disc Count1 + Track Number8 + Track Count12 + Year2003 + Date Modified2009-11-09T09:04:01Z + Date Added2011-06-14T15:56:31Z + Bit Rate128 + Sample Rate44100 + Normalization1257 + Artwork Count1 + Persistent ID404C1D616A4776AA + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pat%20Metheny/One%20Quiet%20Night/08%20Ferry%20Cross%20The%20Mersey.m4a + File Folder Count4 + Library Folder Count1 + + 8646 + + Track ID8646 + NameOver On 4th Street + ArtistPat Metheny + ComposerPat Metheny + AlbumOne Quiet Night + GenreJazz + KindAAC audio file + Size3567227 + Total Time221447 + Disc Number1 + Disc Count1 + Track Number9 + Track Count12 + Year2003 + Date Modified2009-11-09T09:04:02Z + Date Added2011-06-14T15:56:31Z + Bit Rate128 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Persistent ID7FDB3124DD44AFA0 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pat%20Metheny/One%20Quiet%20Night/09%20Over%20On%204th%20Street.m4a + File Folder Count4 + Library Folder Count1 + + 8648 + + Track ID8648 + NameI Will Find The Way + ArtistPat Metheny + ComposerPat Metheny + AlbumOne Quiet Night + GenreJazz + KindAAC audio file + Size7589932 + Total Time471828 + Disc Number1 + Disc Count1 + Track Number10 + Track Count12 + Year2003 + Date Modified2009-11-09T09:04:03Z + Date Added2011-06-14T15:56:32Z + Bit Rate128 + Sample Rate44100 + Normalization1237 + Artwork Count1 + Persistent ID7CE9D2ED0174BFC9 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pat%20Metheny/One%20Quiet%20Night/10%20I%20Will%20Find%20The%20Way.m4a + File Folder Count4 + Library Folder Count1 + + 8650 + + Track ID8650 + NameNorth To South, East To West + ArtistPat Metheny + ComposerPat Metheny + AlbumOne Quiet Night + GenreJazz + KindAAC audio file + Size11692429 + Total Time723973 + Disc Number1 + Disc Count1 + Track Number11 + Track Count12 + Year2003 + Date Modified2009-11-09T09:04:05Z + Date Added2011-06-14T15:56:32Z + Bit Rate128 + Sample Rate44100 + Normalization1252 + Artwork Count1 + Persistent ID8D60B696D657F990 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pat%20Metheny/One%20Quiet%20Night/11%20North%20To%20South,%20East%20To%20West.m4a + File Folder Count4 + Library Folder Count1 + + 8652 + + Track ID8652 + NameLast Train Home + ArtistPat Metheny + ComposerPat Metheny + AlbumOne Quiet Night + GenreJazz + KindAAC audio file + Size4473194 + Total Time275062 + Disc Number1 + Disc Count1 + Track Number12 + Track Count12 + Year2003 + Date Modified2009-11-09T09:04:06Z + Date Added2011-06-14T15:56:32Z + Bit Rate128 + Sample Rate44100 + Normalization1251 + Artwork Count1 + Persistent IDE3D612256AB47171 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pat%20Metheny/One%20Quiet%20Night/12%20Last%20Train%20Home.m4a + File Folder Count4 + Library Folder Count1 + + 8654 + + Track ID8654 + NameTamacun + ArtistRodrigo Y Gabriela + Album ArtistRodrigo y Gabriela + ComposerRodrigo Y Gabriela + AlbumRodrigo Y Gabriela + GenreJazz + KindAAC audio file + Size5273539 + Total Time205800 + Disc Number1 + Disc Count1 + Track Number1 + Track Count9 + Year2006 + Date Modified2011-06-21T02:13:49Z + Date Added2011-06-21T02:23:40Z + Bit Rate192 + Sample Rate44100 + Play Count2 + Play Date3403623282 + Play Date UTC2011-11-08T13:24:42Z + Skip Count2 + Skip Date2013-09-29T14:10:07Z + Normalization4338 + Artwork Count1 + Persistent ID793E09AC5E50E5D8 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rodrigo%20y%20Gabriela/Rodrigo%20Y%20Gabriela/01%20Tamacun.m4a + File Folder Count4 + Library Folder Count1 + + 8656 + + Track ID8656 + NameDiablo Rojo + ArtistRodrigo Y Gabriela + Album ArtistRodrigo y Gabriela + ComposerRodrigo Y Gabriela + AlbumRodrigo Y Gabriela + GenreJazz + KindAAC audio file + Size7557131 + Total Time296800 + Disc Number1 + Disc Count1 + Track Number2 + Track Count9 + Year2006 + Date Modified2011-06-21T02:16:34Z + Date Added2011-06-21T02:23:40Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3402407506 + Play Date UTC2011-10-25T11:41:46Z + Skip Count3 + Skip Date2011-10-27T11:19:19Z + Normalization3352 + Artwork Count1 + Persistent IDDCE9A6C1FFBE3F7B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rodrigo%20y%20Gabriela/Rodrigo%20Y%20Gabriela/02%20Diablo%20Rojo.m4a + File Folder Count4 + Library Folder Count1 + + 8658 + + Track ID8658 + NameVikingman + ArtistRodrigo Y Gabriela + Album ArtistRodrigo y Gabriela + ComposerRodrigo Y Gabriela + AlbumRodrigo Y Gabriela + GenreJazz + KindAAC audio file + Size6141565 + Total Time243320 + Disc Number1 + Disc Count1 + Track Number3 + Track Count9 + Year2006 + Date Modified2011-06-21T02:11:49Z + Date Added2011-06-21T02:23:41Z + Bit Rate192 + Sample Rate44100 + Play Count4 + Play Date3403627537 + Play Date UTC2011-11-08T14:35:37Z + Skip Count3 + Skip Date2011-10-27T11:19:12Z + Normalization3659 + Artwork Count1 + Persistent IDAC15374D8359CE9C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rodrigo%20y%20Gabriela/Rodrigo%20Y%20Gabriela/03%20Vikingman.m4a + File Folder Count4 + Library Folder Count1 + + 8660 + + Track ID8660 + NameSatori + ArtistRodrigo Y Gabriela + Album ArtistRodrigo y Gabriela + ComposerRodrigo Y Gabriela + AlbumRodrigo Y Gabriela + GenreJazz + KindAAC audio file + Size7584629 + Total Time304400 + Disc Number1 + Disc Count1 + Track Number4 + Track Count9 + Year2006 + Date Modified2011-06-21T02:12:26Z + Date Added2011-06-21T02:23:41Z + Bit Rate192 + Sample Rate44100 + Play Count5 + Play Date3403628126 + Play Date UTC2011-11-08T14:45:26Z + Skip Count3 + Skip Date2011-11-02T11:04:15Z + Normalization1776 + Artwork Count1 + Persistent ID8C4B664170B0AF64 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rodrigo%20y%20Gabriela/Rodrigo%20Y%20Gabriela/04%20Satori.m4a + File Folder Count4 + Library Folder Count1 + + 8662 + + Track ID8662 + NameIxtapa + ArtistRodrigo Y Gabriela + Album ArtistRodrigo y Gabriela + ComposerRodrigo Y Gabriela + AlbumRodrigo Y Gabriela + GenreJazz + KindAAC audio file + Size7913274 + Total Time313973 + Disc Number1 + Disc Count1 + Track Number5 + Track Count9 + Year2006 + Date Modified2011-06-21T02:15:57Z + Date Added2011-06-21T02:23:41Z + Bit Rate192 + Sample Rate44100 + Play Count8 + Play Date3402408368 + Play Date UTC2011-10-25T11:56:08Z + Skip Count3 + Skip Date2011-11-02T11:04:23Z + Normalization3094 + Artwork Count1 + Persistent ID16F8F7AD3C2AD0DB + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rodrigo%20y%20Gabriela/Rodrigo%20Y%20Gabriela/05%20Ixtapa.m4a + File Folder Count4 + Library Folder Count1 + + 8664 + + Track ID8664 + NameStairway To Heaven + ArtistRodrigo Y Gabriela + Album ArtistRodrigo y Gabriela + ComposerJimmy Page.Robert Plant + AlbumRodrigo Y Gabriela + GenreJazz + KindAAC audio file + Size7282326 + Total Time284200 + Disc Number1 + Disc Count1 + Track Number6 + Track Count9 + Year2006 + Date Modified2011-06-21T02:15:18Z + Date Added2011-06-21T02:23:41Z + Bit Rate192 + Sample Rate44100 + Play Count12 + Play Date3463328692 + Play Date UTC2013-09-29T14:14:52Z + Normalization1615 + Artwork Count1 + Persistent ID4D45998A35B14ACB + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rodrigo%20y%20Gabriela/Rodrigo%20Y%20Gabriela/06%20Stairway%20To%20Heaven.m4a + File Folder Count4 + Library Folder Count1 + + 8666 + + Track ID8666 + NameOrion + ArtistRodrigo Y Gabriela + Album ArtistRodrigo y Gabriela + ComposerCliford Lee Burton,James Alan Hetfield+Lars Ulrich + AlbumRodrigo Y Gabriela + GenreJazz + KindAAC audio file + Size11736010 + Total Time464000 + Disc Number1 + Disc Count1 + Track Number7 + Track Count9 + Year2006 + Date Modified2011-06-21T02:14:44Z + Date Added2011-06-21T02:23:41Z + Bit Rate192 + Sample Rate44100 + Play Count11 + Play Date3463329156 + Play Date UTC2013-09-29T14:22:36Z + Skip Count1 + Skip Date2011-10-19T12:08:33Z + Normalization3105 + Artwork Count1 + Persistent ID2BA34FDE67F8C1D6 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rodrigo%20y%20Gabriela/Rodrigo%20Y%20Gabriela/07%20Orion.m4a + File Folder Count4 + Library Folder Count1 + + 8668 + + Track ID8668 + NameJuan Loco + ArtistRodrigo Y Gabriela + Album ArtistRodrigo y Gabriela + ComposerRodrigo Y Gabriela + AlbumRodrigo Y Gabriela + GenreJazz + KindAAC audio file + Size5299008 + Total Time207413 + Disc Number1 + Disc Count1 + Track Number8 + Track Count9 + Year2006 + Date Modified2011-06-21T02:12:51Z + Date Added2011-06-21T02:23:41Z + Bit Rate192 + Sample Rate44100 + Play Count9 + Play Date3430146738 + Play Date UTC2012-09-10T13:02:18Z + Skip Count2 + Skip Date2011-10-27T11:19:28Z + Normalization3852 + Artwork Count1 + Persistent ID1F5B47824495483D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rodrigo%20y%20Gabriela/Rodrigo%20Y%20Gabriela/08%20Juan%20Loco.m4a + File Folder Count4 + Library Folder Count1 + + 8670 + + Track ID8670 + NamePPA + ArtistRodrigo Y Gabriela + Album ArtistRodrigo y Gabriela + ComposerRodrigo Y Gabriela + AlbumRodrigo Y Gabriela + GenreJazz + KindAAC audio file + Size6589124 + Total Time252346 + Disc Number1 + Disc Count1 + Track Number9 + Track Count9 + Year2006 + Date Modified2011-06-21T02:13:24Z + Date Added2011-06-21T02:23:42Z + Bit Rate192 + Sample Rate44100 + Play Count3 + Play Date3427389410 + Play Date UTC2012-08-09T15:06:50Z + Skip Count3 + Skip Date2011-10-27T10:55:51Z + Normalization3555 + Artwork Count1 + Persistent ID7A0D0B0D474CFD59 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rodrigo%20y%20Gabriela/Rodrigo%20Y%20Gabriela/09%20PPA.m4a + File Folder Count4 + Library Folder Count1 + + 8672 + + Track ID8672 + NameArt of Motion + ArtistAndy McKee + Album ArtistAndy McKee + AlbumArt of Motion + GenreFolk + KindMPEG audio file + Size5935292 + Total Time205635 + Disc Number1 + Disc Count1 + Track Number1 + Track Count12 + Year2005 + Date Modified2011-06-27T15:30:04Z + Date Added2011-06-27T15:44:38Z + Bit Rate226 + Sample Rate44100 + CommentsAmazon.com Song ID: 201157123 + Play Count1 + Play Date3392054790 + Play Date UTC2011-06-27T15:56:30Z + Artwork Count1 + Persistent IDB4276347018F60A6 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Andy%20McKee/Art%20of%20Motion/01%20Art%20of%20Motion.mp3 + File Folder Count4 + Library Folder Count1 + + 8674 + + Track ID8674 + NameWhen She Cries + ArtistAndy McKee + Album ArtistAndy McKee + AlbumArt of Motion + GenreFolk + KindMPEG audio file + Size6001585 + Total Time215614 + Disc Number1 + Disc Count1 + Track Number2 + Track Count12 + Year2005 + Date Modified2011-06-27T15:27:36Z + Date Added2011-06-27T15:44:38Z + Bit Rate218 + Sample Rate44100 + CommentsAmazon.com Song ID: 201157124 + Play Count1 + Play Date3392055005 + Play Date UTC2011-06-27T16:00:05Z + Artwork Count1 + Persistent ID68A5215872A1313A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Andy%20McKee/Art%20of%20Motion/02%20When%20She%20Cries.mp3 + File Folder Count4 + Library Folder Count1 + + 8676 + + Track ID8676 + NameDrifting + ArtistAndy McKee + Album ArtistAndy McKee + AlbumArt of Motion + GenreFolk + KindMPEG audio file + Size4979652 + Total Time191973 + Disc Number1 + Disc Count1 + Track Number3 + Track Count12 + Year2005 + Date Modified2011-06-27T15:34:28Z + Date Added2011-06-27T15:44:38Z + Bit Rate202 + Sample Rate44100 + CommentsAmazon.com Song ID: 201157125 + Play Count1 + Play Date3392055197 + Play Date UTC2011-06-27T16:03:17Z + Artwork Count1 + Persistent ID274E29262E4FE8F8 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Andy%20McKee/Art%20of%20Motion/03%20Drifting.mp3 + File Folder Count4 + Library Folder Count1 + + 8678 + + Track ID8678 + NameFor My Father + ArtistAndy McKee + Album ArtistAndy McKee + AlbumArt of Motion + GenreFolk + KindMPEG audio file + Size5304795 + Total Time235232 + Disc Number1 + Disc Count1 + Track Number4 + Track Count12 + Year2005 + Date Modified2011-06-27T15:33:48Z + Date Added2011-06-27T15:44:38Z + Bit Rate176 + Sample Rate44100 + CommentsAmazon.com Song ID: 201157126 + Play Count2 + Play Date3392225173 + Play Date UTC2011-06-29T15:16:13Z + Artwork Count1 + Persistent ID8DE532CB7205F05F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Andy%20McKee/Art%20of%20Motion/04%20For%20My%20Father.mp3 + File Folder Count4 + Library Folder Count1 + + 8680 + + Track ID8680 + NamePractice Is Perfect + ArtistAndy McKee + Album ArtistAndy McKee + AlbumArt of Motion + GenreFolk + KindMPEG audio file + Size4472713 + Total Time179983 + Disc Number1 + Disc Count1 + Track Number5 + Track Count12 + Year2005 + Date Modified2011-06-27T15:29:14Z + Date Added2011-06-27T15:44:38Z + Bit Rate193 + Sample Rate44100 + CommentsAmazon.com Song ID: 201157127 + Play Count1 + Play Date3392055612 + Play Date UTC2011-06-27T16:10:12Z + Artwork Count1 + Persistent ID90872DD970DD4F2B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Andy%20McKee/Art%20of%20Motion/05%20Practice%20Is%20Perfect.mp3 + File Folder Count4 + Library Folder Count1 + + 8682 + + Track ID8682 + NameShanghai + ArtistAndy McKee + Album ArtistAndy McKee + AlbumArt of Motion + GenreFolk + KindMPEG audio file + Size6191160 + Total Time253100 + Disc Number1 + Disc Count1 + Track Number6 + Track Count12 + Year2005 + Date Modified2011-06-27T15:35:09Z + Date Added2011-06-27T15:44:38Z + Bit Rate192 + Sample Rate44100 + CommentsAmazon.com Song ID: 201157128 + Play Count1 + Play Date3392055866 + Play Date UTC2011-06-27T16:14:26Z + Artwork Count1 + Persistent ID61CEA1B2F24892A9 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Andy%20McKee/Art%20of%20Motion/06%20Shanghai.mp3 + File Folder Count4 + Library Folder Count1 + + 8684 + + Track ID8684 + NameInto the Ocean + ArtistAndy McKee + Album ArtistAndy McKee + AlbumArt of Motion + GenreFolk + KindMPEG audio file + Size6460125 + Total Time232124 + Disc Number1 + Disc Count1 + Track Number7 + Track Count12 + Year2005 + Date Modified2011-06-27T15:28:14Z + Date Added2011-06-27T15:44:38Z + Bit Rate218 + Sample Rate44100 + CommentsAmazon.com Song ID: 201157129 + Play Count1 + Play Date3392056098 + Play Date UTC2011-06-27T16:18:18Z + Artwork Count1 + Persistent ID9091EB7562C6C2C6 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Andy%20McKee/Art%20of%20Motion/07%20Into%20the%20Ocean.mp3 + File Folder Count4 + Library Folder Count1 + + 8686 + + Track ID8686 + NameNocturne + ArtistAndy McKee + Album ArtistAndy McKee + AlbumArt of Motion + GenreFolk + KindMPEG audio file + Size4792494 + Total Time193071 + Disc Number1 + Disc Count1 + Track Number8 + Track Count12 + Year2005 + Date Modified2011-06-27T15:33:13Z + Date Added2011-06-27T15:44:39Z + Bit Rate194 + Sample Rate44100 + CommentsAmazon.com Song ID: 201157130 + Play Count2 + Play Date3396794605 + Play Date UTC2011-08-21T12:33:25Z + Artwork Count1 + Persistent IDFE1EDB84ADE4154B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Andy%20McKee/Art%20of%20Motion/08%20Nocturne.mp3 + File Folder Count4 + Library Folder Count1 + + 8688 + + Track ID8688 + NameHeather's Song + ArtistAndy McKee + Album ArtistAndy McKee + AlbumArt of Motion + GenreFolk + KindMPEG audio file + Size6001604 + Total Time204355 + Disc Number1 + Disc Count1 + Track Number9 + Track Count12 + Year2005 + Date Modified2011-06-27T15:31:46Z + Date Added2011-06-27T15:44:39Z + Bit Rate230 + Sample Rate44100 + CommentsAmazon.com Song ID: 201157131 + Play Count2 + Play Date3396794183 + Play Date UTC2011-08-21T12:26:23Z + Artwork Count1 + Persistent ID479A1A507AE4D452 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Andy%20McKee/Art%20of%20Motion/09%20Heather's%20Song.mp3 + File Folder Count4 + Library Folder Count1 + + 8690 + + Track ID8690 + NameSamus' Stardrive + ArtistAndy McKee + Album ArtistAndy McKee + AlbumArt of Motion + GenreFolk + KindMPEG audio file + Size4066807 + Total Time161880 + Disc Number1 + Disc Count1 + Track Number10 + Track Count12 + Year2005 + Date Modified2011-06-27T15:30:31Z + Date Added2011-06-27T15:44:39Z + Bit Rate195 + Sample Rate44100 + CommentsAmazon.com Song ID: 201157132 + Play Count1 + Play Date3392056657 + Play Date UTC2011-06-27T16:27:37Z + Artwork Count1 + Persistent IDF609E8F19EA6C8F2 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Andy%20McKee/Art%20of%20Motion/10%20Samus'%20Stardrive.mp3 + File Folder Count4 + Library Folder Count1 + + 8692 + + Track ID8692 + NameKeys To the Hovercar + ArtistAndy McKee + Album ArtistAndy McKee + AlbumArt of Motion + GenreFolk + KindMPEG audio file + Size6145040 + Total Time228884 + Disc Number1 + Disc Count1 + Track Number11 + Track Count12 + Year2005 + Date Modified2011-06-27T15:31:01Z + Date Added2011-06-27T15:44:39Z + Bit Rate210 + Sample Rate44100 + CommentsAmazon.com Song ID: 201157133 + Play Count2 + Play Date3396794412 + Play Date UTC2011-08-21T12:30:12Z + Artwork Count1 + Persistent IDDA6AB185AF1B03FB + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Andy%20McKee/Art%20of%20Motion/11%20Keys%20To%20the%20Hovercar.mp3 + File Folder Count4 + Library Folder Count1 + + 8694 + + Track ID8694 + NameRylynn + ArtistAndy McKee + Album ArtistAndy McKee + AlbumArt of Motion + GenreFolk + KindMPEG audio file + Size7684268 + Total Time313756 + Disc Number1 + Disc Count1 + Track Number12 + Track Count12 + Year2005 + Date Modified2011-06-27T15:32:44Z + Date Added2011-06-27T15:44:39Z + Bit Rate193 + Sample Rate44100 + CommentsAmazon.com Song ID: 201157134 + Play Count1 + Play Date3392057199 + Play Date UTC2011-06-27T16:36:39Z + Artwork Count1 + Persistent ID5D9866204E9AF307 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Andy%20McKee/Art%20of%20Motion/12%20Rylynn.mp3 + File Folder Count4 + Library Folder Count1 + + 8696 + + Track ID8696 + NameDrive My Car + ArtistThe Beatles + ComposerLennon/McCartney + AlbumRubber Soul + GenreRock + KindMPEG audio file + Size2418873 + Total Time150360 + Disc Number1 + Disc Count1 + Track Number1 + Track Count14 + Year1965 + Date Modified2009-11-09T09:18:33Z + Date Added2011-07-09T05:59:00Z + Bit Rate128 + Sample Rate44100 + Play Count2 + Play Date3471345286 + Play Date UTC2013-12-31T09:04:46Z + Normalization1972 + Artwork Count1 + Sort ArtistBeatles + Persistent ID05F5D8EE43145A0C + Track TypeFile + File Type1297106739 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Rubber%20Soul/01%20Drive%20My%20Car.mp3 + File Folder Count4 + Library Folder Count1 + + 8698 + + Track ID8698 + NameNorwegian Wood (This Bird Has Flown) + ArtistThe Beatles + ComposerLennon/McCartney + AlbumRubber Soul + GenreRock + KindMPEG audio file + Size2021417 + Total Time125518 + Disc Number1 + Disc Count1 + Track Number2 + Track Count14 + Year1965 + Date Modified2009-11-09T09:18:34Z + Date Added2011-07-09T05:59:00Z + Bit Rate128 + Sample Rate44100 + Play Count2 + Play Date3427389686 + Play Date UTC2012-08-09T15:11:26Z + Normalization948 + Artwork Count1 + Sort ArtistBeatles + Persistent ID89620F6594133BC6 + Track TypeFile + File Type1297106739 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Rubber%20Soul/02%20Norwegian%20Wood%20(This%20Bird%20Has%20Flown).mp3 + File Folder Count4 + Library Folder Count1 + + 8700 + + Track ID8700 + NameYou Won't See Me + ArtistThe Beatles + ComposerLennon/McCartney + AlbumRubber Soul + GenreRock + KindMPEG audio file + Size3256049 + Total Time202684 + Disc Number1 + Disc Count1 + Track Number3 + Track Count14 + Year1965 + Date Modified2009-11-09T09:18:34Z + Date Added2011-07-09T05:59:00Z + Bit Rate128 + Sample Rate44100 + Play Count2 + Play Date3427389889 + Play Date UTC2012-08-09T15:14:49Z + Normalization2414 + Artwork Count1 + Sort ArtistBeatles + Persistent IDFBC564B199EC7473 + Track TypeFile + File Type1297106739 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Rubber%20Soul/03%20You%20Won't%20See%20Me.mp3 + File Folder Count4 + Library Folder Count1 + + 8702 + + Track ID8702 + NameNowhere Man + ArtistThe Beatles + ComposerLennon/McCartney + AlbumRubber Soul + GenreRock + KindMPEG audio file + Size2643316 + Total Time164388 + Disc Number1 + Disc Count1 + Track Number4 + Track Count14 + Year1965 + Date Modified2009-11-09T09:18:35Z + Date Added2011-07-09T05:59:00Z + Bit Rate128 + Sample Rate44100 + Play Count1 + Play Date3396793474 + Play Date UTC2011-08-21T12:14:34Z + Normalization2196 + Artwork Count1 + Sort ArtistBeatles + Persistent IDCCABA736BD0FE16E + Track TypeFile + File Type1297106739 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Rubber%20Soul/04%20Nowhere%20Man.mp3 + File Folder Count4 + Library Folder Count1 + + 8704 + + Track ID8704 + NameThink For Yourself + ArtistThe Beatles + ComposerHarrison + AlbumRubber Soul + GenreRock + KindMPEG audio file + Size2243746 + Total Time139415 + Disc Number1 + Disc Count1 + Track Number5 + Track Count14 + Year1965 + Date Modified2009-11-09T09:18:36Z + Date Added2011-07-09T05:59:00Z + Bit Rate128 + Sample Rate44100 + Play Count1 + Play Date3396793613 + Play Date UTC2011-08-21T12:16:53Z + Normalization1563 + Artwork Count1 + Sort ArtistBeatles + Persistent ID153EB33E488EAF61 + Track TypeFile + File Type1297106739 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Rubber%20Soul/05%20Think%20For%20Yourself.mp3 + File Folder Count4 + Library Folder Count1 + + 8706 + + Track ID8706 + NameThe Word + ArtistThe Beatles + ComposerLennon/McCartney + AlbumRubber Soul + GenreRock + KindMPEG audio file + Size2633700 + Total Time163787 + Disc Number1 + Disc Count1 + Track Number6 + Track Count14 + Year1965 + Date Modified2009-11-09T09:18:36Z + Date Added2011-07-09T05:59:00Z + Bit Rate128 + Sample Rate44100 + Play Count1 + Play Date3396793777 + Play Date UTC2011-08-21T12:19:37Z + Normalization3304 + Artwork Count1 + Sort ArtistBeatles + Sort NameWord + Persistent IDB50E4C127A2335D0 + Track TypeFile + File Type1297106739 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Rubber%20Soul/06%20The%20Word.mp3 + File Folder Count4 + Library Folder Count1 + + 8708 + + Track ID8708 + NameMichelle + ArtistThe Beatles + ComposerLennon/McCartney + AlbumRubber Soul + GenreRock + KindMPEG audio file + Size2612384 + Total Time162455 + Disc Number1 + Disc Count1 + Track Number7 + Track Count14 + Year1965 + Date Modified2009-11-09T09:18:37Z + Date Added2011-07-09T05:59:00Z + Bit Rate128 + Sample Rate44100 + Play Count1 + Play Date3396793184 + Play Date UTC2011-08-21T12:09:44Z + Normalization482 + Artwork Count1 + Sort ArtistBeatles + Persistent IDD003490AE18ABDFA + Track TypeFile + File Type1297106739 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Rubber%20Soul/07%20Michelle.mp3 + File Folder Count4 + Library Folder Count1 + + 8710 + + Track ID8710 + NameWhat Goes On + ArtistThe Beatles + ComposerLennon/McCartney/Starkey + AlbumRubber Soul + GenreRock + KindMPEG audio file + Size2747396 + Total Time170893 + Disc Number1 + Disc Count1 + Track Number8 + Track Count14 + Year1965 + Date Modified2009-11-09T09:18:38Z + Date Added2011-07-09T05:59:01Z + Bit Rate128 + Sample Rate44100 + Normalization1163 + Artwork Count1 + Sort ArtistBeatles + Persistent IDEBC09052474AFBC9 + Track TypeFile + File Type1297106739 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Rubber%20Soul/08%20What%20Goes%20On.mp3 + File Folder Count4 + Library Folder Count1 + + 8712 + + Track ID8712 + NameGirl + ArtistThe Beatles + ComposerLennon/McCartney + AlbumRubber Soul + GenreRock + KindMPEG audio file + Size2476543 + Total Time153965 + Disc Number1 + Disc Count1 + Track Number9 + Track Count14 + Year1965 + Date Modified2009-11-09T09:18:38Z + Date Added2011-07-09T05:59:01Z + Bit Rate128 + Sample Rate44100 + Normalization733 + Artwork Count1 + Sort ArtistBeatles + Persistent ID481D914672ED86E4 + Track TypeFile + File Type1297106739 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Rubber%20Soul/09%20Girl.mp3 + File Folder Count4 + Library Folder Count1 + + 8714 + + Track ID8714 + NameI'm Looking Through You + ArtistThe Beatles + ComposerLennon/McCartney + AlbumRubber Soul + GenreRock + KindMPEG audio file + Size2380014 + Total Time147931 + Disc Number1 + Disc Count1 + Track Number10 + Track Count14 + Year1965 + Date Modified2009-11-09T09:18:39Z + Date Added2011-07-09T05:59:01Z + Bit Rate128 + Sample Rate44100 + Normalization1212 + Artwork Count1 + Sort ArtistBeatles + Persistent ID7F3F89FBE2052B96 + Track TypeFile + File Type1297106739 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Rubber%20Soul/10%20I'm%20Looking%20Through%20You.mp3 + File Folder Count4 + Library Folder Count1 + + 8716 + + Track ID8716 + NameIn My Life + ArtistThe Beatles + ComposerLennon/McCartney + AlbumRubber Soul + GenreRock + KindMPEG audio file + Size2382091 + Total Time148062 + Disc Number1 + Disc Count1 + Track Number11 + Track Count14 + Year1965 + Date Modified2009-11-09T09:18:40Z + Date Added2011-07-09T05:59:01Z + Bit Rate128 + Sample Rate44100 + Normalization919 + Artwork Count1 + Sort ArtistBeatles + Persistent IDC11C418313184541 + Track TypeFile + File Type1297106739 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Rubber%20Soul/11%20In%20My%20Life.mp3 + File Folder Count4 + Library Folder Count1 + + 8718 + + Track ID8718 + NameWait + ArtistThe Beatles + ComposerLennon/McCartney + AlbumRubber Soul + GenreRock + KindMPEG audio file + Size2206124 + Total Time137064 + Disc Number1 + Disc Count1 + Track Number12 + Track Count14 + Year1965 + Date Modified2009-11-09T09:18:40Z + Date Added2011-07-09T05:59:01Z + Bit Rate128 + Sample Rate44100 + Normalization1542 + Artwork Count1 + Sort ArtistBeatles + Persistent IDCBC42E63050D4165 + Track TypeFile + File Type1297106739 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Rubber%20Soul/12%20Wait.mp3 + File Folder Count4 + Library Folder Count1 + + 8720 + + Track ID8720 + NameIf I Needed Someone + ArtistThe Beatles + ComposerHarrison + AlbumRubber Soul + GenreRock + KindMPEG audio file + Size2316055 + Total Time143934 + Disc Number1 + Disc Count1 + Track Number13 + Track Count14 + Year1965 + Date Modified2009-11-09T09:18:41Z + Date Added2011-07-09T05:59:01Z + Bit Rate128 + Sample Rate44100 + Normalization1709 + Artwork Count1 + Sort ArtistBeatles + Persistent IDEF687F493E5A2405 + Track TypeFile + File Type1297106739 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Rubber%20Soul/13%20If%20I%20Needed%20Someone.mp3 + File Folder Count4 + Library Folder Count1 + + 8722 + + Track ID8722 + NameRun For Your Life + ArtistThe Beatles + ComposerLennon/McCartney + AlbumRubber Soul + GenreRock + KindMPEG audio file + Size2235394 + Total Time138893 + Disc Number1 + Disc Count1 + Track Number14 + Track Count14 + Year1965 + Date Modified2009-11-09T09:18:41Z + Date Added2011-07-09T05:59:01Z + Bit Rate128 + Sample Rate44100 + Normalization1850 + Artwork Count1 + Sort ArtistBeatles + Persistent IDFD35D6C53B2847A2 + Track TypeFile + File Type1297106739 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Rubber%20Soul/14%20Run%20For%20Your%20Life.mp3 + File Folder Count4 + Library Folder Count1 + + 8724 + + Track ID8724 + NameTuning Notes + ArtistTom Kolb + AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask + GenreSpoken & Audio + KindAAC audio file + Size1390696 + Total Time45640 + Track Number1 + Track Count94 + Year2005 + Date Modified2011-07-09T10:41:49Z + Date Added2011-07-09T10:30:05Z + Bit Rate256 + Sample Rate44100 + Normalization665 + Artwork Count1 + Persistent ID9B475199D9741F7B + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/01%20Tuning%20Notes.m4a + File Folder Count4 + Library Folder Count1 + + 8726 + + Track ID8726 + NameThe Fretboard + ArtistTom Kolb + AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask + GenreSpoken & Audio + KindAAC audio file + Size2290606 + Total Time72506 + Track Number2 + Track Count94 + Year2005 + Date Modified2011-07-09T10:41:49Z + Date Added2011-07-09T10:30:17Z + Bit Rate256 + Sample Rate44100 + Normalization704 + Artwork Count1 + Sort NameFretboard + Persistent IDFB33314D9C02CFA4 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/02%20The%20Fretboard.m4a + File Folder Count4 + Library Folder Count1 + + 8728 + + Track ID8728 + NameTheory Basics - + ArtistTom Kolb + AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask + GenreSpoken & Audio + KindAAC audio file + Size1026629 + Total Time29253 + Track Number3 + Track Count94 + Year2005 + Date Modified2011-07-09T10:41:48Z + Date Added2011-07-09T10:30:32Z + Bit Rate256 + Sample Rate44100 + Normalization879 + Artwork Count1 + Persistent ID72DAC1AF30B2DAF4 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/03%20Theory%20Basics%20-.m4a + File Folder Count4 + Library Folder Count1 + + 8730 + + Track ID8730 + NameTheory Basics - + ArtistTom Kolb + AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask + GenreSpoken & Audio + KindAAC audio file + Size975468 + Total Time25506 + Track Number4 + Track Count94 + Year2005 + Date Modified2011-07-09T10:41:48Z + Date Added2011-07-09T10:30:40Z + Bit Rate256 + Sample Rate44100 + Normalization801 + Artwork Count1 + Persistent ID7571613DFD65B006 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/04%20Theory%20Basics%20-.m4a + File Folder Count4 + Library Folder Count1 + + 8732 + + Track ID8732 + NameTheory Basics - + ArtistTom Kolb + AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask + GenreSpoken & Audio + KindAAC audio file + Size797935 + Total Time20386 + Track Number5 + Track Count94 + Year2005 + Date Modified2011-07-09T10:41:48Z + Date Added2011-07-09T10:30:47Z + Bit Rate256 + Sample Rate44100 + Normalization742 + Artwork Count1 + Persistent ID9744E2920CFE4F79 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/05%20Theory%20Basics%20-.m4a + File Folder Count4 + Library Folder Count1 + + 8734 + + Track ID8734 + NameTheory Basics - + ArtistTom Kolb + AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask + GenreSpoken & Audio + KindAAC audio file + Size503145 + Total Time10760 + Track Number6 + Track Count94 + Year2005 + Date Modified2011-07-09T10:41:48Z + Date Added2011-07-09T10:30:55Z + Bit Rate256 + Sample Rate44100 + Normalization929 + Artwork Count1 + Persistent ID79ACC8D55343294B + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/06%20Theory%20Basics%20-.m4a + File Folder Count4 + Library Folder Count1 + + 8736 + + Track ID8736 + NameScales And Key Signatures - Figure 2 + ArtistTom Kolb + AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask + GenreSpoken & Audio + KindAAC audio file + Size552553 + Total Time15000 + Track Number7 + Track Count94 + Year2005 + Date Modified2011-07-09T10:41:48Z + Date Added2011-07-09T10:30:58Z + Bit Rate256 + Sample Rate44100 + Normalization600 + Artwork Count1 + Persistent IDD628F98C52F6E522 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/07%20Scales%20And%20Key%20Signatures%20-%20Figure%202.m4a + File Folder Count4 + Library Folder Count1 + + 8738 + + Track ID8738 + NameScales And Key Signatures - Figure 4 + ArtistTom Kolb + AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask + GenreSpoken & Audio + KindAAC audio file + Size536455 + Total Time14000 + Track Number8 + Track Count94 + Year2005 + Date Modified2011-07-09T10:41:48Z + Date Added2011-07-09T10:31:03Z + Bit Rate256 + Sample Rate44100 + Normalization615 + Artwork Count1 + Persistent ID87FA5C09C734B7F2 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/08%20Scales%20And%20Key%20Signatures%20-%20Figure%204.m4a + File Folder Count4 + Library Folder Count1 + + 8740 + + Track ID8740 + NameScales And Key Signatures - Figure 5 + ArtistTom Kolb + AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask + GenreSpoken & Audio + KindAAC audio file + Size549443 + Total Time13506 + Track Number9 + Track Count94 + Year2005 + Date Modified2011-07-09T10:41:48Z + Date Added2011-07-09T10:31:08Z + Bit Rate256 + Sample Rate44100 + Normalization470 + Artwork Count1 + Persistent IDD08C733E48872B67 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/09%20Scales%20And%20Key%20Signatures%20-%20Figure%205.m4a + File Folder Count4 + Library Folder Count1 + + 8742 + + Track ID8742 + NameScales And Key Signatures - Figure 10 + ArtistTom Kolb + AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask + GenreSpoken & Audio + KindAAC audio file + Size433170 + Total Time11253 + Track Number10 + Track Count94 + Year2005 + Date Modified2011-07-09T10:41:48Z + Date Added2011-07-09T10:31:14Z + Bit Rate256 + Sample Rate44100 + Normalization608 + Artwork Count1 + Persistent ID4302454E373A094F + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/10%20Scales%20And%20Key%20Signatures%20-%20Figure%2010.m4a + File Folder Count4 + Library Folder Count1 + + 8744 + + Track ID8744 + NameScales And Key Signatures - Figure 11 + ArtistTom Kolb + AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask + GenreSpoken & Audio + KindAAC audio file + Size453908 + Total Time12000 + Track Number11 + Track Count94 + Year2005 + Date Modified2011-07-09T10:41:48Z + Date Added2011-07-09T10:31:18Z + Bit Rate256 + Sample Rate44100 + Normalization648 + Artwork Count1 + Persistent ID611CFB4F48F456DF + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/11%20Scales%20And%20Key%20Signatures%20-%20Figure%2011.m4a + File Folder Count4 + Library Folder Count1 + + 8746 + + Track ID8746 + NameScales And Key Signatures - Figure 13 - C Major Scale, A Minor Scale + ArtistTom Kolb + AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask + GenreSpoken & Audio + KindAAC audio file + Size706290 + Total Time17386 + Track Number12 + Track Count94 + Year2005 + Date Modified2011-07-09T10:41:48Z + Date Added2011-07-09T10:31:22Z + Bit Rate256 + Sample Rate44100 + Normalization665 + Artwork Count1 + Persistent IDAC76410C2785EC13 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/12%20Scales%20And%20Key%20Signatures%20-%20Figure%2013%20-%20C%20Major%20Scale,%20A%20Minor%20Scale.m4a + File Folder Count4 + Library Folder Count1 + + 8748 + + Track ID8748 + NameIntervals - Figure 7 + ArtistTom Kolb + AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask + GenreSpoken & Audio + KindAAC audio file + Size376008 + Total Time10000 + Track Number13 + Track Count94 + Year2005 + Date Modified2011-07-09T10:41:48Z + Date Added2011-07-09T10:31:29Z + Bit Rate256 + Sample Rate44100 + Normalization700 + Artwork Count1 + Persistent IDA4BA82D5804B33CA + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/13%20Intervals%20-%20Figure%207.m4a + File Folder Count4 + Library Folder Count1 + + 8750 + + Track ID8750 + NameEar Training Drill #1 - Intervals - Figure 10 + ArtistTom Kolb + AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask + GenreSpoken & Audio + KindAAC audio file + Size1977170 + Total Time68000 + Track Number14 + Track Count94 + Year2005 + Date Modified2011-07-09T10:41:48Z + Date Added2011-07-09T10:31:32Z + Bit Rate256 + Sample Rate44100 + Normalization824 + Artwork Count1 + Persistent ID9192FEF71D420F05 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/14%20Ear%20Training%20Drill%20%231%20-%20Intervals%20-%20Figure%2010.m4a + File Folder Count4 + Library Folder Count1 + + 8752 + + Track ID8752 + NameEar Training Drill #1 - Intervals - Figure 11 + ArtistTom Kolb + AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask + GenreSpoken & Audio + KindAAC audio file + Size3208540 + Total Time111000 + Track Number15 + Track Count94 + Year2005 + Date Modified2011-07-09T10:41:47Z + Date Added2011-07-09T10:31:46Z + Bit Rate256 + Sample Rate44100 + Normalization851 + Artwork Count1 + Persistent ID12F66A6C556B6E1E + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/15%20Ear%20Training%20Drill%20%231%20-%20Intervals%20-%20Figure%2011.m4a + File Folder Count4 + Library Folder Count1 + + 8754 + + Track ID8754 + NameEar Training Drill #1 - Intervals - Figure 12 + ArtistTom Kolb + AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask + GenreSpoken & Audio + KindAAC audio file + Size3263976 + Total Time113000 + Track Number16 + Track Count94 + Year2005 + Date Modified2011-07-09T10:41:47Z + Date Added2011-07-09T10:32:06Z + Bit Rate256 + Sample Rate44100 + Normalization856 + Artwork Count1 + Persistent ID3E2AAFE7F3B1BA5D + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/16%20Ear%20Training%20Drill%20%231%20-%20Intervals%20-%20Figure%2012.m4a + File Folder Count4 + Library Folder Count1 + + 8756 + + Track ID8756 + NameEar Training Drill #1 - Intervals - Figure 13 + ArtistTom Kolb + AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask + GenreSpoken & Audio + KindAAC audio file + Size3200688 + Total Time112000 + Track Number17 + Track Count94 + Year2005 + Date Modified2011-07-09T10:41:47Z + Date Added2011-07-09T10:32:26Z + Bit Rate256 + Sample Rate44100 + Normalization777 + Artwork Count1 + Persistent IDAC8A247FAF6A3B39 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/17%20Ear%20Training%20Drill%20%231%20-%20Intervals%20-%20Figure%2013.m4a + File Folder Count4 + Library Folder Count1 + + 8758 + + Track ID8758 + NameEar Training Drill #2 - Triads - Fig. 14A + ArtistTom Kolb + AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask + GenreSpoken & Audio + KindAAC audio file + Size4268092 + Total Time152000 + Track Number18 + Track Count94 + Year2005 + Date Modified2011-07-09T10:41:47Z + Date Added2011-07-09T10:32:44Z + Bit Rate256 + Sample Rate44100 + Normalization765 + Artwork Count1 + Persistent ID0D9E449DF39B937B + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/18%20Ear%20Training%20Drill%20%232%20-%20Triads%20-%20Fig.%2014A.m4a + File Folder Count4 + Library Folder Count1 + + 8760 + + Track ID8760 + NameEar Training Drill #2 - Triads - Fig. 14B + ArtistTom Kolb + AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask + GenreSpoken & Audio + KindAAC audio file + Size4260025 + Total Time154253 + Track Number19 + Track Count94 + Year2005 + Date Modified2011-07-09T10:41:47Z + Date Added2011-07-09T10:33:08Z + Bit Rate256 + Sample Rate44100 + Normalization739 + Artwork Count1 + Persistent ID7DF1293FAC79C693 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/19%20Ear%20Training%20Drill%20%232%20-%20Triads%20-%20Fig.%2014B.m4a + File Folder Count4 + Library Folder Count1 + + 8762 + + Track ID8762 + NameEar Training Drill #2 - Triads - Fig 14C + ArtistTom Kolb + AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask + GenreSpoken & Audio + KindAAC audio file + Size4151957 + Total Time148253 + Track Number20 + Track Count94 + Year2005 + Date Modified2011-07-09T10:41:46Z + Date Added2011-07-09T10:33:31Z + Bit Rate256 + Sample Rate44100 + Normalization850 + Artwork Count1 + Persistent IDBBEC4D1263D76845 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/20%20Ear%20Training%20Drill%20%232%20-%20Triads%20-%20Fig%2014C.m4a + File Folder Count4 + Library Folder Count1 + + 8764 + + Track ID8764 + NameDiatonic Triads - Fig. 1A + ArtistTom Kolb + AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask + GenreSpoken & Audio + KindAAC audio file + Size1360838 + Total Time38000 + Track Number21 + Track Count94 + Year2005 + Date Modified2011-07-09T10:41:46Z + Date Added2011-07-09T10:33:53Z + Bit Rate256 + Sample Rate44100 + Normalization884 + Artwork Count1 + Persistent IDBE0A17C56FFED72F + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/21%20Diatonic%20Triads%20-%20Fig.%201A.m4a + File Folder Count4 + Library Folder Count1 + + 8766 + + Track ID8766 + NameDiatonic Seventh Chords - FIgs. 4a-4b + ArtistTom Kolb + AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask + GenreSpoken & Audio + KindAAC audio file + Size1060703 + Total Time28506 + Track Number22 + Track Count94 + Year2005 + Date Modified2011-07-09T10:41:46Z + Date Added2011-07-09T10:34:00Z + Bit Rate256 + Sample Rate44100 + Normalization1218 + Artwork Count1 + Persistent ID19BEA90484D1CF2E + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/22%20Diatonic%20Seventh%20Chords%20-%20FIgs.%204a-4b.m4a + File Folder Count4 + Library Folder Count1 + + 8768 + + Track ID8768 + NameMinor Scale Triads - FIg 1a-1c + ArtistTom Kolb + AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask + GenreSpoken & Audio + KindAAC audio file + Size1421809 + Total Time40000 + Track Number23 + Track Count94 + Year2005 + Date Modified2011-07-09T10:41:46Z + Date Added2011-07-09T10:34:07Z + Bit Rate256 + Sample Rate44100 + Normalization989 + Artwork Count1 + Persistent IDB64554237DECC5EC + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/23%20Minor%20Scale%20Triads%20-%20FIg%201a-1c.m4a + File Folder Count4 + Library Folder Count1 + + 8770 + + Track ID8770 + NameMinor Scale Seventh Chords - FIg 5 + ArtistTom Kolb + AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask + GenreSpoken & Audio + KindAAC audio file + Size607216 + Total Time14600 + Track Number24 + Track Count94 + Year2005 + Date Modified2011-07-09T10:41:46Z + Date Added2011-07-09T10:34:14Z + Bit Rate256 + Sample Rate44100 + Normalization905 + Artwork Count1 + Persistent ID446BE9B0625D5516 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/24%20Minor%20Scale%20Seventh%20Chords%20-%20FIg%205.m4a + File Folder Count4 + Library Folder Count1 + + 8772 + + Track ID8772 + NameMinor Scale Seventh Chords - FIg 6 + ArtistTom Kolb + AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask + GenreSpoken & Audio + KindAAC audio file + Size712665 + Total Time17600 + Track Number25 + Track Count94 + Year2005 + Date Modified2011-07-09T10:41:46Z + Date Added2011-07-09T10:34:19Z + Bit Rate256 + Sample Rate44100 + Normalization1415 + Artwork Count1 + Persistent ID7EC0B9B6D454A26E + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/25%20Minor%20Scale%20Seventh%20Chords%20-%20FIg%206.m4a + File Folder Count4 + Library Folder Count1 + + 8774 + + Track ID8774 + NameMinor Scale Seventh Chords - Ear Training Drill #3 + ArtistTom Kolb + AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask + GenreSpoken & Audio + KindAAC audio file + Size6491690 + Total Time200760 + Track Number26 + Track Count94 + Year2005 + Date Modified2011-07-09T10:41:46Z + Date Added2011-07-09T10:34:23Z + Bit Rate256 + Sample Rate44100 + Normalization692 + Artwork Count1 + Persistent ID7511C9BA33D2D183 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/26%20Minor%20Scale%20Seventh%20Chords%20-%20Ear%20Training%20Drill%20%233.m4a + File Folder Count4 + Library Folder Count1 + + 8776 + + Track ID8776 + NameMajor Key Centers - Fig 1 + ArtistTom Kolb + AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask + GenreSpoken & Audio + KindAAC audio file + Size770380 + Total Time19506 + Track Number27 + Track Count94 + Year2005 + Date Modified2011-07-09T10:41:45Z + Date Added2011-07-09T10:34:50Z + Bit Rate256 + Sample Rate44100 + Normalization688 + Artwork Count1 + Persistent ID24F0E93957896423 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/27%20Major%20Key%20Centers%20-%20Fig%201.m4a + File Folder Count4 + Library Folder Count1 + + 8778 + + Track ID8778 + NameMinor Key Centers - Fig. 4 + ArtistTom Kolb + AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask + GenreSpoken & Audio + KindAAC audio file + Size867756 + Total Time21573 + Track Number28 + Track Count94 + Year2005 + Date Modified2011-07-09T10:41:45Z + Date Added2011-07-09T10:34:55Z + Bit Rate256 + Sample Rate44100 + Normalization817 + Artwork Count1 + Persistent IDC7F322FE07D29AC5 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/28%20Minor%20Key%20Centers%20-%20Fig.%204.m4a + File Folder Count4 + Library Folder Count1 + + 8780 + + Track ID8780 + NameMinor Key Centers - Fig. 6 + ArtistTom Kolb + AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask + GenreSpoken & Audio + KindAAC audio file + Size885686 + Total Time22426 + Track Number29 + Track Count94 + Year2005 + Date Modified2011-07-09T10:41:45Z + Date Added2011-07-09T10:35:00Z + Bit Rate256 + Sample Rate44100 + Normalization1044 + Artwork Count1 + Persistent ID4A29087CF9182C99 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/29%20Minor%20Key%20Centers%20-%20Fig.%206.m4a + File Folder Count4 + Library Folder Count1 + + 8782 + + Track ID8782 + NameModulation - Fig. 9, Fig 10 + ArtistTom Kolb + AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask + GenreSpoken & Audio + KindAAC audio file + Size1359190 + Total Time38000 + Track Number30 + Track Count94 + Year2005 + Date Modified2011-07-09T10:41:45Z + Date Added2011-07-09T10:35:05Z + Bit Rate256 + Sample Rate44100 + Normalization844 + Artwork Count1 + Persistent IDD88FA7C67B282481 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/30%20Modulation%20-%20Fig.%209,%20Fig%2010.m4a + File Folder Count4 + Library Folder Count1 + + 8784 + + Track ID8784 + NameModal Interchange Fig. 12 + ArtistTom Kolb + AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask + GenreSpoken & Audio + KindAAC audio file + Size871300 + Total Time22426 + Track Number31 + Track Count94 + Year2005 + Date Modified2011-07-09T10:41:45Z + Date Added2011-07-09T10:35:12Z + Bit Rate256 + Sample Rate44100 + Normalization836 + Artwork Count1 + Persistent ID5478AD798D217957 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/31%20Modal%20Interchange%20Fig.%2012.m4a + File Folder Count4 + Library Folder Count1 + + 8786 + + Track ID8786 + NameModal Interchange Fig. 14 - Seventh Chords + ArtistTom Kolb + AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask + GenreSpoken & Audio + KindAAC audio file + Size1334430 + Total Time32546 + Track Number32 + Track Count94 + Year2005 + Date Modified2011-07-09T10:41:45Z + Date Added2011-07-09T10:35:17Z + Bit Rate256 + Sample Rate44100 + Normalization960 + Artwork Count1 + Persistent ID96D6DB3D989A3D3F + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/32%20Modal%20Interchange%20Fig.%2014%20-%20Seventh%20Chords.m4a + File Folder Count4 + Library Folder Count1 + + 8788 + + Track ID8788 + NameModal Interchange Fig. 15 + ArtistTom Kolb + AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask + GenreSpoken & Audio + KindAAC audio file + Size1225666 + Total Time29400 + Track Number33 + Track Count94 + Year2005 + Date Modified2011-07-09T10:41:45Z + Date Added2011-07-09T10:35:24Z + Bit Rate256 + Sample Rate44100 + Normalization799 + Artwork Count1 + Persistent ID30427BC16BB5314F + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/33%20Modal%20Interchange%20Fig.%2015.m4a + File Folder Count4 + Library Folder Count1 + + 8790 + + Track ID8790 + NameEar Training Drill # 4 - Major Or Minor Chord Progressions, Modal Interchange + ArtistTom Kolb + AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask + GenreSpoken & Audio + KindAAC audio file + Size6915043 + Total Time206000 + Track Number34 + Track Count94 + Year2005 + Date Modified2011-07-09T10:41:44Z + Date Added2011-07-09T10:35:30Z + Bit Rate256 + Sample Rate44100 + Normalization925 + Artwork Count1 + Persistent IDC7341F07194C351A + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/34%20Ear%20Training%20Drill%20%23%204%20-%20Major%20Or%20Minor%20Chord%20Progressions,%20Modal%20Interchange.m4a + File Folder Count4 + Library Folder Count1 + + 8792 + + Track ID8792 + NameThe 12-Bar Blues Progression - Fig. 1 + ArtistTom Kolb + AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask + GenreSpoken & Audio + KindAAC audio file + Size2390417 + Total Time60933 + Track Number35 + Track Count94 + Year2005 + Date Modified2011-07-09T10:41:44Z + Date Added2011-07-09T10:35:55Z + Bit Rate256 + Sample Rate44100 + Normalization885 + Artwork Count1 + Sort Name12-Bar Blues Progression - Fig. 1 + Persistent IDEA66800D49E9D4A9 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/35%20The%2012-Bar%20Blues%20Progression%20-%20Fig.%201.m4a + File Folder Count4 + Library Folder Count1 + + 8794 + + Track ID8794 + NameThe 12-Bar Blues Progression - Fig. 2 + ArtistTom Kolb + AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask + GenreSpoken & Audio + KindAAC audio file + Size761565 + Total Time16066 + Track Number36 + Track Count94 + Year2005 + Date Modified2011-07-09T10:41:44Z + Date Added2011-07-09T10:36:04Z + Bit Rate256 + Sample Rate44100 + Normalization1123 + Artwork Count1 + Sort Name12-Bar Blues Progression - Fig. 2 + Persistent IDDD455A99EFC153CC + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/36%20The%2012-Bar%20Blues%20Progression%20-%20Fig.%202.m4a + File Folder Count4 + Library Folder Count1 + + 8796 + + Track ID8796 + NameThe 12-Bar Blues Progression - Fig. 3 + ArtistTom Kolb + AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask + GenreSpoken & Audio + KindAAC audio file + Size642951 + Total Time13120 + Track Number37 + Track Count94 + Year2005 + Date Modified2011-07-09T10:41:44Z + Date Added2011-07-09T10:36:09Z + Bit Rate256 + Sample Rate44100 + Normalization875 + Artwork Count1 + Sort Name12-Bar Blues Progression - Fig. 3 + Persistent IDFB455AA22BF828F5 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/37%20The%2012-Bar%20Blues%20Progression%20-%20Fig.%203.m4a + File Folder Count4 + Library Folder Count1 + + 8798 + + Track ID8798 + NameOther Blues Progressions - Fig. 5A + ArtistTom Kolb + AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask + GenreSpoken & Audio + KindAAC audio file + Size1110517 + Total Time25440 + Track Number38 + Track Count94 + Year2005 + Date Modified2011-07-09T10:41:44Z + Date Added2011-07-09T10:36:13Z + Bit Rate256 + Sample Rate44100 + Normalization755 + Artwork Count1 + Persistent ID7592C63102D8C08C + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/38%20Other%20Blues%20Progressions%20-%20Fig.%205A.m4a + File Folder Count4 + Library Folder Count1 + + 8800 + + Track ID8800 + NameOther Blues Progressions - Fig. 5B + ArtistTom Kolb + AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask + GenreSpoken & Audio + KindAAC audio file + Size1107119 + Total Time25306 + Track Number39 + Track Count94 + Year2005 + Date Modified2011-07-09T10:41:44Z + Date Added2011-07-09T10:36:18Z + Bit Rate256 + Sample Rate44100 + Normalization1355 + Artwork Count1 + Persistent IDCE0D0CC523D89005 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/39%20Other%20Blues%20Progressions%20-%20Fig.%205B.m4a + File Folder Count4 + Library Folder Count1 + + 8802 + + Track ID8802 + NameOther Blues Progressions - Fig. 6 + ArtistTom Kolb + AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask + GenreSpoken & Audio + KindAAC audio file + Size2567010 + Total Time67000 + Track Number40 + Track Count94 + Year2005 + Date Modified2011-07-09T10:41:44Z + Date Added2011-07-09T10:36:24Z + Bit Rate256 + Sample Rate44100 + Normalization1394 + Artwork Count1 + Persistent IDCCFBD51E0E8474C0 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/40%20Other%20Blues%20Progressions%20-%20Fig.%206.m4a + File Folder Count4 + Library Folder Count1 + + 8804 + + Track ID8804 + NameOther Blues Progressions - Fig. 7 + ArtistTom Kolb + AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask + GenreSpoken & Audio + KindAAC audio file + Size1654214 + Total Time40800 + Track Number41 + Track Count94 + Year2005 + Date Modified2011-07-09T10:41:44Z + Date Added2011-07-09T10:36:34Z + Bit Rate256 + Sample Rate44100 + Normalization815 + Artwork Count1 + Persistent ID75C79820352A3722 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/41%20Other%20Blues%20Progressions%20-%20Fig.%207.m4a + File Folder Count4 + Library Folder Count1 + + 8806 + + Track ID8806 + NameMinor Pentatonic And Blues Scale - Fig. 8 + ArtistTom Kolb + AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask + GenreSpoken & Audio + KindAAC audio file + Size773865 + Total Time19400 + Track Number42 + Track Count94 + Year2005 + Date Modified2011-07-09T10:41:43Z + Date Added2011-07-09T10:36:41Z + Bit Rate256 + Sample Rate44100 + Normalization835 + Artwork Count1 + Persistent IDB937EA16E2546EFC + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/42%20Minor%20Pentatonic%20And%20Blues%20Scale%20-%20Fig.%208.m4a + File Folder Count4 + Library Folder Count1 + + 8808 + + Track ID8808 + NameMinor Pentatonic And Blues Scale - Fig. 10 + ArtistTom Kolb + AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask + GenreSpoken & Audio + KindAAC audio file + Size1314915 + Total Time35253 + Track Number43 + Track Count94 + Year2005 + Date Modified2011-07-09T10:41:43Z + Date Added2011-07-09T10:36:45Z + Bit Rate256 + Sample Rate44100 + Normalization852 + Artwork Count1 + Persistent ID5A7C1964FA65E5B6 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/43%20Minor%20Pentatonic%20And%20Blues%20Scale%20-%20Fig.%2010.m4a + File Folder Count4 + Library Folder Count1 + + 8810 + + Track ID8810 + NameMinor Pentatonic And Blues Scale - Fig. 11 + ArtistTom Kolb + AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask + GenreSpoken & Audio + KindAAC audio file + Size504539 + Total Time11600 + Track Number44 + Track Count94 + Year2005 + Date Modified2011-07-09T10:41:43Z + Date Added2011-07-09T10:36:53Z + Bit Rate256 + Sample Rate44100 + Normalization812 + Artwork Count1 + Persistent ID98E6D594CFC65742 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/44%20Minor%20Pentatonic%20And%20Blues%20Scale%20-%20Fig.%2011.m4a + File Folder Count4 + Library Folder Count1 + + 8812 + + Track ID8812 + NameMajor Pentatonic Scale - Fig. 12A - C Major Scale, C Major Pentatonic Scale + ArtistTom Kolb + AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask + GenreSpoken & Audio + KindAAC audio file + Size784976 + Total Time20000 + Track Number45 + Track Count94 + Year2005 + Date Modified2011-07-09T10:41:43Z + Date Added2011-07-09T10:36:57Z + Bit Rate256 + Sample Rate44100 + Normalization840 + Artwork Count1 + Persistent ID064C8BDA5BB5B266 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/45%20Major%20Pentatonic%20Scale%20-%20Fig.%2012A%20-%20C%20Major%20Scale,%20C%20Major%20Pentatonic%20Scale.m4a + File Folder Count4 + Library Folder Count1 + + 8814 + + Track ID8814 + NameMajor Pentatonic Scale - Fig. 13 - C Major Pentatonic Scale + ArtistTom Kolb + AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask + GenreSpoken & Audio + KindAAC audio file + Size1287428 + Total Time35506 + Track Number46 + Track Count94 + Year2005 + Date Modified2011-07-09T10:41:43Z + Date Added2011-07-09T10:37:00Z + Bit Rate256 + Sample Rate44100 + Normalization704 + Artwork Count1 + Persistent IDA888263A44286F24 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/46%20Major%20Pentatonic%20Scale%20-%20Fig.%2013%20-%20C%20Major%20Pentatonic%20Scale.m4a + File Folder Count4 + Library Folder Count1 + + 8816 + + Track ID8816 + NameParallel Pentatonic Scales - Fig. 14 - A Minor Pentatonic, A Major Pentatonic, A Major Pentatonic And A Major Penatonic Scales Combined + ArtistTom Kolb + AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask + GenreSpoken & Audio + KindAAC audio file + Size1108404 + Total Time30200 + Track Number47 + Track Count94 + Year2005 + Date Modified2011-07-09T10:41:43Z + Date Added2011-07-09T10:37:05Z + Bit Rate256 + Sample Rate44100 + Normalization830 + Artwork Count1 + Persistent ID0D06A414686CE00B + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/47%20Parallel%20Pentatonic%20Scales%20-%20Fig.%2014%20-%20A%20Minor%20Pentatonic,%20A%20Major%20Pentatonic,%20A%20Major%20Pentatonic%20And%20A%20Major%20Penatonic%20Scales%20Combined.m4a + File Folder Count4 + Library Folder Count1 + + 8818 + + Track ID8818 + NameModes - Fig. 1 - C Major Scale (Root To Root) + ArtistTom Kolb + AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask + GenreSpoken & Audio + KindAAC audio file + Size3687263 + Total Time116906 + Track Number48 + Track Count94 + Year2005 + Date Modified2011-07-09T10:41:43Z + Date Added2011-07-09T10:37:09Z + Bit Rate256 + Sample Rate44100 + Normalization868 + Artwork Count1 + Persistent IDFD9F02275E70EB34 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/48%20Modes%20-%20Fig.%201%20-%20C%20Major%20Scale%20(Root%20To%20Root).m4a + File Folder Count4 + Library Folder Count1 + + 8820 + + Track ID8820 + NameModes - Fig. 2 - C Major Scale (D To D) + ArtistTom Kolb + AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask + GenreSpoken & Audio + KindAAC audio file + Size825089 + Total Time21200 + Track Number49 + Track Count94 + Year2005 + Date Modified2011-07-09T10:41:43Z + Date Added2011-07-09T10:37:24Z + Bit Rate256 + Sample Rate44100 + Normalization795 + Artwork Count1 + Persistent ID21375263938FBB22 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/49%20Modes%20-%20Fig.%202%20-%20C%20Major%20Scale%20(D%20To%20D).m4a + File Folder Count4 + Library Folder Count1 + + 8822 + + Track ID8822 + NameModes - First Mode Through Seventh Mode FIg. 3 + ArtistTom Kolb + AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask + GenreSpoken & Audio + KindAAC audio file + Size2512854 + Total Time72506 + Track Number50 + Track Count94 + Year2005 + Date Modified2011-07-09T10:41:42Z + Date Added2011-07-09T10:37:27Z + Bit Rate256 + Sample Rate44100 + Normalization1099 + Artwork Count1 + Persistent IDD4AAE82275D70C02 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/50%20Modes%20-%20First%20Mode%20Through%20Seventh%20Mode%20FIg.%203.m4a + File Folder Count4 + Library Folder Count1 + + 8824 + + Track ID8824 + NameHow Modes Are Used - Modes In Major And Minor Scale Progressions - Fig. 5 + ArtistTom Kolb + AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask + GenreSpoken & Audio + KindAAC audio file + Size532863 + Total Time13000 + Track Number51 + Track Count94 + Year2005 + Date Modified2011-07-09T10:41:42Z + Date Added2011-07-09T10:37:36Z + Bit Rate256 + Sample Rate44100 + Normalization1419 + Artwork Count1 + Persistent ID2E02997EFCFF3039 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/51%20How%20Modes%20Are%20Used%20-%20Modes%20In%20Major%20And%20Minor%20Scale%20Progressions%20-%20Fig.%205.m4a + File Folder Count4 + Library Folder Count1 + + 8826 + + Track ID8826 + NameHow Modes Are Used - Modes In Major And Minor Scale Progressions - Fig. 6 + ArtistTom Kolb + AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask + GenreSpoken & Audio + KindAAC audio file + Size1089038 + Total Time25480 + Track Number52 + Track Count94 + Year2005 + Date Modified2011-07-09T10:41:42Z + Date Added2011-07-09T10:37:38Z + Bit Rate256 + Sample Rate44100 + Normalization1351 + Artwork Count1 + Persistent ID8E44A5CA17A8F942 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/52%20How%20Modes%20Are%20Used%20-%20Modes%20In%20Major%20And%20Minor%20Scale%20Progressions%20-%20Fig.%206.m4a + File Folder Count4 + Library Folder Count1 + + 8828 + + Track ID8828 + NameHow Modes Are Used - Modes And Modal Progressions - Harmonizing D Dorian - Fig. 7 + ArtistTom Kolb + AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask + GenreSpoken & Audio + KindAAC audio file + Size559292 + Total Time13253 + Track Number53 + Track Count94 + Year2005 + Date Modified2011-07-09T10:41:42Z + Date Added2011-07-09T10:37:41Z + Bit Rate256 + Sample Rate44100 + Normalization1456 + Artwork Count1 + Persistent IDA1DD8E9DECE35A5F + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/53%20How%20Modes%20Are%20Used%20-%20Modes%20And%20Modal%20Progressions%20-%20Harmonizing%20D%20Dorian%20-%20Fig.%207.m4a + File Folder Count4 + Library Folder Count1 + + 8830 + + Track ID8830 + NameHow Modes Are Used - Modes And Modal Progressions - Harmonizing D Dorian - Fig. 8 + ArtistTom Kolb + AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask + GenreSpoken & Audio + KindAAC audio file + Size825728 + Total Time19106 + Track Number54 + Track Count94 + Year2005 + Date Modified2011-07-09T10:41:42Z + Date Added2011-07-09T10:37:43Z + Bit Rate256 + Sample Rate44100 + Normalization997 + Artwork Count1 + Persistent IDCCEF189D9DC2E329 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/54%20How%20Modes%20Are%20Used%20-%20Modes%20And%20Modal%20Progressions%20-%20Harmonizing%20D%20Dorian%20-%20Fig.%208.m4a + File Folder Count4 + Library Folder Count1 + + 8832 + + Track ID8832 + NameThe Modes - Ionian - Fig. 10 + ArtistTom Kolb + AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask + GenreSpoken & Audio + KindAAC audio file + Size862158 + Total Time19293 + Track Number55 + Track Count94 + Year2005 + Date Modified2011-07-09T10:41:42Z + Date Added2011-07-09T10:37:46Z + Bit Rate256 + Sample Rate44100 + Normalization1048 + Artwork Count1 + Sort NameModes - Ionian - Fig. 10 + Persistent ID75A39A7929C0A705 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/55%20The%20Modes%20-%20Ionian%20-%20Fig.%2010.m4a + File Folder Count4 + Library Folder Count1 + + 8834 + + Track ID8834 + NameThe Modes - Dorian - Fig. 12 + ArtistTom Kolb + AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask + GenreSpoken & Audio + KindAAC audio file + Size733632 + Total Time15960 + Track Number56 + Track Count94 + Year2005 + Date Modified2011-07-09T10:41:42Z + Date Added2011-07-09T10:37:49Z + Bit Rate256 + Sample Rate44100 + Normalization1046 + Artwork Count1 + Sort NameModes - Dorian - Fig. 12 + Persistent ID94A24377B9A4E427 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/56%20The%20Modes%20-%20Dorian%20-%20Fig.%2012.m4a + File Folder Count4 + Library Folder Count1 + + 8836 + + Track ID8836 + NameThe Modes - Phrygian - Fig. 14 + ArtistTom Kolb + AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask + GenreSpoken & Audio + KindAAC audio file + Size772357 + Total Time17173 + Track Number57 + Track Count94 + Year2005 + Date Modified2011-07-09T10:41:42Z + Date Added2011-07-09T10:37:51Z + Bit Rate256 + Sample Rate44100 + Normalization876 + Artwork Count1 + Sort NameModes - Phrygian - Fig. 14 + Persistent IDC12594436375E6FD + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/57%20The%20Modes%20-%20Phrygian%20-%20Fig.%2014.m4a + File Folder Count4 + Library Folder Count1 + + 8838 + + Track ID8838 + NameThe Modes - Lydian - Fig. 16 + ArtistTom Kolb + AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask + GenreSpoken & Audio + KindAAC audio file + Size738456 + Total Time16786 + Track Number58 + Track Count94 + Year2005 + Date Modified2011-07-09T10:41:42Z + Date Added2011-07-09T10:37:54Z + Bit Rate256 + Sample Rate44100 + Normalization859 + Artwork Count1 + Sort NameModes - Lydian - Fig. 16 + Persistent ID2D4B81B21C06F48A + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/58%20The%20Modes%20-%20Lydian%20-%20Fig.%2016.m4a + File Folder Count4 + Library Folder Count1 + + 8840 + + Track ID8840 + NameThe Modes - Mixolydian - Fig. 18 + ArtistTom Kolb + AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask + GenreSpoken & Audio + KindAAC audio file + Size641086 + Total Time14146 + Track Number59 + Track Count94 + Year2005 + Date Modified2011-07-09T10:41:42Z + Date Added2011-07-09T10:37:56Z + Bit Rate256 + Sample Rate44100 + Normalization1446 + Artwork Count1 + Sort NameModes - Mixolydian - Fig. 18 + Persistent ID8D58A70C0CA52AF8 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/59%20The%20Modes%20-%20Mixolydian%20-%20Fig.%2018.m4a + File Folder Count4 + Library Folder Count1 + + 8842 + + Track ID8842 + NameThe Modes - Aeolian - Fig. 20 + ArtistTom Kolb + AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask + GenreSpoken & Audio + KindAAC audio file + Size957526 + Total Time21533 + Track Number60 + Track Count94 + Year2005 + Date Modified2011-07-09T10:41:42Z + Date Added2011-07-09T10:37:58Z + Bit Rate256 + Sample Rate44100 + Normalization1100 + Artwork Count1 + Sort NameModes - Aeolian - Fig. 20 + Persistent IDE94D666C8D2E9CE0 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/60%20The%20Modes%20-%20Aeolian%20-%20Fig.%2020.m4a + File Folder Count4 + Library Folder Count1 + + 8844 + + Track ID8844 + NameThe Modes - Locrian - Fig. 22 + ArtistTom Kolb + AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask + GenreSpoken & Audio + KindAAC audio file + Size646974 + Total Time13586 + Track Number61 + Track Count94 + Year2005 + Date Modified2011-07-09T10:41:41Z + Date Added2011-07-09T10:38:01Z + Bit Rate256 + Sample Rate44100 + Normalization813 + Artwork Count1 + Sort NameModes - Locrian - Fig. 22 + Persistent ID7BA3A147C5F0F45F + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/61%20The%20Modes%20-%20Locrian%20-%20Fig.%2022.m4a + File Folder Count4 + Library Folder Count1 + + 8846 + + Track ID8846 + NameEar Training Drill #6 + ArtistTom Kolb + AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask + GenreSpoken & Audio + KindAAC audio file + Size3449959 + Total Time109253 + Track Number62 + Track Count94 + Year2005 + Date Modified2011-07-09T10:41:41Z + Date Added2011-07-09T10:38:04Z + Bit Rate256 + Sample Rate44100 + Normalization816 + Artwork Count1 + Persistent ID46CD9294C1694630 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/62%20Ear%20Training%20Drill%20%236.m4a + File Folder Count4 + Library Folder Count1 + + 8848 + + Track ID8848 + NameA Harmonic Minor - Fig. 1 + ArtistTom Kolb + AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask + GenreSpoken & Audio + KindAAC audio file + Size506206 + Total Time11600 + Track Number63 + Track Count94 + Year2005 + Date Modified2011-07-09T10:41:41Z + Date Added2011-07-09T10:38:17Z + Bit Rate256 + Sample Rate44100 + Normalization1393 + Artwork Count1 + Sort NameHarmonic Minor - Fig. 1 + Persistent ID145BDC9F1241A850 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/63%20A%20Harmonic%20Minor%20-%20Fig.%201.m4a + File Folder Count4 + Library Folder Count1 + + 8850 + + Track ID8850 + NameA Phrygian Dominant - Fig. 2 + ArtistTom Kolb + AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask + GenreSpoken & Audio + KindAAC audio file + Size493820 + Total Time11600 + Track Number64 + Track Count94 + Year2005 + Date Modified2011-07-09T10:41:41Z + Date Added2011-07-09T10:38:19Z + Bit Rate256 + Sample Rate44100 + Normalization1536 + Artwork Count1 + Sort NamePhrygian Dominant - Fig. 2 + Persistent ID98E46AC999AAAB0F + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/64%20A%20Phrygian%20Dominant%20-%20Fig.%202.m4a + File Folder Count4 + Library Folder Count1 + + 8852 + + Track ID8852 + NameA Melodic Minor (Jazz Melodic Minor) - FIg. 3 + ArtistTom Kolb + AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask + GenreSpoken & Audio + KindAAC audio file + Size501425 + Total Time11600 + Track Number65 + Track Count94 + Year2005 + Date Modified2011-07-09T10:41:41Z + Date Added2011-07-09T10:38:21Z + Bit Rate256 + Sample Rate44100 + Normalization1888 + Artwork Count1 + Sort NameMelodic Minor (Jazz Melodic Minor) - FIg. 3 + Persistent ID35B268FDD0C9005F + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/65%20A%20Melodic%20Minor%20(Jazz%20Melodic%20Minor)%20-%20FIg.%203.m4a + File Folder Count4 + Library Folder Count1 + + 8854 + + Track ID8854 + NameC Lydian Dominant - FIg. 4 + ArtistTom Kolb + AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask + GenreSpoken & Audio + KindAAC audio file + Size504951 + Total Time11600 + Track Number66 + Track Count94 + Year2005 + Date Modified2011-07-09T10:41:41Z + Date Added2011-07-09T10:38:22Z + Bit Rate256 + Sample Rate44100 + Normalization912 + Artwork Count1 + Persistent ID059A523ED5CC6D6F + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/66%20C%20Lydian%20Dominant%20-%20FIg.%204.m4a + File Folder Count4 + Library Folder Count1 + + 8856 + + Track ID8856 + NameA Locrian #2 - FIg. 5 + ArtistTom Kolb + AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask + GenreSpoken & Audio + KindAAC audio file + Size506887 + Total Time11600 + Track Number67 + Track Count94 + Year2005 + Date Modified2011-07-09T10:41:41Z + Date Added2011-07-09T10:38:24Z + Bit Rate256 + Sample Rate44100 + Normalization1645 + Artwork Count1 + Sort NameLocrian #2 - FIg. 5 + Persistent IDAA80B4D66303719D + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/67%20A%20Locrian%20%232%20-%20FIg.%205.m4a + File Folder Count4 + Library Folder Count1 + + 8858 + + Track ID8858 + NameA Altered Scale - Fig. 6 + ArtistTom Kolb + AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask + GenreSpoken & Audio + KindAAC audio file + Size502675 + Total Time11600 + Track Number68 + Track Count94 + Year2005 + Date Modified2011-07-09T10:41:41Z + Date Added2011-07-09T10:38:26Z + Bit Rate256 + Sample Rate44100 + Normalization1725 + Artwork Count1 + Sort NameAltered Scale - Fig. 6 + Persistent ID36A78F6FC2D16970 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/68%20A%20Altered%20Scale%20-%20Fig.%206.m4a + File Folder Count4 + Library Folder Count1 + + 8860 + + Track ID8860 + NameC Lydian Augmented - FIg. 7 + ArtistTom Kolb + AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask + GenreSpoken & Audio + KindAAC audio file + Size506483 + Total Time11600 + Track Number69 + Track Count94 + Year2005 + Date Modified2011-07-09T10:41:41Z + Date Added2011-07-09T10:38:27Z + Bit Rate256 + Sample Rate44100 + Normalization906 + Artwork Count1 + Persistent IDB08C69D1044D6737 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/69%20C%20Lydian%20Augmented%20-%20FIg.%207.m4a + File Folder Count4 + Library Folder Count1 + + 8862 + + Track ID8862 + NameA Diminished (Whole/Half) - FIg. 8 + ArtistTom Kolb + AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask + GenreSpoken & Audio + KindAAC audio file + Size537528 + Total Time12200 + Track Number70 + Track Count94 + Year2005 + Date Modified2011-07-09T10:41:41Z + Date Added2011-07-09T10:38:29Z + Bit Rate256 + Sample Rate44100 + Normalization1678 + Artwork Count1 + Sort NameDiminished (Whole/Half) - FIg. 8 + Persistent ID9ED07353DDA50702 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/70%20A%20Diminished%20(Whole_Half)%20-%20FIg.%208.m4a + File Folder Count4 + Library Folder Count1 + + 8864 + + Track ID8864 + NameA Diminished (Half/Whole) - FIg. 9 + ArtistTom Kolb + AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask + GenreSpoken & Audio + KindAAC audio file + Size526309 + Total Time12200 + Track Number71 + Track Count94 + Year2005 + Date Modified2011-07-09T10:41:40Z + Date Added2011-07-09T10:38:31Z + Bit Rate256 + Sample Rate44100 + Normalization1639 + Artwork Count1 + Sort NameDiminished (Half/Whole) - FIg. 9 + Persistent IDCA6CA380E082F3C7 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/71%20A%20Diminished%20(Half_Whole)%20-%20FIg.%209.m4a + File Folder Count4 + Library Folder Count1 + + 8866 + + Track ID8866 + NameC Whole Tone Scale - Fig. 10 + ArtistTom Kolb + AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask + GenreSpoken & Audio + KindAAC audio file + Size494316 + Total Time11600 + Track Number72 + Track Count94 + Year2005 + Date Modified2011-07-09T10:41:40Z + Date Added2011-07-09T10:38:33Z + Bit Rate256 + Sample Rate44100 + Normalization1084 + Artwork Count1 + Persistent IDE53CDD271CC03C71 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/72%20C%20Whole%20Tone%20Scale%20-%20Fig.%2010.m4a + File Folder Count4 + Library Folder Count1 + + 8868 + + Track ID8868 + NameC Chromatic Scale - Fig. 11 + ArtistTom Kolb + AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask + GenreSpoken & Audio + KindAAC audio file + Size621281 + Total Time14600 + Track Number73 + Track Count94 + Year2005 + Date Modified2011-07-09T10:41:40Z + Date Added2011-07-09T10:38:35Z + Bit Rate256 + Sample Rate44100 + Normalization1385 + Artwork Count1 + Persistent IDE7783AD9E97D4825 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/73%20C%20Chromatic%20Scale%20-%20Fig.%2011.m4a + File Folder Count4 + Library Folder Count1 + + 8870 + + Track ID8870 + NameArpeggios - Fig. 12 + ArtistTom Kolb + AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask + GenreSpoken & Audio + KindAAC audio file + Size599283 + Total Time16253 + Track Number74 + Track Count94 + Year2005 + Date Modified2011-07-09T10:41:40Z + Date Added2011-07-09T10:38:37Z + Bit Rate256 + Sample Rate44100 + Normalization1226 + Artwork Count1 + Persistent IDFAE45F0DB8D3B3E1 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/74%20Arpeggios%20-%20Fig.%2012.m4a + File Folder Count4 + Library Folder Count1 + + 8872 + + Track ID8872 + NameTriad Arpeggio Patterns - Fig. 13 + ArtistTom Kolb + AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask + GenreSpoken & Audio + KindAAC audio file + Size884484 + Total Time23760 + Track Number75 + Track Count94 + Year2005 + Date Modified2011-07-09T10:41:40Z + Date Added2011-07-09T10:38:40Z + Bit Rate256 + Sample Rate44100 + Normalization1419 + Artwork Count1 + Persistent ID3619F6636AD873AB + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/75%20Triad%20Arpeggio%20Patterns%20-%20Fig.%2013.m4a + File Folder Count4 + Library Folder Count1 + + 8874 + + Track ID8874 + NameC Major Triad Arpeggios + ArtistTom Kolb + AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask + GenreSpoken & Audio + KindAAC audio file + Size858637 + Total Time22253 + Track Number76 + Track Count94 + Year2005 + Date Modified2011-07-09T10:41:40Z + Date Added2011-07-09T10:38:43Z + Bit Rate256 + Sample Rate44100 + Normalization1399 + Artwork Count1 + Persistent IDBA2BCAEA8B8EE429 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/76%20C%20Major%20Triad%20Arpeggios.m4a + File Folder Count4 + Library Folder Count1 + + 8876 + + Track ID8876 + NameCmaj7 Arpeggios + ArtistTom Kolb + AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask + GenreSpoken & Audio + KindAAC audio file + Size975520 + Total Time26200 + Track Number77 + Track Count94 + Year2005 + Date Modified2011-07-09T10:41:40Z + Date Added2011-07-09T10:38:46Z + Bit Rate256 + Sample Rate44100 + Normalization1846 + Artwork Count1 + Persistent IDABD572E4DFDBF7E2 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/77%20Cmaj7%20Arpeggios.m4a + File Folder Count4 + Library Folder Count1 + + 8878 + + Track ID8878 + NameCmin7 Arpeggios + ArtistTom Kolb + AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask + GenreSpoken & Audio + KindAAC audio file + Size1005296 + Total Time26760 + Track Number78 + Track Count94 + Year2005 + Date Modified2011-07-09T10:41:40Z + Date Added2011-07-09T10:38:49Z + Bit Rate256 + Sample Rate44100 + Normalization1703 + Artwork Count1 + Persistent ID1E9355AE6D6EAD97 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/78%20Cmin7%20Arpeggios.m4a + File Folder Count4 + Library Folder Count1 + + 8880 + + Track ID8880 + NameC7 Arpeggios + ArtistTom Kolb + AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask + GenreSpoken & Audio + KindAAC audio file + Size984075 + Total Time26000 + Track Number79 + Track Count94 + Year2005 + Date Modified2011-07-09T10:41:40Z + Date Added2011-07-09T10:38:53Z + Bit Rate256 + Sample Rate44100 + Normalization2117 + Artwork Count1 + Persistent IDF40526A5C68F0B14 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/79%20C7%20Arpeggios.m4a + File Folder Count4 + Library Folder Count1 + + 8882 + + Track ID8882 + NameCm7b5 Arpeggios + ArtistTom Kolb + AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask + GenreSpoken & Audio + KindAAC audio file + Size1029864 + Total Time27506 + Track Number80 + Track Count94 + Year2005 + Date Modified2011-07-09T10:41:40Z + Date Added2011-07-09T10:38:56Z + Bit Rate256 + Sample Rate44100 + Normalization1875 + Artwork Count1 + Persistent ID06F8DD70AAE17777 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/80%20Cm7b5%20Arpeggios.m4a + File Folder Count4 + Library Folder Count1 + + 8884 + + Track ID8884 + NameEar Training Drill #7 + ArtistTom Kolb + AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask + GenreSpoken & Audio + KindAAC audio file + Size5352088 + Total Time167200 + Track Number81 + Track Count94 + Year2005 + Date Modified2011-07-09T10:41:39Z + Date Added2011-07-09T10:39:00Z + Bit Rate256 + Sample Rate44100 + Normalization1033 + Artwork Count1 + Persistent IDD4F95F5C67E6E5FD + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/81%20Ear%20Training%20Drill%20%237.m4a + File Folder Count4 + Library Folder Count1 + + 8886 + + Track ID8886 + NameChord Embellishment - Fig. 1 + ArtistTom Kolb + AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask + GenreSpoken & Audio + KindAAC audio file + Size849141 + Total Time21800 + Track Number82 + Track Count94 + Year2005 + Date Modified2011-07-09T10:41:39Z + Date Added2011-07-09T10:39:18Z + Bit Rate256 + Sample Rate44100 + Normalization742 + Artwork Count1 + Persistent ID4C4F11A7A5CD4436 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/82%20Chord%20Embellishment%20-%20Fig.%201.m4a + File Folder Count4 + Library Folder Count1 + + 8888 + + Track ID8888 + NameDiatonic Chord Substitution And Reharmonization - Fig. 2 + ArtistTom Kolb + AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask + GenreSpoken & Audio + KindAAC audio file + Size1022742 + Total Time27200 + Track Number83 + Track Count94 + Year2005 + Date Modified2011-07-09T10:41:39Z + Date Added2011-07-09T10:39:20Z + Bit Rate256 + Sample Rate44100 + Normalization841 + Artwork Count1 + Persistent ID0C973ECD939BB4D1 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/83%20Diatonic%20Chord%20Substitution%20And%20Reharmonization%20-%20Fig.%202.m4a + File Folder Count4 + Library Folder Count1 + + 8890 + + Track ID8890 + NameDiatonic Chord Substitution And Reharmonization - Fig. 3A + ArtistTom Kolb + AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask + GenreSpoken & Audio + KindAAC audio file + Size1277308 + Total Time31360 + Track Number84 + Track Count94 + Year2005 + Date Modified2011-07-09T10:41:39Z + Date Added2011-07-09T10:39:24Z + Bit Rate256 + Sample Rate44100 + Normalization747 + Artwork Count1 + Persistent ID36B70A76919AE908 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/84%20Diatonic%20Chord%20Substitution%20And%20Reharmonization%20-%20Fig.%203A.m4a + File Folder Count4 + Library Folder Count1 + + 8892 + + Track ID8892 + NameDiatonic Chord Substitution And Reharmonization - Fig. 3B + ArtistTom Kolb + AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask + GenreSpoken & Audio + KindAAC audio file + Size1269396 + Total Time31360 + Track Number85 + Track Count94 + Year2005 + Date Modified2011-07-09T10:41:39Z + Date Added2011-07-09T10:39:28Z + Bit Rate256 + Sample Rate44100 + Normalization784 + Artwork Count1 + Persistent ID00EF28821431C723 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/85%20Diatonic%20Chord%20Substitution%20And%20Reharmonization%20-%20Fig.%203B.m4a + File Folder Count4 + Library Folder Count1 + + 8894 + + Track ID8894 + NameDiatonic Chord Substitution And Reharmonization - Fig. 4A + ArtistTom Kolb + AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask + GenreSpoken & Audio + KindAAC audio file + Size1140445 + Total Time26786 + Track Number86 + Track Count94 + Year2005 + Date Modified2011-07-09T10:41:39Z + Date Added2011-07-09T10:39:31Z + Bit Rate256 + Sample Rate44100 + Normalization797 + Artwork Count1 + Persistent IDAEEA0ACFB9F456F4 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/86%20Diatonic%20Chord%20Substitution%20And%20Reharmonization%20-%20Fig.%204A.m4a + File Folder Count4 + Library Folder Count1 + + 8896 + + Track ID8896 + NameDiatonic Chord Substitution And Reharmonization - Fig. 4B + ArtistTom Kolb + AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask + GenreSpoken & Audio + KindAAC audio file + Size1148286 + Total Time26786 + Track Number87 + Track Count94 + Year2005 + Date Modified2011-07-09T10:41:38Z + Date Added2011-07-09T10:39:35Z + Bit Rate256 + Sample Rate44100 + Normalization814 + Artwork Count1 + Persistent ID47FB288CAA964EE0 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/87%20Diatonic%20Chord%20Substitution%20And%20Reharmonization%20-%20Fig.%204B.m4a + File Folder Count4 + Library Folder Count1 + + 8898 + + Track ID8898 + NameDiatonic Chord Substitution And Reharmonization - Triad And Seventh Arpeggio Substitution - Fig. 5A + ArtistTom Kolb + AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask + GenreSpoken & Audio + KindAAC audio file + Size513267 + Total Time10400 + Track Number88 + Track Count94 + Year2005 + Date Modified2011-07-09T10:41:38Z + Date Added2011-07-09T10:39:38Z + Bit Rate256 + Sample Rate44100 + Normalization3217 + Artwork Count1 + Persistent IDD9C57D6F4F04B1E1 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/88%20Diatonic%20Chord%20Substitution%20And%20Reharmonization%20-%20Triad%20And%20Seventh%20Arpeggio%20Substitution%20-%20Fig.%205A.m4a + File Folder Count4 + Library Folder Count1 + + 8900 + + Track ID8900 + NameDiatonic Chord Substitution And Reharmonization - Triad And Seventh Arpeggio Substitution - Fig. 5B + ArtistTom Kolb + AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask + GenreSpoken & Audio + KindAAC audio file + Size558349 + Total Time11093 + Track Number89 + Track Count94 + Year2005 + Date Modified2011-07-09T10:41:38Z + Date Added2011-07-09T10:39:40Z + Bit Rate256 + Sample Rate44100 + Normalization1307 + Artwork Count1 + Persistent IDBD4B4B538FBE6E29 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/89%20Diatonic%20Chord%20Substitution%20And%20Reharmonization%20-%20Triad%20And%20Seventh%20Arpeggio%20Substitution%20-%20Fig.%205B.m4a + File Folder Count4 + Library Folder Count1 + + 8902 + + Track ID8902 + NameDiatonic Chord Substitution And Reharmonization - Flat-Five Substitution - Fig. 6 + ArtistTom Kolb + AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask + GenreSpoken & Audio + KindAAC audio file + Size772898 + Total Time19466 + Track Number90 + Track Count94 + Year2005 + Date Modified2011-07-09T10:41:38Z + Date Added2011-07-09T10:39:41Z + Bit Rate256 + Sample Rate44100 + Normalization713 + Artwork Count1 + Persistent ID2D2559191A5833B0 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/90%20Diatonic%20Chord%20Substitution%20And%20Reharmonization%20-%20Flat-Five%20Substitution%20-%20Fig.%206.m4a + File Folder Count4 + Library Folder Count1 + + 8904 + + Track ID8904 + NameDiatonic Chord Substitution And Reharmonization - Secondary Dominant Substitution - Fig. 7 + ArtistTom Kolb + AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask + GenreSpoken & Audio + KindAAC audio file + Size770297 + Total Time19066 + Track Number91 + Track Count94 + Year2005 + Date Modified2011-07-09T10:41:38Z + Date Added2011-07-09T10:39:43Z + Bit Rate256 + Sample Rate44100 + Normalization796 + Artwork Count1 + Persistent ID45B6A00771C8FD33 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/91%20Diatonic%20Chord%20Substitution%20And%20Reharmonization%20-%20Secondary%20Dominant%20Substitution%20-%20Fig.%207.m4a + File Folder Count4 + Library Folder Count1 + + 8906 + + Track ID8906 + NameDiatonic Chord Substitution And Reharmonization - Diminished Seventh Chord Substitution - A Harmonic Minor - Fig. 8 + ArtistTom Kolb + AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask + GenreSpoken & Audio + KindAAC audio file + Size853771 + Total Time22066 + Track Number92 + Track Count94 + Year2005 + Date Modified2011-07-09T10:41:38Z + Date Added2011-07-09T10:39:46Z + Bit Rate256 + Sample Rate44100 + Normalization882 + Artwork Count1 + Persistent ID306E3A8D399A255B + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/92%20Diatonic%20Chord%20Substitution%20And%20Reharmonization%20-%20Diminished%20Seventh%20Chord%20Substitution%20-%20A%20Harmonic%20Minor%20-%20Fig.%208.m4a + File Folder Count4 + Library Folder Count1 + + 8908 + + Track ID8908 + NameDiatonic Chord Substitution And Reharmonization - Diminished Seventh Chord Substitution - Fig. 9 + ArtistTom Kolb + AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask + GenreSpoken & Audio + KindAAC audio file + Size413296 + Total Time9506 + Track Number93 + Track Count94 + Year2005 + Date Modified2011-07-09T10:41:38Z + Date Added2011-07-09T10:39:50Z + Bit Rate256 + Sample Rate44100 + Normalization720 + Artwork Count1 + Persistent IDED52FBAC91C545F7 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/93%20Diatonic%20Chord%20Substitution%20And%20Reharmonization%20-%20Diminished%20Seventh%20Chord%20Substitution%20-%20Fig.%209.m4a + File Folder Count4 + Library Folder Count1 + + 8910 + + Track ID8910 + NameDiatonic Chord Substitution And Reharmonization - Diminished Seventh Chord Substitution - Fig. 10 + ArtistTom Kolb + AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask + GenreSpoken & Audio + KindAAC audio file + Size785446 + Total Time18000 + Track Number94 + Track Count94 + Year2005 + Date Modified2011-07-09T10:41:38Z + Date Added2011-07-09T10:39:51Z + Bit Rate256 + Sample Rate44100 + Normalization821 + Artwork Count1 + Persistent ID61D0D7CB13ADC820 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/94%20Diatonic%20Chord%20Substitution%20And%20Reharmonization%20-%20Diminished%20Seventh%20Chord%20Substitution%20-%20Fig.%2010.m4a + File Folder Count4 + Library Folder Count1 + + 8912 + + Track ID8912 + NameTuning + ArtistHal Leonard Guitar Method + AlbumAcoustic Guitar + GenreOther + KindAAC audio file + Size2799485 + Total Time65920 + Track Number1 + Track Count83 + Date Modified2011-07-09T10:56:24Z + Date Added2011-07-09T10:43:16Z + Bit Rate256 + Sample Rate44100 + Normalization1239 + Artwork Count1 + Persistent IDBE5BE9BB0E898418 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/01%20Tuning.m4a + File Folder Count4 + Library Folder Count1 + + 8914 + + Track ID8914 + NameDownstrokes & Upstrokes 1 + ArtistHal Leonard Guitar Method + AlbumAcoustic Guitar + GenreOther + KindAAC audio file + Size983851 + Total Time18880 + Track Number2 + Track Count83 + Date Modified2011-07-09T10:56:23Z + Date Added2011-07-09T10:43:32Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3393644107 + Play Date UTC2011-07-16T01:25:07Z + Normalization1302 + Artwork Count1 + Persistent ID9300F4E19CF70AF8 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/02%20Downstrokes%20&%20Upstrokes%201.m4a + File Folder Count4 + Library Folder Count1 + + 8916 + + Track ID8916 + NameDownstrokes & Upstrokes 2 + ArtistHal Leonard Guitar Method + AlbumAcoustic Guitar + GenreOther + KindAAC audio file + Size983531 + Total Time18973 + Track Number3 + Track Count83 + Date Modified2011-07-09T10:56:23Z + Date Added2011-07-09T10:43:38Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3393644127 + Play Date UTC2011-07-16T01:25:27Z + Normalization1439 + Artwork Count1 + Persistent IDF6DBBFF7284F418C + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/03%20Downstrokes%20&%20Upstrokes%202.m4a + File Folder Count4 + Library Folder Count1 + + 8918 + + Track ID8918 + NameDownstrokes & Upstrokes 3 + ArtistHal Leonard Guitar Method + AlbumAcoustic Guitar + GenreOther + KindAAC audio file + Size980448 + Total Time19013 + Track Number4 + Track Count83 + Date Modified2011-07-09T10:56:23Z + Date Added2011-07-09T10:43:44Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3393644149 + Play Date UTC2011-07-16T01:25:49Z + Normalization1639 + Artwork Count1 + Persistent IDBAB033415AD327B3 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/04%20Downstrokes%20&%20Upstrokes%203.m4a + File Folder Count4 + Library Folder Count1 + + 8920 + + Track ID8920 + NameDownstrokes & Upstrokes 4 + ArtistHal Leonard Guitar Method + AlbumAcoustic Guitar + GenreOther + KindAAC audio file + Size979326 + Total Time18920 + Track Number5 + Track Count83 + Date Modified2011-07-09T10:56:23Z + Date Added2011-07-09T10:43:50Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3393644171 + Play Date UTC2011-07-16T01:26:11Z + Normalization1238 + Artwork Count1 + Persistent IDB4D895C964E64792 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/05%20Downstrokes%20&%20Upstrokes%204.m4a + File Folder Count4 + Library Folder Count1 + + 8922 + + Track ID8922 + NameMoving From Chord To Chord 1 + ArtistHal Leonard Guitar Method + AlbumAcoustic Guitar + GenreOther + KindAAC audio file + Size1379123 + Total Time29546 + Track Number6 + Track Count83 + Date Modified2011-07-09T10:56:23Z + Date Added2011-07-09T10:43:56Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3393644200 + Play Date UTC2011-07-16T01:26:40Z + Normalization1493 + Artwork Count1 + Persistent ID952BFC66C577E13B + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/06%20Moving%20From%20Chord%20To%20Chord%201.m4a + File Folder Count4 + Library Folder Count1 + + 8924 + + Track ID8924 + NameMoving From Chord To Chord 2 + ArtistHal Leonard Guitar Method + AlbumAcoustic Guitar + GenreOther + KindAAC audio file + Size1386458 + Total Time29426 + Track Number7 + Track Count83 + Date Modified2011-07-09T10:56:23Z + Date Added2011-07-09T10:44:03Z + Bit Rate256 + Sample Rate44100 + Normalization1435 + Artwork Count1 + Persistent ID802B40B182B6DFCD + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/07%20Moving%20From%20Chord%20To%20Chord%202.m4a + File Folder Count4 + Library Folder Count1 + + 8926 + + Track ID8926 + NameMoving From Chord To Chord 3 + ArtistHal Leonard Guitar Method + AlbumAcoustic Guitar + GenreOther + KindAAC audio file + Size912403 + Total Time16973 + Track Number8 + Track Count83 + Date Modified2011-07-09T10:56:23Z + Date Added2011-07-09T10:44:11Z + Bit Rate256 + Sample Rate44100 + Normalization1354 + Artwork Count1 + Persistent ID20EC855142B6FBE6 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/08%20Moving%20From%20Chord%20To%20Chord%203.m4a + File Folder Count4 + Library Folder Count1 + + 8928 + + Track ID8928 + NameMoving From Chord To Chord 4 + ArtistHal Leonard Guitar Method + AlbumAcoustic Guitar + GenreOther + KindAAC audio file + Size913712 + Total Time17133 + Track Number9 + Track Count83 + Date Modified2011-07-09T10:56:23Z + Date Added2011-07-09T10:44:17Z + Bit Rate256 + Sample Rate44100 + Normalization1656 + Artwork Count1 + Persistent IDE5303DD962B9D2F4 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/09%20Moving%20From%20Chord%20To%20Chord%204.m4a + File Folder Count4 + Library Folder Count1 + + 8930 + + Track ID8930 + NameMoving From Chord To Chord 5 + ArtistHal Leonard Guitar Method + AlbumAcoustic Guitar + GenreOther + KindAAC audio file + Size906357 + Total Time16586 + Track Number10 + Track Count83 + Date Modified2011-07-09T10:56:23Z + Date Added2011-07-09T10:44:22Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3393644220 + Play Date UTC2011-07-16T01:27:00Z + Normalization1204 + Artwork Count1 + Persistent ID6FD9735214C605DF + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/10%20Moving%20From%20Chord%20To%20Chord%205.m4a + File Folder Count4 + Library Folder Count1 + + 8932 + + Track ID8932 + NameMoving From Chord To Chord 6 + ArtistHal Leonard Guitar Method + AlbumAcoustic Guitar + GenreOther + KindAAC audio file + Size906385 + Total Time16786 + Track Number11 + Track Count83 + Date Modified2011-07-09T10:56:23Z + Date Added2011-07-09T10:44:28Z + Bit Rate256 + Sample Rate44100 + Play Count2 + Play Date3393644269 + Play Date UTC2011-07-16T01:27:49Z + Normalization1177 + Artwork Count1 + Persistent ID626D95CEBEF584F8 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/11%20Moving%20From%20Chord%20To%20Chord%206.m4a + File Folder Count4 + Library Folder Count1 + + 8934 + + Track ID8934 + NameSyncopation 1 + ArtistHal Leonard Guitar Method + AlbumAcoustic Guitar + GenreOther + KindAAC audio file + Size912061 + Total Time16933 + Track Number12 + Track Count83 + Date Modified2011-07-09T10:56:23Z + Date Added2011-07-09T10:44:33Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3393644253 + Play Date UTC2011-07-16T01:27:33Z + Normalization1127 + Artwork Count1 + Persistent ID3EF532C631F43623 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/12%20Syncopation%201.m4a + File Folder Count4 + Library Folder Count1 + + 8936 + + Track ID8936 + NameSyncopation 2 + ArtistHal Leonard Guitar Method + AlbumAcoustic Guitar + GenreOther + KindAAC audio file + Size910004 + Total Time16880 + Track Number13 + Track Count83 + Date Modified2011-07-09T10:56:23Z + Date Added2011-07-09T10:44:38Z + Bit Rate256 + Sample Rate44100 + Normalization1112 + Artwork Count1 + Persistent ID9FF16A450ADA449B + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/13%20Syncopation%202.m4a + File Folder Count4 + Library Folder Count1 + + 8938 + + Track ID8938 + NameBand On The Run + ArtistHal Leonard Guitar Method + AlbumAcoustic Guitar + GenreOther + KindAAC audio file + Size871739 + Total Time15760 + Track Number14 + Track Count83 + Date Modified2011-07-09T10:56:23Z + Date Added2011-07-09T10:44:44Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3393644285 + Play Date UTC2011-07-16T01:28:05Z + Normalization1313 + Artwork Count1 + Persistent IDDA633749AB2FEEDE + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/14%20Band%20On%20The%20Run.m4a + File Folder Count4 + Library Folder Count1 + + 8940 + + Track ID8940 + NameSixteenth Notes 1 + ArtistHal Leonard Guitar Method + AlbumAcoustic Guitar + GenreOther + KindAAC audio file + Size992049 + Total Time19146 + Track Number15 + Track Count83 + Date Modified2011-07-09T10:56:23Z + Date Added2011-07-09T10:44:49Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3393644302 + Play Date UTC2011-07-16T01:28:22Z + Normalization1846 + Artwork Count1 + Persistent IDEDA6D399034F623D + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/15%20Sixteenth%20Notes%201.m4a + File Folder Count4 + Library Folder Count1 + + 8942 + + Track ID8942 + NameSixteenth Notes 2 + ArtistHal Leonard Guitar Method + AlbumAcoustic Guitar + GenreOther + KindAAC audio file + Size986101 + Total Time18840 + Track Number16 + Track Count83 + Date Modified2011-07-09T10:56:22Z + Date Added2011-07-09T10:44:55Z + Bit Rate256 + Sample Rate44100 + Normalization1483 + Artwork Count1 + Persistent ID4EFBE410A34AC352 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/16%20Sixteenth%20Notes%202.m4a + File Folder Count4 + Library Folder Count1 + + 8944 + + Track ID8944 + NameBarely Breathing + ArtistHal Leonard Guitar Method + AlbumAcoustic Guitar + GenreOther + KindAAC audio file + Size10166206 + Total Time258600 + Track Number17 + Track Count83 + Date Modified2011-07-09T10:56:22Z + Date Added2011-07-09T10:45:00Z + Bit Rate256 + Sample Rate44100 + Normalization1578 + Artwork Count1 + Persistent ID50D1326F05A63D11 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/17%20Barely%20Breathing.m4a + File Folder Count4 + Library Folder Count1 + + 8946 + + Track ID8946 + NameTravis Picking 1 + ArtistHal Leonard Guitar Method + AlbumAcoustic Guitar + GenreOther + KindAAC audio file + Size871697 + Total Time15986 + Track Number18 + Track Count83 + Date Modified2011-07-09T10:56:22Z + Date Added2011-07-09T10:45:43Z + Bit Rate256 + Sample Rate44100 + Normalization1183 + Artwork Count1 + Persistent IDD475A4CB1A5D1B33 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/18%20Travis%20Picking%201.m4a + File Folder Count4 + Library Folder Count1 + + 8948 + + Track ID8948 + NameTravis Picking 2 + ArtistHal Leonard Guitar Method + AlbumAcoustic Guitar + GenreOther + KindAAC audio file + Size845088 + Total Time15173 + Track Number19 + Track Count83 + Date Modified2011-07-09T10:56:22Z + Date Added2011-07-09T10:45:48Z + Bit Rate256 + Sample Rate44100 + Normalization1022 + Artwork Count1 + Persistent ID3C9C51CAD1E7AE3C + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/19%20Travis%20Picking%202.m4a + File Folder Count4 + Library Folder Count1 + + 8950 + + Track ID8950 + NameTravis Picking 3 + ArtistHal Leonard Guitar Method + AlbumAcoustic Guitar + GenreOther + KindAAC audio file + Size1552229 + Total Time36600 + Track Number20 + Track Count83 + Date Modified2011-07-09T10:56:22Z + Date Added2011-07-09T10:45:52Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3393644396 + Play Date UTC2011-07-16T01:29:56Z + Normalization1238 + Artwork Count1 + Persistent ID0ED62C6FC4729EEE + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/20%20Travis%20Picking%203.m4a + File Folder Count4 + Library Folder Count1 + + 8952 + + Track ID8952 + NameYou Were Meant For Me + ArtistHal Leonard Guitar Method + AlbumAcoustic Guitar + GenreOther + KindAAC audio file + Size1162941 + Total Time23293 + Track Number21 + Track Count83 + Date Modified2011-07-09T10:56:21Z + Date Added2011-07-09T10:46:00Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3393644365 + Play Date UTC2011-07-16T01:29:25Z + Normalization1067 + Artwork Count1 + Persistent IDFC0FDB8C797FE342 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/21%20You%20Were%20Meant%20For%20Me.m4a + File Folder Count4 + Library Folder Count1 + + 8954 + + Track ID8954 + NameArpeggiation 1 + ArtistHal Leonard Guitar Method + AlbumAcoustic Guitar + GenreOther + KindAAC audio file + Size870193 + Total Time15853 + Track Number22 + Track Count83 + Date Modified2011-07-09T10:56:21Z + Date Added2011-07-09T10:46:06Z + Bit Rate256 + Sample Rate44100 + Normalization1080 + Artwork Count1 + Persistent ID626F8748D9CB696F + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/22%20Arpeggiation%201.m4a + File Folder Count4 + Library Folder Count1 + + 8956 + + Track ID8956 + NameArpeggiation 2 + ArtistHal Leonard Guitar Method + AlbumAcoustic Guitar + GenreOther + KindAAC audio file + Size874129 + Total Time15853 + Track Number23 + Track Count83 + Date Modified2011-07-09T10:56:21Z + Date Added2011-07-09T10:46:11Z + Bit Rate256 + Sample Rate44100 + Normalization972 + Artwork Count1 + Persistent ID37ADCF92FFFBC32D + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/23%20Arpeggiation%202.m4a + File Folder Count4 + Library Folder Count1 + + 8958 + + Track ID8958 + NameArpeggiation 3 + ArtistHal Leonard Guitar Method + AlbumAcoustic Guitar + GenreOther + KindAAC audio file + Size1013411 + Total Time19466 + Track Number24 + Track Count83 + Date Modified2011-07-09T10:56:21Z + Date Added2011-07-09T10:46:16Z + Bit Rate256 + Sample Rate44100 + Normalization1080 + Artwork Count1 + Persistent ID41C357A484478B3A + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/24%20Arpeggiation%203.m4a + File Folder Count4 + Library Folder Count1 + + 8960 + + Track ID8960 + NameArpeggiation 4 + ArtistHal Leonard Guitar Method + AlbumAcoustic Guitar + GenreOther + KindAAC audio file + Size838657 + Total Time14773 + Track Number25 + Track Count83 + Date Modified2011-07-09T10:56:21Z + Date Added2011-07-09T10:46:21Z + Bit Rate256 + Sample Rate44100 + Normalization1230 + Artwork Count1 + Persistent ID8E5988952F0111BA + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/25%20Arpeggiation%204.m4a + File Folder Count4 + Library Folder Count1 + + 8962 + + Track ID8962 + NameArpeggiation 5 + ArtistHal Leonard Guitar Method + AlbumAcoustic Guitar + GenreOther + KindAAC audio file + Size1095887 + Total Time21800 + Track Number26 + Track Count83 + Date Modified2011-07-09T10:56:21Z + Date Added2011-07-09T10:46:26Z + Bit Rate256 + Sample Rate44100 + Normalization1132 + Artwork Count1 + Persistent IDBBA1D163F8677852 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/26%20Arpeggiation%205.m4a + File Folder Count4 + Library Folder Count1 + + 8964 + + Track ID8964 + NameFriends In Low Places + ArtistHal Leonard Guitar Method + AlbumAcoustic Guitar + GenreOther + KindAAC audio file + Size865235 + Total Time15786 + Track Number27 + Track Count83 + Date Modified2011-07-09T10:56:21Z + Date Added2011-07-09T10:46:32Z + Bit Rate256 + Sample Rate44100 + Normalization1130 + Artwork Count1 + Persistent ID7A499B74270FC8D5 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/27%20Friends%20In%20Low%20Places.m4a + File Folder Count4 + Library Folder Count1 + + 8966 + + Track ID8966 + NameBlock Chord Style 1 + ArtistHal Leonard Guitar Method + AlbumAcoustic Guitar + GenreOther + KindAAC audio file + Size812804 + Total Time14280 + Track Number28 + Track Count83 + Date Modified2011-07-09T10:56:21Z + Date Added2011-07-09T10:46:36Z + Bit Rate256 + Sample Rate44100 + Normalization1204 + Artwork Count1 + Persistent IDE1A75BE208AFC830 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/28%20Block%20Chord%20Style%201.m4a + File Folder Count4 + Library Folder Count1 + + 8968 + + Track ID8968 + NameBlock Chord Style 2 + ArtistHal Leonard Guitar Method + AlbumAcoustic Guitar + GenreOther + KindAAC audio file + Size866330 + Total Time15706 + Track Number29 + Track Count83 + Date Modified2011-07-09T10:56:21Z + Date Added2011-07-09T10:46:41Z + Bit Rate256 + Sample Rate44100 + Normalization1160 + Artwork Count1 + Persistent ID985B69A0CAF1F56D + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/29%20Block%20Chord%20Style%202.m4a + File Folder Count4 + Library Folder Count1 + + 8970 + + Track ID8970 + NameYesterday + ArtistHal Leonard Guitar Method + AlbumAcoustic Guitar + GenreOther + KindAAC audio file + Size1224131 + Total Time25053 + Track Number30 + Track Count83 + Date Modified2011-07-09T10:56:21Z + Date Added2011-07-09T10:46:46Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3393644422 + Play Date UTC2011-07-16T01:30:22Z + Normalization1229 + Artwork Count1 + Persistent ID0FAD8B55D64C914C + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/30%20Yesterday.m4a + File Folder Count4 + Library Folder Count1 + + 8972 + + Track ID8972 + NameMore Than Words + ArtistHal Leonard Guitar Method + AlbumAcoustic Guitar + GenreOther + KindAAC audio file + Size977796 + Total Time19026 + Track Number31 + Track Count83 + Date Modified2011-07-09T10:56:20Z + Date Added2011-07-09T10:46:52Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3393644439 + Play Date UTC2011-07-16T01:30:39Z + Normalization1204 + Artwork Count1 + Persistent IDD681C0F98AB7264E + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/31%20More%20Than%20Words.m4a + File Folder Count4 + Library Folder Count1 + + 8974 + + Track ID8974 + NameDust In The Wind + ArtistHal Leonard Guitar Method + AlbumAcoustic Guitar + GenreOther + KindAAC audio file + Size8183352 + Total Time212106 + Track Number32 + Track Count83 + Date Modified2011-07-09T10:56:20Z + Date Added2011-07-09T10:46:57Z + Bit Rate256 + Sample Rate44100 + Normalization1850 + Artwork Count1 + Persistent ID81734CE5364F8132 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/32%20Dust%20In%20The%20Wind.m4a + File Folder Count4 + Library Folder Count1 + + 8976 + + Track ID8976 + NameAvoiding Barre Chords 1 + ArtistHal Leonard Guitar Method + AlbumAcoustic Guitar + GenreOther + KindAAC audio file + Size920644 + Total Time17173 + Track Number33 + Track Count83 + Date Modified2011-07-09T10:56:20Z + Date Added2011-07-09T10:47:27Z + Bit Rate256 + Sample Rate44100 + Normalization1465 + Artwork Count1 + Persistent ID1695C96D9577E656 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/33%20Avoiding%20Barre%20Chords%201.m4a + File Folder Count4 + Library Folder Count1 + + 8978 + + Track ID8978 + NameAvoiding Barre Chords 2 + ArtistHal Leonard Guitar Method + AlbumAcoustic Guitar + GenreOther + KindAAC audio file + Size919562 + Total Time16213 + Track Number34 + Track Count83 + Date Modified2011-07-09T10:56:19Z + Date Added2011-07-09T10:47:32Z + Bit Rate256 + Sample Rate44100 + Normalization1322 + Artwork Count1 + Persistent ID1A421DE6077630B6 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/34%20Avoiding%20Barre%20Chords%202.m4a + File Folder Count4 + Library Folder Count1 + + 8980 + + Track ID8980 + NameADJusting The Key For A Better Vocal Range + ArtistHal Leonard Guitar Method + AlbumAcoustic Guitar + GenreOther + KindAAC audio file + Size1099721 + Total Time21440 + Track Number35 + Track Count83 + Date Modified2011-07-09T10:56:19Z + Date Added2011-07-09T10:47:37Z + Bit Rate256 + Sample Rate44100 + Normalization1286 + Artwork Count1 + Persistent ID6528D1ABA32A5BA5 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/35%20ADJusting%20The%20Key%20For%20A%20Better%20Vocal%20Range.m4a + File Folder Count4 + Library Folder Count1 + + 8982 + + Track ID8982 + NameAlternate Guitar Part 1 + ArtistHal Leonard Guitar Method + AlbumAcoustic Guitar + GenreOther + KindAAC audio file + Size858109 + Total Time15653 + Track Number36 + Track Count83 + Date Modified2011-07-09T10:56:19Z + Date Added2011-07-09T10:47:42Z + Bit Rate256 + Sample Rate44100 + Normalization3605 + Artwork Count1 + Persistent ID0523C667E1F69DA2 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/36%20Alternate%20Guitar%20Part%201.m4a + File Folder Count4 + Library Folder Count1 + + 8984 + + Track ID8984 + NameAlternate Guitar Part 2 + ArtistHal Leonard Guitar Method + AlbumAcoustic Guitar + GenreOther + KindAAC audio file + Size868830 + Total Time15133 + Track Number37 + Track Count83 + Date Modified2011-07-09T10:56:19Z + Date Added2011-07-09T10:47:47Z + Bit Rate256 + Sample Rate44100 + Normalization2442 + Artwork Count1 + Persistent IDD96F69E7FBB6B160 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/37%20Alternate%20Guitar%20Part%202.m4a + File Folder Count4 + Library Folder Count1 + + 8986 + + Track ID8986 + NameLandslide + ArtistHal Leonard Guitar Method + AlbumAcoustic Guitar + GenreOther + KindAAC audio file + Size1111126 + Total Time22760 + Track Number38 + Track Count83 + Date Modified2011-07-09T10:56:19Z + Date Added2011-07-09T10:47:51Z + Bit Rate256 + Sample Rate44100 + Normalization1134 + Artwork Count1 + Persistent ID3CC0F9CFB4E453A7 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/38%20Landslide.m4a + File Folder Count4 + Library Folder Count1 + + 8988 + + Track ID8988 + NameSmall Town + ArtistHal Leonard Guitar Method + AlbumAcoustic Guitar + GenreOther + KindAAC audio file + Size874906 + Total Time15413 + Track Number39 + Track Count83 + Date Modified2011-07-09T10:56:19Z + Date Added2011-07-09T10:47:57Z + Bit Rate256 + Sample Rate44100 + Normalization1190 + Artwork Count1 + Persistent IDE867FFD9C4C3BE62 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/39%20Small%20Town.m4a + File Folder Count4 + Library Folder Count1 + + 8990 + + Track ID8990 + NameHere Comes The Sun (Excerpt) 1 + ArtistHal Leonard Guitar Method + AlbumAcoustic Guitar + GenreOther + KindAAC audio file + Size839231 + Total Time14800 + Track Number40 + Track Count83 + Date Modified2011-07-09T10:56:19Z + Date Added2011-07-09T10:48:01Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3393684968 + Play Date UTC2011-07-16T12:46:08Z + Normalization1370 + Artwork Count1 + Persistent ID51F3C7795E4B8D0D + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/40%20Here%20Comes%20The%20Sun%20(Excerpt)%201.m4a + File Folder Count4 + Library Folder Count1 + + 8992 + + Track ID8992 + NameHere Comes The Sun (Excerpt) 2 + ArtistHal Leonard Guitar Method + AlbumAcoustic Guitar + GenreOther + KindAAC audio file + Size897896 + Total Time16306 + Track Number41 + Track Count83 + Date Modified2011-07-09T10:56:19Z + Date Added2011-07-09T10:48:06Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3393684984 + Play Date UTC2011-07-16T12:46:24Z + Normalization1112 + Artwork Count1 + Persistent ID97B4C651620E6EE5 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/41%20Here%20Comes%20The%20Sun%20(Excerpt)%202.m4a + File Folder Count4 + Library Folder Count1 + + 8994 + + Track ID8994 + NameHere Comes The Sun (Excerpt) 3 + ArtistHal Leonard Guitar Method + AlbumAcoustic Guitar + GenreOther + KindAAC audio file + Size898429 + Total Time16320 + Track Number42 + Track Count83 + Date Modified2011-07-09T10:56:19Z + Date Added2011-07-09T10:48:10Z + Bit Rate256 + Sample Rate44100 + Play Count2 + Play Date3393685014 + Play Date UTC2011-07-16T12:46:54Z + Normalization1492 + Artwork Count1 + Persistent ID2A97530E287C78BA + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/42%20Here%20Comes%20The%20Sun%20(Excerpt)%203.m4a + File Folder Count4 + Library Folder Count1 + + 8996 + + Track ID8996 + NameHere Comes The Sun + ArtistHal Leonard Guitar Method + AlbumAcoustic Guitar + GenreOther + KindAAC audio file + Size7002982 + Total Time178613 + Track Number43 + Track Count83 + Date Modified2011-07-09T10:56:18Z + Date Added2011-07-09T10:48:15Z + Bit Rate256 + Sample Rate44100 + Normalization1170 + Artwork Count1 + Persistent ID864282B649200522 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/43%20Here%20Comes%20The%20Sun.m4a + File Folder Count4 + Library Folder Count1 + + 8998 + + Track ID8998 + NameOpen G 1 + ArtistHal Leonard Guitar Method + AlbumAcoustic Guitar + GenreOther + KindAAC audio file + Size727899 + Total Time12826 + Track Number44 + Track Count83 + Date Modified2011-07-09T10:56:18Z + Date Added2011-07-09T10:48:39Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3393684932 + Play Date UTC2011-07-16T12:45:32Z + Normalization959 + Artwork Count1 + Persistent ID7319292A155305F3 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/44%20Open%20G%201.m4a + File Folder Count4 + Library Folder Count1 + + 9000 + + Track ID9000 + NameOpen G 2 + ArtistHal Leonard Guitar Method + AlbumAcoustic Guitar + GenreOther + KindAAC audio file + Size729249 + Total Time12866 + Track Number45 + Track Count83 + Date Modified2011-07-09T10:56:18Z + Date Added2011-07-09T10:48:43Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3393684935 + Play Date UTC2011-07-16T12:45:35Z + Normalization1186 + Artwork Count1 + Persistent ID259635A41B390859 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/45%20Open%20G%202.m4a + File Folder Count4 + Library Folder Count1 + + 9002 + + Track ID9002 + NameDrop D 1 + ArtistHal Leonard Guitar Method + AlbumAcoustic Guitar + GenreOther + KindAAC audio file + Size751957 + Total Time13586 + Track Number46 + Track Count83 + Date Modified2011-07-09T10:56:18Z + Date Added2011-07-09T10:48:47Z + Bit Rate256 + Sample Rate44100 + Normalization1097 + Artwork Count1 + Persistent ID5827381897C7E5EF + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/46%20Drop%20D%201.m4a + File Folder Count4 + Library Folder Count1 + + 9004 + + Track ID9004 + NameDrop D 2 + ArtistHal Leonard Guitar Method + AlbumAcoustic Guitar + GenreOther + KindAAC audio file + Size1034193 + Total Time20333 + Track Number47 + Track Count83 + Date Modified2011-07-09T10:56:18Z + Date Added2011-07-09T10:48:51Z + Bit Rate256 + Sample Rate44100 + Normalization1080 + Artwork Count1 + Persistent ID34E8A98AD3160F3E + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/47%20Drop%20D%202.m4a + File Folder Count4 + Library Folder Count1 + + 9006 + + Track ID9006 + NameDear Prudence + ArtistHal Leonard Guitar Method + AlbumAcoustic Guitar + GenreOther + KindAAC audio file + Size803190 + Total Time15240 + Track Number48 + Track Count83 + Date Modified2011-07-09T10:56:18Z + Date Added2011-07-09T10:48:57Z + Bit Rate256 + Sample Rate44100 + Normalization1097 + Artwork Count1 + Persistent ID738BC1116DD6E7B6 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/48%20Dear%20Prudence.m4a + File Folder Count4 + Library Folder Count1 + + 9008 + + Track ID9008 + NameBuilding A Mystery + ArtistHal Leonard Guitar Method + AlbumAcoustic Guitar + GenreOther + KindAAC audio file + Size868241 + Total Time15840 + Track Number49 + Track Count83 + Date Modified2011-07-09T10:56:18Z + Date Added2011-07-09T10:49:01Z + Bit Rate256 + Sample Rate44100 + Normalization1004 + Artwork Count1 + Persistent IDD2EE8BFF599999EF + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/49%20Building%20A%20Mystery.m4a + File Folder Count4 + Library Folder Count1 + + 9010 + + Track ID9010 + NameName + ArtistHal Leonard Guitar Method + AlbumAcoustic Guitar + GenreOther + KindAAC audio file + Size9913051 + Total Time274480 + Track Number50 + Track Count83 + Date Modified2011-07-09T10:56:17Z + Date Added2011-07-09T10:49:05Z + Bit Rate256 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Persistent IDF033132677D06453 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/50%20Name.m4a + File Folder Count4 + Library Folder Count1 + + 9012 + + Track ID9012 + NameBallad Strum 1 + ArtistHal Leonard Guitar Method + AlbumAcoustic Guitar + GenreOther + KindAAC audio file + Size1236565 + Total Time25320 + Track Number51 + Track Count83 + Date Modified2011-07-09T10:56:17Z + Date Added2011-07-09T10:49:39Z + Bit Rate256 + Sample Rate44100 + Normalization1288 + Artwork Count1 + Persistent ID0470D4F48A551337 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/51%20Ballad%20Strum%201.m4a + File Folder Count4 + Library Folder Count1 + + 9014 + + Track ID9014 + NameBallad Strum 2 + ArtistHal Leonard Guitar Method + AlbumAcoustic Guitar + GenreOther + KindAAC audio file + Size1231494 + Total Time25253 + Track Number52 + Track Count83 + Date Modified2011-07-09T10:56:17Z + Date Added2011-07-09T10:49:44Z + Bit Rate256 + Sample Rate44100 + Normalization1187 + Artwork Count1 + Persistent ID39B64895C4A6074F + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/52%20Ballad%20Strum%202.m4a + File Folder Count4 + Library Folder Count1 + + 9016 + + Track ID9016 + NameBallad Strum 3 + ArtistHal Leonard Guitar Method + AlbumAcoustic Guitar + GenreOther + KindAAC audio file + Size997733 + Total Time18946 + Track Number53 + Track Count83 + Date Modified2011-07-09T10:56:17Z + Date Added2011-07-09T10:49:50Z + Bit Rate256 + Sample Rate44100 + Normalization930 + Artwork Count1 + Persistent ID9F4AD7D08D9135E7 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/53%20Ballad%20Strum%203.m4a + File Folder Count4 + Library Folder Count1 + + 9018 + + Track ID9018 + NameBluegrass + ArtistHal Leonard Guitar Method + AlbumAcoustic Guitar + GenreOther + KindAAC audio file + Size828495 + Total Time14253 + Track Number54 + Track Count83 + Date Modified2011-07-09T10:56:17Z + Date Added2011-07-09T10:49:55Z + Bit Rate256 + Sample Rate44100 + Normalization1366 + Artwork Count1 + Persistent ID58F1914C24089634 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/54%20Bluegrass.m4a + File Folder Count4 + Library Folder Count1 + + 9020 + + Track ID9020 + NameSoldier's Joy + ArtistHal Leonard Guitar Method + AlbumAcoustic Guitar + GenreOther + KindAAC audio file + Size892713 + Total Time16186 + Track Number55 + Track Count83 + Date Modified2011-07-09T10:56:17Z + Date Added2011-07-09T10:49:59Z + Bit Rate256 + Sample Rate44100 + Normalization2092 + Artwork Count1 + Persistent IDC985C8ABEA085348 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/55%20Soldier's%20Joy.m4a + File Folder Count4 + Library Folder Count1 + + 9022 + + Track ID9022 + NameBilly In The Low Ground + ArtistHal Leonard Guitar Method + AlbumAcoustic Guitar + GenreOther + KindAAC audio file + Size910519 + Total Time16600 + Track Number56 + Track Count83 + Date Modified2011-07-09T10:56:17Z + Date Added2011-07-09T10:50:03Z + Bit Rate256 + Sample Rate44100 + Normalization2039 + Artwork Count1 + Persistent ID7B6F86BF72F37F74 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/56%20Billy%20In%20The%20Low%20Ground.m4a + File Folder Count4 + Library Folder Count1 + + 9024 + + Track ID9024 + NameWhisky Before Breakfast + ArtistHal Leonard Guitar Method + AlbumAcoustic Guitar + GenreOther + KindAAC audio file + Size912885 + Total Time16986 + Track Number57 + Track Count83 + Date Modified2011-07-09T10:56:17Z + Date Added2011-07-09T10:50:08Z + Bit Rate256 + Sample Rate44100 + Normalization1984 + Artwork Count1 + Persistent ID3E8E0E19AE4D23DF + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/57%20Whisky%20Before%20Breakfast.m4a + File Folder Count4 + Library Folder Count1 + + 9026 + + Track ID9026 + NameBlackberry Blossom + ArtistHal Leonard Guitar Method + AlbumAcoustic Guitar + GenreOther + KindAAC audio file + Size912803 + Total Time16440 + Track Number58 + Track Count83 + Date Modified2011-07-09T10:56:16Z + Date Added2011-07-09T10:50:12Z + Bit Rate256 + Sample Rate44100 + Normalization2464 + Artwork Count1 + Persistent ID0D33B8E10F382E73 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/58%20Blackberry%20Blossom.m4a + File Folder Count4 + Library Folder Count1 + + 9028 + + Track ID9028 + NameWildwood Flower + ArtistHal Leonard Guitar Method + AlbumAcoustic Guitar + GenreOther + KindAAC audio file + Size7453592 + Total Time193466 + Track Number59 + Track Count83 + Date Modified2011-07-09T10:56:16Z + Date Added2011-07-09T10:50:17Z + Bit Rate256 + Sample Rate44100 + Normalization1175 + Artwork Count1 + Persistent ID3F75A151365DAF2B + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/59%20Wildwood%20Flower.m4a + File Folder Count4 + Library Folder Count1 + + 9030 + + Track ID9030 + NameSlide Basics 1 + ArtistHal Leonard Guitar Method + AlbumAcoustic Guitar + GenreOther + KindAAC audio file + Size663049 + Total Time11186 + Track Number60 + Track Count83 + Date Modified2011-07-09T10:56:16Z + Date Added2011-07-09T10:50:41Z + Bit Rate256 + Sample Rate44100 + Normalization1224 + Artwork Count1 + Persistent ID2E82E9CDE68AC875 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/60%20Slide%20Basics%201.m4a + File Folder Count4 + Library Folder Count1 + + 9032 + + Track ID9032 + NameSlide Basics 2 + ArtistHal Leonard Guitar Method + AlbumAcoustic Guitar + GenreOther + KindAAC audio file + Size1051700 + Total Time20733 + Track Number61 + Track Count83 + Date Modified2011-07-09T10:56:16Z + Date Added2011-07-09T10:50:45Z + Bit Rate256 + Sample Rate44100 + Normalization1157 + Artwork Count1 + Persistent IDB234CAE8B81C2577 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/61%20Slide%20Basics%202.m4a + File Folder Count4 + Library Folder Count1 + + 9034 + + Track ID9034 + NameSlide Basics 3 + ArtistHal Leonard Guitar Method + AlbumAcoustic Guitar + GenreOther + KindAAC audio file + Size631588 + Total Time10360 + Track Number62 + Track Count83 + Date Modified2011-07-09T10:56:16Z + Date Added2011-07-09T10:50:48Z + Bit Rate256 + Sample Rate44100 + Normalization1218 + Artwork Count1 + Persistent ID8ECAEB44B09963FA + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/62%20Slide%20Basics%203.m4a + File Folder Count4 + Library Folder Count1 + + 9036 + + Track ID9036 + NameRhythm Patterns 1 + ArtistHal Leonard Guitar Method + AlbumAcoustic Guitar + GenreOther + KindAAC audio file + Size942380 + Total Time16840 + Track Number63 + Track Count83 + Date Modified2011-07-09T10:56:16Z + Date Added2011-07-09T10:50:50Z + Bit Rate256 + Sample Rate44100 + Normalization1189 + Artwork Count1 + Persistent IDF96C1B51661FDAC6 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/63%20Rhythm%20Patterns%201.m4a + File Folder Count4 + Library Folder Count1 + + 9038 + + Track ID9038 + NameRhythm Patterns 2 + ArtistHal Leonard Guitar Method + AlbumAcoustic Guitar + GenreOther + KindAAC audio file + Size1122927 + Total Time23146 + Track Number64 + Track Count83 + Date Modified2011-07-09T10:56:16Z + Date Added2011-07-09T10:50:53Z + Bit Rate256 + Sample Rate44100 + Normalization1114 + Artwork Count1 + Persistent IDDBB8019C3C5796BB + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/64%20Rhythm%20Patterns%202.m4a + File Folder Count4 + Library Folder Count1 + + 9040 + + Track ID9040 + NameMy Black Mama + ArtistHal Leonard Guitar Method + AlbumAcoustic Guitar + GenreOther + KindAAC audio file + Size732307 + Total Time13013 + Track Number65 + Track Count83 + Date Modified2011-07-09T10:56:16Z + Date Added2011-07-09T10:50:56Z + Bit Rate256 + Sample Rate44100 + Normalization1202 + Artwork Count1 + Persistent ID79C523045543AE0A + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/65%20My%20Black%20Mama.m4a + File Folder Count4 + Library Folder Count1 + + 9042 + + Track ID9042 + NameCome On In My Kitchen + ArtistHal Leonard Guitar Method + AlbumAcoustic Guitar + GenreOther + KindAAC audio file + Size976472 + Total Time18466 + Track Number66 + Track Count83 + Date Modified2011-07-09T10:56:15Z + Date Added2011-07-09T10:50:58Z + Bit Rate256 + Sample Rate44100 + Normalization1147 + Artwork Count1 + Persistent ID1FCCB54F6832F597 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/66%20Come%20On%20In%20My%20Kitchen.m4a + File Folder Count4 + Library Folder Count1 + + 9044 + + Track ID9044 + NameTerraplane Blues + ArtistHal Leonard Guitar Method + AlbumAcoustic Guitar + GenreOther + KindAAC audio file + Size1083526 + Total Time21093 + Track Number67 + Track Count83 + Date Modified2011-07-09T10:56:15Z + Date Added2011-07-09T10:51:01Z + Bit Rate256 + Sample Rate44100 + Normalization1250 + Artwork Count1 + Persistent ID21CF2F1BC07FD795 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/67%20Terraplane%20Blues.m4a + File Folder Count4 + Library Folder Count1 + + 9046 + + Track ID9046 + NameCross Road Blues + ArtistHal Leonard Guitar Method + AlbumAcoustic Guitar + GenreOther + KindAAC audio file + Size6225450 + Total Time158946 + Track Number68 + Track Count83 + Date Modified2011-07-09T10:56:15Z + Date Added2011-07-09T10:51:04Z + Bit Rate256 + Sample Rate44100 + Normalization1147 + Artwork Count1 + Persistent ID85AFF7807C1196C2 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/68%20Cross%20Road%20Blues.m4a + File Folder Count4 + Library Folder Count1 + + 9048 + + Track ID9048 + NameDroning Strings 1 + ArtistHal Leonard Guitar Method + AlbumAcoustic Guitar + GenreOther + KindAAC audio file + Size866147 + Total Time15653 + Track Number69 + Track Count83 + Date Modified2011-07-09T10:56:15Z + Date Added2011-07-09T10:51:23Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3393685229 + Play Date UTC2011-07-16T12:50:29Z + Normalization1092 + Artwork Count1 + Persistent ID2316EEF4A228A0A4 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/69%20Droning%20Strings%201.m4a + File Folder Count4 + Library Folder Count1 + + 9050 + + Track ID9050 + NameDroning Strings 2 + ArtistHal Leonard Guitar Method + AlbumAcoustic Guitar + GenreOther + KindAAC audio file + Size921923 + Total Time16866 + Track Number70 + Track Count83 + Date Modified2011-07-09T10:56:15Z + Date Added2011-07-09T10:51:26Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3393685246 + Play Date UTC2011-07-16T12:50:46Z + Normalization1090 + Artwork Count1 + Persistent IDC27C8D045B8E3BD0 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/70%20Droning%20Strings%202.m4a + File Folder Count4 + Library Folder Count1 + + 9052 + + Track ID9052 + NameDroning Strings 3 + ArtistHal Leonard Guitar Method + AlbumAcoustic Guitar + GenreOther + KindAAC audio file + Size829600 + Total Time14613 + Track Number71 + Track Count83 + Date Modified2011-07-09T10:56:15Z + Date Added2011-07-09T10:51:29Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3393685261 + Play Date UTC2011-07-16T12:51:01Z + Normalization1161 + Artwork Count1 + Persistent ID3F56EB410B1D89E4 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/71%20Droning%20Strings%203.m4a + File Folder Count4 + Library Folder Count1 + + 9054 + + Track ID9054 + NameDroning Strings 4 + ArtistHal Leonard Guitar Method + AlbumAcoustic Guitar + GenreOther + KindAAC audio file + Size742286 + Total Time13333 + Track Number72 + Track Count83 + Date Modified2011-07-09T10:56:14Z + Date Added2011-07-09T10:51:31Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3393685274 + Play Date UTC2011-07-16T12:51:14Z + Normalization1019 + Artwork Count1 + Persistent IDB0E17D8E5EDFB55D + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/72%20Droning%20Strings%204.m4a + File Folder Count4 + Library Folder Count1 + + 9056 + + Track ID9056 + NameDroning Strings 5 + ArtistHal Leonard Guitar Method + AlbumAcoustic Guitar + GenreOther + KindAAC audio file + Size701324 + Total Time12040 + Track Number73 + Track Count83 + Date Modified2011-07-09T10:56:14Z + Date Added2011-07-09T10:51:33Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3393685286 + Play Date UTC2011-07-16T12:51:26Z + Normalization870 + Artwork Count1 + Persistent ID091A1692557F4CD7 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/73%20Droning%20Strings%205.m4a + File Folder Count4 + Library Folder Count1 + + 9058 + + Track ID9058 + NameDroning Strings 6 + ArtistHal Leonard Guitar Method + AlbumAcoustic Guitar + GenreOther + KindAAC audio file + Size751948 + Total Time13186 + Track Number74 + Track Count83 + Date Modified2011-07-09T10:56:14Z + Date Added2011-07-09T10:51:35Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3393685299 + Play Date UTC2011-07-16T12:51:39Z + Normalization929 + Artwork Count1 + Persistent ID45BB7B663206699D + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/74%20Droning%20Strings%206.m4a + File Folder Count4 + Library Folder Count1 + + 9060 + + Track ID9060 + NameHeaven Beside You + ArtistHal Leonard Guitar Method + AlbumAcoustic Guitar + GenreOther + KindAAC audio file + Size1170417 + Total Time23573 + Track Number75 + Track Count83 + Date Modified2011-07-09T10:56:14Z + Date Added2011-07-09T10:51:37Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3393685323 + Play Date UTC2011-07-16T12:52:03Z + Normalization947 + Artwork Count1 + Persistent ID40D7ED34393C0B9B + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/75%20Heaven%20Beside%20You.m4a + File Folder Count4 + Library Folder Count1 + + 9062 + + Track ID9062 + NameChordal Embellishments 1 + ArtistHal Leonard Guitar Method + AlbumAcoustic Guitar + GenreOther + KindAAC audio file + Size606786 + Total Time9453 + Track Number76 + Track Count83 + Date Modified2011-07-09T10:56:14Z + Date Added2011-07-09T10:51:41Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3393685332 + Play Date UTC2011-07-16T12:52:12Z + Normalization1214 + Artwork Count1 + Persistent ID324F9341AF53D8F9 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/76%20Chordal%20Embellishments%201.m4a + File Folder Count4 + Library Folder Count1 + + 9064 + + Track ID9064 + NameChordal Embellishments 2 + ArtistHal Leonard Guitar Method + AlbumAcoustic Guitar + GenreOther + KindAAC audio file + Size718028 + Total Time12480 + Track Number77 + Track Count83 + Date Modified2011-07-09T10:56:14Z + Date Added2011-07-09T10:51:42Z + Bit Rate256 + Sample Rate44100 + Normalization1103 + Artwork Count1 + Persistent IDE5E39169DD307956 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/77%20Chordal%20Embellishments%202.m4a + File Folder Count4 + Library Folder Count1 + + 9066 + + Track ID9066 + NameChordal Embellishments 3 + ArtistHal Leonard Guitar Method + AlbumAcoustic Guitar + GenreOther + KindAAC audio file + Size647777 + Total Time10893 + Track Number78 + Track Count83 + Date Modified2011-07-09T10:56:14Z + Date Added2011-07-09T10:51:44Z + Bit Rate256 + Sample Rate44100 + Normalization1184 + Artwork Count1 + Persistent ID5193729687CEA8BE + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/78%20Chordal%20Embellishments%203.m4a + File Folder Count4 + Library Folder Count1 + + 9068 + + Track ID9068 + NameChordal Embellishments 4 + ArtistHal Leonard Guitar Method + AlbumAcoustic Guitar + GenreOther + KindAAC audio file + Size609581 + Total Time9400 + Track Number79 + Track Count83 + Date Modified2011-07-09T10:56:14Z + Date Added2011-07-09T10:51:46Z + Bit Rate256 + Sample Rate44100 + Normalization1383 + Artwork Count1 + Persistent ID447E655BF77F036E + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/79%20Chordal%20Embellishments%204.m4a + File Folder Count4 + Library Folder Count1 + + 9070 + + Track ID9070 + NameChordal Embellishments 5 + ArtistHal Leonard Guitar Method + AlbumAcoustic Guitar + GenreOther + KindAAC audio file + Size644659 + Total Time10880 + Track Number80 + Track Count83 + Date Modified2011-07-09T10:56:14Z + Date Added2011-07-09T10:51:48Z + Bit Rate256 + Sample Rate44100 + Normalization818 + Artwork Count1 + Persistent ID8E349E4AB481FDA7 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/80%20Chordal%20Embellishments%205.m4a + File Folder Count4 + Library Folder Count1 + + 9072 + + Track ID9072 + NameChordal Embellishments 6 + ArtistHal Leonard Guitar Method + AlbumAcoustic Guitar + GenreOther + KindAAC audio file + Size657840 + Total Time11120 + Track Number81 + Track Count83 + Date Modified2011-07-09T10:56:13Z + Date Added2011-07-09T10:51:50Z + Bit Rate256 + Sample Rate44100 + Normalization1258 + Artwork Count1 + Persistent ID7B31071702D5303E + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/81%20Chordal%20Embellishments%206.m4a + File Folder Count4 + Library Folder Count1 + + 9074 + + Track ID9074 + NameJack & Diane + ArtistHal Leonard Guitar Method + AlbumAcoustic Guitar + GenreOther + KindAAC audio file + Size858219 + Total Time15373 + Track Number82 + Track Count83 + Date Modified2011-07-09T10:56:13Z + Date Added2011-07-09T10:51:51Z + Bit Rate256 + Sample Rate44100 + Normalization1223 + Artwork Count1 + Persistent ID9EC2CDB95FACFF32 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/82%20Jack%20&%20Diane.m4a + File Folder Count4 + Library Folder Count1 + + 9076 + + Track ID9076 + NameAngie + ArtistHal Leonard Guitar Method + AlbumAcoustic Guitar + GenreOther + KindAAC audio file + Size10425593 + Total Time271373 + Track Number83 + Track Count83 + Date Modified2011-07-09T10:56:13Z + Date Added2011-07-09T10:51:53Z + Bit Rate256 + Sample Rate44100 + Normalization1851 + Artwork Count1 + Persistent IDFD84272F3054A4D9 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/83%20Angie.m4a + File Folder Count4 + Library Folder Count1 + + 9080 + + Track ID9080 + NameTrack 01 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size550254 + Total Time17533 + Track Number1 + Track Count99 + Date Modified2011-07-24T03:28:02Z + Date Added2011-07-24T02:53:07Z + Bit Rate256 + Sample Rate44100 + Normalization495 + Artwork Count1 + Persistent ID9DFF314D71587AA4 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/01%20Track%2001.m4a + File Folder Count4 + Library Folder Count1 + + 9082 + + Track ID9082 + NameTrack 02 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size1899898 + Total Time59346 + Track Number2 + Track Count99 + Date Modified2011-07-24T03:28:02Z + Date Added2011-07-24T02:53:11Z + Bit Rate256 + Sample Rate44100 + Normalization725 + Artwork Count1 + Persistent IDDB81C026041F779B + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/02%20Track%2002.m4a + File Folder Count4 + Library Folder Count1 + + 9084 + + Track ID9084 + NameTrack 03 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size1287406 + Total Time41240 + Track Number3 + Track Count99 + Date Modified2011-07-24T03:28:02Z + Date Added2011-07-24T02:53:23Z + Bit Rate256 + Sample Rate44100 + Normalization811 + Artwork Count1 + Persistent IDA7A13B1BC4596141 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/03%20Track%2003.m4a + File Folder Count4 + Library Folder Count1 + + 9086 + + Track ID9086 + NameTrack 04 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size720792 + Total Time22573 + Track Number4 + Track Count99 + Date Modified2011-07-24T03:28:02Z + Date Added2011-07-24T02:53:31Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3394461877 + Play Date UTC2011-07-25T12:34:37Z + Normalization766 + Artwork Count1 + Persistent ID247C675632568F82 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/04%20Track%2004.m4a + File Folder Count4 + Library Folder Count1 + + 9088 + + Track ID9088 + NameTrack 05 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size720740 + Total Time22720 + Track Number5 + Track Count99 + Date Modified2011-07-24T03:28:02Z + Date Added2011-07-24T02:53:36Z + Bit Rate256 + Sample Rate44100 + Normalization713 + Artwork Count1 + Persistent ID577B4985EC705E72 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/05%20Track%2005.m4a + File Folder Count4 + Library Folder Count1 + + 9090 + + Track ID9090 + NameTrack 06 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size986783 + Total Time31333 + Track Number6 + Track Count99 + Date Modified2011-07-24T03:28:02Z + Date Added2011-07-24T02:53:41Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3394560497 + Play Date UTC2011-07-26T15:58:17Z + Normalization713 + Artwork Count1 + Persistent ID686B37D63A82145D + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/06%20Track%2006.m4a + File Folder Count4 + Library Folder Count1 + + 9092 + + Track ID9092 + NameTrack 07 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size2138437 + Total Time66706 + Track Number7 + Track Count99 + Date Modified2011-07-24T03:28:02Z + Date Added2011-07-24T02:53:47Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3395062776 + Play Date UTC2011-08-01T11:29:36Z + Normalization763 + Artwork Count1 + Persistent ID416139A75D83BCF3 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/07%20Track%2007.m4a + File Folder Count4 + Library Folder Count1 + + 9094 + + Track ID9094 + NameTrack 08 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size955691 + Total Time31333 + Track Number8 + Track Count99 + Date Modified2011-07-24T03:28:01Z + Date Added2011-07-24T02:53:59Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3394560585 + Play Date UTC2011-07-26T15:59:45Z + Normalization968 + Artwork Count1 + Persistent ID036E5D7EBCF6CD3F + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/08%20Track%2008.m4a + File Folder Count4 + Library Folder Count1 + + 9096 + + Track ID9096 + NameTrack 09 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size469640 + Total Time15333 + Track Number9 + Track Count99 + Date Modified2011-07-24T03:28:01Z + Date Added2011-07-24T02:54:05Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3394560600 + Play Date UTC2011-07-26T16:00:00Z + Normalization1172 + Artwork Count1 + Persistent ID72F7C326F70AE0E6 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/09%20Track%2009.m4a + File Folder Count4 + Library Folder Count1 + + 9098 + + Track ID9098 + NameTrack 10 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size681044 + Total Time20226 + Track Number10 + Track Count99 + Date Modified2011-07-24T03:28:01Z + Date Added2011-07-24T02:54:08Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3394560620 + Play Date UTC2011-07-26T16:00:20Z + Normalization1207 + Artwork Count1 + Persistent ID88CD8F95C322DBCD + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/10%20Track%2010.m4a + File Folder Count4 + Library Folder Count1 + + 9100 + + Track ID9100 + NameTrack 11 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size602952 + Total Time17520 + Track Number11 + Track Count99 + Date Modified2011-07-24T03:28:01Z + Date Added2011-07-24T02:54:12Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3394560664 + Play Date UTC2011-07-26T16:01:04Z + Normalization1009 + Artwork Count1 + Persistent ID2EF9C924B7733827 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/11%20Track%2011.m4a + File Folder Count4 + Library Folder Count1 + + 9102 + + Track ID9102 + NameTrack 12 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size595709 + Total Time16906 + Track Number12 + Track Count99 + Date Modified2011-07-24T03:28:01Z + Date Added2011-07-24T02:54:16Z + Bit Rate256 + Sample Rate44100 + Play Count3 + Play Date3395235045 + Play Date UTC2011-08-03T11:20:45Z + Skip Count1 + Normalization781 + Artwork Count1 + Persistent ID96366C103CF9C51E + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/12%20Track%2012.m4a + File Folder Count4 + Library Folder Count1 + + 9104 + + Track ID9104 + NameTrack 13 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size560390 + Total Time16053 + Track Number13 + Track Count99 + Date Modified2011-07-24T03:28:01Z + Date Added2011-07-24T02:54:19Z + Bit Rate256 + Sample Rate44100 + Play Count4 + Play Date3395241454 + Play Date UTC2011-08-03T13:07:34Z + Skip Count1 + Normalization1090 + Artwork Count1 + Persistent ID93056E54FA83E172 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/13%20Track%2013.m4a + File Folder Count4 + Library Folder Count1 + + 9106 + + Track ID9106 + NameTrack 14 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size926963 + Total Time26413 + Track Number14 + Track Count99 + Date Modified2011-07-24T03:28:01Z + Date Added2011-07-24T02:54:23Z + Bit Rate256 + Sample Rate44100 + Play Count2 + Play Date3395320339 + Play Date UTC2011-08-04T11:02:19Z + Normalization933 + Artwork Count1 + Persistent ID0B54713C86708ADA + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/14%20Track%2014.m4a + File Folder Count4 + Library Folder Count1 + + 9108 + + Track ID9108 + NameTrack 15 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size779018 + Total Time23786 + Track Number15 + Track Count99 + Date Modified2011-07-24T03:28:01Z + Date Added2011-07-24T02:54:28Z + Bit Rate256 + Sample Rate44100 + Normalization495 + Artwork Count1 + Persistent ID142941686E3CDC3C + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/15%20Track%2015.m4a + File Folder Count4 + Library Folder Count1 + + 9110 + + Track ID9110 + NameTrack 16 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size1464636 + Total Time44520 + Track Number16 + Track Count99 + Date Modified2011-07-24T03:28:01Z + Date Added2011-07-24T02:54:32Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3395571999 + Play Date UTC2011-08-07T08:56:39Z + Normalization495 + Artwork Count1 + Persistent ID05C81FD1E6673A5A + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/16%20Track%2016.m4a + File Folder Count4 + Library Folder Count1 + + 9112 + + Track ID9112 + NameTrack 17 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size947152 + Total Time28493 + Track Number17 + Track Count99 + Date Modified2011-07-24T03:28:01Z + Date Added2011-07-24T02:54:40Z + Bit Rate256 + Sample Rate44100 + Normalization495 + Artwork Count1 + Persistent ID6A99EBAD7B789D2B + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/17%20Track%2017.m4a + File Folder Count4 + Library Folder Count1 + + 9114 + + Track ID9114 + NameTrack 18 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size955414 + Total Time28493 + Track Number18 + Track Count99 + Date Modified2011-07-24T03:28:01Z + Date Added2011-07-24T02:54:45Z + Bit Rate256 + Sample Rate44100 + Normalization495 + Artwork Count1 + Persistent IDA1237F9CDDE0F01E + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/18%20Track%2018.m4a + File Folder Count4 + Library Folder Count1 + + 9116 + + Track ID9116 + NameTrack 19 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size585757 + Total Time18173 + Track Number19 + Track Count99 + Date Modified2011-07-24T03:28:00Z + Date Added2011-07-24T02:54:50Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3395665679 + Play Date UTC2011-08-08T10:57:59Z + Skip Count1 + Normalization495 + Artwork Count1 + Persistent IDE3838ECAA09A47B6 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/19%20Track%2019.m4a + File Folder Count4 + Library Folder Count1 + + 9118 + + Track ID9118 + NameTrack 20 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size860472 + Total Time25266 + Track Number20 + Track Count99 + Date Modified2011-07-24T03:28:00Z + Date Added2011-07-24T02:54:53Z + Bit Rate256 + Sample Rate44100 + Play Count2 + Play Date3395673323 + Play Date UTC2011-08-08T13:05:23Z + Skip Count1 + Normalization495 + Artwork Count1 + Persistent IDE66A9912B96F46DC + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/20%20Track%2020.m4a + File Folder Count4 + Library Folder Count1 + + 9120 + + Track ID9120 + NameTrack 21 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size862714 + Total Time24920 + Track Number21 + Track Count99 + Date Modified2011-07-24T03:28:00Z + Date Added2011-07-24T02:54:58Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3395664960 + Play Date UTC2011-08-08T10:46:00Z + Normalization495 + Artwork Count1 + Persistent ID02C53E3271951E49 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/21%20Track%2021.m4a + File Folder Count4 + Library Folder Count1 + + 9122 + + Track ID9122 + NameTrack 22 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size875995 + Total Time24920 + Track Number22 + Track Count99 + Date Modified2011-07-24T03:28:00Z + Date Added2011-07-24T02:55:02Z + Bit Rate256 + Sample Rate44100 + Normalization705 + Artwork Count1 + Persistent ID678CB007F223B775 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/22%20Track%2022.m4a + File Folder Count4 + Library Folder Count1 + + 9124 + + Track ID9124 + NameTrack 23 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size770371 + Total Time22280 + Track Number23 + Track Count99 + Date Modified2011-07-24T03:28:00Z + Date Added2011-07-24T02:55:07Z + Bit Rate256 + Sample Rate44100 + Skip Count1 + Normalization701 + Artwork Count1 + Persistent ID0535444A6F255FD1 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/23%20Track%2023.m4a + File Folder Count4 + Library Folder Count1 + + 9126 + + Track ID9126 + NameTrack 24 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size674423 + Total Time21546 + Track Number24 + Track Count99 + Date Modified2011-07-24T03:28:00Z + Date Added2011-07-24T02:55:11Z + Bit Rate256 + Sample Rate44100 + Normalization782 + Artwork Count1 + Persistent ID5316C102F96E8AD4 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/24%20Track%2024.m4a + File Folder Count4 + Library Folder Count1 + + 9128 + + Track ID9128 + NameTrack 25 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size786329 + Total Time23853 + Track Number25 + Track Count99 + Date Modified2011-07-24T03:28:00Z + Date Added2011-07-24T02:55:14Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3394547877 + Play Date UTC2011-07-26T12:27:57Z + Normalization495 + Artwork Count1 + Persistent ID8FF3E9BE3A1D2485 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/25%20Track%2025.m4a + File Folder Count4 + Library Folder Count1 + + 9130 + + Track ID9130 + NameTrack 26 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size971473 + Total Time27773 + Track Number26 + Track Count99 + Date Modified2011-07-24T03:28:00Z + Date Added2011-07-24T02:55:19Z + Bit Rate256 + Sample Rate44100 + Play Count3 + Play Date3395664885 + Play Date UTC2011-08-08T10:44:45Z + Skip Count1 + Normalization784 + Artwork Count1 + Persistent IDC18FC77ECE4F8EA4 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/26%20Track%2026.m4a + File Folder Count4 + Library Folder Count1 + + 9132 + + Track ID9132 + NameTrack 27 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size768791 + Total Time24426 + Track Number27 + Track Count99 + Date Modified2011-07-24T03:28:00Z + Date Added2011-07-24T02:55:23Z + Bit Rate256 + Sample Rate44100 + Normalization573 + Artwork Count1 + Persistent ID76CF4F7546B1D7FE + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/27%20Track%2027.m4a + File Folder Count4 + Library Folder Count1 + + 9134 + + Track ID9134 + NameTrack 28 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size575043 + Total Time16200 + Track Number28 + Track Count99 + Date Modified2011-07-24T03:28:00Z + Date Added2011-07-24T02:55:27Z + Bit Rate256 + Sample Rate44100 + Normalization495 + Artwork Count1 + Persistent ID8B82DCF0248BBD74 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/28%20Track%2028.m4a + File Folder Count4 + Library Folder Count1 + + 9136 + + Track ID9136 + NameTrack 29 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size577006 + Total Time16266 + Track Number29 + Track Count99 + Date Modified2011-07-24T03:28:00Z + Date Added2011-07-24T02:55:30Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3396168525 + Play Date UTC2011-08-14T06:38:45Z + Skip Count1 + Normalization725 + Artwork Count1 + Persistent IDA26F4ED88D782ECB + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/29%20Track%2029.m4a + File Folder Count4 + Library Folder Count1 + + 9138 + + Track ID9138 + NameTrack 30 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size925738 + Total Time26266 + Track Number30 + Track Count99 + Date Modified2011-07-24T03:28:00Z + Date Added2011-07-24T02:55:33Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3395943751 + Play Date UTC2011-08-11T16:12:31Z + Skip Count2 + Normalization537 + Artwork Count1 + Persistent IDEB01F5537D51F28E + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/30%20Track%2030.m4a + File Folder Count4 + Library Folder Count1 + + 9140 + + Track ID9140 + NameTrack 31 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size662588 + Total Time21173 + Track Number31 + Track Count99 + Date Modified2011-07-24T03:27:59Z + Date Added2011-07-24T02:55:38Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3395943809 + Play Date UTC2011-08-11T16:13:29Z + Skip Count1 + Normalization495 + Artwork Count1 + Persistent ID5752154D3BACD814 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/31%20Track%2031.m4a + File Folder Count4 + Library Folder Count1 + + 9142 + + Track ID9142 + NameTrack 32 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size667397 + Total Time21280 + Track Number32 + Track Count99 + Date Modified2011-07-24T03:27:59Z + Date Added2011-07-24T02:55:42Z + Bit Rate256 + Sample Rate44100 + Play Count2 + Play Date3396198082 + Play Date UTC2011-08-14T14:51:22Z + Normalization1054 + Artwork Count1 + Persistent ID6F255B746D785D65 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/32%20Track%2032.m4a + File Folder Count4 + Library Folder Count1 + + 9144 + + Track ID9144 + NameTrack 33 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size527782 + Total Time15986 + Track Number33 + Track Count99 + Date Modified2011-07-24T03:27:59Z + Date Added2011-07-24T02:55:45Z + Bit Rate256 + Sample Rate44100 + Play Count2 + Play Date3396275648 + Play Date UTC2011-08-15T12:24:08Z + Skip Count1 + Normalization740 + Artwork Count1 + Persistent ID077ECD3CEEF5897B + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/33%20Track%2033.m4a + File Folder Count4 + Library Folder Count1 + + 9146 + + Track ID9146 + NameTrack 34 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size887449 + Total Time26733 + Track Number34 + Track Count99 + Date Modified2011-07-24T03:27:59Z + Date Added2011-07-24T02:55:48Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3395943925 + Play Date UTC2011-08-11T16:15:25Z + Normalization832 + Artwork Count1 + Persistent ID2ACC7CE256E2951B + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/34%20Track%2034.m4a + File Folder Count4 + Library Folder Count1 + + 9148 + + Track ID9148 + NameTrack 35 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size761007 + Total Time23013 + Track Number35 + Track Count99 + Date Modified2011-07-24T03:27:59Z + Date Added2011-07-24T02:55:52Z + Bit Rate256 + Sample Rate44100 + Play Count2 + Play Date3396355797 + Play Date UTC2011-08-16T10:39:57Z + Skip Count2 + Normalization1074 + Artwork Count1 + Persistent ID574ED18245822E6D + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/35%20Track%2035.m4a + File Folder Count4 + Library Folder Count1 + + 9150 + + Track ID9150 + NameTrack 36 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size1263514 + Total Time36480 + Track Number36 + Track Count99 + Date Modified2011-07-24T03:27:59Z + Date Added2011-07-24T02:55:56Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3395854252 + Play Date UTC2011-08-10T15:20:52Z + Normalization831 + Artwork Count1 + Persistent ID87E7794371492A6B + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/36%20Track%2036.m4a + File Folder Count4 + Library Folder Count1 + + 9152 + + Track ID9152 + NameTrack 37 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size1002978 + Total Time29120 + Track Number37 + Track Count99 + Date Modified2011-07-24T03:27:59Z + Date Added2011-07-24T02:56:02Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3396374566 + Play Date UTC2011-08-16T15:52:46Z + Normalization1027 + Artwork Count1 + Persistent IDED8978D7B2766521 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/37%20Track%2037.m4a + File Folder Count4 + Library Folder Count1 + + 9154 + + Track ID9154 + NameTrack 38 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size571927 + Total Time16720 + Track Number38 + Track Count99 + Date Modified2011-07-24T03:27:59Z + Date Added2011-07-24T02:56:06Z + Bit Rate256 + Sample Rate44100 + Play Count3 + Play Date3396374583 + Play Date UTC2011-08-16T15:53:03Z + Skip Count1 + Normalization944 + Artwork Count1 + Persistent ID0A146517ABE0833A + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/38%20Track%2038.m4a + File Folder Count4 + Library Folder Count1 + + 9156 + + Track ID9156 + NameTrack 39 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size546514 + Total Time16080 + Track Number39 + Track Count99 + Date Modified2011-07-24T03:27:59Z + Date Added2011-07-24T02:56:09Z + Bit Rate256 + Sample Rate44100 + Play Count4 + Play Date3396374600 + Play Date UTC2011-08-16T15:53:20Z + Skip Count2 + Normalization495 + Artwork Count1 + Persistent IDBA84CEE7B13E62C7 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/39%20Track%2039.m4a + File Folder Count4 + Library Folder Count1 + + 9158 + + Track ID9158 + NameTrack 40 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size582725 + Total Time16120 + Track Number40 + Track Count99 + Date Modified2011-07-24T03:27:58Z + Date Added2011-07-24T02:56:12Z + Bit Rate256 + Sample Rate44100 + Play Count3 + Play Date3396543988 + Play Date UTC2011-08-18T14:56:28Z + Skip Count2 + Normalization1118 + Artwork Count1 + Persistent IDB6EAC63CC9391F9F + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/40%20Track%2040.m4a + File Folder Count4 + Library Folder Count1 + + 9160 + + Track ID9160 + NameTrack 41 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size937222 + Total Time25853 + Track Number41 + Track Count99 + Date Modified2011-07-24T03:27:58Z + Date Added2011-07-24T02:56:15Z + Bit Rate256 + Sample Rate44100 + Play Count3 + Play Date3396544014 + Play Date UTC2011-08-18T14:56:54Z + Normalization1214 + Artwork Count1 + Persistent IDB8CDC9350033428D + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/41%20Track%2041.m4a + File Folder Count4 + Library Folder Count1 + + 9162 + + Track ID9162 + NameTrack 42 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size582245 + Total Time16266 + Track Number42 + Track Count99 + Date Modified2011-07-24T03:27:58Z + Date Added2011-07-24T02:56:19Z + Bit Rate256 + Sample Rate44100 + Play Count4 + Play Date3396544030 + Play Date UTC2011-08-18T14:57:10Z + Skip Count1 + Normalization1203 + Artwork Count1 + Persistent IDA3474CC9A9946DA2 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/42%20Track%2042.m4a + File Folder Count4 + Library Folder Count1 + + 9164 + + Track ID9164 + NameTrack 43 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size630507 + Total Time17520 + Track Number43 + Track Count99 + Date Modified2011-07-24T03:27:58Z + Date Added2011-07-24T02:56:22Z + Bit Rate256 + Sample Rate44100 + Play Count3 + Play Date3396544057 + Play Date UTC2011-08-18T14:57:37Z + Normalization1223 + Artwork Count1 + Persistent ID0900012A1F783CBA + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/43%20Track%2043.m4a + File Folder Count4 + Library Folder Count1 + + 9166 + + Track ID9166 + NameTrack 44 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size493200 + Total Time16253 + Track Number44 + Track Count99 + Date Modified2011-07-24T03:27:58Z + Date Added2011-07-24T02:56:25Z + Bit Rate256 + Sample Rate44100 + Play Count3 + Play Date3396607110 + Play Date UTC2011-08-19T08:28:30Z + Normalization803 + Artwork Count1 + Persistent ID04C6889D69601CF2 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/44%20Track%2044.m4a + File Folder Count4 + Library Folder Count1 + + 9168 + + Track ID9168 + NameTrack 45 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size621599 + Total Time19893 + Track Number45 + Track Count99 + Date Modified2011-07-24T03:27:58Z + Date Added2011-07-24T02:56:27Z + Bit Rate256 + Sample Rate44100 + Play Count3 + Play Date3396374667 + Play Date UTC2011-08-16T15:54:27Z + Normalization589 + Artwork Count1 + Persistent IDDA0E91B53E56CCF6 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/45%20Track%2045.m4a + File Folder Count4 + Library Folder Count1 + + 9170 + + Track ID9170 + NameTrack 46 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size420922 + Total Time13440 + Track Number46 + Track Count99 + Date Modified2011-07-24T03:27:58Z + Date Added2011-07-24T02:56:31Z + Bit Rate256 + Sample Rate44100 + Play Count3 + Play Date3396374681 + Play Date UTC2011-08-16T15:54:41Z + Normalization656 + Artwork Count1 + Persistent IDA48147408DFC8950 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/46%20Track%2046.m4a + File Folder Count4 + Library Folder Count1 + + 9172 + + Track ID9172 + NameTrack 47 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size582101 + Total Time17053 + Track Number47 + Track Count99 + Date Modified2011-07-24T03:27:58Z + Date Added2011-07-24T02:56:33Z + Bit Rate256 + Sample Rate44100 + Play Count3 + Play Date3396374691 + Play Date UTC2011-08-16T15:54:51Z + Skip Count2 + Normalization1124 + Artwork Count1 + Persistent ID01CF2B661A227CEF + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/47%20Track%2047.m4a + File Folder Count4 + Library Folder Count1 + + 9174 + + Track ID9174 + NameTrack 48 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size573951 + Total Time16680 + Track Number48 + Track Count99 + Date Modified2011-07-24T03:27:58Z + Date Added2011-07-24T02:56:36Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3396275751 + Play Date UTC2011-08-15T12:25:51Z + Normalization731 + Artwork Count1 + Persistent IDC5FC77B71CC06597 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/48%20Track%2048.m4a + File Folder Count4 + Library Folder Count1 + + 9176 + + Track ID9176 + NameTrack 49 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size630490 + Total Time20226 + Track Number49 + Track Count99 + Date Modified2011-07-24T03:27:58Z + Date Added2011-07-24T02:56:39Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3396275771 + Play Date UTC2011-08-15T12:26:11Z + Normalization1094 + Artwork Count1 + Persistent ID59B24AA157DCCE89 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/49%20Track%2049.m4a + File Folder Count4 + Library Folder Count1 + + 9178 + + Track ID9178 + NameTrack 50 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size642569 + Total Time19493 + Track Number50 + Track Count99 + Date Modified2011-07-24T03:27:58Z + Date Added2011-07-24T02:56:42Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3396275791 + Play Date UTC2011-08-15T12:26:31Z + Normalization762 + Artwork Count1 + Persistent IDB7D2A962C6EC8AFC + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/50%20Track%2050.m4a + File Folder Count4 + Library Folder Count1 + + 9180 + + Track ID9180 + NameTrack 51 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size678097 + Total Time21520 + Track Number51 + Track Count99 + Date Modified2011-07-24T03:27:58Z + Date Added2011-07-24T02:56:45Z + Bit Rate256 + Sample Rate44100 + Play Count3 + Play Date3396781597 + Play Date UTC2011-08-21T08:56:37Z + Normalization495 + Artwork Count1 + Persistent ID17AF316947F56DE2 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/51%20Track%2051.m4a + File Folder Count4 + Library Folder Count1 + + 9182 + + Track ID9182 + NameTrack 52 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size685050 + Total Time21866 + Track Number52 + Track Count99 + Date Modified2011-07-24T03:27:58Z + Date Added2011-07-24T02:56:49Z + Bit Rate256 + Sample Rate44100 + Play Count3 + Play Date3396891463 + Play Date UTC2011-08-22T15:27:43Z + Skip Count2 + Normalization544 + Artwork Count1 + Persistent ID727D04CC3C402285 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/52%20Track%2052.m4a + File Folder Count4 + Library Folder Count1 + + 9184 + + Track ID9184 + NameTrack 53 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size1215994 + Total Time37280 + Track Number53 + Track Count99 + Date Modified2011-07-24T03:27:58Z + Date Added2011-07-24T02:56:52Z + Bit Rate256 + Sample Rate44100 + Play Count2 + Play Date3396374807 + Play Date UTC2011-08-16T15:56:47Z + Normalization642 + Artwork Count1 + Persistent IDA354F4BC081B70A0 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/53%20Track%2053.m4a + File Folder Count4 + Library Folder Count1 + + 9186 + + Track ID9186 + NameTrack 54 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size761052 + Total Time22906 + Track Number54 + Track Count99 + Date Modified2011-07-24T03:27:57Z + Date Added2011-07-24T02:56:57Z + Bit Rate256 + Sample Rate44100 + Play Count2 + Play Date3396374853 + Play Date UTC2011-08-16T15:57:33Z + Skip Count1 + Normalization495 + Artwork Count1 + Persistent IDC04F4611B4006FA9 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/54%20Track%2054.m4a + File Folder Count4 + Library Folder Count1 + + 9188 + + Track ID9188 + NameTrack 55 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size624167 + Total Time19213 + Track Number55 + Track Count99 + Date Modified2011-07-24T03:27:57Z + Date Added2011-07-24T02:57:01Z + Bit Rate256 + Sample Rate44100 + Play Count5 + Play Date3397042813 + Play Date UTC2011-08-24T09:30:13Z + Skip Count1 + Normalization495 + Artwork Count1 + Persistent ID25159328F0A941DA + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/55%20Track%2055.m4a + File Folder Count4 + Library Folder Count1 + + 9190 + + Track ID9190 + NameTrack 56 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size618415 + Total Time19306 + Track Number56 + Track Count99 + Date Modified2011-07-24T03:27:57Z + Date Added2011-07-24T02:57:04Z + Bit Rate256 + Sample Rate44100 + Play Count3 + Play Date3397042832 + Play Date UTC2011-08-24T09:30:32Z + Skip Count1 + Normalization998 + Artwork Count1 + Persistent IDF6E041723408D92F + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/56%20Track%2056.m4a + File Folder Count4 + Library Folder Count1 + + 9192 + + Track ID9192 + NameTrack 57 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size327576 + Total Time10773 + Track Number57 + Track Count99 + Date Modified2011-07-24T03:27:57Z + Date Added2011-07-24T02:57:07Z + Bit Rate256 + Sample Rate44100 + Play Count4 + Play Date3397042843 + Play Date UTC2011-08-24T09:30:43Z + Normalization646 + Artwork Count1 + Persistent ID8A8270B34699C881 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/57%20Track%2057.m4a + File Folder Count4 + Library Folder Count1 + + 9194 + + Track ID9194 + NameTrack 58 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size383740 + Total Time12293 + Track Number58 + Track Count99 + Date Modified2011-07-24T03:27:57Z + Date Added2011-07-24T02:57:09Z + Bit Rate256 + Sample Rate44100 + Play Count4 + Play Date3397042855 + Play Date UTC2011-08-24T09:30:55Z + Normalization393 + Artwork Count1 + Persistent IDC3AD85E045DD2F72 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/58%20Track%2058.m4a + File Folder Count4 + Library Folder Count1 + + 9196 + + Track ID9196 + NameTrack 59 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size425390 + Total Time13533 + Track Number59 + Track Count99 + Date Modified2011-07-24T03:27:57Z + Date Added2011-07-24T02:57:11Z + Bit Rate256 + Sample Rate44100 + Play Count5 + Play Date3397042869 + Play Date UTC2011-08-24T09:31:09Z + Skip Count1 + Normalization495 + Artwork Count1 + Persistent IDD4875625071EABC2 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/59%20Track%2059.m4a + File Folder Count4 + Library Folder Count1 + + 9198 + + Track ID9198 + NameTrack 60 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size576363 + Total Time17893 + Track Number60 + Track Count99 + Date Modified2011-07-24T03:27:57Z + Date Added2011-07-24T02:57:13Z + Bit Rate256 + Sample Rate44100 + Play Count4 + Play Date3397042887 + Play Date UTC2011-08-24T09:31:27Z + Normalization495 + Artwork Count1 + Persistent IDCA58CA954D74A7A4 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/60%20Track%2060.m4a + File Folder Count4 + Library Folder Count1 + + 9200 + + Track ID9200 + NameTrack 61 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size655665 + Total Time20706 + Track Number61 + Track Count99 + Date Modified2011-07-24T03:27:57Z + Date Added2011-07-24T02:57:16Z + Bit Rate256 + Sample Rate44100 + Play Count3 + Play Date3397042907 + Play Date UTC2011-08-24T09:31:47Z + Skip Count2 + Normalization866 + Artwork Count1 + Persistent ID0BD3E91169DA27FB + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/61%20Track%2061.m4a + File Folder Count4 + Library Folder Count1 + + 9202 + + Track ID9202 + NameTrack 62 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size574411 + Total Time16853 + Track Number62 + Track Count99 + Date Modified2011-07-24T03:27:57Z + Date Added2011-07-24T02:57:19Z + Bit Rate256 + Sample Rate44100 + Play Count3 + Play Date3396375109 + Play Date UTC2011-08-16T16:01:49Z + Skip Count1 + Normalization495 + Artwork Count1 + Persistent ID68511D7E6D6F0C74 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/62%20Track%2062.m4a + File Folder Count4 + Library Folder Count1 + + 9204 + + Track ID9204 + NameTrack 63 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size838943 + Total Time24866 + Track Number63 + Track Count99 + Date Modified2011-07-24T03:27:57Z + Date Added2011-07-24T02:57:22Z + Bit Rate256 + Sample Rate44100 + Play Count2 + Play Date3396276083 + Play Date UTC2011-08-15T12:31:23Z + Normalization495 + Artwork Count1 + Persistent ID50B5A317490CA08C + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/63%20Track%2063.m4a + File Folder Count4 + Library Folder Count1 + + 9206 + + Track ID9206 + NameTrack 64 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size1920334 + Total Time61253 + Track Number64 + Track Count99 + Date Modified2011-07-24T03:27:57Z + Date Added2011-07-24T02:57:26Z + Bit Rate256 + Sample Rate44100 + Normalization823 + Artwork Count1 + Persistent ID20F6530698FFB1AA + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/64%20Track%2064.m4a + File Folder Count4 + Library Folder Count1 + + 9208 + + Track ID9208 + NameTrack 65 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size1999051 + Total Time60693 + Track Number65 + Track Count99 + Date Modified2011-07-24T03:27:57Z + Date Added2011-07-24T02:57:34Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3394548261 + Play Date UTC2011-07-26T12:34:21Z + Normalization693 + Artwork Count1 + Persistent IDBD848740E8899B88 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/65%20Track%2065.m4a + File Folder Count4 + Library Folder Count1 + + 9210 + + Track ID9210 + NameTrack 66 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size2257746 + Total Time66120 + Track Number66 + Track Count99 + Date Modified2011-07-24T03:27:56Z + Date Added2011-07-24T02:57:42Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3394561035 + Play Date UTC2011-07-26T16:07:15Z + Normalization1139 + Artwork Count1 + Persistent ID6E7110B82725FEA9 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/66%20Track%2066.m4a + File Folder Count4 + Library Folder Count1 + + 9212 + + Track ID9212 + NameTrack 67 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size857420 + Total Time26226 + Track Number67 + Track Count99 + Date Modified2011-07-24T03:27:56Z + Date Added2011-07-24T02:57:50Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3394561061 + Play Date UTC2011-07-26T16:07:41Z + Normalization603 + Artwork Count1 + Persistent ID03D14B7C21B70E0A + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/67%20Track%2067.m4a + File Folder Count4 + Library Folder Count1 + + 9214 + + Track ID9214 + NameTrack 68 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size2055553 + Total Time61400 + Track Number68 + Track Count99 + Date Modified2011-07-24T03:27:56Z + Date Added2011-07-24T02:57:54Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3394972531 + Play Date UTC2011-07-31T10:25:31Z + Normalization562 + Artwork Count1 + Persistent ID1EEFD0F71C6E271F + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/68%20Track%2068.m4a + File Folder Count4 + Library Folder Count1 + + 9216 + + Track ID9216 + NameTrack 69 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size4797197 + Total Time148413 + Track Number69 + Track Count99 + Date Modified2011-07-24T03:27:56Z + Date Added2011-07-24T02:58:01Z + Bit Rate256 + Sample Rate44100 + Normalization690 + Artwork Count1 + Persistent IDA585B298C998F604 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/69%20Track%2069.m4a + File Folder Count4 + Library Folder Count1 + + 9218 + + Track ID9218 + NameTrack 70 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size7462079 + Total Time228626 + Track Number70 + Track Count99 + Date Modified2011-07-24T03:27:56Z + Date Added2011-07-24T02:58:19Z + Bit Rate256 + Sample Rate44100 + Skip Count1 + Normalization793 + Artwork Count1 + Persistent ID2A961C1981F622EF + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/70%20Track%2070.m4a + File Folder Count4 + Library Folder Count1 + + 9220 + + Track ID9220 + NameTrack 71 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size3663664 + Total Time114186 + Track Number71 + Track Count99 + Date Modified2011-07-24T03:27:55Z + Date Added2011-07-24T02:58:44Z + Bit Rate256 + Sample Rate44100 + Normalization1061 + Artwork Count1 + Persistent ID84448959C66B59F6 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/71%20Track%2071.m4a + File Folder Count4 + Library Folder Count1 + + 9222 + + Track ID9222 + NameTrack 72 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size6540266 + Total Time202400 + Track Number72 + Track Count99 + Date Modified2011-07-24T03:27:55Z + Date Added2011-07-24T02:58:57Z + Bit Rate256 + Sample Rate44100 + Skip Count1 + Normalization839 + Artwork Count1 + Persistent ID3A41B32C0C50733B + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/72%20Track%2072.m4a + File Folder Count4 + Library Folder Count1 + + 9224 + + Track ID9224 + NameTrack 73 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size6539492 + Total Time199933 + Track Number73 + Track Count99 + Date Modified2011-07-24T03:27:54Z + Date Added2011-07-24T02:59:19Z + Bit Rate256 + Sample Rate44100 + Normalization762 + Artwork Count1 + Persistent ID1E84B030151A7B2D + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/73%20Track%2073.m4a + File Folder Count4 + Library Folder Count1 + + 9226 + + Track ID9226 + NameTrack 74 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size780988 + Total Time24600 + Track Number74 + Track Count99 + Date Modified2011-07-24T03:27:54Z + Date Added2011-07-24T02:59:39Z + Bit Rate256 + Sample Rate44100 + Normalization495 + Artwork Count1 + Persistent IDB7227D671FFB1335 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/74%20Track%2074.m4a + File Folder Count4 + Library Folder Count1 + + 9228 + + Track ID9228 + NameTrack 75 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size913518 + Total Time26466 + Track Number75 + Track Count99 + Date Modified2011-07-24T03:27:54Z + Date Added2011-07-24T02:59:42Z + Bit Rate256 + Sample Rate44100 + Normalization1043 + Artwork Count1 + Persistent IDFCCF0FD78F216BEF + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/75%20Track%2075.m4a + File Folder Count4 + Library Folder Count1 + + 9230 + + Track ID9230 + NameTrack 76 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size850925 + Total Time23866 + Track Number76 + Track Count99 + Date Modified2011-07-24T03:27:54Z + Date Added2011-07-24T02:59:45Z + Bit Rate256 + Sample Rate44100 + Normalization1045 + Artwork Count1 + Persistent IDA3080AEF3809E717 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/76%20Track%2076.m4a + File Folder Count4 + Library Folder Count1 + + 9232 + + Track ID9232 + NameTrack 77 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size589311 + Total Time16666 + Track Number77 + Track Count99 + Date Modified2011-07-24T03:27:54Z + Date Added2011-07-24T02:59:48Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3394548441 + Play Date UTC2011-07-26T12:37:21Z + Normalization672 + Artwork Count1 + Persistent ID28C19FF182462D8E + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/77%20Track%2077.m4a + File Folder Count4 + Library Folder Count1 + + 9234 + + Track ID9234 + NameTrack 78 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size691542 + Total Time20280 + Track Number78 + Track Count99 + Date Modified2011-07-24T03:27:54Z + Date Added2011-07-24T02:59:50Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3394548461 + Play Date UTC2011-07-26T12:37:41Z + Normalization1109 + Artwork Count1 + Persistent IDCBD67B6966D4E00E + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/78%20Track%2078.m4a + File Folder Count4 + Library Folder Count1 + + 9236 + + Track ID9236 + NameTrack 79 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size709289 + Total Time20333 + Track Number79 + Track Count99 + Date Modified2011-07-24T03:27:53Z + Date Added2011-07-24T02:59:53Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3394548475 + Play Date UTC2011-07-26T12:37:55Z + Skip Count1 + Normalization976 + Artwork Count1 + Persistent ID8B56F68F900D789B + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/79%20Track%2079.m4a + File Folder Count4 + Library Folder Count1 + + 9238 + + Track ID9238 + NameTrack 80 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size574568 + Total Time16733 + Track Number80 + Track Count99 + Date Modified2011-07-24T03:27:53Z + Date Added2011-07-24T02:59:55Z + Bit Rate256 + Sample Rate44100 + Normalization522 + Artwork Count1 + Persistent ID03340A25524504D2 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/80%20Track%2080.m4a + File Folder Count4 + Library Folder Count1 + + 9240 + + Track ID9240 + NameTrack 81 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size926244 + Total Time26600 + Track Number81 + Track Count99 + Date Modified2011-07-24T03:27:53Z + Date Added2011-07-24T02:59:57Z + Bit Rate256 + Sample Rate44100 + Normalization631 + Artwork Count1 + Persistent ID7AF4F82ABD815E2A + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/81%20Track%2081.m4a + File Folder Count4 + Library Folder Count1 + + 9242 + + Track ID9242 + NameTrack 82 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size435436 + Total Time13946 + Track Number82 + Track Count99 + Date Modified2011-07-24T03:27:53Z + Date Added2011-07-24T03:00:00Z + Bit Rate256 + Sample Rate44100 + Normalization1049 + Artwork Count1 + Persistent IDDAF80D434E4454FC + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/82%20Track%2082.m4a + File Folder Count4 + Library Folder Count1 + + 9244 + + Track ID9244 + NameTrack 83 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size1006168 + Total Time31560 + Track Number83 + Track Count99 + Date Modified2011-07-24T03:27:53Z + Date Added2011-07-24T03:00:02Z + Bit Rate256 + Sample Rate44100 + Normalization495 + Artwork Count1 + Persistent IDC0302AD135986A56 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/83%20Track%2083.m4a + File Folder Count4 + Library Folder Count1 + + 9246 + + Track ID9246 + NameTrack 84 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size1618883 + Total Time46533 + Track Number84 + Track Count99 + Date Modified2011-07-24T03:27:53Z + Date Added2011-07-24T03:00:06Z + Bit Rate256 + Sample Rate44100 + Normalization495 + Artwork Count1 + Persistent ID5C8ED2D03D9BE9EB + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/84%20Track%2084.m4a + File Folder Count4 + Library Folder Count1 + + 9248 + + Track ID9248 + NameTrack 85 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size1539916 + Total Time45133 + Track Number85 + Track Count99 + Date Modified2011-07-24T03:27:53Z + Date Added2011-07-24T03:00:11Z + Bit Rate256 + Sample Rate44100 + Normalization495 + Artwork Count1 + Persistent ID1F26700F7D7B3BBB + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/85%20Track%2085.m4a + File Folder Count4 + Library Folder Count1 + + 9250 + + Track ID9250 + NameTrack 86 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size1952495 + Total Time58613 + Track Number86 + Track Count99 + Date Modified2011-07-24T03:27:53Z + Date Added2011-07-24T03:00:15Z + Bit Rate256 + Sample Rate44100 + Normalization884 + Artwork Count1 + Persistent ID46C68B8D4E191098 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/86%20Track%2086.m4a + File Folder Count4 + Library Folder Count1 + + 9252 + + Track ID9252 + NameTrack 87 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size585526 + Total Time16600 + Track Number87 + Track Count99 + Date Modified2011-07-24T03:27:53Z + Date Added2011-07-24T03:00:21Z + Bit Rate256 + Sample Rate44100 + Normalization1151 + Artwork Count1 + Persistent ID7C3E45265030844B + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/87%20Track%2087.m4a + File Folder Count4 + Library Folder Count1 + + 9254 + + Track ID9254 + NameTrack 88 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size1020413 + Total Time30746 + Track Number88 + Track Count99 + Date Modified2011-07-24T03:27:53Z + Date Added2011-07-24T03:00:23Z + Bit Rate256 + Sample Rate44100 + Normalization1026 + Artwork Count1 + Persistent ID14A077636DEF7584 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/88%20Track%2088.m4a + File Folder Count4 + Library Folder Count1 + + 9256 + + Track ID9256 + NameTrack 89 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size1195401 + Total Time36440 + Track Number89 + Track Count99 + Date Modified2011-07-24T03:27:52Z + Date Added2011-07-24T03:00:27Z + Bit Rate256 + Sample Rate44100 + Normalization559 + Artwork Count1 + Persistent ID76AA4E6C1AEF0359 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/89%20Track%2089.m4a + File Folder Count4 + Library Folder Count1 + + 9258 + + Track ID9258 + NameTrack 90 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size5143569 + Total Time153480 + Track Number90 + Track Count99 + Date Modified2011-07-24T03:27:52Z + Date Added2011-07-24T03:00:31Z + Bit Rate256 + Sample Rate44100 + Normalization1197 + Artwork Count1 + Persistent IDABEBC502F1058017 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/90%20Track%2090.m4a + File Folder Count4 + Library Folder Count1 + + 9260 + + Track ID9260 + NameTrack 91 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size1030223 + Total Time29746 + Track Number91 + Track Count99 + Date Modified2011-07-24T03:27:52Z + Date Added2011-07-24T03:00:45Z + Bit Rate256 + Sample Rate44100 + Normalization750 + Artwork Count1 + Persistent ID09CF18FD15216FD9 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/91%20Track%2091.m4a + File Folder Count4 + Library Folder Count1 + + 9262 + + Track ID9262 + NameTrack 92 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size1556386 + Total Time48333 + Track Number92 + Track Count99 + Date Modified2011-07-24T03:27:52Z + Date Added2011-07-24T03:00:49Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3396375793 + Play Date UTC2011-08-16T16:13:13Z + Skip Count1 + Normalization954 + Artwork Count1 + Persistent ID3F249BB0FD81065A + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/92%20Track%2092.m4a + File Folder Count4 + Library Folder Count1 + + 9264 + + Track ID9264 + NameTrack 93 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size8397151 + Total Time258600 + Track Number93 + Track Count99 + Date Modified2011-07-24T03:27:52Z + Date Added2011-07-24T03:00:53Z + Bit Rate256 + Sample Rate44100 + Normalization936 + Artwork Count1 + Persistent ID58705C3968085B93 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/93%20Track%2093.m4a + File Folder Count4 + Library Folder Count1 + + 9266 + + Track ID9266 + NameTrack 94 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size804220 + Total Time25480 + Track Number94 + Track Count99 + Date Modified2011-07-24T03:27:51Z + Date Added2011-07-24T03:01:17Z + Bit Rate256 + Sample Rate44100 + Normalization529 + Artwork Count1 + Persistent ID64CC2BC9FD3EB3E5 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/94%20Track%2094.m4a + File Folder Count4 + Library Folder Count1 + + 9268 + + Track ID9268 + NameTrack 95 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size5108244 + Total Time155400 + Track Number95 + Track Count99 + Date Modified2011-07-24T03:27:51Z + Date Added2011-07-24T03:01:20Z + Bit Rate256 + Sample Rate44100 + Normalization1044 + Artwork Count1 + Persistent IDB11E0CFE7834515C + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/95%20Track%2095.m4a + File Folder Count4 + Library Folder Count1 + + 9270 + + Track ID9270 + NameTrack 96 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size5419203 + Total Time168120 + Track Number96 + Track Count99 + Date Modified2011-07-24T03:27:51Z + Date Added2011-07-24T03:01:34Z + Bit Rate256 + Sample Rate44100 + Normalization879 + Artwork Count1 + Persistent IDD1565A00A59E16E8 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/96%20Track%2096.m4a + File Folder Count4 + Library Folder Count1 + + 9272 + + Track ID9272 + NameTrack 97 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size5708506 + Total Time165680 + Track Number97 + Track Count99 + Date Modified2011-07-24T03:27:50Z + Date Added2011-07-24T03:01:49Z + Bit Rate256 + Sample Rate44100 + Normalization1060 + Artwork Count1 + Persistent ID0A141931DA4C71A9 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/97%20Track%2097.m4a + File Folder Count4 + Library Folder Count1 + + 9274 + + Track ID9274 + NameTrack 98 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size3970984 + Total Time116866 + Track Number98 + Track Count99 + Date Modified2011-07-24T03:27:50Z + Date Added2011-07-24T03:02:03Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3396375567 + Play Date UTC2011-08-16T16:09:27Z + Normalization1328 + Artwork Count1 + Persistent IDEB5A6E60A95D7651 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/98%20Track%2098.m4a + File Folder Count4 + Library Folder Count1 + + 9276 + + Track ID9276 + NameTrack 99 + ArtistChad Johnson + AlbumFingerstyle Guitar - Hal Leonard + KindAAC audio file + Size4765775 + Total Time147373 + Track Number99 + Track Count99 + Date Modified2011-07-24T03:27:50Z + Date Added2011-07-24T03:02:14Z + Bit Rate256 + Sample Rate44100 + Normalization1224 + Artwork Count1 + Persistent ID1BB4C3C32E744E95 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/99%20Track%2099.m4a + File Folder Count4 + Library Folder Count1 + + 9278 + + Track ID9278 + NameTrack 01 + ArtistTroy Nelson + AlbumGuitar Aerobics - Hal Leonard + KindAAC audio file + Size2090816 + Total Time80800 + Disc Number1 + Disc Count2 + Track Number1 + Track Count53 + Date Modified2011-07-24T03:35:39Z + Date Added2011-07-24T03:29:08Z + Bit Rate256 + Sample Rate44100 + Normalization5294 + Artwork Count1 + Persistent IDCFB575672A8D2D58 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-01%20Track%2001.m4a + File Folder Count4 + Library Folder Count1 + + 9280 + + Track ID9280 + NameTrack 02 + ArtistTroy Nelson + AlbumGuitar Aerobics - Hal Leonard + KindAAC audio file + Size2145649 + Total Time83186 + Disc Number1 + Disc Count2 + Track Number2 + Track Count53 + Date Modified2011-07-24T03:35:39Z + Date Added2011-07-24T03:29:16Z + Bit Rate256 + Sample Rate44100 + Normalization6385 + Artwork Count1 + Persistent IDB19676F7678502DF + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-02%20Track%2002.m4a + File Folder Count4 + Library Folder Count1 + + 9282 + + Track ID9282 + NameTrack 03 + ArtistTroy Nelson + AlbumGuitar Aerobics - Hal Leonard + KindAAC audio file + Size2134271 + Total Time82493 + Disc Number1 + Disc Count2 + Track Number3 + Track Count53 + Date Modified2011-07-24T03:35:39Z + Date Added2011-07-24T03:29:24Z + Bit Rate256 + Sample Rate44100 + Normalization6261 + Artwork Count1 + Persistent ID0AF3C7FCCEA5670B + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-03%20Track%2003.m4a + File Folder Count4 + Library Folder Count1 + + 9284 + + Track ID9284 + NameTrack 04 + ArtistTroy Nelson + AlbumGuitar Aerobics - Hal Leonard + KindAAC audio file + Size2192730 + Total Time83373 + Disc Number1 + Disc Count2 + Track Number4 + Track Count53 + Date Modified2011-07-24T03:35:39Z + Date Added2011-07-24T03:29:32Z + Bit Rate256 + Sample Rate44100 + Normalization5949 + Artwork Count1 + Persistent ID8BF29D47D0EED0CC + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-04%20Track%2004.m4a + File Folder Count4 + Library Folder Count1 + + 9286 + + Track ID9286 + NameTrack 05 + ArtistTroy Nelson + AlbumGuitar Aerobics - Hal Leonard + KindAAC audio file + Size2203348 + Total Time83293 + Disc Number1 + Disc Count2 + Track Number5 + Track Count53 + Date Modified2011-07-24T03:35:39Z + Date Added2011-07-24T03:29:39Z + Bit Rate256 + Sample Rate44100 + Normalization6147 + Artwork Count1 + Persistent ID4EBF799BD365C2DF + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-05%20Track%2005.m4a + File Folder Count4 + Library Folder Count1 + + 9288 + + Track ID9288 + NameTrack 06 + ArtistTroy Nelson + AlbumGuitar Aerobics - Hal Leonard + KindAAC audio file + Size2184187 + Total Time82866 + Disc Number1 + Disc Count2 + Track Number6 + Track Count53 + Date Modified2011-07-24T03:35:39Z + Date Added2011-07-24T03:29:47Z + Bit Rate256 + Sample Rate44100 + Normalization5004 + Artwork Count1 + Persistent ID9420D247166F8973 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-06%20Track%2006.m4a + File Folder Count4 + Library Folder Count1 + + 9290 + + Track ID9290 + NameTrack 07 + ArtistTroy Nelson + AlbumGuitar Aerobics - Hal Leonard + KindAAC audio file + Size2061512 + Total Time77360 + Disc Number1 + Disc Count2 + Track Number7 + Track Count53 + Date Modified2011-07-24T03:35:38Z + Date Added2011-07-24T03:29:54Z + Bit Rate256 + Sample Rate44100 + Normalization4427 + Artwork Count1 + Persistent ID42F7F751DE6A8492 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-07%20Track%2007.m4a + File Folder Count4 + Library Folder Count1 + + 9292 + + Track ID9292 + NameTrack 08 + ArtistTroy Nelson + AlbumGuitar Aerobics - Hal Leonard + KindAAC audio file + Size2132336 + Total Time80080 + Disc Number1 + Disc Count2 + Track Number8 + Track Count53 + Date Modified2011-07-24T03:35:38Z + Date Added2011-07-24T03:30:00Z + Bit Rate256 + Sample Rate44100 + Normalization5622 + Artwork Count1 + Persistent IDFDE815EB5FFD68D0 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-08%20Track%2008.m4a + File Folder Count4 + Library Folder Count1 + + 9294 + + Track ID9294 + NameTrack 09 + ArtistTroy Nelson + AlbumGuitar Aerobics - Hal Leonard + KindAAC audio file + Size2391697 + Total Time91320 + Disc Number1 + Disc Count2 + Track Number9 + Track Count53 + Date Modified2011-07-24T03:35:38Z + Date Added2011-07-24T03:30:07Z + Bit Rate256 + Sample Rate44100 + Normalization5082 + Artwork Count1 + Persistent ID51D144F9FE4B5C05 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-09%20Track%2009.m4a + File Folder Count4 + Library Folder Count1 + + 9296 + + Track ID9296 + NameTrack 10 + ArtistTroy Nelson + AlbumGuitar Aerobics - Hal Leonard + KindAAC audio file + Size2553685 + Total Time97453 + Disc Number1 + Disc Count2 + Track Number10 + Track Count53 + Date Modified2011-07-24T03:35:38Z + Date Added2011-07-24T03:30:14Z + Bit Rate256 + Sample Rate44100 + Normalization5036 + Artwork Count1 + Persistent ID50132BB74847891D + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-10%20Track%2010.m4a + File Folder Count4 + Library Folder Count1 + + 9298 + + Track ID9298 + NameTrack 11 + ArtistTroy Nelson + AlbumGuitar Aerobics - Hal Leonard + KindAAC audio file + Size2541114 + Total Time97973 + Disc Number1 + Disc Count2 + Track Number11 + Track Count53 + Date Modified2011-07-24T03:35:38Z + Date Added2011-07-24T03:30:22Z + Bit Rate256 + Sample Rate44100 + Normalization4481 + Artwork Count1 + Persistent IDCD1133C19DED27DA + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-11%20Track%2011.m4a + File Folder Count4 + Library Folder Count1 + + 9300 + + Track ID9300 + NameTrack 12 + ArtistTroy Nelson + AlbumGuitar Aerobics - Hal Leonard + KindAAC audio file + Size2548148 + Total Time97200 + Disc Number1 + Disc Count2 + Track Number12 + Track Count53 + Date Modified2011-07-24T03:35:38Z + Date Added2011-07-24T03:30:29Z + Bit Rate256 + Sample Rate44100 + Normalization4685 + Artwork Count1 + Persistent IDD7532C6A0F0D426A + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-12%20Track%2012.m4a + File Folder Count4 + Library Folder Count1 + + 9302 + + Track ID9302 + NameTrack 13 + ArtistTroy Nelson + AlbumGuitar Aerobics - Hal Leonard + KindAAC audio file + Size2430614 + Total Time94000 + Disc Number1 + Disc Count2 + Track Number13 + Track Count53 + Date Modified2011-07-24T03:35:38Z + Date Added2011-07-24T03:30:36Z + Bit Rate256 + Sample Rate44100 + Normalization3787 + Artwork Count1 + Persistent IDD3B467EA657AE0CE + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-13%20Track%2013.m4a + File Folder Count4 + Library Folder Count1 + + 9304 + + Track ID9304 + NameTrack 14 + ArtistTroy Nelson + AlbumGuitar Aerobics - Hal Leonard + KindAAC audio file + Size2432181 + Total Time93346 + Disc Number1 + Disc Count2 + Track Number14 + Track Count53 + Date Modified2011-07-24T03:35:37Z + Date Added2011-07-24T03:30:43Z + Bit Rate256 + Sample Rate44100 + Normalization4379 + Artwork Count1 + Persistent ID55B2C64F75BEE70E + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-14%20Track%2014.m4a + File Folder Count4 + Library Folder Count1 + + 9306 + + Track ID9306 + NameTrack 15 + ArtistTroy Nelson + AlbumGuitar Aerobics - Hal Leonard + KindAAC audio file + Size2383392 + Total Time90906 + Disc Number1 + Disc Count2 + Track Number15 + Track Count53 + Date Modified2011-07-24T03:35:37Z + Date Added2011-07-24T03:30:49Z + Bit Rate256 + Sample Rate44100 + Normalization4091 + Artwork Count1 + Persistent ID66D5234503801927 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-15%20Track%2015.m4a + File Folder Count4 + Library Folder Count1 + + 9308 + + Track ID9308 + NameTrack 16 + ArtistTroy Nelson + AlbumGuitar Aerobics - Hal Leonard + KindAAC audio file + Size2407102 + Total Time94160 + Disc Number1 + Disc Count2 + Track Number16 + Track Count53 + Date Modified2011-07-24T03:35:37Z + Date Added2011-07-24T03:30:56Z + Bit Rate256 + Sample Rate44100 + Normalization3968 + Artwork Count1 + Persistent IDAB361BAD412B1471 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-16%20Track%2016.m4a + File Folder Count4 + Library Folder Count1 + + 9310 + + Track ID9310 + NameTrack 17 + ArtistTroy Nelson + AlbumGuitar Aerobics - Hal Leonard + KindAAC audio file + Size2434632 + Total Time93666 + Disc Number1 + Disc Count2 + Track Number17 + Track Count53 + Date Modified2011-07-24T03:35:37Z + Date Added2011-07-24T03:31:02Z + Bit Rate256 + Sample Rate44100 + Normalization3915 + Artwork Count1 + Persistent ID627D09AE26506898 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-17%20Track%2017.m4a + File Folder Count4 + Library Folder Count1 + + 9312 + + Track ID9312 + NameTrack 18 + ArtistTroy Nelson + AlbumGuitar Aerobics - Hal Leonard + KindAAC audio file + Size2643721 + Total Time100160 + Disc Number1 + Disc Count2 + Track Number18 + Track Count53 + Date Modified2011-07-24T03:35:37Z + Date Added2011-07-24T03:31:08Z + Bit Rate256 + Sample Rate44100 + Normalization4004 + Artwork Count1 + Persistent ID35C3D044F9F14821 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-18%20Track%2018.m4a + File Folder Count4 + Library Folder Count1 + + 9314 + + Track ID9314 + NameTrack 19 + ArtistTroy Nelson + AlbumGuitar Aerobics - Hal Leonard + KindAAC audio file + Size2679541 + Total Time102080 + Disc Number1 + Disc Count2 + Track Number19 + Track Count53 + Date Modified2011-07-24T03:35:37Z + Date Added2011-07-24T03:31:15Z + Bit Rate256 + Sample Rate44100 + Normalization4783 + Artwork Count1 + Persistent ID365D0730BD8DC532 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-19%20Track%2019.m4a + File Folder Count4 + Library Folder Count1 + + 9316 + + Track ID9316 + NameTrack 20 + ArtistTroy Nelson + AlbumGuitar Aerobics - Hal Leonard + KindAAC audio file + Size2735534 + Total Time100453 + Disc Number1 + Disc Count2 + Track Number20 + Track Count53 + Date Modified2011-07-24T03:35:37Z + Date Added2011-07-24T03:31:21Z + Bit Rate256 + Sample Rate44100 + Normalization4626 + Artwork Count1 + Persistent IDC1C9FC4D904F72CA + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-20%20Track%2020.m4a + File Folder Count4 + Library Folder Count1 + + 9318 + + Track ID9318 + NameTrack 21 + ArtistTroy Nelson + AlbumGuitar Aerobics - Hal Leonard + KindAAC audio file + Size2336240 + Total Time87173 + Disc Number1 + Disc Count2 + Track Number21 + Track Count53 + Date Modified2011-07-24T03:35:36Z + Date Added2011-07-24T03:31:27Z + Bit Rate256 + Sample Rate44100 + Normalization4529 + Artwork Count1 + Persistent ID90841E41E9E47695 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-21%20Track%2021.m4a + File Folder Count4 + Library Folder Count1 + + 9320 + + Track ID9320 + NameTrack 22 + ArtistTroy Nelson + AlbumGuitar Aerobics - Hal Leonard + KindAAC audio file + Size2647827 + Total Time98546 + Disc Number1 + Disc Count2 + Track Number22 + Track Count53 + Date Modified2011-07-24T03:35:36Z + Date Added2011-07-24T03:31:33Z + Bit Rate256 + Sample Rate44100 + Normalization3673 + Artwork Count1 + Persistent IDBAB3C79B7B0DB02D + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-22%20Track%2022.m4a + File Folder Count4 + Library Folder Count1 + + 9322 + + Track ID9322 + NameTrack 23 + ArtistTroy Nelson + AlbumGuitar Aerobics - Hal Leonard + KindAAC audio file + Size2516843 + Total Time95733 + Disc Number1 + Disc Count2 + Track Number23 + Track Count53 + Date Modified2011-07-24T03:35:36Z + Date Added2011-07-24T03:31:39Z + Bit Rate256 + Sample Rate44100 + Normalization3645 + Artwork Count1 + Persistent ID5A0A75EF2B239CE7 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-23%20Track%2023.m4a + File Folder Count4 + Library Folder Count1 + + 9324 + + Track ID9324 + NameTrack 24 + ArtistTroy Nelson + AlbumGuitar Aerobics - Hal Leonard + KindAAC audio file + Size2408091 + Total Time93840 + Disc Number1 + Disc Count2 + Track Number24 + Track Count53 + Date Modified2011-07-24T03:35:36Z + Date Added2011-07-24T03:31:45Z + Bit Rate256 + Sample Rate44100 + Normalization3931 + Artwork Count1 + Persistent ID1ECDAE73FDD882A6 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-24%20Track%2024.m4a + File Folder Count4 + Library Folder Count1 + + 9326 + + Track ID9326 + NameTrack 25 + ArtistTroy Nelson + AlbumGuitar Aerobics - Hal Leonard + KindAAC audio file + Size2276370 + Total Time88480 + Disc Number1 + Disc Count2 + Track Number25 + Track Count53 + Date Modified2011-07-24T03:35:36Z + Date Added2011-07-24T03:31:50Z + Bit Rate256 + Sample Rate44100 + Normalization4157 + Artwork Count1 + Persistent ID46899E2B1CBDA6BD + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-25%20Track%2025.m4a + File Folder Count4 + Library Folder Count1 + + 9328 + + Track ID9328 + NameTrack 26 + ArtistTroy Nelson + AlbumGuitar Aerobics - Hal Leonard + KindAAC audio file + Size2442134 + Total Time93080 + Disc Number1 + Disc Count2 + Track Number26 + Track Count53 + Date Modified2011-07-24T03:35:36Z + Date Added2011-07-24T03:31:55Z + Bit Rate256 + Sample Rate44100 + Normalization4548 + Artwork Count1 + Persistent ID564D2C3CD6939FA7 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-26%20Track%2026.m4a + File Folder Count4 + Library Folder Count1 + + 9330 + + Track ID9330 + NameTrack 27 + ArtistTroy Nelson + AlbumGuitar Aerobics - Hal Leonard + KindAAC audio file + Size2337440 + Total Time88213 + Disc Number1 + Disc Count2 + Track Number27 + Track Count53 + Date Modified2011-07-24T03:35:35Z + Date Added2011-07-24T03:32:01Z + Bit Rate256 + Sample Rate44100 + Normalization5318 + Artwork Count1 + Persistent IDA69F9E02FDEA27A6 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-27%20Track%2027.m4a + File Folder Count4 + Library Folder Count1 + + 9332 + + Track ID9332 + NameTrack 28 + ArtistTroy Nelson + AlbumGuitar Aerobics - Hal Leonard + KindAAC audio file + Size2312857 + Total Time86506 + Disc Number1 + Disc Count2 + Track Number28 + Track Count53 + Date Modified2011-07-24T03:35:35Z + Date Added2011-07-24T03:32:06Z + Bit Rate256 + Sample Rate44100 + Normalization4023 + Artwork Count1 + Persistent ID8A01CDC1FC5E3126 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-28%20Track%2028.m4a + File Folder Count4 + Library Folder Count1 + + 9334 + + Track ID9334 + NameTrack 29 + ArtistTroy Nelson + AlbumGuitar Aerobics - Hal Leonard + KindAAC audio file + Size2471479 + Total Time87240 + Disc Number1 + Disc Count2 + Track Number29 + Track Count53 + Date Modified2011-07-24T03:35:35Z + Date Added2011-07-24T03:32:11Z + Bit Rate256 + Sample Rate44100 + Normalization4435 + Artwork Count1 + Persistent IDC47CF6149772A23A + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-29%20Track%2029.m4a + File Folder Count4 + Library Folder Count1 + + 9336 + + Track ID9336 + NameTrack 30 + ArtistTroy Nelson + AlbumGuitar Aerobics - Hal Leonard + KindAAC audio file + Size2586241 + Total Time92466 + Disc Number1 + Disc Count2 + Track Number30 + Track Count53 + Date Modified2011-07-24T03:35:35Z + Date Added2011-07-24T03:32:16Z + Bit Rate256 + Sample Rate44100 + Normalization4182 + Artwork Count1 + Persistent IDAB4726265F626F42 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-30%20Track%2030.m4a + File Folder Count4 + Library Folder Count1 + + 9338 + + Track ID9338 + NameTrack 31 + ArtistTroy Nelson + AlbumGuitar Aerobics - Hal Leonard + KindAAC audio file + Size2289012 + Total Time84773 + Disc Number1 + Disc Count2 + Track Number31 + Track Count53 + Date Modified2011-07-24T03:35:35Z + Date Added2011-07-24T03:32:21Z + Bit Rate256 + Sample Rate44100 + Normalization4083 + Artwork Count1 + Persistent IDEA443E817DD8966C + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-31%20Track%2031.m4a + File Folder Count4 + Library Folder Count1 + + 9340 + + Track ID9340 + NameTrack 32 + ArtistTroy Nelson + AlbumGuitar Aerobics - Hal Leonard + KindAAC audio file + Size2304927 + Total Time84773 + Disc Number1 + Disc Count2 + Track Number32 + Track Count53 + Date Modified2011-07-24T03:35:35Z + Date Added2011-07-24T03:32:25Z + Bit Rate256 + Sample Rate44100 + Normalization5280 + Artwork Count1 + Persistent ID2DBD11BC0BBBA855 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-32%20Track%2032.m4a + File Folder Count4 + Library Folder Count1 + + 9342 + + Track ID9342 + NameTrack 33 + ArtistTroy Nelson + AlbumGuitar Aerobics - Hal Leonard + KindAAC audio file + Size2084259 + Total Time75173 + Disc Number1 + Disc Count2 + Track Number33 + Track Count53 + Date Modified2011-07-24T03:35:34Z + Date Added2011-07-24T03:32:30Z + Bit Rate256 + Sample Rate44100 + Normalization3925 + Artwork Count1 + Persistent IDE53BB4E3A2FC3BA8 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-33%20Track%2033.m4a + File Folder Count4 + Library Folder Count1 + + 9344 + + Track ID9344 + NameTrack 34 + ArtistTroy Nelson + AlbumGuitar Aerobics - Hal Leonard + KindAAC audio file + Size2113655 + Total Time76426 + Disc Number1 + Disc Count2 + Track Number34 + Track Count53 + Date Modified2011-07-24T03:35:34Z + Date Added2011-07-24T03:32:34Z + Bit Rate256 + Sample Rate44100 + Normalization3695 + Artwork Count1 + Persistent IDC456ACBF456E3BFE + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-34%20Track%2034.m4a + File Folder Count4 + Library Folder Count1 + + 9346 + + Track ID9346 + NameTrack 35 + ArtistTroy Nelson + AlbumGuitar Aerobics - Hal Leonard + KindAAC audio file + Size2128653 + Total Time77253 + Disc Number1 + Disc Count2 + Track Number35 + Track Count53 + Date Modified2011-07-24T03:35:34Z + Date Added2011-07-24T03:32:38Z + Bit Rate256 + Sample Rate44100 + Normalization3429 + Artwork Count1 + Persistent IDCD49804576199EE5 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-35%20Track%2035.m4a + File Folder Count4 + Library Folder Count1 + + 9348 + + Track ID9348 + NameTrack 36 + ArtistTroy Nelson + AlbumGuitar Aerobics - Hal Leonard + KindAAC audio file + Size2146701 + Total Time77760 + Disc Number1 + Disc Count2 + Track Number36 + Track Count53 + Date Modified2011-07-24T03:35:34Z + Date Added2011-07-24T03:32:42Z + Bit Rate256 + Sample Rate44100 + Normalization3871 + Artwork Count1 + Persistent ID971C27925F5297D0 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-36%20Track%2036.m4a + File Folder Count4 + Library Folder Count1 + + 9350 + + Track ID9350 + NameTrack 37 + ArtistTroy Nelson + AlbumGuitar Aerobics - Hal Leonard + KindAAC audio file + Size2150956 + Total Time78533 + Disc Number1 + Disc Count2 + Track Number37 + Track Count53 + Date Modified2011-07-24T03:35:34Z + Date Added2011-07-24T03:32:46Z + Bit Rate256 + Sample Rate44100 + Normalization3353 + Artwork Count1 + Persistent IDC822F6BB69DC0AB5 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-37%20Track%2037.m4a + File Folder Count4 + Library Folder Count1 + + 9352 + + Track ID9352 + NameTrack 38 + ArtistTroy Nelson + AlbumGuitar Aerobics - Hal Leonard + KindAAC audio file + Size2104519 + Total Time76746 + Disc Number1 + Disc Count2 + Track Number38 + Track Count53 + Date Modified2011-07-24T03:35:34Z + Date Added2011-07-24T03:32:50Z + Bit Rate256 + Sample Rate44100 + Normalization3280 + Artwork Count1 + Persistent ID86EA1D18AC324F5F + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-38%20Track%2038.m4a + File Folder Count4 + Library Folder Count1 + + 9354 + + Track ID9354 + NameTrack 39 + ArtistTroy Nelson + AlbumGuitar Aerobics - Hal Leonard + KindAAC audio file + Size2127964 + Total Time76746 + Disc Number1 + Disc Count2 + Track Number39 + Track Count53 + Date Modified2011-07-24T03:35:33Z + Date Added2011-07-24T03:32:54Z + Bit Rate256 + Sample Rate44100 + Normalization4015 + Artwork Count1 + Persistent IDD39711717FE488DF + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-39%20Track%2039.m4a + File Folder Count4 + Library Folder Count1 + + 9356 + + Track ID9356 + NameTrack 40 + ArtistTroy Nelson + AlbumGuitar Aerobics - Hal Leonard + KindAAC audio file + Size2370610 + Total Time83480 + Disc Number1 + Disc Count2 + Track Number40 + Track Count53 + Date Modified2011-07-24T03:35:33Z + Date Added2011-07-24T03:32:58Z + Bit Rate256 + Sample Rate44100 + Normalization4234 + Artwork Count1 + Persistent ID7528364170FEE96F + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-40%20Track%2040.m4a + File Folder Count4 + Library Folder Count1 + + 9358 + + Track ID9358 + NameTrack 41 + ArtistTroy Nelson + AlbumGuitar Aerobics - Hal Leonard + KindAAC audio file + Size2420686 + Total Time86160 + Disc Number1 + Disc Count2 + Track Number41 + Track Count53 + Date Modified2011-07-24T03:35:33Z + Date Added2011-07-24T03:33:02Z + Bit Rate256 + Sample Rate44100 + Normalization3829 + Artwork Count1 + Persistent IDE6D7C50DB218757D + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-41%20Track%2041.m4a + File Folder Count4 + Library Folder Count1 + + 9360 + + Track ID9360 + NameTrack 42 + ArtistTroy Nelson + AlbumGuitar Aerobics - Hal Leonard + KindAAC audio file + Size2433994 + Total Time84306 + Disc Number1 + Disc Count2 + Track Number42 + Track Count53 + Date Modified2011-07-24T03:35:33Z + Date Added2011-07-24T03:33:06Z + Bit Rate256 + Sample Rate44100 + Normalization5467 + Artwork Count1 + Persistent ID1006FCA0BBB3996F + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-42%20Track%2042.m4a + File Folder Count4 + Library Folder Count1 + + 9362 + + Track ID9362 + NameTrack 43 + ArtistTroy Nelson + AlbumGuitar Aerobics - Hal Leonard + KindAAC audio file + Size2307864 + Total Time82493 + Disc Number1 + Disc Count2 + Track Number43 + Track Count53 + Date Modified2011-07-24T03:35:33Z + Date Added2011-07-24T03:33:11Z + Bit Rate256 + Sample Rate44100 + Normalization3480 + Artwork Count1 + Persistent ID0A304585C5157DD5 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-43%20Track%2043.m4a + File Folder Count4 + Library Folder Count1 + + 9364 + + Track ID9364 + NameTrack 44 + ArtistTroy Nelson + AlbumGuitar Aerobics - Hal Leonard + KindAAC audio file + Size2343996 + Total Time84240 + Disc Number1 + Disc Count2 + Track Number44 + Track Count53 + Date Modified2011-07-24T03:35:33Z + Date Added2011-07-24T03:33:15Z + Bit Rate256 + Sample Rate44100 + Normalization2270 + Artwork Count1 + Persistent ID9C094C8D8F9DA2A4 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-44%20Track%2044.m4a + File Folder Count4 + Library Folder Count1 + + 9366 + + Track ID9366 + NameTrack 45 + ArtistTroy Nelson + AlbumGuitar Aerobics - Hal Leonard + KindAAC audio file + Size2156361 + Total Time79706 + Disc Number1 + Disc Count2 + Track Number45 + Track Count53 + Date Modified2011-07-24T03:35:33Z + Date Added2011-07-24T03:33:19Z + Bit Rate256 + Sample Rate44100 + Normalization2359 + Artwork Count1 + Persistent ID19A3A88EFBC4038B + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-45%20Track%2045.m4a + File Folder Count4 + Library Folder Count1 + + 9368 + + Track ID9368 + NameTrack 46 + ArtistTroy Nelson + AlbumGuitar Aerobics - Hal Leonard + KindAAC audio file + Size2044478 + Total Time74226 + Disc Number1 + Disc Count2 + Track Number46 + Track Count53 + Date Modified2011-07-24T03:35:32Z + Date Added2011-07-24T03:33:23Z + Bit Rate256 + Sample Rate44100 + Normalization3596 + Artwork Count1 + Persistent ID95F7FE5698EE90EB + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-46%20Track%2046.m4a + File Folder Count4 + Library Folder Count1 + + 9370 + + Track ID9370 + NameTrack 47 + ArtistTroy Nelson + AlbumGuitar Aerobics - Hal Leonard + KindAAC audio file + Size2132219 + Total Time77440 + Disc Number1 + Disc Count2 + Track Number47 + Track Count53 + Date Modified2011-07-24T03:35:32Z + Date Added2011-07-24T03:33:26Z + Bit Rate256 + Sample Rate44100 + Normalization3489 + Artwork Count1 + Persistent ID20BD412D0FE8D95C + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-47%20Track%2047.m4a + File Folder Count4 + Library Folder Count1 + + 9372 + + Track ID9372 + NameTrack 48 + ArtistTroy Nelson + AlbumGuitar Aerobics - Hal Leonard + KindAAC audio file + Size2129941 + Total Time78506 + Disc Number1 + Disc Count2 + Track Number48 + Track Count53 + Date Modified2011-07-24T03:35:32Z + Date Added2011-07-24T03:33:30Z + Bit Rate256 + Sample Rate44100 + Normalization3464 + Artwork Count1 + Persistent ID8CCBAD3024EEC646 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-48%20Track%2048.m4a + File Folder Count4 + Library Folder Count1 + + 9374 + + Track ID9374 + NameTrack 49 + ArtistTroy Nelson + AlbumGuitar Aerobics - Hal Leonard + KindAAC audio file + Size2213254 + Total Time84066 + Disc Number1 + Disc Count2 + Track Number49 + Track Count53 + Date Modified2011-07-24T03:35:32Z + Date Added2011-07-24T03:33:34Z + Bit Rate256 + Sample Rate44100 + Normalization2619 + Artwork Count1 + Persistent IDF390250B9DC00DAE + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-49%20Track%2049.m4a + File Folder Count4 + Library Folder Count1 + + 9376 + + Track ID9376 + NameTrack 50 + ArtistTroy Nelson + AlbumGuitar Aerobics - Hal Leonard + KindAAC audio file + Size2081254 + Total Time79306 + Disc Number1 + Disc Count2 + Track Number50 + Track Count53 + Date Modified2011-07-24T03:35:32Z + Date Added2011-07-24T03:33:38Z + Bit Rate256 + Sample Rate44100 + Normalization3038 + Artwork Count1 + Persistent ID8D73044BCD2ED2CD + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-50%20Track%2050.m4a + File Folder Count4 + Library Folder Count1 + + 9378 + + Track ID9378 + NameTrack 51 + ArtistTroy Nelson + AlbumGuitar Aerobics - Hal Leonard + KindAAC audio file + Size2270938 + Total Time78000 + Disc Number1 + Disc Count2 + Track Number51 + Track Count53 + Date Modified2011-07-24T03:35:32Z + Date Added2011-07-24T03:33:41Z + Bit Rate256 + Sample Rate44100 + Normalization2837 + Artwork Count1 + Persistent IDAC50826BCAB7F280 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-51%20Track%2051.m4a + File Folder Count4 + Library Folder Count1 + + 9380 + + Track ID9380 + NameTrack 52 + ArtistTroy Nelson + AlbumGuitar Aerobics - Hal Leonard + KindAAC audio file + Size2512574 + Total Time87173 + Disc Number1 + Disc Count2 + Track Number52 + Track Count53 + Date Modified2011-07-24T03:35:32Z + Date Added2011-07-24T03:33:45Z + Bit Rate256 + Sample Rate44100 + Normalization3402 + Artwork Count1 + Persistent IDE8D5B77E9135B00D + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-52%20Track%2052.m4a + File Folder Count4 + Library Folder Count1 + + 9382 + + Track ID9382 + NameTrack 53 + ArtistTroy Nelson + AlbumGuitar Aerobics - Hal Leonard + KindAAC audio file + Size1436127 + Total Time52160 + Disc Number1 + Disc Count2 + Track Number53 + Track Count53 + Date Modified2011-07-24T03:35:32Z + Date Added2011-07-24T03:33:49Z + Bit Rate256 + Sample Rate44100 + Normalization1141 + Artwork Count1 + Persistent ID463C434EEA8B7F42 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-53%20Track%2053.m4a + File Folder Count4 + Library Folder Count1 + + 9396 + + Track ID9396 + NameLa Femme D'argent + ArtistAir + Album ArtistAir + ComposerNicolas Godin + AlbumMoon Safari + GenreDance & DJ + KindMPEG audio file + Size12363750 + Total Time430550 + Disc Number1 + Disc Count1 + Track Number1 + Track Count10 + Year2006 + Date Modified2011-09-15T16:16:10Z + Date Added2011-09-16T01:08:18Z + Bit Rate225 + Sample Rate44100 + CommentsAmazon.com Song ID: 201982125 + Play Count5 + Play Date3471276580 + Play Date UTC2013-12-30T13:59:40Z + Artwork Count1 + Persistent ID05BD2CB7213F0849 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Air/Moon%20Safari/01%20La%20Femme%20D'argent.mp3 + File Folder Count4 + Library Folder Count1 + + 9398 + + Track ID9398 + NameSexy Boy + ArtistAir + Album ArtistAir + ComposerNicolas Godin + AlbumMoon Safari + GenreDance & DJ + KindMPEG audio file + Size8342266 + Total Time298527 + Disc Number1 + Disc Count1 + Track Number2 + Track Count10 + Year2006 + Date Modified2011-09-15T18:52:41Z + Date Added2011-09-16T01:08:18Z + Bit Rate218 + Sample Rate44100 + CommentsAmazon.com Song ID: 201982126 + Play Count3 + Play Date3484891249 + Play Date UTC2014-06-06T03:50:49Z + Skip Count1 + Skip Date2013-07-22T11:16:26Z + Artwork Count1 + Persistent ID3EC6DF3F2D747572 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Air/Moon%20Safari/02%20Sexy%20Boy.mp3 + File Folder Count4 + Library Folder Count1 + + 9400 + + Track ID9400 + NameAll I Need + ArtistAir - Beth Hirsch + Album ArtistAir + ComposerNicolas Godin + AlbumMoon Safari + GenreDance & DJ + KindMPEG audio file + Size7466854 + Total Time268355 + Disc Number1 + Disc Count1 + Track Number3 + Track Count10 + Year2006 + Date Modified2011-09-15T18:24:53Z + Date Added2011-09-16T01:08:18Z + Bit Rate216 + Sample Rate44100 + CommentsAmazon.com Song ID: 201982127 + Play Count1 + Play Date3399090487 + Play Date UTC2011-09-17T02:18:07Z + Artwork Count1 + Persistent ID40FA98C4F454D39E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Air/Moon%20Safari/03%20All%20I%20Need.mp3 + File Folder Count4 + Library Folder Count1 + + 9402 + + Track ID9402 + NameKelly Watch The Stars + ArtistAir + Album ArtistAir + ComposerNicolas Godin + AlbumMoon Safari + GenreDance & DJ + KindMPEG audio file + Size6292318 + Total Time225488 + Disc Number1 + Disc Count1 + Track Number4 + Track Count10 + Year2006 + Date Modified2011-09-15T16:37:40Z + Date Added2011-09-16T01:08:18Z + Bit Rate215 + Sample Rate44100 + CommentsAmazon.com Song ID: 201982128 + Play Count1 + Play Date3427120325 + Play Date UTC2012-08-06T12:22:05Z + Skip Count2 + Skip Date2013-07-22T11:17:11Z + Artwork Count1 + Persistent IDDFA682AE841CDFFA + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Air/Moon%20Safari/04%20Kelly%20Watch%20The%20Stars.mp3 + File Folder Count4 + Library Folder Count1 + + 9404 + + Track ID9404 + NameTalisman + ArtistAir + Album ArtistAir + ComposerNicolas Godin + AlbumMoon Safari + GenreDance & DJ + KindMPEG audio file + Size7628695 + Total Time256757 + Disc Number1 + Disc Count1 + Track Number5 + Track Count10 + Year2006 + Date Modified2011-09-15T17:03:38Z + Date Added2011-09-16T01:08:19Z + Bit Rate231 + Sample Rate44100 + CommentsAmazon.com Song ID: 201982129 + Play Count4 + Play Date3457356688 + Play Date UTC2013-07-22T11:21:28Z + Skip Count1 + Skip Date2013-03-29T12:13:56Z + Artwork Count1 + Persistent IDCDF90CCD5C0DFE97 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Air/Moon%20Safari/05%20Talisman.mp3 + File Folder Count4 + Library Folder Count1 + + 9406 + + Track ID9406 + NameRemember + ArtistAir + Album ArtistAir + ComposerJean Jacques Perey + AlbumMoon Safari + GenreDance & DJ + KindMPEG audio file + Size4499909 + Total Time154357 + Disc Number1 + Disc Count1 + Track Number6 + Track Count10 + Year2006 + Date Modified2011-09-15T15:31:52Z + Date Added2011-09-16T01:08:19Z + Bit Rate222 + Sample Rate44100 + CommentsAmazon.com Song ID: 201982130 + Play Count1 + Play Date3457356843 + Play Date UTC2013-07-22T11:24:03Z + Skip Count1 + Skip Date2013-03-29T12:14:00Z + Artwork Count1 + Persistent ID1A307B38420B4135 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Air/Moon%20Safari/06%20-%20Remember.mp3 + File Folder Count4 + Library Folder Count1 + + 9408 + + Track ID9408 + NameYou Make It Easy + ArtistAir - Beth Hirsch + Album ArtistAir + ComposerNicolas Godin + AlbumMoon Safari + GenreDance & DJ + KindMPEG audio file + Size7630037 + Total Time241580 + Disc Number1 + Disc Count1 + Track Number7 + Track Count10 + Year2006 + Date Modified2011-09-15T14:37:36Z + Date Added2011-09-16T01:08:19Z + Bit Rate245 + Sample Rate44100 + CommentsAmazon.com Song ID: 201982131 + Play Count2 + Play Date3457357084 + Play Date UTC2013-07-22T11:28:04Z + Artwork Count1 + Persistent ID0BDC77EC247F269E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Air/Moon%20Safari/07%20You%20Make%20It%20Easy.mp3 + File Folder Count4 + Library Folder Count1 + + 9410 + + Track ID9410 + NameCe Matin-Là + ArtistAir + Album ArtistAir + ComposerNicolas Godin + AlbumMoon Safari + GenreDance & DJ + KindMPEG audio file + Size6507612 + Total Time219088 + Disc Number1 + Disc Count1 + Track Number8 + Track Count10 + Year2006 + Date Modified2011-09-15T17:30:34Z + Date Added2011-09-16T01:08:20Z + Bit Rate230 + Sample Rate44100 + CommentsAmazon.com Song ID: 201982132 + Play Count2 + Play Date3457357303 + Play Date UTC2013-07-22T11:31:43Z + Artwork Count1 + Persistent ID9BF9628DFA432F0C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Air/Moon%20Safari/08%20-%20Ce%20Matin-La%CC%80.mp3 + File Folder Count4 + Library Folder Count1 + + 9412 + + Track ID9412 + NameNew Star In The Sky + ArtistAir + Album ArtistAir + ComposerNicolas Godin + AlbumMoon Safari + GenreDance & DJ + KindMPEG audio file + Size9374135 + Total Time340662 + Disc Number1 + Disc Count1 + Track Number9 + Track Count10 + Year2006 + Date Modified2011-09-15T18:07:28Z + Date Added2011-09-16T01:08:20Z + Bit Rate215 + Sample Rate44100 + CommentsAmazon.com Song ID: 201982133 + Play Count2 + Play Date3457357644 + Play Date UTC2013-07-22T11:37:24Z + Artwork Count1 + Persistent ID34AE2DF506127A8D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Air/Moon%20Safari/09%20-%20New%20Star%20In%20The%20Sky.mp3 + File Folder Count4 + Library Folder Count1 + + 9414 + + Track ID9414 + NameLe Voyage De Pénélope + ArtistAir + Album ArtistAir + ComposerNicolas Godin + AlbumMoon Safari + GenreDance & DJ + KindMPEG audio file + Size5727315 + Total Time190928 + Disc Number1 + Disc Count1 + Track Number10 + Track Count10 + Year2006 + Date Modified2011-09-15T15:15:36Z + Date Added2011-09-16T01:08:20Z + Bit Rate231 + Sample Rate44100 + CommentsAmazon.com Song ID: 201982134 + Play Count1 + Play Date3457357835 + Play Date UTC2013-07-22T11:40:35Z + Skip Count1 + Skip Date2013-07-25T07:02:47Z + Artwork Count1 + Persistent ID254C1CF84F3E5A0B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Air/Moon%20Safari/10%20-%20Le%20Voyage%20De%20Pe%CC%81ne%CC%81lope.mp3 + File Folder Count4 + Library Folder Count1 + + 9416 + + Track ID9416 + NameRickover's Dream + ArtistMichael Hedges + Album ArtistMichael Hedges + ComposerMichael Hedges + AlbumBeyond Boundaries: Guitar Solos + GenreNew Age + KindMPEG audio file + Size9113846 + Total Time291787 + Disc Number1 + Disc Count1 + Track Number1 + Track Count19 + Year2001 + Date Modified2011-09-15T20:22:41Z + Date Added2011-09-16T01:08:20Z + Bit Rate245 + Sample Rate44100 + CommentsAmazon.com Song ID: 204374233 + Play Count3 + Play Date3460394796 + Play Date UTC2013-08-26T15:16:36Z + Artwork Count1 + Persistent ID74408C8B40DA316C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Michael%20Hedges/Beyond%20Boundaries_%20Guitar%20Solos/01%20Rickover's%20Dream.mp3 + File Folder Count4 + Library Folder Count1 + + 9418 + + Track ID9418 + NameAerial Boundaries + ArtistMichael Hedges + Album ArtistMichael Hedges + ComposerMichael Hedges + AlbumBeyond Boundaries: Guitar Solos + GenreNew Age + KindMPEG audio file + Size8668130 + Total Time283480 + Disc Number1 + Disc Count1 + Track Number2 + Track Count19 + Year2001 + Date Modified2011-09-15T22:31:23Z + Date Added2011-09-16T01:08:21Z + Bit Rate240 + Sample Rate44100 + CommentsAmazon.com Song ID: 204374234 + Play Count2 + Play Date3460395079 + Play Date UTC2013-08-26T15:21:19Z + Artwork Count1 + Persistent ID62174FF1162C880E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Michael%20Hedges/Beyond%20Boundaries_%20Guitar%20Solos/02%20Aerial%20Boundaries.mp3 + File Folder Count4 + Library Folder Count1 + + 9420 + + Track ID9420 + NameEleven Small Roaches + ArtistMichael Hedges + Album ArtistMichael Hedges + ComposerMichael Hedges + AlbumBeyond Boundaries: Guitar Solos + GenreNew Age + KindMPEG audio file + Size5702239 + Total Time183640 + Disc Number1 + Disc Count1 + Track Number3 + Track Count19 + Year2001 + Date Modified2011-09-15T22:45:49Z + Date Added2011-09-16T01:08:21Z + Bit Rate241 + Sample Rate44100 + CommentsAmazon.com Song ID: 204374226 + Play Count2 + Play Date3460395263 + Play Date UTC2013-08-26T15:24:23Z + Artwork Count1 + Persistent IDC7644CD1C955C14E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Michael%20Hedges/Beyond%20Boundaries_%20Guitar%20Solos/03%20Eleven%20Small%20Roaches.mp3 + File Folder Count4 + Library Folder Count1 + + 9422 + + Track ID9422 + NameRagamuffin + ArtistMichael Hedges + Album ArtistMichael Hedges + ComposerMichael Hedges + AlbumBeyond Boundaries: Guitar Solos + GenreNew Age + KindMPEG audio file + Size6178320 + Total Time195657 + Disc Number1 + Disc Count1 + Track Number4 + Track Count19 + Year2001 + Date Modified2011-09-15T19:54:22Z + Date Added2011-09-16T01:08:21Z + Bit Rate246 + Sample Rate44100 + CommentsAmazon.com Song ID: 204374219 + Play Count2 + Play Date3460395458 + Play Date UTC2013-08-26T15:27:38Z + Artwork Count1 + Persistent IDE16D1B95E493F5C5 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Michael%20Hedges/Beyond%20Boundaries_%20Guitar%20Solos/04%20Ragamuffin.mp3 + File Folder Count4 + Library Folder Count1 + + 9424 + + Track ID9424 + NameRitual Dance + ArtistMichael Hedges + Album ArtistMichael Hedges + ComposerMichael Hedges + AlbumBeyond Boundaries: Guitar Solos + GenreNew Age + KindMPEG audio file + Size4616299 + Total Time141035 + Disc Number1 + Disc Count1 + Track Number5 + Track Count19 + Year2001 + Date Modified2011-09-15T23:31:40Z + Date Added2011-09-16T01:08:21Z + Bit Rate252 + Sample Rate44100 + CommentsAmazon.com Song ID: 204374237 + Play Count2 + Play Date3460395599 + Play Date UTC2013-08-26T15:29:59Z + Artwork Count1 + Persistent ID3DD73074DB9EF86D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Michael%20Hedges/Beyond%20Boundaries_%20Guitar%20Solos/05%20Ritual%20Dance.mp3 + File Folder Count4 + Library Folder Count1 + + 9426 + + Track ID9426 + NameChava's Song + ArtistMichael Hedges + Album ArtistMichael Hedges + ComposerMichael Hedges + AlbumBeyond Boundaries: Guitar Solos + GenreNew Age + KindMPEG audio file + Size6311686 + Total Time199523 + Disc Number1 + Disc Count1 + Track Number6 + Track Count19 + Year2001 + Date Modified2011-09-15T21:46:51Z + Date Added2011-09-16T01:08:21Z + Bit Rate246 + Sample Rate44100 + CommentsAmazon.com Song ID: 204374222 + Play Count2 + Play Date3460395799 + Play Date UTC2013-08-26T15:33:19Z + Artwork Count1 + Persistent ID4B7BC773C23DB909 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Michael%20Hedges/Beyond%20Boundaries_%20Guitar%20Solos/06%20Chava's%20Song.mp3 + File Folder Count4 + Library Folder Count1 + + 9428 + + Track ID9428 + NameThe Double Planet + ArtistMichael Hedges + Album ArtistMichael Hedges + ComposerMichael Hedges + AlbumBeyond Boundaries: Guitar Solos + GenreNew Age + KindMPEG audio file + Size6392773 + Total Time205191 + Disc Number1 + Disc Count1 + Track Number7 + Track Count19 + Year2001 + Date Modified2011-09-15T21:28:22Z + Date Added2011-09-16T01:08:22Z + Bit Rate243 + Sample Rate44100 + CommentsAmazon.com Song ID: 204374231 + Play Count3 + Play Date3460396004 + Play Date UTC2013-08-26T15:36:44Z + Artwork Count1 + Sort NameDouble Planet + Persistent IDE8674AED89F7AB84 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Michael%20Hedges/Beyond%20Boundaries_%20Guitar%20Solos/07%20The%20Double%20Planet.mp3 + File Folder Count4 + Library Folder Count1 + + 9430 + + Track ID9430 + NameJitterboogie + ArtistMichael Hedges + Album ArtistMichael Hedges + ComposerMichael Hedges + AlbumBeyond Boundaries: Guitar Solos + GenreNew Age + KindMPEG audio file + Size5260090 + Total Time160809 + Disc Number1 + Disc Count1 + Track Number8 + Track Count19 + Year2001 + Date Modified2011-09-16T00:32:17Z + Date Added2011-09-16T01:08:22Z + Bit Rate253 + Sample Rate44100 + CommentsAmazon.com Song ID: 204374229 + Play Count1 + Play Date3399225643 + Play Date UTC2011-09-18T15:50:43Z + Artwork Count1 + Persistent IDF5E53F7607A08EEB + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Michael%20Hedges/Beyond%20Boundaries_%20Guitar%20Solos/08%20Jitterboogie.mp3 + File Folder Count4 + Library Folder Count1 + + 9432 + + Track ID9432 + NameJava Man + ArtistMichael Hedges + Album ArtistMichael Hedges + ComposerMichael Hedges + AlbumBeyond Boundaries: Guitar Solos + GenreNew Age + KindMPEG audio file + Size7127226 + Total Time226324 + Disc Number1 + Disc Count1 + Track Number9 + Track Count19 + Year2001 + Date Modified2011-09-15T19:25:58Z + Date Added2011-09-16T01:08:22Z + Bit Rate246 + Sample Rate44100 + CommentsAmazon.com Song ID: 204374223 + Play Count1 + Play Date3399225869 + Play Date UTC2011-09-18T15:54:29Z + Artwork Count1 + Persistent ID328EDB49938F8410 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Michael%20Hedges/Beyond%20Boundaries_%20Guitar%20Solos/09%20Java%20Man.mp3 + File Folder Count4 + Library Folder Count1 + + 9434 + + Track ID9434 + NameBensusan + ArtistMichael Hedges + Album ArtistMichael Hedges + ComposerMichael Hedges + AlbumBeyond Boundaries: Guitar Solos + GenreNew Age + KindMPEG audio file + Size4904231 + Total Time153704 + Disc Number1 + Disc Count1 + Track Number10 + Track Count19 + Year2001 + Date Modified2011-09-15T22:00:45Z + Date Added2011-09-16T01:08:22Z + Bit Rate247 + Sample Rate44100 + CommentsAmazon.com Song ID: 204374235 + Play Count1 + Play Date3399226023 + Play Date UTC2011-09-18T15:57:03Z + Artwork Count1 + Persistent ID1C4D05C947FFD82D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Michael%20Hedges/Beyond%20Boundaries_%20Guitar%20Solos/10%20Bensusan.mp3 + File Folder Count4 + Library Folder Count1 + + 9436 + + Track ID9436 + NameBecause It's There + ArtistMichael Hedges + Album ArtistMichael Hedges + ComposerMichael Hedges + AlbumBeyond Boundaries: Guitar Solos + GenreNew Age + KindMPEG audio file + Size5789017 + Total Time185208 + Disc Number1 + Disc Count1 + Track Number11 + Track Count19 + Year2001 + Date Modified2011-09-15T19:08:58Z + Date Added2011-09-16T01:08:22Z + Bit Rate243 + Sample Rate44100 + CommentsAmazon.com Song ID: 204374221 + Play Count1 + Play Date3399226208 + Play Date UTC2011-09-18T16:00:08Z + Artwork Count1 + Persistent ID87305B7A612A8F08 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Michael%20Hedges/Beyond%20Boundaries_%20Guitar%20Solos/11%20Because%20It's%20There.mp3 + File Folder Count4 + Library Folder Count1 + + 9438 + + Track ID9438 + NameThe Unexpected Visitor + ArtistMichael Hedges + Album ArtistMichael Hedges + ComposerMichael Hedges + AlbumBeyond Boundaries: Guitar Solos + GenreNew Age + KindMPEG audio file + Size5245770 + Total Time167836 + Disc Number1 + Disc Count1 + Track Number12 + Track Count19 + Year2001 + Date Modified2011-09-16T00:12:42Z + Date Added2011-09-16T01:08:22Z + Bit Rate242 + Sample Rate44100 + CommentsAmazon.com Song ID: 204374224 + Play Count1 + Play Date3399226375 + Play Date UTC2011-09-18T16:02:55Z + Artwork Count1 + Sort NameUnexpected Visitor + Persistent ID3ECEF77336EB8491 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Michael%20Hedges/Beyond%20Boundaries_%20Guitar%20Solos/12%20The%20Unexpected%20Visitor.mp3 + File Folder Count4 + Library Folder Count1 + + 9440 + + Track ID9440 + NameThe 2nd Law + ArtistMichael Hedges + Album ArtistMichael Hedges + ComposerMichael Hedges + AlbumBeyond Boundaries: Guitar Solos + GenreNew Age + KindMPEG audio file + Size5919222 + Total Time187585 + Disc Number1 + Disc Count1 + Track Number13 + Track Count19 + Year2001 + Date Modified2011-09-16T00:27:21Z + Date Added2011-09-16T01:08:22Z + Bit Rate245 + Sample Rate44100 + CommentsAmazon.com Song ID: 204374228 + Play Count1 + Play Date3399226563 + Play Date UTC2011-09-18T16:06:03Z + Artwork Count1 + Sort Name2nd Law + Persistent IDC6C3186303429034 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Michael%20Hedges/Beyond%20Boundaries_%20Guitar%20Solos/13%20The%202nd%20Law.mp3 + File Folder Count4 + Library Folder Count1 + + 9442 + + Track ID9442 + NameBaal T'shuvah + ArtistMichael Hedges + Album ArtistMichael Hedges + ComposerMichael Hedges + AlbumBeyond Boundaries: Guitar Solos + GenreNew Age + KindMPEG audio file + Size4258817 + Total Time133459 + Disc Number1 + Disc Count1 + Track Number14 + Track Count19 + Year2001 + Date Modified2011-09-15T20:36:34Z + Date Added2011-09-16T01:08:23Z + Bit Rate245 + Sample Rate44100 + CommentsAmazon.com Song ID: 204374232 + Play Count1 + Play Date3399226696 + Play Date UTC2011-09-18T16:08:16Z + Artwork Count1 + Persistent ID9C4EFCD92C39476E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Michael%20Hedges/Beyond%20Boundaries_%20Guitar%20Solos/14%20Baal%20T'shuvah.mp3 + File Folder Count4 + Library Folder Count1 + + 9444 + + Track ID9444 + NameThe Funky Avocado + ArtistMichael Hedges + Album ArtistMichael Hedges + ComposerMichael Hedges + AlbumBeyond Boundaries: Guitar Solos + GenreNew Age + KindMPEG audio file + Size6387788 + Total Time202448 + Disc Number1 + Disc Count1 + Track Number15 + Track Count19 + Year2001 + Date Modified2011-09-15T21:10:44Z + Date Added2011-09-16T01:08:23Z + Bit Rate246 + Sample Rate44100 + CommentsAmazon.com Song ID: 204374230 + Play Count1 + Play Date3399468013 + Play Date UTC2011-09-21T11:10:13Z + Artwork Count1 + Sort NameFunky Avocado + Persistent ID79547EFCA7C1577A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Michael%20Hedges/Beyond%20Boundaries_%20Guitar%20Solos/15%20The%20Funky%20Avocado.mp3 + File Folder Count4 + Library Folder Count1 + + 9446 + + Track ID9446 + NameDream Beach + ArtistMichael Hedges + Album ArtistMichael Hedges + ComposerMichael Hedges + AlbumBeyond Boundaries: Guitar Solos + GenreNew Age + KindMPEG audio file + Size7300421 + Total Time234840 + Disc Number1 + Disc Count1 + Track Number16 + Track Count19 + Year2001 + Date Modified2011-09-15T23:57:17Z + Date Added2011-09-16T01:08:23Z + Bit Rate243 + Sample Rate44100 + CommentsAmazon.com Song ID: 204374227 + Artwork Count1 + Persistent ID67ECC42672E3063D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Michael%20Hedges/Beyond%20Boundaries_%20Guitar%20Solos/16%20Dream%20Beach.mp3 + File Folder Count4 + Library Folder Count1 + + 9448 + + Track ID9448 + NameGospel + ArtistMichael Hedges + Album ArtistMichael Hedges + ComposerMichael Hedges + AlbumBeyond Boundaries: Guitar Solos + GenreNew Age + KindMPEG audio file + Size6971848 + Total Time219350 + Disc Number1 + Disc Count1 + Track Number17 + Track Count19 + Year2001 + Date Modified2011-09-15T23:15:13Z + Date Added2011-09-16T01:08:23Z + Bit Rate248 + Sample Rate44100 + CommentsAmazon.com Song ID: 204374220 + Artwork Count1 + Persistent IDE08BFBCAA8FDDD56 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Michael%20Hedges/Beyond%20Boundaries_%20Guitar%20Solos/17%20Gospel.mp3 + File Folder Count4 + Library Folder Count1 + + 9450 + + Track ID9450 + NameSofa No. 1 + ArtistMichael Hedges + Album ArtistMichael Hedges + ComposerFrank Zappa + AlbumBeyond Boundaries: Guitar Solos + GenreNew Age + KindMPEG audio file + Size5614689 + Total Time175307 + Disc Number1 + Disc Count1 + Track Number18 + Track Count19 + Year2001 + Date Modified2011-09-15T20:52:57Z + Date Added2011-09-16T01:08:23Z + Bit Rate249 + Sample Rate44100 + CommentsAmazon.com Song ID: 204374236 + Artwork Count1 + Persistent IDA4B19FF8495A3DC1 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Michael%20Hedges/Beyond%20Boundaries_%20Guitar%20Solos/18%20Sofa%20No.%201.mp3 + File Folder Count4 + Library Folder Count1 + + 9452 + + Track ID9452 + NameRickover's Dream + ArtistMichael Hedges + Album ArtistMichael Hedges + ComposerMichael Hedges + AlbumBeyond Boundaries: Guitar Solos + GenreNew Age + KindMPEG audio file + Size10786513 + Total Time341681 + Disc Number1 + Disc Count1 + Track Number19 + Track Count19 + Year2001 + Date Modified2011-09-15T19:51:11Z + Date Added2011-09-16T01:08:23Z + Bit Rate248 + Sample Rate44100 + CommentsAmazon.com Song ID: 204374225 + Artwork Count1 + Persistent IDD9E927DFA0F2FADD + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Michael%20Hedges/Beyond%20Boundaries_%20Guitar%20Solos/19%20Rickover's%20Dream.mp3 + File Folder Count4 + Library Folder Count1 + + 9458 + + Track ID9458 + NameLove Me + ArtistThe Little Willies + ComposerMike Stoller/Jerry Leiber + Album...Featuring Norah Jones + GenrePop + KindAAC audio file + Size9210253 + Total Time233373 + Disc Number1 + Disc Count1 + Track Number1 + Track Count18 + Year2010 + Date Modified2011-10-08T11:50:30Z + Date Added2011-10-08T11:30:30Z + Bit Rate256 + Sample Rate44100 + Normalization2486 + Artwork Count1 + Sort ArtistLittle Willies + Persistent ID4EC106ABD8B5F54D + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Little%20Willies/_..Featuring%20Norah%20Jones/01%20Love%20Me.m4a + File Folder Count4 + Library Folder Count1 + + 9460 + + Track ID9460 + NameVirginia Moon + ArtistFoo Fighters Feat. Norah Jones + ComposerTaylor Hawkins & The Coattail Riders/Dave Grohl/Nate Mendel/Christopher A. Shiflett + Album...Featuring Norah Jones + GenrePop + KindAAC audio file + Size8569288 + Total Time231613 + Disc Number1 + Disc Count1 + Track Number2 + Track Count18 + Year2010 + Date Modified2011-10-08T11:50:29Z + Date Added2011-10-08T11:31:13Z + Bit Rate256 + Sample Rate44100 + Normalization1658 + Artwork Count1 + Persistent ID84417EC6979FECF3 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Foo%20Fighters%20Feat.%20Norah%20Jones/_..Featuring%20Norah%20Jones/02%20Virginia%20Moon.m4a + File Folder Count4 + Library Folder Count1 + + 9462 + + Track ID9462 + NameTurn Them + ArtistSean Bones Feat. Norah Jones + ComposerSean Bones + Album...Featuring Norah Jones + GenrePop + KindAAC audio file + Size8967240 + Total Time245786 + Disc Number1 + Disc Count1 + Track Number3 + Track Count18 + Year2010 + Date Modified2011-10-08T11:50:29Z + Date Added2011-10-08T11:31:53Z + Bit Rate256 + Sample Rate44100 + Normalization2687 + Artwork Count1 + Persistent IDD846A71595C0B698 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Sean%20Bones%20Feat.%20Norah%20Jones/_..Featuring%20Norah%20Jones/03%20Turn%20Them.m4a + File Folder Count4 + Library Folder Count1 + + 9464 + + Track ID9464 + NameBaby It's Cold Outside + ArtistWillie Nelson Feat. Norah Jones + ComposerFrank Loesser + Album...Featuring Norah Jones + GenrePop + KindAAC audio file + Size8579107 + Total Time240640 + Disc Number1 + Disc Count1 + Track Number4 + Track Count18 + Year2010 + Date Modified2011-10-08T11:50:29Z + Date Added2011-10-08T11:32:30Z + Bit Rate256 + Sample Rate44100 + Normalization1419 + Artwork Count1 + Persistent ID0E14502DF98A216E + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Willie%20Nelson%20Feat.%20Norah%20Jones/_..Featuring%20Norah%20Jones/04%20Baby%20It's%20Cold%20Outside.m4a + File Folder Count4 + Library Folder Count1 + + 9466 + + Track ID9466 + NameBull Rider + ArtistNorah Jones & Sasha Dobson + ComposerRodney Crowell + Album...Featuring Norah Jones + GenrePop + KindAAC audio file + Size6560085 + Total Time178253 + Disc Number1 + Disc Count1 + Track Number5 + Track Count18 + Year2010 + Date Modified2011-10-08T11:50:28Z + Date Added2011-10-08T11:33:05Z + Bit Rate256 + Sample Rate44100 + Normalization2170 + Artwork Count1 + Persistent IDFFB675BE160ABDF3 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Norah%20Jones%20&%20Sasha%20Dobson/_..Featuring%20Norah%20Jones/05%20Bull%20Rider.m4a + File Folder Count4 + Library Folder Count1 + + 9468 + + Track ID9468 + NameRuler Of My Heart + ArtistDirty Dozen Brass Band Feat. Norah Jones + ComposerNaomi Neville + Album...Featuring Norah Jones + GenrePop + KindAAC audio file + Size6599660 + Total Time180093 + Disc Number1 + Disc Count1 + Track Number6 + Track Count18 + Year2010 + Date Modified2011-10-08T11:50:28Z + Date Added2011-10-08T11:33:30Z + Bit Rate256 + Sample Rate44100 + Normalization1653 + Artwork Count1 + Persistent ID5811A1D0E46D8A0F + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Dirty%20Dozen%20Brass%20Band%20Feat.%20Norah%20Jones/_..Featuring%20Norah%20Jones/06%20Ruler%20Of%20My%20Heart.m4a + File Folder Count4 + Library Folder Count1 + + 9470 + + Track ID9470 + NameThe Best Part + ArtistEl Madmo + ComposerAndrew Borger/Norah Jones/Daru Oda + Album...Featuring Norah Jones + GenrePop + KindAAC audio file + Size7358716 + Total Time205213 + Disc Number1 + Disc Count1 + Track Number7 + Track Count18 + Year2010 + Date Modified2011-10-08T11:50:28Z + Date Added2011-10-08T11:33:54Z + Bit Rate256 + Sample Rate44100 + Normalization1603 + Artwork Count1 + Sort NameBest Part + Persistent ID836E55CA21179BA7 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/El%20Madmo/_..Featuring%20Norah%20Jones/07%20The%20Best%20Part.m4a + File Folder Count4 + Library Folder Count1 + + 9472 + + Track ID9472 + NameTake Off Your Cool + ArtistOutKast Feat. Norah Jones + ComposerAndré Benjamin + Album...Featuring Norah Jones + GenrePop + KindAAC audio file + Size5870588 + Total Time158573 + Disc Number1 + Disc Count1 + Track Number8 + Track Count18 + Year2010 + Date Modified2011-10-08T11:50:27Z + Date Added2011-10-08T11:34:20Z + Bit Rate256 + Sample Rate44100 + Normalization1173 + Artwork Count1 + Persistent IDC54F5591FC82C840 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/OutKast%20Feat.%20Norah%20Jones/_..Featuring%20Norah%20Jones/08%20Take%20Off%20Your%20Cool.m4a + File Folder Count4 + Library Folder Count1 + + 9474 + + Track ID9474 + NameLife Is Better + ArtistQ-Tip Feat. Norah Jones + ComposerRobert Glasper/Kamaal Fareed + Album...Featuring Norah Jones + GenrePop + KindAAC audio file + Size9496970 + Total Time266826 + Disc Number1 + Disc Count1 + Track Number9 + Track Count18 + Year2010 + Date Modified2011-10-08T11:50:27Z + Date Added2011-10-08T11:34:39Z + Bit Rate256 + Sample Rate44100 + Normalization1491 + Artwork Count1 + Persistent ID8CC528AA210B6972 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Q-Tip%20Feat.%20Norah%20Jones/_..Featuring%20Norah%20Jones/09%20Life%20Is%20Better.m4a + File Folder Count4 + Library Folder Count1 + + 9476 + + Track ID9476 + NameSoon The New Day + ArtistTalib Kweli Feat. Norah Jones + ComposerPaul Charles/John Mason/Talib Kweli Greene/Otis Jackson Jr + Album...Featuring Norah Jones + GenrePop + KindAAC audio file + Size8698817 + Total Time244333 + Disc Number1 + Disc Count1 + Track Number10 + Track Count18 + Year2010 + Date Modified2011-10-08T11:50:27Z + Date Added2011-10-08T11:35:10Z + Bit Rate256 + Sample Rate44100 + Normalization1756 + Artwork Count1 + Persistent ID55F933C8F92C3979 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Talib%20Kweli%20Feat.%20Norah%20Jones/_..Featuring%20Norah%20Jones/10%20Soon%20The%20New%20Day.m4a + File Folder Count4 + Library Folder Count1 + + 9478 + + Track ID9478 + NameLittle Lou, Prophet Jack, Ugly John + ArtistBelle & Sebastian Feat. Norah Jones + ComposerChris Geddes/Sarah Martin/Bobby Kildea/Stuart Murdoch/Stevie Jackson/Richard Colburn/Mick Cooke + Album...Featuring Norah Jones + GenrePop + KindAAC audio file + Size9490293 + Total Time265386 + Disc Number1 + Disc Count1 + Track Number11 + Track Count18 + Year2010 + Date Modified2011-10-08T11:50:27Z + Date Added2011-10-08T11:35:38Z + Bit Rate256 + Sample Rate44100 + Skip Count2 + Skip Date2014-06-05T15:50:37Z + Normalization2202 + Artwork Count1 + Persistent IDD913E723444EA60F + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Belle%20&%20Sebastian%20Feat.%20Norah%20Jones/_..Featuring%20Norah%20Jones/11%20Little%20Lou,%20Prophet%20Jack,%20Ugly%20John.m4a + File Folder Count4 + Library Folder Count1 + + 9480 + + Track ID9480 + NameHere We Go Again + ArtistRay Charles Feat. Norah Jones + ComposerDon Lanier/Russell Steagall + Album...Featuring Norah Jones + GenrePop + KindAAC audio file + Size8836829 + Total Time237986 + Disc Number1 + Disc Count1 + Track Number12 + Track Count18 + Year2010 + Date Modified2011-10-08T11:50:26Z + Date Added2011-10-08T11:36:06Z + Bit Rate256 + Sample Rate44100 + Normalization1475 + Artwork Count1 + Persistent ID25449763E11D51CC + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ray%20Charles%20Feat.%20Norah%20Jones/_..Featuring%20Norah%20Jones/12%20Here%20We%20Go%20Again.m4a + File Folder Count4 + Library Folder Count1 + + 9482 + + Track ID9482 + NameLoretta + ArtistNorah Jones Feat. Gillian Welch & David Rawlings + ComposerTownes Van Zandt + Album...Featuring Norah Jones + GenrePop + KindAAC audio file + Size7289167 + Total Time202573 + Disc Number1 + Disc Count1 + Track Number13 + Track Count18 + Year2010 + Date Modified2011-10-08T11:50:26Z + Date Added2011-10-08T11:36:31Z + Bit Rate256 + Sample Rate44100 + Normalization2121 + Artwork Count1 + Persistent ID613CCF59A93B59EF + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Norah%20Jones%20Feat.%20Gillian%20Welch%20&%20David%20Rawlings/_..Featuring%20Norah%20Jones/13%20Loretta.m4a + File Folder Count4 + Library Folder Count1 + + 9484 + + Track ID9484 + NameDear John + ArtistRyan Adams Feat. Norah Jones + ComposerRyan Adams/Norah Jones + Album...Featuring Norah Jones + GenrePop + KindAAC audio file + Size9805646 + Total Time276840 + Disc Number1 + Disc Count1 + Track Number14 + Track Count18 + Year2010 + Date Modified2011-10-08T11:50:26Z + Date Added2011-10-08T11:36:52Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3400956522 + Play Date UTC2011-10-08T16:38:42Z + Normalization2326 + Artwork Count1 + Persistent ID20231B1D40D27906 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ryan%20Adams%20Feat.%20Norah%20Jones/_..Featuring%20Norah%20Jones/14%20Dear%20John.m4a + File Folder Count4 + Library Folder Count1 + + 9486 + + Track ID9486 + NameCreepin' In + ArtistNorah Jones Feat. Dolly Parton + ComposerLee Alexander + Album...Featuring Norah Jones + GenrePop + KindAAC audio file + Size6631809 + Total Time183840 + Disc Number1 + Disc Count1 + Track Number15 + Track Count18 + Year2010 + Date Modified2011-10-08T11:50:26Z + Date Added2011-10-08T11:37:19Z + Bit Rate256 + Sample Rate44100 + Normalization2050 + Artwork Count1 + Persistent ID135517BE59FAFF2F + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Norah%20Jones%20Feat.%20Dolly%20Parton/_..Featuring%20Norah%20Jones/15%20Creepin'%20In.m4a + File Folder Count4 + Library Folder Count1 + + 9488 + + Track ID9488 + NameCourt & Spark + ArtistHerbie Hancock Feat. Norah Jones + ComposerJoni Mitchell + Album...Featuring Norah Jones + GenrePop + KindAAC audio file + Size15924595 + Total Time456333 + Disc Number1 + Disc Count1 + Track Number16 + Track Count18 + Year2010 + Date Modified2011-10-08T11:50:25Z + Date Added2011-10-08T11:37:37Z + Bit Rate256 + Sample Rate44100 + Normalization1665 + Artwork Count1 + Persistent ID34EB12097801363E + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Herbie%20Hancock%20Feat.%20Norah%20Jones/_..Featuring%20Norah%20Jones/16%20Court%20&%20Spark.m4a + File Folder Count4 + Library Folder Count1 + + 9490 + + Track ID9490 + NameMore Than This + ArtistCharlie Hunter Feat. Norah Jones + ComposerBryan Ferry + Album...Featuring Norah Jones + GenrePop + KindAAC audio file + Size8963854 + Total Time252400 + Disc Number1 + Disc Count1 + Track Number17 + Track Count18 + Year2001 + Date Modified2011-10-08T11:50:25Z + Date Added2011-10-08T11:38:19Z + Bit Rate256 + Sample Rate44100 + Normalization1101 + Artwork Count1 + Persistent ID53E2E5E187B95030 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Charlie%20Hunter%20Feat.%20Norah%20Jones/_..Featuring%20Norah%20Jones/17%20More%20Than%20This.m4a + File Folder Count4 + Library Folder Count1 + + 9492 + + Track ID9492 + NameBlue Bayou + ArtistNorah Jones Feat. M. Ward + ComposerRoy Orbison/Joe Melson + Album...Featuring Norah Jones + GenrePop + KindAAC audio file + Size8088448 + Total Time224386 + Disc Number1 + Disc Count1 + Track Number18 + Track Count18 + Year2010 + Date Modified2011-10-08T11:50:25Z + Date Added2011-10-08T11:38:43Z + Bit Rate256 + Sample Rate44100 + Normalization1208 + Artwork Count1 + Persistent ID085CD2F483C62842 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Norah%20Jones%20Feat.%20M.%20Ward/_..Featuring%20Norah%20Jones/18%20Blue%20Bayou.m4a + File Folder Count4 + Library Folder Count1 + + 9494 + + Track ID9494 + Name25/03/11 4:33 PM + ArtistMahesh Venkitachalam + AlbumVoice Memos + GenreVoice Memo + KindAAC audio file + Size192074 + Total Time23381 + Date Modified2011-03-25T11:05:13Z + Date Added2011-10-08T12:07:58Z + Bit Rate64 + Sample Rate44100 + Persistent ID6216D9AE3B1A95BC + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Voice%20Memos/25_03_11%204_33%20PM.m4a + File Folder Count3 + Library Folder Count1 + + 9496 + + Track ID9496 + Name27/03/11 6:14 PM + ArtistMahesh Venkitachalam + AlbumVoice Memos + GenreVoice Memo + KindAAC audio file + Size91869 + Total Time11120 + Date Modified2011-03-27T12:44:46Z + Date Added2011-10-08T12:07:58Z + Bit Rate64 + Sample Rate44100 + Persistent ID0FC6A6AEDADC3E9D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Voice%20Memos/27_03_11%206_14%20PM.m4a + File Folder Count3 + Library Folder Count1 + + 9498 + + Track ID9498 + Name21/04/11 4:43 PM + ArtistMahesh Venkitachalam + AlbumVoice Memos + GenreVoice Memo + KindAAC audio file + Size1106346 + Total Time135254 + Date Modified2011-04-21T11:16:04Z + Date Added2011-10-08T12:07:58Z + Bit Rate64 + Sample Rate44100 + Persistent ID4CF15F0D69DA643D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Voice%20Memos/21_04_11%204_43%20PM.m4a + File Folder Count3 + Library Folder Count1 + + 9500 + + Track ID9500 + Name21/04/11 6:46 PM + ArtistMahesh Venkitachalam + AlbumVoice Memos + GenreVoice Memo + KindAAC audio file + Size55813 + Total Time6709 + Date Modified2011-04-21T13:16:55Z + Date Added2011-10-08T12:07:58Z + Bit Rate64 + Sample Rate44100 + Persistent ID9453C97FC3D5FA6A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Voice%20Memos/21_04_11%206_46%20PM.m4a + File Folder Count3 + Library Folder Count1 + + 9502 + + Track ID9502 + Name21/04/11 6:47 PM + ArtistMahesh Venkitachalam + AlbumVoice Memos + GenreVoice Memo + KindAAC audio file + Size172715 + Total Time21012 + Date Modified2011-04-21T13:17:29Z + Date Added2011-10-08T12:07:58Z + Bit Rate64 + Sample Rate44100 + Persistent IDD7F768E768219107 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Voice%20Memos/21_04_11%206_47%20PM.m4a + File Folder Count3 + Library Folder Count1 + + 9504 + + Track ID9504 + Name21/04/11 6:47 PM + ArtistMahesh Venkitachalam + AlbumVoice Memos + GenreVoice Memo + KindAAC audio file + Size189224 + Total Time23032 + Date Modified2011-04-21T13:17:55Z + Date Added2011-10-08T12:07:58Z + Bit Rate64 + Sample Rate44100 + Persistent IDE068AE25A10B9C7B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Voice%20Memos/21_04_11%206_47%20PM%201.m4a + File Folder Count3 + Library Folder Count1 + + 9506 + + Track ID9506 + Name21/04/11 6:49 PM + ArtistMahesh Venkitachalam + AlbumVoice Memos + GenreVoice Memo + KindAAC audio file + Size88450 + Total Time10702 + Date Modified2011-04-21T13:19:34Z + Date Added2011-10-08T12:07:58Z + Bit Rate64 + Sample Rate44100 + Persistent ID5CE8E0A83DEBEED4 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Voice%20Memos/21_04_11%206_49%20PM.m4a + File Folder Count3 + Library Folder Count1 + + 9508 + + Track ID9508 + Name21/04/11 6:49 PM + ArtistMahesh Venkitachalam + AlbumVoice Memos + GenreVoice Memo + KindAAC audio file + Size107430 + Total Time13024 + Date Modified2011-04-21T13:20:06Z + Date Added2011-10-08T12:07:58Z + Bit Rate64 + Sample Rate44100 + Persistent ID35638762A9FF2F29 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Voice%20Memos/21_04_11%206_49%20PM%201.m4a + File Folder Count3 + Library Folder Count1 + + 9510 + + Track ID9510 + Name21/04/11 6:51 PM + ArtistMahesh Venkitachalam + AlbumVoice Memos + GenreVoice Memo + KindAAC audio file + Size282968 + Total Time34503 + Date Modified2011-04-21T13:21:46Z + Date Added2011-10-08T12:07:58Z + Bit Rate64 + Sample Rate44100 + Persistent IDCB650B17EFE83D22 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Voice%20Memos/21_04_11%206_51%20PM.m4a + File Folder Count3 + Library Folder Count1 + + 9512 + + Track ID9512 + Name26/04/11 1:23 PM + ArtistMahesh Venkitachalam + AlbumVoice Memos + GenreVoice Memo + KindAAC audio file + Size200603 + Total Time24425 + Date Modified2011-04-26T07:54:04Z + Date Added2011-10-08T12:07:58Z + Bit Rate64 + Sample Rate44100 + Persistent ID1E5D7BA9A5E5E77C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Voice%20Memos/26_04_11%201_23%20PM.m4a + File Folder Count3 + Library Folder Count1 + + 9514 + + Track ID9514 + Name21/07/11 8:53 AM + ArtistMahesh Venkitachalam + AlbumVoice Memos + GenreVoice Memo + KindAAC audio file + Size129077 + Total Time15672 + Date Modified2011-07-21T03:24:14Z + Date Added2011-10-08T12:07:58Z + Bit Rate64 + Sample Rate44100 + Persistent IDC5E056BD24579FA9 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Voice%20Memos/21_07_11%208_53%20AM.m4a + File Folder Count3 + Library Folder Count1 + + 9516 + + Track ID9516 + Name29/07/11 7:54 PM + ArtistMahesh Venkitachalam + AlbumVoice Memos + GenreVoice Memo + KindAAC audio file + Size94344 + Total Time11422 + Date Modified2011-07-29T14:25:08Z + Date Added2011-10-08T12:07:58Z + Bit Rate64 + Sample Rate44100 + Persistent IDE11FCBD353D50260 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Voice%20Memos/29_07_11%207_54%20PM.m4a + File Folder Count3 + Library Folder Count1 + + 9518 + + Track ID9518 + Name29/07/11 7:55 PM + ArtistMahesh Venkitachalam + AlbumVoice Memos + GenreVoice Memo + KindAAC audio file + Size259045 + Total Time31577 + Date Modified2011-07-29T14:26:29Z + Date Added2011-10-08T12:07:58Z + Bit Rate64 + Sample Rate44100 + Persistent IDAD50A107DBA217B9 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Voice%20Memos/29_07_11%207_55%20PM.m4a + File Folder Count3 + Library Folder Count1 + + 9520 + + Track ID9520 + Name29/07/11 7:57 PM + ArtistMahesh Venkitachalam + AlbumVoice Memos + GenreVoice Memo + KindAAC audio file + Size645417 + Total Time78876 + Date Modified2011-07-29T14:28:52Z + Date Added2011-10-08T12:07:58Z + Bit Rate64 + Sample Rate44100 + Persistent ID04666D7DEEF179EC + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Voice%20Memos/29_07_11%207_57%20PM.m4a + File Folder Count3 + Library Folder Count1 + + 9522 + + Track ID9522 + Name29/07/11 8:00 PM + ArtistMahesh Venkitachalam + AlbumVoice Memos + GenreVoice Memo + KindAAC audio file + Size350342 + Total Time42769 + Date Modified2011-07-29T14:31:35Z + Date Added2011-10-08T12:07:58Z + Bit Rate64 + Sample Rate44100 + Persistent IDABDC9E402611D26F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Voice%20Memos/29_07_11%208_00%20PM.m4a + File Folder Count3 + Library Folder Count1 + + 9524 + + Track ID9524 + Name04/08/11 5:23 PM + ArtistMahesh Venkitachalam + AlbumVoice Memos + GenreVoice Memo + KindAAC audio file + Size33990 + Total Time4038 + Date Modified2011-08-04T11:53:35Z + Date Added2011-10-08T12:07:58Z + Bit Rate64 + Sample Rate44100 + Persistent ID7E80533AAED4AE62 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Voice%20Memos/04_08_11%205_23%20PM.m4a + File Folder Count3 + Library Folder Count1 + + 9526 + + Track ID9526 + Name08/08/11 8:15 PM + ArtistMahesh Venkitachalam + AlbumVoice Memos + GenreVoice Memo + KindAAC audio file + Size754709 + Total Time92228 + Date Modified2011-08-08T14:46:34Z + Date Added2011-10-08T12:07:58Z + Bit Rate64 + Sample Rate44100 + Persistent ID3DD4F2D44868954B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Voice%20Memos/08_08_11%208_15%20PM.m4a + File Folder Count3 + Library Folder Count1 + + 9528 + + Track ID9528 + Name01/09/11 8:37 AM + ArtistMahesh Venkitachalam + AlbumVoice Memos + GenreVoice Memo + KindAAC audio file + Size397193 + Total Time48481 + Date Modified2011-09-01T03:08:07Z + Date Added2011-10-08T12:07:58Z + Bit Rate64 + Sample Rate44100 + Persistent ID949DDF264DAD6681 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Voice%20Memos/01_09_11%208_37%20AM.m4a + File Folder Count3 + Library Folder Count1 + + 9530 + + Track ID9530 + Name01/09/11 8:41 AM + ArtistMahesh Venkitachalam + AlbumVoice Memos + GenreVoice Memo + KindAAC audio file + Size494554 + Total Time60393 + Date Modified2011-09-01T03:12:40Z + Date Added2011-10-08T12:07:58Z + Bit Rate64 + Sample Rate44100 + Persistent IDBAD7B488412B25EB + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Voice%20Memos/01_09_11%208_41%20AM.m4a + File Folder Count3 + Library Folder Count1 + + 9532 + + Track ID9532 + NamePrélude à l'après-midi d'un faune (1986 Digital Remaster) + ArtistHerbert Von Karajan: Berlin Philharmonic Orchestra + AlbumDebussy: La mer; Images for Orchestra; Trois Nocturnes; Jeux etc + GenreClassical + KindAAC audio file + Size20097339 + Total Time620920 + Disc Number1 + Disc Count2 + Track Number1 + Track Count9 + Year2011 + Date Modified2011-10-15T13:38:57Z + Date Added2011-10-15T13:18:46Z + Bit Rate256 + Sample Rate44100 + Play Count3 + Play Date3430930213 + Play Date UTC2012-09-19T14:40:13Z + Normalization108 + Artwork Count1 + Persistent ID62141C1C3E9C624A + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Herbert%20Von%20Karajan_%20Berlin%20Philharmonic%20Orchestra/Debussy_%20La%20mer%3B%20Images%20for%20Orchestra%3B%20Trois%20Nocturnes%3B%20Jeux%20etc/1-01%20Pre%CC%81lude%20a%CC%80%20l'apre%CC%80s-midi%20d'un%20faune%20(1986%20Digital%20Remaster).m4a + File Folder Count4 + Library Folder Count1 + + 9534 + + Track ID9534 + NameLa Mer (1986 Digital Remaster): De l'aube à midi sur la mer + ArtistHerbert Von Karajan: Berlin Philharmonic Orchestra + AlbumDebussy: La mer; Images for Orchestra; Trois Nocturnes; Jeux etc + GenreClassical + KindAAC audio file + Size20471024 + Total Time571360 + Disc Number1 + Disc Count2 + Track Number2 + Track Count9 + Year2011 + Date Modified2011-10-15T13:38:58Z + Date Added2011-10-15T13:20:30Z + Bit Rate256 + Sample Rate44100 + Normalization1197 + Artwork Count1 + Persistent ID0D7C184C03BBCAC4 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Herbert%20Von%20Karajan_%20Berlin%20Philharmonic%20Orchestra/Debussy_%20La%20mer%3B%20Images%20for%20Orchestra%3B%20Trois%20Nocturnes%3B%20Jeux%20etc/1-02%20La%20Mer%20(1986%20Digital%20Remaster)_%20De%20l'aube%20a%CC%80%20midi%20sur%20la%20mer.m4a + File Folder Count4 + Library Folder Count1 + + 9536 + + Track ID9536 + NameLa Mer (1986 Digital Remaster): Jeux de vagues + ArtistHerbert Von Karajan: Berlin Philharmonic Orchestra + AlbumDebussy: La mer; Images for Orchestra; Trois Nocturnes; Jeux etc + GenreClassical + KindAAC audio file + Size15394281 + Total Time428533 + Disc Number1 + Disc Count2 + Track Number3 + Track Count9 + Year2011 + Date Modified2011-10-15T13:39:00Z + Date Added2011-10-15T13:21:50Z + Bit Rate256 + Sample Rate44100 + Normalization1064 + Artwork Count1 + Persistent IDE7E963FA005C103D + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Herbert%20Von%20Karajan_%20Berlin%20Philharmonic%20Orchestra/Debussy_%20La%20mer%3B%20Images%20for%20Orchestra%3B%20Trois%20Nocturnes%3B%20Jeux%20etc/1-03%20La%20Mer%20(1986%20Digital%20Remaster)_%20Jeux%20de%20vagues.m4a + File Folder Count4 + Library Folder Count1 + + 9538 + + Track ID9538 + NameLa Mer (1986 Digital Remaster): Dialogue du vent et de la mer + ArtistHerbert Von Karajan: Berlin Philharmonic Orchestra + AlbumDebussy: La mer; Images for Orchestra; Trois Nocturnes; Jeux etc + GenreClassical + KindAAC audio file + Size18551083 + Total Time533840 + Disc Number1 + Disc Count2 + Track Number4 + Track Count9 + Year2011 + Date Modified2011-10-15T13:39:00Z + Date Added2011-10-15T13:22:43Z + Bit Rate256 + Sample Rate44100 + Normalization1359 + Artwork Count1 + Persistent ID1EC2EC332248699F + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Herbert%20Von%20Karajan_%20Berlin%20Philharmonic%20Orchestra/Debussy_%20La%20mer%3B%20Images%20for%20Orchestra%3B%20Trois%20Nocturnes%3B%20Jeux%20etc/1-04%20La%20Mer%20(1986%20Digital%20Remaster)_%20Dialogue%20du%20vent%20et%20de%20la%20mer.m4a + File Folder Count4 + Library Folder Count1 + + 9540 + + Track ID9540 + NameImages: I. Gigues + ArtistLondon Symphony Orchestra/André Previn + AlbumDebussy: La mer; Images for Orchestra; Trois Nocturnes; Jeux etc + GenreClassical + KindAAC audio file + Size14519843 + Total Time437653 + Disc Number1 + Disc Count2 + Track Number5 + Track Count9 + Year2011 + Date Modified2011-10-15T13:39:06Z + Date Added2011-10-15T13:23:43Z + Bit Rate256 + Sample Rate44100 + Normalization1230 + Artwork Count1 + Persistent ID9EDFA3B5E735B10A + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/London%20Symphony%20Orchestra_Andre%CC%81%20Previn/Debussy_%20La%20mer%3B%20Images%20for%20Orchestra%3B%20Trois%20Nocturnes%3B%20Jeux%20etc/1-05%20Images_%20I.%20Gigues.m4a + File Folder Count4 + Library Folder Count1 + + 9542 + + Track ID9542 + NameImages, II. Ibéria: 1. Par les rues et par les chemins + ArtistLondon Symphony Orchestra/André Previn + AlbumDebussy: La mer; Images for Orchestra; Trois Nocturnes; Jeux etc + GenreClassical + KindAAC audio file + Size14798325 + Total Time446306 + Disc Number1 + Disc Count2 + Track Number6 + Track Count9 + Year2011 + Date Modified2011-10-15T13:39:07Z + Date Added2011-10-15T13:24:29Z + Bit Rate256 + Sample Rate44100 + Skip Count1 + Skip Date2011-12-31T06:25:46Z + Normalization1258 + Artwork Count1 + Persistent ID95193BC4BAF83C08 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/London%20Symphony%20Orchestra_Andre%CC%81%20Previn/Debussy_%20La%20mer%3B%20Images%20for%20Orchestra%3B%20Trois%20Nocturnes%3B%20Jeux%20etc/1-06%20Images,%20II.%20Ibe%CC%81ria_%201.%20Par%20les%20rues%20et%20par%20les%20chemins.m4a + File Folder Count4 + Library Folder Count1 + + 9544 + + Track ID9544 + NameImages, II. Ibéria: 2. Les parfums de la nuit - + ArtistLondon Symphony Orchestra/André Previn + AlbumDebussy: La mer; Images for Orchestra; Trois Nocturnes; Jeux etc + GenreClassical + KindAAC audio file + Size19851234 + Total Time596746 + Disc Number1 + Disc Count2 + Track Number7 + Track Count9 + Year2011 + Date Modified2011-10-15T13:39:08Z + Date Added2011-10-15T13:25:13Z + Bit Rate256 + Sample Rate44100 + Normalization455 + Artwork Count1 + Persistent ID5B6E36C11BA1CF90 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/London%20Symphony%20Orchestra_Andre%CC%81%20Previn/Debussy_%20La%20mer%3B%20Images%20for%20Orchestra%3B%20Trois%20Nocturnes%3B%20Jeux%20etc/1-07%20Images,%20II.%20Ibe%CC%81ria_%202.%20Les%20parfums%20de%20la%20nuit%20-.m4a + File Folder Count4 + Library Folder Count1 + + 9546 + + Track ID9546 + NameImages, II. Ibéria: 3. Le matin d'un jour de fête + ArtistLondon Symphony Orchestra/André Previn + AlbumDebussy: La mer; Images for Orchestra; Trois Nocturnes; Jeux etc + GenreClassical + KindAAC audio file + Size10049701 + Total Time300360 + Disc Number1 + Disc Count2 + Track Number8 + Track Count9 + Year2011 + Date Modified2011-10-15T13:39:09Z + Date Added2011-10-15T13:26:08Z + Bit Rate256 + Sample Rate44100 + Normalization1230 + Artwork Count1 + Persistent IDC72D130564780896 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/London%20Symphony%20Orchestra_Andre%CC%81%20Previn/Debussy_%20La%20mer%3B%20Images%20for%20Orchestra%3B%20Trois%20Nocturnes%3B%20Jeux%20etc/1-08%20Images,%20II.%20Ibe%CC%81ria_%203.%20Le%20matin%20d'un%20jour%20de%20fe%CC%82te.m4a + File Folder Count4 + Library Folder Count1 + + 9548 + + Track ID9548 + NameImages: III. Rondes de printemps + ArtistLondon Symphony Orchestra/André Previn + AlbumDebussy: La mer; Images for Orchestra; Trois Nocturnes; Jeux etc + GenreClassical + KindAAC audio file + Size16206379 + Total Time498453 + Disc Number1 + Disc Count2 + Track Number9 + Track Count9 + Year2011 + Date Modified2011-10-15T13:39:10Z + Date Added2011-10-15T13:26:34Z + Bit Rate256 + Sample Rate44100 + Normalization1034 + Artwork Count1 + Persistent ID6C06F4D293871A33 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/London%20Symphony%20Orchestra_Andre%CC%81%20Previn/Debussy_%20La%20mer%3B%20Images%20for%20Orchestra%3B%20Trois%20Nocturnes%3B%20Jeux%20etc/1-09%20Images_%20III.%20Rondes%20de%20printemps.m4a + File Folder Count4 + Library Folder Count1 + + 9550 + + Track ID9550 + NameChildren's Corner Suite (orch. André Caplet) (1998 Digital Remaster): 1. Doctor Gradus ad Parnassum + ArtistJean Martinon: Orchestre National De L'ORTF + AlbumDebussy: La mer; Images for Orchestra; Trois Nocturnes; Jeux etc + GenreClassical + KindAAC audio file + Size6053438 + Total Time161413 + Disc Number2 + Disc Count2 + Track Number1 + Track Count12 + Year2011 + Date Modified2011-10-15T13:39:01Z + Date Added2011-10-15T13:28:32Z + Bit Rate256 + Sample Rate44100 + Normalization551 + Artwork Count1 + Persistent ID7E07E46C91F6AC9A + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jean%20Martinon_%20Orchestre%20National%20De%20L'ORTF/Debussy_%20La%20mer%3B%20Images%20for%20Orchestra%3B%20Trois%20Nocturnes%3B%20Jeux%20etc/2-01%20Children's%20Corner%20Suite%20(orch.%20Andre%CC%81%20Caplet)%20(1998%20Digital%20Remaster)_%201.%20Doctor%20Gradus%20ad%20Parnassum.m4a + File Folder Count4 + Library Folder Count1 + + 9552 + + Track ID9552 + NameChildren's Corner Suite (orch. André Caplet) (1998 Digital Remaster): 2. Jimbo's lullaby + ArtistJean Martinon: Orchestre National De L'ORTF + AlbumDebussy: La mer; Images for Orchestra; Trois Nocturnes; Jeux etc + GenreClassical + KindAAC audio file + Size8226875 + Total Time237706 + Disc Number2 + Disc Count2 + Track Number2 + Track Count12 + Year2011 + Date Modified2011-10-15T13:39:02Z + Date Added2011-10-15T13:29:02Z + Bit Rate256 + Sample Rate44100 + Normalization302 + Artwork Count1 + Persistent ID23EC01480964D48F + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jean%20Martinon_%20Orchestre%20National%20De%20L'ORTF/Debussy_%20La%20mer%3B%20Images%20for%20Orchestra%3B%20Trois%20Nocturnes%3B%20Jeux%20etc/2-02%20Children's%20Corner%20Suite%20(orch.%20Andre%CC%81%20Caplet)%20(1998%20Digital%20Remaster)_%202.%20Jimbo's%20lullaby.m4a + File Folder Count4 + Library Folder Count1 + + 9554 + + Track ID9554 + NameChildren's Corner Suite (orch. André Caplet) (1998 Digital Remaster): 3. Serenade for the doll + ArtistJean Martinon: Orchestre National De L'ORTF + AlbumDebussy: La mer; Images for Orchestra; Trois Nocturnes; Jeux etc + GenreClassical + KindAAC audio file + Size5848021 + Total Time166693 + Disc Number2 + Disc Count2 + Track Number3 + Track Count12 + Year2011 + Date Modified2011-10-15T13:39:03Z + Date Added2011-10-15T13:29:43Z + Bit Rate256 + Sample Rate44100 + Normalization369 + Artwork Count1 + Persistent IDCB261CC993304F5B + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jean%20Martinon_%20Orchestre%20National%20De%20L'ORTF/Debussy_%20La%20mer%3B%20Images%20for%20Orchestra%3B%20Trois%20Nocturnes%3B%20Jeux%20etc/2-03%20Children's%20Corner%20Suite%20(orch.%20Andre%CC%81%20Caplet)%20(1998%20Digital%20Remaster)_%203.%20Serenade%20for%20the%20doll.m4a + File Folder Count4 + Library Folder Count1 + + 9556 + + Track ID9556 + NameChildren's Corner Suite (orch. André Caplet) (1998 Digital Remaster): 4. The snow is dancing + ArtistJean Martinon: Orchestre National De L'ORTF + AlbumDebussy: La mer; Images for Orchestra; Trois Nocturnes; Jeux etc + GenreClassical + KindAAC audio file + Size6328854 + Total Time177066 + Disc Number2 + Disc Count2 + Track Number4 + Track Count12 + Year2011 + Date Modified2011-10-15T13:39:03Z + Date Added2011-10-15T13:30:09Z + Bit Rate256 + Sample Rate44100 + Normalization313 + Artwork Count1 + Persistent ID59339CA0233E8D16 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jean%20Martinon_%20Orchestre%20National%20De%20L'ORTF/Debussy_%20La%20mer%3B%20Images%20for%20Orchestra%3B%20Trois%20Nocturnes%3B%20Jeux%20etc/2-04%20Children's%20Corner%20Suite%20(orch.%20Andre%CC%81%20Caplet)%20(1998%20Digital%20Remaster)_%204.%20The%20snow%20is%20dancing.m4a + File Folder Count4 + Library Folder Count1 + + 9558 + + Track ID9558 + NameChildren's Corner Suite (orch. André Caplet) (1998 Digital Remaster): 5. The little shepherd + ArtistJean Martinon: Orchestre National De L'ORTF + AlbumDebussy: La mer; Images for Orchestra; Trois Nocturnes; Jeux etc + GenreClassical + KindAAC audio file + Size5775025 + Total Time166333 + Disc Number2 + Disc Count2 + Track Number5 + Track Count12 + Year2011 + Date Modified2011-10-15T13:39:04Z + Date Added2011-10-15T13:30:36Z + Bit Rate256 + Sample Rate44100 + Normalization117 + Artwork Count1 + Persistent ID8123E45F48DA29BC + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jean%20Martinon_%20Orchestre%20National%20De%20L'ORTF/Debussy_%20La%20mer%3B%20Images%20for%20Orchestra%3B%20Trois%20Nocturnes%3B%20Jeux%20etc/2-05%20Children's%20Corner%20Suite%20(orch.%20Andre%CC%81%20Caplet)%20(1998%20Digital%20Remaster)_%205.%20The%20little%20shepherd.m4a + File Folder Count4 + Library Folder Count1 + + 9560 + + Track ID9560 + NameChildren's Corner Suite (orch. André Caplet) (1998 Digital Remaster): 6. Golliwogg's cakewalk + ArtistJean Martinon: Orchestre National De L'ORTF + AlbumDebussy: La mer; Images for Orchestra; Trois Nocturnes; Jeux etc + GenreClassical + KindAAC audio file + Size5979494 + Total Time173613 + Disc Number2 + Disc Count2 + Track Number6 + Track Count12 + Year2011 + Date Modified2011-10-15T13:39:05Z + Date Added2011-10-15T13:31:00Z + Bit Rate256 + Sample Rate44100 + Normalization772 + Artwork Count1 + Persistent IDFC71A2737A2C9004 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jean%20Martinon_%20Orchestre%20National%20De%20L'ORTF/Debussy_%20La%20mer%3B%20Images%20for%20Orchestra%3B%20Trois%20Nocturnes%3B%20Jeux%20etc/2-06%20Children's%20Corner%20Suite%20(orch.%20Andre%CC%81%20Caplet)%20(1998%20Digital%20Remaster)_%206.%20Golliwogg's%20cakewalk.m4a + File Folder Count4 + Library Folder Count1 + + 9562 + + Track ID9562 + NamePrintemps, Suite Symphonique : I Modéré + ArtistMichel Plasson - Martine Laure - Philippe Alegre - Orchestre Du Capitole De Toulouse + AlbumDebussy: La mer; Images for Orchestra; Trois Nocturnes; Jeux etc + GenreClassical + KindAAC audio file + Size18839950 + Total Time569746 + Disc Number2 + Disc Count2 + Track Number7 + Track Count12 + Year2011 + Date Modified2011-10-15T13:39:11Z + Date Added2011-10-15T13:31:24Z + Bit Rate256 + Sample Rate44100 + Normalization380 + Artwork Count1 + Persistent IDA8B9448F661F422C + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Michel%20Plasson%20-%20Martine%20Laure%20-%20Philippe%20Alegre%20-%20Orchestre%20Du%20Capitole%20De%20Toulouse/Debussy_%20La%20mer%3B%20Images%20for%20Orchestra%3B%20Trois%20Nocturnes%3B%20Jeux%20etc/2-07%20Printemps,%20Suite%20Symphonique%20_%20I%20Mode%CC%81re%CC%81.m4a + File Folder Count4 + Library Folder Count1 + + 9564 + + Track ID9564 + NamePrintemps, Suite Symphonique : II Modéré + ArtistMichel Plasson - Martine Laure - Philippe Alegre - Orchestre Du Capitole De Toulouse + AlbumDebussy: La mer; Images for Orchestra; Trois Nocturnes; Jeux etc + GenreClassical + KindAAC audio file + Size12365237 + Total Time372413 + Disc Number2 + Disc Count2 + Track Number8 + Track Count12 + Year2011 + Date Modified2011-10-15T13:39:12Z + Date Added2011-10-15T13:32:35Z + Bit Rate256 + Sample Rate44100 + Normalization794 + Artwork Count1 + Persistent ID35F746B62CC24282 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Michel%20Plasson%20-%20Martine%20Laure%20-%20Philippe%20Alegre%20-%20Orchestre%20Du%20Capitole%20De%20Toulouse/Debussy_%20La%20mer%3B%20Images%20for%20Orchestra%3B%20Trois%20Nocturnes%3B%20Jeux%20etc/2-08%20Printemps,%20Suite%20Symphonique%20_%20II%20Mode%CC%81re%CC%81.m4a + File Folder Count4 + Library Folder Count1 + + 9566 + + Track ID9566 + NameNocturnes (2004 Digital Remaster): I. Nuages + ArtistCarlo Maria Giulini: Philharmonia Orchestra + AlbumDebussy: La mer; Images for Orchestra; Trois Nocturnes; Jeux etc + GenreClassical + KindAAC audio file + Size18495368 + Total Time525906 + Disc Number2 + Disc Count2 + Track Number9 + Track Count12 + Year2011 + Date Modified2011-10-15T13:38:54Z + Date Added2011-10-15T13:33:18Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3408273286 + Play Date UTC2012-01-01T09:04:46Z + Normalization262 + Artwork Count1 + Persistent IDC9F619519D2F4231 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Carlo%20Maria%20Giulini_%20Philharmonia%20Orchestra/Debussy_%20La%20mer%3B%20Images%20for%20Orchestra%3B%20Trois%20Nocturnes%3B%20Jeux%20etc/2-09%20Nocturnes%20(2004%20Digital%20Remaster)_%20I.%20Nuages.m4a + File Folder Count4 + Library Folder Count1 + + 9568 + + Track ID9568 + NameNocturnes (2004 Digital Remaster): II. Fêtes + ArtistCarlo Maria Giulini: Philharmonia Orchestra + ComposerClaude Debussy + AlbumDebussy: La mer; Images for Orchestra; Trois Nocturnes; Jeux etc + GenreClassical + KindAAC audio file + Size13299641 + Total Time373386 + Disc Number2 + Disc Count2 + Track Number10 + Track Count12 + Year2011 + Date Modified2011-10-15T13:38:55Z + Date Added2011-10-15T13:34:14Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3408273659 + Play Date UTC2012-01-01T09:10:59Z + Normalization1658 + Artwork Count1 + Persistent ID3A9E3AD358BAA9E1 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Carlo%20Maria%20Giulini_%20Philharmonia%20Orchestra/Debussy_%20La%20mer%3B%20Images%20for%20Orchestra%3B%20Trois%20Nocturnes%3B%20Jeux%20etc/2-10%20Nocturnes%20(2004%20Digital%20Remaster)_%20II.%20Fe%CC%82tes.m4a + File Folder Count4 + Library Folder Count1 + + 9570 + + Track ID9570 + NameNocturnes (2004 Digital Remaster): III. Sirènes (with women's choir) + ArtistCarlo Maria Giulini: Philharmonia Orchestra + AlbumDebussy: La mer; Images for Orchestra; Trois Nocturnes; Jeux etc + GenreClassical + KindAAC audio file + Size24195941 + Total Time689560 + Disc Number2 + Disc Count2 + Track Number11 + Track Count12 + Year2011 + Date Modified2011-10-15T13:38:56Z + Date Added2011-10-15T13:34:52Z + Bit Rate256 + Sample Rate44100 + Normalization934 + Artwork Count1 + Persistent ID89B39F001929236F + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Carlo%20Maria%20Giulini_%20Philharmonia%20Orchestra/Debussy_%20La%20mer%3B%20Images%20for%20Orchestra%3B%20Trois%20Nocturnes%3B%20Jeux%20etc/2-11%20Nocturnes%20(2004%20Digital%20Remaster)_%20III.%20Sire%CC%80nes%20(with%20women's%20choir).m4a + File Folder Count4 + Library Folder Count1 + + 9572 + + Track ID9572 + NameJeux (Poème dansé) (1998 Digital Remaster) + ArtistOrchestre National De l'O.R.T.F./Jean Martinon + AlbumDebussy: La mer; Images for Orchestra; Trois Nocturnes; Jeux etc + GenreClassical + KindAAC audio file + Size39486005 + Total Time1096280 + Disc Number2 + Disc Count2 + Track Number12 + Track Count12 + Year2011 + Date Modified2011-10-15T13:39:13Z + Date Added2011-10-15T13:35:57Z + Bit Rate256 + Sample Rate44100 + Normalization1219 + Artwork Count1 + Persistent IDDC3154C11569A34C + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Orchestre%20National%20De%20l'O.R.T.F._Jean%20Martinon/Debussy_%20La%20mer%3B%20Images%20for%20Orchestra%3B%20Trois%20Nocturnes%3B%20Jeux%20etc/2-12%20Jeux%20(Poe%CC%80me%20danse%CC%81)%20(1998%20Digital%20Remaster).m4a + File Folder Count4 + Library Folder Count1 + + 9574 + + Track ID9574 + NameBach: Lute Suite In E, BWV 1006A - Gavotte En Rondeau + ArtistSharon Isbin + ComposerJohann Sebastian Bach + Album50 Best Guitar [Disc 1] + GenreClassical + KindAAC audio file + Size6393595 + Total Time192026 + Disc Number1 + Disc Count3 + Track Number1 + Track Count21 + Year1990 + Date Modified2011-10-15T14:05:10Z + Date Added2011-10-15T13:42:12Z + Bit Rate256 + Sample Rate44100 + Play Count2 + Play Date3403633825 + Play Date UTC2011-11-08T16:20:25Z + Skip Count1 + Skip Date2011-11-01T15:32:55Z + Rating20 + Rating Computed + Album Rating20 + Normalization1255 + Compilation + Artwork Count1 + Persistent ID4A93E3AF0C8635CC + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%201%5D/1-01%20Bach_%20Lute%20Suite%20In%20E,%20BWV%201006A%20-%20Gavotte%20En%20Rondeau.m4a + File Folder Count4 + Library Folder Count1 + + 9576 + + Track ID9576 + NameDowland: Allemande + ArtistChristopher Parkening + ComposerJohn Dowland + Album50 Best Guitar [Disc 1] + GenreClassical + KindAAC audio file + Size3305527 + Total Time98866 + Disc Number1 + Disc Count3 + Track Number2 + Track Count21 + Year1986 + Date Modified2011-10-15T14:05:11Z + Date Added2011-10-15T13:42:30Z + Bit Rate256 + Sample Rate44100 + Play Count12 + Play Date3403632718 + Play Date UTC2011-11-08T16:01:58Z + Skip Count2 + Skip Date2011-12-16T13:49:14Z + Rating20 + Rating Computed + Album Rating20 + Normalization660 + Compilation + Artwork Count1 + Persistent ID071A7C2BDA9AEC17 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%201%5D/1-02%20Dowland_%20Allemande.m4a + File Folder Count4 + Library Folder Count1 + + 9578 + + Track ID9578 + NameBach: Prelude, Fugue & Allegro In E Flat, BWV 998 - Prelude + ArtistManuel Barrueco + ComposerJohann Sebastian Bach + Album50 Best Guitar [Disc 1] + GenreClassical + KindAAC audio file + Size5047251 + Total Time153880 + Disc Number1 + Disc Count3 + Track Number3 + Track Count21 + Year1990 + Date Modified2011-10-15T14:05:12Z + Date Added2011-10-15T13:42:39Z + Bit Rate256 + Sample Rate44100 + Play Count4 + Play Date3403631707 + Play Date UTC2011-11-08T15:45:07Z + Rating20 + Rating Computed + Album Rating20 + Normalization342 + Compilation + Artwork Count1 + Persistent ID7FAF9AF82B874342 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%201%5D/1-03%20Bach_%20Prelude,%20Fugue%20&%20Allegro%20In%20E%20Flat,%20BWV%20998%20-%20Prelude.m4a + File Folder Count4 + Library Folder Count1 + + 9580 + + Track ID9580 + NameBach: Violin Partita #2 In D Minor, BWV 1004 - Gigue (Guitar Version) + ArtistManuel Barrueco + ComposerJohann Sebastian Bach + Album50 Best Guitar [Disc 1] + GenreClassical + KindAAC audio file + Size9717257 + Total Time294466 + Disc Number1 + Disc Count3 + Track Number4 + Track Count21 + Year1990 + Date Modified2011-10-15T14:05:13Z + Date Added2011-10-15T13:42:52Z + Bit Rate256 + Sample Rate44100 + Play Count2 + Play Date3403634260 + Play Date UTC2011-11-08T16:27:40Z + Rating20 + Rating Computed + Album Rating20 + Normalization423 + Compilation + Artwork Count1 + Persistent ID96D29144E660CCE2 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%201%5D/1-04%20Bach_%20Violin%20Partita%20%232%20In%20D%20Minor,%20BWV%201004%20-%20Gigue%20(Guitar%20Version).m4a + File Folder Count4 + Library Folder Count1 + + 9582 + + Track ID9582 + NameFroberger: Gigue + ArtistAndrés Segovia + ComposerJohann Froberger + Album50 Best Guitar [Disc 1] + GenreClassical + KindAAC audio file + Size2853943 + Total Time101266 + Disc Number1 + Disc Count3 + Track Number5 + Track Count21 + Year1991 + Date Modified2011-10-15T14:05:14Z + Date Added2011-10-15T13:43:15Z + Bit Rate256 + Sample Rate44100 + Play Count5 + Play Date3403631924 + Play Date UTC2011-11-08T15:48:44Z + Rating20 + Rating Computed + Album Rating20 + Normalization1254 + Compilation + Artwork Count1 + Persistent ID80C2D98999E89AE2 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%201%5D/1-05%20Froberger_%20Gigue.m4a + File Folder Count4 + Library Folder Count1 + + 9584 + + Track ID9584 + NameBach: Jesu, Joy Of Man's Desiring + ArtistChristopher Parkening: Los Angeles Chamber Orchestra + ComposerJohann Sebastian Bach + Album50 Best Guitar [Disc 1] + GenreClassical + KindAAC audio file + Size6449488 + Total Time193306 + Disc Number1 + Disc Count3 + Track Number6 + Track Count21 + Year1985 + Date Modified2011-10-15T14:05:15Z + Date Added2011-10-15T13:43:23Z + Bit Rate256 + Sample Rate44100 + Play Count2 + Play Date3403635515 + Play Date UTC2011-11-08T16:48:35Z + Rating20 + Rating Computed + Album Rating20 + Normalization790 + Compilation + Artwork Count1 + Persistent ID5DA9E3D025CE9A15 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%201%5D/1-06%20Bach_%20Jesu,%20Joy%20Of%20Man's%20Desiring.m4a + File Folder Count4 + Library Folder Count1 + + 9586 + + Track ID9586 + NameVivaldi: Guitar Concerto In D, RV 93 - 2. Largo + ArtistChristopher Parkening; Iona Brown: Academy Of St. Martin In The Fields + ComposerAntonio Vivaldi + Album50 Best Guitar [Disc 1] + GenreClassical + KindAAC audio file + Size9505382 + Total Time277746 + Disc Number1 + Disc Count3 + Track Number7 + Track Count21 + Year1994 + Date Modified2011-10-15T14:05:16Z + Date Added2011-10-15T13:43:37Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3403633264 + Play Date UTC2011-11-08T16:11:04Z + Rating20 + Rating Computed + Album Rating20 + Normalization427 + Compilation + Artwork Count1 + Persistent ID520775452292A7AA + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%201%5D/1-07%20Vivaldi_%20Guitar%20Concerto%20In%20D,%20RV%2093%20-%202.%20Largo.m4a + File Folder Count4 + Library Folder Count1 + + 9588 + + Track ID9588 + NameVisée: Suite #11 B Minor + ArtistManuel Barrueco + ComposerRobert De Visée + Album50 Best Guitar [Disc 1] + GenreClassical + KindAAC audio file + Size8880536 + Total Time268626 + Disc Number1 + Disc Count3 + Track Number8 + Track Count21 + Year1990 + Date Modified2011-10-15T14:05:17Z + Date Added2011-10-15T13:43:55Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3403632986 + Play Date UTC2011-11-08T16:06:26Z + Rating20 + Rating Computed + Album Rating20 + Normalization943 + Compilation + Artwork Count1 + Persistent ID4FC3EFA9A1DEB877 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%201%5D/1-08%20Vise%CC%81e_%20Suite%20%2311%20B%20Minor.m4a + File Folder Count4 + Library Folder Count1 + + 9590 + + Track ID9590 + NameCapirola: O Mia Cieca E Dura Sorte + ArtistAnthony Bailes + ComposerVincenzo Capirola + Album50 Best Guitar [Disc 1] + GenreClassical + KindAAC audio file + Size4694443 + Total Time141240 + Disc Number1 + Disc Count3 + Track Number9 + Track Count21 + Year1984 + Date Modified2011-10-15T14:05:17Z + Date Added2011-10-15T13:44:12Z + Bit Rate256 + Sample Rate44100 + Play Count2 + Play Date3403633966 + Play Date UTC2011-11-08T16:22:46Z + Skip Count1 + Skip Date2011-12-16T13:49:18Z + Rating20 + Rating Computed + Album Rating20 + Normalization1202 + Compilation + Artwork Count1 + Persistent ID4F99E79CFE9AAC07 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%201%5D/1-09%20Capirola_%20O%20Mia%20Cieca%20E%20Dura%20Sorte.m4a + File Folder Count4 + Library Folder Count1 + + 9592 + + Track ID9592 + NameScarlatti (D): Harpsichord Sonata In E, K 380 + ArtistJulian Byzantine + ComposerDomenico Scarlatti + Album50 Best Guitar [Disc 1] + GenreClassical + KindAAC audio file + Size12893034 + Total Time368746 + Disc Number1 + Disc Count3 + Track Number10 + Track Count21 + Year1985 + Date Modified2011-10-15T14:05:18Z + Date Added2011-10-15T13:44:21Z + Bit Rate256 + Sample Rate44100 + Play Count3 + Play Date3403634629 + Play Date UTC2011-11-08T16:33:49Z + Rating20 + Rating Computed + Album Rating20 + Normalization1255 + Compilation + Artwork Count1 + Persistent IDA88755F5BCE0BA54 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%201%5D/1-10%20Scarlatti%20(D)_%20Harpsichord%20Sonata%20In%20E,%20K%20380.m4a + File Folder Count4 + Library Folder Count1 + + 9594 + + Track ID9594 + NameHolborne: Countess Of Pembroke's Paradise (Pavan #15) + ArtistAnthony Bailes + ComposerAnthony Holborne + Album50 Best Guitar [Disc 1] + GenreClassical + KindAAC audio file + Size7730261 + Total Time233240 + Disc Number1 + Disc Count3 + Track Number11 + Track Count21 + Year1984 + Date Modified2011-10-15T14:05:19Z + Date Added2011-10-15T13:44:42Z + Bit Rate256 + Sample Rate44100 + Play Count4 + Play Date3403634862 + Play Date UTC2011-11-08T16:37:42Z + Skip Count1 + Skip Date2011-12-16T13:49:22Z + Rating20 + Rating Computed + Album Rating20 + Normalization1256 + Compilation + Artwork Count1 + Persistent ID9C455E36C22135EA + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%201%5D/1-11%20Holborne_%20Countess%20Of%20Pembroke's%20Paradise%20(Pavan%20%2315).m4a + File Folder Count4 + Library Folder Count1 + + 9596 + + Track ID9596 + NameHolborne: Heigh Ho Holiday (Galliard #13) + ArtistAnthony Bailes + ComposerAnthony Holborne + Album50 Best Guitar [Disc 1] + GenreClassical + KindAAC audio file + Size2821900 + Total Time86466 + Disc Number1 + Disc Count3 + Track Number12 + Track Count21 + Year1984 + Date Modified2011-10-15T14:05:19Z + Date Added2011-10-15T13:44:55Z + Bit Rate256 + Sample Rate44100 + Play Count3 + Play Date3403632276 + Play Date UTC2011-11-08T15:54:36Z + Rating20 + Rating Computed + Album Rating20 + Normalization1256 + Compilation + Artwork Count1 + Persistent ID156DE2C48BD6BA65 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%201%5D/1-12%20Holborne_%20Heigh%20Ho%20Holiday%20(Galliard%20%2313).m4a + File Folder Count4 + Library Folder Count1 + + 9598 + + Track ID9598 + NameNarváez: Variations On "Guardam Las Vacas" + ArtistOscar Ghiglia + ComposerLuis De Narváez + Album50 Best Guitar [Disc 1] + GenreClassical + KindAAC audio file + Size6282548 + Total Time185520 + Disc Number1 + Disc Count3 + Track Number13 + Track Count21 + Year1968 + Date Modified2011-10-15T14:05:20Z + Date Added2011-10-15T13:45:00Z + Bit Rate256 + Sample Rate44100 + Play Count4 + Play Date3403635700 + Play Date UTC2011-11-08T16:51:40Z + Rating20 + Rating Computed + Album Rating20 + Normalization523 + Compilation + Artwork Count1 + Persistent ID18545998B3B20EB1 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%201%5D/1-13%20Narva%CC%81ez_%20Variations%20On%20_Guardam%20Las%20Vacas_.m4a + File Folder Count4 + Library Folder Count1 + + 9600 + + Track ID9600 + NameGaultier: Piece In G For Guitar + ArtistAnthony Bailes + ComposerDenis Gaultier + Album50 Best Guitar [Disc 1] + GenreClassical + KindAAC audio file + Size12174757 + Total Time368413 + Disc Number1 + Disc Count3 + Track Number14 + Track Count21 + Year1977 + Date Modified2011-10-15T14:05:21Z + Date Added2011-10-15T13:45:10Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3403633633 + Play Date UTC2011-11-08T16:17:13Z + Rating20 + Rating Computed + Album Rating20 + Normalization1149 + Compilation + Artwork Count1 + Persistent ID3E4A86648C5D1CA4 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%201%5D/1-14%20Gaultier_%20Piece%20In%20G%20For%20Guitar.m4a + File Folder Count4 + Library Folder Count1 + + 9602 + + Track ID9602 + NamePraetorius: Terpischore - Suite In D: Courante, Ballet, Volte + ArtistChristopher Parkening; Iona Brown: Academy Of St. Martin In The Fields + ComposerMichael Praetorius + Album50 Best Guitar [Disc 1] + GenreClassical + KindAAC audio file + Size11254121 + Total Time343200 + Disc Number1 + Disc Count3 + Track Number15 + Track Count21 + Year1994 + Date Modified2011-10-15T14:05:21Z + Date Added2011-10-15T13:45:29Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3403632619 + Play Date UTC2011-11-08T16:00:19Z + Rating20 + Rating Computed + Album Rating20 + Normalization1256 + Compilation + Artwork Count1 + Persistent ID18B8ADA4459DE3BA + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%201%5D/1-15%20Praetorius_%20Terpischore%20-%20Suite%20In%20D_%20Courante,%20Ballet,%20Volte.m4a + File Folder Count4 + Library Folder Count1 + + 9604 + + Track ID9604 + NameBach: Cantata #169, BWV 169, "Gott Soll Allein Mein Herze Haben" - God Alone Should Have My Heart + ArtistChristopher Parkening; Paul Shure: Los Angeles Chamber Orchestra + ComposerJohann Sebastian Bach + Album50 Best Guitar [Disc 1] + GenreClassical + KindAAC audio file + Size6516886 + Total Time196880 + Disc Number1 + Disc Count3 + Track Number16 + Track Count21 + Year1985 + Date Modified2011-10-15T14:05:22Z + Date Added2011-10-15T13:45:45Z + Bit Rate256 + Sample Rate44100 + Play Count3 + Play Date3403635322 + Play Date UTC2011-11-08T16:45:22Z + Rating20 + Rating Computed + Album Rating20 + Normalization1256 + Compilation + Artwork Count1 + Persistent ID54927B88236C1186 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%201%5D/1-16%20Bach_%20Cantata%20%23169,%20BWV%20169,%20_Gott%20Soll%20Allein%20Mein%20Herze%20Haben_%20-%20God%20Alone%20Should%20Have%20My%20Heart.m4a + File Folder Count4 + Library Folder Count1 + + 9606 + + Track ID9606 + NameMouton: Suite In F Sharp Minor - La Belle Iris (Allemande) + ArtistAnthony Bailes + ComposerJean Mouton + Album50 Best Guitar [Disc 1] + GenreClassical + KindAAC audio file + Size8809029 + Total Time265426 + Disc Number1 + Disc Count3 + Track Number17 + Track Count21 + Year1977 + Date Modified2011-10-15T14:05:23Z + Date Added2011-10-15T13:45:55Z + Bit Rate256 + Sample Rate44100 + Play Count2 + Play Date3403632189 + Play Date UTC2011-11-08T15:53:09Z + Rating20 + Rating Computed + Album Rating20 + Normalization794 + Compilation + Artwork Count1 + Persistent ID793C1AB1693E866D + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%201%5D/1-17%20Mouton_%20Suite%20In%20F%20Sharp%20Minor%20-%20La%20Belle%20Iris%20(Allemande).m4a + File Folder Count4 + Library Folder Count1 + + 9608 + + Track ID9608 + NameVallet: Carillon De Village + ArtistAnthony Bailes + ComposerNicolas Vallet + Album50 Best Guitar [Disc 1] + GenreClassical + KindAAC audio file + Size3785370 + Total Time115773 + Disc Number1 + Disc Count3 + Track Number18 + Track Count21 + Year1984 + Date Modified2011-10-15T14:05:24Z + Date Added2011-10-15T13:46:07Z + Bit Rate256 + Sample Rate44100 + Play Count2 + Play Date3403631823 + Play Date UTC2011-11-08T15:47:03Z + Rating20 + Rating Computed + Album Rating20 + Normalization872 + Compilation + Artwork Count1 + Persistent IDD6A3A5E4B7E6A5A8 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%201%5D/1-18%20Vallet_%20Carillon%20De%20Village.m4a + File Folder Count4 + Library Folder Count1 + + 9610 + + Track ID9610 + NameScarlatti (D): Harpsichord Sonata In A, K 322 + ArtistJulian Byzantine + ComposerDomenico Scarlatti + Album50 Best Guitar [Disc 1] + GenreClassical + KindAAC audio file + Size7708787 + Total Time222026 + Disc Number1 + Disc Count3 + Track Number19 + Track Count21 + Year1985 + Date Modified2011-10-15T14:05:24Z + Date Added2011-10-15T13:46:13Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3403631553 + Play Date UTC2011-11-08T15:42:33Z + Rating20 + Rating Computed + Album Rating20 + Normalization1256 + Compilation + Artwork Count1 + Persistent IDB23501956AB063BF + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%201%5D/1-19%20Scarlatti%20(D)_%20Harpsichord%20Sonata%20In%20A,%20K%20322.m4a + File Folder Count4 + Library Folder Count1 + + 9612 + + Track ID9612 + NameWeiss: Fantasie + ArtistJulian Byzantine + ComposerSilvius Leopold Weiss + Album50 Best Guitar [Disc 1] + GenreClassical + KindAAC audio file + Size5325268 + Total Time152880 + Disc Number1 + Disc Count3 + Track Number20 + Track Count21 + Year1985 + Date Modified2011-10-15T14:05:25Z + Date Added2011-10-15T13:46:23Z + Bit Rate256 + Sample Rate44100 + Play Count2 + Play Date3403631331 + Play Date UTC2011-11-08T15:38:51Z + Rating20 + Rating Computed + Album Rating20 + Normalization1257 + Compilation + Artwork Count1 + Persistent ID08C53E8F98EED6FA + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%201%5D/1-20%20Weiss_%20Fantasie.m4a + File Folder Count4 + Library Folder Count1 + + 9614 + + Track ID9614 + NameVivaldi: Mandolin Concerto In C, RV 425 - 3. Allegro + ArtistChristopher Parkening; Iona Brown: Academy Of St. Martin In The Fields + ComposerAntonio Vivaldi + Album50 Best Guitar [Disc 1] + GenreClassical + KindAAC audio file + Size8930612 + Total Time262280 + Disc Number1 + Disc Count3 + Track Number21 + Track Count21 + Year1984 + Date Modified2011-10-15T14:05:26Z + Date Added2011-10-15T13:46:29Z + Bit Rate256 + Sample Rate44100 + Play Count2 + Play Date3403635125 + Play Date UTC2011-11-08T16:42:05Z + Skip Count1 + Skip Date2011-12-16T13:49:27Z + Rating20 + Rating Computed + Album Rating20 + Normalization1256 + Compilation + Artwork Count1 + Persistent ID407DA7D7BADEC952 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%201%5D/1-21%20Vivaldi_%20Mandolin%20Concerto%20In%20C,%20RV%20425%20-%203.%20Allegro.m4a + File Folder Count4 + Library Folder Count1 + + 9616 + + Track ID9616 + NameSanz: Suite Española - La Miñona De Cataluña + ArtistChristopher Parkening + ComposerGaspar Sanz + Album50 Best Guitar [Disc 2] + GenreClassical + KindAAC audio file + Size2758953 + Total Time84333 + Disc Number2 + Disc Count6 + Track Number1 + Track Count16 + Year1991 + Date Modified2011-10-19T01:54:46Z + Date Added2011-10-15T13:47:35Z + Bit Rate256 + Sample Rate44100 + Normalization1256 + Compilation + Artwork Count1 + Persistent ID827B54921545152D + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%202%5D/2-01%20Sanz_%20Suite%20Espan%CC%83ola%20-%20La%20Min%CC%83ona%20De%20Catalun%CC%83a.m4a + File Folder Count4 + Library Folder Count1 + + 9618 + + Track ID9618 + NameSor: Variations On A Theme Of Mozart + ArtistChristopher Parkening + ComposerFernando Sor + Album50 Best Guitar [Disc 2] + GenreClassical + KindAAC audio file + Size15088853 + Total Time457773 + Disc Number2 + Disc Count6 + Track Number2 + Track Count16 + Year1991 + Date Modified2011-10-19T01:54:47Z + Date Added2011-10-15T13:47:52Z + Bit Rate256 + Sample Rate44100 + Play Count3 + Play Date3401996456 + Play Date UTC2011-10-20T17:30:56Z + Normalization1255 + Compilation + Artwork Count1 + Persistent ID75BC9C6717F0C427 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%202%5D/2-02%20Sor_%20Variations%20On%20A%20Theme%20Of%20Mozart.m4a + File Folder Count4 + Library Folder Count1 + + 9620 + + Track ID9620 + NameSor: Grand Solo In D, Op. 14 + ArtistManuel Barrueco + ComposerFernando Sor + Album50 Best Guitar [Disc 2] + GenreClassical + KindAAC audio file + Size17687257 + Total Time530346 + Disc Number2 + Disc Count6 + Track Number3 + Track Count16 + Year1988 + Date Modified2011-10-19T01:54:48Z + Date Added2011-10-15T13:49:09Z + Bit Rate256 + Sample Rate44100 + Play Count2 + Play Date3401734995 + Play Date UTC2011-10-17T16:53:15Z + Normalization1256 + Compilation + Artwork Count1 + Persistent ID3081BBA4F914694F + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%202%5D/2-03%20Sor_%20Grand%20Solo%20In%20D,%20Op.%2014.m4a + File Folder Count4 + Library Folder Count1 + + 9622 + + Track ID9622 + NameAlbéniz: Suite Española #1, Op. 47 - Granada + ArtistAndrés Segovia + ComposerIsaac Albéniz + Album50 Best Guitar [Disc 2] + GenreClassical + KindAAC audio file + Size8659589 + Total Time261200 + Disc Number2 + Disc Count6 + Track Number4 + Track Count16 + Year1939 + Date Modified2011-10-19T01:54:49Z + Date Added2011-10-15T13:50:25Z + Bit Rate256 + Sample Rate44100 + Normalization928 + Compilation + Artwork Count1 + Persistent ID113F48E17800B85B + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%202%5D/2-04%20Albe%CC%81niz_%20Suite%20Espan%CC%83ola%20%231,%20Op.%2047%20-%20Granada.m4a + File Folder Count4 + Library Folder Count1 + + 9624 + + Track ID9624 + NameAlbéniz: Suite Española #1, Op. 47 - Sevilla + ArtistAndrés Segovia + ComposerIsaac Albéniz + Album50 Best Guitar [Disc 2] + GenreClassical + KindAAC audio file + Size8525485 + Total Time258320 + Disc Number2 + Disc Count6 + Track Number5 + Track Count16 + Year1939 + Date Modified2011-10-19T01:54:49Z + Date Added2011-10-15T13:50:59Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3401735678 + Play Date UTC2011-10-17T17:04:38Z + Normalization804 + Compilation + Artwork Count1 + Persistent IDDE2855EC1EAD3C30 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%202%5D/2-05%20Albe%CC%81niz_%20Suite%20Espan%CC%83ola%20%231,%20Op.%2047%20-%20Sevilla.m4a + File Folder Count4 + Library Folder Count1 + + 9626 + + Track ID9626 + NameTárrega: Capricho Arabe + ArtistWulfin Lieske + ComposerFrancisco Tárrega + Album50 Best Guitar [Disc 2] + GenreClassical + KindAAC audio file + Size10535994 + Total Time317586 + Disc Number2 + Disc Count6 + Track Number6 + Track Count16 + Year1992 + Date Modified2011-10-19T01:54:50Z + Date Added2011-10-15T13:51:31Z + Bit Rate256 + Sample Rate44100 + Play Count5 + Play Date3403628968 + Play Date UTC2011-11-08T14:59:28Z + Skip Count1 + Skip Date2011-10-27T09:50:15Z + Normalization793 + Compilation + Artwork Count1 + Persistent ID740BF28B57B89182 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%202%5D/2-06%20Ta%CC%81rrega_%20Capricho%20Arabe.m4a + File Folder Count4 + Library Folder Count1 + + 9628 + + Track ID9628 + NameTárrega: Lágrima + ArtistWulfin Lieske + ComposerFrancisco Tárrega + Album50 Best Guitar [Disc 2] + GenreClassical + KindAAC audio file + Size3344345 + Total Time101160 + Disc Number2 + Disc Count6 + Track Number7 + Track Count16 + Year1992 + Date Modified2011-10-19T01:54:50Z + Date Added2011-10-15T13:52:08Z + Bit Rate256 + Sample Rate44100 + Play Count5 + Play Date3406907718 + Play Date UTC2011-12-16T13:45:18Z + Normalization382 + Compilation + Artwork Count1 + Persistent ID1ACD6A7578429845 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%202%5D/2-07%20Ta%CC%81rrega_%20La%CC%81grima.m4a + File Folder Count4 + Library Folder Count1 + + 9630 + + Track ID9630 + NameTárrega: Maria + ArtistWulfin Lieske + ComposerFrancisco Tárrega + Album50 Best Guitar [Disc 2] + GenreClassical + KindAAC audio file + Size3189118 + Total Time96560 + Disc Number2 + Disc Count6 + Track Number8 + Track Count16 + Year1992 + Date Modified2011-10-19T01:54:50Z + Date Added2011-10-15T13:52:19Z + Bit Rate256 + Sample Rate44100 + Play Count6 + Play Date3402574240 + Play Date UTC2011-10-27T10:00:40Z + Normalization792 + Compilation + Artwork Count1 + Persistent ID591D962744FF40DE + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%202%5D/2-08%20Ta%CC%81rrega_%20Maria.m4a + File Folder Count4 + Library Folder Count1 + + 9632 + + Track ID9632 + NameTárrega: Mazurken + ArtistWulfin Lieske + ComposerFrancisco Tárrega + Album50 Best Guitar [Disc 2] + GenreClassical + KindAAC audio file + Size3568255 + Total Time107573 + Disc Number2 + Disc Count6 + Track Number9 + Track Count16 + Year1992 + Date Modified2011-10-19T01:54:51Z + Date Added2011-10-15T13:52:30Z + Bit Rate256 + Sample Rate44100 + Play Count3 + Play Date3401995740 + Play Date UTC2011-10-20T17:19:00Z + Normalization315 + Compilation + Artwork Count1 + Persistent IDA309C5458D2E60E0 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%202%5D/2-09%20Ta%CC%81rrega_%20Mazurken.m4a + File Folder Count4 + Library Folder Count1 + + 9634 + + Track ID9634 + NameTárrega: Recuerdos De La Alhambra + ArtistWulfin Lieske + ComposerFrancisco Tárrega + Album50 Best Guitar [Disc 2] + GenreClassical + KindAAC audio file + Size10787467 + Total Time327146 + Disc Number2 + Disc Count6 + Track Number10 + Track Count16 + Year1992 + Date Modified2011-10-19T01:54:51Z + Date Added2011-10-15T13:52:42Z + Bit Rate256 + Sample Rate44100 + Play Count3 + Play Date3402087711 + Play Date UTC2011-10-21T18:51:51Z + Normalization653 + Compilation + Artwork Count1 + Persistent ID8A5A09C20E9373F9 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%202%5D/2-10%20Ta%CC%81rrega_%20Recuerdos%20De%20La%20Alhambra.m4a + File Folder Count4 + Library Folder Count1 + + 9636 + + Track ID9636 + NameAlbéniz: Recuerdos De Viaje, Op. 71 - 1. En El Mar + ArtistJulian Byzantine + ComposerIsaac Albéniz + Album50 Best Guitar [Disc 2] + GenreClassical + KindAAC audio file + Size11405399 + Total Time346173 + Disc Number2 + Disc Count6 + Track Number11 + Track Count16 + Year1993 + Date Modified2011-10-19T01:54:52Z + Date Added2011-10-15T13:53:17Z + Bit Rate256 + Sample Rate44100 + Play Count2 + Play Date3402087232 + Play Date UTC2011-10-21T18:43:52Z + Normalization605 + Compilation + Artwork Count1 + Persistent IDEBC3CF8526564AF3 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%202%5D/2-11%20Albe%CC%81niz_%20Recuerdos%20De%20Viaje,%20Op.%2071%20-%201.%20En%20El%20Mar.m4a + File Folder Count4 + Library Folder Count1 + + 9638 + + Track ID9638 + NameAlbéniz: Recuerdos De Viaje, Op. 71 - 2. Asturias + ArtistJulian Byzantine + ComposerIsaac Albéniz + Album50 Best Guitar [Disc 2] + GenreClassical + KindAAC audio file + Size14442144 + Total Time435933 + Disc Number2 + Disc Count6 + Track Number12 + Track Count16 + Year1993 + Date Modified2011-10-19T01:54:53Z + Date Added2011-10-15T13:53:51Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3401736673 + Play Date UTC2011-10-17T17:21:13Z + Normalization1254 + Compilation + Artwork Count1 + Persistent ID8A9630755EBA28F9 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%202%5D/2-12%20Albe%CC%81niz_%20Recuerdos%20De%20Viaje,%20Op.%2071%20-%202.%20Asturias.m4a + File Folder Count4 + Library Folder Count1 + + 9640 + + Track ID9640 + NameAlbéniz: Recuerdos De Viaje, Op. 71 - 5. Puerta De Tierra (Bolero) + ArtistJulian Byzantine + ComposerIsaac Albéniz + Album50 Best Guitar [Disc 2] + GenreClassical + KindAAC audio file + Size7263585 + Total Time217333 + Disc Number2 + Disc Count6 + Track Number13 + Track Count16 + Year1993 + Date Modified2011-10-19T01:54:53Z + Date Added2011-10-15T13:54:32Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3401735419 + Play Date UTC2011-10-17T17:00:19Z + Skip Count1 + Skip Date2011-10-20T17:38:57Z + Normalization1234 + Compilation + Artwork Count1 + Persistent ID73B208DB1006383F + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%202%5D/2-13%20Albe%CC%81niz_%20Recuerdos%20De%20Viaje,%20Op.%2071%20-%205.%20Puerta%20De%20Tierra%20(Bolero).m4a + File Folder Count4 + Library Folder Count1 + + 9642 + + Track ID9642 + NameAlbéniz: Recuerdos De Viaje, Op. 71 - 6. Rumores De La Caleta (Malagueña) + ArtistJulian Byzantine + ComposerIsaac Albéniz + Album50 Best Guitar [Disc 2] + GenreClassical + KindAAC audio file + Size8527020 + Total Time258306 + Disc Number2 + Disc Count6 + Track Number14 + Track Count16 + Year1993 + Date Modified2011-10-19T01:54:54Z + Date Added2011-10-15T13:54:52Z + Bit Rate256 + Sample Rate44100 + Play Count3 + Play Date3401995998 + Play Date UTC2011-10-20T17:23:18Z + Skip Count1 + Skip Date2011-10-17T17:33:42Z + Normalization553 + Compilation + Artwork Count1 + Persistent IDB172EB7F865C7868 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%202%5D/2-14%20Albe%CC%81niz_%20Recuerdos%20De%20Viaje,%20Op.%2071%20-%206.%20Rumores%20De%20La%20Caleta%20(Malaguen%CC%83a).m4a + File Folder Count4 + Library Folder Count1 + + 9644 + + Track ID9644 + NameMalats: Serenata Española + ArtistJulian Byzantine + ComposerJoaquin Malats + Album50 Best Guitar [Disc 2] + GenreClassical + KindAAC audio file + Size7566793 + Total Time228146 + Disc Number2 + Disc Count6 + Track Number15 + Track Count16 + Year1981 + Date Modified2011-10-19T01:54:55Z + Date Added2011-10-15T13:55:15Z + Bit Rate256 + Sample Rate44100 + Normalization793 + Compilation + Artwork Count1 + Persistent ID96960A21E5DA5A6B + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%202%5D/2-15%20Malats_%20Serenata%20Espan%CC%83ola.m4a + File Folder Count4 + Library Folder Count1 + + 9646 + + Track ID9646 + NameLlobet: Canciones Populares Catalanas + ArtistWulfin Lieske + ComposerMiguel Llobet + Album50 Best Guitar [Disc 2] + GenreClassical + KindAAC audio file + Size3242051 + Total Time99666 + Disc Number2 + Disc Count6 + Track Number16 + Track Count16 + Year1992 + Date Modified2011-10-19T01:54:55Z + Date Added2011-10-15T13:55:35Z + Bit Rate256 + Sample Rate44100 + Play Count3 + Play Date3402166910 + Play Date UTC2011-10-22T16:51:50Z + Normalization398 + Compilation + Artwork Count1 + Persistent IDE7636DD59F77C94C + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%202%5D/2-16%20Llobet_%20Canciones%20Populares%20Catalanas.m4a + File Folder Count4 + Library Folder Count1 + + 9648 + + Track ID9648 + NameYepes: Romance, Jeux Interdits + ArtistPierre Laniau + ComposerNarciso Yepes + Album50 Best Guitar [Disc 3] + GenreClassical + KindAAC audio file + Size5146657 + Total Time156026 + Disc Number3 + Disc Count6 + Track Number1 + Track Count13 + Year2008 + Date Modified2011-10-19T01:55:05Z + Date Added2011-10-15T13:59:56Z + Bit Rate256 + Sample Rate44100 + Play Count2 + Play Date3406907876 + Play Date UTC2011-12-16T13:47:56Z + Normalization829 + Compilation + Artwork Count1 + Persistent IDE62AA4037806FA48 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%203%5D/3-01%20Yepes_%20Romance,%20Jeux%20Interdits.m4a + File Folder Count4 + Library Folder Count1 + + 9650 + + Track ID9650 + NameFalla/Barrueco: El Sombrero De Tres Picos - Die Nacht, Tanz Des Müllers + ArtistManuel Barrueco + ComposerManuel De Falla + Album50 Best Guitar [Disc 3] + GenreClassical + KindAAC audio file + Size13146301 + Total Time396613 + Disc Number3 + Disc Count6 + Track Number2 + Track Count13 + Year2008 + Date Modified2011-10-19T01:55:06Z + Date Added2011-10-15T14:00:11Z + Bit Rate256 + Sample Rate44100 + Normalization1257 + Compilation + Artwork Count1 + Persistent ID17A3982B343CD968 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%203%5D/3-02%20Falla_Barrueco_%20El%20Sombrero%20De%20Tres%20Picos%20-%20Die%20Nacht,%20Tanz%20Des%20Mu%CC%88llers.m4a + File Folder Count4 + Library Folder Count1 + + 9652 + + Track ID9652 + NameFalla/Barrueco: El Sombrero De Tres Picos - Tanz Des Corregidors, Tanz Der Müllerin + ArtistManuel Barrueco + ComposerManuel De Falla + Album50 Best Guitar [Disc 3] + GenreClassical + KindAAC audio file + Size12672884 + Total Time382866 + Disc Number3 + Disc Count6 + Track Number3 + Track Count13 + Year2008 + Date Modified2011-10-19T01:55:07Z + Date Added2011-10-15T14:00:44Z + Bit Rate256 + Sample Rate44100 + Normalization1257 + Compilation + Artwork Count1 + Persistent ID255D3B421BA4D65E + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%203%5D/3-03%20Falla_Barrueco_%20El%20Sombrero%20De%20Tres%20Picos%20-%20Tanz%20Des%20Corregidors,%20Tanz%20Der%20Mu%CC%88llerin.m4a + File Folder Count4 + Library Folder Count1 + + 9654 + + Track ID9654 + NameRodrigo: Sonata A La Española - 1. Allegro Assai; 2. Adagio; 3. Allegro Moderato + ArtistErnesto Bitetti + ComposerJoaquín Rodrigo + Album50 Best Guitar [Disc 3] + GenreClassical + KindAAC audio file + Size15249128 + Total Time460680 + Disc Number3 + Disc Count6 + Track Number4 + Track Count13 + Year2008 + Date Modified2011-10-19T01:55:08Z + Date Added2011-10-15T14:01:12Z + Bit Rate256 + Sample Rate44100 + Normalization1255 + Compilation + Artwork Count1 + Persistent ID70990C5C2F80A2C0 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%203%5D/3-04%20Rodrigo_%20Sonata%20A%20La%20Espan%CC%83ola%20-%201.%20Allegro%20Assai%3B%202.%20Adagio%3B%203.%20Allegro%20Moderato.m4a + File Folder Count4 + Library Folder Count1 + + 9656 + + Track ID9656 + NameGranados: Goyescas - La Maja De Goya, Tonadilla + ArtistEliot Fisk + ComposerEnrique Granados + Album50 Best Guitar [Disc 3] + GenreClassical + KindAAC audio file + Size8877439 + Total Time268306 + Disc Number3 + Disc Count6 + Track Number5 + Track Count13 + Year2008 + Date Modified2011-10-19T01:55:09Z + Date Added2011-10-15T14:01:42Z + Bit Rate256 + Sample Rate44100 + Normalization1255 + Compilation + Artwork Count1 + Persistent ID66A7FDF9CEE12856 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%203%5D/3-05%20Granados_%20Goyescas%20-%20La%20Maja%20De%20Goya,%20Tonadilla.m4a + File Folder Count4 + Library Folder Count1 + + 9658 + + Track ID9658 + NameGranados: Danzas Espanolas - 5. Andaluza + ArtistEliot Fisk + ComposerEnrique Granados + Album50 Best Guitar [Disc 3] + GenreClassical + KindAAC audio file + Size9358723 + Total Time285426 + Disc Number3 + Disc Count6 + Track Number6 + Track Count13 + Year2008 + Date Modified2011-10-19T01:55:09Z + Date Added2011-10-15T14:01:58Z + Bit Rate256 + Sample Rate44100 + Normalization1256 + Compilation + Artwork Count1 + Persistent IDA57471B8D284FA36 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%203%5D/3-06%20Granados_%20Danzas%20Espanolas%20-%205.%20Andaluza.m4a + File Folder Count4 + Library Folder Count1 + + 9660 + + Track ID9660 + NameTurina: Hommage À Tárrega - 1. Garrotin; 2. Soleares + ArtistErnesto Bitetti + ComposerJoaquin Turina + Album50 Best Guitar [Disc 3] + GenreClassical + KindAAC audio file + Size9266103 + Total Time279800 + Disc Number3 + Disc Count6 + Track Number7 + Track Count13 + Year2008 + Date Modified2011-10-19T01:55:10Z + Date Added2011-10-15T14:02:15Z + Bit Rate256 + Sample Rate44100 + Normalization1256 + Compilation + Artwork Count1 + Persistent IDB6C43D3FB4C90506 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%203%5D/3-07%20Turina_%20Hommage%20A%CC%80%20Ta%CC%81rrega%20-%201.%20Garrotin%3B%202.%20Soleares.m4a + File Folder Count4 + Library Folder Count1 + + 9662 + + Track ID9662 + NameGranados: Valses Poeticos - Introduction, Valse 1, Etc. + ArtistDario Rossetti-Bonell + ComposerEnrique Granados + Album50 Best Guitar [Disc 3] + GenreClassical + KindAAC audio file + Size16978884 + Total Time512146 + Disc Number3 + Disc Count6 + Track Number8 + Track Count13 + Year2008 + Date Modified2011-10-19T01:55:11Z + Date Added2011-10-15T14:02:30Z + Bit Rate256 + Sample Rate44100 + Normalization1256 + Compilation + Artwork Count1 + Persistent IDB6455930A9E9300A + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%203%5D/3-08%20Granados_%20Valses%20Poeticos%20-%20Introduction,%20Valse%201,%20Etc..m4a + File Folder Count4 + Library Folder Count1 + + 9664 + + Track ID9664 + NameFalla: Omaggio Per Chitarra + ArtistManuel Barrueco + ComposerManuel De Falla + Album50 Best Guitar [Disc 3] + GenreClassical + KindAAC audio file + Size5323609 + Total Time160640 + Disc Number3 + Disc Count6 + Track Number9 + Track Count13 + Year2008 + Date Modified2011-10-19T01:55:11Z + Date Added2011-10-15T14:02:56Z + Bit Rate256 + Sample Rate44100 + Normalization998 + Compilation + Artwork Count1 + Persistent IDCB40CAD3587BD2E7 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%203%5D/3-09%20Falla_%20Omaggio%20Per%20Chitarra.m4a + File Folder Count4 + Library Folder Count1 + + 9666 + + Track ID9666 + NameRodrigo: Invocation Et Danse + ArtistManuel Barrueco + ComposerJoaquín Rodrigo + Album50 Best Guitar [Disc 3] + GenreClassical + KindAAC audio file + Size14974145 + Total Time454000 + Disc Number3 + Disc Count6 + Track Number10 + Track Count13 + Year2008 + Date Modified2011-10-19T01:55:12Z + Date Added2011-10-15T14:03:04Z + Bit Rate256 + Sample Rate44100 + Normalization1256 + Compilation + Artwork Count1 + Persistent IDEB8446E06FF7CCE2 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%203%5D/3-10%20Rodrigo_%20Invocation%20Et%20Danse.m4a + File Folder Count4 + Library Folder Count1 + + 9668 + + Track ID9668 + NameRodrigo: 3 Piezas Españolas - Fandango + ArtistManuel Barrueco + ComposerJoaquín Rodrigo + Album50 Best Guitar [Disc 3] + GenreClassical + KindAAC audio file + Size7577633 + Total Time229413 + Disc Number3 + Disc Count6 + Track Number11 + Track Count13 + Year2008 + Date Modified2011-10-19T01:55:13Z + Date Added2011-10-15T14:03:25Z + Bit Rate256 + Sample Rate44100 + Normalization1256 + Compilation + Artwork Count1 + Persistent IDBDEC945552077055 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%203%5D/3-11%20Rodrigo_%203%20Piezas%20Espan%CC%83olas%20-%20Fandango.m4a + File Folder Count4 + Library Folder Count1 + + 9670 + + Track ID9670 + NameRodrigo: 3 Piezas Españolas - Passacaglia + ArtistManuel Barrueco + ComposerJoaquín Rodrigo + Album50 Best Guitar [Disc 3] + GenreClassical + KindAAC audio file + Size9212400 + Total Time277386 + Disc Number3 + Disc Count6 + Track Number12 + Track Count13 + Year2008 + Date Modified2011-10-19T01:55:13Z + Date Added2011-10-15T14:03:36Z + Bit Rate256 + Sample Rate44100 + Normalization1256 + Compilation + Artwork Count1 + Persistent IDAD7FB15769236A05 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%203%5D/3-12%20Rodrigo_%203%20Piezas%20Espan%CC%83olas%20-%20Passacaglia.m4a + File Folder Count4 + Library Folder Count1 + + 9672 + + Track ID9672 + NameRodrigo: 3 Piezas Españolas - Zapateado + ArtistManuel Barrueco + ComposerJoaquín Rodrigo + Album50 Best Guitar [Disc 3] + GenreClassical + KindAAC audio file + Size5966469 + Total Time179720 + Disc Number3 + Disc Count6 + Track Number13 + Track Count13 + Year2008 + Date Modified2011-10-19T01:55:14Z + Date Added2011-10-15T14:03:48Z + Bit Rate256 + Sample Rate44100 + Normalization630 + Compilation + Artwork Count1 + Persistent ID46F298E9F9F66327 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%203%5D/3-13%20Rodrigo_%203%20Piezas%20Espan%CC%83olas%20-%20Zapateado.m4a + File Folder Count4 + Library Folder Count1 + + 9674 + + Track ID9674 + NamePulse - Sections I-X - Pulse + ArtistSteve Reich + Album ArtistSteve Reich + ComposerReich, Steve + AlbumMusic For 18 Musicians + GenreClassical + KindMPEG audio file + Size108893762 + Total Time3393515 + Disc Number1 + Disc Count1 + Track Number1 + Track Count1 + Year2000 + Date Modified2011-10-19T09:30:15Z + Date Added2011-10-19T11:14:12Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202892027 + Play Count1 + Play Date3402407004 + Play Date UTC2011-10-25T11:33:24Z + Skip Count4 + Skip Date2011-10-27T11:18:56Z + Artwork Count1 + Persistent ID74639A026B1BF509 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Steve%20Reich/Music%20For%2018%20Musicians/01%20Pulse%20-%20Sections%20I-X%20-%20Pulse.mp3 + File Folder Count4 + Library Folder Count1 + + 9676 + + Track ID9676 + NameSymphony No.5 in E flat, Op.82 - 1. Tempo molto moderato - Largamente - Allegro moderato + ArtistBoston Symphony Orchestra + Album ArtistBoston Symphony Orchestra + ComposerJean Sibelius + AlbumSibelius: Symphonies Nos.5 & 7 + GenreClassical + KindMPEG audio file + Size29261566 + Total Time908199 + Disc Number1 + Disc Count1 + Track Number1 + Track Count8 + Year2001 + Date Modified2011-10-20T11:15:44Z + Date Added2011-10-19T11:14:12Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 205455073 + Artwork Count1 + Persistent IDA5C05C2A16F40431 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Boston%20Symphony%20Orchestra/Sibelius_%20Symphonies%20Nos.5%20&%207/01%20Symphony%20No.5%20in%20E%20flat,%20Op.82%20-%201.%20Tempo%20molto%20moderato%20-%20Largamente%20-%20Allegro%20moderato.mp3 + File Folder Count4 + Library Folder Count1 + + 9678 + + Track ID9678 + NameSymphony No.5 in E flat, Op.82 - 2. Andante mosso, quasi allegretto + ArtistBoston Symphony Orchestra + Album ArtistBoston Symphony Orchestra + ComposerJean Sibelius + AlbumSibelius: Symphonies Nos.5 & 7 + GenreClassical + KindMPEG audio file + Size17612897 + Total Time544182 + Disc Number1 + Disc Count1 + Track Number2 + Track Count8 + Year2001 + Date Modified2011-10-20T11:16:24Z + Date Added2011-10-19T11:14:12Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 205455074 + Artwork Count1 + Persistent IDA0E180F4882CA016 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Boston%20Symphony%20Orchestra/Sibelius_%20Symphonies%20Nos.5%20&%207/02%20Symphony%20No.5%20in%20E%20flat,%20Op.82%20-%202.%20Andante%20mosso,%20quasi%20allegretto.mp3 + File Folder Count4 + Library Folder Count1 + + 9680 + + Track ID9680 + NameSymphony No.5 in E flat, Op.82 - 3. Allegro molto + ArtistBoston Symphony Orchestra + Album ArtistBoston Symphony Orchestra + ComposerJean Sibelius + AlbumSibelius: Symphonies Nos.5 & 7 + GenreClassical + KindMPEG audio file + Size15613609 + Total Time481671 + Disc Number1 + Disc Count1 + Track Number3 + Track Count8 + Year2001 + Date Modified2011-10-20T11:16:40Z + Date Added2011-10-19T11:14:12Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 205455075 + Artwork Count1 + Persistent ID95D67450FD325F1C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Boston%20Symphony%20Orchestra/Sibelius_%20Symphonies%20Nos.5%20&%207/03%20Symphony%20No.5%20in%20E%20flat,%20Op.82%20-%203.%20Allegro%20molto.mp3 + File Folder Count4 + Library Folder Count1 + + 9682 + + Track ID9682 + NameSymphony No.7 in C, Op.105 - Adagio - + ArtistBoston Symphony Orchestra + Album ArtistBoston Symphony Orchestra + ComposerJean Sibelius + AlbumSibelius: Symphonies Nos.5 & 7 + GenreClassical + KindMPEG audio file + Size19637973 + Total Time607791 + Disc Number1 + Disc Count1 + Track Number4 + Track Count8 + Year2001 + Date Modified2011-10-19T09:53:57Z + Date Added2011-10-19T11:14:12Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 205455076 + Artwork Count1 + Persistent ID3BA7282E7197BCD4 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Boston%20Symphony%20Orchestra/Sibelius_%20Symphonies%20Nos.5%20&%207/04%20Symphony%20No.7%20in%20C,%20Op.105%20-%20Adagio%20-.mp3 + File Folder Count4 + Library Folder Count1 + + 9684 + + Track ID9684 + NameSymphony No.7 in C, Op.105 - Vivacissimo - Adagio - + ArtistBoston Symphony Orchestra + Album ArtistBoston Symphony Orchestra + ComposerJean Sibelius + AlbumSibelius: Symphonies Nos.5 & 7 + GenreClassical + KindMPEG audio file + Size5026984 + Total Time151196 + Disc Number1 + Disc Count1 + Track Number5 + Track Count8 + Year2001 + Date Modified2011-10-19T10:15:47Z + Date Added2011-10-19T11:14:12Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 205455077 + Artwork Count1 + Persistent IDFAEDE1DD1696E5DE + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Boston%20Symphony%20Orchestra/Sibelius_%20Symphonies%20Nos.5%20&%207/05%20Symphony%20No.7%20in%20C,%20Op.105%20-%20Vivacissimo%20-%20Adagio%20-.mp3 + File Folder Count4 + Library Folder Count1 + + 9686 + + Track ID9686 + NameSymphony No.7 in C, Op.105 - Allegro molto moderato - Allegro moderato - + ArtistBoston Symphony Orchestra + Album ArtistBoston Symphony Orchestra + ComposerJean Sibelius + AlbumSibelius: Symphonies Nos.5 & 7 + GenreClassical + KindMPEG audio file + Size7680231 + Total Time234109 + Disc Number1 + Disc Count1 + Track Number6 + Track Count8 + Year2001 + Date Modified2011-10-19T10:14:04Z + Date Added2011-10-19T11:14:12Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 205455078 + Artwork Count1 + Persistent IDCD7EBA80B90049C4 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Boston%20Symphony%20Orchestra/Sibelius_%20Symphonies%20Nos.5%20&%207/06%20Symphony%20No.7%20in%20C,%20Op.105%20-%20Allegro%20molto%20moderato%20-%20Allegro%20moderato%20-.mp3 + File Folder Count4 + Library Folder Count1 + + 9688 + + Track ID9688 + NameSymphony No.7 in C, Op.105 - Vivace - Presto - Adagio - Largamente molto - + ArtistBoston Symphony Orchestra + Album ArtistBoston Symphony Orchestra + ComposerJean Sibelius + AlbumSibelius: Symphonies Nos.5 & 7 + GenreClassical + KindMPEG audio file + Size5967438 + Total Time180584 + Disc Number1 + Disc Count1 + Track Number7 + Track Count8 + Year2001 + Date Modified2011-10-19T09:58:23Z + Date Added2011-10-19T11:14:12Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 205455079 + Artwork Count1 + Persistent ID042F7B481AD7FA2F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Boston%20Symphony%20Orchestra/Sibelius_%20Symphonies%20Nos.5%20&%207/07%20Symphony%20No.7%20in%20C,%20Op.105%20-%20Vivace%20-%20Presto%20-%20Adagio%20-%20Largamente%20molto%20-.mp3 + File Folder Count4 + Library Folder Count1 + + 9690 + + Track ID9690 + NameSymphony No.7 in C, Op.105 - Affettuoso + ArtistBoston Symphony Orchestra + Album ArtistBoston Symphony Orchestra + ComposerJean Sibelius + AlbumSibelius: Symphonies Nos.5 & 7 + GenreClassical + KindMPEG audio file + Size4089060 + Total Time121887 + Disc Number1 + Disc Count1 + Track Number8 + Track Count8 + Year2001 + Date Modified2011-10-19T09:55:54Z + Date Added2011-10-19T11:14:12Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 205455080 + Artwork Count1 + Persistent IDC70C564D74CC759B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Boston%20Symphony%20Orchestra/Sibelius_%20Symphonies%20Nos.5%20&%207/08%20Symphony%20No.7%20in%20C,%20Op.105%20-%20Affettuoso.mp3 + File Folder Count4 + Library Folder Count1 + + 9692 + + Track ID9692 + NameThe Rite of Spring (Scenes of Pagan Russia in two parts): Part One - Adoration of the Earth: Introduction. Lento (Instrumental) + ArtistLeonard Bernstein;London Symphony Orchestra + Album ArtistLeonard Bernstein + ComposerIgor Stravinsky + AlbumStravinsky: The Rite of Spring & Suite from "The Firebird" [Expanded Edition] + GenreClassical + KindMPEG audio file + Size6335623 + Total Time200594 + Disc Number1 + Disc Count1 + Track Number1 + Track Count24 + Year2004 + Date Modified2011-10-19T10:51:18Z + Date Added2011-10-19T11:14:12Z + Bit Rate244 + Sample Rate44100 + CommentsAmazon.com Song ID: 203958850 + Artwork Count1 + Sort NameRite of Spring (Scenes of Pagan Russia in two parts): Part One - Adoration of the Earth: Introduction. Lento (Instrumental) + Persistent ID4B91F578D1B43C0B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Leonard%20Bernstein/Stravinsky_%20The%20Rite%20of%20Spring%20&%20Suite%20from%20_The%20Firebird_%20%5BExpanded%20Edition%5D/01%20The%20Rite%20of%20Spring%20(Scenes%20of%20Pagan%20Russia%20in%20two%20parts)_%20Part%20One%20-%20Adoration%20of%20the%20Earth_%20Introduction.%20Lento%20(Instrumental).mp3 + File Folder Count4 + Library Folder Count1 + + 9694 + + Track ID9694 + NameThe Rite of Spring (Scenes of Pagan Russia in two parts): The Augurs of Spring (Instrumental) + ArtistLeonard Bernstein;London Symphony Orchestra + Album ArtistLeonard Bernstein + ComposerIgor Stravinsky + AlbumStravinsky: The Rite of Spring & Suite from "The Firebird" [Expanded Edition] + GenreClassical + KindMPEG audio file + Size6230772 + Total Time192783 + Disc Number1 + Disc Count1 + Track Number2 + Track Count24 + Year2004 + Date Modified2011-10-19T10:44:34Z + Date Added2011-10-19T11:14:12Z + Bit Rate250 + Sample Rate44100 + CommentsAmazon.com Song ID: 203958863 + Artwork Count1 + Sort NameRite of Spring (Scenes of Pagan Russia in two parts): The Augurs of Spring (Instrumental) + Persistent IDECD660F8F81236BF + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Leonard%20Bernstein/Stravinsky_%20The%20Rite%20of%20Spring%20&%20Suite%20from%20_The%20Firebird_%20%5BExpanded%20Edition%5D/02%20The%20Rite%20of%20Spring%20(Scenes%20of%20Pagan%20Russia%20in%20two%20parts)_%20The%20Augurs%20of%20Spring%20(Instrumental).mp3 + File Folder Count4 + Library Folder Count1 + + 9696 + + Track ID9696 + NameThe Rite of Spring (Scenes of Pagan Russia in two parts): Mock Abduction (Instrumental) + ArtistLeonard Bernstein;London Symphony Orchestra + Album ArtistLeonard Bernstein + ComposerIgor Stravinsky + AlbumStravinsky: The Rite of Spring & Suite from "The Firebird" [Expanded Edition] + GenreClassical + KindMPEG audio file + Size2656706 + Total Time78393 + Disc Number1 + Disc Count1 + Track Number3 + Track Count24 + Year2004 + Date Modified2011-10-19T10:32:40Z + Date Added2011-10-19T11:14:12Z + Bit Rate250 + Sample Rate44100 + CommentsAmazon.com Song ID: 203958875 + Artwork Count1 + Sort NameRite of Spring (Scenes of Pagan Russia in two parts): Mock Abduction (Instrumental) + Persistent ID0BD17D793FDE443B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Leonard%20Bernstein/Stravinsky_%20The%20Rite%20of%20Spring%20&%20Suite%20from%20_The%20Firebird_%20%5BExpanded%20Edition%5D/03%20The%20Rite%20of%20Spring%20(Scenes%20of%20Pagan%20Russia%20in%20two%20parts)_%20Mock%20Abduction%20(Instrumental).mp3 + File Folder Count4 + Library Folder Count1 + + 9698 + + Track ID9698 + NameThe Rite of Spring (Scenes of Pagan Russia in two parts): Spring Round Dances (Instrumental) + ArtistLeonard Bernstein;London Symphony Orchestra + Album ArtistLeonard Bernstein + ComposerIgor Stravinsky + AlbumStravinsky: The Rite of Spring & Suite from "The Firebird" [Expanded Edition] + GenreClassical + KindMPEG audio file + Size6793625 + Total Time211539 + Disc Number1 + Disc Count1 + Track Number4 + Track Count24 + Year2004 + Date Modified2011-10-19T10:50:20Z + Date Added2011-10-19T11:14:12Z + Bit Rate249 + Sample Rate44100 + CommentsAmazon.com Song ID: 203958880 + Artwork Count1 + Sort NameRite of Spring (Scenes of Pagan Russia in two parts): Spring Round Dances (Instrumental) + Persistent IDFEFD604D82DB2DBF + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Leonard%20Bernstein/Stravinsky_%20The%20Rite%20of%20Spring%20&%20Suite%20from%20_The%20Firebird_%20%5BExpanded%20Edition%5D/04%20The%20Rite%20of%20Spring%20(Scenes%20of%20Pagan%20Russia%20in%20two%20parts)_%20Spring%20Round%20Dances%20(Instrumental).mp3 + File Folder Count4 + Library Folder Count1 + + 9700 + + Track ID9700 + NameThe Rite of Spring (Scenes of Pagan Russia in two parts): Games of the Rival Tribes (Instrumental) + ArtistLeonard Bernstein;London Symphony Orchestra + Album ArtistLeonard Bernstein + ComposerIgor Stravinsky + AlbumStravinsky: The Rite of Spring & Suite from "The Firebird" [Expanded Edition] + GenreClassical + KindMPEG audio file + Size3820214 + Total Time115722 + Disc Number1 + Disc Count1 + Track Number5 + Track Count24 + Year2004 + Date Modified2011-10-19T10:40:31Z + Date Added2011-10-19T11:14:12Z + Bit Rate250 + Sample Rate44100 + CommentsAmazon.com Song ID: 203958879 + Artwork Count1 + Sort NameRite of Spring (Scenes of Pagan Russia in two parts): Games of the Rival Tribes (Instrumental) + Persistent ID496CA696FA9C312F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Leonard%20Bernstein/Stravinsky_%20The%20Rite%20of%20Spring%20&%20Suite%20from%20_The%20Firebird_%20%5BExpanded%20Edition%5D/05%20The%20Rite%20of%20Spring%20(Scenes%20of%20Pagan%20Russia%20in%20two%20parts)_%20Games%20of%20the%20Rival%20Tribes%20(Instrumental).mp3 + File Folder Count4 + Library Folder Count1 + + 9702 + + Track ID9702 + NameThe Rite of Spring (Scenes of Pagan Russia in two parts): Procession of the Wise Elders (Instrumental) + ArtistLeonard Bernstein;London Symphony Orchestra + Album ArtistLeonard Bernstein + ComposerIgor Stravinsky + AlbumStravinsky: The Rite of Spring & Suite from "The Firebird" [Expanded Edition] + GenreClassical + KindMPEG audio file + Size2273781 + Total Time67448 + Disc Number1 + Disc Count1 + Track Number6 + Track Count24 + Year2004 + Date Modified2011-10-19T10:35:15Z + Date Added2011-10-19T11:14:12Z + Bit Rate245 + Sample Rate44100 + CommentsAmazon.com Song ID: 203958843 + Artwork Count1 + Sort NameRite of Spring (Scenes of Pagan Russia in two parts): Procession of the Wise Elders (Instrumental) + Persistent ID11065429A5F4CFA0 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Leonard%20Bernstein/Stravinsky_%20The%20Rite%20of%20Spring%20&%20Suite%20from%20_The%20Firebird_%20%5BExpanded%20Edition%5D/06%20The%20Rite%20of%20Spring%20(Scenes%20of%20Pagan%20Russia%20in%20two%20parts)_%20Procession%20of%20the%20Wise%20Elders%20(Instrumental).mp3 + File Folder Count4 + Library Folder Count1 + + 9704 + + Track ID9704 + NameThe Rite of Spring (Scenes of Pagan Russia in two parts): Dance of the Earth (Instrumental) + ArtistLeonard Bernstein;London Symphony Orchestra + Album ArtistLeonard Bernstein + ComposerIgor Stravinsky + AlbumStravinsky: The Rite of Spring & Suite from "The Firebird" [Expanded Edition] + GenreClassical + KindMPEG audio file + Size2516345 + Total Time74161 + Disc Number1 + Disc Count1 + Track Number7 + Track Count24 + Year2004 + Date Modified2011-10-19T10:39:55Z + Date Added2011-10-19T11:14:12Z + Bit Rate249 + Sample Rate44100 + CommentsAmazon.com Song ID: 203958860 + Artwork Count1 + Sort NameRite of Spring (Scenes of Pagan Russia in two parts): Dance of the Earth (Instrumental) + Persistent ID9C6B8705B7757F42 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Leonard%20Bernstein/Stravinsky_%20The%20Rite%20of%20Spring%20&%20Suite%20from%20_The%20Firebird_%20%5BExpanded%20Edition%5D/07%20The%20Rite%20of%20Spring%20(Scenes%20of%20Pagan%20Russia%20in%20two%20parts)_%20Dance%20of%20the%20Earth%20(Instrumental).mp3 + File Folder Count4 + Library Folder Count1 + + 9706 + + Track ID9706 + NameThe Rite of Spring (Scenes of Pagan Russia in two parts): Part Two - The Sacrifice: Introduction. Largo (Instrumental) + ArtistLeonard Bernstein;London Symphony Orchestra + Album ArtistLeonard Bernstein + ComposerIgor Stravinsky + AlbumStravinsky: The Rite of Spring & Suite from "The Firebird" [Expanded Edition] + GenreClassical + KindMPEG audio file + Size9470160 + Total Time301714 + Disc Number1 + Disc Count1 + Track Number8 + Track Count24 + Year2004 + Date Modified2011-10-19T10:34:48Z + Date Added2011-10-19T11:14:12Z + Bit Rate245 + Sample Rate44100 + CommentsAmazon.com Song ID: 203958870 + Artwork Count1 + Sort NameRite of Spring (Scenes of Pagan Russia in two parts): Part Two - The Sacrifice: Introduction. Largo (Instrumental) + Persistent IDC15AA4D5264FBAC4 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Leonard%20Bernstein/Stravinsky_%20The%20Rite%20of%20Spring%20&%20Suite%20from%20_The%20Firebird_%20%5BExpanded%20Edition%5D/08%20The%20Rite%20of%20Spring%20(Scenes%20of%20Pagan%20Russia%20in%20two%20parts)_%20Part%20Two%20-%20The%20Sacrifice_%20Introduction.%20Largo%20(Instrumental).mp3 + File Folder Count4 + Library Folder Count1 + + 9708 + + Track ID9708 + NameThe Rite of Spring (Scenes of Pagan Russia in two parts): Mystical Circles of the Young Girls (Instrumental) + ArtistLeonard Bernstein;London Symphony Orchestra + Album ArtistLeonard Bernstein + ComposerIgor Stravinsky + AlbumStravinsky: The Rite of Spring & Suite from "The Firebird" [Expanded Edition] + GenreClassical + KindMPEG audio file + Size6592007 + Total Time207647 + Disc Number1 + Disc Count1 + Track Number9 + Track Count24 + Year2004 + Date Modified2011-10-19T10:46:16Z + Date Added2011-10-19T11:14:12Z + Bit Rate246 + Sample Rate44100 + CommentsAmazon.com Song ID: 203958853 + Artwork Count1 + Sort NameRite of Spring (Scenes of Pagan Russia in two parts): Mystical Circles of the Young Girls (Instrumental) + Persistent ID44B5B8725BD93698 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Leonard%20Bernstein/Stravinsky_%20The%20Rite%20of%20Spring%20&%20Suite%20from%20_The%20Firebird_%20%5BExpanded%20Edition%5D/09%20The%20Rite%20of%20Spring%20(Scenes%20of%20Pagan%20Russia%20in%20two%20parts)_%20Mystical%20Circles%20of%20the%20Young%20Girls%20(Instrumental).mp3 + File Folder Count4 + Library Folder Count1 + + 9710 + + Track ID9710 + NameThe Rite of Spring (Scenes of Pagan Russia in two parts): Glorification of the Chosen Victim (Instrumental) + ArtistLeonard Bernstein;London Symphony Orchestra + Album ArtistLeonard Bernstein + ComposerIgor Stravinsky + AlbumStravinsky: The Rite of Spring & Suite from "The Firebird" [Expanded Edition] + GenreClassical + KindMPEG audio file + Size3372522 + Total Time101250 + Disc Number1 + Disc Count1 + Track Number10 + Track Count24 + Year2004 + Date Modified2011-10-19T10:29:11Z + Date Added2011-10-19T11:14:12Z + Bit Rate250 + Sample Rate44100 + CommentsAmazon.com Song ID: 203958865 + Artwork Count1 + Sort NameRite of Spring (Scenes of Pagan Russia in two parts): Glorification of the Chosen Victim (Instrumental) + Persistent ID4EEE3557B916FBB2 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Leonard%20Bernstein/Stravinsky_%20The%20Rite%20of%20Spring%20&%20Suite%20from%20_The%20Firebird_%20%5BExpanded%20Edition%5D/10%20The%20Rite%20of%20Spring%20(Scenes%20of%20Pagan%20Russia%20in%20two%20parts)_%20Glorification%20of%20the%20Chosen%20Victim%20(Instrumental).mp3 + File Folder Count4 + Library Folder Count1 + + 9712 + + Track ID9712 + NameThe Rite of Spring (Scenes of Pagan Russia in two parts): Summoning of the Ancestors (Instrumental) + ArtistLeonard Bernstein;London Symphony Orchestra + Album ArtistLeonard Bernstein + ComposerIgor Stravinsky + AlbumStravinsky: The Rite of Spring & Suite from "The Firebird" [Expanded Edition] + GenreClassical + KindMPEG audio file + Size2022793 + Total Time58749 + Disc Number1 + Disc Count1 + Track Number11 + Track Count24 + Year2004 + Date Modified2011-10-19T10:45:15Z + Date Added2011-10-19T11:14:12Z + Bit Rate247 + Sample Rate44100 + CommentsAmazon.com Song ID: 203958873 + Artwork Count1 + Sort NameRite of Spring (Scenes of Pagan Russia in two parts): Summoning of the Ancestors (Instrumental) + Persistent ID33BAFA4D14FBC251 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Leonard%20Bernstein/Stravinsky_%20The%20Rite%20of%20Spring%20&%20Suite%20from%20_The%20Firebird_%20%5BExpanded%20Edition%5D/11%20The%20Rite%20of%20Spring%20(Scenes%20of%20Pagan%20Russia%20in%20two%20parts)_%20Summoning%20of%20the%20Ancestors%20(Instrumental).mp3 + File Folder Count4 + Library Folder Count1 + + 9714 + + Track ID9714 + NameThe Rite of Spring (Scenes of Pagan Russia in two parts): Ritual of the Ancestors (Instrumental) + ArtistLeonard Bernstein;London Symphony Orchestra + Album ArtistLeonard Bernstein + ComposerIgor Stravinsky + AlbumStravinsky: The Rite of Spring & Suite from "The Firebird" [Expanded Edition] + GenreClassical + KindMPEG audio file + Size7309235 + Total Time232306 + Disc Number1 + Disc Count1 + Track Number12 + Track Count24 + Year2004 + Date Modified2011-10-19T10:36:57Z + Date Added2011-10-19T11:14:12Z + Bit Rate244 + Sample Rate44100 + CommentsAmazon.com Song ID: 203958877 + Artwork Count1 + Sort NameRite of Spring (Scenes of Pagan Russia in two parts): Ritual of the Ancestors (Instrumental) + Persistent ID17355D519B0512A5 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Leonard%20Bernstein/Stravinsky_%20The%20Rite%20of%20Spring%20&%20Suite%20from%20_The%20Firebird_%20%5BExpanded%20Edition%5D/12%20The%20Rite%20of%20Spring%20(Scenes%20of%20Pagan%20Russia%20in%20two%20parts)_%20Ritual%20of%20the%20Ancestors%20(Instrumental).mp3 + File Folder Count4 + Library Folder Count1 + + 9716 + + Track ID9716 + NameThe Rite of Spring (Scenes of Pagan Russia in two parts): Sacrificial Dance (The Chosen Victim) (Instrumental) + ArtistLeonard Bernstein;London Symphony Orchestra + Album ArtistLeonard Bernstein + ComposerIgor Stravinsky + AlbumStravinsky: The Rite of Spring & Suite from "The Firebird" [Expanded Edition] + GenreClassical + KindMPEG audio file + Size8997299 + Total Time282566 + Disc Number1 + Disc Count1 + Track Number13 + Track Count24 + Year2004 + Date Modified2011-10-19T10:20:02Z + Date Added2011-10-19T11:14:12Z + Bit Rate248 + Sample Rate44100 + CommentsAmazon.com Song ID: 203958847 + Artwork Count1 + Sort NameRite of Spring (Scenes of Pagan Russia in two parts): Sacrificial Dance (The Chosen Victim) (Instrumental) + Persistent ID714103C74FEFDC20 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Leonard%20Bernstein/Stravinsky_%20The%20Rite%20of%20Spring%20&%20Suite%20from%20_The%20Firebird_%20%5BExpanded%20Edition%5D/13%20The%20Rite%20of%20Spring%20(Scenes%20of%20Pagan%20Russia%20in%20two%20parts)_%20Sacrificial%20Dance%20(The%20Chosen%20Victim)%20(Instrumental).mp3 + File Folder Count4 + Library Folder Count1 + + 9718 + + Track ID9718 + NameSuite from "The Firebird" (1919 version): Introduction (Instrumental) + ArtistLeonard Bernstein;New York Philharmonic + Album ArtistLeonard Bernstein + ComposerIgor Stravinsky + AlbumStravinsky: The Rite of Spring & Suite from "The Firebird" [Expanded Edition] + GenreClassical + KindMPEG audio file + Size6279493 + Total Time200228 + Disc Number1 + Disc Count1 + Track Number14 + Track Count24 + Year2004 + Date Modified2011-10-19T10:21:39Z + Date Added2011-10-19T11:14:12Z + Bit Rate242 + Sample Rate44100 + CommentsAmazon.com Song ID: 203958858 + Artwork Count1 + Persistent IDD46B68D9AAD37FAF + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Leonard%20Bernstein/Stravinsky_%20The%20Rite%20of%20Spring%20&%20Suite%20from%20_The%20Firebird_%20%5BExpanded%20Edition%5D/14%20Suite%20from%20_The%20Firebird_%20(1919%20version)_%20Introduction%20(Instrumental).mp3 + File Folder Count4 + Library Folder Count1 + + 9720 + + Track ID9720 + NameSuite from "The Firebird" (1919 version): The Firebird and its Dance (Instrumental) + ArtistLeonard Bernstein;New York Philharmonic + Album ArtistLeonard Bernstein + ComposerIgor Stravinsky + AlbumStravinsky: The Rite of Spring & Suite from "The Firebird" [Expanded Edition] + GenreClassical + KindMPEG audio file + Size647116 + Total Time14524 + Disc Number1 + Disc Count1 + Track Number15 + Track Count24 + Year2004 + Date Modified2011-10-19T10:48:15Z + Date Added2011-10-19T11:14:12Z + Bit Rate244 + Sample Rate44100 + CommentsAmazon.com Song ID: 203958874 + Artwork Count1 + Persistent ID5ABDD526EFFC5CB3 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Leonard%20Bernstein/Stravinsky_%20The%20Rite%20of%20Spring%20&%20Suite%20from%20_The%20Firebird_%20%5BExpanded%20Edition%5D/15%20Suite%20from%20_The%20Firebird_%20(1919%20version)_%20The%20Firebird%20and%20its%20Dance%20(Instrumental).mp3 + File Folder Count4 + Library Folder Count1 + + 9722 + + Track ID9722 + NameSuite from "The Firebird" (1919 version): Variation of the Firebird (Instrumental) + ArtistLeonard Bernstein;New York Philharmonic + Album ArtistLeonard Bernstein + ComposerIgor Stravinsky + AlbumStravinsky: The Rite of Spring & Suite from "The Firebird" [Expanded Edition] + GenreClassical + KindMPEG audio file + Size2324845 + Total Time69511 + Disc Number1 + Disc Count1 + Track Number16 + Track Count24 + Year2004 + Date Modified2011-10-19T10:28:05Z + Date Added2011-10-19T11:14:12Z + Bit Rate244 + Sample Rate44100 + CommentsAmazon.com Song ID: 203958878 + Artwork Count1 + Persistent ID1744564E39531DE9 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Leonard%20Bernstein/Stravinsky_%20The%20Rite%20of%20Spring%20&%20Suite%20from%20_The%20Firebird_%20%5BExpanded%20Edition%5D/16%20Suite%20from%20_The%20Firebird_%20(1919%20version)_%20Variation%20of%20the%20Firebird%20(Instrumental).mp3 + File Folder Count4 + Library Folder Count1 + + 9724 + + Track ID9724 + NameSuite from "The Firebird" (1919 version): The Princesses' Round (Instrumental) + ArtistLeonard Bernstein;New York Philharmonic + Album ArtistLeonard Bernstein + ComposerIgor Stravinsky + AlbumStravinsky: The Rite of Spring & Suite from "The Firebird" [Expanded Edition] + GenreClassical + KindMPEG audio file + Size9625063 + Total Time313808 + Disc Number1 + Disc Count1 + Track Number17 + Track Count24 + Year2004 + Date Modified2011-10-19T10:48:04Z + Date Added2011-10-19T11:14:12Z + Bit Rate240 + Sample Rate44100 + CommentsAmazon.com Song ID: 203958840 + Artwork Count1 + Persistent ID7BF093DB7F7F69B0 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Leonard%20Bernstein/Stravinsky_%20The%20Rite%20of%20Spring%20&%20Suite%20from%20_The%20Firebird_%20%5BExpanded%20Edition%5D/17%20Suite%20from%20_The%20Firebird_%20(1919%20version)_%20The%20Princesses'%20Round%20(Instrumental).mp3 + File Folder Count4 + Library Folder Count1 + + 9726 + + Track ID9726 + NameSuite from "The Firebird" (1919 version): Infernal Dance of King Kashchei (Instrumental) + ArtistLeonard Bernstein;New York Philharmonic + Album ArtistLeonard Bernstein + ComposerIgor Stravinsky + AlbumStravinsky: The Rite of Spring & Suite from "The Firebird" [Expanded Edition] + GenreClassical + KindMPEG audio file + Size7497412 + Total Time237191 + Disc Number1 + Disc Count1 + Track Number18 + Track Count24 + Year2004 + Date Modified2011-10-19T10:23:08Z + Date Added2011-10-19T11:14:12Z + Bit Rate246 + Sample Rate44100 + CommentsAmazon.com Song ID: 203958869 + Artwork Count1 + Persistent IDECBEBF5D7BEBDA03 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Leonard%20Bernstein/Stravinsky_%20The%20Rite%20of%20Spring%20&%20Suite%20from%20_The%20Firebird_%20%5BExpanded%20Edition%5D/18%20Suite%20from%20_The%20Firebird_%20(1919%20version)_%20Infernal%20Dance%20of%20King%20Kashchei%20(Instrumental).mp3 + File Folder Count4 + Library Folder Count1 + + 9728 + + Track ID9728 + NameSuite from "The Firebird" (1919 version): Lullaby (Instrumental) + ArtistLeonard Bernstein;New York Philharmonic + Album ArtistLeonard Bernstein + ComposerIgor Stravinsky + AlbumStravinsky: The Rite of Spring & Suite from "The Firebird" [Expanded Edition] + GenreClassical + KindMPEG audio file + Size7058977 + Total Time230347 + Disc Number1 + Disc Count1 + Track Number19 + Track Count24 + Year2004 + Date Modified2011-10-19T10:38:53Z + Date Added2011-10-19T11:14:12Z + Bit Rate238 + Sample Rate44100 + CommentsAmazon.com Song ID: 203958867 + Artwork Count1 + Persistent ID322688C3EB765240 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Leonard%20Bernstein/Stravinsky_%20The%20Rite%20of%20Spring%20&%20Suite%20from%20_The%20Firebird_%20%5BExpanded%20Edition%5D/19%20Suite%20from%20_The%20Firebird_%20(1919%20version)_%20Lullaby%20(Instrumental).mp3 + File Folder Count4 + Library Folder Count1 + + 9730 + + Track ID9730 + NameSuite from "The Firebird" (1919 version): Finale (Instrumental) + ArtistLeonard Bernstein;New York Philharmonic + Album ArtistLeonard Bernstein + ComposerIgor Stravinsky + AlbumStravinsky: The Rite of Spring & Suite from "The Firebird" [Expanded Edition] + GenreClassical + KindMPEG audio file + Size6436065 + Total Time207281 + Disc Number1 + Disc Count1 + Track Number20 + Track Count24 + Year2004 + Date Modified2011-10-19T10:24:31Z + Date Added2011-10-19T11:14:12Z + Bit Rate240 + Sample Rate44100 + CommentsAmazon.com Song ID: 203958871 + Artwork Count1 + Persistent ID0A42FE460244BCEF + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Leonard%20Bernstein/Stravinsky_%20The%20Rite%20of%20Spring%20&%20Suite%20from%20_The%20Firebird_%20%5BExpanded%20Edition%5D/20%20Suite%20from%20_The%20Firebird_%20(1919%20version)_%20Finale%20(Instrumental).mp3 + File Folder Count4 + Library Folder Count1 + + 9732 + + Track ID9732 + NameScythian Suite, Op. 20: I. The Adoration of Veles and Ala: Allegro feroce. Poco meno mosso (Instrumental) + ArtistLeonard Bernstein;New York Philharmonic + Album ArtistLeonard Bernstein + ComposerSergei Prokofiev + AlbumStravinsky: The Rite of Spring & Suite from "The Firebird" [Expanded Edition] + GenreClassical + KindMPEG audio file + Size11778775 + Total Time378906 + Disc Number1 + Disc Count1 + Track Number21 + Track Count24 + Year2004 + Date Modified2011-10-19T10:32:02Z + Date Added2011-10-19T11:14:12Z + Bit Rate244 + Sample Rate44100 + CommentsAmazon.com Song ID: 203958855 + Artwork Count1 + Persistent ID953C90D9C4BE8FD3 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Leonard%20Bernstein/Stravinsky_%20The%20Rite%20of%20Spring%20&%20Suite%20from%20_The%20Firebird_%20%5BExpanded%20Edition%5D/21%20Scythian%20Suite,%20Op.%2020_%20I.%20The%20Adoration%20of%20Veles%20and%20Ala_%20Allegro%20feroce.%20Poco%20meno%20mosso%20(Instrumental).mp3 + File Folder Count4 + Library Folder Count1 + + 9734 + + Track ID9734 + NameScythian Suite, Op. 20: II. The Enemy God and the Dance of the Black Spirits. Allegro sostenuto (Instrumental) + ArtistLeonard Bernstein;New York Philharmonic + Album ArtistLeonard Bernstein + ComposerSergei Prokofiev + AlbumStravinsky: The Rite of Spring & Suite from "The Firebird" [Expanded Edition] + GenreClassical + KindMPEG audio file + Size5281717 + Total Time162586 + Disc Number1 + Disc Count1 + Track Number22 + Track Count24 + Year2004 + Date Modified2011-10-19T10:29:54Z + Date Added2011-10-19T11:14:12Z + Bit Rate249 + Sample Rate44100 + CommentsAmazon.com Song ID: 203958872 + Artwork Count1 + Persistent IDC0CD20A6AE0CD657 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Leonard%20Bernstein/Stravinsky_%20The%20Rite%20of%20Spring%20&%20Suite%20from%20_The%20Firebird_%20%5BExpanded%20Edition%5D/22%20Scythian%20Suite,%20Op.%2020_%20II.%20The%20Enemy%20God%20and%20the%20Dance%20of%20the%20Black%20Spirits.%20Allegro%20sostenuto%20(Instrumental).mp3 + File Folder Count4 + Library Folder Count1 + + 9736 + + Track ID9736 + NameScythian Suite, Op. 20: III. Night. Andantino - Poco piu mosso (Instrumental) + ArtistLeonard Bernstein;New York Philharmonic + Album ArtistLeonard Bernstein + ComposerSergei Prokofiev + AlbumStravinsky: The Rite of Spring & Suite from "The Firebird" [Expanded Edition] + GenreClassical + KindMPEG audio file + Size9526473 + Total Time302942 + Disc Number1 + Disc Count1 + Track Number23 + Track Count24 + Year2004 + Date Modified2011-10-19T10:42:41Z + Date Added2011-10-19T11:14:12Z + Bit Rate246 + Sample Rate44100 + CommentsAmazon.com Song ID: 203958876 + Artwork Count1 + Persistent IDF830727DDFD5D228 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Leonard%20Bernstein/Stravinsky_%20The%20Rite%20of%20Spring%20&%20Suite%20from%20_The%20Firebird_%20%5BExpanded%20Edition%5D/23%20Scythian%20Suite,%20Op.%2020_%20III.%20Night.%20Andantino%20-%20Poco%20piu%20mosso%20(Instrumental).mp3 + File Folder Count4 + Library Folder Count1 + + 9738 + + Track ID9738 + NameScythian Suite, Op. 20: IV. The Glorious Departure of Lolli and the Procession of the Sun. Tempestoso - Allegro (Quasi doppio movimento) - Andante sostenuto (Instrumental) + ArtistLeonard Bernstein;New York Philharmonic + Album ArtistLeonard Bernstein + ComposerSergei Prokofiev + AlbumStravinsky: The Rite of Spring & Suite from "The Firebird" [Expanded Edition] + GenreClassical + KindMPEG audio file + Size10805678 + Total Time342256 + Disc Number1 + Disc Count1 + Track Number24 + Track Count24 + Year2004 + Date Modified2011-10-19T10:27:02Z + Date Added2011-10-19T11:14:12Z + Bit Rate247 + Sample Rate44100 + CommentsAmazon.com Song ID: 203958845 + Artwork Count1 + Persistent ID64F73F28EEF882D0 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Leonard%20Bernstein/Stravinsky_%20The%20Rite%20of%20Spring%20&%20Suite%20from%20_The%20Firebird_%20%5BExpanded%20Edition%5D/24%20Scythian%20Suite,%20Op.%2020_%20IV.%20The%20Glorious%20Departure%20of%20Lolli%20and%20the%20Procession%20of%20the%20Sun.%20Tempestoso%20-%20Allegro%20(Quasi%20doppio%20movimento)%20-%20Andante%20sostenuto%20(Instrumental).mp3 + File Folder Count4 + Library Folder Count1 + + 9758 + + Track ID9758 + NameDanse Macabre + ArtistCbso - Christopher Robinson + AlbumCarnival Of The Animals, Sympnony No 3 + GenreClassical + KindAAC audio file + Size13872721 + Total Time412733 + Track Number1 + Track Count21 + Date Modified2011-11-19T17:54:04Z + Date Added2011-11-19T05:46:03Z + Bit Rate256 + Sample Rate44100 + Skip Count1 + Skip Date2013-07-25T04:13:30Z + Normalization1225 + Artwork Count1 + Persistent ID5D93178D489A9D6F + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Cbso%20-%20Christopher%20Robinson/Carnival%20Of%20The%20Animals,%20Sympnony%20No%203/01%20Danse%20Macabre.m4a + File Folder Count4 + Library Folder Count1 + + 9760 + + Track ID9760 + NameSaint-Saëns: Carnival Of The Animals - 1. Introduction & Royal March Of The Lion + ArtistLouis Frémaux: City Of Birmingham Symphony Orchestra + ComposerCamille Saint-Saëns + AlbumCarnival Of The Animals, Sympnony No 3 + GenreClassical + KindAAC audio file + Size4470037 + Total Time120346 + Track Number2 + Track Count21 + Date Modified2011-11-19T17:54:05Z + Date Added2011-11-19T05:47:15Z + Bit Rate256 + Sample Rate44100 + Play Count2 + Play Date3404963231 + Play Date UTC2011-11-24T01:37:11Z + Normalization577 + Artwork Count1 + Persistent ID95D5063E012B87EB + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Louis%20Fre%CC%81maux_%20City%20Of%20Birmingham%20Symphony%20Orchestra/Carnival%20Of%20The%20Animals,%20Sympnony%20No%203/02%20Saint-Sae%CC%88ns_%20Carnival%20Of%20The%20Animals%20-%201.%20Introduction%20&%20Royal%20March%20Of%20The%20Lion.m4a + File Folder Count4 + Library Folder Count1 + + 9762 + + Track ID9762 + NameThe Carnival of the Animals: Hens And Cocks + ArtistCbso - Christopher Robinson + AlbumCarnival Of The Animals, Sympnony No 3 + GenreClassical + KindAAC audio file + Size2924287 + Total Time73800 + Track Number3 + Track Count21 + Date Modified2011-11-19T17:54:06Z + Date Added2011-11-19T05:47:35Z + Bit Rate256 + Sample Rate44100 + Play Count3 + Play Date3404963667 + Play Date UTC2011-11-24T01:44:27Z + Normalization310 + Artwork Count1 + Sort NameCarnival of the Animals: Hens And Cocks + Persistent ID4BB24EEBF3C2BA2A + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Cbso%20-%20Christopher%20Robinson/Carnival%20Of%20The%20Animals,%20Sympnony%20No%203/03%20The%20Carnival%20of%20the%20Animals_%20Hens%20And%20Cocks.m4a + File Folder Count4 + Library Folder Count1 + + 9764 + + Track ID9764 + NameSaint-Saëns: Carnival Of The Animals - 3. Wild Asses + ArtistLouis Frémaux: City Of Birmingham Symphony Orchestra + ComposerCamille Saint-Saëns + AlbumCarnival Of The Animals, Sympnony No 3 + GenreClassical + KindAAC audio file + Size1741019 + Total Time40826 + Track Number4 + Track Count21 + Date Modified2011-11-19T17:54:06Z + Date Added2011-11-19T05:47:47Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3404632500 + Play Date UTC2011-11-20T05:45:00Z + Normalization336 + Artwork Count1 + Persistent IDEB402ED1BEB0466B + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Louis%20Fre%CC%81maux_%20City%20Of%20Birmingham%20Symphony%20Orchestra/Carnival%20Of%20The%20Animals,%20Sympnony%20No%203/04%20Saint-Sae%CC%88ns_%20Carnival%20Of%20The%20Animals%20-%203.%20Wild%20Asses.m4a + File Folder Count4 + Library Folder Count1 + + 9766 + + Track ID9766 + NameSaint-Saëns: Carnival Of The Animals - 4. Tortoises + ArtistLouis Frémaux: City Of Birmingham Symphony Orchestra + ComposerCamille Saint-Saëns + AlbumCarnival Of The Animals, Sympnony No 3 + GenreClassical + KindAAC audio file + Size4704378 + Total Time128106 + Track Number5 + Track Count21 + Date Modified2011-11-19T17:54:07Z + Date Added2011-11-19T05:47:54Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3404667871 + Play Date UTC2011-11-20T15:34:31Z + Normalization13 + Artwork Count1 + Persistent ID2B664180DB15DE01 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Louis%20Fre%CC%81maux_%20City%20Of%20Birmingham%20Symphony%20Orchestra/Carnival%20Of%20The%20Animals,%20Sympnony%20No%203/05%20Saint-Sae%CC%88ns_%20Carnival%20Of%20The%20Animals%20-%204.%20Tortoises.m4a + File Folder Count4 + Library Folder Count1 + + 9768 + + Track ID9768 + NameSaint-Saëns: Carnival Of The Animals - 5. The Elephant + ArtistLouis Frémaux: City Of Birmingham Symphony Orchestra + ComposerCamille Saint-Saëns + AlbumCarnival Of The Animals, Sympnony No 3 + GenreClassical + KindAAC audio file + Size3381456 + Total Time90933 + Track Number6 + Track Count21 + Date Modified2011-11-19T17:54:07Z + Date Added2011-11-19T05:48:13Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3404887916 + Play Date UTC2011-11-23T04:41:56Z + Normalization319 + Artwork Count1 + Persistent ID4D0A1BF16571E1AB + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Louis%20Fre%CC%81maux_%20City%20Of%20Birmingham%20Symphony%20Orchestra/Carnival%20Of%20The%20Animals,%20Sympnony%20No%203/06%20Saint-Sae%CC%88ns_%20Carnival%20Of%20The%20Animals%20-%205.%20The%20Elephant.m4a + File Folder Count4 + Library Folder Count1 + + 9770 + + Track ID9770 + NameSaint-Saëns: Carnival Of The Animals - 6. Kangaroos + ArtistLouis Frémaux: City Of Birmingham Symphony Orchestra + ComposerCamille Saint-Saëns + AlbumCarnival Of The Animals, Sympnony No 3 + GenreClassical + KindAAC audio file + Size2042272 + Total Time49560 + Track Number7 + Track Count21 + Date Modified2011-11-19T17:54:08Z + Date Added2011-11-19T05:48:26Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3404963547 + Play Date UTC2011-11-24T01:42:27Z + Normalization174 + Artwork Count1 + Persistent ID06D79549AB493F0B + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Louis%20Fre%CC%81maux_%20City%20Of%20Birmingham%20Symphony%20Orchestra/Carnival%20Of%20The%20Animals,%20Sympnony%20No%203/07%20Saint-Sae%CC%88ns_%20Carnival%20Of%20The%20Animals%20-%206.%20Kangaroos.m4a + File Folder Count4 + Library Folder Count1 + + 9772 + + Track ID9772 + NameSaint-Saëns: Carnival Of The Animals - 7. Aquarium + ArtistLouis Frémaux: City Of Birmingham Symphony Orchestra + ComposerCamille Saint-Saëns + AlbumCarnival Of The Animals, Sympnony No 3 + GenreClassical + KindAAC audio file + Size4909656 + Total Time131640 + Track Number8 + Track Count21 + Date Modified2011-11-19T17:54:09Z + Date Added2011-11-19T05:48:34Z + Bit Rate256 + Sample Rate44100 + Normalization44 + Artwork Count1 + Persistent IDCF6AC25F10BE81B4 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Louis%20Fre%CC%81maux_%20City%20Of%20Birmingham%20Symphony%20Orchestra/Carnival%20Of%20The%20Animals,%20Sympnony%20No%203/08%20Saint-Sae%CC%88ns_%20Carnival%20Of%20The%20Animals%20-%207.%20Aquarium.m4a + File Folder Count4 + Library Folder Count1 + + 9774 + + Track ID9774 + NameThe Carnival of the Animals: Persons With Long Ears + ArtistCbso - Christopher Robinson + AlbumCarnival Of The Animals, Sympnony No 3 + GenreClassical + KindAAC audio file + Size2646942 + Total Time67226 + Track Number9 + Track Count21 + Date Modified2011-11-19T17:54:09Z + Date Added2011-11-19T05:48:52Z + Bit Rate256 + Sample Rate44100 + Normalization85 + Artwork Count1 + Sort NameCarnival of the Animals: Persons With Long Ears + Persistent ID9C63FB38207113E1 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Cbso%20-%20Christopher%20Robinson/Carnival%20Of%20The%20Animals,%20Sympnony%20No%203/09%20The%20Carnival%20of%20the%20Animals_%20Persons%20With%20Long%20Ears.m4a + File Folder Count4 + Library Folder Count1 + + 9776 + + Track ID9776 + NameSaint-Saëns: Carnival Of The Animals - 9. The Cuckoo In The Depths Of The Woods + ArtistLouis Frémaux: City Of Birmingham Symphony Orchestra + ComposerCamille Saint-Saëns + AlbumCarnival Of The Animals, Sympnony No 3 + GenreClassical + KindAAC audio file + Size5096395 + Total Time140440 + Track Number10 + Track Count21 + Date Modified2011-11-19T17:54:10Z + Date Added2011-11-19T05:49:02Z + Bit Rate256 + Sample Rate44100 + Normalization12 + Artwork Count1 + Persistent ID88B9826DBC5327A4 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Louis%20Fre%CC%81maux_%20City%20Of%20Birmingham%20Symphony%20Orchestra/Carnival%20Of%20The%20Animals,%20Sympnony%20No%203/10%20Saint-Sae%CC%88ns_%20Carnival%20Of%20The%20Animals%20-%209.%20The%20Cuckoo%20In%20The%20Depths%20Of%20The%20Woods.m4a + File Folder Count4 + Library Folder Count1 + + 9778 + + Track ID9778 + NameSaint-Saëns: Carnival Of The Animals - 10. Aviary + ArtistLouis Frémaux: City Of Birmingham Symphony Orchestra + ComposerCamille Saint-Saëns + AlbumCarnival Of The Animals, Sympnony No 3 + GenreClassical + KindAAC audio file + Size3011006 + Total Time77466 + Track Number11 + Track Count21 + Date Modified2011-11-19T17:54:10Z + Date Added2011-11-19T05:49:20Z + Bit Rate256 + Sample Rate44100 + Normalization53 + Artwork Count1 + Persistent IDB7AEB23DAE4FCE9D + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Louis%20Fre%CC%81maux_%20City%20Of%20Birmingham%20Symphony%20Orchestra/Carnival%20Of%20The%20Animals,%20Sympnony%20No%203/11%20Saint-Sae%CC%88ns_%20Carnival%20Of%20The%20Animals%20-%2010.%20Aviary.m4a + File Folder Count4 + Library Folder Count1 + + 9780 + + Track ID9780 + NameSaint-Saëns: Carnival Of The Animals - 11. Pianists + ArtistLouis Frémaux: City Of Birmingham Symphony Orchestra + ComposerCamille Saint-Saëns + AlbumCarnival Of The Animals, Sympnony No 3 + GenreClassical + KindAAC audio file + Size2832304 + Total Time74426 + Track Number12 + Track Count21 + Date Modified2011-11-19T17:54:11Z + Date Added2011-11-19T05:49:31Z + Bit Rate256 + Sample Rate44100 + Normalization578 + Artwork Count1 + Persistent IDC822953FC4A47C15 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Louis%20Fre%CC%81maux_%20City%20Of%20Birmingham%20Symphony%20Orchestra/Carnival%20Of%20The%20Animals,%20Sympnony%20No%203/12%20Saint-Sae%CC%88ns_%20Carnival%20Of%20The%20Animals%20-%2011.%20Pianists.m4a + File Folder Count4 + Library Folder Count1 + + 9782 + + Track ID9782 + NameSaint-Saëns: Carnival Of The Animals - 12. Fossils + ArtistLouis Frémaux: City Of Birmingham Symphony Orchestra + ComposerCamille Saint-Saëns + AlbumCarnival Of The Animals, Sympnony No 3 + GenreClassical + KindAAC audio file + Size3194616 + Total Time84266 + Track Number13 + Track Count21 + Date Modified2011-11-19T17:54:11Z + Date Added2011-11-19T05:49:40Z + Bit Rate256 + Sample Rate44100 + Normalization409 + Artwork Count1 + Persistent IDAB219E69EBC3D5F9 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Louis%20Fre%CC%81maux_%20City%20Of%20Birmingham%20Symphony%20Orchestra/Carnival%20Of%20The%20Animals,%20Sympnony%20No%203/13%20Saint-Sae%CC%88ns_%20Carnival%20Of%20The%20Animals%20-%2012.%20Fossils.m4a + File Folder Count4 + Library Folder Count1 + + 9784 + + Track ID9784 + NameSaint-Saëns: Carnival Of The Animals - 13. The Swan + ArtistLouis Frémaux: City Of Birmingham Symphony Orchestra + ComposerCamille Saint-Saëns + AlbumCarnival Of The Animals, Sympnony No 3 + GenreClassical + KindAAC audio file + Size6903980 + Total Time194133 + Track Number14 + Track Count21 + Date Modified2011-11-19T17:54:12Z + Date Added2011-11-19T05:49:51Z + Bit Rate256 + Sample Rate44100 + Normalization40 + Artwork Count1 + Persistent IDC3761C6F6FFF83F3 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Louis%20Fre%CC%81maux_%20City%20Of%20Birmingham%20Symphony%20Orchestra/Carnival%20Of%20The%20Animals,%20Sympnony%20No%203/14%20Saint-Sae%CC%88ns_%20Carnival%20Of%20The%20Animals%20-%2013.%20The%20Swan.m4a + File Folder Count4 + Library Folder Count1 + + 9786 + + Track ID9786 + NameSaint-Saëns: Carnival Of The Animals - 14. Finale + ArtistLouis Frémaux: City Of Birmingham Symphony Orchestra + ComposerCamille Saint-Saëns + AlbumCarnival Of The Animals, Sympnony No 3 + GenreClassical + KindAAC audio file + Size4318628 + Total Time126226 + Track Number15 + Track Count21 + Date Modified2011-11-19T17:54:14Z + Date Added2011-11-19T05:50:15Z + Bit Rate256 + Sample Rate44100 + Normalization775 + Artwork Count1 + Persistent ID36FD748C946FBCA3 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Louis%20Fre%CC%81maux_%20City%20Of%20Birmingham%20Symphony%20Orchestra/Carnival%20Of%20The%20Animals,%20Sympnony%20No%203/15%20Saint-Sae%CC%88ns_%20Carnival%20Of%20The%20Animals%20-%2014.%20Finale.m4a + File Folder Count4 + Library Folder Count1 + + 9788 + + Track ID9788 + NameSaint-Saëns: Allegro Appassionato In B Minor, Op. 43 + ArtistPaul Tortelier; Louis Frémaux: City Of Birmingham Symphony Orchestra + ComposerCamille Saint-Saëns + AlbumCarnival Of The Animals, Sympnony No 3 + GenreClassical + KindAAC audio file + Size7935192 + Total Time236066 + Track Number16 + Track Count21 + Date Modified2011-11-19T17:54:15Z + Date Added2011-11-19T05:50:30Z + Bit Rate256 + Sample Rate44100 + Normalization884 + Artwork Count1 + Persistent ID5A3A386AAFCC2A77 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Paul%20Tortelier%3B%20Louis%20Fre%CC%81maux_%20City%20Of%20Birmingham%20Symphony%20Orchestra/Carnival%20Of%20The%20Animals,%20Sympnony%20No%203/16%20Saint-Sae%CC%88ns_%20Allegro%20Appassionato%20In%20B%20Minor,%20Op.%2043.m4a + File Folder Count4 + Library Folder Count1 + + 9790 + + Track ID9790 + NameSaint-Saëns: Symphony #3 In C Minor, Op. 78, "Organ" - 1A. Adagio, Allegro Moderato + ArtistChristopher Robinson; Louis Frémaux: City Of Birmingham Symphony Orchestra + ComposerCamille Saint-Saëns + AlbumCarnival Of The Animals, Sympnony No 3 + GenreClassical + KindAAC audio file + Size19652495 + Total Time579973 + Track Number17 + Track Count21 + Date Modified2011-11-19T17:54:18Z + Date Added2011-11-19T05:50:57Z + Bit Rate256 + Sample Rate44100 + Normalization767 + Artwork Count1 + Persistent ID37ED40CA87F7B750 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Christopher%20Robinson%3B%20Louis%20Fre%CC%81maux_%20City%20Of%20Birmingham%20Symphony%20Orchestra/Carnival%20Of%20The%20Animals,%20Sympnony%20No%203/17%20Saint-Sae%CC%88ns_%20Symphony%20%233%20In%20C%20Minor,%20Op.%2078,%20_Organ_%20-%201A.%20Adagio,%20Allegro%20Moderato.m4a + File Folder Count4 + Library Folder Count1 + + 9792 + + Track ID9792 + NameSaint-Saëns: Symphony #3 In C Minor, Op. 78, "Organ" - 1B. Poco Adagio + ArtistChristopher Robinson; Louis Frémaux: City Of Birmingham Symphony Orchestra + ComposerCamille Saint-Saëns + AlbumCarnival Of The Animals, Sympnony No 3 + GenreClassical + KindAAC audio file + Size19611936 + Total Time581026 + Track Number18 + Track Count21 + Date Modified2011-11-19T17:54:22Z + Date Added2011-11-19T05:51:58Z + Bit Rate256 + Sample Rate44100 + Normalization505 + Artwork Count1 + Persistent ID653CA59DAF88F2B4 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Christopher%20Robinson%3B%20Louis%20Fre%CC%81maux_%20City%20Of%20Birmingham%20Symphony%20Orchestra/Carnival%20Of%20The%20Animals,%20Sympnony%20No%203/18%20Saint-Sae%CC%88ns_%20Symphony%20%233%20In%20C%20Minor,%20Op.%2078,%20_Organ_%20-%201B.%20Poco%20Adagio.m4a + File Folder Count4 + Library Folder Count1 + + 9794 + + Track ID9794 + NameSaint-Saëns: Symphony #3 In C Minor, Op. 78, "Organ" - 2A. Allegro Moderato, Presto + ArtistChristopher Robinson; Louis Frémaux: City Of Birmingham Symphony Orchestra + ComposerCamille Saint-Saëns + AlbumCarnival Of The Animals, Sympnony No 3 + GenreClassical + KindAAC audio file + Size14981029 + Total Time443773 + Track Number19 + Track Count21 + Date Modified2011-11-19T17:54:24Z + Date Added2011-11-19T05:52:54Z + Bit Rate256 + Sample Rate44100 + Normalization420 + Artwork Count1 + Persistent ID8D91D9F6379C02B7 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Christopher%20Robinson%3B%20Louis%20Fre%CC%81maux_%20City%20Of%20Birmingham%20Symphony%20Orchestra/Carnival%20Of%20The%20Animals,%20Sympnony%20No%203/19%20Saint-Sae%CC%88ns_%20Symphony%20%233%20In%20C%20Minor,%20Op.%2078,%20_Organ_%20-%202A.%20Allegro%20Moderato,%20Presto.m4a + File Folder Count4 + Library Folder Count1 + + 9796 + + Track ID9796 + NameSymphony No 3 In C Min + ArtistCbso - Christopher Robinson + AlbumCarnival Of The Animals, Sympnony No 3 + GenreClassical + KindAAC audio file + Size15264026 + Total Time460293 + Track Number20 + Track Count21 + Date Modified2011-11-19T17:54:26Z + Date Added2011-11-19T05:53:35Z + Bit Rate256 + Sample Rate44100 + Normalization1094 + Artwork Count1 + Persistent ID8A97C07B2A61442F + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Cbso%20-%20Christopher%20Robinson/Carnival%20Of%20The%20Animals,%20Sympnony%20No%203/20%20Symphony%20No%203%20In%20C%20Min.m4a + File Folder Count4 + Library Folder Count1 + + 9798 + + Track ID9798 + NameSaint-Saëns: Samson Et Dalila, Op. 47 - Danse Bacchanale + ArtistGeorges Prêtre: Paris Opera Orchestra + ComposerCamille Saint-Saëns + AlbumCarnival Of The Animals, Sympnony No 3 + GenreClassical + KindAAC audio file + Size13709180 + Total Time404320 + Track Number21 + Track Count21 + Date Modified2011-11-19T17:54:28Z + Date Added2011-11-19T05:54:16Z + Bit Rate256 + Sample Rate44100 + Normalization1283 + Artwork Count1 + Persistent IDC87872481D945DD2 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Georges%20Pre%CC%82tre_%20Paris%20Opera%20Orchestra/Carnival%20Of%20The%20Animals,%20Sympnony%20No%203/21%20Saint-Sae%CC%88ns_%20Samson%20Et%20Dalila,%20Op.%2047%20-%20Danse%20Bacchanale.m4a + File Folder Count4 + Library Folder Count1 + + 9802 + + Track ID9802 + NameTuning + ArtistScott Tennant + Album ArtistAlfred Music Publishing Co., Inc. + AlbumPumping Nylon: Easy to Early Intermediate Repertoire + GenreClassical + KindMPEG audio file + Size3607620 + Total Time88215 + Disc Number1 + Disc Count1 + Track Number1 + Track Count37 + Year1998 + Date Modified2011-11-19T09:45:37Z + Date Added2011-11-19T09:31:17Z + Bit Rate256 + Sample Rate44100 + Normalization454 + Artwork Count1 + Persistent IDC3B4FB4D469B62AB + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Easy%20to%20Early%20Intermediate%20Repertoire/01%20Tuning.mp3 + File Folder Count4 + Library Folder Count1 + + 9804 + + Track ID9804 + NameDifferent Strokes (Tennant/Gunod) + ArtistScott Tennant + Album ArtistAlfred Music Publishing Co., Inc. + ComposerThe Tenants/Gunod + AlbumPumping Nylon: Easy to Early Intermediate Repertoire + GenreClassical + KindMPEG audio file + Size2298624 + Total Time47307 + Disc Number1 + Disc Count1 + Track Number2 + Track Count37 + Year1998 + Date Modified2011-11-19T09:45:38Z + Date Added2011-11-19T09:31:18Z + Bit Rate256 + Sample Rate44100 + Play Count6 + Play Date3409393155 + Play Date UTC2012-01-14T08:09:15Z + Normalization507 + Artwork Count1 + Sort ComposerTenants/Gunod + Persistent IDD52B5F4294A6626F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Easy%20to%20Early%20Intermediate%20Repertoire/02%20Different%20Strokes%20(Tennant_Gunod).mp3 + File Folder Count4 + Library Folder Count1 + + 9806 + + Track ID9806 + NameWalking (Tennant/Gunod) + ArtistScott Tennant + Album ArtistAlfred Music Publishing Co., Inc. + ComposerThe Tenants/Gunod + AlbumPumping Nylon: Easy to Early Intermediate Repertoire + GenreClassical + KindMPEG audio file + Size2332886 + Total Time48378 + Disc Number1 + Disc Count1 + Track Number3 + Track Count37 + Year1998 + Date Modified2011-11-19T09:45:38Z + Date Added2011-11-19T09:31:18Z + Bit Rate256 + Sample Rate44100 + Play Count5 + Play Date3409028206 + Play Date UTC2012-01-10T02:46:46Z + Normalization810 + Artwork Count1 + Sort ComposerTenants/Gunod + Persistent ID2830FC932D658927 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Easy%20to%20Early%20Intermediate%20Repertoire/03%20Walking%20(Tennant_Gunod).mp3 + File Folder Count4 + Library Folder Count1 + + 9808 + + Track ID9808 + NameOpus 44, #6 (Fernando Sor) + ArtistScott Tennant + Album ArtistAlfred Music Publishing Co., Inc. + ComposerFernando Sor + AlbumPumping Nylon: Easy to Early Intermediate Repertoire + GenreClassical + KindMPEG audio file + Size2437374 + Total Time51644 + Disc Number1 + Disc Count1 + Track Number4 + Track Count37 + Year1998 + Date Modified2011-11-19T09:45:38Z + Date Added2011-11-19T09:31:18Z + Bit Rate256 + Sample Rate44100 + Play Count4 + Play Date3409543436 + Play Date UTC2012-01-16T01:53:56Z + Normalization925 + Artwork Count1 + Persistent ID5EC016BCCE11C90F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Easy%20to%20Early%20Intermediate%20Repertoire/04%20Opus%2044,%20%236%20(Fernando%20Sor).mp3 + File Folder Count4 + Library Folder Count1 + + 9810 + + Track ID9810 + NameBit O' Nostalgia (Scott Tennant) + ArtistScott Tennant + Album ArtistAlfred Music Publishing Co., Inc. + ComposerScott Tennant + AlbumPumping Nylon: Easy to Early Intermediate Repertoire + GenreClassical + KindMPEG audio file + Size3025868 + Total Time70034 + Disc Number1 + Disc Count1 + Track Number5 + Track Count37 + Year1998 + Date Modified2011-11-19T09:45:39Z + Date Added2011-11-19T09:31:23Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3409028486 + Play Date UTC2012-01-10T02:51:26Z + Normalization950 + Artwork Count1 + Persistent ID4A02F51053BB74FD + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Easy%20to%20Early%20Intermediate%20Repertoire/05%20Bit%20O'%20Nostalgia%20(Scott%20Tennant).mp3 + File Folder Count4 + Library Folder Count1 + + 9812 + + Track ID9812 + NameBalancing Act (Scott Tennant) + ArtistScott Tennant + Album ArtistAlfred Music Publishing Co., Inc. + ComposerScott Tennant + AlbumPumping Nylon: Easy to Early Intermediate Repertoire + GenreClassical + KindMPEG audio file + Size4029803 + Total Time101407 + Disc Number1 + Disc Count1 + Track Number6 + Track Count37 + Year1998 + Date Modified2011-11-19T09:45:39Z + Date Added2011-11-19T09:31:25Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3409543622 + Play Date UTC2012-01-16T01:57:02Z + Normalization1004 + Artwork Count1 + Persistent IDB2E1A2B2DA1BF0C3 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Easy%20to%20Early%20Intermediate%20Repertoire/06%20Balancing%20Act%20(Scott%20Tennant).mp3 + File Folder Count4 + Library Folder Count1 + + 9814 + + Track ID9814 + NameSnowflight (Andrew York) + ArtistScott Tennant + Album ArtistAlfred Music Publishing Co., Inc. + ComposerAndrew York + AlbumPumping Nylon: Easy to Early Intermediate Repertoire + GenreClassical + KindMPEG audio file + Size4524659 + Total Time116871 + Disc Number1 + Disc Count1 + Track Number7 + Track Count37 + Year1998 + Date Modified2011-11-19T09:45:40Z + Date Added2011-11-19T09:31:27Z + Bit Rate256 + Sample Rate44100 + Play Count3 + Play Date3409393278 + Play Date UTC2012-01-14T08:11:18Z + Normalization648 + Artwork Count1 + Persistent ID34DADA41976D67B5 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Easy%20to%20Early%20Intermediate%20Repertoire/07%20Snowflight%20(Andrew%20York).mp3 + File Folder Count4 + Library Folder Count1 + + 9816 + + Track ID9816 + NameCrispin's Spin (Omid Zounfonoun) + ArtistScott Tennant + Album ArtistAlfred Music Publishing Co., Inc. + ComposerOmid Zounfonoun + AlbumPumping Nylon: Easy to Early Intermediate Repertoire + GenreClassical + KindMPEG audio file + Size2192459 + Total Time43990 + Disc Number1 + Disc Count1 + Track Number8 + Track Count37 + Year1998 + Date Modified2011-11-19T09:45:40Z + Date Added2011-11-19T09:31:30Z + Bit Rate256 + Sample Rate44100 + Normalization724 + Artwork Count1 + Persistent ID7CE2D6C53700FE1A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Easy%20to%20Early%20Intermediate%20Repertoire/08%20Crispin's%20Spin%20(Omid%20Zounfonoun).mp3 + File Folder Count4 + Library Folder Count1 + + 9818 + + Track ID9818 + NameEstudio #2 (Francisco Tarrega) + ArtistScott Tennant + Album ArtistAlfred Music Publishing Co., Inc. + ComposerFrancisco Tárrega + AlbumPumping Nylon: Easy to Early Intermediate Repertoire + GenreClassical + KindMPEG audio file + Size3021690 + Total Time69903 + Disc Number1 + Disc Count1 + Track Number9 + Track Count37 + Year1998 + Date Modified2011-11-19T09:45:40Z + Date Added2011-11-19T09:31:33Z + Bit Rate256 + Sample Rate44100 + Normalization598 + Artwork Count1 + Persistent ID3635A4A64B022337 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Easy%20to%20Early%20Intermediate%20Repertoire/09%20Estudio%20%232%20(Francisco%20Tarrega).mp3 + File Folder Count4 + Library Folder Count1 + + 9820 + + Track ID9820 + NameEtude #19 (Matteo Carcassi) + ArtistScott Tennant + Album ArtistAlfred Music Publishing Co., Inc. + ComposerMatteo Carcassi + AlbumPumping Nylon: Easy to Early Intermediate Repertoire + GenreClassical + KindMPEG audio file + Size5045444 + Total Time133146 + Disc Number1 + Disc Count1 + Track Number10 + Track Count37 + Year1998 + Date Modified2011-11-19T09:45:41Z + Date Added2011-11-19T09:31:38Z + Bit Rate256 + Sample Rate44100 + Normalization732 + Artwork Count1 + Persistent IDF719D6B855C5E8D3 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Easy%20to%20Early%20Intermediate%20Repertoire/10%20Etude%20%2319%20(Matteo%20Carcassi).mp3 + File Folder Count4 + Library Folder Count1 + + 9822 + + Track ID9822 + NameOp. 35, #18 (Fernando Sor) + ArtistScott Tennant + Album ArtistAlfred Music Publishing Co., Inc. + ComposerFernando Sor + AlbumPumping Nylon: Easy to Early Intermediate Repertoire + GenreClassical + KindMPEG audio file + Size3193045 + Total Time75258 + Disc Number1 + Disc Count1 + Track Number11 + Track Count37 + Year1998 + Date Modified2011-11-19T09:45:41Z + Date Added2011-11-19T09:31:43Z + Bit Rate256 + Sample Rate44100 + Normalization585 + Artwork Count1 + Persistent IDF4D195E4642EF6AA + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Easy%20to%20Early%20Intermediate%20Repertoire/11%20Op.%2035,%20%2318%20(Fernando%20Sor).mp3 + File Folder Count4 + Library Folder Count1 + + 9824 + + Track ID9824 + NameScore Study (Sor/Tennant) + ArtistScott Tennant + Album ArtistAlfred Music Publishing Co., Inc. + ComposerThe Tenants/Sor + AlbumPumping Nylon: Easy to Early Intermediate Repertoire + GenreClassical + KindMPEG audio file + Size3103604 + Total Time72463 + Disc Number1 + Disc Count1 + Track Number12 + Track Count37 + Year1998 + Date Modified2011-11-19T09:45:42Z + Date Added2011-11-19T09:31:45Z + Bit Rate256 + Sample Rate44100 + Normalization989 + Artwork Count1 + Sort ComposerTenants/Sor + Persistent IDCCFCD2FCF617E6AE + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Easy%20to%20Early%20Intermediate%20Repertoire/12%20Score%20Study%20(Sor_Tennant).mp3 + File Folder Count4 + Library Folder Count1 + + 9826 + + Track ID9826 + NameOpus 60, #18 (Fernando Sor) + ArtistScott Tennant + Album ArtistAlfred Music Publishing Co., Inc. + ComposerFernando Sor + AlbumPumping Nylon: Easy to Early Intermediate Repertoire + GenreClassical + KindMPEG audio file + Size3594287 + Total Time87797 + Disc Number1 + Disc Count1 + Track Number13 + Track Count37 + Year1998 + Date Modified2011-11-19T09:45:42Z + Date Added2011-11-19T09:31:48Z + Bit Rate256 + Sample Rate44100 + Normalization809 + Artwork Count1 + Persistent ID8C512ADDA1E1B5B5 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Easy%20to%20Early%20Intermediate%20Repertoire/13%20Opus%2060,%20%2318%20(Fernando%20Sor).mp3 + File Folder Count4 + Library Folder Count1 + + 9828 + + Track ID9828 + NameOpus 60, #24 (Fernando Sor) + ArtistScott Tennant + Album ArtistAlfred Music Publishing Co., Inc. + ComposerFernando Sor + AlbumPumping Nylon: Easy to Early Intermediate Repertoire + GenreClassical + KindMPEG audio file + Size3804103 + Total Time94354 + Disc Number1 + Disc Count1 + Track Number14 + Track Count37 + Year1998 + Date Modified2011-11-19T09:45:43Z + Date Added2011-11-19T09:31:54Z + Bit Rate256 + Sample Rate44100 + Normalization905 + Artwork Count1 + Persistent ID77C571EF0857BC65 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Easy%20to%20Early%20Intermediate%20Repertoire/14%20Opus%2060,%20%2324%20(Fernando%20Sor).mp3 + File Folder Count4 + Library Folder Count1 + + 9830 + + Track ID9830 + NameMalaguena (Arr. Tennant) + ArtistScott Tennant + Album ArtistAlfred Music Publishing Co., Inc. + AlbumPumping Nylon: Easy to Early Intermediate Repertoire + GenreClassical + KindMPEG audio file + Size4441049 + Total Time114259 + Disc Number1 + Disc Count1 + Track Number15 + Track Count37 + Year1998 + Date Modified2011-11-19T09:45:43Z + Date Added2011-11-19T09:31:54Z + Bit Rate256 + Sample Rate44100 + Normalization1053 + Artwork Count1 + Persistent IDE080B63914BE444C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Easy%20to%20Early%20Intermediate%20Repertoire/15%20Malaguena%20(Arr.%20Tennant).mp3 + File Folder Count4 + Library Folder Count1 + + 9832 + + Track ID9832 + NameEtude #13 (Matteo Carcassi) + ArtistScott Tennant + Album ArtistAlfred Music Publishing Co., Inc. + ComposerMatteo Carcassi + AlbumPumping Nylon: Easy to Early Intermediate Repertoire + GenreClassical + KindMPEG audio file + Size4845660 + Total Time126902 + Disc Number1 + Disc Count1 + Track Number16 + Track Count37 + Year1998 + Date Modified2011-11-19T09:45:44Z + Date Added2011-11-19T09:31:58Z + Bit Rate256 + Sample Rate44100 + Normalization641 + Artwork Count1 + Persistent IDC4AB85C47A1D2876 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Easy%20to%20Early%20Intermediate%20Repertoire/16%20Etude%20%2313%20(Matteo%20Carcassi).mp3 + File Folder Count4 + Library Folder Count1 + + 9834 + + Track ID9834 + NameEtude #7 (Matteo Carcassi) + ArtistScott Tennant + Album ArtistAlfred Music Publishing Co., Inc. + ComposerMatteo Carcassi + AlbumPumping Nylon: Easy to Early Intermediate Repertoire + GenreClassical + KindMPEG audio file + Size6252510 + Total Time170866 + Disc Number1 + Disc Count1 + Track Number17 + Track Count37 + Year1998 + Date Modified2011-11-19T09:45:45Z + Date Added2011-11-19T09:32:01Z + Bit Rate256 + Sample Rate44100 + Normalization772 + Artwork Count1 + Persistent ID83F2DA0F5343F550 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Easy%20to%20Early%20Intermediate%20Repertoire/17%20Etude%20%237%20(Matteo%20Carcassi).mp3 + File Folder Count4 + Library Folder Count1 + + 9836 + + Track ID9836 + NameLittle Landler (Skot Tennant) + ArtistScott Tennant + Album ArtistAlfred Music Publishing Co., Inc. + ComposerScott Tennant + AlbumPumping Nylon: Easy to Early Intermediate Repertoire + GenreClassical + KindMPEG audio file + Size4921729 + Total Time129280 + Disc Number1 + Disc Count1 + Track Number18 + Track Count37 + Year1998 + Date Modified2011-11-19T09:45:45Z + Date Added2011-11-19T09:32:05Z + Bit Rate256 + Sample Rate44100 + Normalization510 + Artwork Count1 + Persistent ID463981347E261999 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Easy%20to%20Early%20Intermediate%20Repertoire/18%20Little%20Landler%20(Skot%20Tennant).mp3 + File Folder Count4 + Library Folder Count1 + + 9838 + + Track ID9838 + NameEtude #2 (Matteo Carcassi) + ArtistScott Tennant + Album ArtistAlfred Music Publishing Co., Inc. + ComposerMatteo Carcassi + AlbumPumping Nylon: Easy to Early Intermediate Repertoire + GenreClassical + KindMPEG audio file + Size4250485 + Total Time108303 + Disc Number1 + Disc Count1 + Track Number19 + Track Count37 + Year1998 + Date Modified2011-11-19T09:45:46Z + Date Added2011-11-19T09:32:09Z + Bit Rate256 + Sample Rate44100 + Normalization759 + Artwork Count1 + Persistent IDE56848608CB208D7 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Easy%20to%20Early%20Intermediate%20Repertoire/19%20Etude%20%232%20(Matteo%20Carcassi).mp3 + File Folder Count4 + Library Folder Count1 + + 9840 + + Track ID9840 + NameTwo Studies: Etude #12 (Fransisco Terrega) + ArtistScott Tennant + Album ArtistAlfred Music Publishing Co., Inc. + ComposerFrancisco Tárrega + AlbumPumping Nylon: Easy to Early Intermediate Repertoire + GenreClassical + KindMPEG audio file + Size1813801 + Total Time32156 + Disc Number1 + Disc Count1 + Track Number20 + Track Count37 + Year1998 + Date Modified2011-11-19T09:45:46Z + Date Added2011-11-19T09:32:14Z + Bit Rate256 + Sample Rate44100 + Normalization319 + Artwork Count1 + Persistent IDF7B3C686F2AF9E5F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Easy%20to%20Early%20Intermediate%20Repertoire/20%20Two%20Studies_%20Etude%20%2312%20(Fransisco%20Terrega).mp3 + File Folder Count4 + Library Folder Count1 + + 9842 + + Track ID9842 + NameTwo Studies: Etude #3 (Fransisco Terrega) + ArtistScott Tennant + Album ArtistAlfred Music Publishing Co., Inc. + ComposerFrancisco Tárrega + AlbumPumping Nylon: Easy to Early Intermediate Repertoire + GenreClassical + KindMPEG audio file + Size2532690 + Total Time54622 + Disc Number1 + Disc Count1 + Track Number21 + Track Count37 + Year1998 + Date Modified2011-11-19T09:45:47Z + Date Added2011-11-19T09:32:19Z + Bit Rate256 + Sample Rate44100 + Normalization525 + Artwork Count1 + Persistent ID80E51BF7B375AD95 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Easy%20to%20Early%20Intermediate%20Repertoire/21%20Two%20Studies_%20Etude%20%233%20(Fransisco%20Terrega).mp3 + File Folder Count4 + Library Folder Count1 + + 9844 + + Track ID9844 + NameEtude #6 (Matteo Carcassi) + ArtistScott Tennant + Album ArtistAlfred Music Publishing Co., Inc. + ComposerMatteo Carcassi + AlbumPumping Nylon: Easy to Early Intermediate Repertoire + GenreClassical + KindMPEG audio file + Size4444418 + Total Time114364 + Disc Number1 + Disc Count1 + Track Number22 + Track Count37 + Year1998 + Date Modified2011-11-19T09:45:47Z + Date Added2011-11-19T09:32:26Z + Bit Rate256 + Sample Rate44100 + Normalization1113 + Artwork Count1 + Persistent IDAE853A8AED0A1CB2 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Easy%20to%20Early%20Intermediate%20Repertoire/22%20Etude%20%236%20(Matteo%20Carcassi).mp3 + File Folder Count4 + Library Folder Count1 + + 9846 + + Track ID9846 + NameEtude #12 (Matteo Carcassi) + ArtistScott Tennant + Album ArtistAlfred Music Publishing Co., Inc. + ComposerMatteo Carcassi + AlbumPumping Nylon: Easy to Early Intermediate Repertoire + GenreClassical + KindMPEG audio file + Size5837895 + Total Time157910 + Disc Number1 + Disc Count1 + Track Number23 + Track Count37 + Year1998 + Date Modified2011-11-19T09:45:48Z + Date Added2011-11-19T09:32:26Z + Bit Rate256 + Sample Rate44100 + Normalization569 + Artwork Count1 + Persistent IDEDECF30659D03FB0 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Easy%20to%20Early%20Intermediate%20Repertoire/23%20Etude%20%2312%20(Matteo%20Carcassi).mp3 + File Folder Count4 + Library Folder Count1 + + 9848 + + Track ID9848 + NameOpus 6, Studio 4 (Fernando Sor) + ArtistScott Tennant + Album ArtistAlfred Music Publishing Co., Inc. + ComposerFernando Sor + AlbumPumping Nylon: Easy to Early Intermediate Repertoire + GenreClassical + KindMPEG audio file + Size5723375 + Total Time154331 + Disc Number1 + Disc Count1 + Track Number24 + Track Count37 + Year1998 + Date Modified2011-11-19T09:45:50Z + Date Added2011-11-19T09:32:31Z + Bit Rate256 + Sample Rate44100 + Normalization1079 + Artwork Count1 + Persistent IDDC3663A49966769A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Easy%20to%20Early%20Intermediate%20Repertoire/24%20Opus%206,%20Studio%204%20(Fernando%20Sor).mp3 + File Folder Count4 + Library Folder Count1 + + 9850 + + Track ID9850 + NameOpus 35, #19 (Fernando Sor) + ArtistScott Tennant + Album ArtistAlfred Music Publishing Co., Inc. + ComposerFernando Sor + AlbumPumping Nylon: Easy to Early Intermediate Repertoire + GenreClassical + KindMPEG audio file + Size3675371 + Total Time90331 + Disc Number1 + Disc Count1 + Track Number25 + Track Count37 + Year1998 + Date Modified2011-11-19T09:45:50Z + Date Added2011-11-19T09:32:35Z + Bit Rate256 + Sample Rate44100 + Normalization806 + Artwork Count1 + Persistent IDCE553EF7B97B2F92 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Easy%20to%20Early%20Intermediate%20Repertoire/25%20Opus%2035,%20%2319%20(Fernando%20Sor).mp3 + File Folder Count4 + Library Folder Count1 + + 9852 + + Track ID9852 + NameStudio De Campanelas Su Un Tema Della "Folia" Di M. De Fossa (Fransisco Tarrega + ArtistScott Tennant + Album ArtistAlfred Music Publishing Co., Inc. + ComposerFrancisco Tárrega + AlbumPumping Nylon: Easy to Early Intermediate Repertoire + GenreClassical + KindMPEG audio file + Size1793776 + Total Time31529 + Disc Number1 + Disc Count1 + Track Number26 + Track Count37 + Year1998 + Date Modified2011-11-19T09:45:50Z + Date Added2011-11-19T09:32:37Z + Bit Rate256 + Sample Rate44100 + Normalization765 + Artwork Count1 + Persistent ID5CE3C08C8FC66645 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Easy%20to%20Early%20Intermediate%20Repertoire/26%20Studio%20De%20Campanelas%20Su%20Un%20Tema%20Della%20_Folia_%20Di%20M.%20De%20Fossa%20(Fransisco%20Tarrega.mp3 + File Folder Count4 + Library Folder Count1 + + 9854 + + Track ID9854 + Name3 Pavans: Pavan #1 (Luis Milan) + ArtistScott Tennant + Album ArtistAlfred Music Publishing Co., Inc. + ComposerLuis Milan + AlbumPumping Nylon: Easy to Early Intermediate Repertoire + GenreClassical + KindMPEG audio file + Size3468065 + Total Time83853 + Disc Number1 + Disc Count1 + Track Number27 + Track Count37 + Year1998 + Date Modified2011-11-19T09:45:51Z + Date Added2011-11-19T09:32:39Z + Bit Rate256 + Sample Rate44100 + Normalization832 + Artwork Count1 + Persistent ID2EA4ADA897B8B248 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Easy%20to%20Early%20Intermediate%20Repertoire/27%203%20Pavans_%20Pavan%20%231%20(Luis%20Milan).mp3 + File Folder Count4 + Library Folder Count1 + + 9856 + + Track ID9856 + Name3 Pavans: Pavan #2 (Luis Milan) + ArtistScott Tennant + Album ArtistAlfred Music Publishing Co., Inc. + ComposerLuis Milan + AlbumPumping Nylon: Easy to Early Intermediate Repertoire + GenreClassical + KindMPEG audio file + Size4222064 + Total Time107415 + Disc Number1 + Disc Count1 + Track Number28 + Track Count37 + Year1998 + Date Modified2011-11-19T09:45:51Z + Date Added2011-11-19T09:32:44Z + Bit Rate256 + Sample Rate44100 + Normalization1011 + Artwork Count1 + Persistent ID9E3B833719AED05C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Easy%20to%20Early%20Intermediate%20Repertoire/28%203%20Pavans_%20Pavan%20%232%20(Luis%20Milan).mp3 + File Folder Count4 + Library Folder Count1 + + 9858 + + Track ID9858 + Name3 Pavans: Pavan #3 (Luis Milan) + ArtistScott Tennant + Album ArtistAlfred Music Publishing Co., Inc. + ComposerLuis Milan + AlbumPumping Nylon: Easy to Early Intermediate Repertoire + GenreClassical + KindMPEG audio file + Size4224572 + Total Time107493 + Disc Number1 + Disc Count1 + Track Number29 + Track Count37 + Year1998 + Date Modified2011-11-19T09:45:52Z + Date Added2011-11-19T09:32:50Z + Bit Rate256 + Sample Rate44100 + Normalization1033 + Artwork Count1 + Persistent IDB9D7A5AEBFB76104 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Easy%20to%20Early%20Intermediate%20Repertoire/29%203%20Pavans_%20Pavan%20%233%20(Luis%20Milan).mp3 + File Folder Count4 + Library Folder Count1 + + 9860 + + Track ID9860 + NameOpus 44, #8 (Fernando Sor) + ArtistScott Tennant + Album ArtistAlfred Music Publishing Co., Inc. + ComposerFernando Sor + AlbumPumping Nylon: Easy to Early Intermediate Repertoire + GenreClassical + KindMPEG audio file + Size3052611 + Total Time70870 + Disc Number1 + Disc Count1 + Track Number30 + Track Count37 + Year1998 + Date Modified2011-11-19T09:45:52Z + Date Added2011-11-19T09:32:50Z + Bit Rate256 + Sample Rate44100 + Normalization805 + Artwork Count1 + Persistent ID3126EF8039429B4F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Easy%20to%20Early%20Intermediate%20Repertoire/30%20Opus%2044,%20%238%20(Fernando%20Sor).mp3 + File Folder Count4 + Library Folder Count1 + + 9862 + + Track ID9862 + NameExercise In 3rds (Mauro Giuliant) + ArtistScott Tennant + Album ArtistAlfred Music Publishing Co., Inc. + ComposerMauro Giuliani + AlbumPumping Nylon: Easy to Early Intermediate Repertoire + GenreClassical + KindMPEG audio file + Size2713237 + Total Time60264 + Disc Number1 + Disc Count1 + Track Number31 + Track Count37 + Year1998 + Date Modified2011-11-19T09:45:52Z + Date Added2011-11-19T09:32:56Z + Bit Rate256 + Sample Rate44100 + Normalization937 + Artwork Count1 + Persistent ID3B46B8D38AF6B85D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Easy%20to%20Early%20Intermediate%20Repertoire/31%20Exercise%20In%203rds%20(Mauro%20Giuliant).mp3 + File Folder Count4 + Library Folder Count1 + + 9864 + + Track ID9864 + NameExercise In 6ths (Mauro Giuliant) + ArtistScott Tennant + Album ArtistAlfred Music Publishing Co., Inc. + ComposerMauro Giuliani + AlbumPumping Nylon: Easy to Early Intermediate Repertoire + GenreClassical + KindMPEG audio file + Size2514289 + Total Time54047 + Disc Number1 + Disc Count1 + Track Number32 + Track Count37 + Year1998 + Date Modified2011-11-19T09:45:53Z + Date Added2011-11-19T09:32:56Z + Bit Rate256 + Sample Rate44100 + Normalization466 + Artwork Count1 + Persistent ID851DB90909202F05 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Easy%20to%20Early%20Intermediate%20Repertoire/32%20Exercise%20In%206ths%20(Mauro%20Giuliant).mp3 + File Folder Count4 + Library Folder Count1 + + 9866 + + Track ID9866 + NameOpus 35, #5 (Fernando Sor) + ArtistScott Tennant + Album ArtistAlfred Music Publishing Co., Inc. + ComposerFernando Sor + AlbumPumping Nylon: Easy to Early Intermediate Repertoire + GenreClassical + KindMPEG audio file + Size5027886 + Total Time132597 + Disc Number1 + Disc Count1 + Track Number33 + Track Count37 + Year1998 + Date Modified2011-11-19T09:45:53Z + Date Added2011-11-19T09:33:00Z + Bit Rate256 + Sample Rate44100 + Normalization530 + Artwork Count1 + Persistent ID597C6A3877E39EC1 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Easy%20to%20Early%20Intermediate%20Repertoire/33%20Opus%2035,%20%235%20(Fernando%20Sor).mp3 + File Folder Count4 + Library Folder Count1 + + 9868 + + Track ID9868 + NameSlur Study (Mauro Giuliant) + ArtistScott Tennant + Album ArtistAlfred Music Publishing Co., Inc. + ComposerMauro Giuliani + AlbumPumping Nylon: Easy to Early Intermediate Repertoire + GenreClassical + KindMPEG audio file + Size2296108 + Total Time47229 + Disc Number1 + Disc Count1 + Track Number34 + Track Count37 + Year1998 + Date Modified2011-11-19T09:45:54Z + Date Added2011-11-19T09:33:01Z + Bit Rate256 + Sample Rate44100 + Normalization914 + Artwork Count1 + Persistent ID438AE8E8C06E2168 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Easy%20to%20Early%20Intermediate%20Repertoire/34%20Slur%20Study%20(Mauro%20Giuliant).mp3 + File Folder Count4 + Library Folder Count1 + + 9870 + + Track ID9870 + NameOpus 31, Lecon XV (Fernando Sor) + ArtistScott Tennant + Album ArtistAlfred Music Publishing Co., Inc. + ComposerFernando Sor + AlbumPumping Nylon: Easy to Early Intermediate Repertoire + GenreClassical + KindMPEG audio file + Size3605159 + Total Time88137 + Disc Number1 + Disc Count1 + Track Number35 + Track Count37 + Year1998 + Date Modified2011-11-19T09:45:54Z + Date Added2011-11-19T09:33:05Z + Bit Rate256 + Sample Rate44100 + Normalization920 + Artwork Count1 + Persistent IDE11874FFFD503B6E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Easy%20to%20Early%20Intermediate%20Repertoire/35%20Opus%2031,%20Lecon%20XV%20(Fernando%20Sor).mp3 + File Folder Count4 + Library Folder Count1 + + 9872 + + Track ID9872 + NameOpus 31, Lecon XII (Fernando Sor) + ArtistScott Tennant + Album ArtistAlfred Music Publishing Co., Inc. + ComposerFernando Sor + AlbumPumping Nylon: Easy to Early Intermediate Repertoire + GenreClassical + KindMPEG audio file + Size8157572 + Total Time230400 + Disc Number1 + Disc Count1 + Track Number36 + Track Count37 + Year1998 + Date Modified2011-11-19T09:45:55Z + Date Added2011-11-19T09:33:09Z + Bit Rate256 + Sample Rate44100 + Normalization1106 + Artwork Count1 + Persistent IDE10A549AC92B40AC + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Easy%20to%20Early%20Intermediate%20Repertoire/36%20Opus%2031,%20Lecon%20XII%20(Fernando%20Sor).mp3 + File Folder Count4 + Library Folder Count1 + + 9874 + + Track ID9874 + NameA Pale View (David Pritchard) + ArtistScott Tennant + Album ArtistAlfred Music Publishing Co., Inc. + ComposerDavid Pritchard + AlbumPumping Nylon: Easy to Early Intermediate Repertoire + GenreClassical + KindMPEG audio file + Size5646472 + Total Time151928 + Disc Number1 + Disc Count1 + Track Number37 + Track Count37 + Year1998 + Date Modified2011-11-19T09:45:56Z + Date Added2011-11-19T09:33:13Z + Bit Rate256 + Sample Rate44100 + Normalization533 + Artwork Count1 + Sort NamePale View (David Pritchard) + Persistent IDF8710002FF9BE9FD + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Easy%20to%20Early%20Intermediate%20Repertoire/37%20A%20Pale%20View%20(David%20Pritchard).mp3 + File Folder Count4 + Library Folder Count1 + + 9876 + + Track ID9876 + NameThe Frog Galliard + ArtistScott Tennant + Album ArtistAlfred Music Publishing Co., Inc. + ComposerJohn Dowland + AlbumPumping Nylon: Intermediate To Advanced Repertoire + GenreClassical + KindMPEG audio file + Size5001961 + Total Time131787 + Disc Number1 + Disc Count1 + Track Number1 + Track Count13 + Year1999 + Date Modified2011-11-19T09:45:57Z + Date Added2011-11-19T09:33:15Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3404560637 + Play Date UTC2011-11-19T09:47:17Z + Normalization1124 + Artwork Count1 + Sort NameFrog Galliard + Persistent ID4C0860C8B18A78EF + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Intermediate%20To%20Advanced%20Repertoire/01%20The%20Frog%20Galliard.mp3 + File Folder Count4 + Library Folder Count1 + + 9878 + + Track ID9878 + NameFantasia #18 + ArtistScott Tennant + Album ArtistAlfred Music Publishing Co., Inc. + ComposerLuys Milán + AlbumPumping Nylon: Intermediate To Advanced Repertoire + GenreClassical + KindMPEG audio file + Size6605245 + Total Time181890 + Disc Number1 + Disc Count1 + Track Number2 + Track Count13 + Year1999 + Date Modified2011-11-19T09:45:58Z + Date Added2011-11-19T09:33:18Z + Bit Rate256 + Sample Rate44100 + Normalization1025 + Artwork Count1 + Persistent ID9F85B6D27BCA29EB + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Intermediate%20To%20Advanced%20Repertoire/02%20Fantasia%20%2318.mp3 + File Folder Count4 + Library Folder Count1 + + 9880 + + Track ID9880 + NameFantasia #16 + ArtistScott Tennant + Album ArtistAlfred Music Publishing Co., Inc. + ComposerLuys Milán + AlbumPumping Nylon: Intermediate To Advanced Repertoire + GenreClassical + KindMPEG audio file + Size6041000 + Total Time164257 + Disc Number1 + Disc Count1 + Track Number3 + Track Count13 + Year1999 + Date Modified2011-11-19T09:45:59Z + Date Added2011-11-19T09:33:20Z + Bit Rate256 + Sample Rate44100 + Normalization1103 + Artwork Count1 + Persistent IDE682746F900B6759 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Intermediate%20To%20Advanced%20Repertoire/03%20Fantasia%20%2316.mp3 + File Folder Count4 + Library Folder Count1 + + 9882 + + Track ID9882 + NameVeintidos Diferencias De Conde Claros + ArtistScott Tennant + Album ArtistAlfred Music Publishing Co., Inc. + ComposerLuis De Narváez + AlbumPumping Nylon: Intermediate To Advanced Repertoire + GenreClassical + KindMPEG audio file + Size6526699 + Total Time179435 + Disc Number1 + Disc Count1 + Track Number4 + Track Count13 + Year1999 + Date Modified2011-11-19T09:46:00Z + Date Added2011-11-19T09:33:25Z + Bit Rate256 + Sample Rate44100 + Normalization1048 + Artwork Count1 + Persistent IDF4A9022EEE7A5A34 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Intermediate%20To%20Advanced%20Repertoire/04%20Veintidos%20Diferencias%20De%20Conde%20Claros.mp3 + File Folder Count4 + Library Folder Count1 + + 9884 + + Track ID9884 + NameVariations Sur Les "Folies d'Espagne" - Thema + ArtistScott Tennant + Album ArtistAlfred Music Publishing Co., Inc. + ComposerMauro Giulliani + AlbumPumping Nylon: Intermediate To Advanced Repertoire + GenreClassical + KindMPEG audio file + Size9871216 + Total Time283951 + Disc Number1 + Disc Count1 + Track Number5 + Track Count13 + Year1999 + Date Modified2011-11-19T09:46:01Z + Date Added2011-11-19T09:33:27Z + Bit Rate256 + Sample Rate44100 + Normalization1100 + Artwork Count1 + Persistent ID5BF1509E3BDAEC5F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Intermediate%20To%20Advanced%20Repertoire/05%20Variations%20Sur%20Les%20_Folies%20d'Espagne_%20-%20Thema.mp3 + File Folder Count4 + Library Folder Count1 + + 9886 + + Track ID9886 + NameEtude #11 + ArtistScott Tennant + Album ArtistAlfred Music Publishing Co., Inc. + ComposerNapoléon Coste + AlbumPumping Nylon: Intermediate To Advanced Repertoire + GenreClassical + KindMPEG audio file + Size3004110 + Total Time69355 + Disc Number1 + Disc Count1 + Track Number6 + Track Count13 + Year1999 + Date Modified2011-11-19T09:46:02Z + Date Added2011-11-19T09:33:30Z + Bit Rate256 + Sample Rate44100 + Normalization1085 + Artwork Count1 + Persistent ID7A5D84696715B8D7 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Intermediate%20To%20Advanced%20Repertoire/06%20Etude%20%2311.mp3 + File Folder Count4 + Library Folder Count1 + + 9888 + + Track ID9888 + NameFantasia Original + ArtistScott Tennant + Album ArtistAlfred Music Publishing Co., Inc. + ComposerJoes Vinas + AlbumPumping Nylon: Intermediate To Advanced Repertoire + GenreClassical + KindMPEG audio file + Size11313979 + Total Time329038 + Disc Number1 + Disc Count1 + Track Number7 + Track Count13 + Year1999 + Date Modified2011-11-19T09:46:03Z + Date Added2011-11-19T09:33:37Z + Bit Rate256 + Sample Rate44100 + Normalization1144 + Artwork Count1 + Persistent ID7073A796D1A8D497 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Intermediate%20To%20Advanced%20Repertoire/07%20Fantasia%20Original.mp3 + File Folder Count4 + Library Folder Count1 + + 9890 + + Track ID9890 + NameRasgueado Exercise In Solea + ArtistAdam Del Monte + Album ArtistAlfred Music Publishing Co., Inc. + ComposerAdam Del Monte + AlbumPumping Nylon: Intermediate To Advanced Repertoire + GenreClassical + KindMPEG audio file + Size3109405 + Total Time97097 + Disc Number1 + Disc Count1 + Track Number8 + Track Count13 + Year1999 + Date Modified2010-06-30T12:49:08Z + Date Added2011-11-19T09:33:38Z + Bit Rate256 + Sample Rate44100 + Normalization1150 + Persistent ID24ABE177584F317C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Intermediate%20To%20Advanced%20Repertoire/08%20Rasgueado%20Exercise%20In%20Solea.mp3 + File Folder Count4 + Library Folder Count1 + + 9892 + + Track ID9892 + NameAlzapua And Thumb Study In Solea + ArtistAdam Del Monte + Album ArtistAlfred Music Publishing Co., Inc. + ComposerAdam Del Monte + AlbumPumping Nylon: Intermediate To Advanced Repertoire + GenreClassical + KindMPEG audio file + Size3109410 + Total Time97097 + Disc Number1 + Disc Count1 + Track Number9 + Track Count13 + Year1999 + Date Modified2010-06-30T12:49:08Z + Date Added2011-11-19T09:33:44Z + Bit Rate256 + Sample Rate44100 + Normalization1148 + Persistent IDB5DC341F6F202C22 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Intermediate%20To%20Advanced%20Repertoire/09%20Alzapua%20And%20Thumb%20Study%20In%20Solea.mp3 + File Folder Count4 + Library Folder Count1 + + 9894 + + Track ID9894 + NameInspired By Villa-Lobos Etude #1 + ArtistScott Tennant + Album ArtistAlfred Music Publishing Co., Inc. + ComposerJoe Diorio + AlbumPumping Nylon: Intermediate To Advanced Repertoire + GenreClassical + KindMPEG audio file + Size5491823 + Total Time147095 + Disc Number1 + Disc Count1 + Track Number10 + Track Count13 + Year1999 + Date Modified2011-11-19T09:46:04Z + Date Added2011-11-19T09:33:44Z + Bit Rate256 + Sample Rate44100 + Normalization884 + Artwork Count1 + Persistent ID6F1E9A30FF308F94 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Intermediate%20To%20Advanced%20Repertoire/10%20Inspired%20By%20Villa-Lobos%20Etude%20%231.mp3 + File Folder Count4 + Library Folder Count1 + + 9896 + + Track ID9896 + NameStudy #1 + ArtistScott Tennant + Album ArtistAlfred Music Publishing Co., Inc. + ComposerCarlos Rafael Rivera + AlbumPumping Nylon: Intermediate To Advanced Repertoire + GenreClassical + KindMPEG audio file + Size3107770 + Total Time72594 + Disc Number1 + Disc Count1 + Track Number11 + Track Count13 + Year1999 + Date Modified2011-11-19T09:46:04Z + Date Added2011-11-19T09:33:48Z + Bit Rate256 + Sample Rate44100 + Normalization1183 + Artwork Count1 + Persistent IDB7377AF9B06DDCBA + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Intermediate%20To%20Advanced%20Repertoire/11%20Study%20%231.mp3 + File Folder Count4 + Library Folder Count1 + + 9898 + + Track ID9898 + NamePlainte + ArtistScott Tennant + Album ArtistAlfred Music Publishing Co., Inc. + ComposerBrian Head + AlbumPumping Nylon: Intermediate To Advanced Repertoire + GenreClassical + KindMPEG audio file + Size10117770 + Total Time291657 + Disc Number1 + Disc Count1 + Track Number12 + Track Count13 + Year1999 + Date Modified2011-11-19T09:46:06Z + Date Added2011-11-19T09:33:49Z + Bit Rate256 + Sample Rate44100 + Normalization887 + Artwork Count1 + Persistent ID1B7C7E26F1322790 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Intermediate%20To%20Advanced%20Repertoire/12%20Plainte.mp3 + File Folder Count4 + Library Folder Count1 + + 9900 + + Track ID9900 + NameConcierto De Aranjuez - Cadenza + ArtistScott Tennant + Album ArtistAlfred Music Publishing Co., Inc. + ComposerJoaquín Rodrigo + AlbumPumping Nylon: Intermediate To Advanced Repertoire + GenreClassical + KindMPEG audio file + Size4722782 + Total Time123062 + Disc Number1 + Disc Count1 + Track Number13 + Track Count13 + Year1999 + Date Modified2011-11-19T09:46:06Z + Date Added2011-11-19T09:33:55Z + Bit Rate256 + Sample Rate44100 + Normalization1066 + Artwork Count1 + Persistent ID9D65234D082D2BF1 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Intermediate%20To%20Advanced%20Repertoire/13%20Concierto%20De%20Aranjuez%20-%20Cadenza.mp3 + File Folder Count4 + Library Folder Count1 + + 9902 + + Track ID9902 + NameRide of the Valkyries + ArtistRobert Levine + AlbumThe Story of the Orchestra + GenreChildren's + KindAAC audio file + Size5219986 + Total Time155333 + Track Number1 + Track Count37 + Year2001 + Date Modified2011-11-19T18:05:28Z + Date Added2011-11-19T17:56:22Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3404906118 + Play Date UTC2011-11-23T09:45:18Z + Skip Count1 + Skip Date2013-11-24T09:17:14Z + Normalization1086 + Artwork Count1 + Sort AlbumStory of the Orchestra + Persistent ID7AB2D70463779E30 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/01%20Ride%20of%20the%20Valkyries.m4a + File Folder Count4 + Library Folder Count1 + + 9904 + + Track ID9904 + NameVivaldi: The 4 Seasons, Op. 8/1, RV 269, "Spring" - Allegro + ArtistTakako Nishizaki; Stephen Gunzenhauser: Capella Istropolitana + ComposerAntonio Vivaldi + AlbumThe Story of the Orchestra + GenreChildren's + KindAAC audio file + Size2759476 + Total Time81000 + Track Number2 + Track Count37 + Year2001 + Date Modified2011-11-19T18:05:28Z + Date Added2011-11-19T17:56:53Z + Bit Rate256 + Sample Rate44100 + Play Count2 + Play Date3457590437 + Play Date UTC2013-07-25T04:17:17Z + Normalization611 + Artwork Count1 + Sort AlbumStory of the Orchestra + Persistent ID772E86A4EFCC5E9D + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Takako%20Nishizaki%3B%20Stephen%20Gunzenhauser_%20Capella%20Istropolitana/The%20Story%20of%20the%20Orchestra/02%20Vivaldi_%20The%204%20Seasons,%20Op.%208_1,%20RV%20269,%20_Spring_%20-%20Allegro.m4a + File Folder Count4 + Library Folder Count1 + + 9906 + + Track ID9906 + NameWell-Tempered Clavier + ArtistRobert Levine + AlbumThe Story of the Orchestra + GenreChildren's + KindAAC audio file + Size2424704 + Total Time71493 + Track Number3 + Track Count37 + Year2001 + Date Modified2011-11-19T18:05:28Z + Date Added2011-11-19T17:57:09Z + Bit Rate256 + Sample Rate44100 + Play Count2 + Play Date3405230002 + Play Date UTC2011-11-27T03:43:22Z + Normalization97 + Artwork Count1 + Sort AlbumStory of the Orchestra + Persistent IDB71EDA2B4B4A4654 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/03%20Well-Tempered%20Clavier.m4a + File Folder Count4 + Library Folder Count1 + + 9908 + + Track ID9908 + NameSymphony No. 101"The Clock" + ArtistRobert Levine + AlbumThe Story of the Orchestra + GenreChildren's + KindAAC audio file + Size2448055 + Total Time71840 + Track Number4 + Track Count37 + Year2001 + Date Modified2011-11-19T18:05:29Z + Date Added2011-11-19T17:57:22Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3468149306 + Play Date UTC2013-11-24T09:18:26Z + Normalization178 + Artwork Count1 + Sort AlbumStory of the Orchestra + Persistent ID808B9893DF264C81 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/04%20Symphony%20No.%20101_The%20Clock_.m4a + File Folder Count4 + Library Folder Count1 + + 9910 + + Track ID9910 + NameEine Kleine Nachtmusik + ArtistRobert Levine + AlbumThe Story of the Orchestra + GenreChildren's + KindAAC audio file + Size2118200 + Total Time62333 + Track Number5 + Track Count37 + Year2001 + Date Modified2011-11-19T18:05:29Z + Date Added2011-11-19T17:57:36Z + Bit Rate256 + Sample Rate44100 + Play Count2 + Play Date3468149368 + Play Date UTC2013-11-24T09:19:28Z + Normalization255 + Artwork Count1 + Sort AlbumStory of the Orchestra + Persistent IDD49B2B9A1A1C99A9 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/05%20Eine%20Kleine%20Nachtmusik.m4a + File Folder Count4 + Library Folder Count1 + + 9912 + + Track ID9912 + NameFifth Symphony + ArtistRobert Levine + AlbumThe Story of the Orchestra + GenreChildren's + KindAAC audio file + Size3095446 + Total Time88826 + Track Number6 + Track Count37 + Year2001 + Date Modified2011-11-19T18:05:29Z + Date Added2011-11-19T17:57:47Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3468149457 + Play Date UTC2013-11-24T09:20:57Z + Normalization1083 + Artwork Count1 + Sort AlbumStory of the Orchestra + Persistent IDB2D547C13F6307B7 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/06%20Fifth%20Symphony.m4a + File Folder Count4 + Library Folder Count1 + + 9914 + + Track ID9914 + NameNinth Symphony + ArtistRobert Levine + AlbumThe Story of the Orchestra + GenreChildren's + KindAAC audio file + Size7195041 + Total Time214000 + Track Number7 + Track Count37 + Year2001 + Date Modified2011-11-19T18:05:30Z + Date Added2011-11-19T17:58:02Z + Bit Rate256 + Sample Rate44100 + Normalization987 + Artwork Count1 + Sort AlbumStory of the Orchestra + Persistent ID587702B36EE548C3 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/07%20Ninth%20Symphony.m4a + File Folder Count4 + Library Folder Count1 + + 9916 + + Track ID9916 + NameSleeping Beauty + ArtistRobert Levine + AlbumThe Story of the Orchestra + GenreChildren's + KindAAC audio file + Size3365239 + Total Time100173 + Track Number8 + Track Count37 + Year2001 + Date Modified2011-11-19T18:05:30Z + Date Added2011-11-19T17:58:34Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3468149671 + Play Date UTC2013-11-24T09:24:31Z + Normalization185 + Artwork Count1 + Sort AlbumStory of the Orchestra + Persistent ID3D4F2777958106AE + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/08%20Sleeping%20Beauty.m4a + File Folder Count4 + Library Folder Count1 + + 9918 + + Track ID9918 + NameHungarian Dance + ArtistRobert Levine + AlbumThe Story of the Orchestra + GenreChildren's + KindAAC audio file + Size2382539 + Total Time68000 + Track Number9 + Track Count37 + Year2001 + Date Modified2011-11-19T18:05:30Z + Date Added2011-11-19T17:58:49Z + Bit Rate256 + Sample Rate44100 + Play Count2 + Play Date3462766642 + Play Date UTC2013-09-23T02:07:22Z + Normalization817 + Artwork Count1 + Sort AlbumStory of the Orchestra + Persistent ID106638338A7ACFAF + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/09%20Hungarian%20Dance.m4a + File Folder Count4 + Library Folder Count1 + + 9920 + + Track ID9920 + NameSymphony #4 + ArtistRobert Levine + AlbumThe Story of the Orchestra + GenreChildren's + KindAAC audio file + Size3576577 + Total Time105826 + Track Number10 + Track Count37 + Year2001 + Date Modified2011-11-19T18:05:31Z + Date Added2011-11-19T17:58:59Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3462766748 + Play Date UTC2013-09-23T02:09:08Z + Normalization393 + Artwork Count1 + Sort AlbumStory of the Orchestra + Persistent ID1C4074434755D0AB + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/10%20Symphony%20%234.m4a + File Folder Count4 + Library Folder Count1 + + 9922 + + Track ID9922 + NameArabesque No. 1 + ArtistRobert Levine + AlbumThe Story of the Orchestra + GenreChildren's + KindAAC audio file + Size3044514 + Total Time90333 + Track Number11 + Track Count37 + Year2001 + Date Modified2011-11-19T18:05:31Z + Date Added2011-11-19T17:59:14Z + Bit Rate256 + Sample Rate44100 + Play Count3 + Play Date3462766838 + Play Date UTC2013-09-23T02:10:38Z + Normalization394 + Artwork Count1 + Sort AlbumStory of the Orchestra + Persistent ID46730D41C014DD8D + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/11%20Arabesque%20No.%201.m4a + File Folder Count4 + Library Folder Count1 + + 9924 + + Track ID9924 + NameRite of Spring + ArtistRobert Levine + AlbumThe Story of the Orchestra + GenreChildren's + KindAAC audio file + Size2626462 + Total Time77173 + Track Number12 + Track Count37 + Year2001 + Date Modified2011-11-19T18:05:31Z + Date Added2011-11-19T17:59:27Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3404590728 + Play Date UTC2011-11-19T18:08:48Z + Normalization18 + Artwork Count1 + Sort AlbumStory of the Orchestra + Persistent ID82A664A1DD3580F2 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/12%20Rite%20of%20Spring.m4a + File Folder Count4 + Library Folder Count1 + + 9926 + + Track ID9926 + NameSymphony No.4, Third movement + ArtistRobert Levine + AlbumThe Story of the Orchestra + GenreChildren's + KindAAC audio file + Size2181230 + Total Time64666 + Track Number13 + Track Count37 + Year2001 + Date Modified2011-11-19T18:05:31Z + Date Added2011-11-19T17:59:38Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3404590792 + Play Date UTC2011-11-19T18:09:52Z + Normalization273 + Artwork Count1 + Sort AlbumStory of the Orchestra + Persistent ID530A5FD0ADB3C715 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/13%20Symphony%20No.4,%20Third%20movement.m4a + File Folder Count4 + Library Folder Count1 + + 9928 + + Track ID9928 + NameSonata for Violin and Piano n A Major + ArtistRobert Levine + AlbumThe Story of the Orchestra + GenreChildren's + KindAAC audio file + Size4118907 + Total Time122333 + Track Number14 + Track Count37 + Year2001 + Date Modified2011-11-19T18:05:32Z + Date Added2011-11-19T17:59:47Z + Bit Rate256 + Sample Rate44100 + Normalization309 + Artwork Count1 + Sort AlbumStory of the Orchestra + Persistent IDD2FD290C334DB76C + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/14%20Sonata%20for%20Violin%20and%20Piano%20n%20A%20Major.m4a + File Folder Count4 + Library Folder Count1 + + 9930 + + Track ID9930 + NameConcert for Viola and orchestra + ArtistRobert Levine + AlbumThe Story of the Orchestra + GenreChildren's + KindAAC audio file + Size1849907 + Total Time49160 + Track Number15 + Track Count37 + Year2001 + Date Modified2011-11-19T18:05:32Z + Date Added2011-11-19T18:00:03Z + Bit Rate256 + Sample Rate44100 + Normalization271 + Artwork Count1 + Sort AlbumStory of the Orchestra + Persistent IDEA8C4922A3E5CEA5 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/15%20Concert%20for%20Viola%20and%20orchestra.m4a + File Folder Count4 + Library Folder Count1 + + 9932 + + Track ID9932 + NameWillaim Tell Overture + ArtistRobert Levine + AlbumThe Story of the Orchestra + GenreChildren's + KindAAC audio file + Size6212931 + Total Time186000 + Track Number16 + Track Count37 + Year2001 + Date Modified2011-11-19T18:05:32Z + Date Added2011-11-19T18:00:09Z + Bit Rate256 + Sample Rate44100 + Normalization35 + Artwork Count1 + Sort AlbumStory of the Orchestra + Persistent ID83ED6C986E5DA545 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/16%20Willaim%20Tell%20Overture.m4a + File Folder Count4 + Library Folder Count1 + + 9934 + + Track ID9934 + NameSaint-Saëns: Carnival Of The Animals, The Elephant + ArtistMarián Lapšanský, Peter Toperczer, Etc.; Ondrej Lenárd: Czechoslovak Radio Symphony Orchestra + ComposerCamille Saint-Saëns + AlbumThe Story of the Orchestra + GenreChildren's + KindAAC audio file + Size3284572 + Total Time97333 + Track Number17 + Track Count37 + Year2001 + Date Modified2011-11-19T18:05:34Z + Date Added2011-11-19T18:00:32Z + Bit Rate256 + Sample Rate44100 + Normalization113 + Artwork Count1 + Sort AlbumStory of the Orchestra + Persistent IDCBB0AF51347C918F + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Maria%CC%81n%20Laps%CC%8Cansky%CC%81,%20Peter%20Toperczer,%20Etc.%3B%20Ondrej%20Lena%CC%81rd_%20Czechoslovak%20Radio%20Symphony%20Orchestra/The%20Story%20of%20the%20Orchestra/17%20Saint-Sae%CC%88ns_%20Carnival%20Of%20The%20Animals,%20The%20Elephant.m4a + File Folder Count4 + Library Folder Count1 + + 9936 + + Track ID9936 + NameDance of the Blessed Spirits + ArtistRobert Levine + AlbumThe Story of the Orchestra + GenreChildren's + KindAAC audio file + Size2879751 + Total Time85506 + Track Number18 + Track Count37 + Year2001 + Date Modified2011-11-19T18:05:34Z + Date Added2011-11-19T18:00:44Z + Bit Rate256 + Sample Rate44100 + Normalization246 + Artwork Count1 + Sort AlbumStory of the Orchestra + Persistent IDC2ECD9A569745D17 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/18%20Dance%20of%20the%20Blessed%20Spirits.m4a + File Folder Count4 + Library Folder Count1 + + 9938 + + Track ID9938 + NameBach: Orchestral Suite #2 In B Minor - Badinerie + ArtistHelmut Müller-Brühl: Cologne Chamber Orchestra + ComposerJohann Sebastian Bach + AlbumThe Story of the Orchestra + GenreChildren's + KindAAC audio file + Size2856961 + Total Time81493 + Track Number19 + Track Count37 + Year2001 + Date Modified2011-11-19T18:05:34Z + Date Added2011-11-19T18:00:54Z + Bit Rate256 + Sample Rate44100 + Skip Count1 + Skip Date2013-11-24T09:17:08Z + Normalization318 + Artwork Count1 + Sort AlbumStory of the Orchestra + Persistent IDD486BD57711C4391 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Helmut%20Mu%CC%88ller-Bru%CC%88hl_%20Cologne%20Chamber%20Orchestra/The%20Story%20of%20the%20Orchestra/19%20Bach_%20Orchestral%20Suite%20%232%20In%20B%20Minor%20-%20Badinerie.m4a + File Folder Count4 + Library Folder Count1 + + 9940 + + Track ID9940 + NameSymphony No. 4, Third Movement + ArtistRobert Levine + AlbumThe Story of the Orchestra + GenreChildren's + KindAAC audio file + Size1257633 + Total Time36173 + Track Number20 + Track Count37 + Year2001 + Date Modified2011-11-19T18:05:35Z + Date Added2011-11-19T18:01:04Z + Bit Rate256 + Sample Rate44100 + Normalization234 + Artwork Count1 + Sort AlbumStory of the Orchestra + Persistent ID916F38FD166C6099 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/20%20Symphony%20No.%204,%20Third%20Movement.m4a + File Folder Count4 + Library Folder Count1 + + 9942 + + Track ID9942 + NameSinfonia in G Major for Two Oboes + ArtistRobert Levine + AlbumThe Story of the Orchestra + GenreChildren's + KindAAC audio file + Size2471588 + Total Time71666 + Track Number21 + Track Count37 + Year2001 + Date Modified2011-11-19T18:05:35Z + Date Added2011-11-19T18:01:09Z + Bit Rate256 + Sample Rate44100 + Normalization303 + Artwork Count1 + Sort AlbumStory of the Orchestra + Persistent IDBF85C57C497D95F2 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/21%20Sinfonia%20in%20G%20Major%20for%20Two%20Oboes.m4a + File Folder Count4 + Library Folder Count1 + + 9944 + + Track ID9944 + NameConcerto for Clarinet and Orchestra + ArtistRobert Levine + AlbumThe Story of the Orchestra + GenreChildren's + KindAAC audio file + Size3148737 + Total Time90826 + Track Number22 + Track Count37 + Year2001 + Date Modified2011-11-19T18:05:35Z + Date Added2011-11-19T18:01:18Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3405229929 + Play Date UTC2011-11-27T03:42:09Z + Normalization500 + Artwork Count1 + Sort AlbumStory of the Orchestra + Persistent IDDB2E63C59286F632 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/22%20Concerto%20for%20Clarinet%20and%20Orchestra.m4a + File Folder Count4 + Library Folder Count1 + + 9946 + + Track ID9946 + NameBolero + ArtistRobert Levine + AlbumThe Story of the Orchestra + GenreChildren's + KindAAC audio file + Size3709629 + Total Time110666 + Track Number23 + Track Count37 + Year2001 + Date Modified2011-11-19T18:05:35Z + Date Added2011-11-19T18:01:30Z + Bit Rate256 + Sample Rate44100 + Normalization32 + Artwork Count1 + Sort AlbumStory of the Orchestra + Persistent ID59D7E69EB2859730 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/23%20Bolero.m4a + File Folder Count4 + Library Folder Count1 + + 9948 + + Track ID9948 + NameSorcerer's Apprentice + ArtistRobert Levine + AlbumThe Story of the Orchestra + GenreChildren's + KindAAC audio file + Size2472096 + Total Time72333 + Track Number24 + Track Count37 + Year2001 + Date Modified2011-11-19T18:05:36Z + Date Added2011-11-19T18:01:43Z + Bit Rate256 + Sample Rate44100 + Normalization159 + Artwork Count1 + Sort AlbumStory of the Orchestra + Persistent ID2127CBE074F3126B + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/24%20Sorcerer's%20Apprentice.m4a + File Folder Count4 + Library Folder Count1 + + 9950 + + Track ID9950 + NameMother Good Suiteq + ArtistRobert Levine + AlbumThe Story of the Orchestra + GenreChildren's + KindAAC audio file + Size4101013 + Total Time121173 + Track Number25 + Track Count37 + Year2001 + Date Modified2011-11-19T18:05:36Z + Date Added2011-11-19T18:01:51Z + Bit Rate256 + Sample Rate44100 + Normalization660 + Artwork Count1 + Sort AlbumStory of the Orchestra + Persistent IDFC78F5E806B0D7C5 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/25%20Mother%20Good%20Suiteq.m4a + File Folder Count4 + Library Folder Count1 + + 9952 + + Track ID9952 + NameConcert for trumpet in E Flat + ArtistRobert Levine + AlbumThe Story of the Orchestra + GenreChildren's + KindAAC audio file + Size3902752 + Total Time115493 + Track Number26 + Track Count37 + Year2001 + Date Modified2011-11-19T18:05:36Z + Date Added2011-11-19T18:02:04Z + Bit Rate256 + Sample Rate44100 + Normalization389 + Artwork Count1 + Sort AlbumStory of the Orchestra + Persistent IDA584A2F3050356E7 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/26%20Concert%20for%20trumpet%20in%20E%20Flat.m4a + File Folder Count4 + Library Folder Count1 + + 9954 + + Track ID9954 + NameHorn Concerto No. 1 + ArtistRobert Levine + AlbumThe Story of the Orchestra + GenreChildren's + KindAAC audio file + Size4029984 + Total Time119666 + Track Number27 + Track Count37 + Year2001 + Date Modified2011-11-19T18:05:37Z + Date Added2011-11-19T18:02:16Z + Bit Rate256 + Sample Rate44100 + Normalization90 + Artwork Count1 + Sort AlbumStory of the Orchestra + Persistent IDC6AACA7DF1F3152E + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/27%20Horn%20Concerto%20No.%201.m4a + File Folder Count4 + Library Folder Count1 + + 9956 + + Track ID9956 + NameSymphony No.3 + ArtistRobert Levine + AlbumThe Story of the Orchestra + GenreChildren's + KindAAC audio file + Size2641781 + Total Time80333 + Track Number28 + Track Count37 + Year2001 + Date Modified2011-11-19T18:05:37Z + Date Added2011-11-19T18:02:30Z + Bit Rate256 + Sample Rate44100 + Normalization480 + Artwork Count1 + Sort AlbumStory of the Orchestra + Persistent IDC7D26FF6D654AFD2 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/28%20Symphony%20No.3.m4a + File Folder Count4 + Library Folder Count1 + + 9958 + + Track ID9958 + NamePictures at an Exhibition + ArtistRobert Levine + AlbumThe Story of the Orchestra + GenreChildren's + KindAAC audio file + Size5335126 + Total Time158840 + Track Number29 + Track Count37 + Year2001 + Date Modified2011-11-19T18:05:37Z + Date Added2011-11-19T18:02:39Z + Bit Rate256 + Sample Rate44100 + Normalization841 + Artwork Count1 + Sort AlbumStory of the Orchestra + Persistent ID55237604C77E3863 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/29%20Pictures%20at%20an%20Exhibition.m4a + File Folder Count4 + Library Folder Count1 + + 9960 + + Track ID9960 + NameShchedrin: Carmen Suite - Changing Of The Guard + ArtistTheodore Kuchar: Ukranian State Symphony Orchestra + ComposerRodion K. Shchedrin + AlbumThe Story of the Orchestra + GenreChildren's + KindAAC audio file + Size4022470 + Total Time119333 + Track Number30 + Track Count37 + Year2001 + Date Modified2011-11-19T18:05:38Z + Date Added2011-11-19T18:02:56Z + Bit Rate256 + Sample Rate44100 + Normalization385 + Artwork Count1 + Sort AlbumStory of the Orchestra + Persistent ID19843D1DA0D02359 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Theodore%20Kuchar_%20Ukranian%20State%20Symphony%20Orchestra/The%20Story%20of%20the%20Orchestra/30%20Shchedrin_%20Carmen%20Suite%20-%20Changing%20Of%20The%20Guard.m4a + File Folder Count4 + Library Folder Count1 + + 9962 + + Track ID9962 + NameSynphony No.7 + ArtistRobert Levine + AlbumThe Story of the Orchestra + GenreChildren's + KindAAC audio file + Size2085247 + Total Time59160 + Track Number31 + Track Count37 + Year2001 + Date Modified2011-11-19T18:05:38Z + Date Added2011-11-19T18:03:09Z + Bit Rate256 + Sample Rate44100 + Normalization345 + Artwork Count1 + Sort AlbumStory of the Orchestra + Persistent ID4BE85908E5FE8173 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/31%20Synphony%20No.7.m4a + File Folder Count4 + Library Folder Count1 + + 9964 + + Track ID9964 + NameSynphony No.4 + ArtistRobert Levine + AlbumThe Story of the Orchestra + GenreChildren's + KindAAC audio file + Size3492768 + Total Time104666 + Track Number32 + Track Count37 + Year2001 + Date Modified2011-11-19T18:05:38Z + Date Added2011-11-19T18:03:15Z + Bit Rate256 + Sample Rate44100 + Normalization668 + Artwork Count1 + Sort AlbumStory of the Orchestra + Persistent ID6F8D1BF792EE43CF + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/32%20Synphony%20No.4.m4a + File Folder Count4 + Library Folder Count1 + + 9966 + + Track ID9966 + NamePeer Gynt + ArtistRobert Levine + AlbumThe Story of the Orchestra + GenreChildren's + KindAAC audio file + Size4262412 + Total Time126333 + Track Number33 + Track Count37 + Year2001 + Date Modified2011-11-19T18:05:39Z + Date Added2011-11-19T18:03:26Z + Bit Rate256 + Sample Rate44100 + Normalization123 + Artwork Count1 + Sort AlbumStory of the Orchestra + Persistent IDFC8BA6998175909B + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/33%20Peer%20Gynt.m4a + File Folder Count4 + Library Folder Count1 + + 9968 + + Track ID9968 + NameNutcracker + ArtistRobert Levine + AlbumThe Story of the Orchestra + GenreChildren's + KindAAC audio file + Size4291894 + Total Time128173 + Track Number34 + Track Count37 + Year2001 + Date Modified2011-11-19T18:05:39Z + Date Added2011-11-19T18:03:39Z + Bit Rate256 + Sample Rate44100 + Normalization132 + Artwork Count1 + Sort AlbumStory of the Orchestra + Persistent IDD716867F8AD78023 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/34%20Nutcracker.m4a + File Folder Count4 + Library Folder Count1 + + 9970 + + Track ID9970 + NameToccata and Fugue in D Minor + ArtistRobert Levine + AlbumThe Story of the Orchestra + GenreChildren's + KindAAC audio file + Size5935304 + Total Time176000 + Track Number35 + Track Count37 + Year2001 + Date Modified2011-11-19T18:05:39Z + Date Added2011-11-19T18:03:52Z + Bit Rate256 + Sample Rate44100 + Normalization278 + Artwork Count1 + Sort AlbumStory of the Orchestra + Persistent ID617D4C91459670CA + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/35%20Toccata%20and%20Fugue%20in%20D%20Minor.m4a + File Folder Count4 + Library Folder Count1 + + 9972 + + Track ID9972 + NameMoonlight Sonata + ArtistRobert Levine + AlbumThe Story of the Orchestra + GenreChildren's + KindAAC audio file + Size4329767 + Total Time143000 + Track Number36 + Track Count37 + Year2001 + Date Modified2011-11-19T18:05:40Z + Date Added2011-11-19T18:04:09Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3468165310 + Play Date UTC2013-11-24T13:45:10Z + Normalization101 + Artwork Count1 + Sort AlbumStory of the Orchestra + Persistent ID06F7145188A8A1AC + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/36%20Moonlight%20Sonata.m4a + File Folder Count4 + Library Folder Count1 + + 9974 + + Track ID9974 + NameConcerto Champetre + ArtistRobert Levine + AlbumThe Story of the Orchestra + GenreChildren's + KindAAC audio file + Size5843082 + Total Time174666 + Track Number37 + Track Count37 + Year2001 + Date Modified2011-11-19T18:05:40Z + Date Added2011-11-19T18:04:23Z + Bit Rate256 + Sample Rate44100 + Normalization218 + Artwork Count1 + Sort AlbumStory of the Orchestra + Persistent IDC05E0EEA15F58BE0 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/37%20Concerto%20Champetre.m4a + File Folder Count4 + Library Folder Count1 + + 10060 + + Track ID10060 + NameSpanish Study + ArtistFrederick M. Noad + AlbumSolo Guitar Playing 1 + GenreTraditional + KindAAC audio file + Size2346943 + Total Time64133 + Disc Number1 + Disc Count1 + Track Number1 + Track Count40 + Date Modified2012-01-10T11:31:58Z + Date Added2012-01-10T11:23:19Z + Bit Rate256 + Sample Rate44100 + Play Count2 + Play Date3409126311 + Play Date UTC2012-01-11T06:01:51Z + Normalization1336 + Artwork Count1 + Persistent IDCBBA6455DC69AC11 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Frederick%20M.%20Noad/Solo%20Guitar%20Playing%201/01%20Spanish%20Study.m4a + File Folder Count4 + Library Folder Count1 + + 10062 + + Track ID10062 + NameMalaguena + ArtistFrederick M. Noad + AlbumSolo Guitar Playing 1 + GenreTraditional + KindAAC audio file + Size1637089 + Total Time48293 + Disc Number1 + Disc Count1 + Track Number2 + Track Count40 + Date Modified2012-01-10T11:31:58Z + Date Added2012-01-10T11:23:34Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3409060173 + Play Date UTC2012-01-10T11:39:33Z + Normalization1259 + Artwork Count1 + Persistent IDF62637A2042C56C9 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Frederick%20M.%20Noad/Solo%20Guitar%20Playing%201/02%20Malaguena.m4a + File Folder Count4 + Library Folder Count1 + + 10064 + + Track ID10064 + NameWaltz By Ferdinando Carulli + ArtistFrederick M. Noad + AlbumSolo Guitar Playing 1 + GenreTraditional + KindAAC audio file + Size2870347 + Total Time86773 + Disc Number1 + Disc Count1 + Track Number3 + Track Count40 + Date Modified2012-01-10T11:31:59Z + Date Added2012-01-10T11:23:45Z + Bit Rate256 + Sample Rate44100 + Normalization1240 + Artwork Count1 + Persistent IDDFE4056AE2B29794 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Frederick%20M.%20Noad/Solo%20Guitar%20Playing%201/03%20Waltz%20By%20Ferdinando%20Carulli.m4a + File Folder Count4 + Library Folder Count1 + + 10066 + + Track ID10066 + NameAndantino By Ferdinando Carulli + ArtistFrederick M. Noad + AlbumSolo Guitar Playing 1 + GenreTraditional + KindAAC audio file + Size1713228 + Total Time46293 + Disc Number1 + Disc Count1 + Track Number4 + Track Count40 + Date Modified2012-01-10T11:31:59Z + Date Added2012-01-10T11:24:03Z + Bit Rate256 + Sample Rate44100 + Play Count4 + Play Date3409199528 + Play Date UTC2012-01-12T02:22:08Z + Normalization1259 + Artwork Count1 + Persistent ID02C0560669931434 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Frederick%20M.%20Noad/Solo%20Guitar%20Playing%201/04%20Andantino%20By%20Ferdinando%20Carulli.m4a + File Folder Count4 + Library Folder Count1 + + 10068 + + Track ID10068 + NameGreensleeves + ArtistFrederick M. Noad + AlbumSolo Guitar Playing 1 + GenreTraditional + KindAAC audio file + Size1651040 + Total Time44426 + Disc Number1 + Disc Count1 + Track Number5 + Track Count40 + Date Modified2012-01-10T11:31:59Z + Date Added2012-01-10T11:24:13Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3409060279 + Play Date UTC2012-01-10T11:41:19Z + Normalization1259 + Artwork Count1 + Persistent IDDFD7542FA3965FED + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Frederick%20M.%20Noad/Solo%20Guitar%20Playing%201/05%20Greensleeves.m4a + File Folder Count4 + Library Folder Count1 + + 10070 + + Track ID10070 + NameEtude By Ferdinando Carulli + ArtistFrederick M. Noad + AlbumSolo Guitar Playing 1 + GenreTraditional + KindAAC audio file + Size3561098 + Total Time95546 + Disc Number1 + Disc Count1 + Track Number6 + Track Count40 + Date Modified2012-01-10T11:31:59Z + Date Added2012-01-10T11:24:23Z + Bit Rate256 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Persistent IDF0775157EB2DA9B9 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Frederick%20M.%20Noad/Solo%20Guitar%20Playing%201/06%20Etude%20By%20Ferdinando%20Carulli.m4a + File Folder Count4 + Library Folder Count1 + + 10072 + + Track ID10072 + NameAlegretto By Frederick Noad + ArtistFrederick M. Noad + AlbumSolo Guitar Playing 1 + GenreTraditional + KindAAC audio file + Size2754850 + Total Time74960 + Disc Number1 + Disc Count1 + Track Number7 + Track Count40 + Date Modified2012-01-10T11:31:59Z + Date Added2012-01-10T11:24:41Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3409071726 + Play Date UTC2012-01-10T14:52:06Z + Normalization1259 + Artwork Count1 + Persistent ID6977FAB818BCFAEE + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Frederick%20M.%20Noad/Solo%20Guitar%20Playing%201/07%20Alegretto%20By%20Frederick%20Noad.m4a + File Folder Count4 + Library Folder Count1 + + 10074 + + Track ID10074 + NameStudy In Ligados By Frederick Noad + ArtistFrederick M. Noad + AlbumSolo Guitar Playing 1 + GenreTraditional + KindAAC audio file + Size1157574 + Total Time31573 + Disc Number1 + Disc Count1 + Track Number8 + Track Count40 + Date Modified2012-01-10T11:31:59Z + Date Added2012-01-10T11:24:55Z + Bit Rate256 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Persistent ID065C0E790B256807 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Frederick%20M.%20Noad/Solo%20Guitar%20Playing%201/08%20Study%20In%20Ligados%20By%20Frederick%20Noad.m4a + File Folder Count4 + Library Folder Count1 + + 10076 + + Track ID10076 + NameSaraband By Robert De Visee + ArtistFrederick M. Noad + AlbumSolo Guitar Playing 1 + GenreTraditional + KindAAC audio file + Size3872334 + Total Time106626 + Disc Number1 + Disc Count1 + Track Number9 + Track Count40 + Date Modified2012-01-10T11:31:59Z + Date Added2012-01-10T11:25:03Z + Bit Rate256 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Persistent ID47949A8B4F048474 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Frederick%20M.%20Noad/Solo%20Guitar%20Playing%201/09%20Saraband%20By%20Robert%20De%20Visee.m4a + File Folder Count4 + Library Folder Count1 + + 10078 + + Track ID10078 + NameRondo By Ferdinando Carulli + ArtistFrederick M. Noad + AlbumSolo Guitar Playing 1 + GenreTraditional + KindAAC audio file + Size1858856 + Total Time54040 + Disc Number1 + Disc Count1 + Track Number10 + Track Count40 + Date Modified2012-01-10T11:31:59Z + Date Added2012-01-10T11:25:22Z + Bit Rate256 + Sample Rate44100 + Normalization1322 + Artwork Count1 + Persistent ID9BCBD47DCCD85054 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Frederick%20M.%20Noad/Solo%20Guitar%20Playing%201/10%20Rondo%20By%20Ferdinando%20Carulli.m4a + File Folder Count4 + Library Folder Count1 + + 10080 + + Track ID10080 + NameCanari Jig + ArtistFrederick M. Noad + AlbumSolo Guitar Playing 1 + GenreTraditional + KindAAC audio file + Size1558782 + Total Time41133 + Disc Number1 + Disc Count1 + Track Number11 + Track Count40 + Date Modified2012-01-10T11:32:00Z + Date Added2012-01-10T11:25:32Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3409145569 + Play Date UTC2012-01-11T11:22:49Z + Normalization1241 + Artwork Count1 + Persistent ID3E85A13C25644A6B + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Frederick%20M.%20Noad/Solo%20Guitar%20Playing%201/11%20Canari%20Jig.m4a + File Folder Count4 + Library Folder Count1 + + 10082 + + Track ID10082 + NameMinuet By Robert De Visee + ArtistFrederick M. Noad + AlbumSolo Guitar Playing 1 + GenreTraditional + KindAAC audio file + Size1853239 + Total Time48293 + Disc Number1 + Disc Count1 + Track Number12 + Track Count40 + Date Modified2012-01-10T11:32:00Z + Date Added2012-01-10T11:25:41Z + Bit Rate256 + Sample Rate44100 + Normalization1224 + Artwork Count1 + Persistent ID2144050F163BD43F + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Frederick%20M.%20Noad/Solo%20Guitar%20Playing%201/12%20Minuet%20By%20Robert%20De%20Visee.m4a + File Folder Count4 + Library Folder Count1 + + 10084 + + Track ID10084 + NameBuree By Robert De Visee + ArtistFrederick M. Noad + AlbumSolo Guitar Playing 1 + GenreTraditional + KindAAC audio file + Size1810920 + Total Time47306 + Disc Number1 + Disc Count1 + Track Number13 + Track Count40 + Date Modified2012-01-10T11:32:00Z + Date Added2012-01-10T11:25:49Z + Bit Rate256 + Sample Rate44100 + Normalization1250 + Artwork Count1 + Persistent ID7F2EED1263C579EC + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Frederick%20M.%20Noad/Solo%20Guitar%20Playing%201/13%20Buree%20By%20Robert%20De%20Visee.m4a + File Folder Count4 + Library Folder Count1 + + 10086 + + Track ID10086 + NameTheme By G. F. Handel + ArtistFrederick M. Noad + AlbumSolo Guitar Playing 1 + GenreTraditional + KindAAC audio file + Size2440061 + Total Time65533 + Disc Number1 + Disc Count1 + Track Number14 + Track Count40 + Date Modified2012-01-10T11:32:00Z + Date Added2012-01-10T11:25:58Z + Bit Rate256 + Sample Rate44100 + Normalization1242 + Artwork Count1 + Persistent ID755DBC06481BAA9E + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Frederick%20M.%20Noad/Solo%20Guitar%20Playing%201/14%20Theme%20By%20G.%20F.%20Handel.m4a + File Folder Count4 + Library Folder Count1 + + 10088 + + Track ID10088 + NameBouree By J. S. Bach + ArtistFrederick M. Noad + AlbumSolo Guitar Playing 1 + GenreTraditional + KindAAC audio file + Size1629942 + Total Time44760 + Disc Number1 + Disc Count1 + Track Number15 + Track Count40 + Date Modified2012-01-10T11:32:00Z + Date Added2012-01-10T11:26:09Z + Bit Rate256 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Persistent IDEFB0D03CD639FB54 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Frederick%20M.%20Noad/Solo%20Guitar%20Playing%201/15%20Bouree%20By%20J.%20S.%20Bach.m4a + File Folder Count4 + Library Folder Count1 + + 10090 + + Track ID10090 + NamePezzo Tedesco + ArtistFrederick M. Noad + AlbumSolo Guitar Playing 1 + GenreTraditional + KindAAC audio file + Size2359551 + Total Time63400 + Disc Number1 + Disc Count1 + Track Number16 + Track Count40 + Date Modified2012-01-10T11:32:00Z + Date Added2012-01-10T11:26:17Z + Bit Rate256 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Persistent IDEB490C2030D2D76B + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Frederick%20M.%20Noad/Solo%20Guitar%20Playing%201/16%20Pezzo%20Tedesco.m4a + File Folder Count4 + Library Folder Count1 + + 10092 + + Track ID10092 + NameOrlando Sleepeth By John Dowland + ArtistFrederick M. Noad + AlbumSolo Guitar Playing 1 + GenreTraditional + KindAAC audio file + Size3823520 + Total Time102600 + Disc Number1 + Disc Count1 + Track Number17 + Track Count40 + Date Modified2012-01-10T11:32:00Z + Date Added2012-01-10T11:26:28Z + Bit Rate256 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Persistent ID7085E86A7F50BA95 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Frederick%20M.%20Noad/Solo%20Guitar%20Playing%201/17%20Orlando%20Sleepeth%20By%20John%20Dowland.m4a + File Folder Count4 + Library Folder Count1 + + 10094 + + Track ID10094 + NameMrs. Winter's Jump By John Dowland + ArtistFrederick M. Noad + AlbumSolo Guitar Playing 1 + GenreTraditional + KindAAC audio file + Size1086477 + Total Time32506 + Disc Number1 + Disc Count1 + Track Number18 + Track Count40 + Date Modified2012-01-10T11:32:01Z + Date Added2012-01-10T11:26:44Z + Bit Rate256 + Sample Rate44100 + Normalization1232 + Artwork Count1 + Persistent ID87CF7BA29904E89F + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Frederick%20M.%20Noad/Solo%20Guitar%20Playing%201/18%20Mrs.%20Winter's%20Jump%20By%20John%20Dowland.m4a + File Folder Count4 + Library Folder Count1 + + 10096 + + Track ID10096 + NameAir By Thomas Robinson + ArtistFrederick M. Noad + AlbumSolo Guitar Playing 1 + GenreTraditional + KindAAC audio file + Size2501236 + Total Time66560 + Disc Number1 + Disc Count1 + Track Number19 + Track Count40 + Date Modified2012-01-10T11:32:01Z + Date Added2012-01-10T11:26:50Z + Bit Rate256 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Persistent IDBB31EF39F809E184 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Frederick%20M.%20Noad/Solo%20Guitar%20Playing%201/19%20Air%20By%20Thomas%20Robinson.m4a + File Folder Count4 + Library Folder Count1 + + 10098 + + Track ID10098 + NameDove Son Quei Fieri Occhi + ArtistFrederick M. Noad + AlbumSolo Guitar Playing 1 + GenreTraditional + KindAAC audio file + Size3110003 + Total Time81240 + Disc Number1 + Disc Count1 + Track Number20 + Track Count40 + Date Modified2012-01-10T11:32:01Z + Date Added2012-01-10T11:27:01Z + Bit Rate256 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Persistent IDFECE50EC8A04D301 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Frederick%20M.%20Noad/Solo%20Guitar%20Playing%201/20%20Dove%20Son%20Quei%20Fieri%20Occhi.m4a + File Folder Count4 + Library Folder Count1 + + 10100 + + Track ID10100 + NameSe Io M'Accorgo + ArtistFrederick M. Noad + AlbumSolo Guitar Playing 1 + GenreTraditional + KindAAC audio file + Size3892808 + Total Time104333 + Disc Number1 + Disc Count1 + Track Number21 + Track Count40 + Date Modified2012-01-10T11:32:01Z + Date Added2012-01-10T11:27:13Z + Bit Rate256 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Persistent IDB97F9803A0B69B58 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Frederick%20M.%20Noad/Solo%20Guitar%20Playing%201/21%20Se%20Io%20M'Accorgo.m4a + File Folder Count4 + Library Folder Count1 + + 10102 + + Track ID10102 + NameItalian Vicenzo By Vicenzo Galilei + ArtistFrederick M. Noad + AlbumSolo Guitar Playing 1 + GenreTraditional + KindAAC audio file + Size2180747 + Total Time58093 + Disc Number1 + Disc Count1 + Track Number22 + Track Count40 + Date Modified2012-01-10T11:32:01Z + Date Added2012-01-10T11:27:28Z + Bit Rate256 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Persistent ID44D07BD4B9545758 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Frederick%20M.%20Noad/Solo%20Guitar%20Playing%201/22%20Italian%20Vicenzo%20By%20Vicenzo%20Galilei.m4a + File Folder Count4 + Library Folder Count1 + + 10104 + + Track ID10104 + NamePavane By Luis Milan + ArtistFrederick M. Noad + AlbumSolo Guitar Playing 1 + GenreTraditional + KindAAC audio file + Size2655804 + Total Time69000 + Disc Number1 + Disc Count1 + Track Number23 + Track Count40 + Date Modified2012-01-10T11:32:01Z + Date Added2012-01-10T11:27:37Z + Bit Rate256 + Sample Rate44100 + Normalization1257 + Artwork Count1 + Persistent ID03483AD8561903C5 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Frederick%20M.%20Noad/Solo%20Guitar%20Playing%201/23%20Pavane%20By%20Luis%20Milan.m4a + File Folder Count4 + Library Folder Count1 + + 10106 + + Track ID10106 + NameEtude In D By Fernando Sor + ArtistFrederick M. Noad + AlbumSolo Guitar Playing 1 + GenreTraditional + KindAAC audio file + Size3064124 + Total Time83066 + Disc Number1 + Disc Count1 + Track Number24 + Track Count40 + Date Modified2012-01-10T11:32:02Z + Date Added2012-01-10T11:27:47Z + Bit Rate256 + Sample Rate44100 + Normalization1237 + Artwork Count1 + Persistent ID5B18EF830D67F7D0 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Frederick%20M.%20Noad/Solo%20Guitar%20Playing%201/24%20Etude%20In%20D%20By%20Fernando%20Sor.m4a + File Folder Count4 + Library Folder Count1 + + 10108 + + Track ID10108 + NameEtude In B Minor By Fernando Sor + ArtistFrederick M. Noad + AlbumSolo Guitar Playing 1 + GenreTraditional + KindAAC audio file + Size4258189 + Total Time110573 + Disc Number1 + Disc Count1 + Track Number25 + Track Count40 + Date Modified2012-01-10T11:32:02Z + Date Added2012-01-10T11:27:57Z + Bit Rate256 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Persistent IDBCBD4FFA1B3E219A + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Frederick%20M.%20Noad/Solo%20Guitar%20Playing%201/25%20Etude%20In%20B%20Minor%20By%20Fernando%20Sor.m4a + File Folder Count4 + Library Folder Count1 + + 10110 + + Track ID10110 + NamePavan In A Minor By Gaspar Sanz + ArtistFrederick M. Noad + AlbumSolo Guitar Playing 1 + GenreTraditional + KindAAC audio file + Size3346778 + Total Time98600 + Disc Number1 + Disc Count1 + Track Number26 + Track Count40 + Date Modified2012-01-10T11:32:02Z + Date Added2012-01-10T11:28:13Z + Bit Rate256 + Sample Rate44100 + Normalization1258 + Artwork Count1 + Persistent ID1D3D35C68C9E8590 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Frederick%20M.%20Noad/Solo%20Guitar%20Playing%201/26%20Pavan%20In%20A%20Minor%20By%20Gaspar%20Sanz.m4a + File Folder Count4 + Library Folder Count1 + + 10112 + + Track ID10112 + NameProlude By Robert De Visee + ArtistFrederick M. Noad + AlbumSolo Guitar Playing 1 + GenreTraditional + KindAAC audio file + Size1490681 + Total Time40133 + Disc Number1 + Disc Count1 + Track Number27 + Track Count40 + Date Modified2012-01-10T11:32:02Z + Date Added2012-01-10T11:28:25Z + Bit Rate256 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Persistent IDFF71D7A4D1603812 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Frederick%20M.%20Noad/Solo%20Guitar%20Playing%201/27%20Prolude%20By%20Robert%20De%20Visee.m4a + File Folder Count4 + Library Folder Count1 + + 10114 + + Track ID10114 + NameAllemand By Robert De Visee + ArtistFrederick M. Noad + AlbumSolo Guitar Playing 1 + GenreTraditional + KindAAC audio file + Size3501419 + Total Time93026 + Disc Number1 + Disc Count1 + Track Number28 + Track Count40 + Date Modified2012-01-10T11:32:02Z + Date Added2012-01-10T11:28:30Z + Bit Rate256 + Sample Rate44100 + Normalization1252 + Artwork Count1 + Persistent ID7D68896556E788CC + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Frederick%20M.%20Noad/Solo%20Guitar%20Playing%201/28%20Allemand%20By%20Robert%20De%20Visee.m4a + File Folder Count4 + Library Folder Count1 + + 10116 + + Track ID10116 + NameSaraband By Robert De Visee + ArtistFrederick M. Noad + AlbumSolo Guitar Playing 1 + GenreTraditional + KindAAC audio file + Size4159498 + Total Time109640 + Disc Number1 + Disc Count1 + Track Number29 + Track Count40 + Date Modified2012-01-10T11:32:03Z + Date Added2012-01-10T11:28:43Z + Bit Rate256 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Persistent IDC0575F106561941C + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Frederick%20M.%20Noad/Solo%20Guitar%20Playing%201/29%20Saraband%20By%20Robert%20De%20Visee.m4a + File Folder Count4 + Library Folder Count1 + + 10118 + + Track ID10118 + NameGigue By Robert De Visee + ArtistFrederick M. Noad + AlbumSolo Guitar Playing 1 + GenreTraditional + KindAAC audio file + Size2487554 + Total Time64933 + Disc Number1 + Disc Count1 + Track Number30 + Track Count40 + Date Modified2012-01-10T11:32:03Z + Date Added2012-01-10T11:28:56Z + Bit Rate256 + Sample Rate44100 + Normalization1205 + Artwork Count1 + Persistent ID6CC9B17BDE9E25C6 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Frederick%20M.%20Noad/Solo%20Guitar%20Playing%201/30%20Gigue%20By%20Robert%20De%20Visee.m4a + File Folder Count4 + Library Folder Count1 + + 10120 + + Track ID10120 + NameEtude In A By Matteo Carcassi + ArtistFrederick M. Noad + AlbumSolo Guitar Playing 1 + GenreTraditional + KindAAC audio file + Size2828666 + Total Time74533 + Disc Number1 + Disc Count1 + Track Number31 + Track Count40 + Date Modified2012-01-10T11:32:03Z + Date Added2012-01-10T11:29:05Z + Bit Rate256 + Sample Rate44100 + Normalization1232 + Artwork Count1 + Persistent IDDDBB8132F4790560 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Frederick%20M.%20Noad/Solo%20Guitar%20Playing%201/31%20Etude%20In%20A%20By%20Matteo%20Carcassi.m4a + File Folder Count4 + Library Folder Count1 + + 10122 + + Track ID10122 + NameEtude In F By Matteo Carcassi + ArtistFrederick M. Noad + AlbumSolo Guitar Playing 1 + GenreTraditional + KindAAC audio file + Size2384323 + Total Time68760 + Disc Number1 + Disc Count1 + Track Number32 + Track Count40 + Date Modified2012-01-10T11:32:03Z + Date Added2012-01-10T11:29:16Z + Bit Rate256 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Persistent ID1CFFD4B96BA53A67 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Frederick%20M.%20Noad/Solo%20Guitar%20Playing%201/32%20Etude%20In%20F%20By%20Matteo%20Carcassi.m4a + File Folder Count4 + Library Folder Count1 + + 10124 + + Track ID10124 + NameMinuet In C By Fernando Sor + ArtistFrederick M. Noad + AlbumSolo Guitar Playing 1 + GenreTraditional + KindAAC audio file + Size6015406 + Total Time160173 + Disc Number1 + Disc Count1 + Track Number33 + Track Count40 + Date Modified2012-01-10T11:32:03Z + Date Added2012-01-10T11:29:24Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3409199904 + Play Date UTC2012-01-12T02:28:24Z + Normalization1259 + Artwork Count1 + Persistent ID095532BFA0F98F08 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Frederick%20M.%20Noad/Solo%20Guitar%20Playing%201/33%20Minuet%20In%20C%20By%20Fernando%20Sor.m4a + File Folder Count4 + Library Folder Count1 + + 10126 + + Track ID10126 + NameAndantino By Mauro Giuliani + ArtistFrederick M. Noad + AlbumSolo Guitar Playing 1 + GenreTraditional + KindAAC audio file + Size2932668 + Total Time84960 + Disc Number1 + Disc Count1 + Track Number34 + Track Count40 + Date Modified2012-01-10T11:32:03Z + Date Added2012-01-10T11:29:43Z + Bit Rate256 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Persistent ID93C566FF08E64F6B + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Frederick%20M.%20Noad/Solo%20Guitar%20Playing%201/34%20Andantino%20By%20Mauro%20Giuliani.m4a + File Folder Count4 + Library Folder Count1 + + 10128 + + Track ID10128 + NameAndante By Dionisio Aguado + ArtistFrederick M. Noad + AlbumSolo Guitar Playing 1 + GenreTraditional + KindAAC audio file + Size4130453 + Total Time119306 + Disc Number1 + Disc Count1 + Track Number35 + Track Count40 + Date Modified2012-01-10T11:32:04Z + Date Added2012-01-10T11:29:52Z + Bit Rate256 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Persistent ID3EE36597585205F9 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Frederick%20M.%20Noad/Solo%20Guitar%20Playing%201/35%20Andante%20By%20Dionisio%20Aguado.m4a + File Folder Count4 + Library Folder Count1 + + 10130 + + Track ID10130 + NameEtude In C By Fernando Sor + ArtistFrederick M. Noad + AlbumSolo Guitar Playing 1 + GenreTraditional + KindAAC audio file + Size3441843 + Total Time93533 + Disc Number1 + Disc Count1 + Track Number36 + Track Count40 + Date Modified2012-01-10T11:32:04Z + Date Added2012-01-10T11:30:05Z + Bit Rate256 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Persistent ID7EBD1DE02A1E2076 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Frederick%20M.%20Noad/Solo%20Guitar%20Playing%201/36%20Etude%20In%20C%20By%20Fernando%20Sor.m4a + File Folder Count4 + Library Folder Count1 + + 10132 + + Track ID10132 + NameAdelita By Francisco Tarrego + ArtistFrederick M. Noad + AlbumSolo Guitar Playing 1 + GenreTraditional + KindAAC audio file + Size3034313 + Total Time81426 + Disc Number1 + Disc Count1 + Track Number37 + Track Count40 + Date Modified2012-01-10T11:32:04Z + Date Added2012-01-10T11:30:15Z + Bit Rate256 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Persistent ID6893A52240221DF0 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Frederick%20M.%20Noad/Solo%20Guitar%20Playing%201/37%20Adelita%20By%20Francisco%20Tarrego.m4a + File Folder Count4 + Library Folder Count1 + + 10134 + + Track ID10134 + NameLagrima By Francisco Tarrego + ArtistFrederick M. Noad + AlbumSolo Guitar Playing 1 + GenreTraditional + KindAAC audio file + Size3807734 + Total Time103466 + Disc Number1 + Disc Count1 + Track Number38 + Track Count40 + Date Modified2012-01-10T11:32:04Z + Date Added2012-01-10T11:30:24Z + Bit Rate256 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Persistent IDDCF3F3EDE745AE9A + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Frederick%20M.%20Noad/Solo%20Guitar%20Playing%201/38%20Lagrima%20By%20Francisco%20Tarrego.m4a + File Folder Count4 + Library Folder Count1 + + 10136 + + Track ID10136 + NameRomance + ArtistFrederick M. Noad + AlbumSolo Guitar Playing 1 + GenreTraditional + KindAAC audio file + Size4467014 + Total Time119240 + Disc Number1 + Disc Count1 + Track Number39 + Track Count40 + Date Modified2012-01-10T11:32:04Z + Date Added2012-01-10T11:30:34Z + Bit Rate256 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Persistent IDD595FF49AB8B41EB + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Frederick%20M.%20Noad/Solo%20Guitar%20Playing%201/39%20Romance.m4a + File Folder Count4 + Library Folder Count1 + + 10138 + + Track ID10138 + NameEl Testamen De N'Amelia By Miguel Llobet + ArtistFrederick M. Noad + AlbumSolo Guitar Playing 1 + GenreTraditional + KindAAC audio file + Size4091939 + Total Time107493 + Disc Number1 + Disc Count1 + Track Number40 + Track Count40 + Date Modified2012-01-10T11:32:05Z + Date Added2012-01-10T11:30:47Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3409199748 + Play Date UTC2012-01-12T02:25:48Z + Normalization1259 + Artwork Count1 + Persistent IDF22624A5CFAA8FD1 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Frederick%20M.%20Noad/Solo%20Guitar%20Playing%201/40%20El%20Testamen%20De%20N'Amelia%20By%20Miguel%20Llobet.m4a + File Folder Count4 + Library Folder Count1 + + 10140 + + Track ID10140 + Name25/03/11 4:33 PM + ArtistMahesh Venkitachalam + AlbumVoice Memos + GenreVoice Memo + KindAAC audio file + Size192074 + Total Time23381 + Date Modified2011-03-25T11:05:13Z + Date Added2012-01-10T11:34:37Z + Bit Rate64 + Sample Rate44100 + Persistent IDE9FD67DA30239486 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Voice%20Memos/20110325%20163308.m4a + File Folder Count3 + Library Folder Count1 + + 10142 + + Track ID10142 + Name27/03/11 6:14 PM + ArtistMahesh Venkitachalam + AlbumVoice Memos + GenreVoice Memo + KindAAC audio file + Size91869 + Total Time11120 + Date Modified2011-03-27T12:44:46Z + Date Added2012-01-10T11:34:37Z + Bit Rate64 + Sample Rate44100 + Persistent ID8F4B512FE44E393A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Voice%20Memos/20110327%20181433.m4a + File Folder Count3 + Library Folder Count1 + + 10144 + + Track ID10144 + Name21/04/11 4:43 PM + ArtistMahesh Venkitachalam + AlbumVoice Memos + GenreVoice Memo + KindAAC audio file + Size1106346 + Total Time135254 + Date Modified2011-04-21T11:16:04Z + Date Added2012-01-10T11:34:37Z + Bit Rate64 + Sample Rate44100 + Persistent ID4583264992C17850 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Voice%20Memos/20110421%20164344.m4a + File Folder Count3 + Library Folder Count1 + + 10146 + + Track ID10146 + Name21/04/11 6:46 PM + ArtistMahesh Venkitachalam + AlbumVoice Memos + GenreVoice Memo + KindAAC audio file + Size55813 + Total Time6709 + Date Modified2011-04-21T13:16:55Z + Date Added2012-01-10T11:34:37Z + Bit Rate64 + Sample Rate44100 + Persistent IDE76EF26342C2657C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Voice%20Memos/20110421%20184647.m4a + File Folder Count3 + Library Folder Count1 + + 10148 + + Track ID10148 + Name21/04/11 6:47 PM + ArtistMahesh Venkitachalam + AlbumVoice Memos + GenreVoice Memo + KindAAC audio file + Size172715 + Total Time21012 + Date Modified2011-04-21T13:17:29Z + Date Added2012-01-10T11:34:37Z + Bit Rate64 + Sample Rate44100 + Persistent IDE6DA87C22BFB2678 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Voice%20Memos/20110421%20184708.m4a + File Folder Count3 + Library Folder Count1 + + 10150 + + Track ID10150 + Name21/04/11 6:47 PM + ArtistMahesh Venkitachalam + AlbumVoice Memos + GenreVoice Memo + KindAAC audio file + Size189224 + Total Time23032 + Date Modified2011-04-21T13:17:55Z + Date Added2012-01-10T11:34:37Z + Bit Rate64 + Sample Rate44100 + Persistent IDF1C319BD7227136C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Voice%20Memos/20110421%20184731.m4a + File Folder Count3 + Library Folder Count1 + + 10152 + + Track ID10152 + Name21/04/11 6:49 PM + ArtistMahesh Venkitachalam + AlbumVoice Memos + GenreVoice Memo + KindAAC audio file + Size88450 + Total Time10702 + Date Modified2011-04-21T13:19:34Z + Date Added2012-01-10T11:34:37Z + Bit Rate64 + Sample Rate44100 + Persistent IDFF61FC22F6A11A11 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Voice%20Memos/20110421%20184923.m4a + File Folder Count3 + Library Folder Count1 + + 10154 + + Track ID10154 + Name21/04/11 6:49 PM + ArtistMahesh Venkitachalam + AlbumVoice Memos + GenreVoice Memo + KindAAC audio file + Size107430 + Total Time13024 + Date Modified2011-04-21T13:20:06Z + Date Added2012-01-10T11:34:37Z + Bit Rate64 + Sample Rate44100 + Persistent ID642731EC8238205C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Voice%20Memos/20110421%20184953.m4a + File Folder Count3 + Library Folder Count1 + + 10156 + + Track ID10156 + Name21/04/11 6:51 PM + ArtistMahesh Venkitachalam + AlbumVoice Memos + GenreVoice Memo + KindAAC audio file + Size282968 + Total Time34503 + Date Modified2011-04-21T13:21:46Z + Date Added2012-01-10T11:34:37Z + Bit Rate64 + Sample Rate44100 + Persistent ID8F56D27A3C47DA8B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Voice%20Memos/20110421%20185111.m4a + File Folder Count3 + Library Folder Count1 + + 10158 + + Track ID10158 + Name26/04/11 1:23 PM + ArtistMahesh Venkitachalam + AlbumVoice Memos + GenreVoice Memo + KindAAC audio file + Size200603 + Total Time24425 + Date Modified2011-04-26T07:54:04Z + Date Added2012-01-10T11:34:37Z + Bit Rate64 + Sample Rate44100 + Persistent ID94770909A350D858 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Voice%20Memos/20110426%20132338.m4a + File Folder Count3 + Library Folder Count1 + + 10160 + + Track ID10160 + Name21/07/11 8:53 AM + ArtistMahesh Venkitachalam + AlbumVoice Memos + GenreVoice Memo + KindAAC audio file + Size129077 + Total Time15672 + Date Modified2011-07-21T03:24:14Z + Date Added2012-01-10T11:34:37Z + Bit Rate64 + Sample Rate44100 + Persistent IDCC41CE825961D427 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Voice%20Memos/20110721%20085357.m4a + File Folder Count3 + Library Folder Count1 + + 10162 + + Track ID10162 + Name29/07/11 7:54 PM + ArtistMahesh Venkitachalam + AlbumVoice Memos + GenreVoice Memo + KindAAC audio file + Size94344 + Total Time11422 + Date Modified2011-07-29T14:25:08Z + Date Added2012-01-10T11:34:37Z + Bit Rate64 + Sample Rate44100 + Persistent ID558042A450F0E826 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Voice%20Memos/20110729%20195455.m4a + File Folder Count3 + Library Folder Count1 + + 10164 + + Track ID10164 + Name29/07/11 7:55 PM + ArtistMahesh Venkitachalam + AlbumVoice Memos + GenreVoice Memo + KindAAC audio file + Size259045 + Total Time31577 + Date Modified2011-07-29T14:26:29Z + Date Added2012-01-10T11:34:37Z + Bit Rate64 + Sample Rate44100 + Persistent ID8EDA5D38CE6FCBC0 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Voice%20Memos/20110729%20195557.m4a + File Folder Count3 + Library Folder Count1 + + 10166 + + Track ID10166 + Name29/07/11 7:57 PM + ArtistMahesh Venkitachalam + AlbumVoice Memos + GenreVoice Memo + KindAAC audio file + Size645417 + Total Time78876 + Date Modified2011-07-29T14:28:52Z + Date Added2012-01-10T11:34:37Z + Bit Rate64 + Sample Rate44100 + Persistent ID70C1841DE1C0FA31 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Voice%20Memos/20110729%20195730.m4a + File Folder Count3 + Library Folder Count1 + + 10168 + + Track ID10168 + Name29/07/11 8:00 PM + ArtistMahesh Venkitachalam + AlbumVoice Memos + GenreVoice Memo + KindAAC audio file + Size350342 + Total Time42769 + Date Modified2011-07-29T14:31:35Z + Date Added2012-01-10T11:34:37Z + Bit Rate64 + Sample Rate44100 + Persistent IDA6BCE95A37117BAB + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Voice%20Memos/20110729%20200039.m4a + File Folder Count3 + Library Folder Count1 + + 10170 + + Track ID10170 + Name04/08/11 5:23 PM + ArtistMahesh Venkitachalam + AlbumVoice Memos + GenreVoice Memo + KindAAC audio file + Size33990 + Total Time4038 + Date Modified2011-08-04T11:53:35Z + Date Added2012-01-10T11:34:37Z + Bit Rate64 + Sample Rate44100 + Persistent IDB111291E51812630 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Voice%20Memos/20110804%20172329.m4a + File Folder Count3 + Library Folder Count1 + + 10172 + + Track ID10172 + Name08/08/11 8:15 PM + ArtistMahesh Venkitachalam + AlbumVoice Memos + GenreVoice Memo + KindAAC audio file + Size754709 + Total Time92228 + Date Modified2011-08-08T14:46:34Z + Date Added2012-01-10T11:34:37Z + Bit Rate64 + Sample Rate44100 + Persistent ID9029DE84ED64B3F0 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Voice%20Memos/20110808%20201500.m4a + File Folder Count3 + Library Folder Count1 + + 10174 + + Track ID10174 + Name01/09/11 8:37 AM + ArtistMahesh Venkitachalam + AlbumVoice Memos + GenreVoice Memo + KindAAC audio file + Size397193 + Total Time48481 + Date Modified2011-09-01T03:08:07Z + Date Added2012-01-10T11:34:37Z + Bit Rate64 + Sample Rate44100 + Persistent ID5AA8E6EC51B3981B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Voice%20Memos/20110901%20083717.m4a + File Folder Count3 + Library Folder Count1 + + 10176 + + Track ID10176 + Name01/09/11 8:41 AM + ArtistMahesh Venkitachalam + AlbumVoice Memos + GenreVoice Memo + KindAAC audio file + Size494554 + Total Time60393 + Date Modified2011-09-01T03:12:40Z + Date Added2012-01-10T11:34:37Z + Bit Rate64 + Sample Rate44100 + Persistent ID7292B54BEFB18237 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Voice%20Memos/20110901%20084139.m4a + File Folder Count3 + Library Folder Count1 + + 10178 + + Track ID10178 + Name27/12/11 1:21 PM + ArtistMahesh Venkitachalam + AlbumVoice Memos + GenreVoice Memo + KindAAC audio file + Size211657 + Total Time25749 + Date Modified2011-12-27T05:22:18Z + Date Added2012-01-10T11:34:37Z + Bit Rate64 + Sample Rate44100 + Persistent IDC3911E47A1AFBB3B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Voice%20Memos/20111227%20132147.m4a + File Folder Count3 + Library Folder Count1 + + 10180 + + Track ID10180 + Name27/12/11 3:07 PM + ArtistMahesh Venkitachalam + AlbumVoice Memos + GenreVoice Memo + KindAAC audio file + Size238060 + Total Time28977 + Date Modified2011-12-27T07:07:50Z + Date Added2012-01-10T11:34:37Z + Bit Rate64 + Sample Rate44100 + Persistent IDAD3675F5617989F1 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Voice%20Memos/20111227%20150718.m4a + File Folder Count3 + Library Folder Count1 + + 10210 + + Track ID10210 + NameKreasi Bebaturan + ArtistGusti Putu Oka + AlbumSolo Bamboo Flute + GenreTraditional + KindAAC audio file + Size12625500 + Total Time330520 + Track Number1 + Track Count9 + Date Modified2012-05-20T09:16:52Z + Date Added2012-05-20T09:15:54Z + Bit Rate256 + Sample Rate44100 + Play Count2 + Play Date3420682952 + Play Date UTC2012-05-24T00:12:32Z + Normalization3703 + Persistent IDA284124F0174131B + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Gusti%20Putu%20Oka/Solo%20Bamboo%20Flute/01%20Kreasi%20Bebaturan.m4a + File Folder Count4 + Library Folder Count1 + + 10212 + + Track ID10212 + NamePangkung Condong + ArtistGusti Putu Oka + AlbumSolo Bamboo Flute + GenreTraditional + KindAAC audio file + Size7887674 + Total Time238546 + Track Number2 + Track Count9 + Date Modified2012-05-20T09:17:31Z + Date Added2012-05-20T09:16:55Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3420683190 + Play Date UTC2012-05-24T00:16:30Z + Normalization5206 + Persistent ID3EC4C00544ECE077 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Gusti%20Putu%20Oka/Solo%20Bamboo%20Flute/02%20Pangkung%20Condong.m4a + File Folder Count4 + Library Folder Count1 + + 10214 + + Track ID10214 + NameDandang Genis + ArtistGusti Putu Oka + AlbumSolo Bamboo Flute + GenreTraditional + KindAAC audio file + Size16538603 + Total Time494653 + Track Number3 + Track Count9 + Date Modified2012-05-20T09:18:41Z + Date Added2012-05-20T09:17:33Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3420683685 + Play Date UTC2012-05-24T00:24:45Z + Normalization5115 + Persistent ID8FFD9ED27F799006 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Gusti%20Putu%20Oka/Solo%20Bamboo%20Flute/03%20Dandang%20Genis.m4a + File Folder Count4 + Library Folder Count1 + + 10216 + + Track ID10216 + NameSinom + ArtistGusti Putu Oka + AlbumSolo Bamboo Flute + GenreTraditional + KindAAC audio file + Size8342069 + Total Time251013 + Track Number4 + Track Count9 + Date Modified2012-05-20T09:19:14Z + Date Added2012-05-20T09:18:44Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3420683936 + Play Date UTC2012-05-24T00:28:56Z + Normalization4987 + Persistent IDE8D8C9CF2D4F414E + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Gusti%20Putu%20Oka/Solo%20Bamboo%20Flute/04%20Sinom.m4a + File Folder Count4 + Library Folder Count1 + + 10218 + + Track ID10218 + NameSekar Eled + ArtistGusti Putu Oka + AlbumSolo Bamboo Flute + GenreTraditional + KindAAC audio file + Size12396909 + Total Time339160 + Track Number5 + Track Count9 + Date Modified2012-05-20T09:19:55Z + Date Added2012-05-20T09:19:15Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3420684275 + Play Date UTC2012-05-24T00:34:35Z + Normalization3655 + Persistent IDCD5CB6F2A731CCBE + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Gusti%20Putu%20Oka/Solo%20Bamboo%20Flute/05%20Sekar%20Eled.m4a + File Folder Count4 + Library Folder Count1 + + 10220 + + Track ID10220 + NameDurma + ArtistGusti Putu Oka + AlbumSolo Bamboo Flute + GenreTraditional + KindAAC audio file + Size11774142 + Total Time334666 + Track Number6 + Track Count9 + Date Modified2012-05-20T09:20:32Z + Date Added2012-05-20T09:19:56Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3420684610 + Play Date UTC2012-05-24T00:40:10Z + Normalization3740 + Persistent ID462F49FB93F53CE5 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Gusti%20Putu%20Oka/Solo%20Bamboo%20Flute/06%20Durma.m4a + File Folder Count4 + Library Folder Count1 + + 10222 + + Track ID10222 + NameKarang Andis + ArtistGusti Putu Oka + AlbumSolo Bamboo Flute + GenreTraditional + KindAAC audio file + Size19729449 + Total Time592680 + Track Number7 + Track Count9 + Date Modified2012-05-20T09:21:33Z + Date Added2012-05-20T09:20:34Z + Bit Rate256 + Sample Rate44100 + Normalization8621 + Persistent ID6EF229B79F43926B + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Gusti%20Putu%20Oka/Solo%20Bamboo%20Flute/07%20Karang%20Andis.m4a + File Folder Count4 + Library Folder Count1 + + 10224 + + Track ID10224 + NameSemaradhana + ArtistGusti Putu Oka + AlbumSolo Bamboo Flute + GenreTraditional + KindAAC audio file + Size20111028 + Total Time604093 + Track Number8 + Track Count9 + Date Modified2012-05-20T09:22:29Z + Date Added2012-05-20T09:21:34Z + Bit Rate256 + Sample Rate44100 + Normalization5028 + Persistent ID98CA1F33CAC55189 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Gusti%20Putu%20Oka/Solo%20Bamboo%20Flute/08%20Semaradhana.m4a + File Folder Count4 + Library Folder Count1 + + 10226 + + Track ID10226 + NameWug Payangan + ArtistGusti Putu Oka + AlbumSolo Bamboo Flute + GenreTraditional + KindAAC audio file + Size19539168 + Total Time563373 + Track Number9 + Track Count9 + Date Modified2012-05-20T09:23:19Z + Date Added2012-05-20T09:22:31Z + Bit Rate256 + Sample Rate44100 + Normalization6213 + Persistent ID40093421866BC361 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Gusti%20Putu%20Oka/Solo%20Bamboo%20Flute/09%20Wug%20Payangan.m4a + File Folder Count4 + Library Folder Count1 + + 10228 + + Track ID10228 + NameLetters + ArtistThe John Brothers' Piano Company + ComposerJohn Steven Morgan & John Thatcher Boomer + AlbumThe John Brothers' Piano Company + GenreJazz + KindAAC audio file + Size6594775 + Total Time200466 + Disc Number1 + Disc Count1 + Track Number1 + Track Count15 + Year2010 + Date Modified2013-11-14T01:39:45Z + Date Added2012-05-26T01:45:09Z + Bit Rate256 + Sample Rate44100 + Normalization875 + Artwork Count1 + Sort AlbumJohn Brothers' Piano Company + Sort ArtistJohn Brothers' Piano Company + Persistent ID6E489F398A870BC0 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20John%20Brothers'%20Piano%20Company/The%20John%20Brothers'%20Piano%20Company/01%20Letters.m4a + File Folder Count4 + Library Folder Count1 + + 10230 + + Track ID10230 + NameRoadhouse Jackaround + ArtistThe John Brothers' Piano Company + ComposerJohn Steven Morgan & John Thatcher Boomer + AlbumThe John Brothers' Piano Company + GenreJazz + KindAAC audio file + Size9674848 + Total Time289920 + Disc Number1 + Disc Count1 + Track Number2 + Track Count15 + Year2010 + Date Modified2013-11-14T01:39:46Z + Date Added2012-05-26T01:45:28Z + Bit Rate256 + Sample Rate44100 + Normalization1289 + Artwork Count1 + Sort AlbumJohn Brothers' Piano Company + Sort ArtistJohn Brothers' Piano Company + Persistent ID9079A1E5DD0D5694 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20John%20Brothers'%20Piano%20Company/The%20John%20Brothers'%20Piano%20Company/02%20Roadhouse%20Jackaround.m4a + File Folder Count4 + Library Folder Count1 + + 10232 + + Track ID10232 + NameTerra Damnatta + ArtistThe John Brothers' Piano Company + ComposerJohn Steven Morgan & John Thatcher Boomer + AlbumThe John Brothers' Piano Company + GenreJazz + KindAAC audio file + Size10853878 + Total Time328213 + Disc Number1 + Disc Count1 + Track Number3 + Track Count15 + Year2010 + Date Modified2013-11-14T01:39:47Z + Date Added2012-05-26T01:45:53Z + Bit Rate256 + Sample Rate44100 + Normalization1287 + Artwork Count1 + Sort AlbumJohn Brothers' Piano Company + Sort ArtistJohn Brothers' Piano Company + Persistent IDA6144733F78E0D67 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20John%20Brothers'%20Piano%20Company/The%20John%20Brothers'%20Piano%20Company/03%20Terra%20Damnatta.m4a + File Folder Count4 + Library Folder Count1 + + 10234 + + Track ID10234 + NameMint Julep + ArtistThe John Brothers' Piano Company + ComposerJohn Steven Morgan & John Thatcher Boomer + AlbumThe John Brothers' Piano Company + GenreJazz + KindAAC audio file + Size14683069 + Total Time442946 + Disc Number1 + Disc Count1 + Track Number4 + Track Count15 + Year2010 + Date Modified2013-11-14T01:39:49Z + Date Added2012-05-26T01:46:18Z + Bit Rate256 + Sample Rate44100 + Normalization631 + Artwork Count1 + Sort AlbumJohn Brothers' Piano Company + Sort ArtistJohn Brothers' Piano Company + Persistent ID7784E58A531C2B41 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20John%20Brothers'%20Piano%20Company/The%20John%20Brothers'%20Piano%20Company/04%20Mint%20Julep.m4a + File Folder Count4 + Library Folder Count1 + + 10236 + + Track ID10236 + NameComputer Duster + ArtistThe John Brothers' Piano Company + ComposerJohn Steven Morgan & John Thatcher Boomer + AlbumThe John Brothers' Piano Company + GenreJazz + KindAAC audio file + Size8459300 + Total Time254173 + Disc Number1 + Disc Count1 + Track Number5 + Track Count15 + Year2010 + Date Modified2013-11-14T01:39:50Z + Date Added2012-05-26T01:46:49Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3428047881 + Play Date UTC2012-08-17T06:01:21Z + Normalization637 + Artwork Count1 + Sort AlbumJohn Brothers' Piano Company + Sort ArtistJohn Brothers' Piano Company + Persistent ID071C738F8307552C + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20John%20Brothers'%20Piano%20Company/The%20John%20Brothers'%20Piano%20Company/05%20Computer%20Duster.m4a + File Folder Count4 + Library Folder Count1 + + 10238 + + Track ID10238 + NameDaffey Duckin' + ArtistThe John Brothers' Piano Company + ComposerJohn Steven Morgan & John Thatcher Boomer + AlbumThe John Brothers' Piano Company + GenreJazz + KindAAC audio file + Size8006544 + Total Time239026 + Disc Number1 + Disc Count1 + Track Number6 + Track Count15 + Year2010 + Date Modified2013-11-14T01:39:51Z + Date Added2012-05-26T01:47:06Z + Bit Rate256 + Sample Rate44100 + Normalization1217 + Artwork Count1 + Sort AlbumJohn Brothers' Piano Company + Sort ArtistJohn Brothers' Piano Company + Persistent ID0777EDF975131525 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20John%20Brothers'%20Piano%20Company/The%20John%20Brothers'%20Piano%20Company/06%20Daffey%20Duckin'.m4a + File Folder Count4 + Library Folder Count1 + + 10240 + + Track ID10240 + NameThe Gambler + ArtistThe John Brothers' Piano Company + ComposerJohn Steven Morgan & John Thatcher Boomer + AlbumThe John Brothers' Piano Company + GenreJazz + KindAAC audio file + Size16779136 + Total Time505973 + Disc Number1 + Disc Count1 + Track Number7 + Track Count15 + Year2010 + Date Modified2013-11-14T01:39:53Z + Date Added2012-05-26T01:47:20Z + Bit Rate256 + Sample Rate44100 + Normalization327 + Artwork Count1 + Sort AlbumJohn Brothers' Piano Company + Sort ArtistJohn Brothers' Piano Company + Sort NameGambler + Persistent ID61E12E0ADE2E7682 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20John%20Brothers'%20Piano%20Company/The%20John%20Brothers'%20Piano%20Company/07%20The%20Gambler.m4a + File Folder Count4 + Library Folder Count1 + + 10242 + + Track ID10242 + NameRobots + ArtistThe John Brothers' Piano Company + ComposerJohn Steven Morgan & John Thatcher Boomer + AlbumThe John Brothers' Piano Company + GenreJazz + KindAAC audio file + Size5474745 + Total Time164346 + Disc Number1 + Disc Count1 + Track Number8 + Track Count15 + Year2010 + Date Modified2013-11-14T01:39:54Z + Date Added2012-05-26T01:47:50Z + Bit Rate256 + Sample Rate44100 + Normalization631 + Artwork Count1 + Sort AlbumJohn Brothers' Piano Company + Sort ArtistJohn Brothers' Piano Company + Persistent ID9EE2027D691FFF28 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20John%20Brothers'%20Piano%20Company/The%20John%20Brothers'%20Piano%20Company/08%20Robots.m4a + File Folder Count4 + Library Folder Count1 + + 10244 + + Track ID10244 + NameThe Mind Of The Dolphin + ArtistThe John Brothers' Piano Company + ComposerJohn Steven Morgan & John Thatcher Boomer + AlbumThe John Brothers' Piano Company + GenreJazz + KindAAC audio file + Size14141828 + Total Time426000 + Disc Number1 + Disc Count1 + Track Number9 + Track Count15 + Year2010 + Date Modified2013-11-14T01:39:56Z + Date Added2012-05-26T01:47:59Z + Bit Rate256 + Sample Rate44100 + Normalization1471 + Artwork Count1 + Sort AlbumJohn Brothers' Piano Company + Sort ArtistJohn Brothers' Piano Company + Sort NameMind Of The Dolphin + Persistent IDE37FE9EF65760259 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20John%20Brothers'%20Piano%20Company/The%20John%20Brothers'%20Piano%20Company/09%20The%20Mind%20Of%20The%20Dolphin.m4a + File Folder Count4 + Library Folder Count1 + + 10246 + + Track ID10246 + NameThe Scythe Of Time (A Predicament) + ArtistThe John Brothers' Piano Company + ComposerJohn Steven Morgan & John Thatcher Boomer + AlbumThe John Brothers' Piano Company + GenreJazz + KindAAC audio file + Size6571267 + Total Time198146 + Disc Number1 + Disc Count1 + Track Number10 + Track Count15 + Year2010 + Date Modified2013-11-14T01:39:57Z + Date Added2012-05-26T01:48:22Z + Bit Rate256 + Sample Rate44100 + Normalization714 + Artwork Count1 + Sort AlbumJohn Brothers' Piano Company + Sort ArtistJohn Brothers' Piano Company + Sort NameScythe Of Time (A Predicament) + Persistent ID7CBEAC2F2558FEC2 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20John%20Brothers'%20Piano%20Company/The%20John%20Brothers'%20Piano%20Company/10%20The%20Scythe%20Of%20Time%20(A%20Predicament).m4a + File Folder Count4 + Library Folder Count1 + + 10248 + + Track ID10248 + NameCat Stridin' Blues + ArtistThe John Brothers' Piano Company + ComposerJohn Steven Morgan & John Thatcher Boomer + AlbumThe John Brothers' Piano Company + GenreJazz + KindAAC audio file + Size4684727 + Total Time139880 + Disc Number1 + Disc Count1 + Track Number11 + Track Count15 + Year2010 + Date Modified2013-11-14T01:39:57Z + Date Added2012-05-26T01:48:32Z + Bit Rate256 + Sample Rate44100 + Normalization1130 + Artwork Count1 + Sort AlbumJohn Brothers' Piano Company + Sort ArtistJohn Brothers' Piano Company + Persistent ID0925177E5CC4890A + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20John%20Brothers'%20Piano%20Company/The%20John%20Brothers'%20Piano%20Company/11%20Cat%20Stridin'%20Blues.m4a + File Folder Count4 + Library Folder Count1 + + 10250 + + Track ID10250 + NameGhost Town Stride + ArtistThe John Brothers' Piano Company + ComposerJohn Steven Morgan & John Thatcher Boomer + AlbumThe John Brothers' Piano Company + GenreJazz + KindAAC audio file + Size8807132 + Total Time262853 + Disc Number1 + Disc Count1 + Track Number12 + Track Count15 + Year2010 + Date Modified2013-11-14T01:39:58Z + Date Added2012-05-26T01:48:39Z + Bit Rate256 + Sample Rate44100 + Normalization631 + Artwork Count1 + Sort AlbumJohn Brothers' Piano Company + Sort ArtistJohn Brothers' Piano Company + Persistent ID90C1EB6DC7AE9041 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20John%20Brothers'%20Piano%20Company/The%20John%20Brothers'%20Piano%20Company/12%20Ghost%20Town%20Stride.m4a + File Folder Count4 + Library Folder Count1 + + 10252 + + Track ID10252 + NameJane The Birdfeeder Lady + ArtistThe John Brothers' Piano Company + ComposerJohn Steven Morgan & John Thatcher Boomer + AlbumThe John Brothers' Piano Company + GenreJazz + KindAAC audio file + Size11089728 + Total Time332626 + Disc Number1 + Disc Count1 + Track Number13 + Track Count15 + Year2010 + Date Modified2013-11-14T01:40:00Z + Date Added2012-05-26T01:48:52Z + Bit Rate256 + Sample Rate44100 + Normalization631 + Artwork Count1 + Sort AlbumJohn Brothers' Piano Company + Sort ArtistJohn Brothers' Piano Company + Persistent ID58673D6843B7F32C + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20John%20Brothers'%20Piano%20Company/The%20John%20Brothers'%20Piano%20Company/13%20Jane%20The%20Birdfeeder%20Lady.m4a + File Folder Count4 + Library Folder Count1 + + 10254 + + Track ID10254 + NameRocket Ship + ArtistThe John Brothers' Piano Company + ComposerJohn Steven Morgan & John Thatcher Boomer + AlbumThe John Brothers' Piano Company + GenreJazz + KindAAC audio file + Size13269737 + Total Time399626 + Disc Number1 + Disc Count1 + Track Number14 + Track Count15 + Year2010 + Date Modified2013-11-14T01:40:01Z + Date Added2012-05-26T01:49:07Z + Bit Rate256 + Sample Rate44100 + Normalization918 + Artwork Count1 + Sort AlbumJohn Brothers' Piano Company + Sort ArtistJohn Brothers' Piano Company + Persistent IDFF2902A49359BBEA + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20John%20Brothers'%20Piano%20Company/The%20John%20Brothers'%20Piano%20Company/14%20Rocket%20Ship.m4a + File Folder Count4 + Library Folder Count1 + + 10256 + + Track ID10256 + NameEpilogue + ArtistThe John Brothers' Piano Company + ComposerJohn Steven Morgan & John Thatcher Boomer + AlbumThe John Brothers' Piano Company + GenreJazz + KindAAC audio file + Size12979497 + Total Time386453 + Disc Number1 + Disc Count1 + Track Number15 + Track Count15 + Year2010 + Date Modified2013-11-14T01:40:03Z + Date Added2012-05-26T01:49:25Z + Bit Rate256 + Sample Rate44100 + Normalization631 + Artwork Count1 + Sort AlbumJohn Brothers' Piano Company + Sort ArtistJohn Brothers' Piano Company + Persistent ID672ABC3FA766C640 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20John%20Brothers'%20Piano%20Company/The%20John%20Brothers'%20Piano%20Company/15%20Epilogue.m4a + File Folder Count4 + Library Folder Count1 + + 10328 + + Track ID10328 + NameThe Art of Fugue, BWV 1080 - - - No.12a + ArtistKarl Münchinger + Album ArtistStuttgarter Kammerorchester + ComposerBach, Johann Sebastian + AlbumBach, J.S.: The Art of Fugue; A Musical Offering + GenreClassical + KindMPEG audio file + Size6538069 + Total Time197720 + Disc Number2 + Disc Count2 + Track Number1 + Track Count19 + Year2001 + Date Modified2012-08-06T01:46:56Z + Date Added2012-08-06T03:09:59Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202544764 + Artwork Count1 + Sort NameArt of Fugue, BWV 1080 - - - No.12a + Persistent ID3C9297C61D2D7307 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stuttgarter%20Kammerorchester/Bach,%20J.S._%20The%20Art%20of%20Fugue%3B%20A%20Musical%20Offering/(Disc%202)%2001%20-%20The%20Art%20of%20Fugue,%20BWV%201080%20-%20-%20-%20No.12a.mp3 + File Folder Count4 + Library Folder Count1 + + 10330 + + Track ID10330 + NameThe Art of Fugue, BWV 1080 - - - No.12b + ArtistKarl Münchinger + Album ArtistStuttgarter Kammerorchester + ComposerBach, Johann Sebastian + AlbumBach, J.S.: The Art of Fugue; A Musical Offering + GenreClassical + KindMPEG audio file + Size6159398 + Total Time185887 + Disc Number2 + Disc Count2 + Track Number2 + Track Count19 + Year2001 + Date Modified2012-08-06T01:46:25Z + Date Added2012-08-06T03:09:59Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202544766 + Artwork Count1 + Sort NameArt of Fugue, BWV 1080 - - - No.12b + Persistent ID0AC4881E87850B7E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stuttgarter%20Kammerorchester/Bach,%20J.S._%20The%20Art%20of%20Fugue%3B%20A%20Musical%20Offering/(Disc%202)%2002%20-%20The%20Art%20of%20Fugue,%20BWV%201080%20-%20-%20-%20No.12b.mp3 + File Folder Count4 + Library Folder Count1 + + 10332 + + Track ID10332 + NameThe Art of Fugue, BWV 1080 - - - No.18. Chorale: "Wenn wir in höchsten Nöten sein" + ArtistKarl Münchinger + Album ArtistStuttgarter Kammerorchester + ComposerBach, Johann Sebastian + AlbumBach, J.S.: The Art of Fugue; A Musical Offering + GenreClassical + KindMPEG audio file + Size27844878 + Total Time863555 + Disc Number2 + Disc Count2 + Track Number3 + Track Count19 + Year2001 + Date Modified2012-08-06T01:45:19Z + Date Added2012-08-06T03:09:59Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202544768 + Artwork Count1 + Sort NameArt of Fugue, BWV 1080 - - - No.18. Chorale: "Wenn wir in höchsten Nöten sein" + Persistent IDF8B54D99C163109E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stuttgarter%20Kammerorchester/Bach,%20J.S._%20The%20Art%20of%20Fugue%3B%20A%20Musical%20Offering/(Disc%202)%2003%20-%20The%20Art%20of%20Fugue,%20BWV%201080%20-%20-%20-%20No.18.%20Chorale_%20_Wenn%20wir%20in%20h%25F6chsten%20N%25F6ten%20sein_.mp3 + File Folder Count4 + Library Folder Count1 + + 10334 + + Track ID10334 + NameMusical Offering, BWV 1079 - Ricercar a 3 + ArtistKarl Münchinger + Album ArtistStuttgarter Kammerorchester + ComposerBach, Johann Sebastian + AlbumBach, J.S.: The Art of Fugue; A Musical Offering + GenreClassical + KindMPEG audio file + Size14463415 + Total Time445387 + Disc Number2 + Disc Count2 + Track Number4 + Track Count19 + Year2001 + Date Modified2012-08-06T01:52:17Z + Date Added2012-08-06T03:09:59Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202544769 + Artwork Count1 + Persistent ID3927B85DFD852A1E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stuttgarter%20Kammerorchester/Bach,%20J.S._%20The%20Art%20of%20Fugue%3B%20A%20Musical%20Offering/(Disc%202)%2004%20-%20Musical%20Offering,%20BWV%201079%20-%20Ricercar%20a%203.mp3 + File Folder Count4 + Library Folder Count1 + + 10336 + + Track ID10336 + NameMusical Offering, BWV 1079 - Canon perpetuus a 2 + ArtistKarl Münchinger + Album ArtistStuttgarter Kammerorchester + ComposerBach, Johann Sebastian + AlbumBach, J.S.: The Art of Fugue; A Musical Offering + GenreClassical + KindMPEG audio file + Size3235374 + Total Time94511 + Disc Number2 + Disc Count2 + Track Number5 + Track Count19 + Year2001 + Date Modified2012-08-06T01:42:56Z + Date Added2012-08-06T03:09:59Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202544770 + Artwork Count1 + Persistent IDA02E6375CD85FBCF + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stuttgarter%20Kammerorchester/Bach,%20J.S._%20The%20Art%20of%20Fugue%3B%20A%20Musical%20Offering/(Disc%202)%2005%20-%20Musical%20Offering,%20BWV%201079%20-%20Canon%20perpetuus%20a%202.mp3 + File Folder Count4 + Library Folder Count1 + + 10338 + + Track ID10338 + NameMusical Offering, BWV 1079 - Canon a 2 violini in unisono + ArtistKarl Münchinger + Album ArtistStuttgarter Kammerorchester + ComposerBach, Johann Sebastian + AlbumBach, J.S.: The Art of Fugue; A Musical Offering + GenreClassical + KindMPEG audio file + Size1743277 + Total Time47882 + Disc Number2 + Disc Count2 + Track Number6 + Track Count19 + Year2001 + Date Modified2012-08-06T01:34:53Z + Date Added2012-08-06T03:09:59Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202544771 + Artwork Count1 + Persistent ID1077196A59F43BE3 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stuttgarter%20Kammerorchester/Bach,%20J.S._%20The%20Art%20of%20Fugue%3B%20A%20Musical%20Offering/(Disc%202)%2006%20-%20Musical%20Offering,%20BWV%201079%20-%20Canon%20a%202%20violini%20in%20unisono.mp3 + File Folder Count4 + Library Folder Count1 + + 10340 + + Track ID10340 + NameMusical Offering, BWV 1079 - Canon a 2 per motum contrarium + ArtistKarl Münchinger + Album ArtistStuttgarter Kammerorchester + ComposerBach, Johann Sebastian + AlbumBach, J.S.: The Art of Fugue; A Musical Offering + GenreClassical + KindMPEG audio file + Size1834396 + Total Time50729 + Disc Number2 + Disc Count2 + Track Number7 + Track Count19 + Year2001 + Date Modified2012-08-06T01:38:41Z + Date Added2012-08-06T03:09:59Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202544772 + Artwork Count1 + Persistent ID760B43530D937FA5 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stuttgarter%20Kammerorchester/Bach,%20J.S._%20The%20Art%20of%20Fugue%3B%20A%20Musical%20Offering/(Disc%202)%2007%20-%20Musical%20Offering,%20BWV%201079%20-%20Canon%20a%202%20per%20motum%20contrarium.mp3 + File Folder Count4 + Library Folder Count1 + + 10342 + + Track ID10342 + NameMusical Offering, BWV 1079 - Canon a 2 per augmentationem, contrario motu + ArtistKarl Münchinger + Album ArtistStuttgarter Kammerorchester + ComposerBach, Johann Sebastian + AlbumBach, J.S.: The Art of Fugue; A Musical Offering + GenreClassical + KindMPEG audio file + Size4660664 + Total Time139049 + Disc Number2 + Disc Count2 + Track Number8 + Track Count19 + Year2001 + Date Modified2012-08-06T01:47:25Z + Date Added2012-08-06T03:10:00Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202544773 + Artwork Count1 + Persistent ID8A410D0FF131B121 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stuttgarter%20Kammerorchester/Bach,%20J.S._%20The%20Art%20of%20Fugue%3B%20A%20Musical%20Offering/(Disc%202)%2008%20-%20Musical%20Offering,%20BWV%201079%20-%20Canon%20a%202%20per%20augmentationem,%20contrario%20motu.mp3 + File Folder Count4 + Library Folder Count1 + + 10344 + + Track ID10344 + NameMusical Offering, BWV 1079 - Canon a 2 + ArtistKarl Münchinger + Album ArtistStuttgarter Kammerorchester + ComposerBach, Johann Sebastian + AlbumBach, J.S.: The Art of Fugue; A Musical Offering + GenreClassical + KindMPEG audio file + Size1683889 + Total Time46027 + Disc Number2 + Disc Count2 + Track Number9 + Track Count19 + Year2001 + Date Modified2012-08-06T01:52:26Z + Date Added2012-08-06T03:10:00Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202544774 + Artwork Count1 + Persistent IDBB7265E5997DA85F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stuttgarter%20Kammerorchester/Bach,%20J.S._%20The%20Art%20of%20Fugue%3B%20A%20Musical%20Offering/(Disc%202)%2009%20-%20Musical%20Offering,%20BWV%201079%20-%20Canon%20a%202.mp3 + File Folder Count4 + Library Folder Count1 + + 10346 + + Track ID10346 + NameMusical Offering, BWV 1079 - Canon a 2 + ArtistKarl Münchinger + Album ArtistStuttgarter Kammerorchester + ComposerBach, Johann Sebastian + AlbumBach, J.S.: The Art of Fugue; A Musical Offering + GenreClassical + KindMPEG audio file + Size3935855 + Total Time116401 + Disc Number2 + Disc Count2 + Track Number10 + Track Count19 + Year2001 + Date Modified2012-08-06T01:39:01Z + Date Added2012-08-06T03:10:00Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202544775 + Artwork Count1 + Persistent ID735F555F4DFC059D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stuttgarter%20Kammerorchester/Bach,%20J.S._%20The%20Art%20of%20Fugue%3B%20A%20Musical%20Offering/(Disc%202)%2010%20-%20Musical%20Offering,%20BWV%201079%20-%20Canon%20a%202.mp3 + File Folder Count4 + Library Folder Count1 + + 10348 + + Track ID10348 + NameMusical Offering, BWV 1079 - Canon a 2 per tonos + ArtistKarl Münchinger + Album ArtistStuttgarter Kammerorchester + ComposerBach, Johann Sebastian + AlbumBach, J.S.: The Art of Fugue; A Musical Offering + GenreClassical + KindMPEG audio file + Size3801088 + Total Time112195 + Disc Number2 + Disc Count2 + Track Number11 + Track Count19 + Year2001 + Date Modified2012-08-06T01:42:08Z + Date Added2012-08-06T03:10:00Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202544776 + Artwork Count1 + Persistent ID9745CF0F0D634C8B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stuttgarter%20Kammerorchester/Bach,%20J.S._%20The%20Art%20of%20Fugue%3B%20A%20Musical%20Offering/2-11%20Musical%20Offering,%20BWV%201079%20-%20Canon%20a%202%20per%20tonos.mp3 + File Folder Count4 + Library Folder Count1 + + 10350 + + Track ID10350 + NameMusical Offering, BWV 1079 - Canon perpetuus contrario motu + ArtistKarl Münchinger + Album ArtistStuttgarter Kammerorchester + ComposerBach, Johann Sebastian + AlbumBach, J.S.: The Art of Fugue; A Musical Offering + GenreClassical + KindMPEG audio file + Size2783166 + Total Time80378 + Disc Number2 + Disc Count2 + Track Number12 + Track Count19 + Year2001 + Date Modified2012-08-06T01:43:09Z + Date Added2012-08-06T03:10:01Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202544777 + Play Count1 + Play Date3427127638 + Play Date UTC2012-08-06T14:23:58Z + Artwork Count1 + Persistent ID026CDACE329A0985 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stuttgarter%20Kammerorchester/Bach,%20J.S._%20The%20Art%20of%20Fugue%3B%20A%20Musical%20Offering/2-12%20Musical%20Offering,%20BWV%201079%20-%20Canon%20perpetuus%20contrario%20motu.mp3 + File Folder Count4 + Library Folder Count1 + + 10352 + + Track ID10352 + NameMusical Offering, BWV 1079 - Canon a 4 + ArtistKarl Münchinger + Album ArtistStuttgarter Kammerorchester + ComposerBach, Johann Sebastian + AlbumBach, J.S.: The Art of Fugue; A Musical Offering + GenreClassical + KindMPEG audio file + Size10143385 + Total Time310386 + Disc Number2 + Disc Count2 + Track Number13 + Track Count19 + Year2001 + Date Modified2012-08-06T01:36:47Z + Date Added2012-08-06T03:10:02Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202544778 + Artwork Count1 + Persistent IDFF7793AEBFDBF453 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stuttgarter%20Kammerorchester/Bach,%20J.S._%20The%20Art%20of%20Fugue%3B%20A%20Musical%20Offering/(Disc%202)%2013%20-%20Musical%20Offering,%20BWV%201079%20-%20Canon%20a%204.mp3 + File Folder Count4 + Library Folder Count1 + + 10354 + + Track ID10354 + NameMusical Offering, BWV 1079 - Fuga canonica + ArtistKarl Münchinger + Album ArtistStuttgarter Kammerorchester + ComposerBach, Johann Sebastian + AlbumBach, J.S.: The Art of Fugue; A Musical Offering + GenreClassical + KindMPEG audio file + Size3935027 + Total Time116375 + Disc Number2 + Disc Count2 + Track Number14 + Track Count19 + Year2001 + Date Modified2012-08-06T01:49:30Z + Date Added2012-08-06T03:10:02Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202544779 + Artwork Count1 + Persistent IDA3EC74D9D0D28245 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stuttgarter%20Kammerorchester/Bach,%20J.S._%20The%20Art%20of%20Fugue%3B%20A%20Musical%20Offering/(Disc%202)%2014%20-%20Musical%20Offering,%20BWV%201079%20-%20Fuga%20canonica.mp3 + File Folder Count4 + Library Folder Count1 + + 10356 + + Track ID10356 + NameMusical Offering, BWV 1079 - Sonata a 3 - I Largo + ArtistKarl Münchinger + Album ArtistStuttgarter Kammerorchester + ComposerBach, Johann Sebastian + AlbumBach, J.S.: The Art of Fugue; A Musical Offering + GenreClassical + KindMPEG audio file + Size9657738 + Total Time295209 + Disc Number2 + Disc Count2 + Track Number15 + Track Count19 + Year2001 + Date Modified2012-08-06T01:56:09Z + Date Added2012-08-06T03:10:02Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202544780 + Artwork Count1 + Persistent IDE32DBE06E8EA1F8F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stuttgarter%20Kammerorchester/Bach,%20J.S._%20The%20Art%20of%20Fugue%3B%20A%20Musical%20Offering/2-15%20Musical%20Offering,%20BWV%201079%20-%20Sonata%20a%203%20-%20I%20Largo.mp3 + File Folder Count4 + Library Folder Count1 + + 10358 + + Track ID10358 + NameMusical Offering, BWV 1079 - Sonata a 3 - II Allegro + ArtistKarl Münchinger + Album ArtistStuttgarter Kammerorchester + ComposerBach, Johann Sebastian + AlbumBach, J.S.: The Art of Fugue; A Musical Offering + GenreClassical + KindMPEG audio file + Size12244912 + Total Time376058 + Disc Number2 + Disc Count2 + Track Number16 + Track Count19 + Year2001 + Date Modified2012-08-06T01:40:54Z + Date Added2012-08-06T03:10:02Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202544781 + Artwork Count1 + Persistent IDDAB35684979D0054 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stuttgarter%20Kammerorchester/Bach,%20J.S._%20The%20Art%20of%20Fugue%3B%20A%20Musical%20Offering/2-16%20Musical%20Offering,%20BWV%201079%20-%20Sonata%20a%203%20-%20II%20Allegro.mp3 + File Folder Count4 + Library Folder Count1 + + 10360 + + Track ID10360 + NameMusical Offering, BWV 1079 - Sonata a 3 - III Andante + ArtistKarl Münchinger + Album ArtistStuttgarter Kammerorchester + ComposerBach, Johann Sebastian + AlbumBach, J.S.: The Art of Fugue; A Musical Offering + GenreClassical + KindMPEG audio file + Size5839271 + Total Time175882 + Disc Number2 + Disc Count2 + Track Number17 + Track Count19 + Year2001 + Date Modified2012-08-06T01:53:03Z + Date Added2012-08-06T03:10:03Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202544782 + Artwork Count1 + Persistent ID3B2D7625ADBCD8AA + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stuttgarter%20Kammerorchester/Bach,%20J.S._%20The%20Art%20of%20Fugue%3B%20A%20Musical%20Offering/2-17%20Musical%20Offering,%20BWV%201079%20-%20Sonata%20a%203%20-%20III%20Andante.mp3 + File Folder Count4 + Library Folder Count1 + + 10362 + + Track ID10362 + NameMusical Offering, BWV 1079 - Sonata a 3 - IV Allegro + ArtistKarl Münchinger + Album ArtistStuttgarter Kammerorchester + ComposerBach, Johann Sebastian + AlbumBach, J.S.: The Art of Fugue; A Musical Offering + GenreClassical + KindMPEG audio file + Size6399335 + Total Time193384 + Disc Number2 + Disc Count2 + Track Number18 + Track Count19 + Year2001 + Date Modified2012-08-06T01:42:40Z + Date Added2012-08-06T03:10:03Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202544783 + Artwork Count1 + Persistent IDF3B6283F74CFBAFA + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stuttgarter%20Kammerorchester/Bach,%20J.S._%20The%20Art%20of%20Fugue%3B%20A%20Musical%20Offering/2-18%20Musical%20Offering,%20BWV%201079%20-%20Sonata%20a%203%20-%20IV%20Allegro.mp3 + File Folder Count4 + Library Folder Count1 + + 10364 + + Track ID10364 + NameMusical Offering, BWV 1079 - Ricercar a 6 + ArtistKarl Münchinger + Album ArtistStuttgarter Kammerorchester + ComposerBach, Johann Sebastian + AlbumBach, J.S.: The Art of Fugue; A Musical Offering + GenreClassical + KindMPEG audio file + Size17903221 + Total Time552881 + Disc Number2 + Disc Count2 + Track Number19 + Track Count19 + Year2001 + Date Modified2012-08-06T01:34:02Z + Date Added2012-08-06T03:10:03Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202544784 + Artwork Count1 + Persistent IDCBFBBDF5CA682BAF + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stuttgarter%20Kammerorchester/Bach,%20J.S._%20The%20Art%20of%20Fugue%3B%20A%20Musical%20Offering/2-19%20Musical%20Offering,%20BWV%201079%20-%20Ricercar%20a%206.mp3 + File Folder Count4 + Library Folder Count1 + + 10366 + + Track ID10366 + NameThe Art of Fugue, BWV 1080 - - - No.1 Contrapunctus I + ArtistKarl Münchinger + Album ArtistStuttgarter Kammerorchester + ComposerBach, Johann Sebastian + AlbumBach, J.S.: The Art of Fugue; A Musical Offering + GenreClassical + KindMPEG audio file + Size8442319 + Total Time257227 + Disc Number1 + Disc Count2 + Track Number1 + Track Count19 + Year2001 + Date Modified2012-08-06T01:55:22Z + Date Added2012-08-06T03:10:03Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202544724 + Artwork Count1 + Sort NameArt of Fugue, BWV 1080 - - - No.1 Contrapunctus I + Persistent ID0E743C37C22EB5AD + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stuttgarter%20Kammerorchester/Bach,%20J.S._%20The%20Art%20of%20Fugue%3B%20A%20Musical%20Offering/1-01%20The%20Art%20of%20Fugue,%20BWV%201080%20-%20-%20-%20No.1%20Contrapunctus%20I.mp3 + File Folder Count4 + Library Folder Count1 + + 10368 + + Track ID10368 + NameThe Art of Fugue, BWV 1080 - - - No.2 Contrapunctus II + ArtistKarl Münchinger + Album ArtistStuttgarter Kammerorchester + ComposerBach, Johann Sebastian + AlbumBach, J.S.: The Art of Fugue; A Musical Offering + GenreClassical + KindMPEG audio file + Size5482334 + Total Time164728 + Disc Number1 + Disc Count2 + Track Number2 + Track Count19 + Year2001 + Date Modified2012-08-06T01:49:57Z + Date Added2012-08-06T03:10:04Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202544726 + Artwork Count1 + Sort NameArt of Fugue, BWV 1080 - - - No.2 Contrapunctus II + Persistent ID08471B1F985EBA21 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stuttgarter%20Kammerorchester/Bach,%20J.S._%20The%20Art%20of%20Fugue%3B%20A%20Musical%20Offering/1-02%20The%20Art%20of%20Fugue,%20BWV%201080%20-%20-%20-%20No.2%20Contrapunctus%20II.mp3 + File Folder Count4 + Library Folder Count1 + + 10370 + + Track ID10370 + NameThe Art of Fugue, BWV 1080 - - - No.3 Contrapunctus III + ArtistKarl Münchinger + Album ArtistStuttgarter Kammerorchester + ComposerBach, Johann Sebastian + AlbumBach, J.S.: The Art of Fugue; A Musical Offering + GenreClassical + KindMPEG audio file + Size8313592 + Total Time253204 + Disc Number1 + Disc Count2 + Track Number3 + Track Count19 + Year2001 + Date Modified2012-08-06T01:50:38Z + Date Added2012-08-06T03:10:04Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202544728 + Artwork Count1 + Sort NameArt of Fugue, BWV 1080 - - - No.3 Contrapunctus III + Persistent IDF8A6B543E2F3DA6C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stuttgarter%20Kammerorchester/Bach,%20J.S._%20The%20Art%20of%20Fugue%3B%20A%20Musical%20Offering/1-03%20The%20Art%20of%20Fugue,%20BWV%201080%20-%20-%20-%20No.3%20Contrapunctus%20III.mp3 + File Folder Count4 + Library Folder Count1 + + 10372 + + Track ID10372 + NameThe Art of Fugue, BWV 1080 - - - No.4 Contrapunctus IV + ArtistKarl Münchinger + Album ArtistStuttgarter Kammerorchester + ComposerBach, Johann Sebastian + AlbumBach, J.S.: The Art of Fugue; A Musical Offering + GenreClassical + KindMPEG audio file + Size6639245 + Total Time200881 + Disc Number1 + Disc Count2 + Track Number4 + Track Count19 + Year2001 + Date Modified2012-08-06T01:48:43Z + Date Added2012-08-06T03:10:04Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202544729 + Artwork Count1 + Sort NameArt of Fugue, BWV 1080 - - - No.4 Contrapunctus IV + Persistent ID2FE5163D1493E7D7 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stuttgarter%20Kammerorchester/Bach,%20J.S._%20The%20Art%20of%20Fugue%3B%20A%20Musical%20Offering/1-04%20The%20Art%20of%20Fugue,%20BWV%201080%20-%20-%20-%20No.4%20Contrapunctus%20IV.mp3 + File Folder Count4 + Library Folder Count1 + + 10374 + + Track ID10374 + NameThe Art of Fugue, BWV 1080 - - - No.5 Contrapunctus V + ArtistKarl Münchinger + Album ArtistStuttgarter Kammerorchester + ComposerBach, Johann Sebastian + AlbumBach, J.S.: The Art of Fugue; A Musical Offering + GenreClassical + KindMPEG audio file + Size9663596 + Total Time295392 + Disc Number1 + Disc Count2 + Track Number5 + Track Count19 + Year2001 + Date Modified2012-08-06T01:37:33Z + Date Added2012-08-06T03:10:04Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202544731 + Artwork Count1 + Sort NameArt of Fugue, BWV 1080 - - - No.5 Contrapunctus V + Persistent ID4A14BFDA17C330E7 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stuttgarter%20Kammerorchester/Bach,%20J.S._%20The%20Art%20of%20Fugue%3B%20A%20Musical%20Offering/1-05%20The%20Art%20of%20Fugue,%20BWV%201080%20-%20-%20-%20No.5%20Contrapunctus%20V.mp3 + File Folder Count4 + Library Folder Count1 + + 10376 + + Track ID10376 + NameThe Art of Fugue, BWV 1080 - - - No.6 Contrapunctus VI + ArtistKarl Münchinger + Album ArtistStuttgarter Kammerorchester + ComposerBach, Johann Sebastian + AlbumBach, J.S.: The Art of Fugue; A Musical Offering + GenreClassical + KindMPEG audio file + Size6954386 + Total Time210729 + Disc Number1 + Disc Count2 + Track Number6 + Track Count19 + Year2001 + Date Modified2012-08-06T01:51:12Z + Date Added2012-08-06T03:10:05Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202544733 + Artwork Count1 + Sort NameArt of Fugue, BWV 1080 - - - No.6 Contrapunctus VI + Persistent IDB54EEA9DFB06527C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stuttgarter%20Kammerorchester/Bach,%20J.S._%20The%20Art%20of%20Fugue%3B%20A%20Musical%20Offering/1-06%20The%20Art%20of%20Fugue,%20BWV%201080%20-%20-%20-%20No.6%20Contrapunctus%20VI.mp3 + File Folder Count4 + Library Folder Count1 + + 10378 + + Track ID10378 + NameThe Art of Fugue, BWV 1080 - - - No.7 Contrapunctus VII + ArtistKarl Münchinger + Album ArtistStuttgarter Kammerorchester + ComposerBach, Johann Sebastian + AlbumBach, J.S.: The Art of Fugue; A Musical Offering + GenreClassical + KindMPEG audio file + Size5780759 + Total Time174053 + Disc Number1 + Disc Count2 + Track Number7 + Track Count19 + Year2001 + Date Modified2012-08-06T01:53:30Z + Date Added2012-08-06T03:10:05Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202544736 + Artwork Count1 + Sort NameArt of Fugue, BWV 1080 - - - No.7 Contrapunctus VII + Persistent ID277DEE01E019E01D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stuttgarter%20Kammerorchester/Bach,%20J.S._%20The%20Art%20of%20Fugue%3B%20A%20Musical%20Offering/1-07%20The%20Art%20of%20Fugue,%20BWV%201080%20-%20-%20-%20No.7%20Contrapunctus%20VII.mp3 + File Folder Count4 + Library Folder Count1 + + 10380 + + Track ID10380 + NameThe Art Of Fugue, Bwv 1080 - - - No.8 Contrapunctus VIII + ArtistKarl Münchinger + Album ArtistStuttgarter Kammerorchester + ComposerBach, Johann Sebastian + AlbumBach, J.S.: The Art of Fugue; A Musical Offering + GenreClassical + KindMPEG audio file + Size11999158 + Total Time368378 + Disc Number1 + Disc Count2 + Track Number8 + Track Count19 + Year2001 + Date Modified2012-08-06T01:35:54Z + Date Added2012-08-06T03:10:05Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202544739 + Artwork Count1 + Sort NameArt Of Fugue, Bwv 1080 - - - No.8 Contrapunctus VIII + Persistent ID1830A21C46FD75A4 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stuttgarter%20Kammerorchester/Bach,%20J.S._%20The%20Art%20of%20Fugue%3B%20A%20Musical%20Offering/1-08%20The%20Art%20Of%20Fugue,%20Bwv%201080%20-%20-%20-%20No.8%20Contrapunctus%20VIII.mp3 + File Folder Count4 + Library Folder Count1 + + 10382 + + Track ID10382 + NameThe Art of Fugue, BWV 1080 - - - No.9 Contrapunctus IX + ArtistKarl Münchinger + Album ArtistStuttgarter Kammerorchester + ComposerBach, Johann Sebastian + AlbumBach, J.S.: The Art of Fugue; A Musical Offering + GenreClassical + KindMPEG audio file + Size5220692 + Total Time156551 + Disc Number1 + Disc Count2 + Track Number9 + Track Count19 + Year2001 + Date Modified2012-08-06T01:32:34Z + Date Added2012-08-06T03:10:05Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202544741 + Artwork Count1 + Sort NameArt of Fugue, BWV 1080 - - - No.9 Contrapunctus IX + Persistent ID42BE668D22504CCF + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stuttgarter%20Kammerorchester/Bach,%20J.S._%20The%20Art%20of%20Fugue%3B%20A%20Musical%20Offering/1-09%20The%20Art%20of%20Fugue,%20BWV%201080%20-%20-%20-%20No.9%20Contrapunctus%20IX.mp3 + File Folder Count4 + Library Folder Count1 + + 10384 + + Track ID10384 + NameThe Art of Fugue, BWV 1080 - - - No.10 Contrapunctus X + ArtistKarl Münchinger + Album ArtistStuttgarter Kammerorchester + ComposerBach, Johann Sebastian + AlbumBach, J.S.: The Art of Fugue; A Musical Offering + GenreClassical + KindMPEG audio file + Size9375208 + Total Time286380 + Disc Number1 + Disc Count2 + Track Number10 + Track Count19 + Year2001 + Date Modified2012-08-06T01:41:45Z + Date Added2012-08-06T03:10:05Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202544744 + Artwork Count1 + Sort NameArt of Fugue, BWV 1080 - - - No.10 Contrapunctus X + Persistent IDC2D226B8BED431B9 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stuttgarter%20Kammerorchester/Bach,%20J.S._%20The%20Art%20of%20Fugue%3B%20A%20Musical%20Offering/1-10%20The%20Art%20of%20Fugue,%20BWV%201080%20-%20-%20-%20No.10%20Contrapunctus%20X.mp3 + File Folder Count4 + Library Folder Count1 + + 10386 + + Track ID10386 + NameThe Art of Fugue, BWV 1080 - - - No.11 Contrapunctus XI + ArtistKarl Münchinger + Album ArtistStuttgarter Kammerorchester + ComposerBach, Johann Sebastian + AlbumBach, J.S.: The Art of Fugue; A Musical Offering + GenreClassical + KindMPEG audio file + Size13881646 + Total Time427206 + Disc Number1 + Disc Count2 + Track Number11 + Track Count19 + Year2001 + Date Modified2012-08-06T01:54:41Z + Date Added2012-08-06T03:10:05Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202544746 + Artwork Count1 + Sort NameArt of Fugue, BWV 1080 - - - No.11 Contrapunctus XI + Persistent ID7B3282FFD50359DF + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stuttgarter%20Kammerorchester/Bach,%20J.S._%20The%20Art%20of%20Fugue%3B%20A%20Musical%20Offering/1-11%20The%20Art%20of%20Fugue,%20BWV%201080%20-%20-%20-%20No.11%20Contrapunctus%20XI.mp3 + File Folder Count4 + Library Folder Count1 + + 10388 + + Track ID10388 + NameThe Art of Fugue, BWV 1080 - - - No.15 Fuga per canonem + ArtistKarl Münchinger + Album ArtistStuttgarter Kammerorchester + ComposerBach, Johann Sebastian + AlbumBach, J.S.: The Art of Fugue; A Musical Offering + GenreClassical + KindMPEG audio file + Size5503236 + Total Time165381 + Disc Number1 + Disc Count2 + Track Number12 + Track Count19 + Year2001 + Date Modified2012-08-06T01:49:11Z + Date Added2012-08-06T03:10:05Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202544748 + Artwork Count1 + Sort NameArt of Fugue, BWV 1080 - - - No.15 Fuga per canonem + Persistent IDADDD28FAAC573185 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stuttgarter%20Kammerorchester/Bach,%20J.S._%20The%20Art%20of%20Fugue%3B%20A%20Musical%20Offering/1-12%20The%20Art%20of%20Fugue,%20BWV%201080%20-%20-%20-%20No.15%20Fuga%20per%20canonem.mp3 + File Folder Count4 + Library Folder Count1 + + 10390 + + Track ID10390 + NameThe Art of Fugue, BWV 1080 - - - No.17 Fuga per canonem + ArtistKarl Münchinger + Album ArtistStuttgarter Kammerorchester + ComposerBach, Johann Sebastian + AlbumBach, J.S.: The Art of Fugue; A Musical Offering + GenreClassical + KindMPEG audio file + Size5305959 + Total Time159216 + Disc Number1 + Disc Count2 + Track Number13 + Track Count19 + Year2001 + Date Modified2012-08-06T01:38:05Z + Date Added2012-08-06T03:10:05Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202544750 + Artwork Count1 + Sort NameArt of Fugue, BWV 1080 - - - No.17 Fuga per canonem + Persistent ID937481F9B98DB864 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stuttgarter%20Kammerorchester/Bach,%20J.S._%20The%20Art%20of%20Fugue%3B%20A%20Musical%20Offering/1-13%20The%20Art%20of%20Fugue,%20BWV%201080%20-%20-%20-%20No.17%20Fuga%20per%20canonem.mp3 + File Folder Count4 + Library Folder Count1 + + 10392 + + Track ID10392 + NameThe Art of Fugue, BWV 1080 - - - No.16 Fuga per canonem + ArtistKarl Münchinger + Album ArtistStuttgarter Kammerorchester + ComposerBach, Johann Sebastian + AlbumBach, J.S.: The Art of Fugue; A Musical Offering + GenreClassical + KindMPEG audio file + Size7935759 + Total Time241397 + Disc Number1 + Disc Count2 + Track Number14 + Track Count19 + Year2001 + Date Modified2012-08-06T01:34:45Z + Date Added2012-08-06T03:10:06Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202544752 + Artwork Count1 + Sort NameArt of Fugue, BWV 1080 - - - No.16 Fuga per canonem + Persistent ID8EB5EDD32B1482AE + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stuttgarter%20Kammerorchester/Bach,%20J.S._%20The%20Art%20of%20Fugue%3B%20A%20Musical%20Offering/1-14%20The%20Art%20of%20Fugue,%20BWV%201080%20-%20-%20-%20No.16%20Fuga%20per%20canonem.mp3 + File Folder Count4 + Library Folder Count1 + + 10394 + + Track ID10394 + NameThe Art of Fugue, BWV 1080 - - - No.14a Fuga per canonem + ArtistKarl Münchinger + Album ArtistStuttgarter Kammerorchester + ComposerBach, Johann Sebastian + AlbumBach, J.S.: The Art of Fugue; A Musical Offering + GenreClassical + KindMPEG audio file + Size9354314 + Total Time285727 + Disc Number1 + Disc Count2 + Track Number15 + Track Count19 + Year2001 + Date Modified2012-08-06T01:48:12Z + Date Added2012-08-06T03:10:06Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202544754 + Artwork Count1 + Sort NameArt of Fugue, BWV 1080 - - - No.14a Fuga per canonem + Persistent IDB0964B8E742DCB85 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stuttgarter%20Kammerorchester/Bach,%20J.S._%20The%20Art%20of%20Fugue%3B%20A%20Musical%20Offering/1-15%20The%20Art%20of%20Fugue,%20BWV%201080%20-%20-%20-%20No.14a%20Fuga%20per%20canonem.mp3 + File Folder Count4 + Library Folder Count1 + + 10396 + + Track ID10396 + NameThe Art of Fugue, BWV 1080 - - - No.13a + ArtistKarl Münchinger + Album ArtistStuttgarter Kammerorchester + ComposerBach, Johann Sebastian + AlbumBach, J.S.: The Art of Fugue; A Musical Offering + GenreClassical + KindMPEG audio file + Size4954006 + Total Time148218 + Disc Number1 + Disc Count2 + Track Number16 + Track Count19 + Year2001 + Date Modified2012-08-06T01:39:36Z + Date Added2012-08-06T03:10:06Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202544756 + Artwork Count1 + Sort NameArt of Fugue, BWV 1080 - - - No.13a + Persistent ID39344A74FCBDF095 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stuttgarter%20Kammerorchester/Bach,%20J.S._%20The%20Art%20of%20Fugue%3B%20A%20Musical%20Offering/1-16%20The%20Art%20of%20Fugue,%20BWV%201080%20-%20-%20-%20No.13a.mp3 + File Folder Count4 + Library Folder Count1 + + 10398 + + Track ID10398 + NameThe Art of Fugue, BWV 1080 - - - No.13b + ArtistKarl Münchinger + Album ArtistStuttgarter Kammerorchester + ComposerBach, Johann Sebastian + AlbumBach, J.S.: The Art of Fugue; A Musical Offering + GenreClassical + KindMPEG audio file + Size4933108 + Total Time147565 + Disc Number1 + Disc Count2 + Track Number17 + Track Count19 + Year2001 + Date Modified2012-08-06T01:45:54Z + Date Added2012-08-06T03:10:06Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202544758 + Artwork Count1 + Sort NameArt of Fugue, BWV 1080 - - - No.13b + Persistent ID414E19D83009BBC4 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stuttgarter%20Kammerorchester/Bach,%20J.S._%20The%20Art%20of%20Fugue%3B%20A%20Musical%20Offering/1-17%20The%20Art%20of%20Fugue,%20BWV%201080%20-%20-%20-%20No.13b.mp3 + File Folder Count4 + Library Folder Count1 + + 10400 + + Track ID10400 + NameThe Art of Fugue, BWV 1080 - - - No.19a + ArtistKarl Münchinger + Album ArtistStuttgarter Kammerorchester + ComposerBach, Johann Sebastian + AlbumBach, J.S.: The Art of Fugue; A Musical Offering + GenreClassical + KindMPEG audio file + Size5092768 + Total Time152555 + Disc Number1 + Disc Count2 + Track Number18 + Track Count19 + Year2001 + Date Modified2012-08-06T01:32:02Z + Date Added2012-08-06T03:10:07Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202544760 + Artwork Count1 + Sort NameArt of Fugue, BWV 1080 - - - No.19a + Persistent IDF0B419395A266E06 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stuttgarter%20Kammerorchester/Bach,%20J.S._%20The%20Art%20of%20Fugue%3B%20A%20Musical%20Offering/1-18%20The%20Art%20of%20Fugue,%20BWV%201080%20-%20-%20-%20No.19a.mp3 + File Folder Count4 + Library Folder Count1 + + 10402 + + Track ID10402 + NameThe Art of Fugue, BWV 1080 - - - No.19b + ArtistKarl Münchinger + Album ArtistStuttgarter Kammerorchester + ComposerBach, Johann Sebastian + AlbumBach, J.S.: The Art of Fugue; A Musical Offering + GenreClassical + KindMPEG audio file + Size5274163 + Total Time158223 + Disc Number1 + Disc Count2 + Track Number19 + Track Count19 + Year2001 + Date Modified2012-08-06T01:38:32Z + Date Added2012-08-06T03:10:07Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202544762 + Artwork Count1 + Sort NameArt of Fugue, BWV 1080 - - - No.19b + Persistent IDBB0DE28E96D61A01 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stuttgarter%20Kammerorchester/Bach,%20J.S._%20The%20Art%20of%20Fugue%3B%20A%20Musical%20Offering/1-19%20The%20Art%20of%20Fugue,%20BWV%201080%20-%20-%20-%20No.19b.mp3 + File Folder Count4 + Library Folder Count1 + + 10416 + + Track ID10416 + NameSuite bergamasque, L 75: I. Prélude + ArtistPeter Schmalfuss + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size6582950 + Total Time247902 + Disc Number1 + Disc Count1 + Track Number1 + Track Count100 + Year2011 + Date Modified2012-08-22T02:56:48Z + Date Added2012-08-22T03:42:19Z + Bit Rate204 + Sample Rate44100 + CommentsAmazon.com Song ID: 225476881 + Artwork Count1 + Persistent ID0FB16FD9A7BF4C26 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/01%20-%20Suite%20bergamasque,%20L%2075_%20I.%20Pr%25E9lude.mp3 + File Folder Count4 + Library Folder Count1 + + 10418 + + Track ID10418 + NameSuite bergamasque, L 75: II. Menuet + ArtistPeter Schmalfuss + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size6568373 + Total Time255791 + Disc Number1 + Disc Count1 + Track Number2 + Track Count100 + Year2011 + Date Modified2012-08-22T02:26:53Z + Date Added2012-08-22T03:42:19Z + Bit Rate197 + Sample Rate44100 + CommentsAmazon.com Song ID: 225476883 + Artwork Count1 + Persistent IDD0DED0C3D7606FB2 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/02%20-%20Suite%20bergamasque,%20L%2075_%20II.%20Menuet.mp3 + File Folder Count4 + Library Folder Count1 + + 10420 + + Track ID10420 + NameSuite bergamasque, L 75: III. Clair de lune + ArtistPeter Schmalfuss + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size7876333 + Total Time312320 + Disc Number1 + Disc Count1 + Track Number3 + Track Count100 + Year2011 + Date Modified2012-08-22T01:47:48Z + Date Added2012-08-22T03:42:19Z + Bit Rate195 + Sample Rate44100 + CommentsAmazon.com Song ID: 225476885 + Artwork Count1 + Persistent ID8E1BAA1468DD3884 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/03%20-%20Suite%20bergamasque,%20L%2075_%20III.%20Clair%20de%20lune.mp3 + File Folder Count4 + Library Folder Count1 + + 10422 + + Track ID10422 + NameSuite bergamasque, L 75: IV. Passepied + ArtistPeter Schmalfuss + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size5641299 + Total Time223190 + Disc Number1 + Disc Count1 + Track Number4 + Track Count100 + Year2011 + Date Modified2012-08-22T02:28:40Z + Date Added2012-08-22T03:42:19Z + Bit Rate193 + Sample Rate44100 + CommentsAmazon.com Song ID: 225476887 + Artwork Count1 + Persistent ID98F3722A4F275B5E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/04%20-%20Suite%20bergamasque,%20L%2075_%20IV.%20Passepied.mp3 + File Folder Count4 + Library Folder Count1 + + 10424 + + Track ID10424 + NameDeux arabesques (Two Arabesques), L 66: No. 1 + ArtistPeter Schmalfuss + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size6027339 + Total Time235023 + Disc Number1 + Disc Count1 + Track Number5 + Track Count100 + Year2011 + Date Modified2012-08-22T02:24:04Z + Date Added2012-08-22T03:42:20Z + Bit Rate196 + Sample Rate44100 + CommentsAmazon.com Song ID: 225476889 + Play Count2 + Play Date3430930714 + Play Date UTC2012-09-19T14:48:34Z + Artwork Count1 + Persistent ID2127269659374E16 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/05%20Deux%20arabesques%20(Two%20Arabesques),%20L%2066_%20No.%201.mp3 + File Folder Count4 + Library Folder Count1 + + 10426 + + Track ID10426 + NameDeux arabesques (Two Arabesques), L 66: No. 2 + ArtistPeter Schmalfuss + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size5683463 + Total Time216659 + Disc Number1 + Disc Count1 + Track Number6 + Track Count100 + Year2011 + Date Modified2012-08-22T02:52:54Z + Date Added2012-08-22T03:42:20Z + Bit Rate200 + Sample Rate44100 + CommentsAmazon.com Song ID: 225476891 + Play Count2 + Play Date3430930930 + Play Date UTC2012-09-19T14:52:10Z + Artwork Count1 + Persistent ID09E1C21800E338FE + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/06%20Deux%20arabesques%20(Two%20Arabesques),%20L%2066_%20No.%202.mp3 + File Folder Count4 + Library Folder Count1 + + 10428 + + Track ID10428 + NameLa plus que lente, L 121 + ArtistNoriko Ogawa + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size7330353 + Total Time339043 + Disc Number1 + Disc Count1 + Track Number7 + Track Count100 + Year2011 + Date Modified2012-08-22T01:40:25Z + Date Added2012-08-22T03:42:20Z + Bit Rate167 + Sample Rate44100 + CommentsAmazon.com Song ID: 225476893 + Play Count1 + Play Date3430931269 + Play Date UTC2012-09-19T14:57:49Z + Artwork Count1 + Persistent ID7D419B38AE7D9BC6 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/07%20La%20plus%20que%20lente,%20L%20121.mp3 + File Folder Count4 + Library Folder Count1 + + 10430 + + Track ID10430 + NameImages pour Piano, Set 1, L 110: I. Reflets dans l'eau (Reflections on the Water) + ArtistNoriko Ogawa + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size7342964 + Total Time347062 + Disc Number1 + Disc Count1 + Track Number8 + Track Count100 + Year2011 + Date Modified2012-08-22T02:01:31Z + Date Added2012-08-22T03:42:20Z + Bit Rate163 + Sample Rate44100 + CommentsAmazon.com Song ID: 225476895 + Artwork Count1 + Persistent ID88ADEDA53387D78A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/08%20Images%20pour%20Piano,%20Set%201,%20L%20110_%20I.%20Reflets%20dans%20l'eau%20(Reflections%20on%20the%20Water).mp3 + File Folder Count4 + Library Folder Count1 + + 10432 + + Track ID10432 + NameImages pour Piano, Set 1, L 110: II. Hommage à Rameau + ArtistNoriko Ogawa + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size8670097 + Total Time417044 + Disc Number1 + Disc Count1 + Track Number9 + Track Count100 + Year2011 + Date Modified2012-08-22T02:35:59Z + Date Added2012-08-22T03:42:21Z + Bit Rate161 + Sample Rate44100 + CommentsAmazon.com Song ID: 225476897 + Artwork Count1 + Persistent ID3CE065E3A05B4B43 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/09%20-%20Images%20pour%20Piano,%20Set%201,%20L%20110_%20II.%20Hommage%20%25E0%20Rameau.mp3 + File Folder Count4 + Library Folder Count1 + + 10434 + + Track ID10434 + NameImages pour Piano, Set 1, L 110: III. Mouvement + ArtistNoriko Ogawa + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size5020254 + Total Time210050 + Disc Number1 + Disc Count1 + Track Number10 + Track Count100 + Year2011 + Date Modified2012-08-22T01:58:02Z + Date Added2012-08-22T03:42:21Z + Bit Rate182 + Sample Rate44100 + CommentsAmazon.com Song ID: 225476899 + Artwork Count1 + Persistent IDA70CE2996BF6C8A4 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/10%20-%20Images%20pour%20Piano,%20Set%201,%20L%20110_%20III.%20Mouvement.mp3 + File Folder Count4 + Library Folder Count1 + + 10436 + + Track ID10436 + NameSyrinx for Solo Flute, L 129 + ArtistJadwiga Kotnowska + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size3970334 + Total Time148218 + Disc Number1 + Disc Count1 + Track Number100 + Track Count100 + Year2011 + Date Modified2012-08-22T02:20:13Z + Date Added2012-08-22T03:42:22Z + Bit Rate201 + Sample Rate44100 + CommentsAmazon.com Song ID: 225477074 + Play Count3 + Play Date3430929593 + Play Date UTC2012-09-19T14:29:53Z + Artwork Count1 + Persistent IDE249331E7631A5B8 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/100%20Syrinx%20for%20Solo%20Flute,%20L%20129.mp3 + File Folder Count4 + Library Folder Count1 + + 10438 + + Track ID10438 + NameImages pour Piano, Set 2, L 111: I. Cloches à travers les feuilles (Bells heard through the Leaves) + ArtistNoriko Ogawa + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size5930631 + Total Time284551 + Disc Number1 + Disc Count1 + Track Number11 + Track Count100 + Year2011 + Date Modified2012-08-22T02:48:59Z + Date Added2012-08-22T03:42:22Z + Bit Rate159 + Sample Rate44100 + CommentsAmazon.com Song ID: 225476901 + Artwork Count1 + Persistent ID66E99828717397F9 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/11%20-%20Images%20pour%20Piano,%20Set%202,%20L%20111_%20I.%20Cloches%20%25E0%20travers%20les%20feuilles%20(Bells%20heard%20through%20the%20Leaves).mp3 + File Folder Count4 + Library Folder Count1 + + 10440 + + Track ID10440 + NameImages pour Piano, Set 2, L 111: II. Et la lune descend sur le temple qui fût (And the Moon sets over the Ruined Temple) + ArtistNoriko Ogawa + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size7827362 + Total Time389041 + Disc Number1 + Disc Count1 + Track Number12 + Track Count100 + Year2011 + Date Modified2012-08-22T02:51:34Z + Date Added2012-08-22T03:42:22Z + Bit Rate156 + Sample Rate44100 + CommentsAmazon.com Song ID: 225476903 + Artwork Count1 + Persistent ID3048D490B81D763A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/12%20-%20Images%20pour%20Piano,%20Set%202,%20L%20111_%20II.%20Et%20la%20lune%20descend%20sur%20le%20temple%20qui%20f%25FBt%20(And%20the%20Moon%20sets%20over%20the%20Ruined%20Temple).mp3 + File Folder Count4 + Library Folder Count1 + + 10442 + + Track ID10442 + NameImages pour Piano, Set 2, L 111: III. Poissons d'or (Goldfish in a Bowl) + ArtistNoriko Ogawa + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size6206339 + Total Time272039 + Disc Number1 + Disc Count1 + Track Number13 + Track Count100 + Year2011 + Date Modified2012-08-22T01:52:57Z + Date Added2012-08-22T03:42:23Z + Bit Rate175 + Sample Rate44100 + CommentsAmazon.com Song ID: 225476904 + Artwork Count1 + Persistent IDE4D20958EED568EE + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/13%20-%20Images%20pour%20Piano,%20Set%202,%20L%20111_%20III.%20Poissons%20d'or%20(Goldfish%20in%20a%20Bowl).mp3 + File Folder Count4 + Library Folder Count1 + + 10444 + + Track ID10444 + NameImages inédites (Oubliées), L 87: I. Lent: Mélancolique et doux + ArtistNoriko Ogawa + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size4978556 + Total Time238053 + Disc Number1 + Disc Count1 + Track Number14 + Track Count100 + Year2011 + Date Modified2012-08-22T02:03:34Z + Date Added2012-08-22T03:42:23Z + Bit Rate159 + Sample Rate44100 + CommentsAmazon.com Song ID: 225476907 + Artwork Count1 + Persistent IDEA6E62E5B7EE4468 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/14%20-%20Images%20in%25E9dites%20(Oubli%25E9es),%20L%2087_%20I.%20Lent_%20M%25E9lancolique%20et%20doux.mp3 + File Folder Count4 + Library Folder Count1 + + 10446 + + Track ID10446 + NameImages inédites (Oubliées), L 87: II. Souvenir du Louvre + ArtistNoriko Ogawa + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size7635283 + Total Time366550 + Disc Number1 + Disc Count1 + Track Number15 + Track Count100 + Year2011 + Date Modified2012-08-22T02:24:45Z + Date Added2012-08-22T03:42:23Z + Bit Rate161 + Sample Rate44100 + CommentsAmazon.com Song ID: 225476909 + Artwork Count1 + Persistent ID6385D7B1F8EB7F24 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/15%20-%20Images%20in%25E9dites%20(Oubli%25E9es),%20L%2087_%20II.%20Souvenir%20du%20Louvre.mp3 + File Folder Count4 + Library Folder Count1 + + 10448 + + Track ID10448 + NameImages inédites (Oubliées), L 87: III. Quelques aspects de "nous n'irons plus au bois" parce qu'il fait un temps insupportable + ArtistNoriko Ogawa + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size6032673 + Total Time265064 + Disc Number1 + Disc Count1 + Track Number16 + Track Count100 + Year2011 + Date Modified2012-08-22T01:39:28Z + Date Added2012-08-22T03:42:24Z + Bit Rate174 + Sample Rate44100 + CommentsAmazon.com Song ID: 225476910 + Artwork Count1 + Persistent ID8D5FD8A53C84DB85 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/16%20-%20Images%20in%25E9dites%20(Oubli%25E9es),%20L%2087_%20III.%20Quelques%20aspects%20de%20_nous%20n'irons%20plus%20au%20bois_%20parce%20qu'il%20fait%20un%20temps%20insupportable.mp3 + File Folder Count4 + Library Folder Count1 + + 10450 + + Track ID10450 + NameElégie, L 138 + ArtistNoriko Ogawa + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size3386356 + Total Time134243 + Disc Number1 + Disc Count1 + Track Number17 + Track Count100 + Year2011 + Date Modified2012-08-22T02:19:45Z + Date Added2012-08-22T03:42:24Z + Bit Rate187 + Sample Rate44100 + CommentsAmazon.com Song ID: 225476913 + Play Count1 + Play Date3430417811 + Play Date UTC2012-09-13T16:20:11Z + Artwork Count1 + Persistent ID1795C7D186F72207 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/17%20Ele%CC%81gie,%20L%20138.mp3 + File Folder Count4 + Library Folder Count1 + + 10452 + + Track ID10452 + NameEstampes (Woodcuts), L 100: I. Pagodes (Pagodas) + ArtistNoriko Ogawa + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size6777281 + Total Time319059 + Disc Number1 + Disc Count1 + Track Number18 + Track Count100 + Year2011 + Date Modified2012-08-22T02:13:08Z + Date Added2012-08-22T03:42:24Z + Bit Rate163 + Sample Rate44100 + CommentsAmazon.com Song ID: 225476914 + Artwork Count1 + Persistent ID1D007C83FF68EAAD + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/18%20Estampes%20(Woodcuts),%20L%20100_%20I.%20Pagodes%20(Pagodas).mp3 + File Folder Count4 + Library Folder Count1 + + 10454 + + Track ID10454 + NameEstampes (Woodcuts), L 100: II. La soirée dans Grenade (Evening in Granada) + ArtistNoriko Ogawa + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size7254062 + Total Time344058 + Disc Number1 + Disc Count1 + Track Number19 + Track Count100 + Year2011 + Date Modified2012-08-22T02:36:35Z + Date Added2012-08-22T03:42:25Z + Bit Rate163 + Sample Rate44100 + CommentsAmazon.com Song ID: 225476917 + Artwork Count1 + Persistent ID13C2440EFE01D890 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/19%20-%20Estampes%20(Woodcuts),%20L%20100_%20II.%20La%20soir%25E9e%20dans%20Grenade%20(Evening%20in%20Granada).mp3 + File Folder Count4 + Library Folder Count1 + + 10456 + + Track ID10456 + NameEstampes (Woodcuts), L 100: III. Jardins sous la pluie (Gardens in the Rain) + ArtistNoriko Ogawa + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size5638390 + Total Time241057 + Disc Number1 + Disc Count1 + Track Number20 + Track Count100 + Year2011 + Date Modified2012-08-22T01:35:09Z + Date Added2012-08-22T03:42:25Z + Bit Rate179 + Sample Rate44100 + CommentsAmazon.com Song ID: 225476919 + Artwork Count1 + Persistent ID5F53D3DE14B873E4 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/20%20-%20Estampes%20(Woodcuts),%20L%20100_%20III.%20Jardins%20sous%20la%20pluie%20(Gardens%20in%20the%20Rain).mp3 + File Folder Count4 + Library Folder Count1 + + 10458 + + Track ID10458 + NameMasques pour Piano, L 105 + ArtistNoriko Ogawa + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size7510346 + Total Time319059 + Disc Number1 + Disc Count1 + Track Number21 + Track Count100 + Year2011 + Date Modified2012-08-22T01:49:22Z + Date Added2012-08-22T03:42:25Z + Bit Rate182 + Sample Rate44100 + CommentsAmazon.com Song ID: 225476921 + Artwork Count1 + Persistent ID6B245F1DE145B72C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/21%20Masques%20pour%20Piano,%20L%20105.mp3 + File Folder Count4 + Library Folder Count1 + + 10460 + + Track ID10460 + NamePréludes for Piano (Book 1), L 117: I. Danseuses de Delphes (Dancers of Delphi): Lent et grave + ArtistNoriko Ogawa + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size3860620 + Total Time171049 + Disc Number1 + Disc Count1 + Track Number22 + Track Count100 + Year2011 + Date Modified2012-08-22T02:57:53Z + Date Added2012-08-22T03:42:25Z + Bit Rate169 + Sample Rate44100 + CommentsAmazon.com Song ID: 225476923 + Artwork Count1 + Persistent IDC05B6FAC7FD5D561 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/22%20Pre%CC%81ludes%20for%20Piano%20(Book%201),%20L%20117_%20I.%20Danseuses%20de%20Delphes%20(Dancers%20of%20Delphi)_%20Lent%20et%20grave.mp3 + File Folder Count4 + Library Folder Count1 + + 10462 + + Track ID10462 + NamePréludes for Piano (Book 1), L 117: II. Voiles (Veils) + ArtistNoriko Ogawa + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size5137824 + Total Time237061 + Disc Number1 + Disc Count1 + Track Number23 + Track Count100 + Year2011 + Date Modified2012-08-22T02:28:13Z + Date Added2012-08-22T03:42:26Z + Bit Rate165 + Sample Rate44100 + CommentsAmazon.com Song ID: 225476925 + Artwork Count1 + Persistent IDF928949003AAF16B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/23%20-%20Pr%25E9ludes%20for%20Piano%20(Book%201),%20L%20117_%20II.%20Voiles%20(Veils).mp3 + File Folder Count4 + Library Folder Count1 + + 10464 + + Track ID10464 + NamePréludes for Piano (Book 1), L 117: III. Le vent dans la plaine (The Wind in the Plaine): Animé + ArtistNoriko Ogawa + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size3419025 + Total Time144248 + Disc Number1 + Disc Count1 + Track Number24 + Track Count100 + Year2011 + Date Modified2012-08-22T02:36:59Z + Date Added2012-08-22T03:42:26Z + Bit Rate176 + Sample Rate44100 + CommentsAmazon.com Song ID: 225476927 + Artwork Count1 + Persistent ID951763DA63085F1A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/24%20-%20Pr%25E9ludes%20for%20Piano%20(Book%201),%20L%20117_%20III.%20Le%20vent%20dans%20la%20plaine%20(The%20Wind%20in%20the%20Plaine)_%20Anim%25E9.mp3 + File Folder Count4 + Library Folder Count1 + + 10466 + + Track ID10466 + NamePréludes for Piano (Book 1), L 117: V. Les collines d'Anacapri (The Hills of Anacapri): Très Modéré + ArtistNoriko Ogawa + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size4832061 + Total Time202057 + Disc Number1 + Disc Count1 + Track Number26 + Track Count100 + Year2011 + Date Modified2012-08-22T01:40:51Z + Date Added2012-08-22T03:42:26Z + Bit Rate181 + Sample Rate44100 + CommentsAmazon.com Song ID: 225476931 + Artwork Count1 + Persistent IDFCABE2AAF2498583 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/26%20-%20Pr%25E9ludes%20for%20Piano%20(Book%201),%20L%20117_%20V.%20Les%20collines%20d'Anacapri%20(The%20Hills%20of%20Anacapri)_%20Tr%25E8s%20Mod%25E9r%25E9.mp3 + File Folder Count4 + Library Folder Count1 + + 10468 + + Track ID10468 + NamePréludes for Piano (Book 1), L 117: VI. Des pas sur la neige (Footsteps in the Snow): Triste et lent + ArtistNoriko Ogawa + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size5731862 + Total Time267859 + Disc Number1 + Disc Count1 + Track Number27 + Track Count100 + Year2011 + Date Modified2012-08-22T02:33:31Z + Date Added2012-08-22T03:42:26Z + Bit Rate164 + Sample Rate44100 + CommentsAmazon.com Song ID: 225476934 + Artwork Count1 + Persistent ID423BF9FFF4F54B69 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/27%20-%20Pr%25E9ludes%20for%20Piano%20(Book%201),%20L%20117_%20VI.%20Des%20pas%20sur%20la%20neige%20(Footsteps%20in%20the%20Snow)_%20Triste%20et%20lent.mp3 + File Folder Count4 + Library Folder Count1 + + 10470 + + Track ID10470 + NamePréludes for Piano (Book 1), L 117: VII. Ce qu'a vu le d'Ouest (What the West has Seen): Animé et tumultueux + ArtistNoriko Ogawa + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size5930604 + Total Time227918 + Disc Number1 + Disc Count1 + Track Number28 + Track Count100 + Year2011 + Date Modified2012-08-22T02:58:29Z + Date Added2012-08-22T03:42:27Z + Bit Rate199 + Sample Rate44100 + CommentsAmazon.com Song ID: 225476936 + Artwork Count1 + Persistent IDF288A91702868348 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/28%20-%20Pr%25E9ludes%20for%20Piano%20(Book%201),%20L%20117_%20VII.%20Ce%20qu'a%20vu%20le%20d'Ouest%20(What%20the%20West%20has%20Seen)_%20Anim%25E9%20et%20tumultueux.mp3 + File Folder Count4 + Library Folder Count1 + + 10472 + + Track ID10472 + NamePréludes For Piano (Book 1), L 117: VIII. La Fille Aux Cheveux De Lin (The Girl With The Flaxen Hair): Très Calme Et Doucement Expressif + ArtistNoriko Ogawa + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size3692538 + Total Time164884 + Disc Number1 + Disc Count1 + Track Number29 + Track Count100 + Year2011 + Date Modified2012-08-22T02:29:34Z + Date Added2012-08-22T03:42:27Z + Bit Rate167 + Sample Rate44100 + CommentsAmazon.com Song ID: 225476938 + Artwork Count1 + Persistent ID3AE54546FD4AE3AD + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/29%20-%20Pr%25E9ludes%20For%20Piano%20(Book%201),%20L%20117_%20VIII.%20La%20Fille%20Aux%20Cheveux%20De%20Lin%20(The%20Girl%20With%20The%20Flaxen%20Hair)_%20Tr%25E8s%20Calme%20Et%20Doucement%20Expressif.mp3 + File Folder Count4 + Library Folder Count1 + + 10474 + + Track ID10474 + NamePréludes for Piano (Book 1), L 117: IX. La sérénade interrompue (Interrupted Serenade): Modérément animé + ArtistNoriko Ogawa + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size3977000 + Total Time170213 + Disc Number1 + Disc Count1 + Track Number30 + Track Count100 + Year2011 + Date Modified2012-08-22T02:42:07Z + Date Added2012-08-22T03:42:27Z + Bit Rate175 + Sample Rate44100 + CommentsAmazon.com Song ID: 225476940 + Artwork Count1 + Persistent IDEAB5EF2B64AC482E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/30%20-%20Pr%25E9ludes%20for%20Piano%20(Book%201),%20L%20117_%20IX.%20La%20s%25E9r%25E9nade%20interrompue%20(Interrupted%20Serenade)_%20Mod%25E9r%25E9ment%20anim%25E9.mp3 + File Folder Count4 + Library Folder Count1 + + 10476 + + Track ID10476 + NamePréludes for Piano (Book 1), L 117: X. La Cathédrale engloutie (The Sunken Cathedral): Profondément calme + ArtistNoriko Ogawa + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size8663794 + Total Time384052 + Disc Number1 + Disc Count1 + Track Number31 + Track Count100 + Year2011 + Date Modified2012-08-22T01:52:21Z + Date Added2012-08-22T03:42:27Z + Bit Rate175 + Sample Rate44100 + CommentsAmazon.com Song ID: 225476942 + Artwork Count1 + Persistent ID54AE2D40D46D41ED + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/31%20-%20Pr%25E9ludes%20for%20Piano%20(Book%201),%20L%20117_%20X.%20La%20Cath%25E9drale%20engloutie%20(The%20Sunken%20Cathedral)_%20Profond%25E9ment%20calme.mp3 + File Folder Count4 + Library Folder Count1 + + 10478 + + Track ID10478 + NamePréludes for Piano (Book 1), L 117: XI. La danse de Puck (Puck's Dance): Capricieux et léger + ArtistNoriko Ogawa + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size4504912 + Total Time198060 + Disc Number1 + Disc Count1 + Track Number32 + Track Count100 + Year2011 + Date Modified2012-08-22T02:27:19Z + Date Added2012-08-22T03:42:28Z + Bit Rate172 + Sample Rate44100 + CommentsAmazon.com Song ID: 225476944 + Artwork Count1 + Persistent IDF8835FEA36207976 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/32%20-%20Pr%25E9ludes%20for%20Piano%20(Book%201),%20L%20117_%20XI.%20La%20danse%20de%20Puck%20(Puck's%20Dance)_%20Capricieux%20et%20l%25E9ger.mp3 + File Folder Count4 + Library Folder Count1 + + 10480 + + Track ID10480 + NamePréludes for Piano (Book 1), L 117: XII. Minstrels: Modéré + ArtistNoriko Ogawa + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size4059617 + Total Time167183 + Disc Number1 + Disc Count1 + Track Number33 + Track Count100 + Year2011 + Date Modified2012-08-22T02:30:39Z + Date Added2012-08-22T03:42:28Z + Bit Rate182 + Sample Rate44100 + CommentsAmazon.com Song ID: 225476946 + Artwork Count1 + Persistent ID9163A0C405841950 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/33%20-%20Pr%25E9ludes%20for%20Piano%20(Book%201),%20L%20117_%20XII.%20Minstrels_%20Mod%25E9r%25E9.mp3 + File Folder Count4 + Library Folder Count1 + + 10482 + + Track ID10482 + NameL'Isle Joyeuse, L 106 + ArtistNoriko Ogawa + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size9099876 + Total Time394057 + Disc Number1 + Disc Count1 + Track Number34 + Track Count100 + Year2011 + Date Modified2012-08-22T01:59:58Z + Date Added2012-08-22T03:42:28Z + Bit Rate179 + Sample Rate44100 + CommentsAmazon.com Song ID: 225476948 + Artwork Count1 + Persistent ID8A8BED4700377E9E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/34%20-%20L'Isle%20Joyeuse,%20L%20106.mp3 + File Folder Count4 + Library Folder Count1 + + 10484 + + Track ID10484 + NamePréludes for Piano (Book 2), L 123: I. Brouillards (Mists): Modéré + ArtistNoriko Ogawa + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size4742739 + Total Time192391 + Disc Number1 + Disc Count1 + Track Number35 + Track Count100 + Year2011 + Date Modified2012-08-22T02:53:18Z + Date Added2012-08-22T03:42:29Z + Bit Rate187 + Sample Rate44100 + CommentsAmazon.com Song ID: 225476950 + Artwork Count1 + Persistent ID86F2DF1293F306BA + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/35%20-%20Pr%25E9ludes%20for%20Piano%20(Book%202),%20L%20123_%20I.%20Brouillards%20(Mists)_%20Mod%25E9r%25E9.mp3 + File Folder Count4 + Library Folder Count1 + + 10486 + + Track ID10486 + NamePréludes for Piano (Book 2), L 123: II. Feuilles mortes (Dead Leaves): Lent et mélancolique + ArtistNoriko Ogawa + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size4314817 + Total Time174341 + Disc Number1 + Disc Count1 + Track Number36 + Track Count100 + Year2011 + Date Modified2012-08-22T02:14:21Z + Date Added2012-08-22T03:42:29Z + Bit Rate186 + Sample Rate44100 + CommentsAmazon.com Song ID: 225476952 + Artwork Count1 + Persistent ID0CF869AFBA17656C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/36%20-%20Pr%25E9ludes%20for%20Piano%20(Book%202),%20L%20123_%20II.%20Feuilles%20mortes%20(Dead%20Leaves)_%20Lent%20et%20m%25E9lancolique.mp3 + File Folder Count4 + Library Folder Count1 + + 10488 + + Track ID10488 + NamePréludes for Piano (Book 2), L 123: III. La puerta del Vino (The Wine Gate): Mouvement de Habanera + ArtistNoriko Ogawa + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size4860404 + Total Time191111 + Disc Number1 + Disc Count1 + Track Number37 + Track Count100 + Year2011 + Date Modified2012-08-22T01:38:49Z + Date Added2012-08-22T03:42:29Z + Bit Rate193 + Sample Rate44100 + CommentsAmazon.com Song ID: 225476954 + Artwork Count1 + Persistent IDCDEE4531E06290D4 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/37%20-%20Pr%25E9ludes%20for%20Piano%20(Book%202),%20L%20123_%20III.%20La%20puerta%20del%20Vino%20(The%20Wine%20Gate)_%20Mouvement%20de%20Habanera.mp3 + File Folder Count4 + Library Folder Count1 + + 10490 + + Track ID10490 + NamePréludes for Piano (Book 2), L 123: IV. Les fées sont d'exquises danseuses (The Fairies are Exquisite Dancers): Rapide et léger + ArtistNoriko Ogawa + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size4829383 + Total Time195082 + Disc Number1 + Disc Count1 + Track Number38 + Track Count100 + Year2011 + Date Modified2012-08-22T02:25:38Z + Date Added2012-08-22T03:42:30Z + Bit Rate188 + Sample Rate44100 + CommentsAmazon.com Song ID: 225476956 + Artwork Count1 + Persistent IDF5614C52045A38C8 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/38%20-%20Pr%25E9ludes%20for%20Piano%20(Book%202),%20L%20123_%20IV.%20Les%20f%25E9es%20sont%20d'exquises%20danseuses%20(The%20Fairies%20are%20Exquisite%20Dancers)_%20Rapide%20et%20l%25E9ger.mp3 + File Folder Count4 + Library Folder Count1 + + 10492 + + Track ID10492 + NamePréludes for Piano (Book 2), L 123: V. Bruyères (Heather): Calme, doucement expressif + ArtistNoriko Ogawa + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size4224227 + Total Time165668 + Disc Number1 + Disc Count1 + Track Number39 + Track Count100 + Year2011 + Date Modified2012-08-22T01:43:56Z + Date Added2012-08-22T03:42:30Z + Bit Rate192 + Sample Rate44100 + CommentsAmazon.com Song ID: 225476958 + Artwork Count1 + Persistent IDBC5F00762413CE63 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/39%20-%20Pr%25E9ludes%20for%20Piano%20(Book%202),%20L%20123_%20V.%20Bruy%25E8res%20(Heather)_%20Calme,%20doucement%20expressif.mp3 + File Folder Count4 + Library Folder Count1 + + 10494 + + Track ID10494 + NamePréludes for Piano (Book 2), L 123: VI. Général Lavine - eccentric: Dans le style et le mouvement d'un Cakewalk + ArtistNoriko Ogawa + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size4081218 + Total Time152320 + Disc Number1 + Disc Count1 + Track Number40 + Track Count100 + Year2011 + Date Modified2012-08-22T02:13:37Z + Date Added2012-08-22T03:42:30Z + Bit Rate201 + Sample Rate44100 + CommentsAmazon.com Song ID: 225476960 + Artwork Count1 + Persistent IDA70AEE3AC6E5AD9D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/40%20-%20Pr%25E9ludes%20for%20Piano%20(Book%202),%20L%20123_%20VI.%20G%25E9n%25E9ral%20Lavine%20-%20eccentric_%20Dans%20le%20style%20et%20le%20mouvement%20d'un%20Cakewalk.mp3 + File Folder Count4 + Library Folder Count1 + + 10496 + + Track ID10496 + NamePréludes for Piano (Book 2), L 123: VII. La terrasse des audiences du clair de lune (The Terrace for Moonlit Audiences): Lent + ArtistNoriko Ogawa + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size6156101 + Total Time246543 + Disc Number1 + Disc Count1 + Track Number41 + Track Count100 + Year2011 + Date Modified2012-08-22T02:50:38Z + Date Added2012-08-22T03:42:30Z + Bit Rate191 + Sample Rate44100 + CommentsAmazon.com Song ID: 225476962 + Artwork Count1 + Persistent IDADA30B30513B30E8 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/41%20-%20Pr%25E9ludes%20for%20Piano%20(Book%202),%20L%20123_%20VII.%20La%20terrasse%20des%20audiences%20du%20clair%20de%20lune%20(The%20Terrace%20for%20Moonlit%20Audiences)_%20Lent.mp3 + File Folder Count4 + Library Folder Count1 + + 10498 + + Track ID10498 + NamePréludes For Piano (Book 2), L 123: VIII. Ondine (Undine): Scherzando + ArtistNoriko Ogawa + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size4875025 + Total Time195709 + Disc Number1 + Disc Count1 + Track Number42 + Track Count100 + Year2011 + Date Modified2012-08-22T02:44:43Z + Date Added2012-08-22T03:42:30Z + Bit Rate189 + Sample Rate44100 + CommentsAmazon.com Song ID: 225476963 + Artwork Count1 + Persistent ID155B207081937A49 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/42%20-%20Pr%25E9ludes%20For%20Piano%20(Book%202),%20L%20123_%20VIII.%20Ondine%20(Undine)_%20Scherzando.mp3 + File Folder Count4 + Library Folder Count1 + + 10500 + + Track ID10500 + NamePréludes for Piano (Book 2), L 123: IX. Hommage à S. Pickwick Esq. P.P.M.P.C. (Homage to S. Pickwick): Grave + ArtistNoriko Ogawa + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size3887064 + Total Time147879 + Disc Number1 + Disc Count1 + Track Number43 + Track Count100 + Year2011 + Date Modified2012-08-22T02:34:00Z + Date Added2012-08-22T03:42:31Z + Bit Rate197 + Sample Rate44100 + CommentsAmazon.com Song ID: 225476966 + Artwork Count1 + Persistent IDE410594AEC4AF77B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/43%20-%20Pr%25E9ludes%20for%20Piano%20(Book%202),%20L%20123_%20IX.%20Hommage%20%25E0%20S.%20Pickwick%20Esq.%20P.P.M.P.C.%20(Homage%20to%20S.%20Pickwick)_%20Grave.mp3 + File Folder Count4 + Library Folder Count1 + + 10502 + + Track ID10502 + NamePréludes for Piano (Book 2), L 123: X. Canope (Canopic jar): Très calme et doucement triste + ArtistNoriko Ogawa + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size3965044 + Total Time159529 + Disc Number1 + Disc Count1 + Track Number44 + Track Count100 + Year2011 + Date Modified2012-08-22T01:42:43Z + Date Added2012-08-22T03:42:31Z + Bit Rate186 + Sample Rate44100 + CommentsAmazon.com Song ID: 225476968 + Artwork Count1 + Persistent ID1A181D65C98F386A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/44%20-%20Pr%25E9ludes%20for%20Piano%20(Book%202),%20L%20123_%20X.%20Canope%20(Canopic%20jar)_%20Tr%25E8s%20calme%20et%20doucement%20triste.mp3 + File Folder Count4 + Library Folder Count1 + + 10504 + + Track ID10504 + NamePréludes for Piano (Book 2), L 123: XI. Les tierces alternées (Alternating Thirds): Modérément animé + ArtistNoriko Ogawa + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size4210029 + Total Time161227 + Disc Number1 + Disc Count1 + Track Number45 + Track Count100 + Year2011 + Date Modified2012-08-22T02:27:48Z + Date Added2012-08-22T03:42:31Z + Bit Rate196 + Sample Rate44100 + CommentsAmazon.com Song ID: 225476970 + Artwork Count1 + Persistent IDB5B7D8DB17130800 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/45%20-%20Pr%25E9ludes%20for%20Piano%20(Book%202),%20L%20123_%20XI.%20Les%20tierces%20altern%25E9es%20(Alternating%20Thirds)_%20Mod%25E9r%25E9ment%20anim%25E9.mp3 + File Folder Count4 + Library Folder Count1 + + 10506 + + Track ID10506 + NamePréludes for Piano (Book 2), L 123: XII. Feux d'artifice (Fireworks): Modérément animé + ArtistNoriko Ogawa + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size8169582 + Total Time318720 + Disc Number1 + Disc Count1 + Track Number46 + Track Count100 + Year2011 + Date Modified2012-08-22T01:53:55Z + Date Added2012-08-22T03:42:32Z + Bit Rate199 + Sample Rate44100 + CommentsAmazon.com Song ID: 225476972 + Artwork Count1 + Persistent ID1413D274BE6D93CD + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/46%20-%20Pr%25E9ludes%20for%20Piano%20(Book%202),%20L%20123_%20XII.%20Feux%20d'artifice%20(Fireworks)_%20Mod%25E9r%25E9ment%20anim%25E9.mp3 + File Folder Count4 + Library Folder Count1 + + 10508 + + Track ID10508 + NameÉtude retrouvée + ArtistNoriko Ogawa + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size8004424 + Total Time326948 + Disc Number1 + Disc Count1 + Track Number47 + Track Count100 + Year2011 + Date Modified2012-08-22T02:32:24Z + Date Added2012-08-22T03:42:32Z + Bit Rate189 + Sample Rate44100 + CommentsAmazon.com Song ID: 225476974 + Artwork Count1 + Persistent ID91901C27C649B93E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/47%20E%CC%81tude%20retrouve%CC%81e.mp3 + File Folder Count4 + Library Folder Count1 + + 10510 + + Track ID10510 + NameChildren's Corner, L 113: I. Doctor Gradus ad Parnassum + ArtistNoriko Ogawa + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size3635109 + Total Time149864 + Disc Number1 + Disc Count1 + Track Number48 + Track Count100 + Year2011 + Date Modified2012-08-22T02:34:45Z + Date Added2012-08-22T03:42:32Z + Bit Rate181 + Sample Rate44100 + CommentsAmazon.com Song ID: 225476976 + Play Count1 + Play Date3438966389 + Play Date UTC2012-12-21T14:56:29Z + Artwork Count1 + Persistent IDC78CFDF50FC71AB6 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/48%20Children's%20Corner,%20L%20113_%20I.%20Doctor%20Gradus%20ad%20Parnassum.mp3 + File Folder Count4 + Library Folder Count1 + + 10512 + + Track ID10512 + NameChildren's Corner, L 113: II. Jimbo's Lullaby + ArtistNoriko Ogawa + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size5142994 + Total Time227552 + Disc Number1 + Disc Count1 + Track Number49 + Track Count100 + Year2011 + Date Modified2012-08-22T01:34:15Z + Date Added2012-08-22T03:42:32Z + Bit Rate172 + Sample Rate44100 + CommentsAmazon.com Song ID: 225476977 + Play Count1 + Play Date3438966616 + Play Date UTC2012-12-21T15:00:16Z + Artwork Count1 + Persistent IDF491672F426BE85B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/49%20Children's%20Corner,%20L%20113_%20II.%20Jimbo's%20Lullaby.mp3 + File Folder Count4 + Library Folder Count1 + + 10514 + + Track ID10514 + NameChildren's Corner, L 113: III. Serenade for the Doll + ArtistNoriko Ogawa + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size3546688 + Total Time157048 + Disc Number1 + Disc Count1 + Track Number50 + Track Count100 + Year2011 + Date Modified2012-08-22T02:12:14Z + Date Added2012-08-22T03:42:32Z + Bit Rate168 + Sample Rate44100 + CommentsAmazon.com Song ID: 225476980 + Play Count1 + Play Date3438966773 + Play Date UTC2012-12-21T15:02:53Z + Artwork Count1 + Persistent IDCC0A8243EEF0356C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/50%20Children's%20Corner,%20L%20113_%20III.%20Serenade%20for%20the%20Doll.mp3 + File Folder Count4 + Library Folder Count1 + + 10516 + + Track ID10516 + NameChildren's Corner, L 113: IV. The Snow is Dancing + ArtistNoriko Ogawa + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size3519966 + Total Time152555 + Disc Number1 + Disc Count1 + Track Number51 + Track Count100 + Year2011 + Date Modified2012-08-22T01:58:49Z + Date Added2012-08-22T03:42:32Z + Bit Rate171 + Sample Rate44100 + CommentsAmazon.com Song ID: 225476982 + Play Count1 + Play Date3438966926 + Play Date UTC2012-12-21T15:05:26Z + Artwork Count1 + Persistent ID91170B142CA3EE0E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/51%20Children's%20Corner,%20L%20113_%20IV.%20The%20Snow%20is%20Dancing.mp3 + File Folder Count4 + Library Folder Count1 + + 10518 + + Track ID10518 + NameChildren's Corner, L 113: V. The Little Shepherd + ArtistNoriko Ogawa + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size3499161 + Total Time161253 + Disc Number1 + Disc Count1 + Track Number52 + Track Count100 + Year2011 + Date Modified2012-08-22T02:16:20Z + Date Added2012-08-22T03:42:32Z + Bit Rate161 + Sample Rate44100 + CommentsAmazon.com Song ID: 225476984 + Play Count1 + Play Date3438967087 + Play Date UTC2012-12-21T15:08:07Z + Artwork Count1 + Persistent IDDFCD5EBC32C06CC6 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/52%20Children's%20Corner,%20L%20113_%20V.%20The%20Little%20Shepherd.mp3 + File Folder Count4 + Library Folder Count1 + + 10520 + + Track ID10520 + NameChildren's Corner, L 113: VI. Golliwogg's Cake-walk + ArtistNoriko Ogawa + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size4643845 + Total Time194063 + Disc Number1 + Disc Count1 + Track Number53 + Track Count100 + Year2011 + Date Modified2012-08-22T02:06:07Z + Date Added2012-08-22T03:42:33Z + Bit Rate181 + Sample Rate44100 + CommentsAmazon.com Song ID: 225476986 + Play Count1 + Play Date3438967281 + Play Date UTC2012-12-21T15:11:21Z + Artwork Count1 + Persistent ID1445832E7DCCDC92 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/53%20Children's%20Corner,%20L%20113_%20VI.%20Golliwogg's%20Cake-walk.mp3 + File Folder Count4 + Library Folder Count1 + + 10522 + + Track ID10522 + NameD'un cahier d'esquisses, L 99 + ArtistNoriko Ogawa + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size6390760 + Total Time288052 + Disc Number1 + Disc Count1 + Track Number54 + Track Count100 + Year2011 + Date Modified2012-08-22T01:48:33Z + Date Added2012-08-22T03:42:33Z + Bit Rate170 + Sample Rate44100 + CommentsAmazon.com Song ID: 225476988 + Artwork Count1 + Persistent IDE6C1A0E9A296C2FC + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/54%20D'un%20cahier%20d'esquisses,%20L%2099.mp3 + File Folder Count4 + Library Folder Count1 + + 10524 + + Track ID10524 + NameLa boîte à joujoux (The Toy Box), Ballet for Children: Scene 1 - Le magasin de jouets (The Toy Store) + ArtistNoriko Ogawa + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size22173849 + Total Time870791 + Disc Number1 + Disc Count1 + Track Number55 + Track Count100 + Year2011 + Date Modified2012-08-22T01:46:43Z + Date Added2012-08-22T03:42:34Z + Bit Rate201 + Sample Rate44100 + CommentsAmazon.com Song ID: 225476990 + Artwork Count1 + Persistent ID21B13CBDF070242D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/55%20-%20La%20bo%25EEte%20%25E0%20joujoux%20(The%20Toy%20Box),%20Ballet%20for%20Children_%20Scene%201%20-%20Le%20magasin%20de%20jouets%20(The%20Toy%20Store).mp3 + File Folder Count4 + Library Folder Count1 + + 10526 + + Track ID10526 + NameLa boîte à joujoux (The Toy Box), Ballet for Children: Scene 2 - Le champ de bataille (The Battlefield) + ArtistNoriko Ogawa + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size14593228 + Total Time575582 + Disc Number1 + Disc Count1 + Track Number56 + Track Count100 + Year2011 + Date Modified2012-08-22T02:17:43Z + Date Added2012-08-22T03:42:34Z + Bit Rate199 + Sample Rate44100 + CommentsAmazon.com Song ID: 225476992 + Artwork Count1 + Persistent IDD23FC93293E58D69 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/56%20-%20La%20bo%25EEte%20%25E0%20joujoux%20(The%20Toy%20Box),%20Ballet%20for%20Children_%20Scene%202%20-%20Le%20champ%20de%20bataille%20(The%20Battlefield).mp3 + File Folder Count4 + Library Folder Count1 + + 10528 + + Track ID10528 + NameLa boîte à joujoux (The Toy Box), Ballet for Children: Scene 3 - La bergerie à vendre (The Sheep for Sale) + ArtistNoriko Ogawa + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size9163414 + Total Time356022 + Disc Number1 + Disc Count1 + Track Number57 + Track Count100 + Year2011 + Date Modified2012-08-22T02:54:39Z + Date Added2012-08-22T03:42:34Z + Bit Rate200 + Sample Rate44100 + CommentsAmazon.com Song ID: 225476994 + Artwork Count1 + Persistent IDA47506A1CCE74ACD + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/57%20-%20La%20bo%25EEte%20%25E0%20joujoux%20(The%20Toy%20Box),%20Ballet%20for%20Children_%20Scene%203%20-%20La%20bergerie%20%25E0%20vendre%20(The%20Sheep%20for%20Sale).mp3 + File Folder Count4 + Library Folder Count1 + + 10530 + + Track ID10530 + NameHommage à Joseph Haydn, L 115 + ArtistNoriko Ogawa + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size3642504 + Total Time151222 + Disc Number1 + Disc Count1 + Track Number58 + Track Count100 + Year2011 + Date Modified2012-08-22T02:58:47Z + Date Added2012-08-22T03:42:34Z + Bit Rate179 + Sample Rate44100 + CommentsAmazon.com Song ID: 225476996 + Artwork Count1 + Persistent ID2942ACC9F8718476 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/58%20-%20Hommage%20%25E0%20Joseph%20Haydn,%20L%20115.mp3 + File Folder Count4 + Library Folder Count1 + + 10532 + + Track ID10532 + NameTwelve Études for Piano, L 136: Étude 1 pour les cinq doigts d'après Monsieur Czerny (Five Fingers, after Monsieur Czerny) + ArtistNoriko Ogawa + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size5408707 + Total Time207490 + Disc Number1 + Disc Count1 + Track Number59 + Track Count100 + Year2011 + Date Modified2012-08-22T02:50:03Z + Date Added2012-08-22T03:42:35Z + Bit Rate199 + Sample Rate44100 + CommentsAmazon.com Song ID: 225476997 + Artwork Count1 + Persistent ID10C759258965F129 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/59%20-%20Twelve%20%25C9tudes%20for%20Piano,%20L%20136_%20%25C9tude%201%20pour%20les%20cinq%20doigts%20d'apr%25E8s%20Monsieur%20Czerny%20(Five%20Fingers,%20after%20Monsieur%20Czerny).mp3 + File Folder Count4 + Library Folder Count1 + + 10534 + + Track ID10534 + NameLa boîte à joujoux (The Toy Box), Ballet for Children: Scene 4 - Après fortune faite (After Making a Fortune) + ArtistNoriko Ogawa + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size5595221 + Total Time214726 + Disc Number1 + Disc Count1 + Track Number60 + Track Count100 + Year2011 + Date Modified2012-08-22T02:56:11Z + Date Added2012-08-22T03:42:35Z + Bit Rate199 + Sample Rate44100 + CommentsAmazon.com Song ID: 225477000 + Artwork Count1 + Persistent ID783C96641021035E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/60%20-%20La%20bo%25EEte%20%25E0%20joujoux%20(The%20Toy%20Box),%20Ballet%20for%20Children_%20Scene%204%20-%20Apr%25E8s%20fortune%20faite%20(After%20Making%20a%20Fortune).mp3 + File Folder Count4 + Library Folder Count1 + + 10536 + + Track ID10536 + NameTwelve Études for Piano, L 136: Étude 2 pour les tierces (Thirds) + ArtistNoriko Ogawa + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size6911734 + Total Time272744 + Disc Number1 + Disc Count1 + Track Number61 + Track Count100 + Year2011 + Date Modified2012-08-22T02:53:51Z + Date Added2012-08-22T03:42:35Z + Bit Rate195 + Sample Rate44100 + CommentsAmazon.com Song ID: 225477002 + Artwork Count1 + Persistent ID5CC0CE79A8082D44 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/61%20-%20Twelve%20%25C9tudes%20for%20Piano,%20L%20136_%20%25C9tude%202%20pour%20les%20tierces%20(Thirds).mp3 + File Folder Count4 + Library Folder Count1 + + 10538 + + Track ID10538 + NameTwelve Études for Piano, L 136: Étude 3 pour les quartes (Fourths) + ArtistNoriko Ogawa + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size8185401 + Total Time335072 + Disc Number1 + Disc Count1 + Track Number62 + Track Count100 + Year2011 + Date Modified2012-08-22T01:38:16Z + Date Added2012-08-22T03:42:35Z + Bit Rate189 + Sample Rate44100 + CommentsAmazon.com Song ID: 225477004 + Artwork Count1 + Persistent ID63C6A933C0053041 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/62%20-%20Twelve%20%25C9tudes%20for%20Piano,%20L%20136_%20%25C9tude%203%20pour%20les%20quartes%20(Fourths).mp3 + File Folder Count4 + Library Folder Count1 + + 10540 + + Track ID10540 + NameTwelve Études for Piano, L 136: Étude 4 pour les sixtes (Sixths) + ArtistNoriko Ogawa + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size7353717 + Total Time297377 + Disc Number1 + Disc Count1 + Track Number63 + Track Count100 + Year2011 + Date Modified2012-08-22T02:00:40Z + Date Added2012-08-22T03:42:35Z + Bit Rate191 + Sample Rate44100 + CommentsAmazon.com Song ID: 225477006 + Artwork Count1 + Persistent ID8C9A0120C83D14B1 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/63%20-%20Twelve%20%25C9tudes%20for%20Piano,%20L%20136_%20%25C9tude%204%20pour%20les%20sixtes%20(Sixths).mp3 + File Folder Count4 + Library Folder Count1 + + 10542 + + Track ID10542 + NameTwelve Études for Piano, L 136: Étude 5 pour les octaves (Octaves) + ArtistNoriko Ogawa + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size4896347 + Total Time173714 + Disc Number1 + Disc Count1 + Track Number64 + Track Count100 + Year2011 + Date Modified2012-08-22T02:04:23Z + Date Added2012-08-22T03:42:36Z + Bit Rate214 + Sample Rate44100 + CommentsAmazon.com Song ID: 225477007 + Artwork Count1 + Persistent IDF2A86AFFCA8D0E2B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/64%20-%20Twelve%20%25C9tudes%20for%20Piano,%20L%20136_%20%25C9tude%205%20pour%20les%20octaves%20(Octaves).mp3 + File Folder Count4 + Library Folder Count1 + + 10544 + + Track ID10544 + NameTwelve Études for Piano, L 136: Étude 6 pour les huit doigts (Eight Fingers) + ArtistNoriko Ogawa + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size3000921 + Total Time111307 + Disc Number1 + Disc Count1 + Track Number65 + Track Count100 + Year2011 + Date Modified2012-08-22T01:49:40Z + Date Added2012-08-22T03:42:36Z + Bit Rate198 + Sample Rate44100 + CommentsAmazon.com Song ID: 225477009 + Artwork Count1 + Persistent IDA85CB84659BF10E2 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/65%20Twelve%20E%CC%81tudes%20for%20Piano,%20L%20136_%20E%CC%81tude%206%20pour%20les%20huit%20doigts%20(Eight%20Fingers).mp3 + File Folder Count4 + Library Folder Count1 + + 10546 + + Track ID10546 + NameTwelve Études for Piano, L 136: Étude 7 pour les degrés chromatiques (Chromatic Degrees) + ArtistNoriko Ogawa + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size3867587 + Total Time151431 + Disc Number1 + Disc Count1 + Track Number66 + Track Count100 + Year2011 + Date Modified2012-08-22T02:13:57Z + Date Added2012-08-22T03:42:36Z + Bit Rate191 + Sample Rate44100 + CommentsAmazon.com Song ID: 225477011 + Artwork Count1 + Persistent ID491A83D2848F1568 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/66%20Twelve%20E%CC%81tudes%20for%20Piano,%20L%20136_%20E%CC%81tude%207%20pour%20les%20degre%CC%81s%20chromatiques%20(Chromatic%20Degrees).mp3 + File Folder Count4 + Library Folder Count1 + + 10548 + + Track ID10548 + NameTwelve Études for Piano, L 136: Étude 8 pour les agréments (Ornaments) + ArtistNoriko Ogawa + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size7639499 + Total Time308218 + Disc Number1 + Disc Count1 + Track Number67 + Track Count100 + Year2011 + Date Modified2012-08-22T02:05:19Z + Date Added2012-08-22T03:42:36Z + Bit Rate192 + Sample Rate44100 + CommentsAmazon.com Song ID: 225477014 + Artwork Count1 + Persistent IDE8A124C4220A1AF7 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/67%20Twelve%20E%CC%81tudes%20for%20Piano,%20L%20136_%20E%CC%81tude%208%20pour%20les%20agre%CC%81ments%20(Ornaments).mp3 + File Folder Count4 + Library Folder Count1 + + 10550 + + Track ID10550 + NameTwelve Études for Piano, L 136: Étude 9 pour les notes répétées (Repeated Notes) + ArtistNoriko Ogawa + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size5248260 + Total Time201822 + Disc Number1 + Disc Count1 + Track Number68 + Track Count100 + Year2011 + Date Modified2012-08-22T01:37:04Z + Date Added2012-08-22T03:42:37Z + Bit Rate198 + Sample Rate44100 + CommentsAmazon.com Song ID: 225477015 + Artwork Count1 + Persistent ID15EA5F9D8AB7A4A2 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/68%20Twelve%20E%CC%81tudes%20for%20Piano,%20L%20136_%20E%CC%81tude%209%20pour%20les%20notes%20re%CC%81pe%CC%81te%CC%81es%20(Repeated%20Notes).mp3 + File Folder Count4 + Library Folder Count1 + + 10552 + + Track ID10552 + NameTwelve Études for Piano, L 136: Étude 10 pour les sonorités opposées (Opposing Sonorities) + ArtistNoriko Ogawa + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size7503442 + Total Time308218 + Disc Number1 + Disc Count1 + Track Number69 + Track Count100 + Year2011 + Date Modified2012-08-22T02:21:28Z + Date Added2012-08-22T03:42:37Z + Bit Rate188 + Sample Rate44100 + CommentsAmazon.com Song ID: 225477017 + Artwork Count1 + Persistent ID2D240B3342947C48 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/69%20Twelve%20E%CC%81tudes%20for%20Piano,%20L%20136_%20E%CC%81tude%2010%20pour%20les%20sonorite%CC%81s%20oppose%CC%81es%20(Opposing%20Sonorities).mp3 + File Folder Count4 + Library Folder Count1 + + 10554 + + Track ID10554 + NameTwelve Études for Piano, L 136: Étude 11 pour les arpèges composés (Composite Arpeggios) + ArtistNoriko Ogawa + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size7352456 + Total Time295235 + Disc Number1 + Disc Count1 + Track Number70 + Track Count100 + Year2011 + Date Modified2012-08-22T02:55:14Z + Date Added2012-08-22T03:42:37Z + Bit Rate192 + Sample Rate44100 + CommentsAmazon.com Song ID: 225477019 + Artwork Count1 + Persistent ID1D0E28DDDFA517C8 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/70%20Twelve%20E%CC%81tudes%20for%20Piano,%20L%20136_%20E%CC%81tude%2011%20pour%20les%20arpe%CC%80ges%20compose%CC%81s%20(Composite%20Arpeggios).mp3 + File Folder Count4 + Library Folder Count1 + + 10556 + + Track ID10556 + NameTwelve Études for Piano, L 136: Étude 12 pour les accords (Chords) + ArtistNoriko Ogawa + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size8694333 + Total Time343275 + Disc Number1 + Disc Count1 + Track Number71 + Track Count100 + Year2011 + Date Modified2012-08-22T01:56:41Z + Date Added2012-08-22T03:42:37Z + Bit Rate197 + Sample Rate44100 + CommentsAmazon.com Song ID: 225477021 + Artwork Count1 + Persistent IDC0EE2D5C02232E23 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/71%20Twelve%20E%CC%81tudes%20for%20Piano,%20L%20136_%20E%CC%81tude%2012%20pour%20les%20accords%20(Chords).mp3 + File Folder Count4 + Library Folder Count1 + + 10558 + + Track ID10558 + NameLe Petit Nègre (Cake-Walk), L 114 + ArtistNoriko Ogawa + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size2855109 + Total Time118386 + Disc Number1 + Disc Count1 + Track Number72 + Track Count100 + Year2011 + Date Modified2012-08-22T02:43:38Z + Date Added2012-08-22T03:42:37Z + Bit Rate176 + Sample Rate44100 + CommentsAmazon.com Song ID: 225477023 + Artwork Count1 + Persistent ID8D86DEF4B6E41CC4 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/72%20Le%20Petit%20Ne%CC%80gre%20(Cake-Walk),%20L%20114.mp3 + File Folder Count4 + Library Folder Count1 + + 10560 + + Track ID10560 + NameSix Épigraphes antiques, L 131: I. Pour invoquer Pan, dieu du vent d’été (For invoking Pan, God of the Summer Breeze) + ArtistNoriko Ogawa + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size4240409 + Total Time172773 + Disc Number1 + Disc Count1 + Track Number73 + Track Count100 + Year2011 + Date Modified2012-08-22T02:18:04Z + Date Added2012-08-22T03:42:38Z + Bit Rate185 + Sample Rate44100 + CommentsAmazon.com Song ID: 225477026 + Artwork Count1 + Persistent IDBAE089F95D693A19 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/73%20Six%20E%CC%81pigraphes%20antiques,%20L%20131_%20I.%20Pour%20invoquer%20Pan,%20dieu%20du%20vent%20d_e%CC%81te%CC%81%20(For%20invoking%20Pan,%20God%20of%20the%20Summer%20Breeze).mp3 + File Folder Count4 + Library Folder Count1 + + 10562 + + Track ID10562 + NameSix Épigraphes antiques, L 131: II. Pour un tombeau sans nom (For a Nameless Tombstone) + ArtistNoriko Ogawa + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size5942663 + Total Time247066 + Disc Number1 + Disc Count1 + Track Number74 + Track Count100 + Year2011 + Date Modified2012-08-22T02:18:45Z + Date Added2012-08-22T03:42:38Z + Bit Rate184 + Sample Rate44100 + CommentsAmazon.com Song ID: 225477028 + Artwork Count1 + Persistent IDCB7C3DE94894B6DD + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/74%20Six%20E%CC%81pigraphes%20antiques,%20L%20131_%20II.%20Pour%20un%20tombeau%20sans%20nom%20(For%20a%20Nameless%20Tombstone).mp3 + File Folder Count4 + Library Folder Count1 + + 10564 + + Track ID10564 + NameSix Épigraphes antiques, L 131: III. Pour que la nuit soit propice (For the Auspicious Night) + ArtistNoriko Ogawa + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size4562911 + Total Time182204 + Disc Number1 + Disc Count1 + Track Number75 + Track Count100 + Year2011 + Date Modified2012-08-22T01:58:31Z + Date Added2012-08-22T03:42:38Z + Bit Rate189 + Sample Rate44100 + CommentsAmazon.com Song ID: 225477030 + Artwork Count1 + Persistent ID7840E92D7F61C7D4 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/75%20Six%20E%CC%81pigraphes%20antiques,%20L%20131_%20III.%20Pour%20que%20la%20nuit%20soit%20propice%20(For%20the%20Auspicious%20Night).mp3 + File Folder Count4 + Library Folder Count1 + + 10566 + + Track ID10566 + NameSix Épigraphes antiques, L 131: IV. Pour la danseuse aux crotales (For the Dancer with Castanets) + ArtistNoriko Ogawa + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size4202918 + Total Time166426 + Disc Number1 + Disc Count1 + Track Number76 + Track Count100 + Year2011 + Date Modified2012-08-22T02:15:51Z + Date Added2012-08-22T03:42:38Z + Bit Rate190 + Sample Rate44100 + CommentsAmazon.com Song ID: 225477032 + Artwork Count1 + Persistent IDAEFA98863AB24070 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/76%20Six%20E%CC%81pigraphes%20antiques,%20L%20131_%20IV.%20Pour%20la%20danseuse%20aux%20crotales%20(For%20the%20Dancer%20with%20Castanets).mp3 + File Folder Count4 + Library Folder Count1 + + 10568 + + Track ID10568 + NameSix Épigraphes antiques, L 131: V. Pour l’Égyptienne (For the Egyptian) + ArtistNoriko Ogawa + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size5449295 + Total Time224444 + Disc Number1 + Disc Count1 + Track Number77 + Track Count100 + Year2011 + Date Modified2012-08-22T02:30:19Z + Date Added2012-08-22T03:42:39Z + Bit Rate185 + Sample Rate44100 + CommentsAmazon.com Song ID: 225477034 + Artwork Count1 + Persistent IDC369529431C6394C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/77%20Six%20E%CC%81pigraphes%20antiques,%20L%20131_%20V.%20Pour%20l_E%CC%81gyptienne%20(For%20the%20Egyptian).mp3 + File Folder Count4 + Library Folder Count1 + + 10570 + + Track ID10570 + NameSix Épigraphes antiques, L 131: VI. Pour remercier la pluie au matin (For Thanking the Morning Rain) + ArtistNoriko Ogawa + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size4117563 + Total Time167235 + Disc Number1 + Disc Count1 + Track Number78 + Track Count100 + Year2011 + Date Modified2012-08-22T02:45:19Z + Date Added2012-08-22T03:42:39Z + Bit Rate185 + Sample Rate44100 + CommentsAmazon.com Song ID: 225477036 + Artwork Count1 + Persistent IDDA1FB58AA182EC24 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/78%20Six%20E%CC%81pigraphes%20antiques,%20L%20131_%20VI.%20Pour%20remercier%20la%20pluie%20au%20matin%20(For%20Thanking%20the%20Morning%20Rain).mp3 + File Folder Count4 + Library Folder Count1 + + 10572 + + Track ID10572 + NameLes Soirs illuminés par l’ardeur du charbon (The Evenings Illuminated by the Burning Coal), L 150 + ArtistNoriko Ogawa + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size3627206 + Total Time154148 + Disc Number1 + Disc Count1 + Track Number79 + Track Count100 + Year2011 + Date Modified2012-08-22T01:33:28Z + Date Added2012-08-22T03:42:39Z + Bit Rate175 + Sample Rate44100 + CommentsAmazon.com Song ID: 225477038 + Artwork Count1 + Persistent IDC86717591239AC5A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/79%20Les%20Soirs%20illumine%CC%81s%20par%20l_ardeur%20du%20charbon%20(The%20Evenings%20Illuminated%20by%20the%20Burning%20Coal),%20L%20150.mp3 + File Folder Count4 + Library Folder Count1 + + 10574 + + Track ID10574 + NameSonata in D Minor for Cello and Piano, L 135: I. Prologue: Lent - Sostenuto molto resoluto + ArtistFrans Helmerson and Hans Pålsson + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size8916531 + Total Time300068 + Disc Number1 + Disc Count1 + Track Number80 + Track Count100 + Year2011 + Date Modified2012-08-22T02:10:06Z + Date Added2012-08-22T03:42:39Z + Bit Rate231 + Sample Rate44100 + CommentsAmazon.com Song ID: 225477040 + Artwork Count1 + Persistent ID53498E3FDCD0DEF9 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/80%20Sonata%20in%20D%20Minor%20for%20Cello%20and%20Piano,%20L%20135_%20I.%20Prologue_%20Lent%20-%20Sostenuto%20molto%20resoluto.mp3 + File Folder Count4 + Library Folder Count1 + + 10576 + + Track ID10576 + NameSonata in D Minor for Cello and Piano, L 135: II. Sérénade: Modérément animé + ArtistFrans Helmerson and Hans Pålsson + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size6068184 + Total Time209084 + Disc Number1 + Disc Count1 + Track Number81 + Track Count100 + Year2011 + Date Modified2012-08-22T02:06:39Z + Date Added2012-08-22T03:42:39Z + Bit Rate222 + Sample Rate44100 + CommentsAmazon.com Song ID: 225477041 + Artwork Count1 + Persistent ID292D746BA95E7938 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/81%20Sonata%20in%20D%20Minor%20for%20Cello%20and%20Piano,%20L%20135_%20II.%20Se%CC%81re%CC%81nade_%20Mode%CC%81re%CC%81ment%20anime%CC%81.mp3 + File Folder Count4 + Library Folder Count1 + + 10578 + + Track ID10578 + NameSonata in D Minor for Cello and Piano, L 135: III. Finale: Animé + ArtistFrans Helmerson and Hans Pålsson + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size6292536 + Total Time216973 + Disc Number1 + Disc Count1 + Track Number82 + Track Count100 + Year2011 + Date Modified2012-08-22T02:26:10Z + Date Added2012-08-22T03:42:39Z + Bit Rate223 + Sample Rate44100 + CommentsAmazon.com Song ID: 225477043 + Artwork Count1 + Persistent ID866CE08518C5CC12 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/82%20Sonata%20in%20D%20Minor%20for%20Cello%20and%20Piano,%20L%20135_%20III.%20Finale_%20Anime%CC%81.mp3 + File Folder Count4 + Library Folder Count1 + + 10580 + + Track ID10580 + NameString Quartet in G Minor, Op. 10, L 85: I. Animé et trè décidé + ArtistTravnicek Quartet + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size11324827 + Total Time392359 + Disc Number1 + Disc Count1 + Track Number83 + Track Count100 + Year2011 + Date Modified2012-08-22T02:15:31Z + Date Added2012-08-22T03:42:40Z + Bit Rate226 + Sample Rate44100 + CommentsAmazon.com Song ID: 225477046 + Artwork Count1 + Persistent ID2E91691F4F2B5897 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/83%20String%20Quartet%20in%20G%20Minor,%20Op.%2010,%20L%2085_%20I.%20Anime%CC%81%20et%20tre%CC%80%20de%CC%81cide%CC%81.mp3 + File Folder Count4 + Library Folder Count1 + + 10582 + + Track ID10582 + NameString Quartet in G Minor, Op. 10, L 85: II. Assez vif et jeu bien rythmé + ArtistTravnicek Quartet + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size6582553 + Total Time226115 + Disc Number1 + Disc Count1 + Track Number84 + Track Count100 + Year2011 + Date Modified2012-08-22T01:37:36Z + Date Added2012-08-22T03:42:40Z + Bit Rate224 + Sample Rate44100 + CommentsAmazon.com Song ID: 225477048 + Artwork Count1 + Persistent ID0B011EFDAAD45563 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/84%20String%20Quartet%20in%20G%20Minor,%20Op.%2010,%20L%2085_%20II.%20Assez%20vif%20et%20jeu%20bien%20rythme%CC%81.mp3 + File Folder Count4 + Library Folder Count1 + + 10584 + + Track ID10584 + NameString Quartet in G Minor, Op. 10, L 85: III. Andantino - doucement expressif + ArtistTravnicek Quartet + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size12781284 + Total Time456359 + Disc Number1 + Disc Count1 + Track Number85 + Track Count100 + Year2011 + Date Modified2012-08-22T02:09:19Z + Date Added2012-08-22T03:42:40Z + Bit Rate219 + Sample Rate44100 + CommentsAmazon.com Song ID: 225477050 + Artwork Count1 + Persistent ID24FAE46C50C6A8BC + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/85%20String%20Quartet%20in%20G%20Minor,%20Op.%2010,%20L%2085_%20III.%20Andantino%20-%20doucement%20expressif.mp3 + File Folder Count4 + Library Folder Count1 + + 10586 + + Track ID10586 + NameString Quartet in G Minor, Op. 10, L 85: IV. Très modéré + ArtistTravnicek Quartet + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size12315948 + Total Time427206 + Disc Number1 + Disc Count1 + Track Number86 + Track Count100 + Year2011 + Date Modified2012-08-22T02:11:14Z + Date Added2012-08-22T03:42:41Z + Bit Rate226 + Sample Rate44100 + CommentsAmazon.com Song ID: 225477052 + Artwork Count1 + Persistent ID28865F045331C987 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/86%20String%20Quartet%20in%20G%20Minor,%20Op.%2010,%20L%2085_%20IV.%20Tre%CC%80s%20mode%CC%81re%CC%81.mp3 + File Folder Count4 + Library Folder Count1 + + 10588 + + Track ID10588 + NamePetite Suite (1889): En bateau + ArtistDag Achatz and Yukie Nagai + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size720896 + Total Time247040 + Disc Number1 + Disc Count1 + Track Number87 + Track Count100 + Year2011 + Date Modified2012-08-22T01:33:41Z + Date Added2012-08-22T03:42:41Z + Bit Rate218 + Sample Rate44100 + CommentsAmazon.com Song ID: 225477054 + Artwork Count1 + Persistent IDA8346FBD5AF8E96F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/87%20Petite%20Suite%20(1889)_%20En%20bateau.mp3 + File Folder Count4 + Library Folder Count1 + + 10590 + + Track ID10590 + NamePetite Suite (1889): Cortège + ArtistDag Achatz and Yukie Nagai + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size6409406 + Total Time219062 + Disc Number1 + Disc Count1 + Track Number88 + Track Count100 + Year2011 + Date Modified2012-08-22T01:57:31Z + Date Added2012-08-22T03:42:42Z + Bit Rate225 + Sample Rate44100 + CommentsAmazon.com Song ID: 225477056 + Artwork Count1 + Persistent ID35C8F484DB00492C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/88%20Petite%20Suite%20(1889)_%20Corte%CC%80ge.mp3 + File Folder Count4 + Library Folder Count1 + + 10592 + + Track ID10592 + NamePetite Suite (1889): Menuet + ArtistDag Achatz and Yukie Nagai + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size5239927 + Total Time182047 + Disc Number1 + Disc Count1 + Track Number89 + Track Count100 + Year2011 + Date Modified2012-08-22T01:41:24Z + Date Added2012-08-22T03:42:42Z + Bit Rate219 + Sample Rate44100 + CommentsAmazon.com Song ID: 225477058 + Artwork Count1 + Persistent IDE7E8F2856F6CF927 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/89%20Petite%20Suite%20(1889)_%20Menuet.mp3 + File Folder Count4 + Library Folder Count1 + + 10594 + + Track ID10594 + NamePetite Suite (1889): Ballet + ArtistDag Achatz and Yukie Nagai + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size6830242 + Total Time231053 + Disc Number1 + Disc Count1 + Track Number90 + Track Count100 + Year2011 + Date Modified2012-08-22T02:07:15Z + Date Added2012-08-22T03:42:42Z + Bit Rate228 + Sample Rate44100 + CommentsAmazon.com Song ID: 225477060 + Artwork Count1 + Persistent ID581554B1A648747B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/90%20Petite%20Suite%20(1889)_%20Ballet.mp3 + File Folder Count4 + Library Folder Count1 + + 10596 + + Track ID10596 + NamePrélude à l'après-midi d'un faune (Prelude to a Faun's Afternoon), L 86 + ArtistTbilisi Symphony Orchestra and Jansug Kakhidze + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size16109058 + Total Time568189 + Disc Number1 + Disc Count1 + Track Number91 + Track Count100 + Year2011 + Date Modified2012-08-22T02:40:10Z + Date Added2012-08-22T03:42:42Z + Bit Rate223 + Sample Rate44100 + CommentsAmazon.com Song ID: 225477062 + Artwork Count1 + Persistent ID2BBB15C5007EB29D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/91%20Pre%CC%81lude%20a%CC%80%20l'apre%CC%80s-midi%20d'un%20faune%20(Prelude%20to%20a%20Faun's%20Afternoon),%20L%2086.mp3 + File Folder Count4 + Library Folder Count1 + + 10598 + + Track ID10598 + NameNocturnes, L 91: I. Nuages (Clouds) + ArtistTbilisi Symphony Orchestra and Jansug Kakhidze + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size13118236 + Total Time464091 + Disc Number1 + Disc Count1 + Track Number92 + Track Count100 + Year2011 + Date Modified2012-08-22T01:36:37Z + Date Added2012-08-22T03:42:43Z + Bit Rate221 + Sample Rate44100 + CommentsAmazon.com Song ID: 225477064 + Artwork Count1 + Persistent ID4A01796DD5A52F57 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/92%20Nocturnes,%20L%2091_%20I.%20Nuages%20(Clouds).mp3 + File Folder Count4 + Library Folder Count1 + + 10600 + + Track ID10600 + NameNocturnes, L 91: II. Fêtes (Festivals) + ArtistTbilisi Symphony Orchestra and Jansug Kakhidze + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size11143637 + Total Time385358 + Disc Number1 + Disc Count1 + Track Number93 + Track Count100 + Year2011 + Date Modified2012-08-22T02:02:29Z + Date Added2012-08-22T03:42:43Z + Bit Rate226 + Sample Rate44100 + CommentsAmazon.com Song ID: 225477066 + Artwork Count1 + Persistent ID171E0370C069FF77 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/93%20Nocturnes,%20L%2091_%20II.%20Fe%CC%82tes%20(Festivals).mp3 + File Folder Count4 + Library Folder Count1 + + 10602 + + Track ID10602 + NameNocturnes, L 91: III. Sirènes (Sirens) + ArtistTbilisi Symphony Orchestra and Jansug Kakhidze + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size21100735 + Total Time747467 + Disc Number1 + Disc Count1 + Track Number94 + Track Count100 + Year2011 + Date Modified2012-08-22T02:23:35Z + Date Added2012-08-22T03:42:43Z + Bit Rate223 + Sample Rate44100 + CommentsAmazon.com Song ID: 225477068 + Artwork Count1 + Persistent ID5B92A7B04141E3F2 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/94%20Nocturnes,%20L%2091_%20III.%20Sire%CC%80nes%20(Sirens).mp3 + File Folder Count4 + Library Folder Count1 + + 10604 + + Track ID10604 + NameDances for Harp and Strings, L 103: I. Danse sacrée: Tres modere + ArtistTbilisi Symphony Orchestra and Jansug Kakhidze + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size9386784 + Total Time327941 + Disc Number1 + Disc Count1 + Track Number95 + Track Count100 + Year2011 + Date Modified2012-08-22T01:54:44Z + Date Added2012-08-22T03:42:44Z + Bit Rate223 + Sample Rate44100 + CommentsAmazon.com Song ID: 225477069 + Play Count2 + Play Date3430417214 + Play Date UTC2012-09-13T16:10:14Z + Artwork Count1 + Persistent ID0ED27B39B5D717E6 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/95%20Dances%20for%20Harp%20and%20Strings,%20L%20103_%20I.%20Danse%20sacre%CC%81e_%20Tres%20modere.mp3 + File Folder Count4 + Library Folder Count1 + + 10606 + + Track ID10606 + NameDances for Harp and Strings, L 103: II. Danse profane: Modere + ArtistTbilisi Symphony Orchestra and Jansug Kakhidze + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size8890701 + Total Time314435 + Disc Number1 + Disc Count1 + Track Number96 + Track Count100 + Year2011 + Date Modified2012-08-22T02:41:29Z + Date Added2012-08-22T03:42:44Z + Bit Rate220 + Sample Rate44100 + CommentsAmazon.com Song ID: 225477070 + Play Count2 + Play Date3430417528 + Play Date UTC2012-09-13T16:15:28Z + Artwork Count1 + Persistent IDB163F9C349DCECF1 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/96%20Dances%20for%20Harp%20and%20Strings,%20L%20103_%20II.%20Danse%20profane_%20Modere.mp3 + File Folder Count4 + Library Folder Count1 + + 10608 + + Track ID10608 + NameLa Mer (The Sea), L 109: I. De l'aube à midi sur la mer (From Dawn to Noon on the Sea) + ArtistTbilisi Symphony Orchestra and Jansug Kakhidze + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size15898114 + Total Time558706 + Disc Number1 + Disc Count1 + Track Number97 + Track Count100 + Year2011 + Date Modified2012-08-22T02:48:23Z + Date Added2012-08-22T03:42:44Z + Bit Rate224 + Sample Rate44100 + CommentsAmazon.com Song ID: 225477071 + Artwork Count1 + Persistent ID7F000D64CB9D9C38 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/97%20La%20Mer%20(The%20Sea),%20L%20109_%20I.%20De%20l'aube%20a%CC%80%20midi%20sur%20la%20mer%20(From%20Dawn%20to%20Noon%20on%20the%20Sea).mp3 + File Folder Count4 + Library Folder Count1 + + 10610 + + Track ID10610 + NameLa Mer (The Sea), L 109: II. Jeux de vagues (Waves playing) + ArtistTbilisi Symphony Orchestra and Jansug Kakhidze + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size12784047 + Total Time428277 + Disc Number1 + Disc Count1 + Track Number98 + Track Count100 + Year2011 + Date Modified2012-08-22T02:31:40Z + Date Added2012-08-22T03:42:44Z + Bit Rate234 + Sample Rate44100 + CommentsAmazon.com Song ID: 225477072 + Artwork Count1 + Persistent IDE97743193C366DE9 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/98%20La%20Mer%20(The%20Sea),%20L%20109_%20II.%20Jeux%20de%20vagues%20(Waves%20playing).mp3 + File Folder Count4 + Library Folder Count1 + + 10612 + + Track ID10612 + NameLa Mer (The Sea), L 109: III. Dialogue du vent et de la mer (Dialogue of the Wind and Sea) + ArtistTbilisi Symphony Orchestra and Jansug Kakhidze + Album ArtistVarious Artists + AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters + GenreClassical + KindMPEG audio file + Size17498741 + Total Time586579 + Disc Number1 + Disc Count1 + Track Number99 + Track Count100 + Year2011 + Date Modified2012-08-22T01:51:35Z + Date Added2012-08-22T03:42:45Z + Bit Rate235 + Sample Rate44100 + CommentsAmazon.com Song ID: 225477073 + Artwork Count1 + Persistent IDC6641312E9E21C9A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/99%20La%20Mer%20(The%20Sea),%20L%20109_%20III.%20Dialogue%20du%20vent%20et%20de%20la%20mer%20(Dialogue%20of%20the%20Wind%20and%20Sea).mp3 + File Folder Count4 + Library Folder Count1 + + 10614 + + Track ID10614 + NameJesu Joy Of Man's Desiring (From Cantata BWV 147) + ArtistGabriela Montero + Album ArtistGabriela Montero + ComposerJohann Sebastian Bach + AlbumBach And Beyond + GenreClassical + KindMPEG audio file + Size7402836 + Total Time325825 + Disc Number1 + Disc Count1 + Track Number1 + Track Count15 + Year2006 + Date Modified2012-08-22T03:05:19Z + Date Added2012-08-22T03:42:45Z + Bit Rate176 + Sample Rate44100 + CommentsAmazon.com Song ID: 201980464 + Play Count3 + Play Date3429249099 + Play Date UTC2012-08-31T03:41:39Z + Artwork Count1 + Persistent IDC983F5C63DA0DF0D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Gabriela%20Montero/Bach%20And%20Beyond/01%20Jesu%20Joy%20Of%20Man's%20Desiring%20(From%20Cantata%20BWV%20147).mp3 + File Folder Count4 + Library Folder Count1 + + 10616 + + Track ID10616 + NameIII. Presto from Italian Concerto, BWV 971 + ArtistGabriela Montero + Album ArtistGabriela Montero + ComposerJohann Sebastian Bach + AlbumBach And Beyond + GenreClassical + KindMPEG audio file + Size4163551 + Total Time153965 + Disc Number1 + Disc Count1 + Track Number2 + Track Count15 + Year2006 + Date Modified2012-08-22T03:01:18Z + Date Added2012-08-22T03:42:45Z + Bit Rate204 + Sample Rate44100 + CommentsAmazon.com Song ID: 201980465 + Play Count4 + Play Date3429249253 + Play Date UTC2012-08-31T03:44:13Z + Artwork Count1 + Persistent ID50D9E6311CF52AF3 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Gabriela%20Montero/Bach%20And%20Beyond/02%20III.%20Presto%20from%20Italian%20Concerto,%20BWV%20971.mp3 + File Folder Count4 + Library Folder Count1 + + 10618 + + Track ID10618 + NameBeyond Bach + ArtistGabriela Montero + Album ArtistGabriela Montero + ComposerGabriela Montero + AlbumBach And Beyond + GenreClassical + KindMPEG audio file + Size5828826 + Total Time263340 + Disc Number1 + Disc Count1 + Track Number3 + Track Count15 + Year2006 + Date Modified2012-08-22T03:07:43Z + Date Added2012-08-22T03:42:45Z + Bit Rate170 + Sample Rate44100 + CommentsAmazon.com Song ID: 201980467 + Play Count2 + Play Date3428649110 + Play Date UTC2012-08-24T05:01:50Z + Artwork Count1 + Persistent ID0ECC93C096434957 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Gabriela%20Montero/Bach%20And%20Beyond/03%20Beyond%20Bach.mp3 + File Folder Count4 + Library Folder Count1 + + 10620 + + Track ID10620 + NameAir In G (From Suite No.3 In D Major BWV 1068) + ArtistGabriela Montero + Album ArtistGabriela Montero + ComposerJohann Sebastian Bach + AlbumBach And Beyond + GenreClassical + KindMPEG audio file + Size5226938 + Total Time209319 + Disc Number1 + Disc Count1 + Track Number4 + Track Count15 + Year2006 + Date Modified2012-08-22T03:00:41Z + Date Added2012-08-22T03:42:45Z + Bit Rate191 + Sample Rate44100 + CommentsAmazon.com Song ID: 201980469 + Play Count3 + Play Date3428649319 + Play Date UTC2012-08-24T05:05:19Z + Artwork Count1 + Persistent IDA036490FCFCA56A4 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Gabriela%20Montero/Bach%20And%20Beyond/04%20Air%20In%20G%20(From%20Suite%20No.3%20In%20D%20Major%20BWV%201068).mp3 + File Folder Count4 + Library Folder Count1 + + 10622 + + Track ID10622 + NameAria (From Goldberg Variations BWV 988) + ArtistGabriela Montero + Album ArtistGabriela Montero + ComposerJohann Sebastian Bach + AlbumBach And Beyond + GenreClassical + KindMPEG audio file + Size10492858 + Total Time456881 + Disc Number1 + Disc Count1 + Track Number5 + Track Count15 + Year2006 + Date Modified2012-08-22T03:02:49Z + Date Added2012-08-22T03:42:45Z + Bit Rate179 + Sample Rate44100 + CommentsAmazon.com Song ID: 201980471 + Play Count2 + Play Date3428475058 + Play Date UTC2012-08-22T04:40:58Z + Artwork Count1 + Persistent ID8644264C64F177E1 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Gabriela%20Montero/Bach%20And%20Beyond/05%20Aria%20(From%20Goldberg%20Variations%20BWV%20988).mp3 + File Folder Count4 + Library Folder Count1 + + 10624 + + Track ID10624 + NameViolin Concerto In E (Movement 2 - Adagio BWV 1042) + ArtistGabriela Montero + Album ArtistGabriela Montero + ComposerJohann Sebastian Bach + AlbumBach And Beyond + GenreClassical + KindMPEG audio file + Size6514581 + Total Time301453 + Disc Number1 + Disc Count1 + Track Number6 + Track Count15 + Year2006 + Date Modified2012-08-22T03:00:14Z + Date Added2012-08-22T03:42:45Z + Bit Rate167 + Sample Rate44100 + CommentsAmazon.com Song ID: 201980473 + Play Count2 + Play Date3428475360 + Play Date UTC2012-08-22T04:46:00Z + Artwork Count1 + Persistent IDEF322FC58B0EC8D5 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Gabriela%20Montero/Bach%20And%20Beyond/06%20Violin%20Concerto%20In%20E%20(Movement%202%20-%20Adagio%20BWV%201042).mp3 + File Folder Count4 + Library Folder Count1 + + 10626 + + Track ID10626 + NamePrelude In C (From The Well Tempered Clavier BWV 846) + ArtistGabriela Montero + Album ArtistGabriela Montero + ComposerJohann Sebastian Bach + AlbumBach And Beyond + GenreClassical + KindMPEG audio file + Size6069986 + Total Time258272 + Disc Number1 + Disc Count1 + Track Number7 + Track Count15 + Year2006 + Date Modified2012-08-22T03:03:53Z + Date Added2012-08-22T03:42:45Z + Bit Rate181 + Sample Rate44100 + CommentsAmazon.com Song ID: 201980477 + Play Count1 + Play Date3428475618 + Play Date UTC2012-08-22T04:50:18Z + Artwork Count1 + Persistent ID1ACEEA74808C6B52 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Gabriela%20Montero/Bach%20And%20Beyond/07%20Prelude%20In%20C%20(From%20The%20Well%20Tempered%20Clavier%20BWV%20846).mp3 + File Folder Count4 + Library Folder Count1 + + 10628 + + Track ID10628 + NameSheep May Safely Graze (From Cantata BWV 208) + ArtistGabriela Montero + Album ArtistGabriela Montero + ComposerJohann Sebastian Bach + AlbumBach And Beyond + GenreClassical + KindMPEG audio file + Size5136949 + Total Time226142 + Disc Number1 + Disc Count1 + Track Number8 + Track Count15 + Year2006 + Date Modified2012-08-22T03:07:12Z + Date Added2012-08-22T03:42:45Z + Bit Rate173 + Sample Rate44100 + CommentsAmazon.com Song ID: 201980481 + Play Count2 + Play Date3429636142 + Play Date UTC2012-09-04T15:12:22Z + Artwork Count1 + Persistent ID481E3F843B0C8352 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Gabriela%20Montero/Bach%20And%20Beyond/08%20Sheep%20May%20Safely%20Graze%20(From%20Cantata%20BWV%20208).mp3 + File Folder Count4 + Library Folder Count1 + + 10630 + + Track ID10630 + Name2 Part Invention In D Minor (No.4 BWV 775) + ArtistGabriela Montero + Album ArtistGabriela Montero + ComposerJohann Sebastian Bach + AlbumBach And Beyond + GenreClassical + KindMPEG audio file + Size4098241 + Total Time160130 + Disc Number1 + Disc Count1 + Track Number9 + Track Count15 + Year2006 + Date Modified2012-08-22T03:08:18Z + Date Added2012-08-22T03:42:45Z + Bit Rate193 + Sample Rate44100 + CommentsAmazon.com Song ID: 201980483 + Play Count2 + Play Date3428819277 + Play Date UTC2012-08-26T04:17:57Z + Artwork Count1 + Persistent IDECDBCFB9F645FB56 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Gabriela%20Montero/Bach%20And%20Beyond/09%202%20Part%20Invention%20In%20D%20Minor%20(No.4%20BWV%20775).mp3 + File Folder Count4 + Library Folder Count1 + + 10632 + + Track ID10632 + NameBrandenburg Concerto No.3 (Movement 3 - Allegro BWV 1048) + ArtistGabriela Montero + Album ArtistGabriela Montero + ComposerJohann Sebastian Bach + AlbumBach And Beyond + GenreClassical + KindMPEG audio file + Size9347111 + Total Time363363 + Disc Number1 + Disc Count1 + Track Number10 + Track Count15 + Year2006 + Date Modified2012-08-22T02:59:35Z + Date Added2012-08-22T03:42:46Z + Bit Rate200 + Sample Rate44100 + CommentsAmazon.com Song ID: 201980484 + Artwork Count1 + Persistent ID5537A92E50DD3A99 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Gabriela%20Montero/Bach%20And%20Beyond/10%20Brandenburg%20Concerto%20No.3%20(Movement%203%20-%20Allegro%20BWV%201048).mp3 + File Folder Count4 + Library Folder Count1 + + 10634 + + Track ID10634 + NameKeyboard Concerto In D Minor (Movement 2 - Adagio BWV 974) + ArtistGabriela Montero + Album ArtistGabriela Montero + ComposerJohann Sebastian Bach + AlbumBach And Beyond + GenreClassical + KindMPEG audio file + Size8361104 + Total Time383373 + Disc Number1 + Disc Count1 + Track Number11 + Track Count15 + Year2006 + Date Modified2012-08-22T03:01:58Z + Date Added2012-08-22T03:42:46Z + Bit Rate169 + Sample Rate44100 + CommentsAmazon.com Song ID: 201980486 + Artwork Count1 + Persistent IDFB1C0EEB138DE178 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Gabriela%20Montero/Bach%20And%20Beyond/11%20Keyboard%20Concerto%20In%20D%20Minor%20(Movement%202%20-%20Adagio%20BWV%20974).mp3 + File Folder Count4 + Library Folder Count1 + + 10636 + + Track ID10636 + NameToccata In D Minor (BWV 556) + ArtistGabriela Montero + Album ArtistGabriela Montero + ComposerJohann Sebastian Bach + AlbumBach And Beyond + GenreClassical + KindMPEG audio file + Size5342363 + Total Time191346 + Disc Number1 + Disc Count1 + Track Number12 + Track Count15 + Year2006 + Date Modified2012-08-22T03:11:18Z + Date Added2012-08-22T03:42:46Z + Bit Rate214 + Sample Rate44100 + CommentsAmazon.com Song ID: 201980487 + Artwork Count1 + Persistent IDF01FDBA03ACDAA0D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Gabriela%20Montero/Bach%20And%20Beyond/12%20Toccata%20In%20D%20Minor%20(BWV%20556).mp3 + File Folder Count4 + Library Folder Count1 + + 10638 + + Track ID10638 + NameSuite No.2, BWV 1067: Rondo + ArtistGabriela Montero + Album ArtistGabriela Montero + ComposerJohann Sebastian Bach + AlbumBach And Beyond + GenreClassical + KindMPEG audio file + Size6664113 + Total Time260806 + Disc Number1 + Disc Count1 + Track Number13 + Track Count15 + Year2006 + Date Modified2012-08-22T03:10:43Z + Date Added2012-08-22T03:42:46Z + Bit Rate197 + Sample Rate44100 + CommentsAmazon.com Song ID: 201980489 + Artwork Count1 + Persistent ID0347C3BD189ED8BB + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Gabriela%20Montero/Bach%20And%20Beyond/13%20Suite%20No.2,%20BWV%201067_%20Rondo.mp3 + File Folder Count4 + Library Folder Count1 + + 10640 + + Track ID10640 + NameAnna Magdalena Songbook + ArtistGabriela Montero + Album ArtistGabriela Montero + ComposerJohann Sebastian Bach + AlbumBach And Beyond + GenreClassical + KindMPEG audio file + Size6945479 + Total Time258821 + Disc Number1 + Disc Count1 + Track Number14 + Track Count15 + Year2006 + Date Modified2012-08-22T03:03:24Z + Date Added2012-08-22T03:42:46Z + Bit Rate207 + Sample Rate44100 + CommentsAmazon.com Song ID: 201980491 + Artwork Count1 + Persistent ID84700AD7E2E74F21 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Gabriela%20Montero/Bach%20And%20Beyond/14%20Anna%20Magdalena%20Songbook.mp3 + File Folder Count4 + Library Folder Count1 + + 10642 + + Track ID10642 + NameChaconne (From Violin Partita In D Minor BWV 1004) + ArtistGabriela Montero + Album ArtistGabriela Montero + ComposerJohann Sebastian Bach + AlbumBach And Beyond + GenreClassical + KindMPEG audio file + Size7958898 + Total Time297900 + Disc Number1 + Disc Count1 + Track Number15 + Track Count15 + Year2006 + Date Modified2012-08-22T03:09:46Z + Date Added2012-08-22T03:42:46Z + Bit Rate207 + Sample Rate44100 + CommentsAmazon.com Song ID: 201980493 + Artwork Count1 + Persistent IDA1841BD93A29C267 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Gabriela%20Montero/Bach%20And%20Beyond/15%20Chaconne%20(From%20Violin%20Partita%20In%20D%20Minor%20BWV%201004).mp3 + File Folder Count4 + Library Folder Count1 + + 10644 + + Track ID10644 + NameAngel + ArtistMassive Attack + Album ArtistMassive Attack + ComposerRobert Del Naja + AlbumMezzanine + GenreRap & Hip-Hop + KindMPEG audio file + Size11245978 + Total Time379324 + Disc Number1 + Disc Count1 + Track Number1 + Track Count11 + Year2006 + Date Modified2012-08-22T03:14:44Z + Date Added2012-08-22T03:42:46Z + Bit Rate233 + Sample Rate44100 + CommentsAmazon.com Song ID: 202078697 + Play Count1 + Play Date3482848188 + Play Date UTC2014-05-13T12:19:48Z + Artwork Count1 + Persistent ID30A4D4CA7A641B2E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Massive%20Attack/Mezzanine/01%20Angel.mp3 + File Folder Count4 + Library Folder Count1 + + 10646 + + Track ID10646 + NameRisingson + ArtistMassive Attack + Album ArtistMassive Attack + ComposerRobert Del Naja + AlbumMezzanine + GenreRap & Hip-Hop + KindMPEG audio file + Size8874569 + Total Time298866 + Disc Number1 + Disc Count1 + Track Number2 + Track Count11 + Year2006 + Date Modified2012-08-22T03:29:05Z + Date Added2012-08-22T03:42:46Z + Bit Rate232 + Sample Rate44100 + CommentsAmazon.com Song ID: 202078704 + Artwork Count1 + Persistent ID55B4B7FC2D4D0D63 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Massive%20Attack/Mezzanine/02%20Risingson.mp3 + File Folder Count4 + Library Folder Count1 + + 10648 + + Track ID10648 + NameTeardrop + ArtistMassive Attack + Album ArtistMassive Attack + ComposerLiz Fraser + AlbumMezzanine + GenreRap & Hip-Hop + KindMPEG audio file + Size8732624 + Total Time330814 + Disc Number1 + Disc Count1 + Track Number3 + Track Count11 + Year2006 + Date Modified2012-08-22T03:12:13Z + Date Added2012-08-22T03:42:46Z + Bit Rate206 + Sample Rate44100 + CommentsAmazon.com Song ID: 202078712 + Play Count4 + Play Date3453390595 + Play Date UTC2013-06-06T13:39:55Z + Skip Count2 + Skip Date2014-05-13T12:13:28Z + Artwork Count1 + Persistent ID764997BE2CD075BA + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Massive%20Attack/Mezzanine/03%20Teardrop.mp3 + File Folder Count4 + Library Folder Count1 + + 10650 + + Track ID10650 + NameInertia Creeps + ArtistMassive Attack + Album ArtistMassive Attack + ComposerRobert Del Naja + AlbumMezzanine + GenreRap & Hip-Hop + KindMPEG audio file + Size10557998 + Total Time357198 + Disc Number1 + Disc Count1 + Track Number4 + Track Count11 + Year2006 + Date Modified2012-08-22T03:19:56Z + Date Added2012-08-22T03:42:46Z + Bit Rate232 + Sample Rate44100 + CommentsAmazon.com Song ID: 202078713 + Play Count2 + Play Date3453391353 + Play Date UTC2013-06-06T13:52:33Z + Skip Count1 + Skip Date2013-01-20T15:48:28Z + Artwork Count1 + Persistent ID972A6772373A1EF3 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Massive%20Attack/Mezzanine/04%20Inertia%20Creeps.mp3 + File Folder Count4 + Library Folder Count1 + + 10652 + + Track ID10652 + NameExchange + ArtistMassive Attack + Album ArtistMassive Attack + ComposerBob Hilliard + AlbumMezzanine + GenreRap & Hip-Hop + KindMPEG audio file + Size6866927 + Total Time251245 + Disc Number1 + Disc Count1 + Track Number5 + Track Count11 + Year2006 + Date Modified2012-08-22T03:28:22Z + Date Added2012-08-22T03:42:46Z + Bit Rate213 + Sample Rate44100 + CommentsAmazon.com Song ID: 202078714 + Play Count1 + Play Date3433569163 + Play Date UTC2012-10-20T03:42:43Z + Artwork Count1 + Persistent IDE22216B86C967A34 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Massive%20Attack/Mezzanine/05%20Exchange.mp3 + File Folder Count4 + Library Folder Count1 + + 10654 + + Track ID10654 + NameDissolved Girl + ArtistMassive Attack + Album ArtistMassive Attack + ComposerRobert Del Naja + AlbumMezzanine + GenreRap & Hip-Hop + KindMPEG audio file + Size10652102 + Total Time366942 + Disc Number1 + Disc Count1 + Track Number6 + Track Count11 + Year2006 + Date Modified2012-08-22T03:24:29Z + Date Added2012-08-22T03:42:46Z + Bit Rate228 + Sample Rate44100 + CommentsAmazon.com Song ID: 202078715 + Artwork Count1 + Persistent ID6A760C8BA60F8295 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Massive%20Attack/Mezzanine/06%20Dissolved%20Girl.mp3 + File Folder Count4 + Library Folder Count1 + + 10656 + + Track ID10656 + NameMan Next Door + ArtistMassive Attack + Album ArtistMassive Attack + ComposerTyrone Evans + AlbumMezzanine + GenreRap & Hip-Hop + KindMPEG audio file + Size8577820 + Total Time356153 + Disc Number1 + Disc Count1 + Track Number7 + Track Count11 + Year2006 + Date Modified2012-08-22T03:21:01Z + Date Added2012-08-22T03:42:46Z + Bit Rate188 + Sample Rate44100 + CommentsAmazon.com Song ID: 202078716 + Artwork Count1 + Persistent ID5749641639167638 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Massive%20Attack/Mezzanine/07%20Man%20Next%20Door.mp3 + File Folder Count4 + Library Folder Count1 + + 10658 + + Track ID10658 + NameBlack Milk + ArtistMassive Attack + Album ArtistMassive Attack + ComposerLiz Fraser + AlbumMezzanine + GenreRap & Hip-Hop + KindMPEG audio file + Size10130774 + Total Time381727 + Disc Number1 + Disc Count1 + Track Number8 + Track Count11 + Year2006 + Date Modified2012-08-22T03:16:54Z + Date Added2012-08-22T03:42:46Z + Bit Rate208 + Sample Rate44100 + CommentsAmazon.com Song ID: 202078717 + Artwork Count1 + Persistent IDD66FFE585940E534 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Massive%20Attack/Mezzanine/08%20Black%20Milk.mp3 + File Folder Count4 + Library Folder Count1 + + 10660 + + Track ID10660 + NameMezzanine + ArtistMassive Attack + Album ArtistMassive Attack + ComposerRobert Del Naja + AlbumMezzanine + GenreRap & Hip-Hop + KindMPEG audio file + Size9651552 + Total Time356858 + Disc Number1 + Disc Count1 + Track Number9 + Track Count11 + Year2006 + Date Modified2012-08-22T03:18:39Z + Date Added2012-08-22T03:42:47Z + Bit Rate212 + Sample Rate44100 + CommentsAmazon.com Song ID: 202078718 + Artwork Count1 + Persistent ID71A69D6B31CF45EB + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Massive%20Attack/Mezzanine/09%20Mezzanine.mp3 + File Folder Count4 + Library Folder Count1 + + 10662 + + Track ID10662 + NameGroup Four + ArtistMassive Attack + Album ArtistMassive Attack + ComposerLiz Fraser + AlbumMezzanine + GenreRap & Hip-Hop + KindMPEG audio file + Size14872027 + Total Time492329 + Disc Number1 + Disc Count1 + Track Number10 + Track Count11 + Year2006 + Date Modified2012-08-22T03:27:45Z + Date Added2012-08-22T03:42:47Z + Bit Rate238 + Sample Rate44100 + CommentsAmazon.com Song ID: 202078719 + Artwork Count1 + Persistent IDEDFE48644EDF754D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Massive%20Attack/Mezzanine/10%20Group%20Four.mp3 + File Folder Count4 + Library Folder Count1 + + 10664 + + Track ID10664 + Name(Exchange) + ArtistMassive Attack + Album ArtistMassive Attack + ComposerBob Hilliard + AlbumMezzanine + GenreRap & Hip-Hop + KindMPEG audio file + Size6805284 + Total Time250906 + Disc Number1 + Disc Count1 + Track Number11 + Track Count11 + Year2006 + Date Modified2012-08-22T03:21:51Z + Date Added2012-08-22T03:42:47Z + Bit Rate211 + Sample Rate44100 + CommentsAmazon.com Song ID: 202078720 + Artwork Count1 + Persistent ID233C223155861C4B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Massive%20Attack/Mezzanine/11%20(Exchange).mp3 + File Folder Count4 + Library Folder Count1 + + 10666 + + Track ID10666 + NameMysterons + ArtistPortishead + Album ArtistPortishead + ComposerGeoff Barrow + AlbumDummy + GenrePop + KindMPEG audio file + Size9903112 + Total Time306259 + Disc Number1 + Disc Count1 + Track Number1 + Track Count11 + Year1994 + Date Modified2012-08-22T03:35:25Z + Date Added2012-08-22T03:42:47Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202640613 + Play Count1 + Play Date3428494843 + Play Date UTC2012-08-22T10:10:43Z + Skip Count1 + Skip Date2014-01-12T15:49:34Z + Artwork Count1 + Persistent IDF798EC4F2580E57C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Portishead/Dummy/01%20Mysterons.mp3 + File Folder Count4 + Library Folder Count1 + + 10668 + + Track ID10668 + NameSour Times + ArtistPortishead + Album ArtistPortishead + ComposerHenry Roscoe Brooks + AlbumDummy + GenrePop + KindMPEG audio file + Size8232127 + Total Time254040 + Disc Number1 + Disc Count1 + Track Number2 + Track Count11 + Year1994 + Date Modified2012-08-22T03:36:04Z + Date Added2012-08-22T03:42:47Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202640614 + Play Count4 + Play Date3472406629 + Play Date UTC2014-01-12T15:53:49Z + Skip Count1 + Skip Date2014-05-16T15:46:00Z + Artwork Count1 + Persistent ID84EFA4AA42D4DD03 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Portishead/Dummy/02%20Sour%20Times.mp3 + File Folder Count4 + Library Folder Count1 + + 10670 + + Track ID10670 + NameStrangers + ArtistPortishead + Album ArtistPortishead + ComposerGeoff Barrow + AlbumDummy + GenrePop + KindMPEG audio file + Size7720529 + Total Time238053 + Disc Number1 + Disc Count1 + Track Number3 + Track Count11 + Year1994 + Date Modified2012-08-22T03:34:23Z + Date Added2012-08-22T03:42:47Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202640615 + Play Count1 + Play Date3430642081 + Play Date UTC2012-09-16T06:38:01Z + Artwork Count1 + Persistent IDCC690F8F4C0B1725 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Portishead/Dummy/03%20Strangers.mp3 + File Folder Count4 + Library Folder Count1 + + 10672 + + Track ID10672 + NameIt Could Be Sweet + ArtistPortishead + Album ArtistPortishead + ComposerGeoff Barrow + AlbumDummy + GenrePop + KindMPEG audio file + Size8423552 + Total Time260022 + Disc Number1 + Disc Count1 + Track Number4 + Track Count11 + Year1994 + Date Modified2012-08-22T03:32:42Z + Date Added2012-08-22T03:42:47Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202640616 + Play Count1 + Play Date3430642341 + Play Date UTC2012-09-16T06:42:21Z + Artwork Count1 + Persistent ID22BDA9B65E78AD24 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Portishead/Dummy/04%20It%20Could%20Be%20Sweet.mp3 + File Folder Count4 + Library Folder Count1 + + 10674 + + Track ID10674 + NameWandering Star + ArtistPortishead + Album ArtistPortishead + ComposerCharles William Miller + AlbumDummy + GenrePop + KindMPEG audio file + Size9511932 + Total Time294034 + Disc Number1 + Disc Count1 + Track Number5 + Track Count11 + Year1994 + Date Modified2012-08-22T03:32:02Z + Date Added2012-08-22T03:42:47Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202640617 + Play Count1 + Play Date3430642635 + Play Date UTC2012-09-16T06:47:15Z + Artwork Count1 + Persistent IDB78212ADE6EF7DF1 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Portishead/Dummy/05%20Wandering%20Star.mp3 + File Folder Count4 + Library Folder Count1 + + 10676 + + Track ID10676 + NameIt's A Fire + ArtistPortishead + Album ArtistPortishead + ComposerGeoff Barrow + AlbumDummy + GenreRock + KindMPEG audio file + Size7442174 + Total Time229355 + Disc Number1 + Disc Count1 + Track Number6 + Track Count11 + Year1994 + Date Modified2012-08-22T03:30:19Z + Date Added2012-08-22T03:42:47Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202640618 + Play Count1 + Play Date3430642864 + Play Date UTC2012-09-16T06:51:04Z + Artwork Count1 + Persistent ID2E19ADB87CE82984 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Portishead/Dummy/06%20It's%20A%20Fire.mp3 + File Folder Count4 + Library Folder Count1 + + 10678 + + Track ID10678 + NameNumb + ArtistPortishead + Album ArtistPortishead + ComposerGeoff Barrow + AlbumDummy + GenrePop + KindMPEG audio file + Size7719683 + Total Time238027 + Disc Number1 + Disc Count1 + Track Number7 + Track Count11 + Year1994 + Date Modified2012-08-22T03:37:31Z + Date Added2012-08-22T03:42:47Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202640619 + Play Count1 + Play Date3430643102 + Play Date UTC2012-09-16T06:55:02Z + Artwork Count1 + Persistent IDEF7F62FA2E047E63 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Portishead/Dummy/07%20Numb.mp3 + File Folder Count4 + Library Folder Count1 + + 10680 + + Track ID10680 + NameRoads + ArtistPortishead + Album ArtistPortishead + ComposerGeoff Barrow + AlbumDummy + GenrePop + KindMPEG audio file + Size9869667 + Total Time305214 + Disc Number1 + Disc Count1 + Track Number8 + Track Count11 + Year1994 + Date Modified2012-08-22T03:33:34Z + Date Added2012-08-22T03:42:47Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202640620 + Play Count1 + Play Date3430643407 + Play Date UTC2012-09-16T07:00:07Z + Artwork Count1 + Persistent ID94A2ECA6CDF65A9C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Portishead/Dummy/08%20Roads.mp3 + File Folder Count4 + Library Folder Count1 + + 10682 + + Track ID10682 + NamePedestal + ArtistPortishead + Album ArtistPortishead + ComposerGeoff Barrow + AlbumDummy + GenrePop + KindMPEG audio file + Size7176344 + Total Time221048 + Disc Number1 + Disc Count1 + Track Number9 + Track Count11 + Year1994 + Date Modified2012-08-22T03:29:44Z + Date Added2012-08-22T03:42:47Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202640621 + Play Count1 + Play Date3430643628 + Play Date UTC2012-09-16T07:03:48Z + Artwork Count1 + Persistent ID09EA65E8C18487A1 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Portishead/Dummy/09%20Pedestal.mp3 + File Folder Count4 + Library Folder Count1 + + 10684 + + Track ID10684 + NameBiscuit + ArtistPortishead + Album ArtistPortishead + ComposerGeoff Barrow + AlbumDummy + GenrePop + KindMPEG audio file + Size9836236 + Total Time304169 + Disc Number1 + Disc Count1 + Track Number10 + Track Count11 + Year1994 + Date Modified2012-08-22T03:36:53Z + Date Added2012-08-22T03:42:47Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202640622 + Play Count1 + Play Date3430643932 + Play Date UTC2012-09-16T07:08:52Z + Artwork Count1 + Persistent ID76610A9E4CB58E42 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Portishead/Dummy/10%20Biscuit.mp3 + File Folder Count4 + Library Folder Count1 + + 10686 + + Track ID10686 + NameGlory Box + ArtistPortishead + Album ArtistPortishead + ComposerGeoff Barrow + AlbumDummy + GenrePop + KindMPEG audio file + Size9882216 + Total Time305606 + Disc Number1 + Disc Count1 + Track Number11 + Track Count11 + Year1994 + Date Modified2012-08-22T03:31:14Z + Date Added2012-08-22T03:42:47Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202640623 + Play Count1 + Play Date3430644238 + Play Date UTC2012-09-16T07:13:58Z + Artwork Count1 + Persistent ID2DCFD7B1271B59C7 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Portishead/Dummy/11%20Glory%20Box.mp3 + File Folder Count4 + Library Folder Count1 + + 10688 + + Track ID10688 + NameVaralandu (Raga: Gurjari; Tala: Adi) + ArtistP. Unnikrishnan + ComposerThyagaraja + AlbumAanandam + GenreTraditional + KindAAC audio file + Size7826646 + Total Time231226 + Disc Number1 + Disc Count1 + Track Number1 + Track Count8 + Year1997 + Date Modified2012-08-25T02:38:37Z + Date Added2012-08-25T02:31:35Z + Bit Rate256 + Sample Rate44100 + Normalization2027 + Artwork Count1 + Persistent ID8555BE9CC9EE276A + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/P.%20Unnikrishnan/Aanandam/01%20Varalandu%20(Raga_%20Gurjari%3B%20Tala_%20Adi).m4a + File Folder Count4 + Library Folder Count1 + + 10690 + + Track ID10690 + NameNee Irangaayanil (Unni) (Raga: Ataana; Tala: Adi) + ArtistP. Unnikrishnan + ComposerPapanasam Sivan + AlbumAanandam + GenreTraditional + KindAAC audio file + Size12637967 + Total Time378506 + Disc Number1 + Disc Count1 + Track Number2 + Track Count8 + Year1997 + Date Modified2012-08-25T02:38:38Z + Date Added2012-08-25T02:31:57Z + Bit Rate256 + Sample Rate44100 + Normalization2343 + Artwork Count1 + Persistent ID780C36AF09E6E57E + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/P.%20Unnikrishnan/Aanandam/02%20Nee%20Irangaayanil%20(Unni)%20(Raga_%20Ataana%3B%20Tala_%20Adi).m4a + File Folder Count4 + Library Folder Count1 + + 10692 + + Track ID10692 + NameUnnai Allaal (Unni) (Raga: Simhendra Madhyamam; Tala: Adi) + ArtistP. Unnikrishnan + ComposerKoteeswara Iyer + AlbumAanandam + GenreTraditional + KindAAC audio file + Size34560845 + Total Time1042426 + Disc Number1 + Disc Count1 + Track Number3 + Track Count8 + Year1997 + Date Modified2012-08-25T02:38:38Z + Date Added2012-08-25T02:32:28Z + Bit Rate256 + Sample Rate44100 + Normalization1469 + Artwork Count1 + Persistent ID59D03CC393046EBF + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/P.%20Unnikrishnan/Aanandam/03%20Unnai%20Allaal%20(Unni)%20(Raga_%20Simhendra%20Madhyamam%3B%20Tala_%20Adi).m4a + File Folder Count4 + Library Folder Count1 + + 10694 + + Track ID10694 + NameNannubrovu (Unni) (Raga: Lalitha; Tala: Misra Chapu) + ArtistP. Unnikrishnan + ComposerSyama Sastri + AlbumAanandam + GenreTraditional + KindAAC audio file + Size20936378 + Total Time628173 + Disc Number1 + Disc Count1 + Track Number4 + Track Count8 + Year1997 + Date Modified2012-08-25T02:38:40Z + Date Added2012-08-25T02:33:38Z + Bit Rate256 + Sample Rate44100 + Normalization1253 + Artwork Count1 + Persistent ID07959A33E6DD7A6B + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/P.%20Unnikrishnan/Aanandam/04%20Nannubrovu%20(Unni)%20(Raga_%20Lalitha%3B%20Tala_%20Misra%20Chapu).m4a + File Folder Count4 + Library Folder Count1 + + 10696 + + Track ID10696 + NamePankajaaksha (Raga: Thodi; Tala: Rupakam) + ArtistP. Unnikrishnan + ComposerSwathi Thirunal + AlbumAanandam + GenreTraditional + KindAAC audio file + Size38949156 + Total Time1173533 + Disc Number1 + Disc Count1 + Track Number5 + Track Count8 + Year1997 + Date Modified2012-08-25T02:38:41Z + Date Added2012-08-25T02:34:14Z + Bit Rate256 + Sample Rate44100 + Normalization1253 + Artwork Count1 + Persistent ID5F5273ECBD32CA73 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/P.%20Unnikrishnan/Aanandam/05%20Pankajaaksha%20(Raga_%20Thodi%3B%20Tala_%20Rupakam).m4a + File Folder Count4 + Library Folder Count1 + + 10698 + + Track ID10698 + NameKrishnam Kalaya (C-606) (Raga: Mand; Tala: Adi) + ArtistP. Unnikrishnan + ComposerNarayana Theerthar + AlbumAanandam + GenreTraditional + KindAAC audio file + Size6550330 + Total Time195960 + Disc Number1 + Disc Count1 + Track Number6 + Track Count8 + Year1997 + Date Modified2012-08-25T02:38:41Z + Date Added2012-08-25T02:35:24Z + Bit Rate256 + Sample Rate44100 + Normalization1929 + Artwork Count1 + Persistent IDD93439C271C8177F + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/P.%20Unnikrishnan/Aanandam/06%20Krishnam%20Kalaya%20(C-606)%20(Raga_%20Mand%3B%20Tala_%20Adi).m4a + File Folder Count4 + Library Folder Count1 + + 10700 + + Track ID10700 + NameKandu Nee Sollavendum (Raga: Sindhu Bhairavi; Tala: Adi) + ArtistP. Unnikrishnan + ComposerKrishnaiah + AlbumAanandam + GenreTraditional + KindAAC audio file + Size15659993 + Total Time467200 + Disc Number1 + Disc Count1 + Track Number7 + Track Count8 + Year1997 + Date Modified2012-08-25T02:38:42Z + Date Added2012-08-25T02:35:43Z + Bit Rate256 + Sample Rate44100 + Normalization1931 + Artwork Count1 + Persistent ID3F762C68264ABC04 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/P.%20Unnikrishnan/Aanandam/07%20Kandu%20Nee%20Sollavendum%20(Raga_%20Sindhu%20Bhairavi%3B%20Tala_%20Adi).m4a + File Folder Count4 + Library Folder Count1 + + 10702 + + Track ID10702 + NameThillana (Unni) (Raga: Chenchuruti; Tala: Adi) + ArtistP. Unnikrishnan + ComposerVeena Seshanna + AlbumAanandam + GenreTraditional + KindAAC audio file + Size7886850 + Total Time232040 + Disc Number1 + Disc Count1 + Track Number8 + Track Count8 + Year1997 + Date Modified2012-08-25T02:38:42Z + Date Added2012-08-25T02:36:22Z + Bit Rate256 + Sample Rate44100 + Normalization3278 + Artwork Count1 + Persistent ID3C357B666AC092F7 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/P.%20Unnikrishnan/Aanandam/08%20Thillana%20(Unni)%20(Raga_%20Chenchuruti%3B%20Tala_%20Adi).m4a + File Folder Count4 + Library Folder Count1 + + 10706 + + Track ID10706 + Nameks + KindWAV audio file + Size176444 + Total Time2000 + Date Modified2012-09-17T15:19:14Z + Date Added2012-09-22T02:16:52Z + Bit Rate705 + Sample Rate44100 + Play Count1 + Play Date3431144815 + Play Date UTC2012-09-22T02:16:55Z + Persistent ID5E92950D61316E89 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Unknown%20Artist/Unknown%20Album/ks.wav + File Folder Count4 + Library Folder Count1 + + 10738 + + Track ID10738 + Name12000hz + KindWAV audio file + Size44226 + Total Time500 + Date Modified1998-02-10T20:17:36Z + Date Added2012-11-16T12:04:40Z + Bit Rate705 + Sample Rate44100 + Play Count2 + Play Date3435932093 + Play Date UTC2012-11-16T12:04:53Z + Persistent ID2CA657BF49DB5E8A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Unknown%20Artist/Unknown%20Album/12000hz.wav + File Folder Count4 + Library Folder Count1 + + 10740 + + Track ID10740 + Name1 Allegro Moderato + ArtistArthur Grumiaux Violin/Eva Czako Cello/Georges Janzer Viola + ComposerFranz Composer/Schubert + AlbumSchubert Complete Trios + GenreClassical + KindMPEG audio file + Size13395103 + Total Time334419 + Year1994 + Date Modified2012-12-08T03:11:21Z + Date Added2012-12-08T03:15:56Z + Bit Rate320 + Sample Rate44100 + Play Count1 + Play Date3437805821 + Play Date UTC2012-12-08T04:33:41Z + Artwork Count1 + Persistent ID2833D35B6C3DC975 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Arthur%20Grumiaux%20Violin_Eva%20Czako%20Cello_Georges%20Janzer%20Viola/Schubert%20Complete%20Trios/1%20Allegro%20Moderato.mp3 + File Folder Count4 + Library Folder Count1 + + 10742 + + Track ID10742 + Name1 Allegro Moderato + ArtistBeaux Arts Trio Ensemble/Bernard Greenhouse Cello/Daniel Guilet Violin/Menahem Pressler Piano + ComposerFranz Composer/Schubert + AlbumSchubert Complete Trios + GenreClassical + KindMPEG audio file + Size25790702 + Total Time644310 + Year1994 + Date Modified2012-12-08T03:10:49Z + Date Added2012-12-08T03:15:56Z + Bit Rate320 + Sample Rate44100 + Skip Count1 + Skip Date2013-07-25T04:12:31Z + Artwork Count1 + Persistent IDD92C341E4B8D0EC2 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Beaux%20Arts%20Trio%20Ensemble_Bernard%20Greenhouse%20Cello_Daniel%20Guilet%20Violin_Menahem%20Pressler%20Piano/Schubert%20Complete%20Trios/1%20Allegro%20Moderato.mp3 + File Folder Count4 + Library Folder Count1 + + 10744 + + Track ID10744 + Name1 Allegro + ArtistArthur Grumiaux Violin/Eva Czako Cello/Georges Janzer Viola + ComposerFranz Composer/Schubert + AlbumSchubert Complete Trios + GenreClassical + KindMPEG audio file + Size20088982 + Total Time501760 + Year1994 + Date Modified2012-12-08T03:12:33Z + Date Added2012-12-08T03:15:56Z + Bit Rate320 + Sample Rate44100 + Play Count2 + Play Date3437824482 + Play Date UTC2012-12-08T09:44:42Z + Artwork Count1 + Persistent ID269E624DE4DE6C09 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Arthur%20Grumiaux%20Violin_Eva%20Czako%20Cello_Georges%20Janzer%20Viola/Schubert%20Complete%20Trios/1%20Allegro.mp3 + File Folder Count4 + Library Folder Count1 + + 10746 + + Track ID10746 + Name1 Allegro + ArtistBeaux Arts Trio Ensemble/Bernard Greenhouse Cello/Daniel Guilet Violin/Menahem Pressler Piano + ComposerFranz Composer/Schubert + AlbumSchubert Complete Trios + GenreClassical + KindMPEG audio file + Size30414053 + Total Time759875 + Year1994 + Date Modified2012-12-08T03:06:11Z + Date Added2012-12-08T03:15:56Z + Bit Rate320 + Sample Rate44100 + Artwork Count1 + Persistent ID22C0DF9BBF670AF5 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Beaux%20Arts%20Trio%20Ensemble_Bernard%20Greenhouse%20Cello_Daniel%20Guilet%20Violin_Menahem%20Pressler%20Piano/Schubert%20Complete%20Trios/1%20Allegro.mp3 + File Folder Count4 + Library Folder Count1 + + 10748 + + Track ID10748 + Name2 Andante Con Moto + ArtistBeaux Arts Trio Ensemble/Bernard Greenhouse Cello/Daniel Guilet Violin/Menahem Pressler Piano + ComposerFranz Composer/Schubert + AlbumSchubert Complete Trios + GenreClassical + KindMPEG audio file + Size21477614 + Total Time536476 + Year1994 + Date Modified2012-12-08T03:07:55Z + Date Added2012-12-08T03:15:56Z + Bit Rate320 + Sample Rate44100 + Artwork Count1 + Persistent ID4254001EC6143685 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Beaux%20Arts%20Trio%20Ensemble_Bernard%20Greenhouse%20Cello_Daniel%20Guilet%20Violin_Menahem%20Pressler%20Piano/Schubert%20Complete%20Trios/2%20Andante%20Con%20Moto.mp3 + File Folder Count4 + Library Folder Count1 + + 10750 + + Track ID10750 + Name2 Andante Un Poco Mosso + ArtistBeaux Arts Trio Ensemble/Bernard Greenhouse Cello/Daniel Guilet Violin/Menahem Pressler Piano + ComposerFranz Composer/Schubert + AlbumSchubert Complete Trios + GenreClassical + KindMPEG audio file + Size24228038 + Total Time605231 + Year1994 + Date Modified2012-12-08T03:04:54Z + Date Added2012-12-08T03:15:56Z + Bit Rate320 + Sample Rate44100 + Artwork Count1 + Persistent ID56EDE0DF9691A469 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Beaux%20Arts%20Trio%20Ensemble_Bernard%20Greenhouse%20Cello_Daniel%20Guilet%20Violin_Menahem%20Pressler%20Piano/Schubert%20Complete%20Trios/2%20Andante%20Un%20Poco%20Mosso.mp3 + File Folder Count4 + Library Folder Count1 + + 10752 + + Track ID10752 + Name2 Andante + ArtistArthur Grumiaux Violin/Eva Czako Cello/Georges Janzer Viola + ComposerFranz Composer/Schubert + AlbumSchubert Complete Trios + GenreClassical + KindMPEG audio file + Size12174486 + Total Time303908 + Year1994 + Date Modified2012-12-08T03:05:50Z + Date Added2012-12-08T03:15:56Z + Bit Rate320 + Sample Rate44100 + Play Count1 + Play Date3437806124 + Play Date UTC2012-12-08T04:38:44Z + Artwork Count1 + Persistent IDF5B28BD255D6693C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Arthur%20Grumiaux%20Violin_Eva%20Czako%20Cello_Georges%20Janzer%20Viola/Schubert%20Complete%20Trios/2%20Andante.mp3 + File Folder Count4 + Library Folder Count1 + + 10754 + + Track ID10754 + Name3 Menuetto Allegretto + ArtistArthur Grumiaux Violin/Eva Czako Cello/Georges Janzer Viola + ComposerFranz Composer/Schubert + AlbumSchubert Complete Trios + GenreClassical + KindMPEG audio file + Size9619618 + Total Time240013 + Year1994 + Date Modified2012-12-08T03:10:24Z + Date Added2012-12-08T03:15:56Z + Bit Rate320 + Sample Rate44100 + Artwork Count1 + Persistent IDEC3789394B1B9985 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Arthur%20Grumiaux%20Violin_Eva%20Czako%20Cello_Georges%20Janzer%20Viola/Schubert%20Complete%20Trios/3%20Menuetto%20Allegretto.mp3 + File Folder Count4 + Library Folder Count1 + + 10756 + + Track ID10756 + Name3 Scherzo Allegro Moderato Trio + ArtistBeaux Arts Trio Ensemble/Bernard Greenhouse Cello/Daniel Guilet Violin/Menahem Pressler Piano + ComposerFranz Composer/Schubert + AlbumSchubert Complete Trios + GenreClassical + KindMPEG audio file + Size16652494 + Total Time415843 + Year1994 + Date Modified2012-12-08T03:08:59Z + Date Added2012-12-08T03:15:57Z + Bit Rate320 + Sample Rate44100 + Artwork Count1 + Persistent ID146B8899A9A08028 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Beaux%20Arts%20Trio%20Ensemble_Bernard%20Greenhouse%20Cello_Daniel%20Guilet%20Violin_Menahem%20Pressler%20Piano/Schubert%20Complete%20Trios/3%20Scherzo%20Allegro%20Moderato%20Trio.mp3 + File Folder Count4 + Library Folder Count1 + + 10758 + + Track ID10758 + Name3 Scherzo Allegro + ArtistBeaux Arts Trio Ensemble/Bernard Greenhouse Cello/Daniel Guilet Violin/Menahem Pressler Piano + ComposerFranz Composer/Schubert + AlbumSchubert Complete Trios + GenreClassical + KindMPEG audio file + Size14771392 + Total Time368822 + Year1994 + Date Modified2012-12-08T03:12:11Z + Date Added2012-12-08T03:15:57Z + Bit Rate320 + Sample Rate44100 + Artwork Count1 + Persistent ID5297A28BF3A6A623 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Beaux%20Arts%20Trio%20Ensemble_Bernard%20Greenhouse%20Cello_Daniel%20Guilet%20Violin_Menahem%20Pressler%20Piano/Schubert%20Complete%20Trios/3%20Scherzo%20Allegro.mp3 + File Folder Count4 + Library Folder Count1 + + 10760 + + Track ID10760 + Name4 Allegro Moderato + ArtistBeaux Arts Trio Ensemble/Bernard Greenhouse Cello/Daniel Guilet Violin/Menahem Pressler Piano + ComposerFranz Composer/Schubert + AlbumSchubert Complete Trios + GenreClassical + KindMPEG audio file + Size30264558 + Total Time756140 + Year1994 + Date Modified2012-12-08T03:03:52Z + Date Added2012-12-08T03:15:57Z + Bit Rate320 + Sample Rate44100 + Artwork Count1 + Persistent IDF0A882555F73D8D7 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Beaux%20Arts%20Trio%20Ensemble_Bernard%20Greenhouse%20Cello_Daniel%20Guilet%20Violin_Menahem%20Pressler%20Piano/Schubert%20Complete%20Trios/4%20Allegro%20Moderato.mp3 + File Folder Count4 + Library Folder Count1 + + 10762 + + Track ID10762 + Name4 Rondo Allegretto + ArtistArthur Grumiaux Violin/Eva Czako Cello/Georges Janzer Viola + ComposerFranz Composer/Schubert + AlbumSchubert Complete Trios + GenreClassical + KindMPEG audio file + Size13861068 + Total Time346070 + Year1994 + Date Modified2012-12-08T03:12:57Z + Date Added2012-12-08T03:15:57Z + Bit Rate320 + Sample Rate44100 + Artwork Count1 + Persistent ID0CF4D806B0EE3865 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Arthur%20Grumiaux%20Violin_Eva%20Czako%20Cello_Georges%20Janzer%20Viola/Schubert%20Complete%20Trios/4%20Rondo%20Allegretto.mp3 + File Folder Count4 + Library Folder Count1 + + 10764 + + Track ID10764 + Name4 Rondo Allegro Vivace + ArtistBeaux Arts Trio Ensemble/Bernard Greenhouse Cello/Daniel Guilet Violin/Menahem Pressler Piano + ComposerFranz Composer/Schubert + AlbumSchubert Complete Trios + GenreClassical + KindMPEG audio file + Size20932850 + Total Time522866 + Year1994 + Date Modified2012-12-08T03:03:07Z + Date Added2012-12-08T03:15:57Z + Bit Rate320 + Sample Rate44100 + Artwork Count1 + Persistent ID28C2638CB742DC3D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Beaux%20Arts%20Trio%20Ensemble_Bernard%20Greenhouse%20Cello_Daniel%20Guilet%20Violin_Menahem%20Pressler%20Piano/Schubert%20Complete%20Trios/4%20Rondo%20Allegro%20Vivace.mp3 + File Folder Count4 + Library Folder Count1 + + 10766 + + Track ID10766 + NameAdagio In E Flat Op Posth 148 D 897 Notturno + ArtistBeaux Arts Trio Ensemble/Bernard Greenhouse Cello/Daniel Guilet Violin/Menahem Pressler Piano + ComposerFranz Composer/Schubert + AlbumSchubert Complete Trios + GenreClassical + KindMPEG audio file + Size31186184 + Total Time779180 + Year1994 + Date Modified2012-12-08T03:09:46Z + Date Added2012-12-08T03:15:57Z + Bit Rate320 + Sample Rate44100 + Play Count1 + Play Date3437806923 + Play Date UTC2012-12-08T04:52:03Z + Artwork Count1 + Persistent ID8DEC0D1278647AB9 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Beaux%20Arts%20Trio%20Ensemble_Bernard%20Greenhouse%20Cello_Daniel%20Guilet%20Violin_Menahem%20Pressler%20Piano/Schubert%20Complete%20Trios/Adagio%20In%20E%20Flat%20Op%20Posth%20148%20D%20897%20Notturno.mp3 + File Folder Count4 + Library Folder Count1 + + 10768 + + Track ID10768 + NamePiano Trio In One Movement In B Flat D 28 Sonata Allegro + ArtistBeaux Arts Trio Ensemble/Bernard Greenhouse Cello/Daniel Guilet Violin/Menahem Pressler Piano + ComposerFranz Composer/Schubert + AlbumSchubert Complete Trios + GenreClassical + KindMPEG audio file + Size20273383 + Total Time506357 + Year1994 + Date Modified2012-12-08T03:07:21Z + Date Added2012-12-08T03:15:58Z + Bit Rate320 + Sample Rate44100 + Artwork Count1 + Persistent IDDB0C447F6D56E9F0 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Beaux%20Arts%20Trio%20Ensemble_Bernard%20Greenhouse%20Cello_Daniel%20Guilet%20Violin_Menahem%20Pressler%20Piano/Schubert%20Complete%20Trios/Piano%20Trio%20In%20One%20Movement%20In%20B%20Flat%20D%2028%20Sonata%20Allegro.mp3 + File Folder Count4 + Library Folder Count1 + + 10770 + + Track ID10770 + NameChannels And Winds + ArtistMadras/Pandit Ravi Shankar/Partha Sarathy/T Srinivasan + ComposerPandit Ravi Shankar/Philip Glass + AlbumPassages + GenreWorld Music + KindMPEG audio file + Size19259169 + Total Time480914 + Year2005 + Date Modified2012-12-14T10:35:39Z + Date Added2012-12-14T10:38:25Z + Bit Rate320 + Sample Rate44100 + Artwork Count1 + Persistent IDF973AB9524E0271F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Madras_Pandit%20Ravi%20Shankar_Partha%20Sarathy_T%20Srinivasan/Passages/Channels%20And%20Winds.mp3 + File Folder Count4 + Library Folder Count1 + + 10772 + + Track ID10772 + NameMeetings Along The Edge + ArtistMadras/Pandit Ravi Shankar/Partha Sarathy/T Srinivasan + ComposerPandit Ravi Shankar/Philip Glass + AlbumPassages + GenreWorld Music + KindMPEG audio file + Size19588888 + Total Time489168 + Year2005 + Date Modified2012-12-14T10:34:17Z + Date Added2012-12-14T10:38:25Z + Bit Rate320 + Sample Rate44100 + Artwork Count1 + Persistent ID9D9A08791E4575E4 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Madras_Pandit%20Ravi%20Shankar_Partha%20Sarathy_T%20Srinivasan/Passages/Meetings%20Along%20The%20Edge.mp3 + File Folder Count4 + Library Folder Count1 + + 10774 + + Track ID10774 + NameOffering + ArtistMadras/Pandit Ravi Shankar/Partha Sarathy/T Srinivasan + ComposerPandit Ravi Shankar/Philip Glass + AlbumPassages + GenreWorld Music + KindMPEG audio file + Size23296791 + Total Time581851 + Year2005 + Date Modified2012-12-14T10:37:17Z + Date Added2012-12-14T10:38:25Z + Bit Rate320 + Sample Rate44100 + Play Count1 + Play Date3438348060 + Play Date UTC2012-12-14T11:11:00Z + Skip Count1 + Skip Date2013-07-25T04:23:55Z + Artwork Count1 + Persistent ID605537B716B4A408 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Madras_Pandit%20Ravi%20Shankar_Partha%20Sarathy_T%20Srinivasan/Passages/Offering.mp3 + File Folder Count4 + Library Folder Count1 + + 10776 + + Track ID10776 + NamePrashanti + ArtistMadras/Pandit Ravi Shankar/Partha Sarathy/T Srinivasan + ComposerPandit Ravi Shankar/Philip Glass + AlbumPassages + GenreWorld Music + KindMPEG audio file + Size32857880 + Total Time820897 + Year2005 + Date Modified2012-12-14T10:34:25Z + Date Added2012-12-14T10:38:25Z + Bit Rate320 + Sample Rate44100 + Play Count1 + Play Date3438347478 + Play Date UTC2012-12-14T11:01:18Z + Artwork Count1 + Persistent ID424F6992D22C5BF9 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Madras_Pandit%20Ravi%20Shankar_Partha%20Sarathy_T%20Srinivasan/Passages/Prashanti.mp3 + File Folder Count4 + Library Folder Count1 + + 10778 + + Track ID10778 + NameSadhanipa + ArtistMadras/Pandit Ravi Shankar/Partha Sarathy/T Srinivasan + ComposerPandit Ravi Shankar/Philip Glass + AlbumPassages + GenreWorld Music + KindMPEG audio file + Size20655896 + Total Time515840 + Year2005 + Date Modified2012-12-14T10:36:23Z + Date Added2012-12-14T10:38:25Z + Bit Rate320 + Sample Rate44100 + Play Count1 + Play Date3438346657 + Play Date UTC2012-12-14T10:47:37Z + Artwork Count1 + Persistent IDB00042D861F9D504 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Madras_Pandit%20Ravi%20Shankar_Partha%20Sarathy_T%20Srinivasan/Passages/Sadhanipa.mp3 + File Folder Count4 + Library Folder Count1 + + 10782 + + Track ID10782 + NameRagas In Minor Scale + ArtistPandit Ravi Shankar + ComposerPhilip Glass + AlbumBridges The Best Of The Private Music Recordings + GenreWorld Music + KindMPEG audio file + Size18308158 + Total Time457038 + Year2005 + Date Modified2012-12-14T10:32:56Z + Date Added2012-12-14T10:41:19Z + Bit Rate320 + Sample Rate44100 + Artwork Count1 + Persistent ID1A57BB950F7E7F83 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pandit%20Ravi%20Shankar/Bridges%20The%20Best%20Of%20The%20Private%20Music%20Recordings/Ragas%20In%20Minor%20Scale.mp3 + File Folder Count4 + Library Folder Count1 + + 10784 + + Track ID10784 + NameFinding the Balance + ArtistKevin MacLeod + AlbumRoyalty Free + KindMPEG audio file + Size8324362 + Total Time208056 + Year2010 + BPM75 + Date Modified2012-12-22T06:34:46Z + Date Added2012-12-22T06:32:37Z + Bit Rate320 + Sample Rate48000 + CommentsThe beginning is calm with the Middle Eastern dudek playing the melody. As the electronic elements melt into the dudek and the plucked strings, the groove is established. Just into the third minute the melody changes to beautiful and touching, but returns + Normalization1259 + Persistent IDCDBA311C8F251427 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kevin%20MacLeod/Royalty%20Free/Finding%20the%20Balance.mp3 + File Folder Count4 + Library Folder Count1 + + 10788 + + Track ID10788 + NameRising + ArtistKevin MacLeod + ComposerKevin MacLeod + AlbumRoyalty Free + GenreTV & Film + KindMPEG audio file + Size6061587 + Total Time151484 + Year2010 + BPM84 + Date Modified2012-12-22T08:51:00Z + Date Added2012-12-25T04:17:42Z + Bit Rate320 + Sample Rate44100 + Normalization1259 + Persistent ID3B8679BE81716213 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kevin%20MacLeod/Royalty%20Free/Rising.mp3 + File Folder Count4 + Library Folder Count1 + + 10790 + + Track ID10790 + NamePadanaya Blokov + ArtistKevin MacLeod + ComposerKevin MacLeod + AlbumVideoClassica + KindMPEG audio file + Size5198348 + Total Time127686 + Year2009 + BPM126 + Date Modified2012-12-29T02:56:52Z + Date Added2012-12-29T02:56:58Z + Bit Rate320 + Sample Rate44100 + Normalization1298 + Artwork Count1 + Persistent IDA420244BB3AE6A60 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kevin%20MacLeod/VideoClassica/Padanaya%20Blokov.mp3 + File Folder Count4 + Library Folder Count1 + + 10832 + + Track ID10832 + NameAdhitya Hrudyam + ArtistK J Yesudas + ComposerIlayaraja + AlbumSindhu Bairavi + KindMPEG audio file + Size2559072 + Total Time63451 + Year1985 + Date Modified2013-01-08T07:16:58Z + Date Added2013-01-14T03:11:27Z + Bit Rate320 + Sample Rate44100 + Artwork Count1 + Persistent IDE750225908DFDFD4 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/K%20J%20Yesudas/Sindhu%20Bairavi/Adhitya%20Hrudyam.mp3 + File Folder Count4 + Library Folder Count1 + + 10834 + + Track ID10834 + NameKalaivani + ArtistK J Yesudas + ComposerIlayaraja + AlbumSindhu Bairavi + KindMPEG audio file + Size9202797 + Total Time229564 + Year1985 + Date Modified2013-01-08T07:16:15Z + Date Added2013-01-14T03:11:27Z + Bit Rate320 + Sample Rate44100 + Artwork Count1 + Persistent ID1F037864E8DE0EC2 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/K%20J%20Yesudas/Sindhu%20Bairavi/Kalaivani.mp3 + File Folder Count4 + Library Folder Count1 + + 10836 + + Track ID10836 + NameLochana + ArtistK J Yesudas + ComposerIlayaraja + AlbumSindhu Bairavi + KindMPEG audio file + Size5166168 + Total Time128653 + Year1985 + Date Modified2013-01-08T07:14:59Z + Date Added2013-01-14T03:11:27Z + Bit Rate320 + Sample Rate44100 + Artwork Count1 + Persistent ID0E8204DCAE64BE56 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/K%20J%20Yesudas/Sindhu%20Bairavi/Lochana.mp3 + File Folder Count4 + Library Folder Count1 + + 10838 + + Track ID10838 + NameMahaganapathim + ArtistK J Yesudas + ComposerIlayaraja + AlbumSindhu Bairavi + KindMPEG audio file + Size10952799 + Total Time273293 + Year1985 + Date Modified2013-01-08T07:17:42Z + Date Added2013-01-14T03:11:27Z + Bit Rate320 + Sample Rate44100 + Artwork Count1 + Persistent ID9840D23C53246F17 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/K%20J%20Yesudas/Sindhu%20Bairavi/Mahaganapathim.mp3 + File Folder Count4 + Library Folder Count1 + + 10840 + + Track ID10840 + NameManathil Urudhi Vendum + ArtistK J Yesudas + ComposerIlayaraja + AlbumSindhu Bairavi + KindMPEG audio file + Size3513454 + Total Time87327 + Year1985 + Date Modified2013-01-08T07:15:23Z + Date Added2013-01-14T03:11:27Z + Bit Rate320 + Sample Rate44100 + Artwork Count1 + Persistent ID4222E21A7810EF93 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/K%20J%20Yesudas/Sindhu%20Bairavi/Manathil%20Urudhi%20Vendum.mp3 + File Folder Count4 + Library Folder Count1 + + 10842 + + Track ID10842 + NameMari Mari + ArtistK J Yesudas + ComposerIlayaraja + AlbumSindhu Bairavi + KindMPEG audio file + Size6744169 + Total Time168097 + Year1985 + Date Modified2013-01-08T07:15:14Z + Date Added2013-01-14T03:11:27Z + Bit Rate320 + Sample Rate44100 + Artwork Count1 + Persistent ID74B78341BD190583 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/K%20J%20Yesudas/Sindhu%20Bairavi/Mari%20Mari.mp3 + File Folder Count4 + Library Folder Count1 + + 10844 + + Track ID10844 + NameMoham Enum + ArtistK J Yesudas + ComposerIlayaraja + AlbumSindhu Bairavi + KindMPEG audio file + Size5878894 + Total Time146468 + Year1985 + Date Modified2013-01-08T07:15:44Z + Date Added2013-01-14T03:11:27Z + Bit Rate320 + Sample Rate44100 + Artwork Count1 + Persistent IDC594CF7A72750158 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/K%20J%20Yesudas/Sindhu%20Bairavi/Moham%20Enum.mp3 + File Folder Count4 + Library Folder Count1 + + 10846 + + Track ID10846 + NameNanoru Sindhu + ArtistChitra + ComposerIlayaraja + AlbumSindhu Bairavi + KindMPEG audio file + Size10592364 + Total Time264306 + Year1985 + Date Modified2013-01-08T07:18:20Z + Date Added2013-01-14T03:11:27Z + Bit Rate320 + Sample Rate44100 + Skip Count1 + Skip Date2013-01-16T06:29:45Z + Artwork Count1 + Persistent ID16981BE7F3B0F27A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chitra/Sindhu%20Bairavi/Nanoru%20Sindhu.mp3 + File Folder Count4 + Library Folder Count1 + + 10848 + + Track ID10848 + NameNee Daya Radha + ArtistK J Yesudas + ComposerIlayaraja + AlbumSindhu Bairavi + KindMPEG audio file + Size6854771 + Total Time170866 + Year1985 + Date Modified2013-01-08T07:18:14Z + Date Added2013-01-14T03:11:27Z + Bit Rate320 + Sample Rate44100 + Artwork Count1 + Persistent ID119EA8CC5BA52FA0 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/K%20J%20Yesudas/Sindhu%20Bairavi/Nee%20Daya%20Radha.mp3 + File Folder Count4 + Library Folder Count1 + + 10850 + + Track ID10850 + NamePadariyen Padippariyen + ArtistChitra + ComposerIlayaraja + AlbumSindhu Bairavi + KindMPEG audio file + Size11440245 + Total Time285492 + Year1985 + Date Modified2013-01-08T07:16:47Z + Date Added2013-01-14T03:11:27Z + Bit Rate320 + Sample Rate44100 + Artwork Count1 + Persistent ID8A50200E93FF0AD8 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chitra/Sindhu%20Bairavi/Padariyen%20Padippariyen.mp3 + File Folder Count4 + Library Folder Count1 + + 10852 + + Track ID10852 + NamePoo Malai + ArtistK J Yesudas + ComposerIlayaraja + AlbumSindhu Bairavi + KindMPEG audio file + Size10849389 + Total Time270733 + Year1985 + Date Modified2013-01-08T07:17:28Z + Date Added2013-01-14T03:11:27Z + Bit Rate320 + Sample Rate44100 + Artwork Count1 + Persistent ID1BA13BF5FE3E226A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/K%20J%20Yesudas/Sindhu%20Bairavi/Poo%20Malai.mp3 + File Folder Count4 + Library Folder Count1 + + 10854 + + Track ID10854 + NameThanneer Thotti + ArtistK J Yesudas + ComposerIlayaraja + AlbumSindhu Bairavi + KindMPEG audio file + Size11186286 + Total Time279144 + Year1985 + Date Modified2013-01-08T07:21:36Z + Date Added2013-01-14T03:11:27Z + Bit Rate320 + Sample Rate44100 + Skip Count1 + Skip Date2013-01-14T03:22:14Z + Artwork Count1 + Persistent IDB53F16F3A5D0275A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/K%20J%20Yesudas/Sindhu%20Bairavi/Thanneer%20Thotti.mp3 + File Folder Count4 + Library Folder Count1 + + 10856 + + Track ID10856 + NameAnandi + ArtistAnwar Khurshid / Aruna Kalle / Cardinal Vaughan Memorial School / Chris Bleth / Courtney Grueschow / Evergreen Club Contemporary Gamelan / Jatinder Jeetu / Jeetu Prakesh / Mychael Danna / Rajesh Srinivasan / Thomas Fetherstonhaugh / Ulhas Bapat / V Selvag + AlbumLife Of Pi + GenreClassical + KindMPEG audio file + Size2237022 + Total Time55457 + Year2012 + Date Modified2013-01-14T03:20:28Z + Date Added2013-01-14T03:21:05Z + Bit Rate320 + Sample Rate44100 + Artwork Count1 + Persistent ID06230E666E4120D9 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Anwar%20Khurshid%20_%20Aruna%20Kalle%20_%20Cardinal%20Vaughan%20Memorial%20School%20_%20Chris%20Bleth%20_%20Courtney%20Grueschow%20_%20Evergreen%20Club%20Contemporary%20Gamelan%20_%20Jatinder%20Jeetu%20_%20Jeetu%20Prakesh%20_%20Mychael%20Danna%20_%20Rajesh%20Srinivasan%20_%20Thomas%20Fetherstonhaugh%20_%20Ulhas%20Bapat%20_%20V%20Selv/Life%20Of%20Pi/Anandi.mp3 + File Folder Count4 + Library Folder Count1 + + 10858 + + Track ID10858 + NameAppa's Lesson + ArtistAnwar Khurshid / Aruna Kalle / Cardinal Vaughan Memorial School / Chris Bleth / Courtney Grueschow / Evergreen Club Contemporary Gamelan / Jatinder Jeetu / Jeetu Prakesh / Mychael Danna / Rajesh Srinivasan / Thomas Fetherstonhaugh / Ulhas Bapat / V Selvag + AlbumLife Of Pi + GenreClassical + KindMPEG audio file + Size2702009 + Total Time67082 + Year2012 + Date Modified2013-01-14T03:19:47Z + Date Added2013-01-14T03:21:05Z + Bit Rate320 + Sample Rate44100 + Artwork Count1 + Persistent ID4AFC1A849E7D960E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Anwar%20Khurshid%20_%20Aruna%20Kalle%20_%20Cardinal%20Vaughan%20Memorial%20School%20_%20Chris%20Bleth%20_%20Courtney%20Grueschow%20_%20Evergreen%20Club%20Contemporary%20Gamelan%20_%20Jatinder%20Jeetu%20_%20Jeetu%20Prakesh%20_%20Mychael%20Danna%20_%20Rajesh%20Srinivasan%20_%20Thomas%20Fetherstonhaugh%20_%20Ulhas%20Bapat%20_%20V%20Selv/Life%20Of%20Pi/Appa's%20Lesson.mp3 + File Folder Count4 + Library Folder Count1 + + 10860 + + Track ID10860 + NameBack To The World + ArtistAnwar Khurshid / Aruna Kalle / Cardinal Vaughan Memorial School / Chris Bleth / Courtney Grueschow / Evergreen Club Contemporary Gamelan / Jatinder Jeetu / Jeetu Prakesh / Mychael Danna / Rajesh Srinivasan / Thomas Fetherstonhaugh / Ulhas Bapat / V Selvag + AlbumLife Of Pi + GenreClassical + KindMPEG audio file + Size20048364 + Total Time500741 + Year2012 + Date Modified2013-01-14T03:18:44Z + Date Added2013-01-14T03:21:05Z + Bit Rate320 + Sample Rate44100 + Artwork Count1 + Persistent IDB307E85B60158CCD + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Anwar%20Khurshid%20_%20Aruna%20Kalle%20_%20Cardinal%20Vaughan%20Memorial%20School%20_%20Chris%20Bleth%20_%20Courtney%20Grueschow%20_%20Evergreen%20Club%20Contemporary%20Gamelan%20_%20Jatinder%20Jeetu%20_%20Jeetu%20Prakesh%20_%20Mychael%20Danna%20_%20Rajesh%20Srinivasan%20_%20Thomas%20Fetherstonhaugh%20_%20Ulhas%20Bapat%20_%20V%20Selv/Life%20Of%20Pi/Back%20To%20The%20World.mp3 + File Folder Count4 + Library Folder Count1 + + 10862 + + Track ID10862 + NameChrist In The Mountains + ArtistAnwar Khurshid / Aruna Kalle / Cardinal Vaughan Memorial School / Chris Bleth / Courtney Grueschow / Evergreen Club Contemporary Gamelan / Jatinder Jeetu / Jeetu Prakesh / Mychael Danna / Rajesh Srinivasan / Thomas Fetherstonhaugh / Ulhas Bapat / V Selvag + AlbumLife Of Pi + GenreClassical + KindMPEG audio file + Size2949659 + Total Time73273 + Year2012 + Date Modified2013-01-14T03:18:55Z + Date Added2013-01-14T03:21:05Z + Bit Rate320 + Sample Rate44100 + Artwork Count1 + Persistent IDAFB861AF47B043AB + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Anwar%20Khurshid%20_%20Aruna%20Kalle%20_%20Cardinal%20Vaughan%20Memorial%20School%20_%20Chris%20Bleth%20_%20Courtney%20Grueschow%20_%20Evergreen%20Club%20Contemporary%20Gamelan%20_%20Jatinder%20Jeetu%20_%20Jeetu%20Prakesh%20_%20Mychael%20Danna%20_%20Rajesh%20Srinivasan%20_%20Thomas%20Fetherstonhaugh%20_%20Ulhas%20Bapat%20_%20V%20Selv/Life%20Of%20Pi/Christ%20In%20The%20Mountains.mp3 + File Folder Count4 + Library Folder Count1 + + 10864 + + Track ID10864 + NameDeath Of The Zebra + ArtistAnwar Khurshid / Aruna Kalle / Cardinal Vaughan Memorial School / Chris Bleth / Courtney Grueschow / Evergreen Club Contemporary Gamelan / Jatinder Jeetu / Jeetu Prakesh / Mychael Danna / Rajesh Srinivasan / Thomas Fetherstonhaugh / Ulhas Bapat / V Selvag + AlbumLife Of Pi + GenreClassical + KindMPEG audio file + Size1373948 + Total Time33880 + Year2012 + Date Modified2013-01-14T03:19:58Z + Date Added2013-01-14T03:21:05Z + Bit Rate320 + Sample Rate44100 + Play Count1 + Play Date3441036194 + Play Date UTC2013-01-14T13:53:14Z + Artwork Count1 + Persistent ID64C718B2CA7CDEE2 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Anwar%20Khurshid%20_%20Aruna%20Kalle%20_%20Cardinal%20Vaughan%20Memorial%20School%20_%20Chris%20Bleth%20_%20Courtney%20Grueschow%20_%20Evergreen%20Club%20Contemporary%20Gamelan%20_%20Jatinder%20Jeetu%20_%20Jeetu%20Prakesh%20_%20Mychael%20Danna%20_%20Rajesh%20Srinivasan%20_%20Thomas%20Fetherstonhaugh%20_%20Ulhas%20Bapat%20_%20V%20Selv/Life%20Of%20Pi/Death%20Of%20The%20Zebra.mp3 + File Folder Count4 + Library Folder Count1 + + 10866 + + Track ID10866 + NameFirst Night First Day + ArtistAnwar Khurshid / Aruna Kalle / Cardinal Vaughan Memorial School / Chris Bleth / Courtney Grueschow / Evergreen Club Contemporary Gamelan / Jatinder Jeetu / Jeetu Prakesh / Mychael Danna / Rajesh Srinivasan / Thomas Fetherstonhaugh / Ulhas Bapat / V Selvag + AlbumLife Of Pi + GenreClassical + KindMPEG audio file + Size9039323 + Total Time225515 + Year2012 + Date Modified2013-01-14T03:18:53Z + Date Added2013-01-14T03:21:05Z + Bit Rate320 + Sample Rate44100 + Artwork Count1 + Persistent ID5044152E84C52B91 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Anwar%20Khurshid%20_%20Aruna%20Kalle%20_%20Cardinal%20Vaughan%20Memorial%20School%20_%20Chris%20Bleth%20_%20Courtney%20Grueschow%20_%20Evergreen%20Club%20Contemporary%20Gamelan%20_%20Jatinder%20Jeetu%20_%20Jeetu%20Prakesh%20_%20Mychael%20Danna%20_%20Rajesh%20Srinivasan%20_%20Thomas%20Fetherstonhaugh%20_%20Ulhas%20Bapat%20_%20V%20Selv/Life%20Of%20Pi/First%20Night%20First%20Day.mp3 + File Folder Count4 + Library Folder Count1 + + 10868 + + Track ID10868 + NameFlying Fish + ArtistAnwar Khurshid / Aruna Kalle / Cardinal Vaughan Memorial School / Chris Bleth / Courtney Grueschow / Evergreen Club Contemporary Gamelan / Jatinder Jeetu / Jeetu Prakesh / Mychael Danna / Rajesh Srinivasan / Thomas Fetherstonhaugh / Ulhas Bapat / V Selvag + AlbumLife Of Pi + GenreClassical + KindMPEG audio file + Size2021778 + Total Time50076 + Year2012 + Date Modified2013-01-14T03:14:58Z + Date Added2013-01-14T03:21:05Z + Bit Rate320 + Sample Rate44100 + Artwork Count1 + Persistent ID2364C738DEA1D25C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Anwar%20Khurshid%20_%20Aruna%20Kalle%20_%20Cardinal%20Vaughan%20Memorial%20School%20_%20Chris%20Bleth%20_%20Courtney%20Grueschow%20_%20Evergreen%20Club%20Contemporary%20Gamelan%20_%20Jatinder%20Jeetu%20_%20Jeetu%20Prakesh%20_%20Mychael%20Danna%20_%20Rajesh%20Srinivasan%20_%20Thomas%20Fetherstonhaugh%20_%20Ulhas%20Bapat%20_%20V%20Selv/Life%20Of%20Pi/Flying%20Fish.mp3 + File Folder Count4 + Library Folder Count1 + + 10870 + + Track ID10870 + NameGod Storm + ArtistAnwar Khurshid / Aruna Kalle / Cardinal Vaughan Memorial School / Chris Bleth / Courtney Grueschow / Evergreen Club Contemporary Gamelan / Jatinder Jeetu / Jeetu Prakesh / Mychael Danna / Rajesh Srinivasan / Thomas Fetherstonhaugh / Ulhas Bapat / V Selvag + AlbumLife Of Pi + GenreClassical + KindMPEG audio file + Size8917058 + Total Time222458 + Year2012 + Date Modified2013-01-14T03:16:15Z + Date Added2013-01-14T03:21:05Z + Bit Rate320 + Sample Rate44100 + Artwork Count1 + Persistent ID8D7350D31F1F9452 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Anwar%20Khurshid%20_%20Aruna%20Kalle%20_%20Cardinal%20Vaughan%20Memorial%20School%20_%20Chris%20Bleth%20_%20Courtney%20Grueschow%20_%20Evergreen%20Club%20Contemporary%20Gamelan%20_%20Jatinder%20Jeetu%20_%20Jeetu%20Prakesh%20_%20Mychael%20Danna%20_%20Rajesh%20Srinivasan%20_%20Thomas%20Fetherstonhaugh%20_%20Ulhas%20Bapat%20_%20V%20Selv/Life%20Of%20Pi/God%20Storm.mp3 + File Folder Count4 + Library Folder Count1 + + 10872 + + Track ID10872 + NameI'm Ready Now + ArtistAnwar Khurshid / Aruna Kalle / Cardinal Vaughan Memorial School / Chris Bleth / Courtney Grueschow / Evergreen Club Contemporary Gamelan / Jatinder Jeetu / Jeetu Prakesh / Mychael Danna / Rajesh Srinivasan / Thomas Fetherstonhaugh / Ulhas Bapat / V Selvag + AlbumLife Of Pi + GenreClassical + KindMPEG audio file + Size8075919 + Total Time201430 + Year2012 + Date Modified2013-01-14T03:18:00Z + Date Added2013-01-14T03:21:05Z + Bit Rate320 + Sample Rate44100 + Artwork Count1 + Persistent ID4DA45FCBE80AD152 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Anwar%20Khurshid%20_%20Aruna%20Kalle%20_%20Cardinal%20Vaughan%20Memorial%20School%20_%20Chris%20Bleth%20_%20Courtney%20Grueschow%20_%20Evergreen%20Club%20Contemporary%20Gamelan%20_%20Jatinder%20Jeetu%20_%20Jeetu%20Prakesh%20_%20Mychael%20Danna%20_%20Rajesh%20Srinivasan%20_%20Thomas%20Fetherstonhaugh%20_%20Ulhas%20Bapat%20_%20V%20Selv/Life%20Of%20Pi/I'm%20Ready%20Now.mp3 + File Folder Count4 + Library Folder Count1 + + 10874 + + Track ID10874 + NameLeaving India + ArtistAnwar Khurshid / Aruna Kalle / Cardinal Vaughan Memorial School / Chris Bleth / Courtney Grueschow / Evergreen Club Contemporary Gamelan / Jatinder Jeetu / Jeetu Prakesh / Mychael Danna / Rajesh Srinivasan / Thomas Fetherstonhaugh / Ulhas Bapat / V Selvag + AlbumLife Of Pi + GenreClassical + KindMPEG audio file + Size3247445 + Total Time80718 + Year2012 + Date Modified2013-01-14T03:20:26Z + Date Added2013-01-14T03:21:05Z + Bit Rate320 + Sample Rate44100 + Artwork Count1 + Persistent IDC4BD64BAD752C6AF + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Anwar%20Khurshid%20_%20Aruna%20Kalle%20_%20Cardinal%20Vaughan%20Memorial%20School%20_%20Chris%20Bleth%20_%20Courtney%20Grueschow%20_%20Evergreen%20Club%20Contemporary%20Gamelan%20_%20Jatinder%20Jeetu%20_%20Jeetu%20Prakesh%20_%20Mychael%20Danna%20_%20Rajesh%20Srinivasan%20_%20Thomas%20Fetherstonhaugh%20_%20Ulhas%20Bapat%20_%20V%20Selv/Life%20Of%20Pi/Leaving%20India.mp3 + File Folder Count4 + Library Folder Count1 + + 10876 + + Track ID10876 + NameMeeting Krishna + ArtistAnwar Khurshid / Aruna Kalle / Cardinal Vaughan Memorial School / Chris Bleth / Courtney Grueschow / Evergreen Club Contemporary Gamelan / Jatinder Jeetu / Jeetu Prakesh / Mychael Danna / Rajesh Srinivasan / Thomas Fetherstonhaugh / Ulhas Bapat / V Selvag + AlbumLife Of Pi + GenreClassical + KindMPEG audio file + Size4481472 + Total Time111568 + Year2012 + Date Modified2013-01-14T03:19:12Z + Date Added2013-01-14T03:21:05Z + Bit Rate320 + Sample Rate44100 + Artwork Count1 + Persistent IDFDDCCDD11736CD91 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Anwar%20Khurshid%20_%20Aruna%20Kalle%20_%20Cardinal%20Vaughan%20Memorial%20School%20_%20Chris%20Bleth%20_%20Courtney%20Grueschow%20_%20Evergreen%20Club%20Contemporary%20Gamelan%20_%20Jatinder%20Jeetu%20_%20Jeetu%20Prakesh%20_%20Mychael%20Danna%20_%20Rajesh%20Srinivasan%20_%20Thomas%20Fetherstonhaugh%20_%20Ulhas%20Bapat%20_%20V%20Selv/Life%20Of%20Pi/Meeting%20Krishna.mp3 + File Folder Count4 + Library Folder Count1 + + 10878 + + Track ID10878 + NameOrphans + ArtistAnwar Khurshid / Aruna Kalle / Cardinal Vaughan Memorial School / Chris Bleth / Courtney Grueschow / Evergreen Club Contemporary Gamelan / Jatinder Jeetu / Jeetu Prakesh / Mychael Danna / Rajesh Srinivasan / Thomas Fetherstonhaugh / Ulhas Bapat / V Selvag + AlbumLife Of Pi + GenreClassical + KindMPEG audio file + Size3878558 + Total Time96496 + Year2012 + Date Modified2013-01-14T03:15:01Z + Date Added2013-01-14T03:21:05Z + Bit Rate320 + Sample Rate44100 + Artwork Count1 + Persistent ID76526C0BB6E3CCDD + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Anwar%20Khurshid%20_%20Aruna%20Kalle%20_%20Cardinal%20Vaughan%20Memorial%20School%20_%20Chris%20Bleth%20_%20Courtney%20Grueschow%20_%20Evergreen%20Club%20Contemporary%20Gamelan%20_%20Jatinder%20Jeetu%20_%20Jeetu%20Prakesh%20_%20Mychael%20Danna%20_%20Rajesh%20Srinivasan%20_%20Thomas%20Fetherstonhaugh%20_%20Ulhas%20Bapat%20_%20V%20Selv/Life%20Of%20Pi/Orphans.mp3 + File Folder Count4 + Library Folder Count1 + + 10880 + + Track ID10880 + NamePi And Richard Parker + ArtistAnwar Khurshid / Aruna Kalle / Cardinal Vaughan Memorial School / Chris Bleth / Courtney Grueschow / Evergreen Club Contemporary Gamelan / Jatinder Jeetu / Jeetu Prakesh / Mychael Danna / Rajesh Srinivasan / Thomas Fetherstonhaugh / Ulhas Bapat / V Selvag + AlbumLife Of Pi + GenreClassical + KindMPEG audio file + Size5388449 + Total Time134243 + Year2012 + Date Modified2013-01-14T03:15:37Z + Date Added2013-01-14T03:21:05Z + Bit Rate320 + Sample Rate44100 + Artwork Count1 + Persistent IDF1419996F8793E3B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Anwar%20Khurshid%20_%20Aruna%20Kalle%20_%20Cardinal%20Vaughan%20Memorial%20School%20_%20Chris%20Bleth%20_%20Courtney%20Grueschow%20_%20Evergreen%20Club%20Contemporary%20Gamelan%20_%20Jatinder%20Jeetu%20_%20Jeetu%20Prakesh%20_%20Mychael%20Danna%20_%20Rajesh%20Srinivasan%20_%20Thomas%20Fetherstonhaugh%20_%20Ulhas%20Bapat%20_%20V%20Selv/Life%20Of%20Pi/Pi%20And%20Richard%20Parker.mp3 + File Folder Count4 + Library Folder Count1 + + 10882 + + Track ID10882 + NamePi's Lullaby + ArtistAnwar Khurshid / Aruna Kalle / Cardinal Vaughan Memorial School / Chris Bleth / Courtney Grueschow / Evergreen Club Contemporary Gamelan / Jatinder Jeetu / Jeetu Prakesh / Mychael Danna / Rajesh Srinivasan / Thomas Fetherstonhaugh / Ulhas Bapat / V Selvag + AlbumLife Of Pi + GenreClassical + KindMPEG audio file + Size8930644 + Total Time222798 + Year2012 + Date Modified2013-01-14T03:20:50Z + Date Added2013-01-14T03:21:05Z + Bit Rate320 + Sample Rate44100 + Play Count3 + Play Date3462766551 + Play Date UTC2013-09-23T02:05:51Z + Artwork Count1 + Persistent ID566F6E4DE27704C5 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Anwar%20Khurshid%20_%20Aruna%20Kalle%20_%20Cardinal%20Vaughan%20Memorial%20School%20_%20Chris%20Bleth%20_%20Courtney%20Grueschow%20_%20Evergreen%20Club%20Contemporary%20Gamelan%20_%20Jatinder%20Jeetu%20_%20Jeetu%20Prakesh%20_%20Mychael%20Danna%20_%20Rajesh%20Srinivasan%20_%20Thomas%20Fetherstonhaugh%20_%20Ulhas%20Bapat%20_%20V%20Selv/Life%20Of%20Pi/Pi's%20Lullaby.mp3 + File Folder Count4 + Library Folder Count1 + + 10884 + + Track ID10884 + NamePiscine Molitor Patel + ArtistAnwar Khurshid / Aruna Kalle / Cardinal Vaughan Memorial School / Chris Bleth / Courtney Grueschow / Evergreen Club Contemporary Gamelan / Jatinder Jeetu / Jeetu Prakesh / Mychael Danna / Rajesh Srinivasan / Thomas Fetherstonhaugh / Ulhas Bapat / V Selvag + AlbumLife Of Pi + GenreClassical + KindMPEG audio file + Size8801086 + Total Time219559 + Year2012 + Date Modified2013-01-14T03:19:48Z + Date Added2013-01-14T03:21:05Z + Bit Rate320 + Sample Rate44100 + Artwork Count1 + Persistent IDA034B3E191B00726 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Anwar%20Khurshid%20_%20Aruna%20Kalle%20_%20Cardinal%20Vaughan%20Memorial%20School%20_%20Chris%20Bleth%20_%20Courtney%20Grueschow%20_%20Evergreen%20Club%20Contemporary%20Gamelan%20_%20Jatinder%20Jeetu%20_%20Jeetu%20Prakesh%20_%20Mychael%20Danna%20_%20Rajesh%20Srinivasan%20_%20Thomas%20Fetherstonhaugh%20_%20Ulhas%20Bapat%20_%20V%20Selv/Life%20Of%20Pi/Piscine%20Molitor%20Patel.mp3 + File Folder Count4 + Library Folder Count1 + + 10886 + + Track ID10886 + NamePondicherry + ArtistAnwar Khurshid / Aruna Kalle / Cardinal Vaughan Memorial School / Chris Bleth / Courtney Grueschow / Evergreen Club Contemporary Gamelan / Jatinder Jeetu / Jeetu Prakesh / Mychael Danna / Rajesh Srinivasan / Thomas Fetherstonhaugh / Ulhas Bapat / V Selvag + AlbumLife Of Pi + GenreClassical + KindMPEG audio file + Size2905762 + Total Time72176 + Year2012 + Date Modified2013-01-14T03:19:26Z + Date Added2013-01-14T03:21:05Z + Bit Rate320 + Sample Rate44100 + Artwork Count1 + Persistent IDCC42A1780E679D9B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Anwar%20Khurshid%20_%20Aruna%20Kalle%20_%20Cardinal%20Vaughan%20Memorial%20School%20_%20Chris%20Bleth%20_%20Courtney%20Grueschow%20_%20Evergreen%20Club%20Contemporary%20Gamelan%20_%20Jatinder%20Jeetu%20_%20Jeetu%20Prakesh%20_%20Mychael%20Danna%20_%20Rajesh%20Srinivasan%20_%20Thomas%20Fetherstonhaugh%20_%20Ulhas%20Bapat%20_%20V%20Selv/Life%20Of%20Pi/Pondicherry.mp3 + File Folder Count4 + Library Folder Count1 + + 10888 + + Track ID10888 + NameRichard Parker + ArtistAnwar Khurshid / Aruna Kalle / Cardinal Vaughan Memorial School / Chris Bleth / Courtney Grueschow / Evergreen Club Contemporary Gamelan / Jatinder Jeetu / Jeetu Prakesh / Mychael Danna / Rajesh Srinivasan / Thomas Fetherstonhaugh / Ulhas Bapat / V Selvag + AlbumLife Of Pi + GenreClassical + KindMPEG audio file + Size2182695 + Total Time54099 + Year2012 + Date Modified2013-01-14T03:19:36Z + Date Added2013-01-14T03:21:05Z + Bit Rate320 + Sample Rate44100 + Artwork Count1 + Persistent IDF2CA1233360D83E6 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Anwar%20Khurshid%20_%20Aruna%20Kalle%20_%20Cardinal%20Vaughan%20Memorial%20School%20_%20Chris%20Bleth%20_%20Courtney%20Grueschow%20_%20Evergreen%20Club%20Contemporary%20Gamelan%20_%20Jatinder%20Jeetu%20_%20Jeetu%20Prakesh%20_%20Mychael%20Danna%20_%20Rajesh%20Srinivasan%20_%20Thomas%20Fetherstonhaugh%20_%20Ulhas%20Bapat%20_%20V%20Selv/Life%20Of%20Pi/Richard%20Parker.mp3 + File Folder Count4 + Library Folder Count1 + + 10890 + + Track ID10890 + NameSet Your House In Order + ArtistAnwar Khurshid / Aruna Kalle / Cardinal Vaughan Memorial School / Chris Bleth / Courtney Grueschow / Evergreen Club Contemporary Gamelan / Jatinder Jeetu / Jeetu Prakesh / Mychael Danna / Rajesh Srinivasan / Thomas Fetherstonhaugh / Ulhas Bapat / V Selvag + AlbumLife Of Pi + GenreClassical + KindMPEG audio file + Size5227537 + Total Time130220 + Year2012 + Date Modified2013-01-14T03:18:20Z + Date Added2013-01-14T03:21:05Z + Bit Rate320 + Sample Rate44100 + Artwork Count1 + Persistent ID0EA6B56B3ACDDBB0 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Anwar%20Khurshid%20_%20Aruna%20Kalle%20_%20Cardinal%20Vaughan%20Memorial%20School%20_%20Chris%20Bleth%20_%20Courtney%20Grueschow%20_%20Evergreen%20Club%20Contemporary%20Gamelan%20_%20Jatinder%20Jeetu%20_%20Jeetu%20Prakesh%20_%20Mychael%20Danna%20_%20Rajesh%20Srinivasan%20_%20Thomas%20Fetherstonhaugh%20_%20Ulhas%20Bapat%20_%20V%20Selv/Life%20Of%20Pi/Set%20Your%20House%20In%20Order.mp3 + File Folder Count4 + Library Folder Count1 + + 10892 + + Track ID10892 + NameSkinny Vegetarian Boy + ArtistAnwar Khurshid / Aruna Kalle / Cardinal Vaughan Memorial School / Chris Bleth / Courtney Grueschow / Evergreen Club Contemporary Gamelan / Jatinder Jeetu / Jeetu Prakesh / Mychael Danna / Rajesh Srinivasan / Thomas Fetherstonhaugh / Ulhas Bapat / V Selvag + AlbumLife Of Pi + GenreClassical + KindMPEG audio file + Size5468906 + Total Time136254 + Year2012 + Date Modified2013-01-14T03:15:21Z + Date Added2013-01-14T03:21:05Z + Bit Rate320 + Sample Rate44100 + Artwork Count1 + Persistent IDE1B9706C31D176DB + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Anwar%20Khurshid%20_%20Aruna%20Kalle%20_%20Cardinal%20Vaughan%20Memorial%20School%20_%20Chris%20Bleth%20_%20Courtney%20Grueschow%20_%20Evergreen%20Club%20Contemporary%20Gamelan%20_%20Jatinder%20Jeetu%20_%20Jeetu%20Prakesh%20_%20Mychael%20Danna%20_%20Rajesh%20Srinivasan%20_%20Thomas%20Fetherstonhaugh%20_%20Ulhas%20Bapat%20_%20V%20Selv/Life%20Of%20Pi/Skinny%20Vegetarian%20Boy.mp3 + File Folder Count4 + Library Folder Count1 + + 10894 + + Track ID10894 + NameThank You Vishnu For Introducing Me To Christ + ArtistAnwar Khurshid / Aruna Kalle / Cardinal Vaughan Memorial School / Chris Bleth / Courtney Grueschow / Evergreen Club Contemporary Gamelan / Jatinder Jeetu / Jeetu Prakesh / Mychael Danna / Rajesh Srinivasan / Thomas Fetherstonhaugh / Ulhas Bapat / V Selvag + AlbumLife Of Pi + GenreClassical + KindMPEG audio file + Size2256914 + Total Time55954 + Year2012 + Date Modified2013-01-14T03:19:04Z + Date Added2013-01-14T03:21:06Z + Bit Rate320 + Sample Rate44100 + Artwork Count1 + Persistent ID1E89FF73B10AEB5F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Anwar%20Khurshid%20_%20Aruna%20Kalle%20_%20Cardinal%20Vaughan%20Memorial%20School%20_%20Chris%20Bleth%20_%20Courtney%20Grueschow%20_%20Evergreen%20Club%20Contemporary%20Gamelan%20_%20Jatinder%20Jeetu%20_%20Jeetu%20Prakesh%20_%20Mychael%20Danna%20_%20Rajesh%20Srinivasan%20_%20Thomas%20Fetherstonhaugh%20_%20Ulhas%20Bapat%20_%20V%20Selv/Life%20Of%20Pi/Thank%20You%20Vishnu%20For%20Introducing%20Me%20To%20Christ.mp3 + File Folder Count4 + Library Folder Count1 + + 10896 + + Track ID10896 + NameThe Deepest Spot On Earth + ArtistAnwar Khurshid / Aruna Kalle / Cardinal Vaughan Memorial School / Chris Bleth / Courtney Grueschow / Evergreen Club Contemporary Gamelan / Jatinder Jeetu / Jeetu Prakesh / Mychael Danna / Rajesh Srinivasan / Thomas Fetherstonhaugh / Ulhas Bapat / V Selvag + AlbumLife Of Pi + GenreClassical + KindMPEG audio file + Size1972682 + Total Time48848 + Year2012 + Date Modified2013-01-14T03:20:13Z + Date Added2013-01-14T03:21:06Z + Bit Rate320 + Sample Rate44100 + Artwork Count1 + Sort NameDeepest Spot On Earth + Persistent IDA239B015887D4DCF + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Anwar%20Khurshid%20_%20Aruna%20Kalle%20_%20Cardinal%20Vaughan%20Memorial%20School%20_%20Chris%20Bleth%20_%20Courtney%20Grueschow%20_%20Evergreen%20Club%20Contemporary%20Gamelan%20_%20Jatinder%20Jeetu%20_%20Jeetu%20Prakesh%20_%20Mychael%20Danna%20_%20Rajesh%20Srinivasan%20_%20Thomas%20Fetherstonhaugh%20_%20Ulhas%20Bapat%20_%20V%20Selv/Life%20Of%20Pi/The%20Deepest%20Spot%20On%20Earth.mp3 + File Folder Count4 + Library Folder Count1 + + 10898 + + Track ID10898 + NameThe Island + ArtistAnwar Khurshid / Aruna Kalle / Cardinal Vaughan Memorial School / Chris Bleth / Courtney Grueschow / Evergreen Club Contemporary Gamelan / Jatinder Jeetu / Jeetu Prakesh / Mychael Danna / Rajesh Srinivasan / Thomas Fetherstonhaugh / Ulhas Bapat / V Selvag + AlbumLife Of Pi + GenreClassical + KindMPEG audio file + Size4782397 + Total Time119092 + Year2012 + Date Modified2013-01-14T03:17:30Z + Date Added2013-01-14T03:21:06Z + Bit Rate320 + Sample Rate44100 + Artwork Count1 + Sort NameIsland + Persistent ID85669F9418D4386B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Anwar%20Khurshid%20_%20Aruna%20Kalle%20_%20Cardinal%20Vaughan%20Memorial%20School%20_%20Chris%20Bleth%20_%20Courtney%20Grueschow%20_%20Evergreen%20Club%20Contemporary%20Gamelan%20_%20Jatinder%20Jeetu%20_%20Jeetu%20Prakesh%20_%20Mychael%20Danna%20_%20Rajesh%20Srinivasan%20_%20Thomas%20Fetherstonhaugh%20_%20Ulhas%20Bapat%20_%20V%20Selv/Life%20Of%20Pi/The%20Island.mp3 + File Folder Count4 + Library Folder Count1 + + 10900 + + Track ID10900 + NameThe Second Story + ArtistAnwar Khurshid / Aruna Kalle / Cardinal Vaughan Memorial School / Chris Bleth / Courtney Grueschow / Evergreen Club Contemporary Gamelan / Jatinder Jeetu / Jeetu Prakesh / Mychael Danna / Rajesh Srinivasan / Thomas Fetherstonhaugh / Ulhas Bapat / V Selvag + AlbumLife Of Pi + GenreClassical + KindMPEG audio file + Size9726861 + Total Time242703 + Year2012 + Date Modified2013-01-14T03:17:01Z + Date Added2013-01-14T03:21:06Z + Bit Rate320 + Sample Rate44100 + Artwork Count1 + Sort NameSecond Story + Persistent ID0AD3139C5F278A80 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Anwar%20Khurshid%20_%20Aruna%20Kalle%20_%20Cardinal%20Vaughan%20Memorial%20School%20_%20Chris%20Bleth%20_%20Courtney%20Grueschow%20_%20Evergreen%20Club%20Contemporary%20Gamelan%20_%20Jatinder%20Jeetu%20_%20Jeetu%20Prakesh%20_%20Mychael%20Danna%20_%20Rajesh%20Srinivasan%20_%20Thomas%20Fetherstonhaugh%20_%20Ulhas%20Bapat%20_%20V%20Selv/Life%20Of%20Pi/The%20Second%20Story.mp3 + File Folder Count4 + Library Folder Count1 + + 10902 + + Track ID10902 + NameThe Whale + ArtistAnwar Khurshid / Aruna Kalle / Cardinal Vaughan Memorial School / Chris Bleth / Courtney Grueschow / Evergreen Club Contemporary Gamelan / Jatinder Jeetu / Jeetu Prakesh / Mychael Danna / Rajesh Srinivasan / Thomas Fetherstonhaugh / Ulhas Bapat / V Selvag + AlbumLife Of Pi + GenreClassical + KindMPEG audio file + Size4931817 + Total Time122827 + Year2012 + Date Modified2013-01-14T03:15:29Z + Date Added2013-01-14T03:21:06Z + Bit Rate320 + Sample Rate44100 + Artwork Count1 + Sort NameWhale + Persistent ID4C0887C4F3E92968 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Anwar%20Khurshid%20_%20Aruna%20Kalle%20_%20Cardinal%20Vaughan%20Memorial%20School%20_%20Chris%20Bleth%20_%20Courtney%20Grueschow%20_%20Evergreen%20Club%20Contemporary%20Gamelan%20_%20Jatinder%20Jeetu%20_%20Jeetu%20Prakesh%20_%20Mychael%20Danna%20_%20Rajesh%20Srinivasan%20_%20Thomas%20Fetherstonhaugh%20_%20Ulhas%20Bapat%20_%20V%20Selv/Life%20Of%20Pi/The%20Whale.mp3 + File Folder Count4 + Library Folder Count1 + + 10904 + + Track ID10904 + NameTiger Training + ArtistAnwar Khurshid / Aruna Kalle / Cardinal Vaughan Memorial School / Chris Bleth / Courtney Grueschow / Evergreen Club Contemporary Gamelan / Jatinder Jeetu / Jeetu Prakesh / Mychael Danna / Rajesh Srinivasan / Thomas Fetherstonhaugh / Ulhas Bapat / V Selvag + AlbumLife Of Pi + GenreClassical + KindMPEG audio file + Size3322679 + Total Time82599 + Year2012 + Date Modified2013-01-14T03:14:50Z + Date Added2013-01-14T03:21:06Z + Bit Rate320 + Sample Rate44100 + Artwork Count1 + Persistent ID0322E09CC2B0A776 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Anwar%20Khurshid%20_%20Aruna%20Kalle%20_%20Cardinal%20Vaughan%20Memorial%20School%20_%20Chris%20Bleth%20_%20Courtney%20Grueschow%20_%20Evergreen%20Club%20Contemporary%20Gamelan%20_%20Jatinder%20Jeetu%20_%20Jeetu%20Prakesh%20_%20Mychael%20Danna%20_%20Rajesh%20Srinivasan%20_%20Thomas%20Fetherstonhaugh%20_%20Ulhas%20Bapat%20_%20V%20Selv/Life%20Of%20Pi/Tiger%20Training.mp3 + File Folder Count4 + Library Folder Count1 + + 10906 + + Track ID10906 + NameTiger Vision + ArtistAnwar Khurshid / Aruna Kalle / Cardinal Vaughan Memorial School / Chris Bleth / Courtney Grueschow / Evergreen Club Contemporary Gamelan / Jatinder Jeetu / Jeetu Prakesh / Mychael Danna / Rajesh Srinivasan / Thomas Fetherstonhaugh / Ulhas Bapat / V Selvag + AlbumLife Of Pi + GenreClassical + KindMPEG audio file + Size10895053 + Total Time271908 + Year2012 + Date Modified2013-01-14T03:16:37Z + Date Added2013-01-14T03:21:06Z + Bit Rate320 + Sample Rate44100 + Artwork Count1 + Persistent IDA4723ED4BA201423 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Anwar%20Khurshid%20_%20Aruna%20Kalle%20_%20Cardinal%20Vaughan%20Memorial%20School%20_%20Chris%20Bleth%20_%20Courtney%20Grueschow%20_%20Evergreen%20Club%20Contemporary%20Gamelan%20_%20Jatinder%20Jeetu%20_%20Jeetu%20Prakesh%20_%20Mychael%20Danna%20_%20Rajesh%20Srinivasan%20_%20Thomas%20Fetherstonhaugh%20_%20Ulhas%20Bapat%20_%20V%20Selv/Life%20Of%20Pi/Tiger%20Vision.mp3 + File Folder Count4 + Library Folder Count1 + + 10908 + + Track ID10908 + NameTsimtsum + ArtistAnwar Khurshid / Aruna Kalle / Cardinal Vaughan Memorial School / Chris Bleth / Courtney Grueschow / Evergreen Club Contemporary Gamelan / Jatinder Jeetu / Jeetu Prakesh / Mychael Danna / Rajesh Srinivasan / Thomas Fetherstonhaugh / Ulhas Bapat / V Selvag + AlbumLife Of Pi + GenreClassical + KindMPEG audio file + Size6804273 + Total Time169639 + Year2012 + Date Modified2013-01-14T03:20:18Z + Date Added2013-01-14T03:21:06Z + Bit Rate320 + Sample Rate44100 + Artwork Count1 + Persistent IDADD543CAD4479731 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Anwar%20Khurshid%20_%20Aruna%20Kalle%20_%20Cardinal%20Vaughan%20Memorial%20School%20_%20Chris%20Bleth%20_%20Courtney%20Grueschow%20_%20Evergreen%20Club%20Contemporary%20Gamelan%20_%20Jatinder%20Jeetu%20_%20Jeetu%20Prakesh%20_%20Mychael%20Danna%20_%20Rajesh%20Srinivasan%20_%20Thomas%20Fetherstonhaugh%20_%20Ulhas%20Bapat%20_%20V%20Selv/Life%20Of%20Pi/Tsimtsum.mp3 + File Folder Count4 + Library Folder Count1 + + 10910 + + Track ID10910 + NameWhich Story Do You Prefer? + ArtistAnwar Khurshid / Aruna Kalle / Cardinal Vaughan Memorial School / Chris Bleth / Courtney Grueschow / Evergreen Club Contemporary Gamelan / Jatinder Jeetu / Jeetu Prakesh / Mychael Danna / Rajesh Srinivasan / Thomas Fetherstonhaugh / Ulhas Bapat / V Selvag + AlbumLife Of Pi + GenreClassical + KindMPEG audio file + Size5033189 + Total Time125361 + Year2012 + Date Modified2013-01-14T03:17:01Z + Date Added2013-01-14T03:21:06Z + Bit Rate320 + Sample Rate44100 + Artwork Count1 + Persistent IDE8474ED0A07E2F48 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Anwar%20Khurshid%20_%20Aruna%20Kalle%20_%20Cardinal%20Vaughan%20Memorial%20School%20_%20Chris%20Bleth%20_%20Courtney%20Grueschow%20_%20Evergreen%20Club%20Contemporary%20Gamelan%20_%20Jatinder%20Jeetu%20_%20Jeetu%20Prakesh%20_%20Mychael%20Danna%20_%20Rajesh%20Srinivasan%20_%20Thomas%20Fetherstonhaugh%20_%20Ulhas%20Bapat%20_%20V%20Selv/Life%20Of%20Pi/Which%20Story%20Do%20You%20Prefer_.mp3 + File Folder Count4 + Library Folder Count1 + + 10914 + + Track ID10914 + NameDeliberate Thought + ArtistKevin MacLeod + ComposerKevin MacLeod + AlbumLight + GenreElectronic + KindMPEG audio file + Size7224606 + Total Time177456 + Year2007 + BPM69 + Date Modified2013-01-18T04:33:27Z + Date Added2013-01-18T04:35:47Z + Bit Rate320 + Sample Rate48000 + Normalization770 + Artwork Count1 + Persistent ID60EB76893AF9E51A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kevin%20MacLeod/Light/Deliberate%20Thought.mp3 + File Folder Count4 + Library Folder Count1 + + 10920 + + Track ID10920 + NameSenbazuru + ArtistKevin MacLeod + ComposerKevin MacLeod + AlbumRoyalty Free + GenreWorld + KindMPEG audio file + Size3766774 + Total Time94066 + Year2011 + BPM48 + Date Modified2013-01-27T03:13:48Z + Date Added2013-01-27T03:14:26Z + Bit Rate320 + Sample Rate44100 + Normalization1230 + Persistent IDD892855B25E92FF7 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kevin%20MacLeod/Royalty%20Free/Senbazuru.mp3 + File Folder Count4 + Library Folder Count1 + + 10922 + + Track ID10922 + NameWet Riffs + ArtistKevin MacLeod + AlbumRoyalty Free + GenreContemporary + KindMPEG audio file + Size10118930 + Total Time252917 + Year2011 + BPM41 + Date Modified2013-01-27T03:12:17Z + Date Added2013-01-27T03:14:27Z + Bit Rate320 + Sample Rate44100 + CommentsBassman project + Normalization1186 + Persistent IDDAB50F1289580602 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kevin%20MacLeod/Royalty%20Free/Wet%20Riffs.mp3 + File Folder Count4 + Library Folder Count1 + + 10924 + + Track ID10924 + NameCattails + ArtistKevin MacLeod + ComposerKevin MacLeod + AlbumRoyalty Free + GenreWorld + KindMPEG audio file + Size6365435 + Total Time159033 + Year2010 + Date Modified2013-01-27T03:09:22Z + Date Added2013-01-27T03:14:27Z + Bit Rate320 + Sample Rate44100 + Normalization1347 + Persistent ID24AE6F3B72999975 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kevin%20MacLeod/Royalty%20Free/Cattails.mp3 + File Folder Count4 + Library Folder Count1 + + 10952 + + Track ID10952 + NameOff to Osaka + ArtistKevin MacLeod + ComposerKevin MacLeod + AlbumJazz + GenreJazz + KindMPEG audio file + Size4021693 + Total Time109740 + Year2006 + Date Modified2013-02-25T06:24:11Z + Date Added2013-02-25T06:26:10Z + Bit Rate284 + Sample Rate44100 + Commentsincompetech.com + Normalization1255 + Artwork Count1 + Persistent IDA67578008D93FCAF + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kevin%20MacLeod/Jazz/Off%20to%20Osaka.mp3 + File Folder Count4 + Library Folder Count1 + + 11010 + + Track ID11010 + NameO Saiyyan + ArtistAjay-Atul/Roop Kumar Rathod + Album ArtistVarious Artists + ComposerAjay Gogavale/Atul Gogavale + AlbumAgneepath + GenreSoundtrack + KindMPEG audio file + Size11253958 + Total Time278595 + Track Number2 + Track Count6 + Year2013 + Date Modified2013-05-13T09:15:18Z + Date Added2013-05-13T09:15:27Z + Bit Rate320 + Sample Rate44100 + Artwork Count1 + Persistent IDABAC54629E84B525 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Agneepath/02%20O%20Saiyyan.mp3 + File Folder Count4 + Library Folder Count1 + + 11040 + + Track ID11040 + Nametest + KindWAV audio file + Size444 + Total Time4 + Date Modified2013-07-07T08:50:21Z + Date Added2013-07-07T08:50:41Z + Bit Rate705 + Sample Rate44100 + Persistent ID55828103A6C1FA3F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Unknown%20Artist/Unknown%20Album/test.wav + File Folder Count4 + Library Folder Count1 + + 11042 + + Track ID11042 + Namesimple + KindWAV audio file + Size88244 + Total Time1000 + Date Modified2013-07-07T08:51:14Z + Date Added2013-07-07T08:51:19Z + Bit Rate705 + Sample Rate44100 + Persistent IDD30F5FA735E971D3 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Unknown%20Artist/Unknown%20Album/simple.wav + File Folder Count4 + Library Folder Count1 + + 11044 + + Track ID11044 + Namesimple 1 + KindWAV audio file + Size444 + Total Time4 + Date Modified2013-07-07T08:53:26Z + Date Added2013-07-07T08:53:28Z + Bit Rate705 + Sample Rate44100 + Persistent ID51CBE534A6FE028D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Unknown%20Artist/Unknown%20Album/simple%201.wav + File Folder Count4 + Library Folder Count1 + + 11046 + + Track ID11046 + Namesimple 2 + KindWAV audio file + Size444 + Total Time4 + Date Modified2013-07-07T08:53:26Z + Date Added2013-07-07T08:53:33Z + Bit Rate705 + Sample Rate44100 + Persistent IDC93B42C762D43317 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Unknown%20Artist/Unknown%20Album/simple%202.wav + File Folder Count4 + Library Folder Count1 + + 11054 + + Track ID11054 + NameStd 3 Lesson No 2 Part1 + ArtistNPS 3rd STD HINDI LESSONS + KindMPEG audio file + Size11803065 + Total Time368927 + Track Number1 + Year2012 + Date Modified2013-07-14T14:18:13Z + Date Added2013-07-14T13:47:30Z + Bit Rate256 + Sample Rate44100 + Persistent IDBFAC9F05B189EC45 + Track TypeFile + File Type860311629 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/NPS%203rd%20STD%20HINDI%20LESSONS/Unknown%20Album/Std%203%20Lesson%20No%202%20Part1.mp3 + File Folder Count4 + Library Folder Count1 + + 11056 + + Track ID11056 + NameStd 3 Lesson No 2 Part2 + ArtistNPS 3rd STD HINDI LESSONS + KindMPEG audio file + Size9202875 + Total Time287582 + Track Number1 + Year2012 + Date Modified2013-07-14T14:18:13Z + Date Added2013-07-14T13:48:19Z + Bit Rate256 + Sample Rate44100 + Persistent ID35F34436194E463D + Track TypeFile + File Type860311629 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/NPS%203rd%20STD%20HINDI%20LESSONS/Unknown%20Album/Std%203%20Lesson%20No%202%20Part2.mp3 + File Folder Count4 + Library Folder Count1 + + 11058 + + Track ID11058 + NameStd 3 Lesson No 2 Part3 + ArtistNPS 3rd STD HINDI LESSONS + KindMPEG audio file + Size12923635 + Total Time403539 + Track Number1 + Year2012 + Date Modified2013-07-14T14:18:14Z + Date Added2013-07-14T13:48:41Z + Bit Rate256 + Sample Rate44100 + Persistent ID26D461A781ACFF1E + Track TypeFile + File Type860311629 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/NPS%203rd%20STD%20HINDI%20LESSONS/Unknown%20Album/Std%203%20Lesson%20No%202%20Part3.mp3 + File Folder Count4 + Library Folder Count1 + + 11060 + + Track ID11060 + NameStd 3 Lesson No 3 Part1 + ArtistNPS 3rd STD HINDI LESSONS + KindMPEG audio file + Size15539690 + Total Time485825 + Track Number1 + Year2012 + Date Modified2013-07-14T14:18:15Z + Date Added2013-07-14T13:48:42Z + Bit Rate256 + Sample Rate44100 + Persistent ID6FCE9135349C0E17 + Track TypeFile + File Type860311629 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/NPS%203rd%20STD%20HINDI%20LESSONS/Unknown%20Album/Std%203%20Lesson%20No%203%20Part1.mp3 + File Folder Count4 + Library Folder Count1 + + 11062 + + Track ID11062 + NameStd 3 Lesson No 3 Part2 + ArtistNPS 3rd STD HINDI LESSONS + KindMPEG audio file + Size12309075 + Total Time384757 + Track Number1 + Year2012 + Date Modified2013-07-14T14:18:16Z + Date Added2013-07-14T13:49:18Z + Bit Rate256 + Sample Rate44100 + Persistent ID1228B89C0B047062 + Track TypeFile + File Type860311629 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/NPS%203rd%20STD%20HINDI%20LESSONS/Unknown%20Album/Std%203%20Lesson%20No%203%20Part2.mp3 + File Folder Count4 + Library Folder Count1 + + 11064 + + Track ID11064 + NameStd 3 Lesson No 3 Part3 + ArtistNPS 3rd STD HINDI LESSONS + KindMPEG audio file + Size8544895 + Total Time266997 + Track Number1 + Year2012 + Date Modified2013-07-14T14:18:17Z + Date Added2013-07-14T13:51:21Z + Bit Rate256 + Sample Rate44100 + Persistent ID37CC372522D55DB3 + Track TypeFile + File Type860311629 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/NPS%203rd%20STD%20HINDI%20LESSONS/Unknown%20Album/Std%203%20Lesson%20No%203%20Part3.mp3 + File Folder Count4 + Library Folder Count1 + + 11066 + + Track ID11066 + NameStd 3 Lesson No 4 Part1 + ArtistNPS 3rd STD HINDI LESSONS + KindMPEG audio file + Size11330455 + Total Time354142 + Track Number1 + Year2012 + Date Modified2013-07-14T14:18:17Z + Date Added2013-07-14T13:51:41Z + Bit Rate256 + Sample Rate44100 + Persistent IDA6AF632BA46BC514 + Track TypeFile + File Type860311629 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/NPS%203rd%20STD%20HINDI%20LESSONS/Unknown%20Album/Std%203%20Lesson%20No%204%20Part1.mp3 + File Folder Count4 + Library Folder Count1 + + 11068 + + Track ID11068 + NameStd 3 Lesson No 4 Part2 + ArtistNPS 3rd STD HINDI LESSONS + KindMPEG audio file + Size11341310 + Total Time354481 + Track Number1 + Year2012 + Date Modified2013-07-14T14:18:18Z + Date Added2013-07-14T13:52:08Z + Bit Rate256 + Sample Rate44100 + Persistent IDBB8465379E0D631D + Track TypeFile + File Type860311629 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/NPS%203rd%20STD%20HINDI%20LESSONS/Unknown%20Album/Std%203%20Lesson%20No%204%20Part2.mp3 + File Folder Count4 + Library Folder Count1 + + 11070 + + Track ID11070 + NameStd 3 Lesson No 6 Part1 + ArtistNPS 3rd STD HINDI LESSONS + KindMPEG audio file + Size12005135 + Total Time375248 + Track Number1 + Year2012 + Date Modified2013-07-14T14:18:19Z + Date Added2013-07-14T13:52:34Z + Bit Rate256 + Sample Rate44100 + Persistent ID45FD8754E9F9CD78 + Track TypeFile + File Type860311629 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/NPS%203rd%20STD%20HINDI%20LESSONS/Unknown%20Album/Std%203%20Lesson%20No%206%20Part1.mp3 + File Folder Count4 + Library Folder Count1 + + 11072 + + Track ID11072 + NameStd 3 Lesson No 6 Part2 + ArtistNPS 3rd STD HINDI LESSONS + KindMPEG audio file + Size8405450 + Total Time262347 + Track Number1 + Year2012 + Date Modified2013-07-14T14:18:19Z + Date Added2013-07-14T13:53:02Z + Bit Rate256 + Sample Rate44100 + Persistent IDA17F8205FC753DD0 + Track TypeFile + File Type860311629 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/NPS%203rd%20STD%20HINDI%20LESSONS/Unknown%20Album/Std%203%20Lesson%20No%206%20Part2.mp3 + File Folder Count4 + Library Folder Count1 + + 11074 + + Track ID11074 + NameStd 3 Lesson No 6 Part3 + ArtistNPS 3rd STD HINDI LESSONS + KindMPEG audio file + Size13318590 + Total Time416339 + Track Number1 + Year2012 + Date Modified2013-07-14T14:18:20Z + Date Added2013-07-14T13:53:03Z + Bit Rate256 + Sample Rate44100 + Persistent ID13E5AE86DA969077 + Track TypeFile + File Type860311629 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/NPS%203rd%20STD%20HINDI%20LESSONS/Unknown%20Album/Std%203%20Lesson%20No%206%20Part3.mp3 + File Folder Count4 + Library Folder Count1 + + 11076 + + Track ID11076 + NameLesson no 07 Part1 + ArtistNPS 3rd STD HINDI LESSONS + KindWAV audio file + Size96576044 + Total Time502994 + Date Modified2012-01-09T08:35:48Z + Date Added2013-07-14T14:15:37Z + Bit Rate1536 + Sample Rate48000 + Persistent ID21AC594E09B279B8 + Track TypeFile + File Type1463899717 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/NPS%203rd%20STD%20HINDI%20LESSONS/Unknown%20Album/Lesson%20no%2007%20Part1.wav + File Folder Count4 + Library Folder Count1 + + 11078 + + Track ID11078 + NameLesson no 07 Part2 + ArtistNPS 3rd STD HINDI LESSONS + KindWAV audio file + Size50562092 + Total Time263338 + Date Modified2012-01-09T08:35:53Z + Date Added2013-07-14T14:15:38Z + Bit Rate1536 + Sample Rate48000 + Persistent ID36BB4F1FFB91A474 + Track TypeFile + File Type1463899717 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/NPS%203rd%20STD%20HINDI%20LESSONS/Unknown%20Album/Lesson%20no%2007%20Part2.wav + File Folder Count4 + Library Folder Count1 + + 11080 + + Track ID11080 + NameLesson no 07 Part3 + ArtistNPS 3rd STD HINDI LESSONS + KindWAV audio file + Size64533548 + Total Time336106 + Date Modified2012-01-09T08:36:00Z + Date Added2013-07-14T14:15:39Z + Bit Rate1536 + Sample Rate48000 + Persistent ID69B5D0D74B39A88A + Track TypeFile + File Type1463899717 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/NPS%203rd%20STD%20HINDI%20LESSONS/Unknown%20Album/Lesson%20no%2007%20Part3.wav + File Folder Count4 + Library Folder Count1 + + 11082 + + Track ID11082 + NameLesson no 10 Part1 + ArtistNPS 3rd STD HINDI LESSONS + KindMPEG audio file + Size6702277 + Total Time278832 + Date Modified2013-07-14T14:18:21Z + Date Added2013-07-14T14:15:39Z + Bit Rate192 + Sample Rate48000 + Persistent IDC71CE4162FC8B15A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/NPS%203rd%20STD%20HINDI%20LESSONS/Unknown%20Album/Lesson%20no%2010%20Part1.mp3 + File Folder Count4 + Library Folder Count1 + + 11084 + + Track ID11084 + NameLesson no 10 Part2 + ArtistNPS 3rd STD HINDI LESSONS + KindMPEG audio file + Size5731717 + Total Time238392 + Date Modified2013-07-14T14:18:21Z + Date Added2013-07-14T14:15:39Z + Bit Rate192 + Sample Rate48000 + Persistent ID447F173FBCC40CFF + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/NPS%203rd%20STD%20HINDI%20LESSONS/Unknown%20Album/Lesson%20no%2010%20Part2.mp3 + File Folder Count4 + Library Folder Count1 + + 11086 + + Track ID11086 + NameLesson no 10 Part3 + ArtistNPS 3rd STD HINDI LESSONS + KindMPEG audio file + Size10558597 + Total Time439512 + Date Modified2013-07-14T14:18:21Z + Date Added2013-07-14T14:15:39Z + Bit Rate192 + Sample Rate48000 + Persistent IDEBB71425C2515CA0 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/NPS%203rd%20STD%20HINDI%20LESSONS/Unknown%20Album/Lesson%20no%2010%20Part3.mp3 + File Folder Count4 + Library Folder Count1 + + 11088 + + Track ID11088 + NameLesson no 11 Part1 + ArtistNPS 3rd STD HINDI LESSONS + KindMPEG audio file + Size11728453 + Total Time488256 + Date Modified2013-07-14T14:18:24Z + Date Added2013-07-14T14:15:40Z + Bit Rate192 + Sample Rate48000 + Persistent ID8E492C27CEFAAA57 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/NPS%203rd%20STD%20HINDI%20LESSONS/Unknown%20Album/Lesson%20no%2011%20Part1.mp3 + File Folder Count4 + Library Folder Count1 + + 11090 + + Track ID11090 + NameLesson no 11 Part2 + ArtistNPS 3rd STD HINDI LESSONS + KindMPEG audio file + Size6672325 + Total Time277584 + Date Modified2013-07-14T14:18:23Z + Date Added2013-07-14T14:15:40Z + Bit Rate192 + Sample Rate48000 + Persistent ID5D42B944FA430DFF + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/NPS%203rd%20STD%20HINDI%20LESSONS/Unknown%20Album/Lesson%20no%2011%20Part2.mp3 + File Folder Count4 + Library Folder Count1 + + 11092 + + Track ID11092 + NameLesson no 11 Part3 + ArtistNPS 3rd STD HINDI LESSONS + KindMPEG audio file + Size12099973 + Total Time503736 + Date Modified2013-07-14T14:18:23Z + Date Added2013-07-14T14:15:40Z + Bit Rate192 + Sample Rate48000 + Persistent ID605D1C7EA4C2D657 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/NPS%203rd%20STD%20HINDI%20LESSONS/Unknown%20Album/Lesson%20no%2011%20Part3.mp3 + File Folder Count4 + Library Folder Count1 + + 11094 + + Track ID11094 + NameLesson no 12 Part1 + ArtistNPS 3rd STD HINDI LESSONS + KindMPEG audio file + Size13072261 + Total Time544248 + Date Modified2013-07-14T14:18:22Z + Date Added2013-07-14T14:15:40Z + Bit Rate192 + Sample Rate48000 + Persistent ID2F1C0E04D279FFEE + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/NPS%203rd%20STD%20HINDI%20LESSONS/Unknown%20Album/Lesson%20no%2012%20Part1.mp3 + File Folder Count4 + Library Folder Count1 + + 11096 + + Track ID11096 + NameLesson no 12 Part2 + ArtistNPS 3rd STD HINDI LESSONS + KindMPEG audio file + Size7031749 + Total Time292560 + Date Modified2013-07-14T14:18:27Z + Date Added2013-07-14T14:15:41Z + Bit Rate192 + Sample Rate48000 + Persistent ID9DDA345FF29B32EF + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/NPS%203rd%20STD%20HINDI%20LESSONS/Unknown%20Album/Lesson%20no%2012%20Part2.mp3 + File Folder Count4 + Library Folder Count1 + + 11098 + + Track ID11098 + NameLesson no 12 Part3 + ArtistNPS 3rd STD HINDI LESSONS + KindMPEG audio file + Size9024133 + Total Time375576 + Date Modified2013-07-14T14:18:26Z + Date Added2013-07-14T14:15:41Z + Bit Rate192 + Sample Rate48000 + Persistent ID98D5140EA4814008 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/NPS%203rd%20STD%20HINDI%20LESSONS/Unknown%20Album/Lesson%20no%2012%20Part3.mp3 + File Folder Count4 + Library Folder Count1 + + 11100 + + Track ID11100 + NameLesson no 14 Part1 + ArtistNPS 3rd STD HINDI LESSONS + KindMPEG audio file + Size12737605 + Total Time530304 + Date Modified2013-07-14T14:18:26Z + Date Added2013-07-14T14:15:41Z + Bit Rate192 + Sample Rate48000 + Persistent ID9C0DF302BB866FC2 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/NPS%203rd%20STD%20HINDI%20LESSONS/Unknown%20Album/Lesson%20no%2014%20Part1.mp3 + File Folder Count4 + Library Folder Count1 + + 11102 + + Track ID11102 + NameLesson no 14 Part2 + ArtistNPS 3rd STD HINDI LESSONS + KindMPEG audio file + Size8496517 + Total Time353592 + Date Modified2013-07-14T14:18:25Z + Date Added2013-07-14T14:15:41Z + Bit Rate192 + Sample Rate48000 + Persistent ID3CA83FE92AAE2C8F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/NPS%203rd%20STD%20HINDI%20LESSONS/Unknown%20Album/Lesson%20no%2014%20Part2.mp3 + File Folder Count4 + Library Folder Count1 + + 11104 + + Track ID11104 + NameLesson no 15 Part1 + ArtistNPS 3rd STD HINDI LESSONS + KindMPEG audio file + Size10949701 + Total Time455808 + Date Modified2013-07-14T14:18:25Z + Date Added2013-07-14T14:15:41Z + Bit Rate192 + Sample Rate48000 + Persistent IDE7E15494BBA45686 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/NPS%203rd%20STD%20HINDI%20LESSONS/Unknown%20Album/Lesson%20no%2015%20Part1.mp3 + File Folder Count4 + Library Folder Count1 + + 11106 + + Track ID11106 + NameLesson no 15 Part2 + ArtistNPS 3rd STD HINDI LESSONS + KindMPEG audio file + Size7604293 + Total Time316416 + Date Modified2013-07-14T14:18:27Z + Date Added2013-07-14T14:15:42Z + Bit Rate192 + Sample Rate48000 + Persistent ID30CB5F2062CA01BC + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/NPS%203rd%20STD%20HINDI%20LESSONS/Unknown%20Album/Lesson%20no%2015%20Part2.mp3 + File Folder Count4 + Library Folder Count1 + + 11108 + + Track ID11108 + NameLesson no 15 Part3 + ArtistNPS 3rd STD HINDI LESSONS + KindMPEG audio file + Size6342277 + Total Time263832 + Date Modified2013-07-14T14:18:27Z + Date Added2013-07-14T14:15:42Z + Bit Rate192 + Sample Rate48000 + Persistent ID1E50031D40C1AD14 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/NPS%203rd%20STD%20HINDI%20LESSONS/Unknown%20Album/Lesson%20no%2015%20Part3.mp3 + File Folder Count4 + Library Folder Count1 + + 11110 + + Track ID11110 + Namedot + KindWAV audio file + Size17768 + Total Time1603 + Date Modified2013-07-15T14:53:51Z + Date Added2013-07-15T14:54:54Z + Bit Rate88 + Sample Rate11050 + Persistent ID4D23FD241AEE3A57 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Unknown%20Artist/Unknown%20Album/dot.wav + File Folder Count4 + Library Folder Count1 + + 11112 + + Track ID11112 + Namedash + KindWAV audio file + Size19456 + Total Time1756 + Date Modified2013-07-15T14:56:05Z + Date Added2013-07-15T14:56:08Z + Bit Rate88 + Sample Rate11050 + Persistent ID18F49497F62D3F0D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Unknown%20Artist/Unknown%20Album/dash.wav + File Folder Count4 + Library Folder Count1 + + 11124 + + Track ID11124 + Name13/02/13 10:16 PM + ArtistMahesh Venkitachalam + AlbumVoice Memos + GenreVoice Memo + KindAAC audio file + Size137810 + Total Time16484 + Date Modified2013-02-13T14:17:15Z + Date Added2013-07-28T11:40:45Z + Bit Rate64 + Sample Rate44100 + Persistent ID1B7A5BD9B2AE109B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Voice%20Memos/20130213%20221653.m4a + File Folder Count3 + Library Folder Count1 + + 11126 + + Track ID11126 + Name05/03/13 6:08 PM + ArtistMahesh Venkitachalam + AlbumVoice Memos + GenreVoice Memo + KindAAC audio file + Size168919 + Total Time20455 + Date Modified2013-03-05T12:38:31Z + Date Added2013-07-28T11:40:45Z + Bit Rate64 + Sample Rate44100 + Persistent ID6C77AE3FE259886F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Voice%20Memos/20130305%20180810.m4a + File Folder Count3 + Library Folder Count1 + + 11128 + + Track ID11128 + Namesin + KindWAV audio file + Size88244 + Total Time1000 + Date Modified2013-07-30T15:45:44Z + Date Added2013-07-30T15:46:05Z + Bit Rate705 + Sample Rate44100 + Persistent IDDAAE1E3BEE2A4478 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Unknown%20Artist/Unknown%20Album/sin.wav + File Folder Count4 + Library Folder Count1 + + 11186 + + Track ID11186 + NameHarmonica For Dummies + ArtistHarmonica For Dummies + Album ArtistHarmonica For Dummies + AlbumWinslow Yerxa + GenreOther + KindMPEG audio file + Size787467 + Total Time41116 + Track Number1 + Year2010 + Date Modified2013-12-29T12:42:10Z + Date Added2013-12-29T12:40:05Z + Bit Rate128 + Sample Rate44100 + CommentsfileRename @ sourceforge.net + Artwork Count1 + Persistent ID138AD7F17CB9F222 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/01%20Harmonica%20For%20Dummies.mp3 + File Folder Count4 + Library Folder Count1 + + 11188 + + Track ID11188 + NameHarmonica For Dummies + ArtistHarmonica For Dummies + Album ArtistHarmonica For Dummies + AlbumWinslow Yerxa + GenreOther + KindMPEG audio file + Size353370 + Total Time13923 + Track Number2 + Year2010 + Date Modified2013-12-29T12:42:11Z + Date Added2013-12-29T12:40:06Z + Bit Rate128 + Sample Rate44100 + CommentsfileRename @ sourceforge.net + Artwork Count1 + Persistent IDF424468D42581A99 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/02%20Harmonica%20For%20Dummies.mp3 + File Folder Count4 + Library Folder Count1 + + 11190 + + Track ID11190 + NameHarmonica For Dummies + ArtistHarmonica For Dummies + Album ArtistHarmonica For Dummies + AlbumWinslow Yerxa + GenreOther + KindMPEG audio file + Size385896 + Total Time15960 + Track Number3 + Year2010 + Date Modified2013-12-29T12:42:11Z + Date Added2013-12-29T12:40:06Z + Bit Rate128 + Sample Rate44100 + CommentsfileRename @ sourceforge.net + Artwork Count1 + Persistent ID8B490677A92F4C6A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/03%20Harmonica%20For%20Dummies.mp3 + File Folder Count4 + Library Folder Count1 + + 11192 + + Track ID11192 + NameHarmonica For Dummies + ArtistHarmonica For Dummies + Album ArtistHarmonica For Dummies + AlbumWinslow Yerxa + GenreOther + KindMPEG audio file + Size308334 + Total Time11075 + Track Number4 + Year2010 + Date Modified2013-12-29T12:42:11Z + Date Added2013-12-29T12:40:06Z + Bit Rate128 + Sample Rate44100 + CommentsfileRename @ sourceforge.net + Artwork Count1 + Persistent ID6281856BC26A41BA + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/04%20Harmonica%20For%20Dummies.mp3 + File Folder Count4 + Library Folder Count1 + + 11194 + + Track ID11194 + NameHarmonica For Dummies + ArtistHarmonica For Dummies + Album ArtistHarmonica For Dummies + AlbumWinslow Yerxa + GenreOther + KindMPEG audio file + Size656946 + Total Time32940 + Track Number5 + Year2010 + Date Modified2013-12-29T12:42:11Z + Date Added2013-12-29T12:40:06Z + Bit Rate128 + Sample Rate44100 + CommentsfileRename @ sourceforge.net + Artwork Count1 + Persistent ID654402150F331634 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/05%20Harmonica%20For%20Dummies.mp3 + File Folder Count4 + Library Folder Count1 + + 11196 + + Track ID11196 + NameHarmonica For Dummies + ArtistHarmonica For Dummies + Album ArtistHarmonica For Dummies + AlbumWinslow Yerxa + GenreOther + KindMPEG audio file + Size2778226 + Total Time165825 + Track Number6 + Year2010 + Date Modified2013-12-29T12:42:11Z + Date Added2013-12-29T12:40:06Z + Bit Rate128 + Sample Rate44100 + CommentsfileRename @ sourceforge.net + Artwork Count1 + Persistent ID8DC765B8E8C0BAB2 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/06%20Harmonica%20For%20Dummies.mp3 + File Folder Count4 + Library Folder Count1 + + 11198 + + Track ID11198 + NameHarmonica For Dummies + ArtistHarmonica For Dummies + Album ArtistHarmonica For Dummies + AlbumWinslow Yerxa + GenreOther + KindMPEG audio file + Size685719 + Total Time34664 + Track Number7 + Year2010 + Date Modified2013-12-29T12:42:11Z + Date Added2013-12-29T12:40:08Z + Bit Rate128 + Sample Rate44100 + CommentsfileRename @ sourceforge.net + Artwork Count1 + Persistent ID47F1BBBC31C4592C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/07%20Harmonica%20For%20Dummies.mp3 + File Folder Count4 + Library Folder Count1 + + 11200 + + Track ID11200 + NameHarmonica For Dummies + ArtistHarmonica For Dummies + Album ArtistHarmonica For Dummies + AlbumWinslow Yerxa + GenreOther + KindMPEG audio file + Size1096881 + Total Time60499 + Track Number8 + Year2010 + Date Modified2013-12-29T12:42:11Z + Date Added2013-12-29T12:40:08Z + Bit Rate128 + Sample Rate44100 + CommentsfileRename @ sourceforge.net + Artwork Count1 + Persistent ID0A1084A6686AB977 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/08%20Harmonica%20For%20Dummies.mp3 + File Folder Count4 + Library Folder Count1 + + 11202 + + Track ID11202 + NameHarmonica For Dummies + ArtistHarmonica For Dummies + Album ArtistHarmonica For Dummies + AlbumWinslow Yerxa + GenreOther + KindMPEG audio file + Size440106 + Total Time19356 + Track Number9 + Year2010 + Date Modified2013-12-29T12:42:11Z + Date Added2013-12-29T12:40:08Z + Bit Rate128 + Sample Rate44100 + CommentsfileRename @ sourceforge.net + Artwork Count1 + Persistent IDF2B642E0FDB29FF5 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/09%20Harmonica%20For%20Dummies.mp3 + File Folder Count4 + Library Folder Count1 + + 11204 + + Track ID11204 + NameHarmonica For Dummies + ArtistHarmonica For Dummies + Album ArtistHarmonica For Dummies + AlbumWinslow Yerxa + GenreOther + KindMPEG audio file + Size440523 + Total Time19382 + Track Number10 + Year2010 + Date Modified2013-12-29T12:42:11Z + Date Added2013-12-29T12:40:08Z + Bit Rate128 + Sample Rate44100 + CommentsfileRename @ sourceforge.net + Artwork Count1 + Persistent ID75E54625553D38DF + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/10%20Harmonica%20For%20Dummies.mp3 + File Folder Count4 + Library Folder Count1 + + 11206 + + Track ID11206 + NameHarmonica For Dummies + ArtistHarmonica For Dummies + Album ArtistHarmonica For Dummies + AlbumWinslow Yerxa + GenreOther + KindMPEG audio file + Size430515 + Total Time18755 + Track Number11 + Year2010 + Date Modified2013-12-29T12:42:12Z + Date Added2013-12-29T12:40:09Z + Bit Rate128 + Sample Rate44100 + CommentsfileRename @ sourceforge.net + Artwork Count1 + Persistent ID10F584AA4FE1259A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/11%20Harmonica%20For%20Dummies.mp3 + File Folder Count4 + Library Folder Count1 + + 11208 + + Track ID11208 + NameHarmonica For Dummies + ArtistHarmonica For Dummies + Album ArtistHarmonica For Dummies + AlbumWinslow Yerxa + GenreOther + KindMPEG audio file + Size658197 + Total Time33018 + Track Number12 + Year2010 + Date Modified2013-12-29T12:42:12Z + Date Added2013-12-29T12:40:09Z + Bit Rate128 + Sample Rate44100 + CommentsfileRename @ sourceforge.net + Artwork Count1 + Persistent IDAC0E4E7F1D59DC86 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/12%20Harmonica%20For%20Dummies.mp3 + File Folder Count4 + Library Folder Count1 + + 11210 + + Track ID11210 + NameHarmonica For Dummies + ArtistHarmonica For Dummies + Album ArtistHarmonica For Dummies + AlbumWinslow Yerxa + GenreOther + KindMPEG audio file + Size574380 + Total Time27768 + Track Number13 + Year2010 + Date Modified2013-12-29T12:42:11Z + Date Added2013-12-29T12:40:09Z + Bit Rate128 + Sample Rate44100 + CommentsfileRename @ sourceforge.net + Artwork Count1 + Persistent IDE32314D15BEBF9B8 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/13%20Harmonica%20For%20Dummies.mp3 + File Folder Count4 + Library Folder Count1 + + 11212 + + Track ID11212 + NameHarmonica For Dummies + ArtistHarmonica For Dummies + Album ArtistHarmonica For Dummies + AlbumWinslow Yerxa + GenreOther + KindMPEG audio file + Size523665 + Total Time32574 + Track Number14 + Year2010 + Date Modified2013-12-29T12:42:11Z + Date Added2013-12-29T12:40:09Z + Bit Rate96 + Sample Rate22050 + CommentsfileRename @ sourceforge.net + Artwork Count1 + Persistent ID2B479DFC570A009A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/14%20Harmonica%20For%20Dummies.mp3 + File Folder Count4 + Library Folder Count1 + + 11214 + + Track ID11214 + NameHarmonica For Dummies + ArtistHarmonica For Dummies + Album ArtistHarmonica For Dummies + AlbumWinslow Yerxa + GenreOther + KindMPEG audio file + Size534765 + Total Time25286 + Track Number15 + Year2010 + Date Modified2013-12-29T12:42:11Z + Date Added2013-12-29T12:40:09Z + Bit Rate128 + Sample Rate44100 + CommentsfileRename @ sourceforge.net + Artwork Count1 + Persistent ID1EB497623E2C8FBC + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/15%20Harmonica%20For%20Dummies.mp3 + File Folder Count4 + Library Folder Count1 + + 11216 + + Track ID11216 + NameHarmonica For Dummies + ArtistHarmonica For Dummies + Album ArtistHarmonica For Dummies + AlbumWinslow Yerxa + GenreOther + KindMPEG audio file + Size529344 + Total Time24946 + Track Number16 + Year2010 + Date Modified2013-12-29T12:42:11Z + Date Added2013-12-29T12:40:09Z + Bit Rate128 + Sample Rate44100 + CommentsfileRename @ sourceforge.net + Artwork Count1 + Persistent ID13DD7A40E4C99E10 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/16%20Harmonica%20For%20Dummies.mp3 + File Folder Count4 + Library Folder Count1 + + 11218 + + Track ID11218 + NameHarmonica For Dummies + ArtistHarmonica For Dummies + Album ArtistHarmonica For Dummies + AlbumWinslow Yerxa + GenreOther + KindMPEG audio file + Size383394 + Total Time15804 + Track Number17 + Year2010 + Date Modified2013-12-29T12:42:12Z + Date Added2013-12-29T12:40:10Z + Bit Rate128 + Sample Rate44100 + CommentsfileRename @ sourceforge.net + Artwork Count1 + Persistent ID64D5C86EFD8160BF + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/17%20Harmonica%20For%20Dummies.mp3 + File Folder Count4 + Library Folder Count1 + + 11220 + + Track ID11220 + NameHarmonica For Dummies + ArtistHarmonica For Dummies + Album ArtistHarmonica For Dummies + AlbumWinslow Yerxa + GenreOther + KindMPEG audio file + Size554700 + Total Time35160 + Track Number18 + Year2010 + Date Modified2013-12-29T12:42:12Z + Date Added2013-12-29T12:40:10Z + Bit Rate96 + Sample Rate22050 + CommentsfileRename @ sourceforge.net + Artwork Count1 + Persistent ID4DF533B95EDD0C04 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/18%20Harmonica%20For%20Dummies.mp3 + File Folder Count4 + Library Folder Count1 + + 11222 + + Track ID11222 + NameHarmonica For Dummies + ArtistHarmonica For Dummies + Album ArtistHarmonica For Dummies + AlbumWinslow Yerxa + GenreOther + KindMPEG audio file + Size768702 + Total Time39941 + Track Number19 + Year2010 + Date Modified2013-12-29T12:42:12Z + Date Added2013-12-29T12:40:10Z + Bit Rate128 + Sample Rate44100 + CommentsfileRename @ sourceforge.net + Artwork Count1 + Persistent ID29AD155B2A52F2EE + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/19%20Harmonica%20For%20Dummies.mp3 + File Folder Count4 + Library Folder Count1 + + 11224 + + Track ID11224 + NameHarmonica For Dummies + ArtistHarmonica For Dummies + Album ArtistHarmonica For Dummies + AlbumWinslow Yerxa + GenreOther + KindMPEG audio file + Size631498 + Total Time41560 + Track Number20 + Year2010 + Date Modified2013-12-29T12:42:12Z + Date Added2013-12-29T12:40:10Z + Bit Rate96 + Sample Rate22050 + CommentsfileRename @ sourceforge.net + Artwork Count1 + Persistent ID0663E015A3909108 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/20%20Harmonica%20For%20Dummies.mp3 + File Folder Count4 + Library Folder Count1 + + 11226 + + Track ID11226 + NameHarmonica For Dummies + ArtistHarmonica For Dummies + Album ArtistHarmonica For Dummies + AlbumWinslow Yerxa + GenreOther + KindMPEG audio file + Size488478 + Total Time22334 + Track Number21 + Year2010 + Date Modified2013-12-29T12:42:12Z + Date Added2013-12-29T12:40:10Z + Bit Rate128 + Sample Rate44100 + CommentsfileRename @ sourceforge.net + Artwork Count1 + Persistent IDAB0B8C08C6A2E0E8 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/21%20Harmonica%20For%20Dummies.mp3 + File Folder Count4 + Library Folder Count1 + + 11228 + + Track ID11228 + NameHarmonica For Dummies + ArtistHarmonica For Dummies + Album ArtistHarmonica For Dummies + AlbumWinslow Yerxa + GenreOther + KindMPEG audio file + Size814989 + Total Time42840 + Track Number22 + Year2010 + Date Modified2013-12-29T12:42:12Z + Date Added2013-12-29T12:40:10Z + Bit Rate128 + Sample Rate44100 + CommentsfileRename @ sourceforge.net + Artwork Count1 + Persistent ID5EDED2496225DD0B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/22%20Harmonica%20For%20Dummies.mp3 + File Folder Count4 + Library Folder Count1 + + 11230 + + Track ID11230 + NameHarmonica For Dummies + ArtistHarmonica For Dummies + Album ArtistHarmonica For Dummies + AlbumWinslow Yerxa + GenreOther + KindMPEG audio file + Size353370 + Total Time13923 + Track Number23 + Year2010 + Date Modified2013-12-29T12:42:12Z + Date Added2013-12-29T12:40:10Z + Bit Rate128 + Sample Rate44100 + CommentsfileRename @ sourceforge.net + Artwork Count1 + Persistent IDF266963BAEDCF358 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/23%20Harmonica%20For%20Dummies.mp3 + File Folder Count4 + Library Folder Count1 + + 11232 + + Track ID11232 + NameHarmonica For Dummies + ArtistHarmonica For Dummies + Album ArtistHarmonica For Dummies + AlbumWinslow Yerxa + GenreOther + KindMPEG audio file + Size369633 + Total Time14942 + Track Number24 + Year2010 + Date Modified2013-12-29T12:42:12Z + Date Added2013-12-29T12:40:11Z + Bit Rate128 + Sample Rate44100 + CommentsfileRename @ sourceforge.net + Artwork Count1 + Persistent IDBEDDBF2A070E8486 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/24%20Harmonica%20For%20Dummies.mp3 + File Folder Count4 + Library Folder Count1 + + 11234 + + Track ID11234 + NameHarmonica For Dummies + ArtistHarmonica For Dummies + Album ArtistHarmonica For Dummies + AlbumWinslow Yerxa + GenreOther + KindMPEG audio file + Size881709 + Total Time47020 + Track Number25 + Year2010 + Date Modified2013-12-29T12:42:12Z + Date Added2013-12-29T12:40:11Z + Bit Rate128 + Sample Rate44100 + CommentsfileRename @ sourceforge.net + Artwork Count1 + Persistent IDE962AE109896A2FE + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/25%20Harmonica%20For%20Dummies.mp3 + File Folder Count4 + Library Folder Count1 + + 11236 + + Track ID11236 + NameHarmonica For Dummies + ArtistHarmonica For Dummies + Album ArtistHarmonica For Dummies + AlbumWinslow Yerxa + GenreOther + KindMPEG audio file + Size326265 + Total Time12225 + Track Number26 + Year2010 + Date Modified2013-12-29T12:42:12Z + Date Added2013-12-29T12:40:11Z + Bit Rate128 + Sample Rate44100 + CommentsfileRename @ sourceforge.net + Artwork Count1 + Persistent ID15E4358DAE64B7DD + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/26%20Harmonica%20For%20Dummies.mp3 + File Folder Count4 + Library Folder Count1 + + 11238 + + Track ID11238 + NameHarmonica For Dummies + ArtistHarmonica For Dummies + Album ArtistHarmonica For Dummies + AlbumWinslow Yerxa + GenreOther + KindMPEG audio file + Size1345830 + Total Time76094 + Track Number27 + Year2010 + Date Modified2013-12-29T12:42:12Z + Date Added2013-12-29T12:40:11Z + Bit Rate128 + Sample Rate44100 + CommentsfileRename @ sourceforge.net + Artwork Count1 + Persistent IDFE9824E4D46632A7 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/27%20Harmonica%20For%20Dummies.mp3 + File Folder Count4 + Library Folder Count1 + + 11240 + + Track ID11240 + NameHarmonica For Dummies + ArtistHarmonica For Dummies + Album ArtistHarmonica For Dummies + AlbumWinslow Yerxa + GenreOther + KindMPEG audio file + Size646104 + Total Time32261 + Track Number28 + Year2010 + Date Modified2013-12-29T12:42:13Z + Date Added2013-12-29T12:40:12Z + Bit Rate128 + Sample Rate44100 + CommentsfileRename @ sourceforge.net + Artwork Count1 + Persistent ID51A0E6D6E3B9F386 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/28%20Harmonica%20For%20Dummies.mp3 + File Folder Count4 + Library Folder Count1 + + 11242 + + Track ID11242 + NameHarmonica For Dummies + ArtistHarmonica For Dummies + Album ArtistHarmonica For Dummies + AlbumWinslow Yerxa + GenreOther + KindMPEG audio file + Size628366 + Total Time41299 + Track Number29 + Year2010 + Date Modified2013-12-29T12:42:13Z + Date Added2013-12-29T12:40:12Z + Bit Rate96 + Sample Rate22050 + CommentsfileRename @ sourceforge.net + Artwork Count1 + Persistent ID2ABBBBA40E9C6D15 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/29%20Harmonica%20For%20Dummies.mp3 + File Folder Count4 + Library Folder Count1 + + 11244 + + Track ID11244 + NameHarmonica For Dummies + ArtistHarmonica For Dummies + Album ArtistHarmonica For Dummies + AlbumWinslow Yerxa + GenreOther + KindMPEG audio file + Size319593 + Total Time11781 + Track Number30 + Year2010 + Date Modified2013-12-29T12:42:13Z + Date Added2013-12-29T12:40:12Z + Bit Rate128 + Sample Rate44100 + CommentsfileRename @ sourceforge.net + Artwork Count1 + Persistent ID131D5B844086AFA5 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/30%20Harmonica%20For%20Dummies.mp3 + File Folder Count4 + Library Folder Count1 + + 11246 + + Track ID11246 + NameHarmonica For Dummies + ArtistHarmonica For Dummies + Album ArtistHarmonica For Dummies + AlbumWinslow Yerxa + GenreOther + KindMPEG audio file + Size810819 + Total Time42579 + Track Number31 + Year2010 + Date Modified2013-12-29T12:42:13Z + Date Added2013-12-29T12:40:12Z + Bit Rate128 + Sample Rate44100 + CommentsfileRename @ sourceforge.net + Artwork Count1 + Persistent ID5CF5F02B08C1FC0A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/31%20Harmonica%20For%20Dummies.mp3 + File Folder Count4 + Library Folder Count1 + + 11248 + + Track ID11248 + NameHarmonica For Dummies + ArtistHarmonica For Dummies + Album ArtistHarmonica For Dummies + AlbumWinslow Yerxa + GenreOther + KindMPEG audio file + Size928413 + Total Time49946 + Track Number32 + Year2010 + Date Modified2013-12-29T12:42:13Z + Date Added2013-12-29T12:40:13Z + Bit Rate128 + Sample Rate44100 + CommentsfileRename @ sourceforge.net + Artwork Count1 + Persistent ID65B2D3140A572371 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/32%20Harmonica%20For%20Dummies.mp3 + File Folder Count4 + Library Folder Count1 + + 11250 + + Track ID11250 + NameHarmonica For Dummies + ArtistHarmonica For Dummies + Album ArtistHarmonica For Dummies + AlbumWinslow Yerxa + GenreOther + KindMPEG audio file + Size568959 + Total Time27428 + Track Number33 + Year2010 + Date Modified2013-12-29T12:42:13Z + Date Added2013-12-29T12:40:13Z + Bit Rate128 + Sample Rate44100 + CommentsfileRename @ sourceforge.net + Artwork Count1 + Persistent ID9C85DAB184463589 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/33%20Harmonica%20For%20Dummies.mp3 + File Folder Count4 + Library Folder Count1 + + 11252 + + Track ID11252 + NameHarmonica For Dummies + ArtistHarmonica For Dummies + Album ArtistHarmonica For Dummies + AlbumWinslow Yerxa + GenreOther + KindMPEG audio file + Size401742 + Total Time16953 + Track Number34 + Year2010 + Date Modified2013-12-29T12:42:13Z + Date Added2013-12-29T12:40:13Z + Bit Rate128 + Sample Rate44100 + CommentsfileRename @ sourceforge.net + Artwork Count1 + Persistent ID101D968FF58CAD48 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/34%20Harmonica%20For%20Dummies.mp3 + File Folder Count4 + Library Folder Count1 + + 11254 + + Track ID11254 + NameHarmonica For Dummies + ArtistHarmonica For Dummies + Album ArtistHarmonica For Dummies + AlbumWinslow Yerxa + GenreOther + KindMPEG audio file + Size661950 + Total Time33253 + Track Number35 + Year2010 + Date Modified2013-12-29T12:42:13Z + Date Added2013-12-29T12:40:14Z + Bit Rate128 + Sample Rate44100 + CommentsfileRename @ sourceforge.net + Artwork Count1 + Persistent IDD92D6AF504108BE4 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/35%20Harmonica%20For%20Dummies.mp3 + File Folder Count4 + Library Folder Count1 + + 11256 + + Track ID11256 + NameHarmonica For Dummies + ArtistHarmonica For Dummies + Album ArtistHarmonica For Dummies + AlbumWinslow Yerxa + GenreOther + KindMPEG audio file + Size701148 + Total Time35709 + Track Number36 + Year2010 + Date Modified2013-12-29T12:42:13Z + Date Added2013-12-29T12:40:15Z + Bit Rate128 + Sample Rate44100 + CommentsfileRename @ sourceforge.net + Artwork Count1 + Persistent IDB490448A1FCB455E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/36%20Harmonica%20For%20Dummies.mp3 + File Folder Count4 + Library Folder Count1 + + 11258 + + Track ID11258 + NameHarmonica For Dummies + ArtistHarmonica For Dummies + Album ArtistHarmonica For Dummies + AlbumWinslow Yerxa + GenreOther + KindMPEG audio file + Size260378 + Total Time8097 + Track Number37 + Year2010 + Date Modified2013-12-29T12:42:13Z + Date Added2013-12-29T12:40:15Z + Bit Rate128 + Sample Rate44100 + CommentsfileRename @ sourceforge.net + Artwork Count1 + Persistent ID5D9239C375A8C144 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/37%20Harmonica%20For%20Dummies.mp3 + File Folder Count4 + Library Folder Count1 + + 11260 + + Track ID11260 + NameHarmonica For Dummies + ArtistHarmonica For Dummies + Album ArtistHarmonica For Dummies + AlbumWinslow Yerxa + GenreOther + KindMPEG audio file + Size1226568 + Total Time68466 + Track Number38 + Year2010 + Date Modified2013-12-29T12:42:13Z + Date Added2013-12-29T12:40:15Z + Bit Rate128 + Sample Rate44100 + CommentsfileRename @ sourceforge.net + Artwork Count1 + Persistent IDBACF9A5BE00423EA + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/38%20Harmonica%20For%20Dummies.mp3 + File Folder Count4 + Library Folder Count1 + + 11262 + + Track ID11262 + NameHarmonica For Dummies + ArtistHarmonica For Dummies + Album ArtistHarmonica For Dummies + AlbumWinslow Yerxa + GenreOther + KindMPEG audio file + Size355872 + Total Time14080 + Track Number39 + Year2010 + Date Modified2013-12-29T12:42:13Z + Date Added2013-12-29T12:40:15Z + Bit Rate128 + Sample Rate44100 + CommentsfileRename @ sourceforge.net + Artwork Count1 + Persistent ID94C7653EAC230DD6 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/39%20Harmonica%20For%20Dummies.mp3 + File Folder Count4 + Library Folder Count1 + + 11264 + + Track ID11264 + NameHarmonica For Dummies + ArtistHarmonica For Dummies + Album ArtistHarmonica For Dummies + AlbumWinslow Yerxa + GenreOther + KindMPEG audio file + Size394236 + Total Time16483 + Track Number40 + Year2010 + Date Modified2013-12-29T12:42:14Z + Date Added2013-12-29T12:40:16Z + Bit Rate128 + Sample Rate44100 + CommentsfileRename @ sourceforge.net + Artwork Count1 + Persistent IDE1CF9FD58D7440AD + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/40%20Harmonica%20For%20Dummies.mp3 + File Folder Count4 + Library Folder Count1 + + 11266 + + Track ID11266 + NameHarmonica For Dummies + ArtistHarmonica For Dummies + Album ArtistHarmonica For Dummies + AlbumWinslow Yerxa + GenreOther + KindMPEG audio file + Size224516 + Total Time5851 + Track Number41 + Year2010 + Date Modified2013-12-29T12:42:14Z + Date Added2013-12-29T12:40:16Z + Bit Rate128 + Sample Rate44100 + CommentsfileRename @ sourceforge.net + Artwork Count1 + Persistent ID570AB6CA65C6AA4D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/41%20Harmonica%20For%20Dummies.mp3 + File Folder Count4 + Library Folder Count1 + + 11268 + + Track ID11268 + NameHarmonica For Dummies + ArtistHarmonica For Dummies + Album ArtistHarmonica For Dummies + AlbumWinslow Yerxa + GenreOther + KindMPEG audio file + Size232856 + Total Time6373 + Track Number42 + Year2010 + Date Modified2013-12-29T12:42:14Z + Date Added2013-12-29T12:40:16Z + Bit Rate128 + Sample Rate44100 + CommentsfileRename @ sourceforge.net + Artwork Count1 + Persistent IDD5055206AA371B40 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/42%20Harmonica%20For%20Dummies.mp3 + File Folder Count4 + Library Folder Count1 + + 11270 + + Track ID11270 + NameHarmonica For Dummies + ArtistHarmonica For Dummies + Album ArtistHarmonica For Dummies + AlbumWinslow Yerxa + GenreOther + KindMPEG audio file + Size1332903 + Total Time75284 + Track Number43 + Year2010 + Date Modified2013-12-29T12:42:13Z + Date Added2013-12-29T12:40:16Z + Bit Rate128 + Sample Rate44100 + CommentsfileRename @ sourceforge.net + Artwork Count1 + Persistent IDB4F3C0D45C699979 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/43%20Harmonica%20For%20Dummies.mp3 + File Folder Count4 + Library Folder Count1 + + 11272 + + Track ID11272 + NameHarmonica For Dummies + ArtistHarmonica For Dummies + Album ArtistHarmonica For Dummies + AlbumWinslow Yerxa + GenreOther + KindMPEG audio file + Size1072695 + Total Time58984 + Track Number44 + Year2010 + Date Modified2013-12-29T12:42:14Z + Date Added2013-12-29T12:40:17Z + Bit Rate128 + Sample Rate44100 + CommentsfileRename @ sourceforge.net + Artwork Count1 + Persistent ID02A67450D79159D0 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/44%20Harmonica%20For%20Dummies.mp3 + File Folder Count4 + Library Folder Count1 + + 11274 + + Track ID11274 + NameHarmonica For Dummies + ArtistHarmonica For Dummies + Album ArtistHarmonica For Dummies + AlbumWinslow Yerxa + GenreOther + KindMPEG audio file + Size513081 + Total Time23928 + Track Number45 + Year2010 + Date Modified2013-12-29T12:42:14Z + Date Added2013-12-29T12:40:17Z + Bit Rate128 + Sample Rate44100 + CommentsfileRename @ sourceforge.net + Artwork Count1 + Persistent ID4BABFE94C4097428 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/45%20Harmonica%20For%20Dummies.mp3 + File Folder Count4 + Library Folder Count1 + + 11276 + + Track ID11276 + NameHarmonica For Dummies + ArtistHarmonica For Dummies + Album ArtistHarmonica For Dummies + AlbumWinslow Yerxa + GenreOther + KindMPEG audio file + Size1505541 + Total Time86099 + Track Number46 + Year2010 + Date Modified2013-12-29T12:42:14Z + Date Added2013-12-29T12:40:17Z + Bit Rate128 + Sample Rate44100 + CommentsfileRename @ sourceforge.net + Artwork Count1 + Persistent ID29E1D8BA25537C8B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/46%20Harmonica%20For%20Dummies.mp3 + File Folder Count4 + Library Folder Count1 + + 11278 + + Track ID11278 + NameHarmonica For Dummies + ArtistHarmonica For Dummies + Album ArtistHarmonica For Dummies + AlbumWinslow Yerxa + GenreOther + KindMPEG audio file + Size1186968 + Total Time87849 + Track Number47 + Year2010 + Date Modified2013-12-29T12:42:14Z + Date Added2013-12-29T12:40:18Z + Bit Rate96 + Sample Rate22050 + CommentsfileRename @ sourceforge.net + Artwork Count1 + Persistent IDEE16A53D0F4EEF99 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/47%20Harmonica%20For%20Dummies.mp3 + File Folder Count4 + Library Folder Count1 + + 11280 + + Track ID11280 + NameHarmonica For Dummies + ArtistHarmonica For Dummies + Album ArtistHarmonica For Dummies + AlbumWinslow Yerxa + GenreOther + KindMPEG audio file + Size1913785 + Total Time111673 + Track Number48 + Year2010 + Date Modified2013-12-29T12:42:14Z + Date Added2013-12-29T12:40:18Z + Bit Rate128 + Sample Rate44100 + CommentsfileRename @ sourceforge.net + Artwork Count1 + Persistent ID36A715FD516E3AD2 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/48%20Harmonica%20For%20Dummies.mp3 + File Folder Count4 + Library Folder Count1 + + 11282 + + Track ID11282 + NameHarmonica For Dummies + ArtistHarmonica For Dummies + Album ArtistHarmonica For Dummies + AlbumWinslow Yerxa + GenreOther + KindMPEG audio file + Size1912951 + Total Time111621 + Track Number49 + Year2010 + Date Modified2013-12-29T12:42:14Z + Date Added2013-12-29T12:40:19Z + Bit Rate128 + Sample Rate44100 + CommentsfileRename @ sourceforge.net + Artwork Count1 + Persistent IDBFFDDFD684C5044E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/49%20Harmonica%20For%20Dummies.mp3 + File Folder Count4 + Library Folder Count1 + + 11284 + + Track ID11284 + NameHarmonica For Dummies + ArtistHarmonica For Dummies + Album ArtistHarmonica For Dummies + AlbumWinslow Yerxa + GenreOther + KindMPEG audio file + Size1480693 + Total Time112326 + Track Number50 + Year2010 + Date Modified2013-12-29T12:42:15Z + Date Added2013-12-29T12:40:20Z + Bit Rate96 + Sample Rate22050 + CommentsfileRename @ sourceforge.net + Artwork Count1 + Persistent ID19EB1048F6582964 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/50%20Harmonica%20For%20Dummies.mp3 + File Folder Count4 + Library Folder Count1 + + 11286 + + Track ID11286 + NameHarmonica For Dummies + ArtistHarmonica For Dummies + Album ArtistHarmonica For Dummies + AlbumWinslow Yerxa + GenreOther + KindMPEG audio file + Size1916704 + Total Time111856 + Track Number51 + Year2010 + Date Modified2013-12-29T12:42:15Z + Date Added2013-12-29T12:40:20Z + Bit Rate128 + Sample Rate44100 + CommentsfileRename @ sourceforge.net + Artwork Count1 + Persistent ID31D904995AD08BD0 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/51%20Harmonica%20For%20Dummies.mp3 + File Folder Count4 + Library Folder Count1 + + 11288 + + Track ID11288 + NameHarmonica For Dummies + ArtistHarmonica For Dummies + Album ArtistHarmonica For Dummies + AlbumWinslow Yerxa + GenreOther + KindMPEG audio file + Size1917955 + Total Time111934 + Track Number52 + Year2010 + Date Modified2013-12-29T12:42:15Z + Date Added2013-12-29T12:40:21Z + Bit Rate128 + Sample Rate44100 + CommentsfileRename @ sourceforge.net + Artwork Count1 + Persistent IDC1E283119955283B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/52%20Harmonica%20For%20Dummies.mp3 + File Folder Count4 + Library Folder Count1 + + 11290 + + Track ID11290 + NameHarmonica For Dummies + ArtistHarmonica For Dummies + Album ArtistHarmonica For Dummies + AlbumWinslow Yerxa + GenreOther + KindMPEG audio file + Size1919206 + Total Time112013 + Track Number53 + Year2010 + Date Modified2013-12-29T12:42:15Z + Date Added2013-12-29T12:40:21Z + Bit Rate128 + Sample Rate44100 + CommentsfileRename @ sourceforge.net + Artwork Count1 + Persistent ID7DE839B4D4C15DB5 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/53%20Harmonica%20For%20Dummies.mp3 + File Folder Count4 + Library Folder Count1 + + 11292 + + Track ID11292 + NameHarmonica For Dummies + ArtistHarmonica For Dummies + Album ArtistHarmonica For Dummies + AlbumWinslow Yerxa + GenreOther + KindMPEG audio file + Size794556 + Total Time41560 + Track Number54 + Year2010 + Date Modified2013-12-29T12:42:16Z + Date Added2013-12-29T12:40:22Z + Bit Rate128 + Sample Rate44100 + CommentsfileRename @ sourceforge.net + Artwork Count1 + Persistent ID5EE1452218B167E1 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/54%20Harmonica%20For%20Dummies.mp3 + File Folder Count4 + Library Folder Count1 + + 11294 + + Track ID11294 + NameHarmonica For Dummies + ArtistHarmonica For Dummies + Album ArtistHarmonica For Dummies + AlbumWinslow Yerxa + GenreOther + KindMPEG audio file + Size677265 + Total Time45374 + Track Number55 + Year2010 + Date Modified2013-12-29T12:42:15Z + Date Added2013-12-29T12:40:22Z + Bit Rate96 + Sample Rate22050 + CommentsfileRename @ sourceforge.net + Artwork Count1 + Persistent IDDE33E11B2FF3322B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/55%20Harmonica%20For%20Dummies.mp3 + File Folder Count4 + Library Folder Count1 + + 11296 + + Track ID11296 + NameHarmonica For Dummies + ArtistHarmonica For Dummies + Album ArtistHarmonica For Dummies + AlbumWinslow Yerxa + GenreOther + KindMPEG audio file + Size648745 + Total Time42997 + Track Number56 + Year2010 + Date Modified2013-12-29T12:42:15Z + Date Added2013-12-29T12:40:22Z + Bit Rate96 + Sample Rate22050 + CommentsfileRename @ sourceforge.net + Artwork Count1 + Persistent IDDF4B0A1A22260C66 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/56%20Harmonica%20For%20Dummies.mp3 + File Folder Count4 + Library Folder Count1 + + 11298 + + Track ID11298 + NameHarmonica For Dummies + ArtistHarmonica For Dummies + Album ArtistHarmonica For Dummies + AlbumWinslow Yerxa + GenreOther + KindMPEG audio file + Size765040 + Total Time52688 + Track Number57 + Year2010 + Date Modified2013-12-29T12:42:15Z + Date Added2013-12-29T12:40:22Z + Bit Rate96 + Sample Rate22050 + CommentsfileRename @ sourceforge.net + Artwork Count1 + Persistent ID57C7B3807FFEC228 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/57%20Harmonica%20For%20Dummies.mp3 + File Folder Count4 + Library Folder Count1 + + 11300 + + Track ID11300 + NameHarmonica For Dummies + ArtistHarmonica For Dummies + Album ArtistHarmonica For Dummies + AlbumWinslow Yerxa + GenreOther + KindMPEG audio file + Size955518 + Total Time51644 + Track Number58 + Year2010 + Date Modified2013-12-29T12:42:15Z + Date Added2013-12-29T12:40:22Z + Bit Rate128 + Sample Rate44100 + CommentsfileRename @ sourceforge.net + Artwork Count1 + Persistent ID9C4DBDE84B721D91 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/58%20Harmonica%20For%20Dummies.mp3 + File Folder Count4 + Library Folder Count1 + + 11302 + + Track ID11302 + NameHarmonica For Dummies + ArtistHarmonica For Dummies + Album ArtistHarmonica For Dummies + AlbumWinslow Yerxa + GenreOther + KindMPEG audio file + Size382294 + Total Time20793 + Track Number59 + Year2010 + Date Modified2013-12-29T12:42:16Z + Date Added2013-12-29T12:40:23Z + Bit Rate96 + Sample Rate22050 + CommentsfileRename @ sourceforge.net + Artwork Count1 + Persistent ID4C10ADB34CEEFE0D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/59%20Harmonica%20For%20Dummies.mp3 + File Folder Count4 + Library Folder Count1 + + 11304 + + Track ID11304 + NameHarmonica For Dummies + ArtistHarmonica For Dummies + Album ArtistHarmonica For Dummies + AlbumWinslow Yerxa + GenreOther + KindMPEG audio file + Size707820 + Total Time36127 + Track Number60 + Year2010 + Date Modified2013-12-29T12:42:16Z + Date Added2013-12-29T12:40:23Z + Bit Rate128 + Sample Rate44100 + CommentsfileRename @ sourceforge.net + Artwork Count1 + Persistent ID7B7EC87C32A70F69 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/60%20Harmonica%20For%20Dummies.mp3 + File Folder Count4 + Library Folder Count1 + + 11306 + + Track ID11306 + NameHarmonica For Dummies + ArtistHarmonica For Dummies + Album ArtistHarmonica For Dummies + AlbumWinslow Yerxa + GenreOther + KindMPEG audio file + Size731172 + Total Time37590 + Track Number61 + Year2010 + Date Modified2013-12-29T12:42:16Z + Date Added2013-12-29T12:40:23Z + Bit Rate128 + Sample Rate44100 + CommentsfileRename @ sourceforge.net + Artwork Count1 + Persistent ID07FDF7694D6CA28A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/61%20Harmonica%20For%20Dummies.mp3 + File Folder Count4 + Library Folder Count1 + + 11308 + + Track ID11308 + NameHarmonica For Dummies + ArtistHarmonica For Dummies + Album ArtistHarmonica For Dummies + AlbumWinslow Yerxa + GenreOther + KindMPEG audio file + Size760362 + Total Time39418 + Track Number62 + Year2010 + Date Modified2013-12-29T12:42:16Z + Date Added2013-12-29T12:40:23Z + Bit Rate128 + Sample Rate44100 + CommentsfileRename @ sourceforge.net + Artwork Count1 + Persistent ID0D91C56A512F7524 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/62%20Harmonica%20For%20Dummies.mp3 + File Folder Count4 + Library Folder Count1 + + 11310 + + Track ID11310 + NameHarmonica For Dummies + ArtistHarmonica For Dummies + Album ArtistHarmonica For Dummies + AlbumWinslow Yerxa + GenreOther + KindMPEG audio file + Size725334 + Total Time37224 + Track Number63 + Year2010 + Date Modified2013-12-29T12:42:16Z + Date Added2013-12-29T12:40:24Z + Bit Rate128 + Sample Rate44100 + CommentsfileRename @ sourceforge.net + Artwork Count1 + Persistent ID9250A0AFE89450FB + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/63%20Harmonica%20For%20Dummies.mp3 + File Folder Count4 + Library Folder Count1 + + 11312 + + Track ID11312 + NameHarmonica For Dummies + ArtistHarmonica For Dummies + Album ArtistHarmonica For Dummies + AlbumWinslow Yerxa + GenreOther + KindMPEG audio file + Size345864 + Total Time13453 + Track Number64 + Year2010 + Date Modified2013-12-29T12:42:16Z + Date Added2013-12-29T12:40:24Z + Bit Rate128 + Sample Rate44100 + CommentsfileRename @ sourceforge.net + Artwork Count1 + Persistent IDD389110B1E2351DD + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/64%20Harmonica%20For%20Dummies.mp3 + File Folder Count4 + Library Folder Count1 + + 11314 + + Track ID11314 + NameHarmonica For Dummies + ArtistHarmonica For Dummies + Album ArtistHarmonica For Dummies + AlbumWinslow Yerxa + GenreOther + KindMPEG audio file + Size245366 + Total Time7157 + Track Number65 + Year2010 + Date Modified2013-12-29T12:42:16Z + Date Added2013-12-29T12:40:24Z + Bit Rate128 + Sample Rate44100 + CommentsfileRename @ sourceforge.net + Artwork Count1 + Persistent IDF64231A000FEB7FA + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/65%20Harmonica%20For%20Dummies.mp3 + File Folder Count4 + Library Folder Count1 + + 11316 + + Track ID11316 + NameHarmonica For Dummies + ArtistHarmonica For Dummies + Album ArtistHarmonica For Dummies + AlbumWinslow Yerxa + GenreOther + KindMPEG audio file + Size297909 + Total Time10448 + Track Number66 + Year2010 + Date Modified2013-12-29T12:42:16Z + Date Added2013-12-29T12:40:24Z + Bit Rate128 + Sample Rate44100 + CommentsfileRename @ sourceforge.net + Artwork Count1 + Persistent ID8AD6F6C182D16B6D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/66%20Harmonica%20For%20Dummies.mp3 + File Folder Count4 + Library Folder Count1 + + 11318 + + Track ID11318 + NameHarmonica For Dummies + ArtistHarmonica For Dummies + Album ArtistHarmonica For Dummies + AlbumWinslow Yerxa + GenreOther + KindMPEG audio file + Size513081 + Total Time23928 + Track Number67 + Year2010 + Date Modified2013-12-29T12:42:16Z + Date Added2013-12-29T12:40:24Z + Bit Rate128 + Sample Rate44100 + CommentsfileRename @ sourceforge.net + Artwork Count1 + Persistent ID4642978DBA68AF6C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/67%20Harmonica%20For%20Dummies.mp3 + File Folder Count4 + Library Folder Count1 + + 11320 + + Track ID11320 + NameHarmonica For Dummies + ArtistHarmonica For Dummies + Album ArtistHarmonica For Dummies + AlbumWinslow Yerxa + GenreOther + KindMPEG audio file + Size1098132 + Total Time60577 + Track Number68 + Year2010 + Date Modified2013-12-29T12:42:16Z + Date Added2013-12-29T12:40:24Z + Bit Rate128 + Sample Rate44100 + CommentsfileRename @ sourceforge.net + Artwork Count1 + Persistent ID7CD3A71EC2151835 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/68%20Harmonica%20For%20Dummies.mp3 + File Folder Count4 + Library Folder Count1 + + 11322 + + Track ID11322 + NameHarmonica For Dummies + ArtistHarmonica For Dummies + Album ArtistHarmonica For Dummies + AlbumWinslow Yerxa + GenreOther + KindMPEG audio file + Size446361 + Total Time19748 + Track Number69 + Year2010 + Date Modified2013-12-29T12:42:17Z + Date Added2013-12-29T12:40:25Z + Bit Rate128 + Sample Rate44100 + CommentsfileRename @ sourceforge.net + Artwork Count1 + Persistent ID5FA157665288342B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/69%20Harmonica%20For%20Dummies.mp3 + File Folder Count4 + Library Folder Count1 + + 11324 + + Track ID11324 + NameHarmonica For Dummies + ArtistHarmonica For Dummies + Album ArtistHarmonica For Dummies + AlbumWinslow Yerxa + GenreOther + KindMPEG audio file + Size910482 + Total Time48822 + Track Number70 + Year2010 + Date Modified2013-12-29T12:42:17Z + Date Added2013-12-29T12:40:25Z + Bit Rate128 + Sample Rate44100 + CommentsfileRename @ sourceforge.net + Artwork Count1 + Persistent ID180F0E3D6A99E1A3 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/70%20Harmonica%20For%20Dummies.mp3 + File Folder Count4 + Library Folder Count1 + + 11326 + + Track ID11326 + NameHarmonica For Dummies + ArtistHarmonica For Dummies + Album ArtistHarmonica For Dummies + AlbumWinslow Yerxa + GenreOther + KindMPEG audio file + Size461373 + Total Time20688 + Track Number71 + Year2010 + Date Modified2013-12-29T12:42:17Z + Date Added2013-12-29T12:40:25Z + Bit Rate128 + Sample Rate44100 + CommentsfileRename @ sourceforge.net + Artwork Count1 + Persistent IDD791B54A691BEF6C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/71%20Harmonica%20For%20Dummies.mp3 + File Folder Count4 + Library Folder Count1 + + 11328 + + Track ID11328 + NameHarmonica For Dummies + ArtistHarmonica For Dummies + Album ArtistHarmonica For Dummies + AlbumWinslow Yerxa + GenreOther + KindMPEG audio file + Size656946 + Total Time32940 + Track Number72 + Year2010 + Date Modified2013-12-29T12:42:17Z + Date Added2013-12-29T12:40:25Z + Bit Rate128 + Sample Rate44100 + CommentsfileRename @ sourceforge.net + Artwork Count1 + Persistent ID3BDE67351F0BEEF7 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/72%20Harmonica%20For%20Dummies.mp3 + File Folder Count4 + Library Folder Count1 + + 11330 + + Track ID11330 + NameHarmonica For Dummies + ArtistHarmonica For Dummies + Album ArtistHarmonica For Dummies + AlbumWinslow Yerxa + GenreOther + KindMPEG audio file + Size1451748 + Total Time82729 + Track Number73 + Year2010 + Date Modified2013-12-29T12:42:16Z + Date Added2013-12-29T12:40:25Z + Bit Rate128 + Sample Rate44100 + CommentsfileRename @ sourceforge.net + Artwork Count1 + Persistent IDFE4BD423A2249F0A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/73%20Harmonica%20For%20Dummies.mp3 + File Folder Count4 + Library Folder Count1 + + 11332 + + Track ID11332 + NameHarmonica For Dummies + ArtistHarmonica For Dummies + Album ArtistHarmonica For Dummies + AlbumWinslow Yerxa + GenreOther + KindMPEG audio file + Size713658 + Total Time36493 + Track Number74 + Year2010 + Date Modified2013-12-29T12:42:18Z + Date Added2013-12-29T12:40:26Z + Bit Rate128 + Sample Rate44100 + CommentsfileRename @ sourceforge.net + Artwork Count1 + Persistent ID862BF307B9395347 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/74%20Harmonica%20For%20Dummies.mp3 + File Folder Count4 + Library Folder Count1 + + 11334 + + Track ID11334 + NameHarmonica For Dummies + ArtistHarmonica For Dummies + Album ArtistHarmonica For Dummies + AlbumWinslow Yerxa + GenreOther + KindMPEG audio file + Size724500 + Total Time37172 + Track Number75 + Year2010 + Date Modified2013-12-29T12:42:18Z + Date Added2013-12-29T12:40:26Z + Bit Rate128 + Sample Rate44100 + CommentsfileRename @ sourceforge.net + Artwork Count1 + Persistent IDBE8B801230ADF8FF + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/75%20Harmonica%20For%20Dummies.mp3 + File Folder Count4 + Library Folder Count1 + + 11336 + + Track ID11336 + NameHarmonica For Dummies + ArtistHarmonica For Dummies + Album ArtistHarmonica For Dummies + AlbumWinslow Yerxa + GenreOther + KindMPEG audio file + Size711990 + Total Time36388 + Track Number76 + Year2010 + Date Modified2013-12-29T12:42:18Z + Date Added2013-12-29T12:40:26Z + Bit Rate128 + Sample Rate44100 + CommentsfileRename @ sourceforge.net + Artwork Count1 + Persistent IDE1B9881B500AB8E4 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/76%20Harmonica%20For%20Dummies.mp3 + File Folder Count4 + Library Folder Count1 + + 11338 + + Track ID11338 + NameHarmonica For Dummies + ArtistHarmonica For Dummies + Album ArtistHarmonica For Dummies + AlbumWinslow Yerxa + GenreOther + KindMPEG audio file + Size613161 + Total Time30197 + Track Number77 + Year2010 + Date Modified2013-12-29T12:42:18Z + Date Added2013-12-29T12:40:27Z + Bit Rate128 + Sample Rate44100 + CommentsfileRename @ sourceforge.net + Artwork Count1 + Persistent IDA0B0B506F6507C72 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/77%20Harmonica%20For%20Dummies.mp3 + File Folder Count4 + Library Folder Count1 + + 11340 + + Track ID11340 + NameHarmonica For Dummies + ArtistHarmonica For Dummies + Album ArtistHarmonica For Dummies + AlbumWinslow Yerxa + GenreOther + KindMPEG audio file + Size1260762 + Total Time70765 + Track Number78 + Year2010 + Date Modified2013-12-29T12:42:18Z + Date Added2013-12-29T12:40:27Z + Bit Rate128 + Sample Rate44100 + CommentsfileRename @ sourceforge.net + Artwork Count1 + Persistent ID3940123B7991AF6C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/78%20Harmonica%20For%20Dummies.mp3 + File Folder Count4 + Library Folder Count1 + + 11342 + + Track ID11342 + NameHarmonica For Dummies + ArtistHarmonica For Dummies + Album ArtistHarmonica For Dummies + AlbumWinslow Yerxa + GenreOther + KindMPEG audio file + Size958073 + Total Time69015 + Track Number79 + Year2010 + Date Modified2013-12-29T12:42:18Z + Date Added2013-12-29T12:40:27Z + Bit Rate96 + Sample Rate22050 + CommentsfileRename @ sourceforge.net + Artwork Count1 + Persistent ID55F98F7808CA7F61 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/79%20Harmonica%20For%20Dummies.mp3 + File Folder Count4 + Library Folder Count1 + + 11344 + + Track ID11344 + NameHarmonica For Dummies + ArtistHarmonica For Dummies + Album ArtistHarmonica For Dummies + AlbumWinslow Yerxa + GenreOther + KindMPEG audio file + Size413010 + Total Time23353 + Track Number80 + Year2010 + Date Modified2013-12-29T12:42:18Z + Date Added2013-12-29T12:40:27Z + Bit Rate96 + Sample Rate22050 + CommentsfileRename @ sourceforge.net + Artwork Count1 + Persistent IDB21A9617487FFB34 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/80%20Harmonica%20For%20Dummies.mp3 + File Folder Count4 + Library Folder Count1 + + 11346 + + Track ID11346 + NameHarmonica For Dummies + ArtistHarmonica For Dummies + Album ArtistHarmonica For Dummies + AlbumWinslow Yerxa + GenreOther + KindMPEG audio file + Size510162 + Total Time23745 + Track Number81 + Year2010 + Date Modified2013-12-29T12:42:19Z + Date Added2013-12-29T12:40:28Z + Bit Rate128 + Sample Rate44100 + CommentsfileRename @ sourceforge.net + Artwork Count1 + Persistent ID5EE281C3D6E5D76B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/81%20Harmonica%20For%20Dummies.mp3 + File Folder Count4 + Library Folder Count1 + + 11348 + + Track ID11348 + NameHarmonica For Dummies + ArtistHarmonica For Dummies + Album ArtistHarmonica For Dummies + AlbumWinslow Yerxa + GenreOther + KindMPEG audio file + Size490563 + Total Time22465 + Track Number82 + Year2010 + Date Modified2013-12-29T12:42:19Z + Date Added2013-12-29T12:40:28Z + Bit Rate128 + Sample Rate44100 + CommentsfileRename @ sourceforge.net + Artwork Count1 + Persistent ID48E1314CBBCAE832 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/82%20Harmonica%20For%20Dummies.mp3 + File Folder Count4 + Library Folder Count1 + + 11350 + + Track ID11350 + NameHarmonica For Dummies + ArtistHarmonica For Dummies + Album ArtistHarmonica For Dummies + AlbumWinslow Yerxa + GenreOther + KindMPEG audio file + Size586473 + Total Time28525 + Track Number83 + Year2010 + Date Modified2013-12-29T12:42:19Z + Date Added2013-12-29T12:40:28Z + Bit Rate128 + Sample Rate44100 + CommentsfileRename @ sourceforge.net + Artwork Count1 + Persistent ID965DD5D924D4C220 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/83%20Harmonica%20For%20Dummies.mp3 + File Folder Count4 + Library Folder Count1 + + 11352 + + Track ID11352 + NameHarmonica For Dummies + ArtistHarmonica For Dummies + Album ArtistHarmonica For Dummies + AlbumWinslow Yerxa + GenreOther + KindMPEG audio file + Size444046 + Total Time25939 + Track Number84 + Year2010 + Date Modified2013-12-29T12:42:19Z + Date Added2013-12-29T12:40:28Z + Bit Rate96 + Sample Rate22050 + CommentsfileRename @ sourceforge.net + Artwork Count1 + Persistent ID01E28D793506C2A6 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/84%20Harmonica%20For%20Dummies.mp3 + File Folder Count4 + Library Folder Count1 + + 11354 + + Track ID11354 + NameHarmonica For Dummies + ArtistHarmonica For Dummies + Album ArtistHarmonica For Dummies + AlbumWinslow Yerxa + GenreOther + KindMPEG audio file + Size541854 + Total Time25730 + Track Number85 + Year2010 + Date Modified2013-12-29T12:42:18Z + Date Added2013-12-29T12:40:28Z + Bit Rate128 + Sample Rate44100 + CommentsfileRename @ sourceforge.net + Artwork Count1 + Persistent ID1D758149D5135236 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/85%20Harmonica%20For%20Dummies.mp3 + File Folder Count4 + Library Folder Count1 + + 11356 + + Track ID11356 + NameHarmonica For Dummies + ArtistHarmonica For Dummies + Album ArtistHarmonica For Dummies + AlbumWinslow Yerxa + GenreOther + KindMPEG audio file + Size497235 + Total Time22883 + Track Number86 + Year2010 + Date Modified2013-12-29T12:42:18Z + Date Added2013-12-29T12:40:28Z + Bit Rate128 + Sample Rate44100 + CommentsfileRename @ sourceforge.net + Artwork Count1 + Persistent ID9CB1EEF44ACA6615 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/86%20Harmonica%20For%20Dummies.mp3 + File Folder Count4 + Library Folder Count1 + + 11358 + + Track ID11358 + NameHarmonica For Dummies + ArtistHarmonica For Dummies + Album ArtistHarmonica For Dummies + AlbumWinslow Yerxa + GenreOther + KindMPEG audio file + Size529344 + Total Time24946 + Track Number87 + Year2010 + Date Modified2013-12-29T12:42:18Z + Date Added2013-12-29T12:40:28Z + Bit Rate128 + Sample Rate44100 + CommentsfileRename @ sourceforge.net + Artwork Count1 + Persistent ID19BAE7DE41F30299 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/87%20Harmonica%20For%20Dummies.mp3 + File Folder Count4 + Library Folder Count1 + + 11360 + + Track ID11360 + NameHarmonica For Dummies + ArtistHarmonica For Dummies + Album ArtistHarmonica For Dummies + AlbumWinslow Yerxa + GenreOther + KindMPEG audio file + Size526842 + Total Time24790 + Track Number88 + Year2010 + Date Modified2013-12-29T12:42:18Z + Date Added2013-12-29T12:40:28Z + Bit Rate128 + Sample Rate44100 + CommentsfileRename @ sourceforge.net + Artwork Count1 + Persistent ID2CC6B329193469A2 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/88%20Harmonica%20For%20Dummies.mp3 + File Folder Count4 + Library Folder Count1 + + 11362 + + Track ID11362 + NameHarmonica For Dummies + ArtistHarmonica For Dummies + Album ArtistHarmonica For Dummies + AlbumWinslow Yerxa + GenreOther + KindMPEG audio file + Size767034 + Total Time39836 + Track Number89 + Year2010 + Date Modified2013-12-29T12:42:18Z + Date Added2013-12-29T12:40:28Z + Bit Rate128 + Sample Rate44100 + CommentsfileRename @ sourceforge.net + Artwork Count1 + Persistent ID4DC10283B6A7E59D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/89%20Harmonica%20For%20Dummies.mp3 + File Folder Count4 + Library Folder Count1 + + 11364 + + Track ID11364 + NameHarmonica For Dummies + ArtistHarmonica For Dummies + Album ArtistHarmonica For Dummies + AlbumWinslow Yerxa + GenreOther + KindMPEG audio file + Size880458 + Total Time46942 + Track Number90 + Year2010 + Date Modified2013-12-29T12:42:19Z + Date Added2013-12-29T12:40:29Z + Bit Rate128 + Sample Rate44100 + CommentsfileRename @ sourceforge.net + Artwork Count1 + Persistent ID43E45F41EF8E5EA4 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/90%20Harmonica%20For%20Dummies.mp3 + File Folder Count4 + Library Folder Count1 + + 11366 + + Track ID11366 + NameHarmonica For Dummies + ArtistHarmonica For Dummies + Album ArtistHarmonica For Dummies + AlbumWinslow Yerxa + GenreOther + KindMPEG audio file + Size531012 + Total Time25051 + Track Number91 + Year2010 + Date Modified2013-12-29T12:42:19Z + Date Added2013-12-29T12:40:29Z + Bit Rate128 + Sample Rate44100 + CommentsfileRename @ sourceforge.net + Artwork Count1 + Persistent IDBFFD85530D7188E9 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/91%20Harmonica%20For%20Dummies.mp3 + File Folder Count4 + Library Folder Count1 + + 11368 + + Track ID11368 + NameHarmonica For Dummies + ArtistHarmonica For Dummies + Album ArtistHarmonica For Dummies + AlbumWinslow Yerxa + GenreOther + KindMPEG audio file + Size749937 + Total Time38765 + Track Number92 + Year2010 + Date Modified2013-12-29T12:42:19Z + Date Added2013-12-29T12:40:29Z + Bit Rate128 + Sample Rate44100 + CommentsfileRename @ sourceforge.net + Artwork Count1 + Persistent ID69312C2223A9D0B0 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/92%20Harmonica%20For%20Dummies.mp3 + File Folder Count4 + Library Folder Count1 + + 11370 + + Track ID11370 + NameHarmonica For Dummies + ArtistHarmonica For Dummies + Album ArtistHarmonica For Dummies + AlbumWinslow Yerxa + GenreOther + KindMPEG audio file + Size526008 + Total Time24737 + Track Number93 + Year2010 + Date Modified2013-12-29T12:42:20Z + Date Added2013-12-29T12:40:30Z + Bit Rate128 + Sample Rate44100 + CommentsfileRename @ sourceforge.net + Artwork Count1 + Persistent ID85BADF39EC631830 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/93%20Harmonica%20For%20Dummies.mp3 + File Folder Count4 + Library Folder Count1 + + 11372 + + Track ID11372 + NameHarmonica For Dummies + ArtistHarmonica For Dummies + Album ArtistHarmonica For Dummies + AlbumWinslow Yerxa + GenreOther + KindMPEG audio file + Size711990 + Total Time36388 + Track Number94 + Year2010 + Date Modified2013-12-29T12:42:20Z + Date Added2013-12-29T12:40:30Z + Bit Rate128 + Sample Rate44100 + CommentsfileRename @ sourceforge.net + Artwork Count1 + Persistent IDFFA2F5923CBA7D85 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/94%20Harmonica%20For%20Dummies.mp3 + File Folder Count4 + Library Folder Count1 + + 11374 + + Track ID11374 + NameHarmonica For Dummies + ArtistHarmonica For Dummies + Album ArtistHarmonica For Dummies + AlbumWinslow Yerxa + GenreOther + KindMPEG audio file + Size532263 + Total Time25129 + Track Number95 + Year2010 + Date Modified2013-12-29T12:42:19Z + Date Added2013-12-29T12:40:30Z + Bit Rate128 + Sample Rate44100 + CommentsfileRename @ sourceforge.net + Artwork Count1 + Persistent ID84A7A210D9D9F1AB + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/95%20Harmonica%20For%20Dummies.mp3 + File Folder Count4 + Library Folder Count1 + + 11376 + + Track ID11376 + NameHarmonica For Dummies + ArtistHarmonica For Dummies + Album ArtistHarmonica For Dummies + AlbumWinslow Yerxa + GenreOther + KindMPEG audio file + Size505992 + Total Time23405 + Track Number96 + Year2010 + Date Modified2013-12-29T12:42:19Z + Date Added2013-12-29T12:40:30Z + Bit Rate128 + Sample Rate44100 + CommentsfileRename @ sourceforge.net + Artwork Count1 + Persistent ID2504A711B899BFD5 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/96%20Harmonica%20For%20Dummies.mp3 + File Folder Count4 + Library Folder Count1 + + 11378 + + Track ID11378 + NameHarmonica For Dummies + ArtistHarmonica For Dummies + Album ArtistHarmonica For Dummies + AlbumWinslow Yerxa + GenreOther + KindMPEG audio file + Size1087596 + Total Time79568 + Track Number97 + Year2010 + Date Modified2013-12-29T12:42:19Z + Date Added2013-12-29T12:40:30Z + Bit Rate96 + Sample Rate22050 + CommentsfileRename @ sourceforge.net + Artwork Count1 + Persistent ID1E34691E2CE4BEEB + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/97%20Harmonica%20For%20Dummies.mp3 + File Folder Count4 + Library Folder Count1 + + 11380 + + Track ID11380 + NameHarmonica For Dummies + ArtistHarmonica For Dummies + Album ArtistHarmonica For Dummies + AlbumWinslow Yerxa + GenreOther + KindMPEG audio file + Size1815790 + Total Time105534 + Track Number98 + Year2010 + Date Modified2013-12-29T12:42:19Z + Date Added2013-12-29T12:40:30Z + Bit Rate128 + Sample Rate44100 + CommentsfileRename @ sourceforge.net + Artwork Count1 + Persistent IDFE768BF2913F5726 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/98%20Harmonica%20For%20Dummies.mp3 + File Folder Count4 + Library Folder Count1 + + 11382 + + Track ID11382 + NameUnexplainable Stories + ArtistCloud Cult + Album ArtistCloud Cult + ComposerCraig Minowa + AlbumLight Chasers + GenreAlternative + KindPurchased AAC audio file + Size9910999 + Total Time279360 + Disc Number1 + Disc Count1 + Track Number1 + Track Count16 + Year2010 + Date Modified2013-12-29T13:05:01Z + Date Added2013-12-29T13:04:48Z + Bit Rate256 + Sample Rate44100 + Release Date2010-09-14T07:00:00Z + Normalization3649 + Artwork Count1 + Persistent ID0186FCBD79B199A9 + Track TypeFile + Purchased + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Cloud%20Cult/Light%20Chasers/01%20Unexplainable%20Stories.m4a + File Folder Count4 + Library Folder Count1 + + 11384 + + Track ID11384 + NameToday We Give Ourselves to the Fire + ArtistCloud Cult + Album ArtistCloud Cult + ComposerCraig Minowa + AlbumLight Chasers + GenreAlternative + KindPurchased AAC audio file + Size6677697 + Total Time180560 + Disc Number1 + Disc Count1 + Track Number2 + Track Count16 + Year2010 + Date Modified2013-12-29T13:05:07Z + Date Added2013-12-29T13:04:48Z + Bit Rate256 + Sample Rate44100 + Release Date2010-09-14T07:00:00Z + Normalization4470 + Artwork Count1 + Persistent ID0186FCBD79B199AA + Track TypeFile + Purchased + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Cloud%20Cult/Light%20Chasers/02%20Today%20We%20Give%20Ourselves%20to%20the%20Fire.m4a + File Folder Count4 + Library Folder Count1 + + 11386 + + Track ID11386 + NameYou'll Be Bright (Invocation Part 1) + ArtistCloud Cult + Album ArtistCloud Cult + ComposerCraig Minowa + AlbumLight Chasers + GenreAlternative + KindPurchased AAC audio file + Size8307083 + Total Time236133 + Disc Number1 + Disc Count1 + Track Number3 + Track Count16 + Year2010 + Date Modified2013-12-29T13:05:03Z + Date Added2013-12-29T13:04:49Z + Bit Rate256 + Sample Rate44100 + Release Date2010-09-14T07:00:00Z + Normalization5915 + Artwork Count1 + Persistent ID0186FCBD79B199AB + Track TypeFile + Purchased + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Cloud%20Cult/Light%20Chasers/03%20You'll%20Be%20Bright%20(Invocation%20Part%201).m4a + File Folder Count4 + Library Folder Count1 + + 11388 + + Track ID11388 + NameThe Birth (Journey to the Light Part 2) + ArtistCloud Cult + Album ArtistCloud Cult + ComposerCraig Minowa + AlbumLight Chasers + GenreAlternative + KindPurchased AAC audio file + Size3359424 + Total Time87760 + Disc Number1 + Disc Count1 + Track Number4 + Track Count16 + Year2010 + Date Modified2013-12-29T13:04:59Z + Date Added2013-12-29T13:04:49Z + Bit Rate256 + Sample Rate44100 + Release Date2010-09-14T07:00:00Z + Normalization597 + Artwork Count1 + Sort NameBirth (Journey to the Light Part 2) + Persistent ID0186FCBD79B199AC + Track TypeFile + Purchased + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Cloud%20Cult/Light%20Chasers/04%20The%20Birth%20(Journey%20to%20the%20Light%20Part%202).m4a + File Folder Count4 + Library Folder Count1 + + 11390 + + Track ID11390 + NameYou Were Born + ArtistCloud Cult + Album ArtistCloud Cult + ComposerCraig Minowa + AlbumLight Chasers + GenreAlternative + KindPurchased AAC audio file + Size5627244 + Total Time153813 + Disc Number1 + Disc Count1 + Track Number5 + Track Count16 + Year2010 + Date Modified2013-12-29T13:05:05Z + Date Added2013-12-29T13:04:49Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3482386800 + Play Date UTC2014-05-08T04:10:00Z + Release Date2010-09-14T07:00:00Z + Normalization1186 + Artwork Count1 + Persistent ID0186FCBD79B199AD + Track TypeFile + Purchased + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Cloud%20Cult/Light%20Chasers/05%20You%20Were%20Born.m4a + File Folder Count4 + Library Folder Count1 + + 11392 + + Track ID11392 + NameThe Exploding People + ArtistCloud Cult + Album ArtistCloud Cult + ComposerCraig Minowa + AlbumLight Chasers + GenreAlternative + KindPurchased AAC audio file + Size9625334 + Total Time268986 + Disc Number1 + Disc Count1 + Track Number6 + Track Count16 + Year2010 + Date Modified2013-12-29T13:05:02Z + Date Added2013-12-29T13:04:49Z + Bit Rate256 + Sample Rate44100 + Release Date2010-09-14T07:00:00Z + Normalization2658 + Artwork Count1 + Sort NameExploding People + Persistent ID0186FCBD79B199AE + Track TypeFile + Purchased + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Cloud%20Cult/Light%20Chasers/06%20The%20Exploding%20People.m4a + File Folder Count4 + Library Folder Count1 + + 11394 + + Track ID11394 + NameThe Interference (Journey to the Light Part 3) + ArtistCloud Cult + Album ArtistCloud Cult + ComposerCraig Minowa + AlbumLight Chasers + GenreAlternative + KindPurchased AAC audio file + Size3659781 + Total Time95600 + Disc Number1 + Disc Count1 + Track Number7 + Track Count16 + Year2010 + Date Modified2013-12-29T13:04:56Z + Date Added2013-12-29T13:04:49Z + Bit Rate256 + Sample Rate44100 + Release Date2010-09-14T07:00:00Z + Normalization378 + Artwork Count1 + Sort NameInterference (Journey to the Light Part 3) + Persistent ID0186FCBD79B199AF + Track TypeFile + Purchased + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Cloud%20Cult/Light%20Chasers/07%20The%20Interference%20(Journey%20to%20the%20Light%20Part%203).m4a + File Folder Count4 + Library Folder Count1 + + 11396 + + Track ID11396 + NameRoom Full of People in Your Head + ArtistCloud Cult + Album ArtistCloud Cult + ComposerCraig Minowa + AlbumLight Chasers + GenreAlternative + KindPurchased AAC audio file + Size9495285 + Total Time270960 + Disc Number1 + Disc Count1 + Track Number8 + Track Count16 + Year2010 + Date Modified2013-12-29T13:05:04Z + Date Added2013-12-29T13:04:49Z + Bit Rate256 + Sample Rate44100 + Release Date2010-09-14T07:00:00Z + Normalization4837 + Artwork Count1 + Persistent ID0186FCBD79B199B0 + Track TypeFile + Purchased + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Cloud%20Cult/Light%20Chasers/08%20Room%20Full%20of%20People%20in%20Your%20Head.m4a + File Folder Count4 + Library Folder Count1 + + 11398 + + Track ID11398 + NameRunning With the Wolves + ArtistCloud Cult + Album ArtistCloud Cult + ComposerCraig Minowa + AlbumLight Chasers + GenreAlternative + KindPurchased AAC audio file + Size7664561 + Total Time211360 + Disc Number1 + Disc Count1 + Track Number9 + Track Count16 + Year2010 + Date Modified2013-12-29T13:04:59Z + Date Added2013-12-29T13:04:49Z + Bit Rate256 + Sample Rate44100 + Release Date2010-09-14T07:00:00Z + Normalization3915 + Artwork Count1 + Persistent ID0186FCBD79B199B1 + Track TypeFile + Purchased + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Cloud%20Cult/Light%20Chasers/09%20Running%20With%20the%20Wolves.m4a + File Folder Count4 + Library Folder Count1 + + 11400 + + Track ID11400 + NameResponsible + ArtistCloud Cult + Album ArtistCloud Cult + ComposerCraig Minowa + AlbumLight Chasers + GenreAlternative + KindPurchased AAC audio file + Size5902217 + Total Time164053 + Disc Number1 + Disc Count1 + Track Number10 + Track Count16 + Year2010 + Date Modified2013-12-29T13:04:58Z + Date Added2013-12-29T13:04:49Z + Bit Rate256 + Sample Rate44100 + Release Date2010-09-14T07:00:00Z + Normalization1432 + Artwork Count1 + Persistent ID0186FCBD79B199B2 + Track TypeFile + Purchased + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Cloud%20Cult/Light%20Chasers/10%20Responsible.m4a + File Folder Count4 + Library Folder Count1 + + 11402 + + Track ID11402 + NameThe Guessing Game (Journey to the Light Part 4) + ArtistCloud Cult + Album ArtistCloud Cult + ComposerCraig Minowa + AlbumLight Chasers + GenreAlternative + KindPurchased AAC audio file + Size4263661 + Total Time111093 + Disc Number1 + Disc Count1 + Track Number11 + Track Count16 + Year2010 + Date Modified2013-12-29T13:05:05Z + Date Added2013-12-29T13:04:49Z + Bit Rate256 + Sample Rate44100 + Release Date2010-09-14T07:00:00Z + Normalization2034 + Artwork Count1 + Sort NameGuessing Game (Journey to the Light Part 4) + Persistent ID0186FCBD79B199B3 + Track TypeFile + Purchased + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Cloud%20Cult/Light%20Chasers/11%20The%20Guessing%20Game%20(Journey%20to%20the%20Light%20Part%204).m4a + File Folder Count4 + Library Folder Count1 + + 11404 + + Track ID11404 + NameForces of the Unseen + ArtistCloud Cult + Album ArtistCloud Cult + ComposerCraig Minowa + AlbumLight Chasers + GenreAlternative + KindPurchased AAC audio file + Size8218398 + Total Time227840 + Disc Number1 + Disc Count1 + Track Number12 + Track Count16 + Year2010 + Date Modified2013-12-29T13:05:01Z + Date Added2013-12-29T13:04:49Z + Bit Rate256 + Sample Rate44100 + Release Date2010-09-14T07:00:00Z + Normalization3472 + Artwork Count1 + Persistent ID0186FCBD79B199B4 + Track TypeFile + Purchased + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Cloud%20Cult/Light%20Chasers/12%20Forces%20of%20the%20Unseen.m4a + File Folder Count4 + Library Folder Count1 + + 11406 + + Track ID11406 + NameBlessings (Invocation Part 2) + ArtistCloud Cult + Album ArtistCloud Cult + ComposerCraig Minowa + AlbumLight Chasers + GenreAlternative + KindPurchased AAC audio file + Size13903753 + Total Time397280 + Disc Number1 + Disc Count1 + Track Number13 + Track Count16 + Year2010 + Date Modified2013-12-29T13:04:57Z + Date Added2013-12-29T13:04:49Z + Bit Rate256 + Sample Rate44100 + Release Date2010-09-14T07:00:00Z + Normalization2769 + Artwork Count1 + Persistent ID0186FCBD79B199B5 + Track TypeFile + Purchased + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Cloud%20Cult/Light%20Chasers/13%20Blessings%20(Invocation%20Part%202).m4a + File Folder Count4 + Library Folder Count1 + + 11408 + + Track ID11408 + NameDawn + ArtistCloud Cult + Album ArtistCloud Cult + ComposerCraig Minowa + AlbumLight Chasers + GenreAlternative + KindPurchased AAC audio file + Size7056178 + Total Time184586 + Disc Number1 + Disc Count1 + Track Number14 + Track Count16 + Year2010 + Date Modified2013-12-29T13:05:04Z + Date Added2013-12-29T13:04:49Z + Bit Rate256 + Sample Rate44100 + Release Date2010-09-14T07:00:00Z + Normalization1161 + Artwork Count1 + Persistent ID0186FCBD79B199B6 + Track TypeFile + Purchased + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Cloud%20Cult/Light%20Chasers/14%20Dawn.m4a + File Folder Count4 + Library Folder Count1 + + 11410 + + Track ID11410 + NameThe Contact (Journey to the Light Part 5) + ArtistCloud Cult + Album ArtistCloud Cult + ComposerCraig Minowa + AlbumLight Chasers + GenreAlternative + KindPurchased AAC audio file + Size3234354 + Total Time81920 + Disc Number1 + Disc Count1 + Track Number15 + Track Count16 + Year2010 + Date Modified2013-12-29T13:05:00Z + Date Added2013-12-29T13:04:49Z + Bit Rate256 + Sample Rate44100 + Release Date2010-09-14T07:00:00Z + Normalization256 + Artwork Count1 + Sort NameContact (Journey to the Light Part 5) + Persistent ID0186FCBD79B199B7 + Track TypeFile + Purchased + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Cloud%20Cult/Light%20Chasers/15%20The%20Contact%20(Journey%20to%20the%20Light%20Part%205).m4a + File Folder Count4 + Library Folder Count1 + + 11412 + + Track ID11412 + NameThere's So Much Energy in Us + ArtistCloud Cult + Album ArtistCloud Cult + ComposerCraig Minowa + AlbumLight Chasers + GenreAlternative + KindPurchased AAC audio file + Size15403660 + Total Time443386 + Disc Number1 + Disc Count1 + Track Number16 + Track Count16 + Year2010 + Date Modified2013-12-29T13:05:06Z + Date Added2013-12-29T13:04:49Z + Bit Rate256 + Sample Rate44100 + Release Date2010-09-14T07:00:00Z + Normalization3164 + Artwork Count1 + Persistent ID0186FCBD79B199B8 + Track TypeFile + Purchased + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Cloud%20Cult/Light%20Chasers/16%20There's%20So%20Much%20Energy%20in%20Us.m4a + File Folder Count4 + Library Folder Count1 + + 11434 + + Track ID11434 + NameTrack 01 + KindAAC audio file + Size40409397 + Total Time1223400 + Track Number1 + Track Count1 + Date Modified2014-04-28T07:20:49Z + Date Added2014-04-28T07:19:15Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3482581720 + Play Date UTC2014-05-10T10:18:40Z + Normalization1221 + Persistent ID6AD0D7AA8446CB0C + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Unknown%20Artist/Unknown%20Album/01%20Track%2001.m4a + File Folder Count4 + Library Folder Count1 + + 11450 + + Track ID11450 + NameIntroduction By H.H.Sri Sri Ravi Shankar + ArtistSri Sri Ravi Shankar + ComposerThe Art Of Living + AlbumHari Om + GenreReligious + KindAAC audio file + Size11406651 + Total Time348706 + Disc Number1 + Disc Count1 + Track Number1 + Track Count4 + Year2008 + Date Modified2014-05-10T15:39:17Z + Date Added2014-05-10T15:38:18Z + Bit Rate256 + Sample Rate44100 + Normalization664 + Sort ComposerArt Of Living + Persistent ID01C11D6C46405BD0 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Sri%20Sri%20Ravi%20Shankar/Hari%20Om/01%20Introduction%20By%20H.H.Sri%20Sri%20Ravi%20Shankar.m4a + File Folder Count4 + Library Folder Count1 + + 11452 + + Track ID11452 + NameHari Om Meditation (Hindi) + ArtistSri Sri Ravi Shankar + ComposerThe Art Of Living + AlbumHari Om + GenreReligious + KindAAC audio file + Size43038080 + Total Time1354040 + Disc Number1 + Disc Count1 + Track Number2 + Track Count4 + Date Modified2014-05-10T15:42:18Z + Date Added2014-05-10T15:39:19Z + Bit Rate256 + Sample Rate44100 + Normalization1022 + Sort ComposerArt Of Living + Persistent IDEBE30962C0B48981 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Sri%20Sri%20Ravi%20Shankar/Hari%20Om/02%20Hari%20Om%20Meditation%20(Hindi).m4a + File Folder Count4 + Library Folder Count1 + + 11454 + + Track ID11454 + NameIntroduction By H.H.Sri Sri Ravi Shankar (Hindi) + ArtistSri Sri Ravi Shankar + ComposerThe Art Of Living + AlbumHari Om + GenreReligious + KindAAC audio file + Size8461210 + Total Time258026 + Disc Number1 + Disc Count1 + Track Number3 + Track Count4 + Date Modified2014-05-10T15:42:47Z + Date Added2014-05-10T15:42:20Z + Bit Rate256 + Sample Rate44100 + Normalization676 + Sort ComposerArt Of Living + Persistent ID6AC5CDDB2DE9D176 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Sri%20Sri%20Ravi%20Shankar/Hari%20Om/03%20Introduction%20By%20H.H.Sri%20Sri%20Ravi%20Shankar%20(Hindi).m4a + File Folder Count4 + Library Folder Count1 + + 11456 + + Track ID11456 + NameHari Om Meditation (English Version) + ArtistSri Sri Ravi Shankar + ComposerThe Art Of Living + AlbumHari Om + GenreReligious + KindAAC audio file + Size44359288 + Total Time1341653 + Disc Number1 + Disc Count1 + Track Number4 + Track Count4 + Date Modified2014-05-10T15:45:12Z + Date Added2014-05-10T15:42:49Z + Bit Rate256 + Sample Rate44100 + Normalization1259 + Sort ComposerArt Of Living + Persistent ID18B355ED28F061B4 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Sri%20Sri%20Ravi%20Shankar/Hari%20Om/04%20Hari%20Om%20Meditation%20(English%20Version).m4a + File Folder Count4 + Library Folder Count1 + + 11458 + + Track ID11458 + NameAcross The Universe + ArtistThe Beatles + ComposerLennon/McCartney + AlbumLet It Be + GenreRock + KindAAC audio file + Size7468987 + Total Time228586 + Disc Number1 + Disc Count1 + Track Number3 + Track Count12 + Year1970 + Date Modified2014-05-16T15:54:27Z + Date Added2014-05-16T15:54:21Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3393072210 + Play Date UTC2011-07-09T10:33:30Z + Normalization1254 + Artwork Count1 + Sort ArtistBeatles + Persistent ID630A363BCBE8B766 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Let%20It%20Be/03%20Across%20The%20Universe%201.m4a + File Folder Count4 + Library Folder Count1 + + 11460 + + Track ID11460 + NameBlowin' In The Wind + ArtistBob Dylan + ComposerBob Dylan & B. Dylan/H. Thomas + AlbumThe Freewheelin' Bob Dylan + GenreFolk + KindAAC audio file + Size5549967 + Total Time169026 + Disc Number1 + Disc Count1 + Track Number1 + Track Count13 + Year1963 + Date Modified2014-05-16T15:54:31Z + Date Added2014-05-16T15:54:27Z + Bit Rate256 + Sample Rate44100 + Play Count3 + Play Date3457109046 + Play Date UTC2013-07-19T14:34:06Z + Normalization1610 + Artwork Count1 + Sort AlbumFreewheelin' Bob Dylan + Persistent IDCBC84D105A4ED144 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Dylan/The%20Freewheelin'%20Bob%20Dylan/01%20Blowin'%20In%20The%20Wind%201.m4a + File Folder Count4 + Library Folder Count1 + + 11462 + + Track ID11462 + NameExodus + ArtistBob Marley & The Wailers + ComposerBob Marley + AlbumExodus + GenreReggae + KindAAC audio file + Size15093483 + Total Time455426 + Disc Number1 + Disc Count1 + Track Number5 + Track Count10 + Year1977 + Date Modified2014-05-16T15:54:43Z + Date Added2014-05-16T15:54:32Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3430645553 + Play Date UTC2012-09-16T07:35:53Z + Normalization1140 + Artwork Count1 + Persistent ID93F13731D5379F10 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Marley%20&%20The%20Wailers/Exodus/05%20Exodus%201.m4a + File Folder Count4 + Library Folder Count1 + + 11464 + + Track ID11464 + NameGod Shuffled His Feet + ArtistCrash Test Dummies + ComposerBrad Roberts + AlbumGod Shuffled His Feet + GenreAlternative & Punk + KindAAC audio file + Size10308010 + Total Time310480 + Disc Number1 + Disc Count1 + Track Number1 + Track Count12 + Year1993 + Date Modified2014-05-16T15:54:51Z + Date Added2014-05-16T15:54:43Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3360253487 + Play Date UTC2010-06-24T14:14:47Z + Skip Count1 + Skip Date2014-05-16T15:38:55Z + Normalization3242 + Artwork Count1 + Persistent IDD09038E6EE0F1746 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Crash%20Test%20Dummies/God%20Shuffled%20His%20Feet/01%20God%20Shuffled%20His%20Feet%201.m4a + File Folder Count4 + Library Folder Count1 + + 11466 + + Track ID11466 + NameTears In Heaven + ArtistEric Clapton + ComposerEric Clapton & Will Jennings + AlbumUnplugged + GenreBlues + KindAAC audio file + Size9191428 + Total Time276093 + Disc Number1 + Disc Count1 + Track Number4 + Track Count14 + Year1992 + Date Modified2014-05-16T15:54:58Z + Date Added2014-05-16T15:54:51Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3441737928 + Play Date UTC2013-01-22T16:48:48Z + Normalization1340 + Artwork Count1 + Persistent IDAE1F1514AF0C9BF1 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Eric%20Clapton/Unplugged/04%20Tears%20In%20Heaven%201.m4a + File Folder Count4 + Library Folder Count1 + + 11468 + + Track ID11468 + NameFloe + ArtistPhilip Glass + Album ArtistPhilip Glass Ensemble: Philip Glass + ComposerPHILIP GLASS (b. 1937) + AlbumGlassworks - Expanded Edition + GenreClassical + KindAAC audio file + Size11856182 + Total Time359506 + Disc Number1 + Disc Count1 + Track Number2 + Track Count11 + Year2003 + Date Modified2014-05-16T15:55:07Z + Date Added2014-05-16T15:54:58Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3467302891 + Play Date UTC2013-11-14T14:11:31Z + Normalization1162 + Compilation + Artwork Count1 + Persistent IDC90BECA1D16769D7 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Glassworks%20-%20Expanded%20Edition/02%20Floe%201.m4a + File Folder Count4 + Library Folder Count1 + + 11470 + + Track ID11470 + NameRubric + ArtistPhilip Glass + Album ArtistPhilip Glass Ensemble: Philip Glass + ComposerPHILIP GLASS (b. 1937) + AlbumGlassworks - Expanded Edition + GenreClassical + KindAAC audio file + Size12098729 + Total Time364573 + Disc Number1 + Disc Count1 + Track Number4 + Track Count11 + Year2003 + Date Modified2014-05-16T15:55:17Z + Date Added2014-05-16T15:55:07Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3467303716 + Play Date UTC2013-11-14T14:25:16Z + Normalization1741 + Compilation + Artwork Count1 + Persistent ID363080ED255D0079 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Glassworks%20-%20Expanded%20Edition/04%20Rubric%201.m4a + File Folder Count4 + Library Folder Count1 + + 11472 + + Track ID11472 + NameOnly Time (Original Version) + ArtistEnya + Album ArtistEnya + AlbumA Day Without Rain [with booklet artwork] + GenrePop + KindAAC audio file + Size7431933 + Total Time216133 + Disc Number1 + Disc Count1 + Track Number3 + Track Count12 + Year2005 + Date Modified2014-05-16T15:55:22Z + Date Added2014-05-16T15:55:17Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 212707113 + Play Count4 + Play Date3431279277 + Play Date UTC2012-09-23T15:37:57Z + Normalization1733 + Artwork Count1 + Sort AlbumDay Without Rain [with booklet artwork] + Persistent IDADC1302B07980324 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enya/A%20Day%20Without%20Rain%20%5Bwith%20booklet%20artwork%5D/03%20Only%20Time%20(Original%20Version).m4a + File Folder Count4 + Library Folder Count1 + + 11474 + + Track ID11474 + NameDance Me To The End Of Love + ArtistMadeleine Peyroux + ComposerLeonard Cohen + AlbumCareless Love + GenrePop + KindAAC audio file + Size7868947 + Total Time239666 + Disc Number1 + Disc Count1 + Track Number1 + Track Count12 + Year2004 + Date Modified2014-05-16T15:55:29Z + Date Added2014-05-16T15:55:23Z + Bit Rate256 + Sample Rate44100 + Play Count2 + Play Date3430070775 + Play Date UTC2012-09-09T15:56:15Z + Normalization2608 + Artwork Count1 + Persistent IDB0FC185A83C7CB43 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Madeleine%20Peyroux/Careless%20Love/01%20Dance%20Me%20To%20The%20End%20Of%20Love%201.m4a + File Folder Count4 + Library Folder Count1 + + 11476 + + Track ID11476 + NameCome Away With Me + ArtistNorah Jones + ComposerNorah Jones + AlbumCome Away With Me + GenrePop + KindAAC audio file + Size6555335 + Total Time198133 + Disc Number1 + Disc Count1 + Track Number5 + Track Count14 + Year2002 + Date Modified2014-05-16T15:55:35Z + Date Added2014-05-16T15:55:30Z + Bit Rate256 + Sample Rate44100 + Play Count5 + Play Date3403722850 + Play Date UTC2011-11-09T17:04:10Z + Normalization1128 + Artwork Count1 + Persistent ID4E3C5AABF8D6AA12 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Norah%20Jones/Come%20Away%20With%20Me/05%20Come%20Away%20With%20Me%201.m4a + File Folder Count4 + Library Folder Count1 + + 11478 + + Track ID11478 + NameSour Times + ArtistPortishead + Album ArtistPortishead + ComposerHenry Roscoe Brooks + AlbumDummy + GenrePop + KindAAC audio file + Size8850337 + Total Time254013 + Disc Number1 + Disc Count1 + Track Number2 + Track Count11 + Year1994 + Date Modified2014-05-16T15:55:42Z + Date Added2014-05-16T15:55:35Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202640614 + Play Count4 + Play Date3472406629 + Play Date UTC2014-01-12T15:53:49Z + Skip Count1 + Skip Date2014-05-16T15:46:00Z + Normalization3554 + Artwork Count1 + Persistent ID927CD594CD34B1FB + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Portishead/Dummy/02%20Sour%20Times.m4a + File Folder Count4 + Library Folder Count1 + + 11480 + + Track ID11480 + NameParanoid Android + ArtistRadiohead + ComposerThom Yorke, Jonny Greenwood, Phil Selway, Ed O'Brien, Colin Greenwood + AlbumOK Computer + GenreAlternative & Punk + KindAAC audio file + Size12823519 + Total Time383493 + Disc Number1 + Disc Count1 + Track Number2 + Track Count12 + Year1997 + Date Modified2014-05-16T15:55:52Z + Date Added2014-05-16T15:55:42Z + Bit Rate256 + Sample Rate44100 + Normalization3194 + Artwork Count1 + Persistent IDB8C493BBD89903A9 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Radiohead/OK%20Computer/02%20Paranoid%20Android%201.m4a + File Folder Count4 + Library Folder Count1 + + 11482 + + Track ID11482 + NameStairway To Heaven + ArtistRodrigo Y Gabriela + Album ArtistRodrigo y Gabriela + ComposerJimmy Page.Robert Plant + AlbumRodrigo Y Gabriela + GenreJazz + KindAAC audio file + Size9536552 + Total Time284200 + Disc Number1 + Disc Count1 + Track Number6 + Track Count9 + Year2006 + Date Modified2014-05-16T15:55:59Z + Date Added2014-05-16T15:55:52Z + Bit Rate256 + Sample Rate44100 + Play Count12 + Play Date3463328692 + Play Date UTC2013-09-29T14:14:52Z + Normalization1660 + Artwork Count1 + Persistent ID17346F9210DA0A40 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rodrigo%20y%20Gabriela/Rodrigo%20Y%20Gabriela/06%20Stairway%20To%20Heaven%201.m4a + File Folder Count4 + Library Folder Count1 + + 11484 + + Track ID11484 + NameKiss From A Rose + ArtistSeal + ComposerSeal + AlbumSeal + GenrePop + KindAAC audio file + Size9569998 + Total Time287960 + Disc Number1 + Disc Count1 + Track Number6 + Track Count11 + Year1994 + Date Modified2014-05-16T15:56:06Z + Date Added2014-05-16T15:56:00Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3472648288 + Play Date UTC2014-01-15T11:01:28Z + Normalization2746 + Artwork Count1 + Persistent IDCA310F19C0D531AE + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Seal/Seal/06%20Kiss%20From%20A%20Rose%201.m4a + File Folder Count4 + Library Folder Count1 + + 11486 + + Track ID11486 + NameThe Girl From Ipanema + ArtistStan Getz & João Gilberto + ComposerAntonio Carlos Brasiliero de Almeida Jobim, Marcus Vinícius da Cruz de Melo Moraes, Norman Gimbel + AlbumGetz/Gilberto + GenreLatin + KindAAC audio file + Size10872673 + Total Time324586 + Disc Number1 + Disc Count1 + Track Number1 + Track Count10 + Year1989 + Date Modified2014-05-16T15:56:13Z + Date Added2014-05-16T15:56:07Z + Bit Rate256 + Sample Rate44100 + Play Count4 + Play Date3471623176 + Play Date UTC2014-01-03T14:16:16Z + Normalization883 + Artwork Count1 + Sort NameGirl From Ipanema + Persistent ID6F29380F9941C72E + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stan%20Getz%20&%20Joa%CC%83o%20Gilberto/Getz_Gilberto/01%20The%20Girl%20From%20Ipanema%201.m4a + File Folder Count4 + Library Folder Count1 + + 11488 + + Track ID11488 + NameDesert Rose + ArtistSting + ComposerSting, Kipper + AlbumBrand New Day + GenreRock + KindAAC audio file + Size9450948 + Total Time285866 + Disc Number1 + Disc Count1 + Track Number2 + Track Count10 + Year2000 + Date Modified2014-05-16T15:56:20Z + Date Added2014-05-16T15:56:14Z + Bit Rate256 + Sample Rate44100 + Skip Count1 + Skip Date2013-01-20T15:54:34Z + Normalization3481 + Artwork Count1 + Persistent IDE4A643730374597D + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Sting/Brand%20New%20Day/02%20Desert%20Rose%201.m4a + File Folder Count4 + Library Folder Count1 + + 11490 + + Track ID11490 + NameA Thousand Years + ArtistSting + ComposerSting, Kipper + AlbumBrand New Day + GenreRock + KindAAC audio file + Size11867060 + Total Time358040 + Disc Number1 + Disc Count1 + Track Number1 + Track Count10 + Year2000 + Date Modified2014-05-16T15:56:28Z + Date Added2014-05-16T15:56:27Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3441561867 + Play Date UTC2013-01-20T15:54:27Z + Normalization1428 + Artwork Count1 + Sort NameThousand Years + Persistent IDEA0D903F92D8AAAD + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Sting/Brand%20New%20Day/01%20A%20Thousand%20Years%201.m4a + File Folder Count4 + Library Folder Count1 + + 11492 + + Track ID11492 + NameTalkin' Bout A Revolution + ArtistTracy Chapman + AlbumTracy Chapman + GenreFolk + KindAAC audio file + Size5239379 + Total Time160320 + Disc Number1 + Disc Count1 + Track Number1 + Track Count11 + Year1982 + Date Modified2014-05-16T15:56:42Z + Date Added2014-05-16T15:56:28Z + Bit Rate256 + Sample Rate44100 + Play Count3 + Play Date3456245680 + Play Date UTC2013-07-09T14:44:40Z + Album Rating60 + Album Rating Computed + Normalization1073 + Artwork Count1 + Persistent ID47E1C9CE78721D0C + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tracy%20Chapman/Tracy%20Chapman/01%20Talkin'%20Bout%20A%20Revolution%201.m4a + File Folder Count4 + Library Folder Count1 + + 11494 + + Track ID11494 + NameSocha Hai + ArtistFarhan Akhtar + ComposerShankar Ehsaan Loy + AlbumRock On!! + GenreWorld + KindAAC audio file + Size8232952 + Total Time251533 + Disc Number1 + Disc Count1 + Track Number1 + Track Count9 + Year2008 + Date Modified2014-05-16T15:56:48Z + Date Added2014-05-16T15:56:43Z + Bit Rate256 + Sample Rate44100 + Normalization3573 + Compilation + Artwork Count1 + Persistent ID09F198BD1D245315 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Rock%20On!!/01%20Socha%20Hai%201.m4a + File Folder Count4 + Library Folder Count1 + + 11496 + + Track ID11496 + NameRock On!! + ArtistFarhan Akhtar + ComposerShankar Ehsaan Loy + AlbumRock On!! + GenreWorld + KindAAC audio file + Size7793220 + Total Time235200 + Disc Number1 + Disc Count1 + Track Number3 + Track Count9 + Year2008 + Date Modified2014-05-16T15:56:54Z + Date Added2014-05-16T15:56:49Z + Bit Rate256 + Sample Rate44100 + Normalization3941 + Compilation + Artwork Count1 + Persistent ID79531C51E7836618 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Rock%20On!!/03%20Rock%20On!!%201.m4a + File Folder Count4 + Library Folder Count1 + + 11498 + + Track ID11498 + NameDown To The River To Pray + ArtistAlison Krauss + ComposerJimmie Rodgers/Traditional, arr. by Allison Krauss + AlbumO Brother, Where Art Thou? + GenreSoundtrack + KindAAC audio file + Size5863847 + Total Time175973 + Disc Number1 + Disc Count1 + Track Number4 + Track Count19 + Year2000 + Date Modified2014-05-16T15:56:58Z + Date Added2014-05-16T15:56:54Z + Bit Rate256 + Sample Rate44100 + Play Count4 + Play Date3483120271 + Play Date UTC2014-05-16T15:54:31Z + Normalization1002 + Compilation + Artwork Count1 + Persistent ID352942882FB4BED1 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/O%20Brother,%20Where%20Art%20Thou_/04%20Down%20To%20The%20River%20To%20Pray%201.m4a + File Folder Count4 + Library Folder Count1 + + 11500 + + Track ID11500 + NameAcross The Universe + ArtistThe Beatles + ComposerLennon/McCartney + AlbumLet It Be + GenreRock + KindMPEG audio file + Size4606643 + Total Time228649 + Disc Number1 + Disc Count1 + Track Number3 + Track Count12 + Year1970 + Date Modified2014-05-16T15:57:13Z + Date Added2014-05-16T15:57:08Z + Bit Rate160 + Sample Rate44100 + Play Count1 + Play Date3393072210 + Play Date UTC2011-07-09T10:33:30Z + Normalization1252 + Artwork Count1 + Sort ArtistBeatles + Persistent IDA9FAB94E26E005FE + Track TypeFile + File Type1297106739 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Let%20It%20Be/03%20Across%20The%20Universe.mp3 + File Folder Count4 + Library Folder Count1 + + 11502 + + Track ID11502 + NameBlowin' In The Wind + ArtistBob Dylan + ComposerBob Dylan & B. Dylan/H. Thomas + AlbumThe Freewheelin' Bob Dylan + GenreFolk + KindMPEG audio file + Size3404516 + Total Time169090 + Disc Number1 + Disc Count1 + Track Number1 + Track Count13 + Year1963 + Date Modified2014-05-16T15:57:16Z + Date Added2014-05-16T15:57:13Z + Bit Rate160 + Sample Rate44100 + Play Count3 + Play Date3457109046 + Play Date UTC2013-07-19T14:34:06Z + Normalization1610 + Artwork Count1 + Sort AlbumFreewheelin' Bob Dylan + Persistent ID695DA439CCAAB593 + Track TypeFile + File Type1297106739 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Dylan/The%20Freewheelin'%20Bob%20Dylan/01%20Blowin'%20In%20The%20Wind.mp3 + File Folder Count4 + Library Folder Count1 + + 11504 + + Track ID11504 + NameExodus + ArtistBob Marley & The Wailers + ComposerBob Marley + AlbumExodus + GenreReggae + KindMPEG audio file + Size9123848 + Total Time455497 + Disc Number1 + Disc Count1 + Track Number5 + Track Count10 + Year1977 + Date Modified2014-05-16T15:57:24Z + Date Added2014-05-16T15:57:16Z + Bit Rate160 + Sample Rate44100 + Play Count1 + Play Date3430645553 + Play Date UTC2012-09-16T07:35:53Z + Normalization1162 + Artwork Count1 + Persistent IDF22C6495979C1111 + Track TypeFile + File Type1297106739 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Marley%20&%20The%20Wailers/Exodus/05%20Exodus.mp3 + File Folder Count4 + Library Folder Count1 + + 11506 + + Track ID11506 + NameGod Shuffled His Feet + ArtistCrash Test Dummies + ComposerBrad Roberts + AlbumGod Shuffled His Feet + GenreAlternative & Punk + KindMPEG audio file + Size6256402 + Total Time310543 + Disc Number1 + Disc Count1 + Track Number1 + Track Count12 + Year1993 + Date Modified2014-05-16T15:57:30Z + Date Added2014-05-16T15:57:30Z + Bit Rate160 + Sample Rate44100 + Play Count1 + Play Date3360253487 + Play Date UTC2010-06-24T14:14:47Z + Skip Count1 + Skip Date2014-05-16T15:38:55Z + Normalization3238 + Artwork Count1 + Persistent IDF44EEB8D03AEDA47 + Track TypeFile + File Type1297106739 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Crash%20Test%20Dummies/God%20Shuffled%20His%20Feet/01%20God%20Shuffled%20His%20Feet.mp3 + File Folder Count4 + Library Folder Count1 + + 11508 + + Track ID11508 + NameTears In Heaven + ArtistEric Clapton + ComposerEric Clapton & Will Jennings + AlbumUnplugged + GenreBlues + KindMPEG audio file + Size5556321 + Total Time276166 + Disc Number1 + Disc Count1 + Track Number4 + Track Count14 + Year1992 + Date Modified2014-05-16T15:57:35Z + Date Added2014-05-16T15:57:34Z + Bit Rate160 + Sample Rate44100 + Play Count1 + Play Date3441737928 + Play Date UTC2013-01-22T16:48:48Z + Normalization1329 + Artwork Count1 + Persistent ID26B3CE071A763754 + Track TypeFile + File Type1297106739 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Eric%20Clapton/Unplugged/04%20Tears%20In%20Heaven.mp3 + File Folder Count4 + Library Folder Count1 + + 11510 + + Track ID11510 + NameFloe + ArtistPhilip Glass + Album ArtistPhilip Glass Ensemble: Philip Glass + ComposerPHILIP GLASS (b. 1937) + AlbumGlassworks - Expanded Edition + GenreClassical + KindMPEG audio file + Size7215809 + Total Time359575 + Disc Number1 + Disc Count1 + Track Number2 + Track Count11 + Year2003 + Date Modified2014-05-16T15:57:40Z + Date Added2014-05-16T15:57:40Z + Bit Rate160 + Sample Rate44100 + Play Count1 + Play Date3467302891 + Play Date UTC2013-11-14T14:11:31Z + Normalization1162 + Compilation + Artwork Count1 + Persistent ID532195CDAD6610DC + Track TypeFile + File Type1297106739 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Glassworks%20-%20Expanded%20Edition/02%20Floe.mp3 + File Folder Count4 + Library Folder Count1 + + 11512 + + Track ID11512 + NameRubric + ArtistPhilip Glass + Album ArtistPhilip Glass Ensemble: Philip Glass + ComposerPHILIP GLASS (b. 1937) + AlbumGlassworks - Expanded Edition + GenreClassical + KindMPEG audio file + Size7317166 + Total Time364643 + Disc Number1 + Disc Count1 + Track Number4 + Track Count11 + Year2003 + Date Modified2014-05-16T15:57:46Z + Date Added2014-05-16T15:57:44Z + Bit Rate160 + Sample Rate44100 + Play Count1 + Play Date3467303716 + Play Date UTC2013-11-14T14:25:16Z + Normalization1735 + Compilation + Artwork Count1 + Persistent ID04794A8300E20189 + Track TypeFile + File Type1297106739 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Glassworks%20-%20Expanded%20Edition/04%20Rubric.mp3 + File Folder Count4 + Library Folder Count1 + + 11514 + + Track ID11514 + NameOnly Time (Original Version) + ArtistEnya + Album ArtistEnya + AlbumA Day Without Rain [with booklet artwork] + GenrePop + KindMPEG audio file + Size4618203 + Total Time216189 + Disc Number1 + Disc Count1 + Track Number3 + Track Count12 + Year2005 + Date Modified2014-05-16T15:57:52Z + Date Added2014-05-16T15:57:51Z + Bit Rate160 + Sample Rate44100 + CommentsAmazon.com Song ID: 212707113 + Play Count4 + Play Date3431279277 + Play Date UTC2012-09-23T15:37:57Z + Normalization1728 + Artwork Count1 + Sort AlbumDay Without Rain [with booklet artwork] + Persistent ID26534CDA432642D0 + Track TypeFile + File Type1297106739 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enya/A%20Day%20Without%20Rain%20%5Bwith%20booklet%20artwork%5D/03%20Only%20Time%20(Original%20Version)%201.mp3 + File Folder Count4 + Library Folder Count1 + + 11516 + + Track ID11516 + NameDance Me To The End Of Love + ArtistMadeleine Peyroux + ComposerLeonard Cohen + AlbumCareless Love + GenrePop + KindMPEG audio file + Size4861858 + Total Time239725 + Disc Number1 + Disc Count1 + Track Number1 + Track Count12 + Year2004 + Date Modified2014-05-16T15:57:56Z + Date Added2014-05-16T15:57:55Z + Bit Rate160 + Sample Rate44100 + Play Count2 + Play Date3430070775 + Play Date UTC2012-09-09T15:56:15Z + Normalization2595 + Artwork Count1 + Persistent ID3F643A86FD7F9A38 + Track TypeFile + File Type1297106739 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Madeleine%20Peyroux/Careless%20Love/01%20Dance%20Me%20To%20The%20End%20Of%20Love.mp3 + File Folder Count4 + Library Folder Count1 + + 11518 + + Track ID11518 + NameCome Away With Me + ArtistNorah Jones + ComposerNorah Jones + AlbumCome Away With Me + GenrePop + KindMPEG audio file + Size3992050 + Total Time198191 + Disc Number1 + Disc Count1 + Track Number5 + Track Count14 + Year2002 + Date Modified2014-05-16T15:58:00Z + Date Added2014-05-16T15:57:57Z + Bit Rate160 + Sample Rate44100 + Play Count5 + Play Date3403722850 + Play Date UTC2011-11-09T17:04:10Z + Normalization1153 + Artwork Count1 + Persistent IDFD5702E16CDAE231 + Track TypeFile + File Type1297106739 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Norah%20Jones/Come%20Away%20With%20Me/05%20Come%20Away%20With%20Me.mp3 + File Folder Count4 + Library Folder Count1 + + 11520 + + Track ID11520 + NameSour Times + ArtistPortishead + Album ArtistPortishead + ComposerHenry Roscoe Brooks + AlbumDummy + GenrePop + KindMPEG audio file + Size5185883 + Total Time254066 + Disc Number1 + Disc Count1 + Track Number2 + Track Count11 + Year1994 + Date Modified2014-05-16T15:58:05Z + Date Added2014-05-16T15:58:00Z + Bit Rate160 + Sample Rate44100 + CommentsAmazon.com Song ID: 202640614 + Play Count5 + Play Date3484152913 + Play Date UTC2014-05-28T14:45:13Z + Skip Count1 + Skip Date2014-05-16T15:46:00Z + Normalization3547 + Artwork Count1 + Persistent ID172A4B00CCCA117F + Track TypeFile + File Type1297106739 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Portishead/Dummy/02%20Sour%20Times%201.mp3 + File Folder Count4 + Library Folder Count1 + + 11522 + + Track ID11522 + NameParanoid Android + ArtistRadiohead + ComposerThom Yorke, Jonny Greenwood, Phil Selway, Ed O'Brien, Colin Greenwood + AlbumOK Computer + GenreAlternative & Punk + KindMPEG audio file + Size7709786 + Total Time383555 + Disc Number1 + Disc Count1 + Track Number2 + Track Count12 + Year1997 + Date Modified2014-05-16T15:58:11Z + Date Added2014-05-16T15:58:05Z + Bit Rate160 + Sample Rate44100 + Play Count1 + Play Date3484152659 + Play Date UTC2014-05-28T14:40:59Z + Normalization3190 + Artwork Count1 + Persistent ID510EB20CABFC8793 + Track TypeFile + File Type1297106739 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Radiohead/OK%20Computer/02%20Paranoid%20Android.mp3 + File Folder Count4 + Library Folder Count1 + + 11524 + + Track ID11524 + NameStairway To Heaven + ArtistRodrigo Y Gabriela + Album ArtistRodrigo y Gabriela + ComposerJimmy Page.Robert Plant + AlbumRodrigo Y Gabriela + GenreJazz + KindMPEG audio file + Size5748606 + Total Time284264 + Disc Number1 + Disc Count1 + Track Number6 + Track Count9 + Year2006 + Date Modified2014-05-16T15:58:16Z + Date Added2014-05-16T15:58:11Z + Bit Rate160 + Sample Rate44100 + Play Count12 + Play Date3463328692 + Play Date UTC2013-09-29T14:14:52Z + Normalization1690 + Artwork Count1 + Persistent ID8DF4FFBDF2ABADFE + Track TypeFile + File Type1297106739 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rodrigo%20y%20Gabriela/Rodrigo%20Y%20Gabriela/06%20Stairway%20To%20Heaven.mp3 + File Folder Count4 + Library Folder Count1 + + 11526 + + Track ID11526 + NameKiss From A Rose + ArtistSeal + ComposerSeal + AlbumSeal + GenrePop + KindMPEG audio file + Size5779661 + Total Time288026 + Disc Number1 + Disc Count1 + Track Number6 + Track Count11 + Year1994 + Date Modified2014-05-16T15:58:20Z + Date Added2014-05-16T15:58:16Z + Bit Rate160 + Sample Rate44100 + Play Count3 + Play Date3484153616 + Play Date UTC2014-05-28T14:56:56Z + Normalization2746 + Artwork Count1 + Persistent IDFB0DD24DC3802EAE + Track TypeFile + File Type1297106739 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Seal/Seal/06%20Kiss%20From%20A%20Rose.mp3 + File Folder Count4 + Library Folder Count1 + + 11528 + + Track ID11528 + NameThe Girl From Ipanema + ArtistStan Getz & João Gilberto + ComposerAntonio Carlos Brasiliero de Almeida Jobim, Marcus Vinícius da Cruz de Melo Moraes, Norman Gimbel + AlbumGetz/Gilberto + GenreLatin + KindMPEG audio file + Size6536352 + Total Time324649 + Disc Number1 + Disc Count1 + Track Number1 + Track Count10 + Year1989 + Date Modified2014-05-16T15:58:25Z + Date Added2014-05-16T15:58:21Z + Bit Rate160 + Sample Rate44100 + Play Count5 + Play Date3483884742 + Play Date UTC2014-05-25T12:15:42Z + Normalization882 + Artwork Count1 + Sort NameGirl From Ipanema + Persistent ID8C88EBD27474B166 + Track TypeFile + File Type1297106739 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stan%20Getz%20&%20Joa%CC%83o%20Gilberto/Getz_Gilberto/01%20The%20Girl%20From%20Ipanema.mp3 + File Folder Count4 + Library Folder Count1 + + 11530 + + Track ID11530 + NameDesert Rose + ArtistSting + ComposerSting, Kipper + AlbumBrand New Day + GenreRock + KindMPEG audio file + Size5737967 + Total Time285936 + Disc Number1 + Disc Count1 + Track Number2 + Track Count10 + Year2000 + Date Modified2014-05-16T15:58:29Z + Date Added2014-05-16T15:58:25Z + Bit Rate160 + Sample Rate44100 + Play Count1 + Play Date3483884409 + Play Date UTC2014-05-25T12:10:09Z + Skip Count1 + Skip Date2013-01-20T15:54:34Z + Normalization3471 + Artwork Count1 + Persistent ID05423A25A9F92D88 + Track TypeFile + File Type1297106739 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Sting/Brand%20New%20Day/02%20Desert%20Rose.mp3 + File Folder Count4 + Library Folder Count1 + + 11532 + + Track ID11532 + NameA Thousand Years + ArtistSting + ComposerSting, Kipper + AlbumBrand New Day + GenreRock + KindMPEG audio file + Size7181499 + Total Time358112 + Disc Number1 + Disc Count1 + Track Number1 + Track Count10 + Year2000 + Date Modified2014-05-16T15:58:34Z + Date Added2014-05-16T15:58:29Z + Bit Rate160 + Sample Rate44100 + Play Count1 + Play Date3441561867 + Play Date UTC2013-01-20T15:54:27Z + Normalization1457 + Artwork Count1 + Sort NameThousand Years + Persistent ID5372DA73C0200FBE + Track TypeFile + File Type1297106739 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Sting/Brand%20New%20Day/01%20A%20Thousand%20Years.mp3 + File Folder Count4 + Library Folder Count1 + + 11534 + + Track ID11534 + NameTalkin' Bout A Revolution + ArtistTracy Chapman + AlbumTracy Chapman + GenreFolk + KindMPEG audio file + Size3242906 + Total Time160391 + Disc Number1 + Disc Count1 + Track Number1 + Track Count11 + Year1982 + Date Modified2014-05-16T15:58:37Z + Date Added2014-05-16T15:58:35Z + Bit Rate160 + Sample Rate44100 + Play Count3 + Play Date3456245680 + Play Date UTC2013-07-09T14:44:40Z + Album Rating60 + Album Rating Computed + Normalization1037 + Artwork Count1 + Persistent ID87009FCFDBB4F38B + Track TypeFile + File Type1297106739 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tracy%20Chapman/Tracy%20Chapman/01%20Talkin'%20Bout%20A%20Revolution.mp3 + File Folder Count4 + Library Folder Count1 + + 11536 + + Track ID11536 + NameSocha Hai + ArtistFarhan Akhtar + ComposerShankar Ehsaan Loy + AlbumRock On!! + GenreWorld + KindMPEG audio file + Size5140123 + Total Time251611 + Disc Number1 + Disc Count1 + Track Number1 + Track Count9 + Year2008 + Date Modified2014-05-16T15:58:41Z + Date Added2014-05-16T15:58:37Z + Bit Rate160 + Sample Rate44100 + Skip Count1 + Skip Date2014-06-02T14:35:45Z + Normalization3559 + Compilation + Artwork Count1 + Persistent IDD38F3E2983EE6D81 + Track TypeFile + File Type1297106739 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Rock%20On!!/01%20Socha%20Hai.mp3 + File Folder Count4 + Library Folder Count1 + + 11538 + + Track ID11538 + NameRock On!! + ArtistFarhan Akhtar + ComposerShankar Ehsaan Loy + AlbumRock On!! + GenreWorld + KindMPEG audio file + Size4813070 + Total Time235258 + Disc Number1 + Disc Count1 + Track Number3 + Track Count9 + Year2008 + Date Modified2014-05-16T15:58:44Z + Date Added2014-05-16T15:58:41Z + Bit Rate160 + Sample Rate44100 + Normalization3935 + Compilation + Artwork Count1 + Persistent IDB24EE14D61D28799 + Track TypeFile + File Type1297106739 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Rock%20On!!/03%20Rock%20On!!.mp3 + File Folder Count4 + Library Folder Count1 + + 11540 + + Track ID11540 + NameDown To The River To Pray + ArtistAlison Krauss + ComposerJimmie Rodgers/Traditional, arr. by Allison Krauss + AlbumO Brother, Where Art Thou? + GenreSoundtrack + KindMPEG audio file + Size3539467 + Total Time176039 + Disc Number1 + Disc Count1 + Track Number4 + Track Count19 + Year2000 + Date Modified2014-05-16T15:58:47Z + Date Added2014-05-16T15:58:44Z + Bit Rate160 + Sample Rate44100 + Play Count5 + Play Date3484232059 + Play Date UTC2014-05-29T12:44:19Z + Normalization1009 + Compilation + Artwork Count1 + Persistent IDCB3B27511FBE5A3C + Track TypeFile + File Type1297106739 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/O%20Brother,%20Where%20Art%20Thou_/04%20Down%20To%20The%20River%20To%20Pray.mp3 + File Folder Count4 + Library Folder Count1 + + 11542 + + Track ID11542 + NameOne + ArtistAimee Mann + ComposerHarry Nilsson + AlbumMagnolia + GenreFolk + KindMPEG audio file + Size3505476 + Total Time173453 + Disc Number1 + Disc Count1 + Track Number1 + Track Count13 + Year1999 + Date Modified2014-05-16T15:58:49Z + Date Added2014-05-16T15:58:47Z + Bit Rate160 + Sample Rate44100 + Play Count6 + Play Date3483120464 + Play Date UTC2014-05-16T15:57:44Z + Skip Count1 + Skip Date2013-01-22T16:38:41Z + Normalization1259 + Compilation + Artwork Count1 + Persistent IDE6CCEE7DE9BC6B3E + Track TypeFile + File Type1297106739 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Magnolia/01%20One.mp3 + File Folder Count4 + Library Folder Count1 + + 11544 + + Track ID11544 + NameYesterday + ArtistThe Beatles + ComposerJohn Lennon & Paul McCartney + Album1 + GenrePop + KindMPEG audio file + Size2566173 + Total Time125466 + Disc Number1 + Disc Count1 + Track Number11 + Track Count27 + Year1965 + BPM100 + Date Modified2014-05-18T01:27:24Z + Date Added2014-05-18T01:27:21Z + Bit Rate160 + Sample Rate44100 + Skip Count1 + Skip Date2014-05-24T05:08:40Z + Normalization1747 + Artwork Count1 + Sort ArtistBeatles + Persistent IDCEDA02F0D43BB081 + Track TypeFile + File Type1297106739 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/1/11%20Yesterday.mp3 + File Folder Count4 + Library Folder Count1 + + 22969 + + Track ID22969 + NameSineWave_440Hz + KindWAV audio file + Size264644 + Total Time3000 + Date Modified2013-07-31T09:11:58Z + Date Added2014-06-04T05:20:08Z + Bit Rate705 + Sample Rate44100 + Play Count12 + Play Date3484811026 + Play Date UTC2014-06-05T05:33:46Z + Persistent ID4E594946FAAFE907 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Unknown%20Artist/Unknown%20Album/SineWave_440Hz.wav + File Folder Count4 + Library Folder Count1 + + + Playlists + + + NameMusic + Playlist ID16176 + Playlist Persistent ID5DAA1B5BE0792F05 + Distinguished Kind4 + Music + All Items + Playlist Items + + + Track ID22969 + + + Track ID11544 + + + Track ID11542 + + + Track ID11540 + + + Track ID11538 + + + Track ID11536 + + + Track ID11534 + + + Track ID11532 + + + Track ID11530 + + + Track ID11528 + + + Track ID11526 + + + Track ID11524 + + + Track ID11522 + + + Track ID11520 + + + Track ID11518 + + + Track ID11516 + + + Track ID11514 + + + Track ID11512 + + + Track ID11510 + + + Track ID11508 + + + Track ID11506 + + + Track ID11504 + + + Track ID11502 + + + Track ID11500 + + + Track ID11498 + + + Track ID11496 + + + Track ID11494 + + + Track ID11492 + + + Track ID11490 + + + Track ID11488 + + + Track ID11486 + + + Track ID11484 + + + Track ID11482 + + + Track ID11480 + + + Track ID11478 + + + Track ID11476 + + + Track ID11474 + + + Track ID11472 + + + Track ID11470 + + + Track ID11468 + + + Track ID11466 + + + Track ID11464 + + + Track ID11462 + + + Track ID11460 + + + Track ID11458 + + + Track ID11456 + + + Track ID11454 + + + Track ID11452 + + + Track ID11450 + + + Track ID11434 + + + Track ID11386 + + + Track ID11388 + + + Track ID11390 + + + Track ID11392 + + + Track ID11394 + + + Track ID11396 + + + Track ID11398 + + + Track ID11400 + + + Track ID11402 + + + Track ID11404 + + + Track ID11406 + + + Track ID11408 + + + Track ID11410 + + + Track ID11412 + + + Track ID11382 + + + Track ID11384 + + + Track ID11370 + + + Track ID11372 + + + Track ID11374 + + + Track ID11376 + + + Track ID11378 + + + Track ID11380 + + + Track ID11364 + + + Track ID11366 + + + Track ID11368 + + + Track ID11346 + + + Track ID11348 + + + Track ID11350 + + + Track ID11352 + + + Track ID11354 + + + Track ID11356 + + + Track ID11358 + + + Track ID11360 + + + Track ID11362 + + + Track ID11338 + + + Track ID11340 + + + Track ID11342 + + + Track ID11344 + + + Track ID11332 + + + Track ID11334 + + + Track ID11336 + + + Track ID11322 + + + Track ID11324 + + + Track ID11326 + + + Track ID11328 + + + Track ID11330 + + + Track ID11310 + + + Track ID11312 + + + Track ID11314 + + + Track ID11316 + + + Track ID11318 + + + Track ID11320 + + + Track ID11302 + + + Track ID11304 + + + Track ID11306 + + + Track ID11308 + + + Track ID11292 + + + Track ID11294 + + + Track ID11296 + + + Track ID11298 + + + Track ID11300 + + + Track ID11288 + + + Track ID11290 + + + Track ID11284 + + + Track ID11286 + + + Track ID11282 + + + Track ID11278 + + + Track ID11280 + + + Track ID11272 + + + Track ID11274 + + + Track ID11276 + + + Track ID11264 + + + Track ID11266 + + + Track ID11268 + + + Track ID11270 + + + Track ID11256 + + + Track ID11258 + + + Track ID11260 + + + Track ID11262 + + + Track ID11254 + + + Track ID11248 + + + Track ID11250 + + + Track ID11252 + + + Track ID11240 + + + Track ID11242 + + + Track ID11244 + + + Track ID11246 + + + Track ID11232 + + + Track ID11234 + + + Track ID11236 + + + Track ID11238 + + + Track ID11218 + + + Track ID11220 + + + Track ID11222 + + + Track ID11224 + + + Track ID11226 + + + Track ID11228 + + + Track ID11230 + + + Track ID11206 + + + Track ID11208 + + + Track ID11210 + + + Track ID11212 + + + Track ID11214 + + + Track ID11216 + + + Track ID11198 + + + Track ID11200 + + + Track ID11202 + + + Track ID11204 + + + Track ID11188 + + + Track ID11190 + + + Track ID11192 + + + Track ID11194 + + + Track ID11196 + + + Track ID11186 + + + Track ID11128 + + + Track ID11126 + + + Track ID11124 + + + Track ID11112 + + + Track ID11110 + + + Track ID11106 + + + Track ID11108 + + + Track ID11096 + + + Track ID11098 + + + Track ID11100 + + + Track ID11102 + + + Track ID11104 + + + Track ID11088 + + + Track ID11090 + + + Track ID11092 + + + Track ID11094 + + + Track ID11080 + + + Track ID11082 + + + Track ID11084 + + + Track ID11086 + + + Track ID11078 + + + Track ID11076 + + + Track ID11074 + + + Track ID11072 + + + Track ID11070 + + + Track ID11068 + + + Track ID11066 + + + Track ID11064 + + + Track ID11062 + + + Track ID11060 + + + Track ID11058 + + + Track ID11056 + + + Track ID11054 + + + Track ID11046 + + + Track ID11044 + + + Track ID11042 + + + Track ID11040 + + + Track ID11010 + + + Track ID10952 + + + Track ID10924 + + + Track ID10922 + + + Track ID10920 + + + Track ID10914 + + + Track ID10896 + + + Track ID10898 + + + Track ID10900 + + + Track ID10894 + + + Track ID10904 + + + Track ID10906 + + + Track ID10908 + + + Track ID10902 + + + Track ID10910 + + + Track ID10856 + + + Track ID10858 + + + Track ID10860 + + + Track ID10862 + + + Track ID10864 + + + Track ID10866 + + + Track ID10868 + + + Track ID10870 + + + Track ID10872 + + + Track ID10874 + + + Track ID10876 + + + Track ID10878 + + + Track ID10880 + + + Track ID10882 + + + Track ID10884 + + + Track ID10886 + + + Track ID10888 + + + Track ID10890 + + + Track ID10892 + + + Track ID10846 + + + Track ID10850 + + + Track ID10832 + + + Track ID10834 + + + Track ID10836 + + + Track ID10838 + + + Track ID10840 + + + Track ID10842 + + + Track ID10844 + + + Track ID10848 + + + Track ID10852 + + + Track ID10854 + + + Track ID10790 + + + Track ID10788 + + + Track ID10784 + + + Track ID10782 + + + Track ID10770 + + + Track ID10772 + + + Track ID10774 + + + Track ID10776 + + + Track ID10778 + + + Track ID10768 + + + Track ID10762 + + + Track ID10766 + + + Track ID10758 + + + Track ID10756 + + + Track ID10760 + + + Track ID10764 + + + Track ID10744 + + + Track ID10740 + + + Track ID10752 + + + Track ID10754 + + + Track ID10746 + + + Track ID10742 + + + Track ID10748 + + + Track ID10750 + + + Track ID10738 + + + Track ID10706 + + + Track ID10702 + + + Track ID10700 + + + Track ID10698 + + + Track ID10696 + + + Track ID10694 + + + Track ID10692 + + + Track ID10690 + + + Track ID10688 + + + Track ID10660 + + + Track ID10662 + + + Track ID10664 + + + Track ID10666 + + + Track ID10668 + + + Track ID10670 + + + Track ID10672 + + + Track ID10674 + + + Track ID10676 + + + Track ID10678 + + + Track ID10680 + + + Track ID10682 + + + Track ID10684 + + + Track ID10686 + + + Track ID10632 + + + Track ID10634 + + + Track ID10636 + + + Track ID10638 + + + Track ID10640 + + + Track ID10642 + + + Track ID10644 + + + Track ID10646 + + + Track ID10648 + + + Track ID10650 + + + Track ID10652 + + + Track ID10654 + + + Track ID10656 + + + Track ID10658 + + + Track ID10614 + + + Track ID10616 + + + Track ID10618 + + + Track ID10620 + + + Track ID10622 + + + Track ID10624 + + + Track ID10626 + + + Track ID10628 + + + Track ID10630 + + + Track ID10612 + + + Track ID10604 + + + Track ID10606 + + + Track ID10608 + + + Track ID10610 + + + Track ID10598 + + + Track ID10600 + + + Track ID10602 + + + Track ID10590 + + + Track ID10592 + + + Track ID10594 + + + Track ID10596 + + + Track ID10588 + + + Track ID10586 + + + Track ID10580 + + + Track ID10582 + + + Track ID10584 + + + Track ID10574 + + + Track ID10576 + + + Track ID10578 + + + Track ID10568 + + + Track ID10570 + + + Track ID10572 + + + Track ID10560 + + + Track ID10562 + + + Track ID10564 + + + Track ID10566 + + + Track ID10550 + + + Track ID10552 + + + Track ID10554 + + + Track ID10556 + + + Track ID10558 + + + Track ID10542 + + + Track ID10544 + + + Track ID10546 + + + Track ID10548 + + + Track ID10532 + + + Track ID10534 + + + Track ID10536 + + + Track ID10538 + + + Track ID10540 + + + Track ID10524 + + + Track ID10526 + + + Track ID10528 + + + Track ID10530 + + + Track ID10520 + + + Track ID10522 + + + Track ID10506 + + + Track ID10508 + + + Track ID10510 + + + Track ID10512 + + + Track ID10514 + + + Track ID10516 + + + Track ID10518 + + + Track ID10500 + + + Track ID10502 + + + Track ID10504 + + + Track ID10490 + + + Track ID10492 + + + Track ID10494 + + + Track ID10496 + + + Track ID10498 + + + Track ID10484 + + + Track ID10486 + + + Track ID10488 + + + Track ID10478 + + + Track ID10480 + + + Track ID10482 + + + Track ID10470 + + + Track ID10472 + + + Track ID10474 + + + Track ID10476 + + + Track ID10462 + + + Track ID10464 + + + Track ID10466 + + + Track ID10468 + + + Track ID10454 + + + Track ID10456 + + + Track ID10458 + + + Track ID10460 + + + Track ID10448 + + + Track ID10450 + + + Track ID10452 + + + Track ID10442 + + + Track ID10444 + + + Track ID10446 + + + Track ID10436 + + + Track ID10438 + + + Track ID10440 + + + Track ID10432 + + + Track ID10434 + + + Track ID10428 + + + Track ID10430 + + + Track ID10424 + + + Track ID10426 + + + Track ID10416 + + + Track ID10418 + + + Track ID10420 + + + Track ID10422 + + + Track ID10400 + + + Track ID10402 + + + Track ID10392 + + + Track ID10394 + + + Track ID10396 + + + Track ID10398 + + + Track ID10376 + + + Track ID10378 + + + Track ID10380 + + + Track ID10382 + + + Track ID10384 + + + Track ID10386 + + + Track ID10388 + + + Track ID10390 + + + Track ID10368 + + + Track ID10370 + + + Track ID10372 + + + Track ID10374 + + + Track ID10366 + + + Track ID10360 + + + Track ID10362 + + + Track ID10364 + + + Track ID10352 + + + Track ID10354 + + + Track ID10356 + + + Track ID10358 + + + Track ID10350 + + + Track ID10342 + + + Track ID10344 + + + Track ID10346 + + + Track ID10348 + + + Track ID10328 + + + Track ID10330 + + + Track ID10332 + + + Track ID10334 + + + Track ID10336 + + + Track ID10338 + + + Track ID10340 + + + Track ID10256 + + + Track ID10254 + + + Track ID10252 + + + Track ID10250 + + + Track ID10248 + + + Track ID10246 + + + Track ID10244 + + + Track ID10242 + + + Track ID10240 + + + Track ID10238 + + + Track ID10236 + + + Track ID10234 + + + Track ID10232 + + + Track ID10230 + + + Track ID10228 + + + Track ID10226 + + + Track ID10224 + + + Track ID10222 + + + Track ID10220 + + + Track ID10218 + + + Track ID10216 + + + Track ID10214 + + + Track ID10212 + + + Track ID10210 + + + Track ID10174 + + + Track ID10176 + + + Track ID10170 + + + Track ID10172 + + + Track ID10144 + + + Track ID10146 + + + Track ID10148 + + + Track ID10150 + + + Track ID10152 + + + Track ID10154 + + + Track ID10156 + + + Track ID10160 + + + Track ID10140 + + + Track ID10158 + + + Track ID10142 + + + Track ID10178 + + + Track ID10180 + + + Track ID10162 + + + Track ID10164 + + + Track ID10166 + + + Track ID10168 + + + Track ID10138 + + + Track ID10136 + + + Track ID10134 + + + Track ID10132 + + + Track ID10130 + + + Track ID10128 + + + Track ID10126 + + + Track ID10124 + + + Track ID10122 + + + Track ID10120 + + + Track ID10118 + + + Track ID10116 + + + Track ID10114 + + + Track ID10112 + + + Track ID10110 + + + Track ID10108 + + + Track ID10106 + + + Track ID10104 + + + Track ID10102 + + + Track ID10100 + + + Track ID10098 + + + Track ID10096 + + + Track ID10094 + + + Track ID10092 + + + Track ID10090 + + + Track ID10088 + + + Track ID10086 + + + Track ID10084 + + + Track ID10082 + + + Track ID10080 + + + Track ID10078 + + + Track ID10076 + + + Track ID10074 + + + Track ID10072 + + + Track ID10070 + + + Track ID10068 + + + Track ID10066 + + + Track ID10064 + + + Track ID10062 + + + Track ID10060 + + + Track ID9974 + + + Track ID9972 + + + Track ID9970 + + + Track ID9968 + + + Track ID9966 + + + Track ID9964 + + + Track ID9962 + + + Track ID9960 + + + Track ID9958 + + + Track ID9956 + + + Track ID9954 + + + Track ID9952 + + + Track ID9950 + + + Track ID9948 + + + Track ID9946 + + + Track ID9944 + + + Track ID9942 + + + Track ID9940 + + + Track ID9938 + + + Track ID9936 + + + Track ID9934 + + + Track ID9932 + + + Track ID9930 + + + Track ID9928 + + + Track ID9926 + + + Track ID9924 + + + Track ID9922 + + + Track ID9920 + + + Track ID9918 + + + Track ID9916 + + + Track ID9914 + + + Track ID9912 + + + Track ID9910 + + + Track ID9908 + + + Track ID9906 + + + Track ID9904 + + + Track ID9902 + + + Track ID9900 + + + Track ID9898 + + + Track ID9896 + + + Track ID9892 + + + Track ID9894 + + + Track ID9890 + + + Track ID9888 + + + Track ID9886 + + + Track ID9884 + + + Track ID9882 + + + Track ID9880 + + + Track ID9878 + + + Track ID9876 + + + Track ID9874 + + + Track ID9872 + + + Track ID9870 + + + Track ID9868 + + + Track ID9866 + + + Track ID9862 + + + Track ID9864 + + + Track ID9858 + + + Track ID9860 + + + Track ID9856 + + + Track ID9854 + + + Track ID9852 + + + Track ID9850 + + + Track ID9848 + + + Track ID9844 + + + Track ID9846 + + + Track ID9842 + + + Track ID9840 + + + Track ID9838 + + + Track ID9836 + + + Track ID9834 + + + Track ID9832 + + + Track ID9828 + + + Track ID9830 + + + Track ID9826 + + + Track ID9824 + + + Track ID9822 + + + Track ID9820 + + + Track ID9818 + + + Track ID9816 + + + Track ID9814 + + + Track ID9812 + + + Track ID9810 + + + Track ID9804 + + + Track ID9806 + + + Track ID9808 + + + Track ID9802 + + + Track ID9798 + + + Track ID9796 + + + Track ID9794 + + + Track ID9792 + + + Track ID9790 + + + Track ID9788 + + + Track ID9786 + + + Track ID9784 + + + Track ID9782 + + + Track ID9780 + + + Track ID9778 + + + Track ID9776 + + + Track ID9774 + + + Track ID9772 + + + Track ID9770 + + + Track ID9768 + + + Track ID9766 + + + Track ID9764 + + + Track ID9762 + + + Track ID9760 + + + Track ID9758 + + + Track ID9676 + + + Track ID9678 + + + Track ID9680 + + + Track ID9682 + + + Track ID9684 + + + Track ID9686 + + + Track ID9688 + + + Track ID9690 + + + Track ID9692 + + + Track ID9694 + + + Track ID9696 + + + Track ID9698 + + + Track ID9700 + + + Track ID9702 + + + Track ID9704 + + + Track ID9706 + + + Track ID9708 + + + Track ID9710 + + + Track ID9712 + + + Track ID9714 + + + Track ID9716 + + + Track ID9718 + + + Track ID9720 + + + Track ID9722 + + + Track ID9724 + + + Track ID9726 + + + Track ID9728 + + + Track ID9730 + + + Track ID9732 + + + Track ID9734 + + + Track ID9736 + + + Track ID9738 + + + Track ID9674 + + + Track ID9672 + + + Track ID9670 + + + Track ID9668 + + + Track ID9666 + + + Track ID9664 + + + Track ID9662 + + + Track ID9660 + + + Track ID9658 + + + Track ID9656 + + + Track ID9654 + + + Track ID9652 + + + Track ID9650 + + + Track ID9648 + + + Track ID9646 + + + Track ID9644 + + + Track ID9642 + + + Track ID9640 + + + Track ID9638 + + + Track ID9636 + + + Track ID9634 + + + Track ID9632 + + + Track ID9630 + + + Track ID9628 + + + Track ID9626 + + + Track ID9624 + + + Track ID9622 + + + Track ID9620 + + + Track ID9618 + + + Track ID9616 + + + Track ID9614 + + + Track ID9612 + + + Track ID9610 + + + Track ID9608 + + + Track ID9606 + + + Track ID9604 + + + Track ID9602 + + + Track ID9600 + + + Track ID9598 + + + Track ID9596 + + + Track ID9594 + + + Track ID9592 + + + Track ID9590 + + + Track ID9588 + + + Track ID9586 + + + Track ID9584 + + + Track ID9582 + + + Track ID9580 + + + Track ID9578 + + + Track ID9576 + + + Track ID9574 + + + Track ID9572 + + + Track ID9570 + + + Track ID9568 + + + Track ID9566 + + + Track ID9564 + + + Track ID9562 + + + Track ID9560 + + + Track ID9558 + + + Track ID9556 + + + Track ID9554 + + + Track ID9552 + + + Track ID9550 + + + Track ID9548 + + + Track ID9546 + + + Track ID9544 + + + Track ID9542 + + + Track ID9540 + + + Track ID9538 + + + Track ID9536 + + + Track ID9534 + + + Track ID9532 + + + Track ID9528 + + + Track ID9530 + + + Track ID9524 + + + Track ID9526 + + + Track ID9498 + + + Track ID9500 + + + Track ID9502 + + + Track ID9504 + + + Track ID9506 + + + Track ID9508 + + + Track ID9510 + + + Track ID9514 + + + Track ID9494 + + + Track ID9512 + + + Track ID9496 + + + Track ID9516 + + + Track ID9518 + + + Track ID9520 + + + Track ID9522 + + + Track ID9492 + + + Track ID9490 + + + Track ID9488 + + + Track ID9486 + + + Track ID9484 + + + Track ID9482 + + + Track ID9480 + + + Track ID9478 + + + Track ID9476 + + + Track ID9474 + + + Track ID9472 + + + Track ID9470 + + + Track ID9468 + + + Track ID9466 + + + Track ID9464 + + + Track ID9462 + + + Track ID9460 + + + Track ID9458 + + + Track ID9442 + + + Track ID9444 + + + Track ID9446 + + + Track ID9448 + + + Track ID9450 + + + Track ID9452 + + + Track ID9428 + + + Track ID9430 + + + Track ID9432 + + + Track ID9434 + + + Track ID9436 + + + Track ID9438 + + + Track ID9440 + + + Track ID9418 + + + Track ID9420 + + + Track ID9422 + + + Track ID9424 + + + Track ID9426 + + + Track ID9410 + + + Track ID9412 + + + Track ID9414 + + + Track ID9416 + + + Track ID9404 + + + Track ID9406 + + + Track ID9408 + + + Track ID9396 + + + Track ID9398 + + + Track ID9402 + + + Track ID9400 + + + Track ID9382 + + + Track ID9380 + + + Track ID9378 + + + Track ID9376 + + + Track ID9374 + + + Track ID9372 + + + Track ID9370 + + + Track ID9368 + + + Track ID9366 + + + Track ID9364 + + + Track ID9362 + + + Track ID9360 + + + Track ID9358 + + + Track ID9356 + + + Track ID9354 + + + Track ID9352 + + + Track ID9350 + + + Track ID9348 + + + Track ID9346 + + + Track ID9344 + + + Track ID9342 + + + Track ID9340 + + + Track ID9338 + + + Track ID9336 + + + Track ID9334 + + + Track ID9332 + + + Track ID9330 + + + Track ID9328 + + + Track ID9326 + + + Track ID9324 + + + Track ID9322 + + + Track ID9320 + + + Track ID9318 + + + Track ID9316 + + + Track ID9314 + + + Track ID9312 + + + Track ID9310 + + + Track ID9308 + + + Track ID9306 + + + Track ID9304 + + + Track ID9302 + + + Track ID9300 + + + Track ID9298 + + + Track ID9296 + + + Track ID9294 + + + Track ID9292 + + + Track ID9290 + + + Track ID9288 + + + Track ID9286 + + + Track ID9284 + + + Track ID9282 + + + Track ID9280 + + + Track ID9278 + + + Track ID9276 + + + Track ID9274 + + + Track ID9272 + + + Track ID9270 + + + Track ID9268 + + + Track ID9266 + + + Track ID9264 + + + Track ID9262 + + + Track ID9260 + + + Track ID9258 + + + Track ID9256 + + + Track ID9254 + + + Track ID9252 + + + Track ID9250 + + + Track ID9248 + + + Track ID9246 + + + Track ID9244 + + + Track ID9242 + + + Track ID9240 + + + Track ID9238 + + + Track ID9236 + + + Track ID9234 + + + Track ID9232 + + + Track ID9230 + + + Track ID9228 + + + Track ID9226 + + + Track ID9224 + + + Track ID9222 + + + Track ID9220 + + + Track ID9218 + + + Track ID9216 + + + Track ID9214 + + + Track ID9212 + + + Track ID9210 + + + Track ID9208 + + + Track ID9206 + + + Track ID9204 + + + Track ID9202 + + + Track ID9200 + + + Track ID9198 + + + Track ID9196 + + + Track ID9194 + + + Track ID9192 + + + Track ID9190 + + + Track ID9188 + + + Track ID9186 + + + Track ID9184 + + + Track ID9182 + + + Track ID9180 + + + Track ID9178 + + + Track ID9176 + + + Track ID9174 + + + Track ID9172 + + + Track ID9170 + + + Track ID9168 + + + Track ID9166 + + + Track ID9164 + + + Track ID9162 + + + Track ID9160 + + + Track ID9158 + + + Track ID9156 + + + Track ID9154 + + + Track ID9152 + + + Track ID9150 + + + Track ID9148 + + + Track ID9146 + + + Track ID9144 + + + Track ID9142 + + + Track ID9140 + + + Track ID9138 + + + Track ID9136 + + + Track ID9134 + + + Track ID9132 + + + Track ID9130 + + + Track ID9128 + + + Track ID9126 + + + Track ID9124 + + + Track ID9122 + + + Track ID9120 + + + Track ID9118 + + + Track ID9116 + + + Track ID9114 + + + Track ID9112 + + + Track ID9110 + + + Track ID9108 + + + Track ID9106 + + + Track ID9104 + + + Track ID9102 + + + Track ID9100 + + + Track ID9098 + + + Track ID9096 + + + Track ID9094 + + + Track ID9092 + + + Track ID9090 + + + Track ID9088 + + + Track ID9086 + + + Track ID9084 + + + Track ID9082 + + + Track ID9080 + + + Track ID9076 + + + Track ID9074 + + + Track ID9072 + + + Track ID9070 + + + Track ID9068 + + + Track ID9066 + + + Track ID9064 + + + Track ID9062 + + + Track ID9060 + + + Track ID9058 + + + Track ID9056 + + + Track ID9054 + + + Track ID9052 + + + Track ID9050 + + + Track ID9048 + + + Track ID9046 + + + Track ID9044 + + + Track ID9042 + + + Track ID9040 + + + Track ID9038 + + + Track ID9036 + + + Track ID9034 + + + Track ID9032 + + + Track ID9030 + + + Track ID9028 + + + Track ID9026 + + + Track ID9024 + + + Track ID9022 + + + Track ID9020 + + + Track ID9018 + + + Track ID9016 + + + Track ID9014 + + + Track ID9012 + + + Track ID9010 + + + Track ID9008 + + + Track ID9006 + + + Track ID9004 + + + Track ID9002 + + + Track ID9000 + + + Track ID8998 + + + Track ID8996 + + + Track ID8994 + + + Track ID8992 + + + Track ID8990 + + + Track ID8988 + + + Track ID8986 + + + Track ID8984 + + + Track ID8982 + + + Track ID8980 + + + Track ID8978 + + + Track ID8976 + + + Track ID8974 + + + Track ID8972 + + + Track ID8970 + + + Track ID8968 + + + Track ID8966 + + + Track ID8964 + + + Track ID8962 + + + Track ID8960 + + + Track ID8958 + + + Track ID8956 + + + Track ID8954 + + + Track ID8952 + + + Track ID8950 + + + Track ID8948 + + + Track ID8946 + + + Track ID8944 + + + Track ID8942 + + + Track ID8940 + + + Track ID8938 + + + Track ID8936 + + + Track ID8934 + + + Track ID8932 + + + Track ID8930 + + + Track ID8928 + + + Track ID8926 + + + Track ID8924 + + + Track ID8922 + + + Track ID8920 + + + Track ID8918 + + + Track ID8916 + + + Track ID8914 + + + Track ID8912 + + + Track ID8910 + + + Track ID8908 + + + Track ID8906 + + + Track ID8904 + + + Track ID8902 + + + Track ID8900 + + + Track ID8898 + + + Track ID8896 + + + Track ID8894 + + + Track ID8892 + + + Track ID8890 + + + Track ID8888 + + + Track ID8886 + + + Track ID8884 + + + Track ID8882 + + + Track ID8880 + + + Track ID8878 + + + Track ID8876 + + + Track ID8874 + + + Track ID8872 + + + Track ID8870 + + + Track ID8868 + + + Track ID8866 + + + Track ID8864 + + + Track ID8862 + + + Track ID8860 + + + Track ID8858 + + + Track ID8856 + + + Track ID8854 + + + Track ID8852 + + + Track ID8850 + + + Track ID8848 + + + Track ID8846 + + + Track ID8844 + + + Track ID8842 + + + Track ID8840 + + + Track ID8838 + + + Track ID8836 + + + Track ID8834 + + + Track ID8832 + + + Track ID8830 + + + Track ID8828 + + + Track ID8826 + + + Track ID8824 + + + Track ID8822 + + + Track ID8820 + + + Track ID8818 + + + Track ID8816 + + + Track ID8814 + + + Track ID8812 + + + Track ID8810 + + + Track ID8808 + + + Track ID8806 + + + Track ID8804 + + + Track ID8802 + + + Track ID8800 + + + Track ID8798 + + + Track ID8796 + + + Track ID8794 + + + Track ID8792 + + + Track ID8790 + + + Track ID8788 + + + Track ID8786 + + + Track ID8784 + + + Track ID8782 + + + Track ID8780 + + + Track ID8778 + + + Track ID8776 + + + Track ID8774 + + + Track ID8772 + + + Track ID8770 + + + Track ID8768 + + + Track ID8766 + + + Track ID8764 + + + Track ID8762 + + + Track ID8760 + + + Track ID8758 + + + Track ID8756 + + + Track ID8754 + + + Track ID8752 + + + Track ID8750 + + + Track ID8748 + + + Track ID8746 + + + Track ID8744 + + + Track ID8742 + + + Track ID8740 + + + Track ID8738 + + + Track ID8736 + + + Track ID8734 + + + Track ID8732 + + + Track ID8730 + + + Track ID8728 + + + Track ID8726 + + + Track ID8724 + + + Track ID8710 + + + Track ID8712 + + + Track ID8714 + + + Track ID8716 + + + Track ID8718 + + + Track ID8720 + + + Track ID8722 + + + Track ID8696 + + + Track ID8698 + + + Track ID8700 + + + Track ID8702 + + + Track ID8704 + + + Track ID8706 + + + Track ID8708 + + + Track ID8686 + + + Track ID8688 + + + Track ID8690 + + + Track ID8692 + + + Track ID8694 + + + Track ID8672 + + + Track ID8674 + + + Track ID8676 + + + Track ID8678 + + + Track ID8680 + + + Track ID8682 + + + Track ID8684 + + + Track ID8670 + + + Track ID8658 + + + Track ID8660 + + + Track ID8662 + + + Track ID8664 + + + Track ID8666 + + + Track ID8668 + + + Track ID8654 + + + Track ID8656 + + + Track ID8648 + + + Track ID8650 + + + Track ID8652 + + + Track ID8632 + + + Track ID8634 + + + Track ID8636 + + + Track ID8638 + + + Track ID8640 + + + Track ID8642 + + + Track ID8644 + + + Track ID8646 + + + Track ID8630 + + + Track ID8628 + + + Track ID8586 + + + Track ID8588 + + + Track ID8590 + + + Track ID8592 + + + Track ID8594 + + + Track ID8596 + + + Track ID8598 + + + Track ID8600 + + + Track ID8602 + + + Track ID8604 + + + Track ID8606 + + + Track ID8608 + + + Track ID8610 + + + Track ID8612 + + + Track ID8614 + + + Track ID8616 + + + Track ID8618 + + + Track ID8620 + + + Track ID8622 + + + Track ID8624 + + + Track ID8626 + + + Track ID8582 + + + Track ID8584 + + + Track ID8580 + + + Track ID8578 + + + Track ID8576 + + + Track ID8574 + + + Track ID8572 + + + Track ID8570 + + + Track ID8568 + + + Track ID8566 + + + Track ID8564 + + + Track ID8562 + + + Track ID8560 + + + Track ID8558 + + + Track ID8556 + + + Track ID8554 + + + Track ID8552 + + + Track ID8550 + + + Track ID8548 + + + Track ID8546 + + + Track ID8544 + + + Track ID8542 + + + Track ID8540 + + + Track ID8538 + + + Track ID8536 + + + Track ID8534 + + + Track ID8532 + + + Track ID8530 + + + Track ID8528 + + + Track ID8526 + + + Track ID8524 + + + Track ID8522 + + + Track ID8520 + + + Track ID8518 + + + Track ID8516 + + + Track ID8514 + + + Track ID8512 + + + Track ID8510 + + + Track ID8508 + + + Track ID8506 + + + Track ID8504 + + + Track ID8502 + + + Track ID8500 + + + Track ID8498 + + + Track ID8496 + + + Track ID8494 + + + Track ID8492 + + + Track ID8490 + + + Track ID8488 + + + Track ID8486 + + + Track ID8484 + + + Track ID8482 + + + Track ID8480 + + + Track ID8474 + + + Track ID8476 + + + Track ID8478 + + + Track ID8456 + + + Track ID8458 + + + Track ID8460 + + + Track ID8462 + + + Track ID8464 + + + Track ID8466 + + + Track ID8468 + + + Track ID8470 + + + Track ID8472 + + + Track ID8442 + + + Track ID8444 + + + Track ID8446 + + + Track ID8448 + + + Track ID8450 + + + Track ID8452 + + + Track ID8454 + + + Track ID8440 + + + Track ID8436 + + + Track ID8438 + + + Track ID8430 + + + Track ID8432 + + + Track ID8434 + + + Track ID8422 + + + Track ID8424 + + + Track ID8426 + + + Track ID8428 + + + Track ID8416 + + + Track ID8418 + + + Track ID8420 + + + Track ID8414 + + + Track ID8412 + + + Track ID8384 + + + Track ID8410 + + + Track ID8386 + + + Track ID8388 + + + Track ID8390 + + + Track ID8392 + + + Track ID8394 + + + Track ID8396 + + + Track ID8398 + + + Track ID8400 + + + Track ID8402 + + + Track ID8404 + + + Track ID8406 + + + Track ID8408 + + + Track ID8362 + + + Track ID8364 + + + Track ID8366 + + + Track ID8368 + + + Track ID8370 + + + Track ID8372 + + + Track ID8374 + + + Track ID8376 + + + Track ID8378 + + + Track ID8380 + + + Track ID8382 + + + Track ID8346 + + + Track ID8348 + + + Track ID8350 + + + Track ID8354 + + + Track ID8358 + + + Track ID8360 + + + Track ID8344 + + + Track ID8352 + + + Track ID8356 + + + Track ID8330 + + + Track ID8332 + + + Track ID8334 + + + Track ID8336 + + + Track ID8338 + + + Track ID8340 + + + Track ID8342 + + + Track ID8306 + + + Track ID8308 + + + Track ID8310 + + + Track ID8312 + + + Track ID8314 + + + Track ID8316 + + + Track ID8318 + + + Track ID8320 + + + Track ID8322 + + + Track ID8324 + + + Track ID8326 + + + Track ID8304 + + + Track ID8218 + + + Track ID8220 + + + Track ID8222 + + + Track ID8224 + + + Track ID8226 + + + Track ID8228 + + + Track ID8230 + + + Track ID8232 + + + Track ID8234 + + + Track ID8236 + + + Track ID8238 + + + Track ID8240 + + + Track ID8242 + + + Track ID8244 + + + Track ID8246 + + + Track ID8248 + + + Track ID8250 + + + Track ID8252 + + + Track ID8254 + + + Track ID8256 + + + Track ID8258 + + + Track ID8260 + + + Track ID8262 + + + Track ID8264 + + + Track ID8266 + + + Track ID8268 + + + Track ID8270 + + + Track ID8272 + + + Track ID8274 + + + Track ID8276 + + + Track ID8278 + + + Track ID8280 + + + Track ID8282 + + + Track ID8284 + + + Track ID8286 + + + Track ID8288 + + + Track ID8290 + + + Track ID8292 + + + Track ID8298 + + + Track ID8294 + + + Track ID8296 + + + Track ID8208 + + + Track ID8206 + + + Track ID8210 + + + Track ID8212 + + + Track ID8214 + + + Track ID8216 + + + Track ID8152 + + + Track ID8194 + + + Track ID8094 + + + Track ID8096 + + + Track ID8098 + + + Track ID8100 + + + Track ID8102 + + + Track ID8104 + + + Track ID8106 + + + Track ID8108 + + + Track ID8110 + + + Track ID8112 + + + Track ID8114 + + + Track ID8116 + + + Track ID8118 + + + Track ID8120 + + + Track ID8122 + + + Track ID8124 + + + Track ID8126 + + + Track ID8128 + + + Track ID8170 + + + Track ID8172 + + + Track ID8174 + + + Track ID8176 + + + Track ID8178 + + + Track ID8180 + + + Track ID8182 + + + Track ID8184 + + + Track ID8186 + + + Track ID8188 + + + Track ID8190 + + + Track ID8192 + + + Track ID8162 + + + Track ID8130 + + + Track ID8132 + + + Track ID8134 + + + Track ID8136 + + + Track ID8138 + + + Track ID8140 + + + Track ID8142 + + + Track ID8144 + + + Track ID8146 + + + Track ID8148 + + + Track ID8150 + + + Track ID8154 + + + Track ID8156 + + + Track ID8158 + + + Track ID8160 + + + Track ID8164 + + + Track ID8166 + + + Track ID8168 + + + Track ID8196 + + + Track ID8198 + + + Track ID8200 + + + Track ID8202 + + + Track ID8204 + + + Track ID8040 + + + Track ID8042 + + + Track ID8044 + + + Track ID8046 + + + Track ID8048 + + + Track ID8050 + + + Track ID8052 + + + Track ID8054 + + + Track ID8056 + + + Track ID8058 + + + Track ID8060 + + + Track ID8062 + + + Track ID8064 + + + Track ID8066 + + + Track ID8068 + + + Track ID8070 + + + Track ID8072 + + + Track ID8074 + + + Track ID8076 + + + Track ID8078 + + + Track ID8080 + + + Track ID8082 + + + Track ID8084 + + + Track ID8086 + + + Track ID8038 + + + Track ID8036 + + + Track ID8034 + + + Track ID8032 + + + Track ID8030 + + + Track ID8028 + + + Track ID8026 + + + Track ID8024 + + + Track ID8022 + + + Track ID8020 + + + Track ID8018 + + + Track ID8016 + + + Track ID8014 + + + Track ID8012 + + + Track ID8010 + + + Track ID8008 + + + Track ID8006 + + + Track ID8004 + + + Track ID8002 + + + Track ID8000 + + + Track ID7976 + + + Track ID7974 + + + Track ID7972 + + + Track ID7970 + + + Track ID7968 + + + Track ID7966 + + + Track ID7964 + + + Track ID7962 + + + Track ID7960 + + + Track ID7958 + + + Track ID7956 + + + Track ID7954 + + + Track ID7952 + + + Track ID7950 + + + Track ID7948 + + + Track ID7946 + + + Track ID7944 + + + Track ID7942 + + + Track ID7940 + + + Track ID7938 + + + Track ID7936 + + + Track ID7934 + + + Track ID7932 + + + Track ID7930 + + + Track ID7906 + + + Track ID7904 + + + Track ID7902 + + + Track ID7900 + + + Track ID7898 + + + Track ID7896 + + + Track ID7894 + + + Track ID7892 + + + Track ID7890 + + + Track ID7888 + + + Track ID7886 + + + Track ID7884 + + + Track ID7876 + + + Track ID7874 + + + Track ID7872 + + + Track ID7870 + + + Track ID7868 + + + Track ID7866 + + + Track ID7864 + + + Track ID7862 + + + Track ID7860 + + + Track ID7858 + + + Track ID7856 + + + Track ID7854 + + + Track ID7852 + + + Track ID7850 + + + Track ID7848 + + + Track ID7846 + + + Track ID7844 + + + Track ID7842 + + + Track ID7840 + + + Track ID7838 + + + Track ID7798 + + + Track ID7796 + + + Track ID7790 + + + Track ID7792 + + + Track ID7794 + + + Track ID7780 + + + Track ID7782 + + + Track ID7784 + + + Track ID7786 + + + Track ID7788 + + + Track ID7774 + + + Track ID7776 + + + Track ID7778 + + + Track ID7772 + + + Track ID7770 + + + Track ID7768 + + + Track ID7766 + + + Track ID7764 + + + Track ID7762 + + + Track ID7760 + + + Track ID7758 + + + Track ID7756 + + + Track ID7754 + + + Track ID7752 + + + Track ID7750 + + + Track ID7748 + + + Track ID7746 + + + Track ID7744 + + + Track ID7742 + + + Track ID7740 + + + Track ID7738 + + + Track ID7736 + + + Track ID7734 + + + Track ID7732 + + + Track ID7730 + + + Track ID7728 + + + Track ID7726 + + + Track ID7724 + + + Track ID7722 + + + Track ID7720 + + + Track ID7718 + + + Track ID7716 + + + Track ID7714 + + + Track ID7712 + + + Track ID7710 + + + Track ID7708 + + + Track ID7706 + + + Track ID7704 + + + Track ID7702 + + + Track ID7700 + + + Track ID7698 + + + Track ID7696 + + + Track ID7694 + + + Track ID7692 + + + Track ID7690 + + + Track ID7688 + + + Track ID7686 + + + Track ID7684 + + + Track ID7682 + + + Track ID7680 + + + Track ID7678 + + + Track ID7676 + + + Track ID7674 + + + Track ID7672 + + + Track ID7670 + + + Track ID7668 + + + Track ID7666 + + + Track ID7664 + + + Track ID7662 + + + Track ID7660 + + + Track ID7658 + + + Track ID7656 + + + Track ID7654 + + + Track ID7652 + + + Track ID7650 + + + Track ID7648 + + + Track ID7646 + + + Track ID7644 + + + Track ID7642 + + + Track ID7640 + + + Track ID7638 + + + Track ID7636 + + + Track ID7634 + + + Track ID7632 + + + Track ID7630 + + + Track ID7628 + + + Track ID7626 + + + Track ID7624 + + + Track ID7622 + + + Track ID7620 + + + Track ID7618 + + + Track ID7616 + + + Track ID7614 + + + Track ID7612 + + + Track ID7610 + + + Track ID7608 + + + Track ID7606 + + + Track ID7604 + + + Track ID7602 + + + Track ID7600 + + + Track ID7598 + + + Track ID7596 + + + Track ID7594 + + + Track ID7592 + + + Track ID7590 + + + Track ID7588 + + + Track ID7586 + + + Track ID7584 + + + Track ID7582 + + + Track ID7580 + + + Track ID7578 + + + Track ID7576 + + + Track ID7574 + + + Track ID7572 + + + Track ID7570 + + + Track ID7568 + + + Track ID7566 + + + Track ID7564 + + + Track ID7562 + + + Track ID7536 + + + Track ID7538 + + + Track ID7540 + + + Track ID7542 + + + Track ID7544 + + + Track ID7546 + + + Track ID7548 + + + Track ID7550 + + + Track ID7552 + + + Track ID7554 + + + Track ID7556 + + + Track ID7558 + + + Track ID7560 + + + Track ID7534 + + + Track ID7532 + + + Track ID7530 + + + Track ID7528 + + + Track ID7526 + + + Track ID7524 + + + Track ID7522 + + + Track ID7520 + + + Track ID7518 + + + Track ID7516 + + + Track ID7514 + + + Track ID7512 + + + Track ID7510 + + + Track ID7508 + + + Track ID7506 + + + Track ID7504 + + + Track ID7502 + + + Track ID7500 + + + Track ID7498 + + + Track ID7496 + + + Track ID7494 + + + Track ID7492 + + + Track ID7490 + + + Track ID7488 + + + Track ID7486 + + + Track ID7484 + + + Track ID7482 + + + Track ID7480 + + + Track ID7478 + + + Track ID7476 + + + Track ID7474 + + + Track ID7472 + + + Track ID7470 + + + Track ID7468 + + + Track ID7466 + + + Track ID7464 + + + Track ID7462 + + + Track ID7460 + + + Track ID7458 + + + Track ID7456 + + + Track ID7454 + + + Track ID7452 + + + Track ID7450 + + + Track ID7448 + + + Track ID7446 + + + Track ID7444 + + + Track ID7442 + + + Track ID7440 + + + Track ID7438 + + + Track ID7436 + + + Track ID7434 + + + Track ID7432 + + + Track ID7430 + + + Track ID7428 + + + Track ID7426 + + + Track ID7424 + + + Track ID7422 + + + Track ID7420 + + + Track ID7418 + + + Track ID7416 + + + Track ID7414 + + + Track ID7412 + + + Track ID7410 + + + Track ID7408 + + + Track ID7406 + + + Track ID7404 + + + Track ID7402 + + + Track ID7400 + + + Track ID7398 + + + Track ID7396 + + + Track ID7394 + + + Track ID7392 + + + Track ID7390 + + + Track ID7388 + + + Track ID7386 + + + Track ID7384 + + + Track ID7382 + + + Track ID7380 + + + Track ID7378 + + + Track ID7376 + + + Track ID7374 + + + Track ID7372 + + + Track ID7370 + + + Track ID7368 + + + Track ID7366 + + + Track ID7364 + + + Track ID7362 + + + Track ID7360 + + + Track ID7358 + + + Track ID7356 + + + Track ID7354 + + + Track ID7352 + + + Track ID7350 + + + Track ID7348 + + + Track ID7346 + + + Track ID7344 + + + Track ID7342 + + + Track ID7340 + + + Track ID7338 + + + Track ID7336 + + + Track ID7334 + + + Track ID7332 + + + Track ID7330 + + + Track ID7328 + + + Track ID7326 + + + Track ID7324 + + + Track ID7322 + + + Track ID7320 + + + Track ID7318 + + + Track ID7316 + + + Track ID7314 + + + Track ID7312 + + + Track ID7310 + + + Track ID7308 + + + Track ID7306 + + + Track ID7304 + + + Track ID7302 + + + Track ID7300 + + + Track ID7298 + + + Track ID7296 + + + Track ID7294 + + + Track ID7292 + + + Track ID7290 + + + Track ID7288 + + + Track ID7286 + + + Track ID7284 + + + Track ID7282 + + + Track ID7280 + + + Track ID7278 + + + Track ID7276 + + + Track ID7274 + + + Track ID7272 + + + Track ID7270 + + + Track ID7268 + + + Track ID7266 + + + Track ID7264 + + + Track ID7262 + + + Track ID7260 + + + Track ID7258 + + + Track ID7256 + + + Track ID7254 + + + Track ID7252 + + + Track ID7250 + + + Track ID7248 + + + Track ID7246 + + + Track ID7244 + + + Track ID7242 + + + Track ID7240 + + + Track ID7238 + + + Track ID7236 + + + Track ID7234 + + + Track ID7232 + + + Track ID7230 + + + Track ID7228 + + + Track ID7226 + + + Track ID7224 + + + Track ID7222 + + + Track ID7220 + + + Track ID7218 + + + Track ID7216 + + + Track ID7214 + + + Track ID7212 + + + Track ID7210 + + + Track ID7208 + + + Track ID7206 + + + Track ID7204 + + + Track ID7202 + + + Track ID7200 + + + Track ID7198 + + + Track ID7196 + + + Track ID7194 + + + Track ID7192 + + + Track ID7190 + + + Track ID7188 + + + Track ID7186 + + + Track ID7184 + + + Track ID7182 + + + Track ID7180 + + + Track ID7178 + + + Track ID7176 + + + Track ID7174 + + + Track ID7172 + + + Track ID7170 + + + Track ID7168 + + + Track ID7166 + + + Track ID7164 + + + Track ID7162 + + + Track ID7160 + + + Track ID7158 + + + Track ID7156 + + + Track ID7154 + + + Track ID7152 + + + Track ID7150 + + + Track ID7148 + + + Track ID7146 + + + Track ID7144 + + + Track ID7142 + + + Track ID7140 + + + Track ID7138 + + + Track ID7136 + + + Track ID7134 + + + Track ID7132 + + + Track ID7130 + + + Track ID7128 + + + Track ID7126 + + + Track ID7124 + + + Track ID7122 + + + Track ID7120 + + + Track ID7118 + + + Track ID7116 + + + Track ID7114 + + + Track ID7112 + + + Track ID7110 + + + Track ID7108 + + + Track ID7106 + + + Track ID7102 + + + Track ID7100 + + + Track ID7098 + + + Track ID7096 + + + Track ID7094 + + + Track ID7092 + + + Track ID7090 + + + Track ID7088 + + + Track ID7086 + + + Track ID7084 + + + Track ID7082 + + + Track ID7080 + + + Track ID7078 + + + Track ID7076 + + + Track ID7074 + + + Track ID7072 + + + Track ID7070 + + + Track ID7068 + + + Track ID7066 + + + Track ID7064 + + + Track ID7062 + + + Track ID7060 + + + Track ID7058 + + + Track ID7056 + + + Track ID7054 + + + Track ID7052 + + + Track ID7050 + + + Track ID7048 + + + Track ID7046 + + + Track ID7044 + + + Track ID7042 + + + Track ID7040 + + + Track ID7038 + + + Track ID7036 + + + Track ID7034 + + + Track ID7032 + + + Track ID7030 + + + Track ID7028 + + + Track ID7026 + + + Track ID7024 + + + Track ID7022 + + + Track ID7020 + + + Track ID7018 + + + Track ID7016 + + + Track ID7014 + + + Track ID7012 + + + Track ID7010 + + + Track ID7008 + + + Track ID7006 + + + Track ID7004 + + + Track ID7002 + + + Track ID7000 + + + Track ID6998 + + + Track ID6996 + + + Track ID6994 + + + Track ID6992 + + + Track ID6990 + + + Track ID6988 + + + Track ID6986 + + + Track ID6984 + + + Track ID6982 + + + Track ID6980 + + + Track ID6978 + + + Track ID6976 + + + Track ID6974 + + + Track ID6972 + + + Track ID6970 + + + Track ID6968 + + + Track ID6966 + + + Track ID6964 + + + Track ID6962 + + + Track ID6960 + + + Track ID6958 + + + Track ID6956 + + + Track ID6954 + + + Track ID6952 + + + Track ID6950 + + + Track ID6948 + + + Track ID6946 + + + Track ID6944 + + + Track ID6942 + + + Track ID6940 + + + Track ID6938 + + + Track ID6936 + + + Track ID6934 + + + Track ID6932 + + + Track ID6930 + + + Track ID6928 + + + Track ID6926 + + + Track ID6924 + + + Track ID6922 + + + Track ID6920 + + + Track ID6918 + + + Track ID6916 + + + Track ID6914 + + + Track ID6912 + + + Track ID6910 + + + Track ID6908 + + + Track ID6906 + + + Track ID6904 + + + Track ID6902 + + + Track ID6900 + + + Track ID6898 + + + Track ID6896 + + + Track ID6894 + + + Track ID6892 + + + Track ID6890 + + + Track ID6888 + + + Track ID6886 + + + Track ID6884 + + + Track ID6882 + + + Track ID6880 + + + Track ID6878 + + + Track ID6876 + + + Track ID6874 + + + Track ID6872 + + + Track ID6870 + + + Track ID6866 + + + Track ID6868 + + + Track ID6862 + + + Track ID6846 + + + Track ID6848 + + + Track ID6850 + + + Track ID6844 + + + Track ID6840 + + + Track ID6842 + + + Track ID6830 + + + Track ID6832 + + + Track ID6834 + + + Track ID6836 + + + Track ID6838 + + + Track ID6812 + + + Track ID6814 + + + Track ID6816 + + + Track ID6818 + + + Track ID6820 + + + Track ID6822 + + + Track ID6824 + + + Track ID6826 + + + Track ID6828 + + + Track ID6746 + + + Track ID6748 + + + Track ID6754 + + + Track ID6756 + + + Track ID6794 + + + Track ID6796 + + + Track ID6758 + + + Track ID6786 + + + Track ID6790 + + + Track ID6800 + + + Track ID6806 + + + Track ID6740 + + + Track ID6760 + + + Track ID6762 + + + Track ID6766 + + + Track ID6768 + + + Track ID6774 + + + Track ID6784 + + + Track ID6798 + + + Track ID6804 + + + Track ID6770 + + + Track ID6792 + + + Track ID6752 + + + Track ID6764 + + + Track ID6810 + + + Track ID6772 + + + Track ID6776 + + + Track ID6778 + + + Track ID6780 + + + Track ID6782 + + + Track ID6788 + + + Track ID6802 + + + Track ID6808 + + + Track ID6738 + + + Track ID6742 + + + Track ID6744 + + + Track ID6750 + + + Track ID6734 + + + Track ID6710 + + + Track ID6726 + + + Track ID6706 + + + Track ID6730 + + + Track ID6732 + + + Track ID6718 + + + Track ID6722 + + + Track ID6712 + + + Track ID6716 + + + Track ID6736 + + + Track ID6724 + + + Track ID6728 + + + Track ID6720 + + + Track ID6708 + + + Track ID6714 + + + Track ID6692 + + + Track ID6690 + + + Track ID6688 + + + Track ID6686 + + + Track ID6684 + + + Track ID6682 + + + Track ID6680 + + + Track ID6678 + + + Track ID6676 + + + Track ID6668 + + + Track ID6670 + + + Track ID6672 + + + Track ID6674 + + + Track ID6664 + + + Track ID6666 + + + Track ID6658 + + + Track ID6652 + + + Track ID6654 + + + Track ID6656 + + + Track ID6660 + + + Track ID6662 + + + Track ID6650 + + + Track ID6644 + + + Track ID6646 + + + Track ID6648 + + + Track ID6630 + + + Track ID6632 + + + Track ID6634 + + + Track ID6636 + + + Track ID6638 + + + Track ID6640 + + + Track ID6642 + + + Track ID6612 + + + Track ID6614 + + + Track ID6616 + + + Track ID6618 + + + Track ID6620 + + + Track ID6622 + + + Track ID6624 + + + Track ID6626 + + + Track ID6628 + + + Track ID6604 + + + Track ID6606 + + + Track ID6608 + + + Track ID6610 + + + Track ID6600 + + + Track ID6602 + + + Track ID6586 + + + Track ID6588 + + + Track ID6590 + + + Track ID6592 + + + Track ID6594 + + + Track ID6596 + + + Track ID6598 + + + Track ID6580 + + + Track ID6582 + + + Track ID6584 + + + Track ID6576 + + + Track ID6578 + + + Track ID6560 + + + Track ID6562 + + + Track ID6564 + + + Track ID6566 + + + Track ID6568 + + + Track ID6570 + + + Track ID6572 + + + Track ID6574 + + + Track ID6554 + + + Track ID6556 + + + Track ID6558 + + + Track ID6548 + + + Track ID6550 + + + Track ID6552 + + + Track ID6538 + + + Track ID6540 + + + Track ID6542 + + + Track ID6544 + + + Track ID6546 + + + Track ID6536 + + + Track ID6534 + + + Track ID6526 + + + Track ID6528 + + + Track ID6530 + + + Track ID6532 + + + Track ID6524 + + + Track ID6514 + + + Track ID6516 + + + Track ID6518 + + + Track ID6520 + + + Track ID6522 + + + Track ID6510 + + + Track ID6512 + + + Track ID6508 + + + Track ID6498 + + + Track ID6500 + + + Track ID6502 + + + Track ID6504 + + + Track ID6506 + + + Track ID6488 + + + Track ID6490 + + + Track ID6492 + + + Track ID6494 + + + Track ID6496 + + + Track ID6484 + + + Track ID6486 + + + Track ID6472 + + + Track ID6474 + + + Track ID6476 + + + Track ID6478 + + + Track ID6480 + + + Track ID6482 + + + Track ID6470 + + + Track ID6460 + + + Track ID6458 + + + Track ID6468 + + + Track ID6456 + + + Track ID6464 + + + Track ID6466 + + + Track ID6462 + + + Track ID6454 + + + Track ID6450 + + + Track ID6444 + + + Track ID6452 + + + Track ID6440 + + + Track ID6438 + + + Track ID6442 + + + Track ID6448 + + + Track ID6446 + + + Track ID6428 + + + Track ID6430 + + + Track ID6432 + + + Track ID6434 + + + Track ID6436 + + + Track ID6418 + + + Track ID6420 + + + Track ID6422 + + + Track ID6424 + + + Track ID6426 + + + Track ID6404 + + + Track ID6406 + + + Track ID6408 + + + Track ID6410 + + + Track ID6412 + + + Track ID6414 + + + Track ID6416 + + + Track ID6400 + + + Track ID6402 + + + Track ID6396 + + + Track ID6398 + + + Track ID6394 + + + Track ID6382 + + + Track ID6384 + + + Track ID6386 + + + Track ID6388 + + + Track ID6390 + + + Track ID6392 + + + Track ID6376 + + + Track ID6378 + + + Track ID6380 + + + Track ID6370 + + + Track ID6372 + + + Track ID6374 + + + Track ID6368 + + + Track ID6356 + + + Track ID6358 + + + Track ID6360 + + + Track ID6362 + + + Track ID6364 + + + Track ID6366 + + + Track ID6350 + + + Track ID6352 + + + Track ID6354 + + + Track ID6342 + + + Track ID6344 + + + Track ID6346 + + + Track ID6348 + + + Track ID6324 + + + Track ID6326 + + + Track ID6328 + + + Track ID6330 + + + Track ID6332 + + + Track ID6334 + + + Track ID6336 + + + Track ID6338 + + + Track ID6340 + + + Track ID6306 + + + Track ID6308 + + + Track ID6310 + + + Track ID6312 + + + Track ID6314 + + + Track ID6316 + + + Track ID6318 + + + Track ID6320 + + + Track ID6322 + + + Track ID6300 + + + Track ID6302 + + + Track ID6304 + + + Track ID6294 + + + Track ID6296 + + + Track ID6298 + + + Track ID6280 + + + Track ID6282 + + + Track ID6284 + + + Track ID6286 + + + Track ID6288 + + + Track ID6290 + + + Track ID6292 + + + Track ID6276 + + + Track ID6278 + + + Track ID6258 + + + Track ID6260 + + + Track ID6262 + + + Track ID6264 + + + Track ID6266 + + + Track ID6268 + + + Track ID6270 + + + Track ID6272 + + + Track ID6274 + + + Track ID6256 + + + Track ID6252 + + + Track ID6254 + + + Track ID6248 + + + Track ID6250 + + + Track ID6240 + + + Track ID6242 + + + Track ID6244 + + + Track ID6246 + + + Track ID6228 + + + Track ID6230 + + + Track ID6232 + + + Track ID6234 + + + Track ID6236 + + + Track ID6238 + + + Track ID6220 + + + Track ID6222 + + + Track ID6224 + + + Track ID6226 + + + Track ID6214 + + + Track ID6216 + + + Track ID6218 + + + Track ID6198 + + + Track ID6200 + + + Track ID6202 + + + Track ID6204 + + + Track ID6206 + + + Track ID6208 + + + Track ID6210 + + + Track ID6212 + + + Track ID6184 + + + Track ID6186 + + + Track ID6188 + + + Track ID6190 + + + Track ID6192 + + + Track ID6194 + + + Track ID6196 + + + Track ID6172 + + + Track ID6174 + + + Track ID6176 + + + Track ID6178 + + + Track ID6180 + + + Track ID6182 + + + Track ID6158 + + + Track ID6160 + + + Track ID6162 + + + Track ID6164 + + + Track ID6166 + + + Track ID6168 + + + Track ID6170 + + + Track ID6150 + + + Track ID6152 + + + Track ID6154 + + + Track ID6156 + + + Track ID6148 + + + Track ID6140 + + + Track ID6142 + + + Track ID6144 + + + Track ID6146 + + + Track ID6132 + + + Track ID6134 + + + Track ID6136 + + + Track ID6138 + + + Track ID6128 + + + Track ID6130 + + + Track ID6120 + + + Track ID6122 + + + Track ID6124 + + + Track ID6126 + + + Track ID6114 + + + Track ID6116 + + + Track ID6118 + + + Track ID6110 + + + Track ID6112 + + + Track ID6098 + + + Track ID6094 + + + Track ID6096 + + + Track ID6100 + + + Track ID6102 + + + Track ID6104 + + + Track ID6106 + + + Track ID6108 + + + Track ID6078 + + + Track ID6080 + + + Track ID6082 + + + Track ID6084 + + + Track ID6086 + + + Track ID6088 + + + Track ID6090 + + + Track ID6092 + + + Track ID6058 + + + Track ID6060 + + + Track ID6062 + + + Track ID6064 + + + Track ID6066 + + + Track ID6068 + + + Track ID6070 + + + Track ID6072 + + + Track ID6074 + + + Track ID6076 + + + Track ID6046 + + + Track ID6048 + + + Track ID6050 + + + Track ID6052 + + + Track ID6054 + + + Track ID6056 + + + Track ID6040 + + + Track ID6038 + + + Track ID6034 + + + Track ID6042 + + + Track ID6030 + + + Track ID6032 + + + Track ID6036 + + + Track ID6044 + + + Track ID6016 + + + Track ID6022 + + + Track ID6018 + + + Track ID6020 + + + Track ID6026 + + + Track ID6024 + + + Track ID6028 + + + Track ID6004 + + + Track ID6012 + + + Track ID6014 + + + Track ID6010 + + + Track ID6008 + + + Track ID6006 + + + Track ID6000 + + + Track ID6002 + + + Track ID5988 + + + Track ID5998 + + + Track ID5992 + + + Track ID5986 + + + Track ID5994 + + + Track ID5990 + + + Track ID5996 + + + Track ID5980 + + + Track ID5978 + + + Track ID5984 + + + Track ID5982 + + + Track ID5974 + + + Track ID5976 + + + Track ID5958 + + + Track ID5960 + + + Track ID5970 + + + Track ID5972 + + + Track ID5962 + + + Track ID5964 + + + Track ID5966 + + + Track ID5968 + + + Track ID5944 + + + Track ID5954 + + + Track ID5956 + + + Track ID5946 + + + Track ID5948 + + + Track ID5950 + + + Track ID5952 + + + Track ID5942 + + + Track ID5936 + + + Track ID5932 + + + Track ID5934 + + + Track ID5938 + + + Track ID5940 + + + Track ID5922 + + + Track ID5924 + + + Track ID5926 + + + Track ID5928 + + + Track ID5930 + + + Track ID5916 + + + Track ID5918 + + + Track ID5920 + + + Track ID5900 + + + Track ID5908 + + + Track ID5910 + + + Track ID5912 + + + Track ID5914 + + + Track ID5902 + + + Track ID5904 + + + Track ID5898 + + + Track ID5906 + + + Track ID5890 + + + Track ID5884 + + + Track ID5886 + + + Track ID5882 + + + Track ID5888 + + + Track ID5892 + + + Track ID5896 + + + Track ID5894 + + + Track ID5876 + + + Track ID5868 + + + Track ID5870 + + + Track ID5872 + + + Track ID5874 + + + Track ID5878 + + + Track ID5880 + + + Track ID5848 + + + Track ID5850 + + + Track ID5852 + + + Track ID5854 + + + Track ID5856 + + + Track ID5858 + + + Track ID5860 + + + Track ID5862 + + + Track ID5864 + + + Track ID5866 + + + Track ID5842 + + + Track ID5844 + + + Track ID5846 + + + Track ID5834 + + + Track ID5836 + + + Track ID5838 + + + Track ID5840 + + + Track ID5820 + + + Track ID5822 + + + Track ID5824 + + + Track ID5826 + + + Track ID5828 + + + Track ID5830 + + + Track ID5832 + + + Track ID5808 + + + Track ID5810 + + + Track ID5812 + + + Track ID5814 + + + Track ID5816 + + + Track ID5818 + + + Track ID5794 + + + Track ID5796 + + + Track ID5798 + + + Track ID5800 + + + Track ID5802 + + + Track ID5804 + + + Track ID5806 + + + Track ID5790 + + + Track ID5792 + + + Track ID5768 + + + Track ID5770 + + + Track ID5772 + + + Track ID5774 + + + Track ID5776 + + + Track ID5778 + + + Track ID5780 + + + Track ID5782 + + + Track ID5784 + + + Track ID5786 + + + Track ID5788 + + + Track ID5762 + + + Track ID5764 + + + Track ID5766 + + + Track ID5758 + + + Track ID5760 + + + Track ID5748 + + + Track ID5756 + + + Track ID5750 + + + Track ID5754 + + + Track ID5752 + + + Track ID5746 + + + Track ID5744 + + + Track ID5742 + + + Track ID5740 + + + Track ID5732 + + + Track ID5734 + + + Track ID5738 + + + Track ID5736 + + + Track ID5722 + + + Track ID5724 + + + Track ID5726 + + + Track ID5728 + + + Track ID5730 + + + Track ID5716 + + + Track ID5718 + + + Track ID5720 + + + Track ID5708 + + + Track ID5710 + + + Track ID5712 + + + Track ID5714 + + + Track ID5700 + + + Track ID5702 + + + Track ID5704 + + + Track ID5706 + + + Track ID5692 + + + Track ID5694 + + + Track ID5696 + + + Track ID5698 + + + Track ID5688 + + + Track ID5690 + + + Track ID5682 + + + Track ID5674 + + + Track ID5676 + + + Track ID5678 + + + Track ID5684 + + + Track ID5686 + + + Track ID5680 + + + Track ID5662 + + + Track ID5668 + + + Track ID5672 + + + Track ID5664 + + + Track ID5660 + + + Track ID5670 + + + Track ID5666 + + + Track ID5648 + + + Track ID5654 + + + Track ID5652 + + + Track ID5650 + + + Track ID5656 + + + Track ID5658 + + + Track ID5644 + + + Track ID5646 + + + Track ID5630 + + + Track ID5632 + + + Track ID5634 + + + Track ID5636 + + + Track ID5638 + + + Track ID5640 + + + Track ID5642 + + + Track ID5628 + + + Track ID5614 + + + Track ID5620 + + + Track ID5622 + + + Track ID5616 + + + Track ID5618 + + + Track ID5624 + + + Track ID5626 + + + Track ID5612 + + + Track ID5604 + + + Track ID5606 + + + Track ID5608 + + + Track ID5610 + + + Track ID5600 + + + Track ID5602 + + + Track ID5588 + + + Track ID5590 + + + Track ID5596 + + + Track ID5598 + + + Track ID5584 + + + Track ID5586 + + + Track ID5592 + + + Track ID5594 + + + Track ID5576 + + + Track ID5578 + + + Track ID5580 + + + Track ID5582 + + + Track ID5572 + + + Track ID5574 + + + Track ID5556 + + + Track ID5558 + + + Track ID5560 + + + Track ID5562 + + + Track ID5564 + + + Track ID5566 + + + Track ID5568 + + + Track ID5570 + + + Track ID5548 + + + Track ID5542 + + + Track ID5550 + + + Track ID5546 + + + Track ID5552 + + + Track ID5554 + + + Track ID5544 + + + Track ID5524 + + + Track ID5534 + + + Track ID5526 + + + Track ID5528 + + + Track ID5532 + + + Track ID5536 + + + Track ID5538 + + + Track ID5540 + + + Track ID5530 + + + Track ID5510 + + + Track ID5512 + + + Track ID5514 + + + Track ID5516 + + + Track ID5518 + + + Track ID5520 + + + Track ID5522 + + + Track ID5508 + + + Track ID5498 + + + Track ID5500 + + + Track ID5502 + + + Track ID5504 + + + Track ID5506 + + + Track ID5494 + + + Track ID5496 + + + Track ID5490 + + + Track ID5492 + + + Track ID5488 + + + Track ID5476 + + + Track ID5478 + + + Track ID5480 + + + Track ID5484 + + + Track ID5486 + + + Track ID5482 + + + Track ID5460 + + + Track ID5462 + + + Track ID5464 + + + Track ID5466 + + + Track ID5468 + + + Track ID5470 + + + Track ID5472 + + + Track ID5474 + + + Track ID5444 + + + Track ID5446 + + + Track ID5448 + + + Track ID5450 + + + Track ID5452 + + + Track ID5454 + + + Track ID5456 + + + Track ID5458 + + + Track ID5438 + + + Track ID5440 + + + Track ID5442 + + + Track ID5426 + + + Track ID5434 + + + Track ID5436 + + + Track ID5424 + + + Track ID5432 + + + Track ID5428 + + + Track ID5430 + + + Track ID5410 + + + Track ID5414 + + + Track ID5418 + + + Track ID5420 + + + Track ID5416 + + + Track ID5412 + + + Track ID5422 + + + Track ID5400 + + + Track ID5402 + + + Track ID5408 + + + Track ID5396 + + + Track ID5398 + + + Track ID5404 + + + Track ID5406 + + + Track ID5394 + + + Track ID5384 + + + Track ID5386 + + + Track ID5388 + + + Track ID5390 + + + Track ID5382 + + + Track ID5392 + + + Track ID5376 + + + Track ID5378 + + + Track ID5372 + + + Track ID5374 + + + Track ID5380 + + + Track ID5368 + + + Track ID5370 + + + Track ID5354 + + + Track ID5356 + + + Track ID5358 + + + Track ID5360 + + + Track ID5362 + + + Track ID5364 + + + Track ID5366 + + + Track ID5352 + + + Track ID5340 + + + Track ID5342 + + + Track ID5344 + + + Track ID5346 + + + Track ID5348 + + + Track ID5350 + + + Track ID5326 + + + Track ID5328 + + + Track ID5330 + + + Track ID5332 + + + Track ID5334 + + + Track ID5336 + + + Track ID5338 + + + Track ID5310 + + + Track ID5312 + + + Track ID5314 + + + Track ID5316 + + + Track ID5318 + + + Track ID5320 + + + Track ID5322 + + + Track ID5324 + + + Track ID5306 + + + Track ID5308 + + + Track ID5296 + + + Track ID5298 + + + Track ID5300 + + + Track ID5302 + + + Track ID5304 + + + Track ID5284 + + + Track ID5286 + + + Track ID5288 + + + Track ID5290 + + + Track ID5292 + + + Track ID5294 + + + Track ID5282 + + + Track ID5266 + + + Track ID5268 + + + Track ID5270 + + + Track ID5272 + + + Track ID5274 + + + Track ID5276 + + + Track ID5278 + + + Track ID5280 + + + Track ID5260 + + + Track ID5264 + + + Track ID5262 + + + Track ID5258 + + + Track ID5256 + + + Track ID5254 + + + Track ID5252 + + + Track ID5246 + + + Track ID5244 + + + Track ID5248 + + + Track ID5250 + + + Track ID5242 + + + Track ID5230 + + + Track ID5232 + + + Track ID5238 + + + Track ID5234 + + + Track ID5236 + + + Track ID5240 + + + Track ID5214 + + + Track ID5216 + + + Track ID5218 + + + Track ID5220 + + + Track ID5226 + + + Track ID5228 + + + Track ID5222 + + + Track ID5224 + + + Track ID5204 + + + Track ID5206 + + + Track ID5208 + + + Track ID5210 + + + Track ID5212 + + + Track ID5202 + + + Track ID5200 + + + Track ID5198 + + + Track ID5184 + + + Track ID5194 + + + Track ID5186 + + + Track ID5192 + + + Track ID5190 + + + Track ID5188 + + + Track ID5196 + + + Track ID5182 + + + Track ID5180 + + + Track ID5170 + + + Track ID5172 + + + Track ID5174 + + + Track ID5176 + + + Track ID5178 + + + Track ID5156 + + + Track ID5158 + + + Track ID5160 + + + Track ID5162 + + + Track ID5164 + + + Track ID5166 + + + Track ID5168 + + + Track ID5154 + + + Track ID5144 + + + Track ID5146 + + + Track ID5148 + + + Track ID5150 + + + Track ID5152 + + + Track ID5136 + + + Track ID5138 + + + Track ID5140 + + + Track ID5142 + + + Track ID5126 + + + Track ID5128 + + + Track ID5130 + + + Track ID5132 + + + Track ID5134 + + + Track ID5114 + + + Track ID5116 + + + Track ID5118 + + + Track ID5120 + + + Track ID5122 + + + Track ID5124 + + + Track ID5094 + + + Track ID5096 + + + Track ID5098 + + + Track ID5100 + + + Track ID5102 + + + Track ID5104 + + + Track ID5106 + + + Track ID5108 + + + Track ID5110 + + + Track ID5112 + + + Track ID5088 + + + Track ID5090 + + + Track ID5092 + + + Track ID5084 + + + Track ID5082 + + + Track ID5080 + + + Track ID5086 + + + Track ID5066 + + + Track ID5072 + + + Track ID5068 + + + Track ID5062 + + + Track ID5074 + + + Track ID5070 + + + Track ID5076 + + + Track ID5078 + + + Track ID5064 + + + Track ID5056 + + + Track ID5060 + + + Track ID5052 + + + Track ID5050 + + + Track ID5046 + + + Track ID5048 + + + Track ID5054 + + + Track ID5058 + + + Track ID5036 + + + Track ID5038 + + + Track ID5040 + + + Track ID5042 + + + Track ID5044 + + + Track ID5034 + + + Track ID5020 + + + Track ID5024 + + + Track ID5026 + + + Track ID5028 + + + Track ID5032 + + + Track ID5022 + + + Track ID5030 + + + Track ID5016 + + + Track ID5010 + + + Track ID5018 + + + Track ID5014 + + + Track ID5012 + + + Track ID4998 + + + Track ID4994 + + + Track ID5000 + + + Track ID5004 + + + Track ID5002 + + + Track ID5008 + + + Track ID5006 + + + Track ID4996 + + + Track ID4992 + + + Track ID4990 + + + Track ID4988 + + + Track ID4982 + + + Track ID4986 + + + Track ID4984 + + + Track ID4978 + + + Track ID4972 + + + Track ID4974 + + + Track ID4976 + + + Track ID4980 + + + Track ID4970 + + + Track ID4958 + + + Track ID4960 + + + Track ID4962 + + + Track ID4964 + + + Track ID4966 + + + Track ID4968 + + + Track ID4942 + + + Track ID4944 + + + Track ID4946 + + + Track ID4948 + + + Track ID4950 + + + Track ID4952 + + + Track ID4954 + + + Track ID4956 + + + Track ID4926 + + + Track ID4928 + + + Track ID4930 + + + Track ID4932 + + + Track ID4934 + + + Track ID4936 + + + Track ID4938 + + + Track ID4940 + + + Track ID4924 + + + Track ID4912 + + + Track ID4914 + + + Track ID4916 + + + Track ID4918 + + + Track ID4920 + + + Track ID4922 + + + Track ID4900 + + + Track ID4902 + + + Track ID4904 + + + Track ID4906 + + + Track ID4908 + + + Track ID4910 + + + Track ID4886 + + + Track ID4888 + + + Track ID4890 + + + Track ID4892 + + + Track ID4894 + + + Track ID4896 + + + Track ID4898 + + + Track ID4878 + + + Track ID4880 + + + Track ID4868 + + + Track ID4882 + + + Track ID4884 + + + Track ID4874 + + + Track ID4876 + + + Track ID4870 + + + Track ID4872 + + + Track ID4854 + + + Track ID4856 + + + Track ID4858 + + + Track ID4860 + + + Track ID4866 + + + Track ID4862 + + + Track ID4864 + + + Track ID4846 + + + Track ID4848 + + + Track ID4838 + + + Track ID4840 + + + Track ID4850 + + + Track ID4852 + + + Track ID4842 + + + Track ID4844 + + + Track ID4826 + + + Track ID4828 + + + Track ID4834 + + + Track ID4836 + + + Track ID4830 + + + Track ID4832 + + + Track ID4810 + + + Track ID4812 + + + Track ID4814 + + + Track ID4816 + + + Track ID4818 + + + Track ID4820 + + + Track ID4822 + + + Track ID4824 + + + Track ID4796 + + + Track ID4798 + + + Track ID4800 + + + Track ID4802 + + + Track ID4804 + + + Track ID4806 + + + Track ID4808 + + + Track ID4782 + + + Track ID4784 + + + Track ID4786 + + + Track ID4788 + + + Track ID4790 + + + Track ID4792 + + + Track ID4794 + + + Track ID4774 + + + Track ID4776 + + + Track ID4778 + + + Track ID4780 + + + Track ID4768 + + + Track ID4770 + + + Track ID4772 + + + Track ID4756 + + + Track ID4758 + + + Track ID4752 + + + Track ID4754 + + + Track ID4760 + + + Track ID4762 + + + Track ID4764 + + + Track ID4766 + + + Track ID4740 + + + Track ID4742 + + + Track ID4750 + + + Track ID4734 + + + Track ID4736 + + + Track ID4738 + + + Track ID4744 + + + Track ID4746 + + + Track ID4748 + + + Track ID4724 + + + Track ID4726 + + + Track ID4728 + + + Track ID4730 + + + Track ID4732 + + + Track ID4722 + + + Track ID4718 + + + Track ID4720 + + + Track ID4704 + + + Track ID4716 + + + Track ID4714 + + + Track ID4710 + + + Track ID4706 + + + Track ID4700 + + + Track ID4702 + + + Track ID4712 + + + Track ID4708 + + + Track ID4686 + + + Track ID4688 + + + Track ID4690 + + + Track ID4692 + + + Track ID4694 + + + Track ID4696 + + + Track ID4698 + + + Track ID4672 + + + Track ID4674 + + + Track ID4676 + + + Track ID4678 + + + Track ID4680 + + + Track ID4682 + + + Track ID4684 + + + Track ID4666 + + + Track ID4668 + + + Track ID4670 + + + Track ID4664 + + + Track ID4652 + + + Track ID4654 + + + Track ID4656 + + + Track ID4658 + + + Track ID4660 + + + Track ID4662 + + + Track ID4634 + + + Track ID4636 + + + Track ID4638 + + + Track ID4640 + + + Track ID4642 + + + Track ID4644 + + + Track ID4646 + + + Track ID4648 + + + Track ID4650 + + + Track ID4620 + + + Track ID4628 + + + Track ID4622 + + + Track ID4630 + + + Track ID4626 + + + Track ID4624 + + + Track ID4632 + + + Track ID4608 + + + Track ID4616 + + + Track ID4610 + + + Track ID4612 + + + Track ID4618 + + + Track ID4614 + + + Track ID4602 + + + Track ID4600 + + + Track ID4604 + + + Track ID4598 + + + Track ID4594 + + + Track ID4606 + + + Track ID4596 + + + Track ID4592 + + + Track ID4584 + + + Track ID4586 + + + Track ID4588 + + + Track ID4590 + + + Track ID4568 + + + Track ID4570 + + + Track ID4572 + + + Track ID4574 + + + Track ID4576 + + + Track ID4578 + + + Track ID4580 + + + Track ID4582 + + + Track ID4566 + + + Track ID4558 + + + Track ID4560 + + + Track ID4562 + + + Track ID4564 + + + Track ID4554 + + + Track ID4556 + + + Track ID4538 + + + Track ID4540 + + + Track ID4542 + + + Track ID4544 + + + Track ID4546 + + + Track ID4548 + + + Track ID4550 + + + Track ID4552 + + + Track ID4534 + + + Track ID4536 + + + Track ID4526 + + + Track ID4528 + + + Track ID4530 + + + Track ID4532 + + + Track ID4512 + + + Track ID4514 + + + Track ID4516 + + + Track ID4518 + + + Track ID4520 + + + Track ID4522 + + + Track ID4524 + + + Track ID4500 + + + Track ID4502 + + + Track ID4504 + + + Track ID4506 + + + Track ID4508 + + + Track ID4510 + + + Track ID4484 + + + Track ID4486 + + + Track ID4488 + + + Track ID4490 + + + Track ID4492 + + + Track ID4494 + + + Track ID4496 + + + Track ID4498 + + + Track ID4468 + + + Track ID4470 + + + Track ID4472 + + + Track ID4474 + + + Track ID4476 + + + Track ID4478 + + + Track ID4480 + + + Track ID4482 + + + Track ID4462 + + + Track ID4464 + + + Track ID4466 + + + Track ID4458 + + + Track ID4460 + + + Track ID4456 + + + Track ID4436 + + + Track ID4438 + + + Track ID4440 + + + Track ID4442 + + + Track ID4444 + + + Track ID4446 + + + Track ID4448 + + + Track ID4450 + + + Track ID4452 + + + Track ID4454 + + + Track ID4432 + + + Track ID4434 + + + Track ID4428 + + + Track ID4430 + + + Track ID4426 + + + Track ID4422 + + + Track ID4424 + + + Track ID4418 + + + Track ID4420 + + + Track ID4414 + + + Track ID4416 + + + Track ID4412 + + + Track ID4406 + + + Track ID4408 + + + Track ID4410 + + + Track ID4398 + + + Track ID4400 + + + Track ID4402 + + + Track ID4404 + + + Track ID4392 + + + Track ID4394 + + + Track ID4396 + + + Track ID4378 + + + Track ID4380 + + + Track ID4382 + + + Track ID4384 + + + Track ID4386 + + + Track ID4388 + + + Track ID4390 + + + Track ID4372 + + + Track ID4374 + + + Track ID4376 + + + Track ID4366 + + + Track ID4368 + + + Track ID4370 + + + Track ID4362 + + + Track ID4364 + + + Track ID4358 + + + Track ID4360 + + + Track ID4356 + + + Track ID4352 + + + Track ID4354 + + + Track ID4348 + + + Track ID4350 + + + Track ID4344 + + + Track ID4346 + + + Track ID4342 + + + Track ID4336 + + + Track ID4338 + + + Track ID4340 + + + Track ID4334 + + + Track ID4318 + + + Track ID4320 + + + Track ID4322 + + + Track ID4324 + + + Track ID4326 + + + Track ID4328 + + + Track ID4330 + + + Track ID4332 + + + Track ID4306 + + + Track ID4308 + + + Track ID4310 + + + Track ID4312 + + + Track ID4314 + + + Track ID4316 + + + Track ID4302 + + + Track ID4304 + + + Track ID4296 + + + Track ID4298 + + + Track ID4300 + + + Track ID4288 + + + Track ID4290 + + + Track ID4292 + + + Track ID4294 + + + Track ID4276 + + + Track ID4278 + + + Track ID4280 + + + Track ID4282 + + + Track ID4284 + + + Track ID4286 + + + Track ID4264 + + + Track ID4266 + + + Track ID4268 + + + Track ID4270 + + + Track ID4272 + + + Track ID4274 + + + Track ID4248 + + + Track ID4250 + + + Track ID4252 + + + Track ID4254 + + + Track ID4256 + + + Track ID4258 + + + Track ID4260 + + + Track ID4262 + + + Track ID4232 + + + Track ID4234 + + + Track ID4236 + + + Track ID4238 + + + Track ID4240 + + + Track ID4242 + + + Track ID4244 + + + Track ID4246 + + + Track ID4216 + + + Track ID4218 + + + Track ID4220 + + + Track ID4222 + + + Track ID4224 + + + Track ID4226 + + + Track ID4228 + + + Track ID4230 + + + Track ID4200 + + + Track ID4202 + + + Track ID4204 + + + Track ID4206 + + + Track ID4208 + + + Track ID4210 + + + Track ID4212 + + + Track ID4214 + + + Track ID4190 + + + Track ID4192 + + + Track ID4194 + + + Track ID4196 + + + Track ID4198 + + + Track ID4188 + + + Track ID4180 + + + Track ID4182 + + + Track ID4184 + + + Track ID4186 + + + Track ID4174 + + + Track ID4176 + + + Track ID4178 + + + Track ID4160 + + + Track ID4162 + + + Track ID4164 + + + Track ID4166 + + + Track ID4168 + + + Track ID4170 + + + Track ID4172 + + + Track ID4146 + + + Track ID4148 + + + Track ID4150 + + + Track ID4152 + + + Track ID4154 + + + Track ID4156 + + + Track ID4158 + + + Track ID4138 + + + Track ID4140 + + + Track ID4142 + + + Track ID4144 + + + Track ID4130 + + + Track ID4132 + + + Track ID4134 + + + Track ID4136 + + + Track ID4120 + + + Track ID4122 + + + Track ID4124 + + + Track ID4126 + + + Track ID4128 + + + Track ID4116 + + + Track ID4118 + + + Track ID4112 + + + Track ID4114 + + + Track ID4102 + + + Track ID4104 + + + Track ID4106 + + + Track ID4108 + + + Track ID4110 + + + Track ID4100 + + + Track ID4088 + + + Track ID4090 + + + Track ID4092 + + + Track ID4094 + + + Track ID4096 + + + Track ID4098 + + + Track ID4078 + + + Track ID4080 + + + Track ID4082 + + + Track ID4084 + + + Track ID4086 + + + Track ID4074 + + + Track ID4076 + + + Track ID4062 + + + Track ID4064 + + + Track ID4066 + + + Track ID4068 + + + Track ID4070 + + + Track ID4072 + + + Track ID4058 + + + Track ID4060 + + + Track ID4052 + + + Track ID4054 + + + Track ID4056 + + + Track ID4050 + + + Track ID4048 + + + Track ID4046 + + + Track ID4030 + + + Track ID4032 + + + Track ID4034 + + + Track ID4036 + + + Track ID4038 + + + Track ID4040 + + + Track ID4042 + + + Track ID4044 + + + Track ID4028 + + + Track ID4026 + + + Track ID4018 + + + Track ID4020 + + + Track ID4022 + + + Track ID4024 + + + Track ID4002 + + + Track ID4004 + + + Track ID4006 + + + Track ID4008 + + + Track ID4010 + + + Track ID4012 + + + Track ID4014 + + + Track ID4016 + + + Track ID3982 + + + Track ID3984 + + + Track ID3986 + + + Track ID3988 + + + Track ID3990 + + + Track ID3992 + + + Track ID3994 + + + Track ID3996 + + + Track ID3998 + + + Track ID4000 + + + Track ID3980 + + + Track ID3976 + + + Track ID3978 + + + Track ID3972 + + + Track ID3974 + + + Track ID3970 + + + Track ID3966 + + + Track ID3968 + + + Track ID3964 + + + Track ID3962 + + + Track ID3944 + + + Track ID3946 + + + Track ID3948 + + + Track ID3950 + + + Track ID3952 + + + Track ID3954 + + + Track ID3956 + + + Track ID3958 + + + Track ID3960 + + + Track ID3930 + + + Track ID3932 + + + Track ID3934 + + + Track ID3936 + + + Track ID3938 + + + Track ID3940 + + + Track ID3942 + + + Track ID3926 + + + Track ID3928 + + + Track ID3918 + + + Track ID3920 + + + Track ID3922 + + + Track ID3924 + + + Track ID3910 + + + Track ID3912 + + + Track ID3914 + + + Track ID3916 + + + Track ID3900 + + + Track ID3902 + + + Track ID3904 + + + Track ID3906 + + + Track ID3908 + + + Track ID3894 + + + Track ID3896 + + + Track ID3898 + + + Track ID3878 + + + Track ID3880 + + + Track ID3882 + + + Track ID3884 + + + Track ID3886 + + + Track ID3888 + + + Track ID3890 + + + Track ID3892 + + + Track ID3874 + + + Track ID3876 + + + Track ID3862 + + + Track ID3864 + + + Track ID3866 + + + Track ID3868 + + + Track ID3870 + + + Track ID3872 + + + Track ID3848 + + + Track ID3850 + + + Track ID3852 + + + Track ID3854 + + + Track ID3856 + + + Track ID3858 + + + Track ID3860 + + + Track ID3844 + + + Track ID3846 + + + Track ID3832 + + + Track ID3834 + + + Track ID3836 + + + Track ID3838 + + + Track ID3840 + + + Track ID3842 + + + Track ID3830 + + + Track ID3826 + + + Track ID3828 + + + Track ID3824 + + + Track ID3816 + + + Track ID3818 + + + Track ID3820 + + + Track ID3822 + + + Track ID3814 + + + Track ID3812 + + + Track ID3802 + + + Track ID3804 + + + Track ID3806 + + + Track ID3808 + + + Track ID3810 + + + Track ID3800 + + + Track ID3790 + + + Track ID3792 + + + Track ID3794 + + + Track ID3796 + + + Track ID3798 + + + Track ID3784 + + + Track ID3786 + + + Track ID3788 + + + Track ID3776 + + + Track ID3778 + + + Track ID3780 + + + Track ID3782 + + + Track ID3762 + + + Track ID3766 + + + Track ID3770 + + + Track ID3774 + + + Track ID3760 + + + Track ID3764 + + + Track ID3768 + + + Track ID3772 + + + Track ID3744 + + + Track ID3748 + + + Track ID3750 + + + Track ID3756 + + + Track ID3758 + + + Track ID3746 + + + Track ID3752 + + + Track ID3754 + + + Track ID3732 + + + Track ID3736 + + + Track ID3738 + + + Track ID3730 + + + Track ID3734 + + + Track ID3740 + + + Track ID3742 + + + Track ID3728 + + + Track ID3708 + + + Track ID3710 + + + Track ID3712 + + + Track ID3714 + + + Track ID3716 + + + Track ID3718 + + + Track ID3720 + + + Track ID3722 + + + Track ID3724 + + + Track ID3726 + + + Track ID3688 + + + Track ID3690 + + + Track ID3692 + + + Track ID3694 + + + Track ID3696 + + + Track ID3698 + + + Track ID3700 + + + Track ID3702 + + + Track ID3704 + + + Track ID3706 + + + Track ID3686 + + + Track ID3678 + + + Track ID3680 + + + Track ID3682 + + + Track ID3684 + + + Track ID3676 + + + Track ID3674 + + + Track ID3658 + + + Track ID3660 + + + Track ID3662 + + + Track ID3664 + + + Track ID3666 + + + Track ID3668 + + + Track ID3670 + + + Track ID3672 + + + Track ID3648 + + + Track ID3650 + + + Track ID3652 + + + Track ID3654 + + + Track ID3656 + + + Track ID3634 + + + Track ID3636 + + + Track ID3638 + + + Track ID3640 + + + Track ID3642 + + + Track ID3644 + + + Track ID3646 + + + Track ID3630 + + + Track ID3632 + + + Track ID3614 + + + Track ID3616 + + + Track ID3618 + + + Track ID3620 + + + Track ID3622 + + + Track ID3624 + + + Track ID3626 + + + Track ID3628 + + + Track ID3598 + + + Track ID3600 + + + Track ID3602 + + + Track ID3604 + + + Track ID3606 + + + Track ID3608 + + + Track ID3610 + + + Track ID3612 + + + Track ID3592 + + + Track ID3594 + + + Track ID3596 + + + Track ID3582 + + + Track ID3584 + + + Track ID3586 + + + Track ID3588 + + + Track ID3590 + + + Track ID3578 + + + Track ID3580 + + + Track ID3570 + + + Track ID3572 + + + Track ID3574 + + + Track ID3576 + + + Track ID3564 + + + Track ID3566 + + + Track ID3568 + + + Track ID3554 + + + Track ID3556 + + + Track ID3558 + + + Track ID3560 + + + Track ID3562 + + + Track ID3550 + + + Track ID3552 + + + Track ID3538 + + + Track ID3540 + + + Track ID3542 + + + Track ID3544 + + + Track ID3546 + + + Track ID3548 + + + Track ID3520 + + + Track ID3522 + + + Track ID3524 + + + Track ID3526 + + + Track ID3528 + + + Track ID3530 + + + Track ID3532 + + + Track ID3534 + + + Track ID3536 + + + Track ID3510 + + + Track ID3512 + + + Track ID3514 + + + Track ID3516 + + + Track ID3518 + + + Track ID3506 + + + Track ID3508 + + + Track ID3490 + + + Track ID3492 + + + Track ID3494 + + + Track ID3496 + + + Track ID3498 + + + Track ID3500 + + + Track ID3502 + + + Track ID3504 + + + Track ID3484 + + + Track ID3486 + + + Track ID3488 + + + Track ID3474 + + + Track ID3476 + + + Track ID3478 + + + Track ID3480 + + + Track ID3482 + + + Track ID3466 + + + Track ID3468 + + + Track ID3470 + + + Track ID3472 + + + Track ID3458 + + + Track ID3460 + + + Track ID3462 + + + Track ID3464 + + + Track ID3442 + + + Track ID3444 + + + Track ID3446 + + + Track ID3448 + + + Track ID3450 + + + Track ID3452 + + + Track ID3454 + + + Track ID3456 + + + Track ID3432 + + + Track ID3434 + + + Track ID3436 + + + Track ID3438 + + + Track ID3440 + + + Track ID3428 + + + Track ID3430 + + + Track ID3416 + + + Track ID3418 + + + Track ID3420 + + + Track ID3422 + + + Track ID3424 + + + Track ID3426 + + + Track ID3412 + + + Track ID3414 + + + Track ID3408 + + + Track ID3410 + + + Track ID3398 + + + Track ID3400 + + + Track ID3402 + + + Track ID3404 + + + Track ID3406 + + + Track ID3374 + + + Track ID3376 + + + Track ID3378 + + + Track ID3380 + + + Track ID3382 + + + Track ID3384 + + + Track ID3386 + + + Track ID3388 + + + Track ID3390 + + + Track ID3392 + + + Track ID3394 + + + Track ID3396 + + + Track ID3366 + + + Track ID3368 + + + Track ID3370 + + + Track ID3372 + + + Track ID3358 + + + Track ID3360 + + + Track ID3362 + + + Track ID3364 + + + Track ID3350 + + + Track ID3352 + + + Track ID3354 + + + Track ID3356 + + + Track ID3336 + + + Track ID3338 + + + Track ID3340 + + + Track ID3342 + + + Track ID3344 + + + Track ID3346 + + + Track ID3348 + + + Track ID3334 + + + Track ID3324 + + + Track ID3326 + + + Track ID3328 + + + Track ID3330 + + + Track ID3332 + + + Track ID3306 + + + Track ID3308 + + + Track ID3310 + + + Track ID3312 + + + Track ID3314 + + + Track ID3316 + + + Track ID3318 + + + Track ID3320 + + + Track ID3322 + + + Track ID3290 + + + Track ID3292 + + + Track ID3294 + + + Track ID3296 + + + Track ID3298 + + + Track ID3300 + + + Track ID3302 + + + Track ID3304 + + + Track ID3280 + + + Track ID3282 + + + Track ID3284 + + + Track ID3286 + + + Track ID3288 + + + Track ID3274 + + + Track ID3276 + + + Track ID3278 + + + Track ID3268 + + + Track ID3270 + + + Track ID3272 + + + Track ID3258 + + + Track ID3260 + + + Track ID3262 + + + Track ID3264 + + + Track ID3266 + + + Track ID3256 + + + Track ID3244 + + + Track ID3246 + + + Track ID3248 + + + Track ID3250 + + + Track ID3252 + + + Track ID3254 + + + Track ID3236 + + + Track ID3238 + + + Track ID3240 + + + Track ID3242 + + + Track ID3228 + + + Track ID3230 + + + Track ID3232 + + + Track ID3234 + + + Track ID3214 + + + Track ID3216 + + + Track ID3218 + + + Track ID3220 + + + Track ID3222 + + + Track ID3224 + + + Track ID3226 + + + Track ID3208 + + + Track ID3210 + + + Track ID3212 + + + Track ID3202 + + + Track ID3204 + + + Track ID3206 + + + Track ID3190 + + + Track ID3192 + + + Track ID3194 + + + Track ID3196 + + + Track ID3198 + + + Track ID3200 + + + Track ID3180 + + + Track ID3182 + + + Track ID3184 + + + Track ID3186 + + + Track ID3188 + + + Track ID3176 + + + Track ID3178 + + + Track ID3168 + + + Track ID3170 + + + Track ID3172 + + + Track ID3174 + + + Track ID3164 + + + Track ID3162 + + + Track ID3166 + + + Track ID3160 + + + Track ID3156 + + + Track ID3158 + + + Track ID3148 + + + Track ID3152 + + + Track ID3154 + + + Track ID3144 + + + Track ID3150 + + + Track ID3146 + + + Track ID3138 + + + Track ID3136 + + + Track ID3132 + + + Track ID3134 + + + Track ID3140 + + + Track ID3142 + + + Track ID3122 + + + Track ID3124 + + + Track ID3126 + + + Track ID3128 + + + Track ID3130 + + + Track ID3120 + + + Track ID3104 + + + Track ID3106 + + + Track ID3108 + + + Track ID3110 + + + Track ID3112 + + + Track ID3114 + + + Track ID3116 + + + Track ID3118 + + + Track ID3102 + + + Track ID3094 + + + Track ID3096 + + + Track ID3098 + + + Track ID3100 + + + Track ID3086 + + + Track ID3088 + + + Track ID3090 + + + Track ID3092 + + + Track ID3082 + + + Track ID3084 + + + Track ID3076 + + + Track ID3078 + + + Track ID3080 + + + Track ID3060 + + + Track ID3062 + + + Track ID3064 + + + Track ID3066 + + + Track ID3068 + + + Track ID3070 + + + Track ID3072 + + + Track ID3074 + + + Track ID3056 + + + Track ID3058 + + + Track ID3040 + + + Track ID3042 + + + Track ID3044 + + + Track ID3046 + + + Track ID3048 + + + Track ID3050 + + + Track ID3052 + + + Track ID3054 + + + Track ID3030 + + + Track ID3032 + + + Track ID3034 + + + Track ID3036 + + + Track ID3038 + + + Track ID3026 + + + Track ID3028 + + + Track ID3020 + + + Track ID3022 + + + Track ID3024 + + + Track ID2994 + + + Track ID2996 + + + Track ID2980 + + + Track ID2982 + + + Track ID2984 + + + Track ID2986 + + + Track ID2988 + + + Track ID2990 + + + Track ID2992 + + + Track ID2968 + + + Track ID2970 + + + Track ID2972 + + + Track ID2974 + + + Track ID2976 + + + Track ID2978 + + + Track ID2958 + + + Track ID2960 + + + Track ID2962 + + + Track ID2964 + + + Track ID2966 + + + Track ID2948 + + + Track ID2950 + + + Track ID2952 + + + Track ID2954 + + + Track ID2956 + + + Track ID2938 + + + Track ID2940 + + + Track ID2942 + + + Track ID2944 + + + Track ID2946 + + + Track ID2922 + + + Track ID2924 + + + Track ID2926 + + + Track ID2928 + + + Track ID2930 + + + Track ID2932 + + + Track ID2934 + + + Track ID2936 + + + Track ID2918 + + + Track ID2920 + + + Track ID2904 + + + Track ID2906 + + + Track ID2908 + + + Track ID2910 + + + Track ID2912 + + + Track ID2914 + + + Track ID2916 + + + Track ID2886 + + + Track ID2888 + + + Track ID2890 + + + Track ID2892 + + + Track ID2894 + + + Track ID2896 + + + Track ID2898 + + + Track ID2900 + + + Track ID2902 + + + Track ID2872 + + + Track ID2874 + + + Track ID2876 + + + Track ID2878 + + + Track ID2880 + + + Track ID2882 + + + Track ID2884 + + + Track ID2866 + + + Track ID2868 + + + Track ID2870 + + + Track ID2862 + + + Track ID2864 + + + Track ID2856 + + + Track ID2860 + + + Track ID2858 + + + Track ID2854 + + + Track ID2844 + + + Track ID2846 + + + Track ID2848 + + + Track ID2850 + + + Track ID2852 + + + Track ID2842 + + + Track ID2840 + + + Track ID2838 + + + Track ID2824 + + + Track ID2826 + + + Track ID2828 + + + Track ID2830 + + + Track ID2832 + + + Track ID2834 + + + Track ID2836 + + + Track ID2822 + + + Track ID2814 + + + Track ID2816 + + + Track ID2818 + + + Track ID2820 + + + Track ID2808 + + + Track ID2810 + + + Track ID2812 + + + Track ID2806 + + + Track ID2788 + + + Track ID2790 + + + Track ID2792 + + + Track ID2794 + + + Track ID2796 + + + Track ID2798 + + + Track ID2800 + + + Track ID2802 + + + Track ID2804 + + + Track ID2784 + + + Track ID2786 + + + Track ID2778 + + + Track ID2780 + + + Track ID2782 + + + Track ID2776 + + + Track ID2770 + + + Track ID2772 + + + Track ID2774 + + + Track ID2760 + + + Track ID2762 + + + Track ID2764 + + + Track ID2766 + + + Track ID2768 + + + Track ID2748 + + + Track ID2750 + + + Track ID2752 + + + Track ID2754 + + + Track ID2756 + + + Track ID2758 + + + Track ID2744 + + + Track ID2746 + + + Track ID2736 + + + Track ID2738 + + + Track ID2740 + + + Track ID2742 + + + Track ID2728 + + + Track ID2730 + + + Track ID2732 + + + Track ID2734 + + + Track ID2726 + + + Track ID2718 + + + Track ID2720 + + + Track ID2722 + + + Track ID2724 + + + Track ID2714 + + + Track ID2716 + + + Track ID2696 + + + Track ID2698 + + + Track ID2700 + + + Track ID2702 + + + Track ID2704 + + + Track ID2706 + + + Track ID2708 + + + Track ID2710 + + + Track ID2712 + + + Track ID2680 + + + Track ID2682 + + + Track ID2684 + + + Track ID2686 + + + Track ID2688 + + + Track ID2690 + + + Track ID2692 + + + Track ID2694 + + + Track ID2674 + + + Track ID2676 + + + Track ID2678 + + + Track ID2660 + + + Track ID2662 + + + Track ID2664 + + + Track ID2666 + + + Track ID2668 + + + Track ID2670 + + + Track ID2672 + + + Track ID2646 + + + Track ID2648 + + + Track ID2650 + + + Track ID2652 + + + Track ID2654 + + + Track ID2656 + + + Track ID2658 + + + Track ID2642 + + + Track ID2644 + + + Track ID2634 + + + Track ID2636 + + + Track ID2638 + + + Track ID2640 + + + Track ID2632 + + + Track ID2620 + + + Track ID2630 + + + Track ID2628 + + + Track ID2626 + + + Track ID2624 + + + Track ID2622 + + + Track ID2612 + + + Track ID2616 + + + Track ID2618 + + + Track ID2614 + + + Track ID2600 + + + Track ID2602 + + + Track ID2604 + + + Track ID2606 + + + Track ID2608 + + + Track ID2610 + + + Track ID2592 + + + Track ID2594 + + + Track ID2596 + + + Track ID2598 + + + Track ID2588 + + + Track ID2590 + + + Track ID2572 + + + Track ID2574 + + + Track ID2576 + + + Track ID2578 + + + Track ID2580 + + + Track ID2582 + + + Track ID2584 + + + Track ID2586 + + + Track ID2554 + + + Track ID2556 + + + Track ID2558 + + + Track ID2560 + + + Track ID2562 + + + Track ID2564 + + + Track ID2566 + + + Track ID2568 + + + Track ID2570 + + + Track ID2542 + + + Track ID2544 + + + Track ID2546 + + + Track ID2548 + + + Track ID2550 + + + Track ID2552 + + + Track ID2534 + + + Track ID2536 + + + Track ID2538 + + + Track ID2540 + + + Track ID2530 + + + Track ID2532 + + + Track ID2522 + + + Track ID2524 + + + Track ID2526 + + + Track ID2528 + + + Track ID2508 + + + Track ID2510 + + + Track ID2512 + + + Track ID2514 + + + Track ID2516 + + + Track ID2518 + + + Track ID2520 + + + Track ID2490 + + + Track ID2492 + + + Track ID2494 + + + Track ID2496 + + + Track ID2498 + + + Track ID2500 + + + Track ID2502 + + + Track ID2504 + + + Track ID2506 + + + Track ID2474 + + + Track ID2476 + + + Track ID2478 + + + Track ID2480 + + + Track ID2482 + + + Track ID2484 + + + Track ID2486 + + + Track ID2488 + + + Track ID2454 + + + Track ID2456 + + + Track ID2458 + + + Track ID2460 + + + Track ID2462 + + + Track ID2464 + + + Track ID2466 + + + Track ID2468 + + + Track ID2470 + + + Track ID2472 + + + Track ID2442 + + + Track ID2444 + + + Track ID2446 + + + Track ID2448 + + + Track ID2450 + + + Track ID2452 + + + Track ID2440 + + + Track ID2426 + + + Track ID2428 + + + Track ID2430 + + + Track ID2432 + + + Track ID2434 + + + Track ID2436 + + + Track ID2438 + + + Track ID2414 + + + Track ID2416 + + + Track ID2418 + + + Track ID2420 + + + Track ID2422 + + + Track ID2424 + + + Track ID2410 + + + Track ID2412 + + + Track ID2392 + + + Track ID2394 + + + Track ID2396 + + + Track ID2398 + + + Track ID2400 + + + Track ID2402 + + + Track ID2404 + + + Track ID2406 + + + Track ID2408 + + + Track ID2390 + + + Track ID2378 + + + Track ID2380 + + + Track ID2382 + + + Track ID2384 + + + Track ID2386 + + + Track ID2388 + + + Track ID2364 + + + Track ID2366 + + + Track ID2368 + + + Track ID2370 + + + Track ID2372 + + + Track ID2374 + + + Track ID2376 + + + Track ID2362 + + + Track ID2346 + + + Track ID2348 + + + Track ID2350 + + + Track ID2352 + + + Track ID2354 + + + Track ID2356 + + + Track ID2358 + + + Track ID2360 + + + Track ID2330 + + + Track ID2332 + + + Track ID2334 + + + Track ID2336 + + + Track ID2338 + + + Track ID2340 + + + Track ID2342 + + + Track ID2344 + + + Track ID2324 + + + Track ID2326 + + + Track ID2328 + + + Track ID2316 + + + Track ID2318 + + + Track ID2320 + + + Track ID2322 + + + Track ID2300 + + + Track ID2302 + + + Track ID2304 + + + Track ID2306 + + + Track ID2308 + + + Track ID2310 + + + Track ID2312 + + + Track ID2314 + + + Track ID2282 + + + Track ID2284 + + + Track ID2286 + + + Track ID2288 + + + Track ID2290 + + + Track ID2292 + + + Track ID2294 + + + Track ID2296 + + + Track ID2298 + + + Track ID2276 + + + Track ID2278 + + + Track ID2280 + + + Track ID2268 + + + Track ID2270 + + + Track ID2272 + + + Track ID2274 + + + Track ID2262 + + + Track ID2264 + + + Track ID2266 + + + Track ID2258 + + + Track ID2260 + + + Track ID2250 + + + Track ID2252 + + + Track ID2254 + + + Track ID2256 + + + Track ID2242 + + + Track ID2244 + + + Track ID2246 + + + Track ID2248 + + + Track ID2234 + + + Track ID2236 + + + Track ID2238 + + + Track ID2240 + + + Track ID2232 + + + Track ID2222 + + + Track ID2224 + + + Track ID2226 + + + Track ID2228 + + + Track ID2230 + + + Track ID2206 + + + Track ID2208 + + + Track ID2210 + + + Track ID2212 + + + Track ID2214 + + + Track ID2216 + + + Track ID2218 + + + Track ID2220 + + + Track ID2202 + + + Track ID2198 + + + Track ID2204 + + + Track ID2194 + + + Track ID2192 + + + Track ID2200 + + + Track ID2196 + + + Track ID2186 + + + Track ID2180 + + + Track ID2184 + + + Track ID2182 + + + Track ID2190 + + + Track ID2188 + + + Track ID2178 + + + Track ID2168 + + + Track ID2176 + + + Track ID2174 + + + Track ID2166 + + + Track ID2170 + + + Track ID2172 + + + Track ID2164 + + + Track ID2162 + + + Track ID2160 + + + Track ID2154 + + + Track ID2156 + + + Track ID2158 + + + Track ID2138 + + + Track ID2140 + + + Track ID2142 + + + Track ID2144 + + + Track ID2146 + + + Track ID2148 + + + Track ID2150 + + + Track ID2152 + + + Track ID2130 + + + Track ID2132 + + + Track ID2134 + + + Track ID2136 + + + Track ID2128 + + + Track ID2124 + + + Track ID2126 + + + Track ID2122 + + + Track ID2114 + + + Track ID2116 + + + Track ID2118 + + + Track ID2120 + + + Track ID2108 + + + Track ID2112 + + + Track ID2106 + + + Track ID2110 + + + Track ID2104 + + + Track ID2102 + + + Track ID2094 + + + Track ID2100 + + + Track ID2092 + + + Track ID2088 + + + Track ID2090 + + + Track ID2096 + + + Track ID2098 + + + Track ID2086 + + + Track ID2084 + + + Track ID2082 + + + Track ID2080 + + + Track ID2078 + + + Track ID2068 + + + Track ID2070 + + + Track ID2072 + + + Track ID2074 + + + Track ID2076 + + + Track ID2060 + + + Track ID2056 + + + Track ID2058 + + + Track ID2062 + + + Track ID2064 + + + Track ID2066 + + + Track ID2050 + + + Track ID2046 + + + Track ID2048 + + + Track ID2052 + + + Track ID2054 + + + Track ID2038 + + + Track ID2036 + + + Track ID2042 + + + Track ID2044 + + + Track ID2040 + + + Track ID2034 + + + Track ID2028 + + + Track ID2032 + + + Track ID2026 + + + Track ID2024 + + + Track ID2030 + + + Track ID2014 + + + Track ID2016 + + + Track ID2020 + + + Track ID2018 + + + Track ID2022 + + + Track ID2000 + + + Track ID2004 + + + Track ID2002 + + + Track ID2010 + + + Track ID2008 + + + Track ID2006 + + + Track ID2012 + + + Track ID1998 + + + Track ID1994 + + + Track ID1986 + + + Track ID1988 + + + Track ID1992 + + + Track ID1996 + + + Track ID1990 + + + Track ID1978 + + + Track ID1982 + + + Track ID1980 + + + Track ID1984 + + + Track ID1976 + + + Track ID1966 + + + Track ID1970 + + + Track ID1968 + + + Track ID1972 + + + Track ID1974 + + + Track ID1962 + + + Track ID1964 + + + Track ID1954 + + + Track ID1956 + + + Track ID1958 + + + Track ID1960 + + + Track ID1942 + + + Track ID1944 + + + Track ID1946 + + + Track ID1948 + + + Track ID1950 + + + Track ID1952 + + + Track ID1934 + + + Track ID1936 + + + Track ID1938 + + + Track ID1940 + + + Track ID1932 + + + Track ID1930 + + + Track ID1926 + + + Track ID1928 + + + Track ID1918 + + + Track ID1922 + + + Track ID1924 + + + Track ID1920 + + + Track ID1916 + + + Track ID1902 + + + Track ID1904 + + + Track ID1906 + + + Track ID1908 + + + Track ID1910 + + + Track ID1912 + + + Track ID1914 + + + Track ID1900 + + + Track ID1898 + + + Track ID1888 + + + Track ID1890 + + + Track ID1892 + + + Track ID1894 + + + Track ID1896 + + + Track ID1880 + + + Track ID1882 + + + Track ID1884 + + + Track ID1886 + + + Track ID1872 + + + Track ID1874 + + + Track ID1876 + + + Track ID1878 + + + Track ID1870 + + + Track ID1862 + + + Track ID1864 + + + Track ID1866 + + + Track ID1868 + + + Track ID1854 + + + Track ID1856 + + + Track ID1858 + + + Track ID1860 + + + Track ID1852 + + + Track ID1846 + + + Track ID1848 + + + Track ID1850 + + + Track ID1836 + + + Track ID1838 + + + Track ID1840 + + + Track ID1842 + + + Track ID1844 + + + Track ID1832 + + + Track ID1834 + + + Track ID1822 + + + Track ID1824 + + + Track ID1826 + + + Track ID1828 + + + Track ID1830 + + + Track ID1818 + + + Track ID1820 + + + Track ID1814 + + + Track ID1816 + + + Track ID1802 + + + Track ID1804 + + + Track ID1806 + + + Track ID1808 + + + Track ID1810 + + + Track ID1812 + + + Track ID1792 + + + Track ID1794 + + + Track ID1796 + + + Track ID1798 + + + Track ID1800 + + + Track ID1782 + + + Track ID1784 + + + Track ID1786 + + + Track ID1788 + + + Track ID1790 + + + Track ID1772 + + + Track ID1774 + + + Track ID1776 + + + Track ID1778 + + + Track ID1780 + + + Track ID1768 + + + Track ID1770 + + + Track ID1764 + + + Track ID1766 + + + Track ID1758 + + + Track ID1760 + + + Track ID1762 + + + Track ID1752 + + + Track ID1754 + + + Track ID1756 + + + Track ID1738 + + + Track ID1740 + + + Track ID1742 + + + Track ID1744 + + + Track ID1746 + + + Track ID1748 + + + Track ID1750 + + + Track ID1724 + + + Track ID1726 + + + Track ID1728 + + + Track ID1730 + + + Track ID1732 + + + Track ID1734 + + + Track ID1736 + + + Track ID1720 + + + Track ID1722 + + + Track ID1716 + + + Track ID1718 + + + Track ID1704 + + + Track ID1706 + + + Track ID1708 + + + Track ID1710 + + + Track ID1712 + + + Track ID1714 + + + Track ID1694 + + + Track ID1696 + + + Track ID1698 + + + Track ID1700 + + + Track ID1702 + + + + + + diff --git a/GeekyProjects/C1_ParsingMusicList/pl1.xml b/GeekyProjects/C1_ParsingMusicList/pl1.xml new file mode 100644 index 0000000..6c605f8 --- /dev/null +++ b/GeekyProjects/C1_ParsingMusicList/pl1.xml @@ -0,0 +1,3234 @@ + + + + + Major Version1 + Minor Version1 + Date2012-10-13T05:49:08Z + Application Version10.7 + Features5 + Show Content Ratings + Music Folderfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/ + Library Persistent ID5E7B8CC1F12D8073 + Tracks + + 3083 + + Track ID3083 + NameDon't Know Why + ArtistNorah Jones + ComposerJesse Harris + AlbumCome Away With Me + GenrePop + KindAAC audio file + Size4541105 + Total Time186152 + Disc Number1 + Disc Count1 + Track Number1 + Track Count14 + Year2002 + Date Modified2006-08-07T05:24:28Z + Date Added2009-10-03T14:55:11Z + Bit Rate192 + Sample Rate44100 + Play Count3 + Play Date3389372040 + Play Date UTC2011-05-27T14:44:00Z + Normalization1983 + Artwork Count1 + Persistent ID5689E1B7D789DB2A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Norah%20Jones/Come%20Away%20With%20Me/01%20Don't%20Know%20Why.m4a + File Folder Count4 + Library Folder Count1 + + 3085 + + Track ID3085 + NameSeven Years + ArtistNorah Jones + ComposerLee Alexander + AlbumCome Away With Me + GenrePop + KindAAC audio file + Size3541604 + Total Time145285 + Disc Number1 + Disc Count1 + Track Number2 + Track Count14 + Year2002 + Date Modified2006-08-07T05:24:28Z + Date Added2009-10-03T14:55:11Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3381677171 + Play Date UTC2011-02-27T13:16:11Z + Normalization1310 + Artwork Count1 + Persistent ID1B90E5159B1ACEEC + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Norah%20Jones/Come%20Away%20With%20Me/02%20Seven%20Years.m4a + File Folder Count4 + Library Folder Count1 + + 3087 + + Track ID3087 + NameCold Cold Heart + ArtistNorah Jones + ComposerHank Williams + AlbumCome Away With Me + GenrePop + KindAAC audio file + Size5321333 + Total Time218637 + Disc Number1 + Disc Count1 + Track Number3 + Track Count14 + Year2002 + Date Modified2006-08-07T05:24:28Z + Date Added2009-10-03T14:55:11Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3381677390 + Play Date UTC2011-02-27T13:19:50Z + Normalization1060 + Artwork Count1 + Persistent ID654C01ACECA3323E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Norah%20Jones/Come%20Away%20With%20Me/03%20Cold%20Cold%20Heart.m4a + File Folder Count4 + Library Folder Count1 + + 3089 + + Track ID3089 + NameFeelin' The Same Way + ArtistNorah Jones + ComposerLee Alexander + AlbumCome Away With Me + GenrePop + KindAAC audio file + Size4327100 + Total Time177259 + Disc Number1 + Disc Count1 + Track Number4 + Track Count14 + Year2002 + Date Modified2006-08-07T05:24:28Z + Date Added2009-10-03T14:55:11Z + Bit Rate192 + Sample Rate44100 + Normalization1796 + Artwork Count1 + Persistent IDF68251A3B2E26BD6 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Norah%20Jones/Come%20Away%20With%20Me/04%20Feelin'%20The%20Same%20Way.m4a + File Folder Count4 + Library Folder Count1 + + 3091 + + Track ID3091 + NameCome Away With Me + ArtistNorah Jones + ComposerNorah Jones + AlbumCome Away With Me + GenrePop + KindAAC audio file + Size4829635 + Total Time198157 + Disc Number1 + Disc Count1 + Track Number5 + Track Count14 + Year2002 + Date Modified2006-08-07T05:24:28Z + Date Added2009-10-03T14:55:11Z + Bit Rate192 + Sample Rate44100 + Play Count5 + Play Date3403722850 + Play Date UTC2011-11-09T17:04:10Z + Normalization1088 + Artwork Count1 + Persistent ID3FAB50E83AB08B5F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Norah%20Jones/Come%20Away%20With%20Me/05%20Come%20Away%20With%20Me.m4a + File Folder Count4 + Library Folder Count1 + + 3093 + + Track ID3093 + NameShoot The Moon + ArtistNorah Jones + ComposerJesse Harris + AlbumCome Away With Me + GenrePop + KindAAC audio file + Size5767324 + Total Time237190 + Disc Number1 + Disc Count1 + Track Number6 + Track Count14 + Year2002 + Date Modified2006-08-07T05:24:28Z + Date Added2009-10-03T14:55:11Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3389511623 + Play Date UTC2011-05-29T05:30:23Z + Normalization1259 + Artwork Count1 + Persistent IDB3CF6A1584218FB4 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Norah%20Jones/Come%20Away%20With%20Me/06%20Shoot%20The%20Moon.m4a + File Folder Count4 + Library Folder Count1 + + 3095 + + Track ID3095 + NameTurn Me On + ArtistNorah Jones + ComposerJ.D. Loudermilk + AlbumCome Away With Me + GenrePop + KindAAC audio file + Size3766213 + Total Time154643 + Disc Number1 + Disc Count1 + Track Number7 + Track Count14 + Year2002 + Date Modified2006-08-07T05:24:28Z + Date Added2009-10-03T14:55:11Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3389511778 + Play Date UTC2011-05-29T05:32:58Z + Normalization1756 + Artwork Count1 + Persistent ID1AA0D6FE32CCFA35 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Norah%20Jones/Come%20Away%20With%20Me/07%20Turn%20Me%20On.m4a + File Folder Count4 + Library Folder Count1 + + 3097 + + Track ID3097 + NameLonestar + ArtistNorah Jones + ComposerLee Alexander + AlbumCome Away With Me + GenrePop + KindAAC audio file + Size4539612 + Total Time186083 + Disc Number1 + Disc Count1 + Track Number8 + Track Count14 + Year2002 + Date Modified2006-08-07T05:24:28Z + Date Added2009-10-03T14:55:11Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3389511964 + Play Date UTC2011-05-29T05:36:04Z + Normalization1062 + Artwork Count1 + Persistent IDFC4C1B830A689A0A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Norah%20Jones/Come%20Away%20With%20Me/08%20Lonestar.m4a + File Folder Count4 + Library Folder Count1 + + 3099 + + Track ID3099 + NameI've Got To See You Again + ArtistNorah Jones + ComposerJesse Harris + AlbumCome Away With Me + GenrePop + KindAAC audio file + Size6154861 + Total Time253328 + Disc Number1 + Disc Count1 + Track Number9 + Track Count14 + Year2002 + Date Modified2006-08-07T05:24:28Z + Date Added2009-10-03T14:55:11Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3389512217 + Play Date UTC2011-05-29T05:40:17Z + Normalization1318 + Artwork Count1 + Persistent IDAE078C5C4C578C8D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Norah%20Jones/Come%20Away%20With%20Me/09%20I've%20Got%20To%20See%20You%20Again.m4a + File Folder Count4 + Library Folder Count1 + + 3101 + + Track ID3101 + NamePainter Song + ArtistNorah Jones + ComposerJ.C. Hopkins/Lee Alexander + AlbumCome Away With Me + GenrePop + KindAAC audio file + Size3948960 + Total Time162259 + Disc Number1 + Disc Count1 + Track Number10 + Track Count14 + Year2002 + Date Modified2006-08-07T05:24:28Z + Date Added2009-10-03T14:55:12Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3389512379 + Play Date UTC2011-05-29T05:42:59Z + Normalization1094 + Artwork Count1 + Persistent ID6EF014009BBE0453 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Norah%20Jones/Come%20Away%20With%20Me/10%20Painter%20Song.m4a + File Folder Count4 + Library Folder Count1 + + 3103 + + Track ID3103 + NameOne Flight Down + ArtistNorah Jones + ComposerJesse Harris + AlbumCome Away With Me + GenrePop + KindAAC audio file + Size4530246 + Total Time185688 + Disc Number1 + Disc Count1 + Track Number11 + Track Count14 + Year2002 + Date Modified2006-08-07T05:24:28Z + Date Added2009-10-03T14:55:12Z + Bit Rate192 + Sample Rate44100 + Normalization1775 + Artwork Count1 + Persistent ID1A77E3058CBC1B33 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Norah%20Jones/Come%20Away%20With%20Me/11%20One%20Flight%20Down.m4a + File Folder Count4 + Library Folder Count1 + + 3105 + + Track ID3105 + NameNightingale + ArtistNorah Jones + ComposerNorah Jones + AlbumCome Away With Me + GenrePop + KindAAC audio file + Size6129129 + Total Time252260 + Disc Number1 + Disc Count1 + Track Number12 + Track Count14 + Year2002 + Date Modified2006-08-07T05:24:28Z + Date Added2009-10-03T14:55:12Z + Bit Rate192 + Sample Rate44100 + Normalization1610 + Artwork Count1 + Persistent IDD7F9E54BF5A06457 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Norah%20Jones/Come%20Away%20With%20Me/12%20Nightingale.m4a + File Folder Count4 + Library Folder Count1 + + 3107 + + Track ID3107 + NameThe Long Day Is Over + ArtistNorah Jones + ComposerJesse Harris/Norah Jones + AlbumCome Away With Me + GenrePop + KindAAC audio file + Size4005595 + Total Time164581 + Disc Number1 + Disc Count1 + Track Number13 + Track Count14 + Year2002 + Date Modified2006-08-07T05:24:26Z + Date Added2009-10-03T14:55:12Z + Bit Rate192 + Sample Rate44100 + Normalization1060 + Artwork Count1 + Sort NameLong Day Is Over + Persistent ID905316609998CE72 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Norah%20Jones/Come%20Away%20With%20Me/13%20The%20Long%20Day%20Is%20Over.m4a + File Folder Count4 + Library Folder Count1 + + 3109 + + Track ID3109 + NameThe Nearness Of You + ArtistNorah Jones + ComposerHoagy Carmichael/Ned Washington + AlbumCome Away With Me + GenrePop + KindAAC audio file + Size4577341 + Total Time187685 + Disc Number1 + Disc Count1 + Track Number14 + Track Count14 + Year2002 + Date Modified2006-08-07T05:24:26Z + Date Added2009-10-03T14:55:12Z + Bit Rate192 + Sample Rate44100 + Normalization1009 + Artwork Count1 + Sort NameNearness Of You + Persistent ID53F9F50A04A60E20 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Norah%20Jones/Come%20Away%20With%20Me/14%20The%20Nearness%20Of%20You.m4a + File Folder Count4 + Library Folder Count1 + + 3261 + + Track ID3261 + NameUdu Chant + ArtistMickey Hart + ComposerSikiru Adepoju, Mickey Hart, Zakir Hussain, Airto Moreira + AlbumPlanet Drum + GenreWorld + KindAAC audio file + Size5394974 + Total Time221145 + Disc Number1 + Disc Count1 + Track Number1 + Track Count13 + Year1991 + Date Modified2006-08-07T15:15:10Z + Date Added2009-10-03T14:55:23Z + Bit Rate192 + Sample Rate44100 + Play Count3 + Play Date3378127219 + Play Date UTC2011-01-17T11:10:19Z + Normalization1259 + Artwork Count1 + Persistent ID2B032417AE44DC20 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mickey%20Hart/Planet%20Drum/01%20Udu%20Chant.m4a + File Folder Count4 + Library Folder Count1 + + 3263 + + Track ID3263 + NameIsland Groove + ArtistMickey Hart + ComposerSikiru Adepoju, Mickey Hart, Zakir Hussain, Airto Moreira, Babatunde Olatunji + AlbumPlanet Drum + GenreWorld + KindAAC audio file + Size8359244 + Total Time343909 + Disc Number1 + Disc Count1 + Track Number2 + Track Count13 + Year1991 + Date Modified2006-08-07T15:15:10Z + Date Added2009-10-03T14:55:23Z + Bit Rate192 + Sample Rate44100 + Normalization1151 + Artwork Count1 + Persistent ID5915F196039F13B3 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mickey%20Hart/Planet%20Drum/02%20Island%20Groove.m4a + File Folder Count4 + Library Folder Count1 + + 3265 + + Track ID3265 + NameLight Over Shadow + ArtistMickey Hart + ComposerAirto Moreira, Babatunde Olatunji, Flora Purim + AlbumPlanet Drum + GenreWorld + KindAAC audio file + Size5649122 + Total Time231455 + Disc Number1 + Disc Count1 + Track Number3 + Track Count13 + Year1991 + Date Modified2006-08-07T15:15:10Z + Date Added2009-10-03T14:55:23Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Persistent ID5FE92046266D7F16 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mickey%20Hart/Planet%20Drum/03%20Light%20Over%20Shadow.m4a + File Folder Count4 + Library Folder Count1 + + 3267 + + Track ID3267 + NameDance Of The Hunter's Fire + ArtistMickey Hart + ComposerSikiru Adepoju, Airto Moreira, Babatunde Olatunji, Flora Purim, T. H. “Vikku” Vinayakram + AlbumPlanet Drum + GenreWorld + KindAAC audio file + Size4453553 + Total Time181671 + Disc Number1 + Disc Count1 + Track Number4 + Track Count13 + Year1991 + Date Modified2006-08-07T15:15:10Z + Date Added2009-10-03T14:55:24Z + Bit Rate192 + Sample Rate44100 + Normalization1200 + Artwork Count1 + Persistent IDA32F78AE2438D783 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mickey%20Hart/Planet%20Drum/04%20Dance%20Of%20The%20Hunter's%20Fire.m4a + File Folder Count4 + Library Folder Count1 + + 3269 + + Track ID3269 + NameJewe (You Are The One) + ArtistMickey Hart + ComposerBabatunde Olatunji + AlbumPlanet Drum + GenreWorld + KindAAC audio file + Size6024645 + Total Time247082 + Disc Number1 + Disc Count1 + Track Number5 + Track Count13 + Year1991 + Date Modified2006-08-07T15:15:10Z + Date Added2009-10-03T14:55:24Z + Bit Rate192 + Sample Rate44100 + Normalization1159 + Artwork Count1 + Persistent IDA6303BD922A35C82 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mickey%20Hart/Planet%20Drum/05%20Jewe%20(You%20Are%20The%20One).m4a + File Folder Count4 + Library Folder Count1 + + 3271 + + Track ID3271 + NameThe Hunt + ArtistMickey Hart + ComposerSikiru Adepoju, Mickey Hart, Zakir Hussain, Airto Moreira, Babatunde Olatunji, T. H. “Vikku” Vinayakram + AlbumPlanet Drum + GenreWorld + KindAAC audio file + Size5515948 + Total Time225905 + Disc Number1 + Disc Count1 + Track Number6 + Track Count13 + Year1991 + Date Modified2006-08-07T15:15:10Z + Date Added2009-10-03T14:55:24Z + Bit Rate192 + Sample Rate44100 + Normalization1183 + Artwork Count1 + Sort NameHunt + Persistent IDEE7577CD7CC1DFF1 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mickey%20Hart/Planet%20Drum/06%20The%20Hunt.m4a + File Folder Count4 + Library Folder Count1 + + 3273 + + Track ID3273 + NameTemple Caves + ArtistMickey Hart + ComposerSikiru Adepoju, Mickey Hart, Zakir Hussain, Airto Moreira, Babatunde Olatunji + AlbumPlanet Drum + GenreWorld + KindAAC audio file + Size4849679 + Total Time199179 + Disc Number1 + Disc Count1 + Track Number7 + Track Count13 + Year1991 + Date Modified2006-08-07T15:15:10Z + Date Added2009-10-03T14:55:24Z + Bit Rate192 + Sample Rate44100 + Normalization1117 + Artwork Count1 + Persistent ID99E9D0C5A8B2051E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mickey%20Hart/Planet%20Drum/07%20Temple%20Caves.m4a + File Folder Count4 + Library Folder Count1 + + 3275 + + Track ID3275 + NameThe Dancing Sorcerer + ArtistMickey Hart + ComposerZakir Hussain, Airto Moreira + AlbumPlanet Drum + GenreWorld + KindAAC audio file + Size4343732 + Total Time177097 + Disc Number1 + Disc Count1 + Track Number8 + Track Count13 + Year1991 + Date Modified2006-08-07T15:15:12Z + Date Added2009-10-03T14:55:24Z + Bit Rate192 + Sample Rate44100 + Normalization976 + Artwork Count1 + Sort NameDancing Sorcerer + Persistent ID57FFEB75A2BD3F17 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mickey%20Hart/Planet%20Drum/08%20The%20Dancing%20Sorcerer.m4a + File Folder Count4 + Library Folder Count1 + + 3277 + + Track ID3277 + NameBones + ArtistMickey Hart + ComposerMickey Hart, Zakir Hussain, Babatunde Olatunji, Flora Purim + AlbumPlanet Drum + GenreWorld + KindAAC audio file + Size6169530 + Total Time253119 + Disc Number1 + Disc Count1 + Track Number9 + Track Count13 + Year1991 + Date Modified2006-08-07T15:15:12Z + Date Added2009-10-03T14:55:24Z + Bit Rate192 + Sample Rate44100 + Normalization930 + Artwork Count1 + Persistent IDBCD8FF9FB18D6D78 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mickey%20Hart/Planet%20Drum/09%20Bones.m4a + File Folder Count4 + Library Folder Count1 + + 3279 + + Track ID3279 + NameLost River + ArtistMickey Hart + ComposerSikiru Adepoju, Mickey Hart, Zakir Hussain, Airto Moreira, Babatunde Olatunji, Flora Purim + AlbumPlanet Drum + GenreWorld + KindAAC audio file + Size4363201 + Total Time177909 + Disc Number1 + Disc Count1 + Track Number10 + Track Count13 + Year1991 + Date Modified2006-08-07T15:15:12Z + Date Added2009-10-03T14:55:24Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Persistent ID6F04FA6851B75949 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mickey%20Hart/Planet%20Drum/10%20Lost%20River.m4a + File Folder Count4 + Library Folder Count1 + + 3281 + + Track ID3281 + NameEvening Samba + ArtistMickey Hart + ComposerSikiru Adepoju, Mickey Hart, Zakir Hussain, Airto Moreira, Babatunde Olatunji, T. H. “Vikku” Vinayakram + AlbumPlanet Drum + GenreWorld + KindAAC audio file + Size6661701 + Total Time273529 + Disc Number1 + Disc Count1 + Track Number11 + Track Count13 + Year1991 + Date Modified2006-08-07T15:15:12Z + Date Added2009-10-03T14:55:24Z + Bit Rate192 + Sample Rate44100 + Normalization1090 + Artwork Count1 + Persistent ID21676665E3B08FDD + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mickey%20Hart/Planet%20Drum/11%20Evening%20Samba.m4a + File Folder Count4 + Library Folder Count1 + + 3283 + + Track ID3283 + NameIyanu (Surprises) + ArtistMickey Hart + ComposerBabatunde Olatunji + AlbumPlanet Drum + GenreWorld + KindAAC audio file + Size3052699 + Total Time123342 + Disc Number1 + Disc Count1 + Track Number12 + Track Count13 + Year1991 + Date Modified2006-08-07T15:15:12Z + Date Added2009-10-03T14:55:25Z + Bit Rate192 + Sample Rate44100 + Normalization1189 + Artwork Count1 + Persistent IDE27691D2F2EA77AB + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mickey%20Hart/Planet%20Drum/12%20Iyanu%20(Surprises).m4a + File Folder Count4 + Library Folder Count1 + + 3285 + + Track ID3285 + NameMysterious Island + ArtistMickey Hart + ComposerMickey Hart, Airto Moreira, Flora Purim, Jeff Sterling + AlbumPlanet Drum + GenreWorld + KindAAC audio file + Size8363902 + Total Time343886 + Disc Number1 + Disc Count1 + Track Number13 + Track Count13 + Year1991 + Date Modified2006-08-07T15:15:12Z + Date Added2009-10-03T14:55:25Z + Bit Rate192 + Sample Rate44100 + Normalization1000 + Artwork Count1 + Persistent IDC1E7B9E8EE5967EE + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mickey%20Hart/Planet%20Drum/13%20Mysterious%20Island.m4a + File Folder Count4 + Library Folder Count1 + + 3391 + + Track ID3391 + NamePrologue + ArtistLoreena McKennitt + ComposerLoreena McKennitt + AlbumThe Book Of Secrets + GenreNew Age + KindAAC audio file + Size6377436 + Total Time265240 + Disc Number1 + Disc Count1 + Track Number1 + Track Count8 + Year1997 + Date Modified2006-07-31T03:38:30Z + Date Added2009-10-03T14:55:37Z + Bit Rate192 + Sample Rate44100 + Play Count2 + Play Date3389617969 + Play Date UTC2011-05-30T11:02:49Z + Normalization1061 + Artwork Count1 + Sort AlbumBook Of Secrets + Persistent ID885F82670F5BFB3C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Loreena%20McKennitt/The%20Book%20Of%20Secrets/01%20Prologue.m4a + File Folder Count4 + Library Folder Count1 + + 3393 + + Track ID3393 + NameThe Mummers' Dance + ArtistLoreena McKennitt + ComposerLoreena McKennitt + AlbumThe Book Of Secrets + GenreNew Age + KindAAC audio file + Size8911392 + Total Time370681 + Disc Number1 + Disc Count1 + Track Number2 + Track Count8 + Year1997 + Date Modified2006-07-31T03:38:30Z + Date Added2009-10-03T14:55:37Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3389618339 + Play Date UTC2011-05-30T11:08:59Z + Normalization1408 + Artwork Count1 + Sort AlbumBook Of Secrets + Sort NameMummers' Dance + Persistent ID3A91637475846A5D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Loreena%20McKennitt/The%20Book%20Of%20Secrets/02%20The%20Mummers'%20Dance.m4a + File Folder Count4 + Library Folder Count1 + + 3395 + + Track ID3395 + NameSkellig + ArtistLoreena McKennitt + ComposerLoreena McKennitt + AlbumThe Book Of Secrets + GenreNew Age + KindAAC audio file + Size8919847 + Total Time370681 + Disc Number1 + Disc Count1 + Track Number3 + Track Count8 + Year1997 + Date Modified2006-07-31T03:38:30Z + Date Added2009-10-03T14:55:37Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3389618710 + Play Date UTC2011-05-30T11:15:10Z + Normalization1495 + Artwork Count1 + Sort AlbumBook Of Secrets + Persistent ID0537EF58BB0FF5E5 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Loreena%20McKennitt/The%20Book%20Of%20Secrets/03%20Skellig.m4a + File Folder Count4 + Library Folder Count1 + + 3397 + + Track ID3397 + NameMarco Polo + ArtistLoreena McKennitt + ComposerLoreena McKennitt + AlbumThe Book Of Secrets + GenreNew Age + KindAAC audio file + Size7657442 + Total Time319133 + Disc Number1 + Disc Count1 + Track Number4 + Track Count8 + Year1997 + Date Modified2006-07-31T03:38:30Z + Date Added2009-10-03T14:55:37Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3389619029 + Play Date UTC2011-05-30T11:20:29Z + Normalization1744 + Artwork Count1 + Sort AlbumBook Of Secrets + Persistent IDF6248302AA5939F5 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Loreena%20McKennitt/The%20Book%20Of%20Secrets/04%20Marco%20Polo.m4a + File Folder Count4 + Library Folder Count1 + + 3399 + + Track ID3399 + NameThe Highwayman + ArtistLoreena McKennitt + ComposerAlfred Noyes + AlbumThe Book Of Secrets + GenreNew Age + KindAAC audio file + Size14989127 + Total Time620667 + Disc Number1 + Disc Count1 + Track Number5 + Track Count8 + Year1997 + Date Modified2006-07-31T03:38:30Z + Date Added2009-10-03T14:55:37Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Sort AlbumBook Of Secrets + Sort NameHighwayman + Persistent ID64D32AB78E932D09 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Loreena%20McKennitt/The%20Book%20Of%20Secrets/05%20The%20Highwayman.m4a + File Folder Count4 + Library Folder Count1 + + 3401 + + Track ID3401 + NameLa Serenissima + ArtistLoreena McKennitt + ComposerLoreena McKennitt + AlbumThe Book Of Secrets + GenreNew Age + KindAAC audio file + Size7513168 + Total Time310008 + Disc Number1 + Disc Count1 + Track Number6 + Track Count8 + Year1997 + Date Modified2006-07-31T03:38:30Z + Date Added2009-10-03T14:55:37Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Sort AlbumBook Of Secrets + Persistent ID50FF2816CB4804E3 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Loreena%20McKennitt/The%20Book%20Of%20Secrets/06%20La%20Serenissima.m4a + File Folder Count4 + Library Folder Count1 + + 3403 + + Track ID3403 + NameNight Ride Across The Caucasus + ArtistLoreena McKennitt + ComposerLoreena McKennitt + AlbumThe Book Of Secrets + GenreNew Age + KindAAC audio file + Size12386918 + Total Time512648 + Disc Number1 + Disc Count1 + Track Number7 + Track Count8 + Year1997 + Date Modified2006-08-07T08:53:04Z + Date Added2009-10-03T14:55:37Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3383588163 + Play Date UTC2011-03-21T16:06:03Z + Normalization1378 + Artwork Count2 + Sort AlbumBook Of Secrets + Persistent ID0B41640737DF5278 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Loreena%20McKennitt/The%20Book%20Of%20Secrets/07%20Night%20Ride%20Across%20The%20Caucasus.m4a + File Folder Count4 + Library Folder Count1 + + 3405 + + Track ID3405 + NameDante's Prayer + ArtistLoreena McKennitt + ComposerLoreena McKennitt + AlbumThe Book Of Secrets + GenreNew Age + KindAAC audio file + Size10443284 + Total Time431077 + Disc Number1 + Disc Count1 + Track Number8 + Track Count8 + Year1997 + Date Modified2006-07-31T03:38:32Z + Date Added2009-10-03T14:55:37Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Sort AlbumBook Of Secrets + Persistent ID05A6BBABC4F0F411 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Loreena%20McKennitt/The%20Book%20Of%20Secrets/08%20Dante's%20Prayer.m4a + File Folder Count4 + Library Folder Count1 + + 3593 + + Track ID3593 + NamePart I + ArtistKeith Jarrett + ComposerKeith Jarrett + AlbumThe Koln Concert + GenreJazz + KindAAC audio file + Size37811783 + Total Time1561610 + Disc Number1 + Disc Count1 + Track Number1 + Track Count4 + Year1975 + Date Modified2006-07-27T16:19:42Z + Date Added2009-10-03T14:55:50Z + Bit Rate192 + Sample Rate44100 + Play Count2 + Play Date3389984791 + Play Date UTC2011-06-03T16:56:31Z + Normalization874 + Artwork Count1 + Sort AlbumKoln Concert + Persistent ID510557EFCBAD559F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Keith%20Jarrett/The%20Koln%20Concert/01%20Part%20I.m4a + File Folder Count4 + Library Folder Count1 + + 3595 + + Track ID3595 + NamePart II A + ArtistKeith Jarrett + ComposerKeith Jarrett + AlbumThe Koln Concert + GenreJazz + KindAAC audio file + Size21674287 + Total Time894756 + Disc Number1 + Disc Count1 + Track Number2 + Track Count4 + Year1975 + Date Modified2006-07-27T16:19:44Z + Date Added2009-10-03T14:55:50Z + Bit Rate192 + Sample Rate44100 + Play Count2 + Play Date3389985685 + Play Date UTC2011-06-03T17:11:25Z + Normalization774 + Artwork Count1 + Sort AlbumKoln Concert + Persistent ID7BE6157C7A944DEE + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Keith%20Jarrett/The%20Koln%20Concert/02%20Part%20II%20A.m4a + File Folder Count4 + Library Folder Count1 + + 3597 + + Track ID3597 + NamePart II B + ArtistKeith Jarrett + ComposerKeith Jarrett + AlbumThe Koln Concert + GenreJazz + KindAAC audio file + Size26508430 + Total Time1094517 + Disc Number1 + Disc Count1 + Track Number3 + Track Count4 + Year1975 + Date Modified2006-07-27T16:19:46Z + Date Added2009-10-03T14:55:50Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3389986780 + Play Date UTC2011-06-03T17:29:40Z + Normalization781 + Artwork Count1 + Sort AlbumKoln Concert + Persistent IDF14B6F46956F15A5 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Keith%20Jarrett/The%20Koln%20Concert/03%20Part%20II%20B.m4a + File Folder Count4 + Library Folder Count1 + + 3599 + + Track ID3599 + NamePart II C + ArtistKeith Jarrett + ComposerKeith Jarrett + AlbumThe Koln Concert + GenreJazz + KindAAC audio file + Size10098304 + Total Time416843 + Disc Number1 + Disc Count1 + Track Number4 + Track Count4 + Year1975 + Date Modified2006-07-27T16:19:48Z + Date Added2009-10-03T14:55:50Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3389987197 + Play Date UTC2011-06-03T17:36:37Z + Normalization948 + Artwork Count1 + Sort AlbumKoln Concert + Persistent ID29B257311FC05657 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Keith%20Jarrett/The%20Koln%20Concert/04%20Part%20II%20C.m4a + File Folder Count4 + Library Folder Count1 + + 3621 + + Track ID3621 + NameSayonee + ArtistJunoon + AlbumAzadi + GenreWorld + KindAAC audio file + Size7416200 + Total Time305526 + Track Number1 + Track Count15 + Date Modified2006-08-13T06:39:50Z + Date Added2009-10-03T14:55:53Z + Bit Rate192 + Sample Rate44100 + Normalization918 + Artwork Count1 + Persistent IDE00D1FC101EF9DAF + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Junoon/Azadi/01%20Sayonee.m4a + File Folder Count4 + Library Folder Count1 + + 3623 + + Track ID3623 + NameMeri Awaaz Suno + ArtistJunoon + AlbumAzadi + GenreWorld + KindAAC audio file + Size8072232 + Total Time332647 + Track Number2 + Track Count15 + Date Modified2006-08-13T06:39:46Z + Date Added2009-10-03T14:55:53Z + Bit Rate192 + Sample Rate44100 + Normalization1014 + Artwork Count1 + Persistent IDDE82B341A348847D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Junoon/Azadi/02%20Meri%20Awaaz%20Suno.m4a + File Folder Count4 + Library Folder Count1 + + 3625 + + Track ID3625 + NameKhudi + ArtistJunoon + AlbumAzadi + GenreWorld + KindAAC audio file + Size6058236 + Total Time249311 + Track Number3 + Track Count15 + Date Modified2006-08-13T06:39:42Z + Date Added2009-10-03T14:55:54Z + Bit Rate192 + Sample Rate44100 + Normalization1092 + Artwork Count1 + Persistent ID6AB6983D144D3680 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Junoon/Azadi/03%20Khudi.m4a + File Folder Count4 + Library Folder Count1 + + 3627 + + Track ID3627 + NameYaar Bina + ArtistJunoon + AlbumAzadi + GenreWorld + KindAAC audio file + Size5526756 + Total Time227182 + Track Number4 + Track Count15 + Date Modified2006-08-13T06:39:40Z + Date Added2009-10-03T14:55:54Z + Bit Rate192 + Sample Rate44100 + Normalization1059 + Artwork Count1 + Persistent IDA93B567A32741520 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Junoon/Azadi/04%20Yaar%20Bina.m4a + File Folder Count4 + Library Folder Count1 + + 3629 + + Track ID3629 + NameMukh Gae + ArtistJunoon + AlbumAzadi + GenreWorld + KindAAC audio file + Size8098433 + Total Time333715 + Track Number5 + Track Count15 + Date Modified2006-08-13T06:39:38Z + Date Added2009-10-03T14:55:54Z + Bit Rate192 + Sample Rate44100 + Normalization924 + Artwork Count1 + Persistent ID687CE56748388723 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Junoon/Azadi/05%20Mukh%20Gae.m4a + File Folder Count4 + Library Folder Count1 + + 3631 + + Track ID3631 + NameHeer + ArtistJunoon + AlbumAzadi + GenreWorld + KindAAC audio file + Size7062398 + Total Time290898 + Track Number6 + Track Count15 + Date Modified2006-08-13T06:39:34Z + Date Added2009-10-03T14:55:54Z + Bit Rate192 + Sample Rate44100 + Normalization943 + Artwork Count1 + Persistent ID43AB15622BF10A3E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Junoon/Azadi/06%20Heer.m4a + File Folder Count4 + Library Folder Count1 + + 3633 + + Track ID3633 + NameWahda Hoo + ArtistJunoon + AlbumAzadi + GenreWorld + KindAAC audio file + Size7087509 + Total Time291943 + Track Number7 + Track Count15 + Date Modified2006-08-13T06:39:30Z + Date Added2009-10-03T14:55:54Z + Bit Rate192 + Sample Rate44100 + Normalization899 + Artwork Count1 + Persistent IDCF4A02ACE1A2B1F3 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Junoon/Azadi/07%20Wahda%20Hoo.m4a + File Folder Count4 + Library Folder Count1 + + 3635 + + Track ID3635 + NameKyun Parishan + ArtistJunoon + AlbumAzadi + GenreWorld + KindAAC audio file + Size5737137 + Total Time235936 + Track Number8 + Track Count15 + Date Modified2006-08-13T06:39:28Z + Date Added2009-10-03T14:55:54Z + Bit Rate192 + Sample Rate44100 + Normalization963 + Artwork Count1 + Persistent ID1293852C7E2937CB + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Junoon/Azadi/08%20Kyun%20Parishan.m4a + File Folder Count4 + Library Folder Count1 + + 3637 + + Track ID3637 + NameMahiwal + ArtistJunoon + AlbumAzadi + GenreWorld + KindAAC audio file + Size8754082 + Total Time360813 + Track Number9 + Track Count15 + Date Modified2006-08-13T06:39:24Z + Date Added2009-10-03T14:55:54Z + Bit Rate192 + Sample Rate44100 + Normalization1030 + Artwork Count1 + Persistent ID0C762D78D78C7DB1 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Junoon/Azadi/09%20Mahiwal.m4a + File Folder Count4 + Library Folder Count1 + + 3639 + + Track ID3639 + NameKisne Suna + ArtistJunoon + AlbumAzadi + GenreWorld + KindAAC audio file + Size5763699 + Total Time237051 + Track Number10 + Track Count15 + Date Modified2006-08-13T06:39:20Z + Date Added2009-10-03T14:55:55Z + Bit Rate192 + Sample Rate44100 + Normalization909 + Artwork Count1 + Persistent IDE0CB4CF446887C04 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Junoon/Azadi/10%20Kisne%20Suna.m4a + File Folder Count4 + Library Folder Count1 + + 3641 + + Track ID3641 + NameLal Meri Pat + ArtistJunoon + AlbumAzadi + GenreWorld + KindAAC audio file + Size7748353 + Total Time319249 + Track Number11 + Track Count15 + Date Modified2006-08-13T06:39:18Z + Date Added2009-10-03T14:55:55Z + Bit Rate192 + Sample Rate44100 + Normalization906 + Artwork Count1 + Persistent ID6514CDA229D09DBD + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Junoon/Azadi/11%20Lal%20Meri%20Pat.m4a + File Folder Count4 + Library Folder Count1 + + 3643 + + Track ID3643 + NameDil Nahin Lag Raha + ArtistJunoon + AlbumAzadi + GenreWorld + KindAAC audio file + Size5734991 + Total Time235843 + Track Number12 + Track Count15 + Date Modified2006-08-13T06:39:14Z + Date Added2009-10-03T14:55:55Z + Bit Rate192 + Sample Rate44100 + Normalization949 + Artwork Count1 + Persistent ID18C965876072104E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Junoon/Azadi/12%20Dil%20Nahin%20Lag%20Raha.m4a + File Folder Count4 + Library Folder Count1 + + 3645 + + Track ID3645 + NameLoishay + ArtistJunoon + AlbumAzadi + GenreWorld + KindAAC audio file + Size5300292 + Total Time217755 + Track Number13 + Track Count15 + Date Modified2006-08-13T06:39:12Z + Date Added2009-10-03T14:55:55Z + Bit Rate192 + Sample Rate44100 + Normalization910 + Artwork Count1 + Persistent ID7E543F949F7465D2 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Junoon/Azadi/13%20Loishay.m4a + File Folder Count4 + Library Folder Count1 + + 3647 + + Track ID3647 + NameSaeein Alaap + ArtistJunoon + AlbumAzadi + GenreWorld + KindAAC audio file + Size1325568 + Total Time53009 + Track Number14 + Track Count15 + Date Modified2006-08-13T06:39:10Z + Date Added2009-10-03T14:55:55Z + Bit Rate192 + Sample Rate44100 + Normalization1207 + Artwork Count1 + Persistent ID5EB968A945AE2176 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Junoon/Azadi/14%20Saeein%20Alaap.m4a + File Folder Count4 + Library Folder Count1 + + 3649 + + Track ID3649 + NameSaeein + ArtistJunoon + AlbumAzadi + GenreWorld + KindAAC audio file + Size6784242 + Total Time279427 + Track Number15 + Track Count15 + Date Modified2006-08-13T06:39:10Z + Date Added2009-10-03T14:55:55Z + Bit Rate192 + Sample Rate44100 + Normalization877 + Artwork Count1 + Persistent ID2F31B1864638D709 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Junoon/Azadi/15%20Saeein.m4a + File Folder Count4 + Library Folder Count1 + + 4053 + + Track ID4053 + NameThe Esio Trot + ArtistGeorge Brooks + AlbumNight Spinner + GenreJazz + KindAAC audio file + Size10514925 + Total Time433770 + Track Number1 + Track Count10 + Date Modified2006-07-29T04:36:06Z + Date Added2009-10-03T14:56:37Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Sort NameEsio Trot + Persistent ID7685DCB23B82A22A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Brooks/Night%20Spinner/01%20The%20Esio%20Trot.m4a + File Folder Count4 + Library Folder Count1 + + 4055 + + Track ID4055 + NameWater Dance + ArtistGeorge Brooks + AlbumNight Spinner + GenreJazz + KindAAC audio file + Size10159717 + Total Time419095 + Track Number2 + Track Count10 + Date Modified2006-07-29T04:36:06Z + Date Added2009-10-03T14:56:37Z + Bit Rate192 + Sample Rate44100 + Normalization1243 + Artwork Count1 + Persistent ID4CC983DB8EE26174 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Brooks/Night%20Spinner/02%20Water%20Dance.m4a + File Folder Count4 + Library Folder Count1 + + 4057 + + Track ID4057 + NameHymn + ArtistGeorge Brooks + AlbumNight Spinner + GenreJazz + KindAAC audio file + Size3892899 + Total Time159891 + Track Number3 + Track Count10 + Date Modified2006-07-29T04:36:08Z + Date Added2009-10-03T14:56:37Z + Bit Rate192 + Sample Rate44100 + Normalization1383 + Artwork Count1 + Persistent ID02D7DDD50DADFF60 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Brooks/Night%20Spinner/03%20Hymn.m4a + File Folder Count4 + Library Folder Count1 + + 4059 + + Track ID4059 + NameNight Spinner + ArtistGeorge Brooks + AlbumNight Spinner + GenreJazz + KindAAC audio file + Size7209204 + Total Time297167 + Track Number4 + Track Count10 + Date Modified2006-07-29T04:36:08Z + Date Added2009-10-03T14:56:37Z + Bit Rate192 + Sample Rate44100 + Normalization1249 + Artwork Count1 + Persistent IDC37FEE66D7CA29CA + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Brooks/Night%20Spinner/04%20Night%20Spinner.m4a + File Folder Count4 + Library Folder Count1 + + 4061 + + Track ID4061 + NameIn The Grotto + ArtistGeorge Brooks + AlbumNight Spinner + GenreJazz + KindAAC audio file + Size14034114 + Total Time582656 + Track Number5 + Track Count10 + Date Modified2006-07-29T04:36:08Z + Date Added2009-10-03T14:56:37Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Persistent ID2D5BD74BA272B2BE + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Brooks/Night%20Spinner/05%20In%20The%20Grotto.m4a + File Folder Count4 + Library Folder Count1 + + 4063 + + Track ID4063 + NameLooking East + ArtistGeorge Brooks + AlbumNight Spinner + GenreJazz + KindAAC audio file + Size6766964 + Total Time278893 + Track Number6 + Track Count10 + Date Modified2006-07-29T04:36:08Z + Date Added2009-10-03T14:56:37Z + Bit Rate192 + Sample Rate44100 + Normalization1256 + Artwork Count1 + Persistent ID62C27FDF1BD1023A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Brooks/Night%20Spinner/06%20Looking%20East.m4a + File Folder Count4 + Library Folder Count1 + + 4065 + + Track ID4065 + NameImages + ArtistGeorge Brooks + AlbumNight Spinner + GenreJazz + KindAAC audio file + Size8841345 + Total Time364621 + Track Number7 + Track Count10 + Date Modified2006-07-29T04:36:10Z + Date Added2009-10-03T14:56:38Z + Bit Rate192 + Sample Rate44100 + Normalization1464 + Artwork Count1 + Persistent IDD5D90BF95FB6C41A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Brooks/Night%20Spinner/07%20Images.m4a + File Folder Count4 + Library Folder Count1 + + 4067 + + Track ID4067 + NameRomance + ArtistGeorge Brooks + AlbumNight Spinner + GenreJazz + KindAAC audio file + Size9935184 + Total Time409877 + Track Number8 + Track Count10 + Date Modified2006-07-29T04:36:10Z + Date Added2009-10-03T14:56:38Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Persistent ID3728F4A381D17CCD + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Brooks/Night%20Spinner/08%20Romance.m4a + File Folder Count4 + Library Folder Count1 + + 4069 + + Track ID4069 + NameMidnight Meeting + ArtistGeorge Brooks + AlbumNight Spinner + GenreJazz + KindAAC audio file + Size5659993 + Total Time233173 + Track Number9 + Track Count10 + Date Modified2006-07-29T04:36:10Z + Date Added2009-10-03T14:56:38Z + Bit Rate192 + Sample Rate44100 + Normalization1253 + Artwork Count1 + Persistent ID6CD18B31E820FC5A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Brooks/Night%20Spinner/09%20Midnight%20Meeting.m4a + File Folder Count4 + Library Folder Count1 + + 4071 + + Track ID4071 + NameThe Light Never Leaves Your Eyes + ArtistGeorge Brooks + AlbumNight Spinner + GenreJazz + KindAAC audio file + Size7930364 + Total Time327353 + Track Number10 + Track Count10 + Date Modified2006-07-29T04:36:10Z + Date Added2009-10-03T14:56:38Z + Bit Rate192 + Sample Rate44100 + Normalization917 + Artwork Count1 + Sort NameLight Never Leaves Your Eyes + Persistent IDC06E1ED22CD39104 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Brooks/Night%20Spinner/10%20The%20Light%20Never%20Leaves%20Your%20Eyes.m4a + File Folder Count4 + Library Folder Count1 + + 4931 + + Track ID4931 + NameWhat Silence Said + ArtistSusheela Raman + AlbumMusic For Crocodiles + GenreWorld + KindAAC audio file + Size6784515 + Total Time280983 + Track Number1 + Track Count13 + Year2005 + Date Modified2006-08-07T09:55:14Z + Date Added2009-10-03T14:57:56Z + Bit Rate192 + Sample Rate44100 + Play Count2 + Play Date3424522441 + Play Date UTC2012-07-07T10:44:01Z + Normalization1244 + Compilation + Artwork Count1 + Persistent ID268362DDAF5C2F6F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Music%20For%20Crocodiles/01%20What%20Silence%20Said.m4a + File Folder Count4 + Library Folder Count1 + + 4933 + + Track ID4933 + NameMusic For Crocodiles + ArtistSusheela Raman + AlbumMusic For Crocodiles + GenreWorld + KindAAC audio file + Size7263665 + Total Time299977 + Track Number2 + Track Count13 + Year2005 + Date Modified2006-08-07T09:55:14Z + Date Added2009-10-03T14:57:57Z + Bit Rate192 + Sample Rate44100 + Play Count2 + Play Date3424522742 + Play Date UTC2012-07-07T10:49:02Z + Normalization1299 + Compilation + Artwork Count1 + Persistent ID428D83A4763E1377 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Music%20For%20Crocodiles/02%20Music%20For%20Crocodiles.m4a + File Folder Count4 + Library Folder Count1 + + 4935 + + Track ID4935 + NameLight Years Intro + ArtistSusheela Raman + AlbumMusic For Crocodiles + GenreWorld + KindAAC audio file + Size2473260 + Total Time100796 + Track Number3 + Track Count13 + Year2005 + Date Modified2006-08-07T09:55:14Z + Date Added2009-10-03T14:57:57Z + Bit Rate192 + Sample Rate44100 + Play Count2 + Play Date3424522843 + Play Date UTC2012-07-07T10:50:43Z + Normalization543 + Compilation + Artwork Count1 + Persistent IDCD7A03226BC79769 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Music%20For%20Crocodiles/03%20Light%20Years%20Intro.m4a + File Folder Count4 + Library Folder Count1 + + 4937 + + Track ID4937 + NameLight Years + ArtistSusheela Raman + AlbumMusic For Crocodiles + GenreWorld + KindAAC audio file + Size8670568 + Total Time357748 + Track Number4 + Track Count13 + Year2005 + Date Modified2006-08-07T09:55:14Z + Date Added2009-10-03T14:57:57Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3424523201 + Play Date UTC2012-07-07T10:56:41Z + Normalization1259 + Compilation + Artwork Count1 + Persistent ID7EFA7FD30D0F2680 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Music%20For%20Crocodiles/04%20Light%20Years.m4a + File Folder Count4 + Library Folder Count1 + + 4939 + + Track ID4939 + NameThe Same Song + ArtistSusheela Raman + AlbumMusic For Crocodiles + GenreWorld + KindAAC audio file + Size6041432 + Total Time249148 + Track Number5 + Track Count13 + Year2005 + Date Modified2006-08-07T09:55:12Z + Date Added2009-10-03T14:57:57Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3424523450 + Play Date UTC2012-07-07T11:00:50Z + Normalization1244 + Compilation + Artwork Count1 + Sort NameSame Song + Persistent ID6D9EE18D975C9227 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Music%20For%20Crocodiles/05%20The%20Same%20Song.m4a + File Folder Count4 + Library Folder Count1 + + 4941 + + Track ID4941 + NameIntro + ArtistSusheela Raman + AlbumMusic For Crocodiles + GenreWorld + KindAAC audio file + Size2373275 + Total Time96616 + Track Number6 + Track Count13 + Year2005 + Date Modified2006-08-07T09:55:12Z + Date Added2009-10-03T14:57:57Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3424523547 + Play Date UTC2012-07-07T11:02:27Z + Normalization254 + Compilation + Artwork Count1 + Persistent IDC8F0C5688B3E7BC0 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Music%20For%20Crocodiles/06%20Intro.m4a + File Folder Count4 + Library Folder Count1 + + 4943 + + Track ID4943 + NameMeanwhile + ArtistSusheela Raman + AlbumMusic For Crocodiles + GenreWorld + KindAAC audio file + Size5622381 + Total Time232430 + Track Number7 + Track Count13 + Year2005 + Date Modified2006-08-07T09:55:12Z + Date Added2009-10-03T14:57:57Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3424523779 + Play Date UTC2012-07-07T11:06:19Z + Normalization1244 + Compilation + Artwork Count1 + Persistent ID30F61BA41C1F98D6 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Music%20For%20Crocodiles/07%20Meanwhile.m4a + File Folder Count4 + Library Folder Count1 + + 4945 + + Track ID4945 + NameChordhiya + ArtistSusheela Raman + AlbumMusic For Crocodiles + GenreWorld + KindAAC audio file + Size8189375 + Total Time337872 + Track Number8 + Track Count13 + Year2005 + Date Modified2006-08-07T09:55:12Z + Date Added2009-10-03T14:57:57Z + Bit Rate192 + Sample Rate44100 + Normalization1420 + Compilation + Artwork Count1 + Persistent IDBC25E5F0C4E2CF87 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Music%20For%20Crocodiles/08%20Chordhiya.m4a + File Folder Count4 + Library Folder Count1 + + 4947 + + Track ID4947 + NameIdi Samayam + ArtistSusheela Raman + AlbumMusic For Crocodiles + GenreWorld + KindAAC audio file + Size8068233 + Total Time332856 + Track Number9 + Track Count13 + Year2005 + Date Modified2006-08-07T09:55:12Z + Date Added2009-10-03T14:57:58Z + Bit Rate192 + Sample Rate44100 + Normalization1231 + Compilation + Artwork Count1 + Persistent IDE72B722E95A58A58 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Music%20For%20Crocodiles/09%20Idi%20Samayam.m4a + File Folder Count4 + Library Folder Count1 + + 4949 + + Track ID4949 + NameL'ame Volatile + ArtistSusheela Raman + AlbumMusic For Crocodiles + GenreWorld + KindAAC audio file + Size5242362 + Total Time216083 + Track Number10 + Track Count13 + Year2005 + Date Modified2006-08-07T09:55:12Z + Date Added2009-10-03T14:57:58Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Compilation + Artwork Count1 + Persistent IDC920E073626B1A99 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Music%20For%20Crocodiles/10%20L'ame%20Volatile.m4a + File Folder Count4 + Library Folder Count1 + + 4951 + + Track ID4951 + NameIntro + ArtistSusheela Raman + AlbumMusic For Crocodiles + GenreWorld + KindAAC audio file + Size2591553 + Total Time105719 + Track Number11 + Track Count13 + Year2005 + Date Modified2006-08-07T09:55:12Z + Date Added2009-10-03T14:57:58Z + Bit Rate192 + Sample Rate44100 + Normalization1148 + Compilation + Artwork Count1 + Persistent IDBDF0294676AFF8F1 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Music%20For%20Crocodiles/11%20Intro.m4a + File Folder Count4 + Library Folder Count1 + + 4953 + + Track ID4953 + NameSharavana + ArtistSusheela Raman + AlbumMusic For Crocodiles + GenreWorld + KindAAC audio file + Size8920276 + Total Time368081 + Track Number12 + Track Count13 + Year2005 + Date Modified2006-08-07T09:55:12Z + Date Added2009-10-03T14:57:58Z + Bit Rate192 + Sample Rate44100 + Normalization1149 + Compilation + Artwork Count1 + Persistent ID4B00A657F97D7C4A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Music%20For%20Crocodiles/12%20Sharavana.m4a + File Folder Count4 + Library Folder Count1 + + 4955 + + Track ID4955 + NameLeela + ArtistSusheela Raman + AlbumMusic For Crocodiles + GenreWorld + KindAAC audio file + Size5517932 + Total Time229202 + Track Number13 + Track Count13 + Year2005 + Date Modified2006-08-07T09:55:12Z + Date Added2009-10-03T14:57:58Z + Bit Rate192 + Sample Rate44100 + Normalization1248 + Compilation + Artwork Count1 + Persistent ID3BB35D00AD68044F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Music%20For%20Crocodiles/13%20Leela.m4a + File Folder Count4 + Library Folder Count1 + + 5723 + + Track ID5723 + NameA -Tisket, a-Tasket + ArtistElla Fitzgerald + Album4 By 4 - The Ladies - Ella, Billie, Sarah, Dinah + GenreJazz + KindAAC audio file + Size2784627 + Total Time116167 + Disc Number1 + Disc Count16 + Track Number1 + Track Count16 + Year1999 + Date Modified2006-08-07T09:09:10Z + Date Added2009-10-03T14:58:57Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3337490953 + Play Date UTC2009-10-04T03:19:13Z + Normalization1931 + Compilation + Artwork Count1 + Sort Name-Tisket, a-Tasket + Persistent ID540F7B2D287A4BEA + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/4%20By%204%20-%20The%20Ladies%20-%20Ella,%20Billie,%20Sarah,%20Dinah/1-01%20A%20-Tisket,%20a-Tasket.m4a + File Folder Count4 + Library Folder Count1 + + 5725 + + Track ID5725 + NameMack the Knife + ArtistElla Fitzgerald + Album4 By 4 - The Ladies - Ella, Billie, Sarah, Dinah + GenreJazz + KindAAC audio file + Size6868905 + Total Time285069 + Disc Number1 + Disc Count16 + Track Number2 + Track Count16 + Year1999 + Date Modified2006-08-07T09:09:10Z + Date Added2009-10-03T14:58:57Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3337491238 + Play Date UTC2009-10-04T03:23:58Z + Normalization1610 + Compilation + Artwork Count1 + Persistent ID3A12B018255583A6 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/4%20By%204%20-%20The%20Ladies%20-%20Ella,%20Billie,%20Sarah,%20Dinah/1-02%20Mack%20the%20Knife.m4a + File Folder Count4 + Library Folder Count1 + + 5727 + + Track ID5727 + NameMr. Paganini + ArtistElla Fitzgerald + Album4 By 4 - The Ladies - Ella, Billie, Sarah, Dinah + GenreJazz + KindAAC audio file + Size5915091 + Total Time246013 + Disc Number1 + Disc Count16 + Track Number3 + Track Count16 + Year1999 + Date Modified2006-08-07T09:09:10Z + Date Added2009-10-03T14:58:57Z + Bit Rate192 + Sample Rate44100 + Normalization3534 + Compilation + Artwork Count1 + Persistent ID0100B23C34EA0054 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/4%20By%204%20-%20The%20Ladies%20-%20Ella,%20Billie,%20Sarah,%20Dinah/1-03%20Mr.%20Paganini.m4a + File Folder Count4 + Library Folder Count1 + + 5729 + + Track ID5729 + NameHow High the Moon + ArtistElla Fitzgerald + Album4 By 4 - The Ladies - Ella, Billie, Sarah, Dinah + GenreJazz + KindAAC audio file + Size10179348 + Total Time422346 + Disc Number1 + Disc Count16 + Track Number4 + Track Count16 + Year1999 + Date Modified2006-08-07T09:09:10Z + Date Added2009-10-03T14:58:57Z + Bit Rate192 + Sample Rate44100 + Normalization1813 + Compilation + Artwork Count1 + Persistent ID3411808F935A2418 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/4%20By%204%20-%20The%20Ladies%20-%20Ella,%20Billie,%20Sarah,%20Dinah/1-04%20How%20High%20the%20Moon.m4a + File Folder Count4 + Library Folder Count1 + + 5731 + + Track ID5731 + NameGod Bless the Child + ArtistBillie Holiday + Album4 By 4 - The Ladies - Ella, Billie, Sarah, Dinah + GenreJazz + KindAAC audio file + Size5761266 + Total Time239512 + Disc Number1 + Disc Count16 + Track Number5 + Track Count16 + Year1999 + Date Modified2006-08-07T09:09:10Z + Date Added2009-10-03T14:58:57Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3337491582 + Play Date UTC2009-10-04T03:29:42Z + Normalization1848 + Compilation + Artwork Count1 + Persistent IDCC687BD99FDC94DD + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/4%20By%204%20-%20The%20Ladies%20-%20Ella,%20Billie,%20Sarah,%20Dinah/1-05%20God%20Bless%20the%20Child.m4a + File Folder Count4 + Library Folder Count1 + + 5733 + + Track ID5733 + NameStrange Fruit + ArtistBillie Holiday + Album4 By 4 - The Ladies - Ella, Billie, Sarah, Dinah + GenreJazz + KindAAC audio file + Size4404996 + Total Time183668 + Disc Number1 + Disc Count16 + Track Number6 + Track Count16 + Year1999 + Date Modified2006-08-07T09:09:10Z + Date Added2009-10-03T14:58:57Z + Bit Rate192 + Sample Rate44100 + Skip Count1 + Skip Date2009-10-04T03:29:49Z + Normalization2543 + Compilation + Artwork Count1 + Persistent ID41A83274C57BCEB4 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/4%20By%204%20-%20The%20Ladies%20-%20Ella,%20Billie,%20Sarah,%20Dinah/1-06%20Strange%20Fruit.m4a + File Folder Count4 + Library Folder Count1 + + 5735 + + Track ID5735 + NameWhat a Little Moonlight Can Do + ArtistBillie Holiday + Album4 By 4 - The Ladies - Ella, Billie, Sarah, Dinah + GenreJazz + KindAAC audio file + Size4614979 + Total Time191911 + Disc Number1 + Disc Count16 + Track Number7 + Track Count16 + Year1999 + Date Modified2006-08-07T09:09:10Z + Date Added2009-10-03T14:58:58Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3337491781 + Play Date UTC2009-10-04T03:33:01Z + Normalization1533 + Compilation + Artwork Count1 + Persistent IDD5DD4FECCF6BFB79 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/4%20By%204%20-%20The%20Ladies%20-%20Ella,%20Billie,%20Sarah,%20Dinah/1-07%20What%20a%20Little%20Moonlight%20Can%20Do.m4a + File Folder Count4 + Library Folder Count1 + + 5737 + + Track ID5737 + NameGood Morning Heartache + ArtistBillie Holiday + Album4 By 4 - The Ladies - Ella, Billie, Sarah, Dinah + GenreJazz + KindAAC audio file + Size5055367 + Total Time211067 + Disc Number1 + Disc Count16 + Track Number8 + Track Count16 + Year1999 + Date Modified2006-08-07T09:09:10Z + Date Added2009-10-03T14:58:58Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3337491992 + Play Date UTC2009-10-04T03:36:32Z + Normalization1259 + Compilation + Artwork Count1 + Persistent IDE69FCFE1890477AA + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/4%20By%204%20-%20The%20Ladies%20-%20Ella,%20Billie,%20Sarah,%20Dinah/1-08%20Good%20Morning%20Heartache.m4a + File Folder Count4 + Library Folder Count1 + + 5739 + + Track ID5739 + NameMisty + ArtistSarah Vaughan + Album4 By 4 - The Ladies - Ella, Billie, Sarah, Dinah + GenreJazz + KindAAC audio file + Size4366419 + Total Time181717 + Disc Number1 + Disc Count16 + Track Number9 + Track Count16 + Year1999 + Date Modified2006-08-07T09:09:10Z + Date Added2009-10-03T14:58:58Z + Bit Rate192 + Sample Rate44100 + Normalization1852 + Compilation + Artwork Count1 + Persistent ID4F645E89F05C6C15 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/4%20By%204%20-%20The%20Ladies%20-%20Ella,%20Billie,%20Sarah,%20Dinah/1-09%20Misty.m4a + File Folder Count4 + Library Folder Count1 + + 5741 + + Track ID5741 + NameLullaby of Birdland + ArtistSarah Vaughan + Album4 By 4 - The Ladies - Ella, Billie, Sarah, Dinah + GenreJazz + KindAAC audio file + Size5790257 + Total Time240441 + Disc Number1 + Disc Count16 + Track Number10 + Track Count16 + Year1999 + Date Modified2006-08-07T09:09:10Z + Date Added2009-10-03T14:58:58Z + Bit Rate192 + Sample Rate44100 + Normalization1379 + Compilation + Artwork Count1 + Persistent IDF1A338488061D000 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/4%20By%204%20-%20The%20Ladies%20-%20Ella,%20Billie,%20Sarah,%20Dinah/1-10%20Lullaby%20of%20Birdland.m4a + File Folder Count4 + Library Folder Count1 + + 5743 + + Track ID5743 + NameLover Man + ArtistSarah Vaughan + Album4 By 4 - The Ladies - Ella, Billie, Sarah, Dinah + GenreJazz + KindAAC audio file + Size4766186 + Total Time198180 + Disc Number1 + Disc Count16 + Track Number11 + Track Count16 + Year1999 + Date Modified2006-08-07T09:09:10Z + Date Added2009-10-03T14:58:58Z + Bit Rate192 + Sample Rate44100 + Normalization1266 + Compilation + Artwork Count1 + Persistent IDF7801E10DC0FD415 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/4%20By%204%20-%20The%20Ladies%20-%20Ella,%20Billie,%20Sarah,%20Dinah/1-11%20Lover%20Man.m4a + File Folder Count4 + Library Folder Count1 + + 5745 + + Track ID5745 + NameLush Life + ArtistSarah Vaughan + Album4 By 4 - The Ladies - Ella, Billie, Sarah, Dinah + GenreJazz + KindAAC audio file + Size5852926 + Total Time243715 + Disc Number1 + Disc Count16 + Track Number12 + Track Count16 + Year1999 + Date Modified2006-08-07T09:09:08Z + Date Added2009-10-03T14:58:58Z + Bit Rate192 + Sample Rate44100 + Normalization1812 + Compilation + Artwork Count1 + Persistent IDDE38DBBB679E95F9 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/4%20By%204%20-%20The%20Ladies%20-%20Ella,%20Billie,%20Sarah,%20Dinah/1-12%20Lush%20Life.m4a + File Folder Count4 + Library Folder Count1 + + 5747 + + Track ID5747 + NameThis Bitter Earth + ArtistDinah Washington + Album4 By 4 - The Ladies - Ella, Billie, Sarah, Dinah + GenreJazz + KindAAC audio file + Size3534166 + Total Time147723 + Disc Number1 + Disc Count16 + Track Number13 + Track Count16 + Year1999 + Date Modified2006-08-07T09:09:08Z + Date Added2009-10-03T14:58:58Z + Bit Rate192 + Sample Rate44100 + Normalization3930 + Compilation + Artwork Count1 + Persistent ID9C0D55EA35B9665A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/4%20By%204%20-%20The%20Ladies%20-%20Ella,%20Billie,%20Sarah,%20Dinah/1-13%20This%20Bitter%20Earth.m4a + File Folder Count4 + Library Folder Count1 + + 5749 + + Track ID5749 + NameUnforgettable + ArtistDinah Washington + Album4 By 4 - The Ladies - Ella, Billie, Sarah, Dinah + GenreJazz + KindAAC audio file + Size3915939 + Total Time162886 + Disc Number1 + Disc Count16 + Track Number14 + Track Count16 + Year1999 + Date Modified2006-08-07T09:09:08Z + Date Added2009-10-03T14:58:58Z + Bit Rate192 + Sample Rate44100 + Normalization2889 + Compilation + Artwork Count1 + Persistent IDC77B0348F4503E6A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/4%20By%204%20-%20The%20Ladies%20-%20Ella,%20Billie,%20Sarah,%20Dinah/1-14%20Unforgettable.m4a + File Folder Count4 + Library Folder Count1 + + 5751 + + Track ID5751 + NameMad About the Boy + ArtistDinah Washington + Album4 By 4 - The Ladies - Ella, Billie, Sarah, Dinah + GenreJazz + KindAAC audio file + Size4322586 + Total Time179163 + Disc Number1 + Disc Count16 + Track Number15 + Track Count16 + Year1999 + Date Modified2006-08-07T09:09:08Z + Date Added2009-10-03T14:58:59Z + Bit Rate192 + Sample Rate44100 + Normalization3755 + Compilation + Artwork Count1 + Persistent IDB04E8095C75F7D83 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/4%20By%204%20-%20The%20Ladies%20-%20Ella,%20Billie,%20Sarah,%20Dinah/1-15%20Mad%20About%20the%20Boy.m4a + File Folder Count4 + Library Folder Count1 + + 5753 + + Track ID5753 + NameWhat A Differance A Day Made + ArtistDinah Washington + Album4 By 4 - The Ladies - Ella, Billie, Sarah, Dinah + GenreJazz + KindAAC audio file + Size3591295 + Total Time147654 + Disc Number1 + Disc Count16 + Track Number16 + Track Count16 + Year1999 + Date Modified2006-08-07T09:09:08Z + Date Added2009-10-03T14:58:59Z + Bit Rate192 + Sample Rate44100 + Normalization1252 + Compilation + Artwork Count1 + Persistent IDE4B4D2D0354C0222 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/4%20By%204%20-%20The%20Ladies%20-%20Ella,%20Billie,%20Sarah,%20Dinah/1-16%20What%20A%20Differance%20A%20Day%20Made.m4a + File Folder Count4 + Library Folder Count1 + + 8437 + + Track ID8437 + NameTamacun + ArtistRodrigo Y Gabriela + Album ArtistRodrigo y Gabriela + ComposerRodrigo Y Gabriela + AlbumRodrigo Y Gabriela + GenreJazz + KindAAC audio file + Size5273539 + Total Time205800 + Disc Number1 + Disc Count1 + Track Number1 + Track Count9 + Year2006 + Date Modified2011-06-21T02:13:49Z + Date Added2011-06-21T02:23:40Z + Bit Rate192 + Sample Rate44100 + Play Count2 + Play Date3403623282 + Play Date UTC2011-11-08T13:24:42Z + Skip Count1 + Skip Date2011-10-21T12:21:16Z + Normalization4338 + Artwork Count1 + Persistent ID793E09AC5E50E5D8 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rodrigo%20y%20Gabriela/Rodrigo%20Y%20Gabriela/01%20Tamacun.m4a + File Folder Count4 + Library Folder Count1 + + 8439 + + Track ID8439 + NameDiablo Rojo + ArtistRodrigo Y Gabriela + Album ArtistRodrigo y Gabriela + ComposerRodrigo Y Gabriela + AlbumRodrigo Y Gabriela + GenreJazz + KindAAC audio file + Size7557131 + Total Time296800 + Disc Number1 + Disc Count1 + Track Number2 + Track Count9 + Year2006 + Date Modified2011-06-21T02:16:34Z + Date Added2011-06-21T02:23:40Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3402407506 + Play Date UTC2011-10-25T11:41:46Z + Skip Count3 + Skip Date2011-10-27T11:19:19Z + Normalization3352 + Artwork Count1 + Persistent IDDCE9A6C1FFBE3F7B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rodrigo%20y%20Gabriela/Rodrigo%20Y%20Gabriela/02%20Diablo%20Rojo.m4a + File Folder Count4 + Library Folder Count1 + + 8441 + + Track ID8441 + NameVikingman + ArtistRodrigo Y Gabriela + Album ArtistRodrigo y Gabriela + ComposerRodrigo Y Gabriela + AlbumRodrigo Y Gabriela + GenreJazz + KindAAC audio file + Size6141565 + Total Time243320 + Disc Number1 + Disc Count1 + Track Number3 + Track Count9 + Year2006 + Date Modified2011-06-21T02:11:49Z + Date Added2011-06-21T02:23:41Z + Bit Rate192 + Sample Rate44100 + Play Count3 + Play Date3403627537 + Play Date UTC2011-11-08T14:35:37Z + Skip Count3 + Skip Date2011-10-27T11:19:12Z + Normalization3659 + Artwork Count1 + Persistent IDAC15374D8359CE9C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rodrigo%20y%20Gabriela/Rodrigo%20Y%20Gabriela/03%20Vikingman.m4a + File Folder Count4 + Library Folder Count1 + + 8443 + + Track ID8443 + NameSatori + ArtistRodrigo Y Gabriela + Album ArtistRodrigo y Gabriela + ComposerRodrigo Y Gabriela + AlbumRodrigo Y Gabriela + GenreJazz + KindAAC audio file + Size7584629 + Total Time304400 + Disc Number1 + Disc Count1 + Track Number4 + Track Count9 + Year2006 + Date Modified2011-06-21T02:12:26Z + Date Added2011-06-21T02:23:41Z + Bit Rate192 + Sample Rate44100 + Play Count5 + Play Date3403628126 + Play Date UTC2011-11-08T14:45:26Z + Skip Count2 + Skip Date2011-10-27T11:19:31Z + Normalization1776 + Artwork Count1 + Persistent ID8C4B664170B0AF64 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rodrigo%20y%20Gabriela/Rodrigo%20Y%20Gabriela/04%20Satori.m4a + File Folder Count4 + Library Folder Count1 + + 8445 + + Track ID8445 + NameIxtapa + ArtistRodrigo Y Gabriela + Album ArtistRodrigo y Gabriela + ComposerRodrigo Y Gabriela + AlbumRodrigo Y Gabriela + GenreJazz + KindAAC audio file + Size7913274 + Total Time313973 + Disc Number1 + Disc Count1 + Track Number5 + Track Count9 + Year2006 + Date Modified2011-06-21T02:15:57Z + Date Added2011-06-21T02:23:41Z + Bit Rate192 + Sample Rate44100 + Play Count8 + Play Date3402408368 + Play Date UTC2011-10-25T11:56:08Z + Skip Count2 + Skip Date2011-10-25T10:35:32Z + Normalization3094 + Artwork Count1 + Persistent ID16F8F7AD3C2AD0DB + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rodrigo%20y%20Gabriela/Rodrigo%20Y%20Gabriela/05%20Ixtapa.m4a + File Folder Count4 + Library Folder Count1 + + 8447 + + Track ID8447 + NameStairway To Heaven + ArtistRodrigo Y Gabriela + Album ArtistRodrigo y Gabriela + ComposerJimmy Page.Robert Plant + AlbumRodrigo Y Gabriela + GenreJazz + KindAAC audio file + Size7282326 + Total Time284200 + Disc Number1 + Disc Count1 + Track Number6 + Track Count9 + Year2006 + Date Modified2011-06-21T02:15:18Z + Date Added2011-06-21T02:23:41Z + Bit Rate192 + Sample Rate44100 + Play Count10 + Play Date3430146066 + Play Date UTC2012-09-10T12:51:06Z + Normalization1615 + Artwork Count1 + Persistent ID4D45998A35B14ACB + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rodrigo%20y%20Gabriela/Rodrigo%20Y%20Gabriela/06%20Stairway%20To%20Heaven.m4a + File Folder Count4 + Library Folder Count1 + + 8449 + + Track ID8449 + NameOrion + ArtistRodrigo Y Gabriela + Album ArtistRodrigo y Gabriela + ComposerCliford Lee Burton,James Alan Hetfield+Lars Ulrich + AlbumRodrigo Y Gabriela + GenreJazz + KindAAC audio file + Size11736010 + Total Time464000 + Disc Number1 + Disc Count1 + Track Number7 + Track Count9 + Year2006 + Date Modified2011-06-21T02:14:44Z + Date Added2011-06-21T02:23:41Z + Bit Rate192 + Sample Rate44100 + Play Count9 + Play Date3430146530 + Play Date UTC2012-09-10T12:58:50Z + Skip Count1 + Skip Date2011-10-19T12:08:33Z + Normalization3105 + Artwork Count1 + Persistent ID2BA34FDE67F8C1D6 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rodrigo%20y%20Gabriela/Rodrigo%20Y%20Gabriela/07%20Orion.m4a + File Folder Count4 + Library Folder Count1 + + 8451 + + Track ID8451 + NameJuan Loco + ArtistRodrigo Y Gabriela + Album ArtistRodrigo y Gabriela + ComposerRodrigo Y Gabriela + AlbumRodrigo Y Gabriela + GenreJazz + KindAAC audio file + Size5299008 + Total Time207413 + Disc Number1 + Disc Count1 + Track Number8 + Track Count9 + Year2006 + Date Modified2011-06-21T02:12:51Z + Date Added2011-06-21T02:23:41Z + Bit Rate192 + Sample Rate44100 + Play Count8 + Play Date3430146738 + Play Date UTC2012-09-10T13:02:18Z + Skip Count2 + Skip Date2011-10-27T11:19:28Z + Normalization3852 + Artwork Count1 + Persistent ID1F5B47824495483D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rodrigo%20y%20Gabriela/Rodrigo%20Y%20Gabriela/08%20Juan%20Loco.m4a + File Folder Count4 + Library Folder Count1 + + 8453 + + Track ID8453 + NamePPA + ArtistRodrigo Y Gabriela + Album ArtistRodrigo y Gabriela + ComposerRodrigo Y Gabriela + AlbumRodrigo Y Gabriela + GenreJazz + KindAAC audio file + Size6589124 + Total Time252346 + Disc Number1 + Disc Count1 + Track Number9 + Track Count9 + Year2006 + Date Modified2011-06-21T02:13:24Z + Date Added2011-06-21T02:23:42Z + Bit Rate192 + Sample Rate44100 + Play Count2 + Play Date3427389410 + Play Date UTC2012-08-09T15:06:50Z + Skip Count3 + Skip Date2011-10-27T10:55:51Z + Normalization3555 + Artwork Count1 + Persistent ID7A0D0B0D474CFD59 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rodrigo%20y%20Gabriela/Rodrigo%20Y%20Gabriela/09%20PPA.m4a + File Folder Count4 + Library Folder Count1 + + + Playlists + + + Namechirag-1 + Playlist ID20111 + Playlist Persistent ID16F77129EA5C7E62 + All Items + Playlist Items + + + Track ID4931 + + + Track ID4933 + + + Track ID4935 + + + Track ID4937 + + + Track ID4939 + + + Track ID4941 + + + Track ID4943 + + + Track ID4945 + + + Track ID4947 + + + Track ID4949 + + + Track ID4951 + + + Track ID4953 + + + Track ID4955 + + + Track ID3593 + + + Track ID3595 + + + Track ID3597 + + + Track ID3599 + + + Track ID3391 + + + Track ID3393 + + + Track ID3395 + + + Track ID3397 + + + Track ID3399 + + + Track ID3401 + + + Track ID3403 + + + Track ID3405 + + + Track ID3083 + + + Track ID3085 + + + Track ID3087 + + + Track ID3089 + + + Track ID3091 + + + Track ID3093 + + + Track ID3095 + + + Track ID3097 + + + Track ID3099 + + + Track ID3101 + + + Track ID3103 + + + Track ID3105 + + + Track ID3107 + + + Track ID3109 + + + Track ID4053 + + + Track ID4055 + + + Track ID4057 + + + Track ID4059 + + + Track ID4061 + + + Track ID4063 + + + Track ID4065 + + + Track ID4067 + + + Track ID4069 + + + Track ID4071 + + + Track ID3261 + + + Track ID3263 + + + Track ID3265 + + + Track ID3267 + + + Track ID3269 + + + Track ID3271 + + + Track ID3273 + + + Track ID3275 + + + Track ID3277 + + + Track ID3279 + + + Track ID3281 + + + Track ID3283 + + + Track ID3285 + + + Track ID8437 + + + Track ID8439 + + + Track ID8441 + + + Track ID8443 + + + Track ID8445 + + + Track ID8447 + + + Track ID8449 + + + Track ID8451 + + + Track ID8453 + + + Track ID5723 + + + Track ID5725 + + + Track ID5727 + + + Track ID5729 + + + Track ID5731 + + + Track ID5733 + + + Track ID5735 + + + Track ID5737 + + + Track ID5739 + + + Track ID5741 + + + Track ID5743 + + + Track ID5745 + + + Track ID5747 + + + Track ID5749 + + + Track ID5751 + + + Track ID5753 + + + Track ID3621 + + + Track ID3623 + + + Track ID3625 + + + Track ID3627 + + + Track ID3629 + + + Track ID3631 + + + Track ID3633 + + + Track ID3635 + + + Track ID3637 + + + Track ID3639 + + + Track ID3641 + + + Track ID3643 + + + Track ID3645 + + + Track ID3647 + + + Track ID3649 + + + + + + diff --git a/GeekyProjects/C1_ParsingMusicList/pl2.xml b/GeekyProjects/C1_ParsingMusicList/pl2.xml new file mode 100644 index 0000000..cd4ec5b --- /dev/null +++ b/GeekyProjects/C1_ParsingMusicList/pl2.xml @@ -0,0 +1,4120 @@ + + + + + Major Version1 + Minor Version1 + Date2012-08-25T02:36:44Z + Application Version10.6.3 + Features5 + Show Content Ratings + Music Folderfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/ + Library Persistent ID5E7B8CC1F12D8073 + Tracks + + 2266 + + Track ID2266 + NameNavaragamalika Varnam + ArtistString Quartet + AlbumResonance + GenreWorld + KindAAC audio file + Size6304012 + Total Time262035 + Track Number1 + Track Count9 + Year2001 + Date Modified2006-07-30T08:38:34Z + Date Added2009-10-03T14:52:49Z + Bit Rate192 + Sample Rate44100 + Normalization1175 + Artwork Count1 + Persistent ID77E144A95A9E661C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/String%20Quartet/Resonance/01%20Navaragamalika%20Varnam.m4a + File Folder Count4 + Library Folder Count1 + + 2268 + + Track ID2268 + NamePalukavademira + ArtistString Quartet + AlbumResonance + GenreWorld + KindAAC audio file + Size5494285 + Total Time229016 + Track Number2 + Track Count9 + Year2001 + Date Modified2006-07-30T08:38:34Z + Date Added2009-10-03T14:52:49Z + Bit Rate192 + Sample Rate44100 + Normalization1293 + Artwork Count1 + Persistent ID99EB841BC15BA780 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/String%20Quartet/Resonance/02%20Palukavademira.m4a + File Folder Count4 + Library Folder Count1 + + 2270 + + Track ID2270 + NameEsane + ArtistString Quartet + AlbumResonance + GenreWorld + KindAAC audio file + Size9089233 + Total Time376835 + Track Number3 + Track Count9 + Year2001 + Date Modified2006-07-30T08:38:34Z + Date Added2009-10-03T14:52:49Z + Bit Rate192 + Sample Rate44100 + Normalization768 + Artwork Count1 + Persistent IDD95A75999346C1BE + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/String%20Quartet/Resonance/03%20Esane.m4a + File Folder Count4 + Library Folder Count1 + + 2272 + + Track ID2272 + NameRaghuvamsa + ArtistString Quartet + AlbumResonance + GenreWorld + KindAAC audio file + Size11988996 + Total Time496928 + Track Number4 + Track Count9 + Year2001 + Date Modified2006-07-30T08:38:34Z + Date Added2009-10-03T14:52:49Z + Bit Rate192 + Sample Rate44100 + Normalization872 + Artwork Count1 + Persistent IDB6F358356DFF9E31 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/String%20Quartet/Resonance/04%20Raghuvamsa.m4a + File Folder Count4 + Library Folder Count1 + + 2274 + + Track ID2274 + NameAmba Kamakshi + ArtistString Quartet + AlbumResonance + GenreWorld + KindAAC audio file + Size8654457 + Total Time360209 + Track Number5 + Track Count9 + Year2001 + Date Modified2006-07-30T08:38:34Z + Date Added2009-10-03T14:52:49Z + Bit Rate192 + Sample Rate44100 + Normalization1383 + Artwork Count1 + Persistent ID300B92928FF380F0 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/String%20Quartet/Resonance/05%20Amba%20Kamakshi.m4a + File Folder Count4 + Library Folder Count1 + + 2276 + + Track ID2276 + NameMokshamu + ArtistString Quartet + AlbumResonance + GenreWorld + KindAAC audio file + Size9264808 + Total Time384056 + Track Number6 + Track Count9 + Year2001 + Date Modified2006-07-30T08:38:34Z + Date Added2009-10-03T14:52:49Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3340458300 + Play Date UTC2009-11-07T11:35:00Z + Normalization1120 + Artwork Count1 + Persistent ID4AA9D0B5C479CA4C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/String%20Quartet/Resonance/06%20Mokshamu.m4a + File Folder Count4 + Library Folder Count1 + + 2278 + + Track ID2278 + NameSara Sara Samarai + ArtistString Quartet + AlbumResonance + GenreWorld + KindAAC audio file + Size4045660 + Total Time168807 + Track Number7 + Track Count9 + Year2001 + Date Modified2006-07-30T08:38:34Z + Date Added2009-10-03T14:52:49Z + Bit Rate192 + Sample Rate44100 + Normalization1000 + Artwork Count1 + Persistent IDB57999E06DD6A4F4 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/String%20Quartet/Resonance/07%20Sara%20Sara%20Samarai.m4a + File Folder Count4 + Library Folder Count1 + + 2280 + + Track ID2280 + NameMohanalahari + ArtistString Quartet + AlbumResonance + GenreWorld + KindAAC audio file + Size13511868 + Total Time560342 + Track Number8 + Track Count9 + Year2001 + Date Modified2006-07-30T08:38:34Z + Date Added2009-10-03T14:52:49Z + Bit Rate192 + Sample Rate44100 + Normalization784 + Artwork Count1 + Persistent ID7D2802E18E50803D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/String%20Quartet/Resonance/08%20Mohanalahari.m4a + File Folder Count4 + Library Folder Count1 + + 2282 + + Track ID2282 + NameKrishna Nee Begane + ArtistString Quartet + AlbumResonance + GenreWorld + KindAAC audio file + Size10506998 + Total Time433538 + Track Number9 + Track Count9 + Year2001 + Date Modified2006-07-30T08:38:36Z + Date Added2009-10-03T14:52:49Z + Bit Rate192 + Sample Rate44100 + Normalization1259 + Artwork Count1 + Persistent IDFA60481B99EE702E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/String%20Quartet/Resonance/09%20Krishna%20Nee%20Begane.m4a + File Folder Count4 + Library Folder Count1 + + 3556 + + Track ID3556 + NameSayonee + ArtistJunoon + AlbumAzadi + GenreWorld + KindAAC audio file + Size7416200 + Total Time305526 + Track Number1 + Track Count15 + Date Modified2006-08-13T06:39:50Z + Date Added2009-10-03T14:55:53Z + Bit Rate192 + Sample Rate44100 + Normalization918 + Artwork Count1 + Persistent IDE00D1FC101EF9DAF + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Junoon/Azadi/01%20Sayonee.m4a + File Folder Count4 + Library Folder Count1 + + 3558 + + Track ID3558 + NameMeri Awaaz Suno + ArtistJunoon + AlbumAzadi + GenreWorld + KindAAC audio file + Size8072232 + Total Time332647 + Track Number2 + Track Count15 + Date Modified2006-08-13T06:39:46Z + Date Added2009-10-03T14:55:53Z + Bit Rate192 + Sample Rate44100 + Normalization1014 + Artwork Count1 + Persistent IDDE82B341A348847D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Junoon/Azadi/02%20Meri%20Awaaz%20Suno.m4a + File Folder Count4 + Library Folder Count1 + + 3560 + + Track ID3560 + NameKhudi + ArtistJunoon + AlbumAzadi + GenreWorld + KindAAC audio file + Size6058236 + Total Time249311 + Track Number3 + Track Count15 + Date Modified2006-08-13T06:39:42Z + Date Added2009-10-03T14:55:54Z + Bit Rate192 + Sample Rate44100 + Normalization1092 + Artwork Count1 + Persistent ID6AB6983D144D3680 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Junoon/Azadi/03%20Khudi.m4a + File Folder Count4 + Library Folder Count1 + + 3562 + + Track ID3562 + NameYaar Bina + ArtistJunoon + AlbumAzadi + GenreWorld + KindAAC audio file + Size5526756 + Total Time227182 + Track Number4 + Track Count15 + Date Modified2006-08-13T06:39:40Z + Date Added2009-10-03T14:55:54Z + Bit Rate192 + Sample Rate44100 + Normalization1059 + Artwork Count1 + Persistent IDA93B567A32741520 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Junoon/Azadi/04%20Yaar%20Bina.m4a + File Folder Count4 + Library Folder Count1 + + 3564 + + Track ID3564 + NameMukh Gae + ArtistJunoon + AlbumAzadi + GenreWorld + KindAAC audio file + Size8098433 + Total Time333715 + Track Number5 + Track Count15 + Date Modified2006-08-13T06:39:38Z + Date Added2009-10-03T14:55:54Z + Bit Rate192 + Sample Rate44100 + Normalization924 + Artwork Count1 + Persistent ID687CE56748388723 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Junoon/Azadi/05%20Mukh%20Gae.m4a + File Folder Count4 + Library Folder Count1 + + 3566 + + Track ID3566 + NameHeer + ArtistJunoon + AlbumAzadi + GenreWorld + KindAAC audio file + Size7062398 + Total Time290898 + Track Number6 + Track Count15 + Date Modified2006-08-13T06:39:34Z + Date Added2009-10-03T14:55:54Z + Bit Rate192 + Sample Rate44100 + Normalization943 + Artwork Count1 + Persistent ID43AB15622BF10A3E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Junoon/Azadi/06%20Heer.m4a + File Folder Count4 + Library Folder Count1 + + 3568 + + Track ID3568 + NameWahda Hoo + ArtistJunoon + AlbumAzadi + GenreWorld + KindAAC audio file + Size7087509 + Total Time291943 + Track Number7 + Track Count15 + Date Modified2006-08-13T06:39:30Z + Date Added2009-10-03T14:55:54Z + Bit Rate192 + Sample Rate44100 + Normalization899 + Artwork Count1 + Persistent IDCF4A02ACE1A2B1F3 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Junoon/Azadi/07%20Wahda%20Hoo.m4a + File Folder Count4 + Library Folder Count1 + + 3570 + + Track ID3570 + NameKyun Parishan + ArtistJunoon + AlbumAzadi + GenreWorld + KindAAC audio file + Size5737137 + Total Time235936 + Track Number8 + Track Count15 + Date Modified2006-08-13T06:39:28Z + Date Added2009-10-03T14:55:54Z + Bit Rate192 + Sample Rate44100 + Normalization963 + Artwork Count1 + Persistent ID1293852C7E2937CB + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Junoon/Azadi/08%20Kyun%20Parishan.m4a + File Folder Count4 + Library Folder Count1 + + 3572 + + Track ID3572 + NameMahiwal + ArtistJunoon + AlbumAzadi + GenreWorld + KindAAC audio file + Size8754082 + Total Time360813 + Track Number9 + Track Count15 + Date Modified2006-08-13T06:39:24Z + Date Added2009-10-03T14:55:54Z + Bit Rate192 + Sample Rate44100 + Normalization1030 + Artwork Count1 + Persistent ID0C762D78D78C7DB1 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Junoon/Azadi/09%20Mahiwal.m4a + File Folder Count4 + Library Folder Count1 + + 3574 + + Track ID3574 + NameKisne Suna + ArtistJunoon + AlbumAzadi + GenreWorld + KindAAC audio file + Size5763699 + Total Time237051 + Track Number10 + Track Count15 + Date Modified2006-08-13T06:39:20Z + Date Added2009-10-03T14:55:55Z + Bit Rate192 + Sample Rate44100 + Normalization909 + Artwork Count1 + Persistent IDE0CB4CF446887C04 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Junoon/Azadi/10%20Kisne%20Suna.m4a + File Folder Count4 + Library Folder Count1 + + 3576 + + Track ID3576 + NameLal Meri Pat + ArtistJunoon + AlbumAzadi + GenreWorld + KindAAC audio file + Size7748353 + Total Time319249 + Track Number11 + Track Count15 + Date Modified2006-08-13T06:39:18Z + Date Added2009-10-03T14:55:55Z + Bit Rate192 + Sample Rate44100 + Normalization906 + Artwork Count1 + Persistent ID6514CDA229D09DBD + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Junoon/Azadi/11%20Lal%20Meri%20Pat.m4a + File Folder Count4 + Library Folder Count1 + + 3578 + + Track ID3578 + NameDil Nahin Lag Raha + ArtistJunoon + AlbumAzadi + GenreWorld + KindAAC audio file + Size5734991 + Total Time235843 + Track Number12 + Track Count15 + Date Modified2006-08-13T06:39:14Z + Date Added2009-10-03T14:55:55Z + Bit Rate192 + Sample Rate44100 + Normalization949 + Artwork Count1 + Persistent ID18C965876072104E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Junoon/Azadi/12%20Dil%20Nahin%20Lag%20Raha.m4a + File Folder Count4 + Library Folder Count1 + + 3580 + + Track ID3580 + NameLoishay + ArtistJunoon + AlbumAzadi + GenreWorld + KindAAC audio file + Size5300292 + Total Time217755 + Track Number13 + Track Count15 + Date Modified2006-08-13T06:39:12Z + Date Added2009-10-03T14:55:55Z + Bit Rate192 + Sample Rate44100 + Normalization910 + Artwork Count1 + Persistent ID7E543F949F7465D2 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Junoon/Azadi/13%20Loishay.m4a + File Folder Count4 + Library Folder Count1 + + 3582 + + Track ID3582 + NameSaeein Alaap + ArtistJunoon + AlbumAzadi + GenreWorld + KindAAC audio file + Size1325568 + Total Time53009 + Track Number14 + Track Count15 + Date Modified2006-08-13T06:39:10Z + Date Added2009-10-03T14:55:55Z + Bit Rate192 + Sample Rate44100 + Normalization1207 + Artwork Count1 + Persistent ID5EB968A945AE2176 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Junoon/Azadi/14%20Saeein%20Alaap.m4a + File Folder Count4 + Library Folder Count1 + + 3584 + + Track ID3584 + NameSaeein + ArtistJunoon + AlbumAzadi + GenreWorld + KindAAC audio file + Size6784242 + Total Time279427 + Track Number15 + Track Count15 + Date Modified2006-08-13T06:39:10Z + Date Added2009-10-03T14:55:55Z + Bit Rate192 + Sample Rate44100 + Normalization877 + Artwork Count1 + Persistent ID2F31B1864638D709 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Junoon/Azadi/15%20Saeein.m4a + File Folder Count4 + Library Folder Count1 + + 3622 + + Track ID3622 + NameMy Favorite Things + ArtistJohn Coltrane + ComposerRichard Rodgers & Oscar Hammerstein + AlbumMy Favorite Things + GenreJazz + KindAAC audio file + Size19857464 + Total Time824005 + Disc Number1 + Disc Count1 + Track Number1 + Track Count4 + Year1961 + Date Modified2006-07-29T02:14:42Z + Date Added2009-10-03T14:56:00Z + Bit Rate192 + Sample Rate44100 + Play Count3 + Play Date3421814491 + Play Date UTC2012-06-06T02:31:31Z + Normalization986 + Artwork Count1 + Persistent ID9D22C3369D79BDD6 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/John%20Coltrane/My%20Favorite%20Things/01%20My%20Favorite%20Things.m4a + File Folder Count4 + Library Folder Count1 + + 3624 + + Track ID3624 + NameEverytime We Say Goodbye + ArtistJohn Coltrane + ComposerCole Porter + AlbumMy Favorite Things + GenreJazz + KindAAC audio file + Size8224551 + Total Time343212 + Disc Number1 + Disc Count1 + Track Number2 + Track Count4 + Year1961 + Date Modified2006-07-29T02:14:42Z + Date Added2009-10-03T14:56:00Z + Bit Rate192 + Sample Rate44100 + Normalization501 + Artwork Count1 + Persistent ID66630F00EAF672CA + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/John%20Coltrane/My%20Favorite%20Things/02%20Everytime%20We%20Say%20Goodbye.m4a + File Folder Count4 + Library Folder Count1 + + 3626 + + Track ID3626 + NameSummertime + ArtistJohn Coltrane + ComposerDu Bose Heyward & George Gershwin + AlbumMy Favorite Things + GenreJazz + KindAAC audio file + Size16752341 + Total Time695668 + Disc Number1 + Disc Count1 + Track Number3 + Track Count4 + Year1961 + Date Modified2006-07-29T02:14:42Z + Date Added2009-10-03T14:56:00Z + Bit Rate192 + Sample Rate44100 + Normalization1184 + Artwork Count1 + Persistent IDC9F6ED7879179675 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/John%20Coltrane/My%20Favorite%20Things/03%20Summertime.m4a + File Folder Count4 + Library Folder Count1 + + 3628 + + Track ID3628 + NameBut Not For Me + ArtistJohn Coltrane + ComposerGeorge & Ira Gershwin + AlbumMy Favorite Things + GenreJazz + KindAAC audio file + Size13916857 + Total Time574483 + Disc Number1 + Disc Count1 + Track Number4 + Track Count4 + Year1961 + Date Modified2006-07-29T02:14:44Z + Date Added2009-10-03T14:56:00Z + Bit Rate192 + Sample Rate44100 + Normalization972 + Artwork Count1 + Persistent IDB80A79285431AB29 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/John%20Coltrane/My%20Favorite%20Things/04%20But%20Not%20For%20Me.m4a + File Folder Count4 + Library Folder Count1 + + 4278 + + Track ID4278 + NameGod Shuffled His Feet + ArtistCrash Test Dummies + ComposerBrad Roberts + AlbumGod Shuffled His Feet + GenreAlternative & Punk + KindAAC audio file + Size7538532 + Total Time310495 + Disc Number1 + Disc Count1 + Track Number1 + Track Count12 + Year1993 + Date Modified2006-07-27T16:19:00Z + Date Added2009-10-03T14:57:13Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3360253487 + Play Date UTC2010-06-24T14:14:47Z + Normalization3377 + Artwork Count1 + Persistent ID84AB5B8C75DA415F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Crash%20Test%20Dummies/God%20Shuffled%20His%20Feet/01%20God%20Shuffled%20His%20Feet.m4a + File Folder Count4 + Library Folder Count1 + + 4280 + + Track ID4280 + NameAfternoons And Coffeespoons + ArtistCrash Test Dummies + ComposerBrad Roberts + AlbumGod Shuffled His Feet + GenreAlternative & Punk + KindAAC audio file + Size5754546 + Total Time235936 + Disc Number1 + Disc Count1 + Track Number2 + Track Count12 + Year1993 + Date Modified2006-07-27T16:19:00Z + Date Added2009-10-03T14:57:14Z + Bit Rate192 + Sample Rate44100 + Normalization3204 + Artwork Count1 + Persistent IDF8D901F3D02C90AA + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Crash%20Test%20Dummies/God%20Shuffled%20His%20Feet/02%20Afternoons%20And%20Coffeespoons.m4a + File Folder Count4 + Library Folder Count1 + + 4282 + + Track ID4282 + NameMmm Mmm Mmm Mmm + ArtistCrash Test Dummies + ComposerBrad Roberts + AlbumGod Shuffled His Feet + GenreAlternative & Punk + KindAAC audio file + Size5736923 + Total Time235193 + Disc Number1 + Disc Count1 + Track Number3 + Track Count12 + Year1993 + Date Modified2006-07-27T16:19:00Z + Date Added2009-10-03T14:57:14Z + Bit Rate192 + Sample Rate44100 + Normalization2251 + Artwork Count1 + Persistent ID2A017CA67C79A3DE + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Crash%20Test%20Dummies/God%20Shuffled%20His%20Feet/03%20Mmm%20Mmm%20Mmm%20Mmm.m4a + File Folder Count4 + Library Folder Count1 + + 4284 + + Track ID4284 + NameIn The Days Of The Caveman + ArtistCrash Test Dummies + ComposerBrad Roberts + AlbumGod Shuffled His Feet + GenreAlternative & Punk + KindAAC audio file + Size5383706 + Total Time220495 + Disc Number1 + Disc Count1 + Track Number4 + Track Count12 + Year1993 + Date Modified2006-07-27T16:19:02Z + Date Added2009-10-03T14:57:14Z + Bit Rate192 + Sample Rate44100 + Normalization2887 + Artwork Count1 + Persistent ID24BE71F31B440151 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Crash%20Test%20Dummies/God%20Shuffled%20His%20Feet/04%20In%20The%20Days%20Of%20The%20Caveman.m4a + File Folder Count4 + Library Folder Count1 + + 4286 + + Track ID4286 + NameSwimming In Your Ocean + ArtistCrash Test Dummies + ComposerBrad Roberts + AlbumGod Shuffled His Feet + GenreAlternative & Punk + KindAAC audio file + Size5589911 + Total Time229086 + Disc Number1 + Disc Count1 + Track Number5 + Track Count12 + Year1993 + Date Modified2006-07-27T16:19:02Z + Date Added2009-10-03T14:57:14Z + Bit Rate192 + Sample Rate44100 + Normalization2487 + Artwork Count1 + Persistent ID6D0DB2951E782900 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Crash%20Test%20Dummies/God%20Shuffled%20His%20Feet/05%20Swimming%20In%20Your%20Ocean.m4a + File Folder Count4 + Library Folder Count1 + + 4288 + + Track ID4288 + NameHere I Stand Before Me + ArtistCrash Test Dummies + ComposerBrad Roberts + AlbumGod Shuffled His Feet + GenreAlternative & Punk + KindAAC audio file + Size4570558 + Total Time186640 + Disc Number1 + Disc Count1 + Track Number6 + Track Count12 + Year1993 + Date Modified2006-07-27T16:19:02Z + Date Added2009-10-03T14:57:14Z + Bit Rate192 + Sample Rate44100 + Normalization5096 + Artwork Count1 + Persistent ID6245505E2DE84B12 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Crash%20Test%20Dummies/God%20Shuffled%20His%20Feet/06%20Here%20I%20Stand%20Before%20Me.m4a + File Folder Count4 + Library Folder Count1 + + 4290 + + Track ID4290 + NameI Think I'll Disappear Now + ArtistCrash Test Dummies + ComposerBrad Roberts + AlbumGod Shuffled His Feet + GenreAlternative & Punk + KindAAC audio file + Size7109370 + Total Time292152 + Disc Number1 + Disc Count1 + Track Number7 + Track Count12 + Year1993 + Date Modified2006-07-27T16:19:04Z + Date Added2009-10-03T14:57:14Z + Bit Rate192 + Sample Rate44100 + Normalization3863 + Artwork Count1 + Persistent ID7B945259794F9A44 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Crash%20Test%20Dummies/God%20Shuffled%20His%20Feet/07%20I%20Think%20I'll%20Disappear%20Now.m4a + File Folder Count4 + Library Folder Count1 + + 4292 + + Track ID4292 + NameHow Does A Duck Know + ArtistCrash Test Dummies + ComposerBrad Roberts + AlbumGod Shuffled His Feet + GenreAlternative & Punk + KindAAC audio file + Size5430269 + Total Time222445 + Disc Number1 + Disc Count1 + Track Number8 + Track Count12 + Year1993 + Date Modified2006-07-27T16:19:04Z + Date Added2009-10-03T14:57:14Z + Bit Rate192 + Sample Rate44100 + Normalization2932 + Artwork Count1 + Persistent ID7D386A553B83E41C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Crash%20Test%20Dummies/God%20Shuffled%20His%20Feet/08%20How%20Does%20A%20Duck%20Know.m4a + File Folder Count4 + Library Folder Count1 + + 4294 + + Track ID4294 + NameWhen I Go Out With Artists + ArtistCrash Test Dummies + ComposerBrad Roberts + AlbumGod Shuffled His Feet + GenreAlternative & Punk + KindAAC audio file + Size5458917 + Total Time223653 + Disc Number1 + Disc Count1 + Track Number9 + Track Count12 + Year1993 + Date Modified2006-07-27T16:19:04Z + Date Added2009-10-03T14:57:14Z + Bit Rate192 + Sample Rate44100 + Normalization3785 + Artwork Count1 + Persistent ID1A56EB0BA1FEA778 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Crash%20Test%20Dummies/God%20Shuffled%20His%20Feet/09%20When%20I%20Go%20Out%20With%20Artists.m4a + File Folder Count4 + Library Folder Count1 + + 4296 + + Track ID4296 + NameThe Psychic + ArtistCrash Test Dummies + ComposerBrad Roberts + AlbumGod Shuffled His Feet + GenreAlternative & Punk + KindAAC audio file + Size5562106 + Total Time227948 + Disc Number1 + Disc Count1 + Track Number10 + Track Count12 + Year1993 + Date Modified2006-07-27T16:19:06Z + Date Added2009-10-03T14:57:15Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3427199693 + Play Date UTC2012-08-07T10:24:53Z + Normalization1255 + Artwork Count1 + Sort NamePsychic + Persistent IDC55BE6C9D5993C17 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Crash%20Test%20Dummies/God%20Shuffled%20His%20Feet/10%20The%20Psychic.m4a + File Folder Count4 + Library Folder Count1 + + 4298 + + Track ID4298 + NameTwo Knights And Maidens + ArtistCrash Test Dummies + ComposerBrad Roberts + AlbumGod Shuffled His Feet + GenreAlternative & Punk + KindAAC audio file + Size4998894 + Total Time204473 + Disc Number1 + Disc Count1 + Track Number11 + Track Count12 + Year1993 + Date Modified2006-07-27T16:19:06Z + Date Added2009-10-03T14:57:15Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3427199898 + Play Date UTC2012-08-07T10:28:18Z + Normalization2678 + Artwork Count1 + Persistent ID8247F6BB713BABF5 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Crash%20Test%20Dummies/God%20Shuffled%20His%20Feet/11%20Two%20Knights%20And%20Maidens.m4a + File Folder Count4 + Library Folder Count1 + + 4300 + + Track ID4300 + NameCrash Course + ArtistCrash Test Dummies + ComposerBrad Roberts + AlbumGod Shuffled His Feet + GenreAlternative & Punk + KindAAC audio file + Size2559127 + Total Time102909 + Disc Number1 + Disc Count1 + Track Number12 + Track Count12 + Year1993 + Date Modified2006-07-27T16:19:06Z + Date Added2009-10-03T14:57:15Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3427200001 + Play Date UTC2012-08-07T10:30:01Z + Normalization143 + Artwork Count1 + Persistent ID125C2AE46A81607B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Crash%20Test%20Dummies/God%20Shuffled%20His%20Feet/12%20Crash%20Course.m4a + File Folder Count4 + Library Folder Count1 + + 4416 + + Track ID4416 + NameIntroduction And Rondo Capriccioso, Op.28 + ArtistCamille Saint-Saëns + AlbumThe Magic Violin + GenreClassical + KindAAC audio file + Size12594717 + Total Time523678 + Disc Number1 + Track Number1 + Track Count15 + Date Modified2006-08-08T03:05:14Z + Date Added2009-10-03T14:57:24Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3361080929 + Play Date UTC2010-07-04T04:05:29Z + Normalization898 + Compilation + Artwork Count1 + Sort AlbumMagic Violin + Persistent IDD57A15C6BDC652F3 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Magic%20Violin/1-01%20Introduction%20And%20Rondo%20Capriccioso,%20Op.28.m4a + File Folder Count4 + Library Folder Count1 + + 4418 + + Track ID4418 + NameRomance For Violin And Orchestra, Op.26 + ArtistJohann Svendsen + AlbumThe Magic Violin + GenreClassical + KindAAC audio file + Size11390631 + Total Time473337 + Disc Number1 + Track Number2 + Track Count15 + Date Modified2006-08-08T03:05:14Z + Date Added2009-10-03T14:57:24Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3361081402 + Play Date UTC2010-07-04T04:13:22Z + Normalization871 + Compilation + Artwork Count1 + Sort AlbumMagic Violin + Persistent ID3026718D1D264477 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Magic%20Violin/1-02%20Romance%20For%20Violin%20And%20Orchestra,%20Op.26.m4a + File Folder Count4 + Library Folder Count1 + + 4420 + + Track ID4420 + NameLa Campanella: Rondo In b, Op.7 + ArtistNiccolò Paganini + AlbumThe Magic Violin + GenreClassical + KindAAC audio file + Size8710037 + Total Time363669 + Disc Number1 + Track Number3 + Track Count15 + Date Modified2006-08-08T03:05:14Z + Date Added2009-10-03T14:57:24Z + Bit Rate192 + Sample Rate44100 + Normalization1037 + Compilation + Artwork Count1 + Sort AlbumMagic Violin + Persistent ID8DFBE5948823D64F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Magic%20Violin/1-03%20La%20Campanella_%20Rondo%20In%20b,%20Op.7.m4a + File Folder Count4 + Library Folder Count1 + + 4422 + + Track ID4422 + NameSuite In D: Air + ArtistJohann Sebastian Bach + AlbumThe Magic Violin + GenreClassical + KindAAC audio file + Size5547965 + Total Time232685 + Disc Number1 + Track Number4 + Track Count15 + Date Modified2006-08-08T03:05:16Z + Date Added2009-10-03T14:57:24Z + Bit Rate192 + Sample Rate44100 + Normalization150 + Compilation + Artwork Count1 + Sort AlbumMagic Violin + Persistent ID4A5A34439CD31F30 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Magic%20Violin/1-04%20Suite%20In%20D_%20Air.m4a + File Folder Count4 + Library Folder Count1 + + 4424 + + Track ID4424 + NameMinuet In G + ArtistLudwig Van Beethoven + AlbumThe Magic Violin + GenreClassical + KindAAC audio file + Size3869297 + Total Time162700 + Disc Number1 + Track Number5 + Track Count15 + Date Modified2006-08-08T03:05:16Z + Date Added2009-10-03T14:57:24Z + Bit Rate192 + Sample Rate44100 + Normalization416 + Compilation + Artwork Count1 + Sort AlbumMagic Violin + Persistent ID70AD67C87818D005 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Magic%20Violin/1-05%20Minuet%20In%20G.m4a + File Folder Count4 + Library Folder Count1 + + 4426 + + Track ID4426 + NameLittle Bee, Op.13/9 + ArtistFranz Schubert + AlbumThe Magic Violin + GenreClassical + KindAAC audio file + Size1484960 + Total Time63319 + Disc Number1 + Track Number6 + Track Count15 + Date Modified2006-08-08T03:05:16Z + Date Added2009-10-03T14:57:24Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3340458369 + Play Date UTC2009-11-07T11:36:09Z + Normalization326 + Compilation + Artwork Count1 + Sort AlbumMagic Violin + Persistent IDBB6C9540DFA0140E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Magic%20Violin/1-06%20Little%20Bee,%20Op.13_9.m4a + File Folder Count4 + Library Folder Count1 + + 4428 + + Track ID4428 + NamePrld I/8: La fille aux cheveux de lin + ArtistClaude Debussy + AlbumThe Magic Violin + GenreClassical + KindAAC audio file + Size3192546 + Total Time135742 + Disc Number1 + Track Number7 + Track Count15 + Date Modified2006-08-08T03:05:16Z + Date Added2009-10-03T14:57:24Z + Bit Rate192 + Sample Rate44100 + Normalization443 + Compilation + Artwork Count1 + Sort AlbumMagic Violin + Persistent ID86B2E3CF1132387D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Magic%20Violin/1-07%20Prld%20I_8_%20La%20fille%20aux%20cheveux%20de%20lin.m4a + File Folder Count4 + Library Folder Count1 + + 4430 + + Track ID4430 + NameSadko: The song of the Indian Merchant + ArtistNikolai Rimsky-Korsakov + AlbumThe Magic Violin + GenreClassical + KindAAC audio file + Size4424036 + Total Time185943 + Disc Number1 + Track Number8 + Track Count15 + Date Modified2006-08-08T03:05:16Z + Date Added2009-10-03T14:57:25Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3401282453 + Play Date UTC2011-10-12T11:10:53Z + Normalization370 + Compilation + Artwork Count1 + Sort AlbumMagic Violin + Persistent ID1E55DD6476019C97 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Magic%20Violin/1-08%20Sadko_%20The%20song%20of%20the%20Indian%20Merchant.m4a + File Folder Count4 + Library Folder Count1 + + 4432 + + Track ID4432 + NameThe Nightingale's Song + ArtistVaclav Trojan + AlbumThe Magic Violin + GenreClassical + KindAAC audio file + Size4074211 + Total Time170827 + Disc Number1 + Track Number9 + Track Count15 + Date Modified2006-08-08T03:05:16Z + Date Added2009-10-03T14:57:25Z + Bit Rate192 + Sample Rate44100 + Normalization605 + Compilation + Artwork Count1 + Sort AlbumMagic Violin + Sort NameNightingale's Song + Persistent IDDDA51DAE59439070 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Magic%20Violin/1-09%20The%20Nightingale's%20Song.m4a + File Folder Count4 + Library Folder Count1 + + 4434 + + Track ID4434 + NameDas Blumenleben Op.30: Zephyr Op.30/5 + ArtistJeno Hubay + AlbumThe Magic Violin + GenreClassical + KindAAC audio file + Size5002108 + Total Time212182 + Disc Number1 + Track Number10 + Track Count15 + Date Modified2006-08-08T03:05:16Z + Date Added2009-10-03T14:57:25Z + Bit Rate192 + Sample Rate44100 + Normalization386 + Compilation + Artwork Count1 + Sort AlbumMagic Violin + Persistent IDAE9351EE850E5555 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Magic%20Violin/1-10%20Das%20Blumenleben%20Op.30_%20Zephyr%20Op.30_5.m4a + File Folder Count4 + Library Folder Count1 + + 4436 + + Track ID4436 + NameSymphonie Espagnole In d Op.21: Allegro no Troppo + ArtistEdouard Lalo + AlbumThe Magic Violin + GenreClassical + KindAAC audio file + Size11228996 + Total Time463097 + Disc Number1 + Track Number11 + Track Count15 + Date Modified2006-08-08T03:05:16Z + Date Added2009-10-03T14:57:25Z + Bit Rate192 + Sample Rate44100 + Normalization989 + Compilation + Artwork Count1 + Sort AlbumMagic Violin + Persistent ID3E75BF24FFF87B16 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Magic%20Violin/1-11%20Symphonie%20Espagnole%20In%20d%20Op.21_%20Allegro%20no%20Troppo.m4a + File Folder Count4 + Library Folder Count1 + + 4438 + + Track ID4438 + NameSymphonie Espagnole In d Op.21: Sherzando + ArtistEdouard Lalo + AlbumThe Magic Violin + GenreClassical + KindAAC audio file + Size6428585 + Total Time264729 + Disc Number1 + Track Number12 + Track Count15 + Date Modified2006-08-08T03:05:16Z + Date Added2009-10-03T14:57:25Z + Bit Rate192 + Sample Rate44100 + Skip Count1 + Normalization817 + Compilation + Artwork Count1 + Sort AlbumMagic Violin + Persistent ID66DB88606BE68852 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Magic%20Violin/1-12%20Symphonie%20Espagnole%20In%20d%20Op.21_%20Sherzando.m4a + File Folder Count4 + Library Folder Count1 + + 4440 + + Track ID4440 + NameSymphonie Espagnole In d Op.21: Intermezzo (Allegretto non Troppo) + ArtistEdouard Lalo + AlbumThe Magic Violin + GenreClassical + KindAAC audio file + Size8890802 + Total Time366479 + Disc Number1 + Track Number13 + Track Count15 + Date Modified2006-08-08T03:05:16Z + Date Added2009-10-03T14:57:25Z + Bit Rate192 + Sample Rate44100 + Normalization876 + Compilation + Artwork Count1 + Sort AlbumMagic Violin + Persistent IDA452DD9F31377DE7 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Magic%20Violin/1-13%20Symphonie%20Espagnole%20In%20d%20Op.21_%20Intermezzo%20(Allegretto%20non%20Troppo).m4a + File Folder Count4 + Library Folder Count1 + + 4442 + + Track ID4442 + NameSymphonie Espagnole In d Op.21: Adante + ArtistEdouard Lalo + AlbumThe Magic Violin + GenreClassical + KindAAC audio file + Size9847743 + Total Time406022 + Disc Number1 + Track Number14 + Track Count15 + Date Modified2006-08-08T03:05:18Z + Date Added2009-10-03T14:57:25Z + Bit Rate192 + Sample Rate44100 + Skip Count1 + Normalization852 + Compilation + Artwork Count1 + Sort AlbumMagic Violin + Persistent ID421381DCCF9C8D0F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Magic%20Violin/1-14%20Symphonie%20Espagnole%20In%20d%20Op.21_%20Adante.m4a + File Folder Count4 + Library Folder Count1 + + 4444 + + Track ID4444 + NameSymphonie Espagnole In d Op.21: Molto Moderato e maestoso + ArtistEdouard Lalo + AlbumThe Magic Violin + GenreClassical + KindAAC audio file + Size11701185 + Total Time482602 + Disc Number1 + Track Number15 + Track Count15 + Date Modified2006-08-08T03:05:18Z + Date Added2009-10-03T14:57:25Z + Bit Rate192 + Sample Rate44100 + Skip Count1 + Normalization1246 + Compilation + Artwork Count1 + Sort AlbumMagic Violin + Persistent ID4B8FB66CED0D338F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Magic%20Violin/1-15%20Symphonie%20Espagnole%20In%20d%20Op.21_%20Molto%20Moderato%20e%20maestoso.m4a + File Folder Count4 + Library Folder Count1 + + 4762 + + Track ID4762 + NamePo' Lazarus + ArtistJames Carter & The Prisoners + ComposerTraditional, arr. by Alan Lomax + AlbumO Brother, Where Art Thou? + GenreSoundtrack + KindAAC audio file + Size6548776 + Total Time270812 + Disc Number1 + Disc Count1 + Track Number1 + Track Count19 + Year1959 + Date Modified2006-08-13T06:34:22Z + Date Added2009-10-03T14:57:49Z + Bit Rate192 + Sample Rate44100 + Skip Count1 + Normalization1381 + Compilation + Artwork Count1 + Persistent ID2A579B25D6C79EF3 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/O%20Brother,%20Where%20Art%20Thou_/01%20Po'%20Lazarus.m4a + File Folder Count4 + Library Folder Count1 + + 4764 + + Track ID4764 + NameBig Rock Candy Mountain + ArtistHarry McClintock + ComposerHarry McClintock + AlbumO Brother, Where Art Thou? + GenreSoundtrack + KindAAC audio file + Size3325693 + Total Time137716 + Disc Number1 + Disc Count1 + Track Number2 + Track Count19 + Year1928 + Date Modified2006-08-13T06:34:20Z + Date Added2009-10-03T14:57:49Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3389530598 + Play Date UTC2011-05-29T10:46:38Z + Normalization1230 + Compilation + Artwork Count1 + Persistent ID3A2EBBC3A2587230 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/O%20Brother,%20Where%20Art%20Thou_/02%20Big%20Rock%20Candy%20Mountain.m4a + File Folder Count4 + Library Folder Count1 + + 4766 + + Track ID4766 + NameYou Are My Sunshine + ArtistNorman Blake + ComposerJimmie Davis, Charles Mitchell + AlbumO Brother, Where Art Thou? + GenreSoundtrack + KindAAC audio file + Size6489295 + Total Time267608 + Disc Number1 + Disc Count1 + Track Number3 + Track Count19 + Year2000 + Date Modified2006-08-13T06:34:18Z + Date Added2009-10-03T14:57:49Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3389530866 + Play Date UTC2011-05-29T10:51:06Z + Normalization1047 + Compilation + Artwork Count1 + Persistent ID5BE34E1E51309D67 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/O%20Brother,%20Where%20Art%20Thou_/03%20You%20Are%20My%20Sunshine.m4a + File Folder Count4 + Library Folder Count1 + + 4768 + + Track ID4768 + NameDown To The River To Pray + ArtistAlison Krauss + ComposerJimmie Rodgers/Traditional, arr. by Allison Krauss + AlbumO Brother, Where Art Thou? + GenreSoundtrack + KindAAC audio file + Size4279470 + Total Time175982 + Disc Number1 + Disc Count1 + Track Number4 + Track Count19 + Year2000 + Date Modified2006-08-13T06:34:14Z + Date Added2009-10-03T14:57:49Z + Bit Rate192 + Sample Rate44100 + Play Count2 + Play Date3389531042 + Play Date UTC2011-05-29T10:54:02Z + Normalization1057 + Compilation + Artwork Count1 + Persistent IDC5808AE0985283A8 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/O%20Brother,%20Where%20Art%20Thou_/04%20Down%20To%20The%20River%20To%20Pray.m4a + File Folder Count4 + Library Folder Count1 + + 4770 + + Track ID4770 + NameI Am A Man Of Constant Sorrow + ArtistThe Soggy Bottom Boys + ComposerTraditional, arr. by Carter Stanley + AlbumO Brother, Where Art Thou? + GenreSoundtrack + KindAAC audio file + Size4616382 + Total Time190007 + Disc Number1 + Disc Count1 + Track Number5 + Track Count19 + Year2000 + Date Modified2006-08-13T06:34:12Z + Date Added2009-10-03T14:57:49Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3389531232 + Play Date UTC2011-05-29T10:57:12Z + Normalization926 + Compilation + Artwork Count1 + Sort ArtistSoggy Bottom Boys + Persistent IDADD47F08F4641389 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/O%20Brother,%20Where%20Art%20Thou_/05%20I%20Am%20A%20Man%20Of%20Constant%20Sorrow.m4a + File Folder Count4 + Library Folder Count1 + + 4772 + + Track ID4772 + NameHard Time Killing Floor Blues + ArtistChris Thomas King + ComposerNehemiah "Skip" James + AlbumO Brother, Where Art Thou? + GenreSoundtrack + KindAAC audio file + Size3948906 + Total Time162445 + Disc Number1 + Disc Count1 + Track Number6 + Track Count19 + Year2000 + Date Modified2006-08-13T06:34:10Z + Date Added2009-10-03T14:57:49Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3389531394 + Play Date UTC2011-05-29T10:59:54Z + Normalization714 + Compilation + Artwork Count1 + Persistent IDE3BCA575052CC74F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/O%20Brother,%20Where%20Art%20Thou_/06%20Hard%20Time%20Killing%20Floor%20Blues.m4a + File Folder Count4 + Library Folder Count1 + + 4774 + + Track ID4774 + NameI Am A Man Of Constant Sorrow (Instrumental) + ArtistJohn Hartford + ComposerTraditional, arr. by Norman Blake + AlbumO Brother, Where Art Thou? + GenreSoundtrack + KindAAC audio file + Size6532582 + Total Time269419 + Disc Number1 + Disc Count1 + Track Number7 + Track Count19 + Year2000 + Date Modified2006-08-13T06:34:08Z + Date Added2009-10-03T14:57:50Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3389531664 + Play Date UTC2011-05-29T11:04:24Z + Normalization493 + Compilation + Artwork Count1 + Persistent ID4AE883903F89BCDD + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/O%20Brother,%20Where%20Art%20Thou_/07%20I%20Am%20A%20Man%20Of%20Constant%20Sorrow%20(Instrumental).m4a + File Folder Count4 + Library Folder Count1 + + 4776 + + Track ID4776 + NameKeep On The Sunny Side + ArtistThe Whites + ComposerA.P. Carter + AlbumO Brother, Where Art Thou? + GenreSoundtrack + KindAAC audio file + Size5200282 + Total Time214318 + Disc Number1 + Disc Count1 + Track Number8 + Track Count19 + Year2000 + Date Modified2006-08-13T06:34:06Z + Date Added2009-10-03T14:57:50Z + Bit Rate192 + Sample Rate44100 + Play Count2 + Play Date3427382124 + Play Date UTC2012-08-09T13:05:24Z + Normalization908 + Compilation + Artwork Count1 + Sort ArtistWhites + Persistent ID8106C0A07415D208 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/O%20Brother,%20Where%20Art%20Thou_/08%20Keep%20On%20The%20Sunny%20Side.m4a + File Folder Count4 + Library Folder Count1 + + 4778 + + Track ID4778 + NameI'll Fly Away + ArtistAlison Krauss & Gillian Welch + ComposerAlbert E. Brumley + AlbumO Brother, Where Art Thou? + GenreSoundtrack + KindAAC audio file + Size5773826 + Total Time237886 + Disc Number1 + Disc Count1 + Track Number9 + Track Count19 + Year2000 + Date Modified2006-08-13T06:34:04Z + Date Added2009-10-03T14:57:50Z + Bit Rate192 + Sample Rate44100 + Normalization1056 + Compilation + Artwork Count1 + Persistent IDC9D278ACE1006EAE + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/O%20Brother,%20Where%20Art%20Thou_/09%20I'll%20Fly%20Away.m4a + File Folder Count4 + Library Folder Count1 + + 4780 + + Track ID4780 + NameDidn't Leave Nobody But The Baby + ArtistEmmylou Harris, Alison Krauss & Gillian Welch + ComposerTraditional, arr. by Alan Lomax, Mrs. Sidney Carter, Gillian Welch, and T Bone Burnett + AlbumO Brother, Where Art Thou? + GenreSoundtrack + KindAAC audio file + Size2882366 + Total Time117816 + Disc Number1 + Disc Count1 + Track Number10 + Track Count19 + Year2000 + Date Modified2006-08-13T06:34:02Z + Date Added2009-10-03T14:57:50Z + Bit Rate192 + Sample Rate44100 + Normalization616 + Compilation + Artwork Count1 + Persistent ID50CE2D60589CB100 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/O%20Brother,%20Where%20Art%20Thou_/10%20Didn't%20Leave%20Nobody%20But%20The%20Baby.m4a + File Folder Count4 + Library Folder Count1 + + 4782 + + Track ID4782 + NameIn the Highways + ArtistThe Peasall Sisters + ComposerMaybelle Carter + AlbumO Brother, Where Art Thou? + GenreSoundtrack + KindAAC audio file + Size2362155 + Total Time96152 + Disc Number1 + Disc Count1 + Track Number11 + Track Count19 + Year2000 + Date Modified2006-08-13T06:34:00Z + Date Added2009-10-03T14:57:50Z + Bit Rate192 + Sample Rate44100 + Normalization1332 + Compilation + Artwork Count1 + Sort ArtistPeasall Sisters + Persistent ID6BC700F7B255FFEA + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/O%20Brother,%20Where%20Art%20Thou_/11%20In%20the%20Highways.m4a + File Folder Count4 + Library Folder Count1 + + 4784 + + Track ID4784 + NameI Am Weary (Let Me Rest) + ArtistThe Cox Family + ComposerPete Roberts + AlbumO Brother, Where Art Thou? + GenreSoundtrack + KindAAC audio file + Size4718664 + Total Time194279 + Disc Number1 + Disc Count1 + Track Number12 + Track Count19 + Year2000 + Date Modified2006-08-13T06:33:58Z + Date Added2009-10-03T14:57:50Z + Bit Rate192 + Sample Rate44100 + Normalization713 + Compilation + Artwork Count1 + Sort ArtistCox Family + Persistent IDE065E4AC855E7469 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/O%20Brother,%20Where%20Art%20Thou_/12%20I%20Am%20Weary%20(Let%20Me%20Rest).m4a + File Folder Count4 + Library Folder Count1 + + 4786 + + Track ID4786 + NameI Am A Man Of Constant Sorrow (Instrumental) + ArtistJohn Hartford + ComposerTraditional, arr. by Ed Haley + AlbumO Brother, Where Art Thou? + GenreSoundtrack + KindAAC audio file + Size3755075 + Total Time154155 + Disc Number1 + Disc Count1 + Track Number13 + Track Count19 + Year2000 + Date Modified2006-08-13T06:33:56Z + Date Added2009-10-03T14:57:50Z + Bit Rate192 + Sample Rate44100 + Normalization187 + Compilation + Artwork Count1 + Persistent IDF6F1AAECA97CA1CB + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/O%20Brother,%20Where%20Art%20Thou_/13%20I%20Am%20A%20Man%20Of%20Constant%20Sorrow%20(Instrumental).m4a + File Folder Count4 + Library Folder Count1 + + 4788 + + Track ID4788 + NameO Death + ArtistRalph Stanley + ComposerTraditional, arr. by Ralph Stanley + AlbumO Brother, Where Art Thou? + GenreSoundtrack + KindAAC audio file + Size4847041 + Total Time199620 + Disc Number1 + Disc Count1 + Track Number14 + Track Count19 + Year2000 + Date Modified2006-08-13T06:33:54Z + Date Added2009-10-03T14:57:50Z + Bit Rate192 + Sample Rate44100 + Normalization587 + Compilation + Artwork Count1 + Persistent ID2CB73AE3DA730052 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/O%20Brother,%20Where%20Art%20Thou_/14%20O%20Death.m4a + File Folder Count4 + Library Folder Count1 + + 4790 + + Track ID4790 + NameIn The Jailhouse Now + ArtistThe Soggy Bottom Boys + ComposerJimmie Rodgers + AlbumO Brother, Where Art Thou? + GenreSoundtrack + KindAAC audio file + Size5243089 + Total Time216106 + Disc Number1 + Disc Count1 + Track Number15 + Track Count19 + Year2000 + Date Modified2006-08-13T06:33:52Z + Date Added2009-10-03T14:57:50Z + Bit Rate192 + Sample Rate44100 + Normalization1184 + Compilation + Artwork Count1 + Sort ArtistSoggy Bottom Boys + Persistent ID88F629F468389C54 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/O%20Brother,%20Where%20Art%20Thou_/15%20In%20The%20Jailhouse%20Now.m4a + File Folder Count4 + Library Folder Count1 + + 4792 + + Track ID4792 + NameI Am A Man Of Constant Sorrow + ArtistThe Soggy Bottom Boys + ComposerTraditional, arr. by Carter Stanley + AlbumO Brother, Where Art Thou? + GenreSoundtrack + KindAAC audio file + Size6232749 + Total Time256973 + Disc Number1 + Disc Count1 + Track Number16 + Track Count19 + Year2000 + Date Modified2006-08-13T06:33:50Z + Date Added2009-10-03T14:57:51Z + Bit Rate192 + Sample Rate44100 + Normalization1301 + Compilation + Artwork Count1 + Sort ArtistSoggy Bottom Boys + Persistent ID9C7AB944E53F3315 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/O%20Brother,%20Where%20Art%20Thou_/16%20I%20Am%20A%20Man%20Of%20Constant%20Sorrow.m4a + File Folder Count4 + Library Folder Count1 + + 4794 + + Track ID4794 + NameIndian War Whoop + ArtistJohn Hartford + ComposerHoyt Ming + AlbumO Brother, Where Art Thou? + GenreSoundtrack + KindAAC audio file + Size2224980 + Total Time90440 + Disc Number1 + Disc Count1 + Track Number17 + Track Count19 + Year2000 + Date Modified2006-08-13T06:33:48Z + Date Added2009-10-03T14:57:51Z + Bit Rate192 + Sample Rate44100 + Normalization1244 + Compilation + Artwork Count1 + Persistent ID7AC66E5A2188ECCD + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/O%20Brother,%20Where%20Art%20Thou_/17%20Indian%20War%20Whoop.m4a + File Folder Count4 + Library Folder Count1 + + 4796 + + Track ID4796 + NameLonesome Valley + ArtistThe Fairfield Four + ComposerTraditional, arr. by the Fairfield Four + AlbumO Brother, Where Art Thou? + GenreSoundtrack + KindAAC audio file + Size5997485 + Total Time247174 + Disc Number1 + Disc Count1 + Track Number18 + Track Count19 + Year2000 + Date Modified2006-08-13T06:33:46Z + Date Added2009-10-03T14:57:51Z + Bit Rate192 + Sample Rate44100 + Normalization1387 + Compilation + Artwork Count1 + Sort ArtistFairfield Four + Persistent IDD0DA1542F8DA4951 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/O%20Brother,%20Where%20Art%20Thou_/18%20Lonesome%20Valley.m4a + File Folder Count4 + Library Folder Count1 + + 4798 + + Track ID4798 + NameAngel Band + ArtistThe Stanley Brothers + ComposerTraditional, arr. by Ralph Stanley + AlbumO Brother, Where Art Thou? + GenreSoundtrack + KindAAC audio file + Size3312765 + Total Time135835 + Disc Number1 + Disc Count1 + Track Number19 + Track Count19 + Year1955 + Date Modified2006-08-13T06:33:44Z + Date Added2009-10-03T14:57:51Z + Bit Rate192 + Sample Rate44100 + Normalization723 + Compilation + Artwork Count1 + Sort ArtistStanley Brothers + Persistent ID7820EFED4F6C2F43 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/O%20Brother,%20Where%20Art%20Thou_/19%20Angel%20Band.m4a + File Folder Count4 + Library Folder Count1 + + 5210 + + Track ID5210 + NameThe English Patient + ArtistGabriel Yared - Academy Of St. Martin In The Fields + ComposerGabriel Yared + AlbumEnglish Patient + GenreClassical + KindAAC audio file + Size5266976 + Total Time217314 + Disc Number1 + Disc Count1 + Track Number1 + Track Count28 + Year1996 + Date Modified2006-07-31T04:23:32Z + Date Added2009-10-03T14:58:24Z + Bit Rate192 + Sample Rate44100 + Play Count2 + Play Date3389529334 + Play Date UTC2011-05-29T10:25:34Z + Normalization618 + Compilation + Artwork Count1 + Sort NameEnglish Patient + Persistent ID4C3E47F1A0C5165E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/01%20The%20English%20Patient.m4a + File Folder Count4 + Library Folder Count1 + + 5212 + + Track ID5212 + NameA Retreat + ArtistGabriel Yared - Academy Of St. Martin In The Fields + ComposerGabriel Yared + AlbumEnglish Patient + GenreClassical + KindAAC audio file + Size2123996 + Total Time86260 + Disc Number1 + Disc Count1 + Track Number2 + Track Count28 + Year1996 + Date Modified2006-07-31T04:23:32Z + Date Added2009-10-03T14:58:24Z + Bit Rate192 + Sample Rate44100 + Play Count2 + Play Date3389529420 + Play Date UTC2011-05-29T10:27:00Z + Normalization428 + Compilation + Artwork Count1 + Sort NameRetreat + Persistent IDCBC8F819CFC4C526 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/02%20A%20Retreat.m4a + File Folder Count4 + Library Folder Count1 + + 5214 + + Track ID5214 + NameRupert Bear + ArtistGabriel Yared - Academy Of St. Martin In The Fields + ComposerGabriel Yared + AlbumEnglish Patient + GenreClassical + KindAAC audio file + Size2138327 + Total Time87003 + Disc Number1 + Disc Count1 + Track Number3 + Track Count28 + Year1996 + Date Modified2006-07-31T04:23:32Z + Date Added2009-10-03T14:58:24Z + Bit Rate192 + Sample Rate44100 + Play Count2 + Play Date3389529507 + Play Date UTC2011-05-29T10:28:27Z + Normalization814 + Compilation + Artwork Count1 + Persistent IDD238E33657334788 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/03%20Rupert%20Bear.m4a + File Folder Count4 + Library Folder Count1 + + 5216 + + Track ID5216 + NameWhat Else Do You Love + ArtistGabriel Yared - Academy Of St. Martin In The Fields + ComposerGabriel Yared + AlbumEnglish Patient + GenreClassical + KindAAC audio file + Size1634656 + Total Time65873 + Disc Number1 + Disc Count1 + Track Number4 + Track Count28 + Year1996 + Date Modified2006-07-31T04:23:32Z + Date Added2009-10-03T14:58:24Z + Bit Rate192 + Sample Rate44100 + Play Count2 + Play Date3389529573 + Play Date UTC2011-05-29T10:29:33Z + Normalization352 + Compilation + Artwork Count1 + Persistent ID612A7D10F498BAED + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/04%20What%20Else%20Do%20You%20Love.m4a + File Folder Count4 + Library Folder Count1 + + 5218 + + Track ID5218 + NameWhy Picton? + ArtistGabriel Yared - Academy Of St. Martin In The Fields + ComposerGabriel Yared + AlbumEnglish Patient + GenreClassical + KindAAC audio file + Size1711740 + Total Time69077 + Disc Number1 + Disc Count1 + Track Number5 + Track Count28 + Year1996 + Date Modified2006-07-31T04:23:32Z + Date Added2009-10-03T14:58:24Z + Bit Rate192 + Sample Rate44100 + Play Count2 + Play Date3389529642 + Play Date UTC2011-05-29T10:30:42Z + Normalization508 + Compilation + Artwork Count1 + Persistent IDF155ECF082404F21 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/05%20Why%20Picton_.m4a + File Folder Count4 + Library Folder Count1 + + 5220 + + Track ID5220 + NameCheek To Cheek + ArtistFred Astaire + ComposerGabriel Yared + AlbumEnglish Patient + GenreClassical + KindAAC audio file + Size4765385 + Total Time200340 + Disc Number1 + Disc Count1 + Track Number6 + Track Count28 + Year1996 + Date Modified2006-07-31T04:23:32Z + Date Added2009-10-03T14:58:24Z + Bit Rate192 + Sample Rate44100 + Play Count2 + Play Date3389529842 + Play Date UTC2011-05-29T10:34:02Z + Normalization1257 + Compilation + Artwork Count1 + Persistent ID794315A154A1C873 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/06%20Cheek%20To%20Cheek.m4a + File Folder Count4 + Library Folder Count1 + + 5222 + + Track ID5222 + NameKip's Lights + ArtistGabriel Yared - Academy Of St. Martin In The Fields + ComposerGabriel Yared + AlbumEnglish Patient + GenreClassical + KindAAC audio file + Size2180241 + Total Time89743 + Disc Number1 + Disc Count1 + Track Number7 + Track Count28 + Year1996 + Date Modified2006-07-31T04:23:32Z + Date Added2009-10-03T14:58:25Z + Bit Rate192 + Sample Rate44100 + Play Count2 + Play Date3389529932 + Play Date UTC2011-05-29T10:35:32Z + Normalization1229 + Compilation + Artwork Count1 + Persistent IDF7C7AD26AFB41DE7 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/07%20Kip's%20Lights.m4a + File Folder Count4 + Library Folder Count1 + + 5224 + + Track ID5224 + NameHana's Curse + ArtistGabriel Yared - Academy Of St. Martin In The Fields + ComposerGabriel Yared + AlbumEnglish Patient + GenreClassical + KindAAC audio file + Size3205805 + Total Time131400 + Disc Number1 + Disc Count1 + Track Number8 + Track Count28 + Year1996 + Date Modified2006-07-31T04:23:32Z + Date Added2009-10-03T14:58:25Z + Bit Rate192 + Sample Rate44100 + Play Count2 + Play Date3389530063 + Play Date UTC2011-05-29T10:37:43Z + Normalization931 + Compilation + Artwork Count1 + Persistent IDC7027955CB3530DE + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/08%20Hana's%20Curse.m4a + File Folder Count4 + Library Folder Count1 + + 5226 + + Track ID5226 + NameI'll Always Go Back To That Church + ArtistGabriel Yared - Academy Of St. Martin In The Fields + ComposerGabriel Yared + AlbumEnglish Patient + GenreClassical + KindAAC audio file + Size2786931 + Total Time113845 + Disc Number1 + Disc Count1 + Track Number9 + Track Count28 + Year1996 + Date Modified2006-07-31T04:23:32Z + Date Added2009-10-03T14:58:25Z + Bit Rate192 + Sample Rate44100 + Play Count2 + Play Date3389530177 + Play Date UTC2011-05-29T10:39:37Z + Normalization661 + Compilation + Artwork Count1 + Persistent IDDBF0FA5525F7D7E8 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/09%20I'll%20Always%20Go%20Back%20To%20That%20Church.m4a + File Folder Count4 + Library Folder Count1 + + 5228 + + Track ID5228 + NameBlack Nights + ArtistGabriel Yared - Academy Of St. Martin In The Fields + ComposerGabriel Yared + AlbumEnglish Patient + GenreClassical + KindAAC audio file + Size2854485 + Total Time117143 + Disc Number1 + Disc Count1 + Track Number10 + Track Count28 + Year1996 + Date Modified2006-07-31T04:23:32Z + Date Added2009-10-03T14:58:25Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3365788107 + Play Date UTC2010-08-27T15:38:27Z + Normalization228 + Compilation + Artwork Count1 + Persistent IDE311869DEA108BC7 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/10%20Black%20Nights.m4a + File Folder Count4 + Library Folder Count1 + + 5230 + + Track ID5230 + NameSwoon, I'll Catch You + ArtistGabriel Yared - Academy Of St. Martin In The Fields + ComposerGabriel Yared + AlbumEnglish Patient + GenreClassical + KindAAC audio file + Size2755646 + Total Time112615 + Disc Number1 + Disc Count1 + Track Number11 + Track Count28 + Year1996 + Date Modified2006-07-31T04:23:32Z + Date Added2009-10-03T14:58:25Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3365788220 + Play Date UTC2010-08-27T15:40:20Z + Normalization1155 + Compilation + Artwork Count1 + Persistent ID3F7D26A37BA7AE71 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/11%20Swoon,%20I'll%20Catch%20You.m4a + File Folder Count4 + Library Folder Count1 + + 5232 + + Track ID5232 + NameAm I K. In Your Book? + ArtistGabriel Yared - Academy Of St. Martin In The Fields + ComposerGabriel Yared + AlbumEnglish Patient + GenreClassical + KindAAC audio file + Size1494150 + Total Time60022 + Disc Number1 + Disc Count1 + Track Number12 + Track Count28 + Year1996 + Date Modified2006-07-31T04:23:32Z + Date Added2009-10-03T14:58:25Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3365788280 + Play Date UTC2010-08-27T15:41:20Z + Normalization879 + Compilation + Artwork Count1 + Persistent ID8D1123CEE630D75C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/12%20Am%20I%20K.%20In%20Your%20Book_.m4a + File Folder Count4 + Library Folder Count1 + + 5234 + + Track ID5234 + NameLet Me Come In + ArtistGabriel Yared - Academy Of St. Martin In The Fields + ComposerGabriel Yared + AlbumEnglish Patient + GenreClassical + KindAAC audio file + Size3914110 + Total Time160773 + Disc Number1 + Disc Count1 + Track Number13 + Track Count28 + Year1996 + Date Modified2006-07-31T04:23:32Z + Date Added2009-10-03T14:58:25Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3365788440 + Play Date UTC2010-08-27T15:44:00Z + Normalization894 + Compilation + Artwork Count1 + Persistent IDB68303DCE85979FC + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/13%20Let%20Me%20Come%20In.m4a + File Folder Count4 + Library Folder Count1 + + 5236 + + Track ID5236 + NameWang Wang Blues + ArtistBenny Goodman + ComposerGabriel Yared + AlbumEnglish Patient + GenreClassical + KindAAC audio file + Size4098473 + Total Time173149 + Disc Number1 + Disc Count1 + Track Number14 + Track Count28 + Year1996 + Date Modified2006-07-31T04:23:32Z + Date Added2009-10-03T14:58:26Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3365788614 + Play Date UTC2010-08-27T15:46:54Z + Normalization1376 + Compilation + Artwork Count1 + Persistent IDE8B633ECCB4C2C39 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/14%20Wang%20Wang%20Blues.m4a + File Folder Count4 + Library Folder Count1 + + 5238 + + Track ID5238 + NameConvento Di Santa'Anna + ArtistGabriel Yared - Academy Of St. Martin In The Fields + ComposerGabriel Yared + AlbumEnglish Patient + GenreClassical + KindAAC audio file + Size13293694 + Total Time552215 + Disc Number1 + Disc Count1 + Track Number15 + Track Count28 + Year1996 + Date Modified2006-07-31T04:23:32Z + Date Added2009-10-03T14:58:26Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3365789166 + Play Date UTC2010-08-27T15:56:06Z + Normalization667 + Compilation + Artwork Count1 + Persistent ID34FA5586386FFB5F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/15%20Convento%20Di%20Santa'Anna.m4a + File Folder Count4 + Library Folder Count1 + + 5240 + + Track ID5240 + NameHerodotus + ArtistGabriel Yared - Academy Of St. Martin In The Fields + ComposerGabriel Yared + AlbumEnglish Patient + GenreClassical + KindAAC audio file + Size1666678 + Total Time71841 + Disc Number1 + Disc Count1 + Track Number16 + Track Count28 + Year1996 + Date Modified2006-07-31T04:23:32Z + Date Added2009-10-03T14:58:26Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3365789238 + Play Date UTC2010-08-27T15:57:18Z + Normalization1252 + Compilation + Artwork Count1 + Persistent ID2B9638B71AE3A7D6 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/16%20Herodotus.m4a + File Folder Count4 + Library Folder Count1 + + 5242 + + Track ID5242 + NameMuzsikás - Szerelem, Szerelem + ArtistMárta Sebestyén + ComposerGabriel Yared + AlbumEnglish Patient + GenreClassical + KindAAC audio file + Size6675676 + Total Time276687 + Disc Number1 + Disc Count1 + Track Number17 + Track Count28 + Year1996 + Date Modified2006-07-31T04:23:32Z + Date Added2009-10-03T14:58:26Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3365789514 + Play Date UTC2010-08-27T16:01:54Z + Normalization357 + Compilation + Artwork Count1 + Persistent IDD444698E2D389B95 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/17%20Muzsika%CC%81s%20-%20Szerelem,%20Szerelem.m4a + File Folder Count4 + Library Folder Count1 + + 5244 + + Track ID5244 + NameAsk Your Saint Who He's Killed + ArtistGabriel Yared - Academy Of St. Martin In The Fields + ComposerGabriel Yared + AlbumEnglish Patient + GenreClassical + KindAAC audio file + Size1731001 + Total Time69937 + Disc Number1 + Disc Count1 + Track Number18 + Track Count28 + Year1996 + Date Modified2006-07-31T04:23:32Z + Date Added2009-10-03T14:58:26Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3365789584 + Play Date UTC2010-08-27T16:03:04Z + Normalization179 + Compilation + Artwork Count1 + Persistent IDF92B7C707BEC44FA + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/18%20Ask%20Your%20Saint%20Who%20He's%20Killed.m4a + File Folder Count4 + Library Folder Count1 + + 5246 + + Track ID5246 + NameOne O'Clock Jump + ArtistBenny Goodman + ComposerGabriel Yared + AlbumEnglish Patient + GenreClassical + KindAAC audio file + Size4676267 + Total Time195951 + Disc Number1 + Disc Count1 + Track Number19 + Track Count28 + Year1996 + Date Modified2006-07-31T04:23:32Z + Date Added2009-10-03T14:58:26Z + Bit Rate192 + Sample Rate44100 + Normalization1031 + Compilation + Artwork Count1 + Persistent ID8DA2BEE53500D989 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/19%20One%20O'Clock%20Jump.m4a + File Folder Count4 + Library Folder Count1 + + 5248 + + Track ID5248 + NameI'll Be Back + ArtistGabriel Yared - Academy Of St. Martin In The Fields + ComposerGabriel Yared + AlbumEnglish Patient + GenreClassical + KindAAC audio file + Size5902990 + Total Time243320 + Disc Number1 + Disc Count1 + Track Number20 + Track Count28 + Year1996 + Date Modified2006-07-31T04:23:32Z + Date Added2009-10-03T14:58:26Z + Bit Rate192 + Sample Rate44100 + Normalization737 + Compilation + Artwork Count1 + Persistent ID255C447E4BD63D45 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/20%20I'll%20Be%20Back.m4a + File Folder Count4 + Library Folder Count1 + + 5250 + + Track ID5250 + NameLet Me Tell You About Winds + ArtistGabriel Yared - Academy Of St. Martin In The Fields + ComposerGabriel Yared + AlbumEnglish Patient + GenreClassical + KindAAC audio file + Size1505975 + Total Time60509 + Disc Number1 + Disc Count1 + Track Number21 + Track Count28 + Year1996 + Date Modified2006-07-31T04:23:32Z + Date Added2009-10-03T14:58:26Z + Bit Rate192 + Sample Rate44100 + Normalization1157 + Compilation + Artwork Count1 + Persistent ID91C3289A54BBB5B6 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/21%20Let%20Me%20Tell%20You%20About%20Winds.m4a + File Folder Count4 + Library Folder Count1 + + 5252 + + Track ID5252 + NameRead Me To Sleep + ArtistGabriel Yared - Academy Of St. Martin In The Fields + ComposerGabriel Yared + AlbumEnglish Patient + GenreClassical + KindAAC audio file + Size7279616 + Total Time301857 + Disc Number1 + Disc Count1 + Track Number22 + Track Count28 + Year1996 + Date Modified2006-07-31T04:23:32Z + Date Added2009-10-03T14:58:26Z + Bit Rate192 + Sample Rate44100 + Normalization1074 + Compilation + Artwork Count1 + Persistent ID1BAF64E178E3ECE3 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/22%20Read%20Me%20To%20Sleep.m4a + File Folder Count4 + Library Folder Count1 + + 5254 + + Track ID5254 + NameThe Cave Of Swimmers + ArtistGabriel Yared - Academy Of St. Martin In The Fields + ComposerGabriel Yared + AlbumEnglish Patient + GenreClassical + KindAAC audio file + Size2947567 + Total Time120533 + Disc Number1 + Disc Count1 + Track Number23 + Track Count28 + Year1996 + Date Modified2006-07-31T04:23:32Z + Date Added2009-10-03T14:58:27Z + Bit Rate192 + Sample Rate44100 + Normalization1088 + Compilation + Artwork Count1 + Sort NameCave Of Swimmers + Persistent ID7B2A38C4EB28FC27 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/23%20The%20Cave%20Of%20Swimmers.m4a + File Folder Count4 + Library Folder Count1 + + 5256 + + Track ID5256 + NameWhere Or When + ArtistShepheard's Hotel Jazz Orchestra + ComposerGabriel Yared + AlbumEnglish Patient + GenreClassical + KindAAC audio file + Size3299982 + Total Time139016 + Disc Number1 + Disc Count1 + Track Number24 + Track Count28 + Year1996 + Date Modified2006-07-31T04:23:32Z + Date Added2009-10-03T14:58:27Z + Bit Rate192 + Sample Rate44100 + Normalization1084 + Compilation + Artwork Count1 + Persistent ID7738C27FE9F7E9F1 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/24%20Where%20Or%20When.m4a + File Folder Count4 + Library Folder Count1 + + 5258 + + Track ID5258 + NameAria From The Goldberg Variations + ArtistJulie Steinberg + ComposerGabriel Yared + AlbumEnglish Patient + GenreClassical + KindAAC audio file + Size4418855 + Total Time184481 + Disc Number1 + Disc Count1 + Track Number25 + Track Count28 + Year1996 + Date Modified2006-07-31T04:23:32Z + Date Added2009-10-03T14:58:27Z + Bit Rate192 + Sample Rate44100 + Normalization290 + Compilation + Artwork Count1 + Persistent ID3092478A17DB6C29 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/25%20Aria%20From%20The%20Goldberg%20Variations.m4a + File Folder Count4 + Library Folder Count1 + + 5260 + + Track ID5260 + NameCheek To Cheek + ArtistElla Fitzgerald + ComposerGabriel Yared + AlbumEnglish Patient + GenreClassical + KindAAC audio file + Size5439860 + Total Time227089 + Disc Number1 + Disc Count1 + Track Number26 + Track Count28 + Year1996 + Date Modified2006-07-31T04:23:32Z + Date Added2009-10-03T14:58:27Z + Bit Rate192 + Sample Rate44100 + Normalization1400 + Compilation + Artwork Count1 + Persistent ID6C75078951819EAB + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/26%20Cheek%20To%20Cheek.m4a + File Folder Count4 + Library Folder Count1 + + 5262 + + Track ID5262 + NameAs Far As Florence + ArtistGabriel Yared - Academy Of St. Martin In The Fields + ComposerGabriel Yared + AlbumEnglish Patient + GenreClassical + KindAAC audio file + Size7569637 + Total Time312306 + Disc Number1 + Disc Count1 + Track Number27 + Track Count28 + Year1996 + Date Modified2006-07-31T04:23:34Z + Date Added2009-10-03T14:58:27Z + Bit Rate192 + Sample Rate44100 + Normalization890 + Compilation + Artwork Count1 + Persistent IDD90D9CEA48CD95DD + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/27%20As%20Far%20As%20Florence.m4a + File Folder Count4 + Library Folder Count1 + + 5264 + + Track ID5264 + NameÉn Csak AZT Csodálom (Lullaby For Katharine) + ArtistMárta Sebestyén + ComposerGabriel Yared + AlbumEnglish Patient + GenreClassical + KindAAC audio file + Size1743363 + Total Time70401 + Disc Number1 + Disc Count1 + Track Number28 + Track Count28 + Year1996 + Date Modified2006-07-31T04:23:34Z + Date Added2009-10-03T14:58:27Z + Bit Rate192 + Sample Rate44100 + Normalization74 + Compilation + Artwork Count1 + Persistent IDEC84DC92D57E6691 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/28%20E%CC%81n%20Csak%20AZT%20Csoda%CC%81lom%20(Lullaby%20For%20Katharine).m4a + File Folder Count4 + Library Folder Count1 + + 48552 + + Track ID48552 + NameJesu Joy Of Man's Desiring (From Cantata BWV 147) + ArtistGabriela Montero + Album ArtistGabriela Montero + ComposerJohann Sebastian Bach + AlbumBach And Beyond + GenreClassical + KindMPEG audio file + Size7402836 + Total Time325825 + Disc Number1 + Disc Count1 + Track Number1 + Track Count15 + Year2006 + Date Modified2012-08-22T03:05:19Z + Date Added2012-08-22T03:42:45Z + Bit Rate176 + Sample Rate44100 + CommentsAmazon.com Song ID: 201980464 + Play Count2 + Play Date3428647819 + Play Date UTC2012-08-24T04:40:19Z + Artwork Count1 + Persistent IDC983F5C63DA0DF0D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Gabriela%20Montero/Bach%20And%20Beyond/01%20Jesu%20Joy%20Of%20Man's%20Desiring%20(From%20Cantata%20BWV%20147).mp3 + File Folder Count4 + Library Folder Count1 + + 48555 + + Track ID48555 + NameIII. Presto from Italian Concerto, BWV 971 + ArtistGabriela Montero + Album ArtistGabriela Montero + ComposerJohann Sebastian Bach + AlbumBach And Beyond + GenreClassical + KindMPEG audio file + Size4163551 + Total Time153965 + Disc Number1 + Disc Count1 + Track Number2 + Track Count15 + Year2006 + Date Modified2012-08-22T03:01:18Z + Date Added2012-08-22T03:42:45Z + Bit Rate204 + Sample Rate44100 + CommentsAmazon.com Song ID: 201980465 + Play Count3 + Play Date3428648847 + Play Date UTC2012-08-24T04:57:27Z + Artwork Count1 + Persistent ID50D9E6311CF52AF3 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Gabriela%20Montero/Bach%20And%20Beyond/02%20III.%20Presto%20from%20Italian%20Concerto,%20BWV%20971.mp3 + File Folder Count4 + Library Folder Count1 + + 48558 + + Track ID48558 + NameBeyond Bach + ArtistGabriela Montero + Album ArtistGabriela Montero + ComposerGabriela Montero + AlbumBach And Beyond + GenreClassical + KindMPEG audio file + Size5828826 + Total Time263340 + Disc Number1 + Disc Count1 + Track Number3 + Track Count15 + Year2006 + Date Modified2012-08-22T03:07:43Z + Date Added2012-08-22T03:42:45Z + Bit Rate170 + Sample Rate44100 + CommentsAmazon.com Song ID: 201980467 + Play Count2 + Play Date3428649110 + Play Date UTC2012-08-24T05:01:50Z + Artwork Count1 + Persistent ID0ECC93C096434957 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Gabriela%20Montero/Bach%20And%20Beyond/03%20Beyond%20Bach.mp3 + File Folder Count4 + Library Folder Count1 + + 48561 + + Track ID48561 + NameAir In G (From Suite No.3 In D Major BWV 1068) + ArtistGabriela Montero + Album ArtistGabriela Montero + ComposerJohann Sebastian Bach + AlbumBach And Beyond + GenreClassical + KindMPEG audio file + Size5226938 + Total Time209319 + Disc Number1 + Disc Count1 + Track Number4 + Track Count15 + Year2006 + Date Modified2012-08-22T03:00:41Z + Date Added2012-08-22T03:42:45Z + Bit Rate191 + Sample Rate44100 + CommentsAmazon.com Song ID: 201980469 + Play Count3 + Play Date3428649319 + Play Date UTC2012-08-24T05:05:19Z + Artwork Count1 + Persistent IDA036490FCFCA56A4 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Gabriela%20Montero/Bach%20And%20Beyond/04%20Air%20In%20G%20(From%20Suite%20No.3%20In%20D%20Major%20BWV%201068).mp3 + File Folder Count4 + Library Folder Count1 + + 48564 + + Track ID48564 + NameAria (From Goldberg Variations BWV 988) + ArtistGabriela Montero + Album ArtistGabriela Montero + ComposerJohann Sebastian Bach + AlbumBach And Beyond + GenreClassical + KindMPEG audio file + Size10492858 + Total Time456881 + Disc Number1 + Disc Count1 + Track Number5 + Track Count15 + Year2006 + Date Modified2012-08-22T03:02:49Z + Date Added2012-08-22T03:42:45Z + Bit Rate179 + Sample Rate44100 + CommentsAmazon.com Song ID: 201980471 + Play Count2 + Play Date3428475058 + Play Date UTC2012-08-22T04:40:58Z + Artwork Count1 + Persistent ID8644264C64F177E1 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Gabriela%20Montero/Bach%20And%20Beyond/05%20Aria%20(From%20Goldberg%20Variations%20BWV%20988).mp3 + File Folder Count4 + Library Folder Count1 + + 48567 + + Track ID48567 + NameViolin Concerto In E (Movement 2 - Adagio BWV 1042) + ArtistGabriela Montero + Album ArtistGabriela Montero + ComposerJohann Sebastian Bach + AlbumBach And Beyond + GenreClassical + KindMPEG audio file + Size6514581 + Total Time301453 + Disc Number1 + Disc Count1 + Track Number6 + Track Count15 + Year2006 + Date Modified2012-08-22T03:00:14Z + Date Added2012-08-22T03:42:45Z + Bit Rate167 + Sample Rate44100 + CommentsAmazon.com Song ID: 201980473 + Play Count2 + Play Date3428475360 + Play Date UTC2012-08-22T04:46:00Z + Artwork Count1 + Persistent IDEF322FC58B0EC8D5 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Gabriela%20Montero/Bach%20And%20Beyond/06%20Violin%20Concerto%20In%20E%20(Movement%202%20-%20Adagio%20BWV%201042).mp3 + File Folder Count4 + Library Folder Count1 + + 48570 + + Track ID48570 + NamePrelude In C (From The Well Tempered Clavier BWV 846) + ArtistGabriela Montero + Album ArtistGabriela Montero + ComposerJohann Sebastian Bach + AlbumBach And Beyond + GenreClassical + KindMPEG audio file + Size6069986 + Total Time258272 + Disc Number1 + Disc Count1 + Track Number7 + Track Count15 + Year2006 + Date Modified2012-08-22T03:03:53Z + Date Added2012-08-22T03:42:45Z + Bit Rate181 + Sample Rate44100 + CommentsAmazon.com Song ID: 201980477 + Play Count1 + Play Date3428475618 + Play Date UTC2012-08-22T04:50:18Z + Artwork Count1 + Persistent ID1ACEEA74808C6B52 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Gabriela%20Montero/Bach%20And%20Beyond/07%20Prelude%20In%20C%20(From%20The%20Well%20Tempered%20Clavier%20BWV%20846).mp3 + File Folder Count4 + Library Folder Count1 + + 48573 + + Track ID48573 + NameSheep May Safely Graze (From Cantata BWV 208) + ArtistGabriela Montero + Album ArtistGabriela Montero + ComposerJohann Sebastian Bach + AlbumBach And Beyond + GenreClassical + KindMPEG audio file + Size5136949 + Total Time226142 + Disc Number1 + Disc Count1 + Track Number8 + Track Count15 + Year2006 + Date Modified2012-08-22T03:07:12Z + Date Added2012-08-22T03:42:45Z + Bit Rate173 + Sample Rate44100 + CommentsAmazon.com Song ID: 201980481 + Play Count1 + Play Date3428475844 + Play Date UTC2012-08-22T04:54:04Z + Artwork Count1 + Persistent ID481E3F843B0C8352 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Gabriela%20Montero/Bach%20And%20Beyond/08%20Sheep%20May%20Safely%20Graze%20(From%20Cantata%20BWV%20208).mp3 + File Folder Count4 + Library Folder Count1 + + 48576 + + Track ID48576 + Name2 Part Invention In D Minor (No.4 BWV 775) + ArtistGabriela Montero + Album ArtistGabriela Montero + ComposerJohann Sebastian Bach + AlbumBach And Beyond + GenreClassical + KindMPEG audio file + Size4098241 + Total Time160130 + Disc Number1 + Disc Count1 + Track Number9 + Track Count15 + Year2006 + Date Modified2012-08-22T03:08:18Z + Date Added2012-08-22T03:42:45Z + Bit Rate193 + Sample Rate44100 + CommentsAmazon.com Song ID: 201980483 + Play Count1 + Play Date3428476001 + Play Date UTC2012-08-22T04:56:41Z + Artwork Count1 + Persistent IDECDBCFB9F645FB56 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Gabriela%20Montero/Bach%20And%20Beyond/09%202%20Part%20Invention%20In%20D%20Minor%20(No.4%20BWV%20775).mp3 + File Folder Count4 + Library Folder Count1 + + 48579 + + Track ID48579 + NameBrandenburg Concerto No.3 (Movement 3 - Allegro BWV 1048) + ArtistGabriela Montero + Album ArtistGabriela Montero + ComposerJohann Sebastian Bach + AlbumBach And Beyond + GenreClassical + KindMPEG audio file + Size9347111 + Total Time363363 + Disc Number1 + Disc Count1 + Track Number10 + Track Count15 + Year2006 + Date Modified2012-08-22T02:59:35Z + Date Added2012-08-22T03:42:46Z + Bit Rate200 + Sample Rate44100 + CommentsAmazon.com Song ID: 201980484 + Artwork Count1 + Persistent ID5537A92E50DD3A99 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Gabriela%20Montero/Bach%20And%20Beyond/10%20Brandenburg%20Concerto%20No.3%20(Movement%203%20-%20Allegro%20BWV%201048).mp3 + File Folder Count4 + Library Folder Count1 + + 48582 + + Track ID48582 + NameKeyboard Concerto In D Minor (Movement 2 - Adagio BWV 974) + ArtistGabriela Montero + Album ArtistGabriela Montero + ComposerJohann Sebastian Bach + AlbumBach And Beyond + GenreClassical + KindMPEG audio file + Size8361104 + Total Time383373 + Disc Number1 + Disc Count1 + Track Number11 + Track Count15 + Year2006 + Date Modified2012-08-22T03:01:58Z + Date Added2012-08-22T03:42:46Z + Bit Rate169 + Sample Rate44100 + CommentsAmazon.com Song ID: 201980486 + Artwork Count1 + Persistent IDFB1C0EEB138DE178 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Gabriela%20Montero/Bach%20And%20Beyond/11%20Keyboard%20Concerto%20In%20D%20Minor%20(Movement%202%20-%20Adagio%20BWV%20974).mp3 + File Folder Count4 + Library Folder Count1 + + 48585 + + Track ID48585 + NameToccata In D Minor (BWV 556) + ArtistGabriela Montero + Album ArtistGabriela Montero + ComposerJohann Sebastian Bach + AlbumBach And Beyond + GenreClassical + KindMPEG audio file + Size5342363 + Total Time191346 + Disc Number1 + Disc Count1 + Track Number12 + Track Count15 + Year2006 + Date Modified2012-08-22T03:11:18Z + Date Added2012-08-22T03:42:46Z + Bit Rate214 + Sample Rate44100 + CommentsAmazon.com Song ID: 201980487 + Artwork Count1 + Persistent IDF01FDBA03ACDAA0D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Gabriela%20Montero/Bach%20And%20Beyond/12%20Toccata%20In%20D%20Minor%20(BWV%20556).mp3 + File Folder Count4 + Library Folder Count1 + + 48588 + + Track ID48588 + NameSuite No.2, BWV 1067: Rondo + ArtistGabriela Montero + Album ArtistGabriela Montero + ComposerJohann Sebastian Bach + AlbumBach And Beyond + GenreClassical + KindMPEG audio file + Size6664113 + Total Time260806 + Disc Number1 + Disc Count1 + Track Number13 + Track Count15 + Year2006 + Date Modified2012-08-22T03:10:43Z + Date Added2012-08-22T03:42:46Z + Bit Rate197 + Sample Rate44100 + CommentsAmazon.com Song ID: 201980489 + Artwork Count1 + Persistent ID0347C3BD189ED8BB + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Gabriela%20Montero/Bach%20And%20Beyond/13%20Suite%20No.2,%20BWV%201067_%20Rondo.mp3 + File Folder Count4 + Library Folder Count1 + + 48591 + + Track ID48591 + NameAnna Magdalena Songbook + ArtistGabriela Montero + Album ArtistGabriela Montero + ComposerJohann Sebastian Bach + AlbumBach And Beyond + GenreClassical + KindMPEG audio file + Size6945479 + Total Time258821 + Disc Number1 + Disc Count1 + Track Number14 + Track Count15 + Year2006 + Date Modified2012-08-22T03:03:24Z + Date Added2012-08-22T03:42:46Z + Bit Rate207 + Sample Rate44100 + CommentsAmazon.com Song ID: 201980491 + Artwork Count1 + Persistent ID84700AD7E2E74F21 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Gabriela%20Montero/Bach%20And%20Beyond/14%20Anna%20Magdalena%20Songbook.mp3 + File Folder Count4 + Library Folder Count1 + + 48594 + + Track ID48594 + NameChaconne (From Violin Partita In D Minor BWV 1004) + ArtistGabriela Montero + Album ArtistGabriela Montero + ComposerJohann Sebastian Bach + AlbumBach And Beyond + GenreClassical + KindMPEG audio file + Size7958898 + Total Time297900 + Disc Number1 + Disc Count1 + Track Number15 + Track Count15 + Year2006 + Date Modified2012-08-22T03:09:46Z + Date Added2012-08-22T03:42:46Z + Bit Rate207 + Sample Rate44100 + CommentsAmazon.com Song ID: 201980493 + Artwork Count1 + Persistent IDA1841BD93A29C267 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Gabriela%20Montero/Bach%20And%20Beyond/15%20Chaconne%20(From%20Violin%20Partita%20In%20D%20Minor%20BWV%201004).mp3 + File Folder Count4 + Library Folder Count1 + + 48597 + + Track ID48597 + NameAngel + ArtistMassive Attack + Album ArtistMassive Attack + ComposerRobert Del Naja + AlbumMezzanine + GenreRap & Hip-Hop + KindMPEG audio file + Size11245978 + Total Time379324 + Disc Number1 + Disc Count1 + Track Number1 + Track Count11 + Year2006 + Date Modified2012-08-22T03:14:44Z + Date Added2012-08-22T03:42:46Z + Bit Rate233 + Sample Rate44100 + CommentsAmazon.com Song ID: 202078697 + Artwork Count1 + Persistent ID30A4D4CA7A641B2E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Massive%20Attack/Mezzanine/01%20Angel.mp3 + File Folder Count4 + Library Folder Count1 + + 48600 + + Track ID48600 + NameRisingson + ArtistMassive Attack + Album ArtistMassive Attack + ComposerRobert Del Naja + AlbumMezzanine + GenreRap & Hip-Hop + KindMPEG audio file + Size8874569 + Total Time298866 + Disc Number1 + Disc Count1 + Track Number2 + Track Count11 + Year2006 + Date Modified2012-08-22T03:29:05Z + Date Added2012-08-22T03:42:46Z + Bit Rate232 + Sample Rate44100 + CommentsAmazon.com Song ID: 202078704 + Artwork Count1 + Persistent ID55B4B7FC2D4D0D63 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Massive%20Attack/Mezzanine/02%20Risingson.mp3 + File Folder Count4 + Library Folder Count1 + + 48603 + + Track ID48603 + NameTeardrop + ArtistMassive Attack + Album ArtistMassive Attack + ComposerLiz Fraser + AlbumMezzanine + GenreRap & Hip-Hop + KindMPEG audio file + Size8732624 + Total Time330814 + Disc Number1 + Disc Count1 + Track Number3 + Track Count11 + Year2006 + Date Modified2012-08-22T03:12:13Z + Date Added2012-08-22T03:42:46Z + Bit Rate206 + Sample Rate44100 + CommentsAmazon.com Song ID: 202078712 + Play Count1 + Play Date3428648666 + Play Date UTC2012-08-24T04:54:26Z + Artwork Count1 + Persistent ID764997BE2CD075BA + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Massive%20Attack/Mezzanine/03%20Teardrop.mp3 + File Folder Count4 + Library Folder Count1 + + 48606 + + Track ID48606 + NameInertia Creeps + ArtistMassive Attack + Album ArtistMassive Attack + ComposerRobert Del Naja + AlbumMezzanine + GenreRap & Hip-Hop + KindMPEG audio file + Size10557998 + Total Time357198 + Disc Number1 + Disc Count1 + Track Number4 + Track Count11 + Year2006 + Date Modified2012-08-22T03:19:56Z + Date Added2012-08-22T03:42:46Z + Bit Rate232 + Sample Rate44100 + CommentsAmazon.com Song ID: 202078713 + Artwork Count1 + Persistent ID972A6772373A1EF3 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Massive%20Attack/Mezzanine/04%20Inertia%20Creeps.mp3 + File Folder Count4 + Library Folder Count1 + + 48609 + + Track ID48609 + NameExchange + ArtistMassive Attack + Album ArtistMassive Attack + ComposerBob Hilliard + AlbumMezzanine + GenreRap & Hip-Hop + KindMPEG audio file + Size6866927 + Total Time251245 + Disc Number1 + Disc Count1 + Track Number5 + Track Count11 + Year2006 + Date Modified2012-08-22T03:28:22Z + Date Added2012-08-22T03:42:46Z + Bit Rate213 + Sample Rate44100 + CommentsAmazon.com Song ID: 202078714 + Artwork Count1 + Persistent IDE22216B86C967A34 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Massive%20Attack/Mezzanine/05%20Exchange.mp3 + File Folder Count4 + Library Folder Count1 + + 48612 + + Track ID48612 + NameDissolved Girl + ArtistMassive Attack + Album ArtistMassive Attack + ComposerRobert Del Naja + AlbumMezzanine + GenreRap & Hip-Hop + KindMPEG audio file + Size10652102 + Total Time366942 + Disc Number1 + Disc Count1 + Track Number6 + Track Count11 + Year2006 + Date Modified2012-08-22T03:24:29Z + Date Added2012-08-22T03:42:46Z + Bit Rate228 + Sample Rate44100 + CommentsAmazon.com Song ID: 202078715 + Artwork Count1 + Persistent ID6A760C8BA60F8295 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Massive%20Attack/Mezzanine/06%20Dissolved%20Girl.mp3 + File Folder Count4 + Library Folder Count1 + + 48615 + + Track ID48615 + NameMan Next Door + ArtistMassive Attack + Album ArtistMassive Attack + ComposerTyrone Evans + AlbumMezzanine + GenreRap & Hip-Hop + KindMPEG audio file + Size8577820 + Total Time356153 + Disc Number1 + Disc Count1 + Track Number7 + Track Count11 + Year2006 + Date Modified2012-08-22T03:21:01Z + Date Added2012-08-22T03:42:46Z + Bit Rate188 + Sample Rate44100 + CommentsAmazon.com Song ID: 202078716 + Artwork Count1 + Persistent ID5749641639167638 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Massive%20Attack/Mezzanine/07%20Man%20Next%20Door.mp3 + File Folder Count4 + Library Folder Count1 + + 48618 + + Track ID48618 + NameBlack Milk + ArtistMassive Attack + Album ArtistMassive Attack + ComposerLiz Fraser + AlbumMezzanine + GenreRap & Hip-Hop + KindMPEG audio file + Size10130774 + Total Time381727 + Disc Number1 + Disc Count1 + Track Number8 + Track Count11 + Year2006 + Date Modified2012-08-22T03:16:54Z + Date Added2012-08-22T03:42:46Z + Bit Rate208 + Sample Rate44100 + CommentsAmazon.com Song ID: 202078717 + Artwork Count1 + Persistent IDD66FFE585940E534 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Massive%20Attack/Mezzanine/08%20Black%20Milk.mp3 + File Folder Count4 + Library Folder Count1 + + 48621 + + Track ID48621 + NameMezzanine + ArtistMassive Attack + Album ArtistMassive Attack + ComposerRobert Del Naja + AlbumMezzanine + GenreRap & Hip-Hop + KindMPEG audio file + Size9651552 + Total Time356858 + Disc Number1 + Disc Count1 + Track Number9 + Track Count11 + Year2006 + Date Modified2012-08-22T03:18:39Z + Date Added2012-08-22T03:42:47Z + Bit Rate212 + Sample Rate44100 + CommentsAmazon.com Song ID: 202078718 + Artwork Count1 + Persistent ID71A69D6B31CF45EB + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Massive%20Attack/Mezzanine/09%20Mezzanine.mp3 + File Folder Count4 + Library Folder Count1 + + 48624 + + Track ID48624 + NameGroup Four + ArtistMassive Attack + Album ArtistMassive Attack + ComposerLiz Fraser + AlbumMezzanine + GenreRap & Hip-Hop + KindMPEG audio file + Size14872027 + Total Time492329 + Disc Number1 + Disc Count1 + Track Number10 + Track Count11 + Year2006 + Date Modified2012-08-22T03:27:45Z + Date Added2012-08-22T03:42:47Z + Bit Rate238 + Sample Rate44100 + CommentsAmazon.com Song ID: 202078719 + Artwork Count1 + Persistent IDEDFE48644EDF754D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Massive%20Attack/Mezzanine/10%20Group%20Four.mp3 + File Folder Count4 + Library Folder Count1 + + 48627 + + Track ID48627 + Name(Exchange) + ArtistMassive Attack + Album ArtistMassive Attack + ComposerBob Hilliard + AlbumMezzanine + GenreRap & Hip-Hop + KindMPEG audio file + Size6805284 + Total Time250906 + Disc Number1 + Disc Count1 + Track Number11 + Track Count11 + Year2006 + Date Modified2012-08-22T03:21:51Z + Date Added2012-08-22T03:42:47Z + Bit Rate211 + Sample Rate44100 + CommentsAmazon.com Song ID: 202078720 + Artwork Count1 + Persistent ID233C223155861C4B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Massive%20Attack/Mezzanine/11%20(Exchange).mp3 + File Folder Count4 + Library Folder Count1 + + + Playlists + + + Namechirag-2 + Playlist ID63740 + Playlist Persistent ID82AAEC295B105FF6 + All Items + Playlist Items + + + Track ID48552 + + + Track ID48555 + + + Track ID48558 + + + Track ID48561 + + + Track ID48564 + + + Track ID48567 + + + Track ID48570 + + + Track ID48573 + + + Track ID48576 + + + Track ID48579 + + + Track ID48582 + + + Track ID48585 + + + Track ID48588 + + + Track ID48591 + + + Track ID48594 + + + Track ID48597 + + + Track ID48600 + + + Track ID48603 + + + Track ID48606 + + + Track ID48609 + + + Track ID48612 + + + Track ID48615 + + + Track ID48618 + + + Track ID48621 + + + Track ID48624 + + + Track ID48627 + + + Track ID4278 + + + Track ID4280 + + + Track ID4282 + + + Track ID4284 + + + Track ID4286 + + + Track ID4288 + + + Track ID4290 + + + Track ID4292 + + + Track ID4294 + + + Track ID4296 + + + Track ID4298 + + + Track ID4300 + + + Track ID3622 + + + Track ID3624 + + + Track ID3626 + + + Track ID3628 + + + Track ID3556 + + + Track ID3558 + + + Track ID3560 + + + Track ID3562 + + + Track ID3564 + + + Track ID3566 + + + Track ID3568 + + + Track ID3570 + + + Track ID3572 + + + Track ID3574 + + + Track ID3576 + + + Track ID3578 + + + Track ID3580 + + + Track ID3582 + + + Track ID3584 + + + Track ID2266 + + + Track ID2268 + + + Track ID2270 + + + Track ID2272 + + + Track ID2274 + + + Track ID2276 + + + Track ID2278 + + + Track ID2280 + + + Track ID2282 + + + Track ID5210 + + + Track ID5212 + + + Track ID5214 + + + Track ID5216 + + + Track ID5218 + + + Track ID5220 + + + Track ID5222 + + + Track ID5224 + + + Track ID5226 + + + Track ID5228 + + + Track ID5230 + + + Track ID5232 + + + Track ID5234 + + + Track ID5236 + + + Track ID5238 + + + Track ID5240 + + + Track ID5242 + + + Track ID5244 + + + Track ID5246 + + + Track ID5248 + + + Track ID5250 + + + Track ID5252 + + + Track ID5254 + + + Track ID5256 + + + Track ID5258 + + + Track ID5260 + + + Track ID5262 + + + Track ID5264 + + + Track ID4416 + + + Track ID4418 + + + Track ID4420 + + + Track ID4422 + + + Track ID4424 + + + Track ID4426 + + + Track ID4428 + + + Track ID4430 + + + Track ID4432 + + + Track ID4434 + + + Track ID4436 + + + Track ID4438 + + + Track ID4440 + + + Track ID4442 + + + Track ID4444 + + + Track ID4762 + + + Track ID4764 + + + Track ID4766 + + + Track ID4768 + + + Track ID4770 + + + Track ID4772 + + + Track ID4774 + + + Track ID4776 + + + Track ID4778 + + + Track ID4780 + + + Track ID4782 + + + Track ID4784 + + + Track ID4786 + + + Track ID4788 + + + Track ID4790 + + + Track ID4792 + + + Track ID4794 + + + Track ID4796 + + + Track ID4798 + + + + + + diff --git a/GeekyProjects/C1_ParsingMusicList/playlist.py b/GeekyProjects/C1_ParsingMusicList/playlist.py new file mode 100644 index 0000000..67140ce --- /dev/null +++ b/GeekyProjects/C1_ParsingMusicList/playlist.py @@ -0,0 +1,111 @@ +import plistlib + +def findDuplicates(fileName): + ''' Find the duplicate track in the specific file + ''' + + print('Find duplicate tracks in %s...' % fileName) + + # read in a playlist + with open(fileName, 'rb') as f: + plist = plistlib.load(f) + + # get the tracks from the Tracks dictionary + tracks = plist['Tracks'] + + # create a track name dictionary + trackNames = {} + + # iterate through the tracks + for trackId, track in tracks.items(): + try: + name = track['Name'] + duration = track['Total Time'] + + # look for existing entries + if name in trackNames: + # if a name and duration match, increment the count + # round the track length to the nearest second + if duration // 1000 == trackNames[name][0]//1000: + count = trackNames[name][1] + trackNames[name] = (duration, count + 1) + else: + # add dictionary entry as tuple (duration, count) + trackNames[name] = (duration, 1) + except: + # ignore + pass + + + # print(trackNames) + + # store duplicates as (name, count) tuples + dups = [] + for k, v in trackNames.items(): + if v[1] > 1: + dups.append((v[1], k)) + + # Save duplicates to a file + if len(dups) > 0: + print("Found %d duplicates. Track names saved to dup.txt" % len(dups)) + else: + print("No duplicate tracks found!") + + # print(dups) + + f = open("dups.txt", "w") + for val in dups: + f.write("[%d] %s \n" % (val[0], val[1])) + f.close() + + +def findCommonTracks(fileNames): + ''' Find the common tracks across multiple p-list files + ''' + + trackNameSets = [] + for fileName in fileNames: + # create a new set + trackNames = set() + + # read in playlist + with open(fileName, 'rb') as f: + plist = plistlib.load(f) + + # get the tracks + tracks = plist['Tracks'] + + # iterate through the tracks + for trackId, track in tracks.items(): + try: + # add the track name to a set + trackNames.add(track['Name']) + except: + # ignore + pass + + # add to list + trackNameSets.append(trackNames) + + # get the set of common tracks + commonTracks = set.intersection(*trackNameSets) + + # write to file + if len(commonTracks) > 0: + f = open("common.txt", "w", encoding='utf-8') + for val in commonTracks: + s = "%s\n" % val + f.write(s) + f.close() + print("%d common tracks found. Track names written to common.txt. " % len(commonTracks)) + else: + print("No common tracks!") + + +# findDuplicates('maya.xml') + +# print("------") + +# findDuplicates('mymusic.xml') + +findCommonTracks(['maya.xml', 'mymusic.xml']) \ No newline at end of file diff --git a/GeekyProjects/C1_ParsingMusicList/rating.xml b/GeekyProjects/C1_ParsingMusicList/rating.xml new file mode 100644 index 0000000..bcddd1f --- /dev/null +++ b/GeekyProjects/C1_ParsingMusicList/rating.xml @@ -0,0 +1,4188 @@ + + + + + Major Version1 + Minor Version1 + Date2014-06-12T14:28:58Z + Application Version11.2.2 + Features5 + Show Content Ratings + Music Folderfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/ + Library Persistent ID5E7B8CC1F12D8073 + Tracks + + 2138 + + Track ID2138 + NameTalkin' Bout A Revolution + ArtistTracy Chapman + AlbumTracy Chapman + GenreFolk + KindAAC audio file + Size3902717 + Total Time160332 + Disc Number1 + Disc Count1 + Track Number1 + Track Count11 + Year1982 + Date Modified2006-08-01T08:20:38Z + Date Added2009-10-03T14:51:38Z + Bit Rate192 + Sample Rate44100 + Play Count6 + Play Date3484294145 + Play Date UTC2014-05-30T05:59:05Z + Rating60 + Album Rating80 + Album Rating Computed + Normalization1047 + Artwork Count1 + Persistent ID623F96C1E865B876 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tracy%20Chapman/Tracy%20Chapman/01%20Talkin'%20Bout%20A%20Revolution.m4a + File Folder Count4 + Library Folder Count1 + + 2854 + + Track ID2854 + NameAirbag + ArtistRadiohead + ComposerThom Yorke, Jonny Greenwood, Phil Selway, Ed O'Brien, Colin Greenwood + AlbumOK Computer + GenreAlternative & Punk + KindAAC audio file + Size7039685 + Total Time284400 + Disc Number1 + Disc Count1 + Track Number1 + Track Count12 + Year1997 + Date Modified2008-10-09T15:52:27Z + Date Added2009-10-03T14:54:31Z + Bit Rate192 + Sample Rate44100 + Skip Count1 + Skip Date2014-05-16T15:46:06Z + Rating60 + Album Rating60 + Album Rating Computed + Normalization7105 + Artwork Count1 + Persistent IDC5CD828B38A8A7B0 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Radiohead/OK%20Computer/01%20Airbag.m4a + File Folder Count4 + Library Folder Count1 + + 2856 + + Track ID2856 + NameExit Music (For A Film) + ArtistRadiohead + ComposerThom Yorke, Jonny Greenwood, Phil Selway, Ed O'Brien, Colin Greenwood + AlbumOK Computer + GenreAlternative & Punk + KindAAC audio file + Size6462848 + Total Time264800 + Disc Number1 + Disc Count1 + Track Number4 + Track Count12 + Year1997 + Date Modified2007-09-20T19:47:28Z + Date Added2009-10-03T14:54:32Z + Bit Rate192 + Sample Rate44100 + Rating60 + Album Rating60 + Album Rating Computed + Normalization2004 + Artwork Count1 + Persistent ID257CFFF5AF9F7A59 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Radiohead/OK%20Computer/04%20Exit%20Music%20(For%20A%20Film).m4a + File Folder Count4 + Library Folder Count1 + + 2938 + + Track ID2938 + NameBohemian Rhapsody + ArtistQueen + ComposerMercury, Freddie + AlbumGreatest Hits I + GenreRock + KindAAC audio file + Size8968180 + Total Time358293 + Disc Number1 + Disc Count1 + Track Number1 + Track Count17 + Year1975 + Date Modified2008-10-01T01:25:43Z + Date Added2009-10-03T14:54:37Z + Bit Rate191 + Sample Rate44100 + Skip Count1 + Skip Date2014-06-09T15:48:38Z + Rating80 + Album Rating60 + Album Rating Computed + Normalization1202 + Artwork Count1 + Persistent ID9BAC1C9759997523 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Queen/Greatest%20Hits%20I/01%20Bohemian%20Rhapsody.m4a + File Folder Count4 + Library Folder Count1 + + 2940 + + Track ID2940 + NameAnother One Bites The Dust + ArtistQueen + ComposerDeacon, John + AlbumGreatest Hits I + GenreRock + KindAAC audio file + Size5446841 + Total Time216906 + Disc Number1 + Disc Count1 + Track Number2 + Track Count17 + Year1980 + Date Modified2008-10-01T01:25:42Z + Date Added2009-10-03T14:54:37Z + Bit Rate187 + Sample Rate44100 + Rating80 + Album Rating60 + Album Rating Computed + Normalization1202 + Artwork Count1 + Persistent ID1819FA315B9C3F13 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Queen/Greatest%20Hits%20I/02%20Another%20One%20Bites%20The%20Dust.m4a + File Folder Count4 + Library Folder Count1 + + 2944 + + Track ID2944 + NameFat Bottomed Girls + ArtistQueen + ComposerMay, Brian + AlbumGreatest Hits I + GenreRock + KindAAC audio file + Size5236599 + Total Time204560 + Disc Number1 + Disc Count1 + Track Number4 + Track Count17 + Year1978 + Date Modified2008-10-01T01:25:40Z + Date Added2009-10-03T14:54:37Z + Bit Rate190 + Sample Rate44100 + Rating40 + Album Rating60 + Album Rating Computed + Normalization1611 + Artwork Count1 + Persistent ID563B9DB3206885EC + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Queen/Greatest%20Hits%20I/04%20Fat%20Bottomed%20Girls.m4a + File Folder Count4 + Library Folder Count1 + + 2970 + + Track ID2970 + NameWe Will Rock You + ArtistQueen + ComposerMay, Brian + AlbumGreatest Hits I + GenreRock + KindAAC audio file + Size3271976 + Total Time122773 + Disc Number1 + Disc Count1 + Track Number16 + Track Count17 + Year1977 + Date Modified2008-10-01T01:25:28Z + Date Added2009-10-03T14:54:40Z + Bit Rate191 + Sample Rate44100 + Play Count1 + Play Date3484153326 + Play Date UTC2014-05-28T14:52:06Z + Skip Count1 + Skip Date2014-06-12T14:16:30Z + Rating60 + Album Rating60 + Album Rating Computed + Normalization2644 + Artwork Count1 + Persistent IDF68310BB8B9250BD + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Queen/Greatest%20Hits%20I/16%20We%20Will%20Rock%20You.m4a + File Folder Count4 + Library Folder Count1 + + 2994 + + Track ID2994 + NameBohemian Rhapsody + ArtistQueen + ComposerMercury + AlbumA Night At The Opera + GenreRock + KindAAC audio file + Size11573019 + Total Time354346 + Disc Number1 + Disc Count1 + Track Number11 + Track Count12 + Year1975 + Date Modified2008-10-15T13:41:24Z + Date Added2009-10-03T14:54:42Z + Bit Rate256 + Sample Rate44100 + Rating100 + Album Rating100 + Album Rating Computed + Normalization2516 + Artwork Count1 + Sort AlbumNight At The Opera + Persistent ID316EC2E7A08C13D8 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Queen/A%20Night%20At%20The%20Opera/11%20Bohemian%20Rhapsody.m4a + File Folder Count4 + Library Folder Count1 + + 3020 + + Track ID3020 + NameShine On You Crazy Diamond (Parts I-V) + ArtistPink Floyd + ComposerDavid Gilmour, Roger Waters, Richard Wright + AlbumWish You Were Here + GenreRock + KindAAC audio file + Size19874872 + Total Time820266 + Disc Number1 + Disc Count1 + Track Number1 + Track Count5 + Year1975 + BPM192 + Date Modified2006-08-13T06:45:50Z + Date Added2009-10-03T14:54:45Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3389528756 + Play Date UTC2011-05-29T10:15:56Z + Rating80 + Album Rating80 + Album Rating Computed + Normalization1703 + Artwork Count1 + Persistent IDF5D244D92BDA0086 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/Wish%20You%20Were%20Here/01%20Shine%20On%20You%20Crazy%20Diamond%20(Parts%20I-V).m4a + File Folder Count4 + Library Folder Count1 + + 3022 + + Track ID3022 + NameWelcome to the Machine + ArtistPink Floyd + ComposerRoger Waters + AlbumWish You Were Here + GenreRock + KindAAC audio file + Size10943614 + Total Time451162 + Disc Number1 + Disc Count1 + Track Number2 + Track Count5 + Year1975 + BPM192 + Date Modified2006-08-13T06:45:42Z + Date Added2009-10-03T14:54:45Z + Bit Rate192 + Sample Rate44100 + Rating40 + Album Rating80 + Album Rating Computed + Normalization2061 + Artwork Count1 + Persistent IDC021DD7293F29AF4 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/Wish%20You%20Were%20Here/02%20Welcome%20to%20the%20Machine.m4a + File Folder Count4 + Library Folder Count1 + + 3024 + + Track ID3024 + NameHave A Cigar + ArtistPink Floyd + ComposerRoger Waters + AlbumWish You Were Here + GenreRock + KindAAC audio file + Size7497620 + Total Time308754 + Disc Number1 + Disc Count1 + Track Number3 + Track Count5 + Year1975 + BPM192 + Date Modified2006-08-13T06:45:36Z + Date Added2009-10-03T14:54:45Z + Bit Rate192 + Sample Rate44100 + Rating60 + Album Rating80 + Album Rating Computed + Normalization2536 + Artwork Count1 + Persistent ID94ADE859464E9F84 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/Wish%20You%20Were%20Here/03%20Have%20A%20Cigar.m4a + File Folder Count4 + Library Folder Count1 + + 3026 + + Track ID3026 + NameWish You Were Here + ArtistPink Floyd + ComposerRoger Waters, David Gilmour + AlbumWish You Were Here + GenreRock + KindAAC audio file + Size8117727 + Total Time334389 + Disc Number1 + Disc Count1 + Track Number4 + Track Count5 + Year1975 + BPM192 + Date Modified2006-08-13T06:45:34Z + Date Added2009-10-03T14:54:46Z + Bit Rate192 + Sample Rate44100 + Rating100 + Album Rating80 + Album Rating Computed + Normalization993 + Artwork Count1 + Persistent ID81EAC05E8DE4546D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/Wish%20You%20Were%20Here/04%20Wish%20You%20Were%20Here.m4a + File Folder Count4 + Library Folder Count1 + + 3028 + + Track ID3028 + NameShine On You Crazy Diamond (Parts VI-IX) + ArtistPink Floyd + ComposerRoger Waters, Richard Wright, David Gilmour + AlbumWish You Were Here + GenreRock + KindAAC audio file + Size18209792 + Total Time751489 + Disc Number1 + Disc Count1 + Track Number5 + Track Count5 + Year1975 + BPM192 + Date Modified2006-08-13T06:45:30Z + Date Added2009-10-03T14:54:46Z + Bit Rate192 + Sample Rate44100 + Rating80 + Album Rating80 + Album Rating Computed + Normalization1341 + Artwork Count1 + Persistent IDB483A0BD8FE15A6A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/Wish%20You%20Were%20Here/05%20Shine%20On%20You%20Crazy%20Diamond%20(Parts%20VI-IX).m4a + File Folder Count4 + Library Folder Count1 + + 3982 + + Track ID3982 + NamePiano Theme + ArtistJaved Akhtar + ComposerA.R. Rahman/Javed Akhtar + Album1947 + GenreSoundtrack + KindAAC audio file + Size2697906 + Total Time113313 + Track Number5 + Year1999 + Date Modified2007-07-27T05:54:58Z + Date Added2009-10-03T14:56:13Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3383451522 + Play Date UTC2011-03-20T02:08:42Z + Rating60 + Album Rating60 + Album Rating Computed + Normalization830 + Persistent IDBFCB37B0BA55EDFA + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Javed%20Akhtar/1947/05%20Piano%20Theme.m4a + File Folder Count4 + Library Folder Count1 + + 4232 + + Track ID4232 + NameArrival O T Queen O Sheba + ArtistGeorge Frideric Handel + ComposerGeorge Frederick Handel (1685-1759) + AlbumGreatest Hits + GenreClassical + KindAAC audio file + Size4559441 + Total Time187639 + Track Number1 + Track Count22 + Date Modified2006-07-30T12:55:14Z + Date Added2009-10-03T14:56:31Z + Bit Rate192 + Sample Rate44100 + Rating60 + Rating Computed + Album Rating60 + Normalization383 + Artwork Count1 + Persistent IDFF8E9A784EB2ECB2 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Frideric%20Handel/Greatest%20Hits/01%20Arrival%20O%20T%20Queen%20O%20Sheba.m4a + File Folder Count4 + Library Folder Count1 + + 4234 + + Track ID4234 + NameWater Music SuN1_Allegro_Andante_Allegro da capo + ArtistGeorge Frideric Handel + ComposerGeorge Frederick Handel (1685-1759) + AlbumGreatest Hits + GenreClassical + KindAAC audio file + Size11070748 + Total Time457083 + Track Number2 + Track Count22 + Date Modified2006-07-30T12:55:14Z + Date Added2009-10-03T14:56:31Z + Bit Rate192 + Sample Rate44100 + Rating60 + Rating Computed + Album Rating60 + Normalization936 + Artwork Count1 + Persistent IDBB3D67E74BBB276C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Frideric%20Handel/Greatest%20Hits/02%20Water%20Music%20SuN1_Allegro_Andante_Allegro%20da%20capo.m4a + File Folder Count4 + Library Folder Count1 + + 4236 + + Track ID4236 + NameWater Music SuN1_Air + ArtistGeorge Frideric Handel + ComposerGeorge Frederick Handel (1685-1759) + AlbumGreatest Hits + GenreClassical + KindAAC audio file + Size3854424 + Total Time158288 + Track Number3 + Track Count22 + Date Modified2006-07-30T12:55:14Z + Date Added2009-10-03T14:56:31Z + Bit Rate192 + Sample Rate44100 + Rating60 + Rating Computed + Album Rating60 + Normalization66 + Artwork Count1 + Persistent ID8A99DE362807DF2F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Frideric%20Handel/Greatest%20Hits/03%20Water%20Music%20SuN1_Air.m4a + File Folder Count4 + Library Folder Count1 + + 4238 + + Track ID4238 + NameWater Music SuN1_Minuet + ArtistGeorge Frideric Handel + ComposerGeorge Frederick Handel (1685-1759) + AlbumGreatest Hits + GenreClassical + KindAAC audio file + Size5633160 + Total Time232337 + Track Number4 + Track Count22 + Date Modified2006-07-30T12:55:14Z + Date Added2009-10-03T14:56:31Z + Bit Rate192 + Sample Rate44100 + Rating60 + Rating Computed + Album Rating60 + Normalization450 + Artwork Count1 + Persistent IDE6C92D407E6AEFDD + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Frideric%20Handel/Greatest%20Hits/04%20Water%20Music%20SuN1_Minuet.m4a + File Folder Count4 + Library Folder Count1 + + 4240 + + Track ID4240 + NameWater Music SuN1_Bourree + ArtistGeorge Frideric Handel + ComposerGeorge Frederick Handel (1685-1759) + AlbumGreatest Hits + GenreClassical + KindAAC audio file + Size1665531 + Total Time67150 + Track Number5 + Track Count22 + Date Modified2006-07-30T12:55:14Z + Date Added2009-10-03T14:56:31Z + Bit Rate192 + Sample Rate44100 + Rating60 + Rating Computed + Album Rating60 + Normalization130 + Artwork Count1 + Persistent ID28AABC0896142A3D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Frideric%20Handel/Greatest%20Hits/05%20Water%20Music%20SuN1_Bourree.m4a + File Folder Count4 + Library Folder Count1 + + 4242 + + Track ID4242 + NameWater Music SuN1_Hornpipe + ArtistGeorge Frideric Handel + ComposerGeorge Frederick Handel (1685-1759) + AlbumGreatest Hits + GenreClassical + KindAAC audio file + Size2327915 + Total Time94735 + Track Number6 + Track Count22 + Date Modified2006-07-30T12:55:14Z + Date Added2009-10-03T14:56:31Z + Bit Rate192 + Sample Rate44100 + Rating60 + Rating Computed + Album Rating60 + Normalization580 + Artwork Count1 + Persistent ID331F96F72D32336F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Frideric%20Handel/Greatest%20Hits/06%20Water%20Music%20SuN1_Hornpipe.m4a + File Folder Count4 + Library Folder Count1 + + 4244 + + Track ID4244 + NameLargo Fr "Xerxes" + ArtistGeorge Frideric Handel + ComposerGeorge Frederick Handel (1685-1759) + AlbumGreatest Hits + GenreClassical + KindAAC audio file + Size8575893 + Total Time353986 + Track Number7 + Track Count22 + Date Modified2006-07-30T12:55:14Z + Date Added2009-10-03T14:56:31Z + Bit Rate192 + Sample Rate44100 + Rating60 + Rating Computed + Album Rating60 + Normalization585 + Artwork Count1 + Persistent IDA49317089ED94651 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Frideric%20Handel/Greatest%20Hits/07%20Largo%20Fr%20_Xerxes_.m4a + File Folder Count4 + Library Folder Count1 + + 4246 + + Track ID4246 + NameMusic F T Royal Fireworks_Ov + ArtistGeorge Frideric Handel + ComposerGeorge Frederick Handel (1685-1759) + AlbumGreatest Hits + GenreClassical + KindAAC audio file + Size12427207 + Total Time513136 + Track Number8 + Track Count22 + Date Modified2006-07-30T12:55:16Z + Date Added2009-10-03T14:56:31Z + Bit Rate192 + Sample Rate44100 + Rating60 + Rating Computed + Album Rating60 + Normalization1461 + Artwork Count1 + Persistent ID130F6DEF45B155D2 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Frideric%20Handel/Greatest%20Hits/08%20Music%20F%20T%20Royal%20Fireworks_Ov.m4a + File Folder Count4 + Library Folder Count1 + + 4248 + + Track ID4248 + NameMusic F T Royal Fireworks_La rejouissance, Allegro + ArtistGeorge Frideric Handel + ComposerGeorge Frederick Handel (1685-1759) + AlbumGreatest Hits + GenreClassical + KindAAC audio file + Size3076440 + Total Time125897 + Track Number9 + Track Count22 + Date Modified2006-07-30T12:55:16Z + Date Added2009-10-03T14:56:32Z + Bit Rate192 + Sample Rate44100 + Rating60 + Rating Computed + Album Rating60 + Normalization1579 + Artwork Count1 + Persistent IDBA04BD3BB9D30216 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Frideric%20Handel/Greatest%20Hits/09%20Music%20F%20T%20Royal%20Fireworks_La%20rejouissance,%20Allegro.m4a + File Folder Count4 + Library Folder Count1 + + 4250 + + Track ID4250 + NameT Harmonious Blacksmith + ArtistGeorge Frideric Handel + ComposerGeorge Frederick Handel (1685-1759) + AlbumGreatest Hits + GenreClassical + KindAAC audio file + Size6314530 + Total Time260526 + Track Number10 + Track Count22 + Date Modified2006-07-30T12:55:16Z + Date Added2009-10-03T14:56:32Z + Bit Rate192 + Sample Rate44100 + Rating60 + Rating Computed + Album Rating60 + Normalization74 + Artwork Count1 + Persistent IDDCE22A5F5EB897C8 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Frideric%20Handel/Greatest%20Hits/10%20T%20Harmonious%20Blacksmith.m4a + File Folder Count4 + Library Folder Count1 + + 4252 + + Track ID4252 + NameLet T Bright Seraphim Fr Samson + ArtistGeorge Frideric Handel + ComposerGeorge Frederick Handel (1685-1759) + AlbumGreatest Hits + GenreClassical + KindAAC audio file + Size8419221 + Total Time347508 + Track Number11 + Track Count22 + Date Modified2006-07-30T12:55:16Z + Date Added2009-10-03T14:56:32Z + Bit Rate192 + Sample Rate44100 + Rating60 + Rating Computed + Album Rating60 + Normalization1141 + Artwork Count1 + Persistent ID78F1A149CAF9395E + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Frideric%20Handel/Greatest%20Hits/11%20Let%20T%20Bright%20Seraphim%20Fr%20Samson.m4a + File Folder Count4 + Library Folder Count1 + + 4254 + + Track ID4254 + NameSuN11 F Harpsichord_Sarabande + ArtistGeorge Frideric Handel + ComposerGeorge Frederick Handel (1685-1759) + AlbumGreatest Hits + GenreClassical + KindAAC audio file + Size4364185 + Total Time179512 + Track Number12 + Track Count22 + Date Modified2006-07-30T12:55:16Z + Date Added2009-10-03T14:56:32Z + Bit Rate192 + Sample Rate44100 + Rating60 + Rating Computed + Album Rating60 + Normalization287 + Artwork Count1 + Persistent ID0BC07A80AA7DDD3A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Frideric%20Handel/Greatest%20Hits/12%20SuN11%20F%20Harpsichord_Sarabande.m4a + File Folder Count4 + Library Folder Count1 + + 4256 + + Track ID4256 + NameWater Music SuN2_WO tempo indication + ArtistGeorge Frideric Handel + ComposerGeorge Frederick Handel (1685-1759) + AlbumGreatest Hits + GenreClassical + KindAAC audio file + Size2829967 + Total Time115633 + Track Number13 + Track Count22 + Date Modified2006-07-30T12:55:16Z + Date Added2009-10-03T14:56:32Z + Bit Rate192 + Sample Rate44100 + Rating60 + Rating Computed + Album Rating60 + Normalization601 + Artwork Count1 + Persistent IDF8A39E63146501AB + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Frideric%20Handel/Greatest%20Hits/13%20Water%20Music%20SuN2_WO%20tempo%20indication.m4a + File Folder Count4 + Library Folder Count1 + + 4258 + + Track ID4258 + NameWater Music SuN2_Alla Hornpipe + ArtistGeorge Frideric Handel + ComposerGeorge Frederick Handel (1685-1759) + AlbumGreatest Hits + GenreClassical + KindAAC audio file + Size5677534 + Total Time234195 + Track Number14 + Track Count22 + Date Modified2006-07-30T12:55:16Z + Date Added2009-10-03T14:56:32Z + Bit Rate192 + Sample Rate44100 + Rating60 + Rating Computed + Album Rating60 + Normalization914 + Artwork Count1 + Persistent ID59BA63369DBF1690 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Frideric%20Handel/Greatest%20Hits/14%20Water%20Music%20SuN2_Alla%20Hornpipe.m4a + File Folder Count4 + Library Folder Count1 + + 4260 + + Track ID4260 + NameWater Music Suite #2: Minuet + ArtistGeorge Frideric Handel + ComposerGeorge Frederick Handel (1685-1759) + AlbumGreatest Hits + GenreClassical + KindAAC audio file + Size1852885 + Total Time74952 + Track Number15 + Track Count22 + Date Modified2006-07-30T12:55:16Z + Date Added2009-10-03T14:56:32Z + Bit Rate192 + Sample Rate44100 + Rating60 + Rating Computed + Album Rating60 + Normalization738 + Artwork Count1 + Persistent IDFFBAC6B786127B6B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Frideric%20Handel/Greatest%20Hits/15%20Water%20Music%20Suite%20%232_%20Minuet.m4a + File Folder Count4 + Library Folder Count1 + + 4262 + + Track ID4262 + NameWater Music Suite #2: Lentement + ArtistGeorge Frideric Handel + ComposerGeorge Frederick Handel (1685-1759) + AlbumGreatest Hits + GenreClassical + KindAAC audio file + Size2920492 + Total Time119418 + Track Number16 + Track Count22 + Date Modified2006-07-30T12:55:16Z + Date Added2009-10-03T14:56:32Z + Bit Rate192 + Sample Rate44100 + Rating60 + Rating Computed + Album Rating60 + Normalization544 + Artwork Count1 + Persistent ID3F44A1B34A751FD3 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Frideric%20Handel/Greatest%20Hits/16%20Water%20Music%20Suite%20%232_%20Lentement.m4a + File Folder Count4 + Library Folder Count1 + + 4264 + + Track ID4264 + NameWater Music Suite #2: Bourree + ArtistGeorge Frideric Handel + ComposerGeorge Frederick Handel (1685-1759) + AlbumGreatest Hits + GenreClassical + KindAAC audio file + Size1562780 + Total Time62878 + Track Number17 + Track Count22 + Date Modified2006-07-30T12:55:16Z + Date Added2009-10-03T14:56:33Z + Bit Rate192 + Sample Rate44100 + Rating60 + Rating Computed + Album Rating60 + Normalization891 + Artwork Count1 + Persistent ID5E4C28A0CC4A176A + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Frideric%20Handel/Greatest%20Hits/17%20Water%20Music%20Suite%20%232_%20Bourree.m4a + File Folder Count4 + Library Folder Count1 + + 4266 + + Track ID4266 + NameMinuet from "Berenice" + ArtistGeorge Frideric Handel + ComposerGeorge Frederick Handel (1685-1759) + AlbumGreatest Hits + GenreClassical + KindAAC audio file + Size3955758 + Total Time162515 + Track Number18 + Track Count22 + Date Modified2006-07-30T12:55:16Z + Date Added2009-10-03T14:56:33Z + Bit Rate192 + Sample Rate44100 + Rating60 + Rating Computed + Album Rating60 + Normalization104 + Artwork Count1 + Persistent ID4A970E7C5715A574 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Frideric%20Handel/Greatest%20Hits/18%20Minuet%20from%20_Berenice_.m4a + File Folder Count4 + Library Folder Count1 + + 4268 + + Track ID4268 + NameThe Cuckoo and the Nightingale + ArtistGeorge Frideric Handel + ComposerGeorge Frederick Handel (1685-1759) + AlbumGreatest Hits + GenreClassical + KindAAC audio file + Size5623252 + Total Time231942 + Track Number19 + Track Count22 + Date Modified2006-07-30T12:55:16Z + Date Added2009-10-03T14:56:33Z + Bit Rate192 + Sample Rate44100 + Rating60 + Rating Computed + Album Rating60 + Normalization399 + Artwork Count1 + Sort NameCuckoo and the Nightingale + Persistent ID9076CA66B52D1E76 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Frideric%20Handel/Greatest%20Hits/19%20The%20Cuckoo%20and%20the%20Nightingale.m4a + File Folder Count4 + Library Folder Count1 + + 4270 + + Track ID4270 + NameSee, The Conquering Hero Come + ArtistGeorge Frideric Handel + ComposerGeorge Frederick Handel (1685-1759) + AlbumGreatest Hits + GenreClassical + KindAAC audio file + Size5615103 + Total Time231594 + Track Number20 + Track Count22 + Date Modified2006-07-30T12:55:16Z + Date Added2009-10-03T14:56:33Z + Bit Rate192 + Sample Rate44100 + Rating60 + Rating Computed + Album Rating60 + Normalization492 + Artwork Count1 + Persistent ID35988583E1443A6D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Frideric%20Handel/Greatest%20Hits/20%20See,%20The%20Conquering%20Hero%20Come.m4a + File Folder Count4 + Library Folder Count1 + + 4272 + + Track ID4272 + NameEternal Source of Light Divine + ArtistGeorge Frideric Handel + ComposerGeorge Frederick Handel (1685-1759) + AlbumGreatest Hits + GenreClassical + KindAAC audio file + Size3547127 + Total Time145494 + Track Number21 + Track Count22 + Date Modified2006-07-30T12:55:16Z + Date Added2009-10-03T14:56:33Z + Bit Rate192 + Sample Rate44100 + Rating60 + Rating Computed + Album Rating60 + Normalization1252 + Artwork Count1 + Persistent IDC9B9F4E4D5E3912B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Frideric%20Handel/Greatest%20Hits/21%20Eternal%20Source%20of%20Light%20Divine.m4a + File Folder Count4 + Library Folder Count1 + + 4274 + + Track ID4274 + NameHallelujah Chorus + ArtistGeorge Frideric Handel + ComposerGeorge Frederick Handel (1685-1759) + AlbumGreatest Hits + GenreClassical + KindAAC audio file + Size5772900 + Total Time238188 + Track Number22 + Track Count22 + Date Modified2006-07-30T12:55:16Z + Date Added2009-10-03T14:56:33Z + Bit Rate192 + Sample Rate44100 + Rating60 + Rating Computed + Album Rating60 + Normalization1644 + Artwork Count1 + Persistent ID69C282532D62283F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Frideric%20Handel/Greatest%20Hits/22%20Hallelujah%20Chorus.m4a + File Folder Count4 + Library Folder Count1 + + 4534 + + Track ID4534 + NameAnasthasia + ArtistDeep Forest + ComposerEric Mouquet, Michel Sanchez + AlbumBoheme + GenreWorld + KindAAC audio file + Size2741027 + Total Time108482 + Disc Number1 + Disc Count1 + Track Number1 + Track Count12 + Year1995 + Date Modified2006-08-07T06:40:38Z + Date Added2009-10-03T14:57:11Z + Bit Rate192 + Sample Rate44100 + Rating40 + Rating Computed + Album Rating40 + Normalization1202 + Artwork Count1 + Persistent ID0266154AE3FA6EAB + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Deep%20Forest/Boheme/01%20Anasthasia.m4a + File Folder Count4 + Library Folder Count1 + + 4536 + + Track ID4536 + NameBohemian Ballet + ArtistDeep Forest + ComposerEric Mouquet, Michel Sanchez + AlbumBoheme + GenreWorld + KindAAC audio file + Size7731672 + Total Time317508 + Disc Number1 + Disc Count1 + Track Number2 + Track Count12 + Year1995 + Date Modified2006-08-07T06:40:38Z + Date Added2009-10-03T14:57:11Z + Bit Rate192 + Sample Rate44100 + Rating40 + Rating Computed + Album Rating40 + Normalization2220 + Artwork Count1 + Persistent IDD45BAC9C513A222C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Deep%20Forest/Boheme/02%20Bohemian%20Ballet.m4a + File Folder Count4 + Library Folder Count1 + + 4538 + + Track ID4538 + NameMarta's Song + ArtistDeep Forest + ComposerEric Mouquet, Michel Sanchez + AlbumBoheme + GenreWorld + KindAAC audio file + Size6210038 + Total Time252608 + Disc Number1 + Disc Count1 + Track Number3 + Track Count12 + Year1995 + Date Modified2006-08-07T06:40:38Z + Date Added2009-10-03T14:57:12Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3441736576 + Play Date UTC2013-01-22T16:26:16Z + Rating40 + Rating Computed + Album Rating40 + Normalization1519 + Artwork Count1 + Persistent ID8B8F63BAA8906E8D + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Deep%20Forest/Boheme/03%20Marta's%20Song.m4a + File Folder Count4 + Library Folder Count1 + + 4540 + + Track ID4540 + NameGathering + ArtistDeep Forest + ComposerEric Mouquet, Michel Sanchez + AlbumBoheme + GenreWorld + KindAAC audio file + Size6831353 + Total Time279334 + Disc Number1 + Disc Count1 + Track Number4 + Track Count12 + Year1995 + Date Modified2006-08-07T06:40:38Z + Date Added2009-10-03T14:57:12Z + Bit Rate192 + Sample Rate44100 + Rating40 + Rating Computed + Album Rating40 + Normalization2306 + Artwork Count1 + Persistent IDAA91A7833835F57C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Deep%20Forest/Boheme/04%20Gathering.m4a + File Folder Count4 + Library Folder Count1 + + 4542 + + Track ID4542 + NameLament + ArtistDeep Forest + ComposerEric Mouquet, Michel Sanchez + AlbumBoheme + GenreWorld + KindAAC audio file + Size4704572 + Total Time189914 + Disc Number1 + Disc Count1 + Track Number5 + Track Count12 + Year1995 + Date Modified2006-08-07T06:40:38Z + Date Added2009-10-03T14:57:12Z + Bit Rate192 + Sample Rate44100 + Rating40 + Rating Computed + Album Rating40 + Normalization2020 + Artwork Count1 + Persistent IDE4D11D5B41CE65CA + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Deep%20Forest/Boheme/05%20Lament.m4a + File Folder Count4 + Library Folder Count1 + + 4544 + + Track ID4544 + NameBulgarian Melody + ArtistDeep Forest + ComposerEric Mouquet, Michel Sanchez + AlbumBoheme + GenreWorld + KindAAC audio file + Size4661946 + Total Time188149 + Disc Number1 + Disc Count1 + Track Number6 + Track Count12 + Year1995 + Date Modified2006-08-07T06:40:38Z + Date Added2009-10-03T14:57:12Z + Bit Rate192 + Sample Rate44100 + Rating40 + Rating Computed + Album Rating40 + Normalization1202 + Artwork Count1 + Persistent IDE133488328008F5B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Deep%20Forest/Boheme/06%20Bulgarian%20Melody.m4a + File Folder Count4 + Library Folder Count1 + + 4546 + + Track ID4546 + NameDeep Folk Song + ArtistDeep Forest + ComposerEric Mouquet, Michel Sanchez + AlbumBoheme + GenreWorld + KindAAC audio file + Size1933328 + Total Time74534 + Disc Number1 + Disc Count1 + Track Number7 + Track Count12 + Year1995 + Date Modified2006-08-07T06:40:38Z + Date Added2009-10-03T14:57:12Z + Bit Rate192 + Sample Rate44100 + Rating40 + Rating Computed + Album Rating40 + Normalization1202 + Artwork Count1 + Persistent ID042AE4184165DCC8 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Deep%20Forest/Boheme/07%20Deep%20Folk%20Song.m4a + File Folder Count4 + Library Folder Count1 + + 4548 + + Track ID4548 + NameFreedom Cry + ArtistDeep Forest + ComposerEric Mouquet, Michel Sanchez + AlbumBoheme + GenreWorld + KindAAC audio file + Size4879241 + Total Time199968 + Disc Number1 + Disc Count1 + Track Number8 + Track Count12 + Year1995 + Date Modified2006-08-07T06:40:38Z + Date Added2009-10-03T14:57:12Z + Bit Rate192 + Sample Rate44100 + Rating40 + Album Rating40 + Normalization1804 + Artwork Count1 + Persistent ID2E59D8976C34831C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Deep%20Forest/Boheme/08%20Freedom%20Cry.m4a + File Folder Count4 + Library Folder Count1 + + 4550 + + Track ID4550 + NameTwosome + ArtistDeep Forest + ComposerEric Mouquet, Michel Sanchez + AlbumBoheme + GenreWorld + KindAAC audio file + Size6060881 + Total Time247221 + Disc Number1 + Disc Count1 + Track Number9 + Track Count12 + Year1995 + Date Modified2006-08-07T06:40:38Z + Date Added2009-10-03T14:57:12Z + Bit Rate192 + Sample Rate44100 + Rating40 + Rating Computed + Album Rating40 + Normalization1510 + Artwork Count1 + Persistent ID377181C023F2CB71 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Deep%20Forest/Boheme/09%20Twosome.m4a + File Folder Count4 + Library Folder Count1 + + 4552 + + Track ID4552 + NameCafé Europa + ArtistDeep Forest + ComposerEric Mouquet, Michel Sanchez + AlbumBoheme + GenreWorld + KindAAC audio file + Size6336610 + Total Time257856 + Disc Number1 + Disc Count1 + Track Number10 + Track Count12 + Year1995 + Date Modified2006-08-07T06:40:38Z + Date Added2009-10-03T14:57:12Z + Bit Rate192 + Sample Rate44100 + Rating40 + Rating Computed + Album Rating40 + Normalization1343 + Artwork Count1 + Persistent ID314631390F4B1E27 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Deep%20Forest/Boheme/10%20Cafe%CC%81%20Europa.m4a + File Folder Count4 + Library Folder Count1 + + 4554 + + Track ID4554 + NameKatharina + ArtistDeep Forest + ComposerEric Mouquet, Michel Sanchez + AlbumBoheme + GenreWorld + KindAAC audio file + Size4301728 + Total Time173149 + Disc Number1 + Disc Count1 + Track Number11 + Track Count12 + Year1995 + Date Modified2006-08-07T06:40:38Z + Date Added2009-10-03T14:57:13Z + Bit Rate192 + Sample Rate44100 + Rating40 + Rating Computed + Album Rating40 + Normalization1345 + Artwork Count1 + Persistent IDA94131EB41219CAF + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Deep%20Forest/Boheme/11%20Katharina.m4a + File Folder Count4 + Library Folder Count1 + + 4556 + + Track ID4556 + NameBoheme + ArtistDeep Forest + ComposerEric Mouquet, Michel Sanchez + AlbumBoheme + GenreWorld + KindAAC audio file + Size6784539 + Total Time276617 + Disc Number1 + Disc Count1 + Track Number12 + Track Count12 + Year1995 + Date Modified2006-08-07T06:40:36Z + Date Added2009-10-03T14:57:13Z + Bit Rate192 + Sample Rate44100 + Rating40 + Rating Computed + Album Rating40 + Normalization1767 + Artwork Count1 + Persistent ID25C46E56F92C9B68 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Deep%20Forest/Boheme/12%20Boheme.m4a + File Folder Count4 + Library Folder Count1 + + 5136 + + Track ID5136 + NameWater Poems + ArtistPt. Hari Prasad Chaurasia and others + ComposerHari Prasad Chaurasia + AlbumMusic of the Rivers + GenreWorld + KindAAC audio file + Size42094058 + Total Time1738940 + Disc Number1 + Disc Count1 + Track Number1 + Track Count3 + Year1993 + Date Modified2006-07-30T08:18:08Z + Date Added2009-10-03T14:57:55Z + Bit Rate192 + Sample Rate44100 + Rating80 + Album Rating80 + Album Rating Computed + Normalization1259 + Compilation + Artwork Count1 + Persistent IDAB6C99C63A7A724B + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Music%20of%20the%20Rivers/01%20Water%20Poems%201.m4a + File Folder Count4 + Library Folder Count1 + + 5138 + + Track ID5138 + NameSong of the River + ArtistPt. Hari Prasad Chaurasia and others + ComposerHari Prasad Chaurasia + AlbumMusic of the Rivers + GenreWorld + KindAAC audio file + Size23286402 + Total Time961745 + Disc Number1 + Disc Count1 + Track Number2 + Track Count3 + Year1993 + Date Modified2006-07-30T08:18:08Z + Date Added2009-10-03T14:57:55Z + Bit Rate192 + Sample Rate44100 + Play Count1 + Play Date3349418689 + Play Date UTC2010-02-19T04:34:49Z + Rating80 + Album Rating80 + Album Rating Computed + Normalization696 + Compilation + Artwork Count1 + Persistent IDEB9A74A2207FF8E8 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Music%20of%20the%20Rivers/02%20Song%20of%20the%20River%201.m4a + File Folder Count4 + Library Folder Count1 + + 5140 + + Track ID5140 + NameDelta - Journey to the Sea + ArtistPt. Hari Prasad Chaurasia and others + ComposerHari Prasad Chaurasia + AlbumMusic of the Rivers + GenreWorld + KindAAC audio file + Size19790369 + Total Time817271 + Disc Number1 + Disc Count1 + Track Number3 + Track Count3 + Year1993 + Date Modified2006-07-30T08:18:10Z + Date Added2009-10-03T14:57:55Z + Bit Rate192 + Sample Rate44100 + Rating80 + Album Rating80 + Album Rating Computed + Normalization1215 + Compilation + Artwork Count1 + Persistent IDADADF5D23F45CC80 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Music%20of%20the%20Rivers/03%20Delta%20-%20Journey%20to%20the%20Sea%201.m4a + File Folder Count4 + Library Folder Count1 + + 6400 + + Track ID6400 + NameLa Mer - 1. From Dawn till Noon on the Sea (De l'aube à midi sur la mer) + ArtistBerliner Philharmoniker + Album ArtistBerliner Philharmoniker + ComposerClaude Debussy + AlbumRavel: Boléro / Debussy: La Mer / Mussorgsky: Pictures at an Exhibition + GenreClassical + KindMPEG audio file + Size16604877 + Total Time515082 + Disc Number1 + Disc Count1 + Track Number1 + Track Count19 + Year1996 + Date Modified2008-11-23T17:19:23Z + Date Added2009-10-03T14:59:33Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 204929326 + Play Count3 + Play Date3408275072 + Play Date UTC2012-01-01T09:34:32Z + Rating80 + Album Rating80 + Album Rating Computed + Artwork Count1 + Persistent IDC6F460041F8369F6 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Berliner%20Philharmoniker/Ravel_%20Bole%CC%81ro%20_%20Debussy_%20La%20Mer%20_%20Mussorgsky_%20Pictures%20at%20an%20Exhibition/01%20La%20Mer%20-%201.%20From%20Dawn%20till%20Noon%20on%20the%20Sea%20(De%20l'aube%20a%CC%80%20midi%20sur%20la%20mer).mp3 + File Folder Count4 + Library Folder Count1 + + 6668 + + Track ID6668 + NameKhalbali + ArtistA R Rahman, Aslam, Nacim + ComposerA R Rahman + AlbumRang De Basanti + GenreSoundtracks + KindAAC audio file + Size9168274 + Total Time379250 + Track Number5 + Date Modified2007-04-09T09:37:02Z + Date Added2009-10-03T15:00:51Z + Bit Rate192 + Sample Rate44100 + Rating80 + Album Rating80 + Album Rating Computed + Normalization2495 + Artwork Count2 + Sort ArtistR Rahman, Aslam, Nacim + Sort ComposerR Rahman + Persistent ID2B2C617EC4E37CAF + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/A%20R%20Rahman,%20Aslam,%20Nacim/Rang%20De%20Basanti/05%20Khalbali.m4a + File Folder Count4 + Library Folder Count1 + + 6776 + + Track ID6776 + NameConcierto de Aranjuez for Guitar and Orchestra - 1. Allegro con spirito + ArtistPepe Romero + Album ArtistVarious Artists + ComposerRodrigo, Joaquin + AlbumEssential Guitar + GenreClassical + KindMPEG audio file + Size11733911 + Total Time362945 + Disc Number1 + Disc Count2 + Track Number1 + Track Count18 + Year2002 + Date Modified2009-11-14T14:37:28Z + Date Added2009-11-14T15:03:01Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202532098 + Play Count3 + Play Date3399818796 + Play Date UTC2011-09-25T12:36:36Z + Rating100 + Album Rating80 + Album Rating Computed + Artwork Count1 + Persistent ID3245FADF198007E6 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Essential%20Guitar/1-01%20Concierto%20de%20Aranjuez%20for%20Guitar%20and%20Orchestra%20-%201.%20Allegro%20con%20spirito.mp3 + File Folder Count4 + Library Folder Count1 + + 6804 + + Track ID6804 + Name5 Preludes - No. 1 in E minor + ArtistJulian Bream + Album ArtistVarious Artists + ComposerVilla-Lobos, Heitor + AlbumEssential Guitar + GenreClassical + KindMPEG audio file + Size8508045 + Total Time262138 + Disc Number1 + Disc Count2 + Track Number15 + Track Count18 + Year2002 + Date Modified2009-11-14T14:52:29Z + Date Added2009-11-14T15:03:01Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202532112 + Play Count9 + Play Date3400432218 + Play Date UTC2011-10-02T15:00:18Z + Rating60 + Album Rating80 + Album Rating Computed + Artwork Count1 + Persistent IDE31BCFCEE14DAB58 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Essential%20Guitar/1-15%205%20Preludes%20-%20No.%201%20in%20E%20minor.mp3 + File Folder Count4 + Library Folder Count1 + + 9574 + + Track ID9574 + NameBach: Lute Suite In E, BWV 1006A - Gavotte En Rondeau + ArtistSharon Isbin + ComposerJohann Sebastian Bach + Album50 Best Guitar [Disc 1] + GenreClassical + KindAAC audio file + Size6393595 + Total Time192026 + Disc Number1 + Disc Count3 + Track Number1 + Track Count21 + Year1990 + Date Modified2011-10-15T14:05:10Z + Date Added2011-10-15T13:42:12Z + Bit Rate256 + Sample Rate44100 + Play Count2 + Play Date3403633825 + Play Date UTC2011-11-08T16:20:25Z + Skip Count1 + Skip Date2011-11-01T15:32:55Z + Rating20 + Rating Computed + Album Rating20 + Normalization1255 + Compilation + Artwork Count1 + Persistent ID4A93E3AF0C8635CC + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%201%5D/1-01%20Bach_%20Lute%20Suite%20In%20E,%20BWV%201006A%20-%20Gavotte%20En%20Rondeau.m4a + File Folder Count4 + Library Folder Count1 + + 9576 + + Track ID9576 + NameDowland: Allemande + ArtistChristopher Parkening + ComposerJohn Dowland + Album50 Best Guitar [Disc 1] + GenreClassical + KindAAC audio file + Size3305527 + Total Time98866 + Disc Number1 + Disc Count3 + Track Number2 + Track Count21 + Year1986 + Date Modified2011-10-15T14:05:11Z + Date Added2011-10-15T13:42:30Z + Bit Rate256 + Sample Rate44100 + Play Count12 + Play Date3403632718 + Play Date UTC2011-11-08T16:01:58Z + Skip Count2 + Skip Date2011-12-16T13:49:14Z + Rating20 + Rating Computed + Album Rating20 + Normalization660 + Compilation + Artwork Count1 + Persistent ID071A7C2BDA9AEC17 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%201%5D/1-02%20Dowland_%20Allemande.m4a + File Folder Count4 + Library Folder Count1 + + 9578 + + Track ID9578 + NameBach: Prelude, Fugue & Allegro In E Flat, BWV 998 - Prelude + ArtistManuel Barrueco + ComposerJohann Sebastian Bach + Album50 Best Guitar [Disc 1] + GenreClassical + KindAAC audio file + Size5047251 + Total Time153880 + Disc Number1 + Disc Count3 + Track Number3 + Track Count21 + Year1990 + Date Modified2011-10-15T14:05:12Z + Date Added2011-10-15T13:42:39Z + Bit Rate256 + Sample Rate44100 + Play Count4 + Play Date3403631707 + Play Date UTC2011-11-08T15:45:07Z + Rating20 + Rating Computed + Album Rating20 + Normalization342 + Compilation + Artwork Count1 + Persistent ID7FAF9AF82B874342 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%201%5D/1-03%20Bach_%20Prelude,%20Fugue%20&%20Allegro%20In%20E%20Flat,%20BWV%20998%20-%20Prelude.m4a + File Folder Count4 + Library Folder Count1 + + 9580 + + Track ID9580 + NameBach: Violin Partita #2 In D Minor, BWV 1004 - Gigue (Guitar Version) + ArtistManuel Barrueco + ComposerJohann Sebastian Bach + Album50 Best Guitar [Disc 1] + GenreClassical + KindAAC audio file + Size9717257 + Total Time294466 + Disc Number1 + Disc Count3 + Track Number4 + Track Count21 + Year1990 + Date Modified2011-10-15T14:05:13Z + Date Added2011-10-15T13:42:52Z + Bit Rate256 + Sample Rate44100 + Play Count2 + Play Date3403634260 + Play Date UTC2011-11-08T16:27:40Z + Rating20 + Rating Computed + Album Rating20 + Normalization423 + Compilation + Artwork Count1 + Persistent ID96D29144E660CCE2 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%201%5D/1-04%20Bach_%20Violin%20Partita%20%232%20In%20D%20Minor,%20BWV%201004%20-%20Gigue%20(Guitar%20Version).m4a + File Folder Count4 + Library Folder Count1 + + 9582 + + Track ID9582 + NameFroberger: Gigue + ArtistAndrés Segovia + ComposerJohann Froberger + Album50 Best Guitar [Disc 1] + GenreClassical + KindAAC audio file + Size2853943 + Total Time101266 + Disc Number1 + Disc Count3 + Track Number5 + Track Count21 + Year1991 + Date Modified2011-10-15T14:05:14Z + Date Added2011-10-15T13:43:15Z + Bit Rate256 + Sample Rate44100 + Play Count5 + Play Date3403631924 + Play Date UTC2011-11-08T15:48:44Z + Rating20 + Rating Computed + Album Rating20 + Normalization1254 + Compilation + Artwork Count1 + Persistent ID80C2D98999E89AE2 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%201%5D/1-05%20Froberger_%20Gigue.m4a + File Folder Count4 + Library Folder Count1 + + 9584 + + Track ID9584 + NameBach: Jesu, Joy Of Man's Desiring + ArtistChristopher Parkening: Los Angeles Chamber Orchestra + ComposerJohann Sebastian Bach + Album50 Best Guitar [Disc 1] + GenreClassical + KindAAC audio file + Size6449488 + Total Time193306 + Disc Number1 + Disc Count3 + Track Number6 + Track Count21 + Year1985 + Date Modified2011-10-15T14:05:15Z + Date Added2011-10-15T13:43:23Z + Bit Rate256 + Sample Rate44100 + Play Count2 + Play Date3403635515 + Play Date UTC2011-11-08T16:48:35Z + Rating20 + Rating Computed + Album Rating20 + Normalization790 + Compilation + Artwork Count1 + Persistent ID5DA9E3D025CE9A15 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%201%5D/1-06%20Bach_%20Jesu,%20Joy%20Of%20Man's%20Desiring.m4a + File Folder Count4 + Library Folder Count1 + + 9586 + + Track ID9586 + NameVivaldi: Guitar Concerto In D, RV 93 - 2. Largo + ArtistChristopher Parkening; Iona Brown: Academy Of St. Martin In The Fields + ComposerAntonio Vivaldi + Album50 Best Guitar [Disc 1] + GenreClassical + KindAAC audio file + Size9505382 + Total Time277746 + Disc Number1 + Disc Count3 + Track Number7 + Track Count21 + Year1994 + Date Modified2011-10-15T14:05:16Z + Date Added2011-10-15T13:43:37Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3403633264 + Play Date UTC2011-11-08T16:11:04Z + Rating20 + Rating Computed + Album Rating20 + Normalization427 + Compilation + Artwork Count1 + Persistent ID520775452292A7AA + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%201%5D/1-07%20Vivaldi_%20Guitar%20Concerto%20In%20D,%20RV%2093%20-%202.%20Largo.m4a + File Folder Count4 + Library Folder Count1 + + 9588 + + Track ID9588 + NameVisée: Suite #11 B Minor + ArtistManuel Barrueco + ComposerRobert De Visée + Album50 Best Guitar [Disc 1] + GenreClassical + KindAAC audio file + Size8880536 + Total Time268626 + Disc Number1 + Disc Count3 + Track Number8 + Track Count21 + Year1990 + Date Modified2011-10-15T14:05:17Z + Date Added2011-10-15T13:43:55Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3403632986 + Play Date UTC2011-11-08T16:06:26Z + Rating20 + Rating Computed + Album Rating20 + Normalization943 + Compilation + Artwork Count1 + Persistent ID4FC3EFA9A1DEB877 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%201%5D/1-08%20Vise%CC%81e_%20Suite%20%2311%20B%20Minor.m4a + File Folder Count4 + Library Folder Count1 + + 9590 + + Track ID9590 + NameCapirola: O Mia Cieca E Dura Sorte + ArtistAnthony Bailes + ComposerVincenzo Capirola + Album50 Best Guitar [Disc 1] + GenreClassical + KindAAC audio file + Size4694443 + Total Time141240 + Disc Number1 + Disc Count3 + Track Number9 + Track Count21 + Year1984 + Date Modified2011-10-15T14:05:17Z + Date Added2011-10-15T13:44:12Z + Bit Rate256 + Sample Rate44100 + Play Count2 + Play Date3403633966 + Play Date UTC2011-11-08T16:22:46Z + Skip Count1 + Skip Date2011-12-16T13:49:18Z + Rating20 + Rating Computed + Album Rating20 + Normalization1202 + Compilation + Artwork Count1 + Persistent ID4F99E79CFE9AAC07 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%201%5D/1-09%20Capirola_%20O%20Mia%20Cieca%20E%20Dura%20Sorte.m4a + File Folder Count4 + Library Folder Count1 + + 9592 + + Track ID9592 + NameScarlatti (D): Harpsichord Sonata In E, K 380 + ArtistJulian Byzantine + ComposerDomenico Scarlatti + Album50 Best Guitar [Disc 1] + GenreClassical + KindAAC audio file + Size12893034 + Total Time368746 + Disc Number1 + Disc Count3 + Track Number10 + Track Count21 + Year1985 + Date Modified2011-10-15T14:05:18Z + Date Added2011-10-15T13:44:21Z + Bit Rate256 + Sample Rate44100 + Play Count3 + Play Date3403634629 + Play Date UTC2011-11-08T16:33:49Z + Rating20 + Rating Computed + Album Rating20 + Normalization1255 + Compilation + Artwork Count1 + Persistent IDA88755F5BCE0BA54 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%201%5D/1-10%20Scarlatti%20(D)_%20Harpsichord%20Sonata%20In%20E,%20K%20380.m4a + File Folder Count4 + Library Folder Count1 + + 9594 + + Track ID9594 + NameHolborne: Countess Of Pembroke's Paradise (Pavan #15) + ArtistAnthony Bailes + ComposerAnthony Holborne + Album50 Best Guitar [Disc 1] + GenreClassical + KindAAC audio file + Size7730261 + Total Time233240 + Disc Number1 + Disc Count3 + Track Number11 + Track Count21 + Year1984 + Date Modified2011-10-15T14:05:19Z + Date Added2011-10-15T13:44:42Z + Bit Rate256 + Sample Rate44100 + Play Count4 + Play Date3403634862 + Play Date UTC2011-11-08T16:37:42Z + Skip Count1 + Skip Date2011-12-16T13:49:22Z + Rating20 + Rating Computed + Album Rating20 + Normalization1256 + Compilation + Artwork Count1 + Persistent ID9C455E36C22135EA + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%201%5D/1-11%20Holborne_%20Countess%20Of%20Pembroke's%20Paradise%20(Pavan%20%2315).m4a + File Folder Count4 + Library Folder Count1 + + 9596 + + Track ID9596 + NameHolborne: Heigh Ho Holiday (Galliard #13) + ArtistAnthony Bailes + ComposerAnthony Holborne + Album50 Best Guitar [Disc 1] + GenreClassical + KindAAC audio file + Size2821900 + Total Time86466 + Disc Number1 + Disc Count3 + Track Number12 + Track Count21 + Year1984 + Date Modified2011-10-15T14:05:19Z + Date Added2011-10-15T13:44:55Z + Bit Rate256 + Sample Rate44100 + Play Count3 + Play Date3403632276 + Play Date UTC2011-11-08T15:54:36Z + Rating20 + Rating Computed + Album Rating20 + Normalization1256 + Compilation + Artwork Count1 + Persistent ID156DE2C48BD6BA65 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%201%5D/1-12%20Holborne_%20Heigh%20Ho%20Holiday%20(Galliard%20%2313).m4a + File Folder Count4 + Library Folder Count1 + + 9598 + + Track ID9598 + NameNarváez: Variations On "Guardam Las Vacas" + ArtistOscar Ghiglia + ComposerLuis De Narváez + Album50 Best Guitar [Disc 1] + GenreClassical + KindAAC audio file + Size6282548 + Total Time185520 + Disc Number1 + Disc Count3 + Track Number13 + Track Count21 + Year1968 + Date Modified2011-10-15T14:05:20Z + Date Added2011-10-15T13:45:00Z + Bit Rate256 + Sample Rate44100 + Play Count4 + Play Date3403635700 + Play Date UTC2011-11-08T16:51:40Z + Rating20 + Rating Computed + Album Rating20 + Normalization523 + Compilation + Artwork Count1 + Persistent ID18545998B3B20EB1 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%201%5D/1-13%20Narva%CC%81ez_%20Variations%20On%20_Guardam%20Las%20Vacas_.m4a + File Folder Count4 + Library Folder Count1 + + 9600 + + Track ID9600 + NameGaultier: Piece In G For Guitar + ArtistAnthony Bailes + ComposerDenis Gaultier + Album50 Best Guitar [Disc 1] + GenreClassical + KindAAC audio file + Size12174757 + Total Time368413 + Disc Number1 + Disc Count3 + Track Number14 + Track Count21 + Year1977 + Date Modified2011-10-15T14:05:21Z + Date Added2011-10-15T13:45:10Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3403633633 + Play Date UTC2011-11-08T16:17:13Z + Rating20 + Rating Computed + Album Rating20 + Normalization1149 + Compilation + Artwork Count1 + Persistent ID3E4A86648C5D1CA4 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%201%5D/1-14%20Gaultier_%20Piece%20In%20G%20For%20Guitar.m4a + File Folder Count4 + Library Folder Count1 + + 9602 + + Track ID9602 + NamePraetorius: Terpischore - Suite In D: Courante, Ballet, Volte + ArtistChristopher Parkening; Iona Brown: Academy Of St. Martin In The Fields + ComposerMichael Praetorius + Album50 Best Guitar [Disc 1] + GenreClassical + KindAAC audio file + Size11254121 + Total Time343200 + Disc Number1 + Disc Count3 + Track Number15 + Track Count21 + Year1994 + Date Modified2011-10-15T14:05:21Z + Date Added2011-10-15T13:45:29Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3403632619 + Play Date UTC2011-11-08T16:00:19Z + Rating20 + Rating Computed + Album Rating20 + Normalization1256 + Compilation + Artwork Count1 + Persistent ID18B8ADA4459DE3BA + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%201%5D/1-15%20Praetorius_%20Terpischore%20-%20Suite%20In%20D_%20Courante,%20Ballet,%20Volte.m4a + File Folder Count4 + Library Folder Count1 + + 9604 + + Track ID9604 + NameBach: Cantata #169, BWV 169, "Gott Soll Allein Mein Herze Haben" - God Alone Should Have My Heart + ArtistChristopher Parkening; Paul Shure: Los Angeles Chamber Orchestra + ComposerJohann Sebastian Bach + Album50 Best Guitar [Disc 1] + GenreClassical + KindAAC audio file + Size6516886 + Total Time196880 + Disc Number1 + Disc Count3 + Track Number16 + Track Count21 + Year1985 + Date Modified2011-10-15T14:05:22Z + Date Added2011-10-15T13:45:45Z + Bit Rate256 + Sample Rate44100 + Play Count3 + Play Date3403635322 + Play Date UTC2011-11-08T16:45:22Z + Rating20 + Rating Computed + Album Rating20 + Normalization1256 + Compilation + Artwork Count1 + Persistent ID54927B88236C1186 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%201%5D/1-16%20Bach_%20Cantata%20%23169,%20BWV%20169,%20_Gott%20Soll%20Allein%20Mein%20Herze%20Haben_%20-%20God%20Alone%20Should%20Have%20My%20Heart.m4a + File Folder Count4 + Library Folder Count1 + + 9606 + + Track ID9606 + NameMouton: Suite In F Sharp Minor - La Belle Iris (Allemande) + ArtistAnthony Bailes + ComposerJean Mouton + Album50 Best Guitar [Disc 1] + GenreClassical + KindAAC audio file + Size8809029 + Total Time265426 + Disc Number1 + Disc Count3 + Track Number17 + Track Count21 + Year1977 + Date Modified2011-10-15T14:05:23Z + Date Added2011-10-15T13:45:55Z + Bit Rate256 + Sample Rate44100 + Play Count2 + Play Date3403632189 + Play Date UTC2011-11-08T15:53:09Z + Rating20 + Rating Computed + Album Rating20 + Normalization794 + Compilation + Artwork Count1 + Persistent ID793C1AB1693E866D + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%201%5D/1-17%20Mouton_%20Suite%20In%20F%20Sharp%20Minor%20-%20La%20Belle%20Iris%20(Allemande).m4a + File Folder Count4 + Library Folder Count1 + + 9608 + + Track ID9608 + NameVallet: Carillon De Village + ArtistAnthony Bailes + ComposerNicolas Vallet + Album50 Best Guitar [Disc 1] + GenreClassical + KindAAC audio file + Size3785370 + Total Time115773 + Disc Number1 + Disc Count3 + Track Number18 + Track Count21 + Year1984 + Date Modified2011-10-15T14:05:24Z + Date Added2011-10-15T13:46:07Z + Bit Rate256 + Sample Rate44100 + Play Count2 + Play Date3403631823 + Play Date UTC2011-11-08T15:47:03Z + Rating20 + Rating Computed + Album Rating20 + Normalization872 + Compilation + Artwork Count1 + Persistent IDD6A3A5E4B7E6A5A8 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%201%5D/1-18%20Vallet_%20Carillon%20De%20Village.m4a + File Folder Count4 + Library Folder Count1 + + 9610 + + Track ID9610 + NameScarlatti (D): Harpsichord Sonata In A, K 322 + ArtistJulian Byzantine + ComposerDomenico Scarlatti + Album50 Best Guitar [Disc 1] + GenreClassical + KindAAC audio file + Size7708787 + Total Time222026 + Disc Number1 + Disc Count3 + Track Number19 + Track Count21 + Year1985 + Date Modified2011-10-15T14:05:24Z + Date Added2011-10-15T13:46:13Z + Bit Rate256 + Sample Rate44100 + Play Count1 + Play Date3403631553 + Play Date UTC2011-11-08T15:42:33Z + Rating20 + Rating Computed + Album Rating20 + Normalization1256 + Compilation + Artwork Count1 + Persistent IDB23501956AB063BF + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%201%5D/1-19%20Scarlatti%20(D)_%20Harpsichord%20Sonata%20In%20A,%20K%20322.m4a + File Folder Count4 + Library Folder Count1 + + 9612 + + Track ID9612 + NameWeiss: Fantasie + ArtistJulian Byzantine + ComposerSilvius Leopold Weiss + Album50 Best Guitar [Disc 1] + GenreClassical + KindAAC audio file + Size5325268 + Total Time152880 + Disc Number1 + Disc Count3 + Track Number20 + Track Count21 + Year1985 + Date Modified2011-10-15T14:05:25Z + Date Added2011-10-15T13:46:23Z + Bit Rate256 + Sample Rate44100 + Play Count2 + Play Date3403631331 + Play Date UTC2011-11-08T15:38:51Z + Rating20 + Rating Computed + Album Rating20 + Normalization1257 + Compilation + Artwork Count1 + Persistent ID08C53E8F98EED6FA + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%201%5D/1-20%20Weiss_%20Fantasie.m4a + File Folder Count4 + Library Folder Count1 + + 9614 + + Track ID9614 + NameVivaldi: Mandolin Concerto In C, RV 425 - 3. Allegro + ArtistChristopher Parkening; Iona Brown: Academy Of St. Martin In The Fields + ComposerAntonio Vivaldi + Album50 Best Guitar [Disc 1] + GenreClassical + KindAAC audio file + Size8930612 + Total Time262280 + Disc Number1 + Disc Count3 + Track Number21 + Track Count21 + Year1984 + Date Modified2011-10-15T14:05:26Z + Date Added2011-10-15T13:46:29Z + Bit Rate256 + Sample Rate44100 + Play Count2 + Play Date3403635125 + Play Date UTC2011-11-08T16:42:05Z + Skip Count1 + Skip Date2011-12-16T13:49:27Z + Rating20 + Rating Computed + Album Rating20 + Normalization1256 + Compilation + Artwork Count1 + Persistent ID407DA7D7BADEC952 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%201%5D/1-21%20Vivaldi_%20Mandolin%20Concerto%20In%20C,%20RV%20425%20-%203.%20Allegro.m4a + File Folder Count4 + Library Folder Count1 + + 10666 + + Track ID10666 + NameMysterons + ArtistPortishead + Album ArtistPortishead + ComposerGeoff Barrow + AlbumDummy + GenrePop + KindMPEG audio file + Size9903112 + Total Time306259 + Disc Number1 + Disc Count1 + Track Number1 + Track Count11 + Year1994 + Date Modified2012-08-22T03:35:25Z + Date Added2012-08-22T03:42:47Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202640613 + Play Count1 + Play Date3428494843 + Play Date UTC2012-08-22T10:10:43Z + Skip Count1 + Skip Date2014-01-12T15:49:34Z + Rating40 + Album Rating60 + Album Rating Computed + Artwork Count1 + Persistent IDF798EC4F2580E57C + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Portishead/Dummy/01%20Mysterons.mp3 + File Folder Count4 + Library Folder Count1 + + 10668 + + Track ID10668 + NameSour Times + ArtistPortishead + Album ArtistPortishead + ComposerHenry Roscoe Brooks + AlbumDummy + GenrePop + KindMPEG audio file + Size8232127 + Total Time254040 + Disc Number1 + Disc Count1 + Track Number2 + Track Count11 + Year1994 + Date Modified2012-08-22T03:36:04Z + Date Added2012-08-22T03:42:47Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202640614 + Play Count4 + Play Date3472406629 + Play Date UTC2014-01-12T15:53:49Z + Skip Count1 + Skip Date2014-05-16T15:46:00Z + Rating80 + Album Rating60 + Album Rating Computed + Artwork Count1 + Persistent ID84EFA4AA42D4DD03 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Portishead/Dummy/02%20Sour%20Times.mp3 + File Folder Count4 + Library Folder Count1 + + 10670 + + Track ID10670 + NameStrangers + ArtistPortishead + Album ArtistPortishead + ComposerGeoff Barrow + AlbumDummy + GenrePop + KindMPEG audio file + Size7720529 + Total Time238053 + Disc Number1 + Disc Count1 + Track Number3 + Track Count11 + Year1994 + Date Modified2012-08-22T03:34:23Z + Date Added2012-08-22T03:42:47Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202640615 + Play Count1 + Play Date3430642081 + Play Date UTC2012-09-16T06:38:01Z + Rating60 + Album Rating60 + Album Rating Computed + Artwork Count1 + Persistent IDCC690F8F4C0B1725 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Portishead/Dummy/03%20Strangers.mp3 + File Folder Count4 + Library Folder Count1 + + 10678 + + Track ID10678 + NameNumb + ArtistPortishead + Album ArtistPortishead + ComposerGeoff Barrow + AlbumDummy + GenrePop + KindMPEG audio file + Size7719683 + Total Time238027 + Disc Number1 + Disc Count1 + Track Number7 + Track Count11 + Year1994 + Date Modified2012-08-22T03:37:31Z + Date Added2012-08-22T03:42:47Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202640619 + Play Count1 + Play Date3430643102 + Play Date UTC2012-09-16T06:55:02Z + Rating40 + Album Rating60 + Album Rating Computed + Artwork Count1 + Persistent IDEF7F62FA2E047E63 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Portishead/Dummy/07%20Numb.mp3 + File Folder Count4 + Library Folder Count1 + + 10770 + + Track ID10770 + NameChannels And Winds + ArtistMadras/Pandit Ravi Shankar/Partha Sarathy/T Srinivasan + ComposerPandit Ravi Shankar/Philip Glass + AlbumPassages + GenreWorld Music + KindMPEG audio file + Size19259169 + Total Time480914 + Year2005 + Date Modified2012-12-14T10:35:39Z + Date Added2012-12-14T10:38:25Z + Bit Rate320 + Sample Rate44100 + Play Count1 + Play Date3485445186 + Play Date UTC2014-06-12T13:43:06Z + Rating60 + Album Rating60 + Album Rating Computed + Artwork Count1 + Persistent IDF973AB9524E0271F + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Madras_Pandit%20Ravi%20Shankar_Partha%20Sarathy_T%20Srinivasan/Passages/Channels%20And%20Winds.mp3 + File Folder Count4 + Library Folder Count1 + + 10882 + + Track ID10882 + NamePi's Lullaby + ArtistAnwar Khurshid / Aruna Kalle / Cardinal Vaughan Memorial School / Chris Bleth / Courtney Grueschow / Evergreen Club Contemporary Gamelan / Jatinder Jeetu / Jeetu Prakesh / Mychael Danna / Rajesh Srinivasan / Thomas Fetherstonhaugh / Ulhas Bapat / V Selvag + AlbumLife Of Pi + GenreClassical + KindMPEG audio file + Size8930644 + Total Time222798 + Year2012 + Date Modified2013-01-14T03:20:50Z + Date Added2013-01-14T03:21:05Z + Bit Rate320 + Sample Rate44100 + Play Count4 + Play Date3485103823 + Play Date UTC2014-06-08T14:53:43Z + Rating100 + Album Rating100 + Album Rating Computed + Artwork Count1 + Persistent ID566F6E4DE27704C5 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Anwar%20Khurshid%20_%20Aruna%20Kalle%20_%20Cardinal%20Vaughan%20Memorial%20School%20_%20Chris%20Bleth%20_%20Courtney%20Grueschow%20_%20Evergreen%20Club%20Contemporary%20Gamelan%20_%20Jatinder%20Jeetu%20_%20Jeetu%20Prakesh%20_%20Mychael%20Danna%20_%20Rajesh%20Srinivasan%20_%20Thomas%20Fetherstonhaugh%20_%20Ulhas%20Bapat%20_%20V%20Selv/Life%20Of%20Pi/Pi's%20Lullaby.mp3 + File Folder Count4 + Library Folder Count1 + + 11010 + + Track ID11010 + NameO Saiyyan + ArtistAjay-Atul/Roop Kumar Rathod + Album ArtistVarious Artists + ComposerAjay Gogavale/Atul Gogavale + AlbumAgneepath + GenreSoundtrack + KindMPEG audio file + Size11253958 + Total Time278595 + Track Number2 + Track Count6 + Year2013 + Date Modified2013-05-13T09:15:18Z + Date Added2013-05-13T09:15:27Z + Bit Rate320 + Sample Rate44100 + Play Count1 + Play Date3485104102 + Play Date UTC2014-06-08T14:58:22Z + Rating80 + Album Rating80 + Album Rating Computed + Artwork Count1 + Persistent IDABAC54629E84B525 + Track TypeFile + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Agneepath/02%20O%20Saiyyan.mp3 + File Folder Count4 + Library Folder Count1 + + 11382 + + Track ID11382 + NameUnexplainable Stories + ArtistCloud Cult + Album ArtistCloud Cult + ComposerCraig Minowa + AlbumLight Chasers + GenreAlternative + KindPurchased AAC audio file + Size9910999 + Total Time279360 + Disc Number1 + Disc Count1 + Track Number1 + Track Count16 + Year2010 + Date Modified2014-06-12T13:28:49Z + Date Added2013-12-29T13:04:48Z + Bit Rate256 + Sample Rate44100 + Release Date2010-09-14T07:00:00Z + Rating100 + Album Rating60 + Album Rating Computed + Normalization3649 + Artwork Count1 + Persistent ID0186FCBD79B199A9 + Track TypeFile + Purchased + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Cloud%20Cult/Light%20Chasers/01%20Unexplainable%20Stories.m4a + File Folder Count4 + Library Folder Count1 + + 11386 + + Track ID11386 + NameYou'll Be Bright (Invocation Part 1) + ArtistCloud Cult + Album ArtistCloud Cult + ComposerCraig Minowa + AlbumLight Chasers + GenreAlternative + KindPurchased AAC audio file + Size8307083 + Total Time236133 + Disc Number1 + Disc Count1 + Track Number3 + Track Count16 + Year2010 + Date Modified2014-06-12T13:28:08Z + Date Added2013-12-29T13:04:49Z + Bit Rate256 + Sample Rate44100 + Skip Count1 + Skip Date2014-06-12T13:28:26Z + Release Date2010-09-14T07:00:00Z + Rating60 + Album Rating60 + Album Rating Computed + Normalization5915 + Artwork Count1 + Persistent ID0186FCBD79B199AB + Track TypeFile + Purchased + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Cloud%20Cult/Light%20Chasers/03%20You'll%20Be%20Bright%20(Invocation%20Part%201).m4a + File Folder Count4 + Library Folder Count1 + + 11392 + + Track ID11392 + NameThe Exploding People + ArtistCloud Cult + Album ArtistCloud Cult + ComposerCraig Minowa + AlbumLight Chasers + GenreAlternative + KindPurchased AAC audio file + Size9625334 + Total Time268986 + Disc Number1 + Disc Count1 + Track Number6 + Track Count16 + Year2010 + Date Modified2014-06-12T13:28:25Z + Date Added2013-12-29T13:04:49Z + Bit Rate256 + Sample Rate44100 + Release Date2010-09-14T07:00:00Z + Rating40 + Album Rating60 + Album Rating Computed + Normalization2658 + Artwork Count1 + Sort NameExploding People + Persistent ID0186FCBD79B199AE + Track TypeFile + Purchased + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Cloud%20Cult/Light%20Chasers/06%20The%20Exploding%20People.m4a + File Folder Count4 + Library Folder Count1 + + 11478 + + Track ID11478 + NameSour Times + ArtistPortishead + Album ArtistPortishead + ComposerHenry Roscoe Brooks + AlbumDummy + GenrePop + KindAAC audio file + Size8850337 + Total Time254013 + Disc Number1 + Disc Count1 + Track Number2 + Track Count11 + Year1994 + Date Modified2014-05-16T15:55:42Z + Date Added2014-05-16T15:55:35Z + Bit Rate256 + Sample Rate44100 + CommentsAmazon.com Song ID: 202640614 + Play Count4 + Play Date3472406629 + Play Date UTC2014-01-12T15:53:49Z + Skip Count1 + Skip Date2014-05-16T15:46:00Z + Rating80 + Album Rating60 + Album Rating Computed + Normalization3554 + Artwork Count1 + Persistent ID927CD594CD34B1FB + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Portishead/Dummy/02%20Sour%20Times.m4a + File Folder Count4 + Library Folder Count1 + + 11496 + + Track ID11496 + NameRock On!! + ArtistFarhan Akhtar + ComposerShankar Ehsaan Loy + AlbumRock On!! + GenreWorld + KindAAC audio file + Size7793220 + Total Time235200 + Disc Number1 + Disc Count1 + Track Number3 + Track Count9 + Year2008 + Date Modified2014-05-16T15:56:54Z + Date Added2014-05-16T15:56:49Z + Bit Rate256 + Sample Rate44100 + Skip Count1 + Skip Date2014-06-12T13:28:09Z + Rating80 + Album Rating80 + Album Rating Computed + Normalization3941 + Compilation + Artwork Count1 + Persistent ID79531C51E7836618 + Track TypeFile + File Type1295270176 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Rock%20On!!/03%20Rock%20On!!%201.m4a + File Folder Count4 + Library Folder Count1 + + 11500 + + Track ID11500 + NameAcross The Universe + ArtistThe Beatles + ComposerLennon/McCartney + AlbumLet It Be + GenreRock + KindMPEG audio file + Size4606643 + Total Time228649 + Disc Number1 + Disc Count1 + Track Number3 + Track Count12 + Year1970 + Date Modified2014-05-16T15:57:13Z + Date Added2014-05-16T15:57:08Z + Bit Rate160 + Sample Rate44100 + Play Count1 + Play Date3393072210 + Play Date UTC2011-07-09T10:33:30Z + Skip Count1 + Skip Date2014-06-12T13:27:52Z + Rating60 + Album Rating60 + Album Rating Computed + Normalization1252 + Artwork Count1 + Sort ArtistBeatles + Persistent IDA9FAB94E26E005FE + Track TypeFile + File Type1297106739 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Let%20It%20Be/03%20Across%20The%20Universe.mp3 + File Folder Count4 + Library Folder Count1 + + 11502 + + Track ID11502 + NameBlowin' In The Wind + ArtistBob Dylan + ComposerBob Dylan & B. Dylan/H. Thomas + AlbumThe Freewheelin' Bob Dylan + GenreFolk + KindMPEG audio file + Size3404516 + Total Time169090 + Disc Number1 + Disc Count1 + Track Number1 + Track Count13 + Year1963 + Date Modified2014-05-16T15:57:16Z + Date Added2014-05-16T15:57:13Z + Bit Rate160 + Sample Rate44100 + Play Count3 + Play Date3457109046 + Play Date UTC2013-07-19T14:34:06Z + Rating100 + Album Rating100 + Album Rating Computed + Normalization1610 + Artwork Count1 + Sort AlbumFreewheelin' Bob Dylan + Persistent ID695DA439CCAAB593 + Track TypeFile + File Type1297106739 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Dylan/The%20Freewheelin'%20Bob%20Dylan/01%20Blowin'%20In%20The%20Wind.mp3 + File Folder Count4 + Library Folder Count1 + + 11504 + + Track ID11504 + NameExodus + ArtistBob Marley & The Wailers + ComposerBob Marley + AlbumExodus + GenreReggae + KindMPEG audio file + Size9123848 + Total Time455497 + Disc Number1 + Disc Count1 + Track Number5 + Track Count10 + Year1977 + Date Modified2014-05-16T15:57:24Z + Date Added2014-05-16T15:57:16Z + Bit Rate160 + Sample Rate44100 + Play Count1 + Play Date3430645553 + Play Date UTC2012-09-16T07:35:53Z + Rating60 + Album Rating60 + Album Rating Computed + Normalization1162 + Artwork Count1 + Persistent IDF22C6495979C1111 + Track TypeFile + File Type1297106739 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Marley%20&%20The%20Wailers/Exodus/05%20Exodus.mp3 + File Folder Count4 + Library Folder Count1 + + 11506 + + Track ID11506 + NameGod Shuffled His Feet + ArtistCrash Test Dummies + ComposerBrad Roberts + AlbumGod Shuffled His Feet + GenreAlternative & Punk + KindMPEG audio file + Size6256402 + Total Time310543 + Disc Number1 + Disc Count1 + Track Number1 + Track Count12 + Year1993 + Date Modified2014-05-16T15:57:30Z + Date Added2014-05-16T15:57:30Z + Bit Rate160 + Sample Rate44100 + Play Count1 + Play Date3360253487 + Play Date UTC2010-06-24T14:14:47Z + Skip Count2 + Skip Date2014-06-12T12:10:15Z + Rating80 + Album Rating80 + Album Rating Computed + Normalization3238 + Artwork Count1 + Persistent IDF44EEB8D03AEDA47 + Track TypeFile + File Type1297106739 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Crash%20Test%20Dummies/God%20Shuffled%20His%20Feet/01%20God%20Shuffled%20His%20Feet.mp3 + File Folder Count4 + Library Folder Count1 + + 11508 + + Track ID11508 + NameTears In Heaven + ArtistEric Clapton + ComposerEric Clapton & Will Jennings + AlbumUnplugged + GenreBlues + KindMPEG audio file + Size5556321 + Total Time276166 + Disc Number1 + Disc Count1 + Track Number4 + Track Count14 + Year1992 + Date Modified2014-05-16T15:57:35Z + Date Added2014-05-16T15:57:34Z + Bit Rate160 + Sample Rate44100 + Play Count1 + Play Date3441737928 + Play Date UTC2013-01-22T16:48:48Z + Skip Count1 + Skip Date2014-06-12T12:10:07Z + Rating80 + Album Rating80 + Album Rating Computed + Normalization1329 + Artwork Count1 + Persistent ID26B3CE071A763754 + Track TypeFile + File Type1297106739 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Eric%20Clapton/Unplugged/04%20Tears%20In%20Heaven.mp3 + File Folder Count4 + Library Folder Count1 + + 11510 + + Track ID11510 + NameFloe + ArtistPhilip Glass + Album ArtistPhilip Glass Ensemble: Philip Glass + ComposerPHILIP GLASS (b. 1937) + AlbumGlassworks - Expanded Edition + GenreClassical + KindMPEG audio file + Size7215809 + Total Time359575 + Disc Number1 + Disc Count1 + Track Number2 + Track Count11 + Year2003 + Date Modified2014-05-16T15:57:40Z + Date Added2014-05-16T15:57:40Z + Bit Rate160 + Sample Rate44100 + Play Count1 + Play Date3467302891 + Play Date UTC2013-11-14T14:11:31Z + Rating60 + Album Rating60 + Album Rating Computed + Normalization1162 + Compilation + Artwork Count1 + Persistent ID532195CDAD6610DC + Track TypeFile + File Type1297106739 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Glassworks%20-%20Expanded%20Edition/02%20Floe.mp3 + File Folder Count4 + Library Folder Count1 + + 11512 + + Track ID11512 + NameRubric + ArtistPhilip Glass + Album ArtistPhilip Glass Ensemble: Philip Glass + ComposerPHILIP GLASS (b. 1937) + AlbumGlassworks - Expanded Edition + GenreClassical + KindMPEG audio file + Size7317166 + Total Time364643 + Disc Number1 + Disc Count1 + Track Number4 + Track Count11 + Year2003 + Date Modified2014-05-16T15:57:46Z + Date Added2014-05-16T15:57:44Z + Bit Rate160 + Sample Rate44100 + Play Count1 + Play Date3467303716 + Play Date UTC2013-11-14T14:25:16Z + Rating40 + Album Rating60 + Album Rating Computed + Normalization1735 + Compilation + Artwork Count1 + Persistent ID04794A8300E20189 + Track TypeFile + File Type1297106739 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Glassworks%20-%20Expanded%20Edition/04%20Rubric.mp3 + File Folder Count4 + Library Folder Count1 + + 11514 + + Track ID11514 + NameOnly Time (Original Version) + ArtistEnya + Album ArtistEnya + AlbumA Day Without Rain [with booklet artwork] + GenrePop + KindMPEG audio file + Size4618203 + Total Time216189 + Disc Number1 + Disc Count1 + Track Number3 + Track Count12 + Year2005 + Date Modified2014-05-16T15:57:52Z + Date Added2014-05-16T15:57:51Z + Bit Rate160 + Sample Rate44100 + CommentsAmazon.com Song ID: 212707113 + Play Count4 + Play Date3431279277 + Play Date UTC2012-09-23T15:37:57Z + Skip Count1 + Skip Date2014-06-12T12:09:54Z + Rating80 + Album Rating80 + Album Rating Computed + Normalization1728 + Artwork Count1 + Sort AlbumDay Without Rain [with booklet artwork] + Persistent ID26534CDA432642D0 + Track TypeFile + File Type1297106739 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enya/A%20Day%20Without%20Rain%20%5Bwith%20booklet%20artwork%5D/03%20Only%20Time%20(Original%20Version)%201.mp3 + File Folder Count4 + Library Folder Count1 + + 11516 + + Track ID11516 + NameDance Me To The End Of Love + ArtistMadeleine Peyroux + ComposerLeonard Cohen + AlbumCareless Love + GenrePop + KindMPEG audio file + Size4861858 + Total Time239725 + Disc Number1 + Disc Count1 + Track Number1 + Track Count12 + Year2004 + Date Modified2014-05-16T15:57:56Z + Date Added2014-05-16T15:57:55Z + Bit Rate160 + Sample Rate44100 + Play Count2 + Play Date3430070775 + Play Date UTC2012-09-09T15:56:15Z + Rating100 + Album Rating100 + Album Rating Computed + Normalization2595 + Artwork Count1 + Persistent ID3F643A86FD7F9A38 + Track TypeFile + File Type1297106739 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Madeleine%20Peyroux/Careless%20Love/01%20Dance%20Me%20To%20The%20End%20Of%20Love.mp3 + File Folder Count4 + Library Folder Count1 + + 11518 + + Track ID11518 + NameCome Away With Me + ArtistNorah Jones + ComposerNorah Jones + AlbumCome Away With Me + GenrePop + KindMPEG audio file + Size3992050 + Total Time198191 + Disc Number1 + Disc Count1 + Track Number5 + Track Count14 + Year2002 + Date Modified2014-05-16T15:58:00Z + Date Added2014-05-16T15:57:57Z + Bit Rate160 + Sample Rate44100 + Play Count5 + Play Date3403722850 + Play Date UTC2011-11-09T17:04:10Z + Rating100 + Album Rating100 + Album Rating Computed + Normalization1153 + Artwork Count1 + Persistent IDFD5702E16CDAE231 + Track TypeFile + File Type1297106739 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Norah%20Jones/Come%20Away%20With%20Me/05%20Come%20Away%20With%20Me.mp3 + File Folder Count4 + Library Folder Count1 + + 11520 + + Track ID11520 + NameSour Times + ArtistPortishead + Album ArtistPortishead + ComposerHenry Roscoe Brooks + AlbumDummy + GenrePop + KindMPEG audio file + Size5185883 + Total Time254066 + Disc Number1 + Disc Count1 + Track Number2 + Track Count11 + Year1994 + Date Modified2014-05-16T15:58:05Z + Date Added2014-05-16T15:58:00Z + Bit Rate160 + Sample Rate44100 + CommentsAmazon.com Song ID: 202640614 + Play Count5 + Play Date3484152913 + Play Date UTC2014-05-28T14:45:13Z + Skip Count2 + Skip Date2014-06-12T12:09:21Z + Rating80 + Album Rating60 + Album Rating Computed + Normalization3547 + Artwork Count1 + Persistent ID172A4B00CCCA117F + Track TypeFile + File Type1297106739 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Portishead/Dummy/02%20Sour%20Times%201.mp3 + File Folder Count4 + Library Folder Count1 + + 11522 + + Track ID11522 + NameParanoid Android + ArtistRadiohead + ComposerThom Yorke, Jonny Greenwood, Phil Selway, Ed O'Brien, Colin Greenwood + AlbumOK Computer + GenreAlternative & Punk + KindMPEG audio file + Size7709786 + Total Time383555 + Disc Number1 + Disc Count1 + Track Number2 + Track Count12 + Year1997 + Date Modified2014-05-16T15:58:11Z + Date Added2014-05-16T15:58:05Z + Bit Rate160 + Sample Rate44100 + Play Count1 + Play Date3484152659 + Play Date UTC2014-05-28T14:40:59Z + Rating80 + Album Rating60 + Album Rating Computed + Normalization3190 + Artwork Count1 + Persistent ID510EB20CABFC8793 + Track TypeFile + File Type1297106739 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Radiohead/OK%20Computer/02%20Paranoid%20Android.mp3 + File Folder Count4 + Library Folder Count1 + + 11524 + + Track ID11524 + NameStairway To Heaven + ArtistRodrigo Y Gabriela + Album ArtistRodrigo y Gabriela + ComposerJimmy Page.Robert Plant + AlbumRodrigo Y Gabriela + GenreJazz + KindMPEG audio file + Size5748606 + Total Time284264 + Disc Number1 + Disc Count1 + Track Number6 + Track Count9 + Year2006 + Date Modified2014-05-16T15:58:16Z + Date Added2014-05-16T15:58:11Z + Bit Rate160 + Sample Rate44100 + Play Count12 + Play Date3463328692 + Play Date UTC2013-09-29T14:14:52Z + Skip Count1 + Skip Date2014-06-12T12:09:34Z + Rating100 + Album Rating100 + Album Rating Computed + Normalization1690 + Artwork Count1 + Persistent ID8DF4FFBDF2ABADFE + Track TypeFile + File Type1297106739 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rodrigo%20y%20Gabriela/Rodrigo%20Y%20Gabriela/06%20Stairway%20To%20Heaven.mp3 + File Folder Count4 + Library Folder Count1 + + 11526 + + Track ID11526 + NameKiss From A Rose + ArtistSeal + ComposerSeal + AlbumSeal + GenrePop + KindMPEG audio file + Size5779661 + Total Time288026 + Disc Number1 + Disc Count1 + Track Number6 + Track Count11 + Year1994 + Date Modified2014-05-16T15:58:20Z + Date Added2014-05-16T15:58:16Z + Bit Rate160 + Sample Rate44100 + Play Count3 + Play Date3484153616 + Play Date UTC2014-05-28T14:56:56Z + Rating60 + Album Rating60 + Album Rating Computed + Normalization2746 + Artwork Count1 + Persistent IDFB0DD24DC3802EAE + Track TypeFile + File Type1297106739 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Seal/Seal/06%20Kiss%20From%20A%20Rose.mp3 + File Folder Count4 + Library Folder Count1 + + 11528 + + Track ID11528 + NameThe Girl From Ipanema + ArtistStan Getz & João Gilberto + ComposerAntonio Carlos Brasiliero de Almeida Jobim, Marcus Vinícius da Cruz de Melo Moraes, Norman Gimbel + AlbumGetz/Gilberto + GenreLatin + KindMPEG audio file + Size6536352 + Total Time324649 + Disc Number1 + Disc Count1 + Track Number1 + Track Count10 + Year1989 + Date Modified2014-05-16T15:58:25Z + Date Added2014-05-16T15:58:21Z + Bit Rate160 + Sample Rate44100 + Play Count5 + Play Date3483884742 + Play Date UTC2014-05-25T12:15:42Z + Rating80 + Album Rating80 + Album Rating Computed + Normalization882 + Artwork Count1 + Sort NameGirl From Ipanema + Persistent ID8C88EBD27474B166 + Track TypeFile + File Type1297106739 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stan%20Getz%20&%20Joa%CC%83o%20Gilberto/Getz_Gilberto/01%20The%20Girl%20From%20Ipanema.mp3 + File Folder Count4 + Library Folder Count1 + + 11530 + + Track ID11530 + NameDesert Rose + ArtistSting + ComposerSting, Kipper + AlbumBrand New Day + GenreRock + KindMPEG audio file + Size5737967 + Total Time285936 + Disc Number1 + Disc Count1 + Track Number2 + Track Count10 + Year2000 + Date Modified2014-05-16T15:58:29Z + Date Added2014-05-16T15:58:25Z + Bit Rate160 + Sample Rate44100 + Play Count1 + Play Date3483884409 + Play Date UTC2014-05-25T12:10:09Z + Skip Count1 + Skip Date2013-01-20T15:54:34Z + Rating60 + Album Rating60 + Album Rating Computed + Normalization3471 + Artwork Count1 + Persistent ID05423A25A9F92D88 + Track TypeFile + File Type1297106739 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Sting/Brand%20New%20Day/02%20Desert%20Rose.mp3 + File Folder Count4 + Library Folder Count1 + + 11532 + + Track ID11532 + NameA Thousand Years + ArtistSting + ComposerSting, Kipper + AlbumBrand New Day + GenreRock + KindMPEG audio file + Size7181499 + Total Time358112 + Disc Number1 + Disc Count1 + Track Number1 + Track Count10 + Year2000 + Date Modified2014-05-16T15:58:34Z + Date Added2014-05-16T15:58:29Z + Bit Rate160 + Sample Rate44100 + Play Count1 + Play Date3441561867 + Play Date UTC2013-01-20T15:54:27Z + Rating60 + Album Rating60 + Album Rating Computed + Normalization1457 + Artwork Count1 + Sort NameThousand Years + Persistent ID5372DA73C0200FBE + Track TypeFile + File Type1297106739 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Sting/Brand%20New%20Day/01%20A%20Thousand%20Years.mp3 + File Folder Count4 + Library Folder Count1 + + 11534 + + Track ID11534 + NameTalkin' Bout A Revolution + ArtistTracy Chapman + AlbumTracy Chapman + GenreFolk + KindMPEG audio file + Size3242906 + Total Time160391 + Disc Number1 + Disc Count1 + Track Number1 + Track Count11 + Year1982 + Date Modified2014-05-16T15:58:37Z + Date Added2014-05-16T15:58:35Z + Bit Rate160 + Sample Rate44100 + Play Count3 + Play Date3456245680 + Play Date UTC2013-07-09T14:44:40Z + Rating100 + Album Rating80 + Album Rating Computed + Normalization1037 + Artwork Count1 + Persistent ID87009FCFDBB4F38B + Track TypeFile + File Type1297106739 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tracy%20Chapman/Tracy%20Chapman/01%20Talkin'%20Bout%20A%20Revolution.mp3 + File Folder Count4 + Library Folder Count1 + + 11536 + + Track ID11536 + NameSocha Hai + ArtistFarhan Akhtar + ComposerShankar Ehsaan Loy + AlbumRock On!! + GenreWorld + KindMPEG audio file + Size5140123 + Total Time251611 + Disc Number1 + Disc Count1 + Track Number1 + Track Count9 + Year2008 + Date Modified2014-05-16T15:58:41Z + Date Added2014-05-16T15:58:37Z + Bit Rate160 + Sample Rate44100 + Skip Count1 + Skip Date2014-06-02T14:35:45Z + Rating60 + Album Rating80 + Album Rating Computed + Normalization3559 + Compilation + Artwork Count1 + Persistent IDD38F3E2983EE6D81 + Track TypeFile + File Type1297106739 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Rock%20On!!/01%20Socha%20Hai.mp3 + File Folder Count4 + Library Folder Count1 + + 11538 + + Track ID11538 + NameRock On!! + ArtistFarhan Akhtar + ComposerShankar Ehsaan Loy + AlbumRock On!! + GenreWorld + KindMPEG audio file + Size4813070 + Total Time235258 + Disc Number1 + Disc Count1 + Track Number3 + Track Count9 + Year2008 + Date Modified2014-05-16T15:58:44Z + Date Added2014-05-16T15:58:41Z + Bit Rate160 + Sample Rate44100 + Rating80 + Album Rating80 + Album Rating Computed + Normalization3935 + Compilation + Artwork Count1 + Persistent IDB24EE14D61D28799 + Track TypeFile + File Type1297106739 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Rock%20On!!/03%20Rock%20On!!.mp3 + File Folder Count4 + Library Folder Count1 + + 11540 + + Track ID11540 + NameDown To The River To Pray + ArtistAlison Krauss + ComposerJimmie Rodgers/Traditional, arr. by Allison Krauss + AlbumO Brother, Where Art Thou? + GenreSoundtrack + KindMPEG audio file + Size3539467 + Total Time176039 + Disc Number1 + Disc Count1 + Track Number4 + Track Count19 + Year2000 + Date Modified2014-05-16T15:58:47Z + Date Added2014-05-16T15:58:44Z + Bit Rate160 + Sample Rate44100 + Play Count5 + Play Date3484232059 + Play Date UTC2014-05-29T12:44:19Z + Rating100 + Album Rating100 + Album Rating Computed + Normalization1009 + Compilation + Artwork Count1 + Persistent IDCB3B27511FBE5A3C + Track TypeFile + File Type1297106739 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/O%20Brother,%20Where%20Art%20Thou_/04%20Down%20To%20The%20River%20To%20Pray.mp3 + File Folder Count4 + Library Folder Count1 + + 11542 + + Track ID11542 + NameOne + ArtistAimee Mann + ComposerHarry Nilsson + AlbumMagnolia + GenreFolk + KindMPEG audio file + Size3505476 + Total Time173453 + Disc Number1 + Disc Count1 + Track Number1 + Track Count13 + Year1999 + Date Modified2014-05-16T15:58:49Z + Date Added2014-05-16T15:58:47Z + Bit Rate160 + Sample Rate44100 + Play Count6 + Play Date3483120464 + Play Date UTC2014-05-16T15:57:44Z + Skip Count1 + Skip Date2013-01-22T16:38:41Z + Rating80 + Album Rating80 + Album Rating Computed + Normalization1259 + Compilation + Artwork Count1 + Persistent IDE6CCEE7DE9BC6B3E + Track TypeFile + File Type1297106739 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Magnolia/01%20One.mp3 + File Folder Count4 + Library Folder Count1 + + 11544 + + Track ID11544 + NameYesterday + ArtistThe Beatles + ComposerJohn Lennon & Paul McCartney + Album1 + GenrePop + KindMPEG audio file + Size2566173 + Total Time125466 + Disc Number1 + Disc Count1 + Track Number11 + Track Count27 + Year1965 + BPM100 + Date Modified2014-05-18T01:27:24Z + Date Added2014-05-18T01:27:21Z + Bit Rate160 + Sample Rate44100 + Skip Count1 + Skip Date2014-05-24T05:08:40Z + Rating100 + Album Rating100 + Album Rating Computed + Normalization1747 + Artwork Count1 + Sort ArtistBeatles + Persistent IDCEDA02F0D43BB081 + Track TypeFile + File Type1297106739 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/1/11%20Yesterday.mp3 + File Folder Count4 + Library Folder Count1 + + 31171 + + Track ID31171 + NameIntroduction By H.H.Sri Sri Ravi Shankar + ArtistSri Sri Ravi Shankar + ComposerThe Art Of Living + AlbumHari Om + GenreReligious + KindMPEG audio file + Size6977484 + Total Time348760 + Disc Number1 + Disc Count1 + Track Number1 + Track Count4 + Year2008 + Date Modified2014-06-12T08:25:52Z + Date Added2014-06-12T08:24:52Z + Bit Rate160 + Sample Rate44100 + Rating20 + Album Rating20 + Album Rating Computed + Normalization649 + Sort ComposerArt Of Living + Persistent IDC40141E8164F81C8 + Track TypeFile + File Type1297106739 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Sri%20Sri%20Ravi%20Shankar/Hari%20Om/01%20Introduction%20By%20H.H.Sri%20Sri%20Ravi%20Shankar.mp3 + File Folder Count4 + Library Folder Count1 + + 31180 + + Track ID31180 + NameHari Om Meditation (Hindi) + ArtistSri Sri Ravi Shankar + ComposerThe Art Of Living + AlbumHari Om + GenreReligious + KindMPEG audio file + Size27084429 + Total Time1354109 + Disc Number1 + Disc Count1 + Track Number2 + Track Count4 + Date Modified2014-06-12T08:28:53Z + Date Added2014-06-12T08:25:54Z + Bit Rate160 + Sample Rate44100 + Rating20 + Album Rating20 + Album Rating Computed + Normalization1070 + Sort ComposerArt Of Living + Persistent IDB1342FA45A72E6DC + Track TypeFile + File Type1297106739 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Sri%20Sri%20Ravi%20Shankar/Hari%20Om/02%20Hari%20Om%20Meditation%20(Hindi).mp3 + File Folder Count4 + Library Folder Count1 + + 31189 + + Track ID31189 + NameIntroduction By H.H.Sri Sri Ravi Shankar (Hindi) + ArtistSri Sri Ravi Shankar + ComposerThe Art Of Living + AlbumHari Om + GenreReligious + KindMPEG audio file + Size5164060 + Total Time258089 + Disc Number1 + Disc Count1 + Track Number3 + Track Count4 + Date Modified2014-06-12T08:29:23Z + Date Added2014-06-12T08:28:55Z + Bit Rate160 + Sample Rate44100 + Rating20 + Album Rating20 + Album Rating Computed + Normalization662 + Sort ComposerArt Of Living + Persistent ID7146C69750F07F51 + Track TypeFile + File Type1297106739 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Sri%20Sri%20Ravi%20Shankar/Hari%20Om/03%20Introduction%20By%20H.H.Sri%20Sri%20Ravi%20Shankar%20(Hindi).mp3 + File Folder Count4 + Library Folder Count1 + + 31197 + + Track ID31197 + NameHari Om Meditation (English Version) + ArtistSri Sri Ravi Shankar + ComposerThe Art Of Living + AlbumHari Om + GenreReligious + KindMPEG audio file + Size26836799 + Total Time1341727 + Disc Number1 + Disc Count1 + Track Number4 + Track Count4 + Date Modified2014-06-12T08:31:44Z + Date Added2014-06-12T08:29:24Z + Bit Rate160 + Sample Rate44100 + Rating20 + Album Rating20 + Album Rating Computed + Normalization1288 + Sort ComposerArt Of Living + Persistent ID135CBA55A131343A + Track TypeFile + File Type1297106739 + Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Sri%20Sri%20Ravi%20Shankar/Hari%20Om/04%20Hari%20Om%20Meditation%20(English%20Version).mp3 + File Folder Count4 + Library Folder Count1 + + + Playlists + + + Namerating + Playlist ID31781 + Playlist Persistent ID492BBB5307569327 + All Items + Playlist Items + + + Track ID11540 + + + Track ID10882 + + + Track ID11544 + + + Track ID11502 + + + Track ID11382 + + + Track ID11516 + + + Track ID11518 + + + Track ID6776 + + + Track ID3026 + + + Track ID2994 + + + Track ID11524 + + + Track ID11534 + + + Track ID11542 + + + Track ID11010 + + + Track ID6400 + + + Track ID11506 + + + Track ID11514 + + + Track ID11508 + + + Track ID11496 + + + Track ID11538 + + + Track ID3020 + + + Track ID3028 + + + Track ID10668 + + + Track ID11478 + + + Track ID11520 + + + Track ID5136 + + + Track ID5138 + + + Track ID5140 + + + Track ID2938 + + + Track ID2940 + + + Track ID6668 + + + Track ID11522 + + + Track ID11528 + + + Track ID11500 + + + Track ID11504 + + + Track ID11386 + + + Track ID11536 + + + Track ID4232 + + + Track ID4234 + + + Track ID4236 + + + Track ID4238 + + + Track ID4240 + + + Track ID4242 + + + Track ID4244 + + + Track ID4246 + + + Track ID4248 + + + Track ID4250 + + + Track ID4252 + + + Track ID4254 + + + Track ID4256 + + + Track ID4258 + + + Track ID4260 + + + Track ID4262 + + + Track ID4264 + + + Track ID4266 + + + Track ID4268 + + + Track ID4270 + + + Track ID4272 + + + Track ID4274 + + + Track ID3982 + + + Track ID6804 + + + Track ID10770 + + + Track ID11510 + + + Track ID3024 + + + Track ID10670 + + + Track ID2970 + + + Track ID2854 + + + Track ID2856 + + + Track ID11526 + + + Track ID11532 + + + Track ID11530 + + + Track ID2138 + + + Track ID11392 + + + Track ID4534 + + + Track ID4536 + + + Track ID4538 + + + Track ID4540 + + + Track ID4542 + + + Track ID4544 + + + Track ID4546 + + + Track ID4548 + + + Track ID4550 + + + Track ID4552 + + + Track ID4554 + + + Track ID4556 + + + Track ID11512 + + + Track ID3022 + + + Track ID10666 + + + Track ID10678 + + + Track ID2944 + + + Track ID9582 + + + Track ID9590 + + + Track ID9594 + + + Track ID9596 + + + Track ID9600 + + + Track ID9606 + + + Track ID9608 + + + Track ID9576 + + + Track ID9586 + + + Track ID9602 + + + Track ID9614 + + + Track ID9604 + + + Track ID9584 + + + Track ID9592 + + + Track ID9610 + + + Track ID9612 + + + Track ID9578 + + + Track ID9580 + + + Track ID9588 + + + Track ID9598 + + + Track ID9574 + + + Track ID31171 + + + Track ID31180 + + + Track ID31189 + + + Track ID31197 + + + + + + diff --git a/GeekyProjects/C1_ParsingMusicList/readme.md b/GeekyProjects/C1_ParsingMusicList/readme.md new file mode 100644 index 0000000..84a08d8 --- /dev/null +++ b/GeekyProjects/C1_ParsingMusicList/readme.md @@ -0,0 +1,6 @@ +## Project 1 -- Parsing iTunes Playlists + +### Goals: Find duplicate music tracks in iTunes playlist and plots various statistics such as track lengths and ratings. + +1. Anatomy of iTunes playlist file -- Plist xml format + diff --git a/jupyter/HelloWorld.ipynb b/jupyter/HelloWorld.ipynb index 5cec222..0e98ad5 100644 --- a/jupyter/HelloWorld.ipynb +++ b/jupyter/HelloWorld.ipynb @@ -6,15 +6,13 @@ "metadata": {}, "outputs": [ { - "name": "stdout", "output_type": "stream", - "text": [ - "Hello World!\n" - ] + "name": "stdout", + "text": "Hello World!!\n" } ], "source": [ - "print(\"Hello World!\")" + "print(\"Hello World!!\")" ] }, { @@ -41,9 +39,9 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.7.3" + "version": "3.7.6-final" } }, "nbformat": 4, "nbformat_minor": 2 -} +} \ No newline at end of file From 76db290887e0978dccb3110dd1d602e8ed368c3d Mon Sep 17 00:00:00 2001 From: SYS Date: Sat, 5 Mar 2022 13:18:00 -0500 Subject: [PATCH 19/20] add one new python file -- bagels.py --- PyWoods/bagels.py | 100 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 100 insertions(+) create mode 100644 PyWoods/bagels.py diff --git a/PyWoods/bagels.py b/PyWoods/bagels.py new file mode 100644 index 0000000..de19169 --- /dev/null +++ b/PyWoods/bagels.py @@ -0,0 +1,100 @@ +"""Bagels +A deductive logic game where you must guess a number based on clues. + + +Tags: short, game, puzzle +""" + +import random + +NUM_DIGITS = 3 # ! (!) Try setting this is to 1 to 100. +MAX_GUESSES = 10 # ! (!) Try setting this to 1 or 100. + + +def main(): + print('''Bagels, a deductive logic game. + +I am thinking of a {}-digit number with no repeated digits. +Try to guess what it is. Here are some clues: +When I say: + Pico One digit is correct but in the wrong position. + Fermi One digit is correct and in the right position. + Bagels No digit is correct. + +For example, if the secret number was 248 and your guess was 843, the clues would be Fermi Pico. +'''.format(NUM_DIGITS)) + + while True: # Main game loop. + # This stores the secret number the player needs to guess: + secretNum = getSecretNum() + print('I have thought up a number.') + print(' You have {} guesses to get it.'.format(MAX_GUESSES)) + + numGuess = 1 + while numGuess <=MAX_GUESSES: + guess = '' + # Keep looping until they enter a valid guess: + while len(guess) != NUM_DIGITS or not guess.isdecimal(): + print('Guess #{}: '.format(numGuess)) + guess = input('> ') + + clues = getClues(guess, secretNum) + print(clues) + numGuess += 1 + + if guess == secretNum: + break # They're correct, so break out of this loop. + if numGuess > MAX_GUESSES: + print('You ran out of guesses.') + print('The answer was {}.'.format(secretNum)) + + # Ask player if they want to play again. + print('Do you want to play again? (yes or no)') + if not input('> ').lower().startswith('y'): + break + print('Thanks for playing!') + + +def getSecretNum(): + """Returns a string made up of NUM_DIGITS unique random digits.""" + numbers = list('0123456789') # Create a list of digits 0 to 9. + random.shuffle(numbers) # Shuffle them into random order. + + # Get the first NUM_DIGITS digits in the list for the secret number: + secretNum = '' + for i in range(NUM_DIGITS): + secretNum += str(numbers[i]) + return secretNum + + +def getClues(guess, secretNum): + """Returns a string with the pico, fermi, bagels clues for a guess and secret number pair. + + Args: + guess (string): a guess + secretNum (string): the secret number + """ + if guess == secretNum: + return 'You got it!' + + clues = [] + for i in range(len(guess)): + if guess[i] == secretNum[i]: + # A correct digit is in the correct place. + clues.append('Fermi') + elif guess[i] in secretNum: + # A correct digit is in the incorrect place. + clues.append('Pico') + if len(clues) == 0: + return 'Bagels' # There are no correct digits at all. + else: + # Sort the clues into alphabetical order so their original order + # doesn't give information away. + clues.sort() + # Make a single string from the list of string clues. + return ' '.join(clues) + + +# if the program is run (instead of imported), run the game: +if __name__ == '__main__': + main() \ No newline at end of file From 8efcd12a44d4512a03b5b4e7808158c6e36b1f3b Mon Sep 17 00:00:00 2001 From: SYS Date: Wed, 28 Feb 2024 21:59:35 -0500 Subject: [PATCH 20/20] Update testing data files --- GeekyProjects/C1_ParsingMusicList/common.txt | 102 +- GeekyProjects/C1_ParsingMusicList/example.xml | 35 - GeekyProjects/C1_ParsingMusicList/maya.xml | 2222 - GeekyProjects/C1_ParsingMusicList/mymusic.xml | 143232 --------------- GeekyProjects/C1_ParsingMusicList/pl1.xml | 3234 - GeekyProjects/C1_ParsingMusicList/pl2.xml | 4120 - GeekyProjects/C1_ParsingMusicList/playlist.py | 6 +- GeekyProjects/C1_ParsingMusicList/rating.xml | 4188 - 8 files changed, 56 insertions(+), 157083 deletions(-) delete mode 100644 GeekyProjects/C1_ParsingMusicList/example.xml delete mode 100644 GeekyProjects/C1_ParsingMusicList/maya.xml delete mode 100644 GeekyProjects/C1_ParsingMusicList/mymusic.xml delete mode 100644 GeekyProjects/C1_ParsingMusicList/pl1.xml delete mode 100644 GeekyProjects/C1_ParsingMusicList/pl2.xml delete mode 100644 GeekyProjects/C1_ParsingMusicList/rating.xml diff --git a/GeekyProjects/C1_ParsingMusicList/common.txt b/GeekyProjects/C1_ParsingMusicList/common.txt index 9d9fee2..ed58b1e 100644 --- a/GeekyProjects/C1_ParsingMusicList/common.txt +++ b/GeekyProjects/C1_ParsingMusicList/common.txt @@ -1,67 +1,67 @@ -Symphony No.3 -Part II C -Abharaama Bhakti (Bandhuvaraali) -Three To Get Ready -Bolero -Symphony No. 101"The Clock" -Bach: Orchestral Suite #2 In B Minor - Badinerie -Stairway To Heaven -God Shuffled His Feet -Pi's Lullaby +Pictures at an Exhibition +Vivaldi: The 4 Seasons, Op. 8/1, RV 269, "Spring" - Allegro +Horn Concerto No. 1 +Nutcracker Part II B +Mother Good Suiteq +So What +Bach: Orchestral Suite #2 In B Minor - Badinerie Fifth Symphony -Eine Kleine Nachtmusik -Symphony No.4, Third movement +Saamajavaragamana (Hindolam) Well-Tempered Clavier -Symphony #4 -Part I -Ninth Symphony -Arabesque No. 1 +Flamenco Sketches +Everytime We Say Goodbye +My Favorite Things +Synphony No.4 +Saint-Saëns: Carnival Of The Animals, The Elephant +Take Five +Synphony No.7 +Pick Up Sticks Sorcerer's Apprentice -Strange Meadow Lark Shchedrin: Carmen Suite - Changing Of The Guard -Floe -Synphony No.7 -All Blues -Synphony No.4 -Rite of Spring -Sonata for Violin and Piano n A Major +Bolero +Stairway To Heaven +Quest for music (Maaya Malava Gowla) +God Shuffled His Feet +Symphony No. 101"The Clock" Peer Gynt -Concerto for Clarinet and Orchestra +All Blues +Concert for Viola and orchestra Concert for trumpet in E Flat -Symphony No. 4, Third Movement -Willaim Tell Overture But Not For Me -Valliya Naayaganaa (Shanmuga Priya) -Saamajavaragamana (Hindolam) -Ride of the Valkyries -Nutcracker -Horn Concerto No. 1 -Dance of the Blessed Spirits -Flamenco Sketches -My Favorite Things -Take Five -Everybody's Jumpin' +Symphony No. 4, Third Movement Rubric -Summertime -Pictures at an Exhibition +Sleeping Beauty +Symphony No.4, Third movement +Pi's Lullaby Part II A -Everytime We Say Goodbye Blue In Green -Pick Up Sticks -Concert for Viola and orchestra -Vivaldi: The 4 Seasons, Op. 8/1, RV 269, "Spring" - Allegro -Sleeping Beauty -So What +Rite of Spring +Sonata for Violin and Piano n A Major +Willaim Tell Overture +Dance of the Blessed Spirits +Blue Rondo A La Turk +Symphony No.3 +Three To Get Ready +Concerto Champetre +Part I +Valliya Naayaganaa (Shanmuga Priya) +Ride of the Valkyries Freddie Freeloader +Strange Meadow Lark +Eine Kleine Nachtmusik +Arabesque No. 1 +Evolution (Maaya Malava Gowla) +Ninth Symphony +Summertime +Sinfonia in G Major for Two Oboes Moonlight Sonata Toccata and Fugue in D Minor -Quest for music (Maaya Malava Gowla) +Part II C +Everybody's Jumpin' Kathy's Waltz -Saint-Saëns: Carnival Of The Animals, The Elephant -Blue Rondo A La Turk -Sinfonia in G Major for Two Oboes -Concerto Champetre -Mother Good Suiteq -Evolution (Maaya Malava Gowla) +Concerto for Clarinet and Orchestra Hungarian Dance +Abharaama Bhakti (Bandhuvaraali) +Floe +Symphony #4 diff --git a/GeekyProjects/C1_ParsingMusicList/example.xml b/GeekyProjects/C1_ParsingMusicList/example.xml deleted file mode 100644 index 4b7b964..0000000 --- a/GeekyProjects/C1_ParsingMusicList/example.xml +++ /dev/null @@ -1,35 +0,0 @@ - - - - -Major Version1 - Minor Version1 - --snip-- -Tracks - - 2438 - - Track ID2438 - NameYesterday - ArtistThe Beatles - ComposerLennon [John], McCartney [Paul] - AlbumHelp! - - --snip-- - -Playlists - - - NameNow - Playlist ID21348 - --snip-- - - - Track ID6382 - - --snip-- - - - - - \ No newline at end of file diff --git a/GeekyProjects/C1_ParsingMusicList/maya.xml b/GeekyProjects/C1_ParsingMusicList/maya.xml deleted file mode 100644 index 065c039..0000000 --- a/GeekyProjects/C1_ParsingMusicList/maya.xml +++ /dev/null @@ -1,2222 +0,0 @@ - - - - - Major Version1 - Minor Version1 - Date2014-06-14T12:40:14Z - Application Version11.2.2 - Features5 - Show Content Ratings - Music Folderfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/ - Library Persistent ID5E7B8CC1F12D8073 - Tracks - - 1694 - - Track ID1694 - NameQuest for music (Maaya Malava Gowla) - ArtistZakir Hussain, Kunnakudi Vaidyanathan - AlbumGolden Krithis - Colors - GenrePop - KindAAC audio file - Size5672310 - Total Time236308 - Disc Number1 - Disc Count1 - Track Number1 - Track Count5 - Year2002 - Date Modified2006-08-13T06:49:38Z - Date Added2009-10-03T14:50:47Z - Bit Rate192 - Sample Rate44100 - Play Count3 - Play Date3462978530 - Play Date UTC2013-09-25T12:58:50Z - Skip Count2 - Skip Date2013-07-25T04:18:39Z - Normalization1100 - Artwork Count1 - Persistent ID5F920396806BFE27 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Zakir%20Hussain,%20Kunnakudi%20Vaidyanathan/Golden%20Krithis%20-%20Colors/01%20Quest%20for%20music%20(Maaya%20Malava%20Gow.m4a - File Folder Count4 - Library Folder Count1 - - 1696 - - Track ID1696 - NameValliya Naayaganaa (Shanmuga Priya) - ArtistZakir Hussain, Kunnakudi Vaidyanathan - AlbumGolden Krithis - Colors - GenrePop - KindAAC audio file - Size22043576 - Total Time913007 - Disc Number1 - Disc Count1 - Track Number2 - Track Count5 - Year2002 - Date Modified2006-08-13T06:49:34Z - Date Added2009-10-03T14:50:47Z - Bit Rate192 - Sample Rate44100 - Play Count3 - Play Date3461605007 - Play Date UTC2013-09-09T15:26:47Z - Normalization1117 - Artwork Count1 - Persistent IDDFBE2E85565513A1 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Zakir%20Hussain,%20Kunnakudi%20Vaidyanathan/Golden%20Krithis%20-%20Colors/02%20Valliya%20Naayaganaa%20(Shanmuga%20Priy.m4a - File Folder Count4 - Library Folder Count1 - - 1698 - - Track ID1698 - NameEvolution (Maaya Malava Gowla) - ArtistZakir Hussain, Kunnakudi Vaidyanathan - AlbumGolden Krithis - Colors - GenrePop - KindAAC audio file - Size12631717 - Total Time524072 - Disc Number1 - Disc Count1 - Track Number3 - Track Count5 - Year2002 - Date Modified2006-08-13T06:49:24Z - Date Added2009-10-03T14:50:47Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3461605531 - Play Date UTC2013-09-09T15:35:31Z - Normalization1011 - Artwork Count1 - Persistent IDC8BCD916312CCF2E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Zakir%20Hussain,%20Kunnakudi%20Vaidyanathan/Golden%20Krithis%20-%20Colors/03%20Evolution%20(Maaya%20Malava%20Gowla).m4a - File Folder Count4 - Library Folder Count1 - - 1700 - - Track ID1700 - NameSaamajavaragamana (Hindolam) - ArtistZakir Hussain, Kunnakudi Vaidyanathan - AlbumGolden Krithis - Colors - GenrePop - KindAAC audio file - Size22571239 - Total Time934810 - Disc Number1 - Disc Count1 - Track Number4 - Track Count5 - Year2002 - Date Modified2006-08-13T06:49:20Z - Date Added2009-10-03T14:50:47Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3389411811 - Play Date UTC2011-05-28T01:46:51Z - Normalization1039 - Artwork Count1 - Persistent IDC25F6C69215E9E77 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Zakir%20Hussain,%20Kunnakudi%20Vaidyanathan/Golden%20Krithis%20-%20Colors/04%20Saamajavaragamana%20(Hindolam).m4a - File Folder Count4 - Library Folder Count1 - - 1702 - - Track ID1702 - NameAbharaama Bhakti (Bandhuvaraali) - ArtistZakir Hussain, Kunnakudi Vaidyanathan - AlbumGolden Krithis - Colors - GenrePop - KindAAC audio file - Size19332696 - Total Time798138 - Disc Number1 - Disc Count1 - Track Number5 - Track Count5 - Year2002 - Date Modified2006-08-13T06:49:10Z - Date Added2009-10-03T14:50:47Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3389412609 - Play Date UTC2011-05-28T02:00:09Z - Normalization1102 - Artwork Count1 - Persistent ID35B87C22AE49A93F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Zakir%20Hussain,%20Kunnakudi%20Vaidyanathan/Golden%20Krithis%20-%20Colors/05%20Abharaama%20Bhakti%20(Bandhuvaraali).m4a - File Folder Count4 - Library Folder Count1 - - 2262 - - Track ID2262 - NameBlue Rondo A La Turk - ArtistThe Dave Brubeck Quartet - ComposerDave Brubeck - AlbumTime Out - GenreJazz - KindAAC audio file - Size9843689 - Total Time406138 - Disc Number1 - Disc Count1 - Track Number1 - Track Count7 - Year1959 - Date Modified2006-08-03T11:46:24Z - Date Added2009-10-03T14:52:27Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3471262543 - Play Date UTC2013-12-30T10:05:43Z - Normalization1204 - Artwork Count1 - Sort ArtistDave Brubeck Quartet - Persistent IDE1B5EC85D716A72C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Dave%20Brubeck%20Quartet/Time%20Out/01%20Blue%20Rondo%20A%20La%20Turk.m4a - File Folder Count4 - Library Folder Count1 - - 2264 - - Track ID2264 - NameStrange Meadow Lark - ArtistThe Dave Brubeck Quartet - ComposerDave Brubeck - AlbumTime Out - GenreJazz - KindAAC audio file - Size10765899 - Total Time444242 - Disc Number1 - Disc Count1 - Track Number2 - Track Count7 - Year1959 - Date Modified2006-08-03T11:46:24Z - Date Added2009-10-03T14:52:27Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3438966197 - Play Date UTC2012-12-21T14:53:17Z - Normalization1033 - Artwork Count1 - Sort ArtistDave Brubeck Quartet - Persistent ID328F3A1589AD1FD7 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Dave%20Brubeck%20Quartet/Time%20Out/02%20Strange%20Meadow%20Lark.m4a - File Folder Count4 - Library Folder Count1 - - 2266 - - Track ID2266 - NameTake Five - ArtistThe Dave Brubeck Quartet - ComposerPaul Desmond - AlbumTime Out - GenreJazz - KindAAC audio file - Size7923853 - Total Time326796 - Disc Number1 - Disc Count1 - Track Number3 - Track Count7 - Year1959 - Date Modified2006-08-03T11:46:24Z - Date Added2009-10-03T14:52:27Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3484980753 - Play Date UTC2014-06-07T04:42:33Z - Skip Count1 - Skip Date2011-01-17T11:15:33Z - Normalization1081 - Artwork Count1 - Sort ArtistDave Brubeck Quartet - Persistent ID09568520230C26CC - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Dave%20Brubeck%20Quartet/Time%20Out/03%20Take%20Five.m4a - File Folder Count4 - Library Folder Count1 - - 2268 - - Track ID2268 - NameThree To Get Ready - ArtistThe Dave Brubeck Quartet - ComposerDave Brubeck - AlbumTime Out - GenreJazz - KindAAC audio file - Size7901209 - Total Time325867 - Disc Number1 - Disc Count1 - Track Number4 - Track Count7 - Year1959 - Date Modified2006-08-03T11:46:24Z - Date Added2009-10-03T14:52:28Z - Bit Rate192 - Sample Rate44100 - Normalization1033 - Artwork Count1 - Sort ArtistDave Brubeck Quartet - Persistent ID855DC94A22F8CD92 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Dave%20Brubeck%20Quartet/Time%20Out/04%20Three%20To%20Get%20Ready.m4a - File Folder Count4 - Library Folder Count1 - - 2270 - - Track ID2270 - NameKathy's Waltz - ArtistThe Dave Brubeck Quartet - ComposerDave Brubeck - AlbumTime Out - GenreJazz - KindAAC audio file - Size7048364 - Total Time290619 - Disc Number1 - Disc Count1 - Track Number5 - Track Count7 - Year1959 - Date Modified2006-08-03T11:46:26Z - Date Added2009-10-03T14:52:28Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3441544403 - Play Date UTC2013-01-20T11:03:23Z - Normalization1032 - Artwork Count1 - Sort ArtistDave Brubeck Quartet - Persistent IDD843F56EF045F256 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Dave%20Brubeck%20Quartet/Time%20Out/05%20Kathy's%20Waltz.m4a - File Folder Count4 - Library Folder Count1 - - 2272 - - Track ID2272 - NameEverybody's Jumpin' - ArtistThe Dave Brubeck Quartet - ComposerDave Brubeck - AlbumTime Out - GenreJazz - KindAAC audio file - Size6425315 - Total Time264868 - Disc Number1 - Disc Count1 - Track Number6 - Track Count7 - Year1959 - Date Modified2006-08-03T11:46:26Z - Date Added2009-10-03T14:52:28Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3441544668 - Play Date UTC2013-01-20T11:07:48Z - Normalization1033 - Artwork Count1 - Sort ArtistDave Brubeck Quartet - Persistent IDE703651BCB06438D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Dave%20Brubeck%20Quartet/Time%20Out/06%20Everybody's%20Jumpin'.m4a - File Folder Count4 - Library Folder Count1 - - 2274 - - Track ID2274 - NamePick Up Sticks - ArtistThe Dave Brubeck Quartet - ComposerDave Brubeck - AlbumTime Out - GenreJazz - KindAAC audio file - Size6228367 - Total Time256695 - Disc Number1 - Disc Count1 - Track Number7 - Track Count7 - Year1959 - Date Modified2006-08-03T11:46:26Z - Date Added2009-10-03T14:52:28Z - Bit Rate192 - Sample Rate44100 - Normalization1033 - Artwork Count1 - Sort ArtistDave Brubeck Quartet - Persistent ID170B1574D7B9740B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Dave%20Brubeck%20Quartet/Time%20Out/07%20Pick%20Up%20Sticks.m4a - File Folder Count4 - Library Folder Count1 - - 3432 - - Track ID3432 - NameSo What - ArtistMiles Davis - ComposerMiles Davis - AlbumKind Of Blue - GenreJazz - KindAAC audio file - Size13154266 - Total Time545830 - Disc Number1 - Disc Count1 - Track Number1 - Track Count5 - Year1962 - Date Modified2006-07-30T08:32:06Z - Date Added2009-10-03T14:55:20Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3389791251 - Play Date UTC2011-06-01T11:10:51Z - Skip Count2 - Skip Date2013-09-29T14:08:08Z - Normalization1242 - Artwork Count1 - Persistent IDFE64EBA1AAB2EE39 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Miles%20Davis/Kind%20Of%20Blue/01%20So%20What.m4a - File Folder Count4 - Library Folder Count1 - - 3434 - - Track ID3434 - NameFreddie Freeloader - ArtistMiles Davis - ComposerMiles Davis - AlbumKind Of Blue - GenreJazz - KindAAC audio file - Size13891424 - Total Time575830 - Disc Number1 - Disc Count1 - Track Number2 - Track Count5 - Year1962 - Date Modified2006-07-30T08:32:08Z - Date Added2009-10-03T14:55:20Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3389791827 - Play Date UTC2011-06-01T11:20:27Z - Normalization1255 - Artwork Count1 - Persistent IDCF3BC010B57179FF - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Miles%20Davis/Kind%20Of%20Blue/02%20Freddie%20Freeloader.m4a - File Folder Count4 - Library Folder Count1 - - 3436 - - Track ID3436 - NameBlue In Green - ArtistMiles Davis - ComposerMiles Davis - AlbumKind Of Blue - GenreJazz - KindAAC audio file - Size7924093 - Total Time328653 - Disc Number1 - Disc Count1 - Track Number3 - Track Count5 - Year1962 - Date Modified2006-07-30T08:32:08Z - Date Added2009-10-03T14:55:20Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3389792156 - Play Date UTC2011-06-01T11:25:56Z - Normalization454 - Artwork Count1 - Persistent ID891A0E18014C21E1 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Miles%20Davis/Kind%20Of%20Blue/03%20Blue%20In%20Green.m4a - File Folder Count4 - Library Folder Count1 - - 3438 - - Track ID3438 - NameAll Blues - ArtistMiles Davis - ComposerMiles Davis - AlbumKind Of Blue - GenreJazz - KindAAC audio file - Size16758594 - Total Time693880 - Disc Number1 - Disc Count1 - Track Number4 - Track Count5 - Year1962 - Date Modified2006-07-30T08:32:08Z - Date Added2009-10-03T14:55:20Z - Bit Rate192 - Sample Rate44100 - Normalization652 - Artwork Count1 - Persistent ID0F3E03E505FA78DE - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Miles%20Davis/Kind%20Of%20Blue/04%20All%20Blues.m4a - File Folder Count4 - Library Folder Count1 - - 3440 - - Track ID3440 - NameFlamenco Sketches - ArtistMiles Davis - ComposerMiles Davis - AlbumKind Of Blue - GenreJazz - KindAAC audio file - Size13693719 - Total Time565125 - Disc Number1 - Disc Count1 - Track Number5 - Track Count5 - Year1962 - Date Modified2006-07-30T08:32:08Z - Date Added2009-10-03T14:55:20Z - Bit Rate192 - Sample Rate44100 - Normalization535 - Artwork Count1 - Persistent ID0603BCEA2CD9EAAD - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Miles%20Davis/Kind%20Of%20Blue/05%20Flamenco%20Sketches.m4a - File Folder Count4 - Library Folder Count1 - - 3816 - - Track ID3816 - NamePart I - ArtistKeith Jarrett - ComposerKeith Jarrett - AlbumThe Koln Concert - GenreJazz - KindAAC audio file - Size37811783 - Total Time1561610 - Disc Number1 - Disc Count1 - Track Number1 - Track Count4 - Year1975 - Date Modified2006-07-27T16:19:42Z - Date Added2009-10-03T14:55:50Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3389984791 - Play Date UTC2011-06-03T16:56:31Z - Normalization874 - Artwork Count1 - Sort AlbumKoln Concert - Persistent ID510557EFCBAD559F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Keith%20Jarrett/The%20Koln%20Concert/01%20Part%20I.m4a - File Folder Count4 - Library Folder Count1 - - 3818 - - Track ID3818 - NamePart II A - ArtistKeith Jarrett - ComposerKeith Jarrett - AlbumThe Koln Concert - GenreJazz - KindAAC audio file - Size21674287 - Total Time894756 - Disc Number1 - Disc Count1 - Track Number2 - Track Count4 - Year1975 - Date Modified2006-07-27T16:19:44Z - Date Added2009-10-03T14:55:50Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3389985685 - Play Date UTC2011-06-03T17:11:25Z - Normalization774 - Artwork Count1 - Sort AlbumKoln Concert - Persistent ID7BE6157C7A944DEE - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Keith%20Jarrett/The%20Koln%20Concert/02%20Part%20II%20A.m4a - File Folder Count4 - Library Folder Count1 - - 3820 - - Track ID3820 - NamePart II B - ArtistKeith Jarrett - ComposerKeith Jarrett - AlbumThe Koln Concert - GenreJazz - KindAAC audio file - Size26508430 - Total Time1094517 - Disc Number1 - Disc Count1 - Track Number3 - Track Count4 - Year1975 - Date Modified2006-07-27T16:19:46Z - Date Added2009-10-03T14:55:50Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3389986780 - Play Date UTC2011-06-03T17:29:40Z - Normalization781 - Artwork Count1 - Sort AlbumKoln Concert - Persistent IDF14B6F46956F15A5 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Keith%20Jarrett/The%20Koln%20Concert/03%20Part%20II%20B.m4a - File Folder Count4 - Library Folder Count1 - - 3822 - - Track ID3822 - NamePart II C - ArtistKeith Jarrett - ComposerKeith Jarrett - AlbumThe Koln Concert - GenreJazz - KindAAC audio file - Size10098304 - Total Time416843 - Disc Number1 - Disc Count1 - Track Number4 - Track Count4 - Year1975 - Date Modified2006-07-27T16:19:48Z - Date Added2009-10-03T14:55:50Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3389987197 - Play Date UTC2011-06-03T17:36:37Z - Normalization948 - Artwork Count1 - Sort AlbumKoln Concert - Persistent ID29B257311FC05657 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Keith%20Jarrett/The%20Koln%20Concert/04%20Part%20II%20C.m4a - File Folder Count4 - Library Folder Count1 - - 3910 - - Track ID3910 - NameMy Favorite Things - ArtistJohn Coltrane - ComposerRichard Rodgers & Oscar Hammerstein - AlbumMy Favorite Things - GenreJazz - KindAAC audio file - Size19857464 - Total Time824005 - Disc Number1 - Disc Count1 - Track Number1 - Track Count4 - Year1961 - Date Modified2006-07-29T02:14:42Z - Date Added2009-10-03T14:56:00Z - Bit Rate192 - Sample Rate44100 - Play Count3 - Play Date3421814491 - Play Date UTC2012-06-06T02:31:31Z - Normalization986 - Artwork Count1 - Persistent ID9D22C3369D79BDD6 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/John%20Coltrane/My%20Favorite%20Things/01%20My%20Favorite%20Things.m4a - File Folder Count4 - Library Folder Count1 - - 3912 - - Track ID3912 - NameEverytime We Say Goodbye - ArtistJohn Coltrane - ComposerCole Porter - AlbumMy Favorite Things - GenreJazz - KindAAC audio file - Size8224551 - Total Time343212 - Disc Number1 - Disc Count1 - Track Number2 - Track Count4 - Year1961 - Date Modified2006-07-29T02:14:42Z - Date Added2009-10-03T14:56:00Z - Bit Rate192 - Sample Rate44100 - Normalization501 - Artwork Count1 - Persistent ID66630F00EAF672CA - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/John%20Coltrane/My%20Favorite%20Things/02%20Everytime%20We%20Say%20Goodbye.m4a - File Folder Count4 - Library Folder Count1 - - 3914 - - Track ID3914 - NameSummertime - ArtistJohn Coltrane - ComposerDu Bose Heyward & George Gershwin - AlbumMy Favorite Things - GenreJazz - KindAAC audio file - Size16752341 - Total Time695668 - Disc Number1 - Disc Count1 - Track Number3 - Track Count4 - Year1961 - Date Modified2006-07-29T02:14:42Z - Date Added2009-10-03T14:56:00Z - Bit Rate192 - Sample Rate44100 - Normalization1184 - Artwork Count1 - Persistent IDC9F6ED7879179675 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/John%20Coltrane/My%20Favorite%20Things/03%20Summertime.m4a - File Folder Count4 - Library Folder Count1 - - 3916 - - Track ID3916 - NameBut Not For Me - ArtistJohn Coltrane - ComposerGeorge & Ira Gershwin - AlbumMy Favorite Things - GenreJazz - KindAAC audio file - Size13916857 - Total Time574483 - Disc Number1 - Disc Count1 - Track Number4 - Track Count4 - Year1961 - Date Modified2006-07-29T02:14:44Z - Date Added2009-10-03T14:56:00Z - Bit Rate192 - Sample Rate44100 - Normalization972 - Artwork Count1 - Persistent IDB80A79285431AB29 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/John%20Coltrane/My%20Favorite%20Things/04%20But%20Not%20For%20Me.m4a - File Folder Count4 - Library Folder Count1 - - 9902 - - Track ID9902 - NameRide of the Valkyries - ArtistRobert Levine - AlbumThe Story of the Orchestra - GenreChildren's - KindAAC audio file - Size5219986 - Total Time155333 - Track Number1 - Track Count37 - Year2001 - Date Modified2011-11-19T18:05:28Z - Date Added2011-11-19T17:56:22Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3404906118 - Play Date UTC2011-11-23T09:45:18Z - Skip Count1 - Skip Date2013-11-24T09:17:14Z - Normalization1086 - Artwork Count1 - Sort AlbumStory of the Orchestra - Persistent ID7AB2D70463779E30 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/01%20Ride%20of%20the%20Valkyries.m4a - File Folder Count4 - Library Folder Count1 - - 9904 - - Track ID9904 - NameVivaldi: The 4 Seasons, Op. 8/1, RV 269, "Spring" - Allegro - ArtistTakako Nishizaki; Stephen Gunzenhauser: Capella Istropolitana - ComposerAntonio Vivaldi - AlbumThe Story of the Orchestra - GenreChildren's - KindAAC audio file - Size2759476 - Total Time81000 - Track Number2 - Track Count37 - Year2001 - Date Modified2011-11-19T18:05:28Z - Date Added2011-11-19T17:56:53Z - Bit Rate256 - Sample Rate44100 - Play Count2 - Play Date3457590437 - Play Date UTC2013-07-25T04:17:17Z - Normalization611 - Artwork Count1 - Sort AlbumStory of the Orchestra - Persistent ID772E86A4EFCC5E9D - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Takako%20Nishizaki%3B%20Stephen%20Gunzenhauser_%20Capella%20Istropolitana/The%20Story%20of%20the%20Orchestra/02%20Vivaldi_%20The%204%20Seasons,%20Op.%208_1,%20RV%20269,%20_Spring_%20-%20Allegro.m4a - File Folder Count4 - Library Folder Count1 - - 9906 - - Track ID9906 - NameWell-Tempered Clavier - ArtistRobert Levine - AlbumThe Story of the Orchestra - GenreChildren's - KindAAC audio file - Size2424704 - Total Time71493 - Track Number3 - Track Count37 - Year2001 - Date Modified2011-11-19T18:05:28Z - Date Added2011-11-19T17:57:09Z - Bit Rate256 - Sample Rate44100 - Play Count2 - Play Date3405230002 - Play Date UTC2011-11-27T03:43:22Z - Normalization97 - Artwork Count1 - Sort AlbumStory of the Orchestra - Persistent IDB71EDA2B4B4A4654 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/03%20Well-Tempered%20Clavier.m4a - File Folder Count4 - Library Folder Count1 - - 9908 - - Track ID9908 - NameSymphony No. 101"The Clock" - ArtistRobert Levine - AlbumThe Story of the Orchestra - GenreChildren's - KindAAC audio file - Size2448055 - Total Time71840 - Track Number4 - Track Count37 - Year2001 - Date Modified2011-11-19T18:05:29Z - Date Added2011-11-19T17:57:22Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3468149306 - Play Date UTC2013-11-24T09:18:26Z - Normalization178 - Artwork Count1 - Sort AlbumStory of the Orchestra - Persistent ID808B9893DF264C81 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/04%20Symphony%20No.%20101_The%20Clock_.m4a - File Folder Count4 - Library Folder Count1 - - 9910 - - Track ID9910 - NameEine Kleine Nachtmusik - ArtistRobert Levine - AlbumThe Story of the Orchestra - GenreChildren's - KindAAC audio file - Size2118200 - Total Time62333 - Track Number5 - Track Count37 - Year2001 - Date Modified2011-11-19T18:05:29Z - Date Added2011-11-19T17:57:36Z - Bit Rate256 - Sample Rate44100 - Play Count2 - Play Date3468149368 - Play Date UTC2013-11-24T09:19:28Z - Normalization255 - Artwork Count1 - Sort AlbumStory of the Orchestra - Persistent IDD49B2B9A1A1C99A9 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/05%20Eine%20Kleine%20Nachtmusik.m4a - File Folder Count4 - Library Folder Count1 - - 9912 - - Track ID9912 - NameFifth Symphony - ArtistRobert Levine - AlbumThe Story of the Orchestra - GenreChildren's - KindAAC audio file - Size3095446 - Total Time88826 - Track Number6 - Track Count37 - Year2001 - Date Modified2011-11-19T18:05:29Z - Date Added2011-11-19T17:57:47Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3468149457 - Play Date UTC2013-11-24T09:20:57Z - Normalization1083 - Artwork Count1 - Sort AlbumStory of the Orchestra - Persistent IDB2D547C13F6307B7 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/06%20Fifth%20Symphony.m4a - File Folder Count4 - Library Folder Count1 - - 9914 - - Track ID9914 - NameNinth Symphony - ArtistRobert Levine - AlbumThe Story of the Orchestra - GenreChildren's - KindAAC audio file - Size7195041 - Total Time214000 - Track Number7 - Track Count37 - Year2001 - Date Modified2011-11-19T18:05:30Z - Date Added2011-11-19T17:58:02Z - Bit Rate256 - Sample Rate44100 - Normalization987 - Artwork Count1 - Sort AlbumStory of the Orchestra - Persistent ID587702B36EE548C3 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/07%20Ninth%20Symphony.m4a - File Folder Count4 - Library Folder Count1 - - 9916 - - Track ID9916 - NameSleeping Beauty - ArtistRobert Levine - AlbumThe Story of the Orchestra - GenreChildren's - KindAAC audio file - Size3365239 - Total Time100173 - Track Number8 - Track Count37 - Year2001 - Date Modified2011-11-19T18:05:30Z - Date Added2011-11-19T17:58:34Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3468149671 - Play Date UTC2013-11-24T09:24:31Z - Normalization185 - Artwork Count1 - Sort AlbumStory of the Orchestra - Persistent ID3D4F2777958106AE - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/08%20Sleeping%20Beauty.m4a - File Folder Count4 - Library Folder Count1 - - 9918 - - Track ID9918 - NameHungarian Dance - ArtistRobert Levine - AlbumThe Story of the Orchestra - GenreChildren's - KindAAC audio file - Size2382539 - Total Time68000 - Track Number9 - Track Count37 - Year2001 - Date Modified2011-11-19T18:05:30Z - Date Added2011-11-19T17:58:49Z - Bit Rate256 - Sample Rate44100 - Play Count2 - Play Date3462766642 - Play Date UTC2013-09-23T02:07:22Z - Normalization817 - Artwork Count1 - Sort AlbumStory of the Orchestra - Persistent ID106638338A7ACFAF - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/09%20Hungarian%20Dance.m4a - File Folder Count4 - Library Folder Count1 - - 9920 - - Track ID9920 - NameSymphony #4 - ArtistRobert Levine - AlbumThe Story of the Orchestra - GenreChildren's - KindAAC audio file - Size3576577 - Total Time105826 - Track Number10 - Track Count37 - Year2001 - Date Modified2011-11-19T18:05:31Z - Date Added2011-11-19T17:58:59Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3462766748 - Play Date UTC2013-09-23T02:09:08Z - Normalization393 - Artwork Count1 - Sort AlbumStory of the Orchestra - Persistent ID1C4074434755D0AB - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/10%20Symphony%20%234.m4a - File Folder Count4 - Library Folder Count1 - - 9922 - - Track ID9922 - NameArabesque No. 1 - ArtistRobert Levine - AlbumThe Story of the Orchestra - GenreChildren's - KindAAC audio file - Size3044514 - Total Time90333 - Track Number11 - Track Count37 - Year2001 - Date Modified2011-11-19T18:05:31Z - Date Added2011-11-19T17:59:14Z - Bit Rate256 - Sample Rate44100 - Play Count3 - Play Date3462766838 - Play Date UTC2013-09-23T02:10:38Z - Normalization394 - Artwork Count1 - Sort AlbumStory of the Orchestra - Persistent ID46730D41C014DD8D - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/11%20Arabesque%20No.%201.m4a - File Folder Count4 - Library Folder Count1 - - 9924 - - Track ID9924 - NameRite of Spring - ArtistRobert Levine - AlbumThe Story of the Orchestra - GenreChildren's - KindAAC audio file - Size2626462 - Total Time77173 - Track Number12 - Track Count37 - Year2001 - Date Modified2011-11-19T18:05:31Z - Date Added2011-11-19T17:59:27Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3404590728 - Play Date UTC2011-11-19T18:08:48Z - Normalization18 - Artwork Count1 - Sort AlbumStory of the Orchestra - Persistent ID82A664A1DD3580F2 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/12%20Rite%20of%20Spring.m4a - File Folder Count4 - Library Folder Count1 - - 9926 - - Track ID9926 - NameSymphony No.4, Third movement - ArtistRobert Levine - AlbumThe Story of the Orchestra - GenreChildren's - KindAAC audio file - Size2181230 - Total Time64666 - Track Number13 - Track Count37 - Year2001 - Date Modified2011-11-19T18:05:31Z - Date Added2011-11-19T17:59:38Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3404590792 - Play Date UTC2011-11-19T18:09:52Z - Normalization273 - Artwork Count1 - Sort AlbumStory of the Orchestra - Persistent ID530A5FD0ADB3C715 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/13%20Symphony%20No.4,%20Third%20movement.m4a - File Folder Count4 - Library Folder Count1 - - 9928 - - Track ID9928 - NameSonata for Violin and Piano n A Major - ArtistRobert Levine - AlbumThe Story of the Orchestra - GenreChildren's - KindAAC audio file - Size4118907 - Total Time122333 - Track Number14 - Track Count37 - Year2001 - Date Modified2011-11-19T18:05:32Z - Date Added2011-11-19T17:59:47Z - Bit Rate256 - Sample Rate44100 - Normalization309 - Artwork Count1 - Sort AlbumStory of the Orchestra - Persistent IDD2FD290C334DB76C - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/14%20Sonata%20for%20Violin%20and%20Piano%20n%20A%20Major.m4a - File Folder Count4 - Library Folder Count1 - - 9930 - - Track ID9930 - NameConcert for Viola and orchestra - ArtistRobert Levine - AlbumThe Story of the Orchestra - GenreChildren's - KindAAC audio file - Size1849907 - Total Time49160 - Track Number15 - Track Count37 - Year2001 - Date Modified2011-11-19T18:05:32Z - Date Added2011-11-19T18:00:03Z - Bit Rate256 - Sample Rate44100 - Normalization271 - Artwork Count1 - Sort AlbumStory of the Orchestra - Persistent IDEA8C4922A3E5CEA5 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/15%20Concert%20for%20Viola%20and%20orchestra.m4a - File Folder Count4 - Library Folder Count1 - - 9932 - - Track ID9932 - NameWillaim Tell Overture - ArtistRobert Levine - AlbumThe Story of the Orchestra - GenreChildren's - KindAAC audio file - Size6212931 - Total Time186000 - Track Number16 - Track Count37 - Year2001 - Date Modified2011-11-19T18:05:32Z - Date Added2011-11-19T18:00:09Z - Bit Rate256 - Sample Rate44100 - Normalization35 - Artwork Count1 - Sort AlbumStory of the Orchestra - Persistent ID83ED6C986E5DA545 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/16%20Willaim%20Tell%20Overture.m4a - File Folder Count4 - Library Folder Count1 - - 9934 - - Track ID9934 - NameSaint-Saëns: Carnival Of The Animals, The Elephant - ArtistMarián Lapšanský, Peter Toperczer, Etc.; Ondrej Lenárd: Czechoslovak Radio Symphony Orchestra - ComposerCamille Saint-Saëns - AlbumThe Story of the Orchestra - GenreChildren's - KindAAC audio file - Size3284572 - Total Time97333 - Track Number17 - Track Count37 - Year2001 - Date Modified2011-11-19T18:05:34Z - Date Added2011-11-19T18:00:32Z - Bit Rate256 - Sample Rate44100 - Normalization113 - Artwork Count1 - Sort AlbumStory of the Orchestra - Persistent IDCBB0AF51347C918F - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Maria%CC%81n%20Laps%CC%8Cansky%CC%81,%20Peter%20Toperczer,%20Etc.%3B%20Ondrej%20Lena%CC%81rd_%20Czechoslovak%20Radio%20Symphony%20Orchestra/The%20Story%20of%20the%20Orchestra/17%20Saint-Sae%CC%88ns_%20Carnival%20Of%20The%20Animals,%20The%20Elephant.m4a - File Folder Count4 - Library Folder Count1 - - 9936 - - Track ID9936 - NameDance of the Blessed Spirits - ArtistRobert Levine - AlbumThe Story of the Orchestra - GenreChildren's - KindAAC audio file - Size2879751 - Total Time85506 - Track Number18 - Track Count37 - Year2001 - Date Modified2011-11-19T18:05:34Z - Date Added2011-11-19T18:00:44Z - Bit Rate256 - Sample Rate44100 - Normalization246 - Artwork Count1 - Sort AlbumStory of the Orchestra - Persistent IDC2ECD9A569745D17 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/18%20Dance%20of%20the%20Blessed%20Spirits.m4a - File Folder Count4 - Library Folder Count1 - - 9938 - - Track ID9938 - NameBach: Orchestral Suite #2 In B Minor - Badinerie - ArtistHelmut Müller-Brühl: Cologne Chamber Orchestra - ComposerJohann Sebastian Bach - AlbumThe Story of the Orchestra - GenreChildren's - KindAAC audio file - Size2856961 - Total Time81493 - Track Number19 - Track Count37 - Year2001 - Date Modified2011-11-19T18:05:34Z - Date Added2011-11-19T18:00:54Z - Bit Rate256 - Sample Rate44100 - Skip Count1 - Skip Date2013-11-24T09:17:08Z - Normalization318 - Artwork Count1 - Sort AlbumStory of the Orchestra - Persistent IDD486BD57711C4391 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Helmut%20Mu%CC%88ller-Bru%CC%88hl_%20Cologne%20Chamber%20Orchestra/The%20Story%20of%20the%20Orchestra/19%20Bach_%20Orchestral%20Suite%20%232%20In%20B%20Minor%20-%20Badinerie.m4a - File Folder Count4 - Library Folder Count1 - - 9940 - - Track ID9940 - NameSymphony No. 4, Third Movement - ArtistRobert Levine - AlbumThe Story of the Orchestra - GenreChildren's - KindAAC audio file - Size1257633 - Total Time36173 - Track Number20 - Track Count37 - Year2001 - Date Modified2011-11-19T18:05:35Z - Date Added2011-11-19T18:01:04Z - Bit Rate256 - Sample Rate44100 - Normalization234 - Artwork Count1 - Sort AlbumStory of the Orchestra - Persistent ID916F38FD166C6099 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/20%20Symphony%20No.%204,%20Third%20Movement.m4a - File Folder Count4 - Library Folder Count1 - - 9942 - - Track ID9942 - NameSinfonia in G Major for Two Oboes - ArtistRobert Levine - AlbumThe Story of the Orchestra - GenreChildren's - KindAAC audio file - Size2471588 - Total Time71666 - Track Number21 - Track Count37 - Year2001 - Date Modified2011-11-19T18:05:35Z - Date Added2011-11-19T18:01:09Z - Bit Rate256 - Sample Rate44100 - Normalization303 - Artwork Count1 - Sort AlbumStory of the Orchestra - Persistent IDBF85C57C497D95F2 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/21%20Sinfonia%20in%20G%20Major%20for%20Two%20Oboes.m4a - File Folder Count4 - Library Folder Count1 - - 9944 - - Track ID9944 - NameConcerto for Clarinet and Orchestra - ArtistRobert Levine - AlbumThe Story of the Orchestra - GenreChildren's - KindAAC audio file - Size3148737 - Total Time90826 - Track Number22 - Track Count37 - Year2001 - Date Modified2011-11-19T18:05:35Z - Date Added2011-11-19T18:01:18Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3405229929 - Play Date UTC2011-11-27T03:42:09Z - Normalization500 - Artwork Count1 - Sort AlbumStory of the Orchestra - Persistent IDDB2E63C59286F632 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/22%20Concerto%20for%20Clarinet%20and%20Orchestra.m4a - File Folder Count4 - Library Folder Count1 - - 9946 - - Track ID9946 - NameBolero - ArtistRobert Levine - AlbumThe Story of the Orchestra - GenreChildren's - KindAAC audio file - Size3709629 - Total Time110666 - Track Number23 - Track Count37 - Year2001 - Date Modified2011-11-19T18:05:35Z - Date Added2011-11-19T18:01:30Z - Bit Rate256 - Sample Rate44100 - Normalization32 - Artwork Count1 - Sort AlbumStory of the Orchestra - Persistent ID59D7E69EB2859730 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/23%20Bolero.m4a - File Folder Count4 - Library Folder Count1 - - 9948 - - Track ID9948 - NameSorcerer's Apprentice - ArtistRobert Levine - AlbumThe Story of the Orchestra - GenreChildren's - KindAAC audio file - Size2472096 - Total Time72333 - Track Number24 - Track Count37 - Year2001 - Date Modified2011-11-19T18:05:36Z - Date Added2011-11-19T18:01:43Z - Bit Rate256 - Sample Rate44100 - Normalization159 - Artwork Count1 - Sort AlbumStory of the Orchestra - Persistent ID2127CBE074F3126B - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/24%20Sorcerer's%20Apprentice.m4a - File Folder Count4 - Library Folder Count1 - - 9950 - - Track ID9950 - NameMother Good Suiteq - ArtistRobert Levine - AlbumThe Story of the Orchestra - GenreChildren's - KindAAC audio file - Size4101013 - Total Time121173 - Track Number25 - Track Count37 - Year2001 - Date Modified2011-11-19T18:05:36Z - Date Added2011-11-19T18:01:51Z - Bit Rate256 - Sample Rate44100 - Normalization660 - Artwork Count1 - Sort AlbumStory of the Orchestra - Persistent IDFC78F5E806B0D7C5 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/25%20Mother%20Good%20Suiteq.m4a - File Folder Count4 - Library Folder Count1 - - 9952 - - Track ID9952 - NameConcert for trumpet in E Flat - ArtistRobert Levine - AlbumThe Story of the Orchestra - GenreChildren's - KindAAC audio file - Size3902752 - Total Time115493 - Track Number26 - Track Count37 - Year2001 - Date Modified2011-11-19T18:05:36Z - Date Added2011-11-19T18:02:04Z - Bit Rate256 - Sample Rate44100 - Normalization389 - Artwork Count1 - Sort AlbumStory of the Orchestra - Persistent IDA584A2F3050356E7 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/26%20Concert%20for%20trumpet%20in%20E%20Flat.m4a - File Folder Count4 - Library Folder Count1 - - 9954 - - Track ID9954 - NameHorn Concerto No. 1 - ArtistRobert Levine - AlbumThe Story of the Orchestra - GenreChildren's - KindAAC audio file - Size4029984 - Total Time119666 - Track Number27 - Track Count37 - Year2001 - Date Modified2011-11-19T18:05:37Z - Date Added2011-11-19T18:02:16Z - Bit Rate256 - Sample Rate44100 - Normalization90 - Artwork Count1 - Sort AlbumStory of the Orchestra - Persistent IDC6AACA7DF1F3152E - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/27%20Horn%20Concerto%20No.%201.m4a - File Folder Count4 - Library Folder Count1 - - 9956 - - Track ID9956 - NameSymphony No.3 - ArtistRobert Levine - AlbumThe Story of the Orchestra - GenreChildren's - KindAAC audio file - Size2641781 - Total Time80333 - Track Number28 - Track Count37 - Year2001 - Date Modified2011-11-19T18:05:37Z - Date Added2011-11-19T18:02:30Z - Bit Rate256 - Sample Rate44100 - Normalization480 - Artwork Count1 - Sort AlbumStory of the Orchestra - Persistent IDC7D26FF6D654AFD2 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/28%20Symphony%20No.3.m4a - File Folder Count4 - Library Folder Count1 - - 9958 - - Track ID9958 - NamePictures at an Exhibition - ArtistRobert Levine - AlbumThe Story of the Orchestra - GenreChildren's - KindAAC audio file - Size5335126 - Total Time158840 - Track Number29 - Track Count37 - Year2001 - Date Modified2011-11-19T18:05:37Z - Date Added2011-11-19T18:02:39Z - Bit Rate256 - Sample Rate44100 - Normalization841 - Artwork Count1 - Sort AlbumStory of the Orchestra - Persistent ID55237604C77E3863 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/29%20Pictures%20at%20an%20Exhibition.m4a - File Folder Count4 - Library Folder Count1 - - 9960 - - Track ID9960 - NameShchedrin: Carmen Suite - Changing Of The Guard - ArtistTheodore Kuchar: Ukranian State Symphony Orchestra - ComposerRodion K. Shchedrin - AlbumThe Story of the Orchestra - GenreChildren's - KindAAC audio file - Size4022470 - Total Time119333 - Track Number30 - Track Count37 - Year2001 - Date Modified2011-11-19T18:05:38Z - Date Added2011-11-19T18:02:56Z - Bit Rate256 - Sample Rate44100 - Normalization385 - Artwork Count1 - Sort AlbumStory of the Orchestra - Persistent ID19843D1DA0D02359 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Theodore%20Kuchar_%20Ukranian%20State%20Symphony%20Orchestra/The%20Story%20of%20the%20Orchestra/30%20Shchedrin_%20Carmen%20Suite%20-%20Changing%20Of%20The%20Guard.m4a - File Folder Count4 - Library Folder Count1 - - 9962 - - Track ID9962 - NameSynphony No.7 - ArtistRobert Levine - AlbumThe Story of the Orchestra - GenreChildren's - KindAAC audio file - Size2085247 - Total Time59160 - Track Number31 - Track Count37 - Year2001 - Date Modified2011-11-19T18:05:38Z - Date Added2011-11-19T18:03:09Z - Bit Rate256 - Sample Rate44100 - Normalization345 - Artwork Count1 - Sort AlbumStory of the Orchestra - Persistent ID4BE85908E5FE8173 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/31%20Synphony%20No.7.m4a - File Folder Count4 - Library Folder Count1 - - 9964 - - Track ID9964 - NameSynphony No.4 - ArtistRobert Levine - AlbumThe Story of the Orchestra - GenreChildren's - KindAAC audio file - Size3492768 - Total Time104666 - Track Number32 - Track Count37 - Year2001 - Date Modified2011-11-19T18:05:38Z - Date Added2011-11-19T18:03:15Z - Bit Rate256 - Sample Rate44100 - Normalization668 - Artwork Count1 - Sort AlbumStory of the Orchestra - Persistent ID6F8D1BF792EE43CF - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/32%20Synphony%20No.4.m4a - File Folder Count4 - Library Folder Count1 - - 9966 - - Track ID9966 - NamePeer Gynt - ArtistRobert Levine - AlbumThe Story of the Orchestra - GenreChildren's - KindAAC audio file - Size4262412 - Total Time126333 - Track Number33 - Track Count37 - Year2001 - Date Modified2011-11-19T18:05:39Z - Date Added2011-11-19T18:03:26Z - Bit Rate256 - Sample Rate44100 - Normalization123 - Artwork Count1 - Sort AlbumStory of the Orchestra - Persistent IDFC8BA6998175909B - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/33%20Peer%20Gynt.m4a - File Folder Count4 - Library Folder Count1 - - 9968 - - Track ID9968 - NameNutcracker - ArtistRobert Levine - AlbumThe Story of the Orchestra - GenreChildren's - KindAAC audio file - Size4291894 - Total Time128173 - Track Number34 - Track Count37 - Year2001 - Date Modified2011-11-19T18:05:39Z - Date Added2011-11-19T18:03:39Z - Bit Rate256 - Sample Rate44100 - Normalization132 - Artwork Count1 - Sort AlbumStory of the Orchestra - Persistent IDD716867F8AD78023 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/34%20Nutcracker.m4a - File Folder Count4 - Library Folder Count1 - - 9970 - - Track ID9970 - NameToccata and Fugue in D Minor - ArtistRobert Levine - AlbumThe Story of the Orchestra - GenreChildren's - KindAAC audio file - Size5935304 - Total Time176000 - Track Number35 - Track Count37 - Year2001 - Date Modified2011-11-19T18:05:39Z - Date Added2011-11-19T18:03:52Z - Bit Rate256 - Sample Rate44100 - Normalization278 - Artwork Count1 - Sort AlbumStory of the Orchestra - Persistent ID617D4C91459670CA - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/35%20Toccata%20and%20Fugue%20in%20D%20Minor.m4a - File Folder Count4 - Library Folder Count1 - - 9972 - - Track ID9972 - NameMoonlight Sonata - ArtistRobert Levine - AlbumThe Story of the Orchestra - GenreChildren's - KindAAC audio file - Size4329767 - Total Time143000 - Track Number36 - Track Count37 - Year2001 - Date Modified2011-11-19T18:05:40Z - Date Added2011-11-19T18:04:09Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3468165310 - Play Date UTC2013-11-24T13:45:10Z - Normalization101 - Artwork Count1 - Sort AlbumStory of the Orchestra - Persistent ID06F7145188A8A1AC - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/36%20Moonlight%20Sonata.m4a - File Folder Count4 - Library Folder Count1 - - 9974 - - Track ID9974 - NameConcerto Champetre - ArtistRobert Levine - AlbumThe Story of the Orchestra - GenreChildren's - KindAAC audio file - Size5843082 - Total Time174666 - Track Number37 - Track Count37 - Year2001 - Date Modified2011-11-19T18:05:40Z - Date Added2011-11-19T18:04:23Z - Bit Rate256 - Sample Rate44100 - Normalization218 - Artwork Count1 - Sort AlbumStory of the Orchestra - Persistent IDC05E0EEA15F58BE0 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/37%20Concerto%20Champetre.m4a - File Folder Count4 - Library Folder Count1 - - 10882 - - Track ID10882 - NamePi's Lullaby - ArtistAnwar Khurshid / Aruna Kalle / Cardinal Vaughan Memorial School / Chris Bleth / Courtney Grueschow / Evergreen Club Contemporary Gamelan / Jatinder Jeetu / Jeetu Prakesh / Mychael Danna / Rajesh Srinivasan / Thomas Fetherstonhaugh / Ulhas Bapat / V Selvag - AlbumLife Of Pi - GenreClassical - KindMPEG audio file - Size8930644 - Total Time222798 - Year2012 - Date Modified2013-01-14T03:20:50Z - Date Added2013-01-14T03:21:05Z - Bit Rate320 - Sample Rate44100 - Play Count4 - Play Date3485103823 - Play Date UTC2014-06-08T14:53:43Z - Rating100 - Album Rating100 - Album Rating Computed - Artwork Count1 - Persistent ID566F6E4DE27704C5 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Anwar%20Khurshid%20_%20Aruna%20Kalle%20_%20Cardinal%20Vaughan%20Memorial%20School%20_%20Chris%20Bleth%20_%20Courtney%20Grueschow%20_%20Evergreen%20Club%20Contemporary%20Gamelan%20_%20Jatinder%20Jeetu%20_%20Jeetu%20Prakesh%20_%20Mychael%20Danna%20_%20Rajesh%20Srinivasan%20_%20Thomas%20Fetherstonhaugh%20_%20Ulhas%20Bapat%20_%20V%20Selv/Life%20Of%20Pi/Pi's%20Lullaby.mp3 - File Folder Count4 - Library Folder Count1 - - 11506 - - Track ID11506 - NameGod Shuffled His Feet - ArtistCrash Test Dummies - ComposerBrad Roberts - AlbumGod Shuffled His Feet - GenreAlternative & Punk - KindMPEG audio file - Size6256402 - Total Time310543 - Disc Number1 - Disc Count1 - Track Number1 - Track Count12 - Year1993 - Date Modified2014-05-16T15:57:30Z - Date Added2014-05-16T15:57:30Z - Bit Rate160 - Sample Rate44100 - Play Count1 - Play Date3360253487 - Play Date UTC2010-06-24T14:14:47Z - Skip Count2 - Skip Date2014-06-12T12:10:15Z - Rating80 - Album Rating80 - Album Rating Computed - Normalization3238 - Artwork Count1 - Persistent IDF44EEB8D03AEDA47 - Track TypeFile - File Type1297106739 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Crash%20Test%20Dummies/God%20Shuffled%20His%20Feet/01%20God%20Shuffled%20His%20Feet.mp3 - File Folder Count4 - Library Folder Count1 - - 11510 - - Track ID11510 - NameFloe - ArtistPhilip Glass - Album ArtistPhilip Glass Ensemble: Philip Glass - ComposerPHILIP GLASS (b. 1937) - AlbumGlassworks - Expanded Edition - GenreClassical - KindMPEG audio file - Size7215809 - Total Time359575 - Disc Number1 - Disc Count1 - Track Number2 - Track Count11 - Year2003 - Date Modified2014-05-16T15:57:40Z - Date Added2014-05-16T15:57:40Z - Bit Rate160 - Sample Rate44100 - Play Count1 - Play Date3467302891 - Play Date UTC2013-11-14T14:11:31Z - Rating60 - Album Rating60 - Album Rating Computed - Normalization1162 - Compilation - Artwork Count1 - Persistent ID532195CDAD6610DC - Track TypeFile - File Type1297106739 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Glassworks%20-%20Expanded%20Edition/02%20Floe.mp3 - File Folder Count4 - Library Folder Count1 - - 11512 - - Track ID11512 - NameRubric - ArtistPhilip Glass - Album ArtistPhilip Glass Ensemble: Philip Glass - ComposerPHILIP GLASS (b. 1937) - AlbumGlassworks - Expanded Edition - GenreClassical - KindMPEG audio file - Size7317166 - Total Time364643 - Disc Number1 - Disc Count1 - Track Number4 - Track Count11 - Year2003 - Date Modified2014-05-16T15:57:46Z - Date Added2014-05-16T15:57:44Z - Bit Rate160 - Sample Rate44100 - Play Count1 - Play Date3467303716 - Play Date UTC2013-11-14T14:25:16Z - Rating40 - Album Rating60 - Album Rating Computed - Normalization1735 - Compilation - Artwork Count1 - Persistent ID04794A8300E20189 - Track TypeFile - File Type1297106739 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Glassworks%20-%20Expanded%20Edition/04%20Rubric.mp3 - File Folder Count4 - Library Folder Count1 - - 11524 - - Track ID11524 - NameStairway To Heaven - ArtistRodrigo Y Gabriela - Album ArtistRodrigo y Gabriela - ComposerJimmy Page.Robert Plant - AlbumRodrigo Y Gabriela - GenreJazz - KindMPEG audio file - Size5748606 - Total Time284264 - Disc Number1 - Disc Count1 - Track Number6 - Track Count9 - Year2006 - Date Modified2014-05-16T15:58:16Z - Date Added2014-05-16T15:58:11Z - Bit Rate160 - Sample Rate44100 - Play Count12 - Play Date3463328692 - Play Date UTC2013-09-29T14:14:52Z - Skip Count1 - Skip Date2014-06-12T12:09:34Z - Rating100 - Album Rating100 - Album Rating Computed - Normalization1690 - Artwork Count1 - Persistent ID8DF4FFBDF2ABADFE - Track TypeFile - File Type1297106739 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rodrigo%20y%20Gabriela/Rodrigo%20Y%20Gabriela/06%20Stairway%20To%20Heaven.mp3 - File Folder Count4 - Library Folder Count1 - - - Playlists - - - NameMusic for Maya - Playlist ID21282 - Playlist Persistent IDDE8BE7E8F6D143BA - All Items - Playlist Items - - - Track ID9938 - - - Track ID9934 - - - Track ID9902 - - - Track ID9906 - - - Track ID9908 - - - Track ID9910 - - - Track ID9912 - - - Track ID9914 - - - Track ID9916 - - - Track ID9918 - - - Track ID9920 - - - Track ID9922 - - - Track ID9924 - - - Track ID9926 - - - Track ID9928 - - - Track ID9930 - - - Track ID9932 - - - Track ID9936 - - - Track ID9940 - - - Track ID9942 - - - Track ID9944 - - - Track ID9946 - - - Track ID9948 - - - Track ID9950 - - - Track ID9952 - - - Track ID9954 - - - Track ID9956 - - - Track ID9958 - - - Track ID9962 - - - Track ID9964 - - - Track ID9966 - - - Track ID9968 - - - Track ID9970 - - - Track ID9972 - - - Track ID9974 - - - Track ID9904 - - - Track ID9960 - - - Track ID2262 - - - Track ID2264 - - - Track ID2266 - - - Track ID2268 - - - Track ID2270 - - - Track ID2272 - - - Track ID2274 - - - Track ID1694 - - - Track ID1696 - - - Track ID1698 - - - Track ID1700 - - - Track ID1702 - - - Track ID10882 - - - Track ID3910 - - - Track ID3912 - - - Track ID3914 - - - Track ID3916 - - - Track ID3816 - - - Track ID3818 - - - Track ID3820 - - - Track ID3822 - - - Track ID3432 - - - Track ID3434 - - - Track ID3436 - - - Track ID3438 - - - Track ID3440 - - - Track ID11506 - - - Track ID11510 - - - Track ID11512 - - - Track ID11524 - - - - - - \ No newline at end of file diff --git a/GeekyProjects/C1_ParsingMusicList/mymusic.xml b/GeekyProjects/C1_ParsingMusicList/mymusic.xml deleted file mode 100644 index 5b72586..0000000 --- a/GeekyProjects/C1_ParsingMusicList/mymusic.xml +++ /dev/null @@ -1,143232 +0,0 @@ - - - - - Major Version1 - Minor Version1 - Date2014-06-06T14:46:37Z - Application Version11.2.2 - Features5 - Show Content Ratings - Music Folderfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/ - Library Persistent ID5E7B8CC1F12D8073 - Tracks - - 1694 - - Track ID1694 - NameQuest for music (Maaya Malava Gowla) - ArtistZakir Hussain, Kunnakudi Vaidyanathan - AlbumGolden Krithis - Colors - GenrePop - KindAAC audio file - Size5672310 - Total Time236308 - Disc Number1 - Disc Count1 - Track Number1 - Track Count5 - Year2002 - Date Modified2006-08-13T06:49:38Z - Date Added2009-10-03T14:50:47Z - Bit Rate192 - Sample Rate44100 - Play Count3 - Play Date3462978530 - Play Date UTC2013-09-25T12:58:50Z - Skip Count2 - Skip Date2013-07-25T04:18:39Z - Normalization1100 - Artwork Count1 - Persistent ID5F920396806BFE27 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Zakir%20Hussain,%20Kunnakudi%20Vaidyanathan/Golden%20Krithis%20-%20Colors/01%20Quest%20for%20music%20(Maaya%20Malava%20Gow.m4a - File Folder Count4 - Library Folder Count1 - - 1696 - - Track ID1696 - NameValliya Naayaganaa (Shanmuga Priya) - ArtistZakir Hussain, Kunnakudi Vaidyanathan - AlbumGolden Krithis - Colors - GenrePop - KindAAC audio file - Size22043576 - Total Time913007 - Disc Number1 - Disc Count1 - Track Number2 - Track Count5 - Year2002 - Date Modified2006-08-13T06:49:34Z - Date Added2009-10-03T14:50:47Z - Bit Rate192 - Sample Rate44100 - Play Count3 - Play Date3461605007 - Play Date UTC2013-09-09T15:26:47Z - Normalization1117 - Artwork Count1 - Persistent IDDFBE2E85565513A1 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Zakir%20Hussain,%20Kunnakudi%20Vaidyanathan/Golden%20Krithis%20-%20Colors/02%20Valliya%20Naayaganaa%20(Shanmuga%20Priy.m4a - File Folder Count4 - Library Folder Count1 - - 1698 - - Track ID1698 - NameEvolution (Maaya Malava Gowla) - ArtistZakir Hussain, Kunnakudi Vaidyanathan - AlbumGolden Krithis - Colors - GenrePop - KindAAC audio file - Size12631717 - Total Time524072 - Disc Number1 - Disc Count1 - Track Number3 - Track Count5 - Year2002 - Date Modified2006-08-13T06:49:24Z - Date Added2009-10-03T14:50:47Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3461605531 - Play Date UTC2013-09-09T15:35:31Z - Normalization1011 - Artwork Count1 - Persistent IDC8BCD916312CCF2E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Zakir%20Hussain,%20Kunnakudi%20Vaidyanathan/Golden%20Krithis%20-%20Colors/03%20Evolution%20(Maaya%20Malava%20Gowla).m4a - File Folder Count4 - Library Folder Count1 - - 1700 - - Track ID1700 - NameSaamajavaragamana (Hindolam) - ArtistZakir Hussain, Kunnakudi Vaidyanathan - AlbumGolden Krithis - Colors - GenrePop - KindAAC audio file - Size22571239 - Total Time934810 - Disc Number1 - Disc Count1 - Track Number4 - Track Count5 - Year2002 - Date Modified2006-08-13T06:49:20Z - Date Added2009-10-03T14:50:47Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3389411811 - Play Date UTC2011-05-28T01:46:51Z - Normalization1039 - Artwork Count1 - Persistent IDC25F6C69215E9E77 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Zakir%20Hussain,%20Kunnakudi%20Vaidyanathan/Golden%20Krithis%20-%20Colors/04%20Saamajavaragamana%20(Hindolam).m4a - File Folder Count4 - Library Folder Count1 - - 1702 - - Track ID1702 - NameAbharaama Bhakti (Bandhuvaraali) - ArtistZakir Hussain, Kunnakudi Vaidyanathan - AlbumGolden Krithis - Colors - GenrePop - KindAAC audio file - Size19332696 - Total Time798138 - Disc Number1 - Disc Count1 - Track Number5 - Track Count5 - Year2002 - Date Modified2006-08-13T06:49:10Z - Date Added2009-10-03T14:50:47Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3389412609 - Play Date UTC2011-05-28T02:00:09Z - Normalization1102 - Artwork Count1 - Persistent ID35B87C22AE49A93F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Zakir%20Hussain,%20Kunnakudi%20Vaidyanathan/Golden%20Krithis%20-%20Colors/05%20Abharaama%20Bhakti%20(Bandhuvaraali).m4a - File Folder Count4 - Library Folder Count1 - - 1704 - - Track ID1704 - NameMaking Music - ArtistZakir Hussain - ComposerZakir Hussain - AlbumMaking Music - GenreWorld - KindAAC audio file - Size18180717 - Total Time750606 - Disc Number1 - Disc Count1 - Track Number1 - Track Count8 - Year1987 - Date Modified2006-08-13T06:49:00Z - Date Added2009-10-03T14:50:47Z - Bit Rate192 - Sample Rate44100 - Normalization363 - Artwork Count1 - Persistent IDEA2A2255B08BC7CE - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Zakir%20Hussain/Making%20Music/01%20Making%20Music.m4a - File Folder Count4 - Library Folder Count1 - - 1706 - - Track ID1706 - NameZakir - ArtistZakir Hussain - ComposerJohn McLaughlin - AlbumMaking Music - GenreWorld - KindAAC audio file - Size9304241 - Total Time383801 - Disc Number1 - Disc Count1 - Track Number2 - Track Count8 - Year1987 - Date Modified2006-08-13T06:48:52Z - Date Added2009-10-03T14:50:47Z - Bit Rate192 - Sample Rate44100 - Normalization323 - Artwork Count1 - Persistent IDDBEF6C8EFC7AE171 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Zakir%20Hussain/Making%20Music/02%20Zakir.m4a - File Folder Count4 - Library Folder Count1 - - 1708 - - Track ID1708 - NameWater Girl - ArtistZakir Hussain - ComposerZakir Hussain - AlbumMaking Music - GenreWorld - KindAAC audio file - Size5646141 - Total Time232407 - Disc Number1 - Disc Count1 - Track Number3 - Track Count8 - Year1987 - Date Modified2006-08-13T06:48:48Z - Date Added2009-10-03T14:50:47Z - Bit Rate192 - Sample Rate44100 - Normalization807 - Artwork Count1 - Persistent ID25593CD3618ED214 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Zakir%20Hussain/Making%20Music/03%20Water%20Girl.m4a - File Folder Count4 - Library Folder Count1 - - 1710 - - Track ID1710 - NameToni - ArtistZakir Hussain - ComposerZakir Hussain - AlbumMaking Music - GenreWorld - KindAAC audio file - Size5542984 - Total Time231013 - Disc Number1 - Disc Count1 - Track Number4 - Track Count8 - Year1987 - Date Modified2006-08-13T06:48:46Z - Date Added2009-10-03T14:50:47Z - Bit Rate192 - Sample Rate44100 - Normalization106 - Artwork Count1 - Persistent ID25209C7D6E54CC47 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Zakir%20Hussain/Making%20Music/04%20Toni.m4a - File Folder Count4 - Library Folder Count1 - - 1712 - - Track ID1712 - NameAnisa - ArtistZakir Hussain - ComposerZakir Hussain - AlbumMaking Music - GenreWorld - KindAAC audio file - Size13442881 - Total Time554816 - Disc Number1 - Disc Count1 - Track Number5 - Track Count8 - Year1987 - Date Modified2006-08-13T06:48:42Z - Date Added2009-10-03T14:50:47Z - Bit Rate192 - Sample Rate44100 - Normalization455 - Artwork Count1 - Persistent ID9A6ED1BD79B0C7F1 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Zakir%20Hussain/Making%20Music/05%20Anisa.m4a - File Folder Count4 - Library Folder Count1 - - 1714 - - Track ID1714 - NameSunjog - ArtistZakir Hussain - ComposerZakir Hussain - AlbumMaking Music - GenreWorld - KindAAC audio file - Size11054086 - Total Time456108 - Disc Number1 - Disc Count1 - Track Number6 - Track Count8 - Year1987 - Date Modified2006-08-13T06:48:36Z - Date Added2009-10-03T14:50:47Z - Bit Rate192 - Sample Rate44100 - Normalization231 - Artwork Count1 - Persistent ID281E1405308A20EE - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Zakir%20Hussain/Making%20Music/06%20Sunjog.m4a - File Folder Count4 - Library Folder Count1 - - 1716 - - Track ID1716 - NameYou And Me - ArtistZakir Hussain - ComposerJohn McLaughlin/Zakir Hussain - AlbumMaking Music - GenreWorld - KindAAC audio file - Size3237042 - Total Time132584 - Disc Number1 - Disc Count1 - Track Number7 - Track Count8 - Year1987 - Date Modified2006-08-13T06:48:32Z - Date Added2009-10-03T14:50:48Z - Bit Rate192 - Sample Rate44100 - Normalization352 - Artwork Count1 - Persistent IDDC698B5DF667F855 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Zakir%20Hussain/Making%20Music/07%20You%20And%20Me.m4a - File Folder Count4 - Library Folder Count1 - - 1718 - - Track ID1718 - NameSabah - ArtistZakir Hussain - ComposerZakir Hussain - AlbumMaking Music - GenreWorld - KindAAC audio file - Size5228926 - Total Time215038 - Disc Number1 - Disc Count1 - Track Number8 - Track Count8 - Year1987 - Date Modified2006-08-13T06:48:30Z - Date Added2009-10-03T14:50:48Z - Bit Rate192 - Sample Rate44100 - Normalization204 - Artwork Count1 - Persistent IDE18AC8C81836BE58 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Zakir%20Hussain/Making%20Music/08%20Sabah.m4a - File Folder Count4 - Library Folder Count1 - - 1720 - - Track ID1720 - NameCristal - ArtistYo-Yo Ma - ComposerBaden Powell (1937-2000)/Cesar Camargo Mariano (1943〜) - AlbumObrigado Brazil - GenreClassical - KindAAC audio file - Size4106854 - Total Time170015 - Disc Number1 - Disc Count1 - Track Number1 - Track Count16 - Year2003 - Date Modified2006-08-07T07:08:36Z - Date Added2009-10-03T14:50:48Z - Bit Rate192 - Sample Rate44100 - Normalization1230 - Artwork Count1 - Persistent IDA98890B974BA34F9 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yo-Yo%20Ma/Obrigado%20Brazil/01%20Cristal.m4a - File Folder Count4 - Library Folder Count1 - - 1722 - - Track ID1722 - NameChega De Saudade - ArtistYo-Yo Ma - ComposerAntonio Carlos Jobim (1927-1994) - AlbumObrigado Brazil - GenreClassical - KindAAC audio file - Size6138495 - Total Time256370 - Disc Number1 - Disc Count1 - Track Number2 - Track Count16 - Year2003 - Date Modified2006-08-07T07:08:36Z - Date Added2009-10-03T14:50:48Z - Bit Rate192 - Sample Rate44100 - Normalization776 - Artwork Count1 - Persistent IDF916A03C9A6952B0 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yo-Yo%20Ma/Obrigado%20Brazil/02%20Chega%20De%20Saudade.m4a - File Folder Count4 - Library Folder Count1 - - 1724 - - Track ID1724 - NameA Lenda Do Caboclo - ArtistYo-Yo Ma - ComposerHeitor Villa-Lobos (1887-1959) - AlbumObrigado Brazil - GenreClassical - KindAAC audio file - Size4562411 - Total Time190309 - Disc Number1 - Disc Count1 - Track Number3 - Track Count16 - Year2003 - Date Modified2006-08-07T07:08:36Z - Date Added2009-10-03T14:50:49Z - Bit Rate192 - Sample Rate44100 - Normalization719 - Artwork Count1 - Sort NameLenda Do Caboclo - Persistent ID69282D137FE45EA6 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yo-Yo%20Ma/Obrigado%20Brazil/03%20A%20Lenda%20Do%20Caboclo.m4a - File Folder Count4 - Library Folder Count1 - - 1726 - - Track ID1726 - NameDoce De Coco - ArtistYo-Yo Ma - ComposerJacó do Bandolim (1918-1969) - AlbumObrigado Brazil - GenreClassical - KindAAC audio file - Size7503277 - Total Time312515 - Disc Number1 - Disc Count1 - Track Number4 - Track Count16 - Year2003 - Date Modified2006-08-07T07:08:36Z - Date Added2009-10-03T14:50:49Z - Bit Rate192 - Sample Rate44100 - Normalization905 - Artwork Count1 - Persistent IDFE246478A14A097E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yo-Yo%20Ma/Obrigado%20Brazil/04%20Doce%20De%20Coco.m4a - File Folder Count4 - Library Folder Count1 - - 1728 - - Track ID1728 - NameDansa Brasileira - ArtistYo-Yo Ma - ComposerCamargo Mozart Guarnieri (1907-1993) - AlbumObrigado Brazil - GenreClassical - KindAAC audio file - Size3346698 - Total Time138087 - Disc Number1 - Disc Count1 - Track Number5 - Track Count16 - Year2003 - Date Modified2006-08-07T07:08:36Z - Date Added2009-10-03T14:50:49Z - Bit Rate192 - Sample Rate44100 - Normalization1230 - Artwork Count1 - Persistent IDDC185881636D2DCF - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yo-Yo%20Ma/Obrigado%20Brazil/05%20Dansa%20Brasileira.m4a - File Folder Count4 - Library Folder Count1 - - 1730 - - Track ID1730 - NameApelo - ArtistYo-Yo Ma - ComposerBaden Powell (1937-2000) - AlbumObrigado Brazil - GenreClassical - KindAAC audio file - Size7180147 - Total Time297910 - Disc Number1 - Disc Count1 - Track Number6 - Track Count16 - Year2003 - Date Modified2006-08-07T07:08:36Z - Date Added2009-10-03T14:50:49Z - Bit Rate192 - Sample Rate44100 - Normalization1230 - Artwork Count1 - Persistent IDD50D456F9DAFE907 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yo-Yo%20Ma/Obrigado%20Brazil/06%20Apelo.m4a - File Folder Count4 - Library Folder Count1 - - 1732 - - Track ID1732 - NameDansa Negra - ArtistYo-Yo Ma - ComposerCamargo Mozart Guarnieri (1907-1993) - AlbumObrigado Brazil - GenreClassical - KindAAC audio file - Size5085991 - Total Time211276 - Disc Number1 - Disc Count1 - Track Number7 - Track Count16 - Year2003 - Date Modified2006-08-07T07:08:36Z - Date Added2009-10-03T14:50:49Z - Bit Rate192 - Sample Rate44100 - Normalization970 - Artwork Count1 - Persistent ID16C9775957761787 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yo-Yo%20Ma/Obrigado%20Brazil/07%20Dansa%20Negra.m4a - File Folder Count4 - Library Folder Count1 - - 1734 - - Track ID1734 - Name1 x 0 (Um A Zero) - ArtistYo-Yo Ma - ComposerPixinguinha (1897-1973)/arr. J. Calandrelli - AlbumObrigado Brazil - GenreClassical - KindAAC audio file - Size3853838 - Total Time160773 - Disc Number1 - Disc Count1 - Track Number8 - Track Count16 - Year2003 - Date Modified2006-08-07T07:08:36Z - Date Added2009-10-03T14:50:49Z - Bit Rate192 - Sample Rate44100 - Normalization945 - Artwork Count1 - Persistent ID1C53F697B0635ADB - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yo-Yo%20Ma/Obrigado%20Brazil/08%201%20x%200%20(Um%20A%20Zero).m4a - File Folder Count4 - Library Folder Count1 - - 1736 - - Track ID1736 - NameMenino - ArtistYo-Yo Ma - ComposerSérgio Assad (1952~) - AlbumObrigado Brazil - GenreClassical - KindAAC audio file - Size8104901 - Total Time336409 - Disc Number1 - Disc Count1 - Track Number9 - Track Count16 - Year2003 - Date Modified2006-08-07T07:08:36Z - Date Added2009-10-03T14:50:49Z - Bit Rate192 - Sample Rate44100 - Normalization699 - Artwork Count1 - Persistent ID08DC5048A89630E3 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yo-Yo%20Ma/Obrigado%20Brazil/09%20Menino.m4a - File Folder Count4 - Library Folder Count1 - - 1738 - - Track ID1738 - NameSamambaia - ArtistYo-Yo Ma - ComposerCesar Camargo Mariano (1943~) - AlbumObrigado Brazil - GenreClassical - KindAAC audio file - Size7705966 - Total Time319133 - Disc Number1 - Disc Count1 - Track Number10 - Track Count16 - Year2003 - Date Modified2006-08-07T07:08:34Z - Date Added2009-10-03T14:50:50Z - Bit Rate192 - Sample Rate44100 - Normalization1230 - Artwork Count1 - Persistent IDB1C3E9863F5BE80A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yo-Yo%20Ma/Obrigado%20Brazil/10%20Samambaia.m4a - File Folder Count4 - Library Folder Count1 - - 1740 - - Track ID1740 - NameCarinhoso - ArtistYo-Yo Ma - ComposerPixinguinha (1897-1973) - AlbumObrigado Brazil - GenreClassical - KindAAC audio file - Size6971157 - Total Time288576 - Disc Number1 - Disc Count1 - Track Number11 - Track Count16 - Year2003 - Date Modified2006-08-07T07:08:34Z - Date Added2009-10-03T14:50:50Z - Bit Rate192 - Sample Rate44100 - Normalization442 - Artwork Count1 - Persistent IDA1D46EFBEAD0618D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yo-Yo%20Ma/Obrigado%20Brazil/11%20Carinhoso.m4a - File Folder Count4 - Library Folder Count1 - - 1742 - - Track ID1742 - NameAlma Brasileira - ArtistYo-Yo Ma - ComposerHeitor Villa-Lobos (1887~1959) - AlbumObrigado Brazil - GenreClassical - KindAAC audio file - Size7375634 - Total Time305201 - Disc Number1 - Disc Count1 - Track Number12 - Track Count16 - Year2003 - Date Modified2006-08-07T07:08:34Z - Date Added2009-10-03T14:50:50Z - Bit Rate192 - Sample Rate44100 - Normalization1230 - Artwork Count1 - Persistent IDE850B25616DD67C5 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yo-Yo%20Ma/Obrigado%20Brazil/12%20Alma%20Brasileira.m4a - File Folder Count4 - Library Folder Count1 - - 1744 - - Track ID1744 - NameO Amor Em Paz - ArtistYo-Yo Ma - ComposerAntonio Carlos Jobim - AlbumObrigado Brazil - GenreClassical - KindAAC audio file - Size5561239 - Total Time232081 - Disc Number1 - Disc Count1 - Track Number13 - Track Count16 - Year2003 - Date Modified2006-08-07T07:08:34Z - Date Added2009-10-03T14:50:50Z - Bit Rate192 - Sample Rate44100 - Normalization1028 - Artwork Count1 - Persistent ID9CF1C6175EC8CD21 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yo-Yo%20Ma/Obrigado%20Brazil/13%20O%20Amor%20Em%20Paz.m4a - File Folder Count4 - Library Folder Count1 - - 1746 - - Track ID1746 - NameBodas De Prata & Quatro Cantos - ArtistYo-Yo Ma - ComposerEgberto Gismonti (1947~) - AlbumObrigado Brazil - GenreClassical - KindAAC audio file - Size14254296 - Total Time588949 - Disc Number1 - Disc Count1 - Track Number14 - Track Count16 - Year2003 - Date Modified2006-08-07T07:08:34Z - Date Added2009-10-03T14:50:50Z - Bit Rate192 - Sample Rate44100 - Normalization732 - Artwork Count1 - Persistent ID5745072D5CF5785C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yo-Yo%20Ma/Obrigado%20Brazil/14%20Bodas%20De%20Prata%20&%20Quatro%20Cantos.m4a - File Folder Count4 - Library Folder Count1 - - 1748 - - Track ID1748 - NameBrasileirinho - ArtistYo-Yo Ma - ComposerWaldir Azevedo (1923-1980) - AlbumObrigado Brazil - GenreClassical - KindAAC audio file - Size4968333 - Total Time210673 - Disc Number1 - Disc Count1 - Track Number15 - Track Count16 - Year2003 - Date Modified2006-08-07T07:08:34Z - Date Added2009-10-03T14:50:50Z - Bit Rate192 - Sample Rate44100 - Normalization1230 - Artwork Count1 - Persistent IDF24C56A1663F9DC7 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yo-Yo%20Ma/Obrigado%20Brazil/15%20Brasileirinho.m4a - File Folder Count4 - Library Folder Count1 - - 1750 - - Track ID1750 - NameSalvador - ArtistYo-Yo Ma - ComposerEgberto Gismonti - AlbumObrigado Brazil - GenreClassical - KindAAC audio file - Size7118029 - Total Time293638 - Disc Number1 - Disc Count1 - Track Number16 - Track Count16 - Year2003 - Date Modified2006-08-07T07:08:34Z - Date Added2009-10-03T14:50:50Z - Bit Rate192 - Sample Rate44100 - Normalization559 - Artwork Count1 - Persistent ID3A4EC9D23DB8813E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yo-Yo%20Ma/Obrigado%20Brazil/16%20Salvador.m4a - File Folder Count4 - Library Folder Count1 - - 1752 - - Track ID1752 - NameSantorini - ArtistYanni - ComposerYanni - AlbumLive At The Acropolis - GenreNew Age - KindAAC audio file - Size10139276 - Total Time417284 - Disc Number1 - Disc Count1 - Track Number1 - Track Count10 - Year1993 - Date Modified2006-08-08T11:41:08Z - Date Added2009-10-03T14:50:52Z - Bit Rate192 - Sample Rate44100 - Normalization1334 - Artwork Count1 - Persistent ID1FDB626463480024 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yanni/Live%20At%20The%20Acropolis/01%20Santorini.m4a - File Folder Count4 - Library Folder Count1 - - 1754 - - Track ID1754 - NameKeys To Imagination - ArtistYanni - ComposerYanni - AlbumLive At The Acropolis - GenreNew Age - KindAAC audio file - Size11042338 - Total Time454622 - Disc Number1 - Disc Count1 - Track Number2 - Track Count10 - Year1993 - Date Modified2006-08-08T11:41:08Z - Date Added2009-10-03T14:50:52Z - Bit Rate192 - Sample Rate44100 - Normalization1225 - Artwork Count1 - Persistent ID060030CA8A7DD208 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yanni/Live%20At%20The%20Acropolis/02%20Keys%20To%20Imagination.m4a - File Folder Count4 - Library Folder Count1 - - 1756 - - Track ID1756 - NameUntil The Last Moment - ArtistYanni - ComposerYanni - AlbumLive At The Acropolis - GenreNew Age - KindAAC audio file - Size9653550 - Total Time397222 - Disc Number1 - Disc Count1 - Track Number3 - Track Count10 - Year1993 - Date Modified2006-08-08T11:41:08Z - Date Added2009-10-03T14:50:52Z - Bit Rate192 - Sample Rate44100 - Normalization1075 - Artwork Count1 - Persistent ID70886F0D00D98520 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yanni/Live%20At%20The%20Acropolis/03%20Until%20The%20Last%20Moment.m4a - File Folder Count4 - Library Folder Count1 - - 1758 - - Track ID1758 - NameThe Rain Must Fall - ArtistYanni - ComposerYanni - AlbumLive At The Acropolis - GenreNew Age - KindAAC audio file - Size10806085 - Total Time444846 - Disc Number1 - Disc Count1 - Track Number4 - Track Count10 - Year1993 - Date Modified2006-08-08T11:41:06Z - Date Added2009-10-03T14:50:53Z - Bit Rate192 - Sample Rate44100 - Normalization1860 - Artwork Count1 - Sort NameRain Must Fall - Persistent ID00BE046221FD302A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yanni/Live%20At%20The%20Acropolis/04%20The%20Rain%20Must%20Fall.m4a - File Folder Count4 - Library Folder Count1 - - 1760 - - Track ID1760 - NameAcroyali / Standing In Motion - ArtistYanni - ComposerYanni - AlbumLive At The Acropolis - GenreNew Age - KindAAC audio file - Size12889122 - Total Time530922 - Disc Number1 - Disc Count1 - Track Number5 - Track Count10 - Year1993 - Date Modified2006-08-08T11:41:06Z - Date Added2009-10-03T14:50:53Z - Bit Rate192 - Sample Rate44100 - Normalization1358 - Artwork Count1 - Persistent IDDDB80A4BBE99C3AA - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yanni/Live%20At%20The%20Acropolis/05%20Acroyali%20_%20Standing%20In%20Motion.m4a - File Folder Count4 - Library Folder Count1 - - 1762 - - Track ID1762 - NameOne Man's Dream - ArtistYanni - ComposerYanni - AlbumLive At The Acropolis - GenreNew Age - KindAAC audio file - Size5266192 - Total Time215572 - Disc Number1 - Disc Count1 - Track Number6 - Track Count10 - Year1993 - Date Modified2006-08-08T11:41:06Z - Date Added2009-10-03T14:50:53Z - Bit Rate192 - Sample Rate44100 - Normalization1079 - Artwork Count1 - Persistent ID95A581D249BFA07D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yanni/Live%20At%20The%20Acropolis/06%20One%20Man's%20Dream.m4a - File Folder Count4 - Library Folder Count1 - - 1764 - - Track ID1764 - NameWithin Attraction - ArtistYanni - ComposerYanni - AlbumLive At The Acropolis - GenreNew Age - KindAAC audio file - Size11335959 - Total Time466742 - Disc Number1 - Disc Count1 - Track Number7 - Track Count10 - Year1993 - Date Modified2006-08-08T11:41:06Z - Date Added2009-10-03T14:50:54Z - Bit Rate192 - Sample Rate44100 - Normalization1275 - Artwork Count1 - Persistent ID98D9348E8A7C5FAD - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yanni/Live%20At%20The%20Acropolis/07%20Within%20Attraction.m4a - File Folder Count4 - Library Folder Count1 - - 1766 - - Track ID1766 - NameNostalgia - ArtistYanni - ComposerYanni - AlbumLive At The Acropolis - GenreNew Age - KindAAC audio file - Size8420913 - Total Time346277 - Disc Number1 - Disc Count1 - Track Number8 - Track Count10 - Year1993 - Date Modified2006-08-08T11:41:06Z - Date Added2009-10-03T14:50:54Z - Bit Rate192 - Sample Rate44100 - Normalization1967 - Artwork Count1 - Persistent ID4160E451F26159B9 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yanni/Live%20At%20The%20Acropolis/08%20Nostalgia.m4a - File Folder Count4 - Library Folder Count1 - - 1768 - - Track ID1768 - NameSwept Away - ArtistYanni - ComposerYanni - AlbumLive At The Acropolis - GenreNew Age - KindAAC audio file - Size13630479 - Total Time561549 - Disc Number1 - Disc Count1 - Track Number9 - Track Count10 - Year1993 - Date Modified2006-08-08T11:41:06Z - Date Added2009-10-03T14:50:55Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Persistent ID53042B7546A73EA5 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yanni/Live%20At%20The%20Acropolis/09%20Swept%20Away.m4a - File Folder Count4 - Library Folder Count1 - - 1770 - - Track ID1770 - NameReflections Of Passion - ArtistYanni - ComposerYanni - AlbumLive At The Acropolis - GenreNew Age - KindAAC audio file - Size7333903 - Total Time301393 - Disc Number1 - Disc Count1 - Track Number10 - Track Count10 - Year1993 - Date Modified2006-08-08T11:41:06Z - Date Added2009-10-03T14:50:55Z - Bit Rate192 - Sample Rate44100 - Normalization1151 - Artwork Count1 - Persistent ID62372F58E0D08EF4 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yanni/Live%20At%20The%20Acropolis/10%20Reflections%20Of%20Passion.m4a - File Folder Count4 - Library Folder Count1 - - 1772 - - Track ID1772 - NameOnce Upon A Time - ArtistYanni - ComposerYanni - AlbumDevotion - GenreNew Age - KindAAC audio file - Size5502055 - Total Time230688 - Disc Number1 - Disc Count1 - Track Number1 - Track Count15 - Year1997 - Date Modified2006-08-13T06:48:26Z - Date Added2009-10-03T14:50:56Z - Bit Rate192 - Sample Rate44100 - Normalization660 - Artwork Count1 - Persistent IDF524A746E99462B7 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yanni/Devotion/01%20Once%20Upon%20A%20Time.m4a - File Folder Count4 - Library Folder Count1 - - 1774 - - Track ID1774 - NameWithin Attraction - ArtistYanni - ComposerYanni - AlbumDevotion - GenreNew Age - KindAAC audio file - Size6025416 - Total Time250472 - Disc Number1 - Disc Count1 - Track Number2 - Track Count15 - Year1997 - Date Modified2006-08-13T06:48:24Z - Date Added2009-10-03T14:50:56Z - Bit Rate192 - Sample Rate44100 - Normalization802 - Artwork Count1 - Persistent IDD74BC336363DB0BE - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yanni/Devotion/02%20Within%20Attraction.m4a - File Folder Count4 - Library Folder Count1 - - 1776 - - Track ID1776 - NameSong For Antarctica - ArtistYanni - ComposerYanni - AlbumDevotion - GenreNew Age - KindAAC audio file - Size6333432 - Total Time263637 - Disc Number1 - Disc Count1 - Track Number3 - Track Count15 - Year1997 - Date Modified2006-08-13T06:48:22Z - Date Added2009-10-03T14:50:56Z - Bit Rate192 - Sample Rate44100 - Normalization537 - Artwork Count1 - Persistent IDFD4E744A1F832624 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yanni/Devotion/03%20Song%20For%20Antarctica.m4a - File Folder Count4 - Library Folder Count1 - - 1778 - - Track ID1778 - NameAria - ArtistYanni - ComposerMalcolm McLaren & Yanni - AlbumDevotion - GenreNew Age - KindAAC audio file - Size5780175 - Total Time240046 - Disc Number1 - Disc Count1 - Track Number4 - Track Count15 - Year1997 - Date Modified2006-08-13T06:48:18Z - Date Added2009-10-03T14:50:56Z - Bit Rate192 - Sample Rate44100 - Normalization1002 - Artwork Count1 - Persistent ID957356E7C00E3B64 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yanni/Devotion/04%20Aria.m4a - File Folder Count4 - Library Folder Count1 - - 1780 - - Track ID1780 - NameA Love For Life - ArtistYanni - ComposerYanni - AlbumDevotion - GenreNew Age - KindAAC audio file - Size7398567 - Total Time306873 - Disc Number1 - Disc Count1 - Track Number5 - Track Count15 - Year1997 - Date Modified2006-08-13T06:48:16Z - Date Added2009-10-03T14:50:56Z - Bit Rate192 - Sample Rate44100 - Normalization996 - Artwork Count1 - Sort NameLove For Life - Persistent IDA9C91B1527AF743A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yanni/Devotion/05%20A%20Love%20For%20Life.m4a - File Folder Count4 - Library Folder Count1 - - 1782 - - Track ID1782 - NameReflections Of Passion - ArtistYanni - ComposerYanni - AlbumDevotion - GenreNew Age - KindAAC audio file - Size6571346 - Total Time271904 - Disc Number1 - Disc Count1 - Track Number6 - Track Count15 - Year1997 - Date Modified2006-08-13T06:48:12Z - Date Added2009-10-03T14:50:57Z - Bit Rate192 - Sample Rate44100 - Normalization852 - Artwork Count1 - Persistent IDF9C01128AE99A716 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yanni/Devotion/06%20Reflections%20Of%20Passion.m4a - File Folder Count4 - Library Folder Count1 - - 1784 - - Track ID1784 - NameTo Take... To Hold - ArtistYanni - ComposerYanni - AlbumDevotion - GenreNew Age - KindAAC audio file - Size5748322 - Total Time239210 - Disc Number1 - Disc Count1 - Track Number7 - Track Count15 - Year1997 - Date Modified2006-08-13T06:48:10Z - Date Added2009-10-03T14:50:57Z - Bit Rate192 - Sample Rate44100 - Normalization996 - Artwork Count1 - Persistent ID57BE1781D1B838D7 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yanni/Devotion/07%20To%20Take...%20To%20Hold.m4a - File Folder Count4 - Library Folder Count1 - - 1786 - - Track ID1786 - NameOnly A Memory - ArtistYanni - ComposerYanni - AlbumDevotion - GenreNew Age - KindAAC audio file - Size6166420 - Total Time256950 - Disc Number1 - Disc Count1 - Track Number8 - Track Count15 - Year1997 - Date Modified2006-08-13T06:48:08Z - Date Added2009-10-03T14:50:57Z - Bit Rate192 - Sample Rate44100 - Normalization805 - Artwork Count1 - Persistent ID883B7D31EF6D89B5 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yanni/Devotion/08%20Only%20A%20Memory.m4a - File Folder Count4 - Library Folder Count1 - - 1788 - - Track ID1788 - NameFlight Of Fantasy - ArtistYanni - ComposerYanni - AlbumDevotion - GenreNew Age - KindAAC audio file - Size8225500 - Total Time340751 - Disc Number1 - Disc Count1 - Track Number9 - Track Count15 - Year1997 - Date Modified2006-08-13T06:48:04Z - Date Added2009-10-03T14:50:57Z - Bit Rate192 - Sample Rate44100 - Normalization768 - Artwork Count1 - Persistent IDEA9F19676E422B60 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yanni/Devotion/09%20Flight%20Of%20Fantasy.m4a - File Folder Count4 - Library Folder Count1 - - 1790 - - Track ID1790 - NameTo The One Who Knows - ArtistYanni - ComposerYanni - AlbumDevotion - GenreNew Age - KindAAC audio file - Size8119337 - Total Time337129 - Disc Number1 - Disc Count1 - Track Number10 - Track Count15 - Year1997 - Date Modified2006-08-13T06:48:00Z - Date Added2009-10-03T14:50:57Z - Bit Rate192 - Sample Rate44100 - Normalization477 - Artwork Count1 - Persistent IDDB6EBC3A680B04A7 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yanni/Devotion/10%20To%20The%20One%20Who%20Knows.m4a - File Folder Count4 - Library Folder Count1 - - 1792 - - Track ID1792 - NameThe End Of August - ArtistYanni - ComposerYanni - AlbumDevotion - GenreNew Age - KindAAC audio file - Size5461603 - Total Time226741 - Disc Number1 - Disc Count1 - Track Number11 - Track Count15 - Year1997 - Date Modified2006-08-13T06:47:58Z - Date Added2009-10-03T14:50:58Z - Bit Rate192 - Sample Rate44100 - Normalization424 - Artwork Count1 - Sort NameEnd Of August - Persistent ID36487381C35BE6AE - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yanni/Devotion/11%20The%20End%20Of%20August.m4a - File Folder Count4 - Library Folder Count1 - - 1794 - - Track ID1794 - NameMarching Season - ArtistYanni - ComposerYanni - AlbumDevotion - GenreNew Age - KindAAC audio file - Size3857837 - Total Time159287 - Disc Number1 - Disc Count1 - Track Number12 - Track Count15 - Year1997 - Date Modified2006-08-13T06:47:54Z - Date Added2009-10-03T14:50:58Z - Bit Rate192 - Sample Rate44100 - Normalization852 - Artwork Count1 - Persistent ID67842FE2AEE02805 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yanni/Devotion/12%20Marching%20Season.m4a - File Folder Count4 - Library Folder Count1 - - 1796 - - Track ID1796 - NameSantotini - ArtistYanni - ComposerYanni - AlbumDevotion - GenreNew Age - KindAAC audio file - Size6641219 - Total Time275549 - Disc Number1 - Disc Count1 - Track Number13 - Track Count15 - Year1997 - Date Modified2006-08-13T06:47:54Z - Date Added2009-10-03T14:50:58Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Persistent ID2E5C695325A68F83 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yanni/Devotion/13%20Santotini.m4a - File Folder Count4 - Library Folder Count1 - - 1798 - - Track ID1798 - NameNice To Meet You - ArtistYanni - ComposerYanni - AlbumDevotion - GenreNew Age - KindAAC audio file - Size4870543 - Total Time200781 - Disc Number1 - Disc Count1 - Track Number14 - Track Count15 - Year1997 - Date Modified2006-08-13T06:47:50Z - Date Added2009-10-03T14:50:58Z - Bit Rate192 - Sample Rate44100 - Normalization902 - Artwork Count1 - Persistent IDD0E87A680583DAC5 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yanni/Devotion/14%20Nice%20To%20Meet%20You.m4a - File Folder Count4 - Library Folder Count1 - - 1800 - - Track ID1800 - NameA Nignt To Remember - ArtistYanni - ComposerYanni - AlbumDevotion - GenreNew Age - KindAAC audio file - Size8407857 - Total Time349853 - Disc Number1 - Disc Count1 - Track Number15 - Track Count15 - Year1997 - Date Modified2006-08-13T06:47:48Z - Date Added2009-10-03T14:50:58Z - Bit Rate192 - Sample Rate44100 - Normalization587 - Artwork Count1 - Sort NameNignt To Remember - Persistent ID914F47F2A011C399 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yanni/Devotion/15%20A%20Nignt%20To%20Remember.m4a - File Folder Count4 - Library Folder Count1 - - 1802 - - Track ID1802 - NameSymphony No. 40 in G minor K - ArtistWolfgang Amadeus Mozart - AlbumMozart - GenreClassical - KindAAC audio file - Size11358360 - Total Time476007 - Track Number1 - Track Count8 - Date Modified2006-07-30T15:37:38Z - Date Added2009-10-03T14:50:59Z - Bit Rate192 - Sample Rate44100 - Skip Count1 - Skip Date2013-07-25T04:11:54Z - Normalization625 - Artwork Count1 - Persistent ID7E16503BE4DB0D16 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Wolfgang%20Amadeus%20Mozart/Mozart/01%20Symphony%20No.%2040%20in%20G%20minor%20K.m4a - File Folder Count4 - Library Folder Count1 - - 1804 - - Track ID1804 - NamePiano Concerto No. 21 in C Major - ArtistWolfgang Amadeus Mozart - AlbumMozart - GenreClassical - KindAAC audio file - Size8105498 - Total Time340008 - Track Number2 - Track Count8 - Date Modified2006-07-30T15:37:38Z - Date Added2009-10-03T14:50:59Z - Bit Rate192 - Sample Rate44100 - Skip Count1 - Skip Date2013-07-25T04:12:02Z - Normalization172 - Artwork Count1 - Persistent ID8EF151F3F062BC6F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Wolfgang%20Amadeus%20Mozart/Mozart/02%20Piano%20Concerto%20No.%2021%20in%20C%20Major.m4a - File Folder Count4 - Library Folder Count1 - - 1806 - - Track ID1806 - NameViolin Concerto No. 5 in A major - ArtistWolfgang Amadeus Mozart - AlbumMozart - GenreClassical - KindAAC audio file - Size13788635 - Total Time576015 - Track Number3 - Track Count8 - Date Modified2006-07-30T15:37:38Z - Date Added2009-10-03T14:50:59Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3399390992 - Play Date UTC2011-09-20T13:46:32Z - Normalization356 - Artwork Count1 - Persistent IDB71DDC5504B41EE9 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Wolfgang%20Amadeus%20Mozart/Mozart/03%20Violin%20Concerto%20No.%205%20in%20A%20major.m4a - File Folder Count4 - Library Folder Count1 - - 1808 - - Track ID1808 - NameSymphony No. 41 in C major - ArtistWolfgang Amadeus Mozart - AlbumMozart - GenreClassical - KindAAC audio file - Size12830294 - Total Time537006 - Track Number4 - Track Count8 - Date Modified2006-07-30T15:37:40Z - Date Added2009-10-03T14:50:59Z - Bit Rate192 - Sample Rate44100 - Normalization1097 - Artwork Count1 - Persistent IDABF532E469D9741F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Wolfgang%20Amadeus%20Mozart/Mozart/04%20Symphony%20No.%2041%20in%20C%20major.m4a - File Folder Count4 - Library Folder Count1 - - 1810 - - Track ID1810 - NameConcerto for Clarinet and Orchestra in A major - ArtistWolfgang Amadeus Mozart - AlbumMozart - GenreClassical - KindAAC audio file - Size10680559 - Total Time446007 - Track Number5 - Track Count8 - Date Modified2006-07-30T15:37:40Z - Date Added2009-10-03T14:50:59Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3400230234 - Play Date UTC2011-09-30T06:53:54Z - Normalization550 - Artwork Count1 - Persistent IDBDDA7A8D59BD9254 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Wolfgang%20Amadeus%20Mozart/Mozart/05%20Concerto%20for%20Clarinet%20and%20Orchest.m4a - File Folder Count4 - Library Folder Count1 - - 1812 - - Track ID1812 - NameSerenade No. 13 in G major - ArtistWolfgang Amadeus Mozart - AlbumMozart - GenreClassical - KindAAC audio file - Size11390013 - Total Time477006 - Track Number6 - Track Count8 - Date Modified2006-07-30T15:37:40Z - Date Added2009-10-03T14:50:59Z - Bit Rate192 - Sample Rate44100 - Normalization533 - Artwork Count1 - Persistent IDC20813C3D5A76E22 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Wolfgang%20Amadeus%20Mozart/Mozart/06%20Serenade%20No.%2013%20in%20G%20major.m4a - File Folder Count4 - Library Folder Count1 - - 1814 - - Track ID1814 - NameConcerto for Flute, Harp and Orchestra in C Mjor - ArtistWolfgang Amadeus Mozart - AlbumMozart - GenreClassical - KindAAC audio file - Size12450330 - Total Time520009 - Track Number7 - Track Count8 - Date Modified2006-07-30T15:37:40Z - Date Added2009-10-03T14:51:00Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3400236852 - Play Date UTC2011-09-30T08:44:12Z - Skip Count1 - Skip Date2013-07-25T04:12:15Z - Normalization124 - Artwork Count1 - Persistent ID8F1A257B18348A2E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Wolfgang%20Amadeus%20Mozart/Mozart/07%20Concerto%20for%20Flute,%20Harp%20and%20Orch.m4a - File Folder Count4 - Library Folder Count1 - - 1816 - - Track ID1816 - NameThe Marriage of Figaro - ArtistWolfgang Amadeus Mozart - AlbumMozart - GenreClassical - KindAAC audio file - Size6201249 - Total Time255719 - Track Number8 - Track Count8 - Date Modified2006-07-30T15:37:40Z - Date Added2009-10-03T14:51:00Z - Bit Rate192 - Sample Rate44100 - Normalization765 - Artwork Count1 - Sort NameMarriage of Figaro - Persistent ID28276721B52D3A31 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Wolfgang%20Amadeus%20Mozart/Mozart/08%20The%20Marriage%20of%20Figaro.m4a - File Folder Count4 - Library Folder Count1 - - 1818 - - Track ID1818 - NameSymphony #40 in G minor, K. 550 - Molto Allegro - ArtistWolfgang Amadeus Mozart - ComposerWolfgang Amadeus Mozart - AlbumGreat Mozart Symphonies - GenreClassical - KindAAC audio file - Size12026820 - Total Time496510 - Disc Number1 - Disc Count1 - Track Number1 - Track Count9 - Year1993 - Date Modified2006-08-08T03:53:08Z - Date Added2009-10-03T14:51:00Z - Bit Rate192 - Sample Rate44100 - Normalization1041 - Artwork Count1 - Persistent IDE49D91666E89FF36 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Wolfgang%20Amadeus%20Mozart/Great%20Mozart%20Symphonies/01%20Symphony%20%2340%20in%20G%20minor,%20K.%20550%20-.m4a - File Folder Count4 - Library Folder Count1 - - 1820 - - Track ID1820 - NameSymphony #40 in G minor, K. 550 - Andante - ArtistWolfgang Amadeus Mozart - ComposerWolfgang Amadeus Mozart - AlbumGreat Mozart Symphonies - GenreClassical - KindAAC audio file - Size16845190 - Total Time697967 - Disc Number1 - Disc Count1 - Track Number2 - Track Count9 - Year1993 - Date Modified2006-08-08T03:53:08Z - Date Added2009-10-03T14:51:00Z - Bit Rate192 - Sample Rate44100 - Normalization508 - Artwork Count1 - Persistent ID4F38F3A967AD8FFC - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Wolfgang%20Amadeus%20Mozart/Great%20Mozart%20Symphonies/02%20Symphony%20%2340%20in%20G%20minor,%20K.%20550%20-.m4a - File Folder Count4 - Library Folder Count1 - - 1822 - - Track ID1822 - NameSymphony #40 in G minor, K. 550 - Menuetto. Allegretto - Trio - ArtistWolfgang Amadeus Mozart - ComposerWolfgang Amadeus Mozart - AlbumGreat Mozart Symphonies - GenreClassical - KindAAC audio file - Size6478701 - Total Time267817 - Disc Number1 - Disc Count1 - Track Number3 - Track Count9 - Year1993 - Date Modified2006-08-08T03:53:06Z - Date Added2009-10-03T14:51:01Z - Bit Rate192 - Sample Rate44100 - Normalization642 - Artwork Count1 - Persistent IDB91726DA60C20BB1 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Wolfgang%20Amadeus%20Mozart/Great%20Mozart%20Symphonies/03%20Symphony%20%2340%20in%20G%20minor,%20K.%20550%20-.m4a - File Folder Count4 - Library Folder Count1 - - 1824 - - Track ID1824 - NameSymphony #40 in G minor, K. 550 - Allegro Assai - ArtistWolfgang Amadeus Mozart - ComposerWolfgang Amadeus Mozart - AlbumGreat Mozart Symphonies - GenreClassical - KindAAC audio file - Size8904166 - Total Time370240 - Disc Number1 - Disc Count1 - Track Number4 - Track Count9 - Year1993 - Date Modified2006-08-08T03:53:06Z - Date Added2009-10-03T14:51:01Z - Bit Rate192 - Sample Rate44100 - Normalization1155 - Artwork Count1 - Persistent IDDBFE6471B8D3AA66 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Wolfgang%20Amadeus%20Mozart/Great%20Mozart%20Symphonies/04%20Symphony%20%2340%20in%20G%20minor,%20K.%20550%20-.m4a - File Folder Count4 - Library Folder Count1 - - 1826 - - Track ID1826 - NameSymphony #41 in C major, K. 551 Jupiter - Allegro Vivace - ArtistWolfgang Amadeus Mozart - ComposerWolfgang Amadeus Mozart - AlbumGreat Mozart Symphonies - GenreClassical - KindAAC audio file - Size10996444 - Total Time453298 - Disc Number1 - Disc Count1 - Track Number5 - Track Count9 - Year1993 - Date Modified2006-08-08T03:53:06Z - Date Added2009-10-03T14:51:01Z - Bit Rate192 - Sample Rate44100 - Normalization1056 - Artwork Count1 - Persistent IDB126E220391FCC67 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Wolfgang%20Amadeus%20Mozart/Great%20Mozart%20Symphonies/05%20Symphony%20%2341%20in%20C%20major,%20K.%20551%20J.m4a - File Folder Count4 - Library Folder Count1 - - 1828 - - Track ID1828 - NameSymphony #41 in C major, K. 551 Jupiter - Andante Cantabile - ArtistWolfgang Amadeus Mozart - ComposerWolfgang Amadeus Mozart - AlbumGreat Mozart Symphonies - GenreClassical - KindAAC audio file - Size13040059 - Total Time537749 - Disc Number1 - Disc Count1 - Track Number6 - Track Count9 - Year1993 - Date Modified2006-08-08T03:53:06Z - Date Added2009-10-03T14:51:01Z - Bit Rate192 - Sample Rate44100 - Normalization427 - Artwork Count1 - Persistent ID18238790654D3D17 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Wolfgang%20Amadeus%20Mozart/Great%20Mozart%20Symphonies/06%20Symphony%20%2341%20in%20C%20major,%20K.%20551%20J.m4a - File Folder Count4 - Library Folder Count1 - - 1830 - - Track ID1830 - NameSymphony #41 in C major, K. 551 Jupiter - Menuetto Allegretto - ArtistWolfgang Amadeus Mozart - ComposerWolfgang Amadeus Mozart - AlbumGreat Mozart Symphonies - GenreClassical - KindAAC audio file - Size6998853 - Total Time289946 - Disc Number1 - Disc Count1 - Track Number7 - Track Count9 - Year1993 - Date Modified2006-08-08T03:53:06Z - Date Added2009-10-03T14:51:01Z - Bit Rate192 - Sample Rate44100 - Normalization954 - Artwork Count1 - Persistent IDB5354FD01A82BC89 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Wolfgang%20Amadeus%20Mozart/Great%20Mozart%20Symphonies/07%20Symphony%20%2341%20in%20C%20major,%20K.%20551%20J.m4a - File Folder Count4 - Library Folder Count1 - - 1832 - - Track ID1832 - NameSymphony #41 in C major, K. 551 Jupiter - Molto Allegro - ArtistWolfgang Amadeus Mozart - ComposerWolfgang Amadeus Mozart - AlbumGreat Mozart Symphonies - GenreClassical - KindAAC audio file - Size9946162 - Total Time413476 - Disc Number1 - Disc Count1 - Track Number8 - Track Count9 - Year1993 - Date Modified2006-08-08T03:53:06Z - Date Added2009-10-03T14:51:02Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Persistent IDE5F3AD45BF6B4176 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Wolfgang%20Amadeus%20Mozart/Great%20Mozart%20Symphonies/08%20Symphony%20%2341%20in%20C%20major,%20K.%20551%20J.m4a - File Folder Count4 - Library Folder Count1 - - 1834 - - Track ID1834 - NameOverture To The Marriage Of Figaro, K. 492 - ArtistWolfgang Amadeus Mozart - ComposerWolfgang Amadeus Mozart - AlbumGreat Mozart Symphonies - GenreClassical - KindAAC audio file - Size6103007 - Total Time252979 - Disc Number1 - Disc Count1 - Track Number9 - Track Count9 - Year1993 - Date Modified2006-08-08T03:53:06Z - Date Added2009-10-03T14:51:02Z - Bit Rate192 - Sample Rate44100 - Normalization1114 - Artwork Count1 - Persistent IDB175F600A7F1FF18 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Wolfgang%20Amadeus%20Mozart/Great%20Mozart%20Symphonies/09%20Overture%20To%20The%20Marriage%20Of%20Figar.m4a - File Folder Count4 - Library Folder Count1 - - 1836 - - Track ID1836 - NameBirdland - ArtistWeather Report - ComposerJ. Zawinul - AlbumHeavy Weather - GenreJazz - KindAAC audio file - Size8832792 - Total Time359266 - Disc Number1 - Disc Count1 - Track Number1 - Track Count8 - Year1977 - BPM160 - Date Modified2008-10-07T13:54:18Z - Date Added2009-10-03T14:51:04Z - Bit Rate192 - Sample Rate44100 - Normalization2113 - Artwork Count1 - Persistent ID447E312F9FC566B1 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Weather%20Report/Heavy%20Weather/01%20Birdland.m4a - File Folder Count4 - Library Folder Count1 - - 1838 - - Track ID1838 - NameA Remark You Made - ArtistWeather Report - ComposerJ. Zawinul - AlbumHeavy Weather - GenreJazz - KindAAC audio file - Size10206130 - Total Time413733 - Disc Number1 - Disc Count1 - Track Number2 - Track Count8 - Year1977 - BPM54 - Date Modified2008-10-07T13:54:19Z - Date Added2009-10-03T14:51:04Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3337856412 - Play Date UTC2009-10-08T08:50:12Z - Normalization993 - Artwork Count1 - Sort NameRemark You Made - Persistent IDC9F39DE61DB53208 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Weather%20Report/Heavy%20Weather/02%20A%20Remark%20You%20Made.m4a - File Folder Count4 - Library Folder Count1 - - 1840 - - Track ID1840 - NameTeen Town - ArtistWeather Report - ComposerJ. Pastorius - AlbumHeavy Weather - GenreJazz - KindAAC audio file - Size4271170 - Total Time171960 - Disc Number1 - Disc Count1 - Track Number3 - Track Count8 - Year1977 - BPM128 - Date Modified2008-10-07T13:54:19Z - Date Added2009-10-03T14:51:04Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Persistent IDD74992DDCDDD093F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Weather%20Report/Heavy%20Weather/03%20Teen%20Town.m4a - File Folder Count4 - Library Folder Count1 - - 1842 - - Track ID1842 - NameHarlequin - ArtistWeather Report - ComposerWayne Shorter - AlbumHeavy Weather - GenreJazz - KindAAC audio file - Size5969146 - Total Time241200 - Disc Number1 - Disc Count1 - Track Number4 - Track Count8 - Year1977 - Date Modified2008-10-07T13:54:20Z - Date Added2009-10-03T14:51:04Z - Bit Rate192 - Sample Rate44100 - Normalization833 - Artwork Count1 - Persistent ID607873390A58CACA - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Weather%20Report/Heavy%20Weather/04%20Harlequin.m4a - File Folder Count4 - Library Folder Count1 - - 1844 - - Track ID1844 - NameRumba Mama - ArtistWeather Report - ComposerManolo Badrena/A. Acuna/M. Badrena - AlbumHeavy Weather - GenreJazz - KindAAC audio file - Size3314843 - Total Time131666 - Disc Number1 - Disc Count1 - Track Number5 - Track Count8 - Year1977 - Date Modified2008-10-07T13:54:20Z - Date Added2009-10-03T14:51:04Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Persistent IDF9CC6AFABE8C2367 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Weather%20Report/Heavy%20Weather/05%20Rumba%20Mama.m4a - File Folder Count4 - Library Folder Count1 - - 1846 - - Track ID1846 - NamePalladium - ArtistWeather Report - ComposerWriter/Wayne Shorter - AlbumHeavy Weather - GenreJazz - KindAAC audio file - Size7149355 - Total Time286933 - Disc Number1 - Disc Count1 - Track Number6 - Track Count8 - Year1977 - BPM118 - Date Modified2008-10-07T13:54:21Z - Date Added2009-10-03T14:51:05Z - Bit Rate192 - Sample Rate44100 - Normalization3821 - Artwork Count1 - Persistent ID55599B14F4BECAFC - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Weather%20Report/Heavy%20Weather/06%20Palladium.m4a - File Folder Count4 - Library Folder Count1 - - 1848 - - Track ID1848 - NameThe Juggler - ArtistWeather Report - ComposerJ. Zawinul/Joe Zawinul - AlbumHeavy Weather - GenreJazz - KindAAC audio file - Size7507454 - Total Time303706 - Disc Number1 - Disc Count1 - Track Number7 - Track Count8 - Year1977 - Date Modified2008-10-07T13:54:22Z - Date Added2009-10-03T14:51:05Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Sort NameJuggler - Persistent ID1F3EF4269D976DCE - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Weather%20Report/Heavy%20Weather/07%20The%20Juggler.m4a - File Folder Count4 - Library Folder Count1 - - 1850 - - Track ID1850 - NameHavona - ArtistWeather Report - ComposerJ. Pastorius - AlbumHeavy Weather - GenreJazz - KindAAC audio file - Size8992921 - Total Time362533 - Disc Number1 - Disc Count1 - Track Number8 - Track Count8 - Year1977 - BPM138 - Date Modified2008-10-07T13:54:22Z - Date Added2009-10-03T14:51:05Z - Bit Rate192 - Sample Rate44100 - Normalization1979 - Artwork Count1 - Persistent ID5C71A378FCA47BF9 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Weather%20Report/Heavy%20Weather/08%20Havona.m4a - File Folder Count4 - Library Folder Count1 - - 1852 - - Track ID1852 - NameBeethoven: Symphony #8 In F, Op. 93 - 1. Allegro Vivace E Con Brio - ArtistWalter Weller: City Of Birminjham Symphony Orchestra - ComposerLudwig Van Beethoven - AlbumBeethoven: The Complete Symphonies [Disc 4] - GenreClassical - KindAAC audio file - Size20303928 - Total Time616866 - Disc Number1 - Disc Count3 - Track Number1 - Track Count9 - Year1994 - Date Modified2009-06-25T16:07:37Z - Date Added2009-10-03T14:51:05Z - Bit Rate256 - Sample Rate44100 - Normalization788 - Persistent IDA0E08C3780728FB6 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Walter%20Weller_%20City%20Of%20Birminjham%20Symphony%20Orchestra/Beethoven_%20The%20Complete%20Symphonies%20%5BDisc%204%5D/1-01%20Beethoven_%20Symphony%20%238%20In%20F,%20Op.m4a - File Folder Count4 - Library Folder Count1 - - 1854 - - Track ID1854 - NameBeethoven: Symphony #8 In F, Op. 93 - 2. Allegretto Scherzando - ArtistWalter Weller: City Of Birminjham Symphony Orchestra - ComposerLudwig Van Beethoven - AlbumBeethoven: The Complete Symphonies [Disc 4] - GenreClassical - KindAAC audio file - Size8524310 - Total Time255706 - Disc Number1 - Disc Count3 - Track Number2 - Track Count9 - Year1994 - Date Modified2009-06-25T16:07:53Z - Date Added2009-10-03T14:51:06Z - Bit Rate256 - Sample Rate44100 - Normalization208 - Persistent ID1CB9E3512B36E956 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Walter%20Weller_%20City%20Of%20Birminjham%20Symphony%20Orchestra/Beethoven_%20The%20Complete%20Symphonies%20%5BDisc%204%5D/1-02%20Beethoven_%20Symphony%20%238%20In%20F,%20Op.m4a - File Folder Count4 - Library Folder Count1 - - 1856 - - Track ID1856 - NameBeethoven: Symphony #8 In F, Op. 93 - 3. Tempo Di Menuetto - ArtistWalter Weller: City Of Birminjham Symphony Orchestra - ComposerLudwig Van Beethoven - AlbumBeethoven: The Complete Symphonies [Disc 4] - GenreClassical - KindAAC audio file - Size9651623 - Total Time292866 - Disc Number1 - Disc Count3 - Track Number3 - Track Count9 - Year1994 - Date Modified2009-06-25T16:08:12Z - Date Added2009-10-03T14:51:06Z - Bit Rate256 - Sample Rate44100 - Normalization291 - Persistent IDDEEEAB9806D53E07 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Walter%20Weller_%20City%20Of%20Birminjham%20Symphony%20Orchestra/Beethoven_%20The%20Complete%20Symphonies%20%5BDisc%204%5D/1-03%20Beethoven_%20Symphony%20%238%20In%20F,%20Op.m4a - File Folder Count4 - Library Folder Count1 - - 1858 - - Track ID1858 - NameBeethoven: Symphony #8 In F, Op. 93 - 4. Allegro Vivace - ArtistWalter Weller: City Of Birminjham Symphony Orchestra - ComposerLudwig Van Beethoven - AlbumBeethoven: The Complete Symphonies [Disc 4] - GenreClassical - KindAAC audio file - Size15059441 - Total Time462066 - Disc Number1 - Disc Count3 - Track Number4 - Track Count9 - Year1994 - Date Modified2009-06-25T16:08:40Z - Date Added2009-10-03T14:51:06Z - Bit Rate256 - Sample Rate44100 - Normalization792 - Persistent ID7C2329FE00BD5B6E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Walter%20Weller_%20City%20Of%20Birminjham%20Symphony%20Orchestra/Beethoven_%20The%20Complete%20Symphonies%20%5BDisc%204%5D/1-04%20Beethoven_%20Symphony%20%238%20In%20F,%20Op.m4a - File Folder Count4 - Library Folder Count1 - - 1860 - - Track ID1860 - NameBeethoven: Symphony #6 In F, Op. 68, "Pastoral" - 1. Allegro Ma Non Troppo - ArtistWalter Weller: City Of Birminjham Symphony Orchestra - ComposerLudwig Van Beethoven - AlbumBeethoven: The Complete Symphonies [Disc 4] - GenreClassical - KindAAC audio file - Size18990157 - Total Time575866 - Disc Number1 - Disc Count3 - Track Number5 - Track Count9 - Year1994 - Date Modified2009-06-25T16:09:15Z - Date Added2009-10-03T14:51:06Z - Bit Rate256 - Sample Rate44100 - Normalization418 - Persistent IDD4BE28D9559993D0 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Walter%20Weller_%20City%20Of%20Birminjham%20Symphony%20Orchestra/Beethoven_%20The%20Complete%20Symphonies%20%5BDisc%204%5D/1-05%20Beethoven_%20Symphony%20%236%20In%20F,%20Op.m4a - File Folder Count4 - Library Folder Count1 - - 1862 - - Track ID1862 - NameBeethoven: Symphony #6 In F, Op. 68, "Pastoral" - 2. Andante Molto Mosso - ArtistWalter Weller: City Of Birminjham Symphony Orchestra - ComposerLudwig Van Beethoven - AlbumBeethoven: The Complete Symphonies [Disc 4] - GenreClassical - KindAAC audio file - Size25084430 - Total Time760360 - Disc Number1 - Disc Count3 - Track Number6 - Track Count9 - Year1994 - Date Modified2009-06-25T16:09:59Z - Date Added2009-10-03T14:51:07Z - Bit Rate256 - Sample Rate44100 - Normalization274 - Persistent IDB80F88AE975B12BA - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Walter%20Weller_%20City%20Of%20Birminjham%20Symphony%20Orchestra/Beethoven_%20The%20Complete%20Symphonies%20%5BDisc%204%5D/1-06%20Beethoven_%20Symphony%20%236%20In%20F,%20Op.m4a - File Folder Count4 - Library Folder Count1 - - 1864 - - Track ID1864 - NameBeethoven: Symphony #6 In F, Op. 68, "Pastoral" - 3. Allegro - ArtistWalter Weller: City Of Birminjham Symphony Orchestra - ComposerLudwig Van Beethoven - AlbumBeethoven: The Complete Symphonies [Disc 4] - GenreClassical - KindAAC audio file - Size11045443 - Total Time334133 - Disc Number1 - Disc Count3 - Track Number7 - Track Count9 - Year1994 - Date Modified2009-06-25T16:10:18Z - Date Added2009-10-03T14:51:07Z - Bit Rate256 - Sample Rate44100 - Normalization358 - Persistent IDEFC68BC8008D233E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Walter%20Weller_%20City%20Of%20Birminjham%20Symphony%20Orchestra/Beethoven_%20The%20Complete%20Symphonies%20%5BDisc%204%5D/1-07%20Beethoven_%20Symphony%20%236%20In%20F,%20Op.m4a - File Folder Count4 - Library Folder Count1 - - 1866 - - Track ID1866 - NameBeethoven: Symphony #6 In F, Op. 68, "Pastoral" - 4. Allegro - ArtistWalter Weller: City Of Birminjham Symphony Orchestra - ComposerLudwig Van Beethoven - AlbumBeethoven: The Complete Symphonies [Disc 4] - GenreClassical - KindAAC audio file - Size6480824 - Total Time195973 - Disc Number1 - Disc Count3 - Track Number8 - Track Count9 - Year1994 - Date Modified2009-06-25T16:10:29Z - Date Added2009-10-03T14:51:07Z - Bit Rate256 - Sample Rate44100 - Normalization736 - Persistent ID0F8AF431B5A96054 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Walter%20Weller_%20City%20Of%20Birminjham%20Symphony%20Orchestra/Beethoven_%20The%20Complete%20Symphonies%20%5BDisc%204%5D/1-08%20Beethoven_%20Symphony%20%236%20In%20F,%20Op.m4a - File Folder Count4 - Library Folder Count1 - - 1868 - - Track ID1868 - NameBeethoven: Symphony #6 In F, Op. 68, "Pastoral" - 5. Allegretto - ArtistWalter Weller: City Of Birminjham Symphony Orchestra - ComposerLudwig Van Beethoven - AlbumBeethoven: The Complete Symphonies [Disc 4] - GenreClassical - KindAAC audio file - Size19276581 - Total Time584933 - Disc Number1 - Disc Count3 - Track Number9 - Track Count9 - Year1994 - Date Modified2009-06-25T16:11:02Z - Date Added2009-10-03T14:51:07Z - Bit Rate256 - Sample Rate44100 - Normalization657 - Persistent IDC49FEFBE3918E8D0 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Walter%20Weller_%20City%20Of%20Birminjham%20Symphony%20Orchestra/Beethoven_%20The%20Complete%20Symphonies%20%5BDisc%204%5D/1-09%20Beethoven_%20Symphony%20%236%20In%20F,%20Op.m4a - File Folder Count4 - Library Folder Count1 - - 1870 - - Track ID1870 - NameWaltz For Romance - ArtistVarious Artists - ComposerA.R. Rahman - AlbumLagaan: Once Upon A Time In India - GenreSoundtrack - KindAAC audio file - Size3681068 - Total Time149767 - Disc Number1 - Disc Count1 - Track Number6 - Track Count8 - Year2001 - Date Modified2006-07-29T04:05:56Z - Date Added2009-10-03T14:51:08Z - Bit Rate192 - Sample Rate44100 - Normalization1288 - Artwork Count1 - Persistent ID53E01C97AF8579DB - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Lagaan_%20Once%20Upon%20A%20Time%20In%20India/06%20Waltz%20For%20Romance.m4a - File Folder Count4 - Library Folder Count1 - - 1872 - - Track ID1872 - NameEnd Titles From Blade Runner - ArtistVangelis - ComposerVangelis - AlbumThemes - GenreSoundtrack - KindAAC audio file - Size7256533 - Total Time299048 - Disc Number1 - Disc Count1 - Track Number1 - Track Count14 - Year1997 - Date Modified2006-08-02T09:43:04Z - Date Added2009-10-03T14:51:08Z - Bit Rate192 - Sample Rate44100 - Normalization1205 - Artwork Count1 - Persistent IDC917C4FFED2C6258 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Vangelis/Themes/01%20End%20Titles%20From%20Blade%20Runner.m4a - File Folder Count4 - Library Folder Count1 - - 1874 - - Track ID1874 - NameMain Theme From Missing - ArtistVangelis - ComposerVangelis - AlbumThemes - GenreSoundtrack - KindAAC audio file - Size5867398 - Total Time241486 - Disc Number1 - Disc Count1 - Track Number2 - Track Count14 - Year1997 - Date Modified2006-08-02T09:43:04Z - Date Added2009-10-03T14:51:08Z - Bit Rate192 - Sample Rate44100 - Normalization1192 - Artwork Count1 - Persistent ID11BB8F1B0F3975FE - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Vangelis/Themes/02%20Main%20Theme%20From%20Missing.m4a - File Folder Count4 - Library Folder Count1 - - 1876 - - Track ID1876 - NameL'Enfant - ArtistVangelis - ComposerVangelis - AlbumThemes - GenreSoundtrack - KindAAC audio file - Size7336821 - Total Time302368 - Disc Number1 - Disc Count1 - Track Number3 - Track Count14 - Year1997 - Date Modified2006-08-02T09:43:04Z - Date Added2009-10-03T14:51:08Z - Bit Rate192 - Sample Rate44100 - Normalization1172 - Artwork Count1 - Persistent ID3D4FAAFEC1512E8B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Vangelis/Themes/03%20L'Enfant.m4a - File Folder Count4 - Library Folder Count1 - - 1878 - - Track ID1878 - NameHymn - ArtistVangelis - ComposerVangelis - AlbumThemes - GenreSoundtrack - KindAAC audio file - Size4077484 - Total Time167576 - Disc Number1 - Disc Count1 - Track Number4 - Track Count14 - Year1997 - Date Modified2006-08-02T09:43:04Z - Date Added2009-10-03T14:51:08Z - Bit Rate192 - Sample Rate44100 - Normalization994 - Artwork Count1 - Persistent ID093EBAAC0DAF5EE6 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Vangelis/Themes/04%20Hymn.m4a - File Folder Count4 - Library Folder Count1 - - 1880 - - Track ID1880 - NameChung Kuo - ArtistVangelis - ComposerVangelis - AlbumThemes - GenreSoundtrack - KindAAC audio file - Size8054476 - Total Time332020 - Disc Number1 - Disc Count1 - Track Number5 - Track Count14 - Year1997 - Date Modified2006-08-02T09:43:04Z - Date Added2009-10-03T14:51:09Z - Bit Rate192 - Sample Rate44100 - Normalization976 - Artwork Count1 - Persistent ID28D7E4382CEAFAD5 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Vangelis/Themes/05%20Chung%20Kuo.m4a - File Folder Count4 - Library Folder Count1 - - 1882 - - Track ID1882 - NameThe Tao Of Love - ArtistVangelis - ComposerVangelis - AlbumThemes - GenreSoundtrack - KindAAC audio file - Size4064117 - Total Time167019 - Disc Number1 - Disc Count1 - Track Number6 - Track Count14 - Year1997 - Date Modified2006-08-02T09:43:04Z - Date Added2009-10-03T14:51:09Z - Bit Rate192 - Sample Rate44100 - Normalization987 - Artwork Count1 - Sort NameTao Of Love - Persistent ID5A57BE079E3FF3B5 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Vangelis/Themes/06%20The%20Tao%20Of%20Love.m4a - File Folder Count4 - Library Folder Count1 - - 1884 - - Track ID1884 - NameTheme From Antartica - ArtistVangelis - ComposerVangelis - AlbumThemes - GenreSoundtrack - KindAAC audio file - Size5698341 - Total Time234473 - Disc Number1 - Disc Count1 - Track Number7 - Track Count14 - Year1997 - Date Modified2006-08-02T09:43:04Z - Date Added2009-10-03T14:51:09Z - Bit Rate192 - Sample Rate44100 - Normalization1241 - Artwork Count1 - Persistent ID9575ECFCB1010EAD - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Vangelis/Themes/07%20Theme%20From%20Antartica.m4a - File Folder Count4 - Library Folder Count1 - - 1886 - - Track ID1886 - NameLove Theme From Blade Runner - ArtistVangelis - ComposerVangelis - AlbumThemes - GenreSoundtrack - KindAAC audio file - Size7293729 - Total Time300580 - Disc Number1 - Disc Count1 - Track Number8 - Track Count14 - Year1997 - Date Modified2006-08-02T09:43:04Z - Date Added2009-10-03T14:51:09Z - Bit Rate192 - Sample Rate44100 - Skip Count1 - Normalization619 - Artwork Count1 - Persistent ID794F06B49B81DDEA - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Vangelis/Themes/08%20Love%20Theme%20From%20Blade%20Runner.m4a - File Folder Count4 - Library Folder Count1 - - 1888 - - Track ID1888 - NameOpening Titles From The Bounty - ArtistVangelis - ComposerVangelis - AlbumThemes - GenreSoundtrack - KindAAC audio file - Size6276738 - Total Time258529 - Disc Number1 - Disc Count1 - Track Number9 - Track Count14 - Year1997 - Date Modified2006-08-02T09:43:04Z - Date Added2009-10-03T14:51:10Z - Bit Rate192 - Sample Rate44100 - Normalization1125 - Artwork Count1 - Persistent ID06B748C7CC1E9B82 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Vangelis/Themes/09%20Opening%20Titles%20From%20The%20Bounty.m4a - File Folder Count4 - Library Folder Count1 - - 1890 - - Track ID1890 - NameClosing Titles From The Bounty - ArtistVangelis - ComposerVangelis - AlbumThemes - GenreSoundtrack - KindAAC audio file - Size7279690 - Total Time300000 - Disc Number1 - Disc Count1 - Track Number10 - Track Count14 - Year1997 - Date Modified2006-08-02T09:43:06Z - Date Added2009-10-03T14:51:10Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Persistent IDC0A8496CCE913DB6 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Vangelis/Themes/10%20Closing%20Titles%20From%20The%20Bounty.m4a - File Folder Count4 - Library Folder Count1 - - 1892 - - Track ID1892 - NameMemories Of Green - ArtistVangelis - ComposerVangelis - AlbumThemes - GenreSoundtrack - KindAAC audio file - Size8367890 - Total Time344977 - Disc Number1 - Disc Count1 - Track Number11 - Track Count14 - Year1997 - Date Modified2006-08-02T09:43:06Z - Date Added2009-10-03T14:51:10Z - Bit Rate192 - Sample Rate44100 - Normalization1254 - Artwork Count1 - Persistent ID32C1540B09EE1EFB - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Vangelis/Themes/11%20Memories%20Of%20Green.m4a - File Folder Count4 - Library Folder Count1 - - 1894 - - Track ID1894 - NameLa Petite Fille De La Mer - ArtistVangelis - ComposerVangelis - AlbumThemes - GenreSoundtrack - KindAAC audio file - Size8587762 - Total Time354056 - Disc Number1 - Disc Count1 - Track Number12 - Track Count14 - Year1997 - Date Modified2006-08-02T09:43:06Z - Date Added2009-10-03T14:51:10Z - Bit Rate192 - Sample Rate44100 - Normalization525 - Artwork Count1 - Persistent ID41BF3A43D36B13FD - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Vangelis/Themes/12%20La%20Petite%20Fille%20De%20La%20Mer.m4a - File Folder Count4 - Library Folder Count1 - - 1896 - - Track ID1896 - NameFive Circles - ArtistVangelis - ComposerVangelis - AlbumThemes - GenreSoundtrack - KindAAC audio file - Size7782519 - Total Time320782 - Disc Number1 - Disc Count1 - Track Number13 - Track Count14 - Year1997 - Date Modified2006-08-02T09:43:06Z - Date Added2009-10-03T14:51:10Z - Bit Rate192 - Sample Rate44100 - Normalization825 - Artwork Count1 - Persistent ID71FB44B1A656A7D5 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Vangelis/Themes/13%20Five%20Circles.m4a - File Folder Count4 - Library Folder Count1 - - 1898 - - Track ID1898 - NameChariots Of Fire - ArtistVangelis - ComposerVangelis - AlbumThemes - GenreSoundtrack - KindAAC audio file - Size5141272 - Total Time211253 - Disc Number1 - Disc Count1 - Track Number14 - Track Count14 - Year1997 - Date Modified2006-08-02T09:43:06Z - Date Added2009-10-03T14:51:11Z - Bit Rate192 - Sample Rate44100 - Normalization1422 - Artwork Count1 - Persistent ID575A04268042585F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Vangelis/Themes/14%20Chariots%20Of%20Fire.m4a - File Folder Count4 - Library Folder Count1 - - 1900 - - Track ID1900 - NameMuthu Natramam - ArtistUnnikrishnan, Madhu Balakrishnan, Vijay Jesudas, Manjari, Asha, Gayathri & Chorus - ComposerIlaiyaraaja - AlbumThiruvasagam - GenreWorld - KindAAC audio file - Size11856560 - Total Time484134 - Disc Number1 - Disc Count1 - Track Number5 - Track Count6 - Year2005 - Date Modified2006-08-13T06:47:44Z - Date Added2009-10-03T14:51:11Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Artwork Count2 - Persistent ID99C0963DEE3778E8 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Unnikrishnan,%20Madhu%20Balakrishnan,%20Vijay%20Jesudas,%20Manjari,%20Asha,%20Gayathri%20&%20Chorus/Thiruvasagam/05%20Muthu%20Natramam.m4a - File Folder Count4 - Library Folder Count1 - - 1902 - - Track ID1902 - NameVaralandu (Raga: Gurjari Tala: Adi) - ArtistUnni Krishnan - ComposerThyagaraja - AlbumAanandam - GenreCarnatic - KindAAC audio file - Size5433134 - Total Time231226 - Disc Number1 - Disc Count1 - Track Number1 - Track Count8 - Date Modified2007-12-14T16:12:18Z - Date Added2009-10-03T14:51:13Z - Bit Rate186 - Sample Rate44100 - CommentsRaga: Gurjari Tala: Adi - Normalization2025 - Persistent ID1B3B52D4316FF69C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Unni%20Krishnan/Aanandam/01%20Varalandu.m4a - File Folder Count4 - Library Folder Count1 - - 1904 - - Track ID1904 - NameNee Irangaayanil (Raga: Atana Tala: Adi) - ArtistUnni Krishnan - ComposerPapanasam Sivan - AlbumAanandam - GenreCarnatic - KindAAC audio file - Size8880553 - Total Time378506 - Disc Number1 - Disc Count1 - Track Number2 - Track Count8 - Date Modified2007-12-14T16:11:37Z - Date Added2009-10-03T14:51:13Z - Bit Rate186 - Sample Rate44100 - CommentsRaga: Atana Tala: Adi - Normalization2340 - Persistent ID2CF5A51555CBA6C1 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Unni%20Krishnan/Aanandam/02%20Nee%20Irangaayanil.m4a - File Folder Count4 - Library Folder Count1 - - 1906 - - Track ID1906 - NameUnnai Allal (Raga: Simhendra Madhyamam Tala: Adi) - ArtistUnni Krishnan - ComposerKotteeswara Iyer - AlbumAanandam - GenreCarnatic - KindAAC audio file - Size24673059 - Total Time1042426 - Disc Number1 - Disc Count1 - Track Number3 - Track Count8 - Date Modified2007-12-14T16:11:07Z - Date Added2009-10-03T14:51:13Z - Bit Rate187 - Sample Rate44100 - CommentsRaga: Simhendra Madhyamam Tala: Adi - Normalization1467 - Persistent IDB01E76B4F196E93F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Unni%20Krishnan/Aanandam/03%20Unnai%20Allal.m4a - File Folder Count4 - Library Folder Count1 - - 1908 - - Track ID1908 - NameNannubrovu Lalitha (Raga: Lalitha Tala: Misra Chapu) - ArtistUnni Krishnan - ComposerShyama Sastri - AlbumAanandam - GenreCarnatic - KindAAC audio file - Size14772135 - Total Time628173 - Disc Number1 - Disc Count1 - Track Number4 - Track Count8 - Date Modified2007-12-14T16:10:11Z - Date Added2009-10-03T14:51:13Z - Bit Rate186 - Sample Rate44100 - CommentsRaga: Lalitha Tala: Misra Chapu - Normalization1253 - Persistent ID815CEF17A512F142 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Unni%20Krishnan/Aanandam/04%20Nannubrovu%20Lalitha.m4a - File Folder Count4 - Library Folder Count1 - - 1910 - - Track ID1910 - NamePankjaksha (Raga: Todi Tala: Roopakam) - ArtistUnni Krishnan - ComposerSwathi Thirunal - AlbumAanandam - GenreCarnatic - KindAAC audio file - Size27736636 - Total Time1173533 - Disc Number1 - Disc Count1 - Track Number5 - Track Count8 - Date Modified2007-12-14T16:09:34Z - Date Added2009-10-03T14:51:13Z - Bit Rate187 - Sample Rate44100 - CommentsRaga: Todi Tala: Roopakam - Normalization1253 - Persistent ID8C2DBBAF8F6CC538 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Unni%20Krishnan/Aanandam/05%20Pankjaksha.m4a - File Folder Count4 - Library Folder Count1 - - 1912 - - Track ID1912 - NameKrishnam Kalaya (Raga: Mand Tala: Adi) - ArtistUnni Krishnan - ComposerNarayana Theerthar - AlbumAanandam - GenreCarnatic - KindAAC audio file - Size4556898 - Total Time195960 - Disc Number1 - Disc Count1 - Track Number6 - Track Count8 - Date Modified2007-12-14T16:09:03Z - Date Added2009-10-03T14:51:13Z - Bit Rate184 - Sample Rate44100 - CommentsRaga: Mand Tala: Adi - Normalization1923 - Persistent IDF3446603A57908D8 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Unni%20Krishnan/Aanandam/06%20Krishnam%20Kalaya.m4a - File Folder Count4 - Library Folder Count1 - - 1914 - - Track ID1914 - NameKandu Nee Sollavendum (Raga: Sindhubhairavi Tala: Adi) - ArtistUnni Krishnan - ComposerSudha Sachithananda - AlbumAanandam - GenreCarnatic - KindAAC audio file - Size10990694 - Total Time467200 - Disc Number1 - Disc Count1 - Track Number7 - Track Count8 - Date Modified2007-12-14T16:08:28Z - Date Added2009-10-03T14:51:13Z - Bit Rate186 - Sample Rate44100 - CommentsRaga: Sindhubhairavi Tala: Adi - Normalization1927 - Persistent ID91A78F7424BBFDBA - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Unni%20Krishnan/Aanandam/07%20Kandu%20Nee%20Sollavendum.m4a - File Folder Count4 - Library Folder Count1 - - 1916 - - Track ID1916 - NameThillanna (Raga: Chenchurti Tala: Adi) - ArtistUnni Krishnan - ComposerVeenai Seshanna - AlbumAanandam - GenreCarnatic - KindAAC audio file - Size5474653 - Total Time232040 - Disc Number1 - Disc Count1 - Track Number8 - Track Count8 - Date Modified2007-12-14T16:07:23Z - Date Added2009-10-03T14:51:14Z - Bit Rate187 - Sample Rate44100 - CommentsRaga: Chenchurti Tala: Adi - Normalization3269 - Persistent ID5E075F67EC8605FB - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Unni%20Krishnan/Aanandam/08%20Thillanna.m4a - File Folder Count4 - Library Folder Count1 - - 1918 - - Track ID1918 - NameEnati Nomuphalamo (Raga: Bhairavi Tala: Adi) - ArtistM.S. Subbulakshmi - ComposerThyagaraja - AlbumAalapana (Raga - Bhairavi) - GenreCarnatic - KindAAC audio file - Size34261761 - Total Time1441760 - Track Number1 - Track Count5 - Date Modified2007-12-15T07:47:28Z - Date Added2009-10-03T14:51:14Z - Bit Rate188 - Sample Rate44100 - CommentsRaga: Bhairavi Tala: Adi - Normalization2144 - Persistent IDA3CEF1C41DFF5526 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/M.S.%20Subbulakshmi/Aalapana%20(Raga%20-%20Bhairavi)/01%20Track%2001%203.m4a - File Folder Count4 - Library Folder Count1 - - 1920 - - Track ID1920 - NameMohana Rama (Raga: Mohanam Tala: Adi) - ArtistMaharajapuram Vishwanatha Iyer - ComposerThyagaraja - AlbumAalapana (Raga - Mohanam) - GenreCarnatic - KindAAC audio file - Size7043736 - Total Time383000 - Track Number1 - Track Count9 - Date Modified2007-12-15T08:29:03Z - Date Added2009-10-03T14:51:14Z - Bit Rate145 - Sample Rate44100 - CommentsRaga: Mohanam Tala: Adi - Normalization1262 - Persistent IDFCD2405B107D3022 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Maharajapuram%20Vishwanatha%20Iyer/Aalapana%20(Raga%20-%20Mohanam)/01%20Track%2001%204.m4a - File Folder Count4 - Library Folder Count1 - - 1922 - - Track ID1922 - NameTalk by Rajaji - ArtistM.S. Subbulakshmi - AlbumBhaja Govindam and Vishnu Sahasranamam - KindAAC audio file - Size4218586 - Total Time123466 - Track Number1 - Track Count4 - Date Modified2009-08-12T12:54:00Z - Date Added2009-10-03T14:51:14Z - Bit Rate256 - Sample Rate44100 - Normalization1180 - Artwork Count1 - Persistent ID98A1CDEC0F2E089A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/M.S.%20Subbulakshmi/Bhaja%20Govindam%20and%20Vishnu%20Sahasranamam/01%20Track%2001.m4a - File Folder Count4 - Library Folder Count1 - - 1924 - - Track ID1924 - NameBhaja Govindam - ArtistM.S. Subbulakshmi - AlbumBhaja Govindam and Vishnu Sahasranamam - KindAAC audio file - Size21763264 - Total Time658493 - Track Number2 - Track Count4 - Date Modified2009-08-12T12:54:00Z - Date Added2009-10-03T14:51:14Z - Bit Rate256 - Sample Rate44100 - Normalization2216 - Artwork Count1 - Persistent IDE8966A8627183C3E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/M.S.%20Subbulakshmi/Bhaja%20Govindam%20and%20Vishnu%20Sahasranamam/02%20Track%2002%201.m4a - File Folder Count4 - Library Folder Count1 - - 1926 - - Track ID1926 - NameKoluvai (Raga: Bhairavi Tala: Adi) - ArtistMadurai Mani Iyer - ComposerThyagaraja - AlbumAalapana (Raga - Bhairavi) - GenreCarnatic - KindAAC audio file - Size23065092 - Total Time1189893 - Track Number2 - Track Count5 - Date Modified2007-12-15T07:47:28Z - Date Added2009-10-03T14:51:15Z - Bit Rate153 - Sample Rate44100 - CommentsRaga: Bhairavi Tala: Adi - Normalization1572 - Persistent ID2C2B7DD8BFEB339F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Madurai%20Mani%20Iyer/Aalapana%20(Raga%20-%20Bhairavi)/02%20Track%2002.m4a - File Folder Count4 - Library Folder Count1 - - 1928 - - Track ID1928 - NameRagam Tanam Pallavi (Raga: Bhairavi Tala: Adi) - ArtistMaharajapuram Vishwanatha Iyer - AlbumAalapana (Raga - Bhairavi) - GenreCarnatic - KindAAC audio file - Size7105652 - Total Time389666 - Track Number3 - Track Count5 - Date Modified2007-12-15T07:47:28Z - Date Added2009-10-03T14:51:15Z - Bit Rate144 - Sample Rate44100 - CommentsRaga: Bhairavi Tala: Adi - Normalization1796 - Persistent ID609B934AB8034556 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Maharajapuram%20Vishwanatha%20Iyer/Aalapana%20(Raga%20-%20Bhairavi)/03%20Track%2003%201.m4a - File Folder Count4 - Library Folder Count1 - - 1930 - - Track ID1930 - NameVishnu Sahasranamam - Dhyanam - ArtistM.S. Subbulakshmi - AlbumBhaja Govindam and Vishnu Sahasranamam - KindAAC audio file - Size14959183 - Total Time407386 - Track Number3 - Track Count4 - Date Modified2009-08-12T12:53:58Z - Date Added2009-10-03T14:51:15Z - Bit Rate256 - Sample Rate44100 - Normalization2468 - Artwork Count1 - Persistent ID3E173C7A9797BE26 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/M.S.%20Subbulakshmi/Bhaja%20Govindam%20and%20Vishnu%20Sahasranamam/03%20Track%2003.m4a - File Folder Count4 - Library Folder Count1 - - 1932 - - Track ID1932 - NameKamakshy Amba (Raga: Bhairavi Tala: Misra Chapu) - ArtistM. Balamuralikrishna - ComposerShyama Sastri - AlbumAalapana (Raga - Bhairavi) - GenreCarnatic - KindAAC audio file - Size13939762 - Total Time590613 - Track Number4 - Track Count5 - Date Modified2007-12-15T07:47:28Z - Date Added2009-10-03T14:51:15Z - Bit Rate187 - Sample Rate44100 - CommentsRaga: Bhairavi Tala: Misra Chapu - Normalization1474 - Persistent ID85A4E8C83E63B7DC - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/M.%20Balamuralikrishna/Aalapana%20(Raga%20-%20Bhairavi)/04%20Track%2004%201.m4a - File Folder Count4 - Library Folder Count1 - - 1934 - - Track ID1934 - NameVishnu Sahasranamam - Stotram - ArtistM.S. Subbulakshmi - AlbumBhaja Govindam and Vishnu Sahasranamam - KindAAC audio file - Size46046953 - Total Time1392480 - Track Number4 - Track Count4 - Date Modified2009-08-12T12:53:57Z - Date Added2009-10-03T14:51:16Z - Bit Rate256 - Sample Rate44100 - Normalization2647 - Artwork Count1 - Persistent IDE81466F5BAD61E60 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/M.S.%20Subbulakshmi/Bhaja%20Govindam%20and%20Vishnu%20Sahasranamam/04%20Track%2004.m4a - File Folder Count4 - Library Folder Count1 - - 1936 - - Track ID1936 - NameYaro Ivar Yaro (Raga: Bhairavi Tala: Adi) - ArtistNityasree - ComposerArunachala Kavi - AlbumAalapana (Raga - Bhairavi) - GenreCarnatic - KindAAC audio file - Size29149993 - Total Time1181920 - Track Number5 - Track Count5 - Date Modified2007-12-16T16:09:58Z - Date Added2009-10-03T14:51:16Z - Bit Rate195 - Sample Rate44100 - CommentsRaga: Bhairavi Tala: Adi - Normalization3037 - Persistent ID8BB2CBDE45FF84EE - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Nityasree/Aalapana%20(Raga%20-%20Bhairavi)/05%20Track%2005%201.m4a - File Folder Count4 - Library Folder Count1 - - 1938 - - Track ID1938 - NameTrack 03 - AlbumMahesh's fav Vol 1 - KindAAC audio file - Size3264436 - Total Time137320 - Track Number3 - Track Count14 - Date Modified2007-09-10T10:07:26Z - Date Added2009-10-03T14:51:16Z - Bit Rate192 - Sample Rate44100 - Normalization268 - Persistent ID5CF1300E92E96DDA - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Unknown%20Artist/Mahesh's%20fav%20Vol%201/03%20Track%2003.m4a - File Folder Count4 - Library Folder Count1 - - 1940 - - Track ID1940 - NameTrack 04 - AlbumMahesh's fav Vol 1 - KindAAC audio file - Size10520816 - Total Time436533 - Track Number4 - Track Count14 - Date Modified2007-09-10T10:08:16Z - Date Added2009-10-03T14:51:16Z - Bit Rate192 - Sample Rate44100 - Normalization1234 - Persistent ID8F55ADFABE2250B4 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Unknown%20Artist/Mahesh's%20fav%20Vol%201/04%20Track%2004.m4a - File Folder Count4 - Library Folder Count1 - - 1942 - - Track ID1942 - NameTrack 05 - AlbumMahesh's fav Vol 1 - KindAAC audio file - Size6188458 - Total Time257493 - Track Number5 - Track Count14 - Date Modified2007-09-10T10:08:46Z - Date Added2009-10-03T14:51:17Z - Bit Rate192 - Sample Rate44100 - Normalization1272 - Persistent ID225533F36C8658F9 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Unknown%20Artist/Mahesh's%20fav%20Vol%201/05%20Track%2005.m4a - File Folder Count4 - Library Folder Count1 - - 1944 - - Track ID1944 - NameTrack 06 - AlbumMahesh's fav Vol 1 - KindAAC audio file - Size2846379 - Total Time120000 - Track Number6 - Track Count14 - Date Modified2007-09-10T10:09:00Z - Date Added2009-10-03T14:51:17Z - Bit Rate192 - Sample Rate44100 - Normalization441 - Persistent ID5A402AB067F10363 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Unknown%20Artist/Mahesh's%20fav%20Vol%201/06%20Track%2006.m4a - File Folder Count4 - Library Folder Count1 - - 1946 - - Track ID1946 - NameTrack 07 - AlbumMahesh's fav Vol 1 - KindAAC audio file - Size7266451 - Total Time302053 - Track Number7 - Track Count14 - Date Modified2007-09-10T10:09:36Z - Date Added2009-10-03T14:51:17Z - Bit Rate192 - Sample Rate44100 - Normalization2100 - Persistent ID28D77CBDAE171CF3 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Unknown%20Artist/Mahesh's%20fav%20Vol%201/07%20Track%2007.m4a - File Folder Count4 - Library Folder Count1 - - 1948 - - Track ID1948 - NameTrack 08 - AlbumMahesh's fav Vol 1 - KindAAC audio file - Size6327516 - Total Time263226 - Track Number8 - Track Count14 - Date Modified2007-09-10T10:10:04Z - Date Added2009-10-03T14:51:17Z - Bit Rate192 - Sample Rate44100 - Normalization1234 - Persistent ID702AB68D26715CEB - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Unknown%20Artist/Mahesh's%20fav%20Vol%201/08%20Track%2008.m4a - File Folder Count4 - Library Folder Count1 - - 1950 - - Track ID1950 - NameTrack 09 - AlbumMahesh's fav Vol 1 - KindAAC audio file - Size7412867 - Total Time308093 - Track Number9 - Track Count14 - Date Modified2007-09-10T10:10:40Z - Date Added2009-10-03T14:51:17Z - Bit Rate192 - Sample Rate44100 - Normalization1357 - Persistent ID22AFCBE781DEBBBE - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Unknown%20Artist/Mahesh's%20fav%20Vol%201/09%20Track%2009.m4a - File Folder Count4 - Library Folder Count1 - - 1952 - - Track ID1952 - NameTrack 10 - AlbumMahesh's fav Vol 1 - KindAAC audio file - Size4828556 - Total Time201293 - Track Number10 - Track Count14 - Date Modified2007-09-10T10:11:04Z - Date Added2009-10-03T14:51:17Z - Bit Rate192 - Sample Rate44100 - Normalization1303 - Persistent ID5EA5694A4DF68FB6 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Unknown%20Artist/Mahesh's%20fav%20Vol%201/10%20Track%2010.m4a - File Folder Count4 - Library Folder Count1 - - 1954 - - Track ID1954 - NameTrack 11 - AlbumMahesh's fav Vol 1 - KindAAC audio file - Size3633859 - Total Time151920 - Track Number11 - Track Count14 - Date Modified2007-09-10T10:11:24Z - Date Added2009-10-03T14:51:18Z - Bit Rate192 - Sample Rate44100 - Normalization780 - Persistent IDFE2F87D2B400955D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Unknown%20Artist/Mahesh's%20fav%20Vol%201/11%20Track%2011.m4a - File Folder Count4 - Library Folder Count1 - - 1956 - - Track ID1956 - NameTrack 12 - AlbumMahesh's fav Vol 1 - KindAAC audio file - Size4623516 - Total Time192826 - Track Number12 - Track Count14 - Date Modified2007-09-10T10:11:54Z - Date Added2009-10-03T14:51:18Z - Bit Rate192 - Sample Rate44100 - Normalization963 - Persistent ID2A843FA402EC05A6 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Unknown%20Artist/Mahesh's%20fav%20Vol%201/12%20Track%2012.m4a - File Folder Count4 - Library Folder Count1 - - 1958 - - Track ID1958 - NameTrack 13 - AlbumMahesh's fav Vol 1 - KindAAC audio file - Size9879547 - Total Time410040 - Track Number13 - Track Count14 - Date Modified2007-09-10T10:12:58Z - Date Added2009-10-03T14:51:18Z - Bit Rate192 - Sample Rate44100 - Normalization842 - Persistent ID5ADF0CAD6E50CEE5 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Unknown%20Artist/Mahesh's%20fav%20Vol%201/13%20Track%2013.m4a - File Folder Count4 - Library Folder Count1 - - 1960 - - Track ID1960 - NameTrack 14 - AlbumMahesh's fav Vol 1 - KindAAC audio file - Size12398658 - Total Time512333 - Track Number14 - Track Count14 - Date Modified2007-09-10T10:14:22Z - Date Added2009-10-03T14:51:18Z - Bit Rate192 - Sample Rate44100 - Normalization1683 - Persistent ID346CA160E1592D2D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Unknown%20Artist/Mahesh's%20fav%20Vol%201/14%20Track%2014.m4a - File Folder Count4 - Library Folder Count1 - - 1962 - - Track ID1962 - NameSaraguna (varnam) (Raga: Todi Tala: Adi) - ArtistM. Balamuralikrishna - ComposerM. Balamuralikrishna - AlbumAalapana (Raga - Thodi) - GenreCarnatic - KindAAC audio file - Size4980936 - Total Time271253 - Track Number1 - Track Count8 - Date Modified2007-12-17T10:46:59Z - Date Added2009-10-03T14:51:21Z - Bit Rate145 - Sample Rate44100 - CommentsRaga: Todi Tala: Adi - Normalization2215 - Persistent IDF420E90B94F2A58E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/M.%20Balamuralikrishna/Aalapana%20(Raga%20-%20Thodi)/01%20Track%2001.m4a - File Folder Count4 - Library Folder Count1 - - 1964 - - Track ID1964 - NameKadhanu vaariki (Raga: Todi Tala: Adi) - ArtistMaharajapuram Vishwanatha Iyer - ComposerThyagaraja - AlbumAalapana (Raga - Thodi) - GenreCarnatic - KindAAC audio file - Size8194486 - Total Time396973 - Track Number2 - Track Count8 - Date Modified2007-12-17T10:48:51Z - Date Added2009-10-03T14:51:21Z - Bit Rate163 - Sample Rate44100 - CommentsRaga: Todi Tala: Adi - Normalization1476 - Persistent IDD387C45B0BEEC75F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Maharajapuram%20Vishwanatha%20Iyer/Aalapana%20(Raga%20-%20Thodi)/02%20Track%2002.m4a - File Folder Count4 - Library Folder Count1 - - 1966 - - Track ID1966 - NameKotinadulu (Raga: Todi Tala: Adi) - ArtistAriyakudi Ramanuja Iyengar - ComposerThyagaraja - AlbumAalapana (Raga - Thodi) - GenreCarnatic - KindAAC audio file - Size7958088 - Total Time430066 - Track Number3 - Track Count8 - Date Modified2007-12-17T10:49:41Z - Date Added2009-10-03T14:51:22Z - Bit Rate146 - Sample Rate44100 - CommentsRaga: Todi Tala: Adi - Normalization2101 - Persistent IDAF6EB5C6A3E24065 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ariyakudi%20Ramanuja%20Iyengar/Aalapana%20(Raga%20-%20Thodi)/03%20Track%2003.m4a - File Folder Count4 - Library Folder Count1 - - 1968 - - Track ID1968 - NameDasarathe (Raga: Todi Tala: Adi) - ArtistM.S. Subbulakshmi - ComposerThyagaraja - AlbumAalapana (Raga - Thodi) - GenreCarnatic - KindAAC audio file - Size18130004 - Total Time967160 - Track Number4 - Track Count8 - Date Modified2007-12-17T10:50:07Z - Date Added2009-10-03T14:51:22Z - Bit Rate148 - Sample Rate44100 - CommentsRaga: Todi Tala: Adi - Normalization1675 - Persistent ID90463A3FE4B12264 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/M.S.%20Subbulakshmi/Aalapana%20(Raga%20-%20Thodi)/04%20Track%2004.m4a - File Folder Count4 - Library Folder Count1 - - 1970 - - Track ID1970 - NameDaasukovalena (Raga: Todi Tala: Jhampa) - ArtistD.K. Pattammal - ComposerThyagaraja - AlbumAalapana (Raga - Thodi) - GenreCarnatic - KindAAC audio file - Size21349128 - Total Time866160 - Track Number5 - Track Count8 - Date Modified2007-12-17T10:51:17Z - Date Added2009-10-03T14:51:22Z - Bit Rate195 - Sample Rate44100 - CommentsRaga: Todi Tala: Jhampa - Normalization2398 - Persistent IDF610EDBE9A4CF468 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/D.K.%20Pattammal/Aalapana%20(Raga%20-%20Thodi)/05%20Track%2005.m4a - File Folder Count4 - Library Folder Count1 - - 1972 - - Track ID1972 - NameKamalambike (Raga: Todi Tala: Roopakam) - ArtistS. Rajeshwari - ComposerDikshitar - AlbumAalapana (Raga - Thodi) - GenreCarnatic - KindAAC audio file - Size19288957 - Total Time782493 - Track Number6 - Track Count8 - Date Modified2007-12-17T10:52:14Z - Date Added2009-10-03T14:51:22Z - Bit Rate195 - Sample Rate44100 - CommentsRaga: Todi Tala: Roopakam - Normalization4787 - Persistent ID1932F506D014C154 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/S.%20Rajeshwari/Aalapana%20(Raga%20-%20Thodi)/06%20Track%2006.m4a - File Folder Count4 - Library Folder Count1 - - 1974 - - Track ID1974 - NameRara vasudeva (Raga: Todi Tala: Roopakam) - ArtistViyay siva - ComposerWalajapet Venkataramana Bhagavatar - AlbumAalapana (Raga - Thodi) - GenreCarnatic - KindAAC audio file - Size12734458 - Total Time536480 - Track Number7 - Track Count8 - Date Modified2007-12-17T10:53:14Z - Date Added2009-10-03T14:51:22Z - Bit Rate188 - Sample Rate44100 - CommentsRaga: Todi Tala: Roopakam - Normalization2302 - Persistent IDB1707FDA76EB31E2 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Viyay%20siva/Aalapana%20(Raga%20-%20Thodi)/07%20Track%2007.m4a - File Folder Count4 - Library Folder Count1 - - 1976 - - Track ID1976 - NameRajuvedala (Raga: Todi Tala: Roopakam) - ArtistT. M. Krishna - ComposerThyagaraja - AlbumAalapana (Raga - Thodi) - GenreCarnatic - KindAAC audio file - Size12755600 - Total Time538053 - Track Number8 - Track Count8 - Date Modified2007-12-17T10:53:40Z - Date Added2009-10-03T14:51:23Z - Bit Rate188 - Sample Rate44100 - CommentsRaga: Todi Tala: Roopakam - Normalization2373 - Persistent ID9BA255E7173718D7 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/T.%20M.%20Krishna/Aalapana%20(Raga%20-%20Thodi)/08%20Track%2008.m4a - File Folder Count4 - Library Folder Count1 - - 1978 - - Track ID1978 - NameVisvesvara Darshan (Raga: Sindhubhairavi Tala: Roopakam) - ArtistAlathur Brothers - ComposerSwathi Thirunal - AlbumAalapana (Raga - Sindhubhairavi) - GenreCarnatic - KindAAC audio file - Size8714525 - Total Time367426 - Track Number1 - Track Count11 - Date Modified2007-12-15T08:13:30Z - Date Added2009-10-03T14:51:23Z - Bit Rate188 - Sample Rate44100 - CommentsRaga: Sindhubhairavi Tala: Roopakam - Normalization1816 - Persistent ID7199BE4C36479A2B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alathur%20Brothers/Aalapana%20(Raga%20-%20Sindhubhairavi)/01%20Track%2001.m4a - File Folder Count4 - Library Folder Count1 - - 1980 - - Track ID1980 - NameKoovi Azhaikka (Raga: Sindhubhairavai Tala: Adi) - ArtistRadha Jayalakshmi - ComposerPapanasam Sivan - AlbumAalapana (Raga - Sindhubhairavi) - GenreCarnatic - KindAAC audio file - Size5216841 - Total Time212826 - Track Number2 - Track Count11 - Date Modified2007-12-15T08:13:14Z - Date Added2009-10-03T14:51:23Z - Bit Rate194 - Sample Rate44100 - CommentsRaga: Sindhubhairavai Tala: Adi - Normalization3745 - Persistent ID0F3F70E0C504063C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Radha%20Jayalakshmi/Aalapana%20(Raga%20-%20Sindhubhairavi)/02%20Track%2002.m4a - File Folder Count4 - Library Folder Count1 - - 1982 - - Track ID1982 - NameManadirkkugandadu (Raga: Sindhubhairavi Tala: Adi) - ArtistNeyveli R. Santhanagopalan - ComposerThanjavur Sankara Iyer - AlbumAalapana (Raga - Sindhubhairavi) - GenreCarnatic - KindAAC audio file - Size5442374 - Total Time230373 - Track Number3 - Track Count11 - Date Modified2007-12-15T08:15:23Z - Date Added2009-10-03T14:51:23Z - Bit Rate187 - Sample Rate44100 - CommentsRaga: Sindhubhairavi Tala: Adi - Normalization2016 - Persistent IDEB4D7FE4F4A15F40 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Neyveli%20R.%20Santhanagopalan/Aalapana%20(Raga%20-%20Sindhubhairavi)/03%20Track%2003.m4a - File Folder Count4 - Library Folder Count1 - - 1984 - - Track ID1984 - NameKalyana Gopalam (Raga: Sindhubhairavi Tala: Kanda Chapu) - ArtistSudha Raghunathan - ComposerPurandara Dasa - AlbumAalapana (Raga - Sindhubhairavi) - GenreCarnatic - KindAAC audio file - Size9018950 - Total Time382360 - Track Number4 - Track Count11 - Date Modified2007-12-15T08:16:46Z - Date Added2009-10-03T14:51:23Z - Bit Rate187 - Sample Rate44100 - CommentsRaga: Sindhubhairavi Tala: Kanda Chapu - Normalization1259 - Persistent ID5BA76CCE94900A79 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Sudha%20Raghunathan/Aalapana%20(Raga%20-%20Sindhubhairavi)/04%20Track%2004.m4a - File Folder Count4 - Library Folder Count1 - - 1986 - - Track ID1986 - NameKarunai Deivame (Raga: Sindhubhairavi Tala: Adi) - ArtistD. K. Jayaraman - ComposerMadurai Srinivasan - AlbumAalapana (Raga - Sindhubhairavi) - GenreCarnatic - KindAAC audio file - Size5491931 - Total Time233493 - Track Number5 - Track Count11 - Date Modified2007-12-15T08:18:25Z - Date Added2009-10-03T14:51:24Z - Bit Rate186 - Sample Rate44100 - CommentsRaga: Sindhubhairavi Tala: Adi - Normalization2616 - Persistent ID2243ECDE57898503 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/D.%20K.%20Jayaraman/Aalapana%20(Raga%20-%20Sindhubhairavi)/05%20Track%2005.m4a - File Folder Count4 - Library Folder Count1 - - 1988 - - Track ID1988 - NameChetaha Sriramam (Raga: Sindhubhairavi Tala: Adi) - ArtistM. Balamuralikrishna - ComposerSadashiva Bramhendrar - AlbumAalapana (Raga - Sindhubhairavi) - GenreCarnatic - KindAAC audio file - Size4725009 - Total Time200720 - Track Number6 - Track Count11 - Date Modified2007-12-15T08:19:24Z - Date Added2009-10-03T14:51:24Z - Bit Rate186 - Sample Rate44100 - CommentsRaga: Sindhubhairavi Tala: Adi - Normalization1237 - Persistent ID23F1A0BF26A58FA9 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/M.%20Balamuralikrishna/Aalapana%20(Raga%20-%20Sindhubhairavi)/06%20Track%2006.m4a - File Folder Count4 - Library Folder Count1 - - 1990 - - Track ID1990 - NameKandu Nee (Raga: Sindhubhairavi Tala: Adi) - ArtistSanjay Subramanyam - ComposerN. S. Chidambaram - AlbumAalapana (Raga - Sindhubhairavi) - GenreCarnatic - KindAAC audio file - Size7919984 - Total Time335880 - Track Number7 - Track Count11 - Date Modified2007-12-15T08:21:05Z - Date Added2009-10-03T14:51:24Z - Bit Rate187 - Sample Rate44100 - CommentsRaga: Sindhubhairavi Tala: Adi - Normalization1703 - Persistent ID9FC23554750AD99D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Sanjay%20Subramanyam/Aalapana%20(Raga%20-%20Sindhubhairavi)/07%20Track%2007.m4a - File Folder Count4 - Library Folder Count1 - - 1992 - - Track ID1992 - NameVenkatachala Nilayam (Raga: Sindhubhairavi Tala: Adi) - ArtistM. L. Vasantha Kumari - ComposerPurandara Dasa - AlbumAalapana (Raga - Sindhubhairavi) - GenreCarnatic - KindAAC audio file - Size3800255 - Total Time203986 - Track Number8 - Track Count11 - Date Modified2007-12-15T08:22:21Z - Date Added2009-10-03T14:51:24Z - Bit Rate147 - Sample Rate44100 - CommentsRaga: Sindhubhairavi Tala: Adi - Normalization5143 - Persistent ID9F89055472F200DF - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/M.%20L.%20Vasantha%20Kumari/Aalapana%20(Raga%20-%20Sindhubhairavi)/08%20Track%2008.m4a - File Folder Count4 - Library Folder Count1 - - 1994 - - Track ID1994 - NameVaishnava Janato (Raga: Sindhubhairavi Tala: Adi) - ArtistAriyakudi Ramanuja Iyengar - ComposerNarsi Mehta - AlbumAalapana (Raga - Sindhubhairavi) - GenreCarnatic - KindAAC audio file - Size9303789 - Total Time393853 - Track Number10 - Track Count11 - Date Modified2007-12-15T08:24:29Z - Date Added2009-10-03T14:51:24Z - Bit Rate187 - Sample Rate44100 - CommentsRaga: Sindhubhairavi Tala: Adi - Normalization2357 - Persistent IDEF8A0091ED4C7627 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ariyakudi%20Ramanuja%20Iyengar/Aalapana%20(Raga%20-%20Sindhubhairavi)/10%20Track%2010.m4a - File Folder Count4 - Library Folder Count1 - - 1996 - - Track ID1996 - NameNenjukku Neethiyum (Raga: Sindhubhairavi Tala: Adi) - ArtistM.S. Subbulakshmi - ComposerSubramania Bharathi - AlbumAalapana (Raga - Sindhubhairavi) - GenreCarnatic - KindAAC audio file - Size4113009 - Total Time174386 - Track Number11 - Track Count11 - Date Modified2007-12-15T08:25:12Z - Date Added2009-10-03T14:51:24Z - Bit Rate186 - Sample Rate44100 - CommentsRaga: Sindhubhairavi Tala: Adi - Normalization2557 - Persistent IDDE6D87BE458F4B8A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/M.S.%20Subbulakshmi/Aalapana%20(Raga%20-%20Sindhubhairavi)/11%20Track%2011.m4a - File Folder Count4 - Library Folder Count1 - - 1998 - - Track ID1998 - NameNarayana Divya Namam (Raga: Mohanam Tala: Adi) - Album ArtistT.N. Seshagopalan - ComposerPapanasam Sivan - AlbumAalapana (Raga - Mohanam) - GenreCarnatic - KindAAC audio file - Size23466340 - Total Time989920 - Track Number2 - Track Count9 - Date Modified2007-12-15T07:53:34Z - Date Added2009-10-03T14:51:25Z - Bit Rate188 - Sample Rate44100 - CommentsRaga: Mohanam Tala: Adi - Normalization1425 - Persistent IDFA7DEA17AE23F60B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/T.N.%20Seshagopalan/Aalapana%20(Raga%20-%20Mohanam)/02%20Track%2002.m4a - File Folder Count4 - Library Folder Count1 - - 2000 - - Track ID2000 - NameNannu Palimpa (Raga: Mohanam Tala: Adi) - ArtistM. Balamuralikrishna - ComposerThyagaraja - AlbumAalapana (Raga - Mohanam) - GenreCarnatic - KindAAC audio file - Size20190024 - Total Time853333 - Track Number3 - Track Count9 - Date Modified2007-12-15T07:54:29Z - Date Added2009-10-03T14:51:25Z - Bit Rate187 - Sample Rate44100 - CommentsRaga: Mohanam Tala: Adi - Normalization1703 - Persistent ID140288C979B8230A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/M.%20Balamuralikrishna/Aalapana%20(Raga%20-%20Mohanam)/03%20Track%2003.m4a - File Folder Count4 - Library Folder Count1 - - 2002 - - Track ID2002 - NameKapali (Raga: Mohanam Tala: Adi) - ArtistMadurai Mani Iyer - ComposerPapanasam Sivan - AlbumAalapana (Raga - Mohanam) - GenreCarnatic - KindAAC audio file - Size9101747 - Total Time383613 - Track Number4 - Track Count9 - Date Modified2007-12-15T07:55:23Z - Date Added2009-10-03T14:51:25Z - Bit Rate188 - Sample Rate44100 - CommentsRaga: Mohanam Tala: Adi - Normalization1613 - Persistent ID47C5E505FEF432A7 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Madurai%20Mani%20Iyer/Aalapana%20(Raga%20-%20Mohanam)/04%20Track%2004.m4a - File Folder Count4 - Library Folder Count1 - - 2004 - - Track ID2004 - NameDayaraani (Raga: Mohanam Tala: Kanda Chapu) - ArtistM.L. Vasanthakumari - ComposerThyagaraja - AlbumAalapana (Raga - Mohanam) - GenreCarnatic - KindAAC audio file - Size5271288 - Total Time222440 - Track Number5 - Track Count9 - Date Modified2007-12-15T08:02:00Z - Date Added2009-10-03T14:51:25Z - Bit Rate187 - Sample Rate44100 - CommentsRaga: Mohanam Tala: Kanda Chapu - Normalization2827 - Persistent ID6522369982CB5B4C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/M.L.%20Vasanthakumari/Aalapana%20(Raga%20-%20Mohanam)/05%20Track%2005.m4a - File Folder Count4 - Library Folder Count1 - - 2006 - - Track ID2006 - NameSada Palaya (Raga: Mohanam Tala: Adi) - ArtistTrichur V. Ramachandran - ComposerG. N. Balasubramanian - AlbumAalapana (Raga - Mohanam) - GenreCarnatic - KindAAC audio file - Size15563845 - Total Time632226 - Track Number6 - Track Count9 - Date Modified2007-12-15T07:57:44Z - Date Added2009-10-03T14:51:25Z - Bit Rate195 - Sample Rate44100 - CommentsRaga: Mohanam Tala: Adi - Normalization4510 - Persistent ID6649474A23CBC6CC - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Trichur%20V.%20Ramachandran/Aalapana%20(Raga%20-%20Mohanam)/06%20Track%2006.m4a - File Folder Count4 - Library Folder Count1 - - 2008 - - Track ID2008 - NameMayil Vahana (Raga: Mohanam Tala: Adi) - ArtistRadha Jayalakshmi - ComposerPapanasam Sivan - AlbumAalapana (Raga - Mohanam) - GenreCarnatic - KindAAC audio file - Size9682041 - Total Time403440 - Track Number7 - Track Count9 - Date Modified2007-12-15T07:58:38Z - Date Added2009-10-03T14:51:25Z - Bit Rate190 - Sample Rate44100 - CommentsRaga: Mohanam Tala: Adi - Normalization2621 - Persistent ID72351E6562A0876D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Radha%20Jayalakshmi/Aalapana%20(Raga%20-%20Mohanam)/07%20Track%2007.m4a - File Folder Count4 - Library Folder Count1 - - 2010 - - Track ID2010 - NameYen Pallikondeerayya (Raga: Mohanam Tala: Adi) - ArtistN. C. VasanthaKokilam - ComposerArunachala Kavi - AlbumAalapana (Raga - Mohanam) - GenreCarnatic - KindAAC audio file - Size6871404 - Total Time375986 - Track Number8 - Track Count9 - Date Modified2007-12-15T07:59:52Z - Date Added2009-10-03T14:51:25Z - Bit Rate144 - Sample Rate44100 - CommentsRaga: Mohanam Tala: Adi - Normalization3289 - Persistent ID5A2F24D8D31D5F73 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/N.%20C.%20VasanthaKokilam/Aalapana%20(Raga%20-%20Mohanam)/08%20Track%2008.m4a - File Folder Count4 - Library Folder Count1 - - 2012 - - Track ID2012 - NameKadambari Priya (Raga: Mohanam Tala: Tisra Triputa) - ArtistVijaya Siva - ComposerDikshitar - AlbumAalapana (Raga - Mohanam) - GenreCarnatic - KindAAC audio file - Size10633406 - Total Time434546 - Track Number9 - Track Count9 - Date Modified2007-12-15T08:01:33Z - Date Added2009-10-03T14:51:25Z - Bit Rate194 - Sample Rate44100 - CommentsRaga: Mohanam Tala: Tisra Triputa - Normalization1202 - Persistent IDE77FD1AF9545C3BE - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Vijaya%20Siva/Aalapana%20(Raga%20-%20Mohanam)/09%20Kadambari%20Priya%20(Raga_%20Mohanam%20Tala_%20Tisra%20Triputa).m4a - File Folder Count4 - Library Folder Count1 - - 2014 - - Track ID2014 - NameSree Balasubramanya (Raga: Bilahari Tala: Misra Chapu) - ArtistChembai Vaidyanatha Bhagavatar - ComposerDikshitar - AlbumAalapana (Raga - Bilahari) - GenreCarnatic - KindAAC audio file - Size4257593 - Total Time207826 - Track Number1 - Track Count12 - Date Modified2007-12-15T16:26:28Z - Date Added2009-10-03T14:51:26Z - Bit Rate162 - Sample Rate44100 - CommentsRaga: Bilahari Tala: Misra Chapu - Normalization2313 - Persistent ID23CADA7614A73A02 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chembai%20Vaidyanatha%20Bhagavatar/Aalapana%20(Raga%20-%20Bilahari)/01%20Sree%20Balasubramanya%20(Raga_%20Bilahari%20Tala_%20Misra%20Chapu).m4a - File Folder Count4 - Library Folder Count1 - - 2016 - - Track ID2016 - NameKamakshi (Raga: Bilahari Tala: Adi) - ArtistD. K. Pattammal - ComposerDikshitar - AlbumAalapana (Raga - Bilahari) - GenreCarnatic - KindAAC audio file - Size16307293 - Total Time672733 - Track Number2 - Track Count12 - Date Modified2007-12-15T16:27:19Z - Date Added2009-10-03T14:51:26Z - Bit Rate192 - Sample Rate44100 - CommentsRaga: Bilahari Tala: Adi - Normalization2264 - Persistent IDA4E7244EEDE5D4C1 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/D.%20K.%20Pattammal/Aalapana%20(Raga%20-%20Bilahari)/02%20Kamakshi%20(Raga_%20Bilahari%20Tala_%20Adi).m4a - File Folder Count4 - Library Folder Count1 - - 2018 - - Track ID2018 - NameKanugontini (Raga: Bilahari Tala: Adi) - ArtistT. N. Seshagopalan - ComposerThyagaraja - AlbumAalapana (Raga - Bilahari) - GenreCarnatic - KindAAC audio file - Size5837936 - Total Time247333 - Track Number3 - Track Count12 - Date Modified2007-12-15T16:28:03Z - Date Added2009-10-03T14:51:26Z - Bit Rate187 - Sample Rate44100 - CommentsRaga: Bilahari Tala: Adi - Normalization2776 - Persistent ID722C3BA0023D1C5B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/T.%20N.%20Seshagopalan/Aalapana%20(Raga%20-%20Bilahari)/03%20Kanugontini%20(Raga_%20Bilahari%20Tala_%20Adi).m4a - File Folder Count4 - Library Folder Count1 - - 2020 - - Track ID2020 - NameYekadantam (Raga: Bilahari Tala: Misra Chapu) - ArtistM. L. Vasanthakumari - ComposerDikshitar - AlbumAalapana (Raga - Bilahari) - GenreCarnatic - KindAAC audio file - Size6404031 - Total Time260373 - Track Number4 - Track Count12 - Date Modified2007-12-15T16:28:57Z - Date Added2009-10-03T14:51:26Z - Bit Rate195 - Sample Rate44100 - CommentsRaga: Bilahari Tala: Misra Chapu - Normalization2721 - Persistent ID52C98509760CD60B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/M.%20L.%20Vasanthakumari/Aalapana%20(Raga%20-%20Bilahari)/04%20Yekadantam%20(Raga_%20Bilahari%20Tala_%20Misra%20Chapu).m4a - File Folder Count4 - Library Folder Count1 - - 2022 - - Track ID2022 - NameNarasimha Nanubrovave (Raga: Bilahari Tala: Misra Chapu) - ArtistT. V. Shankaranarayanan - ComposerThyagaraja - AlbumAalapana (Raga - Bilahari) - GenreCarnatic - KindAAC audio file - Size20364773 - Total Time842133 - Track Number5 - Track Count12 - Date Modified2007-12-15T16:30:00Z - Date Added2009-10-03T14:51:26Z - Bit Rate191 - Sample Rate44100 - CommentsRaga: Bilahari Tala: Misra Chapu - Normalization2350 - Persistent ID6F8213D58395B5BE - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/T.%20V.%20Shankaranarayanan/Aalapana%20(Raga%20-%20Bilahari)/05%20Narasimha%20Nanubrovave%20(Raga_%20Bilahari%20Tala_%20Misra%20Chapu).m4a - File Folder Count4 - Library Folder Count1 - - 2024 - - Track ID2024 - NameSharanou Janakana (Raga: Bilahari Tala: Adi) - ArtistSudha Raghunathan - ComposerPurandara Dasa - AlbumAalapana (Raga - Bilahari) - GenreCarnatic - KindAAC audio file - Size10175047 - Total Time414146 - Track Number7 - Track Count12 - Date Modified2007-12-15T16:31:40Z - Date Added2009-10-03T14:51:27Z - Bit Rate195 - Sample Rate44100 - CommentsRaga: Bilahari Tala: Adi - Normalization3753 - Persistent ID6D56259846867654 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Sudha%20Raghunathan/Aalapana%20(Raga%20-%20Bilahari)/07%20Sharanou%20Janakana%20(Raga_%20Bilahari%20Tala_%20Adi).m4a - File Folder Count4 - Library Folder Count1 - - 2026 - - Track ID2026 - NameSarvesa (Raga: Bilahari Tala: Adi) - ArtistSowmya - ComposerPapanasam Sivan - AlbumAalapana (Raga - Bilahari) - GenreCarnatic - KindAAC audio file - Size7933428 - Total Time335106 - Track Number8 - Track Count12 - Date Modified2007-12-15T16:33:13Z - Date Added2009-10-03T14:51:27Z - Bit Rate187 - Sample Rate44100 - CommentsRaga: Bilahari Tala: Adi - Normalization1655 - Persistent ID340D217AFFDE892D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Sowmya/Aalapana%20(Raga%20-%20Bilahari)/08%20Sarvesa%20(Raga_%20Bilahari%20Tala_%20Adi).m4a - File Folder Count4 - Library Folder Count1 - - 2028 - - Track ID2028 - NameTholijanmamuna (Raga: Bilahari Tala: Kanda Chapu) - ArtistNityasree - ComposerThyagaraja - AlbumAalapana (Raga - Bilahari) - GenreCarnatic - KindAAC audio file - Size13563093 - Total Time552826 - Track Number9 - Track Count12 - Date Modified2007-12-15T16:33:03Z - Date Added2009-10-03T14:51:27Z - Bit Rate194 - Sample Rate44100 - CommentsRaga: Bilahari Tala: Kanda Chapu - Normalization4479 - Persistent ID028E3D6F84615CDC - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Nityasree/Aalapana%20(Raga%20-%20Bilahari)/09%20Tholijanmamuna%20(Raga_%20Bilahari%20Tala_%20Kanda%20Chapu).m4a - File Folder Count4 - Library Folder Count1 - - 2030 - - Track ID2030 - NameParidhanamichite (Raga: Bilahari Tala: Kanda Chapu) - ArtistT. M. Krishna - ComposerPatnam Subramania Iyer - AlbumAalapana (Raga - Bilahari) - GenreCarnatic - KindAAC audio file - Size7268747 - Total Time304453 - Track Number10 - Track Count12 - Date Modified2007-12-15T16:34:04Z - Date Added2009-10-03T14:51:27Z - Bit Rate189 - Sample Rate44100 - CommentsRaga: Bilahari Tala: Kanda Chapu - Normalization5712 - Persistent ID111F8F9B9CF9E259 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/T.%20M.%20Krishna/Aalapana%20(Raga%20-%20Bilahari)/10%20Paridhanamichite%20(Raga_%20Bilahari%20Tala_%20Kanda%20Chapu).m4a - File Folder Count4 - Library Folder Count1 - - 2032 - - Track ID2032 - NameIntha Kannananda (Raga: Bilahari Tala: Roopakam) - ArtistPriya Sisters - ComposerThyagaraja - AlbumAalapana (Raga - Bilahari) - GenreCarnatic - KindAAC audio file - Size7513204 - Total Time318306 - Track Number11 - Track Count12 - Date Modified2007-12-15T16:34:45Z - Date Added2009-10-03T14:51:27Z - Bit Rate187 - Sample Rate44100 - CommentsRaga: Bilahari Tala: Roopakam - Normalization2187 - Persistent IDDDF62494107F83EA - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Priya%20Sisters/Aalapana%20(Raga%20-%20Bilahari)/11%20Intha%20Kannananda%20(Raga_%20Bilahari%20Tala_%20Roopakam).m4a - File Folder Count4 - Library Folder Count1 - - 2034 - - Track ID2034 - NamePooraya Mama Kamam (Raga: Bilahari Tala: Adi) - ArtistSumitra Vasudev - ComposerNarayana Theerthar - AlbumAalapana (Raga - Bilahari) - GenreCarnatic - KindAAC audio file - Size8465278 - Total Time344186 - Track Number12 - Track Count12 - Date Modified2007-12-15T16:35:28Z - Date Added2009-10-03T14:51:28Z - Bit Rate195 - Sample Rate44100 - CommentsRaga: Bilahari Tala: Adi - Normalization2175 - Persistent ID3F6D9C80555F5671 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Sumitra%20Vasudev/Aalapana%20(Raga%20-%20Bilahari)/12%20Pooraya%20Mama%20Kamam%20(Raga_%20Bilahari%20Tala_%20Adi).m4a - File Folder Count4 - Library Folder Count1 - - 2036 - - Track ID2036 - NameAadum Chidambaramo (Raga: Behag Tala: Adi) - ArtistM.S. Subbulakshmi - ComposerGopalakrishna Bharathiyar - AlbumAalapana (Raga - Behag) - GenreCarnatic - KindAAC audio file - Size3498426 - Total Time178440 - Track Number1 - Track Count14 - Date Modified2007-12-15T12:35:00Z - Date Added2009-10-03T14:51:28Z - Bit Rate155 - Sample Rate44100 - CommentsRaga: Behag Tala: Adi - Play Count1 - Play Date3353215065 - Play Date UTC2010-04-04T03:07:45Z - Normalization3581 - Persistent IDA0DC8891697B8725 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/M.S.%20Subbulakshmi/Aalapana%20(Raga%20-%20Behag)/01%20Aadum%20Chidambaramo%20(Raga_%20Behag%20Tala_%20Adi).m4a - File Folder Count4 - Library Folder Count1 - - 2038 - - Track ID2038 - NameSaramaina Mata (Raga: Behag Tala: Roopakam) - ArtistM.L. Vasanthakumari - ComposerSwathi Thirunal - AlbumAalapana (Raga - Behag) - GenreCarnatic - KindAAC audio file - Size4879149 - Total Time198426 - Track Number2 - Track Count14 - Date Modified2007-12-15T12:36:46Z - Date Added2009-10-03T14:51:28Z - Bit Rate195 - Sample Rate44100 - CommentsRaga: Behag Tala: Roopakam - Normalization3346 - Persistent ID3CDA2254C26566D2 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/M.L.%20Vasanthakumari/Aalapana%20(Raga%20-%20Behag)/02%20Saramaina%20Mata%20(Raga_%20Behag%20Tala_%20Roopakam).m4a - File Folder Count4 - Library Folder Count1 - - 2040 - - Track ID2040 - NameKannare Kandena (Raga: Behag Tala: Adi) - ArtistRadha Jayalakshmi - ComposerPurandara Dasa - AlbumAalapana (Raga - Behag) - GenreCarnatic - KindAAC audio file - Size5861445 - Total Time238680 - Track Number3 - Track Count14 - Date Modified2007-12-15T12:39:00Z - Date Added2009-10-03T14:51:28Z - Bit Rate194 - Sample Rate44100 - CommentsRaga: Behag Tala: Adi - Normalization3641 - Persistent ID1E17B7A9E4E74E5F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Radha%20Jayalakshmi/Aalapana%20(Raga%20-%20Behag)/03%20Kannare%20Kandena%20(Raga_%20Behag%20Tala_%20Adi).m4a - File Folder Count4 - Library Folder Count1 - - 2042 - - Track ID2042 - NameNanake Badavanu (Raga: Behag Tala: Jampa) - ArtistM.S. Subbulakshmi - ComposerPurandara Dasa - AlbumAalapana (Raga - Behag) - GenreCarnatic - KindAAC audio file - Size4984935 - Total Time210240 - Track Number4 - Track Count14 - Date Modified2007-12-15T12:38:54Z - Date Added2009-10-03T14:51:28Z - Bit Rate188 - Sample Rate44100 - CommentsRaga: Behag Tala: Jampa - Normalization3488 - Persistent IDDF49DADD45CE4AE6 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/M.S.%20Subbulakshmi/Aalapana%20(Raga%20-%20Behag)/04%20Nanake%20Badavanu%20(Raga_%20Behag%20Tala_%20Jampa).m4a - File Folder Count4 - Library Folder Count1 - - 2044 - - Track ID2044 - NameMomu Jupara (Raga: Behag Tala: Roopakam) - ArtistO.S. Thyagarajan - ComposerAnnamacharya - AlbumAalapana (Raga - Behag) - GenreCarnatic - KindAAC audio file - Size5073825 - Total Time213293 - Track Number5 - Track Count14 - Date Modified2007-12-15T12:40:00Z - Date Added2009-10-03T14:51:28Z - Bit Rate188 - Sample Rate44100 - CommentsRaga: Behag Tala: Roopakam - Normalization1508 - Persistent ID43A8AE3695BC7EF4 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/O.S.%20Thyagarajan/Aalapana%20(Raga%20-%20Behag)/05%20Momu%20Jupara%20(Raga_%20Behag%20Tala_%20Roopakam).m4a - File Folder Count4 - Library Folder Count1 - - 2046 - - Track ID2046 - NameSamayamidera (Raga: Behag Tala: Roopakam) - ArtistJohn B. Higgins - ComposerPatnam Subramania Iyer - AlbumAalapana (Raga - Behag) - GenreCarnatic - KindAAC audio file - Size4006695 - Total Time170093 - Track Number6 - Track Count14 - Date Modified2007-12-15T12:41:24Z - Date Added2009-10-03T14:51:29Z - Bit Rate186 - Sample Rate44100 - CommentsRaga: Behag Tala: Roopakam - Normalization2222 - Persistent ID600A47780506E375 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/John%20B.%20Higgins/Aalapana%20(Raga%20-%20Behag)/06%20Samayamidera%20(Raga_%20Behag%20Tala_%20Roopakam).m4a - File Folder Count4 - Library Folder Count1 - - 2048 - - Track ID2048 - NameOruthi Maganai (Raga: Behag Tala: Adi) - ArtistSanjay Subramanyam - ComposerThiruppavai - AlbumAalapana (Raga - Behag) - GenreCarnatic - KindAAC audio file - Size5385731 - Total Time228573 - Track Number7 - Track Count14 - Date Modified2007-12-15T12:43:16Z - Date Added2009-10-03T14:51:29Z - Bit Rate186 - Sample Rate44100 - CommentsRaga: Behag Tala: Adi - Normalization2000 - Persistent ID940ECE170AAAED7E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Sanjay%20Subramanyam/Aalapana%20(Raga%20-%20Behag)/07%20Oruthi%20Maganai%20(Raga_%20Behag%20Tala_%20Adi).m4a - File Folder Count4 - Library Folder Count1 - - 2050 - - Track ID2050 - NameSenthamizhnaadu (Raga: Behag Tala: Adi (Tisram)) - ArtistAnuradha Suresh Krishnamurthi - ComposerSubramania Bharathi - AlbumAalapana (Raga - Behag) - GenreCarnatic - KindAAC audio file - Size3578202 - Total Time152000 - Track Number8 - Track Count14 - Date Modified2007-12-15T12:46:19Z - Date Added2009-10-03T14:51:29Z - Bit Rate186 - Sample Rate44100 - CommentsRaga: Behag Tala: Adi (Tisram) - Normalization2655 - Persistent IDB583ED405EE201E9 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Anuradha%20Suresh%20Krishnamurthi/Aalapana%20(Raga%20-%20Behag)/08%20Senthamizhnaadu%20(Raga_%20Behag%20Tala_%20Adi%20(Tisram)).m4a - File Folder Count4 - Library Folder Count1 - - 2052 - - Track ID2052 - NameReena Madanutha (Raga: Behag Tala: Adi) - ArtistSanjay Subramanyam - ComposerSwathi Thirunal - AlbumAalapana (Raga - Behag) - GenreCarnatic - KindAAC audio file - Size6589578 - Total Time270080 - Track Number9 - Track Count14 - Date Modified2007-12-15T12:47:15Z - Date Added2009-10-03T14:51:29Z - Bit Rate193 - Sample Rate44100 - CommentsRaga: Behag Tala: Adi - Normalization2813 - Persistent IDA37B8C8BA9F146CA - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Sanjay%20Subramanyam/Aalapana%20(Raga%20-%20Behag)/09%20Reena%20Madanutha%20(Raga_%20Behag%20Tala_%20Adi).m4a - File Folder Count4 - Library Folder Count1 - - 2054 - - Track ID2054 - NamePahi Krishna (Raga: Behag Tala: Adi) - ArtistT. M. Krishna - ComposerGopalakrishna Bharathiyar - AlbumAalapana (Raga - Behag) - GenreCarnatic - KindAAC audio file - Size5973246 - Total Time254226 - Track Number10 - Track Count14 - Date Modified2007-12-15T12:48:04Z - Date Added2009-10-03T14:51:29Z - Bit Rate186 - Sample Rate44100 - CommentsRaga: Behag Tala: Adi - Normalization2940 - Persistent ID1BAE1DA456588587 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/T.%20M.%20Krishna/Aalapana%20(Raga%20-%20Behag)/10%20Pahi%20Krishna%20(Raga_%20Behag%20Tala_%20Adi).m4a - File Folder Count4 - Library Folder Count1 - - 2056 - - Track ID2056 - NameJavali (Raga: Behag Tala: Roopakam) - ArtistT. M. Thyagarajan - ComposerTirupati Narayanaswami - AlbumAalapana (Raga - Behag) - GenreCarnatic - KindAAC audio file - Size6029288 - Total Time250466 - Track Number12 - Track Count14 - Date Modified2007-12-15T12:51:11Z - Date Added2009-10-03T14:51:30Z - Bit Rate190 - Sample Rate44100 - CommentsRaga: Behag Tala: Roopakam - Normalization2421 - Persistent ID56E17839B244F31B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/T.%20M.%20Thyagarajan/Aalapana%20(Raga%20-%20Behag)/12%20Javali%20(Raga_%20Behag%20Tala_%20Roopakam).m4a - File Folder Count4 - Library Folder Count1 - - 2058 - - Track ID2058 - NameVagaladi (Raga: Behag Tala: Roopakam) - ArtistT. Mukta and Sowmya - ComposerTirupati Narayanaswami - AlbumAalapana (Raga - Behag) - GenreCarnatic - KindAAC audio file - Size6276766 - Total Time255013 - Track Number13 - Track Count14 - Date Modified2007-12-15T12:52:04Z - Date Added2009-10-03T14:51:30Z - Bit Rate195 - Sample Rate44100 - CommentsRaga: Behag Tala: Roopakam - Normalization1677 - Persistent ID4F0D9E5CCDF867E0 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/T.%20Mukta%20and%20Sowmya/Aalapana%20(Raga%20-%20Behag)/13%20Vagaladi%20(Raga_%20Behag%20Tala_%20Roopakam).m4a - File Folder Count4 - Library Folder Count1 - - 2060 - - Track ID2060 - NameThillana (Raga: Behag Tala: Adi (Tisram)) - ArtistBombay Jayasree - ComposerLalgudi G. Jayaraman - AlbumAalapana (Raga - Behag) - GenreCarnatic - KindAAC audio file - Size7668725 - Total Time313720 - Track Number14 - Track Count14 - Date Modified2007-12-15T12:52:58Z - Date Added2009-10-03T14:51:30Z - Bit Rate193 - Sample Rate44100 - CommentsRaga: Behag Tala: Adi (Tisram) - Normalization2852 - Persistent ID78FD5B665483602B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bombay%20Jayasree/Aalapana%20(Raga%20-%20Behag)/14%20Thillana%20(Raga_%20Behag%20Tala_%20Adi%20(Tisram)).m4a - File Folder Count4 - Library Folder Count1 - - 2062 - - Track ID2062 - NameVishnu Stuti- Vishnu Shodashanamani - ArtistUma Mohan & G.Ghayathri Devi - ComposerSEVEN - AlbumSacred Chants 3 for Stress Relief, Immunity & Longevity - GenreWorld - KindAAC audio file - Size6410286 - Total Time262853 - Track Number1 - Track Count8 - Date Modified2008-09-28T16:03:35Z - Date Added2009-10-03T14:51:30Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3390622376 - Play Date UTC2011-06-11T02:02:56Z - Normalization1847 - Artwork Count1 - Persistent IDA34D6B45EED4D2FF - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Uma%20Mohan%20&%20G.Ghayathri%20Devi/Sacred%20Chants%203%20for%20Stress%20Relief,%20Immunity%20&%20Longevity/01%20Vishnu%20Stuti-%20Vishnu%20Shodashanamani.m4a - File Folder Count4 - Library Folder Count1 - - 2064 - - Track ID2064 - NameTotakashtakam - ArtistUma Mohan & G.Ghayathri Devi - ComposerSEVEN - AlbumSacred Chants 3 for Stress Relief, Immunity & Longevity - GenreWorld - KindAAC audio file - Size6735166 - Total Time281146 - Track Number2 - Track Count8 - Date Modified2008-09-28T16:03:35Z - Date Added2009-10-03T14:51:30Z - Bit Rate189 - Sample Rate44100 - Play Count1 - Play Date3390622657 - Play Date UTC2011-06-11T02:07:37Z - Normalization1768 - Artwork Count1 - Persistent IDE915986C913B803A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Uma%20Mohan%20&%20G.Ghayathri%20Devi/Sacred%20Chants%203%20for%20Stress%20Relief,%20Immunity%20&%20Longevity/02%20Totakashtakam.m4a - File Folder Count4 - Library Folder Count1 - - 2066 - - Track ID2066 - NameVaidhyanathashtakam - ArtistUma Mohan & G.Ghayathri Devi - ComposerSEVEN - AlbumSacred Chants 3 for Stress Relief, Immunity & Longevity - GenreWorld - KindAAC audio file - Size8583257 - Total Time351813 - Track Number3 - Track Count8 - Date Modified2008-09-28T16:03:34Z - Date Added2009-10-03T14:51:30Z - Bit Rate193 - Sample Rate44100 - Play Count1 - Play Date3390623009 - Play Date UTC2011-06-11T02:13:29Z - Normalization1831 - Artwork Count1 - Persistent IDC88EC78D16896776 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Uma%20Mohan%20&%20G.Ghayathri%20Devi/Sacred%20Chants%203%20for%20Stress%20Relief,%20Immunity%20&%20Longevity/03%20Vaidhyanathashtakam.m4a - File Folder Count4 - Library Folder Count1 - - 2068 - - Track ID2068 - NameMahishasuramardini Stotram - ArtistUma Mohan & G.Ghayathri Devi - ComposerSEVEN - AlbumSacred Chants 3 for Stress Relief, Immunity & Longevity - GenreWorld - KindAAC audio file - Size21252153 - Total Time862946 - Track Number4 - Track Count8 - Date Modified2008-09-28T16:03:34Z - Date Added2009-10-03T14:51:31Z - Bit Rate195 - Sample Rate44100 - Play Count1 - Play Date3390623872 - Play Date UTC2011-06-11T02:27:52Z - Normalization1475 - Artwork Count1 - Persistent IDD062E5C53CD95A0D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Uma%20Mohan%20&%20G.Ghayathri%20Devi/Sacred%20Chants%203%20for%20Stress%20Relief,%20Immunity%20&%20Longevity/04%20Mahishasuramardini%20Stotram.m4a - File Folder Count4 - Library Folder Count1 - - 2070 - - Track ID2070 - NameSivamanaspooja - ArtistUma Mohan & G.Ghayathri Devi - ComposerSEVEN - AlbumSacred Chants 3 for Stress Relief, Immunity & Longevity - GenreWorld - KindAAC audio file - Size6961800 - Total Time285253 - Track Number5 - Track Count8 - Date Modified2008-09-28T16:03:33Z - Date Added2009-10-03T14:51:31Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3390624157 - Play Date UTC2011-06-11T02:32:37Z - Normalization1924 - Artwork Count1 - Persistent IDEF23DB4046280B34 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Uma%20Mohan%20&%20G.Ghayathri%20Devi/Sacred%20Chants%203%20for%20Stress%20Relief,%20Immunity%20&%20Longevity/05%20Sivamanaspooja.m4a - File Folder Count4 - Library Folder Count1 - - 2072 - - Track ID2072 - NameMritasanjeevana Stotram - ArtistUma Mohan & G.Ghayathri Devi - ComposerSEVEN - AlbumSacred Chants 3 for Stress Relief, Immunity & Longevity - GenreWorld - KindAAC audio file - Size15178450 - Total Time617720 - Track Number6 - Track Count8 - Date Modified2008-09-28T16:03:32Z - Date Added2009-10-03T14:51:31Z - Bit Rate194 - Sample Rate44100 - Play Count1 - Play Date3390624775 - Play Date UTC2011-06-11T02:42:55Z - Normalization1401 - Artwork Count1 - Persistent ID03F82A45FC1A2CC0 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Uma%20Mohan%20&%20G.Ghayathri%20Devi/Sacred%20Chants%203%20for%20Stress%20Relief,%20Immunity%20&%20Longevity/06%20Mritasanjeevana%20Stotram.m4a - File Folder Count4 - Library Folder Count1 - - 2074 - - Track ID2074 - NameMrityunjaya Stotram - ArtistUma Mohan & G.Ghayathri Devi - ComposerSEVEN - AlbumSacred Chants 3 for Stress Relief, Immunity & Longevity - GenreWorld - KindAAC audio file - Size12753995 - Total Time518720 - Track Number7 - Track Count8 - Date Modified2008-09-28T16:03:32Z - Date Added2009-10-03T14:51:31Z - Bit Rate194 - Sample Rate44100 - Normalization1683 - Artwork Count1 - Persistent ID542250D3B74F5A1F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Uma%20Mohan%20&%20G.Ghayathri%20Devi/Sacred%20Chants%203%20for%20Stress%20Relief,%20Immunity%20&%20Longevity/07%20Mrityunjaya%20Stotram.m4a - File Folder Count4 - Library Folder Count1 - - 2076 - - Track ID2076 - NameMangalacharan - ArtistUma Mohan & G.Ghayathri Devi - ComposerSEVEN - AlbumSacred Chants 3 for Stress Relief, Immunity & Longevity - GenreWorld - KindAAC audio file - Size10290096 - Total Time431613 - Track Number8 - Track Count8 - Date Modified2008-09-28T16:03:31Z - Date Added2009-10-03T14:51:31Z - Bit Rate188 - Sample Rate44100 - Normalization1387 - Artwork Count1 - Persistent ID6C01E316F1E6418F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Uma%20Mohan%20&%20G.Ghayathri%20Devi/Sacred%20Chants%203%20for%20Stress%20Relief,%20Immunity%20&%20Longevity/08%20Mangalacharan.m4a - File Folder Count4 - Library Folder Count1 - - 2078 - - Track ID2078 - NameO Rey Chhori - ArtistUdit Narayan, Alga Yagnik, Vasundhara Das - ComposerA.R. Rahman - AlbumLagaan: Once Upon A Time In India - GenreSoundtrack - KindAAC audio file - Size8725900 - Total Time359071 - Disc Number1 - Disc Count1 - Track Number4 - Track Count8 - Year2001 - Date Modified2006-07-29T04:05:56Z - Date Added2009-10-03T14:51:31Z - Bit Rate192 - Sample Rate44100 - Normalization1766 - Artwork Count1 - Persistent ID2E5C8A7C4FE8240C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Udit%20Narayan,%20Alga%20Yagnik,%20Vasundhara%20Das/Lagaan_%20Once%20Upon%20A%20Time%20In%20India/04%20O%20Rey%20Chhori.m4a - File Folder Count4 - Library Folder Count1 - - 2080 - - Track ID2080 - NameGhanan Ghanan - ArtistUdit Narayan, Alga Yagnik, Sukwinder Singh, Shankar Mahadevan Shan, Kishori Gowariker - ComposerA.R. Rahman - AlbumLagaan: Once Upon A Time In India - GenreSoundtrack - KindAAC audio file - Size9025051 - Total Time371401 - Disc Number1 - Disc Count1 - Track Number1 - Track Count8 - Year2001 - Date Modified2006-07-29T04:05:56Z - Date Added2009-10-03T14:51:32Z - Bit Rate192 - Sample Rate44100 - Normalization2329 - Artwork Count1 - Persistent ID6F6932C2E8FB3F34 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Udit%20Narayan,%20Alga%20Yagnik,%20Sukwinder%20Singh,%20Shankar%20Mahadevan%20Shan,%20Kishori%20Gowariker/Lagaan_%20Once%20Upon%20A%20Time%20In%20India/01%20Ghanan%20Ghanan.m4a - File Folder Count4 - Library Folder Count1 - - 2082 - - Track ID2082 - NameMitwa - ArtistUdit Narayan, Alga Yagnik, Sukwinder Singh - ComposerA.R. Rahman - AlbumLagaan: Once Upon A Time In India - GenreSoundtrack - KindAAC audio file - Size9904963 - Total Time407810 - Disc Number1 - Disc Count1 - Track Number2 - Track Count8 - Year2001 - Date Modified2006-07-29T04:05:54Z - Date Added2009-10-03T14:51:32Z - Bit Rate192 - Sample Rate44100 - Normalization2556 - Artwork Count1 - Persistent ID4F1407889A65D9BB - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Udit%20Narayan,%20Alga%20Yagnik,%20Sukwinder%20Singh/Lagaan_%20Once%20Upon%20A%20Time%20In%20India/02%20Mitwa.m4a - File Folder Count4 - Library Folder Count1 - - 2084 - - Track ID2084 - NameA Man And A Woman - ArtistU2 - ComposerAdam Clayton, Bono, Larry Mullen & The Edge - AlbumHow To Dismantle An Atomic Bomb - GenreRock - KindAAC audio file - Size6524261 - Total Time270040 - Disc Number1 - Disc Count1 - Track Number7 - Track Count11 - Year2004 - Date Modified2007-10-01T05:56:28Z - Date Added2009-10-03T14:51:32Z - Bit Rate192 - Sample Rate44100 - Normalization5034 - Artwork Count1 - Sort NameMan And A Woman - Persistent ID0BDD5CE34FA855CE - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/U2/How%20To%20Dismantle%20An%20Atomic%20Bomb/07%20A%20Man%20And%20A%20Woman.m4a - File Folder Count4 - Library Folder Count1 - - 2086 - - Track ID2086 - NameAll Because Of You - ArtistU2 - ComposerAdam Clayton, Bono, Larry Mullen & The Edge - AlbumHow To Dismantle An Atomic Bomb - GenreRock - KindAAC audio file - Size5350608 - Total Time219053 - Disc Number1 - Disc Count1 - Track Number6 - Track Count11 - Year2004 - Date Modified2007-10-01T05:55:45Z - Date Added2009-10-03T14:51:32Z - Bit Rate192 - Sample Rate44100 - Normalization14698 - Artwork Count1 - Persistent ID070F7F3E679946E6 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/U2/How%20To%20Dismantle%20An%20Atomic%20Bomb/06%20All%20Because%20Of%20You.m4a - File Folder Count4 - Library Folder Count1 - - 2088 - - Track ID2088 - NameCity Of Blinding Lights - ArtistU2 - ComposerAdam Clayton, Bono, Larry Mullen & The Edge - AlbumHow To Dismantle An Atomic Bomb - GenreRock - KindAAC audio file - Size8422369 - Total Time347866 - Disc Number1 - Disc Count1 - Track Number5 - Track Count11 - Year2004 - Date Modified2007-10-01T05:55:08Z - Date Added2009-10-03T14:51:33Z - Bit Rate192 - Sample Rate44100 - Normalization7203 - Artwork Count1 - Persistent ID911876DAE75C3280 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/U2/How%20To%20Dismantle%20An%20Atomic%20Bomb/05%20City%20Of%20Blinding%20Lights.m4a - File Folder Count4 - Library Folder Count1 - - 2090 - - Track ID2090 - NameCrumbs From Your Table - ArtistU2 - ComposerAdam Clayton, Bono, Larry Mullen & The Edge - AlbumHow To Dismantle An Atomic Bomb - GenreRock - KindAAC audio file - Size7302203 - Total Time303466 - Disc Number1 - Disc Count1 - Track Number8 - Track Count11 - Year2004 - Date Modified2007-10-01T05:57:17Z - Date Added2009-10-03T14:51:33Z - Bit Rate192 - Sample Rate44100 - Normalization12221 - Artwork Count1 - Persistent ID11DDB9A7DB7B7B56 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/U2/How%20To%20Dismantle%20An%20Atomic%20Bomb/08%20Crumbs%20From%20Your%20Table.m4a - File Folder Count4 - Library Folder Count1 - - 2092 - - Track ID2092 - NameLove And Peace Or Else - ArtistU2 - ComposerAdam Clayton, Bono, Larry Mullen & The Edge - AlbumHow To Dismantle An Atomic Bomb - GenreRock - KindAAC audio file - Size7122333 - Total Time290600 - Disc Number1 - Disc Count1 - Track Number4 - Track Count11 - Year2004 - Date Modified2007-10-01T05:54:13Z - Date Added2009-10-03T14:51:33Z - Bit Rate192 - Sample Rate44100 - Normalization6388 - Artwork Count1 - Persistent ID11870FA4F09360AE - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/U2/How%20To%20Dismantle%20An%20Atomic%20Bomb/04%20Love%20And%20Peace%20Or%20Else.m4a - File Folder Count4 - Library Folder Count1 - - 2094 - - Track ID2094 - NameMiracle Drug - ArtistU2 - ComposerAdam Clayton, Bono, Larry Mullen & The Edge - AlbumHow To Dismantle An Atomic Bomb - GenreRock - KindAAC audio file - Size5734756 - Total Time239026 - Disc Number1 - Disc Count1 - Track Number2 - Track Count11 - Year2004 - Date Modified2007-10-01T05:52:27Z - Date Added2009-10-03T14:51:33Z - Bit Rate192 - Sample Rate44100 - Normalization6584 - Artwork Count1 - Persistent IDEC1DE93313CF94DA - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/U2/How%20To%20Dismantle%20An%20Atomic%20Bomb/02%20Miracle%20Drug.m4a - File Folder Count4 - Library Folder Count1 - - 2096 - - Track ID2096 - NameOne Step Closer - ArtistU2 - ComposerAdam Clayton, Bono, Larry Mullen & The Edge - AlbumHow To Dismantle An Atomic Bomb - GenreRock - KindAAC audio file - Size5595120 - Total Time231586 - Disc Number1 - Disc Count1 - Track Number9 - Track Count11 - Year2004 - Date Modified2007-10-01T05:57:55Z - Date Added2009-10-03T14:51:33Z - Bit Rate192 - Sample Rate44100 - Normalization1423 - Artwork Count1 - Persistent ID862D6D6F382AF539 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/U2/How%20To%20Dismantle%20An%20Atomic%20Bomb/09%20One%20Step%20Closer.m4a - File Folder Count4 - Library Folder Count1 - - 2098 - - Track ID2098 - NameOriginal Of The Species - ArtistU2 - ComposerAdam Clayton, Bono, Larry Mullen & The Edge - AlbumHow To Dismantle An Atomic Bomb - GenreRock - KindAAC audio file - Size6727918 - Total Time281360 - Disc Number1 - Disc Count1 - Track Number10 - Track Count11 - Year2004 - Date Modified2007-10-01T05:58:40Z - Date Added2009-10-03T14:51:33Z - Bit Rate192 - Sample Rate44100 - Normalization8811 - Artwork Count1 - Persistent ID87F89220F705A7FE - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/U2/How%20To%20Dismantle%20An%20Atomic%20Bomb/10%20Original%20Of%20The%20Species.m4a - File Folder Count4 - Library Folder Count1 - - 2100 - - Track ID2100 - NameSometimes You Can't Make It On Your Own - ArtistU2 - ComposerAdam Clayton, Bono, Larry Mullen & The Edge - AlbumHow To Dismantle An Atomic Bomb - GenreRock - KindAAC audio file - Size7450268 - Total Time308893 - Disc Number1 - Disc Count1 - Track Number3 - Track Count11 - Year2004 - Date Modified2007-10-01T05:53:26Z - Date Added2009-10-03T14:51:33Z - Bit Rate192 - Sample Rate44100 - Normalization5361 - Artwork Count1 - Persistent ID0BFA4C168825FEDD - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/U2/How%20To%20Dismantle%20An%20Atomic%20Bomb/03%20Sometimes%20You%20Can't%20Make%20It%20On%20Your%20Own.m4a - File Folder Count4 - Library Folder Count1 - - 2102 - - Track ID2102 - NameVertigo - ArtistU2 - ComposerAdam Clayton, Bono, Larry Mullen & The Edge - AlbumHow To Dismantle An Atomic Bomb - GenreRock - KindAAC audio file - Size4839183 - Total Time194520 - Disc Number1 - Disc Count1 - Track Number1 - Track Count11 - Year2004 - Date Modified2007-10-01T05:51:43Z - Date Added2009-10-03T14:51:33Z - Bit Rate192 - Sample Rate44100 - Normalization14213 - Artwork Count1 - Persistent IDA422695CD252F9B5 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/U2/How%20To%20Dismantle%20An%20Atomic%20Bomb/01%20Vertigo.m4a - File Folder Count4 - Library Folder Count1 - - 2104 - - Track ID2104 - NameYahweh - ArtistU2 - ComposerAdam Clayton, Bono, Larry Mullen & The Edge - AlbumHow To Dismantle An Atomic Bomb - GenreRock - KindAAC audio file - Size6395143 - Total Time261933 - Disc Number1 - Disc Count1 - Track Number11 - Track Count11 - Year2004 - Date Modified2007-10-01T05:59:26Z - Date Added2009-10-03T14:51:34Z - Bit Rate192 - Sample Rate44100 - Normalization13302 - Artwork Count1 - Persistent ID1AED21E4A4543C1B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/U2/How%20To%20Dismantle%20An%20Atomic%20Bomb/11%20Yahweh.m4a - File Folder Count4 - Library Folder Count1 - - 2106 - - Track ID2106 - NameAcrobat - ArtistU2 - ComposerU2 - AlbumAchtung Baby - GenreRock - KindAAC audio file - Size6588402 - Total Time270266 - Disc Number1 - Disc Count1 - Track Number11 - Track Count12 - Year1991 - Date Modified2007-09-30T21:04:03Z - Date Added2009-10-03T14:51:34Z - Bit Rate192 - Sample Rate44100 - Normalization1418 - Artwork Count1 - Persistent IDFEDB14EC20715124 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/U2/Achtung%20Baby/11%20Acrobat.m4a - File Folder Count4 - Library Folder Count1 - - 2108 - - Track ID2108 - NameEven Better Than The Real Thing - ArtistU2 - ComposerU2 - AlbumAchtung Baby - GenreRock - KindAAC audio file - Size5426795 - Total Time221466 - Disc Number1 - Disc Count1 - Track Number2 - Track Count12 - Year1991 - Date Modified2007-09-30T20:58:20Z - Date Added2009-10-03T14:51:34Z - Bit Rate192 - Sample Rate44100 - Normalization2578 - Artwork Count1 - Persistent ID1C6C12E263F3B367 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/U2/Achtung%20Baby/02%20Even%20Better%20Than%20The%20Real%20Thing.m4a - File Folder Count4 - Library Folder Count1 - - 2110 - - Track ID2110 - NameLove Is Blindness - ArtistU2 - ComposerU2 - AlbumAchtung Baby - GenreRock - KindAAC audio file - Size6426629 - Total Time263293 - Disc Number1 - Disc Count1 - Track Number12 - Track Count12 - Year1991 - Date Modified2007-09-30T21:04:38Z - Date Added2009-10-03T14:51:34Z - Bit Rate192 - Sample Rate44100 - Normalization1059 - Artwork Count1 - Persistent ID729EF8D6E6419DA5 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/U2/Achtung%20Baby/12%20Love%20Is%20Blindness.m4a - File Folder Count4 - Library Folder Count1 - - 2112 - - Track ID2112 - NameMysterious Ways - ArtistU2 - ComposerU2 - AlbumAchtung Baby - GenreRock - KindAAC audio file - Size6000742 - Total Time243573 - Disc Number1 - Disc Count1 - Track Number8 - Track Count12 - Year1991 - Date Modified2007-09-30T21:02:07Z - Date Added2009-10-03T14:51:34Z - Bit Rate192 - Sample Rate44100 - Normalization2215 - Artwork Count1 - Persistent ID2C872FC0840A7893 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/U2/Achtung%20Baby/08%20Mysterious%20Ways.m4a - File Folder Count4 - Library Folder Count1 - - 2114 - - Track ID2114 - NameOne - ArtistU2 - ComposerU2 - AlbumAchtung Baby - GenreRock - KindAAC audio file - Size6798707 - Total Time276133 - Disc Number1 - Disc Count1 - Track Number3 - Track Count12 - Year1991 - Date Modified2007-09-30T20:58:56Z - Date Added2009-10-03T14:51:35Z - Bit Rate192 - Sample Rate44100 - Normalization1333 - Artwork Count1 - Persistent IDBC704D10E6F77CB1 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/U2/Achtung%20Baby/03%20One.m4a - File Folder Count4 - Library Folder Count1 - - 2116 - - Track ID2116 - NameSo Cruel - ArtistU2 - ComposerU2 - AlbumAchtung Baby - GenreRock - KindAAC audio file - Size8503581 - Total Time349200 - Disc Number1 - Disc Count1 - Track Number6 - Track Count12 - Year1991 - Date Modified2007-09-30T21:00:58Z - Date Added2009-10-03T14:51:35Z - Bit Rate192 - Sample Rate44100 - Normalization1258 - Artwork Count1 - Persistent ID01CFA341756FB4B1 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/U2/Achtung%20Baby/06%20So%20Cruel.m4a - File Folder Count4 - Library Folder Count1 - - 2118 - - Track ID2118 - NameThe Fly - ArtistU2 - ComposerU2 - AlbumAchtung Baby - GenreRock - KindAAC audio file - Size6562372 - Total Time269066 - Disc Number1 - Disc Count1 - Track Number7 - Track Count12 - Year1991 - Date Modified2007-09-30T21:01:33Z - Date Added2009-10-03T14:51:35Z - Bit Rate192 - Sample Rate44100 - Normalization2211 - Artwork Count1 - Sort NameFly - Persistent IDB5D2837043DDCA13 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/U2/Achtung%20Baby/07%20The%20Fly.m4a - File Folder Count4 - Library Folder Count1 - - 2120 - - Track ID2120 - NameTryin' To Throw Your Arms Around The World - ArtistU2 - ComposerU2 - AlbumAchtung Baby - GenreRock - KindAAC audio file - Size5705922 - Total Time232626 - Disc Number1 - Disc Count1 - Track Number9 - Track Count12 - Year1991 - Date Modified2007-09-30T21:02:38Z - Date Added2009-10-03T14:51:35Z - Bit Rate192 - Sample Rate44100 - Normalization1258 - Artwork Count1 - Persistent IDDB3F067899EB7365 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/U2/Achtung%20Baby/09%20Tryin'%20To%20Throw%20Your%20Arms%20Around%20The%20World.m4a - File Folder Count4 - Library Folder Count1 - - 2122 - - Track ID2122 - NameUltraviolet (Light My Way) - ArtistU2 - ComposerU2 - AlbumAchtung Baby - GenreRock - KindAAC audio file - Size8056723 - Total Time330506 - Disc Number1 - Disc Count1 - Track Number10 - Track Count12 - Year1991 - Date Modified2007-09-30T21:03:24Z - Date Added2009-10-03T14:51:36Z - Bit Rate192 - Sample Rate44100 - Normalization1258 - Artwork Count1 - Persistent ID56FB9074707A12FC - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/U2/Achtung%20Baby/10%20Ultraviolet%20(Light%20My%20Way).m4a - File Folder Count4 - Library Folder Count1 - - 2124 - - Track ID2124 - NameUntil The End Of The World - ArtistU2 - ComposerU2 - AlbumAchtung Baby - GenreRock - KindAAC audio file - Size6803827 - Total Time278506 - Disc Number1 - Disc Count1 - Track Number4 - Track Count12 - Year1991 - Date Modified2007-09-30T20:59:32Z - Date Added2009-10-03T14:51:36Z - Bit Rate192 - Sample Rate44100 - Normalization1334 - Artwork Count1 - Persistent IDDA68D79DAC6724BE - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/U2/Achtung%20Baby/04%20Until%20The%20End%20Of%20The%20World.m4a - File Folder Count4 - Library Folder Count1 - - 2126 - - Track ID2126 - NameWho's Gonna Ride Your Wild Horses - ArtistU2 - ComposerU2 - AlbumAchtung Baby - GenreRock - KindAAC audio file - Size7752295 - Total Time316626 - Disc Number1 - Disc Count1 - Track Number5 - Track Count12 - Year1991 - Date Modified2007-09-30T21:00:13Z - Date Added2009-10-03T14:51:36Z - Bit Rate192 - Sample Rate44100 - Normalization1553 - Artwork Count1 - Persistent ID8B109F4A4BD602D0 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/U2/Achtung%20Baby/05%20Who's%20Gonna%20Ride%20Your%20Wild%20Horses.m4a - File Folder Count4 - Library Folder Count1 - - 2128 - - Track ID2128 - NameZoo Station - ArtistU2 - ComposerU2 - AlbumAchtung Baby - GenreRock - KindAAC audio file - Size6813695 - Total Time276133 - Disc Number1 - Disc Count1 - Track Number1 - Track Count12 - Year1991 - Date Modified2007-09-30T20:57:51Z - Date Added2009-10-03T14:51:36Z - Bit Rate192 - Sample Rate44100 - Normalization1608 - Artwork Count1 - Persistent ID0843520D19F9A755 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/U2/Achtung%20Baby/01%20Zoo%20Station.m4a - File Folder Count4 - Library Folder Count1 - - 2130 - - Track ID2130 - NameDance - ArtistU Srinivas & Michael Brook - ComposerMichael Brook, U. Srinivas, Nigel Kennedy, Nana Vasconcelos, Richard Evans - AlbumDream - GenreWorld - KindAAC audio file - Size20110637 - Total Time830437 - Disc Number1 - Disc Count1 - Track Number1 - Track Count4 - Year1995 - Date Modified2006-07-28T09:23:46Z - Date Added2009-10-03T14:51:37Z - Bit Rate192 - Sample Rate44100 - Normalization1256 - Artwork Count1 - Persistent IDE599596BF44B6928 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/U%20Srinivas%20&%20Michael%20Brook/Dream/01%20Dance.m4a - File Folder Count4 - Library Folder Count1 - - 2132 - - Track ID2132 - NameThink - ArtistU Srinivas & Michael Brook - ComposerMichael Brook, U. Srinivas - AlbumDream - GenreWorld - KindAAC audio file - Size18845790 - Total Time777588 - Disc Number1 - Disc Count1 - Track Number2 - Track Count4 - Year1995 - Date Modified2006-07-28T09:23:48Z - Date Added2009-10-03T14:51:37Z - Bit Rate192 - Sample Rate44100 - Normalization540 - Artwork Count1 - Persistent ID66FDAD660AACBC1F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/U%20Srinivas%20&%20Michael%20Brook/Dream/02%20Think.m4a - File Folder Count4 - Library Folder Count1 - - 2134 - - Track ID2134 - NameRun - ArtistU Srinivas & Michael Brook - ComposerMichael Brook, U. Srinivas, Nigel Kennedy, Nana Vasconcelos - AlbumDream - GenreWorld - KindAAC audio file - Size8259452 - Total Time350828 - Disc Number1 - Disc Count1 - Track Number3 - Track Count4 - Year1995 - Date Modified2006-07-28T09:23:50Z - Date Added2009-10-03T14:51:37Z - Bit Rate192 - Sample Rate44100 - Normalization1611 - Artwork Count1 - Persistent IDC9FCD4F39F0CDEA7 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/U%20Srinivas%20&%20Michael%20Brook/Dream/03%20Run.m4a - File Folder Count4 - Library Folder Count1 - - 2136 - - Track ID2136 - NameDream - ArtistU Srinivas & Michael Brook - ComposerMichael Brook, U. Srinivas, Sikkil R. Bhaskaran, Jane Siberry - AlbumDream - GenreWorld - KindAAC audio file - Size16455002 - Total Time679855 - Disc Number1 - Disc Count1 - Track Number4 - Track Count4 - Year1995 - Date Modified2006-07-28T09:23:50Z - Date Added2009-10-03T14:51:37Z - Bit Rate192 - Sample Rate44100 - Normalization1124 - Artwork Count1 - Persistent ID9E851A71E5CD892C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/U%20Srinivas%20&%20Michael%20Brook/Dream/04%20Dream.m4a - File Folder Count4 - Library Folder Count1 - - 2138 - - Track ID2138 - NameTalkin' Bout A Revolution - ArtistTracy Chapman - AlbumTracy Chapman - GenreFolk - KindAAC audio file - Size3902717 - Total Time160332 - Disc Number1 - Disc Count1 - Track Number1 - Track Count11 - Year1982 - Date Modified2006-08-01T08:20:38Z - Date Added2009-10-03T14:51:38Z - Bit Rate192 - Sample Rate44100 - Play Count6 - Play Date3484294145 - Play Date UTC2014-05-30T05:59:05Z - Rating60 - Album Rating60 - Album Rating Computed - Normalization1047 - Artwork Count1 - Persistent ID623F96C1E865B876 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tracy%20Chapman/Tracy%20Chapman/01%20Talkin'%20Bout%20A%20Revolution.m4a - File Folder Count4 - Library Folder Count1 - - 2140 - - Track ID2140 - NameFast Car - ArtistTracy Chapman - AlbumTracy Chapman - GenreFolk - KindAAC audio file - Size7213615 - Total Time296865 - Disc Number1 - Disc Count1 - Track Number2 - Track Count11 - Year1987 - Date Modified2006-08-01T08:20:38Z - Date Added2009-10-03T14:51:38Z - Bit Rate192 - Sample Rate44100 - Play Count4 - Play Date3484298288 - Play Date UTC2014-05-30T07:08:08Z - Album Rating60 - Album Rating Computed - Normalization1153 - Artwork Count1 - Persistent ID55206682150EC1B6 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tracy%20Chapman/Tracy%20Chapman/02%20Fast%20Car.m4a - File Folder Count4 - Library Folder Count1 - - 2142 - - Track ID2142 - NameAcross The Lines - ArtistTracy Chapman - AlbumTracy Chapman - GenreFolk - KindAAC audio file - Size4906844 - Total Time204566 - Disc Number1 - Disc Count1 - Track Number3 - Track Count11 - Year1985 - Date Modified2006-08-01T08:20:38Z - Date Added2009-10-03T14:51:38Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3337857551 - Play Date UTC2009-10-08T09:09:11Z - Album Rating60 - Album Rating Computed - Normalization1028 - Artwork Count1 - Persistent ID2D267F340B2B7D6E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tracy%20Chapman/Tracy%20Chapman/03%20Across%20The%20Lines.m4a - File Folder Count4 - Library Folder Count1 - - 2144 - - Track ID2144 - NameBehind The Wall - ArtistTracy Chapman - AlbumTracy Chapman - GenreFolk - KindAAC audio file - Size2607296 - Total Time109573 - Disc Number1 - Disc Count1 - Track Number4 - Track Count11 - Year1983 - Date Modified2006-08-01T08:20:38Z - Date Added2009-10-03T14:51:38Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3448967591 - Play Date UTC2013-04-16T09:03:11Z - Skip Count1 - Skip Date2009-10-08T09:09:16Z - Album Rating60 - Album Rating Computed - Normalization385 - Artwork Count1 - Persistent IDDEF2C9F15B7EE3FD - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tracy%20Chapman/Tracy%20Chapman/04%20Behind%20The%20Wall.m4a - File Folder Count4 - Library Folder Count1 - - 2146 - - Track ID2146 - NameBaby Can I Hold You - ArtistTracy Chapman - AlbumTracy Chapman - GenreFolk - KindAAC audio file - Size4712607 - Total Time194094 - Disc Number1 - Disc Count1 - Track Number5 - Track Count11 - Year1982 - Date Modified2006-08-01T08:20:40Z - Date Added2009-10-03T14:51:38Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3448967785 - Play Date UTC2013-04-16T09:06:25Z - Skip Count1 - Skip Date2009-10-08T09:09:21Z - Album Rating60 - Album Rating Computed - Normalization1207 - Artwork Count1 - Persistent IDF0868765A9941D97 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tracy%20Chapman/Tracy%20Chapman/05%20Baby%20Can%20I%20Hold%20You.m4a - File Folder Count4 - Library Folder Count1 - - 2148 - - Track ID2148 - NameMountains O' Things - ArtistTracy Chapman - AlbumTracy Chapman - GenreFolk - KindAAC audio file - Size6743623 - Total Time279520 - Disc Number1 - Disc Count1 - Track Number6 - Track Count11 - Year1987 - Date Modified2006-08-01T08:20:40Z - Date Added2009-10-03T14:51:38Z - Bit Rate192 - Sample Rate44100 - Play Count7 - Play Date3484385713 - Play Date UTC2014-05-31T07:25:13Z - Skip Count3 - Skip Date2014-05-31T07:20:33Z - Album Rating60 - Album Rating Computed - Normalization1081 - Artwork Count1 - Persistent ID3CB75FD471755369 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tracy%20Chapman/Tracy%20Chapman/06%20Mountains%20O'%20Things.m4a - File Folder Count4 - Library Folder Count1 - - 2150 - - Track ID2150 - NameShe's Got Her Ticket - ArtistTracy Chapman - AlbumTracy Chapman - GenreFolk - KindAAC audio file - Size5717814 - Total Time236888 - Disc Number1 - Disc Count1 - Track Number7 - Track Count11 - Year1986 - Date Modified2006-08-01T08:20:40Z - Date Added2009-10-03T14:51:38Z - Bit Rate192 - Sample Rate44100 - Play Count3 - Play Date3484385950 - Play Date UTC2014-05-31T07:29:10Z - Skip Count1 - Skip Date2009-10-08T09:14:09Z - Album Rating60 - Album Rating Computed - Normalization1200 - Artwork Count1 - Persistent ID0BAA5ADF5134BB29 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tracy%20Chapman/Tracy%20Chapman/07%20She's%20Got%20Her%20Ticket.m4a - File Folder Count4 - Library Folder Count1 - - 2152 - - Track ID2152 - NameWhy? - ArtistTracy Chapman - AlbumTracy Chapman - GenreFolk - KindAAC audio file - Size3038974 - Total Time126477 - Disc Number1 - Disc Count1 - Track Number8 - Track Count11 - Year1986 - Date Modified2006-08-01T08:20:40Z - Date Added2009-10-03T14:51:38Z - Bit Rate192 - Sample Rate44100 - Play Count4 - Play Date3484386076 - Play Date UTC2014-05-31T07:31:16Z - Album Rating60 - Album Rating Computed - Normalization993 - Artwork Count1 - Persistent ID8458D4FC98AB0347 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tracy%20Chapman/Tracy%20Chapman/08%20Why_.m4a - File Folder Count4 - Library Folder Count1 - - 2154 - - Track ID2154 - NameFor My Lover - ArtistTracy Chapman - AlbumTracy Chapman - GenreFolk - KindAAC audio file - Size4666889 - Total Time192352 - Disc Number1 - Disc Count1 - Track Number9 - Track Count11 - Year1983 - Date Modified2006-08-01T08:20:40Z - Date Added2009-10-03T14:51:39Z - Bit Rate192 - Sample Rate44100 - Play Count3 - Play Date3484310451 - Play Date UTC2014-05-30T10:30:51Z - Album Rating60 - Album Rating Computed - Normalization1205 - Artwork Count1 - Persistent ID92D29F639D40C5A2 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tracy%20Chapman/Tracy%20Chapman/09%20For%20My%20Lover.m4a - File Folder Count4 - Library Folder Count1 - - 2156 - - Track ID2156 - NameIf Not Now... - ArtistTracy Chapman - AlbumTracy Chapman - GenreFolk - KindAAC audio file - Size4394962 - Total Time181369 - Disc Number1 - Disc Count1 - Track Number10 - Track Count11 - Year1986 - Date Modified2006-08-01T08:20:40Z - Date Added2009-10-03T14:51:39Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3484310632 - Play Date UTC2014-05-30T10:33:52Z - Album Rating60 - Album Rating Computed - Normalization1059 - Artwork Count1 - Persistent ID850393843101C34C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tracy%20Chapman/Tracy%20Chapman/10%20If%20Not%20Now....m4a - File Folder Count4 - Library Folder Count1 - - 2158 - - Track ID2158 - NameFor You - ArtistTracy Chapman - AlbumTracy Chapman - GenreFolk - KindAAC audio file - Size4626466 - Total Time189403 - Disc Number1 - Disc Count1 - Track Number11 - Track Count11 - Year1986 - Date Modified2006-08-01T08:20:42Z - Date Added2009-10-03T14:51:39Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3377515449 - Play Date UTC2011-01-10T09:14:09Z - Album Rating60 - Album Rating Computed - Normalization328 - Artwork Count1 - Persistent IDAA1731CC6DF16623 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tracy%20Chapman/Tracy%20Chapman/11%20For%20You.m4a - File Folder Count4 - Library Folder Count1 - - 2160 - - Track ID2160 - NameAlmost Rosey - ArtistTori Amos - Album ArtistTori Amos - ComposerTori Amos - AlbumAmerican Doll Posse - GenrePop - KindAAC audio file - Size7903179 - Total Time323866 - Track Number18 - Track Count23 - Year2007 - Date Modified2009-06-26T12:06:10Z - Date Added2009-10-03T14:51:39Z - Bit Rate192 - Sample Rate44100 - Normalization2365 - Artwork Count1 - Persistent IDACC692ED2961650F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tori%20Amos/American%20Doll%20Posse/18%20Almost%20Rosey.m4a - File Folder Count4 - Library Folder Count1 - - 2162 - - Track ID2162 - NameBeauty of Speed - ArtistTori Amos - Album ArtistTori Amos - ComposerTori Amos - AlbumAmerican Doll Posse - GenrePop - KindAAC audio file - Size6103031 - Total Time248288 - Track Number17 - Track Count23 - Year2007 - Date Modified2009-06-26T12:07:12Z - Date Added2009-10-03T14:51:39Z - Bit Rate192 - Sample Rate44100 - Normalization1473 - Artwork Count1 - Persistent ID895D3C1DCB9482B1 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tori%20Amos/American%20Doll%20Posse/17%20Beauty%20of%20Speed.m4a - File Folder Count4 - Library Folder Count1 - - 2164 - - Track ID2164 - NameBig Wheel - ArtistTori Amos - Album ArtistTori Amos - ComposerTori Amos - AlbumAmerican Doll Posse - GenrePop - KindAAC audio file - Size4885930 - Total Time198106 - Track Number2 - Track Count23 - Year2007 - Date Modified2009-06-26T12:08:02Z - Date Added2009-10-03T14:51:39Z - Bit Rate192 - Sample Rate44100 - Normalization1614 - Artwork Count1 - Persistent IDE9E8AA3FEBBF3F69 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tori%20Amos/American%20Doll%20Posse/02%20Big%20Wheel.m4a - File Folder Count4 - Library Folder Count1 - - 2166 - - Track ID2166 - NameBody and Soul - ArtistTori Amos - Album ArtistTori Amos - ComposerTori Amos - AlbumAmerican Doll Posse - GenrePop - KindAAC audio file - Size5807709 - Total Time236640 - Track Number12 - Track Count23 - Year2007 - Date Modified2009-06-26T12:09:02Z - Date Added2009-10-03T14:51:40Z - Bit Rate192 - Sample Rate44100 - Normalization3292 - Artwork Count1 - Persistent ID0BBE208C993C491F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tori%20Amos/American%20Doll%20Posse/12%20Body%20and%20Soul.m4a - File Folder Count4 - Library Folder Count1 - - 2168 - - Track ID2168 - NameBouncing off Clouds - ArtistTori Amos - Album ArtistTori Amos - ComposerTori Amos - AlbumAmerican Doll Posse - GenrePop - KindAAC audio file - Size6094141 - Total Time248182 - Track Number3 - Track Count23 - Year2007 - Date Modified2009-06-26T12:10:04Z - Date Added2009-10-03T14:51:40Z - Bit Rate192 - Sample Rate44100 - Normalization2178 - Artwork Count1 - Persistent IDB80348A80A0F6A59 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tori%20Amos/American%20Doll%20Posse/03%20Bouncing%20off%20Clouds.m4a - File Folder Count4 - Library Folder Count1 - - 2170 - - Track ID2170 - NameCode Red - ArtistTori Amos - Album ArtistTori Amos - ComposerTori Amos - AlbumAmerican Doll Posse - GenrePop - KindAAC audio file - Size8019729 - Total Time327333 - Track Number15 - Track Count23 - Year2007 - Date Modified2009-06-26T12:11:28Z - Date Added2009-10-03T14:51:40Z - Bit Rate192 - Sample Rate44100 - Normalization2509 - Artwork Count1 - Persistent IDC6B24BD1789D5F7A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tori%20Amos/American%20Doll%20Posse/15%20Code%20Red.m4a - File Folder Count4 - Library Folder Count1 - - 2172 - - Track ID2172 - NameDark Side of the Sun - ArtistTori Amos - Album ArtistTori Amos - ComposerTori Amos - AlbumAmerican Doll Posse - GenrePop - KindAAC audio file - Size6314495 - Total Time259360 - Track Number20 - Track Count23 - Year2007 - Date Modified2009-06-26T12:12:35Z - Date Added2009-10-03T14:51:40Z - Bit Rate192 - Sample Rate44100 - Normalization2165 - Artwork Count1 - Persistent ID2152E69468A08E88 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tori%20Amos/American%20Doll%20Posse/20%20Dark%20Side%20of%20the%20Sun.m4a - File Folder Count4 - Library Folder Count1 - - 2174 - - Track ID2174 - NameDevils and Gods - ArtistTori Amos - Album ArtistTori Amos - ComposerTori Amos - AlbumAmerican Doll Posse - GenrePop - KindAAC audio file - Size1346842 - Total Time53333 - Track Number11 - Track Count23 - Year2007 - Date Modified2009-06-26T12:12:51Z - Date Added2009-10-03T14:51:40Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3345820194 - Play Date UTC2010-01-08T12:59:54Z - Normalization1061 - Artwork Count1 - Persistent IDF19738B6389D6699 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tori%20Amos/American%20Doll%20Posse/11%20Devils%20and%20Gods.m4a - File Folder Count4 - Library Folder Count1 - - 2176 - - Track ID2176 - NameDigital Ghost - ArtistTori Amos - Album ArtistTori Amos - ComposerTori Amos - AlbumAmerican Doll Posse - GenrePop - KindAAC audio file - Size5657934 - Total Time230600 - Track Number5 - Track Count23 - Year2007 - Date Modified2009-06-26T12:13:50Z - Date Added2009-10-03T14:51:40Z - Bit Rate192 - Sample Rate44100 - Normalization2180 - Artwork Count1 - Persistent IDF083D041B0CFCB9C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tori%20Amos/American%20Doll%20Posse/05%20Digital%20Ghost.m4a - File Folder Count4 - Library Folder Count1 - - 2178 - - Track ID2178 - NameDragon - ArtistTori Amos - Album ArtistTori Amos - ComposerTori Amos - AlbumAmerican Doll Posse - GenrePop - KindAAC audio file - Size7364395 - Total Time303226 - Track Number23 - Track Count23 - Year2007 - Date Modified2009-06-26T12:15:05Z - Date Added2009-10-03T14:51:41Z - Bit Rate192 - Sample Rate44100 - Normalization1228 - Artwork Count1 - Persistent IDB6ED80F0A230913D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tori%20Amos/American%20Doll%20Posse/23%20Dragon.m4a - File Folder Count4 - Library Folder Count1 - - 2180 - - Track ID2180 - NameFat Slut - ArtistTori Amos - Album ArtistTori Amos - ComposerTori Amos - AlbumAmerican Doll Posse - GenrePop - KindAAC audio file - Size1063222 - Total Time41640 - Track Number8 - Track Count23 - Year2007 - Date Modified2009-06-26T12:16:17Z - Date Added2009-10-03T14:51:41Z - Bit Rate192 - Sample Rate44100 - Normalization1508 - Artwork Count1 - Persistent ID88D480642BD87F8C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tori%20Amos/American%20Doll%20Posse/08%20Fat%20Slut.m4a - File Folder Count4 - Library Folder Count1 - - 2182 - - Track ID2182 - NameFather's Son - ArtistTori Amos - Album ArtistTori Amos - ComposerTori Amos - AlbumAmerican Doll Posse - GenrePop - KindAAC audio file - Size5876092 - Total Time239720 - Track Number13 - Track Count23 - Year2007 - Date Modified2009-06-26T12:16:05Z - Date Added2009-10-03T14:51:41Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Persistent ID43D2C046D4EB43B8 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tori%20Amos/American%20Doll%20Posse/13%20Father's%20Son.m4a - File Folder Count4 - Library Folder Count1 - - 2184 - - Track ID2184 - NameGirl Disappearing - ArtistTori Amos - Album ArtistTori Amos - ComposerTori Amos - AlbumAmerican Doll Posse - GenrePop - KindAAC audio file - Size5858927 - Total Time240693 - Track Number9 - Track Count23 - Year2007 - Date Modified2009-06-26T12:17:20Z - Date Added2009-10-03T14:51:41Z - Bit Rate192 - Sample Rate44100 - Play Count3 - Play Date3390979031 - Play Date UTC2011-06-15T05:07:11Z - Normalization1259 - Artwork Count1 - Persistent ID5492429A40B3B820 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tori%20Amos/American%20Doll%20Posse/09%20Girl%20Disappearing.m4a - File Folder Count4 - Library Folder Count1 - - 2186 - - Track ID2186 - NameMr. Bad Man - ArtistTori Amos - Album ArtistTori Amos - ComposerTori Amos - AlbumAmerican Doll Posse - GenrePop - KindAAC audio file - Size4911705 - Total Time198506 - Track Number7 - Track Count23 - Year2007 - Date Modified2009-06-26T12:18:11Z - Date Added2009-10-03T14:51:41Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Persistent ID2ADC77893D4885EA - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tori%20Amos/American%20Doll%20Posse/07%20Mr.%20Bad%20Man.m4a - File Folder Count4 - Library Folder Count1 - - 2188 - - Track ID2188 - NamePosse Bonus - ArtistTori Amos - Album ArtistTori Amos - ComposerTori Amos - AlbumAmerican Doll Posse - GenrePop - KindAAC audio file - Size2626103 - Total Time105080 - Track Number21 - Track Count23 - Year2007 - Date Modified2009-06-26T12:18:43Z - Date Added2009-10-03T14:51:41Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Persistent ID2567853DA64A8023 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tori%20Amos/American%20Doll%20Posse/21%20Posse%20Bonus.m4a - File Folder Count4 - Library Folder Count1 - - 2190 - - Track ID2190 - NameProgrammable Soda - ArtistTori Amos - Album ArtistTori Amos - ComposerTori Amos - AlbumAmerican Doll Posse - GenrePop - KindAAC audio file - Size2146939 - Total Time85853 - Track Number14 - Track Count23 - Year2007 - Date Modified2009-06-26T12:19:07Z - Date Added2009-10-03T14:51:41Z - Bit Rate192 - Sample Rate44100 - Normalization1094 - Artwork Count1 - Persistent IDD6CB56D0C815EFF4 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tori%20Amos/American%20Doll%20Posse/14%20Programmable%20Soda.m4a - File Folder Count4 - Library Folder Count1 - - 2192 - - Track ID2192 - NameRoosterspur Bridge - ArtistTori Amos - Album ArtistTori Amos - ComposerTori Amos - AlbumAmerican Doll Posse - GenrePop - KindAAC audio file - Size5857756 - Total Time238880 - Track Number16 - Track Count23 - Year2007 - Date Modified2009-06-26T12:20:28Z - Date Added2009-10-03T14:51:42Z - Bit Rate192 - Sample Rate44100 - Normalization1396 - Artwork Count1 - Persistent IDC2A16E83F0336849 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tori%20Amos/American%20Doll%20Posse/16%20Roosterspur%20Bridge.m4a - File Folder Count4 - Library Folder Count1 - - 2194 - - Track ID2194 - NameSecret Spell - ArtistTori Amos - Album ArtistTori Amos - ComposerTori Amos - AlbumAmerican Doll Posse - GenrePop - KindAAC audio file - Size5961313 - Total Time244400 - Track Number10 - Track Count23 - Year2007 - Date Modified2009-06-26T12:21:40Z - Date Added2009-10-03T14:51:42Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3345820141 - Play Date UTC2010-01-08T12:59:01Z - Normalization2868 - Artwork Count1 - Persistent IDA852F15EDA00C9A6 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tori%20Amos/American%20Doll%20Posse/10%20Secret%20Spell.m4a - File Folder Count4 - Library Folder Count1 - - 2196 - - Track ID2196 - NameSmokey Joe - ArtistTori Amos - Album ArtistTori Amos - ComposerTori Amos - AlbumAmerican Doll Posse - GenrePop - KindAAC audio file - Size6317797 - Total Time259386 - Track Number22 - Track Count23 - Year2007 - Date Modified2009-06-26T12:22:46Z - Date Added2009-10-03T14:51:42Z - Bit Rate192 - Sample Rate44100 - Normalization1495 - Artwork Count1 - Persistent IDE9510A94CA6D2369 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tori%20Amos/American%20Doll%20Posse/22%20Smokey%20Joe.m4a - File Folder Count4 - Library Folder Count1 - - 2198 - - Track ID2198 - NameTeenage Hustling - ArtistTori Amos - Album ArtistTori Amos - ComposerTori Amos - AlbumAmerican Doll Posse - GenrePop - KindAAC audio file - Size5916010 - Total Time240480 - Track Number4 - Track Count23 - Year2007 - Date Modified2009-06-26T12:23:46Z - Date Added2009-10-03T14:51:42Z - Bit Rate192 - Sample Rate44100 - Normalization5610 - Artwork Count1 - Persistent IDB2CAE83FC9499550 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tori%20Amos/American%20Doll%20Posse/04%20Teenage%20Hustling.m4a - File Folder Count4 - Library Folder Count1 - - 2200 - - Track ID2200 - NameVelvet Revolution - ArtistTori Amos - Album ArtistTori Amos - ComposerTori Amos - AlbumAmerican Doll Posse - GenrePop - KindAAC audio file - Size1985230 - Total Time79333 - Track Number19 - Track Count23 - Year2007 - Date Modified2009-06-26T12:24:08Z - Date Added2009-10-03T14:51:42Z - Bit Rate192 - Sample Rate44100 - Normalization1244 - Artwork Count1 - Persistent ID53C3DE4F14F8382A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tori%20Amos/American%20Doll%20Posse/19%20Velvet%20Revolution.m4a - File Folder Count4 - Library Folder Count1 - - 2202 - - Track ID2202 - NameYo George - ArtistTori Amos - Album ArtistTori Amos - ComposerTori Amos - AlbumAmerican Doll Posse - GenrePop - KindAAC audio file - Size2129064 - Total Time85280 - Track Number1 - Track Count23 - Year2007 - Date Modified2009-06-26T12:24:30Z - Date Added2009-10-03T14:51:42Z - Bit Rate192 - Sample Rate44100 - Normalization243 - Artwork Count1 - Persistent ID160A7FEA3996657F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tori%20Amos/American%20Doll%20Posse/01%20Yo%20George.m4a - File Folder Count4 - Library Folder Count1 - - 2204 - - Track ID2204 - NameYou Can Bring Your Dog - ArtistTori Amos - Album ArtistTori Amos - ComposerTori Amos - AlbumAmerican Doll Posse - GenrePop - KindAAC audio file - Size5977541 - Total Time244320 - Track Number6 - Track Count23 - Year2007 - Date Modified2009-06-26T12:25:31Z - Date Added2009-10-03T14:51:42Z - Bit Rate192 - Sample Rate44100 - Normalization1860 - Artwork Count1 - Persistent ID57825ADD4E520B2E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tori%20Amos/American%20Doll%20Posse/06%20You%20Can%20Bring%20Your%20Dog.m4a - File Folder Count4 - Library Folder Count1 - - 2206 - - Track ID2206 - NameDinah - ArtistThelonious Monk - ComposerSam M. Lewis; Joe Young; Harry Akst - AlbumSolo Monk - GenreJazz - KindAAC audio file - Size3635947 - Total Time149697 - Disc Number1 - Disc Count1 - Track Number1 - Track Count13 - Year1995 - Date Modified2006-09-05T15:23:48Z - Date Added2009-10-03T14:51:43Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3390218307 - Play Date UTC2011-06-06T09:48:27Z - Normalization476 - Artwork Count1 - Persistent ID067BDD3DF56F7945 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Thelonious%20Monk/Solo%20Monk/01%20Dinah.m4a - File Folder Count4 - Library Folder Count1 - - 2208 - - Track ID2208 - NameI Surrender, Dear - ArtistThelonious Monk - ComposerGordon Clifford; Harry Barris - AlbumSolo Monk - GenreJazz - KindAAC audio file - Size5489227 - Total Time224651 - Disc Number1 - Disc Count1 - Track Number2 - Track Count13 - Year1995 - Date Modified2006-09-05T15:23:48Z - Date Added2009-10-03T14:51:43Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3390218532 - Play Date UTC2011-06-06T09:52:12Z - Normalization673 - Artwork Count1 - Persistent IDE62B1D5B2CD5690B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Thelonious%20Monk/Solo%20Monk/02%20I%20Surrender,%20Dear.m4a - File Folder Count4 - Library Folder Count1 - - 2210 - - Track ID2210 - NameSweet And Lovely - ArtistThelonious Monk - ComposerGus Arnheim; Harry Tobias; Jules Lemare - AlbumSolo Monk - GenreJazz - KindAAC audio file - Size4419910 - Total Time181508 - Disc Number1 - Disc Count1 - Track Number3 - Track Count13 - Year1995 - Date Modified2006-09-05T15:23:48Z - Date Added2009-10-03T14:51:43Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3390218713 - Play Date UTC2011-06-06T09:55:13Z - Normalization538 - Artwork Count1 - Persistent ID89DA086BE5578AA4 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Thelonious%20Monk/Solo%20Monk/03%20Sweet%20And%20Lovely.m4a - File Folder Count4 - Library Folder Count1 - - 2212 - - Track ID2212 - NameNorth Of The Sunset - ArtistThelonious Monk - ComposerThelonious Monk - AlbumSolo Monk - GenreJazz - KindAAC audio file - Size2784768 - Total Time113822 - Disc Number1 - Disc Count1 - Track Number4 - Track Count13 - Year1995 - Date Modified2006-09-05T15:23:48Z - Date Added2009-10-03T14:51:43Z - Bit Rate192 - Sample Rate44100 - Play Count3 - Play Date3390892493 - Play Date UTC2011-06-14T05:04:53Z - Normalization450 - Artwork Count1 - Persistent IDD251FF7FA8E70898 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Thelonious%20Monk/Solo%20Monk/04%20North%20Of%20The%20Sunset.m4a - File Folder Count4 - Library Folder Count1 - - 2214 - - Track ID2214 - NameRuby, My Dear - ArtistThelonious Monk - ComposerThelonious Monk - AlbumSolo Monk - GenreJazz - KindAAC audio file - Size8239602 - Total Time340403 - Disc Number1 - Disc Count1 - Track Number5 - Track Count13 - Year1995 - Date Modified2006-09-05T15:23:48Z - Date Added2009-10-03T14:51:43Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3338010279 - Play Date UTC2009-10-10T03:34:39Z - Normalization657 - Artwork Count1 - Persistent ID1443F54815466A18 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Thelonious%20Monk/Solo%20Monk/05%20Ruby,%20My%20Dear.m4a - File Folder Count4 - Library Folder Count1 - - 2216 - - Track ID2216 - NameI'm Confessin' (That I Love You) - ArtistThelonious Monk - ComposerAl J. Nelburg; Doc Doughety; Ellis Reynolds - AlbumSolo Monk - GenreJazz - KindAAC audio file - Size3876586 - Total Time159542 - Disc Number1 - Disc Count1 - Track Number6 - Track Count13 - Year1995 - Date Modified2006-09-05T15:23:46Z - Date Added2009-10-03T14:51:43Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3338010438 - Play Date UTC2009-10-10T03:37:18Z - Normalization1095 - Artwork Count1 - Persistent IDE668F28DCB70EE71 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Thelonious%20Monk/Solo%20Monk/06%20I'm%20Confessin'%20(That%20I%20Love%20You).m4a - File Folder Count4 - Library Folder Count1 - - 2218 - - Track ID2218 - NameI Hadn't Anyone Till You - ArtistThelonious Monk - ComposerRay Noble - AlbumSolo Monk - GenreJazz - KindAAC audio file - Size4841523 - Total Time199783 - Disc Number1 - Disc Count1 - Track Number7 - Track Count13 - Year1995 - Date Modified2006-09-05T15:23:46Z - Date Added2009-10-03T14:51:43Z - Bit Rate192 - Sample Rate44100 - Normalization998 - Artwork Count1 - Persistent ID1B988A994D34B075 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Thelonious%20Monk/Solo%20Monk/07%20I%20Hadn't%20Anyone%20Till%20You.m4a - File Folder Count4 - Library Folder Count1 - - 2220 - - Track ID2220 - NameEverything Happens To Me - ArtistThelonious Monk - ComposerMatt Dennis; Tom Adair - AlbumSolo Monk - GenreJazz - KindAAC audio file - Size5097797 - Total Time210348 - Disc Number1 - Disc Count1 - Track Number8 - Track Count13 - Year1995 - Date Modified2006-09-05T15:23:46Z - Date Added2009-10-03T14:51:43Z - Bit Rate192 - Sample Rate44100 - Normalization507 - Artwork Count1 - Persistent IDC81FAAD4E40C3D8B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Thelonious%20Monk/Solo%20Monk/08%20Everything%20Happens%20To%20Me.m4a - File Folder Count4 - Library Folder Count1 - - 2222 - - Track ID2222 - NameMonk's Point - ArtistThelonious Monk - ComposerThelonious Monk - AlbumSolo Monk - GenreJazz - KindAAC audio file - Size3359867 - Total Time138226 - Disc Number1 - Disc Count1 - Track Number9 - Track Count13 - Year1995 - Date Modified2006-09-05T15:23:46Z - Date Added2009-10-03T14:51:44Z - Bit Rate192 - Sample Rate44100 - Normalization581 - Artwork Count1 - Persistent IDB73823938C66D7A3 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Thelonious%20Monk/Solo%20Monk/09%20Monk's%20Point.m4a - File Folder Count4 - Library Folder Count1 - - 2224 - - Track ID2224 - NameI Should Care - ArtistThelonious Monk - ComposerSammy Cann; Axel Stordahl; Paul Weston - AlbumSolo Monk - GenreJazz - KindAAC audio file - Size2919283 - Total Time119929 - Disc Number1 - Disc Count1 - Track Number10 - Track Count13 - Year1995 - Date Modified2006-09-05T15:23:46Z - Date Added2009-10-03T14:51:44Z - Bit Rate192 - Sample Rate44100 - Normalization430 - Artwork Count1 - Persistent ID0D7F6B3B83A5DA09 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Thelonious%20Monk/Solo%20Monk/10%20I%20Should%20Care.m4a - File Folder Count4 - Library Folder Count1 - - 2226 - - Track ID2226 - NameAsk Me Now - ArtistThelonious Monk - ComposerThelonious Monk - AlbumSolo Monk - GenreJazz - KindAAC audio file - Size6764007 - Total Time279961 - Disc Number1 - Disc Count1 - Track Number11 - Track Count13 - Year1995 - Date Modified2006-09-05T15:23:46Z - Date Added2009-10-03T14:51:44Z - Bit Rate192 - Sample Rate44100 - Normalization579 - Artwork Count1 - Persistent IDE0A871D0F5D6307A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Thelonious%20Monk/Solo%20Monk/11%20Ask%20Me%20Now.m4a - File Folder Count4 - Library Folder Count1 - - 2228 - - Track ID2228 - NameThese Foolish Things (Remind Me Of You) - ArtistThelonious Monk - ComposerHarry Link/Holt Marvell/Jack Strachey - AlbumSolo Monk - GenreJazz - KindAAC audio file - Size5204413 - Total Time214783 - Disc Number1 - Disc Count1 - Track Number12 - Track Count13 - Year1995 - Date Modified2006-09-05T15:23:46Z - Date Added2009-10-03T14:51:44Z - Bit Rate192 - Sample Rate44100 - Normalization630 - Artwork Count1 - Persistent IDFE8310C68725A823 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Thelonious%20Monk/Solo%20Monk/12%20These%20Foolish%20Things%20(Remind%20Me%20Of%20You).m4a - File Folder Count4 - Library Folder Count1 - - 2230 - - Track ID2230 - NameIntrospection (previously unreleased) - ArtistThelonious Monk - ComposerThelonious Monk - AlbumSolo Monk - GenreJazz - KindAAC audio file - Size3437348 - Total Time139805 - Disc Number1 - Disc Count1 - Track Number13 - Track Count13 - Year1995 - Date Modified2006-09-05T15:23:44Z - Date Added2009-10-03T14:51:44Z - Bit Rate192 - Sample Rate44100 - Normalization526 - Artwork Count1 - Persistent IDC34BBBCAB9A3B08B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Thelonious%20Monk/Solo%20Monk/13%20Introspection%20%20(previously%20unreleased).m4a - File Folder Count4 - Library Folder Count1 - - 2232 - - Track ID2232 - NameGet Over It - ArtistThe Eagles - ComposerDon Henley & Glenn Frey - AlbumHell Freezes Over - GenreRock - KindAAC audio file - Size5121083 - Total Time211718 - Disc Number1 - Disc Count1 - Track Number1 - Track Count15 - Year1994 - Date Modified2006-08-08T12:10:52Z - Date Added2009-10-03T14:52:23Z - Bit Rate192 - Sample Rate44100 - Normalization5440 - Artwork Count1 - Sort ArtistEagles - Persistent ID90EE372EF8524755 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Eagles/Hell%20Freezes%20Over/01%20Get%20Over%20It.m4a - File Folder Count4 - Library Folder Count1 - - 2234 - - Track ID2234 - NameLove Will Keep Us Alive - ArtistThe Eagles - ComposerPete Vale, Jim Capaldi & Paul Carrack - AlbumHell Freezes Over - GenreRock - KindAAC audio file - Size5906763 - Total Time243436 - Disc Number1 - Disc Count1 - Track Number2 - Track Count15 - Year1994 - Date Modified2006-08-08T12:10:50Z - Date Added2009-10-03T14:52:24Z - Bit Rate192 - Sample Rate44100 - Normalization1255 - Artwork Count1 - Sort ArtistEagles - Persistent ID1C6FD8297637EAC5 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Eagles/Hell%20Freezes%20Over/02%20Love%20Will%20Keep%20Us%20Alive.m4a - File Folder Count4 - Library Folder Count1 - - 2236 - - Track ID2236 - NameThe Girl From Yesterday - ArtistThe Eagles - ComposerGlenn Frey & Jack Tempchin - AlbumHell Freezes Over - GenreRock - KindAAC audio file - Size4950421 - Total Time203939 - Disc Number1 - Disc Count1 - Track Number3 - Track Count15 - Year1994 - Date Modified2006-08-08T12:10:50Z - Date Added2009-10-03T14:52:24Z - Bit Rate192 - Sample Rate44100 - Normalization2829 - Artwork Count1 - Sort ArtistEagles - Sort NameGirl From Yesterday - Persistent ID6BCE8C024AF57D06 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Eagles/Hell%20Freezes%20Over/03%20The%20Girl%20From%20Yesterday.m4a - File Folder Count4 - Library Folder Count1 - - 2238 - - Track ID2238 - NameLearn To Be Still - ArtistThe Eagles - ComposerDon Henley & Stan Lynch - AlbumHell Freezes Over - GenreRock - KindAAC audio file - Size6519511 - Total Time268885 - Disc Number1 - Disc Count1 - Track Number4 - Track Count15 - Year1994 - Date Modified2006-08-08T12:10:50Z - Date Added2009-10-03T14:52:24Z - Bit Rate192 - Sample Rate44100 - Normalization1905 - Artwork Count1 - Sort ArtistEagles - Persistent ID4BA57E13957EAD26 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Eagles/Hell%20Freezes%20Over/04%20Learn%20To%20Be%20Still.m4a - File Folder Count4 - Library Folder Count1 - - 2240 - - Track ID2240 - NameTequilla Sunrise (Live) - ArtistThe Eagles - ComposerDon Henley & Glenn Frey - AlbumHell Freezes Over - GenreRock - KindAAC audio file - Size5048129 - Total Time207979 - Disc Number1 - Disc Count1 - Track Number5 - Track Count15 - Year1994 - Date Modified2006-08-08T12:10:50Z - Date Added2009-10-03T14:52:24Z - Bit Rate192 - Sample Rate44100 - Normalization1868 - Artwork Count1 - Sort ArtistEagles - Persistent ID914C4DF386406960 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Eagles/Hell%20Freezes%20Over/05%20Tequilla%20Sunrise%20(Live).m4a - File Folder Count4 - Library Folder Count1 - - 2242 - - Track ID2242 - NameHotel California (Live) - ArtistThe Eagles - ComposerDon Henley, Glenn Frey & Don Felder - AlbumHell Freezes Over - GenreRock - KindAAC audio file - Size10468469 - Total Time432075 - Disc Number1 - Disc Count1 - Track Number6 - Track Count15 - Year1994 - Date Modified2006-08-08T12:10:50Z - Date Added2009-10-03T14:52:25Z - Bit Rate192 - Sample Rate44100 - Play Count3 - Play Date3423062677 - Play Date UTC2012-06-20T13:14:37Z - Normalization1859 - Artwork Count1 - Sort ArtistEagles - Persistent IDC9D0793BEF98191F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Eagles/Hell%20Freezes%20Over/06%20Hotel%20California%20(Live).m4a - File Folder Count4 - Library Folder Count1 - - 2244 - - Track ID2244 - NameWasted Time (Live) - ArtistThe Eagles - ComposerDon Henley & Glenn Frey - AlbumHell Freezes Over - GenreRock - KindAAC audio file - Size7747236 - Total Time319621 - Disc Number1 - Disc Count1 - Track Number7 - Track Count15 - Year1994 - Date Modified2006-08-08T12:10:50Z - Date Added2009-10-03T14:52:25Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3389626162 - Play Date UTC2011-05-30T13:19:22Z - Normalization1853 - Artwork Count1 - Sort ArtistEagles - Persistent ID79CE7C959D0FEACF - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Eagles/Hell%20Freezes%20Over/07%20Wasted%20Time%20(Live).m4a - File Folder Count4 - Library Folder Count1 - - 2246 - - Track ID2246 - NamePretty Maids All In A Row (Live) - ArtistThe Eagles - ComposerJoe Vitale & Joe Walsh - AlbumHell Freezes Over - GenreRock - KindAAC audio file - Size6469697 - Total Time266842 - Disc Number1 - Disc Count1 - Track Number8 - Track Count15 - Year1994 - Date Modified2006-08-08T12:10:50Z - Date Added2009-10-03T14:52:25Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3389626429 - Play Date UTC2011-05-30T13:23:49Z - Normalization1899 - Artwork Count1 - Sort ArtistEagles - Persistent IDF1BA9CB2997AA3E7 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Eagles/Hell%20Freezes%20Over/08%20Pretty%20Maids%20All%20In%20A%20Row%20(Live).m4a - File Folder Count4 - Library Folder Count1 - - 2248 - - Track ID2248 - NameI Can't Tell You Why (Live) - ArtistThe Eagles - ComposerDon Henley, Glenn Frey & Timothy B Schmit - AlbumHell Freezes Over - GenreRock - KindAAC audio file - Size7548327 - Total Time311401 - Disc Number1 - Disc Count1 - Track Number9 - Track Count15 - Year1994 - Date Modified2006-08-08T12:10:50Z - Date Added2009-10-03T14:52:25Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3389626740 - Play Date UTC2011-05-30T13:29:00Z - Normalization1523 - Artwork Count1 - Sort ArtistEagles - Persistent IDE56DCAB9D34A30C2 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Eagles/Hell%20Freezes%20Over/09%20I%20Can't%20Tell%20You%20Why%20(Live).m4a - File Folder Count4 - Library Folder Count1 - - 2250 - - Track ID2250 - NameNew York Minute (Live) - ArtistThe Eagles - ComposerDon Henley, Danny Kortchmar & Jai Winding - AlbumHell Freezes Over - GenreRock - KindAAC audio file - Size9636772 - Total Time397709 - Disc Number1 - Disc Count1 - Track Number10 - Track Count15 - Year1994 - Date Modified2006-08-08T12:10:50Z - Date Added2009-10-03T14:52:26Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3389627138 - Play Date UTC2011-05-30T13:35:38Z - Normalization1919 - Artwork Count1 - Sort ArtistEagles - Persistent IDFE2D5F117FFAE59C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Eagles/Hell%20Freezes%20Over/10%20New%20York%20Minute%20(Live).m4a - File Folder Count4 - Library Folder Count1 - - 2252 - - Track ID2252 - NameThe Last Resort (Live) - ArtistThe Eagles - ComposerDon Henley & Glenn Frey - AlbumHell Freezes Over - GenreRock - KindAAC audio file - Size10768580 - Total Time444474 - Disc Number1 - Disc Count1 - Track Number11 - Track Count15 - Year1994 - Date Modified2006-08-08T12:10:50Z - Date Added2009-10-03T14:52:26Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3389627582 - Play Date UTC2011-05-30T13:43:02Z - Normalization2155 - Artwork Count1 - Sort ArtistEagles - Sort NameLast Resort (Live) - Persistent ID99A95AB18FE8F79F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Eagles/Hell%20Freezes%20Over/11%20The%20Last%20Resort%20(Live).m4a - File Folder Count4 - Library Folder Count1 - - 2254 - - Track ID2254 - NameTake It Easy (Live) - ArtistThe Eagles - ComposerJackson Browne & Glenn Frey - AlbumHell Freezes Over - GenreRock - KindAAC audio file - Size6700277 - Total Time276362 - Disc Number1 - Disc Count1 - Track Number12 - Track Count15 - Year1994 - Date Modified2006-08-08T12:10:48Z - Date Added2009-10-03T14:52:26Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3389627859 - Play Date UTC2011-05-30T13:47:39Z - Normalization4494 - Artwork Count1 - Sort ArtistEagles - Persistent ID46CDF46877C3FF34 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Eagles/Hell%20Freezes%20Over/12%20Take%20It%20Easy%20(Live).m4a - File Folder Count4 - Library Folder Count1 - - 2256 - - Track ID2256 - NameIn The City (Live) - ArtistThe Eagles - ComposerJoe Walsh & Barry De Vorzon - AlbumHell Freezes Over - GenreRock - KindAAC audio file - Size6013790 - Total Time247871 - Disc Number1 - Disc Count1 - Track Number13 - Track Count15 - Year1994 - Date Modified2006-08-08T12:10:48Z - Date Added2009-10-03T14:52:26Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3389628106 - Play Date UTC2011-05-30T13:51:46Z - Normalization4477 - Artwork Count1 - Sort ArtistEagles - Persistent ID78B1884771B51E01 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Eagles/Hell%20Freezes%20Over/13%20In%20The%20City%20(Live).m4a - File Folder Count4 - Library Folder Count1 - - 2258 - - Track ID2258 - NameLife In The Fast Lane (Live) - ArtistThe Eagles - ComposerDon Henley, Glenn Frey & Joe Walsh - AlbumHell Freezes Over - GenreRock - KindAAC audio file - Size8754807 - Total Time361254 - Disc Number1 - Disc Count1 - Track Number14 - Track Count15 - Year1994 - Date Modified2006-08-08T12:10:48Z - Date Added2009-10-03T14:52:27Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3389628468 - Play Date UTC2011-05-30T13:57:48Z - Normalization4452 - Artwork Count1 - Sort ArtistEagles - Persistent ID4C85A2C7CFC8BF15 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Eagles/Hell%20Freezes%20Over/14%20Life%20In%20The%20Fast%20Lane%20(Live).m4a - File Folder Count4 - Library Folder Count1 - - 2260 - - Track ID2260 - NameDesperado (Live) - ArtistThe Eagles - ComposerDon Henley & Glenn Frey - AlbumHell Freezes Over - GenreRock - KindAAC audio file - Size6206985 - Total Time257879 - Disc Number1 - Disc Count1 - Track Number15 - Track Count15 - Year1994 - Date Modified2006-08-08T12:10:48Z - Date Added2009-10-03T14:52:27Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3389628726 - Play Date UTC2011-05-30T14:02:06Z - Normalization2031 - Artwork Count1 - Sort ArtistEagles - Persistent ID6811D3B5684F66BB - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Eagles/Hell%20Freezes%20Over/15%20Desperado%20(Live).m4a - File Folder Count4 - Library Folder Count1 - - 2262 - - Track ID2262 - NameBlue Rondo A La Turk - ArtistThe Dave Brubeck Quartet - ComposerDave Brubeck - AlbumTime Out - GenreJazz - KindAAC audio file - Size9843689 - Total Time406138 - Disc Number1 - Disc Count1 - Track Number1 - Track Count7 - Year1959 - Date Modified2006-08-03T11:46:24Z - Date Added2009-10-03T14:52:27Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3471262543 - Play Date UTC2013-12-30T10:05:43Z - Normalization1204 - Artwork Count1 - Sort ArtistDave Brubeck Quartet - Persistent IDE1B5EC85D716A72C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Dave%20Brubeck%20Quartet/Time%20Out/01%20Blue%20Rondo%20A%20La%20Turk.m4a - File Folder Count4 - Library Folder Count1 - - 2264 - - Track ID2264 - NameStrange Meadow Lark - ArtistThe Dave Brubeck Quartet - ComposerDave Brubeck - AlbumTime Out - GenreJazz - KindAAC audio file - Size10765899 - Total Time444242 - Disc Number1 - Disc Count1 - Track Number2 - Track Count7 - Year1959 - Date Modified2006-08-03T11:46:24Z - Date Added2009-10-03T14:52:27Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3438966197 - Play Date UTC2012-12-21T14:53:17Z - Normalization1033 - Artwork Count1 - Sort ArtistDave Brubeck Quartet - Persistent ID328F3A1589AD1FD7 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Dave%20Brubeck%20Quartet/Time%20Out/02%20Strange%20Meadow%20Lark.m4a - File Folder Count4 - Library Folder Count1 - - 2266 - - Track ID2266 - NameTake Five - ArtistThe Dave Brubeck Quartet - ComposerPaul Desmond - AlbumTime Out - GenreJazz - KindAAC audio file - Size7923853 - Total Time326796 - Disc Number1 - Disc Count1 - Track Number3 - Track Count7 - Year1959 - Date Modified2006-08-03T11:46:24Z - Date Added2009-10-03T14:52:27Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3435144178 - Play Date UTC2012-11-07T09:12:58Z - Skip Count1 - Skip Date2011-01-17T11:15:33Z - Normalization1081 - Artwork Count1 - Sort ArtistDave Brubeck Quartet - Persistent ID09568520230C26CC - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Dave%20Brubeck%20Quartet/Time%20Out/03%20Take%20Five.m4a - File Folder Count4 - Library Folder Count1 - - 2268 - - Track ID2268 - NameThree To Get Ready - ArtistThe Dave Brubeck Quartet - ComposerDave Brubeck - AlbumTime Out - GenreJazz - KindAAC audio file - Size7901209 - Total Time325867 - Disc Number1 - Disc Count1 - Track Number4 - Track Count7 - Year1959 - Date Modified2006-08-03T11:46:24Z - Date Added2009-10-03T14:52:28Z - Bit Rate192 - Sample Rate44100 - Normalization1033 - Artwork Count1 - Sort ArtistDave Brubeck Quartet - Persistent ID855DC94A22F8CD92 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Dave%20Brubeck%20Quartet/Time%20Out/04%20Three%20To%20Get%20Ready.m4a - File Folder Count4 - Library Folder Count1 - - 2270 - - Track ID2270 - NameKathy's Waltz - ArtistThe Dave Brubeck Quartet - ComposerDave Brubeck - AlbumTime Out - GenreJazz - KindAAC audio file - Size7048364 - Total Time290619 - Disc Number1 - Disc Count1 - Track Number5 - Track Count7 - Year1959 - Date Modified2006-08-03T11:46:26Z - Date Added2009-10-03T14:52:28Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3441544403 - Play Date UTC2013-01-20T11:03:23Z - Normalization1032 - Artwork Count1 - Sort ArtistDave Brubeck Quartet - Persistent IDD843F56EF045F256 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Dave%20Brubeck%20Quartet/Time%20Out/05%20Kathy's%20Waltz.m4a - File Folder Count4 - Library Folder Count1 - - 2272 - - Track ID2272 - NameEverybody's Jumpin' - ArtistThe Dave Brubeck Quartet - ComposerDave Brubeck - AlbumTime Out - GenreJazz - KindAAC audio file - Size6425315 - Total Time264868 - Disc Number1 - Disc Count1 - Track Number6 - Track Count7 - Year1959 - Date Modified2006-08-03T11:46:26Z - Date Added2009-10-03T14:52:28Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3441544668 - Play Date UTC2013-01-20T11:07:48Z - Normalization1033 - Artwork Count1 - Sort ArtistDave Brubeck Quartet - Persistent IDE703651BCB06438D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Dave%20Brubeck%20Quartet/Time%20Out/06%20Everybody's%20Jumpin'.m4a - File Folder Count4 - Library Folder Count1 - - 2274 - - Track ID2274 - NamePick Up Sticks - ArtistThe Dave Brubeck Quartet - ComposerDave Brubeck - AlbumTime Out - GenreJazz - KindAAC audio file - Size6228367 - Total Time256695 - Disc Number1 - Disc Count1 - Track Number7 - Track Count7 - Year1959 - Date Modified2006-08-03T11:46:26Z - Date Added2009-10-03T14:52:28Z - Bit Rate192 - Sample Rate44100 - Normalization1033 - Artwork Count1 - Sort ArtistDave Brubeck Quartet - Persistent ID170B1574D7B9740B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Dave%20Brubeck%20Quartet/Time%20Out/07%20Pick%20Up%20Sticks.m4a - File Folder Count4 - Library Folder Count1 - - 2276 - - Track ID2276 - NameI Still Do - ArtistThe Cranberries - ComposerNoel Hogan, Dolores O'Riordan - AlbumEverybody Else Is Doing It, So Why Can't We? - GenreAlternative & Punk - KindAAC audio file - Size4798078 - Total Time196718 - Disc Number1 - Disc Count1 - Track Number1 - Track Count12 - Year1993 - Date Modified2006-08-03T12:43:40Z - Date Added2009-10-03T14:52:28Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3377093133 - Play Date UTC2011-01-05T11:55:33Z - Normalization1295 - Artwork Count1 - Sort ArtistCranberries - Persistent ID60FA6796442F0174 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Cranberries/Everybody%20Else%20Is%20Doing%20It,%20So%20Why%20Can't%20We_/01%20I%20Still%20Do.m4a - File Folder Count4 - Library Folder Count1 - - 2278 - - Track ID2278 - NameDreams - ArtistThe Cranberries - ComposerDolores O'Riordan/Noel Hogan, Dolores O'Riordan - AlbumEverybody Else Is Doing It, So Why Can't We? - GenreAlternative & Punk - KindAAC audio file - Size6598288 - Total Time272066 - Disc Number1 - Disc Count1 - Track Number2 - Track Count12 - Year1993 - Date Modified2006-08-03T12:43:40Z - Date Added2009-10-03T14:52:28Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3377093405 - Play Date UTC2011-01-05T12:00:05Z - Normalization1067 - Artwork Count1 - Sort ArtistCranberries - Persistent IDC70C038607F1B576 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Cranberries/Everybody%20Else%20Is%20Doing%20It,%20So%20Why%20Can't%20We_/02%20Dreams.m4a - File Folder Count4 - Library Folder Count1 - - 2280 - - Track ID2280 - NameSunday - ArtistThe Cranberries - ComposerNoel Hogan, Dolores O'Riordan - AlbumEverybody Else Is Doing It, So Why Can't We? - GenreAlternative & Punk - KindAAC audio file - Size5142516 - Total Time211067 - Disc Number1 - Disc Count1 - Track Number3 - Track Count12 - Year1993 - Date Modified2006-08-03T12:43:40Z - Date Added2009-10-03T14:52:28Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3377093616 - Play Date UTC2011-01-05T12:03:36Z - Normalization1237 - Artwork Count1 - Sort ArtistCranberries - Persistent ID5C5064D2E2F1DC43 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Cranberries/Everybody%20Else%20Is%20Doing%20It,%20So%20Why%20Can't%20We_/03%20Sunday.m4a - File Folder Count4 - Library Folder Count1 - - 2282 - - Track ID2282 - NamePretty - ArtistThe Cranberries - ComposerNoel Hogan, Dolores O'Riordan - AlbumEverybody Else Is Doing It, So Why Can't We? - GenreAlternative & Punk - KindAAC audio file - Size3324104 - Total Time136206 - Disc Number1 - Disc Count1 - Track Number4 - Track Count12 - Year1993 - Date Modified2006-08-03T12:43:40Z - Date Added2009-10-03T14:52:29Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3377093753 - Play Date UTC2011-01-05T12:05:53Z - Normalization1146 - Artwork Count1 - Sort ArtistCranberries - Persistent ID523CD5DEFEEA3C70 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Cranberries/Everybody%20Else%20Is%20Doing%20It,%20So%20Why%20Can't%20We_/04%20Pretty.m4a - File Folder Count4 - Library Folder Count1 - - 2284 - - Track ID2284 - NameWalking Back - ArtistThe Cranberries - ComposerDolores O'Riordan - AlbumEverybody Else Is Doing It, So Why Can't We? - GenreAlternative & Punk - KindAAC audio file - Size5309492 - Total Time218010 - Disc Number1 - Disc Count1 - Track Number5 - Track Count12 - Year1993 - Date Modified2006-08-03T12:43:40Z - Date Added2009-10-03T14:52:29Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3377094120 - Play Date UTC2011-01-05T12:12:00Z - Normalization1257 - Artwork Count1 - Sort ArtistCranberries - Persistent ID533C6B5C8CE69AD5 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Cranberries/Everybody%20Else%20Is%20Doing%20It,%20So%20Why%20Can't%20We_/05%20Walking%20Back.m4a - File Folder Count4 - Library Folder Count1 - - 2286 - - Track ID2286 - NameNot Sorry - ArtistThe Cranberries - ComposerNoel Hogan, Dolores O'Riordan - AlbumEverybody Else Is Doing It, So Why Can't We? - GenreAlternative & Punk - KindAAC audio file - Size6318049 - Total Time260108 - Disc Number1 - Disc Count1 - Track Number6 - Track Count12 - Year1993 - Date Modified2006-08-03T12:43:40Z - Date Added2009-10-03T14:52:29Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3377094380 - Play Date UTC2011-01-05T12:16:20Z - Normalization1144 - Artwork Count1 - Sort ArtistCranberries - Persistent IDA1CAB4ADF8D24330 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Cranberries/Everybody%20Else%20Is%20Doing%20It,%20So%20Why%20Can't%20We_/06%20Not%20Sorry.m4a - File Folder Count4 - Library Folder Count1 - - 2288 - - Track ID2288 - NameLinger - ArtistThe Cranberries - ComposerNoel Hogan, Dolores O'Riordan - AlbumEverybody Else Is Doing It, So Why Can't We? - GenreAlternative & Punk - KindAAC audio file - Size6674402 - Total Time274783 - Disc Number1 - Disc Count1 - Track Number7 - Track Count12 - Year1993 - Date Modified2006-08-03T12:43:40Z - Date Added2009-10-03T14:52:29Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3484244650 - Play Date UTC2014-05-29T16:14:10Z - Normalization912 - Artwork Count1 - Sort ArtistCranberries - Persistent ID67799878227FEA60 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Cranberries/Everybody%20Else%20Is%20Doing%20It,%20So%20Why%20Can't%20We_/07%20Linger.m4a - File Folder Count4 - Library Folder Count1 - - 2290 - - Track ID2290 - NameWanted - ArtistThe Cranberries - ComposerNoel Hogan, Dolores O'Riordan - AlbumEverybody Else Is Doing It, So Why Can't We? - GenreAlternative & Punk - KindAAC audio file - Size3130265 - Total Time128149 - Disc Number1 - Disc Count1 - Track Number8 - Track Count12 - Year1993 - Date Modified2006-08-03T12:43:40Z - Date Added2009-10-03T14:52:29Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3377094783 - Play Date UTC2011-01-05T12:23:03Z - Normalization1197 - Artwork Count1 - Sort ArtistCranberries - Persistent ID215CB5AF8B7BEA61 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Cranberries/Everybody%20Else%20Is%20Doing%20It,%20So%20Why%20Can't%20We_/08%20Wanted.m4a - File Folder Count4 - Library Folder Count1 - - 2292 - - Track ID2292 - NameStill Can't... - ArtistThe Cranberries - ComposerNoel Hogan, Dolores O'Riordan - AlbumEverybody Else Is Doing It, So Why Can't We? - GenreAlternative & Punk - KindAAC audio file - Size5323445 - Total Time219845 - Disc Number1 - Disc Count1 - Track Number9 - Track Count12 - Year1993 - Date Modified2006-08-03T12:43:40Z - Date Added2009-10-03T14:52:29Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3377095003 - Play Date UTC2011-01-05T12:26:43Z - Normalization1200 - Artwork Count1 - Sort ArtistCranberries - Persistent ID8FF45644FA280C29 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Cranberries/Everybody%20Else%20Is%20Doing%20It,%20So%20Why%20Can't%20We_/09%20Still%20Can't....m4a - File Folder Count4 - Library Folder Count1 - - 2294 - - Track ID2294 - NameI Will Always - ArtistThe Cranberries - ComposerDolores O'Riordan - AlbumEverybody Else Is Doing It, So Why Can't We? - GenreAlternative & Punk - KindAAC audio file - Size3954025 - Total Time162143 - Disc Number1 - Disc Count1 - Track Number10 - Track Count12 - Year1993 - Date Modified2006-08-03T12:43:40Z - Date Added2009-10-03T14:52:29Z - Bit Rate192 - Sample Rate44100 - Normalization1164 - Artwork Count1 - Sort ArtistCranberries - Persistent ID951DB63731174FB7 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Cranberries/Everybody%20Else%20Is%20Doing%20It,%20So%20Why%20Can't%20We_/10%20I%20Will%20Always.m4a - File Folder Count4 - Library Folder Count1 - - 2296 - - Track ID2296 - NameHow - ArtistThe Cranberries - ComposerDolores O'Riordan - AlbumEverybody Else Is Doing It, So Why Can't We? - GenreAlternative & Punk - KindAAC audio file - Size4200603 - Total Time171849 - Disc Number1 - Disc Count1 - Track Number11 - Track Count12 - Year1993 - Date Modified2006-08-03T12:43:40Z - Date Added2009-10-03T14:52:29Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3377095199 - Play Date UTC2011-01-05T12:29:59Z - Normalization1419 - Artwork Count1 - Sort ArtistCranberries - Persistent ID1CFDBCBBF91DA288 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Cranberries/Everybody%20Else%20Is%20Doing%20It,%20So%20Why%20Can't%20We_/11%20How.m4a - File Folder Count4 - Library Folder Count1 - - 2298 - - Track ID2298 - NamePut Me Down - ArtistThe Cranberries - ComposerNoel Hogan, Dolores O'Riordan - AlbumEverybody Else Is Doing It, So Why Can't We? - GenreAlternative & Punk - KindAAC audio file - Size5152447 - Total Time211509 - Disc Number1 - Disc Count1 - Track Number12 - Track Count12 - Year1993 - Date Modified2006-08-03T12:43:40Z - Date Added2009-10-03T14:52:29Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3377095410 - Play Date UTC2011-01-05T12:33:30Z - Normalization1159 - Artwork Count1 - Sort ArtistCranberries - Persistent ID755A55055884F61A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Cranberries/Everybody%20Else%20Is%20Doing%20It,%20So%20Why%20Can't%20We_/12%20Put%20Me%20Down.m4a - File Folder Count4 - Library Folder Count1 - - 2300 - - Track ID2300 - NameWe've Only Just Begun - ArtistThe Carpenters - ComposerPaul Williams - Roger Nichols - AlbumThe Singles 1969-1973 - GenrePop - KindAAC audio file - Size6035422 - Total Time248870 - Disc Number1 - Disc Count1 - Track Number1 - Track Count12 - Year1973 - Date Modified2006-08-13T06:47:38Z - Date Added2009-10-03T14:52:30Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3391613461 - Play Date UTC2011-06-22T13:21:01Z - Normalization1239 - Artwork Count1 - Sort AlbumSingles 1969-1973 - Sort ArtistCarpenters - Persistent IDA6597A3EA200BD05 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Carpenters/The%20Singles%201969-1973/01%20We've%20Only%20Just%20Begun.m4a - File Folder Count4 - Library Folder Count1 - - 2302 - - Track ID2302 - NameTop Of The World - ArtistThe Carpenters - ComposerRichard Carpenter - John Bettis - AlbumThe Singles 1969-1973 - GenrePop - KindAAC audio file - Size4336903 - Total Time178374 - Disc Number1 - Disc Count1 - Track Number2 - Track Count12 - Year1973 - Date Modified2006-08-13T06:47:36Z - Date Added2009-10-03T14:52:30Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3484491714 - Play Date UTC2014-06-01T12:51:54Z - Normalization1329 - Artwork Count1 - Sort AlbumSingles 1969-1973 - Sort ArtistCarpenters - Persistent ID7D73043A260C615B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Carpenters/The%20Singles%201969-1973/02%20Top%20Of%20The%20World.m4a - File Folder Count4 - Library Folder Count1 - - 2304 - - Track ID2304 - NameTicket To Ride - ArtistThe Carpenters - ComposerJohn Lennon - Paul McCartney - AlbumThe Singles 1969-1973 - GenrePop - KindAAC audio file - Size6053227 - Total Time249613 - Disc Number1 - Disc Count1 - Track Number3 - Track Count12 - Year1973 - Date Modified2006-08-13T06:47:34Z - Date Added2009-10-03T14:52:30Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3391613889 - Play Date UTC2011-06-22T13:28:09Z - Normalization1662 - Artwork Count1 - Sort AlbumSingles 1969-1973 - Sort ArtistCarpenters - Persistent ID1D195C15A181C745 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Carpenters/The%20Singles%201969-1973/03%20Ticket%20To%20Ride.m4a - File Folder Count4 - Library Folder Count1 - - 2306 - - Track ID2306 - NameSuperstar - ArtistThe Carpenters - ComposerLeon Russell - Bonnie Bramlet - AlbumThe Singles 1969-1973 - GenrePop - KindAAC audio file - Size5408916 - Total Time223002 - Disc Number1 - Disc Count1 - Track Number4 - Track Count12 - Year1973 - Date Modified2006-08-13T06:47:30Z - Date Added2009-10-03T14:52:30Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3391614112 - Play Date UTC2011-06-22T13:31:52Z - Normalization2160 - Artwork Count1 - Sort AlbumSingles 1969-1973 - Sort ArtistCarpenters - Persistent ID00D2F22CE3BD9A08 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Carpenters/The%20Singles%201969-1973/04%20Superstar.m4a - File Folder Count4 - Library Folder Count1 - - 2308 - - Track ID2308 - NameRainy Days And Mondays - ArtistThe Carpenters - ComposerPaul Williams - Roger Nichols - AlbumThe Singles 1969-1973 - GenrePop - KindAAC audio file - Size4935848 - Total Time203312 - Disc Number1 - Disc Count1 - Track Number5 - Track Count12 - Year1973 - Date Modified2006-08-13T06:47:28Z - Date Added2009-10-03T14:52:30Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3484472066 - Play Date UTC2014-06-01T07:24:26Z - Normalization1745 - Artwork Count1 - Sort AlbumSingles 1969-1973 - Sort ArtistCarpenters - Persistent IDF8E889F143333E71 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Carpenters/The%20Singles%201969-1973/05%20Rainy%20Days%20And%20Mondays.m4a - File Folder Count4 - Library Folder Count1 - - 2310 - - Track ID2310 - NameGoodbye To Love - ArtistThe Carpenters - ComposerRichard Carpenter - John Bettis - AlbumThe Singles 1969-1973 - GenrePop - KindAAC audio file - Size5668074 - Total Time236308 - Disc Number1 - Disc Count1 - Track Number6 - Track Count12 - Year1973 - Date Modified2006-08-13T06:47:26Z - Date Added2009-10-03T14:52:30Z - Bit Rate192 - Sample Rate44100 - Normalization2207 - Artwork Count1 - Sort AlbumSingles 1969-1973 - Sort ArtistCarpenters - Persistent ID37F3532024160B3B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Carpenters/The%20Singles%201969-1973/06%20Goodbye%20To%20Love.m4a - File Folder Count4 - Library Folder Count1 - - 2312 - - Track ID2312 - NameYesterday Once More - ArtistThe Carpenters - ComposerRichard Carpenter - John Bettis - AlbumThe Singles 1969-1973 - GenrePop - KindAAC audio file - Size5769031 - Total Time239001 - Disc Number1 - Disc Count1 - Track Number7 - Track Count12 - Year1973 - Date Modified2006-08-13T06:47:24Z - Date Added2009-10-03T14:52:30Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Sort AlbumSingles 1969-1973 - Sort ArtistCarpenters - Persistent IDCDFFE92F3E6A94FE - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Carpenters/The%20Singles%201969-1973/07%20Yesterday%20Once%20More.m4a - File Folder Count4 - Library Folder Count1 - - 2314 - - Track ID2314 - NameIt's Going To Take Some Time - ArtistThe Carpenters - ComposerCarole King - Toni Stern - AlbumThe Singles 1969-1973 - GenrePop - KindAAC audio file - Size4251980 - Total Time176354 - Disc Number1 - Disc Count1 - Track Number8 - Track Count12 - Year1973 - Date Modified2006-08-13T06:47:20Z - Date Added2009-10-03T14:52:30Z - Bit Rate192 - Sample Rate44100 - Normalization818 - Artwork Count1 - Sort AlbumSingles 1969-1973 - Sort ArtistCarpenters - Persistent ID47242E9EBE3B1768 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Carpenters/The%20Singles%201969-1973/08%20It's%20Going%20To%20Take%20Some%20Time.m4a - File Folder Count4 - Library Folder Count1 - - 2316 - - Track ID2316 - NameSing - ArtistThe Carpenters - ComposerJoe Raposo - AlbumThe Singles 1969-1973 - GenrePop - KindAAC audio file - Size4797644 - Total Time200200 - Disc Number1 - Disc Count1 - Track Number9 - Track Count12 - Year1973 - Date Modified2006-08-13T06:47:18Z - Date Added2009-10-03T14:52:31Z - Bit Rate192 - Sample Rate44100 - Normalization1463 - Artwork Count1 - Sort AlbumSingles 1969-1973 - Sort ArtistCarpenters - Persistent ID7B1F973F4CE7E158 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Carpenters/The%20Singles%201969-1973/09%20Sing.m4a - File Folder Count4 - Library Folder Count1 - - 2318 - - Track ID2318 - NameFor All We Know - ArtistThe Carpenters - ComposerFred Karlin - Robb Wilson - Arthur James - AlbumThe Singles 1969-1973 - GenrePop - KindAAC audio file - Size3744213 - Total Time154898 - Disc Number1 - Disc Count1 - Track Number10 - Track Count12 - Year1973 - Date Modified2006-08-13T06:47:16Z - Date Added2009-10-03T14:52:31Z - Bit Rate192 - Sample Rate44100 - Normalization1273 - Artwork Count1 - Sort AlbumSingles 1969-1973 - Sort ArtistCarpenters - Persistent ID11D666F2E8BC12D3 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Carpenters/The%20Singles%201969-1973/10%20For%20All%20We%20Know.m4a - File Folder Count4 - Library Folder Count1 - - 2320 - - Track ID2320 - NameHurting Each Other - ArtistThe Carpenters - ComposerPeter Udell - Gary Geld - AlbumThe Singles 1969-1973 - GenrePop - KindAAC audio file - Size4059535 - Total Time168621 - Disc Number1 - Disc Count1 - Track Number11 - Track Count12 - Year1973 - Date Modified2006-08-13T06:47:14Z - Date Added2009-10-03T14:52:31Z - Bit Rate192 - Sample Rate44100 - Normalization2276 - Artwork Count1 - Sort AlbumSingles 1969-1973 - Sort ArtistCarpenters - Persistent IDCD155B32C82C39FD - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Carpenters/The%20Singles%201969-1973/11%20Hurting%20Each%20Other.m4a - File Folder Count4 - Library Folder Count1 - - 2322 - - Track ID2322 - Name(They Long To Be) Close To You - ArtistThe Carpenters - ComposerHal David - Burt Bacharach - AlbumThe Singles 1969-1973 - GenrePop - KindAAC audio file - Size5405417 - Total Time222910 - Disc Number1 - Disc Count1 - Track Number12 - Track Count12 - Year1973 - Date Modified2006-08-13T06:47:14Z - Date Added2009-10-03T14:52:31Z - Bit Rate192 - Sample Rate44100 - Normalization1050 - Artwork Count1 - Sort AlbumSingles 1969-1973 - Sort ArtistCarpenters - Persistent ID669E6B72D485CF3F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Carpenters/The%20Singles%201969-1973/12%20(They%20Long%20To%20Be)%20Close%20To%20You.m4a - File Folder Count4 - Library Folder Count1 - - 2324 - - Track ID2324 - NameAnon: Puer Natus Est Nobis - ArtistThe Benedictine Monks Of Santo Domingo De Silos - ComposerUnknown - AlbumChant - GenreClassical - KindAAC audio file - Size5281396 - Total Time216942 - Disc Number1 - Disc Count1 - Track Number1 - Track Count19 - Year1994 - Date Modified2006-07-30T14:29:12Z - Date Added2009-10-03T14:52:31Z - Bit Rate192 - Sample Rate44100 - Normalization1207 - Artwork Count1 - Sort ArtistBenedictine Monks Of Santo Domingo De Silos - Persistent ID2FBC7F79F8AA1456 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Benedictine%20Monks%20Of%20Santo%20Domingo%20De%20Silos/Chant/01%20Anon_%20Puer%20Natus%20Est%20Nobis.m4a - File Folder Count4 - Library Folder Count1 - - 2326 - - Track ID2326 - NameAnon: Os Iusti - ArtistThe Benedictine Monks Of Santo Domingo De Silos - ComposerUnknown - AlbumChant - GenreClassical - KindAAC audio file - Size4151395 - Total Time169573 - Disc Number1 - Disc Count1 - Track Number2 - Track Count19 - Year1994 - Date Modified2006-07-30T14:29:12Z - Date Added2009-10-03T14:52:31Z - Bit Rate192 - Sample Rate44100 - Normalization809 - Artwork Count1 - Sort ArtistBenedictine Monks Of Santo Domingo De Silos - Persistent IDA064DC876998E1E2 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Benedictine%20Monks%20Of%20Santo%20Domingo%20De%20Silos/Chant/02%20Anon_%20Os%20Iusti.m4a - File Folder Count4 - Library Folder Count1 - - 2328 - - Track ID2328 - NameAnon: Christus Factus Est Pro Nobis - ArtistThe Benedictine Monks Of Santo Domingo De Silos - ComposerUnknown - AlbumChant - GenreClassical - KindAAC audio file - Size3920015 - Total Time159937 - Disc Number1 - Disc Count1 - Track Number3 - Track Count19 - Year1994 - Date Modified2006-07-30T14:29:14Z - Date Added2009-10-03T14:52:31Z - Bit Rate192 - Sample Rate44100 - Normalization947 - Artwork Count1 - Sort ArtistBenedictine Monks Of Santo Domingo De Silos - Persistent ID1F55C304184FF5A7 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Benedictine%20Monks%20Of%20Santo%20Domingo%20De%20Silos/Chant/03%20Anon_%20Christus%20Factus%20Est%20Pro%20Nobis.m4a - File Folder Count4 - Library Folder Count1 - - 2330 - - Track ID2330 - NameAnon: Mandatum Novum Do Vobis - ArtistThe Benedictine Monks Of Santo Domingo De Silos - ComposerUnknown - AlbumChant - GenreClassical - KindAAC audio file - Size2482959 - Total Time101191 - Disc Number1 - Disc Count1 - Track Number4 - Track Count19 - Year1994 - Date Modified2006-07-30T14:29:14Z - Date Added2009-10-03T14:52:32Z - Bit Rate192 - Sample Rate44100 - Normalization946 - Artwork Count1 - Sort ArtistBenedictine Monks Of Santo Domingo De Silos - Persistent IDB8FA36C888ED8253 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Benedictine%20Monks%20Of%20Santo%20Domingo%20De%20Silos/Chant/04%20Anon_%20Mandatum%20Novum%20Do%20Vobis.m4a - File Folder Count4 - Library Folder Count1 - - 2332 - - Track ID2332 - NameAnon: Media Vita In Morte Sumus - ArtistThe Benedictine Monks Of Santo Domingo De Silos - ComposerUnknown - AlbumChant - GenreClassical - KindAAC audio file - Size9014329 - Total Time371215 - Disc Number1 - Disc Count1 - Track Number5 - Track Count19 - Year1994 - Date Modified2006-07-30T14:29:14Z - Date Added2009-10-03T14:52:32Z - Bit Rate192 - Sample Rate44100 - Normalization1255 - Artwork Count1 - Sort ArtistBenedictine Monks Of Santo Domingo De Silos - Persistent IDEBD4FA406E59C670 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Benedictine%20Monks%20Of%20Santo%20Domingo%20De%20Silos/Chant/05%20Anon_%20Media%20Vita%20In%20Morte%20Sumus.m4a - File Folder Count4 - Library Folder Count1 - - 2334 - - Track ID2334 - NameAnon: Alleluia, Beatus Vir Qui Suffert - ArtistThe Benedictine Monks Of Santo Domingo De Silos - ComposerUnknown - AlbumChant - GenreClassical - KindAAC audio file - Size4646240 - Total Time190169 - Disc Number1 - Disc Count1 - Track Number6 - Track Count19 - Year1994 - Date Modified2006-07-30T14:29:14Z - Date Added2009-10-03T14:52:32Z - Bit Rate192 - Sample Rate44100 - Normalization817 - Artwork Count1 - Sort ArtistBenedictine Monks Of Santo Domingo De Silos - Persistent ID44044E97AE744D36 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Benedictine%20Monks%20Of%20Santo%20Domingo%20De%20Silos/Chant/06%20Anon_%20Alleluia,%20Beatus%20Vir%20Qui%20Suffert.m4a - File Folder Count4 - Library Folder Count1 - - 2336 - - Track ID2336 - NameAnon: Spiritus Domini - ArtistThe Benedictine Monks Of Santo Domingo De Silos - ComposerUnknown - AlbumChant - GenreClassical - KindAAC audio file - Size5521145 - Total Time226602 - Disc Number1 - Disc Count1 - Track Number7 - Track Count19 - Year1994 - Date Modified2006-07-30T14:29:14Z - Date Added2009-10-03T14:52:32Z - Bit Rate192 - Sample Rate44100 - Normalization1255 - Artwork Count1 - Sort ArtistBenedictine Monks Of Santo Domingo De Silos - Persistent ID227F4DC0CB85590C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Benedictine%20Monks%20Of%20Santo%20Domingo%20De%20Silos/Chant/07%20Anon_%20Spiritus%20Domini.m4a - File Folder Count4 - Library Folder Count1 - - 2338 - - Track ID2338 - NameAnon: Improperium - ArtistThe Benedictine Monks Of Santo Domingo De Silos - ComposerUnknown - AlbumChant - GenreClassical - KindAAC audio file - Size3826809 - Total Time156059 - Disc Number1 - Disc Count1 - Track Number8 - Track Count19 - Year1994 - Date Modified2006-07-30T14:29:14Z - Date Added2009-10-03T14:52:32Z - Bit Rate192 - Sample Rate44100 - Normalization617 - Artwork Count1 - Sort ArtistBenedictine Monks Of Santo Domingo De Silos - Persistent ID6A2DBBBF3CE1FCF0 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Benedictine%20Monks%20Of%20Santo%20Domingo%20De%20Silos/Chant/08%20Anon_%20Improperium.m4a - File Folder Count4 - Library Folder Count1 - - 2340 - - Track ID2340 - NameAnon: Laetatus Sum - ArtistThe Benedictine Monks Of Santo Domingo De Silos - ComposerUnknown - AlbumChant - GenreClassical - KindAAC audio file - Size3383583 - Total Time137600 - Disc Number1 - Disc Count1 - Track Number9 - Track Count19 - Year1994 - Date Modified2006-07-30T14:29:14Z - Date Added2009-10-03T14:52:32Z - Bit Rate192 - Sample Rate44100 - Normalization1079 - Artwork Count1 - Sort ArtistBenedictine Monks Of Santo Domingo De Silos - Persistent IDBAAF17E061359649 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Benedictine%20Monks%20Of%20Santo%20Domingo%20De%20Silos/Chant/09%20Anon_%20Laetatus%20Sum.m4a - File Folder Count4 - Library Folder Count1 - - 2342 - - Track ID2342 - NameAnon: Kyrie Xi, A - ArtistThe Benedictine Monks Of Santo Domingo De Silos - ComposerUnknown - AlbumChant - GenreClassical - KindAAC audio file - Size1642087 - Total Time66175 - Disc Number1 - Disc Count1 - Track Number10 - Track Count19 - Year1994 - Date Modified2006-07-30T14:29:14Z - Date Added2009-10-03T14:52:32Z - Bit Rate192 - Sample Rate44100 - Normalization1034 - Artwork Count1 - Sort ArtistBenedictine Monks Of Santo Domingo De Silos - Persistent ID831888B8F1CF03C3 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Benedictine%20Monks%20Of%20Santo%20Domingo%20De%20Silos/Chant/10%20Anon_%20Kyrie%20Xi,%20A.m4a - File Folder Count4 - Library Folder Count1 - - 2344 - - Track ID2344 - NameAnon: Puer Natus In Bethlehem - ArtistThe Benedictine Monks Of Santo Domingo De Silos - ComposerUnknown - AlbumChant - GenreClassical - KindAAC audio file - Size2902304 - Total Time118652 - Disc Number1 - Disc Count1 - Track Number11 - Track Count19 - Year1994 - Date Modified2006-07-30T14:29:16Z - Date Added2009-10-03T14:52:32Z - Bit Rate192 - Sample Rate44100 - Normalization896 - Artwork Count1 - Sort ArtistBenedictine Monks Of Santo Domingo De Silos - Persistent ID884D46550EAC27A8 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Benedictine%20Monks%20Of%20Santo%20Domingo%20De%20Silos/Chant/11%20Anon_%20Puer%20Natus%20In%20Bethlehem.m4a - File Folder Count4 - Library Folder Count1 - - 2346 - - Track ID2346 - NameAnon: Jacta Cogitatum Tuum - ArtistThe Benedictine Monks Of Santo Domingo De Silos - ComposerUnknown - AlbumChant - GenreClassical - KindAAC audio file - Size5228364 - Total Time214411 - Disc Number1 - Disc Count1 - Track Number12 - Track Count19 - Year1994 - Date Modified2006-07-30T14:29:16Z - Date Added2009-10-03T14:52:33Z - Bit Rate192 - Sample Rate44100 - Normalization918 - Artwork Count1 - Sort ArtistBenedictine Monks Of Santo Domingo De Silos - Persistent ID6A272B5BE967BA69 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Benedictine%20Monks%20Of%20Santo%20Domingo%20De%20Silos/Chant/12%20Anon_%20Jacta%20Cogitatum%20Tuum.m4a - File Folder Count4 - Library Folder Count1 - - 2348 - - Track ID2348 - NameAnon: Verbum Caro Factum Est - ArtistThe Benedictine Monks Of Santo Domingo De Silos - ComposerUnknown - AlbumChant - GenreClassical - KindAAC audio file - Size5956934 - Total Time244736 - Disc Number1 - Disc Count1 - Track Number13 - Track Count19 - Year1994 - Date Modified2006-07-30T14:29:16Z - Date Added2009-10-03T14:52:33Z - Bit Rate192 - Sample Rate44100 - Normalization769 - Artwork Count1 - Sort ArtistBenedictine Monks Of Santo Domingo De Silos - Persistent IDBDA9F8D6C458E92D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Benedictine%20Monks%20Of%20Santo%20Domingo%20De%20Silos/Chant/13%20Anon_%20Verbum%20Caro%20Factum%20Est.m4a - File Folder Count4 - Library Folder Count1 - - 2350 - - Track ID2350 - NameAnon: Genuit Puerpera Regem - ArtistThe Benedictine Monks Of Santo Domingo De Silos - ComposerUnknown - AlbumChant - GenreClassical - KindAAC audio file - Size4326176 - Total Time176841 - Disc Number1 - Disc Count1 - Track Number14 - Track Count19 - Year1994 - Date Modified2006-07-30T14:29:16Z - Date Added2009-10-03T14:52:33Z - Bit Rate192 - Sample Rate44100 - Normalization966 - Artwork Count1 - Sort ArtistBenedictine Monks Of Santo Domingo De Silos - Persistent IDEDD075EA767D8462 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Benedictine%20Monks%20Of%20Santo%20Domingo%20De%20Silos/Chant/14%20Anon_%20Genuit%20Puerpera%20Regem.m4a - File Folder Count4 - Library Folder Count1 - - 2352 - - Track ID2352 - NameAnon: Occuli Omnium - ArtistThe Benedictine Monks Of Santo Domingo De Silos - ComposerUnknown - AlbumChant - GenreClassical - KindAAC audio file - Size4917720 - Total Time201478 - Disc Number1 - Disc Count1 - Track Number15 - Track Count19 - Year1994 - Date Modified2006-07-30T14:29:16Z - Date Added2009-10-03T14:52:33Z - Bit Rate192 - Sample Rate44100 - Normalization980 - Artwork Count1 - Sort ArtistBenedictine Monks Of Santo Domingo De Silos - Persistent IDF1796C896B55F42C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Benedictine%20Monks%20Of%20Santo%20Domingo%20De%20Silos/Chant/15%20Anon_%20Occuli%20Omnium.m4a - File Folder Count4 - Library Folder Count1 - - 2354 - - Track ID2354 - NameAnon: Ave Mundi Spes Maria - ArtistThe Benedictine Monks Of Santo Domingo De Silos - ComposerUnknown - AlbumChant - GenreClassical - KindAAC audio file - Size6290907 - Total Time258645 - Disc Number1 - Disc Count1 - Track Number16 - Track Count19 - Year1994 - Date Modified2006-07-30T14:29:16Z - Date Added2009-10-03T14:52:33Z - Bit Rate192 - Sample Rate44100 - Normalization808 - Artwork Count1 - Sort ArtistBenedictine Monks Of Santo Domingo De Silos - Persistent ID794771CB5C875360 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Benedictine%20Monks%20Of%20Santo%20Domingo%20De%20Silos/Chant/16%20Anon_%20Ave%20Mundi%20Spes%20Maria.m4a - File Folder Count4 - Library Folder Count1 - - 2356 - - Track ID2356 - NameAnon: Kyrie Fons Bonitatis - ArtistThe Benedictine Monks Of Santo Domingo De Silos - ComposerUnknown - AlbumChant - GenreClassical - KindAAC audio file - Size5851463 - Total Time240348 - Disc Number1 - Disc Count1 - Track Number17 - Track Count19 - Year1994 - Date Modified2006-07-30T14:29:16Z - Date Added2009-10-03T14:52:33Z - Bit Rate192 - Sample Rate44100 - Normalization1255 - Artwork Count1 - Sort ArtistBenedictine Monks Of Santo Domingo De Silos - Persistent IDF7BD1493C8C4CCC0 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Benedictine%20Monks%20Of%20Santo%20Domingo%20De%20Silos/Chant/17%20Anon_%20Kyrie%20Fons%20Bonitatis.m4a - File Folder Count4 - Library Folder Count1 - - 2358 - - Track ID2358 - NameAnon: Veni Sancte Spiritus - ArtistThe Benedictine Monks Of Santo Domingo De Silos - ComposerUnknown - AlbumChant - GenreClassical - KindAAC audio file - Size3971387 - Total Time162073 - Disc Number1 - Disc Count1 - Track Number18 - Track Count19 - Year1994 - Date Modified2006-07-30T14:29:16Z - Date Added2009-10-03T14:52:33Z - Bit Rate192 - Sample Rate44100 - Normalization1005 - Artwork Count1 - Sort ArtistBenedictine Monks Of Santo Domingo De Silos - Persistent ID6E1A87BF188D64A1 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Benedictine%20Monks%20Of%20Santo%20Domingo%20De%20Silos/Chant/18%20Anon_%20Veni%20Sancte%20Spiritus.m4a - File Folder Count4 - Library Folder Count1 - - 2360 - - Track ID2360 - NameAnon: Hosanna Filio David - ArtistThe Benedictine Monks Of Santo Domingo De Silos - ComposerUnknown - AlbumChant - GenreClassical - KindAAC audio file - Size1070820 - Total Time42421 - Disc Number1 - Disc Count1 - Track Number19 - Track Count19 - Year1994 - Date Modified2006-07-30T14:29:18Z - Date Added2009-10-03T14:52:33Z - Bit Rate192 - Sample Rate44100 - Normalization433 - Artwork Count1 - Sort ArtistBenedictine Monks Of Santo Domingo De Silos - Persistent ID6E3E54EC87C48689 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Benedictine%20Monks%20Of%20Santo%20Domingo%20De%20Silos/Chant/19%20Anon_%20Hosanna%20Filio%20David.m4a - File Folder Count4 - Library Folder Count1 - - 2362 - - Track ID2362 - NameTaxman - ArtistThe Beatles - ComposerHarrison - AlbumRevolver - GenrePop - KindAAC audio file - Size3842901 - Total Time159032 - Disc Number1 - Disc Count1 - Track Number1 - Track Count14 - Year1966 - Date Modified2006-07-30T09:12:38Z - Date Added2009-10-03T14:52:35Z - Bit Rate192 - Sample Rate44100 - Normalization2747 - Artwork Count1 - Sort ArtistBeatles - Persistent IDCB162A123CAFB699 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Revolver/01%20Taxman.m4a - File Folder Count4 - Library Folder Count1 - - 2364 - - Track ID2364 - NameEleanor Rigby - ArtistThe Beatles - ComposerLennon/McCartney - AlbumRevolver - GenrePop - KindAAC audio file - Size3078230 - Total Time127708 - Disc Number1 - Disc Count1 - Track Number2 - Track Count14 - Year1966 - Date Modified2006-07-30T09:12:38Z - Date Added2009-10-03T14:52:36Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3441651562 - Play Date UTC2013-01-21T16:49:22Z - Normalization1685 - Artwork Count1 - Sort ArtistBeatles - Persistent ID4E35064C72B2537E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Revolver/02%20Eleanor%20Rigby.m4a - File Folder Count4 - Library Folder Count1 - - 2366 - - Track ID2366 - NameI'm Only Sleeping - ArtistThe Beatles - ComposerLennon/McCartney - AlbumRevolver - GenrePop - KindAAC audio file - Size4361314 - Total Time181694 - Disc Number1 - Disc Count1 - Track Number3 - Track Count14 - Year1966 - Date Modified2006-07-30T09:12:38Z - Date Added2009-10-03T14:52:36Z - Bit Rate192 - Sample Rate44100 - Normalization2169 - Artwork Count1 - Sort ArtistBeatles - Persistent IDAD84D9FBCB825D22 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Revolver/03%20I'm%20Only%20Sleeping.m4a - File Folder Count4 - Library Folder Count1 - - 2368 - - Track ID2368 - NameLove You To - ArtistThe Beatles - ComposerHarrison - AlbumRevolver - GenrePop - KindAAC audio file - Size4355481 - Total Time181230 - Disc Number1 - Disc Count1 - Track Number4 - Track Count14 - Year1966 - Date Modified2006-07-30T09:12:38Z - Date Added2009-10-03T14:52:36Z - Bit Rate192 - Sample Rate44100 - Normalization2311 - Artwork Count1 - Sort ArtistBeatles - Persistent IDA2CD2F085ACBD722 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Revolver/04%20Love%20You%20To.m4a - File Folder Count4 - Library Folder Count1 - - 2370 - - Track ID2370 - NameHere, There And Everywhere - ArtistThe Beatles - ComposerLennon/McCartney - AlbumRevolver - GenrePop - KindAAC audio file - Size3514696 - Total Time145912 - Disc Number1 - Disc Count1 - Track Number5 - Track Count14 - Year1966 - Date Modified2006-07-30T09:12:38Z - Date Added2009-10-03T14:52:36Z - Bit Rate192 - Sample Rate44100 - Normalization566 - Artwork Count1 - Sort ArtistBeatles - Persistent ID795E8614D7BDC5ED - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Revolver/05%20Here,%20There%20And%20Everywhere.m4a - File Folder Count4 - Library Folder Count1 - - 2372 - - Track ID2372 - NameYellow Submarine - ArtistThe Beatles - ComposerLennon/McCartney - AlbumRevolver - GenrePop - KindAAC audio file - Size3857285 - Total Time160448 - Disc Number1 - Disc Count1 - Track Number6 - Track Count14 - Year1966 - Date Modified2006-07-30T09:12:40Z - Date Added2009-10-03T14:52:36Z - Bit Rate192 - Sample Rate44100 - Normalization1945 - Artwork Count1 - Sort ArtistBeatles - Persistent IDF7BF39DE4F8E1E97 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Revolver/06%20Yellow%20Submarine.m4a - File Folder Count4 - Library Folder Count1 - - 2374 - - Track ID2374 - NameShe Said She Said - ArtistThe Beatles - ComposerLennon/McCartney - AlbumRevolver - GenrePop - KindAAC audio file - Size3797655 - Total Time157174 - Disc Number1 - Disc Count1 - Track Number7 - Track Count14 - Year1966 - Date Modified2006-07-30T09:12:40Z - Date Added2009-10-03T14:52:36Z - Bit Rate192 - Sample Rate44100 - Normalization3571 - Artwork Count1 - Sort ArtistBeatles - Persistent IDB7475D9842A1615A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Revolver/07%20She%20Said%20She%20Said.m4a - File Folder Count4 - Library Folder Count1 - - 2376 - - Track ID2376 - NameGood Day Sunshine - ArtistThe Beatles - ComposerLennon/McCartney - AlbumRevolver - GenrePop - KindAAC audio file - Size3155070 - Total Time129798 - Disc Number1 - Disc Count1 - Track Number8 - Track Count14 - Year1966 - Date Modified2006-07-30T09:12:40Z - Date Added2009-10-03T14:52:36Z - Bit Rate192 - Sample Rate44100 - Normalization1977 - Artwork Count1 - Sort ArtistBeatles - Persistent ID66EE009B51689129 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Revolver/08%20Good%20Day%20Sunshine.m4a - File Folder Count4 - Library Folder Count1 - - 2378 - - Track ID2378 - NameAnd Your Bird Can Sing - ArtistThe Beatles - ComposerLennon/McCartney - AlbumRevolver - GenrePop - KindAAC audio file - Size2941095 - Total Time121763 - Disc Number1 - Disc Count1 - Track Number9 - Track Count14 - Year1966 - Date Modified2006-07-30T09:12:40Z - Date Added2009-10-03T14:52:37Z - Bit Rate192 - Sample Rate44100 - Normalization5540 - Artwork Count1 - Sort ArtistBeatles - Persistent ID4F0EC3272E0C0BBD - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Revolver/09%20And%20Your%20Bird%20Can%20Sing.m4a - File Folder Count4 - Library Folder Count1 - - 2380 - - Track ID2380 - NameFor No One - ArtistThe Beatles - ComposerLennon/McCartney - AlbumRevolver - GenrePop - KindAAC audio file - Size2922423 - Total Time121740 - Disc Number1 - Disc Count1 - Track Number10 - Track Count14 - Year1966 - Date Modified2006-07-30T09:12:40Z - Date Added2009-10-03T14:52:37Z - Bit Rate192 - Sample Rate44100 - Normalization1269 - Artwork Count1 - Sort ArtistBeatles - Persistent ID5A980CC8F8151A30 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Revolver/10%20For%20No%20One.m4a - File Folder Count4 - Library Folder Count1 - - 2382 - - Track ID2382 - NameDoctor Robert - ArtistThe Beatles - ComposerLennon/McCartney - AlbumRevolver - GenrePop - KindAAC audio file - Size3277586 - Total Time135231 - Disc Number1 - Disc Count1 - Track Number11 - Track Count14 - Year1966 - Date Modified2006-07-30T09:12:40Z - Date Added2009-10-03T14:52:37Z - Bit Rate192 - Sample Rate44100 - Normalization2573 - Artwork Count1 - Sort ArtistBeatles - Persistent ID4548F2C5CF80F018 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Revolver/11%20Doctor%20Robert.m4a - File Folder Count4 - Library Folder Count1 - - 2384 - - Track ID2384 - NameI Want To Tell You - ArtistThe Beatles - ComposerHarrison - AlbumRevolver - GenrePop - KindAAC audio file - Size3607483 - Total Time149906 - Disc Number1 - Disc Count1 - Track Number12 - Track Count14 - Year1966 - Date Modified2006-07-30T09:12:40Z - Date Added2009-10-03T14:52:37Z - Bit Rate192 - Sample Rate44100 - Normalization1768 - Artwork Count1 - Sort ArtistBeatles - Persistent IDD7A982C145946905 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Revolver/12%20I%20Want%20To%20Tell%20You.m4a - File Folder Count4 - Library Folder Count1 - - 2386 - - Track ID2386 - NameGot To Get You Into My Life - ArtistThe Beatles - ComposerLennon/McCartney - AlbumRevolver - GenrePop - KindAAC audio file - Size3634678 - Total Time150672 - Disc Number1 - Disc Count1 - Track Number13 - Track Count14 - Year1966 - Date Modified2006-07-30T09:12:40Z - Date Added2009-10-03T14:52:37Z - Bit Rate192 - Sample Rate44100 - Normalization3287 - Artwork Count1 - Sort ArtistBeatles - Persistent ID2DF57447BDAB8357 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Revolver/13%20Got%20To%20Get%20You%20Into%20My%20Life.m4a - File Folder Count4 - Library Folder Count1 - - 2388 - - Track ID2388 - NameTomorrow Never Knows - ArtistThe Beatles - ComposerLennon/McCartney - AlbumRevolver - GenrePop - KindAAC audio file - Size4339690 - Total Time177445 - Disc Number1 - Disc Count1 - Track Number14 - Track Count14 - Year1966 - Date Modified2006-07-30T09:12:40Z - Date Added2009-10-03T14:52:37Z - Bit Rate192 - Sample Rate44100 - Normalization3579 - Artwork Count1 - Sort ArtistBeatles - Persistent ID81464802BF92DB94 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Revolver/14%20Tomorrow%20Never%20Knows.m4a - File Folder Count4 - Library Folder Count1 - - 2390 - - Track ID2390 - NameTwo Of Us - ArtistThe Beatles - ComposerLennon/McCartney - AlbumLet It Be - GenreRock - KindAAC audio file - Size5214307 - Total Time216710 - Disc Number1 - Disc Count1 - Track Number1 - Track Count12 - Year1970 - Date Modified2006-08-03T12:51:36Z - Date Added2009-10-03T14:52:37Z - Bit Rate192 - Sample Rate44100 - Normalization839 - Artwork Count1 - Sort ArtistBeatles - Persistent IDA631012A52C08804 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Let%20It%20Be/01%20Two%20Of%20Us.m4a - File Folder Count4 - Library Folder Count1 - - 2392 - - Track ID2392 - NameDig A Pony - ArtistThe Beatles - ComposerLennon/McCartney - AlbumLet It Be - GenreRock - KindAAC audio file - Size5666966 - Total Time234845 - Disc Number1 - Disc Count1 - Track Number2 - Track Count12 - Year1970 - Date Modified2006-08-03T12:51:36Z - Date Added2009-10-03T14:52:38Z - Bit Rate192 - Sample Rate44100 - Normalization2155 - Artwork Count1 - Sort ArtistBeatles - Persistent ID82B2A868944870A7 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Let%20It%20Be/02%20Dig%20A%20Pony.m4a - File Folder Count4 - Library Folder Count1 - - 2394 - - Track ID2394 - NameAcross The Universe - ArtistThe Beatles - ComposerLennon/McCartney - AlbumLet It Be - GenreRock - KindAAC audio file - Size5506944 - Total Time228599 - Disc Number1 - Disc Count1 - Track Number3 - Track Count12 - Year1970 - Date Modified2006-08-03T12:51:36Z - Date Added2009-10-03T14:52:38Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3484294373 - Play Date UTC2014-05-30T06:02:53Z - Normalization1280 - Artwork Count1 - Sort ArtistBeatles - Persistent ID1809E6802F485B44 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Let%20It%20Be/03%20Across%20The%20Universe.m4a - File Folder Count4 - Library Folder Count1 - - 2396 - - Track ID2396 - NameI Me Mine - ArtistThe Beatles - ComposerHarrison - AlbumLet It Be - GenreRock - KindAAC audio file - Size3528674 - Total Time145773 - Disc Number1 - Disc Count1 - Track Number4 - Track Count12 - Year1970 - Date Modified2006-08-03T12:51:36Z - Date Added2009-10-03T14:52:38Z - Bit Rate192 - Sample Rate44100 - Normalization2784 - Artwork Count1 - Sort ArtistBeatles - Persistent IDB84845BE057C0C0B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Let%20It%20Be/04%20I%20Me%20Mine.m4a - File Folder Count4 - Library Folder Count1 - - 2398 - - Track ID2398 - NameDig It - ArtistThe Beatles - ComposerHarrison/Lennon/McCartney/Starkey - AlbumLet It Be - GenreRock - KindAAC audio file - Size1205498 - Total Time50037 - Disc Number1 - Disc Count1 - Track Number5 - Track Count12 - Year1970 - Date Modified2006-08-03T12:51:38Z - Date Added2009-10-03T14:52:38Z - Bit Rate192 - Sample Rate44100 - Normalization1557 - Artwork Count1 - Sort ArtistBeatles - Persistent ID53D7427F39F30826 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Let%20It%20Be/05%20Dig%20It.m4a - File Folder Count4 - Library Folder Count1 - - 2400 - - Track ID2400 - NameLet It Be - ArtistThe Beatles - ComposerLennon/McCartney - AlbumLet It Be - GenreRock - KindAAC audio file - Size5872750 - Total Time243343 - Disc Number1 - Disc Count1 - Track Number6 - Track Count12 - Year1970 - Date Modified2006-08-03T12:51:38Z - Date Added2009-10-03T14:52:38Z - Bit Rate192 - Sample Rate44100 - Normalization1493 - Artwork Count1 - Sort ArtistBeatles - Persistent ID6E18E6A45C7DE944 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Let%20It%20Be/06%20Let%20It%20Be.m4a - File Folder Count4 - Library Folder Count1 - - 2402 - - Track ID2402 - NameMaggie Mae - ArtistThe Beatles - ComposerHarrison/McCartney/Starkey/Trad arr. Lennon - AlbumLet It Be - GenreRock - KindAAC audio file - Size968456 - Total Time40633 - Disc Number1 - Disc Count1 - Track Number7 - Track Count12 - Year1970 - Date Modified2006-08-03T12:51:38Z - Date Added2009-10-03T14:52:38Z - Bit Rate192 - Sample Rate44100 - Normalization2115 - Artwork Count1 - Sort ArtistBeatles - Persistent ID7C5BFE0B97FA93C6 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Let%20It%20Be/07%20Maggie%20Mae.m4a - File Folder Count4 - Library Folder Count1 - - 2404 - - Track ID2404 - NameI've Got A Feeling - ArtistThe Beatles - ComposerLennon/McCartney - AlbumLet It Be - GenreRock - KindAAC audio file - Size5260078 - Total Time217987 - Disc Number1 - Disc Count1 - Track Number8 - Track Count12 - Year1970 - Date Modified2006-08-03T12:51:38Z - Date Added2009-10-03T14:52:38Z - Bit Rate192 - Sample Rate44100 - Normalization1536 - Artwork Count1 - Sort ArtistBeatles - Persistent IDF1204ED34404DBE3 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Let%20It%20Be/08%20I've%20Got%20A%20Feeling.m4a - File Folder Count4 - Library Folder Count1 - - 2406 - - Track ID2406 - NameOne After 909 - ArtistThe Beatles - ComposerLennon/McCartney - AlbumLet It Be - GenreRock - KindAAC audio file - Size4199485 - Total Time175541 - Disc Number1 - Disc Count1 - Track Number9 - Track Count12 - Year1970 - Date Modified2006-08-03T12:51:38Z - Date Added2009-10-03T14:52:38Z - Bit Rate192 - Sample Rate44100 - Normalization2243 - Artwork Count1 - Sort ArtistBeatles - Persistent IDD6F80D6714245431 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Let%20It%20Be/09%20One%20After%20909.m4a - File Folder Count4 - Library Folder Count1 - - 2408 - - Track ID2408 - NameThe Long And Winding Road - ArtistThe Beatles - ComposerLennon/McCartney - AlbumLet It Be - GenreRock - KindAAC audio file - Size5261366 - Total Time217894 - Disc Number1 - Disc Count1 - Track Number10 - Track Count12 - Year1970 - Date Modified2006-08-03T12:51:38Z - Date Added2009-10-03T14:52:38Z - Bit Rate192 - Sample Rate44100 - Normalization1727 - Artwork Count1 - Sort ArtistBeatles - Sort NameLong And Winding Road - Persistent IDF730382ACC72AB67 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Let%20It%20Be/10%20The%20Long%20And%20Winding%20Road.m4a - File Folder Count4 - Library Folder Count1 - - 2410 - - Track ID2410 - NameFor You Blue - ArtistThe Beatles - ComposerHarrison - AlbumLet It Be - GenreRock - KindAAC audio file - Size3688486 - Total Time152762 - Disc Number1 - Disc Count1 - Track Number11 - Track Count12 - Year1970 - Date Modified2006-08-03T12:51:38Z - Date Added2009-10-03T14:52:39Z - Bit Rate192 - Sample Rate44100 - Normalization933 - Artwork Count1 - Sort ArtistBeatles - Persistent IDCCDD31A498AF98C8 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Let%20It%20Be/11%20For%20You%20Blue.m4a - File Folder Count4 - Library Folder Count1 - - 2412 - - Track ID2412 - NameGet Back - ArtistThe Beatles - ComposerLennon/McCartney - AlbumLet It Be - GenreRock - KindAAC audio file - Size4560642 - Total Time187128 - Disc Number1 - Disc Count1 - Track Number12 - Track Count12 - Year1970 - Date Modified2006-08-03T12:51:38Z - Date Added2009-10-03T14:52:39Z - Bit Rate192 - Sample Rate44100 - Normalization1280 - Artwork Count1 - Sort ArtistBeatles - Persistent ID04A6D6BC5937FB56 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Let%20It%20Be/12%20Get%20Back.m4a - File Folder Count4 - Library Folder Count1 - - 2414 - - Track ID2414 - NameHelp! - ArtistThe Beatles - ComposerLennon [John], McCartney [Paul] - AlbumHelp! - GenreRock - KindAAC audio file - Size3354146 - Total Time141082 - Disc Number1 - Disc Count1 - Track Number1 - Track Count14 - Year1965 - Date Modified2006-08-08T12:00:20Z - Date Added2009-10-03T14:52:39Z - Bit Rate192 - Sample Rate44100 - Normalization1078 - Artwork Count1 - Sort ArtistBeatles - Persistent ID449F3CB64EEF19F8 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Help!/01%20Help!.m4a - File Folder Count4 - Library Folder Count1 - - 2416 - - Track ID2416 - NameThe Night Before - ArtistThe Beatles - ComposerLennon [John], McCartney [Paul] - AlbumHelp! - GenreRock - KindAAC audio file - Size3771206 - Total Time156710 - Disc Number1 - Disc Count1 - Track Number2 - Track Count14 - Year1965 - Date Modified2006-08-08T12:00:20Z - Date Added2009-10-03T14:52:39Z - Bit Rate192 - Sample Rate44100 - Normalization2064 - Artwork Count1 - Sort ArtistBeatles - Sort NameNight Before - Persistent ID3BFB8218E2CB84D4 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Help!/02%20The%20Night%20Before.m4a - File Folder Count4 - Library Folder Count1 - - 2418 - - Track ID2418 - NameYou've Got To Hide Your Love Away - ArtistThe Beatles - ComposerLennon [John], McCartney [Paul] - AlbumHelp! - GenreRock - KindAAC audio file - Size3132633 - Total Time131446 - Disc Number1 - Disc Count1 - Track Number3 - Track Count14 - Year1965 - Date Modified2006-08-08T12:00:20Z - Date Added2009-10-03T14:52:39Z - Bit Rate192 - Sample Rate44100 - Normalization1188 - Artwork Count1 - Sort ArtistBeatles - Persistent IDDDBAEB74806BFD19 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Help!/03%20You've%20Got%20To%20Hide%20Your%20Love%20Away.m4a - File Folder Count4 - Library Folder Count1 - - 2420 - - Track ID2420 - NameI Need You - ArtistThe Beatles - ComposerHarrison [George] - AlbumHelp! - GenreRock - KindAAC audio file - Size3612744 - Total Time151508 - Disc Number1 - Disc Count1 - Track Number4 - Track Count14 - Year1965 - Date Modified2006-08-08T12:00:20Z - Date Added2009-10-03T14:52:39Z - Bit Rate192 - Sample Rate44100 - Normalization1671 - Artwork Count1 - Sort ArtistBeatles - Persistent ID4A0E34F6A30C0268 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Help!/04%20I%20Need%20You.m4a - File Folder Count4 - Library Folder Count1 - - 2422 - - Track ID2422 - NameAnother Girl - ArtistThe Beatles - ComposerLennon [John], McCartney [Paul] - AlbumHelp! - GenreRock - KindAAC audio file - Size3046841 - Total Time128010 - Disc Number1 - Disc Count1 - Track Number5 - Track Count14 - Year1965 - Date Modified2006-08-08T12:00:20Z - Date Added2009-10-03T14:52:39Z - Bit Rate192 - Sample Rate44100 - Normalization2131 - Artwork Count1 - Sort ArtistBeatles - Persistent ID276350D310891260 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Help!/05%20Another%20Girl.m4a - File Folder Count4 - Library Folder Count1 - - 2424 - - Track ID2424 - NameYou're Gonna Lose That Girl - ArtistThe Beatles - ComposerLennon [John], McCartney [Paul] - AlbumHelp! - GenreRock - KindAAC audio file - Size3359097 - Total Time140432 - Disc Number1 - Disc Count1 - Track Number6 - Track Count14 - Year1965 - Date Modified2006-08-08T12:00:20Z - Date Added2009-10-03T14:52:39Z - Bit Rate192 - Sample Rate44100 - Normalization2604 - Artwork Count1 - Sort ArtistBeatles - Persistent ID2162C11CF9FA81B0 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Help!/06%20You're%20Gonna%20Lose%20That%20Girl.m4a - File Folder Count4 - Library Folder Count1 - - 2426 - - Track ID2426 - NameTicket to Ride - ArtistThe Beatles - ComposerLennon [John], McCartney [Paul] - AlbumHelp! - GenreRock - KindAAC audio file - Size4620473 - Total Time192515 - Disc Number1 - Disc Count1 - Track Number7 - Track Count14 - Year1965 - Date Modified2006-08-08T12:00:20Z - Date Added2009-10-03T14:52:40Z - Bit Rate192 - Sample Rate44100 - Normalization2507 - Artwork Count1 - Sort ArtistBeatles - Persistent ID1CE85F6BBA4DB28B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Help!/07%20Ticket%20to%20Ride.m4a - File Folder Count4 - Library Folder Count1 - - 2428 - - Track ID2428 - NameAct Naturally - ArtistThe Beatles - ComposerMorrison [Vonnie], Russell [Johnnie] - AlbumHelp! - GenreRock - KindAAC audio file - Size3646133 - Total Time153180 - Disc Number1 - Disc Count1 - Track Number8 - Track Count14 - Year1965 - Date Modified2006-08-08T12:00:20Z - Date Added2009-10-03T14:52:40Z - Bit Rate192 - Sample Rate44100 - Normalization1489 - Artwork Count1 - Sort ArtistBeatles - Persistent ID0C5C2A1A090DDC96 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Help!/08%20Act%20Naturally.m4a - File Folder Count4 - Library Folder Count1 - - 2430 - - Track ID2430 - NameIt`s Only Love - ArtistThe Beatles - ComposerLennon [John], McCartney [Paul] - AlbumHelp! - GenreRock - KindAAC audio file - Size2833648 - Total Time118815 - Disc Number1 - Disc Count1 - Track Number9 - Track Count14 - Year1965 - Date Modified2006-08-08T12:00:20Z - Date Added2009-10-03T14:52:40Z - Bit Rate192 - Sample Rate44100 - Normalization1163 - Artwork Count1 - Sort ArtistBeatles - Persistent ID5DD8BEEFA381E309 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Help!/09%20It%60s%20Only%20Love.m4a - File Folder Count4 - Library Folder Count1 - - 2432 - - Track ID2432 - NameYou Like Me Too Much - ArtistThe Beatles - ComposerHarrison [George] - AlbumHelp! - GenreRock - KindAAC audio file - Size3809936 - Total Time158823 - Disc Number1 - Disc Count1 - Track Number10 - Track Count14 - Year1965 - Date Modified2006-08-08T12:00:20Z - Date Added2009-10-03T14:52:40Z - Bit Rate192 - Sample Rate44100 - Normalization1736 - Artwork Count1 - Sort ArtistBeatles - Persistent IDBA28B68B7D531474 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Help!/10%20You%20Like%20Me%20Too%20Much.m4a - File Folder Count4 - Library Folder Count1 - - 2434 - - Track ID2434 - NameTell Me What You See - ArtistThe Beatles - ComposerLennon [John], McCartney [Paul] - AlbumHelp! - GenreRock - KindAAC audio file - Size3828681 - Total Time159728 - Disc Number1 - Disc Count1 - Track Number11 - Track Count14 - Year1965 - Date Modified2006-08-08T12:00:20Z - Date Added2009-10-03T14:52:40Z - Bit Rate192 - Sample Rate44100 - Normalization2095 - Artwork Count1 - Sort ArtistBeatles - Persistent IDDBF431D294FE2226 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Help!/11%20Tell%20Me%20What%20You%20See.m4a - File Folder Count4 - Library Folder Count1 - - 2436 - - Track ID2436 - NameI`ve Just Seen a Face - ArtistThe Beatles - ComposerLennon [John], McCartney [Paul] - AlbumHelp! - GenreRock - KindAAC audio file - Size3033676 - Total Time127174 - Disc Number1 - Disc Count1 - Track Number12 - Track Count14 - Year1965 - Date Modified2006-08-08T12:00:20Z - Date Added2009-10-03T14:52:40Z - Bit Rate192 - Sample Rate44100 - Normalization1278 - Artwork Count1 - Sort ArtistBeatles - Persistent ID7DC5157832E4A871 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Help!/12%20I%60ve%20Just%20Seen%20a%20Face.m4a - File Folder Count4 - Library Folder Count1 - - 2438 - - Track ID2438 - NameYesterday - ArtistThe Beatles - ComposerLennon [John], McCartney [Paul] - AlbumHelp! - GenreRock - KindAAC audio file - Size3030386 - Total Time127452 - Disc Number1 - Disc Count1 - Track Number13 - Track Count14 - Year1965 - Date Modified2006-08-08T12:00:20Z - Date Added2009-10-03T14:52:40Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3484587308 - Play Date UTC2014-06-02T15:25:08Z - Normalization898 - Artwork Count1 - Sort ArtistBeatles - Persistent ID65E6602BDDA0F1C9 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Help!/13%20Yesterday.m4a - File Folder Count4 - Library Folder Count1 - - 2440 - - Track ID2440 - NameDizzy Miss Lizzy - ArtistThe Beatles - ComposerWilliams [Larry] - AlbumHelp! - GenreRock - KindAAC audio file - Size4249063 - Total Time174264 - Disc Number1 - Disc Count1 - Track Number14 - Track Count14 - Year1965 - Date Modified2006-08-08T12:00:20Z - Date Added2009-10-03T14:52:41Z - Bit Rate192 - Sample Rate44100 - Normalization4075 - Artwork Count1 - Sort ArtistBeatles - Persistent ID7D2DADD4C60D121F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Help!/14%20Dizzy%20Miss%20Lizzy.m4a - File Folder Count4 - Library Folder Count1 - - 2442 - - Track ID2442 - NameCome Together - ArtistThe Beatles - ComposerLennon/McCartney - AlbumAbbey Road - GenrePop - KindAAC audio file - Size6248082 - Total Time260642 - Disc Number1 - Disc Count1 - Track Number1 - Track Count17 - Year1969 - Date Modified2006-08-08T12:04:10Z - Date Added2009-10-03T14:52:41Z - Bit Rate192 - Sample Rate44100 - Normalization589 - Artwork Count1 - Sort ArtistBeatles - Persistent ID79EE9CEAB518CB75 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Abbey%20Road/01%20Come%20Together.m4a - File Folder Count4 - Library Folder Count1 - - 2444 - - Track ID2444 - NameSomething - ArtistThe Beatles - ComposerHarrison - AlbumAbbey Road - GenrePop - KindAAC audio file - Size4406777 - Total Time183018 - Disc Number1 - Disc Count1 - Track Number2 - Track Count17 - Year1969 - Date Modified2006-08-08T12:04:10Z - Date Added2009-10-03T14:52:41Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3343639907 - Play Date UTC2009-12-14T07:21:47Z - Normalization832 - Artwork Count1 - Sort ArtistBeatles - Persistent IDF37D88B1D4E6D40C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Abbey%20Road/02%20Something.m4a - File Folder Count4 - Library Folder Count1 - - 2446 - - Track ID2446 - NameMaxwell's Silver Hammer - ArtistThe Beatles - ComposerLennon/McCartney - AlbumAbbey Road - GenrePop - KindAAC audio file - Size5023862 - Total Time207283 - Disc Number1 - Disc Count1 - Track Number3 - Track Count17 - Year1969 - Date Modified2006-08-08T12:04:08Z - Date Added2009-10-03T14:52:41Z - Bit Rate192 - Sample Rate44100 - Normalization841 - Artwork Count1 - Sort ArtistBeatles - Persistent ID575626F8AC94B860 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Abbey%20Road/03%20Maxwell's%20Silver%20Hammer.m4a - File Folder Count4 - Library Folder Count1 - - 2448 - - Track ID2448 - NameOh! Darling - ArtistThe Beatles - ComposerLennon/McCartney - AlbumAbbey Road - GenrePop - KindAAC audio file - Size5010554 - Total Time206725 - Disc Number1 - Disc Count1 - Track Number4 - Track Count17 - Year1969 - Date Modified2006-08-08T12:04:08Z - Date Added2009-10-03T14:52:41Z - Bit Rate192 - Sample Rate44100 - Normalization1435 - Artwork Count1 - Sort ArtistBeatles - Persistent ID845F5A6AC57797CC - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Abbey%20Road/04%20Oh!%20Darling.m4a - File Folder Count4 - Library Folder Count1 - - 2450 - - Track ID2450 - NameOctopus's Garden - ArtistThe Beatles - ComposerStarkey - AlbumAbbey Road - GenrePop - KindAAC audio file - Size4145452 - Total Time171176 - Disc Number1 - Disc Count1 - Track Number5 - Track Count17 - Year1969 - Date Modified2006-08-08T12:04:08Z - Date Added2009-10-03T14:52:41Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3343996448 - Play Date UTC2009-12-18T10:24:08Z - Normalization1118 - Artwork Count1 - Sort ArtistBeatles - Persistent ID294A7F6AC877EC87 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Abbey%20Road/05%20Octopus's%20Garden.m4a - File Folder Count4 - Library Folder Count1 - - 2452 - - Track ID2452 - NameI Want You (She's So Heavy) - ArtistThe Beatles - ComposerLennon/McCartney - AlbumAbbey Road - GenrePop - KindAAC audio file - Size11277961 - Total Time467184 - Disc Number1 - Disc Count1 - Track Number6 - Track Count17 - Year1969 - Date Modified2006-08-08T12:04:08Z - Date Added2009-10-03T14:52:41Z - Bit Rate192 - Sample Rate44100 - Normalization1365 - Artwork Count1 - Sort ArtistBeatles - Persistent IDCE2467175CA968BA - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Abbey%20Road/06%20I%20Want%20You%20(She's%20So%20Heavy).m4a - File Folder Count4 - Library Folder Count1 - - 2454 - - Track ID2454 - NameHere Comes The Sun - ArtistThe Beatles - ComposerHarrison - AlbumAbbey Road - GenrePop - KindAAC audio file - Size4502597 - Total Time185572 - Disc Number1 - Disc Count1 - Track Number7 - Track Count17 - Year1969 - Date Modified2006-08-08T12:04:08Z - Date Added2009-10-03T14:52:42Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3343996695 - Play Date UTC2009-12-18T10:28:15Z - Normalization696 - Artwork Count1 - Sort ArtistBeatles - Persistent ID6AD1A40DC419AF0B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Abbey%20Road/07%20Here%20Comes%20The%20Sun.m4a - File Folder Count4 - Library Folder Count1 - - 2456 - - Track ID2456 - NameBecause - ArtistThe Beatles - ComposerLennon/McCartney - AlbumAbbey Road - GenrePop - KindAAC audio file - Size4021041 - Total Time165533 - Disc Number1 - Disc Count1 - Track Number8 - Track Count17 - Year1969 - Date Modified2006-08-08T12:04:08Z - Date Added2009-10-03T14:52:42Z - Bit Rate192 - Sample Rate44100 - Normalization1267 - Artwork Count1 - Sort ArtistBeatles - Persistent ID837F440971710C12 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Abbey%20Road/08%20Because.m4a - File Folder Count4 - Library Folder Count1 - - 2458 - - Track ID2458 - NameYou Never Give Me Your Money - ArtistThe Beatles - ComposerLennon/McCartney - AlbumAbbey Road - GenrePop - KindAAC audio file - Size5867781 - Total Time242414 - Disc Number1 - Disc Count1 - Track Number9 - Track Count17 - Year1969 - Date Modified2006-08-08T12:04:08Z - Date Added2009-10-03T14:52:42Z - Bit Rate192 - Sample Rate44100 - Normalization1662 - Artwork Count1 - Sort ArtistBeatles - Persistent IDCE39A97B12B60437 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Abbey%20Road/09%20You%20Never%20Give%20Me%20Your%20Money.m4a - File Folder Count4 - Library Folder Count1 - - 2460 - - Track ID2460 - NameSun King - ArtistThe Beatles - ComposerLennon/McCartney - AlbumAbbey Road - GenrePop - KindAAC audio file - Size3559433 - Total Time146307 - Disc Number1 - Disc Count1 - Track Number10 - Track Count17 - Year1969 - Date Modified2006-08-08T12:04:08Z - Date Added2009-10-03T14:52:42Z - Bit Rate192 - Sample Rate44100 - Normalization470 - Artwork Count1 - Sort ArtistBeatles - Persistent IDEED522F31509BAC2 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Abbey%20Road/10%20Sun%20King.m4a - File Folder Count4 - Library Folder Count1 - - 2462 - - Track ID2462 - NameMean Mr. Mustard - ArtistThe Beatles - ComposerLennon/McCartney - AlbumAbbey Road - GenrePop - KindAAC audio file - Size1638048 - Total Time66314 - Disc Number1 - Disc Count1 - Track Number11 - Track Count17 - Year1969 - Date Modified2006-08-08T12:04:08Z - Date Added2009-10-03T14:52:42Z - Bit Rate192 - Sample Rate44100 - Normalization2721 - Artwork Count1 - Sort ArtistBeatles - Persistent ID702F8DDD8111E491 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Abbey%20Road/11%20Mean%20Mr.%20Mustard.m4a - File Folder Count4 - Library Folder Count1 - - 2464 - - Track ID2464 - NamePolythene Pam - ArtistThe Beatles - ComposerLennon/McCartney - AlbumAbbey Road - GenrePop - KindAAC audio file - Size1792480 - Total Time72746 - Disc Number1 - Disc Count1 - Track Number12 - Track Count17 - Year1969 - Date Modified2006-08-08T12:04:08Z - Date Added2009-10-03T14:52:42Z - Bit Rate192 - Sample Rate44100 - Normalization3174 - Artwork Count1 - Sort ArtistBeatles - Persistent ID764E695B0136287A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Abbey%20Road/12%20Polythene%20Pam.m4a - File Folder Count4 - Library Folder Count1 - - 2466 - - Track ID2466 - NameShe Came In Through The Bathroom Window - ArtistThe Beatles - ComposerLennon/McCartney - AlbumAbbey Road - GenrePop - KindAAC audio file - Size2873071 - Total Time117746 - Disc Number1 - Disc Count1 - Track Number13 - Track Count17 - Year1969 - Date Modified2006-08-08T12:04:08Z - Date Added2009-10-03T14:52:42Z - Bit Rate192 - Sample Rate44100 - Normalization2730 - Artwork Count1 - Sort ArtistBeatles - Persistent ID53AEF69E9088B366 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Abbey%20Road/13%20She%20Came%20In%20Through%20The%20Bathroom%20Window.m4a - File Folder Count4 - Library Folder Count1 - - 2468 - - Track ID2468 - NameGolden Slumbers - ArtistThe Beatles - ComposerLennon/McCartney - AlbumAbbey Road - GenrePop - KindAAC audio file - Size2244820 - Total Time91578 - Disc Number1 - Disc Count1 - Track Number14 - Track Count17 - Year1969 - Date Modified2006-08-08T12:04:08Z - Date Added2009-10-03T14:52:42Z - Bit Rate192 - Sample Rate44100 - Normalization758 - Artwork Count1 - Sort ArtistBeatles - Persistent ID45D7BC0666781800 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Abbey%20Road/14%20Golden%20Slumbers.m4a - File Folder Count4 - Library Folder Count1 - - 2470 - - Track ID2470 - NameCarry That Weight - ArtistThe Beatles - ComposerLennon/McCartney - AlbumAbbey Road - GenrePop - KindAAC audio file - Size2372030 - Total Time96872 - Disc Number1 - Disc Count1 - Track Number15 - Track Count17 - Year1969 - Date Modified2006-08-08T12:04:08Z - Date Added2009-10-03T14:52:42Z - Bit Rate192 - Sample Rate44100 - Skip Count1 - Skip Date2009-12-18T10:41:56Z - Normalization1992 - Artwork Count1 - Sort ArtistBeatles - Persistent ID1AB3D71F2B38D01F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Abbey%20Road/15%20Carry%20That%20Weight.m4a - File Folder Count4 - Library Folder Count1 - - 2472 - - Track ID2472 - NameThe End - ArtistThe Beatles - ComposerLennon/McCartney - AlbumAbbey Road - GenrePop - KindAAC audio file - Size3085147 - Total Time139829 - Disc Number1 - Disc Count1 - Track Number16 - Track Count17 - Year1969 - Date Modified2006-08-08T12:04:06Z - Date Added2009-10-03T14:52:42Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3343997689 - Play Date UTC2009-12-18T10:44:49Z - Skip Count1 - Skip Date2009-12-18T10:42:11Z - Normalization2678 - Artwork Count1 - Sort ArtistBeatles - Sort NameEnd - Persistent ID8FBFED0080AEF75E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Abbey%20Road/16%20The%20End.m4a - File Folder Count4 - Library Folder Count1 - - 2474 - - Track ID2474 - NameHer Majesty - ArtistThe Beatles - ComposerLennon/McCartney - AlbumAbbey Road - GenrePop - KindAAC audio file - Size602010 - Total Time23288 - Disc Number1 - Disc Count1 - Track Number17 - Track Count17 - Year1969 - Date Modified2006-08-08T12:04:06Z - Date Added2009-10-03T14:52:43Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3343997713 - Play Date UTC2009-12-18T10:45:13Z - Normalization370 - Artwork Count1 - Sort ArtistBeatles - Persistent IDDDBF66F97F318D02 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Abbey%20Road/17%20Her%20Majesty.m4a - File Folder Count4 - Library Folder Count1 - - 2476 - - Track ID2476 - NameA Hard Day's Night - ArtistThe Beatles - ComposerJohn Lennon/Paul McCartney - AlbumA Hard Day's Night - GenreRock - KindAAC audio file - Size3657082 - Total Time152553 - Disc Number1 - Disc Count1 - Track Number1 - Track Count13 - Year1964 - Date Modified2006-07-30T08:48:24Z - Date Added2009-10-03T14:52:43Z - Bit Rate192 - Sample Rate44100 - Skip Count1 - Skip Date2009-12-15T03:47:32Z - Normalization6778 - Artwork Count1 - Sort AlbumHard Day's Night - Sort ArtistBeatles - Sort NameHard Day's Night - Persistent ID6031BB030DA975F3 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/A%20Hard%20Day's%20Night/01%20A%20Hard%20Day's%20Night.m4a - File Folder Count4 - Library Folder Count1 - - 2478 - - Track ID2478 - NameI Should Have Known Better - ArtistThe Beatles - ComposerJohn Lennon/Paul McCartney - AlbumA Hard Day's Night - GenreRock - KindAAC audio file - Size3951102 - Total Time164117 - Disc Number1 - Disc Count1 - Track Number2 - Track Count13 - Year1964 - Date Modified2006-07-30T08:48:24Z - Date Added2009-10-03T14:52:43Z - Bit Rate192 - Sample Rate44100 - Skip Count1 - Skip Date2009-12-15T03:47:42Z - Normalization5769 - Artwork Count1 - Sort AlbumHard Day's Night - Sort ArtistBeatles - Persistent IDC15E79781F343171 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/A%20Hard%20Day's%20Night/02%20I%20Should%20Have%20Known%20Better.m4a - File Folder Count4 - Library Folder Count1 - - 2480 - - Track ID2480 - NameIf I Fell - ArtistThe Beatles - ComposerJohn Lennon/Paul McCartney - AlbumA Hard Day's Night - GenreRock - KindAAC audio file - Size3405944 - Total Time142035 - Disc Number1 - Disc Count1 - Track Number3 - Track Count13 - Year1964 - Date Modified2006-07-30T08:48:24Z - Date Added2009-10-03T14:52:43Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3343713604 - Play Date UTC2009-12-15T03:50:04Z - Normalization3437 - Artwork Count1 - Sort AlbumHard Day's Night - Sort ArtistBeatles - Persistent IDF967DBD871F2F66C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/A%20Hard%20Day's%20Night/03%20If%20I%20Fell.m4a - File Folder Count4 - Library Folder Count1 - - 2482 - - Track ID2482 - NameI'm Happy Just To Dance With You - ArtistThe Beatles - ComposerJohn Lennon/Paul McCartney - AlbumA Hard Day's Night - GenreRock - KindAAC audio file - Size2856204 - Total Time118722 - Disc Number1 - Disc Count1 - Track Number4 - Track Count13 - Year1964 - Date Modified2006-07-30T08:48:24Z - Date Added2009-10-03T14:52:43Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3343713722 - Play Date UTC2009-12-15T03:52:02Z - Normalization4271 - Artwork Count1 - Sort AlbumHard Day's Night - Sort ArtistBeatles - Persistent IDBBC32B8255E05098 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/A%20Hard%20Day's%20Night/04%20I'm%20Happy%20Just%20To%20Dance%20With%20You.m4a - File Folder Count4 - Library Folder Count1 - - 2484 - - Track ID2484 - NameAnd I Love Her - ArtistThe Beatles - ComposerJohn Lennon/Paul McCartney - AlbumA Hard Day's Night - GenreRock - KindAAC audio file - Size3650265 - Total Time151067 - Disc Number1 - Disc Count1 - Track Number5 - Track Count13 - Year1964 - Date Modified2006-07-30T08:48:24Z - Date Added2009-10-03T14:52:43Z - Bit Rate192 - Sample Rate44100 - Play Count3 - Play Date3393072589 - Play Date UTC2011-07-09T10:39:49Z - Normalization1753 - Artwork Count1 - Sort AlbumHard Day's Night - Sort ArtistBeatles - Persistent ID7AD75896D9C515C1 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/A%20Hard%20Day's%20Night/05%20And%20I%20Love%20Her.m4a - File Folder Count4 - Library Folder Count1 - - 2486 - - Track ID2486 - NameTell Me Why - ArtistThe Beatles - ComposerJohn Lennon/Paul McCartney - AlbumA Hard Day's Night - GenreRock - KindAAC audio file - Size3128926 - Total Time130076 - Disc Number1 - Disc Count1 - Track Number6 - Track Count13 - Year1964 - Date Modified2006-07-30T08:48:24Z - Date Added2009-10-03T14:52:43Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3343714003 - Play Date UTC2009-12-15T03:56:43Z - Normalization4964 - Artwork Count1 - Sort AlbumHard Day's Night - Sort ArtistBeatles - Persistent ID0E7FA440A4E24207 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/A%20Hard%20Day's%20Night/06%20Tell%20Me%20Why.m4a - File Folder Count4 - Library Folder Count1 - - 2488 - - Track ID2488 - NameCan't Buy Me Love - ArtistThe Beatles - ComposerJohn Lennon/Paul McCartney - AlbumA Hard Day's Night - GenreRock - KindAAC audio file - Size3247151 - Total Time134952 - Disc Number1 - Disc Count1 - Track Number7 - Track Count13 - Year1964 - Date Modified2006-07-30T08:48:24Z - Date Added2009-10-03T14:52:43Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3343714138 - Play Date UTC2009-12-15T03:58:58Z - Normalization4053 - Artwork Count1 - Sort AlbumHard Day's Night - Sort ArtistBeatles - Persistent ID405792A4749E4E78 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/A%20Hard%20Day's%20Night/07%20Can't%20Buy%20Me%20Love.m4a - File Folder Count4 - Library Folder Count1 - - 2490 - - Track ID2490 - NameAny Time At All - ArtistThe Beatles - ComposerJohn Lennon/Paul McCartney - AlbumA Hard Day's Night - GenreRock - KindAAC audio file - Size3221265 - Total Time133420 - Disc Number1 - Disc Count1 - Track Number8 - Track Count13 - Year1964 - Date Modified2006-07-30T08:48:24Z - Date Added2009-10-03T14:52:44Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3343714272 - Play Date UTC2009-12-15T04:01:12Z - Normalization4975 - Artwork Count1 - Sort AlbumHard Day's Night - Sort ArtistBeatles - Persistent IDA05400C3E8ADA534 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/A%20Hard%20Day's%20Night/08%20Any%20Time%20At%20All.m4a - File Folder Count4 - Library Folder Count1 - - 2492 - - Track ID2492 - NameI'll Cry Instead - ArtistThe Beatles - ComposerJohn Lennon/Paul McCartney - AlbumA Hard Day's Night - GenreRock - KindAAC audio file - Size2590233 - Total Time107739 - Disc Number1 - Disc Count1 - Track Number9 - Track Count13 - Year1964 - Date Modified2006-07-30T08:48:26Z - Date Added2009-10-03T14:52:44Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3343714380 - Play Date UTC2009-12-15T04:03:00Z - Normalization3434 - Artwork Count1 - Sort AlbumHard Day's Night - Sort ArtistBeatles - Persistent ID7FF01E9C5B1DDECE - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/A%20Hard%20Day's%20Night/09%20I'll%20Cry%20Instead.m4a - File Folder Count4 - Library Folder Count1 - - 2494 - - Track ID2494 - NameThings We Said Today - ArtistThe Beatles - ComposerJohn Lennon/Paul McCartney - AlbumA Hard Day's Night - GenreRock - KindAAC audio file - Size3806318 - Total Time158846 - Disc Number1 - Disc Count1 - Track Number10 - Track Count13 - Year1964 - Date Modified2006-07-30T08:48:26Z - Date Added2009-10-03T14:52:44Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3343714538 - Play Date UTC2009-12-15T04:05:38Z - Normalization2536 - Artwork Count1 - Sort AlbumHard Day's Night - Sort ArtistBeatles - Persistent ID4CD46D27A793B00E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/A%20Hard%20Day's%20Night/10%20Things%20We%20Said%20Today.m4a - File Folder Count4 - Library Folder Count1 - - 2496 - - Track ID2496 - NameWhen I Get Home - ArtistThe Beatles - ComposerJohn Lennon/Paul McCartney - AlbumA Hard Day's Night - GenreRock - KindAAC audio file - Size3326070 - Total Time138389 - Disc Number1 - Disc Count1 - Track Number11 - Track Count13 - Year1964 - Date Modified2006-07-30T08:48:26Z - Date Added2009-10-03T14:52:44Z - Bit Rate192 - Sample Rate44100 - Normalization6019 - Artwork Count1 - Sort AlbumHard Day's Night - Sort ArtistBeatles - Persistent ID996BCCEA9930B059 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/A%20Hard%20Day's%20Night/11%20When%20I%20Get%20Home.m4a - File Folder Count4 - Library Folder Count1 - - 2498 - - Track ID2498 - NameYou Can't Do That - ArtistThe Beatles - ComposerJohn Lennon/Paul McCartney - AlbumA Hard Day's Night - GenreRock - KindAAC audio file - Size3778233 - Total Time157638 - Disc Number1 - Disc Count1 - Track Number12 - Track Count13 - Year1964 - Date Modified2006-07-30T08:48:26Z - Date Added2009-10-03T14:52:44Z - Bit Rate192 - Sample Rate44100 - Normalization5327 - Artwork Count1 - Sort AlbumHard Day's Night - Sort ArtistBeatles - Persistent IDF7EE97931253A018 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/A%20Hard%20Day's%20Night/12%20You%20Can't%20Do%20That.m4a - File Folder Count4 - Library Folder Count1 - - 2500 - - Track ID2500 - NameI'll Be Back - ArtistThe Beatles - ComposerJohn Lennon/Paul McCartney - AlbumA Hard Day's Night - GenreRock - KindAAC audio file - Size3457478 - Total Time140572 - Disc Number1 - Disc Count1 - Track Number13 - Track Count13 - Year1964 - Date Modified2006-07-30T08:48:26Z - Date Added2009-10-03T14:52:44Z - Bit Rate192 - Sample Rate44100 - Normalization3428 - Artwork Count1 - Sort AlbumHard Day's Night - Sort ArtistBeatles - Persistent ID5F261B393BA69850 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/A%20Hard%20Day's%20Night/13%20I'll%20Be%20Back.m4a - File Folder Count4 - Library Folder Count1 - - 2502 - - Track ID2502 - NameKafi - ArtistTerra Incognita - AlbumTribal Gathering - GenreNew Age - KindAAC audio file - Size7483098 - Total Time300293 - Disc Number1 - Disc Count1 - Track Number1 - Track Count14 - Year1993 - Date Modified2011-06-09T05:52:33Z - Date Added2009-10-03T14:52:44Z - Bit Rate192 - Sample Rate44100 - Normalization1130 - Artwork Count1 - Persistent IDD3046FAE00959817 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Terra%20Incognita/Tribal%20Gathering/01%20Kafi.m4a - File Folder Count4 - Library Folder Count1 - - 2504 - - Track ID2504 - NameEtruscan Places - ArtistTerra Incognita - AlbumTribal Gathering - GenreNew Age - KindAAC audio file - Size9487055 - Total Time382506 - Disc Number1 - Disc Count1 - Track Number2 - Track Count14 - Year1993 - Date Modified2011-06-09T05:52:33Z - Date Added2009-10-03T14:52:44Z - Bit Rate192 - Sample Rate44100 - Normalization430 - Artwork Count1 - Persistent IDACCE25227B341EDF - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Terra%20Incognita/Tribal%20Gathering/02%20Etruscan%20Places.m4a - File Folder Count4 - Library Folder Count1 - - 2506 - - Track ID2506 - NameTilak - ArtistTerra Incognita - AlbumTribal Gathering - GenreNew Age - KindAAC audio file - Size7318145 - Total Time292893 - Disc Number1 - Disc Count1 - Track Number3 - Track Count14 - Year1993 - Date Modified2011-06-09T05:52:33Z - Date Added2009-10-03T14:52:44Z - Bit Rate192 - Sample Rate44100 - Normalization1193 - Artwork Count1 - Persistent IDF4CA19037447C10D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Terra%20Incognita/Tribal%20Gathering/03%20Tilak.m4a - File Folder Count4 - Library Folder Count1 - - 2508 - - Track ID2508 - NameSacred Dance - ArtistTerra Incognita - AlbumTribal Gathering - GenreNew Age - KindAAC audio file - Size4273963 - Total Time167106 - Disc Number1 - Disc Count1 - Track Number4 - Track Count14 - Year1993 - Date Modified2011-06-09T05:52:32Z - Date Added2009-10-03T14:52:45Z - Bit Rate192 - Sample Rate44100 - Normalization938 - Artwork Count1 - Persistent ID54A78DD65BE25242 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Terra%20Incognita/Tribal%20Gathering/04%20Sacred%20Dance.m4a - File Folder Count4 - Library Folder Count1 - - 2510 - - Track ID2510 - NameCala Violina - ArtistTerra Incognita - AlbumTribal Gathering - GenreNew Age - KindAAC audio file - Size6715719 - Total Time268000 - Disc Number1 - Disc Count1 - Track Number5 - Track Count14 - Year1993 - Date Modified2011-06-09T05:52:30Z - Date Added2009-10-03T14:52:45Z - Bit Rate192 - Sample Rate44100 - Normalization965 - Artwork Count1 - Persistent ID520FED7CEA0DAC13 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Terra%20Incognita/Tribal%20Gathering/05%20Cala%20Violina.m4a - File Folder Count4 - Library Folder Count1 - - 2512 - - Track ID2512 - NameSufis And Gypsies - ArtistTerra Incognita - AlbumTribal Gathering - GenreNew Age - KindAAC audio file - Size8610518 - Total Time346266 - Disc Number1 - Disc Count1 - Track Number6 - Track Count14 - Year1993 - Date Modified2011-06-09T05:52:32Z - Date Added2009-10-03T14:52:45Z - Bit Rate192 - Sample Rate44100 - Normalization743 - Artwork Count1 - Persistent IDA4381B8BBCBB057C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Terra%20Incognita/Tribal%20Gathering/06%20Sufis%20And%20Gypsies.m4a - File Folder Count4 - Library Folder Count1 - - 2514 - - Track ID2514 - NameMountains Of The Moon - ArtistTerra Incognita - AlbumTribal Gathering - GenreNew Age - KindAAC audio file - Size10224971 - Total Time412533 - Disc Number1 - Disc Count1 - Track Number7 - Track Count14 - Year1993 - Date Modified2011-06-09T05:52:31Z - Date Added2009-10-03T14:52:45Z - Bit Rate192 - Sample Rate44100 - Normalization1211 - Artwork Count1 - Persistent ID85585C1819EA9EEA - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Terra%20Incognita/Tribal%20Gathering/07%20Mountains%20Of%20The%20Moon.m4a - File Folder Count4 - Library Folder Count1 - - 2516 - - Track ID2516 - NameUnder The Carob Tree - ArtistTerra Incognita - AlbumTribal Gathering - GenreNew Age - KindAAC audio file - Size5395331 - Total Time212560 - Disc Number1 - Disc Count1 - Track Number8 - Track Count14 - Year1993 - Date Modified2011-06-09T05:52:32Z - Date Added2009-10-03T14:52:45Z - Bit Rate192 - Sample Rate44100 - Normalization810 - Artwork Count1 - Persistent ID23ADB075D0FBF061 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Terra%20Incognita/Tribal%20Gathering/08%20Under%20The%20Carob%20Tree.m4a - File Folder Count4 - Library Folder Count1 - - 2518 - - Track ID2518 - NameRhythm House Classic - ArtistTerra Incognita - AlbumTribal Gathering - GenreNew Age - KindAAC audio file - Size6414150 - Total Time255533 - Disc Number1 - Disc Count1 - Track Number9 - Track Count14 - Year1993 - Date Modified2011-06-09T05:52:31Z - Date Added2009-10-03T14:52:45Z - Bit Rate192 - Sample Rate44100 - Normalization871 - Artwork Count1 - Persistent ID0C084BDCB098BC87 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Terra%20Incognita/Tribal%20Gathering/09%20Rhythm%20House%20Classic.m4a - File Folder Count4 - Library Folder Count1 - - 2520 - - Track ID2520 - NameNever Mind The Pandits - ArtistTerra Incognita - AlbumTribal Gathering - GenreNew Age - KindAAC audio file - Size7266120 - Total Time290733 - Disc Number1 - Disc Count1 - Track Number10 - Track Count14 - Year1993 - Date Modified2011-06-09T05:52:31Z - Date Added2009-10-03T14:52:45Z - Bit Rate192 - Sample Rate44100 - Normalization590 - Artwork Count1 - Persistent ID98729B0B9190E6D5 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Terra%20Incognita/Tribal%20Gathering/10%20Never%20Mind%20The%20Pandits.m4a - File Folder Count4 - Library Folder Count1 - - 2522 - - Track ID2522 - NameHavana Baba - ArtistTerra Incognita - AlbumTribal Gathering - GenreNew Age - KindAAC audio file - Size3951996 - Total Time153466 - Disc Number1 - Disc Count1 - Track Number11 - Track Count14 - Year1993 - Date Modified2011-06-09T05:52:28Z - Date Added2009-10-03T14:52:46Z - Bit Rate192 - Sample Rate44100 - Normalization1050 - Artwork Count1 - Persistent IDD7935D2C570F248E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Terra%20Incognita/Tribal%20Gathering/11%20Havana%20Baba.m4a - File Folder Count4 - Library Folder Count1 - - 2524 - - Track ID2524 - NameTribal Gathering - ArtistTerra Incognita - AlbumTribal Gathering - GenreNew Age - KindAAC audio file - Size11128637 - Total Time450106 - Disc Number1 - Disc Count1 - Track Number12 - Track Count14 - Year1993 - Date Modified2011-06-09T05:52:29Z - Date Added2009-10-03T14:52:46Z - Bit Rate192 - Sample Rate44100 - Normalization1258 - Artwork Count1 - Persistent IDAB12F8C0F259C3E4 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Terra%20Incognita/Tribal%20Gathering/12%20Tribal%20Gathering.m4a - File Folder Count4 - Library Folder Count1 - - 2526 - - Track ID2526 - NameZenith - ArtistTerra Incognita - AlbumTribal Gathering - GenreNew Age - KindAAC audio file - Size4849388 - Total Time190666 - Disc Number1 - Disc Count1 - Track Number13 - Track Count14 - Year1993 - Date Modified2011-06-09T05:52:30Z - Date Added2009-10-03T14:52:46Z - Bit Rate192 - Sample Rate44100 - Normalization1207 - Artwork Count1 - Persistent IDFE35240F6D8E5409 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Terra%20Incognita/Tribal%20Gathering/13%20Zenith.m4a - File Folder Count4 - Library Folder Count1 - - 2528 - - Track ID2528 - NameShahana - ArtistTerra Incognita - AlbumTribal Gathering - GenreNew Age - KindAAC audio file - Size9260024 - Total Time370826 - Disc Number1 - Disc Count1 - Track Number14 - Track Count14 - Year1993 - Date Modified2011-06-09T05:52:29Z - Date Added2009-10-03T14:52:46Z - Bit Rate192 - Sample Rate44100 - Normalization1212 - Artwork Count1 - Persistent ID94299C6A4330E8A9 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Terra%20Incognita/Tribal%20Gathering/14%20Shahana.m4a - File Folder Count4 - Library Folder Count1 - - 2530 - - Track ID2530 - NamePavanathmaja - Nata - ArtistT.V. Shankaranarayanan - AlbumThe Virtuoso - GenreClassical - KindAAC audio file - Size8920118 - Total Time368127 - Track Number1 - Track Count6 - Date Modified2006-07-30T02:57:40Z - Date Added2009-10-03T14:52:46Z - Bit Rate192 - Sample Rate44100 - Normalization1008 - Artwork Count1 - Sort AlbumVirtuoso - Persistent ID49103ED46281D11E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/T.V.%20Shankaranarayanan/The%20Virtuoso/01%20Pavanathmaja%20-%20Nata.m4a - File Folder Count4 - Library Folder Count1 - - 2532 - - Track ID2532 - NameParipalayamam - Rithigowla - ArtistT.V. Shankaranarayanan - AlbumThe Virtuoso - GenreClassical - KindAAC audio file - Size7499149 - Total Time309404 - Track Number2 - Track Count6 - Date Modified2006-07-30T02:57:42Z - Date Added2009-10-03T14:52:46Z - Bit Rate192 - Sample Rate44100 - Normalization1015 - Artwork Count1 - Sort AlbumVirtuoso - Persistent IDD125BFBEEE8064C7 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/T.V.%20Shankaranarayanan/The%20Virtuoso/02%20Paripalayamam%20-%20Rithigowla.m4a - File Folder Count4 - Library Folder Count1 - - 2534 - - Track ID2534 - NameSahasrakara Mandithe - Vachaspathi - ArtistT.V. Shankaranarayanan - AlbumThe Virtuoso - GenreClassical - KindAAC audio file - Size17519544 - Total Time723485 - Track Number3 - Track Count6 - Date Modified2006-07-30T02:57:42Z - Date Added2009-10-03T14:52:47Z - Bit Rate192 - Sample Rate44100 - Normalization1011 - Artwork Count1 - Sort AlbumVirtuoso - Persistent ID5B20FCBF8B0977D4 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/T.V.%20Shankaranarayanan/The%20Virtuoso/03%20Sahasrakara%20Mandithe%20-%20Vachaspathi.m4a - File Folder Count4 - Library Folder Count1 - - 2536 - - Track ID2536 - NameAadum Chidambaramo - Behag - ArtistT.V. Shankaranarayanan - AlbumThe Virtuoso - GenreClassical - KindAAC audio file - Size13057035 - Total Time539073 - Track Number4 - Track Count6 - Date Modified2006-07-30T02:57:42Z - Date Added2009-10-03T14:52:47Z - Bit Rate192 - Sample Rate44100 - Normalization1011 - Artwork Count1 - Sort AlbumVirtuoso - Persistent ID5A58E5BD45E7E23D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/T.V.%20Shankaranarayanan/The%20Virtuoso/04%20Aadum%20Chidambaramo%20-%20Behag.m4a - File Folder Count4 - Library Folder Count1 - - 2538 - - Track ID2538 - NameEvarunnaru - Malavasri - ArtistT.V. Shankaranarayanan - AlbumThe Virtuoso - GenreClassical - KindAAC audio file - Size4728466 - Total Time194674 - Track Number5 - Track Count6 - Date Modified2006-07-30T02:57:42Z - Date Added2009-10-03T14:52:47Z - Bit Rate192 - Sample Rate44100 - Normalization1110 - Artwork Count1 - Sort AlbumVirtuoso - Persistent IDDF3454842BD9E904 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/T.V.%20Shankaranarayanan/The%20Virtuoso/05%20Evarunnaru%20-%20Malavasri.m4a - File Folder Count4 - Library Folder Count1 - - 2540 - - Track ID2540 - NameParamapavana Rama - Poorvi Kalyani - ArtistT.V. Shankaranarayanan - AlbumThe Virtuoso - GenreClassical - KindAAC audio file - Size44480145 - Total Time1837602 - Track Number6 - Track Count6 - Date Modified2006-07-30T02:57:44Z - Date Added2009-10-03T14:52:47Z - Bit Rate192 - Sample Rate44100 - Normalization1028 - Artwork Count1 - Sort AlbumVirtuoso - Persistent IDE0004BE7F63F0E3D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/T.V.%20Shankaranarayanan/The%20Virtuoso/06%20Paramapavana%20Rama%20-%20Poorvi%20Kalyani.m4a - File Folder Count4 - Library Folder Count1 - - 2542 - - Track ID2542 - NameBruckner: Symphony #6 In A, WAB 106 - 1. Maestoso - ArtistSüddeutsche Philharmonie - ComposerBruckner, Anton (1824 - 1896) - AlbumBruckner: Symphony #6 - GenreClassical - KindAAC audio file - Size19131643 - Total Time790243 - Disc Number1 - Disc Count1 - Track Number1 - Track Count4 - Year1994 - Date Modified2006-08-08T06:50:44Z - Date Added2009-10-03T14:52:48Z - Bit Rate192 - Sample Rate44100 - Normalization756 - Artwork Count1 - Persistent ID1700DEA67B91B800 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Su%CC%88ddeutsche%20Philharmonie/Bruckner_%20Symphony%20%236/01%20Bruckner_%20Symphony%20%236%20In%20A,%20WAB%20106%20-%201.%20Maestoso.m4a - File Folder Count4 - Library Folder Count1 - - 2544 - - Track ID2544 - NameRaat Ki Daldal Hain - ArtistSukhwindara Singh - ComposerA.R. Rahman/Javed Akhtar - Album1947 - GenreSoundtrack - KindAAC audio file - Size5871358 - Total Time244691 - Track Number4 - Year1999 - Date Modified2007-07-27T05:54:36Z - Date Added2009-10-03T14:52:48Z - Bit Rate192 - Sample Rate44100 - Normalization1316 - Persistent IDEF103E04188F4F62 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Sukhwindara%20Singh/1947/04%20Raat%20Ki%20Daldal%20Hain.m4a - File Folder Count4 - Library Folder Count1 - - 2546 - - Track ID2546 - NameRaat Ki Daldal Hain - ArtistSukhwindara Singh - ComposerA.R. Rahman/Javed Akhtar - Album1947 - GenreSoundtrack - KindAAC audio file - Size5874579 - Total Time244713 - Track Number4 - Year1999 - Date Modified2007-01-17T10:32:20Z - Date Added2009-10-03T14:52:48Z - Bit Rate192 - Sample Rate44100 - Normalization1316 - Persistent ID531DFED7473C1DDC - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Sukhwindara%20Singh/1947/04%20Raat%20Ki%20Daldal%20Hain%202.m4a - File Folder Count4 - Library Folder Count1 - - 2548 - - Track ID2548 - NameRaat Ki Daldal Hain - ArtistSukhwindara Singh - ComposerA.R. Rahman/Javed Akhtar - Album1947 - GenreSoundtrack - KindAAC audio file - Size5874579 - Total Time244713 - Track Number4 - Year1999 - Date Modified2006-12-27T09:56:32Z - Date Added2009-10-03T14:52:48Z - Bit Rate192 - Sample Rate44100 - Normalization1316 - Persistent ID107C6B9606D5FC4A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Sukhwindara%20Singh/1947/04%20Raat%20Ki%20Daldal%20Hain%203.m4a - File Folder Count4 - Library Folder Count1 - - 2550 - - Track ID2550 - NameRaat Ki Daldal Hain - ArtistSukhwindara Singh - ComposerA.R. Rahman/Javed Akhtar - Album1947 - GenreSoundtrack - KindAAC audio file - Size5874579 - Total Time244713 - Track Number4 - Year1999 - Date Modified2006-12-26T05:35:18Z - Date Added2009-10-03T14:52:48Z - Bit Rate192 - Sample Rate44100 - Normalization1316 - Persistent ID79BE958824DB7415 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Sukhwindara%20Singh/1947/04%20Raat%20Ki%20Daldal%20Hain%204.m4a - File Folder Count4 - Library Folder Count1 - - 2552 - - Track ID2552 - NameRaat Ki Daldal Hain - ArtistSukhwindara Singh - ComposerA.R. Rahman/Javed Akhtar - Album1947 - GenreSoundtrack - KindAAC audio file - Size5761897 - Total Time244691 - Track Number4 - Year1999 - Date Modified2007-12-02T07:36:04Z - Date Added2009-10-03T14:52:48Z - Bit Rate186 - Sample Rate44100 - Normalization1316 - Persistent IDAB26E8F7A1E18D78 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Sukhwindara%20Singh/1947/04%20Raat%20Ki%20Daldal%20Hain%201.m4a - File Folder Count4 - Library Folder Count1 - - 2554 - - Track ID2554 - NameNavaragamalika Varnam - ArtistString Quartet - AlbumResonance - GenreWorld - KindAAC audio file - Size6304012 - Total Time262035 - Track Number1 - Track Count9 - Year2001 - Date Modified2006-07-30T08:38:34Z - Date Added2009-10-03T14:52:49Z - Bit Rate192 - Sample Rate44100 - Normalization1175 - Artwork Count1 - Persistent ID77E144A95A9E661C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/String%20Quartet/Resonance/01%20Navaragamalika%20Varnam.m4a - File Folder Count4 - Library Folder Count1 - - 2556 - - Track ID2556 - NamePalukavademira - ArtistString Quartet - AlbumResonance - GenreWorld - KindAAC audio file - Size5494285 - Total Time229016 - Track Number2 - Track Count9 - Year2001 - Date Modified2006-07-30T08:38:34Z - Date Added2009-10-03T14:52:49Z - Bit Rate192 - Sample Rate44100 - Normalization1293 - Artwork Count1 - Persistent ID99EB841BC15BA780 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/String%20Quartet/Resonance/02%20Palukavademira.m4a - File Folder Count4 - Library Folder Count1 - - 2558 - - Track ID2558 - NameEsane - ArtistString Quartet - AlbumResonance - GenreWorld - KindAAC audio file - Size9089233 - Total Time376835 - Track Number3 - Track Count9 - Year2001 - Date Modified2006-07-30T08:38:34Z - Date Added2009-10-03T14:52:49Z - Bit Rate192 - Sample Rate44100 - Normalization768 - Artwork Count1 - Persistent IDD95A75999346C1BE - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/String%20Quartet/Resonance/03%20Esane.m4a - File Folder Count4 - Library Folder Count1 - - 2560 - - Track ID2560 - NameRaghuvamsa - ArtistString Quartet - AlbumResonance - GenreWorld - KindAAC audio file - Size11988996 - Total Time496928 - Track Number4 - Track Count9 - Year2001 - Date Modified2006-07-30T08:38:34Z - Date Added2009-10-03T14:52:49Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3457591381 - Play Date UTC2013-07-25T04:33:01Z - Normalization872 - Artwork Count1 - Persistent IDB6F358356DFF9E31 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/String%20Quartet/Resonance/04%20Raghuvamsa.m4a - File Folder Count4 - Library Folder Count1 - - 2562 - - Track ID2562 - NameAmba Kamakshi - ArtistString Quartet - AlbumResonance - GenreWorld - KindAAC audio file - Size8654457 - Total Time360209 - Track Number5 - Track Count9 - Year2001 - Date Modified2006-07-30T08:38:34Z - Date Added2009-10-03T14:52:49Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3457591742 - Play Date UTC2013-07-25T04:39:02Z - Normalization1383 - Artwork Count1 - Persistent ID300B92928FF380F0 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/String%20Quartet/Resonance/05%20Amba%20Kamakshi.m4a - File Folder Count4 - Library Folder Count1 - - 2564 - - Track ID2564 - NameMokshamu - ArtistString Quartet - AlbumResonance - GenreWorld - KindAAC audio file - Size9264808 - Total Time384056 - Track Number6 - Track Count9 - Year2001 - Date Modified2006-07-30T08:38:34Z - Date Added2009-10-03T14:52:49Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3340458300 - Play Date UTC2009-11-07T11:35:00Z - Normalization1120 - Artwork Count1 - Persistent ID4AA9D0B5C479CA4C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/String%20Quartet/Resonance/06%20Mokshamu.m4a - File Folder Count4 - Library Folder Count1 - - 2566 - - Track ID2566 - NameSara Sara Samarai - ArtistString Quartet - AlbumResonance - GenreWorld - KindAAC audio file - Size4045660 - Total Time168807 - Track Number7 - Track Count9 - Year2001 - Date Modified2006-07-30T08:38:34Z - Date Added2009-10-03T14:52:49Z - Bit Rate192 - Sample Rate44100 - Skip Count1 - Skip Date2013-07-31T06:59:41Z - Normalization1000 - Artwork Count1 - Persistent IDB57999E06DD6A4F4 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/String%20Quartet/Resonance/07%20Sara%20Sara%20Samarai.m4a - File Folder Count4 - Library Folder Count1 - - 2568 - - Track ID2568 - NameMohanalahari - ArtistString Quartet - AlbumResonance - GenreWorld - KindAAC audio file - Size13511868 - Total Time560342 - Track Number8 - Track Count9 - Year2001 - Date Modified2006-07-30T08:38:34Z - Date Added2009-10-03T14:52:49Z - Bit Rate192 - Sample Rate44100 - Normalization784 - Artwork Count1 - Persistent ID7D2802E18E50803D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/String%20Quartet/Resonance/08%20Mohanalahari.m4a - File Folder Count4 - Library Folder Count1 - - 2570 - - Track ID2570 - NameKrishna Nee Begane - ArtistString Quartet - AlbumResonance - GenreWorld - KindAAC audio file - Size10506998 - Total Time433538 - Track Number9 - Track Count9 - Year2001 - Date Modified2006-07-30T08:38:36Z - Date Added2009-10-03T14:52:49Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Persistent IDFA60481B99EE702E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/String%20Quartet/Resonance/09%20Krishna%20Nee%20Begane.m4a - File Folder Count4 - Library Folder Count1 - - 2572 - - Track ID2572 - NameA Thousand Years - ArtistSting - ComposerSting, Kipper - AlbumBrand New Day - GenreRock - KindAAC audio file - Size8664958 - Total Time358073 - Disc Number1 - Disc Count1 - Track Number1 - Track Count10 - Year2000 - Date Modified2006-08-13T06:47:10Z - Date Added2009-10-03T14:52:50Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3441561867 - Play Date UTC2013-01-20T15:54:27Z - Normalization1248 - Artwork Count1 - Sort NameThousand Years - Persistent ID041EDC60A52BCD4E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Sting/Brand%20New%20Day/01%20A%20Thousand%20Years.m4a - File Folder Count4 - Library Folder Count1 - - 2574 - - Track ID2574 - NameDesert Rose - ArtistSting - ComposerSting, Kipper - AlbumBrand New Day - GenreRock - KindAAC audio file - Size6932597 - Total Time285905 - Disc Number1 - Disc Count1 - Track Number2 - Track Count10 - Year2000 - Date Modified2006-08-13T06:47:06Z - Date Added2009-10-03T14:52:50Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3483120773 - Play Date UTC2014-05-16T16:02:53Z - Skip Count1 - Skip Date2013-01-20T15:54:34Z - Normalization3584 - Artwork Count1 - Persistent IDBAABEC81F6BBEC8C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Sting/Brand%20New%20Day/02%20Desert%20Rose.m4a - File Folder Count4 - Library Folder Count1 - - 2576 - - Track ID2576 - NameBig Lie Small World - ArtistSting - ComposerSting - AlbumBrand New Day - GenreRock - KindAAC audio file - Size7397230 - Total Time305108 - Disc Number1 - Disc Count1 - Track Number3 - Track Count10 - Year2000 - Date Modified2006-08-13T06:47:02Z - Date Added2009-10-03T14:52:50Z - Bit Rate192 - Sample Rate44100 - Normalization1234 - Artwork Count1 - Persistent IDA4228866DFAC6ED9 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Sting/Brand%20New%20Day/03%20Big%20Lie%20Small%20World.m4a - File Folder Count4 - Library Folder Count1 - - 2578 - - Track ID2578 - NameAfter The Rain Has Fallen - ArtistSting - ComposerSting - AlbumBrand New Day - GenreRock - KindAAC audio file - Size7348312 - Total Time303088 - Disc Number1 - Disc Count1 - Track Number4 - Track Count10 - Year2000 - Date Modified2006-08-13T06:47:00Z - Date Added2009-10-03T14:52:50Z - Bit Rate192 - Sample Rate44100 - Normalization3538 - Artwork Count1 - Persistent IDD350A8CADA545C83 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Sting/Brand%20New%20Day/04%20After%20The%20Rain%20Has%20Fallen.m4a - File Folder Count4 - Library Folder Count1 - - 2580 - - Track ID2580 - NamePerfect Love...Gone Wrong - ArtistSting - ComposerSting - AlbumBrand New Day - GenreRock - KindAAC audio file - Size7860486 - Total Time324241 - Disc Number1 - Disc Count1 - Track Number5 - Track Count10 - Year2000 - Date Modified2006-08-13T06:46:56Z - Date Added2009-10-03T14:52:50Z - Bit Rate192 - Sample Rate44100 - Normalization2099 - Artwork Count1 - Persistent ID1A46A4E44CDA505F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Sting/Brand%20New%20Day/05%20Perfect%20Love...Gone%20Wrong.m4a - File Folder Count4 - Library Folder Count1 - - 2582 - - Track ID2582 - NameTomorrow We'll See - ArtistSting - ComposerSting - AlbumBrand New Day - GenreRock - KindAAC audio file - Size6979094 - Total Time289388 - Disc Number1 - Disc Count1 - Track Number6 - Track Count10 - Year2000 - Date Modified2006-08-13T06:46:52Z - Date Added2009-10-03T14:52:50Z - Bit Rate192 - Sample Rate44100 - Normalization1281 - Artwork Count1 - Persistent IDFCE0BBA749877B7D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Sting/Brand%20New%20Day/06%20Tomorrow%20We'll%20See.m4a - File Folder Count4 - Library Folder Count1 - - 2584 - - Track ID2584 - NamePrelude To The End Of The Game - ArtistSting - ComposerSting - AlbumBrand New Day - GenreRock - KindAAC audio file - Size510661 - Total Time20966 - Disc Number1 - Disc Count1 - Track Number7 - Track Count10 - Year2000 - Date Modified2006-08-13T06:46:50Z - Date Added2009-10-03T14:52:50Z - Bit Rate192 - Sample Rate44100 - Normalization120 - Artwork Count1 - Persistent IDC22B249704819C44 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Sting/Brand%20New%20Day/07%20Prelude%20To%20The%20End%20Of%20The%20Game.m4a - File Folder Count4 - Library Folder Count1 - - 2586 - - Track ID2586 - NameFill Her Up - ArtistSting - ComposerSting - AlbumBrand New Day - GenreRock - KindAAC audio file - Size8188736 - Total Time338591 - Disc Number1 - Disc Count1 - Track Number8 - Track Count10 - Year2000 - Date Modified2006-08-13T06:46:50Z - Date Added2009-10-03T14:52:50Z - Bit Rate192 - Sample Rate44100 - Normalization1984 - Artwork Count1 - Persistent ID9543C3A3009E9F69 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Sting/Brand%20New%20Day/08%20Fill%20Her%20Up.m4a - File Folder Count4 - Library Folder Count1 - - 2588 - - Track ID2588 - NameGhost Story - ArtistSting - ComposerSting - AlbumBrand New Day - GenreRock - KindAAC audio file - Size7978550 - Total Time329605 - Disc Number1 - Disc Count1 - Track Number9 - Track Count10 - Year2000 - Date Modified2006-08-13T06:46:46Z - Date Added2009-10-03T14:52:51Z - Bit Rate192 - Sample Rate44100 - Normalization1218 - Artwork Count1 - Persistent ID4C2D8D7B15AB1604 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Sting/Brand%20New%20Day/09%20Ghost%20Story.m4a - File Folder Count4 - Library Folder Count1 - - 2590 - - Track ID2590 - NameBrand New Day - ArtistSting - ComposerSting - AlbumBrand New Day - GenreRock - KindAAC audio file - Size9202322 - Total Time379830 - Disc Number1 - Disc Count1 - Track Number10 - Track Count10 - Year2000 - Date Modified2006-08-13T06:46:42Z - Date Added2009-10-03T14:52:51Z - Bit Rate192 - Sample Rate44100 - Normalization3312 - Artwork Count1 - Persistent ID5D0EEC0F498016B6 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Sting/Brand%20New%20Day/10%20Brand%20New%20Day.m4a - File Folder Count4 - Library Folder Count1 - - 2592 - - Track ID2592 - NameBoot Hill - ArtistStevie Ray Vaughan & Double Trouble - AlbumThe Sky Is Crying - GenreBlues - KindAAC audio file - Size3299416 - Total Time136293 - Disc Number1 - Disc Count1 - Track Number1 - Track Count10 - Year1991 - Date Modified2008-10-07T14:02:07Z - Date Added2009-10-03T14:52:51Z - Bit Rate192 - Sample Rate44100 - Normalization2752 - Artwork Count1 - Sort AlbumSky Is Crying - Persistent ID8B86B0403E83FC14 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stevie%20Ray%20Vaughan%20&%20Double%20Trouble/The%20Sky%20Is%20Crying/01%20Boot%20Hill.m4a - File Folder Count4 - Library Folder Count1 - - 2594 - - Track ID2594 - NameThe Sky Is Crying - ArtistStevie Ray Vaughan & Double Trouble - AlbumThe Sky Is Crying - GenreBlues - KindAAC audio file - Size6893613 - Total Time278440 - Disc Number1 - Disc Count1 - Track Number2 - Track Count10 - Year1991 - Date Modified2008-10-07T14:02:07Z - Date Added2009-10-03T14:52:51Z - Bit Rate192 - Sample Rate44100 - Normalization1644 - Artwork Count1 - Sort AlbumSky Is Crying - Sort NameSky Is Crying - Persistent IDDB0593A22C94B09D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stevie%20Ray%20Vaughan%20&%20Double%20Trouble/The%20Sky%20Is%20Crying/02%20The%20Sky%20Is%20Crying.m4a - File Folder Count4 - Library Folder Count1 - - 2596 - - Track ID2596 - NameEmpty Arms - ArtistStevie Ray Vaughan & Double Trouble - AlbumThe Sky Is Crying - GenreBlues - KindAAC audio file - Size5200713 - Total Time211066 - Disc Number1 - Disc Count1 - Track Number3 - Track Count10 - Year1991 - Date Modified2008-10-07T14:02:06Z - Date Added2009-10-03T14:52:51Z - Bit Rate192 - Sample Rate44100 - Normalization2550 - Artwork Count1 - Sort AlbumSky Is Crying - Persistent IDAA1D6C45B121E6E6 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stevie%20Ray%20Vaughan%20&%20Double%20Trouble/The%20Sky%20Is%20Crying/03%20Empty%20Arms.m4a - File Folder Count4 - Library Folder Count1 - - 2598 - - Track ID2598 - NameLittle Wing - ArtistStevie Ray Vaughan & Double Trouble - AlbumThe Sky Is Crying - GenreBlues - KindAAC audio file - Size10126719 - Total Time410560 - Disc Number1 - Disc Count1 - Track Number4 - Track Count10 - Year1991 - Date Modified2008-10-07T14:02:05Z - Date Added2009-10-03T14:52:51Z - Bit Rate192 - Sample Rate44100 - Normalization1192 - Artwork Count1 - Sort AlbumSky Is Crying - Persistent ID627DF24C528E4821 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stevie%20Ray%20Vaughan%20&%20Double%20Trouble/The%20Sky%20Is%20Crying/04%20Little%20Wing.m4a - File Folder Count4 - Library Folder Count1 - - 2600 - - Track ID2600 - NameWham - ArtistStevie Ray Vaughan & Double Trouble - AlbumThe Sky Is Crying - GenreBlues - KindAAC audio file - Size3625284 - Total Time147333 - Disc Number1 - Disc Count1 - Track Number5 - Track Count10 - Year1991 - Date Modified2008-10-07T14:02:04Z - Date Added2009-10-03T14:52:52Z - Bit Rate192 - Sample Rate44100 - Normalization2798 - Artwork Count1 - Sort AlbumSky Is Crying - Persistent ID6113817ECD2B4E54 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stevie%20Ray%20Vaughan%20&%20Double%20Trouble/The%20Sky%20Is%20Crying/05%20Wham.m4a - File Folder Count4 - Library Folder Count1 - - 2602 - - Track ID2602 - NameMay I Have A Talk With You - ArtistStevie Ray Vaughan & Double Trouble - AlbumThe Sky Is Crying - GenreBlues - KindAAC audio file - Size8544173 - Total Time350933 - Disc Number1 - Disc Count1 - Track Number6 - Track Count10 - Year1991 - Date Modified2008-10-07T14:02:04Z - Date Added2009-10-03T14:52:52Z - Bit Rate192 - Sample Rate44100 - Normalization1366 - Artwork Count1 - Sort AlbumSky Is Crying - Persistent ID964E870D9A7C337C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stevie%20Ray%20Vaughan%20&%20Double%20Trouble/The%20Sky%20Is%20Crying/06%20May%20I%20Have%20A%20Talk%20With%20You.m4a - File Folder Count4 - Library Folder Count1 - - 2604 - - Track ID2604 - NameClose To You - ArtistStevie Ray Vaughan & Double Trouble - AlbumThe Sky Is Crying - GenreBlues - KindAAC audio file - Size4768653 - Total Time193906 - Disc Number1 - Disc Count1 - Track Number7 - Track Count10 - Year1991 - Date Modified2008-10-07T14:02:03Z - Date Added2009-10-03T14:52:52Z - Bit Rate192 - Sample Rate44100 - Normalization2682 - Artwork Count1 - Sort AlbumSky Is Crying - Persistent IDC16520387E944C34 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stevie%20Ray%20Vaughan%20&%20Double%20Trouble/The%20Sky%20Is%20Crying/07%20Close%20To%20You.m4a - File Folder Count4 - Library Folder Count1 - - 2606 - - Track ID2606 - NameChitlins Con Carne - ArtistStevie Ray Vaughan & Double Trouble - AlbumThe Sky Is Crying - GenreBlues - KindAAC audio file - Size5904423 - Total Time239266 - Disc Number1 - Disc Count1 - Track Number8 - Track Count10 - Year1991 - Date Modified2008-10-07T14:02:03Z - Date Added2009-10-03T14:52:52Z - Bit Rate192 - Sample Rate44100 - Normalization1192 - Artwork Count1 - Sort AlbumSky Is Crying - Persistent ID92A5C6B523EBB5FC - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stevie%20Ray%20Vaughan%20&%20Double%20Trouble/The%20Sky%20Is%20Crying/08%20Chitlins%20Con%20Carne.m4a - File Folder Count4 - Library Folder Count1 - - 2608 - - Track ID2608 - NameSo Excited - ArtistStevie Ray Vaughan & Double Trouble - AlbumThe Sky Is Crying - GenreBlues - KindAAC audio file - Size5168191 - Total Time212733 - Disc Number1 - Disc Count1 - Track Number9 - Track Count10 - Year1991 - Date Modified2008-10-07T14:02:02Z - Date Added2009-10-03T14:52:52Z - Bit Rate192 - Sample Rate44100 - Normalization1441 - Artwork Count1 - Sort AlbumSky Is Crying - Persistent ID12FC106CA07AC7CF - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stevie%20Ray%20Vaughan%20&%20Double%20Trouble/The%20Sky%20Is%20Crying/09%20So%20Excited.m4a - File Folder Count4 - Library Folder Count1 - - 2610 - - Track ID2610 - NameLife By The Drop - ArtistStevie Ray Vaughan & Double Trouble - AlbumThe Sky Is Crying - GenreBlues - KindAAC audio file - Size3517489 - Total Time148493 - Disc Number1 - Disc Count1 - Track Number10 - Track Count10 - Year1991 - Date Modified2008-10-07T14:02:02Z - Date Added2009-10-03T14:52:52Z - Bit Rate192 - Sample Rate44100 - Normalization799 - Artwork Count1 - Sort AlbumSky Is Crying - Persistent ID8AF64ABB57C6680F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stevie%20Ray%20Vaughan%20&%20Double%20Trouble/The%20Sky%20Is%20Crying/10%20Life%20By%20The%20Drop.m4a - File Folder Count4 - Library Folder Count1 - - 2612 - - Track ID2612 - NameAin't Gone 'n' Give Up On Love - ArtistStevie Ray Vaughan & Double Trouble - ComposerS. R. Vaughan - AlbumBlues At Sunrise - GenreBlues - KindAAC audio file - Size9023245 - Total Time368000 - Disc Number1 - Disc Count1 - Track Number1 - Track Count10 - Year2000 - Date Modified2007-10-01T13:18:02Z - Date Added2009-10-03T14:52:52Z - Bit Rate192 - Sample Rate44100 - Normalization1524 - Artwork Count1 - Persistent ID864D7B99D30B36D8 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stevie%20Ray%20Vaughan%20&%20Double%20Trouble/Blues%20At%20Sunrise/01%20Ain't%20Gone%20'n'%20Give%20Up%20On%20Love.m4a - File Folder Count4 - Library Folder Count1 - - 2614 - - Track ID2614 - NameBlues At Sunrise (Live) - ArtistStevie Ray Vaughan & Double Trouble - ComposerA. King - AlbumBlues At Sunrise - GenreBlues - KindAAC audio file - Size21998379 - Total Time906733 - Disc Number1 - Disc Count1 - Track Number10 - Track Count10 - Year2000 - Date Modified2007-10-01T13:26:35Z - Date Added2009-10-03T14:52:52Z - Bit Rate192 - Sample Rate44100 - Normalization1114 - Artwork Count1 - Persistent IDD1FB8BACF78AADB1 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stevie%20Ray%20Vaughan%20&%20Double%20Trouble/Blues%20At%20Sunrise/10%20Blues%20At%20Sunrise%20(Live).m4a - File Folder Count4 - Library Folder Count1 - - 2616 - - Track ID2616 - NameChitllins Con Carne - ArtistStevie Ray Vaughan & Double Trouble - ComposerK. Burrell - AlbumBlues At Sunrise - GenreBlues - KindAAC audio file - Size5823825 - Total Time235640 - Disc Number1 - Disc Count1 - Track Number4 - Track Count10 - Year2000 - Date Modified2007-10-01T13:20:32Z - Date Added2009-10-03T14:52:52Z - Bit Rate192 - Sample Rate44100 - Normalization1063 - Artwork Count1 - Persistent ID73CDB29852FF862D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stevie%20Ray%20Vaughan%20&%20Double%20Trouble/Blues%20At%20Sunrise/04%20Chitllins%20Con%20Carne.m4a - File Folder Count4 - Library Folder Count1 - - 2618 - - Track ID2618 - NameDirty Pool - ArtistStevie Ray Vaughan & Double Trouble - ComposerS. R. Vaughan, D. Bramhall - AlbumBlues At Sunrise - GenreBlues - KindAAC audio file - Size7326097 - Total Time300200 - Disc Number1 - Disc Count1 - Track Number9 - Track Count10 - Year2000 - Date Modified2007-10-01T13:24:21Z - Date Added2009-10-03T14:52:52Z - Bit Rate192 - Sample Rate44100 - Normalization1397 - Artwork Count1 - Persistent ID3487F793B1AA0967 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stevie%20Ray%20Vaughan%20&%20Double%20Trouble/Blues%20At%20Sunrise/09%20Dirty%20Pool.m4a - File Folder Count4 - Library Folder Count1 - - 2620 - - Track ID2620 - NameLeave My Girl Alone - ArtistStevie Ray Vaughan & Double Trouble - ComposerB. Guy - AlbumBlues At Sunrise - GenreBlues - KindAAC audio file - Size6213326 - Total Time253266 - Disc Number1 - Disc Count1 - Track Number2 - Track Count10 - Year2000 - Date Modified2007-10-01T13:18:35Z - Date Added2009-10-03T14:52:53Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3338659120 - Play Date UTC2009-10-17T15:48:40Z - Normalization1920 - Artwork Count1 - Persistent IDB7B50C2BE7AB331F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stevie%20Ray%20Vaughan%20&%20Double%20Trouble/Blues%20At%20Sunrise/02%20Leave%20My%20Girl%20Alone.m4a - File Folder Count4 - Library Folder Count1 - - 2622 - - Track ID2622 - NameMay I Have A Talk With You - ArtistStevie Ray Vaughan & Double Trouble - ComposerC. Burnette "Howlin' Wolf" - AlbumBlues At Sunrise - GenreBlues - KindAAC audio file - Size8485562 - Total Time349066 - Disc Number1 - Disc Count1 - Track Number8 - Track Count10 - Year2000 - Date Modified2007-10-01T13:23:42Z - Date Added2009-10-03T14:52:53Z - Bit Rate192 - Sample Rate44100 - Normalization1929 - Artwork Count1 - Persistent ID3B21DDAB95FF6ECB - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stevie%20Ray%20Vaughan%20&%20Double%20Trouble/Blues%20At%20Sunrise/08%20May%20I%20Have%20A%20Talk%20With%20You.m4a - File Folder Count4 - Library Folder Count1 - - 2624 - - Track ID2624 - NameTexas Flood (Video Version) - ArtistStevie Ray Vaughan & Double Trouble - ComposerL. C. Davis, J. W. Scott - AlbumBlues At Sunrise - GenreBlues - KindAAC audio file - Size14181197 - Total Time583973 - Disc Number1 - Disc Count1 - Track Number7 - Track Count10 - Year2000 - Date Modified2007-10-01T13:22:57Z - Date Added2009-10-03T14:52:53Z - Bit Rate192 - Sample Rate44100 - Normalization2187 - Artwork Count1 - Persistent IDB62EBF8B77960AC6 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stevie%20Ray%20Vaughan%20&%20Double%20Trouble/Blues%20At%20Sunrise/07%20Texas%20Flood%20(Video%20Version).m4a - File Folder Count4 - Library Folder Count1 - - 2626 - - Track ID2626 - NameThe Sky Is Crying - ArtistStevie Ray Vaughan & Double Trouble - ComposerE. James, M. Levy, C. Lewis - AlbumBlues At Sunrise - GenreBlues - KindAAC audio file - Size6218379 - Total Time248826 - Disc Number1 - Disc Count1 - Track Number6 - Track Count10 - Year2000 - Date Modified2007-10-01T13:21:42Z - Date Added2009-10-03T14:52:53Z - Bit Rate192 - Sample Rate44100 - Normalization1787 - Artwork Count1 - Sort NameSky Is Crying - Persistent ID0AE89263929E0EF9 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stevie%20Ray%20Vaughan%20&%20Double%20Trouble/Blues%20At%20Sunrise/06%20The%20Sky%20Is%20Crying.m4a - File Folder Count4 - Library Folder Count1 - - 2628 - - Track ID2628 - NameThe Things That I Used To Do - ArtistStevie Ray Vaughan & Double Trouble - ComposerE. Jones - AlbumBlues At Sunrise - GenreBlues - KindAAC audio file - Size7182637 - Total Time294400 - Disc Number1 - Disc Count1 - Track Number5 - Track Count10 - Year2000 - Date Modified2007-10-01T13:21:10Z - Date Added2009-10-03T14:52:53Z - Bit Rate192 - Sample Rate44100 - Normalization2051 - Artwork Count1 - Sort NameThings That I Used To Do - Persistent IDD69A6462D23C56F2 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stevie%20Ray%20Vaughan%20&%20Double%20Trouble/Blues%20At%20Sunrise/05%20The%20Things%20That%20I%20Used%20To%20Do.m4a - File Folder Count4 - Library Folder Count1 - - 2630 - - Track ID2630 - NameTin Pan Alley (Aka Roughest Place In Town) - ArtistStevie Ray Vaughan & Double Trouble - ComposerR. Geddins - AlbumBlues At Sunrise - GenreBlues - KindAAC audio file - Size16869477 - Total Time686826 - Disc Number1 - Disc Count1 - Track Number3 - Track Count10 - Year2000 - Date Modified2007-10-01T13:20:02Z - Date Added2009-10-03T14:52:53Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Persistent ID0C882D035B68DD14 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stevie%20Ray%20Vaughan%20&%20Double%20Trouble/Blues%20At%20Sunrise/03%20Tin%20Pan%20Alley%20(Aka%20Roughest%20Place%20In%20Town).m4a - File Folder Count4 - Library Folder Count1 - - 2632 - - Track ID2632 - NameLooking For Safety - ArtistSteve Roach - Album ArtistSteve Roach - AlbumDreamtime Return - GenreDance & DJ - KindMPEG audio file - Size52194914 - Total Time1876741 - Disc Number2 - Disc Count2 - Track Number1 - Track Count5 - Year1987 - Date Modified2008-11-23T18:01:56Z - Date Added2009-10-03T14:52:53Z - Bit Rate222 - Sample Rate44100 - CommentsAmazon.com Song ID: 206074663 - Artwork Count1 - Persistent IDFB863E54381CCCD8 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Steve%20Roach/Dreamtime%20Return/2-01%20Looking%20For%20Safety.mp3 - File Folder Count4 - Library Folder Count1 - - 2634 - - Track ID2634 - NameThrough a Strong Eye - ArtistSteve Roach - Album ArtistSteve Roach - AlbumDreamtime Return - GenreDance & DJ - KindMPEG audio file - Size11744389 - Total Time411036 - Disc Number2 - Disc Count2 - Track Number2 - Track Count5 - Year1987 - Date Modified2008-11-23T18:03:42Z - Date Added2009-10-03T14:52:54Z - Bit Rate227 - Sample Rate44100 - CommentsAmazon.com Song ID: 206074664 - Artwork Count1 - Persistent IDADEC2D27C5AFA4E5 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Steve%20Roach/Dreamtime%20Return/2-02%20Through%20a%20Strong%20Eye.mp3 - File Folder Count4 - Library Folder Count1 - - 2636 - - Track ID2636 - NameThe Ancient Day - ArtistSteve Roach - Album ArtistSteve Roach - AlbumDreamtime Return - GenreDance & DJ - KindMPEG audio file - Size10889797 - Total Time367307 - Disc Number2 - Disc Count2 - Track Number3 - Track Count5 - Year1987 - Date Modified2008-11-23T18:05:20Z - Date Added2009-10-03T14:52:54Z - Bit Rate236 - Sample Rate44100 - CommentsAmazon.com Song ID: 206074665 - Artwork Count1 - Sort NameAncient Day - Persistent ID06007619DF1CF3D1 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Steve%20Roach/Dreamtime%20Return/2-03%20The%20Ancient%20Day.mp3 - File Folder Count4 - Library Folder Count1 - - 2638 - - Track ID2638 - NameRed Twilight With The Old Ones - ArtistSteve Roach - Album ArtistSteve Roach - AlbumDreamtime Return - GenreDance & DJ - KindMPEG audio file - Size18334312 - Total Time590210 - Disc Number2 - Disc Count2 - Track Number4 - Track Count5 - Year1987 - Date Modified2008-11-23T18:08:05Z - Date Added2009-10-03T14:52:54Z - Bit Rate248 - Sample Rate44100 - CommentsAmazon.com Song ID: 206074666 - Artwork Count1 - Persistent ID1CB5585EED974359 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Steve%20Roach/Dreamtime%20Return/2-04%20Red%20Twilight%20With%20The%20Old%20Ones.mp3 - File Folder Count4 - Library Folder Count1 - - 2640 - - Track ID2640 - NameThe Return - ArtistSteve Roach - Album ArtistSteve Roach - AlbumDreamtime Return - GenreDance & DJ - KindMPEG audio file - Size15034867 - Total Time531304 - Disc Number2 - Disc Count2 - Track Number5 - Track Count5 - Year1987 - Date Modified2008-11-23T18:10:20Z - Date Added2009-10-03T14:52:54Z - Bit Rate225 - Sample Rate44100 - CommentsAmazon.com Song ID: 206074667 - Artwork Count1 - Sort NameReturn - Persistent ID5448D7E27D279FC2 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Steve%20Roach/Dreamtime%20Return/2-05%20The%20Return.mp3 - File Folder Count4 - Library Folder Count1 - - 2642 - - Track ID2642 - NameTowards The Dream - ArtistSteve Roach - Album ArtistSteve Roach - AlbumDreamtime Return - GenreDance & DJ - KindMPEG audio file - Size13421306 - Total Time429766 - Disc Number1 - Disc Count2 - Track Number1 - Track Count9 - Year1987 - Date Modified2008-11-23T17:20:23Z - Date Added2009-10-03T14:52:54Z - Bit Rate249 - Sample Rate44100 - CommentsAmazon.com Song ID: 206074649 - Artwork Count1 - Persistent ID9830A98D8B33D9E7 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Steve%20Roach/Dreamtime%20Return/1-01%20Towards%20The%20Dream.mp3 - File Folder Count4 - Library Folder Count1 - - 2644 - - Track ID2644 - NameThe Continent - ArtistSteve Roach - Album ArtistSteve Roach - AlbumDreamtime Return - GenreDance & DJ - KindMPEG audio file - Size8433419 - Total Time287085 - Disc Number1 - Disc Count2 - Track Number2 - Track Count9 - Year1987 - Date Modified2008-11-23T17:23:31Z - Date Added2009-10-03T14:52:54Z - Bit Rate234 - Sample Rate44100 - CommentsAmazon.com Song ID: 206074650 - Artwork Count1 - Sort NameContinent - Persistent IDC6FA68AE1A23C0E0 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Steve%20Roach/Dreamtime%20Return/1-02%20The%20Continent.mp3 - File Folder Count4 - Library Folder Count1 - - 2646 - - Track ID2646 - NameSongline - ArtistSteve Roach - Album ArtistSteve Roach - AlbumDreamtime Return - GenreDance & DJ - KindMPEG audio file - Size5244668 - Total Time181968 - Disc Number1 - Disc Count2 - Track Number3 - Track Count9 - Year1987 - Date Modified2008-11-23T17:25:35Z - Date Added2009-10-03T14:52:55Z - Bit Rate229 - Sample Rate44100 - CommentsAmazon.com Song ID: 206074651 - Artwork Count1 - Persistent ID747F7E19702A76F4 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Steve%20Roach/Dreamtime%20Return/1-03%20Songline.mp3 - File Folder Count4 - Library Folder Count1 - - 2648 - - Track ID2648 - NameAirtribe Meets The Dream Ghost - ArtistSteve Roach - Album ArtistSteve Roach - AlbumDreamtime Return - GenreDance & DJ - KindMPEG audio file - Size12693660 - Total Time427807 - Disc Number1 - Disc Count2 - Track Number4 - Track Count9 - Year1987 - Date Modified2008-11-23T17:30:05Z - Date Added2009-10-03T14:52:55Z - Bit Rate236 - Sample Rate44100 - CommentsAmazon.com Song ID: 206074657 - Artwork Count1 - Persistent ID8E98935A7C4A5733 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Steve%20Roach/Dreamtime%20Return/1-04%20Airtribe%20Meets%20The%20Dream%20Ghost.mp3 - File Folder Count4 - Library Folder Count1 - - 2650 - - Track ID2650 - NameA Circular Ceremony - ArtistSteve Roach - Album ArtistSteve Roach - AlbumDreamtime Return - GenreDance & DJ - KindMPEG audio file - Size21427816 - Total Time678739 - Disc Number1 - Disc Count2 - Track Number5 - Track Count9 - Year1987 - Date Modified2008-11-23T17:37:37Z - Date Added2009-10-03T14:52:55Z - Bit Rate252 - Sample Rate44100 - CommentsAmazon.com Song ID: 206074658 - Artwork Count1 - Sort NameCircular Ceremony - Persistent ID4F750A34C9337332 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Steve%20Roach/Dreamtime%20Return/1-05%20A%20Circular%20Ceremony.mp3 - File Folder Count4 - Library Folder Count1 - - 2652 - - Track ID2652 - NameThe Other Side - ArtistSteve Roach - Album ArtistSteve Roach - AlbumDreamtime Return - GenreDance & DJ - KindMPEG audio file - Size23742034 - Total Time791353 - Disc Number1 - Disc Count2 - Track Number6 - Track Count9 - Year1987 - Date Modified2008-11-23T17:43:30Z - Date Added2009-10-03T14:52:55Z - Bit Rate239 - Sample Rate44100 - CommentsAmazon.com Song ID: 206074659 - Artwork Count1 - Sort NameOther Side - Persistent ID3C9BBB8C15700B4B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Steve%20Roach/Dreamtime%20Return/1-06%20The%20Other%20Side.mp3 - File Folder Count4 - Library Folder Count1 - - 2654 - - Track ID2654 - NameMagnificent Gallery - ArtistSteve Roach - Album ArtistSteve Roach - AlbumDreamtime Return - GenreDance & DJ - KindMPEG audio file - Size10455152 - Total Time361586 - Disc Number1 - Disc Count2 - Track Number7 - Track Count9 - Year1987 - Date Modified2008-11-23T17:46:02Z - Date Added2009-10-03T14:52:55Z - Bit Rate230 - Sample Rate44100 - CommentsAmazon.com Song ID: 206074660 - Artwork Count1 - Persistent ID46A4F9C9836DF082 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Steve%20Roach/Dreamtime%20Return/1-07%20Magnificent%20Gallery.mp3 - File Folder Count4 - Library Folder Count1 - - 2656 - - Track ID2656 - NameTruth In Passing - ArtistSteve Roach - Album ArtistSteve Roach - AlbumDreamtime Return - GenreDance & DJ - KindMPEG audio file - Size15050645 - Total Time529345 - Disc Number1 - Disc Count2 - Track Number8 - Track Count9 - Year1987 - Date Modified2008-11-23T17:49:41Z - Date Added2009-10-03T14:52:55Z - Bit Rate226 - Sample Rate44100 - CommentsAmazon.com Song ID: 206074661 - Artwork Count1 - Persistent ID304266D02CC19566 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Steve%20Roach/Dreamtime%20Return/1-08%20Truth%20In%20Passing.mp3 - File Folder Count4 - Library Folder Count1 - - 2658 - - Track ID2658 - NameAustralian Dawn - The Quiet Earth Cries Inside - ArtistSteve Roach - Album ArtistSteve Roach - AlbumDreamtime Return - GenreDance & DJ - KindMPEG audio file - Size11146045 - Total Time377417 - Disc Number1 - Disc Count2 - Track Number9 - Track Count9 - Year1987 - Date Modified2008-11-23T17:52:26Z - Date Added2009-10-03T14:52:55Z - Bit Rate235 - Sample Rate44100 - CommentsAmazon.com Song ID: 206074662 - Artwork Count1 - Persistent IDD583796F70ADB408 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Steve%20Roach/Dreamtime%20Return/1-09%20Australian%20Dawn%20-%20The%20Quiet%20Earth%20Cries%20Inside.mp3 - File Folder Count4 - Library Folder Count1 - - 2660 - - Track ID2660 - NameThe Girl From Ipanema - ArtistStan Getz & João Gilberto - ComposerAntonio Carlos Brasiliero de Almeida Jobim, Marcus Vinícius da Cruz de Melo Moraes, Norman Gimbel - AlbumGetz/Gilberto - GenreLatin - KindAAC audio file - Size7893175 - Total Time324613 - Disc Number1 - Disc Count1 - Track Number1 - Track Count10 - Year1989 - Date Modified2006-07-28T03:36:32Z - Date Added2009-10-03T14:52:56Z - Bit Rate192 - Sample Rate44100 - Play Count4 - Play Date3471623176 - Play Date UTC2014-01-03T14:16:16Z - Normalization881 - Artwork Count1 - Sort NameGirl From Ipanema - Persistent ID7CF370F5CA15E2AD - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stan%20Getz%20&%20Joa%CC%83o%20Gilberto/Getz_Gilberto/01%20The%20Girl%20From%20Ipanema.m4a - File Folder Count4 - Library Folder Count1 - - 2662 - - Track ID2662 - NameDoralice - ArtistStan Getz & João Gilberto - ComposerDori Caymmi, Antônio Almeida - AlbumGetz/Gilberto - GenreLatin - KindAAC audio file - Size4078869 - Total Time166276 - Disc Number1 - Disc Count1 - Track Number2 - Track Count10 - Year1989 - Date Modified2006-07-28T03:36:34Z - Date Added2009-10-03T14:52:56Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3471623343 - Play Date UTC2014-01-03T14:19:03Z - Normalization724 - Artwork Count1 - Persistent IDDC1F5F90C4FE615C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stan%20Getz%20&%20Joa%CC%83o%20Gilberto/Getz_Gilberto/02%20Doralice.m4a - File Folder Count4 - Library Folder Count1 - - 2664 - - Track ID2664 - NamePara Machuchar Meu Coração - ArtistStan Getz & João Gilberto - ComposerAry Evangelista Barroso - AlbumGetz/Gilberto - GenreLatin - KindAAC audio file - Size7438026 - Total Time305805 - Disc Number1 - Disc Count1 - Track Number3 - Track Count10 - Year1989 - Date Modified2006-07-28T03:36:34Z - Date Added2009-10-03T14:52:56Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3471623648 - Play Date UTC2014-01-03T14:24:08Z - Normalization896 - Artwork Count1 - Persistent ID389A29FC5DC34F07 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stan%20Getz%20&%20Joa%CC%83o%20Gilberto/Getz_Gilberto/03%20Para%20Machuchar%20Meu%20Corac%CC%A7a%CC%83o.m4a - File Folder Count4 - Library Folder Count1 - - 2666 - - Track ID2666 - NameDesafinado (Off Key) - ArtistStan Getz & João Gilberto - ComposerAntonio Carlos Brasiliero de Almeida Jobim, Newton Ferreira de Mendonça - AlbumGetz/Gilberto - GenreLatin - KindAAC audio file - Size6134876 - Total Time255766 - Disc Number1 - Disc Count1 - Track Number4 - Track Count10 - Year1989 - Date Modified2006-07-28T03:36:36Z - Date Added2009-10-03T14:52:56Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3471623904 - Play Date UTC2014-01-03T14:28:24Z - Normalization1104 - Artwork Count1 - Persistent ID5C9638C4DDDA941D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stan%20Getz%20&%20Joa%CC%83o%20Gilberto/Getz_Gilberto/04%20Desafinado%20(Off%20Key).m4a - File Folder Count4 - Library Folder Count1 - - 2668 - - Track ID2668 - NameCorcovado (Quiet Nights of Quiet Stars) - ArtistStan Getz & João Gilberto - ComposerAntonio Carlos Brasiliero de Almeida Jobim, Frederick Eugene John "Gene" Lees - AlbumGetz/Gilberto - GenreLatin - KindAAC audio file - Size6248448 - Total Time256602 - Disc Number1 - Disc Count1 - Track Number5 - Track Count10 - Year1989 - Date Modified2006-07-28T03:36:36Z - Date Added2009-10-03T14:52:56Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3471624161 - Play Date UTC2014-01-03T14:32:41Z - Normalization871 - Artwork Count1 - Persistent ID8027081F6B6BCC94 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stan%20Getz%20&%20Joa%CC%83o%20Gilberto/Getz_Gilberto/05%20Corcovado%20(Quiet%20Nights%20of%20Quiet%20Stars).m4a - File Folder Count4 - Library Folder Count1 - - 2670 - - Track ID2670 - NameSo Danço Samba - ArtistStan Getz & João Gilberto - ComposerAntonio Carlos Brasiliero de Almeida Jobim, Vinícius de Moraes - AlbumGetz/Gilberto - GenreLatin - KindAAC audio file - Size5449037 - Total Time225742 - Disc Number1 - Disc Count1 - Track Number6 - Track Count10 - Year1989 - Date Modified2006-07-28T03:36:38Z - Date Added2009-10-03T14:52:56Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3471624386 - Play Date UTC2014-01-03T14:36:26Z - Normalization1163 - Artwork Count1 - Persistent ID31DA95EDDD313D67 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stan%20Getz%20&%20Joa%CC%83o%20Gilberto/Getz_Gilberto/06%20So%20Danc%CC%A7o%20Samba.m4a - File Folder Count4 - Library Folder Count1 - - 2672 - - Track ID2672 - NameO Grande Amor - ArtistStan Getz & João Gilberto - ComposerAntonio Carlos Brasiliero de Almeida Jobim, Vinícius de Moraes - AlbumGetz/Gilberto - GenreLatin - KindAAC audio file - Size7952225 - Total Time327051 - Disc Number1 - Disc Count1 - Track Number7 - Track Count10 - Year1989 - Date Modified2006-07-28T03:36:40Z - Date Added2009-10-03T14:52:56Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3471624713 - Play Date UTC2014-01-03T14:41:53Z - Normalization920 - Artwork Count1 - Persistent IDE01A084D651985EC - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stan%20Getz%20&%20Joa%CC%83o%20Gilberto/Getz_Gilberto/07%20O%20Grande%20Amor.m4a - File Folder Count4 - Library Folder Count1 - - 2674 - - Track ID2674 - NameVivo Sonhando - ArtistStan Getz & João Gilberto - ComposerAntonio Carlos Brasiliero de Almeida Jobim - AlbumGetz/Gilberto - GenreLatin - KindAAC audio file - Size4511674 - Total Time184411 - Disc Number1 - Disc Count1 - Track Number8 - Track Count10 - Year1989 - Date Modified2006-07-28T03:36:40Z - Date Added2009-10-03T14:52:57Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3471624898 - Play Date UTC2014-01-03T14:44:58Z - Normalization1012 - Artwork Count1 - Persistent IDFED5DFFF0D79F221 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stan%20Getz%20&%20Joa%CC%83o%20Gilberto/Getz_Gilberto/08%20Vivo%20Sonhando.m4a - File Folder Count4 - Library Folder Count1 - - 2676 - - Track ID2676 - NameThe Girl From Ipanema (45 rpm issue) - ArtistStan Getz & João Gilberto - ComposerAntonio Carlos Brasiliero de Almeida Jobim, Marcus Vinícius da Cruz de Melo Moraes, Norman Gimbel - AlbumGetz/Gilberto - GenreLatin - KindAAC audio file - Size4284729 - Total Time174844 - Disc Number1 - Disc Count1 - Track Number9 - Track Count10 - Year1989 - Date Modified2006-07-28T03:36:42Z - Date Added2009-10-03T14:52:57Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3471625073 - Play Date UTC2014-01-03T14:47:53Z - Normalization549 - Artwork Count1 - Sort NameGirl From Ipanema (45 rpm issue) - Persistent IDD3A51742E9A3113E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stan%20Getz%20&%20Joa%CC%83o%20Gilberto/Getz_Gilberto/09%20The%20Girl%20From%20Ipanema%20(45%20rpm%20issue).m4a - File Folder Count4 - Library Folder Count1 - - 2678 - - Track ID2678 - NameCorcovado (Quiet Nights of Quiet Stars) (45 rpm issue) - ArtistStan Getz & João Gilberto - ComposerAntonio Carlos Brasiliero de Almeida Jobim, Frederick Eugene John "Gene" Lees - AlbumGetz/Gilberto - GenreLatin - KindAAC audio file - Size3468417 - Total Time140850 - Disc Number1 - Disc Count1 - Track Number10 - Track Count10 - Year1989 - Date Modified2006-07-28T03:36:44Z - Date Added2009-10-03T14:52:57Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3471625213 - Play Date UTC2014-01-03T14:50:13Z - Skip Count1 - Skip Date2013-01-20T15:42:52Z - Normalization943 - Artwork Count1 - Persistent ID62A28539D99CB4FF - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stan%20Getz%20&%20Joa%CC%83o%20Gilberto/Getz_Gilberto/10%20Corcovado%20(Quiet%20Nights%20of%20Quiet%20Stars)%20(45%20rpm%20issue).m4a - File Folder Count4 - Library Folder Count1 - - 2680 - - Track ID2680 - NameMrs. Robinson - ArtistSimon & Garfunkel - AlbumThe Concert In Central Park - GenreRock - KindAAC audio file - Size5845523 - Total Time241416 - Disc Number1 - Disc Count1 - Track Number1 - Track Count19 - Year1982 - Date Modified2006-08-13T06:46:36Z - Date Added2009-10-03T14:53:29Z - Bit Rate192 - Sample Rate44100 - Normalization1255 - Artwork Count1 - Sort AlbumConcert In Central Park - Persistent IDF718DF5AD2637B05 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Simon%20&%20Garfunkel/The%20Concert%20In%20Central%20Park/01%20Mrs.%20Robinson.m4a - File Folder Count4 - Library Folder Count1 - - 2682 - - Track ID2682 - NameHomeward Bound - ArtistSimon & Garfunkel - AlbumThe Concert In Central Park - GenreRock - KindAAC audio file - Size6292805 - Total Time259435 - Disc Number1 - Disc Count1 - Track Number2 - Track Count19 - Year1982 - Date Modified2006-08-13T06:46:34Z - Date Added2009-10-03T14:53:29Z - Bit Rate192 - Sample Rate44100 - Normalization1170 - Artwork Count1 - Sort AlbumConcert In Central Park - Persistent ID44B58EC0BB8D999E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Simon%20&%20Garfunkel/The%20Concert%20In%20Central%20Park/02%20Homeward%20Bound.m4a - File Folder Count4 - Library Folder Count1 - - 2684 - - Track ID2684 - NameAmerica - ArtistSimon & Garfunkel - AlbumThe Concert In Central Park - GenreRock - KindAAC audio file - Size6925127 - Total Time285580 - Disc Number1 - Disc Count1 - Track Number3 - Track Count19 - Year1982 - Date Modified2006-08-13T06:46:32Z - Date Added2009-10-03T14:53:29Z - Bit Rate192 - Sample Rate44100 - Normalization922 - Artwork Count1 - Sort AlbumConcert In Central Park - Persistent IDDE05649A9508954E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Simon%20&%20Garfunkel/The%20Concert%20In%20Central%20Park/03%20America.m4a - File Folder Count4 - Library Folder Count1 - - 2686 - - Track ID2686 - NameMe And Julio Down By The Schoolyard - ArtistSimon & Garfunkel - AlbumThe Concert In Central Park - GenreRock - KindAAC audio file - Size5356496 - Total Time220448 - Disc Number1 - Disc Count1 - Track Number4 - Track Count19 - Year1982 - Date Modified2006-08-13T06:46:28Z - Date Added2009-10-03T14:53:29Z - Bit Rate192 - Sample Rate44100 - Normalization1117 - Artwork Count1 - Sort AlbumConcert In Central Park - Persistent ID40E6E6EFF70C3560 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Simon%20&%20Garfunkel/The%20Concert%20In%20Central%20Park/04%20Me%20And%20Julio%20Down%20By%20The%20Schoolyard.m4a - File Folder Count4 - Library Folder Count1 - - 2688 - - Track ID2688 - NameScarborough Fair - ArtistSimon & Garfunkel - AlbumThe Concert In Central Park - GenreRock - KindAAC audio file - Size5556643 - Total Time228784 - Disc Number1 - Disc Count1 - Track Number5 - Track Count19 - Year1982 - Date Modified2006-08-13T06:46:26Z - Date Added2009-10-03T14:53:29Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3484471711 - Play Date UTC2014-06-01T07:18:31Z - Normalization329 - Artwork Count1 - Sort AlbumConcert In Central Park - Persistent ID725B8B7E9C812502 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Simon%20&%20Garfunkel/The%20Concert%20In%20Central%20Park/05%20Scarborough%20Fair.m4a - File Folder Count4 - Library Folder Count1 - - 2690 - - Track ID2690 - NameApril Come She Will - ArtistSimon & Garfunkel - AlbumThe Concert In Central Park - GenreRock - KindAAC audio file - Size3484096 - Total Time142870 - Disc Number1 - Disc Count1 - Track Number6 - Track Count19 - Year1982 - Date Modified2006-08-13T06:46:24Z - Date Added2009-10-03T14:53:29Z - Bit Rate192 - Sample Rate44100 - Normalization205 - Artwork Count1 - Sort AlbumConcert In Central Park - Persistent ID807629592987A4CA - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Simon%20&%20Garfunkel/The%20Concert%20In%20Central%20Park/06%20April%20Come%20She%20Will.m4a - File Folder Count4 - Library Folder Count1 - - 2692 - - Track ID2692 - NameWake Up Little Susie - ArtistSimon & Garfunkel - AlbumThe Concert In Central Park - GenreRock - KindAAC audio file - Size3384987 - Total Time138737 - Disc Number1 - Disc Count1 - Track Number7 - Track Count19 - Year1982 - Date Modified2006-08-13T06:46:22Z - Date Added2009-10-03T14:53:29Z - Bit Rate192 - Sample Rate44100 - Normalization1258 - Artwork Count1 - Sort AlbumConcert In Central Park - Persistent ID1AA8679E004C96E0 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Simon%20&%20Garfunkel/The%20Concert%20In%20Central%20Park/07%20Wake%20Up%20Little%20Susie.m4a - File Folder Count4 - Library Folder Count1 - - 2694 - - Track ID2694 - NameStill Crazy After All These Years - ArtistSimon & Garfunkel - AlbumThe Concert In Central Park - GenreRock - KindAAC audio file - Size5533209 - Total Time227809 - Disc Number1 - Disc Count1 - Track Number8 - Track Count19 - Year1982 - Date Modified2006-08-13T06:46:20Z - Date Added2009-10-03T14:53:29Z - Bit Rate192 - Sample Rate44100 - Normalization1122 - Artwork Count1 - Sort AlbumConcert In Central Park - Persistent ID42B5F0E808742BEE - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Simon%20&%20Garfunkel/The%20Concert%20In%20Central%20Park/08%20Still%20Crazy%20After%20All%20These%20Years.m4a - File Folder Count4 - Library Folder Count1 - - 2696 - - Track ID2696 - NameAmerican Tune - ArtistSimon & Garfunkel - AlbumThe Concert In Central Park - GenreRock - KindAAC audio file - Size6657073 - Total Time274504 - Disc Number1 - Disc Count1 - Track Number9 - Track Count19 - Year1982 - Date Modified2006-08-13T06:46:18Z - Date Added2009-10-03T14:53:30Z - Bit Rate192 - Sample Rate44100 - Normalization849 - Artwork Count1 - Sort AlbumConcert In Central Park - Persistent ID65C17D12A5C7CE7B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Simon%20&%20Garfunkel/The%20Concert%20In%20Central%20Park/09%20American%20Tune.m4a - File Folder Count4 - Library Folder Count1 - - 2698 - - Track ID2698 - NameLate In The Evening - ArtistSimon & Garfunkel - AlbumThe Concert In Central Park - GenreRock - KindAAC audio file - Size6047474 - Total Time249218 - Disc Number1 - Disc Count1 - Track Number10 - Track Count19 - Year1982 - Date Modified2006-08-13T06:46:14Z - Date Added2009-10-03T14:53:30Z - Bit Rate192 - Sample Rate44100 - Normalization971 - Artwork Count1 - Sort AlbumConcert In Central Park - Persistent ID91B946033F70A2A3 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Simon%20&%20Garfunkel/The%20Concert%20In%20Central%20Park/10%20Late%20In%20The%20Evening.m4a - File Folder Count4 - Library Folder Count1 - - 2700 - - Track ID2700 - NameSlip Slidin' Away - ArtistSimon & Garfunkel - AlbumThe Concert In Central Park - GenreRock - KindAAC audio file - Size7128494 - Total Time293986 - Disc Number1 - Disc Count1 - Track Number11 - Track Count19 - Year1982 - Date Modified2006-08-13T06:46:12Z - Date Added2009-10-03T14:53:30Z - Bit Rate192 - Sample Rate44100 - Normalization457 - Artwork Count1 - Sort AlbumConcert In Central Park - Persistent IDFEBD97E6B708B2AF - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Simon%20&%20Garfunkel/The%20Concert%20In%20Central%20Park/11%20Slip%20Slidin'%20Away.m4a - File Folder Count4 - Library Folder Count1 - - 2702 - - Track ID2702 - NameA Heart In New York - ArtistSimon & Garfunkel - AlbumThe Concert In Central Park - GenreRock - KindAAC audio file - Size3915816 - Total Time160843 - Disc Number1 - Disc Count1 - Track Number12 - Track Count19 - Year1982 - Date Modified2006-08-13T06:46:08Z - Date Added2009-10-03T14:53:30Z - Bit Rate192 - Sample Rate44100 - Normalization921 - Artwork Count1 - Sort AlbumConcert In Central Park - Sort NameHeart In New York - Persistent IDA624E3D3F16A8B56 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Simon%20&%20Garfunkel/The%20Concert%20In%20Central%20Park/12%20A%20Heart%20In%20New%20York.m4a - File Folder Count4 - Library Folder Count1 - - 2704 - - Track ID2704 - NameKodachrome~Mabellene - ArtistSimon & Garfunkel - AlbumThe Concert In Central Park - GenreRock - KindAAC audio file - Size8532391 - Total Time352013 - Disc Number1 - Disc Count1 - Track Number13 - Track Count19 - Year1982 - Date Modified2006-08-12T12:13:58Z - Date Added2009-10-03T14:53:30Z - Bit Rate192 - Sample Rate44100 - Normalization1184 - Artwork Count1 - Sort AlbumConcert In Central Park - Persistent ID1E485EE83A0AC817 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Simon%20&%20Garfunkel/The%20Concert%20In%20Central%20Park/13%20Kodachrome%EF%BD%9EMabellene.m4a - File Folder Count4 - Library Folder Count1 - - 2706 - - Track ID2706 - NameBridge Over Troubled Water - ArtistSimon & Garfunkel - AlbumThe Concert In Central Park - GenreRock - KindAAC audio file - Size6808739 - Total Time280774 - Disc Number1 - Disc Count1 - Track Number14 - Track Count19 - Year1982 - Date Modified2006-08-13T06:46:06Z - Date Added2009-10-03T14:53:30Z - Bit Rate192 - Sample Rate44100 - Normalization667 - Artwork Count1 - Sort AlbumConcert In Central Park - Persistent IDB986226478F4C87E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Simon%20&%20Garfunkel/The%20Concert%20In%20Central%20Park/14%20Bridge%20Over%20Troubled%20Water.m4a - File Folder Count4 - Library Folder Count1 - - 2708 - - Track ID2708 - NameFifty Ways To Leave Your Lover - ArtistSimon & Garfunkel - AlbumThe Concert In Central Park - GenreRock - KindAAC audio file - Size6747512 - Total Time278243 - Disc Number1 - Disc Count1 - Track Number15 - Track Count19 - Year1982 - Date Modified2006-08-13T06:46:04Z - Date Added2009-10-03T14:53:30Z - Bit Rate192 - Sample Rate44100 - Normalization1196 - Artwork Count1 - Sort AlbumConcert In Central Park - Persistent IDC2621BE91E05BE38 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Simon%20&%20Garfunkel/The%20Concert%20In%20Central%20Park/15%20Fifty%20Ways%20To%20Leave%20Your%20Lover.m4a - File Folder Count4 - Library Folder Count1 - - 2710 - - Track ID2710 - NameThe Boxer - ArtistSimon & Garfunkel - AlbumThe Concert In Central Park - GenreRock - KindAAC audio file - Size7673452 - Total Time316509 - Disc Number1 - Disc Count1 - Track Number16 - Track Count19 - Year1982 - Date Modified2006-08-13T06:46:00Z - Date Added2009-10-03T14:53:30Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3426265240 - Play Date UTC2012-07-27T14:50:40Z - Normalization694 - Artwork Count1 - Sort AlbumConcert In Central Park - Sort NameBoxer - Persistent ID1943E220363B6D12 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Simon%20&%20Garfunkel/The%20Concert%20In%20Central%20Park/16%20The%20Boxer.m4a - File Folder Count4 - Library Folder Count1 - - 2712 - - Track ID2712 - NameOld Friends - ArtistSimon & Garfunkel - AlbumThe Concert In Central Park - GenreRock - KindAAC audio file - Size4342379 - Total Time178606 - Disc Number1 - Disc Count1 - Track Number17 - Track Count19 - Year1982 - Date Modified2006-08-13T06:45:58Z - Date Added2009-10-03T14:53:30Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3426265419 - Play Date UTC2012-07-27T14:53:39Z - Normalization230 - Artwork Count1 - Sort AlbumConcert In Central Park - Persistent IDC2A2C9381CE0DDC4 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Simon%20&%20Garfunkel/The%20Concert%20In%20Central%20Park/17%20Old%20Friends.m4a - File Folder Count4 - Library Folder Count1 - - 2714 - - Track ID2714 - NameThe 59th Street Bridge Song (Feelin' Groovy) - ArtistSimon & Garfunkel - AlbumThe Concert In Central Park - GenreRock - KindAAC audio file - Size3822650 - Total Time156965 - Disc Number1 - Disc Count1 - Track Number18 - Track Count19 - Year1982 - Date Modified2006-08-13T06:45:56Z - Date Added2009-10-03T14:53:31Z - Bit Rate192 - Sample Rate44100 - Normalization529 - Artwork Count1 - Sort AlbumConcert In Central Park - Sort Name59th Street Bridge Song (Feelin' Groovy) - Persistent ID1501CC1BF1CA2027 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Simon%20&%20Garfunkel/The%20Concert%20In%20Central%20Park/18%20The%2059th%20Street%20Bridge%20Song%20(Feelin'%20Groovy).m4a - File Folder Count4 - Library Folder Count1 - - 2716 - - Track ID2716 - NameThe Sounds of Silence - ArtistSimon & Garfunkel - AlbumThe Concert In Central Park - GenreRock - KindAAC audio file - Size5779282 - Total Time238792 - Disc Number1 - Disc Count1 - Track Number19 - Track Count19 - Year1982 - Date Modified2006-08-13T06:45:54Z - Date Added2009-10-03T14:53:31Z - Bit Rate192 - Sample Rate44100 - Normalization449 - Artwork Count1 - Sort AlbumConcert In Central Park - Sort NameSounds of Silence - Persistent ID06533E75DA532865 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Simon%20&%20Garfunkel/The%20Concert%20In%20Central%20Park/19%20The%20Sounds%20of%20Silence.m4a - File Folder Count4 - Library Folder Count1 - - 2718 - - Track ID2718 - NameGaayi Gaayi Ab Kaa Kahi - ArtistShubha Mudgal - ComposerRaidas - AlbumIndian Mystica - GenreWorld - KindAAC audio file - Size20176874 - Total Time639333 - Disc Number1 - Disc Count1 - Track Number1 - Track Count5 - Year2003 - Date Modified2008-10-11T09:59:54Z - Date Added2009-10-03T14:54:14Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3337588692 - Play Date UTC2009-10-05T06:28:12Z - Normalization2593 - Artwork Count1 - Persistent ID3BA0ABD81A01E5AE - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Shubha%20Mudgal/Indian%20Mystica/01%20Gaayi%20Gaayi%20Ab%20Kaa%20Kahi.m4a - File Folder Count4 - Library Folder Count1 - - 2720 - - Track ID2720 - NameUd Re Ud Bihangam - ArtistShubha Mudgal - AlbumIndian Mystica - GenreWorld - KindAAC audio file - Size17546911 - Total Time552533 - Disc Number1 - Disc Count1 - Track Number2 - Track Count5 - Year2003 - Date Modified2008-10-11T09:59:53Z - Date Added2009-10-03T14:54:14Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3337589245 - Play Date UTC2009-10-05T06:37:25Z - Normalization1641 - Artwork Count1 - Persistent IDEE39B8964214CCB0 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Shubha%20Mudgal/Indian%20Mystica/02%20Ud%20Re%20Ud%20Bihangam.m4a - File Folder Count4 - Library Folder Count1 - - 2722 - - Track ID2722 - NameBahut Rahi Babul Ghar Dulahin - ArtistShubha Mudgal - ComposerAmir Khusrau - AlbumIndian Mystica - GenreWorld - KindAAC audio file - Size27728256 - Total Time880133 - Disc Number1 - Disc Count1 - Track Number3 - Track Count5 - Year2003 - Date Modified2008-10-11T09:59:51Z - Date Added2009-10-03T14:54:14Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3337590125 - Play Date UTC2009-10-05T06:52:05Z - Normalization1737 - Artwork Count1 - Persistent IDFB39FA0F6D6CCAC1 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Shubha%20Mudgal/Indian%20Mystica/03%20Bahut%20Rahi%20Babul%20Ghar%20Dulahin.m4a - File Folder Count4 - Library Folder Count1 - - 2724 - - Track ID2724 - NameAb Kasie Chhoote Naam Ratt Taagi - ArtistShubha Mudgal - ComposerRaidas - AlbumIndian Mystica - GenreWorld - KindAAC audio file - Size26534373 - Total Time840000 - Disc Number1 - Disc Count1 - Track Number4 - Track Count5 - Year2003 - Date Modified2008-10-11T09:59:49Z - Date Added2009-10-03T14:54:14Z - Bit Rate256 - Sample Rate44100 - Normalization1710 - Artwork Count1 - Persistent IDAD506F851FA9A2E3 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Shubha%20Mudgal/Indian%20Mystica/04%20Ab%20Kasie%20Chhoote%20Naam%20Ratt%20Taagi.m4a - File Folder Count4 - Library Folder Count1 - - 2726 - - Track ID2726 - NameRas Gagan Gufaa Mein Ajar Jharay - ArtistShubha Mudgal - ComposerKabir - AlbumIndian Mystica - GenreWorld - KindAAC audio file - Size29266819 - Total Time921973 - Disc Number1 - Disc Count1 - Track Number5 - Track Count5 - Year2003 - Date Modified2008-10-11T09:59:47Z - Date Added2009-10-03T14:54:15Z - Bit Rate256 - Sample Rate44100 - Normalization2498 - Artwork Count1 - Persistent ID207333B4FABAA6A3 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Shubha%20Mudgal/Indian%20Mystica/05%20Ras%20Gagan%20Gufaa%20Mein%20Ajar%20Jharay.m4a - File Folder Count4 - Library Folder Count1 - - 2728 - - Track ID2728 - NameDere Dere - ArtistShubha Mudgal - AlbumAb Ke Sawan - GenrePop - KindAAC audio file - Size6290137 - Total Time263360 - Track Number1 - Date Modified2008-10-06T14:12:22Z - Date Added2009-10-03T14:54:15Z - Bit Rate189 - Sample Rate44100 - Play Count1 - Play Date3389363630 - Play Date UTC2011-05-27T12:23:50Z - Skip Count1 - Skip Date2013-07-25T04:25:31Z - Normalization983 - Artwork Count1 - Persistent ID390232F009A2717D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Shubha%20Mudgal/Ab%20Ke%20Sawan/01%20Dere%20Dere.m4a - File Folder Count4 - Library Folder Count1 - - 2730 - - Track ID2730 - NameUsne Kaha - ArtistShubha Mudgal - AlbumAb Ke Sawan - GenrePop - KindAAC audio file - Size7843018 - Total Time329212 - Track Number2 - Date Modified2008-10-06T14:12:23Z - Date Added2009-10-03T14:54:15Z - Bit Rate188 - Sample Rate44100 - Normalization1204 - Artwork Count1 - Persistent ID346079B071D8A19F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Shubha%20Mudgal/Ab%20Ke%20Sawan/02%20Usne%20Kaha.m4a - File Folder Count4 - Library Folder Count1 - - 2732 - - Track ID2732 - NameSeekho Na - ArtistShubha Mudgal - AlbumAb Ke Sawan - GenrePop - KindAAC audio file - Size8489711 - Total Time355311 - Track Number3 - Date Modified2008-10-06T14:12:24Z - Date Added2009-10-03T14:54:15Z - Bit Rate189 - Sample Rate44100 - Normalization870 - Artwork Count1 - Persistent ID4EEA39E195644EC5 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Shubha%20Mudgal/Ab%20Ke%20Sawan/03%20Seekho%20Na.m4a - File Folder Count4 - Library Folder Count1 - - 2734 - - Track ID2734 - NameBhai Re - ArtistShubha Mudgal - AlbumAb Ke Sawan - GenrePop - KindAAC audio file - Size8274378 - Total Time345280 - Track Number4 - Date Modified2008-10-06T14:12:26Z - Date Added2009-10-03T14:54:15Z - Bit Rate189 - Sample Rate44100 - Normalization632 - Artwork Count1 - Persistent IDB2CC86CA84039B0B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Shubha%20Mudgal/Ab%20Ke%20Sawan/04%20Bhai%20Re.m4a - File Folder Count4 - Library Folder Count1 - - 2736 - - Track ID2736 - NameHai Pyar To Musafir - ArtistShubha Mudgal - AlbumAb Ke Sawan - GenrePop - KindAAC audio file - Size5306676 - Total Time221146 - Track Number5 - Date Modified2008-10-06T14:12:27Z - Date Added2009-10-03T14:54:16Z - Bit Rate189 - Sample Rate44100 - Skip Count1 - Skip Date2013-07-25T04:25:49Z - Normalization1163 - Artwork Count1 - Persistent ID6A9910103B38D36B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Shubha%20Mudgal/Ab%20Ke%20Sawan/05%20Hai%20Pyar%20To%20Musafir.m4a - File Folder Count4 - Library Folder Count1 - - 2738 - - Track ID2738 - NameIs Pal - ArtistShubha Mudgal - AlbumAb Ke Sawan - GenrePop - KindAAC audio file - Size8287045 - Total Time345373 - Track Number6 - Date Modified2008-10-06T14:12:28Z - Date Added2009-10-03T14:54:16Z - Bit Rate190 - Sample Rate44100 - Normalization832 - Artwork Count1 - Persistent ID5A17C8D672FA2461 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Shubha%20Mudgal/Ab%20Ke%20Sawan/06%20Is%20Pal.m4a - File Folder Count4 - Library Folder Count1 - - 2740 - - Track ID2740 - NameBairie Chain - ArtistShubha Mudgal - AlbumAb Ke Sawan - GenrePop - KindAAC audio file - Size8046811 - Total Time337803 - Track Number7 - Date Modified2008-10-06T14:12:29Z - Date Added2009-10-03T14:54:16Z - Bit Rate188 - Sample Rate44100 - Normalization980 - Artwork Count1 - Persistent IDCDA03B3CEC027EBC - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Shubha%20Mudgal/Ab%20Ke%20Sawan/07%20Bairie%20Chain.m4a - File Folder Count4 - Library Folder Count1 - - 2742 - - Track ID2742 - NameAb Ke Sawan - ArtistShubha Mudgal - AlbumAb Ke Sawan - GenrePop - KindAAC audio file - Size6359776 - Total Time269862 - Track Number8 - Date Modified2008-10-06T14:12:31Z - Date Added2009-10-03T14:54:16Z - Bit Rate186 - Sample Rate44100 - Normalization894 - Artwork Count1 - Persistent ID141D7BC17A0578F0 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Shubha%20Mudgal/Ab%20Ke%20Sawan/08%20Ab%20Ke%20Sawan.m4a - File Folder Count4 - Library Folder Count1 - - 2744 - - Track ID2744 - NameIntroduction - ArtistShoba Raju - ComposerAnnamacharya - AlbumAnnamacharya Samkeertanalu - GenreAlternative & Punk - KindAAC audio file - Size4409210 - Total Time180649 - Track Number1 - Track Count13 - Date Modified2006-07-30T03:58:30Z - Date Added2009-10-03T14:54:16Z - Bit Rate192 - Sample Rate44100 - Normalization2073 - Artwork Count1 - Persistent ID8387C6C3A19F63F5 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Shoba%20Raju/Annamacharya%20Samkeertanalu/01%20Introduction.m4a - File Folder Count4 - Library Folder Count1 - - 2746 - - Track ID2746 - NameAdivo - Madhyamavathi - ArtistShoba Raju - ComposerAnnamacharya - AlbumAnnamacharya Samkeertanalu - GenreAlternative & Punk - KindAAC audio file - Size10031453 - Total Time413429 - Track Number2 - Track Count13 - Date Modified2006-07-30T03:58:32Z - Date Added2009-10-03T14:54:16Z - Bit Rate192 - Sample Rate44100 - Normalization8681 - Artwork Count1 - Persistent IDF0014328196E620E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Shoba%20Raju/Annamacharya%20Samkeertanalu/02%20Adivo%20-%20Madhyamavathi.m4a - File Folder Count4 - Library Folder Count1 - - 2748 - - Track ID2748 - NameKondalalo - HIndolam - ArtistShoba Raju - ComposerAnnamacharya - AlbumAnnamacharya Samkeertanalu - GenreAlternative & Punk - KindAAC audio file - Size6979506 - Total Time288669 - Track Number3 - Track Count13 - Date Modified2006-07-30T03:58:32Z - Date Added2009-10-03T14:54:17Z - Bit Rate192 - Sample Rate44100 - Normalization5839 - Artwork Count1 - Persistent IDDC376442537CFB39 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Shoba%20Raju/Annamacharya%20Samkeertanalu/03%20Kondalalo%20-%20HIndolam.m4a - File Folder Count4 - Library Folder Count1 - - 2750 - - Track ID2750 - NameChalada - Hamsadhvani - ArtistShoba Raju - ComposerAnnamacharya - AlbumAnnamacharya Samkeertanalu - GenreAlternative & Punk - KindAAC audio file - Size7513079 - Total Time309497 - Track Number4 - Track Count13 - Date Modified2006-07-30T03:58:32Z - Date Added2009-10-03T14:54:17Z - Bit Rate192 - Sample Rate44100 - Normalization8914 - Artwork Count1 - Persistent IDBC8B0E02509F3E68 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Shoba%20Raju/Annamacharya%20Samkeertanalu/04%20Chalada%20-%20Hamsadhvani.m4a - File Folder Count4 - Library Folder Count1 - - 2752 - - Track ID2752 - NameKulukaka - Athana - ArtistShoba Raju - ComposerAnnamacharya - AlbumAnnamacharya Samkeertanalu - GenreAlternative & Punk - KindAAC audio file - Size6948969 - Total Time286834 - Track Number5 - Track Count13 - Date Modified2006-07-30T03:58:32Z - Date Added2009-10-03T14:54:17Z - Bit Rate192 - Sample Rate44100 - Normalization8907 - Artwork Count1 - Persistent ID3139A8B4DCBA55C1 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Shoba%20Raju/Annamacharya%20Samkeertanalu/05%20Kulukaka%20-%20Athana.m4a - File Folder Count4 - Library Folder Count1 - - 2754 - - Track ID2754 - NameSirutanavvula - Todi - ArtistShoba Raju - ComposerAnnamacharya - AlbumAnnamacharya Samkeertanalu - GenreAlternative & Punk - KindAAC audio file - Size5877012 - Total Time244156 - Track Number6 - Track Count13 - Date Modified2006-07-30T03:58:32Z - Date Added2009-10-03T14:54:17Z - Bit Rate192 - Sample Rate44100 - Normalization4112 - Artwork Count1 - Persistent ID9B4B219AAA66E052 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Shoba%20Raju/Annamacharya%20Samkeertanalu/06%20Sirutanavvula%20-%20Todi.m4a - File Folder Count4 - Library Folder Count1 - - 2756 - - Track ID2756 - NameCommentary (English) - ArtistShoba Raju - ComposerAnnamacharya - AlbumAnnamacharya Samkeertanalu - GenreAlternative & Punk - KindAAC audio file - Size3884473 - Total Time159937 - Track Number7 - Track Count13 - Date Modified2006-07-30T03:58:32Z - Date Added2009-10-03T14:54:17Z - Bit Rate192 - Sample Rate44100 - Normalization2441 - Artwork Count1 - Persistent ID33576E6A3AAC7500 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Shoba%20Raju/Annamacharya%20Samkeertanalu/07%20Commentary%20(English).m4a - File Folder Count4 - Library Folder Count1 - - 2758 - - Track ID2758 - NameBramha Kadigina - Mukhari - ArtistShoba Raju - ComposerAnnamacharya - AlbumAnnamacharya Samkeertanalu - GenreAlternative & Punk - KindAAC audio file - Size8552722 - Total Time352756 - Track Number8 - Track Count13 - Date Modified2006-07-30T03:58:32Z - Date Added2009-10-03T14:54:17Z - Bit Rate192 - Sample Rate44100 - Normalization3668 - Artwork Count1 - Persistent ID9EDF85934272F5C0 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Shoba%20Raju/Annamacharya%20Samkeertanalu/08%20Bramha%20Kadigina%20-%20Mukhari.m4a - File Folder Count4 - Library Folder Count1 - - 2760 - - Track ID2760 - NameGovindasrita - Dhrmavathi - ArtistShoba Raju - ComposerAnnamacharya - AlbumAnnamacharya Samkeertanalu - GenreAlternative & Punk - KindAAC audio file - Size8444435 - Total Time348808 - Track Number9 - Track Count13 - Date Modified2006-07-30T03:58:32Z - Date Added2009-10-03T14:54:18Z - Bit Rate192 - Sample Rate44100 - Normalization3822 - Artwork Count1 - Persistent ID708531A4A70DFC1F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Shoba%20Raju/Annamacharya%20Samkeertanalu/09%20Govindasrita%20-%20Dhrmavathi.m4a - File Folder Count4 - Library Folder Count1 - - 2762 - - Track ID2762 - NameEmoko - Tilang - ArtistShoba Raju - ComposerAnnamacharya - AlbumAnnamacharya Samkeertanalu - GenreAlternative & Punk - KindAAC audio file - Size9329560 - Total Time385681 - Track Number10 - Track Count13 - Date Modified2006-07-30T03:58:32Z - Date Added2009-10-03T14:54:18Z - Bit Rate192 - Sample Rate44100 - Normalization3245 - Artwork Count1 - Persistent ID0F0E3267C578CC24 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Shoba%20Raju/Annamacharya%20Samkeertanalu/10%20Emoko%20-%20Tilang.m4a - File Folder Count4 - Library Folder Count1 - - 2764 - - Track ID2764 - NameOho Dem - Bouli - ArtistShoba Raju - ComposerAnnamacharya - AlbumAnnamacharya Samkeertanalu - GenreAlternative & Punk - KindAAC audio file - Size4967948 - Total Time204589 - Track Number11 - Track Count13 - Date Modified2006-07-30T03:58:32Z - Date Added2009-10-03T14:54:18Z - Bit Rate192 - Sample Rate44100 - Normalization6900 - Artwork Count1 - Persistent ID19CDE48746587023 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Shoba%20Raju/Annamacharya%20Samkeertanalu/11%20Oho%20Dem%20-%20Bouli.m4a - File Folder Count4 - Library Folder Count1 - - 2766 - - Track ID2766 - NameGaline - Subhali - ArtistShoba Raju - ComposerAnnamacharya - AlbumAnnamacharya Samkeertanalu - GenreAlternative & Punk - KindAAC audio file - Size8229587 - Total Time339683 - Track Number12 - Track Count13 - Date Modified2006-07-30T03:58:34Z - Date Added2009-10-03T14:54:18Z - Bit Rate192 - Sample Rate44100 - Normalization4756 - Artwork Count1 - Persistent IDBDF724088D882BDB - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Shoba%20Raju/Annamacharya%20Samkeertanalu/12%20Galine%20-%20Subhali.m4a - File Folder Count4 - Library Folder Count1 - - 2768 - - Track ID2768 - NameVina Venkatesam - ArtistShoba Raju - ComposerAnnamacharya - AlbumAnnamacharya Samkeertanalu - GenreAlternative & Punk - KindAAC audio file - Size3918598 - Total Time159914 - Track Number13 - Track Count13 - Date Modified2006-07-30T03:58:34Z - Date Added2009-10-03T14:54:18Z - Bit Rate192 - Sample Rate44100 - Normalization5655 - Artwork Count1 - Persistent IDFE9C2757B8F92654 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Shoba%20Raju/Annamacharya%20Samkeertanalu/13%20Vina%20Venkatesam.m4a - File Folder Count4 - Library Folder Count1 - - 2770 - - Track ID2770 - Namegentle-intro-part-I - ArtistShivkumar - ComposerRamesh Mahadevan - AlbumA Gentle Introduction To Carnatic Music - GenreCarnatic - KindMPEG audio file - Size30521765 - Total Time3814948 - Track Number1 - Date Modified2007-12-18T12:55:31Z - Date Added2009-10-03T14:54:19Z - Bit Rate64 - Sample Rate22050 - Sort AlbumGentle Introduction To Carnatic Music - Persistent ID227619A4A236BACA - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Shivkumar/A%20Gentle%20Introduction%20To%20Carnatic%20Music/01%20gentle-intro-part-I.mp3 - File Folder Count4 - Library Folder Count1 - - 2772 - - Track ID2772 - Namegentle-intro-part-II - ArtistShivkumar - ComposerRamesh Mahadevan - AlbumA Gentle Introduction To Carnatic Music - GenreCarnatic - KindMPEG audio file - Size36118238 - Total Time4514507 - Track Number2 - Date Modified2007-12-18T12:55:31Z - Date Added2009-10-03T14:54:19Z - Bit Rate64 - Sample Rate22050 - Sort AlbumGentle Introduction To Carnatic Music - Persistent ID1B96E8B792205CBA - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Shivkumar/A%20Gentle%20Introduction%20To%20Carnatic%20Music/02%20gentle-intro-part-II.mp3 - File Folder Count4 - Library Folder Count1 - - 2774 - - Track ID2774 - Namegentle-intro-part-III - ArtistShivkumar - ComposerRamesh Mahadevan - AlbumA Gentle Introduction To Carnatic Music - GenreCarnatic - KindMPEG audio file - Size35246793 - Total Time4405577 - Track Number3 - Date Modified2007-12-18T12:55:32Z - Date Added2009-10-03T14:54:19Z - Bit Rate64 - Sample Rate22050 - Sort AlbumGentle Introduction To Carnatic Music - Persistent IDBE0932C56E467194 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Shivkumar/A%20Gentle%20Introduction%20To%20Carnatic%20Music/03%20gentle-intro-part-III.mp3 - File Folder Count4 - Library Folder Count1 - - 2776 - - Track ID2776 - Namegentle-intro-part-IV - ArtistShivkumar - ComposerRamesh Mahadevan - AlbumA Gentle Introduction To Carnatic Music - GenreCarnatic - KindMPEG audio file - Size18931756 - Total Time2366197 - Track Number4 - Date Modified2007-12-18T12:55:32Z - Date Added2009-10-03T14:54:20Z - Bit Rate64 - Sample Rate22050 - Sort AlbumGentle Introduction To Carnatic Music - Persistent IDC7D45199D494D2D0 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Shivkumar/A%20Gentle%20Introduction%20To%20Carnatic%20Music/04%20gentle-intro-part-IV.mp3 - File Folder Count4 - Library Folder Count1 - - 2778 - - Track ID2778 - NameJoy (Live) - ArtistShakti - ComposerL. Shankar - AlbumShakti With John McLaughlin Live - GenreJazz - KindAAC audio file - Size26483006 - Total Time1096351 - Disc Number1 - Disc Count1 - Track Number1 - Track Count3 - Year1975 - Date Modified2006-08-07T14:29:54Z - Date Added2009-10-03T14:54:20Z - Bit Rate192 - Sample Rate44100 - Normalization425 - Artwork Count1 - Persistent IDE206986F52CF9B0C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Shakti/Shakti%20With%20John%20McLaughlin%20Live/01%20Joy%20(Live).m4a - File Folder Count4 - Library Folder Count1 - - 2780 - - Track ID2780 - NameLotus Feet (Live) - ArtistShakti - ComposerJ. McLaughlin - AlbumShakti With John McLaughlin Live - GenreJazz - KindAAC audio file - Size6912144 - Total Time286486 - Disc Number1 - Disc Count1 - Track Number2 - Track Count3 - Year1975 - Date Modified2006-08-07T14:29:54Z - Date Added2009-10-03T14:54:20Z - Bit Rate192 - Sample Rate44100 - Normalization84 - Artwork Count1 - Persistent IDC735A824218210D0 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Shakti/Shakti%20With%20John%20McLaughlin%20Live/02%20Lotus%20Feet%20(Live).m4a - File Folder Count4 - Library Folder Count1 - - 2782 - - Track ID2782 - NameWhat Need Have I For This - What Need Have I For That - I Am Dancing At The Feet Of My Lord - All Is Bliss - All Is Bliss (Live) - ArtistShakti - ComposerL. Shankar - AlbumShakti With John McLaughlin Live - GenreJazz - KindAAC audio file - Size42222339 - Total Time1744165 - Disc Number1 - Disc Count1 - Track Number3 - Track Count3 - Year1975 - Date Modified2006-08-07T14:29:52Z - Date Added2009-10-03T14:54:20Z - Bit Rate192 - Sample Rate44100 - Normalization235 - Artwork Count1 - Persistent ID22B8AFAF67AE171E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Shakti/Shakti%20With%20John%20McLaughlin%20Live/03%20What%20Need%20Have%20I%20For%20This%20-%20What%20Need%20Have%20I%20For%20That%20-%20I%20Am%20Dancing%20At%20The%20Feet%20Of%20My%20Lord%20-%20All%20Is%20Bliss%20-%20All%20Is%20Bliss%20(Live).m4a - File Folder Count4 - Library Folder Count1 - - 2784 - - Track ID2784 - NameBring It On - ArtistSeal - ComposerSeal; Isidore, Gus; Melvoin, Wendy; Coleman, Lisa & Rizzo, Carmen - AlbumSeal - GenrePop - KindAAC audio file - Size5752660 - Total Time237794 - Disc Number1 - Disc Count1 - Track Number1 - Track Count11 - Year1994 - Date Modified2006-07-28T04:17:50Z - Date Added2009-10-03T14:54:20Z - Bit Rate192 - Sample Rate44100 - Play Count5 - Play Date3484155564 - Play Date UTC2014-05-28T15:29:24Z - Normalization2158 - Artwork Count1 - Persistent ID7A2F67BD475D2133 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Seal/Seal/01%20Bring%20It%20On.m4a - File Folder Count4 - Library Folder Count1 - - 2786 - - Track ID2786 - NamePrayer For The Dying - ArtistSeal - ComposerSeal & Isidore, Gus - AlbumSeal - GenrePop - KindAAC audio file - Size8001317 - Total Time330070 - Disc Number1 - Disc Count1 - Track Number2 - Track Count11 - Year1994 - Date Modified2006-07-28T04:17:50Z - Date Added2009-10-03T14:54:20Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3484155894 - Play Date UTC2014-05-28T15:34:54Z - Normalization2132 - Artwork Count1 - Persistent ID74AADF0504BC9434 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Seal/Seal/02%20Prayer%20For%20The%20Dying.m4a - File Folder Count4 - Library Folder Count1 - - 2788 - - Track ID2788 - NameDreaming In Metaphors - ArtistSeal - ComposerSeal & Isidore, Gus - AlbumSeal - GenrePop - KindAAC audio file - Size8527687 - Total Time351827 - Disc Number1 - Disc Count1 - Track Number3 - Track Count11 - Year1994 - Date Modified2006-07-28T04:17:52Z - Date Added2009-10-03T14:54:21Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3484156245 - Play Date UTC2014-05-28T15:40:45Z - Normalization2196 - Artwork Count1 - Persistent IDBCCF016192A1301A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Seal/Seal/03%20Dreaming%20In%20Metaphors.m4a - File Folder Count4 - Library Folder Count1 - - 2790 - - Track ID2790 - NameDon't Cry - ArtistSeal - ComposerSeal - AlbumSeal - GenrePop - KindAAC audio file - Size9156585 - Total Time377810 - Disc Number1 - Disc Count1 - Track Number4 - Track Count11 - Year1994 - Date Modified2006-07-28T04:17:52Z - Date Added2009-10-03T14:54:21Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3484156623 - Play Date UTC2014-05-28T15:47:03Z - Normalization3270 - Artwork Count1 - Persistent ID413E07F3D3AEF71D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Seal/Seal/04%20Don't%20Cry.m4a - File Folder Count4 - Library Folder Count1 - - 2792 - - Track ID2792 - NameFast Changes - ArtistSeal - ComposerSeal & Isidore, Gus - AlbumSeal - GenrePop - KindAAC audio file - Size8271036 - Total Time341215 - Disc Number1 - Disc Count1 - Track Number5 - Track Count11 - Year1994 - Date Modified2006-07-28T04:17:52Z - Date Added2009-10-03T14:54:21Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3472648000 - Play Date UTC2014-01-15T10:56:40Z - Normalization1819 - Artwork Count1 - Persistent ID8D14233A5862D559 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Seal/Seal/05%20Fast%20Changes.m4a - File Folder Count4 - Library Folder Count1 - - 2794 - - Track ID2794 - NameKiss From A Rose - ArtistSeal - ComposerSeal - AlbumSeal - GenrePop - KindAAC audio file - Size6983111 - Total Time287995 - Disc Number1 - Disc Count1 - Track Number6 - Track Count11 - Year1994 - Date Modified2006-07-28T04:17:52Z - Date Added2009-10-03T14:54:21Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3472648288 - Play Date UTC2014-01-15T11:01:28Z - Normalization2817 - Artwork Count1 - Persistent IDFE764097755B3627 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Seal/Seal/06%20Kiss%20From%20A%20Rose.m4a - File Folder Count4 - Library Folder Count1 - - 2796 - - Track ID2796 - NamePeople Asking Why - ArtistSeal - ComposerSeal - AlbumSeal - GenrePop - KindAAC audio file - Size6927392 - Total Time285696 - Disc Number1 - Disc Count1 - Track Number7 - Track Count11 - Year1994 - Date Modified2006-07-28T04:17:52Z - Date Added2009-10-03T14:54:21Z - Bit Rate192 - Sample Rate44100 - Normalization1691 - Artwork Count1 - Persistent ID88061F89A18D4EA0 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Seal/Seal/07%20People%20Asking%20Why.m4a - File Folder Count4 - Library Folder Count1 - - 2798 - - Track ID2798 - NameNewborn Friend - ArtistSeal - ComposerSeal - AlbumSeal - GenrePop - KindAAC audio file - Size5932778 - Total Time244458 - Disc Number1 - Disc Count1 - Track Number8 - Track Count11 - Year1994 - Date Modified2006-07-28T04:17:54Z - Date Added2009-10-03T14:54:21Z - Bit Rate192 - Sample Rate44100 - Normalization1949 - Artwork Count1 - Persistent IDE750CC471375E465 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Seal/Seal/08%20Newborn%20Friend.m4a - File Folder Count4 - Library Folder Count1 - - 2800 - - Track ID2800 - NameIf I Could - ArtistSeal - ComposerSeal - AlbumSeal - GenrePop - KindAAC audio file - Size6220213 - Total Time256416 - Disc Number1 - Disc Count1 - Track Number9 - Track Count11 - Year1994 - Date Modified2006-07-28T04:17:54Z - Date Added2009-10-03T14:54:21Z - Bit Rate192 - Sample Rate44100 - Normalization1544 - Artwork Count1 - Persistent ID030F10C6A47FE90A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Seal/Seal/09%20If%20I%20Could.m4a - File Folder Count4 - Library Folder Count1 - - 2802 - - Track ID2802 - NameI'm Alive - ArtistSeal - ComposerSeal; Isidore, Gus; Melvoin, Wendy; Coleman, Lisa; Bruce, Chris & Rizzo, Carmen - AlbumSeal - GenrePop - KindAAC audio file - Size5867485 - Total Time241741 - Disc Number1 - Disc Count1 - Track Number10 - Track Count11 - Year1994 - Date Modified2006-07-28T04:17:54Z - Date Added2009-10-03T14:54:21Z - Bit Rate192 - Sample Rate44100 - Normalization1718 - Artwork Count1 - Persistent ID72533B8101F1756E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Seal/Seal/10%20I'm%20Alive.m4a - File Folder Count4 - Library Folder Count1 - - 2804 - - Track ID2804 - NameBring It On (Reprise) - ArtistSeal - ComposerSeal; Isidore, Gus; Melvoin, Wendy; Coleman, Lisa & Rizzo, Carmen - AlbumSeal - GenrePop - KindAAC audio file - Size1866721 - Total Time75649 - Disc Number1 - Disc Count1 - Track Number11 - Track Count11 - Year1994 - Date Modified2006-07-28T04:17:54Z - Date Added2009-10-03T14:54:21Z - Bit Rate192 - Sample Rate44100 - Normalization1327 - Artwork Count1 - Persistent IDE7DCB4938B628F01 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Seal/Seal/11%20Bring%20It%20On%20(Reprise).m4a - File Folder Count4 - Library Folder Count1 - - 2806 - - Track ID2806 - NameBanno Ranni - ArtistSadhana Sargam - ComposerA.R. Rahman/Javed Akhtar - Album1947 - GenreSoundtrack - KindAAC audio file - Size5967835 - Total Time248639 - Track Number2 - Year1999 - Date Modified2007-07-27T05:52:54Z - Date Added2009-10-03T14:54:21Z - Bit Rate192 - Sample Rate44100 - Normalization4215 - Persistent IDDB820CFED67B8312 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Sadhana%20Sargam/1947/02%20Banno%20Ranni.m4a - File Folder Count4 - Library Folder Count1 - - 2808 - - Track ID2808 - NameBanno Ranni - ArtistSadhana Sargam - ComposerA.R. Rahman/Javed Akhtar - Album1947 - GenreSoundtrack - KindAAC audio file - Size5970629 - Total Time248661 - Track Number2 - Year1999 - Date Modified2006-12-27T09:56:00Z - Date Added2009-10-03T14:54:22Z - Bit Rate192 - Sample Rate44100 - Normalization4215 - Persistent ID6F0B0A559DA66EDA - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Sadhana%20Sargam/1947/02%20Banno%20Ranni%202.m4a - File Folder Count4 - Library Folder Count1 - - 2810 - - Track ID2810 - NameBanno Ranni - ArtistSadhana Sargam - ComposerA.R. Rahman/Javed Akhtar - Album1947 - GenreSoundtrack - KindAAC audio file - Size5970629 - Total Time248661 - Track Number2 - Year1999 - Date Modified2006-12-26T05:34:42Z - Date Added2009-10-03T14:54:22Z - Bit Rate192 - Sample Rate44100 - Normalization4215 - Persistent IDE6CB340A3DDD1F2E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Sadhana%20Sargam/1947/02%20Banno%20Ranni%203.m4a - File Folder Count4 - Library Folder Count1 - - 2812 - - Track ID2812 - NameBanno Ranni - ArtistSadhana Sargam - ComposerA.R. Rahman/Javed Akhtar - Album1947 - GenreSoundtrack - KindAAC audio file - Size5926274 - Total Time248639 - Track Number2 - Year1999 - Date Modified2007-12-02T07:35:08Z - Date Added2009-10-03T14:54:22Z - Bit Rate189 - Sample Rate44100 - Normalization4215 - Persistent IDD78F372C1A7EF158 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Sadhana%20Sargam/1947/02%20Banno%20Ranni%201.m4a - File Folder Count4 - Library Folder Count1 - - 2814 - - Track ID2814 - NameA Meeting By The River - ArtistRy Cooder & V.M. Bhatt - ComposerRy Cooder & V.M. Bhatt - AlbumA Meeting By The River - GenreWorld - KindAAC audio file - Size14722196 - Total Time607734 - Disc Number1 - Disc Count1 - Track Number1 - Track Count4 - Year1993 - Date Modified2006-08-07T05:33:16Z - Date Added2009-10-03T14:54:22Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3390921909 - Play Date UTC2011-06-14T13:15:09Z - Normalization351 - Artwork Count1 - Sort AlbumMeeting By The River - Sort NameMeeting By The River - Persistent ID0621D78D19A5EAB0 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ry%20Cooder%20&%20V.M.%20Bhatt/A%20Meeting%20By%20The%20River/01%20A%20Meeting%20By%20The%20River.m4a - File Folder Count4 - Library Folder Count1 - - 2816 - - Track ID2816 - NameLonging - ArtistRy Cooder & V.M. Bhatt - ComposerRy Cooder & V.M. Bhatt - AlbumA Meeting By The River - GenreWorld - KindAAC audio file - Size17373908 - Total Time719468 - Disc Number1 - Disc Count1 - Track Number2 - Track Count4 - Year1993 - Date Modified2006-08-07T05:33:14Z - Date Added2009-10-03T14:54:22Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3390922629 - Play Date UTC2011-06-14T13:27:09Z - Normalization169 - Artwork Count1 - Sort AlbumMeeting By The River - Persistent ID9EA7D196CAEFDD78 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ry%20Cooder%20&%20V.M.%20Bhatt/A%20Meeting%20By%20The%20River/02%20Longing.m4a - File Folder Count4 - Library Folder Count1 - - 2818 - - Track ID2818 - NameGanges Delta Blues - ArtistRy Cooder & V.M. Bhatt - ComposerRy Cooder & V.M. Bhatt - AlbumA Meeting By The River - GenreWorld - KindAAC audio file - Size14516176 - Total Time599212 - Disc Number1 - Disc Count1 - Track Number3 - Track Count4 - Year1993 - Date Modified2006-08-07T05:33:14Z - Date Added2009-10-03T14:54:22Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3390833555 - Play Date UTC2011-06-13T12:42:35Z - Normalization568 - Artwork Count1 - Sort AlbumMeeting By The River - Persistent ID68923E5B18920A3F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ry%20Cooder%20&%20V.M.%20Bhatt/A%20Meeting%20By%20The%20River/03%20Ganges%20Delta%20Blues.m4a - File Folder Count4 - Library Folder Count1 - - 2820 - - Track ID2820 - NameIsa Lei - ArtistRy Cooder & V.M. Bhatt - ComposerA W Caten - AlbumA Meeting By The River - GenreWorld - KindAAC audio file - Size11152133 - Total Time460310 - Disc Number1 - Disc Count1 - Track Number4 - Track Count4 - Year1993 - Date Modified2006-08-07T05:33:14Z - Date Added2009-10-03T14:54:22Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3390834015 - Play Date UTC2011-06-13T12:50:15Z - Normalization49 - Artwork Count1 - Sort AlbumMeeting By The River - Sort ComposerW Caten - Persistent IDFB8B7CC15AA3CA11 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ry%20Cooder%20&%20V.M.%20Bhatt/A%20Meeting%20By%20The%20River/04%20Isa%20Lei.m4a - File Folder Count4 - Library Folder Count1 - - 2822 - - Track ID2822 - NameThe Bourgeois Blues - ArtistRy Cooder - ComposerHuddie Ledbetter-Alan Lomax - AlbumChicken Skin Music - GenreRock - KindAAC audio file - Size4927456 - Total Time204914 - Disc Number1 - Disc Count1 - Track Number1 - Track Count9 - Year1976 - Date Modified2006-09-05T15:51:00Z - Date Added2009-10-03T14:54:22Z - Bit Rate192 - Sample Rate44100 - Normalization1082 - Artwork Count1 - Sort NameBourgeois Blues - Persistent ID9B08F32CB2B8F182 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ry%20Cooder/Chicken%20Skin%20Music/01%20The%20Bourgeois%20Blues.m4a - File Folder Count4 - Library Folder Count1 - - 2824 - - Track ID2824 - NameI Got Mine - ArtistRy Cooder - ComposerTraditional - AlbumChicken Skin Music - GenreRock - KindAAC audio file - Size6468735 - Total Time268212 - Disc Number1 - Disc Count1 - Track Number2 - Track Count9 - Year1976 - Date Modified2006-09-05T15:51:00Z - Date Added2009-10-03T14:54:23Z - Bit Rate192 - Sample Rate44100 - Normalization1207 - Artwork Count1 - Persistent ID08D697F8004CC456 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ry%20Cooder/Chicken%20Skin%20Music/02%20I%20Got%20Mine.m4a - File Folder Count4 - Library Folder Count1 - - 2826 - - Track ID2826 - NameAlways Lift Him Up / Kanaka Wai Wai - ArtistRy Cooder - ComposerAlfred Reed - AlbumChicken Skin Music - GenreRock - KindAAC audio file - Size8773776 - Total Time363506 - Disc Number1 - Disc Count1 - Track Number3 - Track Count9 - Year1976 - Date Modified2006-09-05T15:50:58Z - Date Added2009-10-03T14:54:23Z - Bit Rate192 - Sample Rate44100 - Normalization933 - Artwork Count1 - Persistent ID4D58B19AF00E9536 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ry%20Cooder/Chicken%20Skin%20Music/03%20Always%20Lift%20Him%20Up%20_%20Kanaka%20Wai%20Wai.m4a - File Folder Count4 - Library Folder Count1 - - 2828 - - Track ID2828 - NameHe'll Have To Go - ArtistRy Cooder - ComposerAllison-Allison - AlbumChicken Skin Music - GenreRock - KindAAC audio file - Size7457872 - Total Time309241 - Disc Number1 - Disc Count1 - Track Number4 - Track Count9 - Year1976 - Date Modified2006-09-05T15:50:58Z - Date Added2009-10-03T14:54:23Z - Bit Rate192 - Sample Rate44100 - Normalization943 - Artwork Count1 - Persistent ID2BBA5C890A366371 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ry%20Cooder/Chicken%20Skin%20Music/04%20He'll%20Have%20To%20Go.m4a - File Folder Count4 - Library Folder Count1 - - 2830 - - Track ID2830 - NameSmack Dab In The Middle - ArtistRy Cooder - ComposerCharles E. Calhoun - AlbumChicken Skin Music - GenreRock - KindAAC audio file - Size4816170 - Total Time199899 - Disc Number1 - Disc Count1 - Track Number5 - Track Count9 - Year1976 - Date Modified2006-09-05T15:50:58Z - Date Added2009-10-03T14:54:23Z - Bit Rate192 - Sample Rate44100 - Normalization830 - Artwork Count1 - Persistent ID8FCE85D5639AF26A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ry%20Cooder/Chicken%20Skin%20Music/05%20Smack%20Dab%20In%20The%20Middle.m4a - File Folder Count4 - Library Folder Count1 - - 2832 - - Track ID2832 - NameStand By Me - ArtistRy Cooder - ComposerBen E. King-Jerry Leiber-Mike Stoller - AlbumChicken Skin Music - GenreRock - KindAAC audio file - Size5347105 - Total Time223978 - Disc Number1 - Disc Count1 - Track Number6 - Track Count9 - Year1976 - Date Modified2006-09-05T15:50:58Z - Date Added2009-10-03T14:54:23Z - Bit Rate192 - Sample Rate44100 - Normalization995 - Artwork Count1 - Persistent IDCE51345B282DDE54 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ry%20Cooder/Chicken%20Skin%20Music/06%20Stand%20By%20Me.m4a - File Folder Count4 - Library Folder Count1 - - 2834 - - Track ID2834 - NameYellow Roses - ArtistRy Cooder - ComposerK. Devine-S. Nichols - AlbumChicken Skin Music - GenreRock - KindAAC audio file - Size8991139 - Total Time372516 - Disc Number1 - Disc Count1 - Track Number7 - Track Count9 - Year1976 - Date Modified2006-09-05T15:50:56Z - Date Added2009-10-03T14:54:23Z - Bit Rate192 - Sample Rate44100 - Normalization603 - Artwork Count1 - Persistent ID890D11FC34B2E894 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ry%20Cooder/Chicken%20Skin%20Music/07%20Yellow%20Roses.m4a - File Folder Count4 - Library Folder Count1 - - 2836 - - Track ID2836 - NameChloe - ArtistRy Cooder - ComposerGus Kahn-Neil Moret - AlbumChicken Skin Music - GenreRock - KindAAC audio file - Size4416390 - Total Time184550 - Disc Number1 - Disc Count1 - Track Number8 - Track Count9 - Year1976 - Date Modified2006-09-05T15:50:56Z - Date Added2009-10-03T14:54:23Z - Bit Rate192 - Sample Rate44100 - Normalization343 - Artwork Count1 - Persistent IDFF94CE8B4BD2AFA2 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ry%20Cooder/Chicken%20Skin%20Music/08%20Chloe.m4a - File Folder Count4 - Library Folder Count1 - - 2838 - - Track ID2838 - NameGoodnight Irene - ArtistRy Cooder - ComposerHuddie Ledbetter-John Lomax - AlbumChicken Skin Music - GenreRock - KindAAC audio file - Size6622343 - Total Time272647 - Disc Number1 - Disc Count1 - Track Number9 - Track Count9 - Year1976 - Date Modified2006-09-05T15:50:56Z - Date Added2009-10-03T14:54:24Z - Bit Rate192 - Sample Rate44100 - Normalization1229 - Artwork Count1 - Persistent IDFE2D4E90BEFA4492 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ry%20Cooder/Chicken%20Skin%20Music/09%20Goodnight%20Irene.m4a - File Folder Count4 - Library Folder Count1 - - 2840 - - Track ID2840 - NameDhun- Fast Teental @ Monterey - ArtistRavi Shankar - AlbumThe Monterey International Pop Festival - Volume 2 - Genrerock - KindMPEG audio file - Size5623808 - Total Time365008 - Track Number17 - Date Modified2002-05-28T06:52:38Z - Date Added2009-10-03T14:54:24Z - Bit Rate32 - Sample Rate44100 - Sort AlbumMonterey International Pop Festival - Volume 2 - Persistent ID47F009659CA11ABC - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ravi%20Shankar/The%20Monterey%20International%20Pop%20Festival%20-%20Volume%202/17%20Dhun-%20Fast%20Teental%20@%20Monterey.mp3 - File Folder Count4 - Library Folder Count1 - - 2842 - - Track ID2842 - Namepuksrtha chala hu - ArtistRafi - AlbumSaraswathy chandra - GenreHindi old songs - KindAAC audio file - Size5367148 - Total Time223235 - Track Number10 - Track Count15 - Date Modified2006-10-06T08:20:06Z - Date Added2009-10-03T14:54:30Z - Bit Rate192 - Sample Rate44100 - Normalization1916 - Persistent IDA2D0A31A2EDFA105 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rafi/Saraswathy%20chandra/10%20puksrtha%20chala%20hu.m4a - File Folder Count4 - Library Folder Count1 - - 2844 - - Track ID2844 - Nameye mera prem pathr - ArtistRafi - AlbumSaraswathy chandra - GenreHindi old songs - KindAAC audio file - Size6450899 - Total Time268328 - Track Number11 - Track Count15 - Date Modified2006-10-06T08:20:20Z - Date Added2009-10-03T14:54:31Z - Bit Rate192 - Sample Rate44100 - Normalization1829 - Persistent ID78695B1E31D0F35E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rafi/Saraswathy%20chandra/11%20ye%20mera%20prem%20pathr.m4a - File Folder Count4 - Library Folder Count1 - - 2846 - - Track ID2846 - Nameaaaja aaja mai hu - ArtistRafi - AlbumSaraswathy chandra - GenreHindi old songs - KindAAC audio file - Size9686033 - Total Time402005 - Track Number12 - Track Count15 - Date Modified2006-10-06T08:20:32Z - Date Added2009-10-03T14:54:31Z - Bit Rate192 - Sample Rate44100 - Normalization6932 - Persistent ID3545B538E36C343F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rafi/Saraswathy%20chandra/12%20aaaja%20aaja%20mai%20hu.m4a - File Folder Count4 - Library Folder Count1 - - 2848 - - Track ID2848 - Namemai zindagi ke saath - ArtistRafi - AlbumSaraswathy chandra - GenreHindi old songs - KindAAC audio file - Size5498224 - Total Time230897 - Track Number13 - Track Count15 - Date Modified2006-10-06T08:20:46Z - Date Added2009-10-03T14:54:31Z - Bit Rate192 - Sample Rate44100 - Normalization3112 - Persistent ID18049AC4749487B6 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rafi/Saraswathy%20chandra/13%20mai%20zindagi%20ke%20saath.m4a - File Folder Count4 - Library Folder Count1 - - 2850 - - Track ID2850 - Namechound ve ka chaand ho - ArtistRafi - AlbumSaraswathy chandra - GenreHindi old songs - KindAAC audio file - Size4949574 - Total Time206841 - Track Number14 - Track Count15 - Date Modified2006-10-06T08:21:00Z - Date Added2009-10-03T14:54:31Z - Bit Rate192 - Sample Rate44100 - Normalization2260 - Persistent IDE0749B179E9C4D67 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rafi/Saraswathy%20chandra/14%20chound%20ve%20ka%20chaand%20ho.m4a - File Folder Count4 - Library Folder Count1 - - 2852 - - Track ID2852 - Nameye reshmi julphe - ArtistRafi - AlbumSaraswathy chandra - GenreHindi old songs - KindAAC audio file - Size7468824 - Total Time309868 - Track Number15 - Track Count15 - Date Modified2006-10-06T08:21:14Z - Date Added2009-10-03T14:54:31Z - Bit Rate192 - Sample Rate44100 - Normalization2136 - Persistent IDDD02A32381BC4787 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rafi/Saraswathy%20chandra/15%20ye%20reshmi%20julphe.m4a - File Folder Count4 - Library Folder Count1 - - 2854 - - Track ID2854 - NameAirbag - ArtistRadiohead - ComposerThom Yorke, Jonny Greenwood, Phil Selway, Ed O'Brien, Colin Greenwood - AlbumOK Computer - GenreAlternative & Punk - KindAAC audio file - Size7039685 - Total Time284400 - Disc Number1 - Disc Count1 - Track Number1 - Track Count12 - Year1997 - Date Modified2008-10-09T15:52:27Z - Date Added2009-10-03T14:54:31Z - Bit Rate192 - Sample Rate44100 - Skip Count1 - Skip Date2014-05-16T15:46:06Z - Normalization7105 - Artwork Count1 - Persistent IDC5CD828B38A8A7B0 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Radiohead/OK%20Computer/01%20Airbag.m4a - File Folder Count4 - Library Folder Count1 - - 2856 - - Track ID2856 - NameExit Music (For A Film) - ArtistRadiohead - ComposerThom Yorke, Jonny Greenwood, Phil Selway, Ed O'Brien, Colin Greenwood - AlbumOK Computer - GenreAlternative & Punk - KindAAC audio file - Size6462848 - Total Time264800 - Disc Number1 - Disc Count1 - Track Number4 - Track Count12 - Year1997 - Date Modified2007-09-20T19:47:28Z - Date Added2009-10-03T14:54:32Z - Bit Rate192 - Sample Rate44100 - Normalization2004 - Artwork Count1 - Persistent ID257CFFF5AF9F7A59 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Radiohead/OK%20Computer/04%20Exit%20Music%20(For%20A%20Film).m4a - File Folder Count4 - Library Folder Count1 - - 2858 - - Track ID2858 - NameKarma Police - ArtistRadiohead - ComposerThom Yorke, Jonny Greenwood, Phil Selway, Ed O'Brien, Colin Greenwood - AlbumOK Computer - GenreAlternative & Punk - KindAAC audio file - Size6394319 - Total Time261626 - Disc Number1 - Disc Count1 - Track Number6 - Track Count12 - Year1997 - Date Modified2008-10-09T15:44:31Z - Date Added2009-10-03T14:54:32Z - Bit Rate192 - Sample Rate44100 - Normalization3166 - Artwork Count1 - Persistent IDB370A89981B31293 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Radiohead/OK%20Computer/06%20Karma%20Police.m4a - File Folder Count4 - Library Folder Count1 - - 2860 - - Track ID2860 - NameLet Down - ArtistRadiohead - ComposerThom Yorke, Jonny Greenwood, Phil Selway, Ed O'Brien, Colin Greenwood - AlbumOK Computer - GenreAlternative & Punk - KindAAC audio file - Size7491796 - Total Time299266 - Disc Number1 - Disc Count1 - Track Number5 - Track Count12 - Year1997 - Date Modified2007-09-20T19:48:04Z - Date Added2009-10-03T14:54:32Z - Bit Rate192 - Sample Rate44100 - Normalization4371 - Artwork Count1 - Persistent ID69DB83FABE9041CD - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Radiohead/OK%20Computer/05%20Let%20Down.m4a - File Folder Count4 - Library Folder Count1 - - 2862 - - Track ID2862 - NameParanoid Android - ArtistRadiohead - ComposerThom Yorke, Jonny Greenwood, Phil Selway, Ed O'Brien, Colin Greenwood - AlbumOK Computer - GenreAlternative & Punk - KindAAC audio file - Size9414239 - Total Time383493 - Disc Number1 - Disc Count1 - Track Number2 - Track Count12 - Year1997 - Date Modified2008-10-09T15:49:30Z - Date Added2009-10-03T14:54:32Z - Bit Rate192 - Sample Rate44100 - Normalization3286 - Artwork Count1 - Persistent IDCB056FBA140B515A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Radiohead/OK%20Computer/02%20Paranoid%20Android.m4a - File Folder Count4 - Library Folder Count1 - - 2864 - - Track ID2864 - NameSubterranean Homesick Alien - ArtistRadiohead - ComposerThom Yorke, Jonny Greenwood, Phil Selway, Ed O'Brien, Colin Greenwood - AlbumOK Computer - GenreAlternative & Punk - KindAAC audio file - Size6719588 - Total Time267706 - Disc Number1 - Disc Count1 - Track Number3 - Track Count12 - Year1997 - Date Modified2008-10-09T16:01:07Z - Date Added2009-10-03T14:54:32Z - Bit Rate192 - Sample Rate44100 - Normalization5147 - Artwork Count1 - Persistent IDE6026F2F22F2C6B7 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Radiohead/OK%20Computer/03%20Subterranean%20Homesick%20Alien.m4a - File Folder Count4 - Library Folder Count1 - - 2866 - - Track ID2866 - NameBulla Ki Jana - ArtistRabbi Shergill - ComposerRabbi Shergill - AlbumRabbi - GenreWorld - KindAAC audio file - Size7653240 - Total Time316091 - Track Number1 - Date Modified2006-12-29T04:12:14Z - Date Added2009-10-03T14:54:32Z - Bit Rate192 - Sample Rate44100 - Normalization2991 - Persistent ID3D3D14A5C812704D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rabbi%20Shergill/Rabbi/01%20Bulla%20Ki%20Jana.m4a - File Folder Count4 - Library Folder Count1 - - 2868 - - Track ID2868 - NameBulla Ki Jana - ArtistRabbi Shergill - ComposerRabbi Shergill - AlbumRabbi - GenreWorld - KindAAC audio file - Size7653185 - Total Time316070 - Track Number1 - Date Modified2007-07-27T06:33:30Z - Date Added2009-10-03T14:54:32Z - Bit Rate192 - Sample Rate44100 - Normalization2991 - Persistent ID50D8F939816B451C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rabbi%20Shergill/Rabbi/01%20Bulla%20Ki%20Jana%201.m4a - File Folder Count4 - Library Folder Count1 - - 2870 - - Track ID2870 - NameBulla Ki Jana - ArtistRabbi Shergill - ComposerRabbi Shergill - AlbumRabbi - GenreWorld - KindAAC audio file - Size7653240 - Total Time316091 - Track Number1 - Date Modified2006-12-27T10:29:56Z - Date Added2009-10-03T14:54:32Z - Bit Rate192 - Sample Rate44100 - Normalization2991 - Persistent ID576BBF96AE42ABC9 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rabbi%20Shergill/Rabbi/01%20Bulla%20Ki%20Jana%202.m4a - File Folder Count4 - Library Folder Count1 - - 2872 - - Track ID2872 - NameBulla Ki Jana - ArtistRabbi Shergill - ComposerRabbi Shergill - AlbumRabbi - GenreWorld - KindAAC audio file - Size7463605 - Total Time316070 - Track Number1 - Date Modified2007-12-02T08:02:23Z - Date Added2009-10-03T14:54:33Z - Bit Rate187 - Sample Rate44100 - Normalization2991 - Persistent IDFA541154E77C3D64 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rabbi%20Shergill/Rabbi/01%20Bulla%20Ki%20Jana%203.m4a - File Folder Count4 - Library Folder Count1 - - 2874 - - Track ID2874 - NameTere Bin - ArtistRabbi Shergill - ComposerRabbi Shergill - AlbumRabbi - GenreWorld - KindAAC audio file - Size7771718 - Total Time320967 - Track Number2 - Date Modified2006-12-29T04:12:30Z - Date Added2009-10-03T14:54:33Z - Bit Rate192 - Sample Rate44100 - Normalization2801 - Persistent IDB0247BEEF3E9B8B2 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rabbi%20Shergill/Rabbi/02%20Tere%20Bin.m4a - File Folder Count4 - Library Folder Count1 - - 2876 - - Track ID2876 - NameTere Bin - ArtistRabbi Shergill - ComposerRabbi Shergill - AlbumRabbi - GenreWorld - KindAAC audio file - Size7771706 - Total Time320946 - Track Number2 - Date Modified2007-07-27T06:33:58Z - Date Added2009-10-03T14:54:33Z - Bit Rate192 - Sample Rate44100 - Normalization2801 - Persistent ID6E3379771E64CF18 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rabbi%20Shergill/Rabbi/02%20Tere%20Bin%201.m4a - File Folder Count4 - Library Folder Count1 - - 2878 - - Track ID2878 - NameTere Bin - ArtistRabbi Shergill - ComposerRabbi Shergill - AlbumRabbi - GenreWorld - KindAAC audio file - Size7771718 - Total Time320967 - Track Number2 - Date Modified2006-12-27T10:30:24Z - Date Added2009-10-03T14:54:33Z - Bit Rate192 - Sample Rate44100 - Normalization2801 - Persistent IDA646423E15693742 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rabbi%20Shergill/Rabbi/02%20Tere%20Bin%202.m4a - File Folder Count4 - Library Folder Count1 - - 2880 - - Track ID2880 - NameTere Bin - ArtistRabbi Shergill - ComposerRabbi Shergill - AlbumRabbi - GenreWorld - KindAAC audio file - Size7568749 - Total Time320946 - Track Number2 - Date Modified2007-12-02T08:02:42Z - Date Added2009-10-03T14:54:33Z - Bit Rate187 - Sample Rate44100 - Normalization2801 - Persistent ID4100F2C375D0F510 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rabbi%20Shergill/Rabbi/02%20Tere%20Bin%203.m4a - File Folder Count4 - Library Folder Count1 - - 2882 - - Track ID2882 - NameHeer - ArtistRabbi Shergill - ComposerRabbi Shergill - AlbumRabbi - GenreWorld - KindAAC audio file - Size7883889 - Total Time325611 - Track Number3 - Date Modified2006-12-29T04:12:48Z - Date Added2009-10-03T14:54:33Z - Bit Rate192 - Sample Rate44100 - Normalization2489 - Persistent IDB0E5BD36FDE03323 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rabbi%20Shergill/Rabbi/03%20Heer.m4a - File Folder Count4 - Library Folder Count1 - - 2884 - - Track ID2884 - NameHeer - ArtistRabbi Shergill - ComposerRabbi Shergill - AlbumRabbi - GenreWorld - KindAAC audio file - Size7883805 - Total Time325590 - Track Number3 - Date Modified2007-07-27T06:34:28Z - Date Added2009-10-03T14:54:33Z - Bit Rate192 - Sample Rate44100 - Normalization2489 - Persistent ID12877D32DC6C7C2A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rabbi%20Shergill/Rabbi/03%20Heer%201.m4a - File Folder Count4 - Library Folder Count1 - - 2886 - - Track ID2886 - NameHeer - ArtistRabbi Shergill - ComposerRabbi Shergill - AlbumRabbi - GenreWorld - KindAAC audio file - Size7883889 - Total Time325611 - Track Number3 - Date Modified2006-12-27T10:31:02Z - Date Added2009-10-03T14:54:34Z - Bit Rate192 - Sample Rate44100 - Normalization2489 - Persistent IDBE5192413DA75D22 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rabbi%20Shergill/Rabbi/03%20Heer%202.m4a - File Folder Count4 - Library Folder Count1 - - 2888 - - Track ID2888 - NameHeer - ArtistRabbi Shergill - ComposerRabbi Shergill - AlbumRabbi - GenreWorld - KindAAC audio file - Size7684185 - Total Time325590 - Track Number3 - Date Modified2007-12-02T08:03:01Z - Date Added2009-10-03T14:54:34Z - Bit Rate187 - Sample Rate44100 - Normalization2489 - Persistent IDEEF3EB39BE8E1B3E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rabbi%20Shergill/Rabbi/03%20Heer%203.m4a - File Folder Count4 - Library Folder Count1 - - 2890 - - Track ID2890 - NameIshtihar - ArtistRabbi Shergill - ComposerRabbi Shergill - AlbumRabbi - GenreWorld - KindAAC audio file - Size9504937 - Total Time392578 - Track Number4 - Date Modified2006-12-29T04:13:10Z - Date Added2009-10-03T14:54:34Z - Bit Rate192 - Sample Rate44100 - Normalization1476 - Persistent IDD3FA64D2E171E3F7 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rabbi%20Shergill/Rabbi/04%20Ishtihar.m4a - File Folder Count4 - Library Folder Count1 - - 2892 - - Track ID2892 - NameIshtihar - ArtistRabbi Shergill - ComposerRabbi Shergill - AlbumRabbi - GenreWorld - KindAAC audio file - Size9504970 - Total Time392556 - Track Number4 - Date Modified2007-07-27T06:35:04Z - Date Added2009-10-03T14:54:34Z - Bit Rate192 - Sample Rate44100 - Normalization1476 - Persistent IDF0EC897F3E99FA9F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rabbi%20Shergill/Rabbi/04%20Ishtihar%201.m4a - File Folder Count4 - Library Folder Count1 - - 2894 - - Track ID2894 - NameIshtihar - ArtistRabbi Shergill - ComposerRabbi Shergill - AlbumRabbi - GenreWorld - KindAAC audio file - Size9504937 - Total Time392578 - Track Number4 - Date Modified2006-12-27T10:31:42Z - Date Added2009-10-03T14:54:34Z - Bit Rate192 - Sample Rate44100 - Normalization1476 - Persistent IDDF004128C405F69C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rabbi%20Shergill/Rabbi/04%20Ishtihar%202.m4a - File Folder Count4 - Library Folder Count1 - - 2896 - - Track ID2896 - NameIshtihar - ArtistRabbi Shergill - ComposerRabbi Shergill - AlbumRabbi - GenreWorld - KindAAC audio file - Size9249419 - Total Time392556 - Track Number4 - Date Modified2007-12-02T08:03:24Z - Date Added2009-10-03T14:54:34Z - Bit Rate186 - Sample Rate44100 - Normalization1476 - Persistent IDD4CCFA3FB6BEE7A7 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rabbi%20Shergill/Rabbi/04%20Ishtihar%203.m4a - File Folder Count4 - Library Folder Count1 - - 2898 - - Track ID2898 - NameTotia Manmotia - ArtistRabbi Shergill - ComposerRabbi Shergill - AlbumRabbi - GenreWorld - KindAAC audio file - Size6706530 - Total Time276942 - Track Number5 - Date Modified2006-12-29T04:13:26Z - Date Added2009-10-03T14:54:34Z - Bit Rate192 - Sample Rate44100 - Normalization4091 - Persistent IDB3BDC9B3B0F1984F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rabbi%20Shergill/Rabbi/05%20Totia%20Manmotia.m4a - File Folder Count4 - Library Folder Count1 - - 2900 - - Track ID2900 - NameTotia Manmotia - ArtistRabbi Shergill - ComposerRabbi Shergill - AlbumRabbi - GenreWorld - KindAAC audio file - Size6706539 - Total Time276921 - Track Number5 - Date Modified2007-07-27T06:35:28Z - Date Added2009-10-03T14:54:34Z - Bit Rate192 - Sample Rate44100 - Normalization4091 - Persistent ID61251495987E71E2 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rabbi%20Shergill/Rabbi/05%20Totia%20Manmotia%201.m4a - File Folder Count4 - Library Folder Count1 - - 2902 - - Track ID2902 - NameTotia Manmotia - ArtistRabbi Shergill - ComposerRabbi Shergill - AlbumRabbi - GenreWorld - KindAAC audio file - Size6706530 - Total Time276942 - Track Number5 - Date Modified2006-12-27T10:32:06Z - Date Added2009-10-03T14:54:34Z - Bit Rate192 - Sample Rate44100 - Normalization4091 - Persistent ID183D904B887E3063 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rabbi%20Shergill/Rabbi/05%20Totia%20Manmotia%202.m4a - File Folder Count4 - Library Folder Count1 - - 2904 - - Track ID2904 - NameTotia Manmotia - ArtistRabbi Shergill - ComposerRabbi Shergill - AlbumRabbi - GenreWorld - KindAAC audio file - Size6589461 - Total Time276921 - Track Number5 - Date Modified2007-12-02T08:03:40Z - Date Added2009-10-03T14:54:35Z - Bit Rate188 - Sample Rate44100 - Normalization4091 - Persistent IDD3B0D4D9228C2B45 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rabbi%20Shergill/Rabbi/05%20Totia%20Manmotia%203.m4a - File Folder Count4 - Library Folder Count1 - - 2906 - - Track ID2906 - NameGill 'te Guitar - ArtistRabbi Shergill - ComposerRabbi Shergill - AlbumRabbi - GenreWorld - KindAAC audio file - Size6649803 - Total Time274620 - Track Number7 - Date Modified2006-12-29T04:14:06Z - Date Added2009-10-03T14:54:35Z - Bit Rate192 - Sample Rate44100 - Normalization3808 - Persistent ID49C781636C269C9E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rabbi%20Shergill/Rabbi/07%20Gill%20'te%20Guitar.m4a - File Folder Count4 - Library Folder Count1 - - 2908 - - Track ID2908 - NameGill 'te Guitar - ArtistRabbi Shergill - ComposerRabbi Shergill - AlbumRabbi - GenreWorld - KindAAC audio file - Size6649835 - Total Time274599 - Track Number7 - Date Modified2007-07-27T06:36:14Z - Date Added2009-10-03T14:54:35Z - Bit Rate192 - Sample Rate44100 - Normalization3808 - Persistent ID44E7B725731791E6 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rabbi%20Shergill/Rabbi/07%20Gill%20'te%20Guitar%201.m4a - File Folder Count4 - Library Folder Count1 - - 2910 - - Track ID2910 - NameGill 'te Guitar - ArtistRabbi Shergill - ComposerRabbi Shergill - AlbumRabbi - GenreWorld - KindAAC audio file - Size6649803 - Total Time274620 - Track Number7 - Date Modified2006-12-27T10:32:58Z - Date Added2009-10-03T14:54:35Z - Bit Rate192 - Sample Rate44100 - Normalization3808 - Persistent IDEBBDFBA34A194B93 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rabbi%20Shergill/Rabbi/07%20Gill%20'te%20Guitar%202.m4a - File Folder Count4 - Library Folder Count1 - - 2912 - - Track ID2912 - NameGill 'te Guitar - ArtistRabbi Shergill - ComposerRabbi Shergill - AlbumRabbi - GenreWorld - KindAAC audio file - Size6491850 - Total Time274599 - Track Number7 - Date Modified2007-12-02T08:04:11Z - Date Added2009-10-03T14:54:35Z - Bit Rate187 - Sample Rate44100 - Normalization3808 - Persistent ID34FA0000427F0775 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rabbi%20Shergill/Rabbi/07%20Gill%20'te%20Guitar%203.m4a - File Folder Count4 - Library Folder Count1 - - 2914 - - Track ID2914 - NameJugni - ArtistRabbi Shergill - ComposerRabbi Shergill - AlbumRabbi - GenreWorld - KindAAC audio file - Size6669955 - Total Time275503 - Track Number9 - Date Modified2006-12-29T04:14:38Z - Date Added2009-10-03T14:54:35Z - Bit Rate192 - Sample Rate44100 - Normalization1776 - Persistent IDD7318FDDA9F29890 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rabbi%20Shergill/Rabbi/09%20Jugni.m4a - File Folder Count4 - Library Folder Count1 - - 2916 - - Track ID2916 - NameJugni - ArtistRabbi Shergill - ComposerRabbi Shergill - AlbumRabbi - GenreWorld - KindAAC audio file - Size6669936 - Total Time275481 - Track Number9 - Date Modified2007-07-27T06:36:50Z - Date Added2009-10-03T14:54:35Z - Bit Rate192 - Sample Rate44100 - Normalization1776 - Persistent IDCB1CB97E2543C58B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rabbi%20Shergill/Rabbi/09%20Jugni%201.m4a - File Folder Count4 - Library Folder Count1 - - 2918 - - Track ID2918 - NameJugni - ArtistRabbi Shergill - ComposerRabbi Shergill - AlbumRabbi - GenreWorld - KindAAC audio file - Size6669955 - Total Time275503 - Track Number9 - Date Modified2006-12-27T10:33:50Z - Date Added2009-10-03T14:54:36Z - Bit Rate192 - Sample Rate44100 - Normalization1776 - Persistent IDDE67063172D30CE8 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rabbi%20Shergill/Rabbi/09%20Jugni%202.m4a - File Folder Count4 - Library Folder Count1 - - 2920 - - Track ID2920 - NameJugni - ArtistRabbi Shergill - ComposerRabbi Shergill - AlbumRabbi - GenreWorld - KindAAC audio file - Size6506009 - Total Time275481 - Track Number9 - Date Modified2007-12-02T08:04:43Z - Date Added2009-10-03T14:54:36Z - Bit Rate187 - Sample Rate44100 - Normalization1776 - Persistent IDBCD6BF3C5A297905 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rabbi%20Shergill/Rabbi/09%20Jugni%203.m4a - File Folder Count4 - Library Folder Count1 - - 2922 - - Track ID2922 - NameAjj Nachna - ArtistRabbi Sheergill - ComposerRabbi Shergill - AlbumRabbi - GenreWorld - KindAAC audio file - Size5987703 - Total Time247128 - Track Number6 - Date Modified2006-12-29T04:13:40Z - Date Added2009-10-03T14:54:36Z - Bit Rate192 - Sample Rate44100 - Skip Count1 - Skip Date2014-01-03T14:10:51Z - Normalization4644 - Persistent IDCA7252DD743E1674 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rabbi%20Sheergill/Rabbi/06%20Ajj%20Nachna.m4a - File Folder Count4 - Library Folder Count1 - - 2924 - - Track ID2924 - NameAjj Nachna - ArtistRabbi Sheergill - ComposerRabbi Shergill - AlbumRabbi - GenreWorld - KindAAC audio file - Size5984919 - Total Time247106 - Track Number6 - Date Modified2007-07-27T06:35:50Z - Date Added2009-10-03T14:54:36Z - Bit Rate192 - Sample Rate44100 - Normalization4644 - Persistent IDE0C20F01CBB081B6 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rabbi%20Sheergill/Rabbi/06%20Ajj%20Nachna%201.m4a - File Folder Count4 - Library Folder Count1 - - 2926 - - Track ID2926 - NameAjj Nachna - ArtistRabbi Sheergill - ComposerRabbi Shergill - AlbumRabbi - GenreWorld - KindAAC audio file - Size5987703 - Total Time247128 - Track Number6 - Date Modified2006-12-27T10:32:32Z - Date Added2009-10-03T14:54:36Z - Bit Rate192 - Sample Rate44100 - Normalization4644 - Persistent ID2B03FBD417BEEA0B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rabbi%20Sheergill/Rabbi/06%20Ajj%20Nachna%202.m4a - File Folder Count4 - Library Folder Count1 - - 2928 - - Track ID2928 - NameAjj Nachna - ArtistRabbi Sheergill - ComposerRabbi Shergill - AlbumRabbi - GenreWorld - KindAAC audio file - Size5816814 - Total Time247106 - Track Number6 - Date Modified2007-12-02T08:03:55Z - Date Added2009-10-03T14:54:36Z - Bit Rate186 - Sample Rate44100 - Normalization4644 - Persistent ID3802DE9A0912C8AC - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rabbi%20Sheergill/Rabbi/06%20Ajj%20Nachna%203.m4a - File Folder Count4 - Library Folder Count1 - - 2930 - - Track ID2930 - NameEk Geet Hijar Da - ArtistRabbi Sheergill - ComposerRabbi Shergill - AlbumRabbi - GenreWorld - KindAAC audio file - Size6891524 - Total Time284605 - Track Number8 - Date Modified2006-12-29T04:14:22Z - Date Added2009-10-03T14:54:36Z - Bit Rate192 - Sample Rate44100 - Normalization3591 - Persistent ID2A7E462150090440 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rabbi%20Sheergill/Rabbi/08%20Ek%20Geet%20Hijar%20Da.m4a - File Folder Count4 - Library Folder Count1 - - 2932 - - Track ID2932 - NameEk Geet Hijar Da - ArtistRabbi Sheergill - ComposerRabbi Shergill - AlbumRabbi - GenreWorld - KindAAC audio file - Size6891517 - Total Time284583 - Track Number8 - Date Modified2007-07-27T06:36:32Z - Date Added2009-10-03T14:54:36Z - Bit Rate192 - Sample Rate44100 - Normalization3591 - Persistent ID072F2FA980107EA6 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rabbi%20Sheergill/Rabbi/08%20Ek%20Geet%20Hijar%20Da%201.m4a - File Folder Count4 - Library Folder Count1 - - 2934 - - Track ID2934 - NameEk Geet Hijar Da - ArtistRabbi Sheergill - ComposerRabbi Shergill - AlbumRabbi - GenreWorld - KindAAC audio file - Size6891524 - Total Time284605 - Track Number8 - Date Modified2006-12-27T10:33:20Z - Date Added2009-10-03T14:54:36Z - Bit Rate192 - Sample Rate44100 - Normalization3591 - Persistent ID71A27046DC589519 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rabbi%20Sheergill/Rabbi/08%20Ek%20Geet%20Hijar%20Da%202.m4a - File Folder Count4 - Library Folder Count1 - - 2936 - - Track ID2936 - NameEk Geet Hijar Da - ArtistRabbi Sheergill - ComposerRabbi Shergill - AlbumRabbi - GenreWorld - KindAAC audio file - Size6716424 - Total Time284583 - Track Number8 - Date Modified2007-12-02T08:04:27Z - Date Added2009-10-03T14:54:36Z - Bit Rate187 - Sample Rate44100 - Normalization3591 - Persistent ID6538F8A902C84F07 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rabbi%20Sheergill/Rabbi/08%20Ek%20Geet%20Hijar%20Da%203.m4a - File Folder Count4 - Library Folder Count1 - - 2938 - - Track ID2938 - NameBohemian Rhapsody - ArtistQueen - ComposerMercury, Freddie - AlbumGreatest Hits I - GenreRock - KindAAC audio file - Size8968180 - Total Time358293 - Disc Number1 - Disc Count1 - Track Number1 - Track Count17 - Year1975 - Date Modified2008-10-01T01:25:43Z - Date Added2009-10-03T14:54:37Z - Bit Rate191 - Sample Rate44100 - Normalization1202 - Artwork Count1 - Persistent ID9BAC1C9759997523 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Queen/Greatest%20Hits%20I/01%20Bohemian%20Rhapsody.m4a - File Folder Count4 - Library Folder Count1 - - 2940 - - Track ID2940 - NameAnother One Bites The Dust - ArtistQueen - ComposerDeacon, John - AlbumGreatest Hits I - GenreRock - KindAAC audio file - Size5446841 - Total Time216906 - Disc Number1 - Disc Count1 - Track Number2 - Track Count17 - Year1980 - Date Modified2008-10-01T01:25:42Z - Date Added2009-10-03T14:54:37Z - Bit Rate187 - Sample Rate44100 - Normalization1202 - Artwork Count1 - Persistent ID1819FA315B9C3F13 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Queen/Greatest%20Hits%20I/02%20Another%20One%20Bites%20The%20Dust.m4a - File Folder Count4 - Library Folder Count1 - - 2942 - - Track ID2942 - NameKiller Queen - ArtistQueen - ComposerMercury, Freddie - AlbumGreatest Hits I - GenreRock - KindAAC audio file - Size4691438 - Total Time182000 - Disc Number1 - Disc Count1 - Track Number3 - Track Count17 - Year1974 - Date Modified2008-10-01T01:25:40Z - Date Added2009-10-03T14:54:37Z - Bit Rate190 - Sample Rate44100 - Normalization1971 - Artwork Count1 - Persistent ID7E86CD12B0F6BAA1 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Queen/Greatest%20Hits%20I/03%20Killer%20Queen.m4a - File Folder Count4 - Library Folder Count1 - - 2944 - - Track ID2944 - NameFat Bottomed Girls - ArtistQueen - ComposerMay, Brian - AlbumGreatest Hits I - GenreRock - KindAAC audio file - Size5236599 - Total Time204560 - Disc Number1 - Disc Count1 - Track Number4 - Track Count17 - Year1978 - Date Modified2008-10-01T01:25:40Z - Date Added2009-10-03T14:54:37Z - Bit Rate190 - Sample Rate44100 - Normalization1611 - Artwork Count1 - Persistent ID563B9DB3206885EC - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Queen/Greatest%20Hits%20I/04%20Fat%20Bottomed%20Girls.m4a - File Folder Count4 - Library Folder Count1 - - 2946 - - Track ID2946 - NameBicycle Race - ArtistQueen - ComposerMercury, Freddie - AlbumGreatest Hits I - GenreRock - KindAAC audio file - Size4784979 - Total Time183800 - Disc Number1 - Disc Count1 - Track Number5 - Track Count17 - Year1978 - Date Modified2008-10-01T01:25:39Z - Date Added2009-10-03T14:54:37Z - Bit Rate193 - Sample Rate44100 - Normalization4606 - Artwork Count1 - Persistent ID7FB0839B8D3B140C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Queen/Greatest%20Hits%20I/05%20Bicycle%20Race.m4a - File Folder Count4 - Library Folder Count1 - - 2948 - - Track ID2948 - NameYou're My Best Friend - ArtistQueen - ComposerDeacon, John - AlbumGreatest Hits I - GenreRock - KindAAC audio file - Size4383458 - Total Time172173 - Disc Number1 - Disc Count1 - Track Number6 - Track Count17 - Year1975 - Date Modified2008-10-01T01:25:38Z - Date Added2009-10-03T14:54:38Z - Bit Rate187 - Sample Rate44100 - Normalization2445 - Artwork Count1 - Persistent ID1945C754E4D3C95F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Queen/Greatest%20Hits%20I/06%20You're%20My%20Best%20Friend.m4a - File Folder Count4 - Library Folder Count1 - - 2950 - - Track ID2950 - NameDon't Stop Me Now - ArtistQueen - ComposerMercury, Freddie - AlbumGreatest Hits I - GenreRock - KindAAC audio file - Size5353876 - Total Time211733 - Disc Number1 - Disc Count1 - Track Number7 - Track Count17 - Year1978 - Date Modified2008-10-01T01:25:37Z - Date Added2009-10-03T14:54:38Z - Bit Rate188 - Sample Rate44100 - Normalization4900 - Artwork Count1 - Persistent IDE2971D0157310B30 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Queen/Greatest%20Hits%20I/07%20Don't%20Stop%20Me%20Now.m4a - File Folder Count4 - Library Folder Count1 - - 2952 - - Track ID2952 - NameSave Me - ArtistQueen - ComposerMay, Brian - AlbumGreatest Hits I - GenreRock - KindAAC audio file - Size5922117 - Total Time228600 - Disc Number1 - Disc Count1 - Track Number8 - Track Count17 - Year1980 - Date Modified2008-10-01T01:25:36Z - Date Added2009-10-03T14:54:38Z - Bit Rate194 - Sample Rate44100 - Normalization2125 - Artwork Count1 - Persistent IDA17EED4E3A05DDB2 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Queen/Greatest%20Hits%20I/08%20Save%20Me.m4a - File Folder Count4 - Library Folder Count1 - - 2954 - - Track ID2954 - NameCrazy Little Thing Called Love - ArtistQueen - ComposerMercury, Freddie - AlbumGreatest Hits I - GenreRock - KindAAC audio file - Size4334937 - Total Time163826 - Disc Number1 - Disc Count1 - Track Number9 - Track Count17 - Year1979 - Date Modified2008-10-01T01:25:35Z - Date Added2009-10-03T14:54:38Z - Bit Rate194 - Sample Rate44100 - Normalization1537 - Artwork Count1 - Persistent ID1D51DB2902185C94 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Queen/Greatest%20Hits%20I/09%20Crazy%20Little%20Thing%20Called%20Love.m4a - File Folder Count4 - Library Folder Count1 - - 2956 - - Track ID2956 - NameSomebody To Love - ArtistQueen - ComposerMercury, Freddie - AlbumGreatest Hits I - GenreRock - KindAAC audio file - Size7593281 - Total Time297666 - Disc Number1 - Disc Count1 - Track Number10 - Track Count17 - Year1976 - Date Modified2008-10-01T01:25:35Z - Date Added2009-10-03T14:54:38Z - Bit Rate194 - Sample Rate44100 - Normalization3196 - Artwork Count1 - Persistent IDBBD7D3D6BCBB2443 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Queen/Greatest%20Hits%20I/10%20Somebody%20To%20Love.m4a - File Folder Count4 - Library Folder Count1 - - 2958 - - Track ID2958 - NameNow I'm Here - ArtistQueen - ComposerMay, Brian - AlbumGreatest Hits I - GenreRock - KindAAC audio file - Size6532568 - Total Time255240 - Disc Number1 - Disc Count1 - Track Number11 - Track Count17 - Year1974 - Date Modified2008-10-01T01:25:33Z - Date Added2009-10-03T14:54:39Z - Bit Rate193 - Sample Rate44100 - Normalization1315 - Artwork Count1 - Persistent IDDFEEB195E6AE8F66 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Queen/Greatest%20Hits%20I/11%20Now%20I'm%20Here.m4a - File Folder Count4 - Library Folder Count1 - - 2960 - - Track ID2960 - NameNow I'm Here - ArtistQueen - ComposerMay, Brian - AlbumGreatest Hits I - GenreRock - KindAAC audio file - Size365866 - Total Time333 - Disc Number1 - Disc Count1 - Track Number11 - Track Count17 - Year1974 - Date Modified2008-10-01T01:25:33Z - Date Added2009-10-03T14:54:39Z - Bit Rate74 - Sample Rate44100 - Normalization89 - Artwork Count1 - Persistent ID5719337281196707 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Queen/Greatest%20Hits%20I/11%20Now%20I'm%20Here%201.m4a - File Folder Count4 - Library Folder Count1 - - 2962 - - Track ID2962 - NameGood Old-Fashioned Lover Boy - ArtistQueen - ComposerMercury, Freddie - AlbumGreatest Hits I - GenreRock - KindAAC audio file - Size4628031 - Total Time175826 - Disc Number1 - Disc Count1 - Track Number12 - Track Count17 - Year1976 - Date Modified2008-10-01T01:25:32Z - Date Added2009-10-03T14:54:39Z - Bit Rate194 - Sample Rate44100 - Normalization1881 - Artwork Count1 - Persistent IDB6C1E5058B677163 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Queen/Greatest%20Hits%20I/12%20Good%20Old-Fashioned%20Lover%20Boy.m4a - File Folder Count4 - Library Folder Count1 - - 2964 - - Track ID2964 - NamePlay The Game - ArtistQueen - ComposerMercury, Freddie - AlbumGreatest Hits I - GenreRock - KindAAC audio file - Size5489443 - Total Time213306 - Disc Number1 - Disc Count1 - Track Number13 - Track Count17 - Year1980 - Date Modified2008-10-01T01:25:31Z - Date Added2009-10-03T14:54:39Z - Bit Rate192 - Sample Rate44100 - Normalization3209 - Artwork Count1 - Persistent ID3651F4143806CD0E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Queen/Greatest%20Hits%20I/13%20Play%20The%20Game.m4a - File Folder Count4 - Library Folder Count1 - - 2966 - - Track ID2966 - NameFlash - ArtistQueen - ComposerMay, Brian - AlbumGreatest Hits I - GenreRock - KindAAC audio file - Size4428250 - Total Time168426 - Disc Number1 - Disc Count1 - Track Number14 - Track Count17 - Year1980 - Date Modified2008-10-01T01:25:30Z - Date Added2009-10-03T14:54:39Z - Bit Rate193 - Sample Rate44100 - Normalization1489 - Artwork Count1 - Persistent ID7084BAA48D2C066B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Queen/Greatest%20Hits%20I/14%20Flash.m4a - File Folder Count4 - Library Folder Count1 - - 2968 - - Track ID2968 - NameSeven Seas Of Rhye - ArtistQueen - ComposerMercury, Freddie - AlbumGreatest Hits I - GenreRock - KindAAC audio file - Size4350237 - Total Time170466 - Disc Number1 - Disc Count1 - Track Number15 - Track Count17 - Year1974 - Date Modified2008-10-01T01:25:29Z - Date Added2009-10-03T14:54:40Z - Bit Rate187 - Sample Rate44100 - Normalization1530 - Artwork Count1 - Persistent ID0C2D746D9000D686 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Queen/Greatest%20Hits%20I/15%20Seven%20Seas%20Of%20Rhye.m4a - File Folder Count4 - Library Folder Count1 - - 2970 - - Track ID2970 - NameWe Will Rock You - ArtistQueen - ComposerMay, Brian - AlbumGreatest Hits I - GenreRock - KindAAC audio file - Size3271976 - Total Time122773 - Disc Number1 - Disc Count1 - Track Number16 - Track Count17 - Year1977 - Date Modified2008-10-01T01:25:28Z - Date Added2009-10-03T14:54:40Z - Bit Rate191 - Sample Rate44100 - Play Count1 - Play Date3484153326 - Play Date UTC2014-05-28T14:52:06Z - Normalization2644 - Artwork Count1 - Persistent IDF68310BB8B9250BD - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Queen/Greatest%20Hits%20I/16%20We%20Will%20Rock%20You.m4a - File Folder Count4 - Library Folder Count1 - - 2972 - - Track ID2972 - NameWe Are The Champions - ArtistQueen - ComposerMercury, Freddie - AlbumGreatest Hits I - GenreRock - KindAAC audio file - Size4706629 - Total Time181400 - Disc Number1 - Disc Count1 - Track Number17 - Track Count17 - Year1977 - Date Modified2008-10-01T01:25:27Z - Date Added2009-10-03T14:54:40Z - Bit Rate192 - Sample Rate44100 - Normalization4478 - Artwork Count1 - Persistent IDE139F008A72B2F92 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Queen/Greatest%20Hits%20I/17%20We%20Are%20The%20Champions.m4a - File Folder Count4 - Library Folder Count1 - - 2974 - - Track ID2974 - NameDeath On Two Legs - ArtistQueen - ComposerDeacon/Mercury - AlbumA Night At The Opera - GenreRock - KindAAC audio file - Size7154580 - Total Time223253 - Disc Number1 - Disc Count1 - Track Number1 - Track Count12 - Year1975 - Date Modified2008-10-15T13:40:55Z - Date Added2009-10-03T14:54:40Z - Bit Rate256 - Sample Rate44100 - Normalization5508 - Artwork Count1 - Sort AlbumNight At The Opera - Persistent ID1B3F57B8BCBAEABA - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Queen/A%20Night%20At%20The%20Opera/01%20Death%20On%20Two%20Legs.m4a - File Folder Count4 - Library Folder Count1 - - 2976 - - Track ID2976 - NameLazing On A Sunday Afternoon - ArtistQueen - ComposerMercury - AlbumA Night At The Opera - GenreRock - KindAAC audio file - Size2220213 - Total Time67400 - Disc Number1 - Disc Count1 - Track Number2 - Track Count12 - Year1975 - Date Modified2008-10-15T13:40:57Z - Date Added2009-10-03T14:54:40Z - Bit Rate256 - Sample Rate44100 - Normalization2787 - Artwork Count1 - Sort AlbumNight At The Opera - Persistent ID08DEAF8EBFBD410F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Queen/A%20Night%20At%20The%20Opera/02%20Lazing%20On%20A%20Sunday%20Afternoon.m4a - File Folder Count4 - Library Folder Count1 - - 2978 - - Track ID2978 - NameI'm In Love With My Car - ArtistQueen - ComposerTaylor - AlbumA Night At The Opera - GenreRock - KindAAC audio file - Size6017807 - Total Time184893 - Disc Number1 - Disc Count1 - Track Number3 - Track Count12 - Year1975 - Date Modified2008-10-15T13:41:02Z - Date Added2009-10-03T14:54:40Z - Bit Rate256 - Sample Rate44100 - Normalization4150 - Artwork Count1 - Sort AlbumNight At The Opera - Persistent ID43C4665D3C413A6A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Queen/A%20Night%20At%20The%20Opera/03%20I'm%20In%20Love%20With%20My%20Car.m4a - File Folder Count4 - Library Folder Count1 - - 2980 - - Track ID2980 - NameYou're My Best Friend - ArtistQueen - ComposerDeacon - AlbumA Night At The Opera - GenreRock - KindAAC audio file - Size5476351 - Total Time172440 - Disc Number1 - Disc Count1 - Track Number4 - Track Count12 - Year1975 - Date Modified2008-10-15T13:41:04Z - Date Added2009-10-03T14:54:41Z - Bit Rate256 - Sample Rate44100 - Skip Count1 - Skip Date2010-08-25T12:05:16Z - Normalization3698 - Artwork Count1 - Sort AlbumNight At The Opera - Persistent IDBFE3D20238D7991C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Queen/A%20Night%20At%20The%20Opera/04%20You're%20My%20Best%20Friend.m4a - File Folder Count4 - Library Folder Count1 - - 2982 - - Track ID2982 - Name'39 - ArtistQueen - ComposerMay - AlbumA Night At The Opera - GenreRock - KindAAC audio file - Size6925702 - Total Time210800 - Disc Number1 - Disc Count1 - Track Number5 - Track Count12 - Year1975 - Date Modified2008-10-15T13:41:05Z - Date Added2009-10-03T14:54:41Z - Bit Rate256 - Sample Rate44100 - Normalization2273 - Artwork Count1 - Sort AlbumNight At The Opera - Persistent IDF8EEA0B62579A019 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Queen/A%20Night%20At%20The%20Opera/05%20'39.m4a - File Folder Count4 - Library Folder Count1 - - 2984 - - Track ID2984 - NameSweet Lady - ArtistQueen - ComposerMay - AlbumA Night At The Opera - GenreRock - KindAAC audio file - Size7765247 - Total Time243693 - Disc Number1 - Disc Count1 - Track Number6 - Track Count12 - Year1975 - Date Modified2008-10-15T13:41:07Z - Date Added2009-10-03T14:54:41Z - Bit Rate256 - Sample Rate44100 - Normalization3073 - Artwork Count1 - Sort AlbumNight At The Opera - Persistent ID75A2EC321973BA09 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Queen/A%20Night%20At%20The%20Opera/06%20Sweet%20Lady.m4a - File Folder Count4 - Library Folder Count1 - - 2986 - - Track ID2986 - NameSeaside Rendezvous - ArtistQueen - ComposerMercury - AlbumA Night At The Opera - GenreRock - KindAAC audio file - Size4399876 - Total Time134880 - Disc Number1 - Disc Count1 - Track Number7 - Track Count12 - Year1975 - Date Modified2008-10-15T13:41:09Z - Date Added2009-10-03T14:54:41Z - Bit Rate256 - Sample Rate44100 - Normalization6186 - Artwork Count1 - Sort AlbumNight At The Opera - Persistent ID08A635BF1AD89AF0 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Queen/A%20Night%20At%20The%20Opera/07%20Seaside%20Rendezvous.m4a - File Folder Count4 - Library Folder Count1 - - 2988 - - Track ID2988 - NameThe Prophet's Song - ArtistQueen - ComposerMay - AlbumA Night At The Opera - GenreRock - KindAAC audio file - Size16413904 - Total Time500960 - Disc Number1 - Disc Count1 - Track Number8 - Track Count12 - Year1975 - Date Modified2008-10-15T13:41:13Z - Date Added2009-10-03T14:54:41Z - Bit Rate256 - Sample Rate44100 - Normalization3559 - Artwork Count1 - Sort AlbumNight At The Opera - Sort NameProphet's Song - Persistent ID7DDC28500083562C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Queen/A%20Night%20At%20The%20Opera/08%20The%20Prophet's%20Song.m4a - File Folder Count4 - Library Folder Count1 - - 2990 - - Track ID2990 - NameLove Of My Life - ArtistQueen - ComposerMercury - AlbumA Night At The Opera - GenreRock - KindAAC audio file - Size7048730 - Total Time218880 - Disc Number1 - Disc Count1 - Track Number9 - Track Count12 - Year1975 - Date Modified2008-10-15T13:41:18Z - Date Added2009-10-03T14:54:41Z - Bit Rate256 - Sample Rate44100 - Normalization1663 - Artwork Count1 - Sort AlbumNight At The Opera - Persistent ID029927B30C36661F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Queen/A%20Night%20At%20The%20Opera/09%20Love%20Of%20My%20Life.m4a - File Folder Count4 - Library Folder Count1 - - 2992 - - Track ID2992 - NameGood Company - ArtistQueen - ComposerMay - AlbumA Night At The Opera - GenreRock - KindAAC audio file - Size6655240 - Total Time203440 - Disc Number1 - Disc Count1 - Track Number10 - Track Count12 - Year1975 - Date Modified2008-10-15T13:41:19Z - Date Added2009-10-03T14:54:41Z - Bit Rate256 - Sample Rate44100 - Skip Count1 - Skip Date2010-08-25T11:00:08Z - Normalization1741 - Artwork Count1 - Sort AlbumNight At The Opera - Persistent IDE65E20B2A520E5C2 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Queen/A%20Night%20At%20The%20Opera/10%20Good%20Company.m4a - File Folder Count4 - Library Folder Count1 - - 2994 - - Track ID2994 - NameBohemian Rhapsody - ArtistQueen - ComposerMercury - AlbumA Night At The Opera - GenreRock - KindAAC audio file - Size11573019 - Total Time354346 - Disc Number1 - Disc Count1 - Track Number11 - Track Count12 - Year1975 - Date Modified2008-10-15T13:41:24Z - Date Added2009-10-03T14:54:42Z - Bit Rate256 - Sample Rate44100 - Normalization2516 - Artwork Count1 - Sort AlbumNight At The Opera - Persistent ID316EC2E7A08C13D8 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Queen/A%20Night%20At%20The%20Opera/11%20Bohemian%20Rhapsody.m4a - File Folder Count4 - Library Folder Count1 - - 2996 - - Track ID2996 - NameGod Save The Queen - ArtistQueen - Composer[traditional] - AlbumA Night At The Opera - GenreRock - KindAAC audio file - Size2388167 - Total Time73306 - Disc Number1 - Disc Count1 - Track Number12 - Track Count12 - Year1975 - Date Modified2008-10-11T10:08:37Z - Date Added2009-10-03T14:54:42Z - Bit Rate256 - Sample Rate44100 - Normalization1090 - Artwork Count1 - Sort AlbumNight At The Opera - Persistent ID7D06BEA956896D55 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Queen/A%20Night%20At%20The%20Opera/12%20God%20Save%20The%20Queen.m4a - File Folder Count4 - Library Folder Count1 - - 3020 - - Track ID3020 - NameShine On You Crazy Diamond (Parts I-V) - ArtistPink Floyd - ComposerDavid Gilmour, Roger Waters, Richard Wright - AlbumWish You Were Here - GenreRock - KindAAC audio file - Size19874872 - Total Time820266 - Disc Number1 - Disc Count1 - Track Number1 - Track Count5 - Year1975 - BPM192 - Date Modified2006-08-13T06:45:50Z - Date Added2009-10-03T14:54:45Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3389528756 - Play Date UTC2011-05-29T10:15:56Z - Normalization1703 - Artwork Count1 - Persistent IDF5D244D92BDA0086 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/Wish%20You%20Were%20Here/01%20Shine%20On%20You%20Crazy%20Diamond%20(Parts%20I-V).m4a - File Folder Count4 - Library Folder Count1 - - 3022 - - Track ID3022 - NameWelcome to the Machine - ArtistPink Floyd - ComposerRoger Waters - AlbumWish You Were Here - GenreRock - KindAAC audio file - Size10943614 - Total Time451162 - Disc Number1 - Disc Count1 - Track Number2 - Track Count5 - Year1975 - BPM192 - Date Modified2006-08-13T06:45:42Z - Date Added2009-10-03T14:54:45Z - Bit Rate192 - Sample Rate44100 - Normalization2061 - Artwork Count1 - Persistent IDC021DD7293F29AF4 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/Wish%20You%20Were%20Here/02%20Welcome%20to%20the%20Machine.m4a - File Folder Count4 - Library Folder Count1 - - 3024 - - Track ID3024 - NameHave A Cigar - ArtistPink Floyd - ComposerRoger Waters - AlbumWish You Were Here - GenreRock - KindAAC audio file - Size7497620 - Total Time308754 - Disc Number1 - Disc Count1 - Track Number3 - Track Count5 - Year1975 - BPM192 - Date Modified2006-08-13T06:45:36Z - Date Added2009-10-03T14:54:45Z - Bit Rate192 - Sample Rate44100 - Normalization2536 - Artwork Count1 - Persistent ID94ADE859464E9F84 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/Wish%20You%20Were%20Here/03%20Have%20A%20Cigar.m4a - File Folder Count4 - Library Folder Count1 - - 3026 - - Track ID3026 - NameWish You Were Here - ArtistPink Floyd - ComposerRoger Waters, David Gilmour - AlbumWish You Were Here - GenreRock - KindAAC audio file - Size8117727 - Total Time334389 - Disc Number1 - Disc Count1 - Track Number4 - Track Count5 - Year1975 - BPM192 - Date Modified2006-08-13T06:45:34Z - Date Added2009-10-03T14:54:46Z - Bit Rate192 - Sample Rate44100 - Normalization993 - Artwork Count1 - Persistent ID81EAC05E8DE4546D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/Wish%20You%20Were%20Here/04%20Wish%20You%20Were%20Here.m4a - File Folder Count4 - Library Folder Count1 - - 3028 - - Track ID3028 - NameShine On You Crazy Diamond (Parts VI-IX) - ArtistPink Floyd - ComposerRoger Waters, Richard Wright, David Gilmour - AlbumWish You Were Here - GenreRock - KindAAC audio file - Size18209792 - Total Time751489 - Disc Number1 - Disc Count1 - Track Number5 - Track Count5 - Year1975 - BPM192 - Date Modified2006-08-13T06:45:30Z - Date Added2009-10-03T14:54:46Z - Bit Rate192 - Sample Rate44100 - Normalization1341 - Artwork Count1 - Persistent IDB483A0BD8FE15A6A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/Wish%20You%20Were%20Here/05%20Shine%20On%20You%20Crazy%20Diamond%20(Parts%20VI-IX).m4a - File Folder Count4 - Library Folder Count1 - - 3030 - - Track ID3030 - NameHey You - ArtistPink Floyd - ComposerRoger Waters - AlbumThe Wall [Disc 2] - GenreRock - KindAAC audio file - Size9354397 - Total Time281160 - Disc Number2 - Disc Count2 - Track Number1 - Track Count13 - Year1979 - BPM192 - Date Modified2009-06-25T16:14:21Z - Date Added2009-10-03T14:54:46Z - Bit Rate256 - Sample Rate44100 - Normalization725 - Artwork Count1 - Sort AlbumWall [Disc 2] - Persistent ID03283067B5392877 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/The%20Wall%20%5BDisc%202%5D/2-01%20Hey%20You.m4a - File Folder Count4 - Library Folder Count1 - - 3032 - - Track ID3032 - NameIs There Anybody Out There? - ArtistPink Floyd - ComposerRoger Waters - AlbumThe Wall [Disc 2] - GenreRock - KindAAC audio file - Size6046801 - Total Time177706 - Disc Number2 - Disc Count2 - Track Number2 - Track Count13 - Year1979 - BPM192 - Date Modified2009-06-25T16:14:21Z - Date Added2009-10-03T14:54:46Z - Bit Rate256 - Sample Rate44100 - Normalization407 - Artwork Count1 - Sort AlbumWall [Disc 2] - Persistent IDDC210A083EFE2E9A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/The%20Wall%20%5BDisc%202%5D/2-02%20Is%20There%20Anybody%20Out%20There_.m4a - File Folder Count4 - Library Folder Count1 - - 3034 - - Track ID3034 - NameNobody Home - ArtistPink Floyd - ComposerRoger Waters - AlbumThe Wall [Disc 2] - GenreRock - KindAAC audio file - Size6361685 - Total Time192026 - Disc Number2 - Disc Count2 - Track Number3 - Track Count13 - Year1979 - BPM192 - Date Modified2009-06-25T16:14:21Z - Date Added2009-10-03T14:54:46Z - Bit Rate256 - Sample Rate44100 - Normalization295 - Artwork Count1 - Sort AlbumWall [Disc 2] - Persistent ID256B66D342F9D4F0 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/The%20Wall%20%5BDisc%202%5D/2-03%20Nobody%20Home.m4a - File Folder Count4 - Library Folder Count1 - - 3036 - - Track ID3036 - NameVera - ArtistPink Floyd - ComposerRoger Waters - AlbumThe Wall [Disc 2] - GenreRock - KindAAC audio file - Size2951614 - Total Time88733 - Disc Number2 - Disc Count2 - Track Number4 - Track Count13 - Year1979 - BPM192 - Date Modified2009-06-25T16:14:20Z - Date Added2009-10-03T14:54:46Z - Bit Rate256 - Sample Rate44100 - Normalization236 - Artwork Count1 - Sort AlbumWall [Disc 2] - Persistent IDA1EBDF9A93DB1D1E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/The%20Wall%20%5BDisc%202%5D/2-04%20Vera.m4a - File Folder Count4 - Library Folder Count1 - - 3038 - - Track ID3038 - NameBring The Boys Back Home - ArtistPink Floyd - ComposerRoger Waters - AlbumThe Wall [Disc 2] - GenreRock - KindAAC audio file - Size3031064 - Total Time86906 - Disc Number2 - Disc Count2 - Track Number5 - Track Count13 - Year1979 - BPM192 - Date Modified2009-06-25T16:14:20Z - Date Added2009-10-03T14:54:46Z - Bit Rate256 - Sample Rate44100 - Normalization975 - Artwork Count1 - Sort AlbumWall [Disc 2] - Persistent IDE535A50757E08E98 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/The%20Wall%20%5BDisc%202%5D/2-05%20Bring%20The%20Boys%20Back%20Home.m4a - File Folder Count4 - Library Folder Count1 - - 3040 - - Track ID3040 - NameComfortably Numb - ArtistPink Floyd - ComposerDavid Gilmour, Roger Waters - AlbumThe Wall [Disc 2] - GenreRock - KindAAC audio file - Size12768305 - Total Time384466 - Disc Number2 - Disc Count2 - Track Number6 - Track Count13 - Year1979 - BPM192 - Date Modified2009-06-25T16:14:20Z - Date Added2009-10-03T14:54:47Z - Bit Rate256 - Sample Rate44100 - Normalization761 - Artwork Count1 - Sort AlbumWall [Disc 2] - Persistent IDAC7E0DA9A6EA4215 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/The%20Wall%20%5BDisc%202%5D/2-06%20Comfortably%20Numb.m4a - File Folder Count4 - Library Folder Count1 - - 3042 - - Track ID3042 - NameThe Show Must Go On - ArtistPink Floyd - ComposerRoger Waters - AlbumThe Wall [Disc 2] - GenreRock - KindAAC audio file - Size3272559 - Total Time98160 - Disc Number2 - Disc Count2 - Track Number7 - Track Count13 - Year1979 - BPM192 - Date Modified2009-06-25T16:14:19Z - Date Added2009-10-03T14:54:47Z - Bit Rate256 - Sample Rate44100 - Normalization571 - Artwork Count1 - Sort AlbumWall [Disc 2] - Sort NameShow Must Go On - Persistent ID93BE521C7877D11B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/The%20Wall%20%5BDisc%202%5D/2-07%20The%20Show%20Must%20Go%20On.m4a - File Folder Count4 - Library Folder Count1 - - 3044 - - Track ID3044 - NameIn The Flesh - ArtistPink Floyd - ComposerRoger Waters - AlbumThe Wall [Disc 2] - GenreRock - KindAAC audio file - Size8528005 - Total Time253440 - Disc Number2 - Disc Count2 - Track Number8 - Track Count13 - Year1979 - BPM192 - Date Modified2009-06-25T16:14:19Z - Date Added2009-10-03T14:54:47Z - Bit Rate256 - Sample Rate44100 - Normalization1020 - Artwork Count1 - Sort AlbumWall [Disc 2] - Persistent IDD13CD3A5E2D423BF - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/The%20Wall%20%5BDisc%202%5D/2-08%20In%20The%20Flesh.m4a - File Folder Count4 - Library Folder Count1 - - 3046 - - Track ID3046 - NameRun Like Hell - ArtistPink Floyd - ComposerDavid Gilmour, Roger Waters - AlbumThe Wall [Disc 2] - GenreRock - KindAAC audio file - Size8719476 - Total Time261133 - Disc Number2 - Disc Count2 - Track Number9 - Track Count13 - Year1979 - BPM192 - Date Modified2009-06-25T16:14:18Z - Date Added2009-10-03T14:54:47Z - Bit Rate256 - Sample Rate44100 - Normalization1209 - Artwork Count1 - Sort AlbumWall [Disc 2] - Persistent ID29C3AD7B5E033191 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/The%20Wall%20%5BDisc%202%5D/2-09%20Run%20Like%20Hell.m4a - File Folder Count4 - Library Folder Count1 - - 3048 - - Track ID3048 - NameWaiting For The Worms - ArtistPink Floyd - ComposerRoger Waters - AlbumThe Wall [Disc 2] - GenreRock - KindAAC audio file - Size8054261 - Total Time242893 - Disc Number2 - Disc Count2 - Track Number10 - Track Count13 - Year1979 - BPM192 - Date Modified2009-06-25T16:14:18Z - Date Added2009-10-03T14:54:47Z - Bit Rate256 - Sample Rate44100 - Normalization893 - Artwork Count1 - Sort AlbumWall [Disc 2] - Persistent ID2773C3F2DDDB177A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/The%20Wall%20%5BDisc%202%5D/2-10%20Waiting%20For%20The%20Worms.m4a - File Folder Count4 - Library Folder Count1 - - 3050 - - Track ID3050 - NameStop - ArtistPink Floyd - ComposerRoger Waters - AlbumThe Wall [Disc 2] - GenreRock - KindAAC audio file - Size1021445 - Total Time30106 - Disc Number2 - Disc Count2 - Track Number11 - Track Count13 - Year1979 - BPM192 - Date Modified2009-06-25T16:14:18Z - Date Added2009-10-03T14:54:47Z - Bit Rate256 - Sample Rate44100 - Normalization37 - Artwork Count1 - Sort AlbumWall [Disc 2] - Persistent ID0D1D7DE3B120767A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/The%20Wall%20%5BDisc%202%5D/2-11%20Stop.m4a - File Folder Count4 - Library Folder Count1 - - 3052 - - Track ID3052 - NameThe Trial - ArtistPink Floyd - ComposerRoger Waters, Bob Ezrin - AlbumThe Wall [Disc 2] - GenreRock - KindAAC audio file - Size10819613 - Total Time319226 - Disc Number2 - Disc Count2 - Track Number12 - Track Count13 - Year1979 - BPM192 - Date Modified2009-06-25T16:14:17Z - Date Added2009-10-03T14:54:47Z - Bit Rate256 - Sample Rate44100 - Normalization724 - Artwork Count1 - Sort AlbumWall [Disc 2] - Sort NameTrial - Persistent ID62675AD744D988E7 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/The%20Wall%20%5BDisc%202%5D/2-12%20The%20Trial.m4a - File Folder Count4 - Library Folder Count1 - - 3054 - - Track ID3054 - NameOutside The Wall - ArtistPink Floyd - ComposerRoger Waters/Bob Ezrin - AlbumThe Wall [Disc 2] - GenreRock - KindAAC audio file - Size3605356 - Total Time105106 - Disc Number2 - Disc Count2 - Track Number13 - Track Count13 - Year1979 - BPM192 - Date Modified2009-06-25T16:14:17Z - Date Added2009-10-03T14:54:47Z - Bit Rate256 - Sample Rate44100 - Normalization15 - Artwork Count1 - Sort AlbumWall [Disc 2] - Persistent IDB8AB72922AAE6C64 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/The%20Wall%20%5BDisc%202%5D/2-13%20Outside%20The%20Wall.m4a - File Folder Count4 - Library Folder Count1 - - 3056 - - Track ID3056 - NameIn The Flesh? - ArtistPink Floyd - ComposerRoger Waters - AlbumThe Wall [Disc 1] - GenreRock - KindAAC audio file - Size6648328 - Total Time199266 - Disc Number1 - Disc Count2 - Track Number1 - Track Count13 - Year1979 - BPM192 - Date Modified2009-06-25T16:14:25Z - Date Added2009-10-03T14:54:47Z - Bit Rate256 - Sample Rate44100 - Normalization1127 - Artwork Count1 - Sort AlbumWall [Disc 1] - Persistent ID3159B058FB9AA705 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/The%20Wall%20%5BDisc%201%5D/1-01%20In%20The%20Flesh_.m4a - File Folder Count4 - Library Folder Count1 - - 3058 - - Track ID3058 - NameThe Thin Ice - ArtistPink Floyd - ComposerRoger Waters - AlbumThe Wall [Disc 1] - GenreRock - KindAAC audio file - Size4974030 - Total Time149893 - Disc Number1 - Disc Count2 - Track Number2 - Track Count13 - Year1979 - BPM192 - Date Modified2009-06-25T16:14:25Z - Date Added2009-10-03T14:54:47Z - Bit Rate256 - Sample Rate44100 - Normalization642 - Artwork Count1 - Sort AlbumWall [Disc 1] - Sort NameThin Ice - Persistent IDA591021B5931D346 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/The%20Wall%20%5BDisc%201%5D/1-02%20The%20Thin%20Ice.m4a - File Folder Count4 - Library Folder Count1 - - 3060 - - Track ID3060 - NameAnother Brick In The Wall (Part 1) - ArtistPink Floyd - ComposerRoger Waters - AlbumThe Wall [Disc 1] - GenreRock - KindAAC audio file - Size6393497 - Total Time190800 - Disc Number1 - Disc Count2 - Track Number3 - Track Count13 - Year1979 - BPM192 - Date Modified2009-06-25T16:14:25Z - Date Added2009-10-03T14:54:48Z - Bit Rate256 - Sample Rate44100 - Normalization923 - Artwork Count1 - Sort AlbumWall [Disc 1] - Persistent IDCD405A0853EE28A9 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/The%20Wall%20%5BDisc%201%5D/1-03%20Another%20Brick%20In%20The%20Wall%20(Part%201).m4a - File Folder Count4 - Library Folder Count1 - - 3062 - - Track ID3062 - NameThe Happiest Days Of Our Lives - ArtistPink Floyd - ComposerRoger Waters - AlbumThe Wall [Disc 1] - GenreRock - KindAAC audio file - Size3717828 - Total Time109933 - Disc Number1 - Disc Count2 - Track Number4 - Track Count13 - Year1979 - BPM192 - Date Modified2009-06-25T16:14:24Z - Date Added2009-10-03T14:54:48Z - Bit Rate256 - Sample Rate44100 - Normalization1080 - Artwork Count1 - Sort AlbumWall [Disc 1] - Sort NameHappiest Days Of Our Lives - Persistent IDA21AAE0F688E997A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/The%20Wall%20%5BDisc%201%5D/1-04%20The%20Happiest%20Days%20Of%20Our%20Lives.m4a - File Folder Count4 - Library Folder Count1 - - 3064 - - Track ID3064 - NameAnother Brick In The Wall (Part 2) - ArtistPink Floyd - ComposerRoger Waters - AlbumThe Wall [Disc 1] - GenreRock - KindAAC audio file - Size8236509 - Total Time241800 - Disc Number1 - Disc Count2 - Track Number5 - Track Count13 - Year1979 - BPM192 - Date Modified2009-06-25T16:14:24Z - Date Added2009-10-03T14:54:48Z - Bit Rate256 - Sample Rate44100 - Normalization717 - Artwork Count1 - Sort AlbumWall [Disc 1] - Persistent ID2E7A8EC38AF2C875 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/The%20Wall%20%5BDisc%201%5D/1-05%20Another%20Brick%20In%20The%20Wall%20(Part%202).m4a - File Folder Count4 - Library Folder Count1 - - 3066 - - Track ID3066 - NameMother - ArtistPink Floyd - ComposerRoger Waters - AlbumThe Wall [Disc 1] - GenreRock - KindAAC audio file - Size11051936 - Total Time334373 - Disc Number1 - Disc Count2 - Track Number6 - Track Count13 - Year1979 - BPM192 - Date Modified2009-06-25T16:14:24Z - Date Added2009-10-03T14:54:48Z - Bit Rate256 - Sample Rate44100 - Normalization809 - Artwork Count1 - Sort AlbumWall [Disc 1] - Persistent IDEC271269049F763C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/The%20Wall%20%5BDisc%201%5D/1-06%20Mother.m4a - File Folder Count4 - Library Folder Count1 - - 3068 - - Track ID3068 - NameGoodbye Blue Sky - ArtistPink Floyd - ComposerRoger Waters - AlbumThe Wall [Disc 1] - GenreRock - KindAAC audio file - Size5628276 - Total Time169360 - Disc Number1 - Disc Count2 - Track Number7 - Track Count13 - Year1979 - BPM192 - Date Modified2009-06-25T16:14:23Z - Date Added2009-10-03T14:54:48Z - Bit Rate256 - Sample Rate44100 - Normalization253 - Artwork Count1 - Sort AlbumWall [Disc 1] - Persistent ID4688B6D05DA8D187 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/The%20Wall%20%5BDisc%201%5D/1-07%20Goodbye%20Blue%20Sky.m4a - File Folder Count4 - Library Folder Count1 - - 3070 - - Track ID3070 - NameEmpty Spaces - ArtistPink Floyd - ComposerRoger Waters - AlbumThe Wall [Disc 1] - GenreRock - KindAAC audio file - Size4276717 - Total Time128066 - Disc Number1 - Disc Count2 - Track Number8 - Track Count13 - Year1979 - BPM192 - Date Modified2009-06-25T16:14:23Z - Date Added2009-10-03T14:54:48Z - Bit Rate256 - Sample Rate44100 - Normalization1169 - Artwork Count1 - Sort AlbumWall [Disc 1] - Persistent ID60DC4E6B5C866A63 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/The%20Wall%20%5BDisc%201%5D/1-08%20Empty%20Spaces.m4a - File Folder Count4 - Library Folder Count1 - - 3072 - - Track ID3072 - NameYoung Lust - ArtistPink Floyd - ComposerDavid Gilmour, Roger Waters - AlbumThe Wall [Disc 1] - GenreRock - KindAAC audio file - Size7108185 - Total Time211773 - Disc Number1 - Disc Count2 - Track Number9 - Track Count13 - Year1979 - BPM192 - Date Modified2009-06-25T16:14:23Z - Date Added2009-10-03T14:54:48Z - Bit Rate256 - Sample Rate44100 - Normalization1246 - Artwork Count1 - Sort AlbumWall [Disc 1] - Persistent IDCF300CEEAEB21E38 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/The%20Wall%20%5BDisc%201%5D/1-09%20Young%20Lust.m4a - File Folder Count4 - Library Folder Count1 - - 3074 - - Track ID3074 - NameOne Of My Turns - ArtistPink Floyd - ComposerRoger Waters - AlbumThe Wall [Disc 1] - GenreRock - KindAAC audio file - Size7249081 - Total Time215400 - Disc Number1 - Disc Count2 - Track Number10 - Track Count13 - Year1979 - BPM192 - Date Modified2009-06-25T16:14:22Z - Date Added2009-10-03T14:54:48Z - Bit Rate256 - Sample Rate44100 - Normalization1239 - Artwork Count1 - Sort AlbumWall [Disc 1] - Persistent ID08AEE68793838695 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/The%20Wall%20%5BDisc%201%5D/1-10%20One%20Of%20My%20Turns.m4a - File Folder Count4 - Library Folder Count1 - - 3076 - - Track ID3076 - NameDon't Leave Me Now - ArtistPink Floyd - ComposerRoger Waters - AlbumThe Wall [Disc 1] - GenreRock - KindAAC audio file - Size8573477 - Total Time256533 - Disc Number1 - Disc Count2 - Track Number11 - Track Count13 - Year1979 - BPM192 - Date Modified2009-06-25T16:14:22Z - Date Added2009-10-03T14:54:49Z - Bit Rate256 - Sample Rate44100 - Normalization795 - Artwork Count1 - Sort AlbumWall [Disc 1] - Persistent ID72A31A641C77F7F1 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/The%20Wall%20%5BDisc%201%5D/1-11%20Don't%20Leave%20Me%20Now.m4a - File Folder Count4 - Library Folder Count1 - - 3078 - - Track ID3078 - NameAnother Brick In The Wall (Part III) - ArtistPink Floyd - ComposerRoger Waters - AlbumThe Wall [Disc 1] - GenreRock - KindAAC audio file - Size2494467 - Total Time74693 - Disc Number1 - Disc Count2 - Track Number12 - Track Count13 - Year1979 - BPM192 - Date Modified2009-06-25T16:14:22Z - Date Added2009-10-03T14:54:49Z - Bit Rate256 - Sample Rate44100 - Normalization1176 - Artwork Count1 - Sort AlbumWall [Disc 1] - Persistent ID182A80837C87A1FB - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/The%20Wall%20%5BDisc%201%5D/1-12%20Another%20Brick%20In%20The%20Wall%20(Part%20III).m4a - File Folder Count4 - Library Folder Count1 - - 3080 - - Track ID3080 - NameGoodbye Cruel World - ArtistPink Floyd - ComposerRoger Waters - AlbumThe Wall [Disc 1] - GenreRock - KindAAC audio file - Size2731848 - Total Time77400 - Disc Number1 - Disc Count2 - Track Number13 - Track Count13 - Year1979 - BPM192 - Date Modified2009-06-25T16:14:21Z - Date Added2009-10-03T14:54:49Z - Bit Rate256 - Sample Rate44100 - Normalization79 - Artwork Count1 - Sort AlbumWall [Disc 1] - Persistent ID59507E26DC681116 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/The%20Wall%20%5BDisc%201%5D/1-13%20Goodbye%20Cruel%20World.m4a - File Folder Count4 - Library Folder Count1 - - 3082 - - Track ID3082 - NameCluster One - ArtistPink Floyd - ComposerDavid Gilmour/Richard Wright - AlbumThe Division Bell - GenreRock - KindAAC audio file - Size8700253 - Total Time358375 - Disc Number1 - Disc Count1 - Track Number1 - Track Count11 - Year1994 - Date Modified2006-07-30T08:27:58Z - Date Added2009-10-03T14:54:49Z - Bit Rate192 - Sample Rate44100 - Normalization739 - Artwork Count1 - Sort AlbumDivision Bell - Persistent IDE1CF3C276919C065 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/The%20Division%20Bell/01%20Cluster%20One.m4a - File Folder Count4 - Library Folder Count1 - - 3084 - - Track ID3084 - NameWhat Do You Want From Me - ArtistPink Floyd - ComposerDavid Gilmour/Polly Samson/Richard Wright/Samson - AlbumThe Division Bell - GenreRock - KindAAC audio file - Size6365323 - Total Time261640 - Disc Number1 - Disc Count1 - Track Number2 - Track Count11 - Year1994 - Date Modified2006-07-30T08:28:00Z - Date Added2009-10-03T14:54:49Z - Bit Rate192 - Sample Rate44100 - Normalization4268 - Artwork Count1 - Sort AlbumDivision Bell - Persistent IDB90ED5760BC0B4CE - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/The%20Division%20Bell/02%20What%20Do%20You%20Want%20From%20Me.m4a - File Folder Count4 - Library Folder Count1 - - 3086 - - Track ID3086 - NamePoles Apart - ArtistPink Floyd - ComposerDavid Gilmour/Laird-Clowes/Nick Laird-Clowes/Polly Samson/Samson - AlbumThe Division Bell - GenreRock - KindAAC audio file - Size10296245 - Total Time424087 - Disc Number1 - Disc Count1 - Track Number3 - Track Count11 - Year1994 - Date Modified2006-07-30T08:28:00Z - Date Added2009-10-03T14:54:50Z - Bit Rate192 - Sample Rate44100 - Normalization1944 - Artwork Count1 - Sort AlbumDivision Bell - Persistent ID151E45BD1676C088 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/The%20Division%20Bell/03%20Poles%20Apart.m4a - File Folder Count4 - Library Folder Count1 - - 3088 - - Track ID3088 - NameMarooned - ArtistPink Floyd - ComposerDavid Gilmour/Richard Wright - AlbumThe Division Bell - GenreRock - KindAAC audio file - Size8009689 - Total Time329605 - Disc Number1 - Disc Count1 - Track Number4 - Track Count11 - Year1994 - Date Modified2006-07-30T08:28:00Z - Date Added2009-10-03T14:54:50Z - Bit Rate192 - Sample Rate44100 - Normalization1137 - Artwork Count1 - Sort AlbumDivision Bell - Persistent ID3D7216D65B6F52DF - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/The%20Division%20Bell/04%20Marooned.m4a - File Folder Count4 - Library Folder Count1 - - 3090 - - Track ID3090 - NameA Great Day For Freedom - ArtistPink Floyd - ComposerDavid Gilmour/Polly Samson/Samson - AlbumThe Division Bell - GenreRock - KindAAC audio file - Size6269158 - Total Time257647 - Disc Number1 - Disc Count1 - Track Number5 - Track Count11 - Year1994 - Date Modified2006-07-30T08:28:00Z - Date Added2009-10-03T14:54:50Z - Bit Rate192 - Sample Rate44100 - Normalization1473 - Artwork Count1 - Sort AlbumDivision Bell - Sort NameGreat Day For Freedom - Persistent IDD12FB4E5544927E2 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/The%20Division%20Bell/05%20A%20Great%20Day%20For%20Freedom.m4a - File Folder Count4 - Library Folder Count1 - - 3092 - - Track ID3092 - NameWearing The Inside Out - ArtistPink Floyd - ComposerAnthony Moore/Moore/Richard Wright - AlbumThe Division Bell - GenreRock - KindAAC audio file - Size9943677 - Total Time409528 - Disc Number1 - Disc Count1 - Track Number6 - Track Count11 - Year1994 - Date Modified2006-07-30T08:28:00Z - Date Added2009-10-03T14:54:50Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3385735973 - Play Date UTC2011-04-15T12:42:53Z - Normalization842 - Artwork Count1 - Sort AlbumDivision Bell - Persistent ID1916C6CCF4572DB8 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/The%20Division%20Bell/06%20Wearing%20The%20Inside%20Out.m4a - File Folder Count4 - Library Folder Count1 - - 3094 - - Track ID3094 - NameTake It Back - ArtistPink Floyd - ComposerBob Ezrin/David Gilmour/Laird-Clowes/Nick Laird-Clowes/Polly Samson/Samson - AlbumThe Division Bell - GenreRock - KindAAC audio file - Size9045326 - Total Time372400 - Disc Number1 - Disc Count1 - Track Number7 - Track Count11 - Year1994 - Date Modified2006-07-30T08:28:00Z - Date Added2009-10-03T14:54:51Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3385736770 - Play Date UTC2011-04-15T12:56:10Z - Normalization2783 - Artwork Count1 - Sort AlbumDivision Bell - Persistent ID36F083A399DA6E35 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/The%20Division%20Bell/07%20Take%20It%20Back.m4a - File Folder Count4 - Library Folder Count1 - - 3096 - - Track ID3096 - NameComing Back To Life - ArtistPink Floyd - ComposerDavid Gilmour - AlbumThe Division Bell - GenreRock - KindAAC audio file - Size9215355 - Total Time379435 - Disc Number1 - Disc Count1 - Track Number8 - Track Count11 - Year1994 - Date Modified2006-07-30T08:28:00Z - Date Added2009-10-03T14:54:51Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3385737521 - Play Date UTC2011-04-15T13:08:41Z - Normalization2566 - Artwork Count1 - Sort AlbumDivision Bell - Persistent IDA5985DEE5ECE8F81 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/The%20Division%20Bell/08%20Coming%20Back%20To%20Life.m4a - File Folder Count4 - Library Folder Count1 - - 3098 - - Track ID3098 - NameKeep Talking - ArtistPink Floyd - ComposerDavid Gilmour/Polly Samson/Richard Wright/Samson - AlbumThe Division Bell - GenreRock - KindAAC audio file - Size9014311 - Total Time371123 - Disc Number1 - Disc Count1 - Track Number9 - Track Count11 - Year1994 - Date Modified2006-07-30T08:28:00Z - Date Added2009-10-03T14:54:51Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3385738272 - Play Date UTC2011-04-15T13:21:12Z - Normalization1874 - Artwork Count1 - Sort AlbumDivision Bell - Persistent IDB06408AF8B4F373F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/The%20Division%20Bell/09%20Keep%20Talking.m4a - File Folder Count4 - Library Folder Count1 - - 3100 - - Track ID3100 - NameLost For Words - ArtistPink Floyd - ComposerDavid Gilmour/Polly Samson/Samson - AlbumThe Division Bell - GenreRock - KindAAC audio file - Size7655110 - Total Time314954 - Disc Number1 - Disc Count1 - Track Number10 - Track Count11 - Year1994 - Date Modified2006-07-30T08:28:02Z - Date Added2009-10-03T14:54:51Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Sort AlbumDivision Bell - Persistent ID2B8D34B063E62076 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/The%20Division%20Bell/10%20Lost%20For%20Words.m4a - File Folder Count4 - Library Folder Count1 - - 3102 - - Track ID3102 - NameHigh Hopes - ArtistPink Floyd - ComposerAbbey Road Recording Studios/David Gilmour/Polly Samson/Samson - AlbumThe Division Bell - GenreRock - KindAAC audio file - Size12426453 - Total Time512346 - Disc Number1 - Disc Count1 - Track Number11 - Track Count11 - Year1994 - Date Modified2006-07-30T08:28:02Z - Date Added2009-10-03T14:54:52Z - Bit Rate192 - Sample Rate44100 - Normalization1685 - Artwork Count1 - Sort AlbumDivision Bell - Persistent ID755B282F8A4D350B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/The%20Division%20Bell/11%20High%20Hopes.m4a - File Folder Count4 - Library Folder Count1 - - 3104 - - Track ID3104 - NameSpeak To Me/Breathe - ArtistPink Floyd - ComposerMason/Waters, Gilmour, Wright - AlbumDark Side Of The Moon - GenreRock - KindAAC audio file - Size5813859 - Total Time240510 - Disc Number1 - Disc Count1 - Track Number1 - Track Count9 - Year1973 - Date Modified2006-08-03T11:50:52Z - Date Added2009-10-03T14:54:53Z - Bit Rate192 - Sample Rate44100 - Normalization581 - Artwork Count1 - Persistent ID74D43AA7824093BF - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/Dark%20Side%20Of%20The%20Moon/01%20Speak%20To%20Me_Breathe.m4a - File Folder Count4 - Library Folder Count1 - - 3106 - - Track ID3106 - NameOn The Run - ArtistPink Floyd - ComposerGilmour, Waters - AlbumDark Side Of The Moon - GenreRock - KindAAC audio file - Size5168385 - Total Time213018 - Disc Number1 - Disc Count1 - Track Number2 - Track Count9 - Year1973 - Date Modified2006-08-03T11:50:52Z - Date Added2009-10-03T14:54:53Z - Bit Rate192 - Sample Rate44100 - Normalization602 - Artwork Count1 - Persistent IDA5EF3618C1B4171F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/Dark%20Side%20Of%20The%20Moon/02%20On%20The%20Run.m4a - File Folder Count4 - Library Folder Count1 - - 3108 - - Track ID3108 - NameTime - ArtistPink Floyd - ComposerMason, Waters, Wright, Gilmour - AlbumDark Side Of The Moon - GenreRock - KindAAC audio file - Size10329561 - Total Time426502 - Disc Number1 - Disc Count1 - Track Number3 - Track Count9 - Year1973 - Date Modified2006-08-03T11:50:52Z - Date Added2009-10-03T14:54:53Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3484158546 - Play Date UTC2014-05-28T16:19:06Z - Normalization1350 - Artwork Count1 - Persistent ID8F052D1DBF3C8D39 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/Dark%20Side%20Of%20The%20Moon/03%20Time.m4a - File Folder Count4 - Library Folder Count1 - - 3110 - - Track ID3110 - NameThe Great Gig In The Sky - ArtistPink Floyd - ComposerWright, Waters - AlbumDark Side Of The Moon - GenreRock - KindAAC audio file - Size6882266 - Total Time284048 - Disc Number1 - Disc Count1 - Track Number4 - Track Count9 - Year1973 - Date Modified2006-08-03T11:50:52Z - Date Added2009-10-03T14:54:53Z - Bit Rate192 - Sample Rate44100 - Normalization767 - Artwork Count1 - Sort NameGreat Gig In The Sky - Persistent ID022FB33B4E39A351 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/Dark%20Side%20Of%20The%20Moon/04%20The%20Great%20Gig%20In%20The%20Sky.m4a - File Folder Count4 - Library Folder Count1 - - 3112 - - Track ID3112 - NameMoney - ArtistPink Floyd - ComposerWaters - AlbumDark Side Of The Moon - GenreRock - KindAAC audio file - Size9494556 - Total Time392021 - Disc Number1 - Disc Count1 - Track Number5 - Track Count9 - Year1973 - Date Modified2006-08-03T11:50:52Z - Date Added2009-10-03T14:54:53Z - Bit Rate192 - Sample Rate44100 - Normalization2307 - Artwork Count1 - Persistent IDA1F31CC5C427F7F1 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/Dark%20Side%20Of%20The%20Moon/05%20Money.m4a - File Folder Count4 - Library Folder Count1 - - 3114 - - Track ID3114 - NameUs And Them - ArtistPink Floyd - ComposerWaters, Wright - AlbumDark Side Of The Moon - GenreRock - KindAAC audio file - Size11159391 - Total Time460821 - Disc Number1 - Disc Count1 - Track Number6 - Track Count9 - Year1973 - Date Modified2006-08-03T11:50:52Z - Date Added2009-10-03T14:54:53Z - Bit Rate192 - Sample Rate44100 - Normalization712 - Artwork Count1 - Persistent ID5E2424F305467C8A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/Dark%20Side%20Of%20The%20Moon/06%20Us%20And%20Them.m4a - File Folder Count4 - Library Folder Count1 - - 3116 - - Track ID3116 - NameAny Colour You Like - ArtistPink Floyd - ComposerGilmour, Mason, Wright, Waters - AlbumDark Side Of The Moon - GenreRock - KindAAC audio file - Size4991181 - Total Time205611 - Disc Number1 - Disc Count1 - Track Number7 - Track Count9 - Year1973 - Date Modified2006-08-03T11:50:54Z - Date Added2009-10-03T14:54:53Z - Bit Rate192 - Sample Rate44100 - Normalization1230 - Artwork Count1 - Persistent ID02105339C012D0F0 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/Dark%20Side%20Of%20The%20Moon/07%20Any%20Colour%20You%20Like.m4a - File Folder Count4 - Library Folder Count1 - - 3118 - - Track ID3118 - NameBrain Damage - ArtistPink Floyd - ComposerWaters - AlbumDark Side Of The Moon - GenreRock - KindAAC audio file - Size5589100 - Total Time230503 - Disc Number1 - Disc Count1 - Track Number8 - Track Count9 - Year1973 - Date Modified2006-08-03T11:50:54Z - Date Added2009-10-03T14:54:53Z - Bit Rate192 - Sample Rate44100 - Normalization723 - Artwork Count1 - Persistent IDF76FD2DF5AFF336E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/Dark%20Side%20Of%20The%20Moon/08%20Brain%20Damage.m4a - File Folder Count4 - Library Folder Count1 - - 3120 - - Track ID3120 - NameEclipse - ArtistPink Floyd - ComposerWaters - AlbumDark Side Of The Moon - GenreRock - KindAAC audio file - Size3031122 - Total Time124341 - Disc Number1 - Disc Count1 - Track Number9 - Track Count9 - Year1973 - Date Modified2006-08-03T11:50:54Z - Date Added2009-10-03T14:54:54Z - Bit Rate192 - Sample Rate44100 - Normalization2955 - Artwork Count1 - Persistent ID4A2FA754442EC9AF - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/Dark%20Side%20Of%20The%20Moon/09%20Eclipse.m4a - File Folder Count4 - Library Folder Count1 - - 3122 - - Track ID3122 - NamePigs On The Wing (Part One) - ArtistPink Floyd - ComposerRoger Waters - AlbumAnimals - GenreRock - KindAAC audio file - Size2097168 - Total Time85401 - Disc Number1 - Disc Count1 - Track Number1 - Track Count5 - Year1977 - BPM192 - Date Modified2006-08-13T06:45:20Z - Date Added2009-10-03T14:54:54Z - Bit Rate192 - Sample Rate44100 - Skip Count1 - Skip Date2014-01-10T11:12:44Z - Normalization364 - Artwork Count1 - Persistent ID66925B06AC1FF3F2 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/Animals/01%20Pigs%20On%20The%20Wing%20(Part%20One).m4a - File Folder Count4 - Library Folder Count1 - - 3124 - - Track ID3124 - NameDogs - ArtistPink Floyd - ComposerDavid Gilmour - AlbumAnimals - GenreRock - KindAAC audio file - Size24907360 - Total Time1028178 - Disc Number1 - Disc Count1 - Track Number2 - Track Count5 - Year1977 - BPM192 - Date Modified2006-08-13T06:45:20Z - Date Added2009-10-03T14:54:54Z - Bit Rate192 - Sample Rate44100 - Normalization1373 - Artwork Count1 - Persistent IDF1D35AC0BB826185 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/Animals/02%20Dogs.m4a - File Folder Count4 - Library Folder Count1 - - 3126 - - Track ID3126 - NamePigs (Three Different Ones) - ArtistPink Floyd - ComposerRoger Waters - AlbumAnimals - GenreRock - KindAAC audio file - Size16681173 - Total Time688238 - Disc Number1 - Disc Count1 - Track Number3 - Track Count5 - Year1977 - BPM192 - Date Modified2006-08-13T06:45:08Z - Date Added2009-10-03T14:54:54Z - Bit Rate192 - Sample Rate44100 - Normalization1803 - Artwork Count1 - Persistent IDCAFD74124D953104 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/Animals/03%20Pigs%20(Three%20Different%20Ones).m4a - File Folder Count4 - Library Folder Count1 - - 3128 - - Track ID3128 - NameSheep - ArtistPink Floyd - ComposerRoger Waters - AlbumAnimals - GenreRock - KindAAC audio file - Size15033108 - Total Time620133 - Disc Number1 - Disc Count1 - Track Number4 - Track Count5 - Year1977 - BPM192 - Date Modified2006-08-13T06:45:02Z - Date Added2009-10-03T14:54:54Z - Bit Rate192 - Sample Rate44100 - Normalization2056 - Artwork Count1 - Persistent ID2A719FFDFD56DB83 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/Animals/04%20Sheep.m4a - File Folder Count4 - Library Folder Count1 - - 3130 - - Track ID3130 - NamePigs On The Wing (Part Two) - ArtistPink Floyd - ComposerRoger Waters - AlbumAnimals - GenreRock - KindAAC audio file - Size2112177 - Total Time85889 - Disc Number1 - Disc Count1 - Track Number5 - Track Count5 - Year1977 - BPM192 - Date Modified2006-08-13T06:44:54Z - Date Added2009-10-03T14:54:54Z - Bit Rate192 - Sample Rate44100 - Normalization405 - Artwork Count1 - Persistent ID1568FC55EFBE292F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/Animals/05%20Pigs%20On%20The%20Wing%20(Part%20Two).m4a - File Folder Count4 - Library Folder Count1 - - 3132 - - Track ID3132 - NameCaravan Moves Out - ArtistPhilip Glass - ComposerPhilip Glass - AlbumKundun - GenreClassical - KindAAC audio file - Size4421927 - Total Time177333 - Disc Number1 - Disc Count1 - Track Number5 - Track Count18 - Year1997 - Date Modified2007-08-17T13:59:26Z - Date Added2009-10-03T14:54:56Z - Bit Rate192 - Sample Rate44100 - Normalization171 - Artwork Count1 - Persistent ID044C56CC0AFB92CB - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Philip%20Glass/Kundun/05%20Caravan%20Moves%20Out.m4a - File Folder Count4 - Library Folder Count1 - - 3134 - - Track ID3134 - NameChinese Invade - ArtistPhilip Glass - ComposerPhilip Glass - AlbumKundun - GenreClassical - KindAAC audio file - Size10603945 - Total Time426800 - Disc Number1 - Disc Count1 - Track Number11 - Track Count18 - Year1997 - Date Modified2007-08-17T13:59:22Z - Date Added2009-10-03T14:54:56Z - Bit Rate192 - Sample Rate44100 - Normalization624 - Artwork Count1 - Persistent IDBF72EF5E83E4EC79 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Philip%20Glass/Kundun/11%20Chinese%20Invade.m4a - File Folder Count4 - Library Folder Count1 - - 3136 - - Track ID3136 - NameChoosing - ArtistPhilip Glass - ComposerPhilip Glass - AlbumKundun - GenreClassical - KindAAC audio file - Size3240315 - Total Time134733 - Disc Number1 - Disc Count1 - Track Number4 - Track Count18 - Year1997 - Date Modified2007-08-17T13:59:27Z - Date Added2009-10-03T14:54:56Z - Bit Rate192 - Sample Rate44100 - Normalization329 - Artwork Count1 - Persistent IDB78D247C3A5091A5 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Philip%20Glass/Kundun/04%20Choosing.m4a - File Folder Count4 - Library Folder Count1 - - 3138 - - Track ID3138 - NameDark Kitchen - ArtistPhilip Glass - ComposerPhilip Glass - AlbumKundun - GenreClassical - KindAAC audio file - Size2252011 - Total Time93733 - Disc Number1 - Disc Count1 - Track Number3 - Track Count18 - Year1997 - Date Modified2007-08-17T13:59:27Z - Date Added2009-10-03T14:54:56Z - Bit Rate192 - Sample Rate44100 - Normalization131 - Artwork Count1 - Persistent IDA20EFE4CA78D245A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Philip%20Glass/Kundun/03%20Dark%20Kitchen.m4a - File Folder Count4 - Library Folder Count1 - - 3140 - - Track ID3140 - NameDistraught - ArtistPhilip Glass - ComposerPhilip Glass - AlbumKundun - GenreClassical - KindAAC audio file - Size4497757 - Total Time180373 - Disc Number1 - Disc Count1 - Track Number13 - Track Count18 - Year1997 - Date Modified2007-08-17T13:59:19Z - Date Added2009-10-03T14:54:56Z - Bit Rate192 - Sample Rate44100 - Normalization192 - Artwork Count1 - Persistent IDE47362F34A11B148 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Philip%20Glass/Kundun/13%20Distraught.m4a - File Folder Count4 - Library Folder Count1 - - 3142 - - Track ID3142 - NameEscape To India - ArtistPhilip Glass - ComposerPhilip Glass - AlbumKundun - GenreClassical - KindAAC audio file - Size15022683 - Total Time605160 - Disc Number1 - Disc Count1 - Track Number18 - Track Count18 - Year1997 - Date Modified2007-08-17T13:59:14Z - Date Added2009-10-03T14:54:56Z - Bit Rate192 - Sample Rate44100 - Normalization1214 - Artwork Count1 - Persistent ID7E03E6480DA582D3 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Philip%20Glass/Kundun/18%20Escape%20To%20India.m4a - File Folder Count4 - Library Folder Count1 - - 3144 - - Track ID3144 - NameFish - ArtistPhilip Glass - ComposerPhilip Glass - AlbumKundun - GenreClassical - KindAAC audio file - Size3181223 - Total Time131866 - Disc Number1 - Disc Count1 - Track Number12 - Track Count18 - Year1997 - Date Modified2007-08-17T13:59:20Z - Date Added2009-10-03T14:54:57Z - Bit Rate192 - Sample Rate44100 - Normalization112 - Artwork Count1 - Persistent IDE445E23A0FCF5D71 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Philip%20Glass/Kundun/12%20Fish.m4a - File Folder Count4 - Library Folder Count1 - - 3146 - - Track ID3146 - NameLhasa At Night - ArtistPhilip Glass - ComposerPhilip Glass - AlbumKundun - GenreClassical - KindAAC audio file - Size2916545 - Total Time120373 - Disc Number1 - Disc Count1 - Track Number17 - Track Count18 - Year1997 - Date Modified2007-08-17T13:59:16Z - Date Added2009-10-03T14:54:57Z - Bit Rate192 - Sample Rate44100 - Normalization168 - Artwork Count1 - Persistent IDD89F6DDAB44B307F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Philip%20Glass/Kundun/17%20Lhasa%20At%20Night.m4a - File Folder Count4 - Library Folder Count1 - - 3148 - - Track ID3148 - NameLord Chamberlain - ArtistPhilip Glass - ComposerPhilip Glass - AlbumKundun - GenreClassical - KindAAC audio file - Size4025055 - Total Time165400 - Disc Number1 - Disc Count1 - Track Number8 - Track Count18 - Year1997 - Date Modified2007-08-17T13:59:24Z - Date Added2009-10-03T14:54:57Z - Bit Rate192 - Sample Rate44100 - Normalization205 - Artwork Count1 - Persistent ID67C470DD18E5A6AA - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Philip%20Glass/Kundun/08%20Lord%20Chamberlain.m4a - File Folder Count4 - Library Folder Count1 - - 3150 - - Track ID3150 - NameMove To Dungkar - ArtistPhilip Glass - ComposerPhilip Glass - AlbumKundun - GenreClassical - KindAAC audio file - Size7530172 - Total Time306266 - Disc Number1 - Disc Count1 - Track Number15 - Track Count18 - Year1997 - Date Modified2007-08-17T13:59:18Z - Date Added2009-10-03T14:54:57Z - Bit Rate192 - Sample Rate44100 - Normalization224 - Artwork Count1 - Persistent IDAEDA6C488E827223 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Philip%20Glass/Kundun/15%20Move%20To%20Dungkar.m4a - File Folder Count4 - Library Folder Count1 - - 3152 - - Track ID3152 - NameNorbu Plays - ArtistPhilip Glass - ComposerPhilip Glass - AlbumKundun - GenreClassical - KindAAC audio file - Size3226509 - Total Time133200 - Disc Number1 - Disc Count1 - Track Number9 - Track Count18 - Year1997 - Date Modified2007-08-17T13:59:23Z - Date Added2009-10-03T14:54:57Z - Bit Rate192 - Sample Rate44100 - Normalization294 - Artwork Count1 - Persistent ID297B9F1710FD4166 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Philip%20Glass/Kundun/09%20Norbu%20Plays.m4a - File Folder Count4 - Library Folder Count1 - - 3154 - - Track ID3154 - NameNorbulingka - ArtistPhilip Glass - ComposerPhilip Glass - AlbumKundun - GenreClassical - KindAAC audio file - Size3344633 - Total Time139000 - Disc Number1 - Disc Count1 - Track Number10 - Track Count18 - Year1997 - Date Modified2007-08-17T13:59:23Z - Date Added2009-10-03T14:54:57Z - Bit Rate192 - Sample Rate44100 - Normalization159 - Artwork Count1 - Persistent ID925E7EDEC9C96116 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Philip%20Glass/Kundun/10%20Norbulingka.m4a - File Folder Count4 - Library Folder Count1 - - 3156 - - Track ID3156 - NameNorthern Tibet - ArtistPhilip Glass - ComposerPhilip Glass - AlbumKundun - GenreClassical - KindAAC audio file - Size4895322 - Total Time202506 - Disc Number1 - Disc Count1 - Track Number2 - Track Count18 - Year1997 - Date Modified2007-08-17T13:59:28Z - Date Added2009-10-03T14:54:57Z - Bit Rate192 - Sample Rate44100 - Normalization371 - Artwork Count1 - Persistent ID6E0FD6DAD527329A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Philip%20Glass/Kundun/02%20Northern%20Tibet.m4a - File Folder Count4 - Library Folder Count1 - - 3158 - - Track ID3158 - NamePotala - ArtistPhilip Glass - ComposerPhilip Glass - AlbumKundun - GenreClassical - KindAAC audio file - Size2179072 - Total Time90093 - Disc Number1 - Disc Count1 - Track Number7 - Track Count18 - Year1997 - Date Modified2007-08-17T13:59:25Z - Date Added2009-10-03T14:54:57Z - Bit Rate192 - Sample Rate44100 - Normalization77 - Artwork Count1 - Persistent IDC48792EDBF609C4C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Philip%20Glass/Kundun/07%20Potala.m4a - File Folder Count4 - Library Folder Count1 - - 3160 - - Track ID3160 - NameProjector - ArtistPhilip Glass - ComposerPhilip Glass - AlbumKundun - GenreClassical - KindAAC audio file - Size3039952 - Total Time125560 - Disc Number1 - Disc Count1 - Track Number16 - Track Count18 - Year1997 - Date Modified2007-08-17T13:59:17Z - Date Added2009-10-03T14:54:58Z - Bit Rate192 - Sample Rate44100 - Normalization373 - Artwork Count1 - Persistent IDC9B95D88A99BB5E2 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Philip%20Glass/Kundun/16%20Projector.m4a - File Folder Count4 - Library Folder Count1 - - 3162 - - Track ID3162 - NameReting's Eyes - ArtistPhilip Glass - ComposerPhilip Glass - AlbumKundun - GenreClassical - KindAAC audio file - Size3398974 - Total Time138000 - Disc Number1 - Disc Count1 - Track Number6 - Track Count18 - Year1997 - Date Modified2007-08-17T13:59:25Z - Date Added2009-10-03T14:54:58Z - Bit Rate192 - Sample Rate44100 - Normalization712 - Artwork Count1 - Persistent ID369D16A50F65B8E0 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Philip%20Glass/Kundun/06%20Reting's%20Eyes.m4a - File Folder Count4 - Library Folder Count1 - - 3164 - - Track ID3164 - NameSand Mandala - ArtistPhilip Glass - ComposerPhilip Glass - AlbumKundun - GenreClassical - KindAAC audio file - Size6022381 - Total Time246200 - Disc Number1 - Disc Count1 - Track Number1 - Track Count18 - Year1997 - Date Modified2007-08-17T13:59:29Z - Date Added2009-10-03T14:54:58Z - Bit Rate192 - Sample Rate44100 - Normalization260 - Artwork Count1 - Persistent ID5A012073493AAAC1 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Philip%20Glass/Kundun/01%20Sand%20Mandala.m4a - File Folder Count4 - Library Folder Count1 - - 3166 - - Track ID3166 - NameThirteenth Dalai Lama - ArtistPhilip Glass - ComposerPhilip Glass - AlbumKundun - GenreClassical - KindAAC audio file - Size4979562 - Total Time206066 - Disc Number1 - Disc Count1 - Track Number14 - Track Count18 - Year1997 - Date Modified2007-08-17T13:59:19Z - Date Added2009-10-03T14:54:58Z - Bit Rate192 - Sample Rate44100 - Normalization285 - Artwork Count1 - Persistent ID00BEB4E09033B2D2 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Philip%20Glass/Kundun/14%20Thirteenth%20Dalai%20Lama.m4a - File Folder Count4 - Library Folder Count1 - - 3168 - - Track ID3168 - NameRomeo and Juliet - ArtistPeter Ilyich Tchaikovsky - AlbumBest Of The Classics - Peter Iljitsch Tchaikovsky - GenreClassical - KindAAC audio file - Size26271258 - Total Time1094006 - Track Number1 - Track Count6 - Date Modified2006-07-30T15:58:46Z - Date Added2009-10-03T14:54:58Z - Bit Rate192 - Sample Rate44100 - Normalization772 - Artwork Count1 - Persistent ID193D2C54EAEFBA24 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Peter%20Ilyich%20Tchaikovsky/Best%20Of%20The%20Classics%20-%20Peter%20Iljitsch%20Tchaikovsky/01%20Romeo%20and%20Juliet.m4a - File Folder Count4 - Library Folder Count1 - - 3170 - - Track ID3170 - NameConcerto for Piano and Orchestra No. 1in B flat minor op. 23 - ArtistPeter Ilyich Tchaikovsky - AlbumBest Of The Classics - Peter Iljitsch Tchaikovsky - GenreClassical - KindAAC audio file - Size29356569 - Total Time1221019 - Track Number2 - Track Count6 - Date Modified2006-07-30T15:58:48Z - Date Added2009-10-03T14:54:58Z - Bit Rate192 - Sample Rate44100 - Skip Count1 - Skip Date2013-07-25T04:13:01Z - Normalization910 - Artwork Count1 - Persistent ID05416AFE80D3FCF4 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Peter%20Ilyich%20Tchaikovsky/Best%20Of%20The%20Classics%20-%20Peter%20Iljitsch%20Tchaikovsky/02%20Concerto%20for%20Piano%20and%20Orchestra%20No.%201in%20B%20flat%20minor%20op.%2023.m4a - File Folder Count4 - Library Folder Count1 - - 3172 - - Track ID3172 - NameNutcracker Suite op. 20a - ArtistPeter Ilyich Tchaikovsky - AlbumBest Of The Classics - Peter Iljitsch Tchaikovsky - GenreClassical - KindAAC audio file - Size10265830 - Total Time431007 - Track Number3 - Track Count6 - Date Modified2006-07-30T15:58:48Z - Date Added2009-10-03T14:54:58Z - Bit Rate192 - Sample Rate44100 - Normalization839 - Artwork Count1 - Persistent ID49BD201732A0267A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Peter%20Ilyich%20Tchaikovsky/Best%20Of%20The%20Classics%20-%20Peter%20Iljitsch%20Tchaikovsky/03%20Nutcracker%20Suite%20op.%2020a.m4a - File Folder Count4 - Library Folder Count1 - - 3174 - - Track ID3174 - NameChants sans paroles/ Song without words - ArtistPeter Ilyich Tchaikovsky - AlbumBest Of The Classics - Peter Iljitsch Tchaikovsky - GenreClassical - KindAAC audio file - Size3288748 - Total Time140014 - Track Number4 - Track Count6 - Date Modified2006-07-30T15:58:48Z - Date Added2009-10-03T14:54:58Z - Bit Rate192 - Sample Rate44100 - Normalization171 - Artwork Count1 - Persistent ID445837A8CA9A8605 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Peter%20Ilyich%20Tchaikovsky/Best%20Of%20The%20Classics%20-%20Peter%20Iljitsch%20Tchaikovsky/04%20Chants%20sans%20paroles_%20Song%20without%20words.m4a - File Folder Count4 - Library Folder Count1 - - 3176 - - Track ID3176 - NameSerenade for String Orchestra in C major op. 48 - ArtistPeter Ilyich Tchaikovsky - AlbumBest Of The Classics - Peter Iljitsch Tchaikovsky - GenreClassical - KindAAC audio file - Size5609024 - Total Time237004 - Track Number5 - Track Count6 - Date Modified2006-07-30T15:58:48Z - Date Added2009-10-03T14:54:59Z - Bit Rate192 - Sample Rate44100 - Normalization336 - Artwork Count1 - Persistent ID9077C01406B97E91 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Peter%20Ilyich%20Tchaikovsky/Best%20Of%20The%20Classics%20-%20Peter%20Iljitsch%20Tchaikovsky/05%20Serenade%20for%20String%20Orchestra%20in%20C%20major%20op.%2048.m4a - File Folder Count4 - Library Folder Count1 - - 3178 - - Track ID3178 - NameSymphony No. 6 in B minor op. 74 "Pathetique" - ArtistPeter Ilyich Tchaikovsky - AlbumBest Of The Classics - Peter Iljitsch Tchaikovsky - GenreClassical - KindAAC audio file - Size13270144 - Total Time547850 - Track Number6 - Track Count6 - Date Modified2006-07-30T15:58:48Z - Date Added2009-10-03T14:54:59Z - Bit Rate192 - Sample Rate44100 - Normalization773 - Artwork Count1 - Persistent ID9C4C72AC50D9148C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Peter%20Ilyich%20Tchaikovsky/Best%20Of%20The%20Classics%20-%20Peter%20Iljitsch%20Tchaikovsky/06%20Symphony%20No.%206%20in%20B%20minor%20op.%2074%20_Pathetique_.m4a - File Folder Count4 - Library Folder Count1 - - 3180 - - Track ID3180 - NameThe Boy In The Bubble - ArtistPaul Simon - ComposerForere Motloheloa - AlbumGraceland - GenrePop - KindAAC audio file - Size7742925 - Total Time240733 - Disc Number1 - Disc Count1 - Track Number1 - Track Count11 - Year1986 - Date Modified2008-10-13T13:31:13Z - Date Added2009-10-03T14:54:59Z - Bit Rate256 - Sample Rate44100 - Normalization1374 - Artwork Count1 - Sort NameBoy In The Bubble - Persistent ID6AEE83D035717A54 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Paul%20Simon/Graceland/01%20The%20Boy%20In%20The%20Bubble.m4a - File Folder Count4 - Library Folder Count1 - - 3182 - - Track ID3182 - NameGraceland - ArtistPaul Simon - ComposerJoseph Shabalala - AlbumGraceland - GenrePop - KindAAC audio file - Size9276610 - Total Time292213 - Disc Number1 - Disc Count1 - Track Number2 - Track Count11 - Year1986 - Date Modified2008-10-13T13:31:34Z - Date Added2009-10-03T14:54:59Z - Bit Rate256 - Sample Rate44100 - Normalization1256 - Artwork Count1 - Persistent IDBE2419165511DED4 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Paul%20Simon/Graceland/02%20Graceland.m4a - File Folder Count4 - Library Folder Count1 - - 3184 - - Track ID3184 - NameI Know What I Know - ArtistPaul Simon - ComposerGeneral M.D. Shirinda - AlbumGraceland - GenrePop - KindAAC audio file - Size6341144 - Total Time194666 - Disc Number1 - Disc Count1 - Track Number3 - Track Count11 - Year1986 - Date Modified2008-10-11T10:04:31Z - Date Added2009-10-03T14:54:59Z - Bit Rate256 - Sample Rate44100 - Normalization1825 - Artwork Count1 - Persistent ID8166FB306EA927FE - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Paul%20Simon/Graceland/03%20I%20Know%20What%20I%20Know.m4a - File Folder Count4 - Library Folder Count1 - - 3186 - - Track ID3186 - NameGumboots - ArtistPaul Simon - ComposerLulu Masilela/Johnjon Mkhalali - AlbumGraceland - GenrePop - KindAAC audio file - Size5418690 - Total Time166173 - Disc Number1 - Disc Count1 - Track Number4 - Track Count11 - Year1986 - Date Modified2008-10-11T10:04:31Z - Date Added2009-10-03T14:54:59Z - Bit Rate256 - Sample Rate44100 - Normalization2943 - Artwork Count1 - Persistent ID88EB69C61A4A796B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Paul%20Simon/Graceland/04%20Gumboots.m4a - File Folder Count4 - Library Folder Count1 - - 3188 - - Track ID3188 - NameDiamonds On The Soles Of Her Shoes - ArtistPaul Simon - ComposerJoseph Shabalala - AlbumGraceland - GenrePop - KindAAC audio file - Size11356899 - Total Time349186 - Disc Number1 - Disc Count1 - Track Number5 - Track Count11 - Year1986 - Date Modified2008-10-11T10:17:19Z - Date Added2009-10-03T14:54:59Z - Bit Rate256 - Sample Rate44100 - Play Count2 - Play Date3484471136 - Play Date UTC2014-06-01T07:08:56Z - Normalization1256 - Artwork Count1 - Persistent IDBDCDDBC9E7A8696C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Paul%20Simon/Graceland/05%20Diamonds%20On%20The%20Soles%20Of%20Her%20Shoes.m4a - File Folder Count4 - Library Folder Count1 - - 3190 - - Track ID3190 - NameYou Can Call Me Al - ArtistPaul Simon - ComposerJoseph Shabalala - AlbumGraceland - GenrePop - KindAAC audio file - Size9176573 - Total Time281760 - Disc Number1 - Disc Count1 - Track Number6 - Track Count11 - Year1986 - Date Modified2008-10-11T13:27:49Z - Date Added2009-10-03T14:55:00Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3427521715 - Play Date UTC2012-08-11T03:51:55Z - Skip Count1 - Skip Date2014-06-01T07:09:09Z - Normalization1256 - Artwork Count1 - Persistent ID81BDD17CC2E1952F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Paul%20Simon/Graceland/06%20You%20Can%20Call%20Me%20Al.m4a - File Folder Count4 - Library Folder Count1 - - 3192 - - Track ID3192 - NameUnder African Skies - ArtistPaul Simon - ComposerJoseph Shabalala - AlbumGraceland - GenrePop - KindAAC audio file - Size7087844 - Total Time218586 - Disc Number1 - Disc Count1 - Track Number7 - Track Count11 - Year1986 - Date Modified2008-10-11T10:04:29Z - Date Added2009-10-03T14:55:00Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3377932440 - Play Date UTC2011-01-15T05:04:00Z - Normalization1256 - Artwork Count1 - Persistent ID335A2EF0D38E8128 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Paul%20Simon/Graceland/07%20Under%20African%20Skies.m4a - File Folder Count4 - Library Folder Count1 - - 3194 - - Track ID3194 - NameHomeless - ArtistPaul Simon - ComposerJoseph Shabalala - AlbumGraceland - GenrePop - KindAAC audio file - Size7474386 - Total Time229106 - Disc Number1 - Disc Count1 - Track Number8 - Track Count11 - Year1986 - Date Modified2008-10-11T10:04:28Z - Date Added2009-10-03T14:55:00Z - Bit Rate256 - Sample Rate44100 - Normalization1256 - Artwork Count1 - Persistent IDB07AD040B203FBE8 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Paul%20Simon/Graceland/08%20Homeless.m4a - File Folder Count4 - Library Folder Count1 - - 3196 - - Track ID3196 - NameCrazy Love, Vol. II - ArtistPaul Simon - ComposerJoseph Shabalala - AlbumGraceland - GenrePop - KindAAC audio file - Size8501592 - Total Time260373 - Disc Number1 - Disc Count1 - Track Number9 - Track Count11 - Year1986 - Date Modified2008-10-11T10:04:27Z - Date Added2009-10-03T14:55:00Z - Bit Rate256 - Sample Rate44100 - Normalization1256 - Artwork Count1 - Persistent ID7804E944425B7EC2 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Paul%20Simon/Graceland/09%20Crazy%20Love,%20Vol.%20II.m4a - File Folder Count4 - Library Folder Count1 - - 3198 - - Track ID3198 - NameThat Was Your Mother - ArtistPaul Simon - ComposerJoseph Shabalala - AlbumGraceland - GenrePop - KindAAC audio file - Size5681424 - Total Time174506 - Disc Number1 - Disc Count1 - Track Number10 - Track Count11 - Year1986 - Date Modified2008-10-11T10:04:27Z - Date Added2009-10-03T14:55:00Z - Bit Rate256 - Sample Rate44100 - Normalization1499 - Artwork Count1 - Persistent ID57903275A4FC794B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Paul%20Simon/Graceland/10%20That%20Was%20Your%20Mother.m4a - File Folder Count4 - Library Folder Count1 - - 3200 - - Track ID3200 - NameAll Around The World Or The Myth Of Fingerprints - ArtistPaul Simon - ComposerJoseph Shabalala - AlbumGraceland - GenrePop - KindAAC audio file - Size6430491 - Total Time194960 - Disc Number1 - Disc Count1 - Track Number11 - Track Count11 - Year1986 - Date Modified2008-10-11T10:04:26Z - Date Added2009-10-03T14:55:00Z - Bit Rate256 - Sample Rate44100 - Normalization1448 - Artwork Count1 - Persistent ID33CC69824E845417 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Paul%20Simon/Graceland/11%20All%20Around%20The%20World%20Or%20The%20Myth%20Of%20Fingerprints.m4a - File Folder Count4 - Library Folder Count1 - - 3202 - - Track ID3202 - NameSan Lorenzo - ArtistPat Metheny - ComposerLyle Mays - AlbumPat Metheny Group - GenreJazz - KindAAC audio file - Size19964913 - Total Time616226 - Disc Number1 - Disc Count1 - Track Number1 - Track Count6 - Year1978 - Date Modified2008-11-04T13:27:35Z - Date Added2009-10-03T14:55:02Z - Bit Rate256 - Sample Rate44100 - Normalization908 - Artwork Count1 - Persistent IDF6F0090FC530D271 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pat%20Metheny/Pat%20Metheny%20Group/01%20San%20Lorenzo.m4a - File Folder Count4 - Library Folder Count1 - - 3204 - - Track ID3204 - NamePhase Dance - ArtistPat Metheny - ComposerLyle Mays - AlbumPat Metheny Group - GenreJazz - KindAAC audio file - Size16353412 - Total Time505266 - Disc Number1 - Disc Count1 - Track Number2 - Track Count6 - Year1978 - Date Modified2008-11-04T13:27:34Z - Date Added2009-10-03T14:55:02Z - Bit Rate256 - Sample Rate44100 - Normalization891 - Artwork Count1 - Persistent ID5B65B86328EA5E71 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pat%20Metheny/Pat%20Metheny%20Group/02%20Phase%20Dance.m4a - File Folder Count4 - Library Folder Count1 - - 3206 - - Track ID3206 - NameJaco - ArtistPat Metheny - ComposerPat Metheny - AlbumPat Metheny Group - GenreJazz - KindAAC audio file - Size11031503 - Total Time340600 - Disc Number1 - Disc Count1 - Track Number3 - Track Count6 - Year1978 - Date Modified2008-11-04T13:27:33Z - Date Added2009-10-03T14:55:02Z - Bit Rate256 - Sample Rate44100 - Normalization887 - Artwork Count1 - Persistent ID2D2F363E6EE5DA47 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pat%20Metheny/Pat%20Metheny%20Group/03%20Jaco.m4a - File Folder Count4 - Library Folder Count1 - - 3208 - - Track ID3208 - NameAprilwind - ArtistPat Metheny - ComposerPat Metheny - AlbumPat Metheny Group - GenreJazz - KindAAC audio file - Size4158990 - Total Time129173 - Disc Number1 - Disc Count1 - Track Number4 - Track Count6 - Year1978 - Date Modified2008-11-04T13:27:33Z - Date Added2009-10-03T14:55:03Z - Bit Rate256 - Sample Rate44100 - Normalization98 - Artwork Count1 - Persistent IDFD61D73236DE15A2 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pat%20Metheny/Pat%20Metheny%20Group/04%20Aprilwind.m4a - File Folder Count4 - Library Folder Count1 - - 3210 - - Track ID3210 - NameApril Joy - ArtistPat Metheny - ComposerPat Metheny - AlbumPat Metheny Group - GenreJazz - KindAAC audio file - Size16005102 - Total Time495026 - Disc Number1 - Disc Count1 - Track Number5 - Track Count6 - Year1978 - Date Modified2008-11-04T13:27:32Z - Date Added2009-10-03T14:55:03Z - Bit Rate256 - Sample Rate44100 - Normalization832 - Artwork Count1 - Persistent ID786DC23A9453B8FF - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pat%20Metheny/Pat%20Metheny%20Group/05%20April%20Joy.m4a - File Folder Count4 - Library Folder Count1 - - 3212 - - Track ID3212 - NameLone Jack - ArtistPat Metheny - ComposerLyle Mays - AlbumPat Metheny Group - GenreJazz - KindAAC audio file - Size13099791 - Total Time402866 - Disc Number1 - Disc Count1 - Track Number6 - Track Count6 - Year1978 - Date Modified2008-11-04T13:27:31Z - Date Added2009-10-03T14:55:03Z - Bit Rate256 - Sample Rate44100 - Normalization754 - Artwork Count1 - Persistent ID6CF902A8334BBA6E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pat%20Metheny/Pat%20Metheny%20Group/06%20Lone%20Jack.m4a - File Folder Count4 - Library Folder Count1 - - 3214 - - Track ID3214 - NameVellai Thamarai (Raga: Bhimplas Tala: Adi) - ArtistP. Unnikrishnan - ComposerBharathiar - AlbumBharathiar Songs - GenreCarnatic - KindAAC audio file - Size6440247 - Total Time265495 - Track Number1 - Track Count11 - Date Modified2007-12-14T03:29:50Z - Date Added2009-10-03T14:55:05Z - Bit Rate192 - Sample Rate44100 - CommentsRaga: Bhimplas Tala: Adi - Play Count3 - Play Date3440998929 - Play Date UTC2013-01-14T03:32:09Z - Normalization1259 - Artwork Count1 - Persistent IDC37F68AB1A40F3F2 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/P.%20Unnikrishnan/Bharathiar%20Songs/01%20Vellai%20Thamarai%20(Raga_%20Bhimplas%20Tala_%20Adi).m4a - File Folder Count4 - Library Folder Count1 - - 3216 - - Track ID3216 - NameVaruvai Varuvai - ArtistP. Unnikrishnan - AlbumBharathiar Songs - GenreCarnatic - KindAAC audio file - Size7135383 - Total Time294241 - Track Number2 - Track Count11 - Date Modified2007-12-02T14:53:12Z - Date Added2009-10-03T14:55:05Z - Bit Rate192 - Sample Rate44100 - CommentsRaga: Ragamalika Tala: Adi - Play Count2 - Play Date3440999223 - Play Date UTC2013-01-14T03:37:03Z - Normalization1175 - Artwork Count1 - Persistent ID67092D3AD57E49BF - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/P.%20Unnikrishnan/Bharathiar%20Songs/02%20Varuvai%20Varuvai.m4a - File Folder Count4 - Library Folder Count1 - - 3218 - - Track ID3218 - NameTheerthakaraiyinile - ArtistP. Unnikrishnan - ComposerBharathiar - AlbumBharathiar Songs - GenreCarnatic - KindAAC audio file - Size10399043 - Total Time429103 - Track Number3 - Track Count11 - Date Modified2007-12-13T07:36:05Z - Date Added2009-10-03T14:55:05Z - Bit Rate192 - Sample Rate44100 - CommentsRaga: Ragamalika Tala: Tisram - Play Count2 - Play Date3440999652 - Play Date UTC2013-01-14T03:44:12Z - Normalization1259 - Artwork Count1 - Persistent IDC32F2426E16D8533 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/P.%20Unnikrishnan/Bharathiar%20Songs/03%20Theerthakaraiyinile.m4a - File Folder Count4 - Library Folder Count1 - - 3220 - - Track ID3220 - NamePaarukulle Nalla (Raga: Desh Tala: Adi) - ArtistP. Unnikrishnan - ComposerBharathiar - AlbumBharathiar Songs - GenreCarnatic - KindAAC audio file - Size6957600 - Total Time286881 - Track Number4 - Track Count11 - Date Modified2007-12-14T03:36:54Z - Date Added2009-10-03T14:55:05Z - Bit Rate192 - Sample Rate44100 - CommentsRaga: Desh Tala: Adi - Play Count2 - Play Date3440999939 - Play Date UTC2013-01-14T03:48:59Z - Normalization1259 - Artwork Count1 - Persistent ID531E848E1E103F28 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/P.%20Unnikrishnan/Bharathiar%20Songs/04%20Paarukulle%20Nalla%20(Raga_%20Desh%20Tala_%20Adi).m4a - File Folder Count4 - Library Folder Count1 - - 3222 - - Track ID3222 - NameMuruga Muruga Ragam:Ragamalika - Adi - ArtistP. Unnikrishnan - AlbumBharathiar Songs - GenreCarnatic - KindAAC audio file - Size10700868 - Total Time441642 - Track Number5 - Track Count11 - Date Modified2007-12-03T03:10:03Z - Date Added2009-10-03T14:55:05Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3441000381 - Play Date UTC2013-01-14T03:56:21Z - Normalization1152 - Artwork Count1 - Persistent IDC91A1A2370BC95AE - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/P.%20Unnikrishnan/Bharathiar%20Songs/05%20Muruga%20Muruga%20Ragam_Ragamalika%20-%20Adi.m4a - File Folder Count4 - Library Folder Count1 - - 3224 - - Track ID3224 - NameEnthaiyum Thayum (Raga: Ragamalika Tala: Adi) - ArtistP. Unnikrishnan - ComposerBharathiar - AlbumBharathiar Songs - GenreCarnatic - KindAAC audio file - Size7928480 - Total Time327005 - Track Number6 - Track Count11 - Date Modified2007-12-14T03:37:04Z - Date Added2009-10-03T14:55:05Z - Bit Rate192 - Sample Rate44100 - CommentsRaga: Ragamalika Tala: Adi - Play Count1 - Play Date3391442796 - Play Date UTC2011-06-20T13:56:36Z - Normalization1053 - Artwork Count1 - Persistent ID21B5AD8156908AB1 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/P.%20Unnikrishnan/Bharathiar%20Songs/06%20Enthaiyum%20Thayum%20(Raga_%20Ragamalika%20Tala_%20Adi).m4a - File Folder Count4 - Library Folder Count1 - - 3226 - - Track ID3226 - NameKakkai Siraginile -Kalyana Vasantham - Adi - ArtistP. Unnikrishnan - AlbumBharathiar Songs - GenreCarnatic - KindAAC audio file - Size5367962 - Total Time220866 - Track Number7 - Track Count11 - Date Modified2007-12-03T03:10:03Z - Date Added2009-10-03T14:55:05Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3391443016 - Play Date UTC2011-06-20T14:00:16Z - Normalization1307 - Artwork Count1 - Persistent IDA757A34731E442FC - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/P.%20Unnikrishnan/Bharathiar%20Songs/07%20Kakkai%20Siraginile%20-Kalyana%20Vasantham%20-%20Adi.m4a - File Folder Count4 - Library Folder Count1 - - 3228 - - Track ID3228 - NameKayile Pullipathenne - Mand Bahar - Adi - ArtistP. Unnikrishnan - AlbumBharathiar Songs - GenreCarnatic - KindAAC audio file - Size6651218 - Total Time274295 - Track Number8 - Track Count11 - Date Modified2007-12-03T03:10:05Z - Date Added2009-10-03T14:55:06Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3391443291 - Play Date UTC2011-06-20T14:04:51Z - Normalization1180 - Artwork Count1 - Persistent ID826787BD76FE0521 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/P.%20Unnikrishnan/Bharathiar%20Songs/08%20Kayile%20Pullipathenne%20-%20Mand%20Bahar%20-%20Adi.m4a - File Folder Count4 - Library Folder Count1 - - 3230 - - Track ID3230 - NameSollavallayo - Ragamalika - Rupakam - ArtistP. Unnikrishnan - AlbumBharathiar Songs - GenreCarnatic - KindAAC audio file - Size7003003 - Total Time288785 - Track Number9 - Track Count11 - Date Modified2007-12-03T03:10:05Z - Date Added2009-10-03T14:55:06Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3391443580 - Play Date UTC2011-06-20T14:09:40Z - Normalization1080 - Artwork Count1 - Persistent IDCE468BEAA1C7A5E8 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/P.%20Unnikrishnan/Bharathiar%20Songs/09%20Sollavallayo%20-%20Ragamalika%20-%20Rupakam.m4a - File Folder Count4 - Library Folder Count1 - - 3232 - - Track ID3232 - NameKani Nilam - Kosalam - Tisram - ArtistP. Unnikrishnan - AlbumBharathiar Songs - GenreCarnatic - KindAAC audio file - Size8299211 - Total Time342446 - Track Number10 - Track Count11 - Date Modified2007-12-03T03:10:05Z - Date Added2009-10-03T14:55:06Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3391443922 - Play Date UTC2011-06-20T14:15:22Z - Normalization1180 - Artwork Count1 - Persistent ID3FA23C3930BF50C9 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/P.%20Unnikrishnan/Bharathiar%20Songs/10%20Kani%20Nilam%20-%20Kosalam%20-%20Tisram.m4a - File Folder Count4 - Library Folder Count1 - - 3234 - - Track ID3234 - NameNinnai Charanadaiden - Punnagavaraii - Adi - ArtistP. Unnikrishnan - AlbumBharathiar Songs - GenreCarnatic - KindAAC audio file - Size5469149 - Total Time223537 - Track Number11 - Track Count11 - Date Modified2007-12-03T03:10:05Z - Date Added2009-10-03T14:55:06Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3391444145 - Play Date UTC2011-06-20T14:19:05Z - Normalization1153 - Artwork Count1 - Persistent IDF1E48031D3674A83 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/P.%20Unnikrishnan/Bharathiar%20Songs/11%20Ninnai%20Charanadaiden%20-%20Punnagavaraii%20-%20Adi.m4a - File Folder Count4 - Library Folder Count1 - - 3236 - - Track ID3236 - NameBrochevarevarura - ArtistP Unnikrishnan - ComposerMysore Vasudevacharya - AlbumCarnatic Classical Vocal - GenreCarnatic - KindAAC audio file - Size13378930 - Total Time552354 - Track Number1 - Track Count10 - Date Modified2007-12-02T14:49:27Z - Date Added2009-10-03T14:55:06Z - Bit Rate192 - Sample Rate44100 - CommentsRaga: Kamas Tala: Adi - Play Count5 - Play Date3439533100 - Play Date UTC2012-12-28T04:21:40Z - Normalization1070 - Artwork Count1 - Persistent ID788ACA7505176D94 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/P%20Unnikrishnan/Carnatic%20Classical%20Vocal/01%20Brochevarevarura.m4a - File Folder Count4 - Library Folder Count1 - - 3238 - - Track ID3238 - NamePaluke Bangarumayana (Raga: Anandabairavi Tala: Adi) - ArtistP Unnikrishnan - ComposerBadrachala Ramadas - AlbumCarnatic Classical Vocal - GenreCarnatic - KindAAC audio file - Size6514052 - Total Time268676 - Track Number2 - Track Count10 - Date Modified2007-12-14T03:28:14Z - Date Added2009-10-03T14:55:06Z - Bit Rate192 - Sample Rate44100 - CommentsRaga: Anandabairavi Tala: Adi - Play Count4 - Play Date3439533369 - Play Date UTC2012-12-28T04:26:09Z - Normalization1066 - Artwork Count1 - Persistent ID1F39D40A35233DEA - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/P%20Unnikrishnan/Carnatic%20Classical%20Vocal/02%20Paluke%20Bangarumayana%20(Raga_%20Anandabairavi%20Tala_%20Adi).m4a - File Folder Count4 - Library Folder Count1 - - 3240 - - Track ID3240 - NameMamava Raghu Rama - ArtistP Unnikrishnan - ComposerThyagaraja - AlbumCarnatic Classical Vocal - GenreCarnatic - KindAAC audio file - Size6398023 - Total Time263870 - Track Number3 - Track Count10 - Date Modified2007-12-02T15:04:47Z - Date Added2009-10-03T14:55:06Z - Bit Rate192 - Sample Rate44100 - CommentsRaga: Saranga Tala: Roopaka - Play Count3 - Play Date3423231012 - Play Date UTC2012-06-22T12:00:12Z - Normalization932 - Artwork Count1 - Persistent ID7A2760FE2541676C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/P%20Unnikrishnan/Carnatic%20Classical%20Vocal/03%20Mamava%20Raghu%20Rama.m4a - File Folder Count4 - Library Folder Count1 - - 3242 - - Track ID3242 - NameMakalera - ArtistP Unnikrishnan - ComposerThyagaraja - AlbumCarnatic Classical Vocal - GenreCarnatic - KindAAC audio file - Size8223545 - Total Time339311 - Track Number4 - Track Count10 - Date Modified2007-12-02T15:05:33Z - Date Added2009-10-03T14:55:06Z - Bit Rate192 - Sample Rate44100 - CommentsRaga: Ravichandrika Tala: Adi - Play Count2 - Play Date3423231351 - Play Date UTC2012-06-22T12:05:51Z - Normalization780 - Artwork Count1 - Persistent IDD36D51A06788E71C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/P%20Unnikrishnan/Carnatic%20Classical%20Vocal/04%20Makalera.m4a - File Folder Count4 - Library Folder Count1 - - 3244 - - Track ID3244 - NameKelathi Mama Hridaye (Raga: Bhageswari Tala: Adi) - ArtistP Unnikrishnan - ComposerThyagaraja - AlbumCarnatic Classical Vocal - GenreCarnatic - KindAAC audio file - Size6962848 - Total Time287206 - Track Number5 - Track Count10 - Date Modified2007-12-14T03:29:04Z - Date Added2009-10-03T14:55:07Z - Bit Rate192 - Sample Rate44100 - CommentsRaga: Bhageswari Tala: Adi - Play Count2 - Play Date3423231638 - Play Date UTC2012-06-22T12:10:38Z - Normalization1017 - Artwork Count1 - Persistent ID86E7CE2352EA314B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/P%20Unnikrishnan/Carnatic%20Classical%20Vocal/05%20Kelathi%20Mama%20Hridaye%20(Raga_%20Bhageswari%20Tala_%20Adi).m4a - File Folder Count4 - Library Folder Count1 - - 3246 - - Track ID3246 - NameVandanamu - ArtistP Unnikrishnan - ComposerThyagaraja - AlbumCarnatic Classical Vocal - GenreCarnatic - KindAAC audio file - Size8192055 - Total Time338011 - Track Number6 - Track Count10 - Date Modified2007-12-02T14:56:02Z - Date Added2009-10-03T14:55:07Z - Bit Rate192 - Sample Rate44100 - CommentsRaga: Sahana Tala: Adi - Play Count2 - Play Date3423231976 - Play Date UTC2012-06-22T12:16:16Z - Normalization579 - Artwork Count1 - Persistent IDD610317F88BBC8B1 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/P%20Unnikrishnan/Carnatic%20Classical%20Vocal/06%20Vandanamu.m4a - File Folder Count4 - Library Folder Count1 - - 3248 - - Track ID3248 - NameLavanya Rama (Raga Poornashadjam Tala: Roopaka) - ArtistP Unnikrishnan - ComposerThyagaraja - AlbumCarnatic Classical Vocal - GenreCarnatic - KindAAC audio file - Size7055805 - Total Time291060 - Track Number7 - Track Count10 - Date Modified2007-12-14T03:25:46Z - Date Added2009-10-03T14:55:07Z - Bit Rate192 - Sample Rate44100 - CommentsRaga Poornashadjam Tala: Roopaka - Play Count2 - Play Date3423232267 - Play Date UTC2012-06-22T12:21:07Z - Normalization695 - Artwork Count1 - Persistent ID895AC56063505A84 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/P%20Unnikrishnan/Carnatic%20Classical%20Vocal/07%20Lavanya%20Rama%20(Raga%20Poornashadjam%20Tala_%20Roopaka).m4a - File Folder Count4 - Library Folder Count1 - - 3250 - - Track ID3250 - NamePibare Rama Rasam (Raga: Ahinabhairava Tala: Adi) - ArtistP Unnikrishnan - ComposerSadasiva Brahmendrar - AlbumCarnatic Classical Vocal - GenreCarnatic - KindAAC audio file - Size7935824 - Total Time327423 - Track Number8 - Track Count10 - Date Modified2007-12-14T03:26:12Z - Date Added2009-10-03T14:55:07Z - Bit Rate192 - Sample Rate44100 - CommentsRaga: Ahinabhairava Tala: Adi - Play Count2 - Play Date3423232594 - Play Date UTC2012-06-22T12:26:34Z - Normalization1123 - Artwork Count1 - Persistent IDDCE0A448EFD96B98 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/P%20Unnikrishnan/Carnatic%20Classical%20Vocal/08%20Pibare%20Rama%20Rasam%20(Raga_%20Ahinabhairava%20Tala_%20Adi).m4a - File Folder Count4 - Library Folder Count1 - - 3252 - - Track ID3252 - NameBhajare (Raga: Abheri Tala: Adi) - ArtistP Unnikrishnan - ComposerMysore Vasudevacharya - AlbumCarnatic Classical Vocal - GenreCarnatic - KindAAC audio file - Size12417130 - Total Time512602 - Track Number9 - Track Count10 - Date Modified2007-12-14T03:26:03Z - Date Added2009-10-03T14:55:07Z - Bit Rate192 - Sample Rate44100 - CommentsRaga: Abheri Tala: Adi - Normalization1128 - Artwork Count1 - Persistent IDC97E6288F82F33F7 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/P%20Unnikrishnan/Carnatic%20Classical%20Vocal/09%20Bhajare%20(Raga_%20Abheri%20Tala_%20Adi).m4a - File Folder Count4 - Library Folder Count1 - - 3254 - - Track ID3254 - NameBrova Barma (Raga: Bahudari Tala: Adi) - ArtistP Unnikrishnan - ComposerThyagaraja - AlbumCarnatic Classical Vocal - GenreCarnatic - KindAAC audio file - Size7878091 - Total Time325147 - Track Number10 - Track Count10 - Date Modified2007-12-14T03:28:48Z - Date Added2009-10-03T14:55:07Z - Bit Rate192 - Sample Rate44100 - CommentsRaga: Bahudari Tala: Adi - Normalization1461 - Artwork Count1 - Persistent IDA43507A3DA680CF4 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/P%20Unnikrishnan/Carnatic%20Classical%20Vocal/10%20Brova%20Barma%20(Raga_%20Bahudari%20Tala_%20Adi).m4a - File Folder Count4 - Library Folder Count1 - - 3256 - - Track ID3256 - NameLonely Woman - ArtistOrnette Coleman - ComposerOrnette Coleman - AlbumThe Shape Of Jazz To Come - GenreJazz - KindAAC audio file - Size7228642 - Total Time302183 - Disc Number1 - Disc Count1 - Track Number1 - Track Count6 - Year1959 - BPM192 - Date Modified2006-07-28T03:55:12Z - Date Added2009-10-03T14:55:07Z - Bit Rate192 - Sample Rate44100 - Normalization1272 - Artwork Count1 - Sort AlbumShape Of Jazz To Come - Persistent ID9D2E624DC27D713D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ornette%20Coleman/The%20Shape%20Of%20Jazz%20To%20Come/01%20Lonely%20Woman.m4a - File Folder Count4 - Library Folder Count1 - - 3258 - - Track ID3258 - NameEventually - ArtistOrnette Coleman - ComposerOrnette Coleman - AlbumThe Shape Of Jazz To Come - GenreJazz - KindAAC audio file - Size6291106 - Total Time262894 - Disc Number1 - Disc Count1 - Track Number2 - Track Count6 - Year1959 - BPM192 - Date Modified2006-07-28T03:55:12Z - Date Added2009-10-03T14:55:08Z - Bit Rate192 - Sample Rate44100 - Normalization1043 - Artwork Count1 - Sort AlbumShape Of Jazz To Come - Persistent ID7C66DD550BCDAC3F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ornette%20Coleman/The%20Shape%20Of%20Jazz%20To%20Come/02%20Eventually.m4a - File Folder Count4 - Library Folder Count1 - - 3260 - - Track ID3260 - NamePeace - ArtistOrnette Coleman - ComposerOrnette Coleman - AlbumThe Shape Of Jazz To Come - GenreJazz - KindAAC audio file - Size13089818 - Total Time544854 - Disc Number1 - Disc Count1 - Track Number3 - Track Count6 - Year1959 - BPM192 - Date Modified2006-07-28T03:55:14Z - Date Added2009-10-03T14:55:08Z - Bit Rate192 - Sample Rate44100 - Normalization698 - Artwork Count1 - Sort AlbumShape Of Jazz To Come - Persistent ID9C84E46FF2BC4F96 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ornette%20Coleman/The%20Shape%20Of%20Jazz%20To%20Come/03%20Peace.m4a - File Folder Count4 - Library Folder Count1 - - 3262 - - Track ID3262 - NameFocus On Sanity - ArtistOrnette Coleman - ComposerOrnette Coleman - AlbumThe Shape Of Jazz To Come - GenreJazz - KindAAC audio file - Size9903627 - Total Time412431 - Disc Number1 - Disc Count1 - Track Number4 - Track Count6 - Year1959 - BPM192 - Date Modified2006-07-28T03:55:14Z - Date Added2009-10-03T14:55:08Z - Bit Rate192 - Sample Rate44100 - Normalization1041 - Artwork Count1 - Sort AlbumShape Of Jazz To Come - Persistent ID2FED64825D1CA450 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ornette%20Coleman/The%20Shape%20Of%20Jazz%20To%20Come/04%20Focus%20On%20Sanity.m4a - File Folder Count4 - Library Folder Count1 - - 3264 - - Track ID3264 - NameCongeniality - ArtistOrnette Coleman - ComposerOrnette Coleman - AlbumThe Shape Of Jazz To Come - GenreJazz - KindAAC audio file - Size9799937 - Total Time408414 - Disc Number1 - Disc Count1 - Track Number5 - Track Count6 - Year1959 - BPM192 - Date Modified2006-07-28T03:55:16Z - Date Added2009-10-03T14:55:08Z - Bit Rate192 - Sample Rate44100 - Normalization745 - Artwork Count1 - Sort AlbumShape Of Jazz To Come - Persistent IDFB7E4D9F05ACDFFC - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ornette%20Coleman/The%20Shape%20Of%20Jazz%20To%20Come/05%20Congeniality.m4a - File Folder Count4 - Library Folder Count1 - - 3266 - - Track ID3266 - NameChronology - ArtistOrnette Coleman - ComposerOrnette Coleman - AlbumThe Shape Of Jazz To Come - GenreJazz - KindAAC audio file - Size8811216 - Total Time363483 - Disc Number1 - Disc Count1 - Track Number6 - Track Count6 - Year1959 - BPM192 - Date Modified2006-07-28T03:55:16Z - Date Added2009-10-03T14:55:08Z - Bit Rate192 - Sample Rate44100 - Normalization1075 - Artwork Count1 - Sort AlbumShape Of Jazz To Come - Persistent IDCEFC08CC6C391726 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ornette%20Coleman/The%20Shape%20Of%20Jazz%20To%20Come/06%20Chronology.m4a - File Folder Count4 - Library Folder Count1 - - 3268 - - Track ID3268 - NameStolen Moments - ArtistOliver Nelson - ComposerOliver Nelson - AlbumThe Blues And The Abstract Truth - GenreJazz - KindAAC audio file - Size12722939 - Total Time526000 - Disc Number1 - Disc Count1 - Track Number1 - Track Count6 - Year1961 - Date Modified2006-08-08T03:10:06Z - Date Added2009-10-03T14:55:08Z - Bit Rate192 - Sample Rate44100 - Normalization1232 - Artwork Count1 - Sort AlbumBlues And The Abstract Truth - Persistent IDDE506C72DA81943A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Oliver%20Nelson/The%20Blues%20And%20The%20Abstract%20Truth/01%20Stolen%20Moments.m4a - File Folder Count4 - Library Folder Count1 - - 3270 - - Track ID3270 - NameHoe-Down - ArtistOliver Nelson - ComposerOliver Nelson - AlbumThe Blues And The Abstract Truth - GenreJazz - KindAAC audio file - Size6851512 - Total Time283142 - Disc Number1 - Disc Count1 - Track Number2 - Track Count6 - Year1961 - Date Modified2006-08-08T03:10:06Z - Date Added2009-10-03T14:55:08Z - Bit Rate192 - Sample Rate44100 - Normalization2477 - Artwork Count1 - Sort AlbumBlues And The Abstract Truth - Persistent ID4036490D9F65BF8A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Oliver%20Nelson/The%20Blues%20And%20The%20Abstract%20Truth/02%20Hoe-Down.m4a - File Folder Count4 - Library Folder Count1 - - 3272 - - Track ID3272 - NameCascades - ArtistOliver Nelson - ComposerOliver Nelson - AlbumThe Blues And The Abstract Truth - GenreJazz - KindAAC audio file - Size8021099 - Total Time331045 - Disc Number1 - Disc Count1 - Track Number3 - Track Count6 - Year1961 - Date Modified2006-08-08T03:10:06Z - Date Added2009-10-03T14:55:08Z - Bit Rate192 - Sample Rate44100 - Normalization2404 - Artwork Count1 - Sort AlbumBlues And The Abstract Truth - Persistent ID4E8FA4E52780B499 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Oliver%20Nelson/The%20Blues%20And%20The%20Abstract%20Truth/03%20Cascades.m4a - File Folder Count4 - Library Folder Count1 - - 3274 - - Track ID3274 - NameYearnin' - ArtistOliver Nelson - ComposerOliver Nelson - AlbumThe Blues And The Abstract Truth - GenreJazz - KindAAC audio file - Size9288620 - Total Time383777 - Disc Number1 - Disc Count1 - Track Number4 - Track Count6 - Year1961 - Date Modified2006-08-08T03:10:06Z - Date Added2009-10-03T14:55:09Z - Bit Rate192 - Sample Rate44100 - Normalization2515 - Artwork Count1 - Sort AlbumBlues And The Abstract Truth - Persistent IDA2FABF20D16D0144 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Oliver%20Nelson/The%20Blues%20And%20The%20Abstract%20Truth/04%20Yearnin'.m4a - File Folder Count4 - Library Folder Count1 - - 3276 - - Track ID3276 - NameButch And Butch - ArtistOliver Nelson - ComposerOliver Nelson - AlbumThe Blues And The Abstract Truth - GenreJazz - KindAAC audio file - Size6674857 - Total Time276594 - Disc Number1 - Disc Count1 - Track Number5 - Track Count6 - Year1961 - Date Modified2006-08-08T03:10:04Z - Date Added2009-10-03T14:55:09Z - Bit Rate192 - Sample Rate44100 - Normalization2543 - Artwork Count1 - Sort AlbumBlues And The Abstract Truth - Persistent IDE18348553966E041 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Oliver%20Nelson/The%20Blues%20And%20The%20Abstract%20Truth/05%20Butch%20And%20Butch.m4a - File Folder Count4 - Library Folder Count1 - - 3278 - - Track ID3278 - NameTeenie's Blues - ArtistOliver Nelson - ComposerOliver Nelson - AlbumThe Blues And The Abstract Truth - GenreJazz - KindAAC audio file - Size9552280 - Total Time393948 - Disc Number1 - Disc Count1 - Track Number6 - Track Count6 - Year1961 - Date Modified2006-08-08T03:10:04Z - Date Added2009-10-03T14:55:09Z - Bit Rate192 - Sample Rate44100 - Normalization2658 - Artwork Count1 - Sort AlbumBlues And The Abstract Truth - Persistent IDBB668F42CD230385 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Oliver%20Nelson/The%20Blues%20And%20The%20Abstract%20Truth/06%20Teenie's%20Blues.m4a - File Folder Count4 - Library Folder Count1 - - 3280 - - Track ID3280 - NameSunrise - ArtistNorah Jones - ComposerLee Alexander-Norah Jones - AlbumFeels Like Home - GenrePop - KindAAC audio file - Size4869271 - Total Time200642 - Disc Number1 - Disc Count1 - Track Number1 - Track Count13 - Year2004 - Date Modified2006-07-28T03:49:36Z - Date Added2009-10-03T14:55:09Z - Bit Rate192 - Sample Rate44100 - Play Count3 - Play Date3389631923 - Play Date UTC2011-05-30T14:55:23Z - Normalization1730 - Artwork Count1 - Persistent ID21695A7CC62D2619 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Norah%20Jones/Feels%20Like%20Home/01%20Sunrise.m4a - File Folder Count4 - Library Folder Count1 - - 3282 - - Track ID3282 - NameWhat Am I To You? - ArtistNorah Jones - ComposerNorah Jones - AlbumFeels Like Home - GenrePop - KindAAC audio file - Size5077499 - Total Time210023 - Disc Number1 - Disc Count1 - Track Number2 - Track Count13 - Year2004 - Date Modified2006-07-28T03:49:38Z - Date Added2009-10-03T14:55:09Z - Bit Rate192 - Sample Rate44100 - Play Count3 - Play Date3389632142 - Play Date UTC2011-05-30T14:59:02Z - Normalization2596 - Artwork Count1 - Persistent ID0939B2FB5B0EF273 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Norah%20Jones/Feels%20Like%20Home/02%20What%20Am%20I%20To%20You_.m4a - File Folder Count4 - Library Folder Count1 - - 3284 - - Track ID3284 - NameThose Sweet Words - ArtistNorah Jones - ComposerLee Alexander-Richard Juhan - AlbumFeels Like Home - GenrePop - KindAAC audio file - Size4903389 - Total Time202662 - Disc Number1 - Disc Count1 - Track Number3 - Track Count13 - Year2004 - Date Modified2006-07-28T03:49:38Z - Date Added2009-10-03T14:55:09Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3388425987 - Play Date UTC2011-05-16T15:56:27Z - Normalization2248 - Artwork Count1 - Persistent ID5338EBB9380FCAD4 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Norah%20Jones/Feels%20Like%20Home/03%20Those%20Sweet%20Words.m4a - File Folder Count4 - Library Folder Count1 - - 3286 - - Track ID3286 - NameCarnival Town - ArtistNorah Jones - ComposerNorah Jones-Lee Alexander - AlbumFeels Like Home - GenrePop - KindAAC audio file - Size4678870 - Total Time191981 - Disc Number1 - Disc Count1 - Track Number4 - Track Count13 - Year2004 - Date Modified2006-07-28T03:49:40Z - Date Added2009-10-03T14:55:09Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3388426179 - Play Date UTC2011-05-16T15:59:39Z - Normalization1138 - Artwork Count1 - Persistent IDC91400ABFAA81FB5 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Norah%20Jones/Feels%20Like%20Home/04%20Carnival%20Town.m4a - File Folder Count4 - Library Folder Count1 - - 3288 - - Track ID3288 - NameIn The Morning - ArtistNorah Jones - ComposerAdam Levy - AlbumFeels Like Home - GenrePop - KindAAC audio file - Size5972674 - Total Time247337 - Disc Number1 - Disc Count1 - Track Number5 - Track Count13 - Year2004 - Date Modified2006-07-28T03:49:42Z - Date Added2009-10-03T14:55:09Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3389718181 - Play Date UTC2011-05-31T14:53:01Z - Normalization1604 - Artwork Count1 - Persistent IDD60EB4ADCEC89F56 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Norah%20Jones/Feels%20Like%20Home/05%20In%20The%20Morning.m4a - File Folder Count4 - Library Folder Count1 - - 3290 - - Track ID3290 - NameBe Here To Love Me - ArtistNorah Jones - ComposerTownes Van Zandt - AlbumFeels Like Home - GenrePop - KindAAC audio file - Size5055021 - Total Time208885 - Disc Number1 - Disc Count1 - Track Number6 - Track Count13 - Year2004 - Date Modified2006-07-28T03:49:44Z - Date Added2009-10-03T14:55:10Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3388426642 - Play Date UTC2011-05-16T16:07:22Z - Normalization2505 - Artwork Count1 - Persistent ID29F593BA340CC2AE - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Norah%20Jones/Feels%20Like%20Home/06%20Be%20Here%20To%20Love%20Me.m4a - File Folder Count4 - Library Folder Count1 - - 3292 - - Track ID3292 - NameCreepin' In - ArtistNorah Jones - ComposerLee Alexander - AlbumFeels Like Home - GenrePop - KindAAC audio file - Size4391659 - Total Time183854 - Disc Number1 - Disc Count1 - Track Number7 - Track Count13 - Year2004 - Date Modified2006-07-28T03:49:44Z - Date Added2009-10-03T14:55:10Z - Bit Rate192 - Sample Rate44100 - Normalization2803 - Artwork Count1 - Persistent ID8678CFFC8AD3CEAA - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Norah%20Jones/Feels%20Like%20Home/07%20Creepin'%20In.m4a - File Folder Count4 - Library Folder Count1 - - 3294 - - Track ID3294 - NameToes - ArtistNorah Jones - ComposerLee Alexander-Norah Jones - AlbumFeels Like Home - GenrePop - KindAAC audio file - Size5506261 - Total Time226602 - Disc Number1 - Disc Count1 - Track Number8 - Track Count13 - Year2004 - Date Modified2006-07-28T03:49:46Z - Date Added2009-10-03T14:55:10Z - Bit Rate192 - Sample Rate44100 - Normalization1914 - Artwork Count1 - Persistent ID7CBE9435B935DF28 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Norah%20Jones/Feels%20Like%20Home/08%20Toes.m4a - File Folder Count4 - Library Folder Count1 - - 3296 - - Track ID3296 - NameHumble Me - ArtistNorah Jones - ComposerKevin Breit - AlbumFeels Like Home - GenrePop - KindAAC audio file - Size6676557 - Total Time276362 - Disc Number1 - Disc Count1 - Track Number9 - Track Count13 - Year2004 - Date Modified2006-07-28T03:49:46Z - Date Added2009-10-03T14:55:10Z - Bit Rate192 - Sample Rate44100 - Normalization1114 - Artwork Count1 - Persistent IDC19360AF0A5743B3 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Norah%20Jones/Feels%20Like%20Home/09%20Humble%20Me.m4a - File Folder Count4 - Library Folder Count1 - - 3298 - - Track ID3298 - NameAbove Ground - ArtistNorah Jones - ComposerAdrew Borger-Daru Oda - AlbumFeels Like Home - GenrePop - KindAAC audio file - Size5396406 - Total Time223862 - Disc Number1 - Disc Count1 - Track Number10 - Track Count13 - Year2004 - Date Modified2006-07-28T03:49:48Z - Date Added2009-10-03T14:55:10Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3338658831 - Play Date UTC2009-10-17T15:43:51Z - Normalization1875 - Artwork Count1 - Persistent ID05A6223691D8F879 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Norah%20Jones/Feels%20Like%20Home/10%20Above%20Ground.m4a - File Folder Count4 - Library Folder Count1 - - 3300 - - Track ID3300 - NameThe Long Way Home - ArtistNorah Jones - ComposerKathleen Brennan-Tom Waits - AlbumFeels Like Home - GenrePop - KindAAC audio file - Size4674665 - Total Time193235 - Disc Number1 - Disc Count1 - Track Number11 - Track Count13 - Year2004 - Date Modified2006-07-28T03:49:50Z - Date Added2009-10-03T14:55:10Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Sort NameLong Way Home - Persistent ID0DE010D15C57E92F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Norah%20Jones/Feels%20Like%20Home/11%20The%20Long%20Way%20Home.m4a - File Folder Count4 - Library Folder Count1 - - 3302 - - Track ID3302 - NameThe Prettiest Thing - ArtistNorah Jones - ComposerN. Jones-L. Alexander-R. Juhan - AlbumFeels Like Home - GenrePop - KindAAC audio file - Size5592828 - Total Time231803 - Disc Number1 - Disc Count1 - Track Number12 - Track Count13 - Year2004 - Date Modified2006-07-28T03:49:52Z - Date Added2009-10-03T14:55:10Z - Bit Rate192 - Sample Rate44100 - Normalization1393 - Artwork Count1 - Sort NamePrettiest Thing - Persistent IDF082508FB3135117 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Norah%20Jones/Feels%20Like%20Home/12%20The%20Prettiest%20Thing.m4a - File Folder Count4 - Library Folder Count1 - - 3304 - - Track ID3304 - NameDon't Miss You At All - ArtistNorah Jones - ComposerDuke Ellington - AlbumFeels Like Home - GenrePop - KindAAC audio file - Size4556768 - Total Time186942 - Disc Number1 - Disc Count1 - Track Number13 - Track Count13 - Year2004 - Date Modified2006-07-28T03:49:52Z - Date Added2009-10-03T14:55:10Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Persistent ID6E0CFD779C8FF4AA - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Norah%20Jones/Feels%20Like%20Home/13%20Don't%20Miss%20You%20At%20All.m4a - File Folder Count4 - Library Folder Count1 - - 3306 - - Track ID3306 - NameDon't Know Why - ArtistNorah Jones - ComposerJesse Harris - AlbumCome Away With Me - GenrePop - KindAAC audio file - Size4541105 - Total Time186152 - Disc Number1 - Disc Count1 - Track Number1 - Track Count14 - Year2002 - Date Modified2006-08-07T05:24:28Z - Date Added2009-10-03T14:55:11Z - Bit Rate192 - Sample Rate44100 - Play Count4 - Play Date3441651029 - Play Date UTC2013-01-21T16:40:29Z - Normalization1983 - Artwork Count1 - Persistent ID5689E1B7D789DB2A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Norah%20Jones/Come%20Away%20With%20Me/01%20Don't%20Know%20Why.m4a - File Folder Count4 - Library Folder Count1 - - 3308 - - Track ID3308 - NameSeven Years - ArtistNorah Jones - ComposerLee Alexander - AlbumCome Away With Me - GenrePop - KindAAC audio file - Size3541604 - Total Time145285 - Disc Number1 - Disc Count1 - Track Number2 - Track Count14 - Year2002 - Date Modified2006-08-07T05:24:28Z - Date Added2009-10-03T14:55:11Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3381677171 - Play Date UTC2011-02-27T13:16:11Z - Normalization1310 - Artwork Count1 - Persistent ID1B90E5159B1ACEEC - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Norah%20Jones/Come%20Away%20With%20Me/02%20Seven%20Years.m4a - File Folder Count4 - Library Folder Count1 - - 3310 - - Track ID3310 - NameCold Cold Heart - ArtistNorah Jones - ComposerHank Williams - AlbumCome Away With Me - GenrePop - KindAAC audio file - Size5321333 - Total Time218637 - Disc Number1 - Disc Count1 - Track Number3 - Track Count14 - Year2002 - Date Modified2006-08-07T05:24:28Z - Date Added2009-10-03T14:55:11Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3381677390 - Play Date UTC2011-02-27T13:19:50Z - Normalization1060 - Artwork Count1 - Persistent ID654C01ACECA3323E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Norah%20Jones/Come%20Away%20With%20Me/03%20Cold%20Cold%20Heart.m4a - File Folder Count4 - Library Folder Count1 - - 3312 - - Track ID3312 - NameFeelin' The Same Way - ArtistNorah Jones - ComposerLee Alexander - AlbumCome Away With Me - GenrePop - KindAAC audio file - Size4327100 - Total Time177259 - Disc Number1 - Disc Count1 - Track Number4 - Track Count14 - Year2002 - Date Modified2006-08-07T05:24:28Z - Date Added2009-10-03T14:55:11Z - Bit Rate192 - Sample Rate44100 - Normalization1796 - Artwork Count1 - Persistent IDF68251A3B2E26BD6 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Norah%20Jones/Come%20Away%20With%20Me/04%20Feelin'%20The%20Same%20Way.m4a - File Folder Count4 - Library Folder Count1 - - 3314 - - Track ID3314 - NameCome Away With Me - ArtistNorah Jones - ComposerNorah Jones - AlbumCome Away With Me - GenrePop - KindAAC audio file - Size4829635 - Total Time198157 - Disc Number1 - Disc Count1 - Track Number5 - Track Count14 - Year2002 - Date Modified2006-08-07T05:24:28Z - Date Added2009-10-03T14:55:11Z - Bit Rate192 - Sample Rate44100 - Play Count5 - Play Date3403722850 - Play Date UTC2011-11-09T17:04:10Z - Normalization1088 - Artwork Count1 - Persistent ID3FAB50E83AB08B5F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Norah%20Jones/Come%20Away%20With%20Me/05%20Come%20Away%20With%20Me.m4a - File Folder Count4 - Library Folder Count1 - - 3316 - - Track ID3316 - NameShoot The Moon - ArtistNorah Jones - ComposerJesse Harris - AlbumCome Away With Me - GenrePop - KindAAC audio file - Size5767324 - Total Time237190 - Disc Number1 - Disc Count1 - Track Number6 - Track Count14 - Year2002 - Date Modified2006-08-07T05:24:28Z - Date Added2009-10-03T14:55:11Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3389511623 - Play Date UTC2011-05-29T05:30:23Z - Normalization1259 - Artwork Count1 - Persistent IDB3CF6A1584218FB4 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Norah%20Jones/Come%20Away%20With%20Me/06%20Shoot%20The%20Moon.m4a - File Folder Count4 - Library Folder Count1 - - 3318 - - Track ID3318 - NameTurn Me On - ArtistNorah Jones - ComposerJ.D. Loudermilk - AlbumCome Away With Me - GenrePop - KindAAC audio file - Size3766213 - Total Time154643 - Disc Number1 - Disc Count1 - Track Number7 - Track Count14 - Year2002 - Date Modified2006-08-07T05:24:28Z - Date Added2009-10-03T14:55:11Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3389511778 - Play Date UTC2011-05-29T05:32:58Z - Normalization1756 - Artwork Count1 - Persistent ID1AA0D6FE32CCFA35 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Norah%20Jones/Come%20Away%20With%20Me/07%20Turn%20Me%20On.m4a - File Folder Count4 - Library Folder Count1 - - 3320 - - Track ID3320 - NameLonestar - ArtistNorah Jones - ComposerLee Alexander - AlbumCome Away With Me - GenrePop - KindAAC audio file - Size4539612 - Total Time186083 - Disc Number1 - Disc Count1 - Track Number8 - Track Count14 - Year2002 - Date Modified2006-08-07T05:24:28Z - Date Added2009-10-03T14:55:11Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3389511964 - Play Date UTC2011-05-29T05:36:04Z - Normalization1062 - Artwork Count1 - Persistent IDFC4C1B830A689A0A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Norah%20Jones/Come%20Away%20With%20Me/08%20Lonestar.m4a - File Folder Count4 - Library Folder Count1 - - 3322 - - Track ID3322 - NameI've Got To See You Again - ArtistNorah Jones - ComposerJesse Harris - AlbumCome Away With Me - GenrePop - KindAAC audio file - Size6154861 - Total Time253328 - Disc Number1 - Disc Count1 - Track Number9 - Track Count14 - Year2002 - Date Modified2006-08-07T05:24:28Z - Date Added2009-10-03T14:55:11Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3389512217 - Play Date UTC2011-05-29T05:40:17Z - Normalization1318 - Artwork Count1 - Persistent IDAE078C5C4C578C8D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Norah%20Jones/Come%20Away%20With%20Me/09%20I've%20Got%20To%20See%20You%20Again.m4a - File Folder Count4 - Library Folder Count1 - - 3324 - - Track ID3324 - NamePainter Song - ArtistNorah Jones - ComposerJ.C. Hopkins/Lee Alexander - AlbumCome Away With Me - GenrePop - KindAAC audio file - Size3948960 - Total Time162259 - Disc Number1 - Disc Count1 - Track Number10 - Track Count14 - Year2002 - Date Modified2006-08-07T05:24:28Z - Date Added2009-10-03T14:55:12Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3389512379 - Play Date UTC2011-05-29T05:42:59Z - Normalization1094 - Artwork Count1 - Persistent ID6EF014009BBE0453 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Norah%20Jones/Come%20Away%20With%20Me/10%20Painter%20Song.m4a - File Folder Count4 - Library Folder Count1 - - 3326 - - Track ID3326 - NameOne Flight Down - ArtistNorah Jones - ComposerJesse Harris - AlbumCome Away With Me - GenrePop - KindAAC audio file - Size4530246 - Total Time185688 - Disc Number1 - Disc Count1 - Track Number11 - Track Count14 - Year2002 - Date Modified2006-08-07T05:24:28Z - Date Added2009-10-03T14:55:12Z - Bit Rate192 - Sample Rate44100 - Normalization1775 - Artwork Count1 - Persistent ID1A77E3058CBC1B33 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Norah%20Jones/Come%20Away%20With%20Me/11%20One%20Flight%20Down.m4a - File Folder Count4 - Library Folder Count1 - - 3328 - - Track ID3328 - NameNightingale - ArtistNorah Jones - ComposerNorah Jones - AlbumCome Away With Me - GenrePop - KindAAC audio file - Size6129129 - Total Time252260 - Disc Number1 - Disc Count1 - Track Number12 - Track Count14 - Year2002 - Date Modified2006-08-07T05:24:28Z - Date Added2009-10-03T14:55:12Z - Bit Rate192 - Sample Rate44100 - Normalization1610 - Artwork Count1 - Persistent IDD7F9E54BF5A06457 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Norah%20Jones/Come%20Away%20With%20Me/12%20Nightingale.m4a - File Folder Count4 - Library Folder Count1 - - 3330 - - Track ID3330 - NameThe Long Day Is Over - ArtistNorah Jones - ComposerJesse Harris/Norah Jones - AlbumCome Away With Me - GenrePop - KindAAC audio file - Size4005595 - Total Time164581 - Disc Number1 - Disc Count1 - Track Number13 - Track Count14 - Year2002 - Date Modified2006-08-07T05:24:26Z - Date Added2009-10-03T14:55:12Z - Bit Rate192 - Sample Rate44100 - Normalization1060 - Artwork Count1 - Sort NameLong Day Is Over - Persistent ID905316609998CE72 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Norah%20Jones/Come%20Away%20With%20Me/13%20The%20Long%20Day%20Is%20Over.m4a - File Folder Count4 - Library Folder Count1 - - 3332 - - Track ID3332 - NameThe Nearness Of You - ArtistNorah Jones - ComposerHoagy Carmichael/Ned Washington - AlbumCome Away With Me - GenrePop - KindAAC audio file - Size4577341 - Total Time187685 - Disc Number1 - Disc Count1 - Track Number14 - Track Count14 - Year2002 - Date Modified2006-08-07T05:24:26Z - Date Added2009-10-03T14:55:12Z - Bit Rate192 - Sample Rate44100 - Normalization1009 - Artwork Count1 - Sort NameNearness Of You - Persistent ID53F9F50A04A60E20 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Norah%20Jones/Come%20Away%20With%20Me/14%20The%20Nearness%20Of%20You.m4a - File Folder Count4 - Library Folder Count1 - - 3334 - - Track ID3334 - NameSmells Like Teen Spirit - ArtistNirvana - ComposerKurt Cobain - AlbumNevermind - GenreRock - KindAAC audio file - Size7565065 - Total Time301133 - Disc Number1 - Disc Count1 - Track Number1 - Track Count12 - Year1991 - BPM192 - Date Modified2008-10-13T16:37:33Z - Date Added2009-10-03T14:55:12Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3377095760 - Play Date UTC2011-01-05T12:39:20Z - Normalization3713 - Artwork Count1 - Persistent IDD6AC5779533326C7 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Nirvana/Nevermind/01%20Smells%20Like%20Teen%20Spirit.m4a - File Folder Count4 - Library Folder Count1 - - 3336 - - Track ID3336 - NameIn Bloom - ArtistNirvana - ComposerKurt Cobain - AlbumNevermind - GenreRock - KindAAC audio file - Size6448751 - Total Time254933 - Disc Number1 - Disc Count1 - Track Number2 - Track Count12 - Year1991 - BPM192 - Date Modified2008-10-13T16:37:36Z - Date Added2009-10-03T14:55:13Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3363361749 - Play Date UTC2010-07-30T13:39:09Z - Normalization2796 - Artwork Count1 - Persistent ID4E22F2BA055EA311 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Nirvana/Nevermind/02%20In%20Bloom.m4a - File Folder Count4 - Library Folder Count1 - - 3338 - - Track ID3338 - NameCome As You Are - ArtistNirvana - ComposerKurt Cobain - AlbumNevermind - GenreRock - KindAAC audio file - Size5494600 - Total Time219066 - Disc Number1 - Disc Count1 - Track Number3 - Track Count12 - Year1991 - BPM192 - Date Modified2008-10-13T16:37:38Z - Date Added2009-10-03T14:55:13Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3363361968 - Play Date UTC2010-07-30T13:42:48Z - Normalization2535 - Artwork Count1 - Persistent IDE56A2520E23E5B61 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Nirvana/Nevermind/03%20Come%20As%20You%20Are.m4a - File Folder Count4 - Library Folder Count1 - - 3340 - - Track ID3340 - NameBreed - ArtistNirvana - ComposerKurt Cobain/NIRVANA - AlbumNevermind - GenreRock - KindAAC audio file - Size4680869 - Total Time183773 - Disc Number1 - Disc Count1 - Track Number4 - Track Count12 - Year1991 - BPM192 - Date Modified2008-10-13T16:37:41Z - Date Added2009-10-03T14:55:13Z - Bit Rate192 - Sample Rate44100 - Normalization4769 - Artwork Count1 - Persistent ID724B0A1FCF2BCCDB - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Nirvana/Nevermind/04%20Breed.m4a - File Folder Count4 - Library Folder Count1 - - 3342 - - Track ID3342 - NameLithium - ArtistNirvana - ComposerKurt Cobain - AlbumNevermind - GenreRock - KindAAC audio file - Size6461937 - Total Time257000 - Disc Number1 - Disc Count1 - Track Number5 - Track Count12 - Year1991 - BPM192 - Date Modified2008-10-13T16:37:44Z - Date Added2009-10-03T14:55:13Z - Bit Rate192 - Sample Rate44100 - Skip Count1 - Skip Date2010-08-25T11:00:19Z - Normalization2143 - Artwork Count1 - Persistent ID63649A011B493FF9 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Nirvana/Nevermind/05%20Lithium.m4a - File Folder Count4 - Library Folder Count1 - - 3344 - - Track ID3344 - NamePolly - ArtistNirvana - ComposerKurt Cobain - AlbumNevermind - GenreRock - KindAAC audio file - Size4264984 - Total Time177000 - Disc Number1 - Disc Count1 - Track Number6 - Track Count12 - Year1991 - BPM192 - Date Modified2008-10-13T16:37:46Z - Date Added2009-10-03T14:55:13Z - Bit Rate192 - Sample Rate44100 - Normalization913 - Artwork Count1 - Persistent IDBCCD9605761E29DA - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Nirvana/Nevermind/06%20Polly.m4a - File Folder Count4 - Library Folder Count1 - - 3346 - - Track ID3346 - NameTerritorial Pissings - ArtistNirvana - ComposerKurt Cobain - AlbumNevermind - GenreRock - KindAAC audio file - Size3660048 - Total Time143133 - Disc Number1 - Disc Count1 - Track Number7 - Track Count12 - Year1991 - BPM192 - Date Modified2008-10-13T16:37:48Z - Date Added2009-10-03T14:55:13Z - Bit Rate192 - Sample Rate44100 - Normalization3242 - Artwork Count1 - Persistent ID6AE7E4641A8391E7 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Nirvana/Nevermind/07%20Territorial%20Pissings.m4a - File Folder Count4 - Library Folder Count1 - - 3348 - - Track ID3348 - NameDrain You - ArtistNirvana - ComposerKurt Cobain - AlbumNevermind - GenreRock - KindAAC audio file - Size5677735 - Total Time223866 - Disc Number1 - Disc Count1 - Track Number8 - Track Count12 - Year1991 - BPM192 - Date Modified2008-10-13T16:37:51Z - Date Added2009-10-03T14:55:13Z - Bit Rate192 - Sample Rate44100 - Normalization2175 - Artwork Count1 - Persistent ID494E663B00FB7712 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Nirvana/Nevermind/08%20Drain%20You.m4a - File Folder Count4 - Library Folder Count1 - - 3350 - - Track ID3350 - NameLounge Act - ArtistNirvana - ComposerKurt Cobain - AlbumNevermind - GenreRock - KindAAC audio file - Size3979350 - Total Time156760 - Disc Number1 - Disc Count1 - Track Number9 - Track Count12 - Year1991 - BPM192 - Date Modified2008-10-13T16:37:53Z - Date Added2009-10-03T14:55:14Z - Bit Rate192 - Sample Rate44100 - Normalization3044 - Artwork Count1 - Persistent ID1659223675490430 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Nirvana/Nevermind/09%20Lounge%20Act.m4a - File Folder Count4 - Library Folder Count1 - - 3352 - - Track ID3352 - NameStay Away - ArtistNirvana - ComposerKurt Cobain - AlbumNevermind - GenreRock - KindAAC audio file - Size5305785 - Total Time212466 - Disc Number1 - Disc Count1 - Track Number10 - Track Count12 - Year1991 - BPM192 - Date Modified2008-10-13T16:37:58Z - Date Added2009-10-03T14:55:14Z - Bit Rate192 - Sample Rate44100 - Normalization3619 - Artwork Count1 - Persistent ID5722C8840240F38B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Nirvana/Nevermind/10%20Stay%20Away.m4a - File Folder Count4 - Library Folder Count1 - - 3354 - - Track ID3354 - NameOn A Plain - ArtistNirvana - ComposerKurt Cobain - AlbumNevermind - GenreRock - KindAAC audio file - Size4956186 - Total Time196400 - Disc Number1 - Disc Count1 - Track Number11 - Track Count12 - Year1991 - BPM192 - Date Modified2008-10-13T16:38:00Z - Date Added2009-10-03T14:55:14Z - Bit Rate192 - Sample Rate44100 - Normalization2655 - Artwork Count1 - Persistent IDC4F45A8FEABAC4AD - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Nirvana/Nevermind/11%20On%20A%20Plain.m4a - File Folder Count4 - Library Folder Count1 - - 3356 - - Track ID3356 - NameSomething In The Way / [Hidden Track] - ArtistNirvana - AlbumNevermind - GenreRock - KindAAC audio file - Size19994883 - Total Time1235066 - Disc Number1 - Disc Count1 - Track Number12 - Track Count12 - Year1991 - BPM192 - Date Modified2008-10-13T16:38:16Z - Date Added2009-10-03T14:55:14Z - Bit Rate192 - Sample Rate44100 - Normalization1646 - Artwork Count1 - Persistent IDB1C0892FA7C31B8F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Nirvana/Nevermind/12%20Something%20In%20The%20Way%20_%20%5BHidden%20Track%5D.m4a - File Folder Count4 - Library Folder Count1 - - 3358 - - Track ID3358 - NamePaathshala - ArtistNaresh Iyer, Mohamed Aslam - Composera r rahman - AlbumRang De Basanti - GenreSoundtracks - KindAAC audio file - Size5361061 - Total Time219914 - Track Number3 - Date Modified2007-04-09T08:52:46Z - Date Added2009-10-03T14:55:15Z - Bit Rate192 - Sample Rate44100 - Normalization3148 - Artwork Count1 - Sort Composerr rahman - Persistent ID71BBC4A06B7E0B4B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Naresh%20Iyer,%20Mohamed%20Aslam/Rang%20De%20Basanti/03%20Paathshala.m4a - File Folder Count4 - Library Folder Count1 - - 3360 - - Track ID3360 - NamePaathshala - ArtistNaresh Iyer, Mohamed Aslam - Composera r rahman - AlbumRang De Basanti - GenreSoundtracks - KindAAC audio file - Size5307032 - Total Time219892 - Track Number3 - Date Modified2007-07-27T06:37:30Z - Date Added2009-10-03T14:55:15Z - Bit Rate192 - Sample Rate44100 - Normalization3148 - Sort Composerr rahman - Persistent ID667B41A845DC2F43 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Naresh%20Iyer,%20Mohamed%20Aslam/Rang%20De%20Basanti/03%20Paathshala%201.m4a - File Folder Count4 - Library Folder Count1 - - 3362 - - Track ID3362 - NamePaathshala - ArtistNaresh Iyer, Mohamed Aslam - Composera r rahman - AlbumRang De Basanti - GenreSoundtracks - KindAAC audio file - Size5314775 - Total Time219914 - Track Number3 - Date Modified2006-12-27T10:35:08Z - Date Added2009-10-03T14:55:15Z - Bit Rate192 - Sample Rate44100 - Normalization3148 - Sort Composerr rahman - Persistent ID21665F69FF1679CC - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Naresh%20Iyer,%20Mohamed%20Aslam/Rang%20De%20Basanti/03%20Paathshala%202.m4a - File Folder Count4 - Library Folder Count1 - - 3364 - - Track ID3364 - NamePaathshala - ArtistNaresh Iyer, Mohamed Aslam - Composera r rahman - AlbumRang De Basanti - GenreSoundtracks - KindAAC audio file - Size5199974 - Total Time219892 - Track Number3 - Date Modified2007-12-02T08:05:21Z - Date Added2009-10-03T14:55:15Z - Bit Rate187 - Sample Rate44100 - Normalization3148 - Sort Composerr rahman - Persistent ID076989CDD716C589 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Naresh%20Iyer,%20Mohamed%20Aslam/Rang%20De%20Basanti/03%20Paathshala%203.m4a - File Folder Count4 - Library Folder Count1 - - 3366 - - Track ID3366 - NameBach (JS): Cello Suite #1 In G, BWV 1007i - 1. Prelude - ArtistMstislav Rostropovich - ComposerJohann Sebastian Bach (1685-1750) - AlbumBach (JS): Cello Suites #1, 4 & 5 - GenreClassical - KindAAC audio file - Size3026409 - Total Time124527 - Disc Number1 - Disc Count2 - Track Number1 - Track Count21 - Year1995 - Date Modified2006-08-07T15:47:32Z - Date Added2009-10-03T14:55:15Z - Bit Rate192 - Sample Rate44100 - Normalization374 - Artwork Count1 - Persistent IDEA6E9E2C81E66B30 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mstislav%20Rostropovich/Bach%20(JS)_%20Cello%20Suites%20%231,%204%20&%205/1-01%20Bach%20(JS)_%20Cello%20Suite%20%231%20In%20G,%20BWV%201007i%20-%201.%20Prelude.m4a - File Folder Count4 - Library Folder Count1 - - 3368 - - Track ID3368 - NameBach (JS): Cello Suite #1 In G, BWV 1007ii - 2. Allemande - ArtistMstislav Rostropovich - ComposerJohann Sebastian Bach (1685-1750) - AlbumBach (JS): Cello Suites #1, 4 & 5 - GenreClassical - KindAAC audio file - Size4860514 - Total Time200177 - Disc Number1 - Disc Count2 - Track Number2 - Track Count21 - Year1995 - Date Modified2006-08-07T15:47:32Z - Date Added2009-10-03T14:55:15Z - Bit Rate192 - Sample Rate44100 - Normalization209 - Artwork Count1 - Persistent ID425C1128DAB9979E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mstislav%20Rostropovich/Bach%20(JS)_%20Cello%20Suites%20%231,%204%20&%205/1-02%20Bach%20(JS)_%20Cello%20Suite%20%231%20In%20G,%20BWV%201007ii%20-%202.%20Allemande.m4a - File Folder Count4 - Library Folder Count1 - - 3370 - - Track ID3370 - NameBach (JS): Cello Suite #1 In G, BWV 1007ii - 3. Courante - ArtistMstislav Rostropovich - ComposerJohann Sebastian Bach (1685-1750) - AlbumBach (JS): Cello Suites #1, 4 & 5 - GenreClassical - KindAAC audio file - Size3762540 - Total Time154457 - Disc Number1 - Disc Count2 - Track Number3 - Track Count21 - Year1995 - Date Modified2006-08-07T15:47:32Z - Date Added2009-10-03T14:55:15Z - Bit Rate192 - Sample Rate44100 - Normalization233 - Artwork Count1 - Persistent ID112E97B0F523D743 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mstislav%20Rostropovich/Bach%20(JS)_%20Cello%20Suites%20%231,%204%20&%205/1-03%20Bach%20(JS)_%20Cello%20Suite%20%231%20In%20G,%20BWV%201007ii%20-%203.%20Courante.m4a - File Folder Count4 - Library Folder Count1 - - 3372 - - Track ID3372 - NameBach (JS): Cello Suite #1 In G, BWV 1007iv - 4. Sarabande - ArtistMstislav Rostropovich - ComposerJohann Sebastian Bach (1685-1750) - AlbumBach (JS): Cello Suites #1, 4 & 5 - GenreClassical - KindAAC audio file - Size4886148 - Total Time201245 - Disc Number1 - Disc Count2 - Track Number4 - Track Count21 - Year1995 - Date Modified2006-08-07T15:47:32Z - Date Added2009-10-03T14:55:15Z - Bit Rate192 - Sample Rate44100 - Normalization241 - Artwork Count1 - Persistent IDBBA20B72419CCB54 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mstislav%20Rostropovich/Bach%20(JS)_%20Cello%20Suites%20%231,%204%20&%205/1-04%20Bach%20(JS)_%20Cello%20Suite%20%231%20In%20G,%20BWV%201007iv%20-%204.%20Sarabande.m4a - File Folder Count4 - Library Folder Count1 - - 3374 - - Track ID3374 - NameBach (JS): Cello Suite #1 In G, BWV 1007v - 5. Menuet 1 - ArtistMstislav Rostropovich - ComposerJohann Sebastian Bach (1685-1750) - AlbumBach (JS): Cello Suites #1, 4 & 5 - GenreClassical - KindAAC audio file - Size1909559 - Total Time77320 - Disc Number1 - Disc Count2 - Track Number5 - Track Count21 - Year1995 - Date Modified2006-08-07T15:47:32Z - Date Added2009-10-03T14:55:16Z - Bit Rate192 - Sample Rate44100 - Normalization99 - Artwork Count1 - Persistent ID044C142062D05588 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mstislav%20Rostropovich/Bach%20(JS)_%20Cello%20Suites%20%231,%204%20&%205/1-05%20Bach%20(JS)_%20Cello%20Suite%20%231%20In%20G,%20BWV%201007v%20-%205.%20Menuet%201.m4a - File Folder Count4 - Library Folder Count1 - - 3376 - - Track ID3376 - NameBach (JS): Cello Suite #1 In G, BWV 1007vi - 6. Menuet 2/1 - ArtistMstislav Rostropovich - ComposerJohann Sebastian Bach (1685-1750) - AlbumBach (JS): Cello Suites #1, 4 & 5 - GenreClassical - KindAAC audio file - Size3007253 - Total Time123017 - Disc Number1 - Disc Count2 - Track Number6 - Track Count21 - Year1995 - Date Modified2006-08-07T15:47:32Z - Date Added2009-10-03T14:55:16Z - Bit Rate192 - Sample Rate44100 - Normalization77 - Artwork Count1 - Persistent ID6E241F695F3208F1 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mstislav%20Rostropovich/Bach%20(JS)_%20Cello%20Suites%20%231,%204%20&%205/1-06%20Bach%20(JS)_%20Cello%20Suite%20%231%20In%20G,%20BWV%201007vi%20-%206.%20Menuet%202_1.m4a - File Folder Count4 - Library Folder Count1 - - 3378 - - Track ID3378 - NameBach (JS): Cello Suite #1 In G, BWV 1007vii - 7. Gigue - ArtistMstislav Rostropovich - ComposerJohann Sebastian Bach (1685-1750) - AlbumBach (JS): Cello Suites #1, 4 & 5 - GenreClassical - KindAAC audio file - Size2281305 - Total Time101376 - Disc Number1 - Disc Count2 - Track Number7 - Track Count21 - Year1995 - Date Modified2006-08-07T15:47:32Z - Date Added2009-10-03T14:55:16Z - Bit Rate192 - Sample Rate44100 - Normalization259 - Artwork Count1 - Persistent IDD635CD95A3F82F2D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mstislav%20Rostropovich/Bach%20(JS)_%20Cello%20Suites%20%231,%204%20&%205/1-07%20Bach%20(JS)_%20Cello%20Suite%20%231%20In%20G,%20BWV%201007vii%20-%207.%20Gigue.m4a - File Folder Count4 - Library Folder Count1 - - 3380 - - Track ID3380 - NameBach (JS): Cello Suite #4 In E Flat, BWV 1010i - 1. Preludium - ArtistMstislav Rostropovich - ComposerJohann Sebastian Bach (1685-1750) - AlbumBach (JS): Cello Suites #1, 4 & 5 - GenreClassical - KindAAC audio file - Size6434116 - Total Time265936 - Disc Number1 - Disc Count2 - Track Number8 - Track Count21 - Year1995 - Date Modified2006-08-07T15:47:32Z - Date Added2009-10-03T14:55:16Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3340458807 - Play Date UTC2009-11-07T11:43:27Z - Normalization691 - Artwork Count1 - Persistent ID88A4F745F5FF23E6 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mstislav%20Rostropovich/Bach%20(JS)_%20Cello%20Suites%20%231,%204%20&%205/1-08%20Bach%20(JS)_%20Cello%20Suite%20%234%20In%20E%20Flat,%20BWV%201010i%20-%201.%20Preludium.m4a - File Folder Count4 - Library Folder Count1 - - 3382 - - Track ID3382 - NameBach (JS): Cello Suite #4 In E Flat, BWV 1010ii - 2. Allemande - ArtistMstislav Rostropovich - ComposerJohann Sebastian Bach (1685-1750) - AlbumBach (JS): Cello Suites #1, 4 & 5 - GenreClassical - KindAAC audio file - Size5172364 - Total Time212739 - Disc Number1 - Disc Count2 - Track Number9 - Track Count21 - Year1995 - Date Modified2006-08-07T15:47:34Z - Date Added2009-10-03T14:55:16Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3340459020 - Play Date UTC2009-11-07T11:47:00Z - Normalization132 - Artwork Count1 - Persistent IDDEA6A497C9D4A605 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mstislav%20Rostropovich/Bach%20(JS)_%20Cello%20Suites%20%231,%204%20&%205/1-09%20Bach%20(JS)_%20Cello%20Suite%20%234%20In%20E%20Flat,%20BWV%201010ii%20-%202.%20Allemande.m4a - File Folder Count4 - Library Folder Count1 - - 3384 - - Track ID3384 - NameBach (JS): Cello Suite #4 In E Flat, BWV 1010iii - 3. Courante - ArtistMstislav Rostropovich - ComposerJohann Sebastian Bach (1685-1750) - AlbumBach (JS): Cello Suites #1, 4 & 5 - GenreClassical - KindAAC audio file - Size5329441 - Total Time219287 - Disc Number1 - Disc Count2 - Track Number10 - Track Count21 - Year1995 - Date Modified2006-08-07T15:47:34Z - Date Added2009-10-03T14:55:16Z - Bit Rate192 - Sample Rate44100 - Normalization316 - Artwork Count1 - Persistent IDD6689BC5055355FA - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mstislav%20Rostropovich/Bach%20(JS)_%20Cello%20Suites%20%231,%204%20&%205/1-10%20Bach%20(JS)_%20Cello%20Suite%20%234%20In%20E%20Flat,%20BWV%201010iii%20-%203.%20Courante.m4a - File Folder Count4 - Library Folder Count1 - - 3386 - - Track ID3386 - NameBach (JS): Cello Suite #4 In E Flat, BWV 1010iv - 4. Sarabande - ArtistMstislav Rostropovich - ComposerJohann Sebastian Bach (1685-1750) - AlbumBach (JS): Cello Suites #1, 4 & 5 - GenreClassical - KindAAC audio file - Size7509144 - Total Time309683 - Disc Number1 - Disc Count2 - Track Number11 - Track Count21 - Year1995 - Date Modified2006-08-07T15:47:34Z - Date Added2009-10-03T14:55:16Z - Bit Rate192 - Sample Rate44100 - Normalization188 - Artwork Count1 - Persistent ID79BDDD401BBBD15A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mstislav%20Rostropovich/Bach%20(JS)_%20Cello%20Suites%20%231,%204%20&%205/1-11%20Bach%20(JS)_%20Cello%20Suite%20%234%20In%20E%20Flat,%20BWV%201010iv%20-%204.%20Sarabande.m4a - File Folder Count4 - Library Folder Count1 - - 3388 - - Track ID3388 - NameBach (JS): Cello Suite #4 In E Flat, BWV 1010v - 5. Bouree 1 - ArtistMstislav Rostropovich - ComposerJohann Sebastian Bach (1685-1750) - AlbumBach (JS): Cello Suites #1, 4 & 5 - GenreClassical - KindAAC audio file - Size4964991 - Total Time204519 - Disc Number1 - Disc Count2 - Track Number12 - Track Count21 - Year1995 - Date Modified2006-08-07T15:47:34Z - Date Added2009-10-03T14:55:16Z - Bit Rate192 - Sample Rate44100 - Normalization253 - Artwork Count1 - Persistent ID59121097558BC267 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mstislav%20Rostropovich/Bach%20(JS)_%20Cello%20Suites%20%231,%204%20&%205/1-12%20Bach%20(JS)_%20Cello%20Suite%20%234%20In%20E%20Flat,%20BWV%201010v%20-%205.%20Bouree%201.m4a - File Folder Count4 - Library Folder Count1 - - 3390 - - Track ID3390 - NameBach (JS): Cello Suite #4 In E Flat, BWV 1010vi - 6. Bouree 2/1 - ArtistMstislav Rostropovich - ComposerJohann Sebastian Bach (1685-1750) - AlbumBach (JS): Cello Suites #1, 4 & 5 - GenreClassical - KindAAC audio file - Size4033533 - Total Time165742 - Disc Number1 - Disc Count2 - Track Number13 - Track Count21 - Year1995 - Date Modified2006-08-07T15:47:34Z - Date Added2009-10-03T14:55:16Z - Bit Rate192 - Sample Rate44100 - Normalization249 - Artwork Count1 - Persistent ID0932809078037F78 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mstislav%20Rostropovich/Bach%20(JS)_%20Cello%20Suites%20%231,%204%20&%205/1-13%20Bach%20(JS)_%20Cello%20Suite%20%234%20In%20E%20Flat,%20BWV%201010vi%20-%206.%20Bouree%202_1.m4a - File Folder Count4 - Library Folder Count1 - - 3392 - - Track ID3392 - NameBach (JS): Cello Suite #4 In E Flat, BWV 1010vii - 7. Gigue - ArtistMstislav Rostropovich - ComposerJohann Sebastian Bach (1685-1750) - AlbumBach (JS): Cello Suites #1, 4 & 5 - GenreClassical - KindAAC audio file - Size3674361 - Total Time159171 - Disc Number1 - Disc Count2 - Track Number14 - Track Count21 - Year1995 - Date Modified2006-08-07T15:47:34Z - Date Added2009-10-03T14:55:16Z - Bit Rate192 - Sample Rate44100 - Normalization237 - Artwork Count1 - Persistent ID8C80DA7035A90058 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mstislav%20Rostropovich/Bach%20(JS)_%20Cello%20Suites%20%231,%204%20&%205/1-14%20Bach%20(JS)_%20Cello%20Suite%20%234%20In%20E%20Flat,%20BWV%201010vii%20-%207.%20Gigue.m4a - File Folder Count4 - Library Folder Count1 - - 3394 - - Track ID3394 - NameBach (JS): Cello Suite #5 In C Minor, BWV 1011i - 1. Prelude - ArtistMstislav Rostropovich - ComposerJohann Sebastian Bach (1685-1750) - AlbumBach (JS): Cello Suites #1, 4 & 5 - GenreClassical - KindAAC audio file - Size10728145 - Total Time443383 - Disc Number1 - Disc Count2 - Track Number15 - Track Count21 - Year1995 - Date Modified2006-08-07T15:47:34Z - Date Added2009-10-03T14:55:16Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3340868555 - Play Date UTC2009-11-12T05:32:35Z - Normalization675 - Artwork Count1 - Persistent IDCD15529B1C76D2AF - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mstislav%20Rostropovich/Bach%20(JS)_%20Cello%20Suites%20%231,%204%20&%205/1-15%20Bach%20(JS)_%20Cello%20Suite%20%235%20In%20C%20Minor,%20BWV%201011i%20-%201.%20Prelude.m4a - File Folder Count4 - Library Folder Count1 - - 3396 - - Track ID3396 - NameBach (JS): Cello Suite #5 In C Minor, BWV 1011ii - 2. Allemande - ArtistMstislav Rostropovich - ComposerJohann Sebastian Bach (1685-1750) - AlbumBach (JS): Cello Suites #1, 4 & 5 - GenreClassical - KindAAC audio file - Size7546943 - Total Time311238 - Disc Number1 - Disc Count2 - Track Number16 - Track Count21 - Year1995 - Date Modified2006-08-07T15:47:34Z - Date Added2009-10-03T14:55:16Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3340868866 - Play Date UTC2009-11-12T05:37:46Z - Normalization535 - Artwork Count1 - Persistent IDAA18FE7312B99648 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mstislav%20Rostropovich/Bach%20(JS)_%20Cello%20Suites%20%231,%204%20&%205/1-16%20Bach%20(JS)_%20Cello%20Suite%20%235%20In%20C%20Minor,%20BWV%201011ii%20-%202.%20Allemande.m4a - File Folder Count4 - Library Folder Count1 - - 3398 - - Track ID3398 - NameBach (JS): Cello Suite #5 In C Minor, BWV 1011iii - 3. Courante - ArtistMstislav Rostropovich - ComposerJohann Sebastian Bach (1685-1750) - AlbumBach (JS): Cello Suites #1, 4 & 5 - GenreClassical - KindAAC audio file - Size3559476 - Total Time146005 - Disc Number1 - Disc Count2 - Track Number17 - Track Count21 - Year1995 - Date Modified2006-08-07T15:47:34Z - Date Added2009-10-03T14:55:17Z - Bit Rate192 - Sample Rate44100 - Normalization436 - Artwork Count1 - Persistent ID4B321C6CDB56D534 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mstislav%20Rostropovich/Bach%20(JS)_%20Cello%20Suites%20%231,%204%20&%205/1-17%20Bach%20(JS)_%20Cello%20Suite%20%235%20In%20C%20Minor,%20BWV%201011iii%20-%203.%20Courante.m4a - File Folder Count4 - Library Folder Count1 - - 3400 - - Track ID3400 - NameBach (JS): Cello Suite #5 In C Minor, BWV 1011iv - 4. Sarabande - ArtistMstislav Rostropovich - ComposerJohann Sebastian Bach (1685-1750) - AlbumBach (JS): Cello Suites #1, 4 & 5 - GenreClassical - KindAAC audio file - Size5622318 - Total Time231478 - Disc Number1 - Disc Count2 - Track Number18 - Track Count21 - Year1995 - Date Modified2006-08-07T15:47:34Z - Date Added2009-10-03T14:55:17Z - Bit Rate192 - Sample Rate44100 - Normalization138 - Artwork Count1 - Persistent ID829B5C647E8AC2C2 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mstislav%20Rostropovich/Bach%20(JS)_%20Cello%20Suites%20%231,%204%20&%205/1-18%20Bach%20(JS)_%20Cello%20Suite%20%235%20In%20C%20Minor,%20BWV%201011iv%20-%204.%20Sarabande.m4a - File Folder Count4 - Library Folder Count1 - - 3402 - - Track ID3402 - NameJ.S. Bach: Cello Suite #5 In C Minor, BWV 1011v - 5. Gavotte 1 - ArtistMstislav Rostropovich - ComposerJohann Sebastian Bach (1685-1750) - AlbumBach (JS): Cello Suites #1, 4 & 5 - GenreClassical - KindAAC audio file - Size4058263 - Total Time166787 - Disc Number1 - Disc Count2 - Track Number19 - Track Count21 - Year1995 - Date Modified2006-08-07T15:47:34Z - Date Added2009-10-03T14:55:17Z - Bit Rate192 - Sample Rate44100 - Normalization453 - Artwork Count1 - Persistent ID34BB33B3AED9054F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mstislav%20Rostropovich/Bach%20(JS)_%20Cello%20Suites%20%231,%204%20&%205/1-19%20J.S.%20Bach_%20Cello%20Suite%20%235%20In%20C%20Minor,%20BWV%201011v%20-%205.%20Gavotte%201.m4a - File Folder Count4 - Library Folder Count1 - - 3404 - - Track ID3404 - NameJ.S. Bach: Cello Suite #5 In C Minor, BWV 1011vi - 6. Gavotte 2/1 - ArtistMstislav Rostropovich - ComposerJohann Sebastian Bach (1685-1750) - AlbumBach (JS): Cello Suites #1, 4 & 5 - GenreClassical - KindAAC audio file - Size4272703 - Total Time175703 - Disc Number1 - Disc Count2 - Track Number20 - Track Count21 - Year1995 - Date Modified2006-08-07T15:47:34Z - Date Added2009-10-03T14:55:17Z - Bit Rate192 - Sample Rate44100 - Normalization325 - Artwork Count1 - Persistent IDEDDC0065972BEECB - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mstislav%20Rostropovich/Bach%20(JS)_%20Cello%20Suites%20%231,%204%20&%205/1-20%20J.S.%20Bach_%20Cello%20Suite%20%235%20In%20C%20Minor,%20BWV%201011vi%20-%206.%20Gavotte%202_1.m4a - File Folder Count4 - Library Folder Count1 - - 3406 - - Track ID3406 - NameBach (JS): Cello Suite #5 In C Minor, BWV 1011vii - 7. Gigue 2/1 - ArtistMstislav Rostropovich - ComposerJohann Sebastian Bach (1685-1750) - AlbumBach (JS): Cello Suites #1, 4 & 5 - GenreClassical - KindAAC audio file - Size3531792 - Total Time145309 - Disc Number1 - Disc Count2 - Track Number21 - Track Count21 - Year1995 - Date Modified2006-08-07T15:47:34Z - Date Added2009-10-03T14:55:17Z - Bit Rate192 - Sample Rate44100 - Normalization180 - Artwork Count1 - Persistent ID5D84CC090EAE630E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mstislav%20Rostropovich/Bach%20(JS)_%20Cello%20Suites%20%231,%204%20&%205/1-21%20Bach%20(JS)_%20Cello%20Suite%20%235%20In%20C%20Minor,%20BWV%201011vii%20-%207.%20Gigue%202_1.m4a - File Folder Count4 - Library Folder Count1 - - 3408 - - Track ID3408 - NameKhoon Chala - ArtistMohit Chauhan - Composera r rahman - AlbumRang De Basanti - GenreSoundtracks - KindAAC audio file - Size4578871 - Total Time189310 - Track Number6 - Date Modified2007-04-09T09:39:04Z - Date Added2009-10-03T14:55:18Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Sort Composerr rahman - Persistent ID78708FC315251019 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mohit%20Chauhan/Rang%20De%20Basanti/06%20Khoon%20Chala.m4a - File Folder Count4 - Library Folder Count1 - - 3410 - - Track ID3410 - NameKhoon Chala - ArtistMohit Chauhan - Composera r rahman - AlbumRang De Basanti - GenreSoundtracks - KindAAC audio file - Size4565757 - Total Time189289 - Track Number6 - Date Modified2007-07-27T06:38:26Z - Date Added2009-10-03T14:55:18Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Sort Composerr rahman - Persistent ID24600C339E3536FE - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mohit%20Chauhan/Rang%20De%20Basanti/06%20Khoon%20Chala%201.m4a - File Folder Count4 - Library Folder Count1 - - 3412 - - Track ID3412 - NameKhoon Chala - ArtistMohit Chauhan - Composera r rahman - AlbumRang De Basanti - GenreSoundtracks - KindAAC audio file - Size4578871 - Total Time189310 - Track Number6 - Date Modified2006-12-27T10:37:04Z - Date Added2009-10-03T14:55:19Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Sort Composerr rahman - Persistent ID3B52E14082948BEE - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mohit%20Chauhan/Rang%20De%20Basanti/06%20Khoon%20Chala%202.m4a - File Folder Count4 - Library Folder Count1 - - 3414 - - Track ID3414 - NameKhoon Chala - ArtistMohit Chauhan - Composera r rahman - AlbumRang De Basanti - GenreSoundtracks - KindAAC audio file - Size4451532 - Total Time189289 - Track Number6 - Date Modified2007-12-02T08:06:16Z - Date Added2009-10-03T14:55:19Z - Bit Rate186 - Sample Rate44100 - Normalization1259 - Sort Composerr rahman - Persistent ID95BBCAE8F9812ADB - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mohit%20Chauhan/Rang%20De%20Basanti/06%20Khoon%20Chala%203.m4a - File Folder Count4 - Library Folder Count1 - - 3416 - - Track ID3416 - NameConcierto De Aranjuez (Adagio) - ArtistMiles Davis - ComposerJ. Rodrigo - AlbumSketches Of Spain - GenreJazz - KindAAC audio file - Size23824643 - Total Time983479 - Disc Number1 - Disc Count1 - Track Number1 - Track Count8 - Year1960 - Date Modified2006-08-08T12:23:14Z - Date Added2009-10-03T14:55:19Z - Bit Rate192 - Sample Rate44100 - Normalization993 - Artwork Count1 - Persistent ID19C6830D987BC48C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Miles%20Davis/Sketches%20Of%20Spain/01%20Concierto%20De%20Aranjuez%20(Adagio).m4a - File Folder Count4 - Library Folder Count1 - - 3418 - - Track ID3418 - NameWill O' The Wisp - ArtistMiles Davis - ComposerM. De Falla - AlbumSketches Of Spain - GenreJazz - KindAAC audio file - Size5581059 - Total Time229156 - Disc Number1 - Disc Count1 - Track Number2 - Track Count8 - Year1960 - Date Modified2006-08-08T12:23:12Z - Date Added2009-10-03T14:55:19Z - Bit Rate192 - Sample Rate44100 - Normalization455 - Artwork Count1 - Persistent IDEB04117A81C607BC - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Miles%20Davis/Sketches%20Of%20Spain/02%20Will%20O'%20The%20Wisp.m4a - File Folder Count4 - Library Folder Count1 - - 3420 - - Track ID3420 - NameThe Pan Piper - ArtistMiles Davis - ComposerGil Evans - AlbumSketches Of Spain - GenreJazz - KindAAC audio file - Size5718761 - Total Time234868 - Disc Number1 - Disc Count1 - Track Number3 - Track Count8 - Year1960 - Date Modified2006-08-08T12:23:12Z - Date Added2009-10-03T14:55:19Z - Bit Rate192 - Sample Rate44100 - Normalization717 - Artwork Count1 - Sort NamePan Piper - Persistent IDD2AB3B7F9BAF3267 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Miles%20Davis/Sketches%20Of%20Spain/03%20The%20Pan%20Piper.m4a - File Folder Count4 - Library Folder Count1 - - 3422 - - Track ID3422 - NameSaeta - ArtistMiles Davis - ComposerGil Evans - AlbumSketches Of Spain - GenreJazz - KindAAC audio file - Size7493460 - Total Time308405 - Disc Number1 - Disc Count1 - Track Number4 - Track Count8 - Year1960 - Date Modified2006-08-08T12:23:12Z - Date Added2009-10-03T14:55:19Z - Bit Rate192 - Sample Rate44100 - Normalization715 - Artwork Count1 - Persistent IDA08E285EE3DE8C70 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Miles%20Davis/Sketches%20Of%20Spain/04%20Saeta.m4a - File Folder Count4 - Library Folder Count1 - - 3424 - - Track ID3424 - NameSolea - ArtistMiles Davis - ComposerGil Evans - AlbumSketches Of Spain - GenreJazz - KindAAC audio file - Size17851104 - Total Time740668 - Disc Number1 - Disc Count1 - Track Number5 - Track Count8 - Year1960 - Date Modified2006-08-08T12:23:12Z - Date Added2009-10-03T14:55:19Z - Bit Rate192 - Sample Rate44100 - Normalization692 - Artwork Count1 - Persistent ID69829D95E0A03FE5 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Miles%20Davis/Sketches%20Of%20Spain/05%20Solea.m4a - File Folder Count4 - Library Folder Count1 - - 3426 - - Track ID3426 - NameSong Of Our Country - ArtistMiles Davis - ComposerGil Evans - AlbumSketches Of Spain - GenreJazz - KindAAC audio file - Size4959047 - Total Time208444 - Disc Number1 - Disc Count1 - Track Number6 - Track Count8 - Year1960 - Date Modified2006-08-08T12:23:10Z - Date Added2009-10-03T14:55:19Z - Bit Rate192 - Sample Rate44100 - Normalization1002 - Artwork Count1 - Persistent ID2BA6F170401A002F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Miles%20Davis/Sketches%20Of%20Spain/06%20Song%20Of%20Our%20Country.m4a - File Folder Count4 - Library Folder Count1 - - 3428 - - Track ID3428 - NameConcierto De Aranjuez (Part One) - ArtistMiles Davis - ComposerJ. Rodrigo - AlbumSketches Of Spain - GenreJazz - KindAAC audio file - Size17597352 - Total Time725947 - Disc Number1 - Disc Count1 - Track Number7 - Track Count8 - Year1960 - Date Modified2006-08-08T12:23:10Z - Date Added2009-10-03T14:55:20Z - Bit Rate192 - Sample Rate44100 - Normalization486 - Artwork Count1 - Persistent IDB88DE8CF31BC1FC9 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Miles%20Davis/Sketches%20Of%20Spain/07%20Concierto%20De%20Aranjuez%20(Part%20One).m4a - File Folder Count4 - Library Folder Count1 - - 3430 - - Track ID3430 - NameConcierto De Aranjuez (Part Two Ending) - ArtistMiles Davis - ComposerJ. Rodrigo - AlbumSketches Of Spain - GenreJazz - KindAAC audio file - Size5191512 - Total Time213180 - Disc Number1 - Disc Count1 - Track Number8 - Track Count8 - Year1960 - Date Modified2006-08-08T12:23:10Z - Date Added2009-10-03T14:55:20Z - Bit Rate192 - Sample Rate44100 - Normalization596 - Artwork Count1 - Persistent ID9127EEBCAEA607B1 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Miles%20Davis/Sketches%20Of%20Spain/08%20Concierto%20De%20Aranjuez%20(Part%20Two%20Ending).m4a - File Folder Count4 - Library Folder Count1 - - 3432 - - Track ID3432 - NameSo What - ArtistMiles Davis - ComposerMiles Davis - AlbumKind Of Blue - GenreJazz - KindAAC audio file - Size13154266 - Total Time545830 - Disc Number1 - Disc Count1 - Track Number1 - Track Count5 - Year1962 - Date Modified2006-07-30T08:32:06Z - Date Added2009-10-03T14:55:20Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3389791251 - Play Date UTC2011-06-01T11:10:51Z - Skip Count2 - Skip Date2013-09-29T14:08:08Z - Normalization1242 - Artwork Count1 - Persistent IDFE64EBA1AAB2EE39 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Miles%20Davis/Kind%20Of%20Blue/01%20So%20What.m4a - File Folder Count4 - Library Folder Count1 - - 3434 - - Track ID3434 - NameFreddie Freeloader - ArtistMiles Davis - ComposerMiles Davis - AlbumKind Of Blue - GenreJazz - KindAAC audio file - Size13891424 - Total Time575830 - Disc Number1 - Disc Count1 - Track Number2 - Track Count5 - Year1962 - Date Modified2006-07-30T08:32:08Z - Date Added2009-10-03T14:55:20Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3389791827 - Play Date UTC2011-06-01T11:20:27Z - Normalization1255 - Artwork Count1 - Persistent IDCF3BC010B57179FF - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Miles%20Davis/Kind%20Of%20Blue/02%20Freddie%20Freeloader.m4a - File Folder Count4 - Library Folder Count1 - - 3436 - - Track ID3436 - NameBlue In Green - ArtistMiles Davis - ComposerMiles Davis - AlbumKind Of Blue - GenreJazz - KindAAC audio file - Size7924093 - Total Time328653 - Disc Number1 - Disc Count1 - Track Number3 - Track Count5 - Year1962 - Date Modified2006-07-30T08:32:08Z - Date Added2009-10-03T14:55:20Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3389792156 - Play Date UTC2011-06-01T11:25:56Z - Normalization454 - Artwork Count1 - Persistent ID891A0E18014C21E1 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Miles%20Davis/Kind%20Of%20Blue/03%20Blue%20In%20Green.m4a - File Folder Count4 - Library Folder Count1 - - 3438 - - Track ID3438 - NameAll Blues - ArtistMiles Davis - ComposerMiles Davis - AlbumKind Of Blue - GenreJazz - KindAAC audio file - Size16758594 - Total Time693880 - Disc Number1 - Disc Count1 - Track Number4 - Track Count5 - Year1962 - Date Modified2006-07-30T08:32:08Z - Date Added2009-10-03T14:55:20Z - Bit Rate192 - Sample Rate44100 - Normalization652 - Artwork Count1 - Persistent ID0F3E03E505FA78DE - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Miles%20Davis/Kind%20Of%20Blue/04%20All%20Blues.m4a - File Folder Count4 - Library Folder Count1 - - 3440 - - Track ID3440 - NameFlamenco Sketches - ArtistMiles Davis - ComposerMiles Davis - AlbumKind Of Blue - GenreJazz - KindAAC audio file - Size13693719 - Total Time565125 - Disc Number1 - Disc Count1 - Track Number5 - Track Count5 - Year1962 - Date Modified2006-07-30T08:32:08Z - Date Added2009-10-03T14:55:20Z - Bit Rate192 - Sample Rate44100 - Normalization535 - Artwork Count1 - Persistent ID0603BCEA2CD9EAAD - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Miles%20Davis/Kind%20Of%20Blue/05%20Flamenco%20Sketches.m4a - File Folder Count4 - Library Folder Count1 - - 3442 - - Track ID3442 - NameMove - ArtistMiles Davis - ComposerBest, Denzil - AlbumBirth Of The Cool - GenreJazz - KindAAC audio file - Size3719175 - Total Time155270 - Disc Number1 - Disc Count1 - Track Number1 - Track Count12 - Year1949 - Date Modified2006-07-28T02:53:42Z - Date Added2009-10-03T14:55:21Z - Bit Rate192 - Sample Rate44100 - Normalization2320 - Artwork Count1 - Persistent ID9EAE28C7D746D2B1 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Miles%20Davis/Birth%20Of%20The%20Cool/01%20Move.m4a - File Folder Count4 - Library Folder Count1 - - 3444 - - Track ID3444 - NameJeru - ArtistMiles Davis - ComposerMulligan, Gerry - AlbumBirth Of The Cool - GenreJazz - KindAAC audio file - Size4658461 - Total Time195022 - Disc Number1 - Disc Count1 - Track Number2 - Track Count12 - Year1949 - Date Modified2006-07-28T02:53:44Z - Date Added2009-10-03T14:55:21Z - Bit Rate192 - Sample Rate44100 - Normalization1460 - Artwork Count1 - Persistent ID5B465102592013E3 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Miles%20Davis/Birth%20Of%20The%20Cool/02%20Jeru.m4a - File Folder Count4 - Library Folder Count1 - - 3446 - - Track ID3446 - NameMoon Dreams - ArtistMiles Davis - ComposerMacGregor, Chummy/Mercer, Johnny - AlbumBirth Of The Cool - GenreJazz - KindAAC audio file - Size4835138 - Total Time201919 - Disc Number1 - Disc Count1 - Track Number3 - Track Count12 - Year1950 - Date Modified2006-07-28T02:53:44Z - Date Added2009-10-03T14:55:21Z - Bit Rate192 - Sample Rate44100 - Normalization1329 - Artwork Count1 - Persistent IDFA2F148F3BFB84F1 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Miles%20Davis/Birth%20Of%20The%20Cool/03%20Moon%20Dreams.m4a - File Folder Count4 - Library Folder Count1 - - 3448 - - Track ID3448 - NameVenus De Milo - ArtistMiles Davis - ComposerMulligan, Gerry - AlbumBirth Of The Cool - GenreJazz - KindAAC audio file - Size4653919 - Total Time194419 - Disc Number1 - Disc Count1 - Track Number4 - Track Count12 - Year1949 - Date Modified2006-07-28T02:53:46Z - Date Added2009-10-03T14:55:21Z - Bit Rate192 - Sample Rate44100 - Normalization1688 - Artwork Count1 - Persistent ID39B84EDDDB5071F9 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Miles%20Davis/Birth%20Of%20The%20Cool/04%20Venus%20De%20Milo.m4a - File Folder Count4 - Library Folder Count1 - - 3450 - - Track ID3450 - NameBudo - ArtistMiles Davis - ComposerDavis, Miles/Powell, Bud - AlbumBirth Of The Cool - GenreJazz - KindAAC audio file - Size3718117 - Total Time154411 - Disc Number1 - Disc Count1 - Track Number5 - Track Count12 - Year1949 - Date Modified2006-07-28T02:53:46Z - Date Added2009-10-03T14:55:21Z - Bit Rate192 - Sample Rate44100 - Normalization1208 - Artwork Count1 - Persistent ID134D5123B0A42F9A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Miles%20Davis/Birth%20Of%20The%20Cool/05%20Budo.m4a - File Folder Count4 - Library Folder Count1 - - 3452 - - Track ID3452 - NameDeception - ArtistMiles Davis - ComposerDavis, Miles - AlbumBirth Of The Cool - GenreJazz - KindAAC audio file - Size4071754 - Total Time170316 - Disc Number1 - Disc Count1 - Track Number6 - Track Count12 - Year1950 - Date Modified2006-07-28T02:53:46Z - Date Added2009-10-03T14:55:21Z - Bit Rate192 - Sample Rate44100 - Normalization1423 - Artwork Count1 - Persistent ID58CC646C3883719B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Miles%20Davis/Birth%20Of%20The%20Cool/06%20Deception.m4a - File Folder Count4 - Library Folder Count1 - - 3454 - - Track ID3454 - NameGodchild - ArtistMiles Davis - ComposerWallington, George - AlbumBirth Of The Cool - GenreJazz - KindAAC audio file - Size4610792 - Total Time192817 - Disc Number1 - Disc Count1 - Track Number7 - Track Count12 - Year1949 - Date Modified2006-07-28T02:53:48Z - Date Added2009-10-03T14:55:21Z - Bit Rate192 - Sample Rate44100 - Normalization1572 - Artwork Count1 - Persistent ID96391930E2373924 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Miles%20Davis/Birth%20Of%20The%20Cool/07%20Godchild.m4a - File Folder Count4 - Library Folder Count1 - - 3456 - - Track ID3456 - NameBoplicity - ArtistMiles Davis - ComposerHenry, Cleo - AlbumBirth Of The Cool - GenreJazz - KindAAC audio file - Size4364416 - Total Time182577 - Disc Number1 - Disc Count1 - Track Number8 - Track Count12 - Year1949 - Date Modified2006-07-28T02:53:48Z - Date Added2009-10-03T14:55:21Z - Bit Rate192 - Sample Rate44100 - Normalization1233 - Artwork Count1 - Persistent ID76A9F18BF97CB817 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Miles%20Davis/Birth%20Of%20The%20Cool/08%20Boplicity.m4a - File Folder Count4 - Library Folder Count1 - - 3458 - - Track ID3458 - NameRocker - ArtistMiles Davis - ComposerMulligan, Gerry - AlbumBirth Of The Cool - GenreJazz - KindAAC audio file - Size4493813 - Total Time187824 - Disc Number1 - Disc Count1 - Track Number9 - Track Count12 - Year1950 - Date Modified2006-07-28T02:53:50Z - Date Added2009-10-03T14:55:22Z - Bit Rate192 - Sample Rate44100 - Normalization1240 - Artwork Count1 - Persistent IDA9E8B0A3D4D3E1CE - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Miles%20Davis/Birth%20Of%20The%20Cool/09%20Rocker.m4a - File Folder Count4 - Library Folder Count1 - - 3460 - - Track ID3460 - NameIsrael - ArtistMiles Davis - ComposerCarisi, Johnny - AlbumBirth Of The Cool - GenreJazz - KindAAC audio file - Size3297477 - Total Time139527 - Disc Number1 - Disc Count1 - Track Number10 - Track Count12 - Year1949 - Date Modified2006-07-28T02:53:50Z - Date Added2009-10-03T14:55:22Z - Bit Rate192 - Sample Rate44100 - Normalization2263 - Artwork Count1 - Persistent IDCFCBF97D89BDA184 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Miles%20Davis/Birth%20Of%20The%20Cool/10%20Israel.m4a - File Folder Count4 - Library Folder Count1 - - 3462 - - Track ID3462 - NameRouge - ArtistMiles Davis - ComposerLewis, John - AlbumBirth Of The Cool - GenreJazz - KindAAC audio file - Size4711838 - Total Time197321 - Disc Number1 - Disc Count1 - Track Number11 - Track Count12 - Year1949 - Date Modified2006-07-28T02:53:50Z - Date Added2009-10-03T14:55:22Z - Bit Rate192 - Sample Rate44100 - Normalization1833 - Artwork Count1 - Persistent ID61EA36033EC59292 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Miles%20Davis/Birth%20Of%20The%20Cool/11%20Rouge.m4a - File Folder Count4 - Library Folder Count1 - - 3464 - - Track ID3464 - NameDarn That Dream - ArtistMiles Davis - ComposerDe Lange, Eddie/Van Heusen, Jimmy - AlbumBirth Of The Cool - GenreJazz - KindAAC audio file - Size4950416 - Total Time204961 - Disc Number1 - Disc Count1 - Track Number12 - Track Count12 - Year1950 - Date Modified2006-07-28T02:53:52Z - Date Added2009-10-03T14:55:22Z - Bit Rate192 - Sample Rate44100 - Normalization1054 - Artwork Count1 - Persistent ID6C3A2557F6B7021D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Miles%20Davis/Birth%20Of%20The%20Cool/12%20Darn%20That%20Dream.m4a - File Folder Count4 - Library Folder Count1 - - 3466 - - Track ID3466 - NameI Waited For You - ArtistMiles Davis - ComposerGil Fuller - AlbumBallads And Blues - GenreJazz - KindAAC audio file - Size5101013 - Total Time212507 - Disc Number1 - Disc Count1 - Track Number1 - Track Count9 - Year1996 - Date Modified2006-08-13T06:44:12Z - Date Added2009-10-03T14:55:22Z - Bit Rate192 - Sample Rate44100 - Normalization914 - Artwork Count1 - Persistent ID94B93DBBC5618BE3 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Miles%20Davis/Ballads%20And%20Blues/01%20I%20Waited%20For%20You.m4a - File Folder Count4 - Library Folder Count1 - - 3468 - - Track ID3468 - NameYesterdays - ArtistMiles Davis - ComposerJerome Kern/Otto Harbach - AlbumBallads And Blues - GenreJazz - KindAAC audio file - Size5449543 - Total Time226903 - Disc Number1 - Disc Count1 - Track Number2 - Track Count9 - Year1996 - Date Modified2006-08-13T06:44:10Z - Date Added2009-10-03T14:55:22Z - Bit Rate192 - Sample Rate44100 - Normalization685 - Artwork Count1 - Persistent IDB64C23ABCA689459 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Miles%20Davis/Ballads%20And%20Blues/02%20Yesterdays.m4a - File Folder Count4 - Library Folder Count1 - - 3470 - - Track ID3470 - NameOne For Daddy-O - ArtistMiles Davis - ComposerNat Adderley - AlbumBallads And Blues - GenreJazz - KindAAC audio file - Size12236431 - Total Time507749 - Disc Number1 - Disc Count1 - Track Number3 - Track Count9 - Year1996 - Date Modified2006-08-13T06:44:08Z - Date Added2009-10-03T14:55:22Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3437052457 - Play Date UTC2012-11-29T11:17:37Z - Normalization1259 - Artwork Count1 - Persistent ID16EC5DAB667084E8 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Miles%20Davis/Ballads%20And%20Blues/03%20One%20For%20Daddy-O.m4a - File Folder Count4 - Library Folder Count1 - - 3472 - - Track ID3472 - NameMoon Dreams - ArtistMiles Davis - ComposerC. MacGregor/J. Mercer - AlbumBallads And Blues - GenreJazz - KindAAC audio file - Size4805265 - Total Time200084 - Disc Number1 - Disc Count1 - Track Number4 - Track Count9 - Year1996 - Date Modified2006-08-13T06:44:02Z - Date Added2009-10-03T14:55:22Z - Bit Rate192 - Sample Rate44100 - Normalization957 - Artwork Count1 - Persistent IDE3102814F5C22467 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Miles%20Davis/Ballads%20And%20Blues/04%20Moon%20Dreams.m4a - File Folder Count4 - Library Folder Count1 - - 3474 - - Track ID3474 - NameHow Deep Is The Ocean - ArtistMiles Davis - ComposerIrving Berlin - AlbumBallads And Blues - GenreJazz - KindAAC audio file - Size6761677 - Total Time281261 - Disc Number1 - Disc Count1 - Track Number5 - Track Count9 - Year1996 - Date Modified2006-08-13T06:44:00Z - Date Added2009-10-03T14:55:23Z - Bit Rate192 - Sample Rate44100 - Normalization632 - Artwork Count1 - Persistent ID0D6799D4050F30DE - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Miles%20Davis/Ballads%20And%20Blues/05%20How%20Deep%20Is%20The%20Ocean.m4a - File Folder Count4 - Library Folder Count1 - - 3476 - - Track ID3476 - NameWierdo - ArtistMiles Davis - ComposerMiles Davis - AlbumBallads And Blues - GenreJazz - KindAAC audio file - Size6874421 - Total Time286045 - Disc Number1 - Disc Count1 - Track Number6 - Track Count9 - Year1996 - Date Modified2006-08-13T06:43:56Z - Date Added2009-10-03T14:55:23Z - Bit Rate192 - Sample Rate44100 - Normalization963 - Artwork Count1 - Persistent IDFFE6D16606BF3065 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Miles%20Davis/Ballads%20And%20Blues/06%20Wierdo.m4a - File Folder Count4 - Library Folder Count1 - - 3478 - - Track ID3478 - NameEnigma - ArtistMiles Davis - ComposerJ.J. Johnson - AlbumBallads And Blues - GenreJazz - KindAAC audio file - Size4918734 - Total Time204937 - Disc Number1 - Disc Count1 - Track Number7 - Track Count9 - Year1996 - Date Modified2006-08-13T06:43:54Z - Date Added2009-10-03T14:55:23Z - Bit Rate192 - Sample Rate44100 - Normalization1119 - Artwork Count1 - Persistent ID2C2682B5AE1911B6 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Miles%20Davis/Ballads%20And%20Blues/07%20Enigma.m4a - File Folder Count4 - Library Folder Count1 - - 3480 - - Track ID3480 - NameIt Never Entered My Mind - ArtistMiles Davis - ComposerHart/Rodgers - AlbumBallads And Blues - GenreJazz - KindAAC audio file - Size5868598 - Total Time244388 - Disc Number1 - Disc Count1 - Track Number8 - Track Count9 - Year1996 - Date Modified2006-08-13T06:43:52Z - Date Added2009-10-03T14:55:23Z - Bit Rate192 - Sample Rate44100 - Normalization541 - Artwork Count1 - Persistent ID84AD60A201CE61F8 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Miles%20Davis/Ballads%20And%20Blues/08%20It%20Never%20Entered%20My%20Mind.m4a - File Folder Count4 - Library Folder Count1 - - 3482 - - Track ID3482 - NameAutumn Leaves - ArtistMiles Davis - ComposerJacques Prevert/Johnny Mercer/Joseph Kosma - AlbumBallads And Blues - GenreJazz - KindAAC audio file - Size15940147 - Total Time658818 - Disc Number1 - Disc Count1 - Track Number9 - Track Count9 - Year1996 - Date Modified2006-08-13T06:43:48Z - Date Added2009-10-03T14:55:23Z - Bit Rate192 - Sample Rate44100 - Normalization1212 - Artwork Count1 - Persistent ID73B3C1CF9DDBFCF0 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Miles%20Davis/Ballads%20And%20Blues/09%20Autumn%20Leaves.m4a - File Folder Count4 - Library Folder Count1 - - 3484 - - Track ID3484 - NameUdu Chant - ArtistMickey Hart - ComposerSikiru Adepoju, Mickey Hart, Zakir Hussain, Airto Moreira - AlbumPlanet Drum - GenreWorld - KindAAC audio file - Size5394974 - Total Time221145 - Disc Number1 - Disc Count1 - Track Number1 - Track Count13 - Year1991 - Date Modified2006-08-07T15:15:10Z - Date Added2009-10-03T14:55:23Z - Bit Rate192 - Sample Rate44100 - Play Count3 - Play Date3378127219 - Play Date UTC2011-01-17T11:10:19Z - Skip Count1 - Skip Date2014-01-12T15:49:01Z - Normalization1259 - Artwork Count1 - Persistent ID2B032417AE44DC20 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mickey%20Hart/Planet%20Drum/01%20Udu%20Chant.m4a - File Folder Count4 - Library Folder Count1 - - 3486 - - Track ID3486 - NameIsland Groove - ArtistMickey Hart - ComposerSikiru Adepoju, Mickey Hart, Zakir Hussain, Airto Moreira, Babatunde Olatunji - AlbumPlanet Drum - GenreWorld - KindAAC audio file - Size8359244 - Total Time343909 - Disc Number1 - Disc Count1 - Track Number2 - Track Count13 - Year1991 - Date Modified2006-08-07T15:15:10Z - Date Added2009-10-03T14:55:23Z - Bit Rate192 - Sample Rate44100 - Normalization1151 - Artwork Count1 - Persistent ID5915F196039F13B3 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mickey%20Hart/Planet%20Drum/02%20Island%20Groove.m4a - File Folder Count4 - Library Folder Count1 - - 3488 - - Track ID3488 - NameLight Over Shadow - ArtistMickey Hart - ComposerAirto Moreira, Babatunde Olatunji, Flora Purim - AlbumPlanet Drum - GenreWorld - KindAAC audio file - Size5649122 - Total Time231455 - Disc Number1 - Disc Count1 - Track Number3 - Track Count13 - Year1991 - Date Modified2006-08-07T15:15:10Z - Date Added2009-10-03T14:55:23Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Persistent ID5FE92046266D7F16 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mickey%20Hart/Planet%20Drum/03%20Light%20Over%20Shadow.m4a - File Folder Count4 - Library Folder Count1 - - 3490 - - Track ID3490 - NameDance Of The Hunter's Fire - ArtistMickey Hart - ComposerSikiru Adepoju, Airto Moreira, Babatunde Olatunji, Flora Purim, T. H. “Vikku” Vinayakram - AlbumPlanet Drum - GenreWorld - KindAAC audio file - Size4453553 - Total Time181671 - Disc Number1 - Disc Count1 - Track Number4 - Track Count13 - Year1991 - Date Modified2006-08-07T15:15:10Z - Date Added2009-10-03T14:55:24Z - Bit Rate192 - Sample Rate44100 - Normalization1200 - Artwork Count1 - Persistent IDA32F78AE2438D783 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mickey%20Hart/Planet%20Drum/04%20Dance%20Of%20The%20Hunter's%20Fire.m4a - File Folder Count4 - Library Folder Count1 - - 3492 - - Track ID3492 - NameJewe (You Are The One) - ArtistMickey Hart - ComposerBabatunde Olatunji - AlbumPlanet Drum - GenreWorld - KindAAC audio file - Size6024645 - Total Time247082 - Disc Number1 - Disc Count1 - Track Number5 - Track Count13 - Year1991 - Date Modified2006-08-07T15:15:10Z - Date Added2009-10-03T14:55:24Z - Bit Rate192 - Sample Rate44100 - Normalization1159 - Artwork Count1 - Persistent IDA6303BD922A35C82 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mickey%20Hart/Planet%20Drum/05%20Jewe%20(You%20Are%20The%20One).m4a - File Folder Count4 - Library Folder Count1 - - 3494 - - Track ID3494 - NameThe Hunt - ArtistMickey Hart - ComposerSikiru Adepoju, Mickey Hart, Zakir Hussain, Airto Moreira, Babatunde Olatunji, T. H. “Vikku” Vinayakram - AlbumPlanet Drum - GenreWorld - KindAAC audio file - Size5515948 - Total Time225905 - Disc Number1 - Disc Count1 - Track Number6 - Track Count13 - Year1991 - Date Modified2006-08-07T15:15:10Z - Date Added2009-10-03T14:55:24Z - Bit Rate192 - Sample Rate44100 - Normalization1183 - Artwork Count1 - Sort NameHunt - Persistent IDEE7577CD7CC1DFF1 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mickey%20Hart/Planet%20Drum/06%20The%20Hunt.m4a - File Folder Count4 - Library Folder Count1 - - 3496 - - Track ID3496 - NameTemple Caves - ArtistMickey Hart - ComposerSikiru Adepoju, Mickey Hart, Zakir Hussain, Airto Moreira, Babatunde Olatunji - AlbumPlanet Drum - GenreWorld - KindAAC audio file - Size4849679 - Total Time199179 - Disc Number1 - Disc Count1 - Track Number7 - Track Count13 - Year1991 - Date Modified2006-08-07T15:15:10Z - Date Added2009-10-03T14:55:24Z - Bit Rate192 - Sample Rate44100 - Normalization1117 - Artwork Count1 - Persistent ID99E9D0C5A8B2051E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mickey%20Hart/Planet%20Drum/07%20Temple%20Caves.m4a - File Folder Count4 - Library Folder Count1 - - 3498 - - Track ID3498 - NameThe Dancing Sorcerer - ArtistMickey Hart - ComposerZakir Hussain, Airto Moreira - AlbumPlanet Drum - GenreWorld - KindAAC audio file - Size4343732 - Total Time177097 - Disc Number1 - Disc Count1 - Track Number8 - Track Count13 - Year1991 - Date Modified2006-08-07T15:15:12Z - Date Added2009-10-03T14:55:24Z - Bit Rate192 - Sample Rate44100 - Normalization976 - Artwork Count1 - Sort NameDancing Sorcerer - Persistent ID57FFEB75A2BD3F17 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mickey%20Hart/Planet%20Drum/08%20The%20Dancing%20Sorcerer.m4a - File Folder Count4 - Library Folder Count1 - - 3500 - - Track ID3500 - NameBones - ArtistMickey Hart - ComposerMickey Hart, Zakir Hussain, Babatunde Olatunji, Flora Purim - AlbumPlanet Drum - GenreWorld - KindAAC audio file - Size6169530 - Total Time253119 - Disc Number1 - Disc Count1 - Track Number9 - Track Count13 - Year1991 - Date Modified2006-08-07T15:15:12Z - Date Added2009-10-03T14:55:24Z - Bit Rate192 - Sample Rate44100 - Normalization930 - Artwork Count1 - Persistent IDBCD8FF9FB18D6D78 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mickey%20Hart/Planet%20Drum/09%20Bones.m4a - File Folder Count4 - Library Folder Count1 - - 3502 - - Track ID3502 - NameLost River - ArtistMickey Hart - ComposerSikiru Adepoju, Mickey Hart, Zakir Hussain, Airto Moreira, Babatunde Olatunji, Flora Purim - AlbumPlanet Drum - GenreWorld - KindAAC audio file - Size4363201 - Total Time177909 - Disc Number1 - Disc Count1 - Track Number10 - Track Count13 - Year1991 - Date Modified2006-08-07T15:15:12Z - Date Added2009-10-03T14:55:24Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Persistent ID6F04FA6851B75949 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mickey%20Hart/Planet%20Drum/10%20Lost%20River.m4a - File Folder Count4 - Library Folder Count1 - - 3504 - - Track ID3504 - NameEvening Samba - ArtistMickey Hart - ComposerSikiru Adepoju, Mickey Hart, Zakir Hussain, Airto Moreira, Babatunde Olatunji, T. H. “Vikku” Vinayakram - AlbumPlanet Drum - GenreWorld - KindAAC audio file - Size6661701 - Total Time273529 - Disc Number1 - Disc Count1 - Track Number11 - Track Count13 - Year1991 - Date Modified2006-08-07T15:15:12Z - Date Added2009-10-03T14:55:24Z - Bit Rate192 - Sample Rate44100 - Normalization1090 - Artwork Count1 - Persistent ID21676665E3B08FDD - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mickey%20Hart/Planet%20Drum/11%20Evening%20Samba.m4a - File Folder Count4 - Library Folder Count1 - - 3506 - - Track ID3506 - NameIyanu (Surprises) - ArtistMickey Hart - ComposerBabatunde Olatunji - AlbumPlanet Drum - GenreWorld - KindAAC audio file - Size3052699 - Total Time123342 - Disc Number1 - Disc Count1 - Track Number12 - Track Count13 - Year1991 - Date Modified2006-08-07T15:15:12Z - Date Added2009-10-03T14:55:25Z - Bit Rate192 - Sample Rate44100 - Normalization1189 - Artwork Count1 - Persistent IDE27691D2F2EA77AB - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mickey%20Hart/Planet%20Drum/12%20Iyanu%20(Surprises).m4a - File Folder Count4 - Library Folder Count1 - - 3508 - - Track ID3508 - NameMysterious Island - ArtistMickey Hart - ComposerMickey Hart, Airto Moreira, Flora Purim, Jeff Sterling - AlbumPlanet Drum - GenreWorld - KindAAC audio file - Size8363902 - Total Time343886 - Disc Number1 - Disc Count1 - Track Number13 - Track Count13 - Year1991 - Date Modified2006-08-07T15:15:12Z - Date Added2009-10-03T14:55:25Z - Bit Rate192 - Sample Rate44100 - Normalization1000 - Artwork Count1 - Persistent IDC1E7B9E8EE5967EE - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mickey%20Hart/Planet%20Drum/13%20Mysterious%20Island.m4a - File Folder Count4 - Library Folder Count1 - - 3510 - - Track ID3510 - NamePassion Dance - ArtistMcCoy Tyner - ComposerMcCoy Tyner (piano), Joe Henderson (tenor sax), Ron Carter (bass), Elvin Jones (drums) - AlbumThe Real McCoy - GenreJazz - KindAAC audio file - Size18813674 - Total Time528466 - Disc Number1 - Disc Count1 - Track Number1 - Track Count5 - Year1976 - BPM234 - Date Modified2009-06-15T13:45:34Z - Date Added2009-10-03T14:55:26Z - Bit Rate256 - Sample Rate44100 - Normalization1310 - Artwork Count1 - Sort AlbumReal McCoy - Persistent ID788E42F1218B4BB0 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/McCoy%20Tyner/The%20Real%20McCoy/01%20Passion%20Dance.m4a - File Folder Count4 - Library Folder Count1 - - 3512 - - Track ID3512 - NameContemplation - ArtistMcCoy Tyner - ComposerMcCoy Tyner (piano), Joe Henderson (tenor sax), Ron Carter (bass), Elvin Jones (drums) - AlbumThe Real McCoy - GenreJazz - KindAAC audio file - Size19332051 - Total Time555706 - Disc Number1 - Disc Count1 - Track Number2 - Track Count5 - Year1976 - BPM104 - Date Modified2009-06-15T13:45:33Z - Date Added2009-10-03T14:55:26Z - Bit Rate256 - Sample Rate44100 - Normalization891 - Artwork Count1 - Sort AlbumReal McCoy - Persistent IDBDB490A66E0AD7B1 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/McCoy%20Tyner/The%20Real%20McCoy/02%20Contemplation.m4a - File Folder Count4 - Library Folder Count1 - - 3514 - - Track ID3514 - NameFour By Five - ArtistMcCoy Tyner - ComposerMcCoy Tyner (piano), Joe Henderson (tenor sax), Ron Carter (bass), Elvin Jones (drums) - AlbumThe Real McCoy - GenreJazz - KindAAC audio file - Size14184285 - Total Time398493 - Disc Number1 - Disc Count1 - Track Number3 - Track Count5 - Year1976 - BPM270 - Date Modified2009-06-15T13:45:32Z - Date Added2009-10-03T14:55:26Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3435945943 - Play Date UTC2012-11-16T15:55:43Z - Normalization1304 - Artwork Count1 - Sort AlbumReal McCoy - Persistent ID6BB76CCB558E2809 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/McCoy%20Tyner/The%20Real%20McCoy/03%20Four%20By%20Five.m4a - File Folder Count4 - Library Folder Count1 - - 3516 - - Track ID3516 - NameSearch for Peace - ArtistMcCoy Tyner - ComposerMcCoy Tyner (piano), Joe Henderson (tenor sax), Ron Carter (bass), Elvin Jones (drums) - AlbumThe Real McCoy - GenreJazz - KindAAC audio file - Size13637173 - Total Time391840 - Disc Number1 - Disc Count1 - Track Number4 - Track Count5 - Year1976 - BPM58 - Date Modified2009-06-15T13:45:31Z - Date Added2009-10-03T14:55:26Z - Bit Rate256 - Sample Rate44100 - Play Count2 - Play Date3435946335 - Play Date UTC2012-11-16T16:02:15Z - Normalization780 - Artwork Count1 - Sort AlbumReal McCoy - Persistent IDCF6F57746A75DD53 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/McCoy%20Tyner/The%20Real%20McCoy/04%20Search%20for%20Peace.m4a - File Folder Count4 - Library Folder Count1 - - 3518 - - Track ID3518 - NameBlues on the Corner - ArtistMcCoy Tyner - ComposerMcCoy Tyner (piano), Joe Henderson (tenor sax), Ron Carter (bass), Elvin Jones (drums) - AlbumThe Real McCoy - GenreJazz - KindAAC audio file - Size12583958 - Total Time358360 - Disc Number1 - Disc Count1 - Track Number5 - Track Count5 - Year1976 - BPM118 - Date Modified2009-06-15T13:45:31Z - Date Added2009-10-03T14:55:26Z - Bit Rate256 - Sample Rate44100 - Play Count2 - Play Date3435946693 - Play Date UTC2012-11-16T16:08:13Z - Normalization1236 - Artwork Count1 - Sort AlbumReal McCoy - Persistent ID298581B56CDB78FC - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/McCoy%20Tyner/The%20Real%20McCoy/05%20Blues%20on%20the%20Corner.m4a - File Folder Count4 - Library Folder Count1 - - 3520 - - Track ID3520 - NameBellini: Norma: - Casta Diva - ArtistMaria Callas - ComposerBellini, Vincenzo - AlbumMaria Callas, The Legend - GenreClassical - KindAAC audio file - Size8066195 - Total Time338266 - Disc Number1 - Disc Count1 - Track Number1 - Track Count17 - Year2000 - Date Modified2006-08-13T06:43:40Z - Date Added2009-10-03T14:55:29Z - Bit Rate192 - Sample Rate44100 - Normalization974 - Artwork Count1 - Persistent IDC5504160D16B8325 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Maria%20Callas/Maria%20Callas,%20The%20Legend/01%20Bellini_%20Norma_%20-%20Casta%20Diva.m4a - File Folder Count4 - Library Folder Count1 - - 3522 - - Track ID3522 - NameCatalani: La Wally - Ebben? Ne Andro Lontana - ArtistMaria Callas - ComposerCatalani, Alfredo - AlbumMaria Callas, The Legend - GenreClassical - KindAAC audio file - Size7050008 - Total Time295100 - Disc Number1 - Disc Count1 - Track Number2 - Track Count17 - Year2000 - Date Modified2006-08-13T06:43:36Z - Date Added2009-10-03T14:55:29Z - Bit Rate192 - Sample Rate44100 - Normalization1002 - Artwork Count1 - Persistent IDAAAC562C2F374EBB - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Maria%20Callas/Maria%20Callas,%20The%20Legend/02%20Catalani_%20La%20Wally%20-%20Ebben_%20Ne%20Andro%20Lontana.m4a - File Folder Count4 - Library Folder Count1 - - 3524 - - Track ID3524 - NamePuccini: Gianni Schicchi - O Mio Babbinio Caro - ArtistMaria Callas - ComposerPuccini, Giacomo (1858-1924) - AlbumMaria Callas, The Legend - GenreClassical - KindAAC audio file - Size3758979 - Total Time158660 - Disc Number1 - Disc Count1 - Track Number3 - Track Count17 - Year2000 - Date Modified2006-08-13T06:43:34Z - Date Added2009-10-03T14:55:29Z - Bit Rate192 - Sample Rate44100 - Normalization637 - Artwork Count1 - Persistent ID25C62F000F0AF8F8 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Maria%20Callas/Maria%20Callas,%20The%20Legend/03%20Puccini_%20Gianni%20Schicchi%20-%20O%20Mio%20Babbinio%20Caro.m4a - File Folder Count4 - Library Folder Count1 - - 3526 - - Track ID3526 - NameGiordano: Andrea Chénier - La Mamma Morta - ArtistMaria Callas - ComposerGiordano, Umberto - AlbumMaria Callas, The Legend - GenreClassical - KindAAC audio file - Size7092899 - Total Time297353 - Disc Number1 - Disc Count1 - Track Number4 - Track Count17 - Year2000 - Date Modified2006-08-13T06:43:32Z - Date Added2009-10-03T14:55:29Z - Bit Rate192 - Sample Rate44100 - Normalization1092 - Artwork Count1 - Persistent ID880AE6D8EDA3B8B5 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Maria%20Callas/Maria%20Callas,%20The%20Legend/04%20Giordano_%20Andrea%20Che%CC%81nier%20-%20La%20Mamma%20Morta.m4a - File Folder Count4 - Library Folder Count1 - - 3528 - - Track ID3528 - NamePuccini: Tosca - Vissi D'arte - ArtistMaria Callas - ComposerPuccini, Giacomo (1858-1924) - AlbumMaria Callas, The Legend - GenreClassical - KindAAC audio file - Size4711439 - Total Time199411 - Disc Number1 - Disc Count1 - Track Number5 - Track Count17 - Year2000 - Date Modified2006-08-13T06:43:28Z - Date Added2009-10-03T14:55:29Z - Bit Rate192 - Sample Rate44100 - Normalization1411 - Artwork Count1 - Persistent ID049ECD644079E938 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Maria%20Callas/Maria%20Callas,%20The%20Legend/05%20Puccini_%20Tosca%20-%20Vissi%20D'arte.m4a - File Folder Count4 - Library Folder Count1 - - 3530 - - Track ID3530 - NamePuccini: Madama Butterfly - Un Be Di Vedremo - ArtistMaria Callas - ComposerPuccini, Giacomo (1858-1924) - AlbumMaria Callas, The Legend - GenreClassical - KindAAC audio file - Size6642556 - Total Time278312 - Disc Number1 - Disc Count1 - Track Number6 - Track Count17 - Year2000 - Date Modified2006-08-13T06:43:26Z - Date Added2009-10-03T14:55:29Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3471622785 - Play Date UTC2014-01-03T14:09:45Z - Normalization662 - Artwork Count1 - Persistent ID824C19B5BB925A2B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Maria%20Callas/Maria%20Callas,%20The%20Legend/06%20Puccini_%20Madama%20Butterfly%20-%20Un%20Be%20Di%20Vedremo.m4a - File Folder Count4 - Library Folder Count1 - - 3532 - - Track ID3532 - NamePuccini: La Bohème - Si, Mi Chiamano Mimi - ArtistMaria Callas - ComposerPuccini, Giacomo (1858-1924) - AlbumMaria Callas, The Legend - GenreClassical - KindAAC audio file - Size6998530 - Total Time290247 - Disc Number1 - Disc Count1 - Track Number7 - Track Count17 - Year2000 - Date Modified2006-08-13T06:43:24Z - Date Added2009-10-03T14:55:29Z - Bit Rate192 - Sample Rate44100 - Normalization813 - Artwork Count1 - Persistent ID2150805AF39F7A7C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Maria%20Callas/Maria%20Callas,%20The%20Legend/07%20Puccini_%20La%20Bohe%CC%80me%20-%20Si,%20Mi%20Chiamano%20Mimi.m4a - File Folder Count4 - Library Folder Count1 - - 3534 - - Track ID3534 - NamePuccini: La Bohème - Donde Lieta Usci - ArtistMaria Callas - ComposerPuccini, Giacomo (1858-1924) - AlbumMaria Callas, The Legend - GenreClassical - KindAAC audio file - Size4864230 - Total Time205379 - Disc Number1 - Disc Count1 - Track Number8 - Track Count17 - Year2000 - Date Modified2006-08-13T06:43:20Z - Date Added2009-10-03T14:55:29Z - Bit Rate192 - Sample Rate44100 - Normalization819 - Artwork Count1 - Persistent IDED3FCD294CD0F7A7 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Maria%20Callas/Maria%20Callas,%20The%20Legend/08%20Puccini_%20La%20Bohe%CC%80me%20-%20Donde%20Lieta%20Usci.m4a - File Folder Count4 - Library Folder Count1 - - 3536 - - Track ID3536 - NameVerdi: La Traviata - Ah, Fors' E Lui - ArtistMaria Callas - ComposerVerdi, Giuseppe - AlbumMaria Callas, The Legend - GenreClassical - KindAAC audio file - Size4787147 - Total Time200990 - Disc Number1 - Disc Count1 - Track Number9 - Track Count17 - Year2000 - Date Modified2006-08-13T06:43:18Z - Date Added2009-10-03T14:55:29Z - Bit Rate192 - Sample Rate44100 - Normalization743 - Artwork Count1 - Persistent ID36C81821160B9D09 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Maria%20Callas/Maria%20Callas,%20The%20Legend/09%20Verdi_%20La%20Traviata%20-%20Ah,%20Fors'%20E%20Lui.m4a - File Folder Count4 - Library Folder Count1 - - 3538 - - Track ID3538 - NameVerdi: La Traviata - Addio, Del Passato - ArtistMaria Callas - ComposerVerdi, Giuseppe - AlbumMaria Callas, The Legend - GenreClassical - KindAAC audio file - Size4714500 - Total Time198552 - Disc Number1 - Disc Count1 - Track Number10 - Track Count17 - Year2000 - Date Modified2006-08-13T06:43:16Z - Date Added2009-10-03T14:55:30Z - Bit Rate192 - Sample Rate44100 - Normalization619 - Artwork Count1 - Persistent ID610B2FCA13181518 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Maria%20Callas/Maria%20Callas,%20The%20Legend/10%20Verdi_%20La%20Traviata%20-%20Addio,%20Del%20Passato.m4a - File Folder Count4 - Library Folder Count1 - - 3540 - - Track ID3540 - NameGluck: Orphee Et Eurydice - J'ai Perdu Mon Eurydice - ArtistMaria Callas - ComposerGluck, Christoph Willibald (1714-1787) - AlbumMaria Callas, The Legend - GenreClassical - KindAAC audio file - Size6377329 - Total Time266308 - Disc Number1 - Disc Count1 - Track Number11 - Track Count17 - Year2000 - Date Modified2006-08-13T06:43:14Z - Date Added2009-10-03T14:55:30Z - Bit Rate192 - Sample Rate44100 - Normalization690 - Artwork Count1 - Persistent ID88ECA1C1B32F9007 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Maria%20Callas/Maria%20Callas,%20The%20Legend/11%20Gluck_%20Orphee%20Et%20Eurydice%20-%20J'ai%20Perdu%20Mon%20Eurydice.m4a - File Folder Count4 - Library Folder Count1 - - 3542 - - Track ID3542 - NameSaint-Saens: Samson Et Dalila - Mon Coeur S'ouvre A Ta Voix - ArtistMaria Callas - ComposerSaint-Saens, Camille (1835-1921) - AlbumMaria Callas, The Legend - GenreClassical - KindAAC audio file - Size7640540 - Total Time319528 - Disc Number1 - Disc Count1 - Track Number12 - Track Count17 - Year2000 - Date Modified2006-08-13T06:43:12Z - Date Added2009-10-03T14:55:30Z - Bit Rate192 - Sample Rate44100 - Normalization985 - Artwork Count1 - Persistent ID26FB90C871D79C0A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Maria%20Callas/Maria%20Callas,%20The%20Legend/12%20Saint-Saens_%20Samson%20Et%20Dalila%20-%20Mon%20Coeur%20S'ouvre%20A%20Ta%20Voix.m4a - File Folder Count4 - Library Folder Count1 - - 3544 - - Track ID3544 - NameBizet: Carmen - L'amour Est Un Oisseau Rebelle (Habanera) - ArtistMaria Callas - ComposerBizet, George - AlbumMaria Callas, The Legend - GenreClassical - KindAAC audio file - Size6278747 - Total Time263684 - Disc Number1 - Disc Count1 - Track Number13 - Track Count17 - Year2000 - Date Modified2006-08-13T06:43:08Z - Date Added2009-10-03T14:55:30Z - Bit Rate192 - Sample Rate44100 - Normalization670 - Artwork Count1 - Persistent ID1F05F60F1129C1DD - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Maria%20Callas/Maria%20Callas,%20The%20Legend/13%20Bizet_%20Carmen%20-%20L'amour%20Est%20Un%20Oisseau%20Rebelle%20(Habanera).m4a - File Folder Count4 - Library Folder Count1 - - 3546 - - Track ID3546 - NameBizet: Carmen - Pres Des Ramparts De Seville (Seguidilla) - ArtistMaria Callas - ComposerBizet, George - AlbumMaria Callas, The Legend - GenreClassical - KindAAC audio file - Size6598984 - Total Time276710 - Disc Number1 - Disc Count1 - Track Number14 - Track Count17 - Year2000 - Date Modified2006-08-13T06:43:04Z - Date Added2009-10-03T14:55:30Z - Bit Rate192 - Sample Rate44100 - Normalization698 - Artwork Count1 - Persistent ID73C1E37113A18E22 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Maria%20Callas/Maria%20Callas,%20The%20Legend/14%20Bizet_%20Carmen%20-%20Pres%20Des%20Ramparts%20De%20Seville%20(Seguidilla).m4a - File Folder Count4 - Library Folder Count1 - - 3548 - - Track ID3548 - NameBizet: Carmen - Les Tringles Des Sistres Tintaient (Gypsy Song) - ArtistMaria Callas - ComposerBizet, George - AlbumMaria Callas, The Legend - GenreClassical - KindAAC audio file - Size6266434 - Total Time263591 - Disc Number1 - Disc Count1 - Track Number15 - Track Count17 - Year2000 - Date Modified2006-08-13T06:43:02Z - Date Added2009-10-03T14:55:30Z - Bit Rate192 - Sample Rate44100 - Normalization1225 - Artwork Count1 - Persistent ID730A7F33516B9BF0 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Maria%20Callas/Maria%20Callas,%20The%20Legend/15%20Bizet_%20Carmen%20-%20Les%20Tringles%20Des%20Sistres%20Tintaient%20(Gypsy%20Song).m4a - File Folder Count4 - Library Folder Count1 - - 3550 - - Track ID3550 - NameRossini: Il Barbiere Di Siviglia - Una Voce Poco Fa - ArtistMaria Callas - ComposerRossini, Giacchino - AlbumMaria Callas, The Legend - GenreClassical - KindAAC audio file - Size9202784 - Total Time385240 - Disc Number1 - Disc Count1 - Track Number16 - Track Count17 - Year2000 - Date Modified2006-08-13T06:43:00Z - Date Added2009-10-03T14:55:31Z - Bit Rate192 - Sample Rate44100 - Normalization1164 - Artwork Count1 - Persistent ID0259834C70CE1FA8 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Maria%20Callas/Maria%20Callas,%20The%20Legend/16%20Rossini_%20Il%20Barbiere%20Di%20Siviglia%20-%20Una%20Voce%20Poco%20Fa.m4a - File Folder Count4 - Library Folder Count1 - - 3552 - - Track ID3552 - NameDonizetti: Lucia Di Lammermoor - Spargi D'amaro Pianto - ArtistMaria Callas - ComposerDonizetti, Gaetano - AlbumMaria Callas, The Legend - GenreClassical - KindAAC audio file - Size5608126 - Total Time233289 - Disc Number1 - Disc Count1 - Track Number17 - Track Count17 - Year2000 - Date Modified2006-08-13T06:42:56Z - Date Added2009-10-03T14:55:31Z - Bit Rate192 - Sample Rate44100 - Normalization1323 - Artwork Count1 - Persistent ID853CC8DE372C5FA7 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Maria%20Callas/Maria%20Callas,%20The%20Legend/17%20Donizetti_%20Lucia%20Di%20Lammermoor%20-%20Spargi%20D'amaro%20Pianto.m4a - File Folder Count4 - Library Folder Count1 - - 3554 - - Track ID3554 - NameMeeting Of The Spirits - ArtistMahavishnu Orchestra - ComposerJohn McLaughlin - AlbumInner Mounting Flame - GenreJazz - KindAAC audio file - Size9997732 - Total Time413638 - Disc Number1 - Disc Count1 - Track Number1 - Track Count8 - Year1971 - BPM160 - Date Modified2006-08-19T12:45:04Z - Date Added2009-10-03T14:55:31Z - Bit Rate192 - Sample Rate44100 - Normalization3092 - Artwork Count1 - Persistent IDD470CDF852E04B4A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mahavishnu%20Orchestra/Inner%20Mounting%20Flame/01%20Meeting%20Of%20The%20Spirits.m4a - File Folder Count4 - Library Folder Count1 - - 3556 - - Track ID3556 - NameDawn - ArtistMahavishnu Orchestra - ComposerJohn McLaughlin - AlbumInner Mounting Flame - GenreJazz - KindAAC audio file - Size7537576 - Total Time311842 - Disc Number1 - Disc Count1 - Track Number2 - Track Count8 - Year1971 - BPM160 - Date Modified2006-08-19T12:45:02Z - Date Added2009-10-03T14:55:31Z - Bit Rate192 - Sample Rate44100 - Normalization1879 - Artwork Count1 - Persistent IDEB9912D1D822CB58 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mahavishnu%20Orchestra/Inner%20Mounting%20Flame/02%20Dawn.m4a - File Folder Count4 - Library Folder Count1 - - 3558 - - Track ID3558 - NameThe Noonward Race - ArtistMahavishnu Orchestra - ComposerJohn McLaughlin - AlbumInner Mounting Flame - GenreJazz - KindAAC audio file - Size9423236 - Total Time389768 - Disc Number1 - Disc Count1 - Track Number3 - Track Count8 - Year1971 - BPM160 - Date Modified2006-08-19T12:45:02Z - Date Added2009-10-03T14:55:31Z - Bit Rate192 - Sample Rate44100 - Normalization4898 - Artwork Count1 - Sort NameNoonward Race - Persistent ID9B21E9264690D54E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mahavishnu%20Orchestra/Inner%20Mounting%20Flame/03%20The%20Noonward%20Race.m4a - File Folder Count4 - Library Folder Count1 - - 3560 - - Track ID3560 - NameA Lotus On Irish Streams - ArtistMahavishnu Orchestra - ComposerJohn McLaughlin - AlbumInner Mounting Flame - GenreJazz - KindAAC audio file - Size8251231 - Total Time341355 - Disc Number1 - Disc Count1 - Track Number4 - Track Count8 - Year1971 - BPM160 - Date Modified2006-08-19T12:45:02Z - Date Added2009-10-03T14:55:31Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Sort NameLotus On Irish Streams - Persistent ID4CDA3111EAE66C61 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mahavishnu%20Orchestra/Inner%20Mounting%20Flame/04%20A%20Lotus%20On%20Irish%20Streams.m4a - File Folder Count4 - Library Folder Count1 - - 3562 - - Track ID3562 - NameVital Transformation - ArtistMahavishnu Orchestra - ComposerJohn McLaughlin - AlbumInner Mounting Flame - GenreJazz - KindAAC audio file - Size9127640 - Total Time377578 - Disc Number1 - Disc Count1 - Track Number5 - Track Count8 - Year1971 - BPM160 - Date Modified2006-08-19T12:45:00Z - Date Added2009-10-03T14:55:31Z - Bit Rate192 - Sample Rate44100 - Normalization3714 - Artwork Count1 - Persistent ID1C917436321154B4 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mahavishnu%20Orchestra/Inner%20Mounting%20Flame/05%20Vital%20Transformation.m4a - File Folder Count4 - Library Folder Count1 - - 3564 - - Track ID3564 - NameThe Dance Of Maya - ArtistMahavishnu Orchestra - ComposerJohn McLaughlin - AlbumInner Mounting Flame - GenreJazz - KindAAC audio file - Size10601168 - Total Time438437 - Disc Number1 - Disc Count1 - Track Number6 - Track Count8 - Year1971 - BPM160 - Date Modified2006-08-19T12:45:00Z - Date Added2009-10-03T14:55:32Z - Bit Rate192 - Sample Rate44100 - Normalization3339 - Artwork Count1 - Sort NameDance Of Maya - Persistent ID337218E2F13B304C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mahavishnu%20Orchestra/Inner%20Mounting%20Flame/06%20The%20Dance%20Of%20Maya.m4a - File Folder Count4 - Library Folder Count1 - - 3566 - - Track ID3566 - NameYou Know, You Know - ArtistMahavishnu Orchestra - ComposerJohn McLaughlin - AlbumInner Mounting Flame - GenreJazz - KindAAC audio file - Size7477020 - Total Time309334 - Disc Number1 - Disc Count1 - Track Number7 - Track Count8 - Year1971 - BPM160 - Date Modified2006-08-19T12:45:00Z - Date Added2009-10-03T14:55:32Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Persistent ID10BC24760AAB702D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mahavishnu%20Orchestra/Inner%20Mounting%20Flame/07%20You%20Know,%20You%20Know.m4a - File Folder Count4 - Library Folder Count1 - - 3568 - - Track ID3568 - NameAwakening - ArtistMahavishnu Orchestra - ComposerJohn McLaughlin - AlbumInner Mounting Flame - GenreJazz - KindAAC audio file - Size5172514 - Total Time213111 - Disc Number1 - Disc Count1 - Track Number8 - Track Count8 - Year1971 - BPM160 - Date Modified2006-08-19T12:45:00Z - Date Added2009-10-03T14:55:32Z - Bit Rate192 - Sample Rate44100 - Normalization4832 - Artwork Count1 - Persistent ID943C17DD027A5B95 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mahavishnu%20Orchestra/Inner%20Mounting%20Flame/08%20Awakening.m4a - File Folder Count4 - Library Folder Count1 - - 3570 - - Track ID3570 - NameTu Bin Bataye - ArtistMadhushree, Naresh Iyer - Composera r rahman - AlbumRang De Basanti - GenreSoundtracks - KindAAC audio file - Size8612031 - Total Time357655 - Track Number4 - Date Modified2006-12-29T04:15:38Z - Date Added2009-10-03T14:55:32Z - Bit Rate192 - Sample Rate44100 - Normalization2101 - Sort Composerr rahman - Persistent ID623A1B768EAE0420 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Madhushree,%20Naresh%20Iyer/Rang%20De%20Basanti/04%20Tu%20Bin%20Bataye.m4a - File Folder Count4 - Library Folder Count1 - - 3572 - - Track ID3572 - NameTu Bin Bataye - ArtistMadhushree, Naresh Iyer - Composera r rahman - AlbumRang De Basanti - GenreSoundtracks - KindAAC audio file - Size8612023 - Total Time357633 - Track Number4 - Date Modified2007-07-27T06:37:52Z - Date Added2009-10-03T14:55:32Z - Bit Rate192 - Sample Rate44100 - Normalization2101 - Sort Composerr rahman - Persistent ID40723823614274F0 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Madhushree,%20Naresh%20Iyer/Rang%20De%20Basanti/04%20Tu%20Bin%20Bataye%201.m4a - File Folder Count4 - Library Folder Count1 - - 3574 - - Track ID3574 - NameTu Bin Bataye - ArtistMadhushree, Naresh Iyer - Composera r rahman - AlbumRang De Basanti - GenreSoundtracks - KindAAC audio file - Size8658317 - Total Time357655 - Track Number4 - Date Modified2007-04-09T08:52:46Z - Date Added2009-10-03T14:55:32Z - Bit Rate192 - Sample Rate44100 - Normalization2101 - Artwork Count1 - Sort Composerr rahman - Persistent ID2A7035A2968DE122 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Madhushree,%20Naresh%20Iyer/Rang%20De%20Basanti/04%20Tu%20Bin%20Bataye%202.m4a - File Folder Count4 - Library Folder Count1 - - 3576 - - Track ID3576 - NameTu Bin Bataye - ArtistMadhushree, Naresh Iyer - Composera r rahman - AlbumRang De Basanti - GenreSoundtracks - KindAAC audio file - Size8459995 - Total Time357633 - Track Number4 - Date Modified2007-12-02T08:05:41Z - Date Added2009-10-03T14:55:32Z - Bit Rate187 - Sample Rate44100 - Normalization2101 - Sort Composerr rahman - Persistent IDA298F0A31CA93767 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Madhushree,%20Naresh%20Iyer/Rang%20De%20Basanti/04%20Tu%20Bin%20Bataye%203.m4a - File Folder Count4 - Library Folder Count1 - - 3578 - - Track ID3578 - NameSri Maha Ganapathi (Raga: Gowla Tala: Misra Chapu) - ArtistM.S. Subbulakshmi - ComposerDikshitar - AlbumImmortal Legends Vol. 2 - GenreCarnatic - KindAAC audio file - Size10271053 - Total Time427663 - Disc Number2 - Disc Count5 - Track Number1 - Track Count7 - Date Modified2007-12-17T11:09:15Z - Date Added2009-10-03T14:55:34Z - Bit Rate192 - Sample Rate44100 - CommentsRaga: Gowla Tala: Misra Chapu - Normalization2087 - Persistent IDF7BBB6A9D11FB544 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/M.S.%20Subbulakshmi/Immortal%20Legends%20Vol.%202/2-01%20Sri%20Maha%20Ganapathi%20(Raga_%20Gowla%20Tala_%20Misra%20Chapu).m4a - File Folder Count4 - Library Folder Count1 - - 3580 - - Track ID3580 - NameSobillu Saptaswara (Raga: Jaganmohini Tala: Roopakam) - ArtistM.S. Subbulakshmi - ComposerThyagaraja - AlbumImmortal Legends Vol. 2 - GenreCarnatic - KindAAC audio file - Size8326071 - Total Time346370 - Disc Number2 - Disc Count5 - Track Number2 - Track Count7 - Date Modified2007-12-17T11:09:53Z - Date Added2009-10-03T14:55:34Z - Bit Rate192 - Sample Rate44100 - CommentsRaga: Jaganmohini Tala: Roopakam - Normalization2466 - Persistent ID41A065CDC177FDB6 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/M.S.%20Subbulakshmi/Immortal%20Legends%20Vol.%202/2-02%20Sobillu%20Saptaswara%20(Raga_%20Jaganmohini%20Tala_%20Roopakam).m4a - File Folder Count4 - Library Folder Count1 - - 3582 - - Track ID3582 - NameParama Purusha (Raga: Shanmugapriya Tala: Roopakam) - ArtistM.S. Subbulakshmi - ComposerAnnamacharya - AlbumImmortal Legends Vol. 2 - GenreCarnatic - KindAAC audio file - Size16810240 - Total Time697038 - Disc Number2 - Disc Count5 - Track Number3 - Track Count7 - Date Modified2007-12-17T11:10:17Z - Date Added2009-10-03T14:55:35Z - Bit Rate192 - Sample Rate44100 - CommentsRaga: Shanmugapriya Tala: Roopakam - Normalization1809 - Persistent IDFC1D3CFF597B7455 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/M.S.%20Subbulakshmi/Immortal%20Legends%20Vol.%202/2-03%20Parama%20Purusha%20(Raga_%20Shanmugapriya%20Tala_%20Roopakam).m4a - File Folder Count4 - Library Folder Count1 - - 3584 - - Track ID3584 - NameNarayana Ninna (Raga: Suddha dhanyasi Tala: Kanda Chapu) - ArtistM.S. Subbulakshmi - ComposerPurandara Dasa - AlbumImmortal Legends Vol. 2 - GenreCarnatic - KindAAC audio file - Size7529406 - Total Time314048 - Disc Number2 - Disc Count5 - Track Number4 - Track Count7 - Date Modified2007-12-17T11:10:55Z - Date Added2009-10-03T14:55:35Z - Bit Rate192 - Sample Rate44100 - CommentsRaga: Suddha dhanyasi Tala: Kanda Chapu - Normalization3282 - Persistent IDC99F69174534EEFA - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/M.S.%20Subbulakshmi/Immortal%20Legends%20Vol.%202/2-04%20Narayana%20Ninna%20(Raga_%20Suddha%20dhanyasi%20Tala_%20Kanda%20Chapu).m4a - File Folder Count4 - Library Folder Count1 - - 3586 - - Track ID3586 - NameO Ranga Sayee (Raga: Khamboji Tala: Adi) - ArtistM.S. Subbulakshmi - ComposerThyagaraja - AlbumImmortal Legends Vol. 2 - GenreCarnatic - KindAAC audio file - Size48583592 - Total Time2010057 - Disc Number2 - Disc Count5 - Track Number5 - Track Count7 - Date Modified2007-12-17T11:11:16Z - Date Added2009-10-03T14:55:35Z - Bit Rate192 - Sample Rate44100 - CommentsRaga: Khamboji Tala: Adi - Normalization2448 - Persistent IDA08885342D18C553 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/M.S.%20Subbulakshmi/Immortal%20Legends%20Vol.%202/2-05%20O%20Ranga%20Sayee%20(Raga_%20Khamboji%20Tala_%20Adi).m4a - File Folder Count4 - Library Folder Count1 - - 3588 - - Track ID3588 - NameRama Bhaja - ArtistM.S. Subbulakshmi - ComposerGuru Nanak - AlbumImmortal Legends Vol. 2 - GenreCarnatic - KindAAC audio file - Size4527584 - Total Time188823 - Disc Number2 - Disc Count5 - Track Number6 - Track Count7 - Date Modified2007-12-17T11:11:39Z - Date Added2009-10-03T14:55:35Z - Bit Rate192 - Sample Rate44100 - Normalization2065 - Persistent ID484B234B66B50104 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/M.S.%20Subbulakshmi/Immortal%20Legends%20Vol.%202/2-06%20Rama%20Bhaja.m4a - File Folder Count4 - Library Folder Count1 - - 3590 - - Track ID3590 - NameHey Govinda - ArtistM.S. Subbulakshmi - ComposerIndra Devi - AlbumImmortal Legends Vol. 2 - GenreCarnatic - KindAAC audio file - Size6016046 - Total Time249984 - Disc Number2 - Disc Count5 - Track Number7 - Track Count7 - Date Modified2007-12-17T11:11:48Z - Date Added2009-10-03T14:55:35Z - Bit Rate192 - Sample Rate44100 - Normalization4099 - Persistent IDB7A73E3E29530558 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/M.S.%20Subbulakshmi/Immortal%20Legends%20Vol.%202/2-07%20Hey%20Govinda.m4a - File Folder Count4 - Library Folder Count1 - - 3592 - - Track ID3592 - NameMack The Knife - ArtistLouis Armstrong - AlbumLouis Armstrong's Greatest Hits - GenreEasy Listening - KindAAC audio file - Size4895919 - Total Time204334 - Disc Number1 - Disc Count1 - Track Number1 - Track Count11 - Year1997 - Date Modified2006-08-07T09:04:22Z - Date Added2009-10-03T14:55:35Z - Bit Rate192 - Sample Rate44100 - Play Count5 - Play Date3457109264 - Play Date UTC2013-07-19T14:37:44Z - Normalization2695 - Artwork Count1 - Persistent IDC1A864E9E0617F9E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Louis%20Armstrong/Louis%20Armstrong's%20Greatest%20Hits/01%20Mack%20The%20Knife.m4a - File Folder Count4 - Library Folder Count1 - - 3594 - - Track ID3594 - NameBack O'Town Blues - ArtistLouis Armstrong - AlbumLouis Armstrong's Greatest Hits - GenreEasy Listening - KindAAC audio file - Size5530304 - Total Time230340 - Disc Number1 - Disc Count1 - Track Number2 - Track Count11 - Year1997 - Date Modified2006-08-07T09:04:22Z - Date Added2009-10-03T14:55:35Z - Bit Rate192 - Sample Rate44100 - Normalization3774 - Artwork Count1 - Persistent IDB90947B7E47FBE5A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Louis%20Armstrong/Louis%20Armstrong's%20Greatest%20Hits/02%20Back%20O'Town%20Blues.m4a - File Folder Count4 - Library Folder Count1 - - 3596 - - Track ID3596 - Name(What Did I Do To Be So) Black And Blue - ArtistLouis Armstrong - AlbumLouis Armstrong's Greatest Hits - GenreEasy Listening - KindAAC audio file - Size6722059 - Total Time280007 - Disc Number1 - Disc Count1 - Track Number3 - Track Count11 - Year1997 - Date Modified2006-08-07T09:04:20Z - Date Added2009-10-03T14:55:35Z - Bit Rate192 - Sample Rate44100 - Normalization1724 - Artwork Count1 - Persistent IDDB6C7EAF265E0D30 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Louis%20Armstrong/Louis%20Armstrong's%20Greatest%20Hits/03%20(What%20Did%20I%20Do%20To%20Be%20So)%20Black%20And%20Blue.m4a - File Folder Count4 - Library Folder Count1 - - 3598 - - Track ID3598 - NameAin't Misbehavin' - ArtistLouis Armstrong - AlbumLouis Armstrong's Greatest Hits - GenreEasy Listening - KindAAC audio file - Size5814621 - Total Time242345 - Disc Number1 - Disc Count1 - Track Number4 - Track Count11 - Year1997 - Date Modified2006-08-07T09:04:20Z - Date Added2009-10-03T14:55:36Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3423063457 - Play Date UTC2012-06-20T13:27:37Z - Normalization2180 - Artwork Count1 - Persistent ID69A1876B7DF486BE - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Louis%20Armstrong/Louis%20Armstrong's%20Greatest%20Hits/04%20Ain't%20Misbehavin'.m4a - File Folder Count4 - Library Folder Count1 - - 3600 - - Track ID3600 - NameBasin Street Blues - ArtistLouis Armstrong - AlbumLouis Armstrong's Greatest Hits - GenreEasy Listening - KindAAC audio file - Size8249081 - Total Time343003 - Disc Number1 - Disc Count1 - Track Number5 - Track Count11 - Year1997 - Date Modified2006-08-07T09:04:20Z - Date Added2009-10-03T14:55:36Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3423063215 - Play Date UTC2012-06-20T13:23:35Z - Normalization1911 - Artwork Count1 - Persistent ID794C532FC65F8A65 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Louis%20Armstrong/Louis%20Armstrong's%20Greatest%20Hits/05%20Basin%20Street%20Blues.m4a - File Folder Count4 - Library Folder Count1 - - 3602 - - Track ID3602 - NameCabaret - ArtistLouis Armstrong - AlbumLouis Armstrong's Greatest Hits - GenreEasy Listening - KindAAC audio file - Size4592280 - Total Time191679 - Disc Number1 - Disc Count1 - Track Number6 - Track Count11 - Year1997 - Date Modified2006-08-07T09:04:20Z - Date Added2009-10-03T14:55:36Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3423062872 - Play Date UTC2012-06-20T13:17:52Z - Normalization1673 - Artwork Count1 - Persistent ID47656BEDA5D4918D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Louis%20Armstrong/Louis%20Armstrong's%20Greatest%20Hits/06%20Cabaret.m4a - File Folder Count4 - Library Folder Count1 - - 3604 - - Track ID3604 - NameWhen It's Sleepytime Down South - ArtistLouis Armstrong - AlbumLouis Armstrong's Greatest Hits - GenreEasy Listening - KindAAC audio file - Size4865633 - Total Time203242 - Disc Number1 - Disc Count1 - Track Number7 - Track Count11 - Year1997 - Date Modified2006-08-07T09:04:20Z - Date Added2009-10-03T14:55:36Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3423063865 - Play Date UTC2012-06-20T13:34:25Z - Normalization3169 - Artwork Count1 - Persistent ID43078B7B19EC8BA9 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Louis%20Armstrong/Louis%20Armstrong's%20Greatest%20Hits/07%20When%20It's%20Sleepytime%20Down%20South.m4a - File Folder Count4 - Library Folder Count1 - - 3606 - - Track ID3606 - NameAll Of Me - ArtistLouis Armstrong - AlbumLouis Armstrong's Greatest Hits - GenreEasy Listening - KindAAC audio file - Size6133608 - Total Time255719 - Disc Number1 - Disc Count1 - Track Number8 - Track Count11 - Year1997 - Date Modified2006-08-07T09:04:20Z - Date Added2009-10-03T14:55:36Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3422284920 - Play Date UTC2012-06-11T13:12:00Z - Normalization2846 - Artwork Count1 - Persistent ID729CE173D9CC77B9 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Louis%20Armstrong/Louis%20Armstrong's%20Greatest%20Hits/08%20All%20Of%20Me.m4a - File Folder Count4 - Library Folder Count1 - - 3608 - - Track ID3608 - NameWest End Blues - ArtistLouis Armstrong - AlbumLouis Armstrong's Greatest Hits - GenreEasy Listening - KindAAC audio file - Size6215611 - Total Time259086 - Disc Number1 - Disc Count1 - Track Number9 - Track Count11 - Year1997 - Date Modified2006-08-07T09:04:20Z - Date Added2009-10-03T14:55:36Z - Bit Rate192 - Sample Rate44100 - Normalization2911 - Artwork Count1 - Persistent ID60D1674F72BC46F9 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Louis%20Armstrong/Louis%20Armstrong's%20Greatest%20Hits/09%20West%20End%20Blues.m4a - File Folder Count4 - Library Folder Count1 - - 3610 - - Track ID3610 - NameStruttin' With Some Barbecue - ArtistLouis Armstrong - AlbumLouis Armstrong's Greatest Hits - GenreEasy Listening - KindAAC audio file - Size7654760 - Total Time318669 - Disc Number1 - Disc Count1 - Track Number10 - Track Count11 - Year1997 - Date Modified2006-08-07T09:04:20Z - Date Added2009-10-03T14:55:36Z - Bit Rate192 - Sample Rate44100 - Normalization1528 - Artwork Count1 - Persistent ID7A47B67FCD5405E4 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Louis%20Armstrong/Louis%20Armstrong's%20Greatest%20Hits/10%20Struttin'%20With%20Some%20Barbecue.m4a - File Folder Count4 - Library Folder Count1 - - 3612 - - Track ID3612 - NameIndiana - ArtistLouis Armstrong - AlbumLouis Armstrong's Greatest Hits - GenreEasy Listening - KindAAC audio file - Size5554235 - Total Time229945 - Disc Number1 - Disc Count1 - Track Number11 - Track Count11 - Year1997 - Date Modified2006-08-07T09:04:20Z - Date Added2009-10-03T14:55:36Z - Bit Rate192 - Sample Rate44100 - Normalization7242 - Artwork Count1 - Persistent ID199F1C70C297FCA1 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Louis%20Armstrong/Louis%20Armstrong's%20Greatest%20Hits/11%20Indiana.m4a - File Folder Count4 - Library Folder Count1 - - 3614 - - Track ID3614 - NamePrologue - ArtistLoreena McKennitt - ComposerLoreena McKennitt - AlbumThe Book Of Secrets - GenreNew Age - KindAAC audio file - Size6377436 - Total Time265240 - Disc Number1 - Disc Count1 - Track Number1 - Track Count8 - Year1997 - Date Modified2006-07-31T03:38:30Z - Date Added2009-10-03T14:55:37Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3389617969 - Play Date UTC2011-05-30T11:02:49Z - Normalization1061 - Artwork Count1 - Sort AlbumBook Of Secrets - Persistent ID885F82670F5BFB3C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Loreena%20McKennitt/The%20Book%20Of%20Secrets/01%20Prologue.m4a - File Folder Count4 - Library Folder Count1 - - 3616 - - Track ID3616 - NameThe Mummers' Dance - ArtistLoreena McKennitt - ComposerLoreena McKennitt - AlbumThe Book Of Secrets - GenreNew Age - KindAAC audio file - Size8911392 - Total Time370681 - Disc Number1 - Disc Count1 - Track Number2 - Track Count8 - Year1997 - Date Modified2006-07-31T03:38:30Z - Date Added2009-10-03T14:55:37Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3389618339 - Play Date UTC2011-05-30T11:08:59Z - Normalization1408 - Artwork Count1 - Sort AlbumBook Of Secrets - Sort NameMummers' Dance - Persistent ID3A91637475846A5D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Loreena%20McKennitt/The%20Book%20Of%20Secrets/02%20The%20Mummers'%20Dance.m4a - File Folder Count4 - Library Folder Count1 - - 3618 - - Track ID3618 - NameSkellig - ArtistLoreena McKennitt - ComposerLoreena McKennitt - AlbumThe Book Of Secrets - GenreNew Age - KindAAC audio file - Size8919847 - Total Time370681 - Disc Number1 - Disc Count1 - Track Number3 - Track Count8 - Year1997 - Date Modified2006-07-31T03:38:30Z - Date Added2009-10-03T14:55:37Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3389618710 - Play Date UTC2011-05-30T11:15:10Z - Normalization1495 - Artwork Count1 - Sort AlbumBook Of Secrets - Persistent ID0537EF58BB0FF5E5 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Loreena%20McKennitt/The%20Book%20Of%20Secrets/03%20Skellig.m4a - File Folder Count4 - Library Folder Count1 - - 3620 - - Track ID3620 - NameMarco Polo - ArtistLoreena McKennitt - ComposerLoreena McKennitt - AlbumThe Book Of Secrets - GenreNew Age - KindAAC audio file - Size7657442 - Total Time319133 - Disc Number1 - Disc Count1 - Track Number4 - Track Count8 - Year1997 - Date Modified2006-07-31T03:38:30Z - Date Added2009-10-03T14:55:37Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3389619029 - Play Date UTC2011-05-30T11:20:29Z - Normalization1744 - Artwork Count1 - Sort AlbumBook Of Secrets - Persistent IDF6248302AA5939F5 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Loreena%20McKennitt/The%20Book%20Of%20Secrets/04%20Marco%20Polo.m4a - File Folder Count4 - Library Folder Count1 - - 3622 - - Track ID3622 - NameThe Highwayman - ArtistLoreena McKennitt - ComposerAlfred Noyes - AlbumThe Book Of Secrets - GenreNew Age - KindAAC audio file - Size14989127 - Total Time620667 - Disc Number1 - Disc Count1 - Track Number5 - Track Count8 - Year1997 - Date Modified2006-07-31T03:38:30Z - Date Added2009-10-03T14:55:37Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Sort AlbumBook Of Secrets - Sort NameHighwayman - Persistent ID64D32AB78E932D09 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Loreena%20McKennitt/The%20Book%20Of%20Secrets/05%20The%20Highwayman.m4a - File Folder Count4 - Library Folder Count1 - - 3624 - - Track ID3624 - NameLa Serenissima - ArtistLoreena McKennitt - ComposerLoreena McKennitt - AlbumThe Book Of Secrets - GenreNew Age - KindAAC audio file - Size7513168 - Total Time310008 - Disc Number1 - Disc Count1 - Track Number6 - Track Count8 - Year1997 - Date Modified2006-07-31T03:38:30Z - Date Added2009-10-03T14:55:37Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Sort AlbumBook Of Secrets - Persistent ID50FF2816CB4804E3 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Loreena%20McKennitt/The%20Book%20Of%20Secrets/06%20La%20Serenissima.m4a - File Folder Count4 - Library Folder Count1 - - 3626 - - Track ID3626 - NameNight Ride Across The Caucasus - ArtistLoreena McKennitt - ComposerLoreena McKennitt - AlbumThe Book Of Secrets - GenreNew Age - KindAAC audio file - Size12386918 - Total Time512648 - Disc Number1 - Disc Count1 - Track Number7 - Track Count8 - Year1997 - Date Modified2006-08-07T08:53:04Z - Date Added2009-10-03T14:55:37Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3383588163 - Play Date UTC2011-03-21T16:06:03Z - Normalization1378 - Artwork Count2 - Sort AlbumBook Of Secrets - Persistent ID0B41640737DF5278 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Loreena%20McKennitt/The%20Book%20Of%20Secrets/07%20Night%20Ride%20Across%20The%20Caucasus.m4a - File Folder Count4 - Library Folder Count1 - - 3628 - - Track ID3628 - NameDante's Prayer - ArtistLoreena McKennitt - ComposerLoreena McKennitt - AlbumThe Book Of Secrets - GenreNew Age - KindAAC audio file - Size10443284 - Total Time431077 - Disc Number1 - Disc Count1 - Track Number8 - Track Count8 - Year1997 - Date Modified2006-07-31T03:38:32Z - Date Added2009-10-03T14:55:37Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Sort AlbumBook Of Secrets - Persistent ID05A6BBABC4F0F411 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Loreena%20McKennitt/The%20Book%20Of%20Secrets/08%20Dante's%20Prayer.m4a - File Folder Count4 - Library Folder Count1 - - 3630 - - Track ID3630 - NameIncantation - ArtistLoreena McKennitt - ComposerLoreena McKennitt - AlbumAn Ancient Muse - GenreWorld - KindAAC audio file - Size3839723 - Total Time155386 - Disc Number1 - Disc Count1 - Track Number1 - Track Count9 - Year2006 - Date Modified2007-07-23T14:31:30Z - Date Added2009-10-03T14:55:37Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3359725195 - Play Date UTC2010-06-18T11:29:55Z - Normalization1135 - Artwork Count1 - Sort AlbumAncient Muse - Persistent IDBAD74F242760287F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Loreena%20McKennitt/An%20Ancient%20Muse/01%20Incantation.m4a - File Folder Count4 - Library Folder Count1 - - 3632 - - Track ID3632 - NameThe Gates Of Istanbul - ArtistLoreena McKennitt - ComposerLoreena McKennitt - AlbumAn Ancient Muse - GenreWorld - KindAAC audio file - Size10207138 - Total Time419306 - Disc Number1 - Disc Count1 - Track Number2 - Track Count9 - Year2006 - Date Modified2007-07-23T14:31:30Z - Date Added2009-10-03T14:55:37Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3359725614 - Play Date UTC2010-06-18T11:36:54Z - Normalization1563 - Artwork Count1 - Sort AlbumAncient Muse - Sort NameGates Of Istanbul - Persistent ID0F1C2ABD183262D8 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Loreena%20McKennitt/An%20Ancient%20Muse/02%20The%20Gates%20Of%20Istanbul.m4a - File Folder Count4 - Library Folder Count1 - - 3634 - - Track ID3634 - NameCaravanserai - ArtistLoreena McKennitt - ComposerLoreena McKennitt - AlbumAn Ancient Muse - GenreWorld - KindAAC audio file - Size11091738 - Total Time455866 - Disc Number1 - Disc Count1 - Track Number3 - Track Count9 - Year2006 - Date Modified2007-07-23T14:31:28Z - Date Added2009-10-03T14:55:38Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3359726070 - Play Date UTC2010-06-18T11:44:30Z - Normalization1691 - Artwork Count1 - Sort AlbumAncient Muse - Persistent IDED8455A5544C5151 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Loreena%20McKennitt/An%20Ancient%20Muse/03%20Caravanserai.m4a - File Folder Count4 - Library Folder Count1 - - 3636 - - Track ID3636 - NameThe English Ladye And The Knight - ArtistLoreena McKennitt - ComposerLoreena McKennitt - AlbumAn Ancient Muse - GenreWorld - KindAAC audio file - Size9956083 - Total Time408946 - Disc Number1 - Disc Count1 - Track Number4 - Track Count9 - Year2006 - Date Modified2007-07-23T14:31:24Z - Date Added2009-10-03T14:55:38Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3359726479 - Play Date UTC2010-06-18T11:51:19Z - Normalization1072 - Artwork Count1 - Sort AlbumAncient Muse - Sort NameEnglish Ladye And The Knight - Persistent IDF8E960ABC52554C0 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Loreena%20McKennitt/An%20Ancient%20Muse/04%20The%20English%20Ladye%20And%20The%20Knight.m4a - File Folder Count4 - Library Folder Count1 - - 3638 - - Track ID3638 - NameKecharitomene - ArtistLoreena McKennitt - ComposerLoreena McKennitt - AlbumAn Ancient Muse - GenreWorld - KindAAC audio file - Size9618081 - Total Time394973 - Disc Number1 - Disc Count1 - Track Number5 - Track Count9 - Year2006 - Date Modified2007-07-23T14:31:22Z - Date Added2009-10-03T14:55:38Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3383147914 - Play Date UTC2011-03-16T13:48:34Z - Normalization1396 - Artwork Count1 - Sort AlbumAncient Muse - Persistent IDE7E56F5F9EABF542 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Loreena%20McKennitt/An%20Ancient%20Muse/05%20Kecharitomene.m4a - File Folder Count4 - Library Folder Count1 - - 3640 - - Track ID3640 - NamePenelope's Song - ArtistLoreena McKennitt - ComposerLoreena McKennitt - AlbumAn Ancient Muse - GenreWorld - KindAAC audio file - Size6394035 - Total Time261746 - Disc Number1 - Disc Count1 - Track Number6 - Track Count9 - Year2006 - Date Modified2007-07-23T14:31:20Z - Date Added2009-10-03T14:55:38Z - Bit Rate192 - Sample Rate44100 - Play Count7 - Play Date3484294005 - Play Date UTC2014-05-30T05:56:45Z - Normalization1925 - Artwork Count1 - Sort AlbumAncient Muse - Persistent IDE7CBD8525D5CD547 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Loreena%20McKennitt/An%20Ancient%20Muse/06%20Penelope's%20Song.m4a - File Folder Count4 - Library Folder Count1 - - 3642 - - Track ID3642 - NameSacred Shabbat - ArtistLoreena McKennitt - ComposerLoreena McKennitt - AlbumAn Ancient Muse - GenreWorld - KindAAC audio file - Size5878320 - Total Time240266 - Disc Number1 - Disc Count1 - Track Number7 - Track Count9 - Year2006 - Date Modified2007-07-23T14:31:20Z - Date Added2009-10-03T14:55:38Z - Bit Rate192 - Sample Rate44100 - Play Count3 - Play Date3426264030 - Play Date UTC2012-07-27T14:30:30Z - Normalization1229 - Artwork Count1 - Sort AlbumAncient Muse - Persistent ID72D05592A23B676E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Loreena%20McKennitt/An%20Ancient%20Muse/07%20Sacred%20Shabbat.m4a - File Folder Count4 - Library Folder Count1 - - 3644 - - Track ID3644 - NameBeneath A Phrygian Sky - ArtistLoreena McKennitt - ComposerLoreena McKennitt - AlbumAn Ancient Muse - GenreWorld - KindAAC audio file - Size13836269 - Total Time569266 - Disc Number1 - Disc Count1 - Track Number8 - Track Count9 - Year2006 - Date Modified2007-07-23T14:31:20Z - Date Added2009-10-03T14:55:38Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3337855401 - Play Date UTC2009-10-08T08:33:21Z - Normalization1448 - Artwork Count1 - Sort AlbumAncient Muse - Persistent ID3134A68671664A97 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Loreena%20McKennitt/An%20Ancient%20Muse/08%20Beneath%20A%20Phrygian%20Sky.m4a - File Folder Count4 - Library Folder Count1 - - 3646 - - Track ID3646 - NameNever-Ending Road (Amhrán Duit) - ArtistLoreena McKennitt - ComposerLoreena McKennitt - AlbumAn Ancient Muse - GenreWorld - KindAAC audio file - Size8785748 - Total Time360560 - Disc Number1 - Disc Count1 - Track Number9 - Track Count9 - Year2006 - Date Modified2007-07-23T14:31:16Z - Date Added2009-10-03T14:55:38Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3337855761 - Play Date UTC2009-10-08T08:39:21Z - Normalization1455 - Artwork Count1 - Sort AlbumAncient Muse - Persistent ID35B380798F547754 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Loreena%20McKennitt/An%20Ancient%20Muse/09%20Never-Ending%20Road%20(Amhra%CC%81n%20Duit).m4a - File Folder Count4 - Library Folder Count1 - - 3648 - - Track ID3648 - NameBerlioz: Symphonie Fantastique, Op. 14 - 1. Reveries-Passions - ArtistLondon Festival Orchestra, Alfred Scholz - ComposerHector Berlioz - AlbumBerlioz: Symphonie Fantastique - GenreClassical - KindAAC audio file - Size22299161 - Total Time920483 - Disc Number1 - Disc Count1 - Track Number1 - Track Count5 - Year1994 - Date Modified2011-11-01T15:45:09Z - Date Added2009-10-03T14:55:39Z - Bit Rate192 - Sample Rate44100 - Normalization496 - Artwork Count1 - Persistent IDE92A8BB5D6B5925E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/London%20Festival%20Orchestra,%20Alfred%20Scholz/Berlioz_%20Symphonie%20Fantastique/01%20Berlioz_%20Symphonie%20Fantastique,%20Op.%2014%20-%201.%20Reveries-Passions.m4a - File Folder Count4 - Library Folder Count1 - - 3650 - - Track ID3650 - NameBerlioz: Symphonie Fantastique, Op. 14 - 2. Un Bal - ArtistLondon Festival Orchestra, Alfred Scholz - ComposerHector Berlioz - AlbumBerlioz: Symphonie Fantastique - GenreClassical - KindAAC audio file - Size9023936 - Total Time370844 - Disc Number1 - Disc Count1 - Track Number2 - Track Count5 - Year1994 - Date Modified2011-11-01T15:45:10Z - Date Added2009-10-03T14:55:39Z - Bit Rate192 - Sample Rate44100 - Normalization196 - Artwork Count1 - Persistent IDEB91CEBF29A28E43 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/London%20Festival%20Orchestra,%20Alfred%20Scholz/Berlioz_%20Symphonie%20Fantastique/02%20Berlioz_%20Symphonie%20Fantastique,%20Op.%2014%20-%202.%20Un%20Bal.m4a - File Folder Count4 - Library Folder Count1 - - 3652 - - Track ID3652 - NameBerlioz: Symphonie Fantastique, Op. 14 - 3. Scene Aux Champs - ArtistLondon Festival Orchestra, Alfred Scholz - ComposerHector Berlioz - AlbumBerlioz: Symphonie Fantastique - GenreClassical - KindAAC audio file - Size24921136 - Total Time1027783 - Disc Number1 - Disc Count1 - Track Number3 - Track Count5 - Year1994 - Date Modified2011-11-01T15:45:12Z - Date Added2009-10-03T14:55:39Z - Bit Rate192 - Sample Rate44100 - Normalization624 - Artwork Count1 - Persistent IDB3CDCA4DC5DB4AC2 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/London%20Festival%20Orchestra,%20Alfred%20Scholz/Berlioz_%20Symphonie%20Fantastique/03%20Berlioz_%20Symphonie%20Fantastique,%20Op.%2014%20-%203.%20Scene%20Aux%20Champs.m4a - File Folder Count4 - Library Folder Count1 - - 3654 - - Track ID3654 - NameBerlioz: Symphonie Fantastique, Op. 14 - 4. Marche Au Supplice - ArtistLondon Festival Orchestra, Alfred Scholz - ComposerHector Berlioz - AlbumBerlioz: Symphonie Fantastique - GenreClassical - KindAAC audio file - Size6946681 - Total Time285000 - Disc Number1 - Disc Count1 - Track Number4 - Track Count5 - Year1994 - Date Modified2011-11-01T15:45:12Z - Date Added2009-10-03T14:55:39Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Persistent IDC5E0FD31A8822B51 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/London%20Festival%20Orchestra,%20Alfred%20Scholz/Berlioz_%20Symphonie%20Fantastique/04%20Berlioz_%20Symphonie%20Fantastique,%20Op.%2014%20-%204.%20Marche%20Au%20Supplice.m4a - File Folder Count4 - Library Folder Count1 - - 3656 - - Track ID3656 - NameBerlioz: Symphonie Fantastique, Op. 14 - 5. Songe D'Une Nuit Du Sabbat - ArtistLondon Festival Orchestra, Alfred Scholz - ComposerHector Berlioz - AlbumBerlioz: Symphonie Fantastique - GenreClassical - KindAAC audio file - Size16652937 - Total Time686287 - Disc Number1 - Disc Count1 - Track Number5 - Track Count5 - Year1994 - Date Modified2011-11-01T15:45:14Z - Date Added2009-10-03T14:55:39Z - Bit Rate192 - Sample Rate44100 - Normalization717 - Artwork Count1 - Persistent ID81925C38B9C7E18E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/London%20Festival%20Orchestra,%20Alfred%20Scholz/Berlioz_%20Symphonie%20Fantastique/05%20Berlioz_%20Symphonie%20Fantastique,%20Op.%2014%20-%205.%20Songe%20D'Une%20Nuit%20Du%20Sabbat.m4a - File Folder Count4 - Library Folder Count1 - - 3658 - - Track ID3658 - NameDon't Leave Me - ArtistL.Subramaniam&Stephane Grapelli - ComposerL. Subramaniam - AlbumConversations - GenreWorld - KindAAC audio file - Size9930735 - Total Time410573 - Disc Number1 - Disc Count1 - Track Number1 - Track Count8 - Year1984 - Date Modified2006-08-13T06:42:52Z - Date Added2009-10-03T14:55:40Z - Bit Rate192 - Sample Rate44100 - Normalization860 - Artwork Count1 - Persistent ID3CF644975800E871 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.Subramaniam&Stephane%20Grapelli/Conversations/01%20Don't%20Leave%20Me.m4a - File Folder Count4 - Library Folder Count1 - - 3660 - - Track ID3660 - NameMemories - ArtistL.Subramaniam&Stephane Grapelli - ComposerL. Subramaniam - AlbumConversations - GenreWorld - KindAAC audio file - Size8186215 - Total Time337802 - Disc Number1 - Disc Count1 - Track Number2 - Track Count8 - Year1984 - Date Modified2006-08-13T06:42:48Z - Date Added2009-10-03T14:55:40Z - Bit Rate192 - Sample Rate44100 - Normalization227 - Artwork Count1 - Persistent ID40AAAFF6A44E9FD6 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.Subramaniam&Stephane%20Grapelli/Conversations/02%20Memories.m4a - File Folder Count4 - Library Folder Count1 - - 3662 - - Track ID3662 - NamePaganini Caprice - ArtistL.Subramaniam&Stephane Grapelli - ComposerL. Subramaniam - AlbumConversations - GenreWorld - KindAAC audio file - Size3008543 - Total Time123087 - Disc Number1 - Disc Count1 - Track Number3 - Track Count8 - Year1984 - Date Modified2006-08-13T06:42:44Z - Date Added2009-10-03T14:55:40Z - Bit Rate192 - Sample Rate44100 - Normalization1038 - Artwork Count1 - Persistent ID779CE1E70D280E73 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.Subramaniam&Stephane%20Grapelli/Conversations/03%20Paganini%20Caprice.m4a - File Folder Count4 - Library Folder Count1 - - 3664 - - Track ID3664 - NameConversation - ArtistL.Subramaniam&Stephane Grapelli - ComposerL. Subramaniam - AlbumConversations - GenreWorld - KindAAC audio file - Size7642435 - Total Time315348 - Disc Number1 - Disc Count1 - Track Number4 - Track Count8 - Year1984 - Date Modified2006-08-13T06:42:42Z - Date Added2009-10-03T14:55:40Z - Bit Rate192 - Sample Rate44100 - Normalization1010 - Artwork Count1 - Persistent ID1091311D947C88C0 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.Subramaniam&Stephane%20Grapelli/Conversations/04%20Conversation.m4a - File Folder Count4 - Library Folder Count1 - - 3666 - - Track ID3666 - NameWalking in a Dream - ArtistL.Subramaniam&Stephane Grapelli - ComposerL. Subramaniam - AlbumConversations - GenreWorld - KindAAC audio file - Size8491270 - Total Time350410 - Disc Number1 - Disc Count1 - Track Number5 - Track Count8 - Year1984 - Date Modified2006-08-13T06:42:40Z - Date Added2009-10-03T14:55:40Z - Bit Rate192 - Sample Rate44100 - Normalization948 - Artwork Count1 - Persistent IDDD950E503796CB95 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.Subramaniam&Stephane%20Grapelli/Conversations/05%20Walking%20in%20a%20Dream.m4a - File Folder Count4 - Library Folder Count1 - - 3668 - - Track ID3668 - NameIllusion - ArtistL.Subramaniam&Stephane Grapelli - ComposerL. Subramaniam - AlbumConversations - GenreWorld - KindAAC audio file - Size11224981 - Total Time463375 - Disc Number1 - Disc Count1 - Track Number6 - Track Count8 - Year1984 - Date Modified2006-08-13T06:42:36Z - Date Added2009-10-03T14:55:40Z - Bit Rate192 - Sample Rate44100 - Normalization743 - Artwork Count1 - Persistent ID5BFF100FE2C5907E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.Subramaniam&Stephane%20Grapelli/Conversations/06%20Illusion.m4a - File Folder Count4 - Library Folder Count1 - - 3670 - - Track ID3670 - NameTribute to Mani - ArtistL.Subramaniam&Stephane Grapelli - ComposerL. Subramaniam - AlbumConversations - GenreWorld - KindAAC audio file - Size3594021 - Total Time147445 - Disc Number1 - Disc Count1 - Track Number7 - Track Count8 - Year1984 - Date Modified2006-08-13T06:42:30Z - Date Added2009-10-03T14:55:40Z - Bit Rate192 - Sample Rate44100 - Normalization433 - Artwork Count1 - Persistent ID5A4ABEDB9BDC4A1F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.Subramaniam&Stephane%20Grapelli/Conversations/07%20Tribute%20to%20Mani.m4a - File Folder Count4 - Library Folder Count1 - - 3672 - - Track ID3672 - NameFrench Resolution - ArtistL.Subramaniam&Stephane Grapelli - ComposerL. Subramaniam - AlbumConversations - GenreWorld - KindAAC audio file - Size6824406 - Total Time281888 - Disc Number1 - Disc Count1 - Track Number8 - Track Count8 - Year1984 - Date Modified2006-08-13T06:42:28Z - Date Added2009-10-03T14:55:40Z - Bit Rate192 - Sample Rate44100 - Normalization990 - Artwork Count1 - Persistent ID957AE5868C9E6672 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.Subramaniam&Stephane%20Grapelli/Conversations/08%20French%20Resolution.m4a - File Folder Count4 - Library Folder Count1 - - 3674 - - Track ID3674 - NameFantasy On Vedic Chants - ArtistL. Subramaniam - AlbumLive In Moscow - GenreNew Age - KindAAC audio file - Size41977790 - Total Time1738081 - Track Number1 - Track Count2 - Date Modified2006-07-30T05:55:14Z - Date Added2009-10-03T14:55:40Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Persistent ID904F094EE3EC4A48 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Live%20In%20Moscow/01%20Fantasy%20On%20Vedic%20Chants.m4a - File Folder Count4 - Library Folder Count1 - - 3676 - - Track ID3676 - NameDouble Concerto - ArtistL. Subramaniam - AlbumLive In Moscow - GenreNew Age - KindAAC audio file - Size45767705 - Total Time1893237 - Track Number2 - Track Count2 - Date Modified2006-07-30T05:55:14Z - Date Added2009-10-03T14:55:41Z - Bit Rate192 - Sample Rate44100 - Normalization823 - Artwork Count1 - Persistent ID9E5C6B8A163F72B5 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Live%20In%20Moscow/02%20Double%20Concerto.m4a - File Folder Count4 - Library Folder Count1 - - 3678 - - Track ID3678 - NameBeyond - ArtistL. Subramaniam - AlbumBeyond - GenreUnclassifiable - KindAAC audio file - Size40970967 - Total Time1697679 - Track Number1 - Track Count4 - Date Modified2006-08-13T06:42:24Z - Date Added2009-10-03T14:55:41Z - Bit Rate192 - Sample Rate44100 - Normalization1258 - Artwork Count1 - Persistent ID886C793455AE6E90 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Beyond/01%20Beyond.m4a - File Folder Count4 - Library Folder Count1 - - 3680 - - Track ID3680 - NameWeeping Soul - ArtistL. Subramaniam - AlbumBeyond - GenreUnclassifiable - KindAAC audio file - Size10128562 - Total Time422671 - Track Number2 - Track Count4 - Date Modified2006-08-13T06:42:06Z - Date Added2009-10-03T14:55:41Z - Bit Rate192 - Sample Rate44100 - Normalization243 - Artwork Count1 - Persistent ID0D88A4B3085F0139 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Beyond/02%20Weeping%20Soul.m4a - File Folder Count4 - Library Folder Count1 - - 3682 - - Track ID3682 - NameWandering Saint - ArtistL. Subramaniam - AlbumBeyond - GenreUnclassifiable - KindAAC audio file - Size13435981 - Total Time559344 - Track Number3 - Track Count4 - Date Modified2006-08-13T06:42:02Z - Date Added2009-10-03T14:55:41Z - Bit Rate192 - Sample Rate44100 - Normalization243 - Artwork Count1 - Persistent ID9EFD02D13AE1B54D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Beyond/03%20Wandering%20Saint.m4a - File Folder Count4 - Library Folder Count1 - - 3684 - - Track ID3684 - NameKriti: Bhajana Seyave - ArtistL. Subramaniam - AlbumBeyond - GenreUnclassifiable - KindAAC audio file - Size16641881 - Total Time687053 - Track Number4 - Track Count4 - Date Modified2006-08-13T06:41:56Z - Date Added2009-10-03T14:55:41Z - Bit Rate192 - Sample Rate44100 - Normalization823 - Artwork Count1 - Persistent ID475464EF771FB86F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Beyond/04%20Kriti_%20Bhajana%20Seyave.m4a - File Folder Count4 - Library Folder Count1 - - 3686 - - Track ID3686 - NameInvocation to Lord Ganesha - ArtistL. Subramaniam - AlbumAnthology of South Indian Classical Music (Disc 1) - GenreClassical - KindAAC audio file - Size779423 - Total Time31182 - Track Number1 - Track Count22 - Date Modified2006-08-13T06:41:48Z - Date Added2009-10-03T14:55:41Z - Bit Rate192 - Sample Rate44100 - Normalization771 - Persistent IDFB4F95768488AE06 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Anthology%20of%20South%20Indian%20Classical%20Music%20(Disc%201)/01%20Invocation%20to%20Lord%20Ganesha.m4a - File Folder Count4 - Library Folder Count1 - - 3688 - - Track ID3688 - NameInvocation to Goddess Saraswati - ArtistL. Subramaniam - AlbumAnthology of South Indian Classical Music (Disc 1) - GenreClassical - KindAAC audio file - Size554526 - Total Time22080 - Track Number2 - Track Count22 - Date Modified2006-08-13T06:41:48Z - Date Added2009-10-03T14:55:42Z - Bit Rate192 - Sample Rate44100 - Normalization714 - Persistent ID981B2675D90DC647 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Anthology%20of%20South%20Indian%20Classical%20Music%20(Disc%201)/02%20Invocation%20to%20Goddess%20Saraswati.m4a - File Folder Count4 - Library Folder Count1 - - 3690 - - Track ID3690 - NameInvocation to Goddess Lakshmi - ArtistL. Subramaniam - AlbumAnthology of South Indian Classical Music (Disc 1) - GenreClassical - KindAAC audio file - Size10959238 - Total Time456618 - Track Number3 - Track Count22 - Date Modified2006-08-13T06:41:46Z - Date Added2009-10-03T14:55:42Z - Bit Rate192 - Sample Rate44100 - Normalization1267 - Persistent ID9F44F7D0A61D2986 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Anthology%20of%20South%20Indian%20Classical%20Music%20(Disc%201)/03%20Invocation%20to%20Goddess%20Lakshmi.m4a - File Folder Count4 - Library Folder Count1 - - 3692 - - Track ID3692 - NameRig Veda - ArtistL. Subramaniam - AlbumAnthology of South Indian Classical Music (Disc 1) - GenreClassical - KindAAC audio file - Size2515511 - Total Time104511 - Track Number4 - Track Count22 - Date Modified2006-08-13T06:41:42Z - Date Added2009-10-03T14:55:42Z - Bit Rate192 - Sample Rate44100 - Normalization900 - Persistent ID2D74D49F596DDC06 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Anthology%20of%20South%20Indian%20Classical%20Music%20(Disc%201)/04%20Rig%20Veda.m4a - File Folder Count4 - Library Folder Count1 - - 3694 - - Track ID3694 - NameYajur Veda - ArtistL. Subramaniam - AlbumAnthology of South Indian Classical Music (Disc 1) - GenreClassical - KindAAC audio file - Size3273726 - Total Time135835 - Track Number5 - Track Count22 - Date Modified2006-08-13T06:41:42Z - Date Added2009-10-03T14:55:42Z - Bit Rate192 - Sample Rate44100 - Normalization1229 - Persistent ID3C758FE9B6DFE282 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Anthology%20of%20South%20Indian%20Classical%20Music%20(Disc%201)/05%20Yajur%20Veda.m4a - File Folder Count4 - Library Folder Count1 - - 3696 - - Track ID3696 - NameSama Veda - ArtistL. Subramaniam - AlbumAnthology of South Indian Classical Music (Disc 1) - GenreClassical - KindAAC audio file - Size5412597 - Total Time225487 - Track Number6 - Track Count22 - Date Modified2006-08-13T06:41:40Z - Date Added2009-10-03T14:55:42Z - Bit Rate192 - Sample Rate44100 - Normalization942 - Persistent ID425BA7530CCB9417 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Anthology%20of%20South%20Indian%20Classical%20Music%20(Disc%201)/06%20Sama%20Veda.m4a - File Folder Count4 - Library Folder Count1 - - 3698 - - Track ID3698 - NameAtharva Veda - ArtistL. Subramaniam - AlbumAnthology of South Indian Classical Music (Disc 1) - GenreClassical - KindAAC audio file - Size2995967 - Total Time124178 - Track Number7 - Track Count22 - Date Modified2006-08-13T06:41:38Z - Date Added2009-10-03T14:55:42Z - Bit Rate192 - Sample Rate44100 - Normalization703 - Persistent ID0EC0DEECFA9E2C15 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Anthology%20of%20South%20Indian%20Classical%20Music%20(Disc%201)/07%20Atharva%20Veda.m4a - File Folder Count4 - Library Folder Count1 - - 3700 - - Track ID3700 - NameSwaravali Tala Adi - ArtistL. Subramaniam - AlbumAnthology of South Indian Classical Music (Disc 1) - GenreClassical - KindAAC audio file - Size5879134 - Total Time247755 - Track Number8 - Track Count22 - Date Modified2006-08-13T06:41:36Z - Date Added2009-10-03T14:55:42Z - Bit Rate192 - Sample Rate44100 - Normalization735 - Persistent IDF54C33EF5A75DA5E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Anthology%20of%20South%20Indian%20Classical%20Music%20(Disc%201)/08%20Swaravali%20Tala%20Adi.m4a - File Folder Count4 - Library Folder Count1 - - 3702 - - Track ID3702 - NameAlankara I Tala Dhruva - ArtistL. Subramaniam - AlbumAnthology of South Indian Classical Music (Disc 1) - GenreClassical - KindAAC audio file - Size1744329 - Total Time76763 - Track Number9 - Track Count22 - Date Modified2006-08-13T06:41:34Z - Date Added2009-10-03T14:55:42Z - Bit Rate192 - Sample Rate44100 - Normalization908 - Persistent IDF9F6ED8C3FE285FB - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Anthology%20of%20South%20Indian%20Classical%20Music%20(Disc%201)/09%20Alankara%20I%20Tala%20Dhruva.m4a - File Folder Count4 - Library Folder Count1 - - 3704 - - Track ID3704 - NameAlankara II Tala Mattya - ArtistL. Subramaniam - AlbumAnthology of South Indian Classical Music (Disc 1) - GenreClassical - KindAAC audio file - Size1271229 - Total Time55935 - Track Number10 - Track Count22 - Date Modified2006-08-13T06:41:32Z - Date Added2009-10-03T14:55:42Z - Bit Rate192 - Sample Rate44100 - Normalization773 - Persistent ID4FC79718D2828924 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Anthology%20of%20South%20Indian%20Classical%20Music%20(Disc%201)/10%20Alankara%20II%20Tala%20Mattya.m4a - File Folder Count4 - Library Folder Count1 - - 3706 - - Track ID3706 - NameAlankara III Tala Rupaka - ArtistL. Subramaniam - AlbumAnthology of South Indian Classical Music (Disc 1) - GenreClassical - KindAAC audio file - Size875038 - Total Time39402 - Track Number11 - Track Count22 - Date Modified2006-08-13T06:41:32Z - Date Added2009-10-03T14:55:42Z - Bit Rate192 - Sample Rate44100 - Normalization765 - Persistent IDA5631501FD694589 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Anthology%20of%20South%20Indian%20Classical%20Music%20(Disc%201)/11%20Alankara%20III%20Tala%20Rupaka.m4a - File Folder Count4 - Library Folder Count1 - - 3708 - - Track ID3708 - NameAlankara IV Tala Jampa - ArtistL. Subramaniam - AlbumAnthology of South Indian Classical Music (Disc 1) - GenreClassical - KindAAC audio file - Size1196136 - Total Time53079 - Track Number12 - Track Count22 - Date Modified2006-08-13T06:41:32Z - Date Added2009-10-03T14:55:43Z - Bit Rate192 - Sample Rate44100 - Normalization603 - Persistent ID2ED3EB1566AA2451 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Anthology%20of%20South%20Indian%20Classical%20Music%20(Disc%201)/12%20Alankara%20IV%20Tala%20Jampa.m4a - File Folder Count4 - Library Folder Count1 - - 3710 - - Track ID3710 - NameAlankara V Tala Triputa - ArtistL. Subramaniam - AlbumAnthology of South Indian Classical Music (Disc 1) - GenreClassical - KindAAC audio file - Size870745 - Total Time36477 - Track Number13 - Track Count22 - Date Modified2006-08-13T06:41:30Z - Date Added2009-10-03T14:55:43Z - Bit Rate192 - Sample Rate44100 - Normalization569 - Persistent ID6CBE89A54100F644 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Anthology%20of%20South%20Indian%20Classical%20Music%20(Disc%201)/13%20Alankara%20V%20Tala%20Triputa.m4a - File Folder Count4 - Library Folder Count1 - - 3712 - - Track ID3712 - NameAlankara VI Tala Ata - ArtistL. Subramaniam - AlbumAnthology of South Indian Classical Music (Disc 1) - GenreClassical - KindAAC audio file - Size1382612 - Total Time57467 - Track Number14 - Track Count22 - Date Modified2006-08-13T06:41:30Z - Date Added2009-10-03T14:55:43Z - Bit Rate192 - Sample Rate44100 - Normalization697 - Persistent IDBB052CAC56B32C2B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Anthology%20of%20South%20Indian%20Classical%20Music%20(Disc%201)/14%20Alankara%20VI%20Tala%20Ata.m4a - File Folder Count4 - Library Folder Count1 - - 3714 - - Track ID3714 - NameAlankara VII Tala Eka - ArtistL. Subramaniam - AlbumAnthology of South Indian Classical Music (Disc 1) - GenreClassical - KindAAC audio file - Size892921 - Total Time37405 - Track Number15 - Track Count22 - Date Modified2006-08-13T06:41:30Z - Date Added2009-10-03T14:55:43Z - Bit Rate192 - Sample Rate44100 - Normalization504 - Persistent ID2A4E9628B7E8B60E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Anthology%20of%20South%20Indian%20Classical%20Music%20(Disc%201)/15%20Alankara%20VII%20Tala%20Eka.m4a - File Folder Count4 - Library Folder Count1 - - 3716 - - Track ID3716 - NameGitam (In praise of Lord Ganesha) "Sri Gananatha" - ArtistL. Subramaniam - ComposerPurandara Dasa - AlbumAnthology of South Indian Classical Music (Disc 1) - GenreCarnatic - KindAAC audio file - Size3411207 - Total Time142058 - Track Number16 - Track Count22 - Date Modified2007-12-14T10:31:47Z - Date Added2009-10-03T14:55:43Z - Bit Rate192 - Sample Rate44100 - CommentsRaga: Malahari Tala: Roopakam - Normalization743 - Persistent ID1F08ADEE6B98D028 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Anthology%20of%20South%20Indian%20Classical%20Music%20(Disc%201)/16%20Gitam%20(In%20praise%20of%20Lord%20Ganesha)%20_Sri%20Gananatha_.m4a - File Folder Count4 - Library Folder Count1 - - 3718 - - Track ID3718 - NameGitam (In praise of Goddess Lakshmi) "Vara Veena" - ArtistL. Subramaniam - ComposerAppiah Dikshitar - AlbumAnthology of South Indian Classical Music (Disc 1) - GenreClassical - KindAAC audio file - Size1935646 - Total Time81709 - Track Number17 - Track Count22 - Date Modified2007-12-14T10:29:54Z - Date Added2009-10-03T14:55:43Z - Bit Rate192 - Sample Rate44100 - CommentsRaga: Mohanam Tala: Roopakam - Normalization990 - Persistent ID8326256DED32A7F2 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Anthology%20of%20South%20Indian%20Classical%20Music%20(Disc%201)/17%20Gitam%20(In%20praise%20of%20Goddess%20Lakshmi)%20_Vara%20Veena_.m4a - File Folder Count4 - Library Folder Count1 - - 3720 - - Track ID3720 - NameJatiswaram - ArtistL. Subramaniam - AlbumAnthology of South Indian Classical Music (Disc 1) - GenreClassical - KindAAC audio file - Size5359255 - Total Time225580 - Track Number18 - Track Count22 - Date Modified2006-08-13T06:41:26Z - Date Added2009-10-03T14:55:43Z - Bit Rate192 - Sample Rate44100 - Normalization1069 - Persistent ID034AD077CF8A1BC5 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Anthology%20of%20South%20Indian%20Classical%20Music%20(Disc%201)/18%20Jatiswaram.m4a - File Folder Count4 - Library Folder Count1 - - 3722 - - Track ID3722 - NameExample of Sruti-Peti - ArtistL. Subramaniam - AlbumAnthology of South Indian Classical Music (Disc 1) - GenreClassical - KindAAC audio file - Size1729922 - Total Time73002 - Track Number19 - Track Count22 - Date Modified2006-08-13T06:41:24Z - Date Added2009-10-03T14:55:43Z - Bit Rate192 - Sample Rate44100 - Normalization52 - Persistent ID4616D1F923B358E9 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Anthology%20of%20South%20Indian%20Classical%20Music%20(Disc%201)/19%20Example%20of%20Sruti-Peti.m4a - File Folder Count4 - Library Folder Count1 - - 3724 - - Track ID3724 - NameExample of Tambura - ArtistL. Subramaniam - AlbumAnthology of South Indian Classical Music (Disc 1) - GenreClassical - KindAAC audio file - Size2155741 - Total Time91647 - Track Number20 - Track Count22 - Date Modified2006-08-13T06:41:24Z - Date Added2009-10-03T14:55:43Z - Bit Rate192 - Sample Rate44100 - Normalization113 - Persistent ID229EB1D16D84FFBD - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Anthology%20of%20South%20Indian%20Classical%20Music%20(Disc%201)/20%20Example%20of%20Tambura.m4a - File Folder Count4 - Library Folder Count1 - - 3726 - - Track ID3726 - NameSwarajati "Raavey" - ArtistL. Subramaniam - AlbumAnthology of South Indian Classical Music (Disc 1) - GenreClassical - KindAAC audio file - Size23784345 - Total Time986614 - Track Number21 - Track Count22 - Date Modified2006-08-13T06:41:22Z - Date Added2009-10-03T14:55:43Z - Bit Rate192 - Sample Rate44100 - Normalization1249 - Persistent IDF5FB07A5FCD0687D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Anthology%20of%20South%20Indian%20Classical%20Music%20(Disc%201)/21%20Swarajati%20_Raavey_.m4a - File Folder Count4 - Library Folder Count1 - - 3728 - - Track ID3728 - NameVarnam "Ninnu Kori" - ArtistL. Subramaniam - ComposerTacchur Singaaraachari - AlbumAnthology of South Indian Classical Music (Disc 1) - GenreClassical - KindAAC audio file - Size21254707 - Total Time879918 - Track Number22 - Track Count22 - Date Modified2007-12-14T10:34:35Z - Date Added2009-10-03T14:55:44Z - Bit Rate192 - Sample Rate44100 - CommentsRaga: Vasantha Tala: Adi - Normalization1876 - Persistent ID6047F4A4A912B020 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Anthology%20of%20South%20Indian%20Classical%20Music%20(Disc%201)/22%20Varnam%20_Ninnu%20Kori_.m4a - File Folder Count4 - Library Folder Count1 - - 3730 - - Track ID3730 - NameKriti "Rama nannu brovara" - ArtistL. Subramaniam - AlbumAnthologie de la musique classique de l'Inde du Sud - Disc 2 - GenreClassical - KindAAC audio file - Size16318206 - Total Time676976 - Track Number1 - Track Count12 - Date Modified2006-08-13T08:37:42Z - Date Added2009-10-03T14:55:44Z - Bit Rate192 - Sample Rate44100 - Normalization1617 - Artwork Count1 - Persistent IDE363C3096CE51F05 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Anthologie%20de%20la%20musique%20classique%20de%20l'Inde%20du%20Sud%20-%20Disc%202/01%20Kriti%20_Rama%20nannu%20brovara_.m4a - File Folder Count4 - Library Folder Count1 - - 3732 - - Track ID3732 - NameRagam and Tanam - ArtistL. Subramaniam - AlbumAnthologie de la musique classique de l'Inde du sud - GenreClassical - KindAAC audio file - Size15263405 - Total Time635041 - Track Number1 - Track Count12 - Year1990 - Date Modified2006-08-13T08:37:32Z - Date Added2009-10-03T14:55:44Z - Bit Rate192 - Sample Rate44100 - Normalization789 - Artwork Count1 - Persistent ID5ECF9E55AE10AD3A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Anthologie%20de%20la%20musique%20classique%20de%20l'Inde%20du%20sud/01%20Ragam%20and%20Tanam.m4a - File Folder Count4 - Library Folder Count1 - - 3734 - - Track ID3734 - NameKriti "Vallabha" - ArtistL. Subramaniam - AlbumAnthologie de la musique classique de l'Inde du Sud - Disc 2 - GenreClassical - KindAAC audio file - Size11812922 - Total Time492493 - Track Number2 - Track Count12 - Date Modified2006-08-13T08:37:40Z - Date Added2009-10-03T14:55:44Z - Bit Rate192 - Sample Rate44100 - Normalization1189 - Artwork Count1 - Persistent ID4C5770B93C321863 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Anthologie%20de%20la%20musique%20classique%20de%20l'Inde%20du%20Sud%20-%20Disc%202/02%20Kriti%20_Vallabha_.m4a - File Folder Count4 - Library Folder Count1 - - 3736 - - Track ID3736 - NameRaga Alapana - ArtistL. Subramaniam - AlbumAnthologie de la musique classique de l'Inde du sud - GenreClassical - KindAAC audio file - Size5447550 - Total Time229458 - Track Number2 - Track Count12 - Year1990 - Date Modified2006-08-13T08:37:32Z - Date Added2009-10-03T14:55:44Z - Bit Rate192 - Sample Rate44100 - Normalization1249 - Artwork Count1 - Persistent IDE39829B25F4603A2 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Anthologie%20de%20la%20musique%20classique%20de%20l'Inde%20du%20sud/02%20Raga%20Alapana.m4a - File Folder Count4 - Library Folder Count1 - - 3738 - - Track ID3738 - NameRaga Alapana - ArtistL. Subramaniam - AlbumAnthologie de la musique classique de l'Inde du sud - GenreClassical - KindAAC audio file - Size4436362 - Total Time186779 - Track Number3 - Track Count12 - Year1990 - Date Modified2006-08-13T08:37:32Z - Date Added2009-10-03T14:55:44Z - Bit Rate192 - Sample Rate44100 - Normalization2169 - Artwork Count1 - Persistent ID5F73090F44CD1A03 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Anthologie%20de%20la%20musique%20classique%20de%20l'Inde%20du%20sud/03%20Raga%20Alapana.m4a - File Folder Count4 - Library Folder Count1 - - 3740 - - Track ID3740 - NameVarnam "Valachi" (Navaragamalika) - ArtistL. Subramaniam - AlbumAnthologie de la musique classique de l'Inde du Sud - Disc 2 - GenreClassical - KindAAC audio file - Size8028709 - Total Time336386 - Track Number3 - Track Count12 - Date Modified2006-08-13T08:37:40Z - Date Added2009-10-03T14:55:44Z - Bit Rate192 - Sample Rate44100 - Normalization1048 - Artwork Count1 - Persistent IDFB052EE1748EB0A9 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Anthologie%20de%20la%20musique%20classique%20de%20l'Inde%20du%20Sud%20-%20Disc%202/03%20Varnam%20_Valachi_%20(Navaragamalika).m4a - File Folder Count4 - Library Folder Count1 - - 3742 - - Track ID3742 - NameKriti "Sadinchine" (Pancharatna Kriti) - ArtistL. Subramaniam - AlbumAnthologie de la musique classique de l'Inde du Sud - Disc 2 - GenreClassical - KindAAC audio file - Size9895596 - Total Time412686 - Track Number4 - Track Count12 - Date Modified2006-08-13T08:37:38Z - Date Added2009-10-03T14:55:44Z - Bit Rate192 - Sample Rate44100 - Normalization1159 - Artwork Count1 - Persistent ID2ECB93456D9F8449 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Anthologie%20de%20la%20musique%20classique%20de%20l'Inde%20du%20Sud%20-%20Disc%202/04%20Kriti%20_Sadinchine_%20(Pancharatna%20Kriti).m4a - File Folder Count4 - Library Folder Count1 - - 3744 - - Track ID3744 - NameTanam - ArtistL. Subramaniam - AlbumAnthologie de la musique classique de l'Inde du sud - GenreClassical - KindAAC audio file - Size2730068 - Total Time116980 - Track Number4 - Track Count12 - Year1990 - Date Modified2006-08-13T08:37:32Z - Date Added2009-10-03T14:55:45Z - Bit Rate192 - Sample Rate44100 - Normalization4096 - Artwork Count1 - Persistent ID02A0F03D0F526EBE - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Anthologie%20de%20la%20musique%20classique%20de%20l'Inde%20du%20sud/04%20Tanam.m4a - File Folder Count4 - Library Folder Count1 - - 3746 - - Track ID3746 - NameKriti "Krupa Juchutaku" - ArtistL. Subramaniam - AlbumAnthologie de la musique classique de l'Inde du Sud - Disc 2 - GenreClassical - KindAAC audio file - Size4080218 - Total Time171779 - Track Number5 - Track Count12 - Date Modified2006-08-13T08:37:38Z - Date Added2009-10-03T14:55:45Z - Bit Rate192 - Sample Rate44100 - Normalization642 - Artwork Count1 - Persistent IDDEB2932902EAF8B5 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Anthologie%20de%20la%20musique%20classique%20de%20l'Inde%20du%20Sud%20-%20Disc%202/05%20Kriti%20_Krupa%20Juchutaku_.m4a - File Folder Count4 - Library Folder Count1 - - 3748 - - Track ID3748 - NameKriti "Yenna Tavam" - ArtistL. Subramaniam - AlbumAnthologie de la musique classique de l'Inde du sud - GenreClassical - KindAAC audio file - Size11987162 - Total Time497555 - Track Number5 - Track Count12 - Year1990 - Date Modified2006-08-13T08:37:32Z - Date Added2009-10-03T14:55:45Z - Bit Rate192 - Sample Rate44100 - Normalization2355 - Artwork Count1 - Persistent IDE58C276C2516CA6D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Anthologie%20de%20la%20musique%20classique%20de%20l'Inde%20du%20sud/05%20Kriti%20_Yenna%20Tavam_.m4a - File Folder Count4 - Library Folder Count1 - - 3750 - - Track ID3750 - NameKriti "Vatapi Ganapatim" - ArtistL. Subramaniam - AlbumAnthologie de la musique classique de l'Inde du sud - GenreClassical - KindAAC audio file - Size8097026 - Total Time338638 - Track Number6 - Track Count12 - Year1990 - Date Modified2006-08-13T08:37:32Z - Date Added2009-10-03T14:55:45Z - Bit Rate192 - Sample Rate44100 - Normalization1108 - Artwork Count1 - Persistent IDC2758EAA6384316A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Anthologie%20de%20la%20musique%20classique%20de%20l'Inde%20du%20sud/06%20Kriti%20_Vatapi%20Ganapatim_.m4a - File Folder Count4 - Library Folder Count1 - - 3752 - - Track ID3752 - NamePadam "Pattakura" - ArtistL. Subramaniam - AlbumAnthologie de la musique classique de l'Inde du Sud - Disc 2 - GenreClassical - KindAAC audio file - Size10906123 - Total Time455666 - Track Number6 - Track Count12 - Date Modified2006-08-13T08:37:38Z - Date Added2009-10-03T14:55:45Z - Bit Rate192 - Sample Rate44100 - Normalization484 - Artwork Count1 - Persistent ID8E3CA90D327DB429 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Anthologie%20de%20la%20musique%20classique%20de%20l'Inde%20du%20Sud%20-%20Disc%202/06%20Padam%20_Pattakura_.m4a - File Folder Count4 - Library Folder Count1 - - 3754 - - Track ID3754 - NameJavali "Nee Mataley" - ArtistL. Subramaniam - AlbumAnthologie de la musique classique de l'Inde du Sud - Disc 2 - GenreClassical - KindAAC audio file - Size5103240 - Total Time214016 - Track Number7 - Track Count12 - Date Modified2006-08-13T08:37:36Z - Date Added2009-10-03T14:55:45Z - Bit Rate192 - Sample Rate44100 - Normalization364 - Artwork Count1 - Persistent ID23D172FFEFBC8F3F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Anthologie%20de%20la%20musique%20classique%20de%20l'Inde%20du%20Sud%20-%20Disc%202/07%20Javali%20_Nee%20Mataley_.m4a - File Folder Count4 - Library Folder Count1 - - 3756 - - Track ID3756 - NameKriti "Illalo Pranatarthi" - ArtistL. Subramaniam - AlbumAnthologie de la musique classique de l'Inde du sud - GenreClassical - KindAAC audio file - Size12416004 - Total Time516642 - Track Number7 - Track Count12 - Year1990 - Date Modified2006-08-13T08:37:30Z - Date Added2009-10-03T14:55:45Z - Bit Rate192 - Sample Rate44100 - Normalization1249 - Artwork Count1 - Persistent IDA92EAA5E533DAA79 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Anthologie%20de%20la%20musique%20classique%20de%20l'Inde%20du%20sud/07%20Kriti%20_Illalo%20Pranatarthi_.m4a - File Folder Count4 - Library Folder Count1 - - 3758 - - Track ID3758 - NameKanjira with Solkattu - ArtistL. Subramaniam - AlbumAnthologie de la musique classique de l'Inde du sud - GenreClassical - KindAAC audio file - Size6797951 - Total Time284280 - Track Number8 - Track Count12 - Year1990 - Date Modified2006-08-13T08:37:30Z - Date Added2009-10-03T14:55:45Z - Bit Rate192 - Sample Rate44100 - Normalization1249 - Artwork Count1 - Persistent ID59EE9CCF6232DF76 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Anthologie%20de%20la%20musique%20classique%20de%20l'Inde%20du%20sud/08%20Kanjira%20with%20Solkattu.m4a - File Folder Count4 - Library Folder Count1 - - 3760 - - Track ID3760 - NameTillana - ArtistL. Subramaniam - AlbumAnthologie de la musique classique de l'Inde du Sud - Disc 2 - GenreClassical - KindAAC audio file - Size2940778 - Total Time124271 - Track Number8 - Track Count12 - Date Modified2006-08-13T08:37:36Z - Date Added2009-10-03T14:55:46Z - Bit Rate192 - Sample Rate44100 - Normalization648 - Artwork Count1 - Persistent ID0D92E5E5F57584DA - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Anthologie%20de%20la%20musique%20classique%20de%20l'Inde%20du%20Sud%20-%20Disc%202/08%20Tillana.m4a - File Folder Count4 - Library Folder Count1 - - 3762 - - Track ID3762 - NameGhatam with Solkattu - ArtistL. Subramaniam - AlbumAnthologie de la musique classique de l'Inde du sud - GenreClassical - KindAAC audio file - Size7241016 - Total Time302693 - Track Number9 - Track Count12 - Year1990 - Date Modified2006-08-13T08:37:30Z - Date Added2009-10-03T14:55:46Z - Bit Rate192 - Sample Rate44100 - Normalization1339 - Artwork Count1 - Persistent ID52EFFCF224D33662 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Anthologie%20de%20la%20musique%20classique%20de%20l'Inde%20du%20sud/09%20Ghatam%20with%20Solkattu.m4a - File Folder Count4 - Library Folder Count1 - - 3764 - - Track ID3764 - NameThiruppukazh - ArtistL. Subramaniam - AlbumAnthologie de la musique classique de l'Inde du Sud - Disc 2 - GenreClassical - KindAAC audio file - Size6387503 - Total Time266517 - Track Number9 - Track Count12 - Date Modified2006-08-13T08:37:36Z - Date Added2009-10-03T14:55:46Z - Bit Rate192 - Sample Rate44100 - Normalization670 - Artwork Count1 - Persistent IDDA77E37539171E2A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Anthologie%20de%20la%20musique%20classique%20de%20l'Inde%20du%20Sud%20-%20Disc%202/09%20Thiruppukazh.m4a - File Folder Count4 - Library Folder Count1 - - 3766 - - Track ID3766 - NameMoorsing with Solkattu - ArtistL. Subramaniam - AlbumAnthologie de la musique classique de l'Inde du sud - GenreClassical - KindAAC audio file - Size1695403 - Total Time72537 - Track Number10 - Track Count12 - Year1990 - Date Modified2006-08-13T08:37:30Z - Date Added2009-10-03T14:55:46Z - Bit Rate192 - Sample Rate44100 - Normalization2159 - Artwork Count1 - Persistent ID58079B6DF0286DC0 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Anthologie%20de%20la%20musique%20classique%20de%20l'Inde%20du%20sud/10%20Moorsing%20with%20Solkattu.m4a - File Folder Count4 - Library Folder Count1 - - 3768 - - Track ID3768 - NameThiruppukazh - ArtistL. Subramaniam - AlbumAnthologie de la musique classique de l'Inde du Sud - Disc 2 - GenreClassical - KindAAC audio file - Size3973415 - Total Time168505 - Track Number10 - Track Count12 - Date Modified2006-08-13T08:37:34Z - Date Added2009-10-03T14:55:46Z - Bit Rate192 - Sample Rate44100 - Normalization1135 - Artwork Count1 - Persistent IDF2437D56882532C2 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Anthologie%20de%20la%20musique%20classique%20de%20l'Inde%20du%20Sud%20-%20Disc%202/10%20Thiruppukazh.m4a - File Folder Count4 - Library Folder Count1 - - 3770 - - Track ID3770 - NameMoorsing solo - ArtistL. Subramaniam - AlbumAnthologie de la musique classique de l'Inde du sud - GenreClassical - KindAAC audio file - Size1619570 - Total Time70006 - Track Number11 - Track Count12 - Year1990 - Date Modified2006-08-13T08:37:30Z - Date Added2009-10-03T14:55:46Z - Bit Rate192 - Sample Rate44100 - Normalization2234 - Artwork Count1 - Persistent IDE02A1C969B8FE7A4 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Anthologie%20de%20la%20musique%20classique%20de%20l'Inde%20du%20sud/11%20Moorsing%20solo.m4a - File Folder Count4 - Library Folder Count1 - - 3772 - - Track ID3772 - NameRaga Alapana - ArtistL. Subramaniam - AlbumAnthologie de la musique classique de l'Inde du Sud - Disc 2 - GenreClassical - KindAAC audio file - Size4470300 - Total Time189450 - Track Number11 - Track Count12 - Date Modified2006-08-13T08:37:34Z - Date Added2009-10-03T14:55:46Z - Bit Rate192 - Sample Rate44100 - Normalization1488 - Artwork Count1 - Persistent IDF3BC20F186AD7D58 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Anthologie%20de%20la%20musique%20classique%20de%20l'Inde%20du%20Sud%20-%20Disc%202/11%20Raga%20Alapana.m4a - File Folder Count4 - Library Folder Count1 - - 3774 - - Track ID3774 - NameTala Vadyam (Traditional percussion ensemble) - ArtistL. Subramaniam - AlbumAnthologie de la musique classique de l'Inde du sud - GenreClassical - KindAAC audio file - Size19892884 - Total Time821915 - Track Number12 - Track Count12 - Year1990 - Date Modified2006-08-13T08:37:30Z - Date Added2009-10-03T14:55:46Z - Bit Rate192 - Sample Rate44100 - Normalization1258 - Artwork Count1 - Persistent IDFB223EF75CE9C7F6 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Anthologie%20de%20la%20musique%20classique%20de%20l'Inde%20du%20sud/12%20Tala%20Vadyam%20(Traditional%20percussion%20ensemble).m4a - File Folder Count4 - Library Folder Count1 - - 3776 - - Track ID3776 - NameTavil solo - ArtistL. Subramaniam - AlbumAnthologie de la musique classique de l'Inde du Sud - Disc 2 - GenreClassical - KindAAC audio file - Size12722880 - Total Time525884 - Track Number12 - Track Count12 - Date Modified2006-08-13T08:37:34Z - Date Added2009-10-03T14:55:47Z - Bit Rate192 - Sample Rate44100 - Normalization1165 - Artwork Count1 - Persistent IDF8DC8E1A4D0B3BF3 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Anthologie%20de%20la%20musique%20classique%20de%20l'Inde%20du%20Sud%20-%20Disc%202/12%20Tavil%20solo.m4a - File Folder Count4 - Library Folder Count1 - - 3778 - - Track ID3778 - NameRagam et Tanam - ArtistL. Subramaniam - AlbumAnthologie de la musique classique de l'Inde du Sud - Disc 4 - GenreClassical - KindAAC audio file - Size39558148 - Total Time1638607 - Disc Number4 - Disc Count4 - Track Number1 - Track Count3 - Date Modified2006-08-13T08:37:28Z - Date Added2009-10-03T14:55:47Z - Bit Rate192 - Sample Rate44100 - Normalization2188 - Artwork Count1 - Persistent ID773B40BD9D13EC37 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Anthologie%20de%20la%20musique%20classique%20de%20l'Inde%20du%20Sud%20-%20Disc%204/4-01%20Ragam%20et%20Tanam.m4a - File Folder Count4 - Library Folder Count1 - - 3780 - - Track ID3780 - NamePallavi - ArtistL. Subramaniam - AlbumAnthologie de la musique classique de l'Inde du Sud - Disc 4 - GenreClassical - KindAAC audio file - Size33672853 - Total Time1393474 - Disc Number4 - Disc Count4 - Track Number2 - Track Count3 - Date Modified2006-08-13T08:37:24Z - Date Added2009-10-03T14:55:47Z - Bit Rate192 - Sample Rate44100 - Normalization1395 - Artwork Count1 - Persistent ID91632FC02D7B7F07 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Anthologie%20de%20la%20musique%20classique%20de%20l'Inde%20du%20Sud%20-%20Disc%204/4-02%20Pallavi.m4a - File Folder Count4 - Library Folder Count1 - - 3782 - - Track ID3782 - NameMangalam "Bhavamana" - ArtistL. Subramaniam - AlbumAnthologie de la musique classique de l'Inde du Sud - Disc 4 - GenreClassical - KindAAC audio file - Size2557160 - Total Time104604 - Disc Number4 - Disc Count4 - Track Number3 - Track Count3 - Date Modified2006-08-13T08:37:20Z - Date Added2009-10-03T14:55:47Z - Bit Rate192 - Sample Rate44100 - Normalization1888 - Artwork Count1 - Persistent ID27F39B82D16BAF47 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/L.%20Subramaniam/Anthologie%20de%20la%20musique%20classique%20de%20l'Inde%20du%20Sud%20-%20Disc%204/4-03%20Mangalam%20_Bhavamana_.m4a - File Folder Count4 - Library Folder Count1 - - 3784 - - Track ID3784 - NameVathapi Ganapathim - ArtistKunnakkudi R. Vaidyanathan - AlbumNadhadhwani - GenreWorld - KindAAC audio file - Size17598077 - Total Time726179 - Track Number1 - Track Count8 - Year1990 - Date Modified2006-08-13T06:41:02Z - Date Added2009-10-03T14:55:47Z - Bit Rate192 - Sample Rate44100 - Normalization1108 - Artwork Count1 - Persistent IDEBEC5FAD1F55E0F8 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kunnakkudi%20R.%20Vaidyanathan/Nadhadhwani/01%20Vathapi%20Ganapathim.m4a - File Folder Count4 - Library Folder Count1 - - 3786 - - Track ID3786 - NameEmtha Nerchina - ArtistKunnakkudi R. Vaidyanathan - AlbumNadhadhwani - GenreWorld - KindAAC audio file - Size11205229 - Total Time462005 - Track Number2 - Track Count8 - Year1990 - Date Modified2006-08-13T06:40:54Z - Date Added2009-10-03T14:55:47Z - Bit Rate192 - Sample Rate44100 - Normalization1118 - Artwork Count1 - Persistent ID4D98546736E56766 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kunnakkudi%20R.%20Vaidyanathan/Nadhadhwani/02%20Emtha%20Nerchina.m4a - File Folder Count4 - Library Folder Count1 - - 3788 - - Track ID3788 - NameMagudi - ArtistKunnakkudi R. Vaidyanathan - AlbumNadhadhwani - GenreWorld - KindAAC audio file - Size14163587 - Total Time584259 - Track Number3 - Track Count8 - Year1990 - Date Modified2006-08-13T06:40:50Z - Date Added2009-10-03T14:55:47Z - Bit Rate192 - Sample Rate44100 - Normalization917 - Artwork Count1 - Persistent IDA3A058823006FE28 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kunnakkudi%20R.%20Vaidyanathan/Nadhadhwani/03%20Magudi.m4a - File Folder Count4 - Library Folder Count1 - - 3790 - - Track ID3790 - NameKuthoohalapriya, Kathanakuthoohalam, Shanmukhapriya - ArtistKunnakkudi R. Vaidyanathan - AlbumNadhadhwani - GenreWorld - KindAAC audio file - Size6611526 - Total Time272182 - Track Number4 - Track Count8 - Year1990 - Date Modified2006-08-13T06:40:42Z - Date Added2009-10-03T14:55:48Z - Bit Rate192 - Sample Rate44100 - Normalization1079 - Artwork Count1 - Persistent ID2D2820AA13B31091 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kunnakkudi%20R.%20Vaidyanathan/Nadhadhwani/04%20Kuthoohalapriya,%20Kathanakuthoohalam,%20Shanmukhapriya.m4a - File Folder Count4 - Library Folder Count1 - - 3792 - - Track ID3792 - NameNadhadhwani, Hamsanadham, Hamsadhwani - ArtistKunnakkudi R. Vaidyanathan - AlbumNadhadhwani - GenreWorld - KindAAC audio file - Size7901046 - Total Time325472 - Track Number5 - Track Count8 - Year1990 - Date Modified2006-08-13T06:40:40Z - Date Added2009-10-03T14:55:48Z - Bit Rate192 - Sample Rate44100 - Normalization996 - Artwork Count1 - Persistent IDEFF2A427BB3CC8FB - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kunnakkudi%20R.%20Vaidyanathan/Nadhadhwani/05%20Nadhadhwani,%20Hamsanadham,%20Hamsadhwani.m4a - File Folder Count4 - Library Folder Count1 - - 3794 - - Track ID3794 - NameSuddha Kanada, Suddha Saveri, Dharbarikanada - ArtistKunnakkudi R. Vaidyanathan - AlbumNadhadhwani - GenreWorld - KindAAC audio file - Size12668423 - Total Time522470 - Track Number6 - Track Count8 - Year1990 - Date Modified2006-08-13T06:40:36Z - Date Added2009-10-03T14:55:48Z - Bit Rate192 - Sample Rate44100 - Normalization1027 - Artwork Count1 - Persistent ID0BEB5F6991D8B065 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kunnakkudi%20R.%20Vaidyanathan/Nadhadhwani/06%20Suddha%20Kanada,%20Suddha%20Saveri,%20Dharbarikanada.m4a - File Folder Count4 - Library Folder Count1 - - 3796 - - Track ID3796 - NameJourney to Space - ArtistKunnakkudi R. Vaidyanathan - AlbumNadhadhwani - GenreWorld - KindAAC audio file - Size10559607 - Total Time435326 - Track Number7 - Track Count8 - Year1990 - Date Modified2006-08-13T06:40:30Z - Date Added2009-10-03T14:55:48Z - Bit Rate192 - Sample Rate44100 - Normalization1120 - Artwork Count1 - Persistent ID813A7A719F61E0BD - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kunnakkudi%20R.%20Vaidyanathan/Nadhadhwani/07%20Journey%20to%20Space.m4a - File Folder Count4 - Library Folder Count1 - - 3798 - - Track ID3798 - NameAmrita Bhairavi, Amritavarshini, Sindhu Bhairavi - ArtistKunnakkudi R. Vaidyanathan - AlbumNadhadhwani - GenreWorld - KindAAC audio file - Size5510609 - Total Time226439 - Track Number8 - Track Count8 - Year1990 - Date Modified2006-08-13T06:40:26Z - Date Added2009-10-03T14:55:48Z - Bit Rate192 - Sample Rate44100 - Normalization581 - Artwork Count1 - Persistent ID573C1A3F8C3ABA09 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kunnakkudi%20R.%20Vaidyanathan/Nadhadhwani/08%20Amrita%20Bhairavi,%20Amritavarshini,%20Sindhu%20Bhairavi.m4a - File Folder Count4 - Library Folder Count1 - - 3800 - - Track ID3800 - NameSchumann (R): Piano Concerto In A Minor, Op. 54 - 1. Allegro Affettuoso) - ArtistKrystian Zimerman, Herbert Von Karajan; Berlin Philharmonic - ComposerRobert Schumann - AlbumSchumann (R); Grieg: Piano Concertos - GenreClassical - KindAAC audio file - Size22524670 - Total Time932001 - Disc Number1 - Disc Count1 - Track Number1 - Track Count6 - Year1982 - Date Modified2006-08-07T15:33:10Z - Date Added2009-10-03T14:55:48Z - Bit Rate192 - Sample Rate44100 - Normalization1198 - Artwork Count1 - Persistent ID5106DB302E1C28D6 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Krystian%20Zimerman,%20Herbert%20Von%20Karajan%3B%20Berlin%20Philharmonic/Schumann%20(R)%3B%20Grieg_%20%20Piano%20Concertos/01%20Schumann%20(R)_%20Piano%20Concerto%20In%20A%20Minor,%20Op.%2054%20-%201.%20Allegro%20Affettuoso).m4a - File Folder Count4 - Library Folder Count1 - - 3802 - - Track ID3802 - NameSchumann (R): Piano Concerto In A Minor, Op. 54 - 2. Intermezzo - Andantiono Grazioso, Attacca - ArtistKrystian Zimerman, Herbert Von Karajan; Berlin Philharmonic - ComposerRobert Schumann - AlbumSchumann (R); Grieg: Piano Concertos - GenreClassical - KindAAC audio file - Size7901837 - Total Time325937 - Disc Number1 - Disc Count1 - Track Number2 - Track Count6 - Year1982 - Date Modified2006-08-07T15:33:10Z - Date Added2009-10-03T14:55:49Z - Bit Rate192 - Sample Rate44100 - Normalization167 - Artwork Count1 - Persistent IDF59A0C89C7D1E99C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Krystian%20Zimerman,%20Herbert%20Von%20Karajan%3B%20Berlin%20Philharmonic/Schumann%20(R)%3B%20Grieg_%20%20Piano%20Concertos/02%20Schumann%20(R)_%20Piano%20Concerto%20In%20A%20Minor,%20Op.%2054%20-%202.%20Intermezzo%20-%20Andantiono%20Grazioso,%20Attacca.m4a - File Folder Count4 - Library Folder Count1 - - 3804 - - Track ID3804 - NameSchumann (R): Piano Concerto In A Minor, Op. 54 - 3. Allegro Vivace - ArtistKrystian Zimerman, Herbert Von Karajan; Berlin Philharmonic - ComposerRobert Schumann - AlbumSchumann (R); Grieg: Piano Concertos - GenreClassical - KindAAC audio file - Size15495214 - Total Time648067 - Disc Number1 - Disc Count1 - Track Number3 - Track Count6 - Year1982 - Date Modified2006-08-07T15:33:10Z - Date Added2009-10-03T14:55:49Z - Bit Rate192 - Sample Rate44100 - Normalization1198 - Artwork Count1 - Persistent ID236A2E626356F37E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Krystian%20Zimerman,%20Herbert%20Von%20Karajan%3B%20Berlin%20Philharmonic/Schumann%20(R)%3B%20Grieg_%20%20Piano%20Concertos/03%20Schumann%20(R)_%20Piano%20Concerto%20In%20A%20Minor,%20Op.%2054%20-%203.%20Allegro%20Vivace.m4a - File Folder Count4 - Library Folder Count1 - - 3806 - - Track ID3806 - NameGrieg: Piano Concerto In A Minor, Op. 16 - 1. Allegro Molto Moderato - ArtistKrystian Zimerman, Herbert Von Karajan; Berlin Philharmonic - ComposerEdvard Grieg - AlbumSchumann (R); Grieg: Piano Concertos - GenreClassical - KindAAC audio file - Size20353328 - Total Time842000 - Disc Number1 - Disc Count1 - Track Number4 - Track Count6 - Year1982 - Date Modified2006-08-07T15:33:10Z - Date Added2009-10-03T14:55:49Z - Bit Rate192 - Sample Rate44100 - Normalization1215 - Artwork Count1 - Persistent ID63301FFD96191AF8 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Krystian%20Zimerman,%20Herbert%20Von%20Karajan%3B%20Berlin%20Philharmonic/Schumann%20(R)%3B%20Grieg_%20%20Piano%20Concertos/04%20Grieg_%20Piano%20Concerto%20In%20A%20Minor,%20Op.%2016%20-%201.%20Allegro%20Molto%20Moderato.m4a - File Folder Count4 - Library Folder Count1 - - 3808 - - Track ID3808 - NameGrieg: Piano Concerto In A Minor, Op. 16 - 2. Adagio, Attacca - ArtistKrystian Zimerman, Herbert Von Karajan; Berlin Philharmonic - ComposerEdvard Grieg - AlbumSchumann (R); Grieg: Piano Concertos - GenreClassical - KindAAC audio file - Size10516532 - Total Time434002 - Disc Number1 - Disc Count1 - Track Number5 - Track Count6 - Year1982 - Date Modified2006-08-07T15:33:10Z - Date Added2009-10-03T14:55:49Z - Bit Rate192 - Sample Rate44100 - Normalization688 - Artwork Count1 - Persistent IDD8CCB56BFBAB53FF - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Krystian%20Zimerman,%20Herbert%20Von%20Karajan%3B%20Berlin%20Philharmonic/Schumann%20(R)%3B%20Grieg_%20%20Piano%20Concertos/05%20Grieg_%20Piano%20Concerto%20In%20A%20Minor,%20Op.%2016%20-%202.%20Adagio,%20Attacca.m4a - File Folder Count4 - Library Folder Count1 - - 3810 - - Track ID3810 - NameGrieg: Piano Concerto In A Minor, Op. 16 - 3. Allegro Moderato Molto E Marcato, Quasi Presto, Andante Maestoso - ArtistKrystian Zimerman, Herbert Von Karajan; Berlin Philharmonic - ComposerEdvard Grieg - AlbumSchumann (R); Grieg: Piano Concertos - GenreClassical - KindAAC audio file - Size15762798 - Total Time651016 - Disc Number1 - Disc Count1 - Track Number6 - Track Count6 - Year1982 - Date Modified2006-08-07T15:33:12Z - Date Added2009-10-03T14:55:49Z - Bit Rate192 - Sample Rate44100 - Normalization1231 - Artwork Count1 - Persistent IDFA4FF90351F68878 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Krystian%20Zimerman,%20Herbert%20Von%20Karajan%3B%20Berlin%20Philharmonic/Schumann%20(R)%3B%20Grieg_%20%20Piano%20Concertos/06%20Grieg_%20Piano%20Concerto%20In%20A%20Minor,%20Op.%2016%20-%203.%20Allegro%20Moderato%20Molto%20E%20Marcato,%20Quasi%20Presto,%20Andante%20Maestoso.m4a - File Folder Count4 - Library Folder Count1 - - 3812 - - Track ID3812 - NameChala Jata Hoon - ArtistKishore Kumar - AlbumHits All the Way - KindMPEG audio file - Size3262402 - Total Time271595 - Track Number10 - Date Modified2007-04-09T08:36:50Z - Date Added2009-10-03T14:55:50Z - Bit Rate96 - Sample Rate44100 - Artwork Count1 - Persistent ID117EEEAC6DC27575 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/kishore%20kumar/Hits%20All%20the%20Way/10%20Chala%20Jata%20Hoon.mp3 - File Folder Count4 - Library Folder Count1 - - 3814 - - Track ID3814 - NameHum Hain Rahi Pyar Ke - Artistkishore kumar - AlbumHits All the Way - GenreHindi Old hits - KindMPEG audio file - Size2473404 - Total Time205844 - Track Number2 - Date Modified2007-04-09T08:36:50Z - Date Added2009-10-03T14:55:50Z - Bit Rate96 - Sample Rate44100 - Artwork Count1 - Persistent ID60838C2D75E2A121 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/kishore%20kumar/Hits%20All%20the%20Way/02%20Hum%20Hain%20Rahi%20Pyar%20Ke.mp3 - File Folder Count4 - Library Folder Count1 - - 3816 - - Track ID3816 - NamePart I - ArtistKeith Jarrett - ComposerKeith Jarrett - AlbumThe Koln Concert - GenreJazz - KindAAC audio file - Size37811783 - Total Time1561610 - Disc Number1 - Disc Count1 - Track Number1 - Track Count4 - Year1975 - Date Modified2006-07-27T16:19:42Z - Date Added2009-10-03T14:55:50Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3389984791 - Play Date UTC2011-06-03T16:56:31Z - Normalization874 - Artwork Count1 - Sort AlbumKoln Concert - Persistent ID510557EFCBAD559F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Keith%20Jarrett/The%20Koln%20Concert/01%20Part%20I.m4a - File Folder Count4 - Library Folder Count1 - - 3818 - - Track ID3818 - NamePart II A - ArtistKeith Jarrett - ComposerKeith Jarrett - AlbumThe Koln Concert - GenreJazz - KindAAC audio file - Size21674287 - Total Time894756 - Disc Number1 - Disc Count1 - Track Number2 - Track Count4 - Year1975 - Date Modified2006-07-27T16:19:44Z - Date Added2009-10-03T14:55:50Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3389985685 - Play Date UTC2011-06-03T17:11:25Z - Normalization774 - Artwork Count1 - Sort AlbumKoln Concert - Persistent ID7BE6157C7A944DEE - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Keith%20Jarrett/The%20Koln%20Concert/02%20Part%20II%20A.m4a - File Folder Count4 - Library Folder Count1 - - 3820 - - Track ID3820 - NamePart II B - ArtistKeith Jarrett - ComposerKeith Jarrett - AlbumThe Koln Concert - GenreJazz - KindAAC audio file - Size26508430 - Total Time1094517 - Disc Number1 - Disc Count1 - Track Number3 - Track Count4 - Year1975 - Date Modified2006-07-27T16:19:46Z - Date Added2009-10-03T14:55:50Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3389986780 - Play Date UTC2011-06-03T17:29:40Z - Normalization781 - Artwork Count1 - Sort AlbumKoln Concert - Persistent IDF14B6F46956F15A5 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Keith%20Jarrett/The%20Koln%20Concert/03%20Part%20II%20B.m4a - File Folder Count4 - Library Folder Count1 - - 3822 - - Track ID3822 - NamePart II C - ArtistKeith Jarrett - ComposerKeith Jarrett - AlbumThe Koln Concert - GenreJazz - KindAAC audio file - Size10098304 - Total Time416843 - Disc Number1 - Disc Count1 - Track Number4 - Track Count4 - Year1975 - Date Modified2006-07-27T16:19:48Z - Date Added2009-10-03T14:55:50Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3389987197 - Play Date UTC2011-06-03T17:36:37Z - Normalization948 - Artwork Count1 - Sort AlbumKoln Concert - Persistent ID29B257311FC05657 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Keith%20Jarrett/The%20Koln%20Concert/04%20Part%20II%20C.m4a - File Folder Count4 - Library Folder Count1 - - 3824 - - Track ID3824 - NameRaga Abheri/Raga Bhimplasi - ArtistKadri Gopalnath & V. Narasinhalu Wadavati - AlbumJugalbandi - Classical Confluence - GenreClassical - KindAAC audio file - Size42782735 - Total Time1771634 - Track Number1 - Track Count3 - Date Modified2006-07-30T09:09:22Z - Date Added2009-10-03T14:55:50Z - Bit Rate192 - Sample Rate44100 - Normalization1937 - Artwork Count1 - Persistent ID334DF86DD0534586 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kadri%20Gopalnath%20&%20V.%20Narasinhalu%20Wadavati/Jugalbandi%20-%20Classical%20Confluence/01%20Raga%20Abheri_Raga%20Bhimplasi.m4a - File Folder Count4 - Library Folder Count1 - - 3826 - - Track ID3826 - NameRaga Mohana/Raga Bhoopali - ArtistKadri Gopalnath & V. Narasinhalu Wadavati - AlbumJugalbandi - Classical Confluence - GenreClassical - KindAAC audio file - Size33659938 - Total Time1394078 - Track Number2 - Track Count3 - Date Modified2006-07-30T09:09:24Z - Date Added2009-10-03T14:55:51Z - Bit Rate192 - Sample Rate44100 - Normalization2083 - Artwork Count1 - Persistent ID85070793AF56128C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kadri%20Gopalnath%20&%20V.%20Narasinhalu%20Wadavati/Jugalbandi%20-%20Classical%20Confluence/02%20Raga%20Mohana_Raga%20Bhoopali.m4a - File Folder Count4 - Library Folder Count1 - - 3828 - - Track ID3828 - NameRaga SindhuBhairavi/Raga Bhairavi - ArtistKadri Gopalnath & V. Narasinhalu Wadavati - AlbumJugalbandi - Classical Confluence - GenreClassical - KindAAC audio file - Size10449751 - Total Time432981 - Track Number3 - Track Count3 - Date Modified2006-07-30T09:09:26Z - Date Added2009-10-03T14:55:51Z - Bit Rate192 - Sample Rate44100 - Normalization1945 - Artwork Count1 - Persistent ID2289BFC1F51400E6 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kadri%20Gopalnath%20&%20V.%20Narasinhalu%20Wadavati/Jugalbandi%20-%20Classical%20Confluence/03%20Raga%20SindhuBhairavi_Raga%20Bhairavi.m4a - File Folder Count4 - Library Folder Count1 - - 3830 - - Track ID3830 - NameAlai Paayuthe - ArtistKadri Gopalnath - ComposerManikanth Kadri - AlbumDream Journey vol 1 - GenreWorld - KindAAC audio file - Size11131277 - Total Time462284 - Track Number1 - Track Count7 - Year2001 - Date Modified2006-08-13T06:40:22Z - Date Added2009-10-03T14:55:52Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3391320314 - Play Date UTC2011-06-19T03:55:14Z - Normalization2629 - Persistent ID92E6DFF8838A84C8 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kadri%20Gopalnath/Dream%20Journey%20vol%201/01%20Alai%20Paayuthe.m4a - File Folder Count4 - Library Folder Count1 - - 3832 - - Track ID3832 - NameJanani Janani - ArtistKadri Gopalnath - ComposerManikanth Kadri - AlbumDream Journey vol 1 - GenreWorld - KindAAC audio file - Size12757625 - Total Time529459 - Track Number2 - Track Count7 - Year2001 - Date Modified2006-08-13T06:40:18Z - Date Added2009-10-03T14:55:53Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3391320843 - Play Date UTC2011-06-19T04:04:03Z - Normalization1356 - Persistent IDF36DCB1A20A5B3FB - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kadri%20Gopalnath/Dream%20Journey%20vol%201/02%20Janani%20Janani.m4a - File Folder Count4 - Library Folder Count1 - - 3834 - - Track ID3834 - NameKurai Ondrum Illai - ArtistKadri Gopalnath - ComposerManikanth Kadri - AlbumDream Journey vol 1 - GenreWorld - KindAAC audio file - Size12252903 - Total Time508585 - Track Number3 - Track Count7 - Year2001 - Date Modified2006-08-13T06:40:12Z - Date Added2009-10-03T14:55:53Z - Bit Rate192 - Sample Rate44100 - Normalization2650 - Persistent ID0BFEB1F1D2230C30 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kadri%20Gopalnath/Dream%20Journey%20vol%201/03%20Kurai%20Ondrum%20Illai.m4a - File Folder Count4 - Library Folder Count1 - - 3836 - - Track ID3836 - NameRaga: Kalyana Vasantham - ArtistKadri Gopalnath - ComposerManikanth Kadri - AlbumDream Journey vol 1 - GenreWorld - KindAAC audio file - Size4750127 - Total Time198087 - Track Number4 - Track Count7 - Year2001 - Date Modified2006-08-13T06:40:06Z - Date Added2009-10-03T14:55:53Z - Bit Rate192 - Sample Rate44100 - Normalization3322 - Persistent ID0B4137B243AE0982 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kadri%20Gopalnath/Dream%20Journey%20vol%201/04%20Raga_%20Kalyana%20Vasantham.m4a - File Folder Count4 - Library Folder Count1 - - 3838 - - Track ID3838 - NameEththanai Kodi Inbam - ArtistKadri Gopalnath - ComposerManikanth Kadri - AlbumDream Journey vol 1 - GenreWorld - KindAAC audio file - Size14237026 - Total Time590574 - Track Number5 - Track Count7 - Year2001 - Date Modified2006-08-13T06:40:04Z - Date Added2009-10-03T14:55:53Z - Bit Rate192 - Sample Rate44100 - Normalization1651 - Persistent ID7A04457BD24CABCE - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kadri%20Gopalnath/Dream%20Journey%20vol%201/05%20Eththanai%20Kodi%20Inbam.m4a - File Folder Count4 - Library Folder Count1 - - 3840 - - Track ID3840 - NameRagi Tandira - ArtistKadri Gopalnath - ComposerManikanth Kadri - AlbumDream Journey vol 1 - GenreWorld - KindAAC audio file - Size10418876 - Total Time432818 - Track Number6 - Track Count7 - Year2001 - Date Modified2006-08-13T06:39:58Z - Date Added2009-10-03T14:55:53Z - Bit Rate192 - Sample Rate44100 - Normalization1714 - Persistent IDB4FF2B19A0285A0D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kadri%20Gopalnath/Dream%20Journey%20vol%201/06%20Ragi%20Tandira.m4a - File Folder Count4 - Library Folder Count1 - - 3842 - - Track ID3842 - NameEnglish Notes - ArtistKadri Gopalnath - ComposerManikanth Kadri - AlbumDream Journey vol 1 - GenreWorld - KindAAC audio file - Size7101745 - Total Time294032 - Track Number7 - Track Count7 - Year2001 - Date Modified2006-08-13T06:39:54Z - Date Added2009-10-03T14:55:53Z - Bit Rate192 - Sample Rate44100 - Normalization2406 - Persistent IDB8739716E4BC4D82 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kadri%20Gopalnath/Dream%20Journey%20vol%201/07%20English%20Notes.m4a - File Folder Count4 - Library Folder Count1 - - 3844 - - Track ID3844 - NameSayonee - ArtistJunoon - AlbumAzadi - GenreWorld - KindAAC audio file - Size7416200 - Total Time305526 - Track Number1 - Track Count15 - Date Modified2006-08-13T06:39:50Z - Date Added2009-10-03T14:55:53Z - Bit Rate192 - Sample Rate44100 - Normalization918 - Artwork Count1 - Persistent IDE00D1FC101EF9DAF - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Junoon/Azadi/01%20Sayonee.m4a - File Folder Count4 - Library Folder Count1 - - 3846 - - Track ID3846 - NameMeri Awaaz Suno - ArtistJunoon - AlbumAzadi - GenreWorld - KindAAC audio file - Size8072232 - Total Time332647 - Track Number2 - Track Count15 - Date Modified2006-08-13T06:39:46Z - Date Added2009-10-03T14:55:53Z - Bit Rate192 - Sample Rate44100 - Normalization1014 - Artwork Count1 - Persistent IDDE82B341A348847D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Junoon/Azadi/02%20Meri%20Awaaz%20Suno.m4a - File Folder Count4 - Library Folder Count1 - - 3848 - - Track ID3848 - NameKhudi - ArtistJunoon - AlbumAzadi - GenreWorld - KindAAC audio file - Size6058236 - Total Time249311 - Track Number3 - Track Count15 - Date Modified2006-08-13T06:39:42Z - Date Added2009-10-03T14:55:54Z - Bit Rate192 - Sample Rate44100 - Normalization1092 - Artwork Count1 - Persistent ID6AB6983D144D3680 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Junoon/Azadi/03%20Khudi.m4a - File Folder Count4 - Library Folder Count1 - - 3850 - - Track ID3850 - NameYaar Bina - ArtistJunoon - AlbumAzadi - GenreWorld - KindAAC audio file - Size5526756 - Total Time227182 - Track Number4 - Track Count15 - Date Modified2006-08-13T06:39:40Z - Date Added2009-10-03T14:55:54Z - Bit Rate192 - Sample Rate44100 - Normalization1059 - Artwork Count1 - Persistent IDA93B567A32741520 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Junoon/Azadi/04%20Yaar%20Bina.m4a - File Folder Count4 - Library Folder Count1 - - 3852 - - Track ID3852 - NameMukh Gae - ArtistJunoon - AlbumAzadi - GenreWorld - KindAAC audio file - Size8098433 - Total Time333715 - Track Number5 - Track Count15 - Date Modified2006-08-13T06:39:38Z - Date Added2009-10-03T14:55:54Z - Bit Rate192 - Sample Rate44100 - Normalization924 - Artwork Count1 - Persistent ID687CE56748388723 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Junoon/Azadi/05%20Mukh%20Gae.m4a - File Folder Count4 - Library Folder Count1 - - 3854 - - Track ID3854 - NameHeer - ArtistJunoon - AlbumAzadi - GenreWorld - KindAAC audio file - Size7062398 - Total Time290898 - Track Number6 - Track Count15 - Date Modified2006-08-13T06:39:34Z - Date Added2009-10-03T14:55:54Z - Bit Rate192 - Sample Rate44100 - Normalization943 - Artwork Count1 - Persistent ID43AB15622BF10A3E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Junoon/Azadi/06%20Heer.m4a - File Folder Count4 - Library Folder Count1 - - 3856 - - Track ID3856 - NameWahda Hoo - ArtistJunoon - AlbumAzadi - GenreWorld - KindAAC audio file - Size7087509 - Total Time291943 - Track Number7 - Track Count15 - Date Modified2006-08-13T06:39:30Z - Date Added2009-10-03T14:55:54Z - Bit Rate192 - Sample Rate44100 - Normalization899 - Artwork Count1 - Persistent IDCF4A02ACE1A2B1F3 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Junoon/Azadi/07%20Wahda%20Hoo.m4a - File Folder Count4 - Library Folder Count1 - - 3858 - - Track ID3858 - NameKyun Parishan - ArtistJunoon - AlbumAzadi - GenreWorld - KindAAC audio file - Size5737137 - Total Time235936 - Track Number8 - Track Count15 - Date Modified2006-08-13T06:39:28Z - Date Added2009-10-03T14:55:54Z - Bit Rate192 - Sample Rate44100 - Normalization963 - Artwork Count1 - Persistent ID1293852C7E2937CB - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Junoon/Azadi/08%20Kyun%20Parishan.m4a - File Folder Count4 - Library Folder Count1 - - 3860 - - Track ID3860 - NameMahiwal - ArtistJunoon - AlbumAzadi - GenreWorld - KindAAC audio file - Size8754082 - Total Time360813 - Track Number9 - Track Count15 - Date Modified2006-08-13T06:39:24Z - Date Added2009-10-03T14:55:54Z - Bit Rate192 - Sample Rate44100 - Normalization1030 - Artwork Count1 - Persistent ID0C762D78D78C7DB1 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Junoon/Azadi/09%20Mahiwal.m4a - File Folder Count4 - Library Folder Count1 - - 3862 - - Track ID3862 - NameKisne Suna - ArtistJunoon - AlbumAzadi - GenreWorld - KindAAC audio file - Size5763699 - Total Time237051 - Track Number10 - Track Count15 - Date Modified2006-08-13T06:39:20Z - Date Added2009-10-03T14:55:55Z - Bit Rate192 - Sample Rate44100 - Normalization909 - Artwork Count1 - Persistent IDE0CB4CF446887C04 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Junoon/Azadi/10%20Kisne%20Suna.m4a - File Folder Count4 - Library Folder Count1 - - 3864 - - Track ID3864 - NameLal Meri Pat - ArtistJunoon - AlbumAzadi - GenreWorld - KindAAC audio file - Size7748353 - Total Time319249 - Track Number11 - Track Count15 - Date Modified2006-08-13T06:39:18Z - Date Added2009-10-03T14:55:55Z - Bit Rate192 - Sample Rate44100 - Normalization906 - Artwork Count1 - Persistent ID6514CDA229D09DBD - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Junoon/Azadi/11%20Lal%20Meri%20Pat.m4a - File Folder Count4 - Library Folder Count1 - - 3866 - - Track ID3866 - NameDil Nahin Lag Raha - ArtistJunoon - AlbumAzadi - GenreWorld - KindAAC audio file - Size5734991 - Total Time235843 - Track Number12 - Track Count15 - Date Modified2006-08-13T06:39:14Z - Date Added2009-10-03T14:55:55Z - Bit Rate192 - Sample Rate44100 - Normalization949 - Artwork Count1 - Persistent ID18C965876072104E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Junoon/Azadi/12%20Dil%20Nahin%20Lag%20Raha.m4a - File Folder Count4 - Library Folder Count1 - - 3868 - - Track ID3868 - NameLoishay - ArtistJunoon - AlbumAzadi - GenreWorld - KindAAC audio file - Size5300292 - Total Time217755 - Track Number13 - Track Count15 - Date Modified2006-08-13T06:39:12Z - Date Added2009-10-03T14:55:55Z - Bit Rate192 - Sample Rate44100 - Normalization910 - Artwork Count1 - Persistent ID7E543F949F7465D2 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Junoon/Azadi/13%20Loishay.m4a - File Folder Count4 - Library Folder Count1 - - 3870 - - Track ID3870 - NameSaeein Alaap - ArtistJunoon - AlbumAzadi - GenreWorld - KindAAC audio file - Size1325568 - Total Time53009 - Track Number14 - Track Count15 - Date Modified2006-08-13T06:39:10Z - Date Added2009-10-03T14:55:55Z - Bit Rate192 - Sample Rate44100 - Normalization1207 - Artwork Count1 - Persistent ID5EB968A945AE2176 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Junoon/Azadi/14%20Saeein%20Alaap.m4a - File Folder Count4 - Library Folder Count1 - - 3872 - - Track ID3872 - NameSaeein - ArtistJunoon - AlbumAzadi - GenreWorld - KindAAC audio file - Size6784242 - Total Time279427 - Track Number15 - Track Count15 - Date Modified2006-08-13T06:39:10Z - Date Added2009-10-03T14:55:55Z - Bit Rate192 - Sample Rate44100 - Normalization877 - Artwork Count1 - Persistent ID2F31B1864638D709 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Junoon/Azadi/15%20Saeein.m4a - File Folder Count4 - Library Folder Count1 - - 3874 - - Track ID3874 - NameTurnaround - ArtistJoshua Redman - ComposerColeman, Ornette - AlbumWish - GenreJazz - KindAAC audio file - Size9310349 - Total Time384706 - Disc Number1 - Disc Count1 - Track Number1 - Track Count10 - Year1993 - Date Modified2006-08-07T13:59:58Z - Date Added2009-10-03T14:55:55Z - Bit Rate192 - Sample Rate44100 - Play Count3 - Play Date3428048479 - Play Date UTC2012-08-17T06:11:19Z - Normalization1259 - Artwork Count1 - Persistent ID37BBBF0051A5B8B2 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Joshua%20Redman/Wish/01%20Turnaround.m4a - File Folder Count4 - Library Folder Count1 - - 3876 - - Track ID3876 - NameSoul Dance - ArtistJoshua Redman - ComposerRedman, Joshua - AlbumWish - GenreJazz - KindAAC audio file - Size9526097 - Total Time392903 - Disc Number1 - Disc Count1 - Track Number2 - Track Count10 - Year1993 - Date Modified2006-08-07T13:59:58Z - Date Added2009-10-03T14:55:55Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3422530416 - Play Date UTC2012-06-14T09:23:36Z - Normalization1259 - Artwork Count1 - Persistent ID45BD34E120BD9E78 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Joshua%20Redman/Wish/02%20Soul%20Dance.m4a - File Folder Count4 - Library Folder Count1 - - 3878 - - Track ID3878 - NameMake Sure You're Sure - ArtistJoshua Redman - ComposerWonder, Stevie - AlbumWish - GenreJazz - KindAAC audio file - Size7907405 - Total Time326262 - Disc Number1 - Disc Count1 - Track Number3 - Track Count10 - Year1993 - Date Modified2006-08-07T13:59:58Z - Date Added2009-10-03T14:55:56Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3422530742 - Play Date UTC2012-06-14T09:29:02Z - Normalization1259 - Artwork Count1 - Persistent ID0D307E9611BD8037 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Joshua%20Redman/Wish/03%20Make%20Sure%20You're%20Sure.m4a - File Folder Count4 - Library Folder Count1 - - 3880 - - Track ID3880 - NameThe Deserving Many - ArtistJoshua Redman - ComposerRedman, Joshua - AlbumWish - GenreJazz - KindAAC audio file - Size8244333 - Total Time339938 - Disc Number1 - Disc Count1 - Track Number4 - Track Count10 - Year1993 - Date Modified2006-08-07T13:59:58Z - Date Added2009-10-03T14:55:56Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3422531082 - Play Date UTC2012-06-14T09:34:42Z - Normalization1259 - Artwork Count1 - Sort NameDeserving Many - Persistent IDEB28943F5B85FD68 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Joshua%20Redman/Wish/04%20The%20Deserving%20Many.m4a - File Folder Count4 - Library Folder Count1 - - 3882 - - Track ID3882 - NameWe Had A Sister - ArtistJoshua Redman - ComposerMetheny, Pat - AlbumWish - GenreJazz - KindAAC audio file - Size8425288 - Total Time347415 - Disc Number1 - Disc Count1 - Track Number5 - Track Count10 - Year1993 - Date Modified2006-08-07T13:59:58Z - Date Added2009-10-03T14:55:56Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3422531429 - Play Date UTC2012-06-14T09:40:29Z - Normalization1259 - Artwork Count1 - Persistent IDF0DE2C404061C7CB - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Joshua%20Redman/Wish/05%20We%20Had%20A%20Sister.m4a - File Folder Count4 - Library Folder Count1 - - 3884 - - Track ID3884 - NameMoose The Mooche - ArtistJoshua Redman - ComposerParker, Charlie - AlbumWish - GenreJazz - KindAAC audio file - Size5158784 - Total Time212484 - Disc Number1 - Disc Count1 - Track Number6 - Track Count10 - Year1993 - Date Modified2006-08-07T13:59:58Z - Date Added2009-10-03T14:55:56Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3422531642 - Play Date UTC2012-06-14T09:44:02Z - Normalization1259 - Artwork Count1 - Persistent ID9F6B8515E0FA7CDF - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Joshua%20Redman/Wish/06%20Moose%20The%20Mooche.m4a - File Folder Count4 - Library Folder Count1 - - 3886 - - Track ID3886 - NameTears In Heaven - ArtistJoshua Redman - ComposerClapton, Eric & Jennings, Will - AlbumWish - GenreJazz - KindAAC audio file - Size4971022 - Total Time204241 - Disc Number1 - Disc Count1 - Track Number7 - Track Count10 - Year1993 - Date Modified2006-08-07T13:59:58Z - Date Added2009-10-03T14:55:56Z - Bit Rate192 - Sample Rate44100 - Play Count3 - Play Date3430149649 - Play Date UTC2012-09-10T13:50:49Z - Normalization1259 - Artwork Count1 - Persistent ID9DB7501CC8D4E0BA - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Joshua%20Redman/Wish/07%20Tears%20In%20Heaven.m4a - File Folder Count4 - Library Folder Count1 - - 3888 - - Track ID3888 - NameWhittlin' - ArtistJoshua Redman - ComposerMetheny, Pat - AlbumWish - GenreJazz - KindAAC audio file - Size7819039 - Total Time322872 - Disc Number1 - Disc Count1 - Track Number8 - Track Count10 - Year1993 - Date Modified2006-08-07T13:59:56Z - Date Added2009-10-03T14:55:56Z - Bit Rate192 - Sample Rate44100 - Play Count3 - Play Date3430149970 - Play Date UTC2012-09-10T13:56:10Z - Normalization1259 - Artwork Count1 - Persistent IDADD339B9621152BF - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Joshua%20Redman/Wish/08%20Whittlin'.m4a - File Folder Count4 - Library Folder Count1 - - 3890 - - Track ID3890 - NameWish (Live) - ArtistJoshua Redman - ComposerRedman, Joshua - AlbumWish - GenreJazz - KindAAC audio file - Size10792578 - Total Time445241 - Disc Number1 - Disc Count1 - Track Number9 - Track Count10 - Year1993 - Date Modified2006-08-07T13:59:56Z - Date Added2009-10-03T14:55:56Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Persistent ID113F92A83323DF75 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Joshua%20Redman/Wish/09%20Wish%20(Live).m4a - File Folder Count4 - Library Folder Count1 - - 3892 - - Track ID3892 - NameBlues For Pat (Live) - ArtistJoshua Redman - ComposerHaden, Charlie - AlbumWish - GenreJazz - KindAAC audio file - Size17617381 - Total Time727502 - Disc Number1 - Disc Count1 - Track Number10 - Track Count10 - Year1993 - Date Modified2006-08-07T13:59:56Z - Date Added2009-10-03T14:55:56Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Persistent IDFBAD9D5F4FD4C66E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Joshua%20Redman/Wish/10%20Blues%20For%20Pat%20(Live).m4a - File Folder Count4 - Library Folder Count1 - - 3894 - - Track ID3894 - NameMozart: Symphony #40 In G Minor, K 550 - 1. Molto Allegro - ArtistJohn Eliot Gardiner; English Baroque Soloists - ComposerMOZART Wolfgang Amadeus (1756-1791) - AlbumMozart: Symphonies #40 & 41, "Jupiter" - GenreClassical - KindAAC audio file - Size10142006 - Total Time418004 - Disc Number1 - Disc Count1 - Track Number1 - Track Count8 - Year1992 - Date Modified2006-08-08T04:04:06Z - Date Added2009-10-03T14:55:58Z - Bit Rate192 - Sample Rate44100 - Normalization1206 - Artwork Count1 - Persistent ID1B6EF69FBDA18A6F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/John%20Eliot%20Gardiner%3B%20English%20Baroque%20Soloists/Mozart_%20Symphonies%20%2340%20&%2041,%20_Jupiter_/01%20Mozart_%20Symphony%20%2340%20In%20G%20Minor,%20K%20550%20-%201.%20Molto%20Allegro.m4a - File Folder Count4 - Library Folder Count1 - - 3896 - - Track ID3896 - NameMozart: Symphony #40 In G Minor, K 550 - 2. Andante - ArtistJohn Eliot Gardiner; English Baroque Soloists - ComposerMOZART Wolfgang Amadeus (1756-1791) - AlbumMozart: Symphonies #40 & 41, "Jupiter" - GenreClassical - KindAAC audio file - Size20283769 - Total Time837008 - Disc Number1 - Disc Count1 - Track Number2 - Track Count8 - Year1992 - Date Modified2006-08-08T04:04:06Z - Date Added2009-10-03T14:55:58Z - Bit Rate192 - Sample Rate44100 - Normalization812 - Artwork Count1 - Persistent IDB3EB5A3E84E9BB54 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/John%20Eliot%20Gardiner%3B%20English%20Baroque%20Soloists/Mozart_%20Symphonies%20%2340%20&%2041,%20_Jupiter_/02%20Mozart_%20Symphony%20%2340%20In%20G%20Minor,%20K%20550%20-%202.%20Andante.m4a - File Folder Count4 - Library Folder Count1 - - 3898 - - Track ID3898 - NameMozart: Symphony #40 In G Minor, K 550 - 3. Menuetto: Allegretto - Trio - ArtistJohn Eliot Gardiner; English Baroque Soloists - ComposerMOZART Wolfgang Amadeus (1756-1791) - AlbumMozart: Symphonies #40 & 41, "Jupiter" - GenreClassical - KindAAC audio file - Size7232383 - Total Time297678 - Disc Number1 - Disc Count1 - Track Number3 - Track Count8 - Year1992 - Date Modified2006-08-08T04:04:06Z - Date Added2009-10-03T14:55:58Z - Bit Rate192 - Sample Rate44100 - Normalization1041 - Artwork Count1 - Persistent IDBA1F8544E042F0AE - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/John%20Eliot%20Gardiner%3B%20English%20Baroque%20Soloists/Mozart_%20Symphonies%20%2340%20&%2041,%20_Jupiter_/03%20Mozart_%20Symphony%20%2340%20In%20G%20Minor,%20K%20550%20-%203.%20Menuetto_%20Allegretto%20-%20Trio.m4a - File Folder Count4 - Library Folder Count1 - - 3900 - - Track ID3900 - NameMozart: Symphony #40 In G Minor, K 550 - 4. Finale: Allegro Assai - ArtistJohn Eliot Gardiner; English Baroque Soloists - ComposerMOZART Wolfgang Amadeus (1756-1791) - AlbumMozart: Symphonies #40 & 41, "Jupiter" - GenreClassical - KindAAC audio file - Size13410963 - Total Time553353 - Disc Number1 - Disc Count1 - Track Number4 - Track Count8 - Year1992 - Date Modified2006-08-08T04:04:06Z - Date Added2009-10-03T14:55:59Z - Bit Rate192 - Sample Rate44100 - Normalization1252 - Artwork Count1 - Persistent ID72B127BDC777F629 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/John%20Eliot%20Gardiner%3B%20English%20Baroque%20Soloists/Mozart_%20Symphonies%20%2340%20&%2041,%20_Jupiter_/04%20Mozart_%20Symphony%20%2340%20In%20G%20Minor,%20K%20550%20-%204.%20Finale_%20Allegro%20Assai.m4a - File Folder Count4 - Library Folder Count1 - - 3902 - - Track ID3902 - NameMozart: Symphony #41 In C, K 551, "Jupiter" - 1. Allegro Vivace - ArtistJohn Eliot Gardiner; English Baroque Soloists - ComposerMOZART Wolfgang Amadeus (1756-1791) - AlbumMozart: Symphonies #40 & 41, "Jupiter" - GenreClassical - KindAAC audio file - Size16944577 - Total Time699012 - Disc Number1 - Disc Count1 - Track Number5 - Track Count8 - Year1992 - Date Modified2006-08-08T04:04:04Z - Date Added2009-10-03T14:55:59Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Persistent ID7318A2EDBDB26F34 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/John%20Eliot%20Gardiner%3B%20English%20Baroque%20Soloists/Mozart_%20Symphonies%20%2340%20&%2041,%20_Jupiter_/05%20Mozart_%20Symphony%20%2341%20In%20C,%20K%20551,%20_Jupiter_%20-%201.%20Allegro%20Vivace.m4a - File Folder Count4 - Library Folder Count1 - - 3904 - - Track ID3904 - NameMozart: Symphony #41 In C, K 551, "Jupiter" - 2. Andante Cantabile - ArtistJohn Eliot Gardiner; English Baroque Soloists - ComposerMOZART Wolfgang Amadeus (1756-1791) - AlbumMozart: Symphonies #40 & 41, "Jupiter" - GenreClassical - KindAAC audio file - Size15928077 - Total Time657007 - Disc Number1 - Disc Count1 - Track Number6 - Track Count8 - Year1992 - Date Modified2006-08-08T04:04:04Z - Date Added2009-10-03T14:55:59Z - Bit Rate192 - Sample Rate44100 - Normalization1026 - Artwork Count1 - Persistent ID11A02B77BB7ECD8E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/John%20Eliot%20Gardiner%3B%20English%20Baroque%20Soloists/Mozart_%20Symphonies%20%2340%20&%2041,%20_Jupiter_/06%20Mozart_%20Symphony%20%2341%20In%20C,%20K%20551,%20_Jupiter_%20-%202.%20Andante%20Cantabile.m4a - File Folder Count4 - Library Folder Count1 - - 3906 - - Track ID3906 - NameMozart: Symphony #41 In C, K 551, "Jupiter" - 3. Menuetto: Allegretto - Trio - ArtistJohn Eliot Gardiner; English Baroque Soloists - ComposerMOZART Wolfgang Amadeus (1756-1791) - AlbumMozart: Symphonies #40 & 41, "Jupiter" - GenreClassical - KindAAC audio file - Size7784773 - Total Time320503 - Disc Number1 - Disc Count1 - Track Number7 - Track Count8 - Year1992 - Date Modified2006-08-08T04:04:04Z - Date Added2009-10-03T14:55:59Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Persistent ID8254420B99C9B992 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/John%20Eliot%20Gardiner%3B%20English%20Baroque%20Soloists/Mozart_%20Symphonies%20%2340%20&%2041,%20_Jupiter_/07%20Mozart_%20Symphony%20%2341%20In%20C,%20K%20551,%20_Jupiter_%20-%203.%20Menuetto_%20Allegretto%20-%20Trio.m4a - File Folder Count4 - Library Folder Count1 - - 3908 - - Track ID3908 - NameMozart: Symphony #41 In C, K 551, "Jupiter" - 4. Finale: Molto Allegro - ArtistJohn Eliot Gardiner; English Baroque Soloists - ComposerMOZART Wolfgang Amadeus (1756-1791) - AlbumMozart: Symphonies #40 & 41, "Jupiter" - GenreClassical - KindAAC audio file - Size16890161 - Total Time699522 - Disc Number1 - Disc Count1 - Track Number8 - Track Count8 - Year1992 - Date Modified2006-08-08T04:04:04Z - Date Added2009-10-03T14:55:59Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Persistent ID118135872E241311 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/John%20Eliot%20Gardiner%3B%20English%20Baroque%20Soloists/Mozart_%20Symphonies%20%2340%20&%2041,%20_Jupiter_/08%20Mozart_%20Symphony%20%2341%20In%20C,%20K%20551,%20_Jupiter_%20-%204.%20Finale_%20Molto%20Allegro.m4a - File Folder Count4 - Library Folder Count1 - - 3910 - - Track ID3910 - NameMy Favorite Things - ArtistJohn Coltrane - ComposerRichard Rodgers & Oscar Hammerstein - AlbumMy Favorite Things - GenreJazz - KindAAC audio file - Size19857464 - Total Time824005 - Disc Number1 - Disc Count1 - Track Number1 - Track Count4 - Year1961 - Date Modified2006-07-29T02:14:42Z - Date Added2009-10-03T14:56:00Z - Bit Rate192 - Sample Rate44100 - Play Count3 - Play Date3421814491 - Play Date UTC2012-06-06T02:31:31Z - Normalization986 - Artwork Count1 - Persistent ID9D22C3369D79BDD6 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/John%20Coltrane/My%20Favorite%20Things/01%20My%20Favorite%20Things.m4a - File Folder Count4 - Library Folder Count1 - - 3912 - - Track ID3912 - NameEverytime We Say Goodbye - ArtistJohn Coltrane - ComposerCole Porter - AlbumMy Favorite Things - GenreJazz - KindAAC audio file - Size8224551 - Total Time343212 - Disc Number1 - Disc Count1 - Track Number2 - Track Count4 - Year1961 - Date Modified2006-07-29T02:14:42Z - Date Added2009-10-03T14:56:00Z - Bit Rate192 - Sample Rate44100 - Normalization501 - Artwork Count1 - Persistent ID66630F00EAF672CA - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/John%20Coltrane/My%20Favorite%20Things/02%20Everytime%20We%20Say%20Goodbye.m4a - File Folder Count4 - Library Folder Count1 - - 3914 - - Track ID3914 - NameSummertime - ArtistJohn Coltrane - ComposerDu Bose Heyward & George Gershwin - AlbumMy Favorite Things - GenreJazz - KindAAC audio file - Size16752341 - Total Time695668 - Disc Number1 - Disc Count1 - Track Number3 - Track Count4 - Year1961 - Date Modified2006-07-29T02:14:42Z - Date Added2009-10-03T14:56:00Z - Bit Rate192 - Sample Rate44100 - Normalization1184 - Artwork Count1 - Persistent IDC9F6ED7879179675 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/John%20Coltrane/My%20Favorite%20Things/03%20Summertime.m4a - File Folder Count4 - Library Folder Count1 - - 3916 - - Track ID3916 - NameBut Not For Me - ArtistJohn Coltrane - ComposerGeorge & Ira Gershwin - AlbumMy Favorite Things - GenreJazz - KindAAC audio file - Size13916857 - Total Time574483 - Disc Number1 - Disc Count1 - Track Number4 - Track Count4 - Year1961 - Date Modified2006-07-29T02:14:44Z - Date Added2009-10-03T14:56:00Z - Bit Rate192 - Sample Rate44100 - Normalization972 - Artwork Count1 - Persistent IDB80A79285431AB29 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/John%20Coltrane/My%20Favorite%20Things/04%20But%20Not%20For%20Me.m4a - File Folder Count4 - Library Folder Count1 - - 3918 - - Track ID3918 - NameSymphony No. 4 in E Minor, Op. 98: 1: Allegro non troppo - ArtistJohannes Brahms - AlbumSymphony No. 4 - GenreClassical - KindAAC audio file - Size19464819 - Total Time807008 - Track Number1 - Track Count6 - Date Modified2006-08-08T06:45:36Z - Date Added2009-10-03T14:56:02Z - Bit Rate192 - Sample Rate44100 - Normalization900 - Artwork Count1 - Persistent ID5B1845F9611CBC79 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Johannes%20Brahms/Symphony%20No.%204/01%20Symphony%20No.%204%20in%20E%20Minor,%20Op.%2098_%201_%20Allegro%20non%20troppo.m4a - File Folder Count4 - Library Folder Count1 - - 3920 - - Track ID3920 - NameSymphony No. 4 in E Minor, Op. 98: 2: Andante moderato - ArtistJohannes Brahms - AlbumSymphony No. 4 - GenreClassical - KindAAC audio file - Size18749878 - Total Time777007 - Track Number2 - Track Count6 - Date Modified2006-08-08T06:45:34Z - Date Added2009-10-03T14:56:02Z - Bit Rate192 - Sample Rate44100 - Normalization933 - Artwork Count1 - Persistent ID953F39B7CD7F1D5A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Johannes%20Brahms/Symphony%20No.%204/02%20Symphony%20No.%204%20in%20E%20Minor,%20Op.%2098_%202_%20Andante%20moderato.m4a - File Folder Count4 - Library Folder Count1 - - 3922 - - Track ID3922 - NameSymphony No. 4 in E Minor, Op. 98: 3: Allegro giocoso - Poco meno presto - ArtistJohannes Brahms - AlbumSymphony No. 4 - GenreClassical - KindAAC audio file - Size9737054 - Total Time404002 - Track Number3 - Track Count6 - Date Modified2006-08-08T06:45:34Z - Date Added2009-10-03T14:56:02Z - Bit Rate192 - Sample Rate44100 - Normalization1076 - Artwork Count1 - Persistent ID0ECD9848DBC4879A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Johannes%20Brahms/Symphony%20No.%204/03%20Symphony%20No.%204%20in%20E%20Minor,%20Op.%2098_%203_%20Allegro%20giocoso%20-%20Poco%20meno%20presto.m4a - File Folder Count4 - Library Folder Count1 - - 3924 - - Track ID3924 - NameSymphony No. 4 in E Minor, Op. 98: 4: Allegro energico e passionato - Più allegro - ArtistJohannes Brahms - AlbumSymphony No. 4 - GenreClassical - KindAAC audio file - Size15427240 - Total Time642007 - Track Number4 - Track Count6 - Date Modified2006-08-08T06:45:34Z - Date Added2009-10-03T14:56:02Z - Bit Rate192 - Sample Rate44100 - Normalization940 - Artwork Count1 - Persistent ID1ECDBD61F4CC1DF0 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Johannes%20Brahms/Symphony%20No.%204/04%20Symphony%20No.%204%20in%20E%20Minor,%20Op.%2098_%204_%20Allegro%20energico%20e%20passionato%20-%20Piu%CC%80%20allegro.m4a - File Folder Count4 - Library Folder Count1 - - 3926 - - Track ID3926 - NameAcademic Festival Overture, Op. 80 - ArtistJohannes Brahms - AlbumSymphony No. 4 - GenreClassical - KindAAC audio file - Size15965256 - Total Time663021 - Track Number5 - Track Count6 - Date Modified2006-08-08T06:45:34Z - Date Added2009-10-03T14:56:03Z - Bit Rate192 - Sample Rate44100 - Normalization1251 - Artwork Count1 - Persistent ID1A01D59FA7F697CB - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Johannes%20Brahms/Symphony%20No.%204/05%20Academic%20Festival%20Overture,%20Op.%2080.m4a - File Folder Count4 - Library Folder Count1 - - 3928 - - Track ID3928 - NameTragic Overture, Op. 81 - ArtistJohannes Brahms - AlbumSymphony No. 4 - GenreClassical - KindAAC audio file - Size20939343 - Total Time864338 - Track Number6 - Track Count6 - Date Modified2006-08-08T06:45:32Z - Date Added2009-10-03T14:56:03Z - Bit Rate192 - Sample Rate44100 - Normalization810 - Artwork Count1 - Persistent ID7B38562F12A71E93 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Johannes%20Brahms/Symphony%20No.%204/06%20Tragic%20Overture,%20Op.%2081.m4a - File Folder Count4 - Library Folder Count1 - - 3930 - - Track ID3930 - NameFoxy Lady - ArtistJimi Hendrix - ComposerJimi Hendrix - AlbumAre You Experienced? - GenreRock - KindAAC audio file - Size4877108 - Total Time199760 - Disc Number1 - Disc Count1 - Track Number1 - Track Count17 - Year1967 - Date Modified2008-10-13T13:17:50Z - Date Added2009-10-03T14:56:05Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3363362179 - Play Date UTC2010-07-30T13:46:19Z - Normalization6481 - Artwork Count1 - Persistent ID726F8ED1C37D3C5E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jimi%20Hendrix/Are%20You%20Experienced_/01%20Foxy%20Lady.m4a - File Folder Count4 - Library Folder Count1 - - 3932 - - Track ID3932 - NameManic Depression - ArtistJimi Hendrix - ComposerJimi Hendrix - AlbumAre You Experienced? - GenreRock - KindAAC audio file - Size5484947 - Total Time222400 - Disc Number1 - Disc Count1 - Track Number2 - Track Count17 - Year1967 - Date Modified2008-10-05T08:14:58Z - Date Added2009-10-03T14:56:05Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3363362402 - Play Date UTC2010-07-30T13:50:02Z - Normalization13266 - Artwork Count2 - Persistent ID3E7A3F45936B7A63 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jimi%20Hendrix/Are%20You%20Experienced_/02%20Manic%20Depression.m4a - File Folder Count4 - Library Folder Count1 - - 3934 - - Track ID3934 - NameRed House - ArtistJimi Hendrix - ComposerJimi Hendrix - AlbumAre You Experienced? - GenreRock - KindAAC audio file - Size5370496 - Total Time224066 - Disc Number1 - Disc Count1 - Track Number3 - Track Count17 - Year1967 - Date Modified2008-10-05T08:14:58Z - Date Added2009-10-03T14:56:05Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3363362626 - Play Date UTC2010-07-30T13:53:46Z - Normalization2940 - Artwork Count2 - Persistent ID958AC2119FA15559 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jimi%20Hendrix/Are%20You%20Experienced_/03%20Red%20House.m4a - File Folder Count4 - Library Folder Count1 - - 3936 - - Track ID3936 - NameCan You See Me - ArtistJimi Hendrix - ComposerJimi Hendrix - AlbumAre You Experienced? - GenreRock - KindAAC audio file - Size3782535 - Total Time152800 - Disc Number1 - Disc Count1 - Track Number4 - Track Count17 - Year1967 - Date Modified2008-10-05T08:14:59Z - Date Added2009-10-03T14:56:05Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3363362773 - Play Date UTC2010-07-30T13:56:13Z - Normalization7847 - Artwork Count2 - Persistent ID649CA3F6EC9592BD - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jimi%20Hendrix/Are%20You%20Experienced_/04%20Can%20You%20See%20Me.m4a - File Folder Count4 - Library Folder Count1 - - 3938 - - Track ID3938 - NameLove Or Confusion - ArtistJimi Hendrix - ComposerJimi Hendrix - AlbumAre You Experienced? - GenreRock - KindAAC audio file - Size4696692 - Total Time193266 - Disc Number1 - Disc Count1 - Track Number5 - Track Count17 - Year1967 - Date Modified2008-10-05T08:14:59Z - Date Added2009-10-03T14:56:05Z - Bit Rate192 - Sample Rate44100 - Normalization11502 - Artwork Count2 - Persistent ID2945976D54347C39 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jimi%20Hendrix/Are%20You%20Experienced_/05%20Love%20Or%20Confusion.m4a - File Folder Count4 - Library Folder Count1 - - 3940 - - Track ID3940 - NameI Don't Live Today - ArtistJimi Hendrix - ComposerJimi Hendrix - AlbumAre You Experienced? - GenreRock - KindAAC audio file - Size5635141 - Total Time235066 - Disc Number1 - Disc Count1 - Track Number6 - Track Count17 - Year1967 - Date Modified2008-10-05T08:15:00Z - Date Added2009-10-03T14:56:05Z - Bit Rate192 - Sample Rate44100 - Normalization6938 - Artwork Count2 - Persistent IDFA0CD545EDDCE613 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jimi%20Hendrix/Are%20You%20Experienced_/06%20I%20Don't%20Live%20Today.m4a - File Folder Count4 - Library Folder Count1 - - 3942 - - Track ID3942 - NameMay This Be Love - ArtistJimi Hendrix - ComposerJimi Hendrix - AlbumAre You Experienced? - GenreRock - KindAAC audio file - Size4716050 - Total Time191173 - Disc Number1 - Disc Count1 - Track Number7 - Track Count17 - Year1967 - Date Modified2008-10-05T08:15:00Z - Date Added2009-10-03T14:56:05Z - Bit Rate192 - Sample Rate44100 - Normalization2540 - Artwork Count2 - Persistent IDC0CE215C236826F6 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jimi%20Hendrix/Are%20You%20Experienced_/07%20May%20This%20Be%20Love.m4a - File Folder Count4 - Library Folder Count1 - - 3944 - - Track ID3944 - NameFire - ArtistJimi Hendrix - ComposerJimi Hendrix - AlbumAre You Experienced? - GenreRock - KindAAC audio file - Size3942379 - Total Time165093 - Disc Number1 - Disc Count1 - Track Number8 - Track Count17 - Year1967 - Date Modified2008-10-05T08:15:01Z - Date Added2009-10-03T14:56:06Z - Bit Rate192 - Sample Rate44100 - Normalization8023 - Artwork Count2 - Persistent IDBB469802B18B51D9 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jimi%20Hendrix/Are%20You%20Experienced_/08%20Fire.m4a - File Folder Count4 - Library Folder Count1 - - 3946 - - Track ID3946 - NameThird Stone From The Sun - ArtistJimi Hendrix - ComposerJimi Hendrix - AlbumAre You Experienced? - GenreRock - KindAAC audio file - Size9662139 - Total Time404066 - Disc Number1 - Disc Count1 - Track Number9 - Track Count17 - Year1967 - Date Modified2008-10-13T13:49:11Z - Date Added2009-10-03T14:56:06Z - Bit Rate192 - Sample Rate44100 - Normalization3072 - Artwork Count1 - Persistent ID600CB2830638A1B2 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jimi%20Hendrix/Are%20You%20Experienced_/09%20Third%20Stone%20From%20The%20Sun.m4a - File Folder Count4 - Library Folder Count1 - - 3948 - - Track ID3948 - NameRemember - ArtistJimi Hendrix - ComposerJimi Hendrix - AlbumAre You Experienced? - GenreRock - KindAAC audio file - Size4209447 - Total Time168306 - Disc Number1 - Disc Count1 - Track Number10 - Track Count17 - Year1967 - Date Modified2008-10-05T08:15:02Z - Date Added2009-10-03T14:56:06Z - Bit Rate192 - Sample Rate44100 - Normalization5010 - Artwork Count2 - Persistent ID0910F4DE06223615 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jimi%20Hendrix/Are%20You%20Experienced_/10%20Remember.m4a - File Folder Count4 - Library Folder Count1 - - 3950 - - Track ID3950 - NameAre You Experienced? - ArtistJimi Hendrix - ComposerJimi Hendrix - AlbumAre You Experienced? - GenreRock - KindAAC audio file - Size6278310 - Total Time254600 - Disc Number1 - Disc Count1 - Track Number11 - Track Count17 - Year1967 - Date Modified2008-10-13T13:58:33Z - Date Added2009-10-03T14:56:06Z - Bit Rate192 - Sample Rate44100 - Normalization5752 - Artwork Count1 - Persistent ID149D7CD0C7832888 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jimi%20Hendrix/Are%20You%20Experienced_/11%20Are%20You%20Experienced_.m4a - File Folder Count4 - Library Folder Count1 - - 3952 - - Track ID3952 - NameHey Joe - ArtistJimi Hendrix - ComposerBilly Roberts - AlbumAre You Experienced? - GenreRock - KindAAC audio file - Size5028108 - Total Time210026 - Disc Number1 - Disc Count1 - Track Number12 - Track Count17 - Year1967 - Date Modified2008-10-05T08:15:03Z - Date Added2009-10-03T14:56:06Z - Bit Rate192 - Sample Rate44100 - Normalization4199 - Artwork Count2 - Persistent ID011005EA29E4FDE1 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jimi%20Hendrix/Are%20You%20Experienced_/12%20Hey%20Joe.m4a - File Folder Count4 - Library Folder Count1 - - 3954 - - Track ID3954 - NameStone Free - ArtistJimi Hendrix - ComposerJimi Hendrix - AlbumAre You Experienced? - GenreRock - KindAAC audio file - Size5362962 - Total Time216266 - Disc Number1 - Disc Count1 - Track Number13 - Track Count17 - Year1966 - Date Modified2008-10-05T08:15:03Z - Date Added2009-10-03T14:56:06Z - Bit Rate192 - Sample Rate44100 - Normalization11703 - Artwork Count2 - Persistent IDF5ABD47035B26F53 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jimi%20Hendrix/Are%20You%20Experienced_/13%20Stone%20Free.m4a - File Folder Count4 - Library Folder Count1 - - 3956 - - Track ID3956 - NamePurple Haze - ArtistJimi Hendrix - ComposerJimi Hendrix - AlbumAre You Experienced? - GenreRock - KindAAC audio file - Size4277709 - Total Time171640 - Disc Number1 - Disc Count1 - Track Number14 - Track Count17 - Year1967 - Date Modified2008-10-05T08:15:04Z - Date Added2009-10-03T14:56:06Z - Bit Rate192 - Sample Rate44100 - Normalization7052 - Artwork Count2 - Persistent ID1636952F7C6E9814 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jimi%20Hendrix/Are%20You%20Experienced_/14%20Purple%20Haze.m4a - File Folder Count4 - Library Folder Count1 - - 3958 - - Track ID3958 - Name51st Anniversary - ArtistJimi Hendrix - ComposerJimi Hendrix - AlbumAre You Experienced? - GenreRock - KindAAC audio file - Size4698166 - Total Time196160 - Disc Number1 - Disc Count1 - Track Number15 - Track Count17 - Year1967 - Date Modified2008-10-05T08:15:04Z - Date Added2009-10-03T14:56:06Z - Bit Rate192 - Sample Rate44100 - Normalization5261 - Artwork Count2 - Persistent IDC720FF72B8258A62 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jimi%20Hendrix/Are%20You%20Experienced_/15%2051st%20Anniversary.m4a - File Folder Count4 - Library Folder Count1 - - 3960 - - Track ID3960 - NameThe Wind Cries Mary - ArtistJimi Hendrix - ComposerJimi Hendrix - AlbumAre You Experienced? - GenreRock - KindAAC audio file - Size4933562 - Total Time200706 - Disc Number1 - Disc Count1 - Track Number16 - Track Count17 - Year1967 - Date Modified2008-10-05T08:15:05Z - Date Added2009-10-03T14:56:06Z - Bit Rate192 - Sample Rate44100 - Normalization1510 - Artwork Count2 - Sort NameWind Cries Mary - Persistent IDD87E985FE409C1A9 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jimi%20Hendrix/Are%20You%20Experienced_/16%20The%20Wind%20Cries%20Mary.m4a - File Folder Count4 - Library Folder Count1 - - 3962 - - Track ID3962 - NameHighway Chile - ArtistJimi Hendrix - ComposerJimi Hendrix - AlbumAre You Experienced? - GenreRock - KindAAC audio file - Size5103243 - Total Time212426 - Disc Number1 - Disc Count1 - Track Number17 - Track Count17 - Year1967 - Date Modified2008-10-05T08:15:05Z - Date Added2009-10-03T14:56:07Z - Bit Rate192 - Sample Rate44100 - Normalization5786 - Artwork Count2 - Persistent ID230AC5ED3F57FB52 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jimi%20Hendrix/Are%20You%20Experienced_/17%20Highway%20Chile.m4a - File Folder Count4 - Library Folder Count1 - - 3964 - - Track ID3964 - NameAnd The Mouse Police Never Sleeps - ArtistJethro Tull - ComposerIan Anderson - AlbumHeavy Horses - GenreRock - KindAAC audio file - Size5189767 - Total Time193954 - Disc Number1 - Disc Count1 - Track Number1 - Track Count9 - Year1978 - Date Modified2011-01-07T09:24:53Z - Date Added2009-10-03T14:56:07Z - Bit Rate192 - Sample Rate44100 - Skip Count1 - Skip Date2011-01-07T11:52:35Z - Normalization816 - Artwork Count14 - Persistent IDD65F9ADDE8B5B521 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jethro%20Tull/Heavy%20Horses/01%20And%20The%20Mouse%20Police%20Never%20Sleeps.m4a - File Folder Count4 - Library Folder Count1 - - 3966 - - Track ID3966 - NameAcres Wild - ArtistJethro Tull - ComposerIan Anderson - AlbumHeavy Horses - GenreRock - KindAAC audio file - Size5434078 - Total Time205402 - Disc Number1 - Disc Count1 - Track Number2 - Track Count9 - Year1978 - Date Modified2011-01-07T09:24:54Z - Date Added2009-10-03T14:56:08Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3422285135 - Play Date UTC2012-06-11T13:15:35Z - Skip Count1 - Skip Date2011-01-07T11:14:04Z - Normalization867 - Artwork Count13 - Persistent IDB628C14F23257460 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jethro%20Tull/Heavy%20Horses/02%20Acres%20Wild.m4a - File Folder Count4 - Library Folder Count1 - - 3968 - - Track ID3968 - NameNo Lullaby - ArtistJethro Tull - ComposerIan Anderson - AlbumHeavy Horses - GenreRock - KindAAC audio file - Size11957409 - Total Time475078 - Disc Number1 - Disc Count1 - Track Number3 - Track Count9 - Year1978 - Date Modified2011-01-07T09:24:55Z - Date Added2009-10-03T14:56:08Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3422285610 - Play Date UTC2012-06-11T13:23:30Z - Normalization846 - Artwork Count13 - Persistent ID749C30B41788429A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jethro%20Tull/Heavy%20Horses/03%20No%20Lullaby.m4a - File Folder Count4 - Library Folder Count1 - - 3970 - - Track ID3970 - NameMoths - ArtistJethro Tull - ComposerIan Anderson - AlbumHeavy Horses - GenreRock - KindAAC audio file - Size5473261 - Total Time207027 - Disc Number1 - Disc Count1 - Track Number4 - Track Count9 - Year1978 - Date Modified2011-01-07T09:24:56Z - Date Added2009-10-03T14:56:09Z - Bit Rate192 - Sample Rate44100 - Play Count3 - Play Date3422285817 - Play Date UTC2012-06-11T13:26:57Z - Normalization704 - Artwork Count13 - Persistent IDFC83FBA9F5C7197F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jethro%20Tull/Heavy%20Horses/04%20Moths.m4a - File Folder Count4 - Library Folder Count1 - - 3972 - - Track ID3972 - NameJourneyman - ArtistJethro Tull - ComposerIan Anderson - AlbumHeavy Horses - GenreRock - KindAAC audio file - Size6212179 - Total Time237654 - Disc Number1 - Disc Count1 - Track Number5 - Track Count9 - Year1978 - Date Modified2011-01-07T09:24:56Z - Date Added2009-10-03T14:56:10Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3377265020 - Play Date UTC2011-01-07T11:40:20Z - Normalization802 - Artwork Count13 - Persistent IDD1D40A705A17BF2C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jethro%20Tull/Heavy%20Horses/05%20Journeyman.m4a - File Folder Count4 - Library Folder Count1 - - 3974 - - Track ID3974 - NameRover - ArtistJethro Tull - ComposerIan Anderson - AlbumHeavy Horses - GenreRock - KindAAC audio file - Size6662468 - Total Time256230 - Disc Number1 - Disc Count1 - Track Number6 - Track Count9 - Year1978 - Date Modified2011-01-07T09:24:57Z - Date Added2009-10-03T14:56:10Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3377265276 - Play Date UTC2011-01-07T11:44:36Z - Normalization1108 - Artwork Count13 - Persistent ID2DD9A66EF54940F7 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jethro%20Tull/Heavy%20Horses/06%20Rover.m4a - File Folder Count4 - Library Folder Count1 - - 3976 - - Track ID3976 - NameOne Brown Mouse - ArtistJethro Tull - ComposerIan Anderson - AlbumHeavy Horses - GenreRock - KindAAC audio file - Size5387930 - Total Time203475 - Disc Number1 - Disc Count1 - Track Number7 - Track Count9 - Year1978 - Date Modified2011-01-07T09:24:58Z - Date Added2009-10-03T14:56:11Z - Bit Rate192 - Sample Rate44100 - Skip Count1 - Skip Date2011-01-07T11:44:40Z - Normalization1006 - Artwork Count13 - Persistent ID1E0759D2E0737D23 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jethro%20Tull/Heavy%20Horses/07%20One%20Brown%20Mouse.m4a - File Folder Count4 - Library Folder Count1 - - 3978 - - Track ID3978 - NameHeavy Horses - ArtistJethro Tull - ComposerIan Anderson - AlbumHeavy Horses - GenreRock - KindAAC audio file - Size13507660 - Total Time539142 - Disc Number1 - Disc Count1 - Track Number8 - Track Count9 - Year1978 - Date Modified2011-01-07T09:24:58Z - Date Added2009-10-03T14:56:11Z - Bit Rate192 - Sample Rate44100 - Normalization1162 - Artwork Count13 - Persistent ID9A68570093D45EF6 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jethro%20Tull/Heavy%20Horses/08%20Heavy%20Horses.m4a - File Folder Count4 - Library Folder Count1 - - 3980 - - Track ID3980 - NameWeathercock - ArtistJethro Tull - ComposerIan Anderson - AlbumHeavy Horses - GenreRock - KindAAC audio file - Size6371875 - Total Time242856 - Disc Number1 - Disc Count1 - Track Number9 - Track Count9 - Year1978 - Date Modified2011-01-07T09:25:00Z - Date Added2009-10-03T14:56:12Z - Bit Rate192 - Sample Rate44100 - Skip Count3 - Skip Date2011-01-07T11:52:49Z - Normalization797 - Artwork Count14 - Persistent ID8D97E59564450942 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jethro%20Tull/Heavy%20Horses/09%20Weathercock.m4a - File Folder Count4 - Library Folder Count1 - - 3982 - - Track ID3982 - NamePiano Theme - ArtistJaved Akhtar - ComposerA.R. Rahman/Javed Akhtar - Album1947 - GenreSoundtrack - KindAAC audio file - Size2697906 - Total Time113313 - Track Number5 - Year1999 - Date Modified2007-07-27T05:54:58Z - Date Added2009-10-03T14:56:13Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3383451522 - Play Date UTC2011-03-20T02:08:42Z - Rating60 - Album Rating60 - Album Rating Computed - Normalization830 - Persistent IDBFCB37B0BA55EDFA - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Javed%20Akhtar/1947/05%20Piano%20Theme.m4a - File Folder Count4 - Library Folder Count1 - - 3984 - - Track ID3984 - NamePiano Theme - ArtistJaved Akhtar - ComposerA.R. Rahman/Javed Akhtar - Album1947 - GenreSoundtrack - KindAAC audio file - Size2724883 - Total Time113335 - Track Number5 - Year1999 - Date Modified2007-01-17T10:32:26Z - Date Added2009-10-03T14:56:13Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3383451635 - Play Date UTC2011-03-20T02:10:35Z - Album Rating60 - Album Rating Computed - Normalization830 - Persistent ID3F3022BC60452F3D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Javed%20Akhtar/1947/05%20Piano%20Theme%201.m4a - File Folder Count4 - Library Folder Count1 - - 3986 - - Track ID3986 - NamePiano Theme - ArtistJaved Akhtar - ComposerA.R. Rahman/Javed Akhtar - Album1947 - GenreSoundtrack - KindAAC audio file - Size2724883 - Total Time113335 - Track Number5 - Year1999 - Date Modified2006-12-26T05:35:24Z - Date Added2009-10-03T14:56:13Z - Bit Rate192 - Sample Rate44100 - Album Rating60 - Album Rating Computed - Normalization830 - Persistent IDE060C3663180B96D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Javed%20Akhtar/1947/05%20Piano%20Theme%202.m4a - File Folder Count4 - Library Folder Count1 - - 3988 - - Track ID3988 - NamePiano Theme - ArtistJaved Akhtar - ComposerA.R. Rahman/Javed Akhtar - Album1947 - GenreSoundtrack - KindAAC audio file - Size2724883 - Total Time113335 - Track Number5 - Year1999 - Date Modified2006-12-27T09:56:40Z - Date Added2009-10-03T14:56:13Z - Bit Rate192 - Sample Rate44100 - Album Rating60 - Album Rating Computed - Normalization830 - Persistent IDCE9C3F6EBD992EAC - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Javed%20Akhtar/1947/05%20Piano%20Theme%203.m4a - File Folder Count4 - Library Folder Count1 - - 3990 - - Track ID3990 - NamePiano Theme - ArtistJaved Akhtar - ComposerA.R. Rahman/Javed Akhtar - Album1947 - GenreSoundtrack - KindAAC audio file - Size2706283 - Total Time113313 - Track Number5 - Year1999 - Date Modified2007-12-02T07:36:16Z - Date Added2009-10-03T14:56:13Z - Bit Rate189 - Sample Rate44100 - Album Rating60 - Album Rating Computed - Normalization830 - Persistent IDBDC562494F8481A0 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Javed%20Akhtar/1947/05%20Piano%20Theme%204.m4a - File Folder Count4 - Library Folder Count1 - - 3992 - - Track ID3992 - NameTheme Music - ArtistJaved Akhtar - ComposerA.R. Rahman/Javed Akhtar - Album1947 - GenreSoundtrack - KindAAC audio file - Size7021037 - Total Time290017 - Track Number9 - Year1999 - Date Modified2007-07-27T05:57:32Z - Date Added2009-10-03T14:56:13Z - Bit Rate192 - Sample Rate44100 - Album Rating60 - Album Rating Computed - Normalization1259 - Persistent ID6C2F9F23E1DDA132 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Javed%20Akhtar/1947/09%20Theme%20Music.m4a - File Folder Count4 - Library Folder Count1 - - 3994 - - Track ID3994 - NameTheme Music - ArtistJaved Akhtar - ComposerA.R. Rahman/Javed Akhtar - Album1947 - GenreSoundtrack - KindAAC audio file - Size7021007 - Total Time290039 - Track Number9 - Year1999 - Date Modified2007-01-17T10:33:32Z - Date Added2009-10-03T14:56:13Z - Bit Rate192 - Sample Rate44100 - Album Rating60 - Album Rating Computed - Normalization1259 - Persistent ID01017F7E799B8632 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Javed%20Akhtar/1947/09%20Theme%20Music%201.m4a - File Folder Count4 - Library Folder Count1 - - 3996 - - Track ID3996 - NameTheme Music - ArtistJaved Akhtar - ComposerA.R. Rahman/Javed Akhtar - Album1947 - GenreSoundtrack - KindAAC audio file - Size7021007 - Total Time290039 - Track Number9 - Year1999 - Date Modified2006-12-26T05:36:28Z - Date Added2009-10-03T14:56:13Z - Bit Rate192 - Sample Rate44100 - Album Rating60 - Album Rating Computed - Normalization1259 - Persistent ID82462C958B66224A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Javed%20Akhtar/1947/09%20Theme%20Music%202.m4a - File Folder Count4 - Library Folder Count1 - - 3998 - - Track ID3998 - NameTheme Music - ArtistJaved Akhtar - ComposerA.R. Rahman/Javed Akhtar - Album1947 - GenreSoundtrack - KindAAC audio file - Size7021007 - Total Time290039 - Track Number9 - Year1999 - Date Modified2006-12-27T09:57:46Z - Date Added2009-10-03T14:56:13Z - Bit Rate192 - Sample Rate44100 - Album Rating60 - Album Rating Computed - Normalization1259 - Persistent IDBB8F52597B92EE5B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Javed%20Akhtar/1947/09%20Theme%20Music%203.m4a - File Folder Count4 - Library Folder Count1 - - 4000 - - Track ID4000 - NameTheme Music - ArtistJaved Akhtar - ComposerA.R. Rahman/Javed Akhtar - Album1947 - GenreSoundtrack - KindAAC audio file - Size7120077 - Total Time290017 - Track Number9 - Year1999 - Date Modified2007-12-02T07:38:03Z - Date Added2009-10-03T14:56:13Z - Bit Rate194 - Sample Rate44100 - Album Rating60 - Album Rating Computed - Normalization1259 - Persistent IDDDBE8C95D240F9CC - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Javed%20Akhtar/1947/09%20Theme%20Music%204.m4a - File Folder Count4 - Library Folder Count1 - - 4002 - - Track ID4002 - NameBinjari - ArtistJaisalmeria - ComposerJaisana - AlbumRavanhtta - GenreFolk - KindAAC audio file - Size8889837 - Total Time360986 - Disc Number1 - Disc Count1 - Track Number1 - Track Count12 - Year2004 - Date Modified2008-01-05T04:20:24Z - Date Added2009-10-03T14:56:14Z - Bit Rate195 - Sample Rate44100 - Normalization595 - Persistent ID374EDE7750F5E625 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jaisalmeria/Ravanhtta/01%20Binjari.m4a - File Folder Count4 - Library Folder Count1 - - 4004 - - Track ID4004 - NameGhoomar - ArtistJaisalmeria - ComposerJaisana - AlbumRavanhtta - GenreFolk - KindAAC audio file - Size6960662 - Total Time282986 - Disc Number1 - Disc Count1 - Track Number2 - Track Count12 - Year2004 - Date Modified2008-01-05T04:20:40Z - Date Added2009-10-03T14:56:14Z - Bit Rate195 - Sample Rate44100 - Normalization7031 - Persistent IDC268DEBB10E16FDB - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jaisalmeria/Ravanhtta/02%20Ghoomar.m4a - File Folder Count4 - Library Folder Count1 - - 4006 - - Track ID4006 - NameKurja - ArtistJaisalmeria - ComposerJaisana - AlbumRavanhtta - GenreFolk - KindAAC audio file - Size6480432 - Total Time263506 - Disc Number1 - Disc Count1 - Track Number3 - Track Count12 - Year2004 - Date Modified2008-01-05T04:20:55Z - Date Added2009-10-03T14:56:14Z - Bit Rate195 - Sample Rate44100 - Normalization10446 - Persistent IDAB05F89875020CA5 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jaisalmeria/Ravanhtta/03%20Kurja.m4a - File Folder Count4 - Library Folder Count1 - - 4008 - - Track ID4008 - NamePanihari - ArtistJaisalmeria - ComposerJaisana - AlbumRavanhtta - GenreFolk - KindAAC audio file - Size3346895 - Total Time136986 - Disc Number1 - Disc Count1 - Track Number4 - Track Count12 - Year2004 - Date Modified2008-01-05T04:21:03Z - Date Added2009-10-03T14:56:14Z - Bit Rate193 - Sample Rate44100 - Normalization10035 - Persistent ID6B40AC0A36C907BC - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jaisalmeria/Ravanhtta/04%20Panihari.m4a - File Folder Count4 - Library Folder Count1 - - 4010 - - Track ID4010 - NameRoomal - ArtistJaisalmeria - ComposerJaisana - AlbumRavanhtta - GenreFolk - KindAAC audio file - Size10103878 - Total Time409986 - Disc Number1 - Disc Count1 - Track Number5 - Track Count12 - Year2004 - Date Modified2008-01-05T04:21:28Z - Date Added2009-10-03T14:56:14Z - Bit Rate195 - Sample Rate44100 - Normalization4823 - Persistent ID1143A0570D725088 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jaisalmeria/Ravanhtta/05%20Roomal.m4a - File Folder Count4 - Library Folder Count1 - - 4012 - - Track ID4012 - NameMhari Mangetar - ArtistJaisalmeria - ComposerJaisana - AlbumRavanhtta - GenreFolk - KindAAC audio file - Size9910599 - Total Time403306 - Disc Number1 - Disc Count1 - Track Number6 - Track Count12 - Year2004 - Date Modified2008-01-05T04:21:53Z - Date Added2009-10-03T14:56:14Z - Bit Rate195 - Sample Rate44100 - Normalization2908 - Persistent IDB31B2226405C2CE2 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jaisalmeria/Ravanhtta/06%20Mhari%20Mangetar.m4a - File Folder Count4 - Library Folder Count1 - - 4014 - - Track ID4014 - NameKaliyo Kood Padya - ArtistJaisalmeria - ComposerJaisana - AlbumRavanhtta - GenreFolk - KindAAC audio file - Size5936557 - Total Time241786 - Disc Number1 - Disc Count1 - Track Number7 - Track Count12 - Year2004 - Date Modified2008-01-05T04:22:09Z - Date Added2009-10-03T14:56:14Z - Bit Rate194 - Sample Rate44100 - Normalization1944 - Persistent ID715EE448EEF542E7 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jaisalmeria/Ravanhtta/07%20Kaliyo%20Kood%20Padya.m4a - File Folder Count4 - Library Folder Count1 - - 4016 - - Track ID4016 - NameMoomal - ArtistJaisalmeria - ComposerJaisana - AlbumRavanhtta - GenreFolk - KindAAC audio file - Size8153530 - Total Time331506 - Disc Number1 - Disc Count1 - Track Number8 - Track Count12 - Year2004 - Date Modified2008-01-05T04:22:30Z - Date Added2009-10-03T14:56:14Z - Bit Rate195 - Sample Rate44100 - Normalization1987 - Persistent ID0C392079BA9863EF - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jaisalmeria/Ravanhtta/08%20Moomal.m4a - File Folder Count4 - Library Folder Count1 - - 4018 - - Track ID4018 - NamePadaro Mhare Des - ArtistJaisalmeria - ComposerJaisana - AlbumRavanhtta - GenreFolk - KindAAC audio file - Size5043481 - Total Time205866 - Disc Number1 - Disc Count1 - Track Number9 - Track Count12 - Year2004 - Date Modified2008-01-05T04:22:43Z - Date Added2009-10-03T14:56:15Z - Bit Rate194 - Sample Rate44100 - Normalization2400 - Persistent ID27D2224E49869EE5 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jaisalmeria/Ravanhtta/09%20Padaro%20Mhare%20Des.m4a - File Folder Count4 - Library Folder Count1 - - 4020 - - Track ID4020 - NameDhora Re - ArtistJaisalmeria - ComposerJaisana - AlbumRavanhtta - GenreFolk - KindAAC audio file - Size8960368 - Total Time363746 - Disc Number1 - Disc Count1 - Track Number10 - Track Count12 - Year2004 - Date Modified2008-01-05T04:23:07Z - Date Added2009-10-03T14:56:15Z - Bit Rate195 - Sample Rate44100 - Normalization3156 - Persistent IDB95E555CE7497F09 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jaisalmeria/Ravanhtta/10%20Dhora%20Re.m4a - File Folder Count4 - Library Folder Count1 - - 4022 - - Track ID4022 - NamePardesi Pardesi - ArtistJaisalmeria - ComposerJaisana - AlbumRavanhtta - GenreFolk - KindAAC audio file - Size11579544 - Total Time469586 - Disc Number1 - Disc Count1 - Track Number11 - Track Count12 - Year2004 - Date Modified2008-01-05T04:23:36Z - Date Added2009-10-03T14:56:15Z - Bit Rate195 - Sample Rate44100 - Normalization3009 - Persistent ID50B3B9401C24EBB7 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jaisalmeria/Ravanhtta/11%20Pardesi%20Pardesi.m4a - File Folder Count4 - Library Folder Count1 - - 4024 - - Track ID4024 - NameBana Re Baghan Me - ArtistJaisalmeria - ComposerJaisana - AlbumRavanhtta - GenreFolk - KindAAC audio file - Size5917097 - Total Time240440 - Disc Number1 - Disc Count1 - Track Number12 - Track Count12 - Year2004 - Date Modified2008-01-05T04:23:52Z - Date Added2009-10-03T14:56:15Z - Bit Rate195 - Sample Rate44100 - Normalization2750 - Persistent ID9B0A26B3E54D554C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jaisalmeria/Ravanhtta/12%20Bana%20Re%20Baghan%20Me.m4a - File Folder Count4 - Library Folder Count1 - - 4026 - - Track ID4026 - NameKiya Hai Pyar Jise - ArtistJagjit Singh & Chitra Singh - AlbumMera Geet Amar Kardo - GenrePop - KindMPEG audio file - Size7096030 - Total Time354795 - Year2000 - Date Modified2002-06-07T20:05:56Z - Date Added2009-10-03T14:56:15Z - Bit Rate160 - Sample Rate44100 - CommentsGenie, AG# 5AEC02AC - Persistent IDF963A4710A0EA898 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jagjit%20Singh%20&%20Chitra%20Singh/Mera%20Geet%20Amar%20Kardo/Kiya%20Hai%20Pyar%20Jise.mp3 - File Folder Count4 - Library Folder Count1 - - 4028 - - Track ID4028 - NamePareshan Raat Sari Hai - ArtistJagjit Singh - AlbumMemorable Ghazals - KindMPEG audio file - Size2655213 - Total Time221257 - Track Number4 - Year1999 - Date Modified2002-06-07T17:38:32Z - Date Added2009-10-03T14:56:15Z - Bit Rate96 - Sample Rate44100 - CommentsMade with RealJukebox (tm) - Persistent ID3BD201EC2731923D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jagjit%20Singh/Memorable%20Ghazals/04%20Pareshan%20Raat%20Sari%20Hai.mp3 - File Folder Count4 - Library Folder Count1 - - 4030 - - Track ID4030 - NameSachhi Baat - ArtistJagjit Singh - AlbumFace To Face - GenreWorld - KindAAC audio file - Size5638857 - Total Time233173 - Disc Number1 - Disc Count1 - Track Number1 - Track Count9 - Year1996 - Date Modified2006-07-30T07:37:56Z - Date Added2009-10-03T14:56:16Z - Bit Rate192 - Sample Rate44100 - Normalization1145 - Artwork Count1 - Persistent IDEF886045AD606306 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jagjit%20Singh/Face%20To%20Face/01%20Sachhi%20Baat.m4a - File Folder Count4 - Library Folder Count1 - - 4032 - - Track ID4032 - NameDairo-Haram - ArtistJagjit Singh - AlbumFace To Face - GenreWorld - KindAAC audio file - Size6779084 - Total Time280542 - Disc Number1 - Disc Count1 - Track Number2 - Track Count9 - Year1996 - Date Modified2006-07-30T07:37:56Z - Date Added2009-10-03T14:56:16Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Persistent ID3E08D0DD485C7A73 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jagjit%20Singh/Face%20To%20Face/02%20Dairo-Haram.m4a - File Folder Count4 - Library Folder Count1 - - 4034 - - Track ID4034 - NameBe-Sabab Baat - ArtistJagjit Singh - AlbumFace To Face - GenreWorld - KindAAC audio file - Size10603429 - Total Time439714 - Disc Number1 - Disc Count1 - Track Number3 - Track Count9 - Year1996 - Date Modified2006-07-30T07:37:56Z - Date Added2009-10-03T14:56:16Z - Bit Rate192 - Sample Rate44100 - Normalization1004 - Artwork Count1 - Persistent IDD3DB2CB425FF3E65 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jagjit%20Singh/Face%20To%20Face/03%20Be-Sabab%20Baat.m4a - File Folder Count4 - Library Folder Count1 - - 4036 - - Track ID4036 - NameZindagi Tune - ArtistJagjit Singh - AlbumFace To Face - GenreWorld - KindAAC audio file - Size9254569 - Total Time383127 - Disc Number1 - Disc Count1 - Track Number4 - Track Count9 - Year1996 - Date Modified2006-07-30T07:37:56Z - Date Added2009-10-03T14:56:16Z - Bit Rate192 - Sample Rate44100 - Normalization621 - Artwork Count1 - Persistent ID09C0C9860736556B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jagjit%20Singh/Face%20To%20Face/04%20Zindagi%20Tune.m4a - File Folder Count4 - Library Folder Count1 - - 4038 - - Track ID4038 - NameTumne Badle Hamse - ArtistJagjit Singh - AlbumFace To Face - GenreWorld - KindAAC audio file - Size7940219 - Total Time328444 - Disc Number1 - Disc Count1 - Track Number5 - Track Count9 - Year1996 - Date Modified2006-07-30T07:37:58Z - Date Added2009-10-03T14:56:16Z - Bit Rate192 - Sample Rate44100 - Normalization554 - Artwork Count1 - Persistent IDC5BA63CA962CC1BD - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jagjit%20Singh/Face%20To%20Face/05%20Tumne%20Badle%20Hamse.m4a - File Folder Count4 - Library Folder Count1 - - 4040 - - Track ID4040 - NamePuar Ka Pahla Khat - ArtistJagjit Singh - AlbumFace To Face - GenreWorld - KindAAC audio file - Size8420086 - Total Time348808 - Disc Number1 - Disc Count1 - Track Number6 - Track Count9 - Year1996 - Date Modified2006-07-30T07:37:58Z - Date Added2009-10-03T14:56:16Z - Bit Rate192 - Sample Rate44100 - Normalization989 - Artwork Count1 - Persistent IDE7B1F51834D7BDEC - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jagjit%20Singh/Face%20To%20Face/06%20Puar%20Ka%20Pahla%20Khat.m4a - File Folder Count4 - Library Folder Count1 - - 4042 - - Track ID4042 - NameZindagi Ai Zindagi - ArtistJagjit Singh - AlbumFace To Face - GenreWorld - KindAAC audio file - Size8648959 - Total Time357887 - Disc Number1 - Disc Count1 - Track Number7 - Track Count9 - Year1996 - Date Modified2006-07-30T07:37:58Z - Date Added2009-10-03T14:56:16Z - Bit Rate192 - Sample Rate44100 - Normalization1195 - Artwork Count1 - Persistent IDD10DA738BE784C75 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jagjit%20Singh/Face%20To%20Face/07%20Zindagi%20Ai%20Zindagi.m4a - File Folder Count4 - Library Folder Count1 - - 4044 - - Track ID4044 - NameSheikh Ji - ArtistJagjit Singh - AlbumFace To Face - GenreWorld - KindAAC audio file - Size8604407 - Total Time357400 - Disc Number1 - Disc Count1 - Track Number8 - Track Count9 - Year1996 - Date Modified2006-07-30T07:37:58Z - Date Added2009-10-03T14:56:16Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Persistent ID00A99CCABE1429AD - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jagjit%20Singh/Face%20To%20Face/08%20Sheikh%20Ji.m4a - File Folder Count4 - Library Folder Count1 - - 4046 - - Track ID4046 - NameKoi Mausam - ArtistJagjit Singh - AlbumFace To Face - GenreWorld - KindAAC audio file - Size9132973 - Total Time376974 - Disc Number1 - Disc Count1 - Track Number9 - Track Count9 - Year1996 - Date Modified2006-07-30T07:37:58Z - Date Added2009-10-03T14:56:17Z - Bit Rate192 - Sample Rate44100 - Normalization356 - Artwork Count1 - Persistent ID886E8F6824BE417F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jagjit%20Singh/Face%20To%20Face/09%20Koi%20Mausam.m4a - File Folder Count4 - Library Folder Count1 - - 4048 - - Track ID4048 - NamePollaa Vinayen - ArtistIlaiyaraaja, Ray Harcourt - ComposerIlaiyaraaja - AlbumThiruvasagam - GenreWorld - KindAAC audio file - Size30156994 - Total Time1240408 - Disc Number1 - Disc Count1 - Track Number2 - Track Count6 - Year2005 - Date Modified2006-08-13T06:39:06Z - Date Added2009-10-03T14:56:17Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Artwork Count2 - Persistent ID2F1691A83E05EFC8 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ilaiyaraaja,%20Ray%20Harcourt/Thiruvasagam/02%20Pollaa%20Vinayen.m4a - File Folder Count4 - Library Folder Count1 - - 4050 - - Track ID4050 - NamePooerukanum Purantharunam - ArtistIlaiyaraaja, Bavatharini - ComposerIlaiyaraaja - AlbumThiruvasagam - GenreWorld - KindAAC audio file - Size11823433 - Total Time482834 - Disc Number1 - Disc Count1 - Track Number3 - Track Count6 - Year2005 - Date Modified2006-08-13T06:38:52Z - Date Added2009-10-03T14:56:17Z - Bit Rate192 - Sample Rate44100 - Normalization813 - Artwork Count2 - Persistent ID0D5FA9DAA9D65792 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ilaiyaraaja,%20Bavatharini/Thiruvasagam/03%20Pooerukanum%20Purantharunam.m4a - File Folder Count4 - Library Folder Count1 - - 4052 - - Track ID4052 - NamePoovar Senni Mannan - ArtistIlaiyaraaja - ComposerIlaiyaraaja - AlbumThiruvasagam - GenreWorld - KindAAC audio file - Size12161526 - Total Time496789 - Disc Number1 - Disc Count1 - Track Number1 - Track Count6 - Year2005 - Date Modified2006-08-13T06:38:46Z - Date Added2009-10-03T14:56:18Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Artwork Count2 - Persistent ID819CB5AC174B7D63 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ilaiyaraaja/Thiruvasagam/01%20Poovar%20Senni%20Mannan.m4a - File Folder Count4 - Library Folder Count1 - - 4054 - - Track ID4054 - NameUmbarkatkarasaey - ArtistIlaiyaraaja - ComposerIlaiyaraaja - AlbumThiruvasagam - GenreWorld - KindAAC audio file - Size15143305 - Total Time619924 - Disc Number1 - Disc Count1 - Track Number4 - Track Count6 - Year2005 - Date Modified2006-08-13T06:38:42Z - Date Added2009-10-03T14:56:18Z - Bit Rate192 - Sample Rate44100 - Normalization1131 - Artwork Count2 - Persistent IDD7C64648081248AA - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ilaiyaraaja/Thiruvasagam/04%20Umbarkatkarasaey.m4a - File Folder Count4 - Library Folder Count1 - - 4056 - - Track ID4056 - NamePuttril Vazha Aravum Angen - ArtistIlaiyaraaja - ComposerIlaiyaraaja - AlbumThiruvasagam - GenreWorld - KindAAC audio file - Size12880989 - Total Time526487 - Disc Number1 - Disc Count1 - Track Number6 - Track Count6 - Year2005 - Date Modified2006-08-13T06:38:34Z - Date Added2009-10-03T14:56:18Z - Bit Rate192 - Sample Rate44100 - Normalization858 - Artwork Count2 - Persistent ID67AF751524CC8090 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ilaiyaraaja/Thiruvasagam/06%20Puttril%20Vazha%20Aravum%20Angen.m4a - File Folder Count4 - Library Folder Count1 - - 4058 - - Track ID4058 - NameDe Los Andes - ArtistHuayllipacha - AlbumHuayllipacha - GenreWorld - KindAAC audio file - Size7030614 - Total Time290271 - Track Number1 - Track Count10 - Date Modified2006-08-07T14:04:16Z - Date Added2009-10-03T14:56:18Z - Bit Rate192 - Sample Rate44100 - Normalization1019 - Artwork Count1 - Persistent IDF8FD95030B3A0A81 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Huayllipacha/Huayllipacha/01%20De%20Los%20Andes.m4a - File Folder Count4 - Library Folder Count1 - - 4060 - - Track ID4060 - NameTempestad - ArtistHuayllipacha - AlbumHuayllipacha - GenreWorld - KindAAC audio file - Size5037928 - Total Time207561 - Track Number2 - Track Count10 - Date Modified2006-08-07T14:04:16Z - Date Added2009-10-03T14:56:18Z - Bit Rate192 - Sample Rate44100 - Normalization1597 - Artwork Count1 - Persistent IDC681E610CB11C2E5 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Huayllipacha/Huayllipacha/02%20Tempestad.m4a - File Folder Count4 - Library Folder Count1 - - 4062 - - Track ID4062 - NameYamor - ArtistHuayllipacha - AlbumHuayllipacha - GenreWorld - KindAAC audio file - Size5614520 - Total Time231246 - Track Number3 - Track Count10 - Date Modified2006-08-07T14:04:16Z - Date Added2009-10-03T14:56:19Z - Bit Rate192 - Sample Rate44100 - Normalization1739 - Artwork Count1 - Persistent IDF62C19822E31A461 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Huayllipacha/Huayllipacha/03%20Yamor.m4a - File Folder Count4 - Library Folder Count1 - - 4064 - - Track ID4064 - NameCarnavalito Humahuaqueno - ArtistHuayllipacha - AlbumHuayllipacha - GenreWorld - KindAAC audio file - Size5947559 - Total Time245108 - Track Number4 - Track Count10 - Date Modified2006-08-07T14:04:16Z - Date Added2009-10-03T14:56:19Z - Bit Rate192 - Sample Rate44100 - Normalization1254 - Artwork Count1 - Persistent ID47B1421BB095C6C8 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Huayllipacha/Huayllipacha/04%20Carnavalito%20Humahuaqueno.m4a - File Folder Count4 - Library Folder Count1 - - 4066 - - Track ID4066 - NamePaisaje Del Dorado - ArtistHuayllipacha - AlbumHuayllipacha - GenreWorld - KindAAC audio file - Size5783581 - Total Time238281 - Track Number5 - Track Count10 - Date Modified2006-08-07T14:04:16Z - Date Added2009-10-03T14:56:19Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Persistent ID08119FB463EC4DE8 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Huayllipacha/Huayllipacha/05%20Paisaje%20Del%20Dorado.m4a - File Folder Count4 - Library Folder Count1 - - 4068 - - Track ID4068 - NameEl Condor Pasa - ArtistHuayllipacha - AlbumHuayllipacha - GenreWorld - KindAAC audio file - Size9101670 - Total Time375581 - Track Number6 - Track Count10 - Date Modified2006-08-07T14:04:16Z - Date Added2009-10-03T14:56:19Z - Bit Rate192 - Sample Rate44100 - Normalization1231 - Artwork Count1 - Persistent ID0F9B73AAFD74D291 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Huayllipacha/Huayllipacha/06%20El%20Condor%20Pasa.m4a - File Folder Count4 - Library Folder Count1 - - 4070 - - Track ID4070 - NameHuayquecha - ArtistHuayllipacha - AlbumHuayllipacha - GenreWorld - KindAAC audio file - Size7417136 - Total Time305967 - Track Number7 - Track Count10 - Date Modified2006-08-07T14:04:16Z - Date Added2009-10-03T14:56:19Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Persistent ID07CD5776847F3FA7 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Huayllipacha/Huayllipacha/07%20Huayquecha.m4a - File Folder Count4 - Library Folder Count1 - - 4072 - - Track ID4072 - NameLlorando Se Fue - ArtistHuayllipacha - AlbumHuayllipacha - GenreWorld - KindAAC audio file - Size4992229 - Total Time205657 - Track Number8 - Track Count10 - Date Modified2006-08-07T14:04:16Z - Date Added2009-10-03T14:56:19Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Persistent ID08E3D4D668E0FC07 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Huayllipacha/Huayllipacha/08%20Llorando%20Se%20Fue.m4a - File Folder Count4 - Library Folder Count1 - - 4074 - - Track ID4074 - NameSaqra - ArtistHuayllipacha - AlbumHuayllipacha - GenreWorld - KindAAC audio file - Size4568870 - Total Time188033 - Track Number9 - Track Count10 - Date Modified2006-08-07T14:04:16Z - Date Added2009-10-03T14:56:20Z - Bit Rate192 - Sample Rate44100 - Normalization1451 - Artwork Count1 - Persistent IDF112DAC585730C0F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Huayllipacha/Huayllipacha/09%20Saqra.m4a - File Folder Count4 - Library Folder Count1 - - 4076 - - Track ID4076 - NameAlpamanda - ArtistHuayllipacha - AlbumHuayllipacha - GenreWorld - KindAAC audio file - Size5166007 - Total Time212948 - Track Number10 - Track Count10 - Date Modified2006-08-07T14:04:16Z - Date Added2009-10-03T14:56:20Z - Bit Rate192 - Sample Rate44100 - Normalization2011 - Artwork Count1 - Persistent IDE6FACF3BF92B76E3 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Huayllipacha/Huayllipacha/10%20Alpamanda.m4a - File Folder Count4 - Library Folder Count1 - - 4078 - - Track ID4078 - NameSwiss Ming - ArtistHiroshima - ComposerDan Kuramoto & Dean Cortez & June Kuramoto & Kimo Cornwell - AlbumObon - GenreJazz - KindAAC audio file - Size7183569 - Total Time296261 - Disc Number1 - Disc Count1 - Track Number1 - Track Count11 - Year2005 - Date Modified2006-09-05T15:10:14Z - Date Added2009-10-03T14:56:20Z - Bit Rate192 - Sample Rate44100 - Play Count5 - Play Date3430145525 - Play Date UTC2012-09-10T12:42:05Z - Normalization1808 - Artwork Count1 - Persistent ID2A8E18189FCD1BE6 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hiroshima/Obon/01%20Swiss%20Ming.m4a - File Folder Count4 - Library Folder Count1 - - 4080 - - Track ID4080 - NameChina Latina - ArtistHiroshima - ComposerDan Kuramoto & Dean Cortez & June Kuramoto & Kimo Cornwell - AlbumObon - GenreJazz - KindAAC audio file - Size6370359 - Total Time263405 - Disc Number1 - Disc Count1 - Track Number2 - Track Count11 - Year2005 - Date Modified2006-09-05T15:10:14Z - Date Added2009-10-03T14:56:20Z - Bit Rate192 - Sample Rate44100 - Normalization1982 - Artwork Count1 - Persistent IDEA99358D616B8C6C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hiroshima/Obon/02%20China%20Latina.m4a - File Folder Count4 - Library Folder Count1 - - 4082 - - Track ID4082 - NameKototsu-Han (San Kyoku) - ArtistHiroshima - ComposerDan Kuramoto & Dean Cortez & June Kuramoto & Kimo Cornwell - AlbumObon - GenreJazz - KindAAC audio file - Size7622586 - Total Time316068 - Disc Number1 - Disc Count1 - Track Number3 - Track Count11 - Year2005 - Date Modified2006-09-05T15:10:14Z - Date Added2009-10-03T14:56:20Z - Bit Rate192 - Sample Rate44100 - Normalization1255 - Artwork Count1 - Persistent ID7CCDAE4BD999632A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hiroshima/Obon/03%20Kototsu-Han%20(San%20Kyoku).m4a - File Folder Count4 - Library Folder Count1 - - 4084 - - Track ID4084 - NameAtomic Cafe - ArtistHiroshima - ComposerDan Kuramoto & Dean Cortez & June Kuramoto & Kimo Cornwell - AlbumObon - GenreJazz - KindAAC audio file - Size7338252 - Total Time302856 - Disc Number1 - Disc Count1 - Track Number4 - Track Count11 - Year2005 - Date Modified2006-09-05T15:10:14Z - Date Added2009-10-03T14:56:20Z - Bit Rate192 - Sample Rate44100 - Normalization2389 - Artwork Count1 - Persistent IDE562CFF22E4612B3 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hiroshima/Obon/04%20Atomic%20Cafe.m4a - File Folder Count4 - Library Folder Count1 - - 4086 - - Track ID4086 - NameObon Two-Five - ArtistHiroshima - ComposerDan Kuramoto & Dean Cortez & June Kuramoto & Kimo Cornwell - AlbumObon - GenreJazz - KindAAC audio file - Size7424594 - Total Time307291 - Disc Number1 - Disc Count1 - Track Number5 - Track Count11 - Year2005 - Date Modified2006-09-05T15:10:12Z - Date Added2009-10-03T14:56:20Z - Bit Rate192 - Sample Rate44100 - Normalization1516 - Artwork Count1 - Persistent IDD7DA9E9CEE8203B0 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hiroshima/Obon/05%20Obon%20Two-Five.m4a - File Folder Count4 - Library Folder Count1 - - 4088 - - Track ID4088 - NameOne Thursday Morning - ArtistHiroshima - ComposerDan Kuramoto & Dean Cortez & June Kuramoto & Kimo Cornwell - AlbumObon - GenreJazz - KindAAC audio file - Size7959310 - Total Time328328 - Disc Number1 - Disc Count1 - Track Number6 - Track Count11 - Year2005 - Date Modified2006-09-05T15:10:12Z - Date Added2009-10-03T14:56:21Z - Bit Rate192 - Sample Rate44100 - Normalization1289 - Artwork Count1 - Persistent ID31F89557AFF840CF - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hiroshima/Obon/06%20One%20Thursday%20Morning.m4a - File Folder Count4 - Library Folder Count1 - - 4090 - - Track ID4090 - NameMr. Robben - ArtistHiroshima - ComposerDan Kuramoto & Dean Cortez & June Kuramoto & Kimo Cornwell - AlbumObon - GenreJazz - KindAAC audio file - Size7600069 - Total Time313607 - Disc Number1 - Disc Count1 - Track Number7 - Track Count11 - Year2005 - Date Modified2006-09-05T15:10:12Z - Date Added2009-10-03T14:56:21Z - Bit Rate192 - Sample Rate44100 - Normalization2038 - Artwork Count1 - Persistent IDDE34E2302AA5A559 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hiroshima/Obon/07%20Mr.%20Robben.m4a - File Folder Count4 - Library Folder Count1 - - 4092 - - Track ID4092 - NamePairs (Ici Avec Moi) - ArtistHiroshima - ComposerDan Kuramoto & Dean Cortez & June Kuramoto & Kimo Cornwell - AlbumObon - GenreJazz - KindAAC audio file - Size6647108 - Total Time274690 - Disc Number1 - Disc Count1 - Track Number8 - Track Count11 - Year2005 - Date Modified2006-09-05T15:10:12Z - Date Added2009-10-03T14:56:21Z - Bit Rate192 - Sample Rate44100 - Normalization1179 - Artwork Count1 - Persistent IDB09B766EF363E296 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hiroshima/Obon/08%20Pairs%20(Ici%20Avec%20Moi).m4a - File Folder Count4 - Library Folder Count1 - - 4094 - - Track ID4094 - NamePharoah - ArtistHiroshima - ComposerDan Kuramoto & Dean Cortez & June Kuramoto & Kimo Cornwell - AlbumObon - GenreJazz - KindAAC audio file - Size7344578 - Total Time304040 - Disc Number1 - Disc Count1 - Track Number9 - Track Count11 - Year2005 - Date Modified2006-09-05T15:10:10Z - Date Added2009-10-03T14:56:21Z - Bit Rate192 - Sample Rate44100 - Normalization2337 - Artwork Count1 - Persistent IDDF1E01619CA5CBDD - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hiroshima/Obon/09%20Pharoah.m4a - File Folder Count4 - Library Folder Count1 - - 4096 - - Track ID4096 - NameThe Lighthouse - ArtistHiroshima - ComposerDan Kuramoto & Dean Cortez & June Kuramoto & Kimo Cornwell - AlbumObon - GenreJazz - KindAAC audio file - Size8059039 - Total Time333413 - Disc Number1 - Disc Count1 - Track Number10 - Track Count11 - Year2005 - Date Modified2006-09-05T15:10:10Z - Date Added2009-10-03T14:56:21Z - Bit Rate192 - Sample Rate44100 - Normalization1733 - Artwork Count1 - Sort NameLighthouse - Persistent IDF6BAC747373C4699 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hiroshima/Obon/10%20The%20Lighthouse.m4a - File Folder Count4 - Library Folder Count1 - - 4098 - - Track ID4098 - NameHeritage - ArtistHiroshima - ComposerDan Kuramoto & Dean Cortez & June Kuramoto & Kimo Cornwell - AlbumObon - GenreJazz - KindAAC audio file - Size6042603 - Total Time249520 - Disc Number1 - Disc Count1 - Track Number11 - Track Count11 - Year2005 - Date Modified2006-09-05T15:10:10Z - Date Added2009-10-03T14:56:21Z - Bit Rate192 - Sample Rate44100 - Normalization1186 - Artwork Count1 - Persistent IDB59363CFA7CF25E3 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hiroshima/Obon/11%20Heritage.m4a - File Folder Count4 - Library Folder Count1 - - 4100 - - Track ID4100 - NameHum Hain Rahi Pyar Ke - ArtistHindi - Kishore Kumar - AlbumHits All the Way - KindMPEG audio file - Size2473398 - Total Time205844 - Track Number2 - Date Modified2007-04-09T08:36:30Z - Date Added2009-10-03T14:56:21Z - Bit Rate96 - Sample Rate44100 - Artwork Count1 - Persistent IDB810733CD376A04E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hindi%20-%20Kishore%20Kumar/Hits%20All%20the%20Way/02%20Hum%20Hain%20Rahi%20Pyar%20Ke.mp3 - File Folder Count4 - Library Folder Count1 - - 4102 - - Track ID4102 - NameMaiden Voyage - ArtistHerbie Hancock - ComposerHerbie Hancock (1940-) - AlbumMaiden Voyage - GenreJazz - KindAAC audio file - Size11473922 - Total Time477098 - Disc Number1 - Disc Count1 - Track Number1 - Track Count5 - Year1965 - Date Modified2006-07-28T01:52:32Z - Date Added2009-10-03T14:56:22Z - Bit Rate192 - Sample Rate44100 - Normalization1916 - Artwork Count1 - Persistent ID835C1CB659A5D368 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Herbie%20Hancock/Maiden%20Voyage/01%20Maiden%20Voyage.m4a - File Folder Count4 - Library Folder Count1 - - 4104 - - Track ID4104 - NameThe Eye Of The Hurricane - ArtistHerbie Hancock - ComposerHerbie Hancock (1940-) - AlbumMaiden Voyage - GenreJazz - KindAAC audio file - Size8691067 - Total Time361463 - Disc Number1 - Disc Count1 - Track Number2 - Track Count5 - Year1965 - Date Modified2006-07-28T01:52:32Z - Date Added2009-10-03T14:56:22Z - Bit Rate192 - Sample Rate44100 - Normalization2527 - Artwork Count1 - Sort NameEye Of The Hurricane - Persistent ID7B59702D5B3EE6C6 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Herbie%20Hancock/Maiden%20Voyage/02%20The%20Eye%20Of%20The%20Hurricane.m4a - File Folder Count4 - Library Folder Count1 - - 4106 - - Track ID4106 - NameLittle One - ArtistHerbie Hancock - ComposerHerbie Hancock (1940-) - AlbumMaiden Voyage - GenreJazz - KindAAC audio file - Size12707017 - Total Time527277 - Disc Number1 - Disc Count1 - Track Number3 - Track Count5 - Year1965 - Date Modified2006-07-28T01:52:34Z - Date Added2009-10-03T14:56:22Z - Bit Rate192 - Sample Rate44100 - Normalization1343 - Artwork Count1 - Persistent ID68E8472F144650EF - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Herbie%20Hancock/Maiden%20Voyage/03%20Little%20One.m4a - File Folder Count4 - Library Folder Count1 - - 4108 - - Track ID4108 - NameSurvival Of The Fittest - ArtistHerbie Hancock - ComposerHerbie Hancock (1940-) - AlbumMaiden Voyage - GenreJazz - KindAAC audio file - Size14549934 - Total Time603229 - Disc Number1 - Disc Count1 - Track Number4 - Track Count5 - Year1965 - Date Modified2006-07-28T01:52:36Z - Date Added2009-10-03T14:56:22Z - Bit Rate192 - Sample Rate44100 - Normalization1484 - Artwork Count1 - Persistent ID614BD13424F694AB - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Herbie%20Hancock/Maiden%20Voyage/04%20Survival%20Of%20The%20Fittest.m4a - File Folder Count4 - Library Folder Count1 - - 4110 - - Track ID4110 - NameDolphin Dance - ArtistHerbie Hancock - ComposerHerbie Hancock (1940-) - AlbumMaiden Voyage - GenreJazz - KindAAC audio file - Size13444632 - Total Time556139 - Disc Number1 - Disc Count1 - Track Number5 - Track Count5 - Year1965 - Date Modified2006-07-28T01:52:36Z - Date Added2009-10-03T14:56:22Z - Bit Rate192 - Sample Rate44100 - Normalization1614 - Artwork Count1 - Persistent IDCA687C2C89A571B8 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Herbie%20Hancock/Maiden%20Voyage/05%20Dolphin%20Dance.m4a - File Folder Count4 - Library Folder Count1 - - 4112 - - Track ID4112 - NameIk Onkar - ArtistHarshdeep Kaur - ComposerA R Rehman - AlbumRang De Basanti - GenreSoundtracks - KindAAC audio file - Size2133809 - Total Time88396 - Track Number1 - Date Modified2006-12-29T04:14:44Z - Date Added2009-10-03T14:56:22Z - Bit Rate192 - Sample Rate44100 - Normalization1656 - Sort ComposerR Rehman - Persistent ID5F9A342D58989A02 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harshdeep%20Kaur/Rang%20De%20Basanti/01%20Ik%20Onkar.m4a - File Folder Count4 - Library Folder Count1 - - 4114 - - Track ID4114 - NameIk Onkar - ArtistHarshdeep Kaur - ComposerA R Rehman - AlbumRang De Basanti - GenreSoundtracks - KindAAC audio file - Size2102347 - Total Time88375 - Track Number1 - Date Modified2007-07-27T06:36:56Z - Date Added2009-10-03T14:56:22Z - Bit Rate192 - Sample Rate44100 - Normalization1656 - Sort ComposerR Rehman - Persistent IDC32CF94A1563EB05 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harshdeep%20Kaur/Rang%20De%20Basanti/01%20Ik%20Onkar%201.m4a - File Folder Count4 - Library Folder Count1 - - 4116 - - Track ID4116 - NameIk Onkar - ArtistHarshdeep Kaur - ComposerA R Rehman - AlbumRang De Basanti - GenreSoundtracks - KindAAC audio file - Size2133809 - Total Time88396 - Track Number1 - Date Modified2007-04-09T09:37:50Z - Date Added2009-10-03T14:56:23Z - Bit Rate192 - Sample Rate44100 - Normalization1656 - Artwork Count1 - Sort ComposerR Rehman - Persistent IDE4CD3372B62AA4E8 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harshdeep%20Kaur/Rang%20De%20Basanti/01%20Ik%20Onkar%202.m4a - File Folder Count4 - Library Folder Count1 - - 4118 - - Track ID4118 - NameIk Onkar - ArtistHarshdeep Kaur - ComposerA R Rehman - AlbumRang De Basanti - GenreSoundtracks - KindAAC audio file - Size2104985 - Total Time88375 - Track Number1 - Date Modified2007-12-02T08:04:48Z - Date Added2009-10-03T14:56:23Z - Bit Rate188 - Sample Rate44100 - Normalization1656 - Sort ComposerR Rehman - Persistent IDEC8D396F8AED9D3C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harshdeep%20Kaur/Rang%20De%20Basanti/01%20Ik%20Onkar%203.m4a - File Folder Count4 - Library Folder Count1 - - 4120 - - Track ID4120 - NameAtached - ArtistHariprasad Chaurasia - AlbumMaya - GenreWorld - KindAAC audio file - Size6068970 - Total Time253600 - Track Number1 - Track Count9 - Date Modified2007-09-10T05:39:32Z - Date Added2009-10-03T14:56:23Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3337847302 - Play Date UTC2009-10-08T06:18:22Z - Normalization1400 - Persistent ID0669DA604273413B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hariprasad%20Chaurasia/Maya/01%20Atached.m4a - File Folder Count4 - Library Folder Count1 - - 4122 - - Track ID4122 - NameIntrospection - ArtistHariprasad Chaurasia - AlbumMaya - GenreWorld - KindAAC audio file - Size4940541 - Total Time207533 - Track Number2 - Track Count9 - Date Modified2007-09-10T05:57:42Z - Date Added2009-10-03T14:56:23Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3337847510 - Play Date UTC2009-10-08T06:21:50Z - Normalization1258 - Persistent ID1183DB1ACF837DA3 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hariprasad%20Chaurasia/Maya/02%20Introspection.m4a - File Folder Count4 - Library Folder Count1 - - 4124 - - Track ID4124 - NameReaching Out - ArtistHariprasad Chaurasia - AlbumMaya - GenreWorld - KindAAC audio file - Size7223957 - Total Time302000 - Track Number3 - Track Count9 - Date Modified2007-09-10T05:58:18Z - Date Added2009-10-03T14:56:23Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3337847812 - Play Date UTC2009-10-08T06:26:52Z - Normalization1238 - Persistent ID19B705EE56AEFA46 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hariprasad%20Chaurasia/Maya/03%20Reaching%20Out.m4a - File Folder Count4 - Library Folder Count1 - - 4126 - - Track ID4126 - NameFreedom - ArtistHariprasad Chaurasia - AlbumMaya - GenreWorld - KindAAC audio file - Size5959941 - Total Time250026 - Track Number4 - Track Count9 - Date Modified2007-09-10T05:58:46Z - Date Added2009-10-03T14:56:23Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3337848062 - Play Date UTC2009-10-08T06:31:02Z - Normalization2881 - Persistent ID537B0096D1E56EE7 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hariprasad%20Chaurasia/Maya/04%20Freedom.m4a - File Folder Count4 - Library Folder Count1 - - 4128 - - Track ID4128 - NameDilemma - ArtistHariprasad Chaurasia - AlbumMaya - GenreWorld - KindAAC audio file - Size7829381 - Total Time325706 - Track Number5 - Track Count9 - Date Modified2007-09-10T05:59:22Z - Date Added2009-10-03T14:56:23Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3337848387 - Play Date UTC2009-10-08T06:36:27Z - Normalization1071 - Persistent ID33B61E99477201FC - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hariprasad%20Chaurasia/Maya/05%20Dilemma.m4a - File Folder Count4 - Library Folder Count1 - - 4130 - - Track ID4130 - NameTwilight Zone - ArtistHariprasad Chaurasia - AlbumMaya - GenreWorld - KindAAC audio file - Size5918117 - Total Time247960 - Track Number6 - Track Count9 - Date Modified2007-09-10T05:59:54Z - Date Added2009-10-03T14:56:24Z - Bit Rate192 - Sample Rate44100 - Normalization999 - Persistent ID3973B1A8150A36C0 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hariprasad%20Chaurasia/Maya/06%20Twilight%20Zone.m4a - File Folder Count4 - Library Folder Count1 - - 4132 - - Track ID4132 - NameLonging - ArtistHariprasad Chaurasia - AlbumMaya - GenreWorld - KindAAC audio file - Size6217147 - Total Time260066 - Track Number7 - Track Count9 - Date Modified2007-09-10T06:00:24Z - Date Added2009-10-03T14:56:24Z - Bit Rate192 - Sample Rate44100 - Normalization1084 - Persistent IDB5E91C8945BC069A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hariprasad%20Chaurasia/Maya/07%20Longing.m4a - File Folder Count4 - Library Folder Count1 - - 4134 - - Track ID4134 - NameMaya Unveiled - ArtistHariprasad Chaurasia - AlbumMaya - GenreWorld - KindAAC audio file - Size5764247 - Total Time241906 - Track Number8 - Track Count9 - Date Modified2007-09-10T06:00:56Z - Date Added2009-10-03T14:56:24Z - Bit Rate192 - Sample Rate44100 - Normalization1071 - Persistent ID08F66B757C1C4840 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hariprasad%20Chaurasia/Maya/08%20Maya%20Unveiled.m4a - File Folder Count4 - Library Folder Count1 - - 4136 - - Track ID4136 - NameThrough The Eyes Of The Taoist Master - ArtistHariprasad Chaurasia - AlbumMaya - GenreWorld - KindAAC audio file - Size7557072 - Total Time315066 - Track Number9 - Track Count9 - Date Modified2007-09-10T06:01:34Z - Date Added2009-10-03T14:56:24Z - Bit Rate192 - Sample Rate44100 - Normalization999 - Persistent ID36EA3F50B428E4BE - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hariprasad%20Chaurasia/Maya/09%20Through%20The%20Eyes%20Of%20The%20Taoist%20Master.m4a - File Folder Count4 - Library Folder Count1 - - 4138 - - Track ID4138 - NameDheemi Dheemi - ArtistHariharan/Ustad Zakir Hussain - ComposerA.R. Rahman/Javed Akhtar - Album1947 - GenreSoundtrack - KindAAC audio file - Size7596575 - Total Time315580 - Track Number3 - Year1999 - Date Modified2007-04-03T03:54:02Z - Date Added2009-10-03T14:56:24Z - Bit Rate192 - Sample Rate44100 - Normalization1532 - Artwork Count1 - Persistent ID9E33E11D6956B117 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hariharan_Ustad%20Zakir%20Hussain/1947/03%20Dheemi%20Dheemi.m4a - File Folder Count4 - Library Folder Count1 - - 4140 - - Track ID4140 - NameDheemi Dheemi - ArtistHariharan/Ustad Zakir Hussain - ComposerA.R. Rahman/Javed Akhtar - Album1947 - GenreSoundtrack - KindAAC audio file - Size7594173 - Total Time315559 - Track Number3 - Year1999 - Date Modified2007-07-27T05:53:52Z - Date Added2009-10-03T14:56:24Z - Bit Rate192 - Sample Rate44100 - Normalization1532 - Persistent IDDC39D05EFBE752B2 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hariharan_Ustad%20Zakir%20Hussain/1947/03%20Dheemi%20Dheemi%202.m4a - File Folder Count4 - Library Folder Count1 - - 4142 - - Track ID4142 - NameDheemi Dheemi - ArtistHariharan/Ustad Zakir Hussain - ComposerA.R. Rahman/Javed Akhtar - Album1947 - GenreSoundtrack - KindAAC audio file - Size7596575 - Total Time315580 - Track Number3 - Year1999 - Date Modified2007-04-03T03:54:02Z - Date Added2009-10-03T14:56:24Z - Bit Rate192 - Sample Rate44100 - Normalization1532 - Artwork Count1 - Persistent ID0CDBA25B4B1900C2 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hariharan_Ustad%20Zakir%20Hussain/1947/03%20Dheemi%20Dheemi%203.m4a - File Folder Count4 - Library Folder Count1 - - 4144 - - Track ID4144 - NameDheemi Dheemi - ArtistHariharan/Ustad Zakir Hussain - ComposerA.R. Rahman/Javed Akhtar - Album1947 - GenreSoundtrack - KindAAC audio file - Size7432206 - Total Time315559 - Track Number3 - Year1999 - Date Modified2007-12-02T07:35:33Z - Date Added2009-10-03T14:56:24Z - Bit Rate186 - Sample Rate44100 - Normalization1532 - Persistent ID2FFDBC041DC5A0F1 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hariharan_Ustad%20Zakir%20Hussain/1947/03%20Dheemi%20Dheemi%201.m4a - File Folder Count4 - Library Folder Count1 - - 4146 - - Track ID4146 - NameProgeny - ArtistHans Zimmer & Lisa Gerrard - ComposerHans Zimmer, Lisa Garrard - AlbumGladiator - GenreSoundtrack - KindAAC audio file - Size3261658 - Total Time133606 - Disc Number1 - Disc Count1 - Track Number1 - Track Count17 - Year2000 - Date Modified2006-07-31T04:08:36Z - Date Added2009-10-03T14:56:25Z - Bit Rate192 - Sample Rate44100 - Normalization102 - Artwork Count1 - Persistent ID81A83BF0527077D1 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hans%20Zimmer%20&%20Lisa%20Gerrard/Gladiator/01%20Progeny.m4a - File Folder Count4 - Library Folder Count1 - - 4148 - - Track ID4148 - NameThe Wheat - ArtistHans Zimmer & Lisa Gerrard - ComposerLisa Garrard - AlbumGladiator - GenreSoundtrack - KindAAC audio file - Size1572437 - Total Time63272 - Disc Number1 - Disc Count1 - Track Number2 - Track Count17 - Year2000 - Date Modified2006-07-31T04:08:36Z - Date Added2009-10-03T14:56:25Z - Bit Rate192 - Sample Rate44100 - Normalization211 - Artwork Count1 - Sort NameWheat - Persistent ID0FC165775D9ADD09 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hans%20Zimmer%20&%20Lisa%20Gerrard/Gladiator/02%20The%20Wheat.m4a - File Folder Count4 - Library Folder Count1 - - 4150 - - Track ID4150 - NameThe Battle - ArtistHans Zimmer & Lisa Gerrard - ComposerHans Zimmer - AlbumGladiator - GenreSoundtrack - KindAAC audio file - Size14602819 - Total Time602231 - Disc Number1 - Disc Count1 - Track Number3 - Track Count17 - Year2000 - Date Modified2006-07-31T04:08:36Z - Date Added2009-10-03T14:56:25Z - Bit Rate192 - Sample Rate44100 - Normalization1256 - Artwork Count1 - Sort NameBattle - Persistent ID3E448878E6B555D1 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hans%20Zimmer%20&%20Lisa%20Gerrard/Gladiator/03%20The%20Battle.m4a - File Folder Count4 - Library Folder Count1 - - 4152 - - Track ID4152 - NameEarth - ArtistHans Zimmer & Lisa Gerrard - ComposerHans Zimmer - AlbumGladiator - GenreSoundtrack - KindAAC audio file - Size4444874 - Total Time181880 - Disc Number1 - Disc Count1 - Track Number4 - Track Count17 - Year2000 - Date Modified2006-07-31T04:08:36Z - Date Added2009-10-03T14:56:25Z - Bit Rate192 - Sample Rate44100 - Normalization148 - Artwork Count1 - Persistent ID491F3264D717CBE8 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hans%20Zimmer%20&%20Lisa%20Gerrard/Gladiator/04%20Earth.m4a - File Folder Count4 - Library Folder Count1 - - 4154 - - Track ID4154 - NameSorrow - ArtistHans Zimmer & Lisa Gerrard - ComposerLisa Garrard, Klaus Badelt - AlbumGladiator - GenreSoundtrack - KindAAC audio file - Size2125710 - Total Time86307 - Disc Number1 - Disc Count1 - Track Number5 - Track Count17 - Year2000 - Date Modified2006-07-31T04:08:36Z - Date Added2009-10-03T14:56:25Z - Bit Rate192 - Sample Rate44100 - Normalization308 - Artwork Count1 - Persistent IDCE08068EFEED8867 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hans%20Zimmer%20&%20Lisa%20Gerrard/Gladiator/05%20Sorrow.m4a - File Folder Count4 - Library Folder Count1 - - 4156 - - Track ID4156 - NameTo Zucchabar - ArtistHans Zimmer & Lisa Gerrard - ComposerHans Zimmer, Djivan Gasparyan - AlbumGladiator - GenreSoundtrack - KindAAC audio file - Size4787017 - Total Time196114 - Disc Number1 - Disc Count1 - Track Number6 - Track Count17 - Year2000 - Date Modified2006-07-31T04:08:36Z - Date Added2009-10-03T14:56:25Z - Bit Rate192 - Sample Rate44100 - Normalization635 - Artwork Count1 - Persistent ID0E0BE6EDFC3B5F9A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hans%20Zimmer%20&%20Lisa%20Gerrard/Gladiator/06%20To%20Zucchabar.m4a - File Folder Count4 - Library Folder Count1 - - 4158 - - Track ID4158 - NamePatricide - ArtistHans Zimmer & Lisa Gerrard - ComposerHans Zimmer - AlbumGladiator - GenreSoundtrack - KindAAC audio file - Size6035008 - Total Time248080 - Disc Number1 - Disc Count1 - Track Number7 - Track Count17 - Year2000 - Date Modified2006-07-31T04:08:36Z - Date Added2009-10-03T14:56:25Z - Bit Rate192 - Sample Rate44100 - Normalization881 - Artwork Count1 - Persistent IDB57CF863927171EE - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hans%20Zimmer%20&%20Lisa%20Gerrard/Gladiator/07%20Patricide.m4a - File Folder Count4 - Library Folder Count1 - - 4160 - - Track ID4160 - NameThe Emperor Is Dead - ArtistHans Zimmer & Lisa Gerrard - ComposerHans Zimmer, Lisa Garrard - AlbumGladiator - GenreSoundtrack - KindAAC audio file - Size2014966 - Total Time81709 - Disc Number1 - Disc Count1 - Track Number8 - Track Count17 - Year2000 - Date Modified2006-07-31T04:08:36Z - Date Added2009-10-03T14:56:26Z - Bit Rate192 - Sample Rate44100 - Normalization55 - Artwork Count1 - Sort NameEmperor Is Dead - Persistent ID82C9BA5F711F1287 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hans%20Zimmer%20&%20Lisa%20Gerrard/Gladiator/08%20The%20Emperor%20Is%20Dead.m4a - File Folder Count4 - Library Folder Count1 - - 4162 - - Track ID4162 - NameThe Might Of Rome - ArtistHans Zimmer & Lisa Gerrard - ComposerHans Zimmer - AlbumGladiator - GenreSoundtrack - KindAAC audio file - Size7735057 - Total Time318437 - Disc Number1 - Disc Count1 - Track Number9 - Track Count17 - Year2000 - Date Modified2006-07-31T04:08:38Z - Date Added2009-10-03T14:56:26Z - Bit Rate192 - Sample Rate44100 - Normalization1256 - Artwork Count1 - Sort NameMight Of Rome - Persistent IDCB49716852476953 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hans%20Zimmer%20&%20Lisa%20Gerrard/Gladiator/09%20The%20Might%20Of%20Rome.m4a - File Folder Count4 - Library Folder Count1 - - 4164 - - Track ID4164 - NameStrength And Honor - ArtistHans Zimmer & Lisa Gerrard - ComposerHans Zimmer - AlbumGladiator - GenreSoundtrack - KindAAC audio file - Size3173050 - Total Time129914 - Disc Number1 - Disc Count1 - Track Number10 - Track Count17 - Year2000 - Date Modified2006-07-31T04:08:38Z - Date Added2009-10-03T14:56:26Z - Bit Rate192 - Sample Rate44100 - Normalization143 - Artwork Count1 - Persistent IDD13BE380B97FBD41 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hans%20Zimmer%20&%20Lisa%20Gerrard/Gladiator/10%20Strength%20And%20Honor.m4a - File Folder Count4 - Library Folder Count1 - - 4166 - - Track ID4166 - NameReunion - ArtistHans Zimmer & Lisa Gerrard - ComposerLisa Garrard, Klaus Badelt - AlbumGladiator - GenreSoundtrack - KindAAC audio file - Size1833465 - Total Time74139 - Disc Number1 - Disc Count1 - Track Number11 - Track Count17 - Year2000 - Date Modified2006-07-31T04:08:38Z - Date Added2009-10-03T14:56:26Z - Bit Rate192 - Sample Rate44100 - Normalization981 - Artwork Count1 - Persistent ID6249623CC86327D0 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hans%20Zimmer%20&%20Lisa%20Gerrard/Gladiator/11%20Reunion.m4a - File Folder Count4 - Library Folder Count1 - - 4168 - - Track ID4168 - NameSlaves To Rome - ArtistHans Zimmer & Lisa Gerrard - ComposerHans Zimmer - AlbumGladiator - GenreSoundtrack - KindAAC audio file - Size1505936 - Total Time60509 - Disc Number1 - Disc Count1 - Track Number12 - Track Count17 - Year2000 - Date Modified2006-07-31T04:08:38Z - Date Added2009-10-03T14:56:26Z - Bit Rate192 - Sample Rate44100 - Normalization1256 - Artwork Count1 - Persistent IDCBE94B07CCC29891 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hans%20Zimmer%20&%20Lisa%20Gerrard/Gladiator/12%20Slaves%20To%20Rome.m4a - File Folder Count4 - Library Folder Count1 - - 4170 - - Track ID4170 - NameBarbarian Horde - ArtistHans Zimmer & Lisa Gerrard - ComposerHans Zimmer - AlbumGladiator - GenreSoundtrack - KindAAC audio file - Size15350069 - Total Time633113 - Disc Number1 - Disc Count1 - Track Number13 - Track Count17 - Year2000 - Date Modified2006-07-31T04:08:38Z - Date Added2009-10-03T14:56:26Z - Bit Rate192 - Sample Rate44100 - Normalization1397 - Artwork Count1 - Persistent ID27F1188531D7ADDB - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hans%20Zimmer%20&%20Lisa%20Gerrard/Gladiator/13%20Barbarian%20Horde.m4a - File Folder Count4 - Library Folder Count1 - - 4172 - - Track ID4172 - NameAm I Not Merciful? - ArtistHans Zimmer & Lisa Gerrard - ComposerHans Zimmer - AlbumGladiator - GenreSoundtrack - KindAAC audio file - Size9550650 - Total Time393483 - Disc Number1 - Disc Count1 - Track Number14 - Track Count17 - Year2000 - Date Modified2006-07-31T04:08:38Z - Date Added2009-10-03T14:56:26Z - Bit Rate192 - Sample Rate44100 - Normalization1256 - Artwork Count1 - Persistent ID5252E001BBE8F9E0 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hans%20Zimmer%20&%20Lisa%20Gerrard/Gladiator/14%20Am%20I%20Not%20Merciful_.m4a - File Folder Count4 - Library Folder Count1 - - 4174 - - Track ID4174 - NameElysium - ArtistHans Zimmer & Lisa Gerrard - ComposerLisa Garrard, Klaus Badelt - AlbumGladiator - GenreSoundtrack - KindAAC audio file - Size3955236 - Total Time161493 - Disc Number1 - Disc Count1 - Track Number15 - Track Count17 - Year2000 - Date Modified2006-07-31T04:08:38Z - Date Added2009-10-03T14:56:27Z - Bit Rate192 - Sample Rate44100 - Normalization283 - Artwork Count1 - Persistent ID4E7DA64F4EB51F27 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hans%20Zimmer%20&%20Lisa%20Gerrard/Gladiator/15%20Elysium.m4a - File Folder Count4 - Library Folder Count1 - - 4176 - - Track ID4176 - NameHonor Him - ArtistHans Zimmer & Lisa Gerrard - ComposerHans Zimmer - AlbumGladiator - GenreSoundtrack - KindAAC audio file - Size1970475 - Total Time79851 - Disc Number1 - Disc Count1 - Track Number16 - Track Count17 - Year2000 - Date Modified2006-07-31T04:08:38Z - Date Added2009-10-03T14:56:27Z - Bit Rate192 - Sample Rate44100 - Normalization1166 - Artwork Count1 - Persistent ID2369D74DB9434184 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hans%20Zimmer%20&%20Lisa%20Gerrard/Gladiator/16%20Honor%20Him.m4a - File Folder Count4 - Library Folder Count1 - - 4178 - - Track ID4178 - NameNow We Are Free - ArtistHans Zimmer & Lisa Gerrard - ComposerHans Zimmer, Lisa Garrard, Klaus Badelt - AlbumGladiator - GenreSoundtrack - KindAAC audio file - Size6184174 - Total Time254303 - Disc Number1 - Disc Count1 - Track Number17 - Track Count17 - Year2000 - Date Modified2006-07-31T04:08:38Z - Date Added2009-10-03T14:56:27Z - Bit Rate192 - Sample Rate44100 - Normalization1256 - Artwork Count1 - Persistent ID5870B29B84C6D8B7 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hans%20Zimmer%20&%20Lisa%20Gerrard/Gladiator/17%20Now%20We%20Are%20Free.m4a - File Folder Count4 - Library Folder Count1 - - 4180 - - Track ID4180 - NameSymphony No. 6 in F Major, Op. 68, Pastoral/I. Allegro ma non troppo (Erwachen heiterer Emfindungen bei der Ankunft auf dem Lande) (Instrumental) - ArtistGlenn Gould - Album ArtistGlenn Gould - ComposerLudwig Van Beethoven (1770-1827) - AlbumBeethoven/Liszt: Symphony No.6 "Pastoral" (Piano Transcription) - GenreClassical - KindMPEG audio file - Size23106617 - Total Time741276 - Disc Number1 - Disc Count1 - Track Number1 - Track Count5 - Year1993 - Date Modified2009-06-19T13:15:30Z - Date Added2009-10-03T14:56:27Z - Bit Rate248 - Sample Rate44100 - CommentsAmazon.com Song ID: 204033914 - Play Count2 - Play Date3399998435 - Play Date UTC2011-09-27T14:30:35Z - Artwork Count1 - Persistent IDBDE1EE52D9C7D77B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Glenn%20Gould/Beethoven_Liszt_%20Symphony%20No.6%20_Pastoral_%20(Piano%20Transcription)/01%20Symphony%20No.%206%20in%20F%20Major,%20Op.%2068,%20Pastoral_I.%20Allegro%20ma%20non%20troppo%20(Erwachen%20heiterer%20Emfindungen%20bei%20der%20Ankunft%20auf%20dem%20Lande)%20(Instrumental).mp3 - File Folder Count4 - Library Folder Count1 - - 4182 - - Track ID4182 - NameSymphony No. 6 in F Major, Op. 68, Pastoral/II. Andante molto moto (Szene am Bach) (Instrumental) - ArtistGlenn Gould - Album ArtistGlenn Gould - ComposerLudwig Van Beethoven (1770-1827) - AlbumBeethoven/Liszt: Symphony No.6 "Pastoral" (Piano Transcription) - GenreClassical - KindMPEG audio file - Size38742988 - Total Time1251448 - Disc Number1 - Disc Count1 - Track Number2 - Track Count5 - Year1993 - Date Modified2009-06-19T13:23:36Z - Date Added2009-10-03T14:56:27Z - Bit Rate247 - Sample Rate44100 - CommentsAmazon.com Song ID: 204033910 - Play Count1 - Play Date3383636132 - Play Date UTC2011-03-22T05:25:32Z - Artwork Count1 - Persistent ID5565D217C8A5B514 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Glenn%20Gould/Beethoven_Liszt_%20Symphony%20No.6%20_Pastoral_%20(Piano%20Transcription)/02%20Symphony%20No.%206%20in%20F%20Major,%20Op.%2068,%20Pastoral_II.%20Andante%20molto%20moto%20(Szene%20am%20Bach)%20(Instrumental).mp3 - File Folder Count4 - Library Folder Count1 - - 4184 - - Track ID4184 - NameSymphony No. 6 in F Major, Op. 68, Pastoral/III. Allegro (Lustiges Zusammensein der Landleute) (Instrumental) - ArtistGlenn Gould - Album ArtistGlenn Gould - ComposerLudwig Van Beethoven (1770-1827) - AlbumBeethoven/Liszt: Symphony No.6 "Pastoral" (Piano Transcription) - GenreClassical - KindMPEG audio file - Size14116478 - Total Time451866 - Disc Number1 - Disc Count1 - Track Number3 - Track Count5 - Year1993 - Date Modified2009-06-19T13:27:50Z - Date Added2009-10-03T14:56:27Z - Bit Rate249 - Sample Rate44100 - CommentsAmazon.com Song ID: 204033912 - Artwork Count1 - Persistent ID6B75E4F750519EDE - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Glenn%20Gould/Beethoven_Liszt_%20Symphony%20No.6%20_Pastoral_%20(Piano%20Transcription)/03%20Symphony%20No.%206%20in%20F%20Major,%20Op.%2068,%20Pastoral_III.%20Allegro%20(Lustiges%20Zusammensein%20der%20Landleute)%20(Instrumental).mp3 - File Folder Count4 - Library Folder Count1 - - 4186 - - Track ID4186 - NameSymphony No. 6 in F Major, Op. 68, Pastoral/IV. Allegro (Gewitter, Sturm) (Instrumental) - ArtistGlenn Gould - Album ArtistGlenn Gould - ComposerLudwig Van Beethoven (1770-1827) - AlbumBeethoven/Liszt: Symphony No.6 "Pastoral" (Piano Transcription) - GenreClassical - KindMPEG audio file - Size7164733 - Total Time228414 - Disc Number1 - Disc Count1 - Track Number4 - Track Count5 - Year1993 - Date Modified2009-06-19T13:29:14Z - Date Added2009-10-03T14:56:27Z - Bit Rate249 - Sample Rate44100 - CommentsAmazon.com Song ID: 204033913 - Play Count1 - Play Date3400441765 - Play Date UTC2011-10-02T17:39:25Z - Artwork Count1 - Persistent IDAB1308DDB5B957FC - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Glenn%20Gould/Beethoven_Liszt_%20Symphony%20No.6%20_Pastoral_%20(Piano%20Transcription)/04%20Symphony%20No.%206%20in%20F%20Major,%20Op.%2068,%20Pastoral_IV.%20Allegro%20(Gewitter,%20Sturm)%20(Instrumental).mp3 - File Folder Count4 - Library Folder Count1 - - 4188 - - Track ID4188 - NameSymphony No. 6 in F Major, Op. 68, Pastoral/V. Allegretto (Hirtengesang: Frohe und dankbare Gefühle nach dem sturm) (Instrumental) - ArtistGlenn Gould - Album ArtistGlenn Gould - ComposerLudwig Van Beethoven (1770-1827) - AlbumBeethoven/Liszt: Symphony No.6 "Pastoral" (Piano Transcription) - GenreClassical - KindMPEG audio file - Size20061690 - Total Time644545 - Disc Number1 - Disc Count1 - Track Number5 - Track Count5 - Year1993 - Date Modified2009-06-19T13:33:13Z - Date Added2009-10-03T14:56:28Z - Bit Rate248 - Sample Rate44100 - CommentsAmazon.com Song ID: 204033911 - Artwork Count1 - Persistent ID7243F1061950C783 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Glenn%20Gould/Beethoven_Liszt_%20Symphony%20No.6%20_Pastoral_%20(Piano%20Transcription)/05%20Symphony%20No.%206%20in%20F%20Major,%20Op.%2068,%20Pastoral_V.%20Allegretto%20(Hirtengesang_%20Frohe%20und%20dankbare%20Gefu%CC%88hle%20nach%20dem%20sturm)%20(Instrumental).mp3 - File Folder Count4 - Library Folder Count1 - - 4190 - - Track ID4190 - NameLa Primavera in E major RV269 - Allegro - ArtistGiuliano Carmignola En Venice Baroque Orchestra - ComposerAntonio Vivaldi - AlbumAntonio Vivaldi: The Four Seasons and Violin Concertos - GenreClassical - KindAAC audio file - Size4871784 - Total Time200108 - Disc Number1 - Disc Count1 - Track Number1 - Track Count21 - Year1999 - Date Modified2006-07-30T16:17:18Z - Date Added2009-10-03T14:56:28Z - Bit Rate192 - Sample Rate44100 - Skip Count1 - Skip Date2014-01-05T13:48:09Z - Normalization575 - Artwork Count1 - Persistent ID71D4BC8F1F3FCFEB - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Giuliano%20Carmignola%20En%20Venice%20Baroque%20Orchestra/Antonio%20Vivaldi_%20The%20Four%20Seasons%20and%20Violin%20Concertos/01%20La%20Primavera%20in%20E%20major%20RV269%20-%20Allegro.m4a - File Folder Count4 - Library Folder Count1 - - 4192 - - Track ID4192 - NameLa Primavera in E major RV269 - Largo - ArtistGiuliano Carmignola En Venice Baroque Orchestra - ComposerAntonio Vivaldi - AlbumAntonio Vivaldi: The Four Seasons and Violin Concertos - GenreClassical - KindAAC audio file - Size3372718 - Total Time138250 - Disc Number1 - Disc Count1 - Track Number2 - Track Count21 - Year1999 - Date Modified2006-07-30T16:17:18Z - Date Added2009-10-03T14:56:28Z - Bit Rate192 - Sample Rate44100 - Normalization90 - Artwork Count1 - Persistent ID182FBC9B61A939D8 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Giuliano%20Carmignola%20En%20Venice%20Baroque%20Orchestra/Antonio%20Vivaldi_%20The%20Four%20Seasons%20and%20Violin%20Concertos/02%20La%20Primavera%20in%20E%20major%20RV269%20-%20Largo.m4a - File Folder Count4 - Library Folder Count1 - - 4194 - - Track ID4194 - NameLa Primavera in E major RV269 - Allegro - ArtistGiuliano Carmignola En Venice Baroque Orchestra - ComposerAntonio Vivaldi - AlbumAntonio Vivaldi: The Four Seasons and Violin Concertos - GenreClassical - KindAAC audio file - Size5360068 - Total Time220309 - Disc Number1 - Disc Count1 - Track Number3 - Track Count21 - Year1999 - Date Modified2006-07-30T16:17:18Z - Date Added2009-10-03T14:56:28Z - Bit Rate192 - Sample Rate44100 - Normalization341 - Artwork Count1 - Persistent ID16F3DACF538E8779 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Giuliano%20Carmignola%20En%20Venice%20Baroque%20Orchestra/Antonio%20Vivaldi_%20The%20Four%20Seasons%20and%20Violin%20Concertos/03%20La%20Primavera%20in%20E%20major%20RV269%20-%20Allegro.m4a - File Folder Count4 - Library Folder Count1 - - 4196 - - Track ID4196 - NameL'Estate in G minor RV 315 - Allegro non molto - ArtistGiuliano Carmignola En Venice Baroque Orchestra - ComposerAntonio Vivaldi - AlbumAntonio Vivaldi: The Four Seasons and Violin Concertos - GenreClassical - KindAAC audio file - Size7227044 - Total Time297794 - Disc Number1 - Disc Count1 - Track Number4 - Track Count21 - Year1999 - Date Modified2006-07-30T16:17:18Z - Date Added2009-10-03T14:56:28Z - Bit Rate192 - Sample Rate44100 - Skip Count1 - Skip Date2014-01-05T10:36:17Z - Normalization1078 - Artwork Count1 - Persistent IDED3F33FD5E18BAAE - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Giuliano%20Carmignola%20En%20Venice%20Baroque%20Orchestra/Antonio%20Vivaldi_%20The%20Four%20Seasons%20and%20Violin%20Concertos/04%20L'Estate%20in%20G%20minor%20RV%20315%20-%20Allegro%20non%20molto.m4a - File Folder Count4 - Library Folder Count1 - - 4198 - - Track ID4198 - NameL'Estate in G minor RV 315 - Adagio - ArtistGiuliano Carmignola En Venice Baroque Orchestra - ComposerAntonio Vivaldi - AlbumAntonio Vivaldi: The Four Seasons and Violin Concertos - GenreClassical - KindAAC audio file - Size3366949 - Total Time138017 - Disc Number1 - Disc Count1 - Track Number5 - Track Count21 - Year1999 - Date Modified2006-07-30T16:17:18Z - Date Added2009-10-03T14:56:28Z - Bit Rate192 - Sample Rate44100 - Normalization230 - Artwork Count1 - Persistent ID7848E78C0C46D39C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Giuliano%20Carmignola%20En%20Venice%20Baroque%20Orchestra/Antonio%20Vivaldi_%20The%20Four%20Seasons%20and%20Violin%20Concertos/05%20L'Estate%20in%20G%20minor%20RV%20315%20-%20Adagio.m4a - File Folder Count4 - Library Folder Count1 - - 4200 - - Track ID4200 - NameL'Estate in G minor RV 315 - Preston - ArtistGiuliano Carmignola En Venice Baroque Orchestra - ComposerAntonio Vivaldi - AlbumAntonio Vivaldi: The Four Seasons and Violin Concertos - GenreClassical - KindAAC audio file - Size3434629 - Total Time140804 - Disc Number1 - Disc Count1 - Track Number6 - Track Count21 - Year1999 - Date Modified2006-07-30T16:17:18Z - Date Added2009-10-03T14:56:29Z - Bit Rate192 - Sample Rate44100 - Normalization1188 - Artwork Count1 - Persistent IDB3DF47FD3B08A8D4 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Giuliano%20Carmignola%20En%20Venice%20Baroque%20Orchestra/Antonio%20Vivaldi_%20The%20Four%20Seasons%20and%20Violin%20Concertos/06%20L'Estate%20in%20G%20minor%20RV%20315%20-%20Preston.m4a - File Folder Count4 - Library Folder Count1 - - 4202 - - Track ID4202 - NameL'Autunno in F major RV 293 - Allegro - ArtistGiuliano Carmignola En Venice Baroque Orchestra - ComposerAntonio Vivaldi - AlbumAntonio Vivaldi: The Four Seasons and Violin Concertos - GenreClassical - KindAAC audio file - Size6660841 - Total Time274365 - Disc Number1 - Disc Count1 - Track Number7 - Track Count21 - Year1999 - Date Modified2006-07-30T16:17:18Z - Date Added2009-10-03T14:56:29Z - Bit Rate192 - Sample Rate44100 - Normalization629 - Artwork Count1 - Persistent IDAC7F6AF5E1CD015F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Giuliano%20Carmignola%20En%20Venice%20Baroque%20Orchestra/Antonio%20Vivaldi_%20The%20Four%20Seasons%20and%20Violin%20Concertos/07%20L'Autunno%20in%20F%20major%20RV%20293%20-%20Allegro.m4a - File Folder Count4 - Library Folder Count1 - - 4204 - - Track ID4204 - NameL'Autunno in F major RV 293 - Adagio molto - ArtistGiuliano Carmignola En Venice Baroque Orchestra - ComposerAntonio Vivaldi - AlbumAntonio Vivaldi: The Four Seasons and Violin Concertos - GenreClassical - KindAAC audio file - Size4912309 - Total Time201687 - Disc Number1 - Disc Count1 - Track Number8 - Track Count21 - Year1999 - Date Modified2006-07-30T16:17:20Z - Date Added2009-10-03T14:56:29Z - Bit Rate192 - Sample Rate44100 - Normalization37 - Artwork Count1 - Persistent ID18D9042F58F9F742 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Giuliano%20Carmignola%20En%20Venice%20Baroque%20Orchestra/Antonio%20Vivaldi_%20The%20Four%20Seasons%20and%20Violin%20Concertos/08%20L'Autunno%20in%20F%20major%20RV%20293%20-%20Adagio%20molto.m4a - File Folder Count4 - Library Folder Count1 - - 4206 - - Track ID4206 - NameL'Autunno in F major RV 293 - Allegro - ArtistGiuliano Carmignola En Venice Baroque Orchestra - ComposerAntonio Vivaldi - AlbumAntonio Vivaldi: The Four Seasons and Violin Concertos - GenreClassical - KindAAC audio file - Size4226490 - Total Time173776 - Disc Number1 - Disc Count1 - Track Number9 - Track Count21 - Year1999 - Date Modified2006-07-30T16:17:20Z - Date Added2009-10-03T14:56:29Z - Bit Rate192 - Sample Rate44100 - Normalization646 - Artwork Count1 - Persistent ID3950462ADFFDD65D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Giuliano%20Carmignola%20En%20Venice%20Baroque%20Orchestra/Antonio%20Vivaldi_%20The%20Four%20Seasons%20and%20Violin%20Concertos/09%20L'Autunno%20in%20F%20major%20RV%20293%20-%20Allegro.m4a - File Folder Count4 - Library Folder Count1 - - 4208 - - Track ID4208 - NameL'Inverno in F minor RV 297 - Allegro non molto - ArtistGiuliano Carmignola En Venice Baroque Orchestra - ComposerAntonio Vivaldi - AlbumAntonio Vivaldi: The Four Seasons and Violin Concertos - GenreClassical - KindAAC audio file - Size4512983 - Total Time185038 - Disc Number1 - Disc Count1 - Track Number10 - Track Count21 - Year1999 - Date Modified2006-07-30T16:17:20Z - Date Added2009-10-03T14:56:29Z - Bit Rate192 - Sample Rate44100 - Normalization653 - Artwork Count1 - Persistent ID4671AE3E05D64C8C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Giuliano%20Carmignola%20En%20Venice%20Baroque%20Orchestra/Antonio%20Vivaldi_%20The%20Four%20Seasons%20and%20Violin%20Concertos/10%20L'Inverno%20in%20F%20minor%20RV%20297%20-%20Allegro%20non%20molto.m4a - File Folder Count4 - Library Folder Count1 - - 4210 - - Track ID4210 - NameL'Inverno in F minor RV 297 - Largo - ArtistGiuliano Carmignola En Venice Baroque Orchestra - ComposerAntonio Vivaldi - AlbumAntonio Vivaldi: The Four Seasons and Violin Concertos - GenreClassical - KindAAC audio file - Size2635832 - Total Time107553 - Disc Number1 - Disc Count1 - Track Number11 - Track Count21 - Year1999 - Date Modified2006-07-30T16:17:20Z - Date Added2009-10-03T14:56:29Z - Bit Rate192 - Sample Rate44100 - Normalization104 - Artwork Count1 - Persistent ID60A71BE835AACF2F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Giuliano%20Carmignola%20En%20Venice%20Baroque%20Orchestra/Antonio%20Vivaldi_%20The%20Four%20Seasons%20and%20Violin%20Concertos/11%20L'Inverno%20in%20F%20minor%20RV%20297%20-%20Largo.m4a - File Folder Count4 - Library Folder Count1 - - 4212 - - Track ID4212 - NameL'Inverno in F minor RV 297 - Allegro - ArtistGiuliano Carmignola En Venice Baroque Orchestra - ComposerAntonio Vivaldi - AlbumAntonio Vivaldi: The Four Seasons and Violin Concertos - GenreClassical - KindAAC audio file - Size4074661 - Total Time167460 - Disc Number1 - Disc Count1 - Track Number12 - Track Count21 - Year1999 - Date Modified2006-07-30T16:17:20Z - Date Added2009-10-03T14:56:29Z - Bit Rate192 - Sample Rate44100 - Normalization612 - Artwork Count1 - Persistent IDBCC9DAB198ADF8C4 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Giuliano%20Carmignola%20En%20Venice%20Baroque%20Orchestra/Antonio%20Vivaldi_%20The%20Four%20Seasons%20and%20Violin%20Concertos/12%20L'Inverno%20in%20F%20minor%20RV%20297%20-%20Allegro.m4a - File Folder Count4 - Library Folder Count1 - - 4214 - - Track ID4214 - NameConcerto In E flat major RV257 - Andante Molto E Quasi Allegro - ArtistGiuliano Carmignola En Venice Baroque Orchestra - ComposerAntonio Vivaldi - AlbumAntonio Vivaldi: The Four Seasons and Violin Concertos - GenreClassical - KindAAC audio file - Size6460195 - Total Time266076 - Disc Number1 - Disc Count1 - Track Number13 - Track Count21 - Year1999 - Date Modified2006-07-30T16:17:20Z - Date Added2009-10-03T14:56:29Z - Bit Rate192 - Sample Rate44100 - Normalization688 - Artwork Count1 - Persistent ID3611FA458B23E6EF - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Giuliano%20Carmignola%20En%20Venice%20Baroque%20Orchestra/Antonio%20Vivaldi_%20The%20Four%20Seasons%20and%20Violin%20Concertos/13%20Concerto%20In%20E%20flat%20major%20RV257%20-%20Andante%20Molto%20E%20Quasi%20Allegro.m4a - File Folder Count4 - Library Folder Count1 - - 4216 - - Track ID4216 - NameConcerto In E flat major RV257 - Adagio - ArtistGiuliano Carmignola En Venice Baroque Orchestra - ComposerAntonio Vivaldi - AlbumAntonio Vivaldi: The Four Seasons and Violin Concertos - GenreClassical - KindAAC audio file - Size3722828 - Total Time152809 - Disc Number1 - Disc Count1 - Track Number14 - Track Count21 - Year1999 - Date Modified2006-07-30T16:17:20Z - Date Added2009-10-03T14:56:30Z - Bit Rate192 - Sample Rate44100 - Normalization99 - Artwork Count1 - Persistent IDF692B508AB80E88C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Giuliano%20Carmignola%20En%20Venice%20Baroque%20Orchestra/Antonio%20Vivaldi_%20The%20Four%20Seasons%20and%20Violin%20Concertos/14%20Concerto%20In%20E%20flat%20major%20RV257%20-%20Adagio.m4a - File Folder Count4 - Library Folder Count1 - - 4218 - - Track ID4218 - NameConcerto In E flat major RV257 - Allegro - ArtistGiuliano Carmignola En Venice Baroque Orchestra - ComposerAntonio Vivaldi - AlbumAntonio Vivaldi: The Four Seasons and Violin Concertos - GenreClassical - KindAAC audio file - Size4505861 - Total Time184736 - Disc Number1 - Disc Count1 - Track Number15 - Track Count21 - Year1999 - Date Modified2006-07-30T16:17:20Z - Date Added2009-10-03T14:56:30Z - Bit Rate192 - Sample Rate44100 - Normalization564 - Artwork Count1 - Persistent ID8AB121E0DE0BE045 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Giuliano%20Carmignola%20En%20Venice%20Baroque%20Orchestra/Antonio%20Vivaldi_%20The%20Four%20Seasons%20and%20Violin%20Concertos/15%20Concerto%20In%20E%20flat%20major%20RV257%20-%20Allegro.m4a - File Folder Count4 - Library Folder Count1 - - 4220 - - Track ID4220 - NameConcerto In B flat major RV376 - Larghetto, Andante - ArtistGiuliano Carmignola En Venice Baroque Orchestra - ComposerAntonio Vivaldi - AlbumAntonio Vivaldi: The Four Seasons and Violin Concertos - GenreClassical - KindAAC audio file - Size6459852 - Total Time266076 - Disc Number1 - Disc Count1 - Track Number16 - Track Count21 - Year1999 - Date Modified2006-07-30T16:17:20Z - Date Added2009-10-03T14:56:30Z - Bit Rate192 - Sample Rate44100 - Normalization932 - Artwork Count1 - Persistent ID127D23F427E34F9C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Giuliano%20Carmignola%20En%20Venice%20Baroque%20Orchestra/Antonio%20Vivaldi_%20The%20Four%20Seasons%20and%20Violin%20Concertos/16%20Concerto%20In%20B%20flat%20major%20RV376%20-%20Larghetto,%20Andante.m4a - File Folder Count4 - Library Folder Count1 - - 4222 - - Track ID4222 - NameConcerto In B flat major RV376 - Andante - ArtistGiuliano Carmignola En Venice Baroque Orchestra - ComposerAntonio Vivaldi - AlbumAntonio Vivaldi: The Four Seasons and Violin Concertos - GenreClassical - KindAAC audio file - Size3529516 - Total Time144774 - Disc Number1 - Disc Count1 - Track Number17 - Track Count21 - Year1999 - Date Modified2006-07-30T16:17:20Z - Date Added2009-10-03T14:56:30Z - Bit Rate192 - Sample Rate44100 - Normalization195 - Artwork Count1 - Persistent IDD934C8A0DEDF7795 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Giuliano%20Carmignola%20En%20Venice%20Baroque%20Orchestra/Antonio%20Vivaldi_%20The%20Four%20Seasons%20and%20Violin%20Concertos/17%20Concerto%20In%20B%20flat%20major%20RV376%20-%20Andante.m4a - File Folder Count4 - Library Folder Count1 - - 4224 - - Track ID4224 - NameConcerto In B flat major RV376 -Allegro - ArtistGiuliano Carmignola En Venice Baroque Orchestra - ComposerAntonio Vivaldi - AlbumAntonio Vivaldi: The Four Seasons and Violin Concertos - GenreClassical - KindAAC audio file - Size4417157 - Total Time181044 - Disc Number1 - Disc Count1 - Track Number18 - Track Count21 - Year1999 - Date Modified2006-07-30T16:17:20Z - Date Added2009-10-03T14:56:30Z - Bit Rate192 - Sample Rate44100 - Normalization508 - Artwork Count1 - Persistent ID886515071B771100 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Giuliano%20Carmignola%20En%20Venice%20Baroque%20Orchestra/Antonio%20Vivaldi_%20The%20Four%20Seasons%20and%20Violin%20Concertos/18%20Concerto%20In%20B%20flat%20major%20RV376%20-Allegro.m4a - File Folder Count4 - Library Folder Count1 - - 4226 - - Track ID4226 - NameConcerto In D major RV 211 - Allegro non molto - ArtistGiuliano Carmignola En Venice Baroque Orchestra - ComposerAntonio Vivaldi - AlbumAntonio Vivaldi: The Four Seasons and Violin Concertos - GenreClassical - KindAAC audio file - Size7657024 - Total Time315534 - Disc Number1 - Disc Count1 - Track Number19 - Track Count21 - Year1999 - Date Modified2006-07-30T16:17:20Z - Date Added2009-10-03T14:56:30Z - Bit Rate192 - Sample Rate44100 - Normalization616 - Artwork Count1 - Persistent ID465376DF795248A8 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Giuliano%20Carmignola%20En%20Venice%20Baroque%20Orchestra/Antonio%20Vivaldi_%20The%20Four%20Seasons%20and%20Violin%20Concertos/19%20Concerto%20In%20D%20major%20RV%20211%20-%20Allegro%20non%20molto.m4a - File Folder Count4 - Library Folder Count1 - - 4228 - - Track ID4228 - NameConcerto In D major RV 211 - Larghetto - ArtistGiuliano Carmignola En Venice Baroque Orchestra - ComposerAntonio Vivaldi - AlbumAntonio Vivaldi: The Four Seasons and Violin Concertos - GenreClassical - KindAAC audio file - Size4931725 - Total Time202476 - Disc Number1 - Disc Count1 - Track Number20 - Track Count21 - Year1999 - Date Modified2006-07-30T16:17:20Z - Date Added2009-10-03T14:56:30Z - Bit Rate192 - Sample Rate44100 - Normalization78 - Artwork Count1 - Persistent ID95E67E4A2F0F0F79 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Giuliano%20Carmignola%20En%20Venice%20Baroque%20Orchestra/Antonio%20Vivaldi_%20The%20Four%20Seasons%20and%20Violin%20Concertos/20%20Concerto%20In%20D%20major%20RV%20211%20-%20Larghetto.m4a - File Folder Count4 - Library Folder Count1 - - 4230 - - Track ID4230 - NameConcerto In D major RV 211 - Allegro - ArtistGiuliano Carmignola En Venice Baroque Orchestra - ComposerAntonio Vivaldi - AlbumAntonio Vivaldi: The Four Seasons and Violin Concertos - GenreClassical - KindAAC audio file - Size7999337 - Total Time329814 - Disc Number1 - Disc Count1 - Track Number21 - Track Count21 - Year1999 - Date Modified2006-07-30T16:17:22Z - Date Added2009-10-03T14:56:30Z - Bit Rate192 - Sample Rate44100 - Normalization786 - Artwork Count1 - Persistent ID3A8527B980877FCD - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Giuliano%20Carmignola%20En%20Venice%20Baroque%20Orchestra/Antonio%20Vivaldi_%20The%20Four%20Seasons%20and%20Violin%20Concertos/21%20Concerto%20In%20D%20major%20RV%20211%20-%20Allegro.m4a - File Folder Count4 - Library Folder Count1 - - 4232 - - Track ID4232 - NameArrival O T Queen O Sheba - ArtistGeorge Frideric Handel - ComposerGeorge Frederick Handel (1685-1759) - AlbumGreatest Hits - GenreClassical - KindAAC audio file - Size4559441 - Total Time187639 - Track Number1 - Track Count22 - Date Modified2006-07-30T12:55:14Z - Date Added2009-10-03T14:56:31Z - Bit Rate192 - Sample Rate44100 - Rating60 - Rating Computed - Album Rating60 - Normalization383 - Artwork Count1 - Persistent IDFF8E9A784EB2ECB2 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Frideric%20Handel/Greatest%20Hits/01%20Arrival%20O%20T%20Queen%20O%20Sheba.m4a - File Folder Count4 - Library Folder Count1 - - 4234 - - Track ID4234 - NameWater Music SuN1_Allegro_Andante_Allegro da capo - ArtistGeorge Frideric Handel - ComposerGeorge Frederick Handel (1685-1759) - AlbumGreatest Hits - GenreClassical - KindAAC audio file - Size11070748 - Total Time457083 - Track Number2 - Track Count22 - Date Modified2006-07-30T12:55:14Z - Date Added2009-10-03T14:56:31Z - Bit Rate192 - Sample Rate44100 - Rating60 - Rating Computed - Album Rating60 - Normalization936 - Artwork Count1 - Persistent IDBB3D67E74BBB276C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Frideric%20Handel/Greatest%20Hits/02%20Water%20Music%20SuN1_Allegro_Andante_Allegro%20da%20capo.m4a - File Folder Count4 - Library Folder Count1 - - 4236 - - Track ID4236 - NameWater Music SuN1_Air - ArtistGeorge Frideric Handel - ComposerGeorge Frederick Handel (1685-1759) - AlbumGreatest Hits - GenreClassical - KindAAC audio file - Size3854424 - Total Time158288 - Track Number3 - Track Count22 - Date Modified2006-07-30T12:55:14Z - Date Added2009-10-03T14:56:31Z - Bit Rate192 - Sample Rate44100 - Rating60 - Rating Computed - Album Rating60 - Normalization66 - Artwork Count1 - Persistent ID8A99DE362807DF2F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Frideric%20Handel/Greatest%20Hits/03%20Water%20Music%20SuN1_Air.m4a - File Folder Count4 - Library Folder Count1 - - 4238 - - Track ID4238 - NameWater Music SuN1_Minuet - ArtistGeorge Frideric Handel - ComposerGeorge Frederick Handel (1685-1759) - AlbumGreatest Hits - GenreClassical - KindAAC audio file - Size5633160 - Total Time232337 - Track Number4 - Track Count22 - Date Modified2006-07-30T12:55:14Z - Date Added2009-10-03T14:56:31Z - Bit Rate192 - Sample Rate44100 - Rating60 - Rating Computed - Album Rating60 - Normalization450 - Artwork Count1 - Persistent IDE6C92D407E6AEFDD - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Frideric%20Handel/Greatest%20Hits/04%20Water%20Music%20SuN1_Minuet.m4a - File Folder Count4 - Library Folder Count1 - - 4240 - - Track ID4240 - NameWater Music SuN1_Bourree - ArtistGeorge Frideric Handel - ComposerGeorge Frederick Handel (1685-1759) - AlbumGreatest Hits - GenreClassical - KindAAC audio file - Size1665531 - Total Time67150 - Track Number5 - Track Count22 - Date Modified2006-07-30T12:55:14Z - Date Added2009-10-03T14:56:31Z - Bit Rate192 - Sample Rate44100 - Rating60 - Rating Computed - Album Rating60 - Normalization130 - Artwork Count1 - Persistent ID28AABC0896142A3D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Frideric%20Handel/Greatest%20Hits/05%20Water%20Music%20SuN1_Bourree.m4a - File Folder Count4 - Library Folder Count1 - - 4242 - - Track ID4242 - NameWater Music SuN1_Hornpipe - ArtistGeorge Frideric Handel - ComposerGeorge Frederick Handel (1685-1759) - AlbumGreatest Hits - GenreClassical - KindAAC audio file - Size2327915 - Total Time94735 - Track Number6 - Track Count22 - Date Modified2006-07-30T12:55:14Z - Date Added2009-10-03T14:56:31Z - Bit Rate192 - Sample Rate44100 - Rating60 - Rating Computed - Album Rating60 - Normalization580 - Artwork Count1 - Persistent ID331F96F72D32336F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Frideric%20Handel/Greatest%20Hits/06%20Water%20Music%20SuN1_Hornpipe.m4a - File Folder Count4 - Library Folder Count1 - - 4244 - - Track ID4244 - NameLargo Fr "Xerxes" - ArtistGeorge Frideric Handel - ComposerGeorge Frederick Handel (1685-1759) - AlbumGreatest Hits - GenreClassical - KindAAC audio file - Size8575893 - Total Time353986 - Track Number7 - Track Count22 - Date Modified2006-07-30T12:55:14Z - Date Added2009-10-03T14:56:31Z - Bit Rate192 - Sample Rate44100 - Rating60 - Rating Computed - Album Rating60 - Normalization585 - Artwork Count1 - Persistent IDA49317089ED94651 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Frideric%20Handel/Greatest%20Hits/07%20Largo%20Fr%20_Xerxes_.m4a - File Folder Count4 - Library Folder Count1 - - 4246 - - Track ID4246 - NameMusic F T Royal Fireworks_Ov - ArtistGeorge Frideric Handel - ComposerGeorge Frederick Handel (1685-1759) - AlbumGreatest Hits - GenreClassical - KindAAC audio file - Size12427207 - Total Time513136 - Track Number8 - Track Count22 - Date Modified2006-07-30T12:55:16Z - Date Added2009-10-03T14:56:31Z - Bit Rate192 - Sample Rate44100 - Rating60 - Rating Computed - Album Rating60 - Normalization1461 - Artwork Count1 - Persistent ID130F6DEF45B155D2 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Frideric%20Handel/Greatest%20Hits/08%20Music%20F%20T%20Royal%20Fireworks_Ov.m4a - File Folder Count4 - Library Folder Count1 - - 4248 - - Track ID4248 - NameMusic F T Royal Fireworks_La rejouissance, Allegro - ArtistGeorge Frideric Handel - ComposerGeorge Frederick Handel (1685-1759) - AlbumGreatest Hits - GenreClassical - KindAAC audio file - Size3076440 - Total Time125897 - Track Number9 - Track Count22 - Date Modified2006-07-30T12:55:16Z - Date Added2009-10-03T14:56:32Z - Bit Rate192 - Sample Rate44100 - Rating60 - Rating Computed - Album Rating60 - Normalization1579 - Artwork Count1 - Persistent IDBA04BD3BB9D30216 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Frideric%20Handel/Greatest%20Hits/09%20Music%20F%20T%20Royal%20Fireworks_La%20rejouissance,%20Allegro.m4a - File Folder Count4 - Library Folder Count1 - - 4250 - - Track ID4250 - NameT Harmonious Blacksmith - ArtistGeorge Frideric Handel - ComposerGeorge Frederick Handel (1685-1759) - AlbumGreatest Hits - GenreClassical - KindAAC audio file - Size6314530 - Total Time260526 - Track Number10 - Track Count22 - Date Modified2006-07-30T12:55:16Z - Date Added2009-10-03T14:56:32Z - Bit Rate192 - Sample Rate44100 - Rating60 - Rating Computed - Album Rating60 - Normalization74 - Artwork Count1 - Persistent IDDCE22A5F5EB897C8 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Frideric%20Handel/Greatest%20Hits/10%20T%20Harmonious%20Blacksmith.m4a - File Folder Count4 - Library Folder Count1 - - 4252 - - Track ID4252 - NameLet T Bright Seraphim Fr Samson - ArtistGeorge Frideric Handel - ComposerGeorge Frederick Handel (1685-1759) - AlbumGreatest Hits - GenreClassical - KindAAC audio file - Size8419221 - Total Time347508 - Track Number11 - Track Count22 - Date Modified2006-07-30T12:55:16Z - Date Added2009-10-03T14:56:32Z - Bit Rate192 - Sample Rate44100 - Rating60 - Rating Computed - Album Rating60 - Normalization1141 - Artwork Count1 - Persistent ID78F1A149CAF9395E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Frideric%20Handel/Greatest%20Hits/11%20Let%20T%20Bright%20Seraphim%20Fr%20Samson.m4a - File Folder Count4 - Library Folder Count1 - - 4254 - - Track ID4254 - NameSuN11 F Harpsichord_Sarabande - ArtistGeorge Frideric Handel - ComposerGeorge Frederick Handel (1685-1759) - AlbumGreatest Hits - GenreClassical - KindAAC audio file - Size4364185 - Total Time179512 - Track Number12 - Track Count22 - Date Modified2006-07-30T12:55:16Z - Date Added2009-10-03T14:56:32Z - Bit Rate192 - Sample Rate44100 - Rating60 - Rating Computed - Album Rating60 - Normalization287 - Artwork Count1 - Persistent ID0BC07A80AA7DDD3A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Frideric%20Handel/Greatest%20Hits/12%20SuN11%20F%20Harpsichord_Sarabande.m4a - File Folder Count4 - Library Folder Count1 - - 4256 - - Track ID4256 - NameWater Music SuN2_WO tempo indication - ArtistGeorge Frideric Handel - ComposerGeorge Frederick Handel (1685-1759) - AlbumGreatest Hits - GenreClassical - KindAAC audio file - Size2829967 - Total Time115633 - Track Number13 - Track Count22 - Date Modified2006-07-30T12:55:16Z - Date Added2009-10-03T14:56:32Z - Bit Rate192 - Sample Rate44100 - Rating60 - Rating Computed - Album Rating60 - Normalization601 - Artwork Count1 - Persistent IDF8A39E63146501AB - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Frideric%20Handel/Greatest%20Hits/13%20Water%20Music%20SuN2_WO%20tempo%20indication.m4a - File Folder Count4 - Library Folder Count1 - - 4258 - - Track ID4258 - NameWater Music SuN2_Alla Hornpipe - ArtistGeorge Frideric Handel - ComposerGeorge Frederick Handel (1685-1759) - AlbumGreatest Hits - GenreClassical - KindAAC audio file - Size5677534 - Total Time234195 - Track Number14 - Track Count22 - Date Modified2006-07-30T12:55:16Z - Date Added2009-10-03T14:56:32Z - Bit Rate192 - Sample Rate44100 - Rating60 - Rating Computed - Album Rating60 - Normalization914 - Artwork Count1 - Persistent ID59BA63369DBF1690 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Frideric%20Handel/Greatest%20Hits/14%20Water%20Music%20SuN2_Alla%20Hornpipe.m4a - File Folder Count4 - Library Folder Count1 - - 4260 - - Track ID4260 - NameWater Music Suite #2: Minuet - ArtistGeorge Frideric Handel - ComposerGeorge Frederick Handel (1685-1759) - AlbumGreatest Hits - GenreClassical - KindAAC audio file - Size1852885 - Total Time74952 - Track Number15 - Track Count22 - Date Modified2006-07-30T12:55:16Z - Date Added2009-10-03T14:56:32Z - Bit Rate192 - Sample Rate44100 - Rating60 - Rating Computed - Album Rating60 - Normalization738 - Artwork Count1 - Persistent IDFFBAC6B786127B6B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Frideric%20Handel/Greatest%20Hits/15%20Water%20Music%20Suite%20%232_%20Minuet.m4a - File Folder Count4 - Library Folder Count1 - - 4262 - - Track ID4262 - NameWater Music Suite #2: Lentement - ArtistGeorge Frideric Handel - ComposerGeorge Frederick Handel (1685-1759) - AlbumGreatest Hits - GenreClassical - KindAAC audio file - Size2920492 - Total Time119418 - Track Number16 - Track Count22 - Date Modified2006-07-30T12:55:16Z - Date Added2009-10-03T14:56:32Z - Bit Rate192 - Sample Rate44100 - Rating60 - Rating Computed - Album Rating60 - Normalization544 - Artwork Count1 - Persistent ID3F44A1B34A751FD3 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Frideric%20Handel/Greatest%20Hits/16%20Water%20Music%20Suite%20%232_%20Lentement.m4a - File Folder Count4 - Library Folder Count1 - - 4264 - - Track ID4264 - NameWater Music Suite #2: Bourree - ArtistGeorge Frideric Handel - ComposerGeorge Frederick Handel (1685-1759) - AlbumGreatest Hits - GenreClassical - KindAAC audio file - Size1562780 - Total Time62878 - Track Number17 - Track Count22 - Date Modified2006-07-30T12:55:16Z - Date Added2009-10-03T14:56:33Z - Bit Rate192 - Sample Rate44100 - Rating60 - Rating Computed - Album Rating60 - Normalization891 - Artwork Count1 - Persistent ID5E4C28A0CC4A176A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Frideric%20Handel/Greatest%20Hits/17%20Water%20Music%20Suite%20%232_%20Bourree.m4a - File Folder Count4 - Library Folder Count1 - - 4266 - - Track ID4266 - NameMinuet from "Berenice" - ArtistGeorge Frideric Handel - ComposerGeorge Frederick Handel (1685-1759) - AlbumGreatest Hits - GenreClassical - KindAAC audio file - Size3955758 - Total Time162515 - Track Number18 - Track Count22 - Date Modified2006-07-30T12:55:16Z - Date Added2009-10-03T14:56:33Z - Bit Rate192 - Sample Rate44100 - Rating60 - Rating Computed - Album Rating60 - Normalization104 - Artwork Count1 - Persistent ID4A970E7C5715A574 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Frideric%20Handel/Greatest%20Hits/18%20Minuet%20from%20_Berenice_.m4a - File Folder Count4 - Library Folder Count1 - - 4268 - - Track ID4268 - NameThe Cuckoo and the Nightingale - ArtistGeorge Frideric Handel - ComposerGeorge Frederick Handel (1685-1759) - AlbumGreatest Hits - GenreClassical - KindAAC audio file - Size5623252 - Total Time231942 - Track Number19 - Track Count22 - Date Modified2006-07-30T12:55:16Z - Date Added2009-10-03T14:56:33Z - Bit Rate192 - Sample Rate44100 - Rating60 - Rating Computed - Album Rating60 - Normalization399 - Artwork Count1 - Sort NameCuckoo and the Nightingale - Persistent ID9076CA66B52D1E76 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Frideric%20Handel/Greatest%20Hits/19%20The%20Cuckoo%20and%20the%20Nightingale.m4a - File Folder Count4 - Library Folder Count1 - - 4270 - - Track ID4270 - NameSee, The Conquering Hero Come - ArtistGeorge Frideric Handel - ComposerGeorge Frederick Handel (1685-1759) - AlbumGreatest Hits - GenreClassical - KindAAC audio file - Size5615103 - Total Time231594 - Track Number20 - Track Count22 - Date Modified2006-07-30T12:55:16Z - Date Added2009-10-03T14:56:33Z - Bit Rate192 - Sample Rate44100 - Rating60 - Rating Computed - Album Rating60 - Normalization492 - Artwork Count1 - Persistent ID35988583E1443A6D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Frideric%20Handel/Greatest%20Hits/20%20See,%20The%20Conquering%20Hero%20Come.m4a - File Folder Count4 - Library Folder Count1 - - 4272 - - Track ID4272 - NameEternal Source of Light Divine - ArtistGeorge Frideric Handel - ComposerGeorge Frederick Handel (1685-1759) - AlbumGreatest Hits - GenreClassical - KindAAC audio file - Size3547127 - Total Time145494 - Track Number21 - Track Count22 - Date Modified2006-07-30T12:55:16Z - Date Added2009-10-03T14:56:33Z - Bit Rate192 - Sample Rate44100 - Rating60 - Rating Computed - Album Rating60 - Normalization1252 - Artwork Count1 - Persistent IDC9B9F4E4D5E3912B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Frideric%20Handel/Greatest%20Hits/21%20Eternal%20Source%20of%20Light%20Divine.m4a - File Folder Count4 - Library Folder Count1 - - 4274 - - Track ID4274 - NameHallelujah Chorus - ArtistGeorge Frideric Handel - ComposerGeorge Frederick Handel (1685-1759) - AlbumGreatest Hits - GenreClassical - KindAAC audio file - Size5772900 - Total Time238188 - Track Number22 - Track Count22 - Date Modified2006-07-30T12:55:16Z - Date Added2009-10-03T14:56:33Z - Bit Rate192 - Sample Rate44100 - Rating60 - Rating Computed - Album Rating60 - Normalization1644 - Artwork Count1 - Persistent ID69C282532D62283F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Frideric%20Handel/Greatest%20Hits/22%20Hallelujah%20Chorus.m4a - File Folder Count4 - Library Folder Count1 - - 4276 - - Track ID4276 - NameThe Esio Trot - ArtistGeorge Brooks - AlbumNight Spinner - GenreJazz - KindAAC audio file - Size10514925 - Total Time433770 - Track Number1 - Track Count10 - Date Modified2006-07-29T04:36:06Z - Date Added2009-10-03T14:56:37Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Sort NameEsio Trot - Persistent ID7685DCB23B82A22A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Brooks/Night%20Spinner/01%20The%20Esio%20Trot.m4a - File Folder Count4 - Library Folder Count1 - - 4278 - - Track ID4278 - NameWater Dance - ArtistGeorge Brooks - AlbumNight Spinner - GenreJazz - KindAAC audio file - Size10159717 - Total Time419095 - Track Number2 - Track Count10 - Date Modified2006-07-29T04:36:06Z - Date Added2009-10-03T14:56:37Z - Bit Rate192 - Sample Rate44100 - Normalization1243 - Artwork Count1 - Persistent ID4CC983DB8EE26174 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Brooks/Night%20Spinner/02%20Water%20Dance.m4a - File Folder Count4 - Library Folder Count1 - - 4280 - - Track ID4280 - NameHymn - ArtistGeorge Brooks - AlbumNight Spinner - GenreJazz - KindAAC audio file - Size3892899 - Total Time159891 - Track Number3 - Track Count10 - Date Modified2006-07-29T04:36:08Z - Date Added2009-10-03T14:56:37Z - Bit Rate192 - Sample Rate44100 - Normalization1383 - Artwork Count1 - Persistent ID02D7DDD50DADFF60 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Brooks/Night%20Spinner/03%20Hymn.m4a - File Folder Count4 - Library Folder Count1 - - 4282 - - Track ID4282 - NameNight Spinner - ArtistGeorge Brooks - AlbumNight Spinner - GenreJazz - KindAAC audio file - Size7209204 - Total Time297167 - Track Number4 - Track Count10 - Date Modified2006-07-29T04:36:08Z - Date Added2009-10-03T14:56:37Z - Bit Rate192 - Sample Rate44100 - Normalization1249 - Artwork Count1 - Persistent IDC37FEE66D7CA29CA - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Brooks/Night%20Spinner/04%20Night%20Spinner.m4a - File Folder Count4 - Library Folder Count1 - - 4284 - - Track ID4284 - NameIn The Grotto - ArtistGeorge Brooks - AlbumNight Spinner - GenreJazz - KindAAC audio file - Size14034114 - Total Time582656 - Track Number5 - Track Count10 - Date Modified2006-07-29T04:36:08Z - Date Added2009-10-03T14:56:37Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Persistent ID2D5BD74BA272B2BE - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Brooks/Night%20Spinner/05%20In%20The%20Grotto.m4a - File Folder Count4 - Library Folder Count1 - - 4286 - - Track ID4286 - NameLooking East - ArtistGeorge Brooks - AlbumNight Spinner - GenreJazz - KindAAC audio file - Size6766964 - Total Time278893 - Track Number6 - Track Count10 - Date Modified2006-07-29T04:36:08Z - Date Added2009-10-03T14:56:37Z - Bit Rate192 - Sample Rate44100 - Normalization1256 - Artwork Count1 - Persistent ID62C27FDF1BD1023A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Brooks/Night%20Spinner/06%20Looking%20East.m4a - File Folder Count4 - Library Folder Count1 - - 4288 - - Track ID4288 - NameImages - ArtistGeorge Brooks - AlbumNight Spinner - GenreJazz - KindAAC audio file - Size8841345 - Total Time364621 - Track Number7 - Track Count10 - Date Modified2006-07-29T04:36:10Z - Date Added2009-10-03T14:56:38Z - Bit Rate192 - Sample Rate44100 - Normalization1464 - Artwork Count1 - Persistent IDD5D90BF95FB6C41A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Brooks/Night%20Spinner/07%20Images.m4a - File Folder Count4 - Library Folder Count1 - - 4290 - - Track ID4290 - NameRomance - ArtistGeorge Brooks - AlbumNight Spinner - GenreJazz - KindAAC audio file - Size9935184 - Total Time409877 - Track Number8 - Track Count10 - Date Modified2006-07-29T04:36:10Z - Date Added2009-10-03T14:56:38Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Persistent ID3728F4A381D17CCD - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Brooks/Night%20Spinner/08%20Romance.m4a - File Folder Count4 - Library Folder Count1 - - 4292 - - Track ID4292 - NameMidnight Meeting - ArtistGeorge Brooks - AlbumNight Spinner - GenreJazz - KindAAC audio file - Size5659993 - Total Time233173 - Track Number9 - Track Count10 - Date Modified2006-07-29T04:36:10Z - Date Added2009-10-03T14:56:38Z - Bit Rate192 - Sample Rate44100 - Normalization1253 - Artwork Count1 - Persistent ID6CD18B31E820FC5A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Brooks/Night%20Spinner/09%20Midnight%20Meeting.m4a - File Folder Count4 - Library Folder Count1 - - 4294 - - Track ID4294 - NameThe Light Never Leaves Your Eyes - ArtistGeorge Brooks - AlbumNight Spinner - GenreJazz - KindAAC audio file - Size7930364 - Total Time327353 - Track Number10 - Track Count10 - Date Modified2006-07-29T04:36:10Z - Date Added2009-10-03T14:56:38Z - Bit Rate192 - Sample Rate44100 - Normalization917 - Artwork Count1 - Sort NameLight Never Leaves Your Eyes - Persistent IDC06E1ED22CD39104 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Brooks/Night%20Spinner/10%20The%20Light%20Never%20Leaves%20Your%20Eyes.m4a - File Folder Count4 - Library Folder Count1 - - 4296 - - Track ID4296 - NameHat And Beard - ArtistEric Dolphy - ComposerEric Dolphy - AlbumOut To Lunch - GenreJazz - KindAAC audio file - Size12162146 - Total Time504870 - Disc Number1 - Disc Count1 - Track Number1 - Track Count5 - Year1964 - Date Modified2006-07-28T02:07:36Z - Date Added2009-10-03T14:56:40Z - Bit Rate192 - Sample Rate44100 - Skip Count1 - Skip Date2014-01-03T03:17:14Z - Normalization2932 - Artwork Count1 - Persistent ID705F1E7180481732 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Eric%20Dolphy/Out%20To%20Lunch/01%20Hat%20And%20Beard.m4a - File Folder Count4 - Library Folder Count1 - - 4298 - - Track ID4298 - NameSomething Sweet, Something Tender - ArtistEric Dolphy - ComposerEric Dolphy - AlbumOut To Lunch - GenreJazz - KindAAC audio file - Size8742175 - Total Time363901 - Disc Number1 - Disc Count1 - Track Number2 - Track Count5 - Year1964 - Date Modified2006-07-28T02:07:36Z - Date Added2009-10-03T14:56:40Z - Bit Rate192 - Sample Rate44100 - Normalization2664 - Artwork Count1 - Persistent ID4A6E8659304C0535 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Eric%20Dolphy/Out%20To%20Lunch/02%20Something%20Sweet,%20Something%20Tender.m4a - File Folder Count4 - Library Folder Count1 - - 4300 - - Track ID4300 - NameGazzelloni - ArtistEric Dolphy - ComposerEric Dolphy - AlbumOut To Lunch - GenreJazz - KindAAC audio file - Size10633966 - Total Time443012 - Disc Number1 - Disc Count1 - Track Number3 - Track Count5 - Year1964 - Date Modified2006-07-28T02:07:38Z - Date Added2009-10-03T14:56:40Z - Bit Rate192 - Sample Rate44100 - Normalization3312 - Artwork Count1 - Persistent ID1E9C4DFEAD6F59AD - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Eric%20Dolphy/Out%20To%20Lunch/03%20Gazzelloni.m4a - File Folder Count4 - Library Folder Count1 - - 4302 - - Track ID4302 - NameOut To Lunch - ArtistEric Dolphy - ComposerEric Dolphy - AlbumOut To Lunch - GenreJazz - KindAAC audio file - Size17565670 - Total Time729314 - Disc Number1 - Disc Count1 - Track Number4 - Track Count5 - Year1964 - Date Modified2006-07-28T02:07:38Z - Date Added2009-10-03T14:56:41Z - Bit Rate192 - Sample Rate44100 - Normalization3550 - Artwork Count1 - Persistent IDC0D2992AAE58B083 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Eric%20Dolphy/Out%20To%20Lunch/04%20Out%20To%20Lunch.m4a - File Folder Count4 - Library Folder Count1 - - 4304 - - Track ID4304 - NameStraight Up And Down - ArtistEric Dolphy - ComposerEric Dolphy - AlbumOut To Lunch - GenreJazz - KindAAC audio file - Size12047138 - Total Time501178 - Disc Number1 - Disc Count1 - Track Number5 - Track Count5 - Year1964 - Date Modified2006-07-28T02:07:40Z - Date Added2009-10-03T14:56:41Z - Bit Rate192 - Sample Rate44100 - Normalization4766 - Artwork Count1 - Persistent IDC3DF0F2FD24C6A53 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Eric%20Dolphy/Out%20To%20Lunch/05%20Straight%20Up%20And%20Down.m4a - File Folder Count4 - Library Folder Count1 - - 4306 - - Track ID4306 - NameSigne - ArtistEric Clapton - ComposerEric Clapton - AlbumUnplugged - GenreBlues - KindAAC audio file - Size4722945 - Total Time193513 - Disc Number1 - Disc Count1 - Track Number1 - Track Count14 - Year1992 - Date Modified2006-08-08T11:56:52Z - Date Added2009-10-03T14:56:41Z - Bit Rate192 - Sample Rate44100 - Normalization1253 - Artwork Count1 - Persistent ID01BF14154F92F071 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Eric%20Clapton/Unplugged/01%20Signe.m4a - File Folder Count4 - Library Folder Count1 - - 4308 - - Track ID4308 - NameBefore You Accuse Me - ArtistEric Clapton - ComposerE. McDaniel - AlbumUnplugged - GenreBlues - KindAAC audio file - Size5458383 - Total Time224140 - Disc Number1 - Disc Count1 - Track Number2 - Track Count14 - Year1992 - Date Modified2006-08-08T11:56:52Z - Date Added2009-10-03T14:56:41Z - Bit Rate192 - Sample Rate44100 - Normalization1232 - Artwork Count1 - Persistent ID359EE07490C5597B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Eric%20Clapton/Unplugged/02%20Before%20You%20Accuse%20Me.m4a - File Folder Count4 - Library Folder Count1 - - 4310 - - Track ID4310 - NameHey Hey - ArtistEric Clapton - ComposerBig Bill Broonzy - AlbumUnplugged - GenreBlues - KindAAC audio file - Size4794390 - Total Time196485 - Disc Number1 - Disc Count1 - Track Number3 - Track Count14 - Year1992 - Date Modified2006-08-08T11:56:52Z - Date Added2009-10-03T14:56:41Z - Bit Rate192 - Sample Rate44100 - Normalization1255 - Artwork Count1 - Persistent ID35921111D9733700 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Eric%20Clapton/Unplugged/03%20Hey%20Hey.m4a - File Folder Count4 - Library Folder Count1 - - 4312 - - Track ID4312 - NameTears In Heaven - ArtistEric Clapton - ComposerEric Clapton & Will Jennings - AlbumUnplugged - GenreBlues - KindAAC audio file - Size6709218 - Total Time276107 - Disc Number1 - Disc Count1 - Track Number4 - Track Count14 - Year1992 - Date Modified2006-08-08T11:56:52Z - Date Added2009-10-03T14:56:41Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3441737928 - Play Date UTC2013-01-22T16:48:48Z - Normalization1255 - Artwork Count1 - Persistent ID4DE0A00DC81B7949 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Eric%20Clapton/Unplugged/04%20Tears%20In%20Heaven.m4a - File Folder Count4 - Library Folder Count1 - - 4314 - - Track ID4314 - NameLonely Stranger - ArtistEric Clapton - ComposerEric Clapton - AlbumUnplugged - GenreBlues - KindAAC audio file - Size7947349 - Total Time327260 - Disc Number1 - Disc Count1 - Track Number5 - Track Count14 - Year1992 - Date Modified2006-08-08T11:56:52Z - Date Added2009-10-03T14:56:41Z - Bit Rate192 - Sample Rate44100 - Normalization1255 - Artwork Count1 - Persistent ID160961E1AAC8BBDB - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Eric%20Clapton/Unplugged/05%20Lonely%20Stranger.m4a - File Folder Count4 - Library Folder Count1 - - 4316 - - Track ID4316 - NameNobody Knows You When You're Down & Out - ArtistEric Clapton - ComposerJimmy Cox - AlbumUnplugged - GenreBlues - KindAAC audio file - Size5579600 - Total Time229179 - Disc Number1 - Disc Count1 - Track Number6 - Track Count14 - Year1992 - Date Modified2006-08-08T11:56:52Z - Date Added2009-10-03T14:56:41Z - Bit Rate192 - Sample Rate44100 - Normalization1489 - Artwork Count1 - Persistent ID24718FCC5B9575D2 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Eric%20Clapton/Unplugged/06%20Nobody%20Knows%20You%20When%20You're%20Down%20&%20Out.m4a - File Folder Count4 - Library Folder Count1 - - 4318 - - Track ID4318 - NameLayla - ArtistEric Clapton - ComposerEric Clapton & Jim Gordon - AlbumUnplugged - GenreBlues - KindAAC audio file - Size6951419 - Total Time286114 - Disc Number1 - Disc Count1 - Track Number7 - Track Count14 - Year1992 - Date Modified2006-08-08T11:56:52Z - Date Added2009-10-03T14:56:42Z - Bit Rate192 - Sample Rate44100 - Normalization1255 - Artwork Count1 - Persistent ID0A01A1EB3425E3B2 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Eric%20Clapton/Unplugged/07%20Layla.m4a - File Folder Count4 - Library Folder Count1 - - 4320 - - Track ID4320 - NameRunning On Faith - ArtistEric Clapton - ComposerJerry Lynn Williams - AlbumUnplugged - GenreBlues - KindAAC audio file - Size9457219 - Total Time389675 - Disc Number1 - Disc Count1 - Track Number8 - Track Count14 - Year1992 - Date Modified2006-08-08T11:56:52Z - Date Added2009-10-03T14:56:42Z - Bit Rate192 - Sample Rate44100 - Normalization1236 - Artwork Count1 - Persistent ID15074AF52688ADAF - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Eric%20Clapton/Unplugged/08%20Running%20On%20Faith.m4a - File Folder Count4 - Library Folder Count1 - - 4322 - - Track ID4322 - NameWalkin' Blues - ArtistEric Clapton - ComposerRobert Johnson - AlbumUnplugged - GenreBlues - KindAAC audio file - Size5295223 - Total Time217360 - Disc Number1 - Disc Count1 - Track Number9 - Track Count14 - Year1992 - Date Modified2006-08-08T11:56:52Z - Date Added2009-10-03T14:56:42Z - Bit Rate192 - Sample Rate44100 - Normalization1043 - Artwork Count1 - Persistent IDD276CDEF077F643C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Eric%20Clapton/Unplugged/09%20Walkin'%20Blues.m4a - File Folder Count4 - Library Folder Count1 - - 4324 - - Track ID4324 - NameAlberta - ArtistEric Clapton - Composer[Traditional] - AlbumUnplugged - GenreBlues - KindAAC audio file - Size5416039 - Total Time222352 - Disc Number1 - Disc Count1 - Track Number10 - Track Count14 - Year1992 - Date Modified2006-08-08T11:56:50Z - Date Added2009-10-03T14:56:42Z - Bit Rate192 - Sample Rate44100 - Normalization1255 - Artwork Count1 - Persistent ID7388AFBA0E01BC2F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Eric%20Clapton/Unplugged/10%20Alberta.m4a - File Folder Count4 - Library Folder Count1 - - 4326 - - Track ID4326 - NameSan Francisco Bay Blues - ArtistEric Clapton - ComposerJesse Fuller - AlbumUnplugged - GenreBlues - KindAAC audio file - Size4958867 - Total Time203335 - Disc Number1 - Disc Count1 - Track Number11 - Track Count14 - Year1992 - Date Modified2006-08-08T11:56:50Z - Date Added2009-10-03T14:56:42Z - Bit Rate192 - Sample Rate44100 - Normalization2271 - Artwork Count1 - Persistent IDE25C9580737DA3A5 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Eric%20Clapton/Unplugged/11%20San%20Francisco%20Bay%20Blues.m4a - File Folder Count4 - Library Folder Count1 - - 4328 - - Track ID4328 - NameMalted Milk - ArtistEric Clapton - ComposerRobert Johnson - AlbumUnplugged - GenreBlues - KindAAC audio file - Size5274760 - Total Time216478 - Disc Number1 - Disc Count1 - Track Number12 - Track Count14 - Year1992 - Date Modified2006-08-08T11:56:50Z - Date Added2009-10-03T14:56:42Z - Bit Rate192 - Sample Rate44100 - Normalization1012 - Artwork Count1 - Persistent IDFA4254F768CC7BA0 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Eric%20Clapton/Unplugged/12%20Malted%20Milk.m4a - File Folder Count4 - Library Folder Count1 - - 4330 - - Track ID4330 - NameOld Love - ArtistEric Clapton - ComposerEric Clapton & Robert Cray - AlbumUnplugged - GenreBlues - KindAAC audio file - Size11445231 - Total Time472872 - Disc Number1 - Disc Count1 - Track Number13 - Track Count14 - Year1992 - Date Modified2006-08-08T11:56:50Z - Date Added2009-10-03T14:56:42Z - Bit Rate192 - Sample Rate44100 - Normalization1255 - Artwork Count1 - Persistent IDCCD2D6CB7C172E24 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Eric%20Clapton/Unplugged/13%20Old%20Love.m4a - File Folder Count4 - Library Folder Count1 - - 4332 - - Track ID4332 - NameRollin' And Tumblin' - ArtistEric Clapton - ComposerM. Morgenfield - AlbumUnplugged - GenreBlues - KindAAC audio file - Size6120647 - Total Time251981 - Disc Number1 - Disc Count1 - Track Number14 - Track Count14 - Year1992 - Date Modified2006-08-08T11:56:50Z - Date Added2009-10-03T14:56:42Z - Bit Rate192 - Sample Rate44100 - Normalization1412 - Artwork Count1 - Persistent ID1878335C5B559C9A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Eric%20Clapton/Unplugged/14%20Rollin'%20And%20Tumblin'.m4a - File Folder Count4 - Library Folder Count1 - - 4334 - - Track ID4334 - NameThe Gate - ArtistEnigma - ComposerDavid Fairstein/Michael Cretu - AlbumThe Screen Behind The Mirror - GenreElectronica/Dance - KindAAC audio file - Size3055213 - Total Time124411 - Disc Number1 - Disc Count1 - Track Number1 - Track Count11 - Year2000 - Date Modified2006-07-30T08:53:22Z - Date Added2009-10-03T14:56:43Z - Bit Rate192 - Sample Rate44100 - Normalization1234 - Artwork Count1 - Sort AlbumScreen Behind The Mirror - Sort NameGate - Persistent ID9CA464C21FB5EAAA - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/The%20Screen%20Behind%20The%20Mirror/01%20The%20Gate.m4a - File Folder Count4 - Library Folder Count1 - - 4336 - - Track ID4336 - NamePush The Limits - ArtistEnigma - ComposerMichael Cretu and Jens Gad - AlbumThe Screen Behind The Mirror - GenreElectronica/Dance - KindAAC audio file - Size9397516 - Total Time386912 - Disc Number1 - Disc Count1 - Track Number2 - Track Count11 - Year2000 - Date Modified2006-07-30T08:53:22Z - Date Added2009-10-03T14:56:44Z - Bit Rate192 - Sample Rate44100 - Normalization1235 - Artwork Count1 - Sort AlbumScreen Behind The Mirror - Persistent ID341803491AA2E45B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/The%20Screen%20Behind%20The%20Mirror/02%20Push%20The%20Limits.m4a - File Folder Count4 - Library Folder Count1 - - 4338 - - Track ID4338 - NameGravity Of Love - ArtistEnigma - ComposerDavid Fairstein/Michael Cretu - AlbumThe Screen Behind The Mirror - GenreElectronica/Dance - KindAAC audio file - Size5816667 - Total Time238769 - Disc Number1 - Disc Count1 - Track Number3 - Track Count11 - Year2000 - Date Modified2006-07-30T08:53:22Z - Date Added2009-10-03T14:56:44Z - Bit Rate192 - Sample Rate44100 - Normalization2420 - Artwork Count1 - Sort AlbumScreen Behind The Mirror - Persistent IDDB9330EA819B1622 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/The%20Screen%20Behind%20The%20Mirror/03%20Gravity%20Of%20Love.m4a - File Folder Count4 - Library Folder Count1 - - 4340 - - Track ID4340 - NameSmell Of Desire - ArtistEnigma - ComposerMichael Cretu and David Fairstein - AlbumThe Screen Behind The Mirror - GenreElectronica/Dance - KindAAC audio file - Size7230491 - Total Time297353 - Disc Number1 - Disc Count1 - Track Number4 - Track Count11 - Year2000 - Date Modified2006-07-30T08:53:22Z - Date Added2009-10-03T14:56:44Z - Bit Rate192 - Sample Rate44100 - Normalization1234 - Artwork Count1 - Sort AlbumScreen Behind The Mirror - Persistent ID978D751A8217E76F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/The%20Screen%20Behind%20The%20Mirror/04%20Smell%20Of%20Desire.m4a - File Folder Count4 - Library Folder Count1 - - 4342 - - Track ID4342 - NameModern Crusaders - ArtistEnigma - ComposerDavid Fairstein/Michael Cretu - AlbumThe Screen Behind The Mirror - GenreElectronica/Dance - KindAAC audio file - Size5621117 - Total Time230619 - Disc Number1 - Disc Count1 - Track Number5 - Track Count11 - Year2000 - Date Modified2006-07-30T08:53:22Z - Date Added2009-10-03T14:56:45Z - Bit Rate192 - Sample Rate44100 - Normalization2516 - Artwork Count1 - Sort AlbumScreen Behind The Mirror - Persistent ID485BEC65AC6D10CD - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/The%20Screen%20Behind%20The%20Mirror/05%20Modern%20Crusaders.m4a - File Folder Count4 - Library Folder Count1 - - 4344 - - Track ID4344 - NameTraces (Light & Weight) - ArtistEnigma - ComposerMichael Cretu and Jens Gad - AlbumThe Screen Behind The Mirror - GenreElectronica/Dance - KindAAC audio file - Size6126437 - Total Time251656 - Disc Number1 - Disc Count1 - Track Number6 - Track Count11 - Year2000 - Date Modified2006-07-30T08:53:22Z - Date Added2009-10-03T14:56:46Z - Bit Rate192 - Sample Rate44100 - Normalization1234 - Artwork Count1 - Sort AlbumScreen Behind The Mirror - Persistent ID2D648A6A3AFD20F8 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/The%20Screen%20Behind%20The%20Mirror/06%20Traces%20(Light%20&%20Weight).m4a - File Folder Count4 - Library Folder Count1 - - 4346 - - Track ID4346 - NameThe Screen Behind The Mirror - ArtistEnigma - ComposerDavid Fairstein/Michael Cretu - AlbumThe Screen Behind The Mirror - GenreElectronica/Dance - KindAAC audio file - Size5817016 - Total Time238769 - Disc Number1 - Disc Count1 - Track Number7 - Track Count11 - Year2000 - Date Modified2006-07-30T08:53:22Z - Date Added2009-10-03T14:56:46Z - Bit Rate192 - Sample Rate44100 - Normalization1676 - Artwork Count1 - Sort AlbumScreen Behind The Mirror - Sort NameScreen Behind The Mirror - Persistent ID24E0C5A5F2ACAD79 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/The%20Screen%20Behind%20The%20Mirror/07%20The%20Screen%20Behind%20The%20Mirror.m4a - File Folder Count4 - Library Folder Count1 - - 4348 - - Track ID4348 - NameEndless Quest - ArtistEnigma - ComposerDavid Fairstein/Michael Cretu - AlbumThe Screen Behind The Mirror - GenreElectronica/Dance - KindAAC audio file - Size4554040 - Total Time186222 - Disc Number1 - Disc Count1 - Track Number8 - Track Count11 - Year2000 - Date Modified2006-07-30T08:53:22Z - Date Added2009-10-03T14:56:47Z - Bit Rate192 - Sample Rate44100 - Normalization1994 - Artwork Count1 - Sort AlbumScreen Behind The Mirror - Persistent ID76D47A06EB018A5B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/The%20Screen%20Behind%20The%20Mirror/08%20Endless%20Quest.m4a - File Folder Count4 - Library Folder Count1 - - 4350 - - Track ID4350 - NameCamera Obscura - ArtistEnigma - ComposerDavid Fairstein/Michael Cretu - AlbumThe Screen Behind The Mirror - GenreElectronica/Dance - KindAAC audio file - Size2162589 - Total Time87886 - Disc Number1 - Disc Count1 - Track Number9 - Track Count11 - Year2000 - Date Modified2006-07-30T08:53:22Z - Date Added2009-10-03T14:56:47Z - Bit Rate192 - Sample Rate44100 - Normalization3957 - Artwork Count1 - Sort AlbumScreen Behind The Mirror - Persistent ID25049E790AED1203 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/The%20Screen%20Behind%20The%20Mirror/09%20Camera%20Obscura.m4a - File Folder Count4 - Library Folder Count1 - - 4352 - - Track ID4352 - NameBetween Mind & Heart - ArtistEnigma - ComposerDavid Fairstein/Michael Cretu - AlbumThe Screen Behind The Mirror - GenreElectronica/Dance - KindAAC audio file - Size6079907 - Total Time249752 - Disc Number1 - Disc Count1 - Track Number10 - Track Count11 - Year2000 - Date Modified2006-07-30T08:53:22Z - Date Added2009-10-03T14:56:48Z - Bit Rate192 - Sample Rate44100 - Normalization2131 - Artwork Count1 - Sort AlbumScreen Behind The Mirror - Persistent IDC6710C13123C6877 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/The%20Screen%20Behind%20The%20Mirror/10%20Between%20Mind%20&%20Heart.m4a - File Folder Count4 - Library Folder Count1 - - 4354 - - Track ID4354 - NameSilence Must Be Heard - ArtistEnigma - ComposerMichael Cretu and Jens Gad - AlbumThe Screen Behind The Mirror - GenreElectronica/Dance - KindAAC audio file - Size7759397 - Total Time319481 - Disc Number1 - Disc Count1 - Track Number11 - Track Count11 - Year2000 - Date Modified2006-07-30T08:53:24Z - Date Added2009-10-03T14:56:48Z - Bit Rate192 - Sample Rate44100 - Normalization2498 - Artwork Count1 - Sort AlbumScreen Behind The Mirror - Persistent ID707D9749A5613ADF - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/The%20Screen%20Behind%20The%20Mirror/11%20Silence%20Must%20Be%20Heard.m4a - File Folder Count4 - Library Folder Count1 - - 4356 - - Track ID4356 - NameSecond Chapter - ArtistEnigma - ComposerCurly M.C. - AlbumThe Cross Of Changes - GenreNew Age - KindAAC audio file - Size3287171 - Total Time135301 - Disc Number1 - Disc Count1 - Track Number1 - Track Count9 - Year1993 - Date Modified2006-08-07T08:52:46Z - Date Added2009-10-03T14:56:49Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3441736920 - Play Date UTC2013-01-22T16:32:00Z - Skip Count1 - Skip Date2013-01-22T16:29:45Z - Normalization268 - Artwork Count1 - Sort AlbumCross Of Changes - Persistent IDA2874A96FD275EBB - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/The%20Cross%20Of%20Changes/01%20Second%20Chapter.m4a - File Folder Count4 - Library Folder Count1 - - 4358 - - Track ID4358 - NameThe Eyes Of Truth - ArtistEnigma - ComposerCurly M.C. - AlbumThe Cross Of Changes - GenreNew Age - KindAAC audio file - Size10530973 - Total Time434513 - Disc Number1 - Disc Count1 - Track Number2 - Track Count9 - Year1993 - Date Modified2006-08-07T08:52:46Z - Date Added2009-10-03T14:56:50Z - Bit Rate192 - Sample Rate44100 - Normalization1234 - Artwork Count1 - Sort AlbumCross Of Changes - Sort NameEyes Of Truth - Persistent IDE6E4C0D181F73ADE - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/The%20Cross%20Of%20Changes/02%20The%20Eyes%20Of%20Truth.m4a - File Folder Count4 - Library Folder Count1 - - 4360 - - Track ID4360 - NameReturn To Innocence - ArtistEnigma - ComposerCurly M.C. - AlbumThe Cross Of Changes - GenreNew Age - KindAAC audio file - Size6199740 - Total Time255487 - Disc Number1 - Disc Count1 - Track Number3 - Track Count9 - Year1993 - Date Modified2006-08-07T08:52:46Z - Date Added2009-10-03T14:56:50Z - Bit Rate192 - Sample Rate44100 - Normalization1274 - Artwork Count1 - Sort AlbumCross Of Changes - Persistent IDD10E8470F06107C1 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/The%20Cross%20Of%20Changes/03%20Return%20To%20Innocence.m4a - File Folder Count4 - Library Folder Count1 - - 4362 - - Track ID4362 - NameI Love You ... I'll Kill You - ArtistEnigma - ComposerDavid Fairstein, Curly M.C. - AlbumThe Cross Of Changes - GenreNew Age - KindAAC audio file - Size12904133 - Total Time532571 - Disc Number1 - Disc Count1 - Track Number4 - Track Count9 - Year1993 - Date Modified2006-08-07T08:52:46Z - Date Added2009-10-03T14:56:51Z - Bit Rate192 - Sample Rate44100 - Normalization1616 - Artwork Count1 - Sort AlbumCross Of Changes - Persistent IDCEBA2D9CFC8EEC67 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/The%20Cross%20Of%20Changes/04%20I%20Love%20You%20...%20I'll%20Kill%20You.m4a - File Folder Count4 - Library Folder Count1 - - 4364 - - Track ID4364 - NameSilent Warrior - ArtistEnigma - ComposerCurly M.C. - AlbumThe Cross Of Changes - GenreNew Age - KindAAC audio file - Size8964658 - Total Time369776 - Disc Number1 - Disc Count1 - Track Number5 - Track Count9 - Year1993 - Date Modified2006-08-07T08:52:46Z - Date Added2009-10-03T14:56:51Z - Bit Rate192 - Sample Rate44100 - Normalization1234 - Artwork Count1 - Sort AlbumCross Of Changes - Persistent ID958AA03B7AC80A2D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/The%20Cross%20Of%20Changes/05%20Silent%20Warrior.m4a - File Folder Count4 - Library Folder Count1 - - 4366 - - Track ID4366 - NameThe Dream Of The Dolphin - ArtistEnigma - ComposerCurly M.C., David Fairstein - AlbumThe Cross Of Changes - GenreNew Age - KindAAC audio file - Size4073705 - Total Time167414 - Disc Number1 - Disc Count1 - Track Number6 - Track Count9 - Year1993 - Date Modified2006-08-07T08:52:46Z - Date Added2009-10-03T14:56:52Z - Bit Rate192 - Sample Rate44100 - Normalization305 - Artwork Count1 - Sort AlbumCross Of Changes - Sort NameDream Of The Dolphin - Persistent IDFE10270A6C820AF9 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/The%20Cross%20Of%20Changes/06%20The%20Dream%20Of%20The%20Dolphin.m4a - File Folder Count4 - Library Folder Count1 - - 4368 - - Track ID4368 - NameAge Of Loneliness (Carly's Song) - ArtistEnigma - ComposerCurly M.C. - AlbumThe Cross Of Changes - GenreNew Age - KindAAC audio file - Size7796275 - Total Time321502 - Disc Number1 - Disc Count1 - Track Number7 - Track Count9 - Year1993 - Date Modified2006-08-07T08:52:46Z - Date Added2009-10-03T14:56:52Z - Bit Rate192 - Sample Rate44100 - Normalization1220 - Artwork Count1 - Sort AlbumCross Of Changes - Persistent IDBF4C08DA16D12235 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/The%20Cross%20Of%20Changes/07%20Age%20Of%20Loneliness%20(Carly's%20Song).m4a - File Folder Count4 - Library Folder Count1 - - 4370 - - Track ID4370 - NameOut From The Deep - ArtistEnigma - ComposerCurly M.C. - AlbumThe Cross Of Changes - GenreNew Age - KindAAC audio file - Size7109309 - Total Time293127 - Disc Number1 - Disc Count1 - Track Number8 - Track Count9 - Year1993 - Date Modified2006-08-07T08:52:46Z - Date Added2009-10-03T14:56:52Z - Bit Rate192 - Sample Rate44100 - Normalization1815 - Artwork Count1 - Sort AlbumCross Of Changes - Persistent ID960DF4F6D597B3DA - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/The%20Cross%20Of%20Changes/08%20Out%20From%20The%20Deep.m4a - File Folder Count4 - Library Folder Count1 - - 4372 - - Track ID4372 - NameThe Cross Of Changes - ArtistEnigma - ComposerCurly M.C. - AlbumThe Cross Of Changes - GenreNew Age - KindAAC audio file - Size3516509 - Total Time144403 - Disc Number1 - Disc Count1 - Track Number9 - Track Count9 - Year1993 - Date Modified2006-08-07T08:52:44Z - Date Added2009-10-03T14:56:53Z - Bit Rate192 - Sample Rate44100 - Normalization505 - Artwork Count1 - Sort AlbumCross Of Changes - Sort NameCross Of Changes - Persistent IDEFC835D2CC7CA7CF - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/The%20Cross%20Of%20Changes/09%20The%20Cross%20Of%20Changes.m4a - File Folder Count4 - Library Folder Count1 - - 4374 - - Track ID4374 - NameEncounters - ArtistEnigma - AlbumSeven Lives Many Faces - GenreNew Age - KindAAC audio file - Size5004322 - Total Time192813 - Disc Number1 - Disc Count1 - Track Number1 - Track Count12 - Year2008 - Date Modified2008-09-28T16:09:08Z - Date Added2009-10-03T14:56:53Z - Bit Rate195 - Sample Rate44100 - Play Count1 - Play Date3359190009 - Play Date UTC2010-06-12T06:50:09Z - Skip Count1 - Skip Date2010-05-29T09:34:11Z - Normalization1138 - Artwork Count1 - Persistent ID316D18D8E856704B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/Seven%20Lives%20Many%20Faces/01%20Encounters.m4a - File Folder Count4 - Library Folder Count1 - - 4376 - - Track ID4376 - NameSeven Lives - ArtistEnigma - AlbumSeven Lives Many Faces - GenreNew Age - KindAAC audio file - Size6635788 - Total Time265280 - Disc Number1 - Disc Count1 - Track Number2 - Track Count12 - Year2008 - Date Modified2008-09-28T16:09:08Z - Date Added2009-10-03T14:56:53Z - Bit Rate191 - Sample Rate44100 - Play Count6 - Play Date3381676331 - Play Date UTC2011-02-27T13:02:11Z - Normalization1380 - Artwork Count1 - Persistent ID442C8B10275617C1 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/Seven%20Lives%20Many%20Faces/02%20Seven%20Lives.m4a - File Folder Count4 - Library Folder Count1 - - 4378 - - Track ID4378 - NameTouchness - ArtistEnigma - AlbumSeven Lives Many Faces - GenreNew Age - KindAAC audio file - Size5512488 - Total Time215840 - Disc Number1 - Disc Count1 - Track Number3 - Track Count12 - Year2008 - Date Modified2008-09-28T16:09:07Z - Date Added2009-10-03T14:56:54Z - Bit Rate193 - Sample Rate44100 - Play Count5 - Play Date3359724732 - Play Date UTC2010-06-18T11:22:12Z - Normalization2197 - Artwork Count1 - Persistent ID121693B5D0E553BA - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/Seven%20Lives%20Many%20Faces/03%20Touchness.m4a - File Folder Count4 - Library Folder Count1 - - 4380 - - Track ID4380 - NameThe Same Parents - ArtistEnigma - AlbumSeven Lives Many Faces - GenreNew Age - KindAAC audio file - Size7953850 - Total Time319733 - Disc Number1 - Disc Count1 - Track Number4 - Track Count12 - Year2008 - Date Modified2008-09-28T16:09:07Z - Date Added2009-10-03T14:56:54Z - Bit Rate191 - Sample Rate44100 - Play Count2 - Play Date3358257066 - Play Date UTC2010-06-01T11:41:06Z - Normalization2114 - Artwork Count1 - Sort NameSame Parents - Persistent IDABC0B51355D12E06 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/Seven%20Lives%20Many%20Faces/04%20The%20Same%20Parents.m4a - File Folder Count4 - Library Folder Count1 - - 4382 - - Track ID4382 - NameFata Morgana (Instrumental) - ArtistEnigma - AlbumSeven Lives Many Faces - GenreNew Age - KindAAC audio file - Size5088099 - Total Time203586 - Disc Number1 - Disc Count1 - Track Number5 - Track Count12 - Year2008 - Date Modified2008-09-28T16:09:07Z - Date Added2009-10-03T14:56:54Z - Bit Rate188 - Sample Rate44100 - Play Count2 - Play Date3358257269 - Play Date UTC2010-06-01T11:44:29Z - Normalization1259 - Artwork Count1 - Persistent IDF2586EF4EF3DA03F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/Seven%20Lives%20Many%20Faces/05%20Fata%20Morgana%20(Instrumental).m4a - File Folder Count4 - Library Folder Count1 - - 4384 - - Track ID4384 - NameHell's Heaven - ArtistEnigma - AlbumSeven Lives Many Faces - GenreNew Age - KindAAC audio file - Size5860192 - Total Time231520 - Disc Number1 - Disc Count1 - Track Number6 - Track Count12 - Year2008 - Date Modified2008-09-28T16:09:06Z - Date Added2009-10-03T14:56:54Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3358257501 - Play Date UTC2010-06-01T11:48:21Z - Normalization1234 - Artwork Count1 - Persistent IDD5688F15FC4AEDEC - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/Seven%20Lives%20Many%20Faces/06%20Hell's%20Heaven.m4a - File Folder Count4 - Library Folder Count1 - - 4386 - - Track ID4386 - NameLa Puerta Del Cielo - ArtistEnigma - AlbumSeven Lives Many Faces - GenreNew Age - KindAAC audio file - Size5370452 - Total Time208266 - Disc Number1 - Disc Count1 - Track Number7 - Track Count12 - Year2008 - Date Modified2008-09-28T16:09:06Z - Date Added2009-10-03T14:56:54Z - Bit Rate195 - Sample Rate44100 - Play Count2 - Play Date3358257709 - Play Date UTC2010-06-01T11:51:49Z - Normalization2110 - Artwork Count1 - Persistent ID9238DA0F2F403359 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/Seven%20Lives%20Many%20Faces/07%20La%20Puerta%20Del%20Cielo.m4a - File Folder Count4 - Library Folder Count1 - - 4388 - - Track ID4388 - NameDistorted Love - ArtistEnigma - AlbumSeven Lives Many Faces - GenreNew Age - KindAAC audio file - Size6437172 - Total Time251506 - Disc Number1 - Disc Count1 - Track Number8 - Track Count12 - Year2008 - Date Modified2008-09-28T16:09:05Z - Date Added2009-10-03T14:56:54Z - Bit Rate195 - Sample Rate44100 - Play Count1 - Play Date3358257961 - Play Date UTC2010-06-01T11:56:01Z - Normalization2158 - Artwork Count1 - Persistent IDCFD687A9367E43AA - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/Seven%20Lives%20Many%20Faces/08%20Distorted%20Love.m4a - File Folder Count4 - Library Folder Count1 - - 4390 - - Track ID4390 - NameJa T'aime Till My Dying Day - ArtistEnigma - AlbumSeven Lives Many Faces - GenreNew Age - KindAAC audio file - Size6508708 - Total Time258920 - Disc Number1 - Disc Count1 - Track Number9 - Track Count12 - Year2008 - Date Modified2008-09-28T16:09:05Z - Date Added2009-10-03T14:56:54Z - Bit Rate191 - Sample Rate44100 - Play Count1 - Play Date3358258220 - Play Date UTC2010-06-01T12:00:20Z - Normalization1730 - Artwork Count1 - Persistent ID175473622281AD6B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/Seven%20Lives%20Many%20Faces/09%20Ja%20T'aime%20Till%20My%20Dying%20Day.m4a - File Folder Count4 - Library Folder Count1 - - 4392 - - Track ID4392 - NameDeja Vu (Instrumental) - ArtistEnigma - AlbumSeven Lives Many Faces - GenreNew Age - KindAAC audio file - Size4581401 - Total Time176253 - Disc Number1 - Disc Count1 - Track Number10 - Track Count12 - Year2008 - Date Modified2008-09-28T16:09:05Z - Date Added2009-10-03T14:56:55Z - Bit Rate195 - Sample Rate44100 - Play Count1 - Play Date3358258396 - Play Date UTC2010-06-01T12:03:16Z - Normalization1433 - Artwork Count1 - Persistent ID4CE364C2479A027C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/Seven%20Lives%20Many%20Faces/10%20Deja%20Vu%20(Instrumental).m4a - File Folder Count4 - Library Folder Count1 - - 4394 - - Track ID4394 - NameBetween Generations - ArtistEnigma - AlbumSeven Lives Many Faces - GenreNew Age - KindAAC audio file - Size6872889 - Total Time271453 - Disc Number1 - Disc Count1 - Track Number11 - Track Count12 - Year2008 - Date Modified2008-09-28T16:09:04Z - Date Added2009-10-03T14:56:55Z - Bit Rate193 - Sample Rate44100 - Play Count1 - Play Date3358258667 - Play Date UTC2010-06-01T12:07:47Z - Normalization1235 - Artwork Count1 - Persistent IDF3508733E0DD2F40 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/Seven%20Lives%20Many%20Faces/11%20Between%20Generations.m4a - File Folder Count4 - Library Folder Count1 - - 4396 - - Track ID4396 - NameThe Language Of Sound - ArtistEnigma - AlbumSeven Lives Many Faces - GenreNew Age - KindAAC audio file - Size6598779 - Total Time260800 - Disc Number1 - Disc Count1 - Track Number12 - Track Count12 - Year2008 - Date Modified2008-09-28T16:09:04Z - Date Added2009-10-03T14:56:55Z - Bit Rate193 - Sample Rate44100 - Play Count1 - Play Date3358258928 - Play Date UTC2010-06-01T12:12:08Z - Normalization2251 - Artwork Count1 - Sort NameLanguage Of Sound - Persistent ID58BC2943CA7B8F55 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/Seven%20Lives%20Many%20Faces/12%20The%20Language%20Of%20Sound.m4a - File Folder Count4 - Library Folder Count1 - - 4398 - - Track ID4398 - NameThe Voice Of Enigma - ArtistEnigma - ComposerCurly M.C. - AlbumMCMXC A.D. - GenreElectronica/Dance - KindAAC audio file - Size3458534 - Total Time141802 - Disc Number1 - Disc Count1 - Track Number1 - Track Count7 - Year1990 - Date Modified2006-08-13T06:38:28Z - Date Added2009-10-03T14:56:55Z - Bit Rate192 - Sample Rate44100 - Normalization76 - Artwork Count1 - Sort NameVoice Of Enigma - Persistent IDEBF5ACD782924789 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/MCMXC%20A.D_/01%20The%20Voice%20Of%20Enigma.m4a - File Folder Count4 - Library Folder Count1 - - 4400 - - Track ID4400 - NamePrinciples Of Lust [(A) Sadeness, (B) Find Love, (C) Sadeness (Reprise)] - ArtistEnigma - Composer(a) Curly M.C./David Fairstein/David Fairstein (b) Curly M.C. (c) Curly M.C./F. Gregorian - AlbumMCMXC A.D. - GenreElectronica/Dance - KindAAC audio file - Size17047459 - Total Time703934 - Disc Number1 - Disc Count1 - Track Number2 - Track Count7 - Year1990 - Date Modified2006-08-13T06:38:26Z - Date Added2009-10-03T14:56:55Z - Bit Rate192 - Sample Rate44100 - Normalization1139 - Artwork Count1 - Persistent ID693E95FFC1A429EC - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/MCMXC%20A.D_/02%20Principles%20Of%20Lust%20%5B(A)%20Sadeness,%20(B)%20Find%20Love,%20(C)%20Sadeness%20(Reprise)%5D.m4a - File Folder Count4 - Library Folder Count1 - - 4402 - - Track ID4402 - NameCallas Went Away - ArtistEnigma - ComposerCurly M.C. - AlbumMCMXC A.D. - GenreElectronica/Dance - KindAAC audio file - Size6495043 - Total Time267887 - Disc Number1 - Disc Count1 - Track Number3 - Track Count7 - Year1990 - Date Modified2006-08-13T06:38:20Z - Date Added2009-10-03T14:56:55Z - Bit Rate192 - Sample Rate44100 - Normalization1038 - Artwork Count1 - Persistent ID83FECA219C49817B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/MCMXC%20A.D_/03%20Callas%20Went%20Away.m4a - File Folder Count4 - Library Folder Count1 - - 4404 - - Track ID4404 - NameMea Culpa - ArtistEnigma - ComposerCurly M.C./David Fairstein - AlbumMCMXC A.D. - GenreElectronica/Dance - KindAAC audio file - Size7355660 - Total Time303436 - Disc Number1 - Disc Count1 - Track Number4 - Track Count7 - Year1990 - Date Modified2006-08-13T06:38:16Z - Date Added2009-10-03T14:56:55Z - Bit Rate192 - Sample Rate44100 - Normalization1044 - Artwork Count1 - Persistent IDADE2DA6682BB88D4 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/MCMXC%20A.D_/04%20Mea%20Culpa.m4a - File Folder Count4 - Library Folder Count1 - - 4406 - - Track ID4406 - NameThe Voice & The Snake - ArtistEnigma - ComposerCurly M.C./F. Gregorian - AlbumMCMXC A.D. - GenreElectronica/Dance - KindAAC audio file - Size2453998 - Total Time99983 - Disc Number1 - Disc Count1 - Track Number5 - Track Count7 - Year1990 - Date Modified2006-08-13T06:38:12Z - Date Added2009-10-03T14:56:56Z - Bit Rate192 - Sample Rate44100 - Normalization182 - Artwork Count1 - Sort NameVoice & The Snake - Persistent IDC60DE556EF37F1AE - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/MCMXC%20A.D_/05%20The%20Voice%20&%20The%20Snake.m4a - File Folder Count4 - Library Folder Count1 - - 4408 - - Track ID4408 - NameKnocking On Forbidden Doors - ArtistEnigma - ComposerCurly M.C. - AlbumMCMXC A.D. - GenreElectronica/Dance - KindAAC audio file - Size6583204 - Total Time271509 - Disc Number1 - Disc Count1 - Track Number6 - Track Count7 - Year1990 - Date Modified2006-08-13T06:38:12Z - Date Added2009-10-03T14:56:56Z - Bit Rate192 - Sample Rate44100 - Normalization1013 - Artwork Count1 - Persistent ID327FDDBD53B817C9 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/MCMXC%20A.D_/06%20Knocking%20On%20Forbidden%20Doors.m4a - File Folder Count4 - Library Folder Count1 - - 4410 - - Track ID4410 - NameBack To The Rivers Of Belief [(A) Way To Eternity, (B) Hallelujah, (C) The Rivers Of Belief] - ArtistEnigma - Composer(a) Curly M.C. (b) Curly M.C. (c) Curly M.C. David Fairstein - AlbumMCMXC A.D. - GenreElectronica/Dance - KindAAC audio file - Size15314534 - Total Time632324 - Disc Number1 - Disc Count1 - Track Number7 - Track Count7 - Year1990 - Date Modified2006-08-13T06:38:08Z - Date Added2009-10-03T14:56:56Z - Bit Rate192 - Sample Rate44100 - Normalization1086 - Artwork Count1 - Persistent ID1F933146E143D217 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/MCMXC%20A.D_/07%20Back%20To%20The%20Rivers%20Of%20Belief%20%5B(A)%20Way%20To%20Eternity,%20(B)%20Hallelujah,%20(C)%20The%20Rivers%20Of%20Belief%5D.m4a - File Folder Count4 - Library Folder Count1 - - 4412 - - Track ID4412 - NameLe Roi Est Mort, Vive Le Roi! - ArtistEnigma - ComposerMichael Crétu - AlbumLe Roi Est Mort, Vive Le Roi! - GenreNew Age - KindAAC audio file - Size2872095 - Total Time117979 - Disc Number1 - Disc Count1 - Track Number1 - Track Count12 - Year1996 - Date Modified2006-07-30T13:13:16Z - Date Added2009-10-03T14:56:56Z - Bit Rate192 - Sample Rate44100 - Normalization441 - Artwork Count1 - Persistent IDC4C1021AC16AAEEF - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/Le%20Roi%20Est%20Mort,%20Vive%20Le%20Roi!/01%20Le%20Roi%20Est%20Mort,%20Vive%20Le%20Roi!.m4a - File Folder Count4 - Library Folder Count1 - - 4414 - - Track ID4414 - NameMorphing Thru Time - ArtistEnigma - ComposerMichael Crétu - AlbumLe Roi Est Mort, Vive Le Roi! - GenreNew Age - KindAAC audio file - Size8440825 - Total Time347833 - Disc Number1 - Disc Count1 - Track Number2 - Track Count12 - Year1996 - Date Modified2006-07-30T13:13:16Z - Date Added2009-10-03T14:56:57Z - Bit Rate192 - Sample Rate44100 - Normalization2075 - Artwork Count1 - Persistent ID7B48C9CF75CE5BBA - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/Le%20Roi%20Est%20Mort,%20Vive%20Le%20Roi!/02%20Morphing%20Thru%20Time.m4a - File Folder Count4 - Library Folder Count1 - - 4416 - - Track ID4416 - NameThird Of Its Kind - ArtistEnigma - ComposerMichael Crétu - AlbumLe Roi Est Mort, Vive Le Roi! - GenreNew Age - KindAAC audio file - Size512958 - Total Time19178 - Disc Number1 - Disc Count1 - Track Number3 - Track Count12 - Year1996 - Date Modified2006-07-30T13:13:16Z - Date Added2009-10-03T14:56:57Z - Bit Rate192 - Sample Rate44100 - Normalization154 - Artwork Count1 - Persistent IDB3FB3CD78BF93AFC - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/Le%20Roi%20Est%20Mort,%20Vive%20Le%20Roi!/03%20Third%20Of%20Its%20Kind.m4a - File Folder Count4 - Library Folder Count1 - - 4418 - - Track ID4418 - NameBeyond The Invisible - ArtistEnigma - ComposerMichael Crétu and David Fairstein - AlbumLe Roi Est Mort, Vive Le Roi! - GenreNew Age - KindAAC audio file - Size7284271 - Total Time300046 - Disc Number1 - Disc Count1 - Track Number4 - Track Count12 - Year1996 - Date Modified2006-07-30T13:13:16Z - Date Added2009-10-03T14:56:58Z - Bit Rate192 - Sample Rate44100 - Normalization2100 - Artwork Count1 - Persistent IDD669D642BDB80813 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/Le%20Roi%20Est%20Mort,%20Vive%20Le%20Roi!/04%20Beyond%20The%20Invisible.m4a - File Folder Count4 - Library Folder Count1 - - 4420 - - Track ID4420 - NameWhy! ... - ArtistEnigma - ComposerMichael Crétu - AlbumLe Roi Est Mort, Vive Le Roi! - GenreNew Age - KindAAC audio file - Size7267860 - Total Time299373 - Disc Number1 - Disc Count1 - Track Number5 - Track Count12 - Year1996 - Date Modified2006-07-30T13:13:18Z - Date Added2009-10-03T14:56:58Z - Bit Rate192 - Sample Rate44100 - Normalization2087 - Artwork Count1 - Persistent ID9A8A75684CC432F9 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/Le%20Roi%20Est%20Mort,%20Vive%20Le%20Roi!/05%20Why!%20....m4a - File Folder Count4 - Library Folder Count1 - - 4422 - - Track ID4422 - NameShadows In Silence - ArtistEnigma - ComposerMichael Crétu - AlbumLe Roi Est Mort, Vive Le Roi! - GenreNew Age - KindAAC audio file - Size6344262 - Total Time261223 - Disc Number1 - Disc Count1 - Track Number6 - Track Count12 - Year1996 - Date Modified2006-07-30T13:13:18Z - Date Added2009-10-03T14:56:59Z - Bit Rate192 - Sample Rate44100 - Normalization1234 - Artwork Count1 - Persistent IDBDA01F282DA66CA3 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/Le%20Roi%20Est%20Mort,%20Vive%20Le%20Roi!/06%20Shadows%20In%20Silence.m4a - File Folder Count4 - Library Folder Count1 - - 4424 - - Track ID4424 - NameThe Child In Us - ArtistEnigma - ComposerMichael Crétu - AlbumLe Roi Est Mort, Vive Le Roi! - GenreNew Age - KindAAC audio file - Size7430017 - Total Time306083 - Disc Number1 - Disc Count1 - Track Number7 - Track Count12 - Year1996 - Date Modified2006-07-30T13:13:18Z - Date Added2009-10-03T14:56:59Z - Bit Rate192 - Sample Rate44100 - Normalization1359 - Artwork Count1 - Sort NameChild In Us - Persistent ID974FCF57D8E20EFA - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/Le%20Roi%20Est%20Mort,%20Vive%20Le%20Roi!/07%20The%20Child%20In%20Us.m4a - File Folder Count4 - Library Folder Count1 - - 4426 - - Track ID4426 - NameT.N.T. For The Brain - ArtistEnigma - ComposerMichael Crétu - AlbumLe Roi Est Mort, Vive Le Roi! - GenreNew Age - KindAAC audio file - Size6462191 - Total Time266076 - Disc Number1 - Disc Count1 - Track Number8 - Track Count12 - Year1996 - Date Modified2006-07-30T13:13:18Z - Date Added2009-10-03T14:57:00Z - Bit Rate192 - Sample Rate44100 - Normalization1323 - Artwork Count1 - Persistent IDD32F88190B877F5D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/Le%20Roi%20Est%20Mort,%20Vive%20Le%20Roi!/08%20T.N.T.%20For%20The%20Brain.m4a - File Folder Count4 - Library Folder Count1 - - 4428 - - Track ID4428 - NameAlmost Full Moon - ArtistEnigma - ComposerMichael Crétu - AlbumLe Roi Est Mort, Vive Le Roi! - GenreNew Age - KindAAC audio file - Size5024321 - Total Time206238 - Disc Number1 - Disc Count1 - Track Number9 - Track Count12 - Year1996 - Date Modified2006-07-30T13:13:18Z - Date Added2009-10-03T14:57:01Z - Bit Rate192 - Sample Rate44100 - Normalization1258 - Artwork Count1 - Persistent ID9522DEAC0A977385 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/Le%20Roi%20Est%20Mort,%20Vive%20Le%20Roi!/09%20Almost%20Full%20Moon.m4a - File Folder Count4 - Library Folder Count1 - - 4430 - - Track ID4430 - NameThe Roundabout - ArtistEnigma - ComposerMichael Crétu and David Fairstein - AlbumLe Roi Est Mort, Vive Le Roi! - GenreNew Age - KindAAC audio file - Size5319541 - Total Time218521 - Disc Number1 - Disc Count1 - Track Number10 - Track Count12 - Year1996 - Date Modified2006-07-30T13:13:18Z - Date Added2009-10-03T14:57:01Z - Bit Rate192 - Sample Rate44100 - Normalization2284 - Artwork Count1 - Sort NameRoundabout - Persistent ID0DCFCD85150CA037 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/Le%20Roi%20Est%20Mort,%20Vive%20Le%20Roi!/10%20The%20Roundabout.m4a - File Folder Count4 - Library Folder Count1 - - 4432 - - Track ID4432 - NamePrism Of Life - ArtistEnigma - ComposerMichael Crétu and David Fairstein - AlbumLe Roi Est Mort, Vive Le Roi! - GenreNew Age - KindAAC audio file - Size7166308 - Total Time295170 - Disc Number1 - Disc Count1 - Track Number11 - Track Count12 - Year1996 - Date Modified2006-07-30T13:13:18Z - Date Added2009-10-03T14:57:02Z - Bit Rate192 - Sample Rate44100 - Normalization1234 - Artwork Count1 - Persistent ID987153301520DAC1 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/Le%20Roi%20Est%20Mort,%20Vive%20Le%20Roi!/11%20Prism%20Of%20Life.m4a - File Folder Count4 - Library Folder Count1 - - 4434 - - Track ID4434 - NameOdyssey Of The Mind - ArtistEnigma - ComposerMichael Crétu - AlbumLe Roi Est Mort, Vive Le Roi! - GenreNew Age - KindAAC audio file - Size2470897 - Total Time100912 - Disc Number1 - Disc Count1 - Track Number12 - Track Count12 - Year1996 - Date Modified2006-07-30T13:13:18Z - Date Added2009-10-03T14:57:02Z - Bit Rate192 - Sample Rate44100 - Normalization288 - Artwork Count1 - Persistent IDA0D4D9FD3C51B8B6 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enigma/Le%20Roi%20Est%20Mort,%20Vive%20Le%20Roi!/12%20Odyssey%20Of%20The%20Mind.m4a - File Folder Count4 - Library Folder Count1 - - 4436 - - Track ID4436 - NameYour Song - ArtistElton John - ComposerElton John - AlbumGreatest Hits - GenrePop - KindAAC audio file - Size5831114 - Total Time240975 - Disc Number1 - Disc Count1 - Track Number1 - Track Count11 - Year1970 - Date Modified2006-08-13T06:38:02Z - Date Added2009-10-03T14:57:05Z - Bit Rate192 - Sample Rate44100 - Normalization593 - Artwork Count1 - Persistent IDE370275F3D9B98A1 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Elton%20John/Greatest%20Hits/01%20Your%20Song.m4a - File Folder Count4 - Library Folder Count1 - - 4438 - - Track ID4438 - NameDaniel - ArtistElton John - ComposerElton John - AlbumGreatest Hits - GenrePop - KindAAC audio file - Size5672647 - Total Time233103 - Disc Number1 - Disc Count1 - Track Number2 - Track Count11 - Year1973 - Date Modified2006-08-13T06:37:58Z - Date Added2009-10-03T14:57:05Z - Bit Rate192 - Sample Rate44100 - Normalization553 - Artwork Count1 - Persistent ID8707B168E9E45057 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Elton%20John/Greatest%20Hits/02%20Daniel.m4a - File Folder Count4 - Library Folder Count1 - - 4440 - - Track ID4440 - NameHonky Cat - ArtistElton John - ComposerElton John - AlbumGreatest Hits - GenrePop - KindAAC audio file - Size7611359 - Total Time313258 - Disc Number1 - Disc Count1 - Track Number3 - Track Count11 - Year1972 - Date Modified2006-08-13T06:37:56Z - Date Added2009-10-03T14:57:05Z - Bit Rate192 - Sample Rate44100 - Normalization705 - Artwork Count1 - Persistent ID037808CB9769A5D3 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Elton%20John/Greatest%20Hits/03%20Honky%20Cat.m4a - File Folder Count4 - Library Folder Count1 - - 4442 - - Track ID4442 - NameGoodbye Yellow Brick Road - ArtistElton John - ComposerElton John - AlbumGreatest Hits - GenrePop - KindAAC audio file - Size4740165 - Total Time194883 - Disc Number1 - Disc Count1 - Track Number4 - Track Count11 - Year1974 - Date Modified2006-08-13T06:37:52Z - Date Added2009-10-03T14:57:05Z - Bit Rate192 - Sample Rate44100 - Normalization508 - Artwork Count1 - Persistent IDDF0CB0FFEF65684A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Elton%20John/Greatest%20Hits/04%20Goodbye%20Yellow%20Brick%20Road.m4a - File Folder Count4 - Library Folder Count1 - - 4444 - - Track ID4444 - NameSaturday Night's Alright For Fighting - ArtistElton John - ComposerElton John - AlbumGreatest Hits - GenrePop - KindAAC audio file - Size7095876 - Total Time294311 - Disc Number1 - Disc Count1 - Track Number5 - Track Count11 - Year1974 - Date Modified2006-08-13T06:37:50Z - Date Added2009-10-03T14:57:05Z - Bit Rate192 - Sample Rate44100 - Normalization1129 - Artwork Count1 - Persistent IDEB28C7CE1C252B2F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Elton%20John/Greatest%20Hits/05%20Saturday%20Night's%20Alright%20For%20Fighting.m4a - File Folder Count4 - Library Folder Count1 - - 4446 - - Track ID4446 - NameRocket Man - ArtistElton John - ComposerElton John - AlbumGreatest Hits - GenrePop - KindAAC audio file - Size6829492 - Total Time282004 - Disc Number1 - Disc Count1 - Track Number6 - Track Count11 - Year1972 - Date Modified2006-08-13T06:37:48Z - Date Added2009-10-03T14:57:05Z - Bit Rate192 - Sample Rate44100 - Normalization605 - Artwork Count1 - Persistent ID15234C7643EFEDD5 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Elton%20John/Greatest%20Hits/06%20Rocket%20Man.m4a - File Folder Count4 - Library Folder Count1 - - 4448 - - Track ID4448 - NameBennie And The Jets - ArtistElton John - ComposerElton John - AlbumGreatest Hits - GenrePop - KindAAC audio file - Size7567000 - Total Time313258 - Disc Number1 - Disc Count1 - Track Number7 - Track Count11 - Year1974 - Date Modified2006-08-13T06:37:44Z - Date Added2009-10-03T14:57:05Z - Bit Rate192 - Sample Rate44100 - Normalization881 - Artwork Count1 - Persistent IDE9854E9B95EC61D8 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Elton%20John/Greatest%20Hits/07%20Bennie%20And%20The%20Jets.m4a - File Folder Count4 - Library Folder Count1 - - 4450 - - Track ID4450 - NameCandle In The Wind - ArtistElton John - ComposerElton John - AlbumGreatest Hits - GenrePop - KindAAC audio file - Size5551602 - Total Time228970 - Disc Number1 - Disc Count1 - Track Number8 - Track Count11 - Year1974 - Date Modified2006-08-13T06:37:42Z - Date Added2009-10-03T14:57:05Z - Bit Rate192 - Sample Rate44100 - Normalization561 - Artwork Count1 - Persistent IDD5A68C9CF68143B5 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Elton%20John/Greatest%20Hits/08%20Candle%20In%20The%20Wind.m4a - File Folder Count4 - Library Folder Count1 - - 4452 - - Track ID4452 - NameDon't Let The Sun Go Down On Me - ArtistElton John - ComposerElton John - AlbumGreatest Hits - GenrePop - KindAAC audio file - Size8153338 - Total Time337918 - Disc Number1 - Disc Count1 - Track Number9 - Track Count11 - Year1974 - Date Modified2006-08-13T06:37:38Z - Date Added2009-10-03T14:57:05Z - Bit Rate192 - Sample Rate44100 - Normalization740 - Artwork Count1 - Persistent ID544219F548E86AB7 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Elton%20John/Greatest%20Hits/09%20Don't%20Let%20The%20Sun%20Go%20Down%20On%20Me.m4a - File Folder Count4 - Library Folder Count1 - - 4454 - - Track ID4454 - NameBorder Song - ArtistElton John - ComposerElton John - AlbumGreatest Hits - GenrePop - KindAAC audio file - Size4896883 - Total Time202081 - Disc Number1 - Disc Count1 - Track Number10 - Track Count11 - Year1970 - Date Modified2006-08-13T06:37:36Z - Date Added2009-10-03T14:57:05Z - Bit Rate192 - Sample Rate44100 - Normalization392 - Artwork Count1 - Persistent ID1091D095005AAB7C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Elton%20John/Greatest%20Hits/10%20Border%20Song.m4a - File Folder Count4 - Library Folder Count1 - - 4456 - - Track ID4456 - NameCrocodile Rock - ArtistElton John - ComposerElton John - AlbumGreatest Hits - GenrePop - KindAAC audio file - Size5720371 - Total Time235077 - Disc Number1 - Disc Count1 - Track Number11 - Track Count11 - Year1973 - Date Modified2006-08-13T06:37:32Z - Date Added2009-10-03T14:57:06Z - Bit Rate192 - Sample Rate44100 - Normalization883 - Artwork Count1 - Persistent IDDBEBA31B2071F034 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Elton%20John/Greatest%20Hits/11%20Crocodile%20Rock.m4a - File Folder Count4 - Library Folder Count1 - - 4458 - - Track ID4458 - NameEast St. Louis Toodle-Oo - ArtistDuke Ellington & His Washingtonians - ComposerEllington, E. K. - Miley, J. - AlbumKen Burns Jazz: Duke Ellington - GenreJazz - KindAAC audio file - Size4537085 - Total Time186710 - Disc Number1 - Disc Count1 - Track Number1 - Track Count21 - Year2000 - Date Modified2006-08-13T06:37:30Z - Date Added2009-10-03T14:57:06Z - Bit Rate192 - Sample Rate44100 - Normalization3775 - Artwork Count1 - Persistent ID4998F9CD4BEE70E9 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Duke%20Ellington%20&%20His%20Washingtonians/Ken%20Burns%20Jazz_%20Duke%20Ellington/01%20East%20St.%20Louis%20Toodle-Oo.m4a - File Folder Count4 - Library Folder Count1 - - 4460 - - Track ID4460 - NameBlack And Tan Fantasy - ArtistDuke Ellington & His Washingtonians - ComposerEllington, E. K. - Miley, J. - AlbumKen Burns Jazz: Duke Ellington - GenreJazz - KindAAC audio file - Size5016210 - Total Time206656 - Disc Number1 - Disc Count1 - Track Number2 - Track Count21 - Year2000 - Date Modified2006-08-13T06:37:28Z - Date Added2009-10-03T14:57:06Z - Bit Rate192 - Sample Rate44100 - Normalization1241 - Artwork Count1 - Persistent ID6BADCFF065308795 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Duke%20Ellington%20&%20His%20Washingtonians/Ken%20Burns%20Jazz_%20Duke%20Ellington/02%20Black%20And%20Tan%20Fantasy.m4a - File Folder Count4 - Library Folder Count1 - - 4462 - - Track ID4462 - NameTake It Easy - ArtistDuke Ellington & His Orchestra - ComposerEllington, E. K. - AlbumKen Burns Jazz: Duke Ellington - GenreJazz - KindAAC audio file - Size3839926 - Total Time157685 - Disc Number1 - Disc Count1 - Track Number3 - Track Count21 - Year2000 - Date Modified2006-08-13T06:37:24Z - Date Added2009-10-03T14:57:06Z - Bit Rate192 - Sample Rate44100 - Normalization1036 - Artwork Count1 - Persistent ID71851DD102D1B6D9 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Duke%20Ellington%20&%20His%20Orchestra/Ken%20Burns%20Jazz_%20Duke%20Ellington/03%20Take%20It%20Easy.m4a - File Folder Count4 - Library Folder Count1 - - 4464 - - Track ID4464 - NameThe Mooche - ArtistDuke Ellington & His Orchestra - ComposerEllington, E. K. - AlbumKen Burns Jazz: Duke Ellington - GenreJazz - KindAAC audio file - Size4765798 - Total Time196230 - Disc Number1 - Disc Count1 - Track Number4 - Track Count21 - Year2000 - Date Modified2006-08-13T06:37:24Z - Date Added2009-10-03T14:57:06Z - Bit Rate192 - Sample Rate44100 - Normalization2164 - Artwork Count1 - Sort NameMooche - Persistent IDFDC89FD0045FE092 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Duke%20Ellington%20&%20His%20Orchestra/Ken%20Burns%20Jazz_%20Duke%20Ellington/04%20The%20Mooche.m4a - File Folder Count4 - Library Folder Count1 - - 4466 - - Track ID4466 - NameRockin' In Rhythm - ArtistDuke Ellington & His Orchestra - ComposerEllington, E. K. - Carney, H. - AlbumKen Burns Jazz: Duke Ellington - GenreJazz - KindAAC audio file - Size4770258 - Total Time196416 - Disc Number1 - Disc Count1 - Track Number5 - Track Count21 - Year2000 - Date Modified2006-08-13T06:37:22Z - Date Added2009-10-03T14:57:06Z - Bit Rate192 - Sample Rate44100 - Normalization1573 - Artwork Count1 - Persistent IDF9F69E566B832373 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Duke%20Ellington%20&%20His%20Orchestra/Ken%20Burns%20Jazz_%20Duke%20Ellington/05%20Rockin'%20In%20Rhythm.m4a - File Folder Count4 - Library Folder Count1 - - 4468 - - Track ID4468 - NameMood Indigo - ArtistDuke Ellington & His Orchestra - ComposerEllington, E. K. - Bigard, B. - Mills, I. - AlbumKen Burns Jazz: Duke Ellington - GenreJazz - KindAAC audio file - Size4334027 - Total Time178258 - Disc Number1 - Disc Count1 - Track Number6 - Track Count21 - Year2000 - Date Modified2006-08-13T06:37:18Z - Date Added2009-10-03T14:57:07Z - Bit Rate192 - Sample Rate44100 - Normalization1174 - Artwork Count1 - Persistent ID04A330A590862A21 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Duke%20Ellington%20&%20His%20Orchestra/Ken%20Burns%20Jazz_%20Duke%20Ellington/06%20Mood%20Indigo.m4a - File Folder Count4 - Library Folder Count1 - - 4470 - - Track ID4470 - NameCreole Rhapsody - ArtistDuke Ellington & His Orchestra - ComposerEllington, E. K. - AlbumKen Burns Jazz: Duke Ellington - GenreJazz - KindAAC audio file - Size9459089 - Total Time390372 - Disc Number1 - Disc Count1 - Track Number7 - Track Count21 - Year2000 - Date Modified2006-08-13T06:37:16Z - Date Added2009-10-03T14:57:07Z - Bit Rate192 - Sample Rate44100 - Normalization998 - Artwork Count1 - Persistent IDBBA96D9EA825499D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Duke%20Ellington%20&%20His%20Orchestra/Ken%20Burns%20Jazz_%20Duke%20Ellington/07%20Creole%20Rhapsody.m4a - File Folder Count4 - Library Folder Count1 - - 4472 - - Track ID4472 - NameIt Don't Mean A Thing (If It Ain't Got That Swing) - ArtistDuke Ellington & His Orchestra - ComposerEllington, E. K. - AlbumKen Burns Jazz: Duke Ellington - GenreJazz - KindAAC audio file - Size4640317 - Total Time191005 - Disc Number1 - Disc Count1 - Track Number8 - Track Count21 - Year2000 - Date Modified2006-08-13T06:37:12Z - Date Added2009-10-03T14:57:07Z - Bit Rate192 - Sample Rate44100 - Normalization1978 - Artwork Count1 - Persistent ID490379CBEA85FFC4 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Duke%20Ellington%20&%20His%20Orchestra/Ken%20Burns%20Jazz_%20Duke%20Ellington/08%20It%20Don't%20Mean%20A%20Thing%20(If%20It%20Ain't%20Got%20That%20Swing).m4a - File Folder Count4 - Library Folder Count1 - - 4474 - - Track ID4474 - NameLove Call - ArtistDuke Ellington & His Orchestra - ComposerEllington, E. K. - AlbumKen Burns Jazz: Duke Ellington - GenreJazz - KindAAC audio file - Size6069089 - Total Time250193 - Disc Number1 - Disc Count1 - Track Number9 - Track Count21 - Year2000 - Date Modified2006-08-13T06:37:10Z - Date Added2009-10-03T14:57:07Z - Bit Rate192 - Sample Rate44100 - Normalization1258 - Artwork Count1 - Persistent IDED7A31BD35456547 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Duke%20Ellington%20&%20His%20Orchestra/Ken%20Burns%20Jazz_%20Duke%20Ellington/09%20Love%20Call.m4a - File Folder Count4 - Library Folder Count1 - - 4476 - - Track ID4476 - NameSophisticated Lady - ArtistDuke Ellington & His Orchestra - ComposerEllington, E. K. - AlbumKen Burns Jazz: Duke Ellington - GenreJazz - KindAAC audio file - Size4771936 - Total Time196485 - Disc Number1 - Disc Count1 - Track Number10 - Track Count21 - Year2000 - Date Modified2006-08-13T06:37:08Z - Date Added2009-10-03T14:57:07Z - Bit Rate192 - Sample Rate44100 - Normalization1142 - Artwork Count1 - Persistent ID4E60803BD5F1A6FA - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Duke%20Ellington%20&%20His%20Orchestra/Ken%20Burns%20Jazz_%20Duke%20Ellington/10%20Sophisticated%20Lady.m4a - File Folder Count4 - Library Folder Count1 - - 4478 - - Track ID4478 - NameSolitude - ArtistDuke Ellington & His Orchestra - ComposerEllington, E. K. - DeLange, E. - Mills, I. - AlbumKen Burns Jazz: Duke Ellington - GenreJazz - KindAAC audio file - Size4687636 - Total Time192979 - Disc Number1 - Disc Count1 - Track Number11 - Track Count21 - Year2000 - Date Modified2006-08-13T06:37:06Z - Date Added2009-10-03T14:57:07Z - Bit Rate192 - Sample Rate44100 - Normalization921 - Artwork Count1 - Persistent ID159496B3E6512FE4 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Duke%20Ellington%20&%20His%20Orchestra/Ken%20Burns%20Jazz_%20Duke%20Ellington/11%20Solitude.m4a - File Folder Count4 - Library Folder Count1 - - 4480 - - Track ID4480 - NameCaravan - ArtistDuke Ellington & His Orchestra - ComposerTizol, J. - Ellington, E. K. - AlbumKen Burns Jazz: Duke Ellington - GenreJazz - KindAAC audio file - Size3931986 - Total Time161516 - Disc Number1 - Disc Count1 - Track Number12 - Track Count21 - Year2000 - Date Modified2006-08-13T06:37:04Z - Date Added2009-10-03T14:57:07Z - Bit Rate192 - Sample Rate44100 - Normalization953 - Artwork Count1 - Persistent ID76E698E7672231FA - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Duke%20Ellington%20&%20His%20Orchestra/Ken%20Burns%20Jazz_%20Duke%20Ellington/12%20Caravan.m4a - File Folder Count4 - Library Folder Count1 - - 4482 - - Track ID4482 - NameBack Room Romp - ArtistDuke Ellington & His Orchestra - ComposerStewart, R. - Ellington, E. K. - AlbumKen Burns Jazz: Duke Ellington - GenreJazz - KindAAC audio file - Size4117634 - Total Time169248 - Disc Number1 - Disc Count1 - Track Number13 - Track Count21 - Year2000 - Date Modified2006-08-13T06:37:02Z - Date Added2009-10-03T14:57:07Z - Bit Rate192 - Sample Rate44100 - Normalization1343 - Artwork Count1 - Persistent IDFA204984A802DC0C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Duke%20Ellington%20&%20His%20Orchestra/Ken%20Burns%20Jazz_%20Duke%20Ellington/13%20Back%20Room%20Romp.m4a - File Folder Count4 - Library Folder Count1 - - 4484 - - Track ID4484 - NameKo-Ko - ArtistDuke Ellington & His Orchestra - ComposerEllington, E. K. - AlbumKen Burns Jazz: Duke Ellington - GenreJazz - KindAAC audio file - Size4006220 - Total Time164604 - Disc Number1 - Disc Count1 - Track Number14 - Track Count21 - Year2000 - Date Modified2006-08-13T06:37:00Z - Date Added2009-10-03T14:57:08Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3435930204 - Play Date UTC2012-11-16T11:33:24Z - Normalization1329 - Artwork Count1 - Persistent ID2887944BFB04FC8F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Duke%20Ellington%20&%20His%20Orchestra/Ken%20Burns%20Jazz_%20Duke%20Ellington/14%20Ko-Ko.m4a - File Folder Count4 - Library Folder Count1 - - 4486 - - Track ID4486 - NameNever No Lament (Aka Don't Get Around Much Anymore) - ArtistDuke Ellington & His Orchestra - ComposerRussell, B. - Ellington, E. K. - AlbumKen Burns Jazz: Duke Ellington - GenreJazz - KindAAC audio file - Size4286108 - Total Time176261 - Disc Number1 - Disc Count1 - Track Number15 - Track Count21 - Year2000 - Date Modified2006-08-13T06:36:58Z - Date Added2009-10-03T14:57:08Z - Bit Rate192 - Sample Rate44100 - Normalization2110 - Artwork Count1 - Persistent ID8C40B8384B1962BB - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Duke%20Ellington%20&%20His%20Orchestra/Ken%20Burns%20Jazz_%20Duke%20Ellington/15%20Never%20No%20Lament%20(Aka%20Don't%20Get%20Around%20Much%20Anymore).m4a - File Folder Count4 - Library Folder Count1 - - 4488 - - Track ID4488 - NameCotton Tail - ArtistDuke Ellington & His Orchestra - ComposerEllington, E. K. - AlbumKen Burns Jazz: Duke Ellington - GenreJazz - KindAAC audio file - Size4634693 - Total Time190773 - Disc Number1 - Disc Count1 - Track Number16 - Track Count21 - Year2000 - Date Modified2006-08-13T06:36:56Z - Date Added2009-10-03T14:57:08Z - Bit Rate192 - Sample Rate44100 - Normalization1776 - Artwork Count1 - Persistent ID247D9489708464F2 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Duke%20Ellington%20&%20His%20Orchestra/Ken%20Burns%20Jazz_%20Duke%20Ellington/16%20Cotton%20Tail.m4a - File Folder Count4 - Library Folder Count1 - - 4490 - - Track ID4490 - NameTake The 'a' Train - ArtistDuke Ellington & His Orchestra - ComposerStrayhorn, W. - AlbumKen Burns Jazz: Duke Ellington - GenreJazz - KindAAC audio file - Size4246580 - Total Time174612 - Disc Number1 - Disc Count1 - Track Number17 - Track Count21 - Year2000 - Date Modified2006-08-13T06:36:54Z - Date Added2009-10-03T14:57:08Z - Bit Rate192 - Sample Rate44100 - Normalization1509 - Artwork Count1 - Persistent IDC449289CBC347E55 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Duke%20Ellington%20&%20His%20Orchestra/Ken%20Burns%20Jazz_%20Duke%20Ellington/17%20Take%20The%20'a'%20Train.m4a - File Folder Count4 - Library Folder Count1 - - 4492 - - Track ID4492 - NameSatin Doll - ArtistDuke Ellington & His Orchestra - ComposerEllington, E. K. - AlbumKen Burns Jazz: Duke Ellington - GenreJazz - KindAAC audio file - Size4369783 - Total Time179744 - Disc Number1 - Disc Count1 - Track Number18 - Track Count21 - Year2000 - Date Modified2006-08-13T06:36:52Z - Date Added2009-10-03T14:57:08Z - Bit Rate192 - Sample Rate44100 - Normalization1488 - Artwork Count1 - Persistent ID171433FC05D37A85 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Duke%20Ellington%20&%20His%20Orchestra/Ken%20Burns%20Jazz_%20Duke%20Ellington/18%20Satin%20Doll.m4a - File Folder Count4 - Library Folder Count1 - - 4494 - - Track ID4494 - NameJeep's Blues - ArtistDuke Ellington & His Orchestra - ComposerEllington, E. K. - Hodges, J. - AlbumKen Burns Jazz: Duke Ellington - GenreJazz - KindAAC audio file - Size6845779 - Total Time282376 - Disc Number1 - Disc Count1 - Track Number19 - Track Count21 - Year2000 - Date Modified2006-08-13T06:36:50Z - Date Added2009-10-03T14:57:08Z - Bit Rate192 - Sample Rate44100 - Normalization1103 - Artwork Count1 - Persistent ID7827317639025505 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Duke%20Ellington%20&%20His%20Orchestra/Ken%20Burns%20Jazz_%20Duke%20Ellington/19%20Jeep's%20Blues.m4a - File Folder Count4 - Library Folder Count1 - - 4496 - - Track ID4496 - NameCome Sunday - ArtistDuke Ellington & His Orchestra - ComposerEllington, E. K. - AlbumKen Burns Jazz: Duke Ellington - GenreJazz - KindAAC audio file - Size8464535 - Total Time349273 - Disc Number1 - Disc Count1 - Track Number20 - Track Count21 - Year2000 - Date Modified2006-08-13T06:36:48Z - Date Added2009-10-03T14:57:08Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3428047076 - Play Date UTC2012-08-17T05:47:56Z - Normalization887 - Artwork Count1 - Persistent ID73689687DF64C555 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Duke%20Ellington%20&%20His%20Orchestra/Ken%20Burns%20Jazz_%20Duke%20Ellington/20%20Come%20Sunday.m4a - File Folder Count4 - Library Folder Count1 - - 4498 - - Track ID4498 - NameBlack Beauty - ArtistDuke Ellington & His Orchestra - ComposerEllington, E. K. - AlbumKen Burns Jazz: Duke Ellington - GenreJazz - KindAAC audio file - Size4790687 - Total Time197298 - Disc Number1 - Disc Count1 - Track Number21 - Track Count21 - Year2000 - Date Modified2006-08-13T06:36:44Z - Date Added2009-10-03T14:57:08Z - Bit Rate192 - Sample Rate44100 - Normalization1256 - Artwork Count1 - Persistent ID62707B19B245899F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Duke%20Ellington%20&%20His%20Orchestra/Ken%20Burns%20Jazz_%20Duke%20Ellington/21%20Black%20Beauty.m4a - File Folder Count4 - Library Folder Count1 - - 4500 - - Track ID4500 - NameNenarunchara - ArtistDK Jayaraman - ComposerThyagaraja - AlbumCarnatic Classical - Vocal-Ms-0206 - GenreCarnatic - KindAAC audio file - Size10467416 - Total Time430171 - Track Number1 - Track Count6 - Date Modified2007-12-02T16:27:05Z - Date Added2009-10-03T14:57:09Z - Bit Rate192 - Sample Rate44100 - CommentsRaga: Simhavahini Tala: Adi - Normalization830 - Artwork Count1 - Persistent ID37F1DBB2596C3E0D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/DK%20Jayaraman/Carnatic%20Classical%20-%20Vocal-Ms-0206/01%20Nenarunchara.m4a - File Folder Count4 - Library Folder Count1 - - 4502 - - Track ID4502 - NameKulabirudulu (Raga: Devamanohari Tala: Rupakam) - ArtistDK Jayaraman - ComposerThyagaraja - AlbumCarnatic Classical - Vocal-Ms-0206 - GenreCarnatic - KindAAC audio file - Size8566960 - Total Time351641 - Track Number2 - Track Count6 - Date Modified2007-12-14T03:35:09Z - Date Added2009-10-03T14:57:09Z - Bit Rate192 - Sample Rate44100 - CommentsRaga: Devamanohari Tala: Rupakam - Normalization623 - Artwork Count1 - Persistent ID62B3227A004A13B4 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/DK%20Jayaraman/Carnatic%20Classical%20-%20Vocal-Ms-0206/02%20Kulabirudulu%20(Raga_%20Devamanohari%20Tala_%20Rupakam).m4a - File Folder Count4 - Library Folder Count1 - - 4504 - - Track ID4504 - NameEkambreshanayike - ArtistDK Jayaraman - ComposerDikshitar - AlbumCarnatic Classical - Vocal-Ms-0206 - GenreCarnatic - KindAAC audio file - Size11755840 - Total Time483414 - Track Number3 - Track Count6 - Date Modified2007-12-12T07:28:52Z - Date Added2009-10-03T14:57:09Z - Bit Rate192 - Sample Rate44100 - CommentsRaga: Karnataka Suddha Saveri Tala: Adi - Normalization476 - Artwork Count1 - Persistent ID5F82829DE25E467B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/DK%20Jayaraman/Carnatic%20Classical%20-%20Vocal-Ms-0206/03%20Ekambreshanayike.m4a - File Folder Count4 - Library Folder Count1 - - 4506 - - Track ID4506 - NameSharade (Raga: Devagandhari Tala: Adi) - ArtistDK Jayaraman - ComposerPapanasam Sivan - AlbumCarnatic Classical - Vocal-Ms-0206 - GenreCarnatic - KindAAC audio file - Size14495019 - Total Time597006 - Track Number4 - Track Count6 - Date Modified2007-12-14T03:29:59Z - Date Added2009-10-03T14:57:09Z - Bit Rate192 - Sample Rate44100 - CommentsRaga: Devagandhari Tala: Adi - Normalization654 - Artwork Count1 - Persistent ID14B83B214C6F20B3 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/DK%20Jayaraman/Carnatic%20Classical%20-%20Vocal-Ms-0206/04%20Sharade%20(Raga_%20Devagandhari%20Tala_%20Adi).m4a - File Folder Count4 - Library Folder Count1 - - 4508 - - Track ID4508 - NameParvathininnu - ArtistDK Jayaraman - ComposerShyama Sastri - AlbumCarnatic Classical - Vocal-Ms-0206 - GenreCarnatic - KindAAC audio file - Size5411654 - Total Time220936 - Track Number5 - Track Count6 - Date Modified2007-12-12T07:29:32Z - Date Added2009-10-03T14:57:09Z - Bit Rate192 - Sample Rate44100 - CommentsRaga: Kalkada Tala: Tisragathi Adi - Normalization813 - Artwork Count1 - Persistent ID01498DCAD37F60B4 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/DK%20Jayaraman/Carnatic%20Classical%20-%20Vocal-Ms-0206/05%20Parvathininnu.m4a - File Folder Count4 - Library Folder Count1 - - 4510 - - Track ID4510 - NameSri Subrahmanyo (Raga: Todi Tala: Adi) - ArtistDK Jayaraman - ComposerDikshitar - AlbumCarnatic Classical - Vocal-Ms-0206 - GenreCarnatic - KindAAC audio file - Size39198806 - Total Time1617500 - Track Number6 - Track Count6 - Date Modified2007-12-14T16:16:59Z - Date Added2009-10-03T14:57:09Z - Bit Rate192 - Sample Rate44100 - CommentsRaga: Todi Tala: Adi - Normalization1259 - Artwork Count1 - Persistent IDA16C2EBD59E2CC0C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/DK%20Jayaraman/Carnatic%20Classical%20-%20Vocal-Ms-0206/06%20Sri%20Subrahmanyo%20(Raga_%20Todi%20Tala_%20Adi).m4a - File Folder Count4 - Library Folder Count1 - - 4512 - - Track ID4512 - NameEnchanted - ArtistDelerium - ComposerBill Leeb and Rhys Fulber - AlbumKarma (Disc 1) - GenreElectronica/Dance - KindAAC audio file - Size12385851 - Total Time510744 - Disc Number1 - Disc Count2 - Track Number1 - Track Count11 - Year1997 - Date Modified2006-08-07T08:32:58Z - Date Added2009-10-03T14:57:10Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3360253116 - Play Date UTC2010-06-24T14:08:36Z - Normalization1256 - Artwork Count1 - Persistent IDE5EAA10A2AE2A239 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Delerium/Karma%20(Disc%201)/1-01%20Enchanted.m4a - File Folder Count4 - Library Folder Count1 - - 4514 - - Track ID4514 - NameDuende - ArtistDelerium - ComposerBill Leeb and Rhys Fulber - AlbumKarma (Disc 1) - GenreElectronica/Dance - KindAAC audio file - Size7839616 - Total Time322872 - Disc Number1 - Disc Count2 - Track Number2 - Track Count11 - Year1997 - Date Modified2006-08-07T08:32:58Z - Date Added2009-10-03T14:57:10Z - Bit Rate192 - Sample Rate44100 - Normalization1786 - Artwork Count1 - Persistent IDFC3079F83FB52228 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Delerium/Karma%20(Disc%201)/1-02%20Duende.m4a - File Folder Count4 - Library Folder Count1 - - 4516 - - Track ID4516 - NameTwilight - ArtistDelerium - ComposerBill Leeb and Rhys Fulber - AlbumKarma (Disc 1) - GenreElectronica/Dance - KindAAC audio file - Size8912581 - Total Time367222 - Disc Number1 - Disc Count2 - Track Number3 - Track Count11 - Year1997 - Date Modified2006-08-07T08:33:00Z - Date Added2009-10-03T14:57:10Z - Bit Rate192 - Sample Rate44100 - Normalization1256 - Artwork Count1 - Persistent ID4AFC562DF86AB9A5 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Delerium/Karma%20(Disc%201)/1-03%20Twilight.m4a - File Folder Count4 - Library Folder Count1 - - 4518 - - Track ID4518 - NameSilence - ArtistDelerium - ComposerBill Leeb and Rhys Fulber - AlbumKarma (Disc 1) - GenreElectronica/Dance - KindAAC audio file - Size9544893 - Total Time393344 - Disc Number1 - Disc Count2 - Track Number4 - Track Count11 - Year1997 - Date Modified2006-08-07T08:33:00Z - Date Added2009-10-03T14:57:10Z - Bit Rate192 - Sample Rate44100 - Normalization1786 - Artwork Count1 - Persistent ID8672D9248B82F691 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Delerium/Karma%20(Disc%201)/1-04%20Silence.m4a - File Folder Count4 - Library Folder Count1 - - 4520 - - Track ID4520 - NameForgotten Worlds - ArtistDelerium - ComposerBill Leeb and Rhys Fulber - AlbumKarma (Disc 1) - GenreElectronica/Dance - KindAAC audio file - Size10974852 - Total Time452439 - Disc Number1 - Disc Count2 - Track Number5 - Track Count11 - Year1997 - Date Modified2006-08-07T08:33:00Z - Date Added2009-10-03T14:57:10Z - Bit Rate192 - Sample Rate44100 - Normalization1256 - Artwork Count1 - Persistent ID7CA14B3A275E9EE8 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Delerium/Karma%20(Disc%201)/1-05%20Forgotten%20Worlds.m4a - File Folder Count4 - Library Folder Count1 - - 4522 - - Track ID4522 - NameLamentation - ArtistDelerium - ComposerBill Leeb and Rhys Fulber - AlbumKarma (Disc 1) - GenreElectronica/Dance - KindAAC audio file - Size12454476 - Total Time513577 - Disc Number1 - Disc Count2 - Track Number6 - Track Count11 - Year1997 - Date Modified2006-08-07T08:33:00Z - Date Added2009-10-03T14:57:10Z - Bit Rate192 - Sample Rate44100 - Normalization1256 - Artwork Count1 - Persistent ID274354EE5D8EB5F8 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Delerium/Karma%20(Disc%201)/1-06%20Lamentation.m4a - File Folder Count4 - Library Folder Count1 - - 4524 - - Track ID4524 - NameEuphoria (Firefly) - ArtistDelerium - ComposerBill Leeb and Rhys Fulber - AlbumKarma (Disc 1) - GenreElectronica/Dance - KindAAC audio file - Size7957376 - Total Time327748 - Disc Number1 - Disc Count2 - Track Number7 - Track Count11 - Year1997 - Date Modified2006-08-07T08:33:00Z - Date Added2009-10-03T14:57:10Z - Bit Rate192 - Sample Rate44100 - Normalization1936 - Artwork Count1 - Persistent IDE7D06D3892CB0224 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Delerium/Karma%20(Disc%201)/1-07%20Euphoria%20(Firefly).m4a - File Folder Count4 - Library Folder Count1 - - 4526 - - Track ID4526 - NameRemembrance - ArtistDelerium - ComposerBill Leeb and Rhys Fulber - AlbumKarma (Disc 1) - GenreElectronica/Dance - KindAAC audio file - Size10884008 - Total Time448677 - Disc Number1 - Disc Count2 - Track Number8 - Track Count11 - Year1997 - Date Modified2006-08-07T08:33:00Z - Date Added2009-10-03T14:57:11Z - Bit Rate192 - Sample Rate44100 - Normalization1324 - Artwork Count1 - Persistent ID1E31A3866180B1DF - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Delerium/Karma%20(Disc%201)/1-08%20Remembrance.m4a - File Folder Count4 - Library Folder Count1 - - 4528 - - Track ID4528 - NameWisdom - ArtistDelerium - ComposerBill Leeb and Rhys Fulber - AlbumKarma (Disc 1) - GenreElectronica/Dance - KindAAC audio file - Size7012858 - Total Time288715 - Disc Number1 - Disc Count2 - Track Number9 - Track Count11 - Year1997 - Date Modified2006-08-07T08:33:00Z - Date Added2009-10-03T14:57:11Z - Bit Rate192 - Sample Rate44100 - Normalization1392 - Artwork Count1 - Persistent ID47F69DA54A8E458A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Delerium/Karma%20(Disc%201)/1-09%20Wisdom.m4a - File Folder Count4 - Library Folder Count1 - - 4530 - - Track ID4530 - NameWindow To Your Soul - ArtistDelerium - ComposerBill Leeb and Rhys Fulber - AlbumKarma (Disc 1) - GenreElectronica/Dance - KindAAC audio file - Size14688995 - Total Time605923 - Disc Number1 - Disc Count2 - Track Number10 - Track Count11 - Year1997 - Date Modified2006-08-07T08:33:02Z - Date Added2009-10-03T14:57:11Z - Bit Rate192 - Sample Rate44100 - Normalization1256 - Artwork Count1 - Persistent IDE34B1AF8D6E3D008 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Delerium/Karma%20(Disc%201)/1-10%20Window%20To%20Your%20Soul.m4a - File Folder Count4 - Library Folder Count1 - - 4532 - - Track ID4532 - Name'Til The End Of Time - ArtistDelerium - ComposerBill Leeb and Rhys Fulber - AlbumKarma (Disc 1) - GenreElectronica/Dance - KindAAC audio file - Size6704827 - Total Time276014 - Disc Number1 - Disc Count2 - Track Number11 - Track Count11 - Year1997 - Date Modified2006-08-07T08:33:02Z - Date Added2009-10-03T14:57:11Z - Bit Rate192 - Sample Rate44100 - Normalization1362 - Artwork Count1 - Persistent IDB1DF3F83C644E45F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Delerium/Karma%20(Disc%201)/1-11%20'Til%20The%20End%20Of%20Time.m4a - File Folder Count4 - Library Folder Count1 - - 4534 - - Track ID4534 - NameAnasthasia - ArtistDeep Forest - ComposerEric Mouquet, Michel Sanchez - AlbumBoheme - GenreWorld - KindAAC audio file - Size2741027 - Total Time108482 - Disc Number1 - Disc Count1 - Track Number1 - Track Count12 - Year1995 - Date Modified2006-08-07T06:40:38Z - Date Added2009-10-03T14:57:11Z - Bit Rate192 - Sample Rate44100 - Rating40 - Rating Computed - Album Rating40 - Normalization1202 - Artwork Count1 - Persistent ID0266154AE3FA6EAB - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Deep%20Forest/Boheme/01%20Anasthasia.m4a - File Folder Count4 - Library Folder Count1 - - 4536 - - Track ID4536 - NameBohemian Ballet - ArtistDeep Forest - ComposerEric Mouquet, Michel Sanchez - AlbumBoheme - GenreWorld - KindAAC audio file - Size7731672 - Total Time317508 - Disc Number1 - Disc Count1 - Track Number2 - Track Count12 - Year1995 - Date Modified2006-08-07T06:40:38Z - Date Added2009-10-03T14:57:11Z - Bit Rate192 - Sample Rate44100 - Rating40 - Rating Computed - Album Rating40 - Normalization2220 - Artwork Count1 - Persistent IDD45BAC9C513A222C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Deep%20Forest/Boheme/02%20Bohemian%20Ballet.m4a - File Folder Count4 - Library Folder Count1 - - 4538 - - Track ID4538 - NameMarta's Song - ArtistDeep Forest - ComposerEric Mouquet, Michel Sanchez - AlbumBoheme - GenreWorld - KindAAC audio file - Size6210038 - Total Time252608 - Disc Number1 - Disc Count1 - Track Number3 - Track Count12 - Year1995 - Date Modified2006-08-07T06:40:38Z - Date Added2009-10-03T14:57:12Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3441736576 - Play Date UTC2013-01-22T16:26:16Z - Rating40 - Rating Computed - Album Rating40 - Normalization1519 - Artwork Count1 - Persistent ID8B8F63BAA8906E8D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Deep%20Forest/Boheme/03%20Marta's%20Song.m4a - File Folder Count4 - Library Folder Count1 - - 4540 - - Track ID4540 - NameGathering - ArtistDeep Forest - ComposerEric Mouquet, Michel Sanchez - AlbumBoheme - GenreWorld - KindAAC audio file - Size6831353 - Total Time279334 - Disc Number1 - Disc Count1 - Track Number4 - Track Count12 - Year1995 - Date Modified2006-08-07T06:40:38Z - Date Added2009-10-03T14:57:12Z - Bit Rate192 - Sample Rate44100 - Rating40 - Rating Computed - Album Rating40 - Normalization2306 - Artwork Count1 - Persistent IDAA91A7833835F57C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Deep%20Forest/Boheme/04%20Gathering.m4a - File Folder Count4 - Library Folder Count1 - - 4542 - - Track ID4542 - NameLament - ArtistDeep Forest - ComposerEric Mouquet, Michel Sanchez - AlbumBoheme - GenreWorld - KindAAC audio file - Size4704572 - Total Time189914 - Disc Number1 - Disc Count1 - Track Number5 - Track Count12 - Year1995 - Date Modified2006-08-07T06:40:38Z - Date Added2009-10-03T14:57:12Z - Bit Rate192 - Sample Rate44100 - Rating40 - Rating Computed - Album Rating40 - Normalization2020 - Artwork Count1 - Persistent IDE4D11D5B41CE65CA - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Deep%20Forest/Boheme/05%20Lament.m4a - File Folder Count4 - Library Folder Count1 - - 4544 - - Track ID4544 - NameBulgarian Melody - ArtistDeep Forest - ComposerEric Mouquet, Michel Sanchez - AlbumBoheme - GenreWorld - KindAAC audio file - Size4661946 - Total Time188149 - Disc Number1 - Disc Count1 - Track Number6 - Track Count12 - Year1995 - Date Modified2006-08-07T06:40:38Z - Date Added2009-10-03T14:57:12Z - Bit Rate192 - Sample Rate44100 - Rating40 - Rating Computed - Album Rating40 - Normalization1202 - Artwork Count1 - Persistent IDE133488328008F5B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Deep%20Forest/Boheme/06%20Bulgarian%20Melody.m4a - File Folder Count4 - Library Folder Count1 - - 4546 - - Track ID4546 - NameDeep Folk Song - ArtistDeep Forest - ComposerEric Mouquet, Michel Sanchez - AlbumBoheme - GenreWorld - KindAAC audio file - Size1933328 - Total Time74534 - Disc Number1 - Disc Count1 - Track Number7 - Track Count12 - Year1995 - Date Modified2006-08-07T06:40:38Z - Date Added2009-10-03T14:57:12Z - Bit Rate192 - Sample Rate44100 - Rating40 - Rating Computed - Album Rating40 - Normalization1202 - Artwork Count1 - Persistent ID042AE4184165DCC8 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Deep%20Forest/Boheme/07%20Deep%20Folk%20Song.m4a - File Folder Count4 - Library Folder Count1 - - 4548 - - Track ID4548 - NameFreedom Cry - ArtistDeep Forest - ComposerEric Mouquet, Michel Sanchez - AlbumBoheme - GenreWorld - KindAAC audio file - Size4879241 - Total Time199968 - Disc Number1 - Disc Count1 - Track Number8 - Track Count12 - Year1995 - Date Modified2006-08-07T06:40:38Z - Date Added2009-10-03T14:57:12Z - Bit Rate192 - Sample Rate44100 - Rating40 - Rating Computed - Album Rating40 - Normalization1804 - Artwork Count1 - Persistent ID2E59D8976C34831C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Deep%20Forest/Boheme/08%20Freedom%20Cry.m4a - File Folder Count4 - Library Folder Count1 - - 4550 - - Track ID4550 - NameTwosome - ArtistDeep Forest - ComposerEric Mouquet, Michel Sanchez - AlbumBoheme - GenreWorld - KindAAC audio file - Size6060881 - Total Time247221 - Disc Number1 - Disc Count1 - Track Number9 - Track Count12 - Year1995 - Date Modified2006-08-07T06:40:38Z - Date Added2009-10-03T14:57:12Z - Bit Rate192 - Sample Rate44100 - Rating40 - Rating Computed - Album Rating40 - Normalization1510 - Artwork Count1 - Persistent ID377181C023F2CB71 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Deep%20Forest/Boheme/09%20Twosome.m4a - File Folder Count4 - Library Folder Count1 - - 4552 - - Track ID4552 - NameCafé Europa - ArtistDeep Forest - ComposerEric Mouquet, Michel Sanchez - AlbumBoheme - GenreWorld - KindAAC audio file - Size6336610 - Total Time257856 - Disc Number1 - Disc Count1 - Track Number10 - Track Count12 - Year1995 - Date Modified2006-08-07T06:40:38Z - Date Added2009-10-03T14:57:12Z - Bit Rate192 - Sample Rate44100 - Rating40 - Rating Computed - Album Rating40 - Normalization1343 - Artwork Count1 - Persistent ID314631390F4B1E27 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Deep%20Forest/Boheme/10%20Cafe%CC%81%20Europa.m4a - File Folder Count4 - Library Folder Count1 - - 4554 - - Track ID4554 - NameKatharina - ArtistDeep Forest - ComposerEric Mouquet, Michel Sanchez - AlbumBoheme - GenreWorld - KindAAC audio file - Size4301728 - Total Time173149 - Disc Number1 - Disc Count1 - Track Number11 - Track Count12 - Year1995 - Date Modified2006-08-07T06:40:38Z - Date Added2009-10-03T14:57:13Z - Bit Rate192 - Sample Rate44100 - Rating40 - Rating Computed - Album Rating40 - Normalization1345 - Artwork Count1 - Persistent IDA94131EB41219CAF - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Deep%20Forest/Boheme/11%20Katharina.m4a - File Folder Count4 - Library Folder Count1 - - 4556 - - Track ID4556 - NameBoheme - ArtistDeep Forest - ComposerEric Mouquet, Michel Sanchez - AlbumBoheme - GenreWorld - KindAAC audio file - Size6784539 - Total Time276617 - Disc Number1 - Disc Count1 - Track Number12 - Track Count12 - Year1995 - Date Modified2006-08-07T06:40:36Z - Date Added2009-10-03T14:57:13Z - Bit Rate192 - Sample Rate44100 - Rating40 - Rating Computed - Album Rating40 - Normalization1767 - Artwork Count1 - Persistent ID25C46E56F92C9B68 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Deep%20Forest/Boheme/12%20Boheme.m4a - File Folder Count4 - Library Folder Count1 - - 4558 - - Track ID4558 - NameRang De Basanti - ArtistDaler Mehndi, Chitra - ComposerA R Rahman - AlbumRang De Basanti - GenreSoundtracks - KindAAC audio file - Size8792366 - Total Time363832 - Track Number2 - Date Modified2007-04-09T09:37:40Z - Date Added2009-10-03T14:57:13Z - Bit Rate192 - Sample Rate44100 - Normalization4668 - Artwork Count1 - Sort ComposerR Rahman - Persistent ID427A24DDD2701A65 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Daler%20Mehndi,%20Chitra/Rang%20De%20Basanti/02%20Rang%20De%20Basanti.m4a - File Folder Count4 - Library Folder Count1 - - 4560 - - Track ID4560 - NameRang De Basanti - ArtistDaler Mehndi, Chitra - ComposerA R Rahman - AlbumRang De Basanti - GenreSoundtracks - KindAAC audio file - Size8788208 - Total Time363810 - Track Number2 - Date Modified2007-07-27T06:37:18Z - Date Added2009-10-03T14:57:13Z - Bit Rate192 - Sample Rate44100 - Normalization4668 - Sort ComposerR Rahman - Persistent ID40EB201D33462C55 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Daler%20Mehndi,%20Chitra/Rang%20De%20Basanti/02%20Rang%20De%20Basanti%201.m4a - File Folder Count4 - Library Folder Count1 - - 4562 - - Track ID4562 - NameRang De Basanti - ArtistDaler Mehndi, Chitra - ComposerA R Rahman - AlbumRang De Basanti - GenreSoundtracks - KindAAC audio file - Size8788215 - Total Time363832 - Track Number2 - Date Modified2006-12-27T10:34:44Z - Date Added2009-10-03T14:57:13Z - Bit Rate192 - Sample Rate44100 - Normalization4668 - Sort ComposerR Rahman - Persistent ID8F0453713C474076 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Daler%20Mehndi,%20Chitra/Rang%20De%20Basanti/02%20Rang%20De%20Basanti%202.m4a - File Folder Count4 - Library Folder Count1 - - 4564 - - Track ID4564 - NameRang De Basanti - ArtistDaler Mehndi, Chitra - ComposerA R Rahman - AlbumRang De Basanti - GenreSoundtracks - KindAAC audio file - Size8745909 - Total Time363810 - Track Number2 - Date Modified2007-12-02T08:05:09Z - Date Added2009-10-03T14:57:13Z - Bit Rate190 - Sample Rate44100 - Normalization4668 - Sort ComposerR Rahman - Persistent ID39D5F2511C6B5E85 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Daler%20Mehndi,%20Chitra/Rang%20De%20Basanti/02%20Rang%20De%20Basanti%203.m4a - File Folder Count4 - Library Folder Count1 - - 4566 - - Track ID4566 - NameGod Shuffled His Feet - ArtistCrash Test Dummies - ComposerBrad Roberts - AlbumGod Shuffled His Feet - GenreAlternative & Punk - KindAAC audio file - Size7538532 - Total Time310495 - Disc Number1 - Disc Count1 - Track Number1 - Track Count12 - Year1993 - Date Modified2006-07-27T16:19:00Z - Date Added2009-10-03T14:57:13Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3360253487 - Play Date UTC2010-06-24T14:14:47Z - Skip Count1 - Skip Date2014-05-16T15:38:55Z - Normalization3377 - Artwork Count1 - Persistent ID84AB5B8C75DA415F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Crash%20Test%20Dummies/God%20Shuffled%20His%20Feet/01%20God%20Shuffled%20His%20Feet.m4a - File Folder Count4 - Library Folder Count1 - - 4568 - - Track ID4568 - NameAfternoons And Coffeespoons - ArtistCrash Test Dummies - ComposerBrad Roberts - AlbumGod Shuffled His Feet - GenreAlternative & Punk - KindAAC audio file - Size5754546 - Total Time235936 - Disc Number1 - Disc Count1 - Track Number2 - Track Count12 - Year1993 - Date Modified2006-07-27T16:19:00Z - Date Added2009-10-03T14:57:14Z - Bit Rate192 - Sample Rate44100 - Normalization3204 - Artwork Count1 - Persistent IDF8D901F3D02C90AA - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Crash%20Test%20Dummies/God%20Shuffled%20His%20Feet/02%20Afternoons%20And%20Coffeespoons.m4a - File Folder Count4 - Library Folder Count1 - - 4570 - - Track ID4570 - NameMmm Mmm Mmm Mmm - ArtistCrash Test Dummies - ComposerBrad Roberts - AlbumGod Shuffled His Feet - GenreAlternative & Punk - KindAAC audio file - Size5736923 - Total Time235193 - Disc Number1 - Disc Count1 - Track Number3 - Track Count12 - Year1993 - Date Modified2006-07-27T16:19:00Z - Date Added2009-10-03T14:57:14Z - Bit Rate192 - Sample Rate44100 - Normalization2251 - Artwork Count1 - Persistent ID2A017CA67C79A3DE - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Crash%20Test%20Dummies/God%20Shuffled%20His%20Feet/03%20Mmm%20Mmm%20Mmm%20Mmm.m4a - File Folder Count4 - Library Folder Count1 - - 4572 - - Track ID4572 - NameIn The Days Of The Caveman - ArtistCrash Test Dummies - ComposerBrad Roberts - AlbumGod Shuffled His Feet - GenreAlternative & Punk - KindAAC audio file - Size5383706 - Total Time220495 - Disc Number1 - Disc Count1 - Track Number4 - Track Count12 - Year1993 - Date Modified2006-07-27T16:19:02Z - Date Added2009-10-03T14:57:14Z - Bit Rate192 - Sample Rate44100 - Normalization2887 - Artwork Count1 - Persistent ID24BE71F31B440151 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Crash%20Test%20Dummies/God%20Shuffled%20His%20Feet/04%20In%20The%20Days%20Of%20The%20Caveman.m4a - File Folder Count4 - Library Folder Count1 - - 4574 - - Track ID4574 - NameSwimming In Your Ocean - ArtistCrash Test Dummies - ComposerBrad Roberts - AlbumGod Shuffled His Feet - GenreAlternative & Punk - KindAAC audio file - Size5589911 - Total Time229086 - Disc Number1 - Disc Count1 - Track Number5 - Track Count12 - Year1993 - Date Modified2006-07-27T16:19:02Z - Date Added2009-10-03T14:57:14Z - Bit Rate192 - Sample Rate44100 - Normalization2487 - Artwork Count1 - Persistent ID6D0DB2951E782900 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Crash%20Test%20Dummies/God%20Shuffled%20His%20Feet/05%20Swimming%20In%20Your%20Ocean.m4a - File Folder Count4 - Library Folder Count1 - - 4576 - - Track ID4576 - NameHere I Stand Before Me - ArtistCrash Test Dummies - ComposerBrad Roberts - AlbumGod Shuffled His Feet - GenreAlternative & Punk - KindAAC audio file - Size4570558 - Total Time186640 - Disc Number1 - Disc Count1 - Track Number6 - Track Count12 - Year1993 - Date Modified2006-07-27T16:19:02Z - Date Added2009-10-03T14:57:14Z - Bit Rate192 - Sample Rate44100 - Normalization5096 - Artwork Count1 - Persistent ID6245505E2DE84B12 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Crash%20Test%20Dummies/God%20Shuffled%20His%20Feet/06%20Here%20I%20Stand%20Before%20Me.m4a - File Folder Count4 - Library Folder Count1 - - 4578 - - Track ID4578 - NameI Think I'll Disappear Now - ArtistCrash Test Dummies - ComposerBrad Roberts - AlbumGod Shuffled His Feet - GenreAlternative & Punk - KindAAC audio file - Size7109370 - Total Time292152 - Disc Number1 - Disc Count1 - Track Number7 - Track Count12 - Year1993 - Date Modified2006-07-27T16:19:04Z - Date Added2009-10-03T14:57:14Z - Bit Rate192 - Sample Rate44100 - Normalization3863 - Artwork Count1 - Persistent ID7B945259794F9A44 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Crash%20Test%20Dummies/God%20Shuffled%20His%20Feet/07%20I%20Think%20I'll%20Disappear%20Now.m4a - File Folder Count4 - Library Folder Count1 - - 4580 - - Track ID4580 - NameHow Does A Duck Know - ArtistCrash Test Dummies - ComposerBrad Roberts - AlbumGod Shuffled His Feet - GenreAlternative & Punk - KindAAC audio file - Size5430269 - Total Time222445 - Disc Number1 - Disc Count1 - Track Number8 - Track Count12 - Year1993 - Date Modified2006-07-27T16:19:04Z - Date Added2009-10-03T14:57:14Z - Bit Rate192 - Sample Rate44100 - Normalization2932 - Artwork Count1 - Persistent ID7D386A553B83E41C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Crash%20Test%20Dummies/God%20Shuffled%20His%20Feet/08%20How%20Does%20A%20Duck%20Know.m4a - File Folder Count4 - Library Folder Count1 - - 4582 - - Track ID4582 - NameWhen I Go Out With Artists - ArtistCrash Test Dummies - ComposerBrad Roberts - AlbumGod Shuffled His Feet - GenreAlternative & Punk - KindAAC audio file - Size5458917 - Total Time223653 - Disc Number1 - Disc Count1 - Track Number9 - Track Count12 - Year1993 - Date Modified2006-07-27T16:19:04Z - Date Added2009-10-03T14:57:14Z - Bit Rate192 - Sample Rate44100 - Normalization3785 - Artwork Count1 - Persistent ID1A56EB0BA1FEA778 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Crash%20Test%20Dummies/God%20Shuffled%20His%20Feet/09%20When%20I%20Go%20Out%20With%20Artists.m4a - File Folder Count4 - Library Folder Count1 - - 4584 - - Track ID4584 - NameThe Psychic - ArtistCrash Test Dummies - ComposerBrad Roberts - AlbumGod Shuffled His Feet - GenreAlternative & Punk - KindAAC audio file - Size5562106 - Total Time227948 - Disc Number1 - Disc Count1 - Track Number10 - Track Count12 - Year1993 - Date Modified2006-07-27T16:19:06Z - Date Added2009-10-03T14:57:15Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3427199693 - Play Date UTC2012-08-07T10:24:53Z - Normalization1255 - Artwork Count1 - Sort NamePsychic - Persistent IDC55BE6C9D5993C17 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Crash%20Test%20Dummies/God%20Shuffled%20His%20Feet/10%20The%20Psychic.m4a - File Folder Count4 - Library Folder Count1 - - 4586 - - Track ID4586 - NameTwo Knights And Maidens - ArtistCrash Test Dummies - ComposerBrad Roberts - AlbumGod Shuffled His Feet - GenreAlternative & Punk - KindAAC audio file - Size4998894 - Total Time204473 - Disc Number1 - Disc Count1 - Track Number11 - Track Count12 - Year1993 - Date Modified2006-07-27T16:19:06Z - Date Added2009-10-03T14:57:15Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3427199898 - Play Date UTC2012-08-07T10:28:18Z - Normalization2678 - Artwork Count1 - Persistent ID8247F6BB713BABF5 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Crash%20Test%20Dummies/God%20Shuffled%20His%20Feet/11%20Two%20Knights%20And%20Maidens.m4a - File Folder Count4 - Library Folder Count1 - - 4588 - - Track ID4588 - NameCrash Course - ArtistCrash Test Dummies - ComposerBrad Roberts - AlbumGod Shuffled His Feet - GenreAlternative & Punk - KindAAC audio file - Size2559127 - Total Time102909 - Disc Number1 - Disc Count1 - Track Number12 - Track Count12 - Year1993 - Date Modified2006-07-27T16:19:06Z - Date Added2009-10-03T14:57:15Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3427200001 - Play Date UTC2012-08-07T10:30:01Z - Normalization143 - Artwork Count1 - Persistent ID125C2AE46A81607B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Crash%20Test%20Dummies/God%20Shuffled%20His%20Feet/12%20Crash%20Course.m4a - File Folder Count4 - Library Folder Count1 - - 4590 - - Track ID4590 - NameLust For Life - ArtistIggy Pop - ComposerDavid Bowie/Iggy Pop - AlbumTrainspotting - GenreSoundtrack - KindAAC audio file - Size10139098 - Total Time313266 - Disc Number1 - Disc Count1 - Track Number1 - Track Count14 - Year1977 - Date Modified2008-11-07T05:49:58Z - Date Added2009-10-03T14:57:15Z - Bit Rate256 - Sample Rate44100 - Normalization1977 - Compilation - Artwork Count1 - Persistent ID45E0B067905AEA3D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Trainspotting/01%20Lust%20For%20Life.m4a - File Folder Count4 - Library Folder Count1 - - 4592 - - Track ID4592 - NameDeep Blue Day - ArtistBrian Eno - ComposerBrian Eno/Roger Eno/Daniel Lanois - AlbumTrainspotting - GenreSoundtrack - KindAAC audio file - Size7649120 - Total Time236493 - Disc Number1 - Disc Count1 - Track Number2 - Track Count14 - Year1983 - Date Modified2008-11-07T05:49:57Z - Date Added2009-10-03T14:57:15Z - Bit Rate256 - Sample Rate44100 - Normalization860 - Compilation - Artwork Count1 - Persistent ID27D8EB4A333DEA33 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Trainspotting/02%20Deep%20Blue%20Day.m4a - File Folder Count4 - Library Folder Count1 - - 4594 - - Track ID4594 - NameTrainspotting - ArtistPrimal Scream - ComposerAndrew Innes/Robert Young/Martin Duffy/Bobby Gillespie - AlbumTrainspotting - GenreSoundtrack - KindAAC audio file - Size20083258 - Total Time634773 - Disc Number1 - Disc Count1 - Track Number3 - Track Count14 - Year1996 - Date Modified2008-11-07T05:49:56Z - Date Added2009-10-03T14:57:16Z - Bit Rate256 - Sample Rate44100 - Normalization1041 - Compilation - Artwork Count1 - Persistent ID2DE50A67BE28A076 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Trainspotting/03%20Trainspotting.m4a - File Folder Count4 - Library Folder Count1 - - 4596 - - Track ID4596 - NameAtomic - ArtistSleeper - ComposerJimmy Destri/Deborah Harry - AlbumTrainspotting - GenreSoundtrack - KindAAC audio file - Size10069254 - Total Time309426 - Disc Number1 - Disc Count1 - Track Number4 - Track Count14 - Year1996 - Date Modified2008-11-07T05:49:55Z - Date Added2009-10-03T14:57:16Z - Bit Rate256 - Sample Rate44100 - Normalization1078 - Compilation - Artwork Count1 - Persistent ID20D9F785E836B232 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Trainspotting/04%20Atomic.m4a - File Folder Count4 - Library Folder Count1 - - 4598 - - Track ID4598 - NameTemptation - ArtistNew Order - ComposerBernard Sumner/Stephen Morris/Peter Hook/Gillian Gilbert - AlbumTrainspotting - GenreSoundtrack - KindAAC audio file - Size13334733 - Total Time420200 - Disc Number1 - Disc Count1 - Track Number5 - Track Count14 - Year1983 - Date Modified2008-11-07T05:49:54Z - Date Added2009-10-03T14:57:16Z - Bit Rate256 - Sample Rate44100 - Normalization2596 - Compilation - Artwork Count1 - Persistent IDF454306F1C688029 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Trainspotting/05%20Temptation.m4a - File Folder Count4 - Library Folder Count1 - - 4600 - - Track ID4600 - NameNightclubbing - ArtistIggy Pop - ComposerIggy Pop/David Bowie - AlbumTrainspotting - GenreSoundtrack - KindAAC audio file - Size8302255 - Total Time253666 - Disc Number1 - Disc Count1 - Track Number6 - Track Count14 - Year1977 - Date Modified2008-11-07T05:49:54Z - Date Added2009-10-03T14:57:16Z - Bit Rate256 - Sample Rate44100 - Normalization1021 - Compilation - Artwork Count1 - Persistent ID03E4566A1C63B833 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Trainspotting/06%20Nightclubbing.m4a - File Folder Count4 - Library Folder Count1 - - 4602 - - Track ID4602 - NameSing - ArtistBlur - ComposerAlex James/Graham Coxon/David Rowntree/Damon Albarn - AlbumTrainspotting - GenreSoundtrack - KindAAC audio file - Size11848651 - Total Time360973 - Disc Number1 - Disc Count1 - Track Number7 - Track Count14 - Year1991 - Date Modified2008-11-07T05:49:53Z - Date Added2009-10-03T14:57:16Z - Bit Rate256 - Sample Rate44100 - Normalization1831 - Compilation - Artwork Count1 - Persistent ID6FEC233476AD06B5 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Trainspotting/07%20Sing.m4a - File Folder Count4 - Library Folder Count1 - - 4604 - - Track ID4604 - NamePerfect Day - ArtistLou Reed - ComposerLou Reed - AlbumTrainspotting - GenreSoundtrack - KindAAC audio file - Size7366499 - Total Time224760 - Disc Number1 - Disc Count1 - Track Number8 - Track Count14 - Year1972 - Date Modified2008-11-07T05:49:52Z - Date Added2009-10-03T14:57:16Z - Bit Rate256 - Sample Rate44100 - Normalization1077 - Compilation - Artwork Count1 - Persistent IDEACA3ABC7B28548F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Trainspotting/08%20Perfect%20Day.m4a - File Folder Count4 - Library Folder Count1 - - 4606 - - Track ID4606 - NameMile End - ArtistPulp - ComposerBanks/Cocker/Webber/Mackey/Senior/Doyle - AlbumTrainspotting - GenreSoundtrack - KindAAC audio file - Size8786666 - Total Time271733 - Disc Number1 - Disc Count1 - Track Number9 - Track Count14 - Year1995 - Date Modified2008-11-07T05:49:52Z - Date Added2009-10-03T14:57:16Z - Bit Rate256 - Sample Rate44100 - Normalization1077 - Compilation - Artwork Count1 - Persistent ID950D520A6E7E3C71 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Trainspotting/09%20Mile%20End.m4a - File Folder Count4 - Library Folder Count1 - - 4608 - - Track ID4608 - NameFor What You Dream Of For What You Dream Of (Full On Renaissance Mix) - ArtistBedrock - ComposerCarol Leeming/Nick Muir/John Digweed - AlbumTrainspotting - GenreSoundtrack - KindAAC audio file - Size12308998 - Total Time387906 - Disc Number1 - Disc Count1 - Track Number10 - Track Count14 - Year1996 - Date Modified2008-11-07T05:49:51Z - Date Added2009-10-03T14:57:17Z - Bit Rate256 - Sample Rate44100 - Normalization1508 - Compilation - Artwork Count1 - Persistent ID5F2148998A8F60A1 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Trainspotting/10%20For%20What%20You%20Dream%20Of%20For%20What%20You%20Dream%20Of%20(Full%20On%20Renaissance%20Mix).m4a - File Folder Count4 - Library Folder Count1 - - 4610 - - Track ID4610 - Name2:1 - ArtistElastica - ComposerElastica/Donna Matthews - AlbumTrainspotting - GenreSoundtrack - KindAAC audio file - Size5023698 - Total Time153533 - Disc Number1 - Disc Count1 - Track Number11 - Track Count14 - Year1994 - Date Modified2008-11-07T05:49:51Z - Date Added2009-10-03T14:57:17Z - Bit Rate256 - Sample Rate44100 - Normalization2469 - Compilation - Artwork Count1 - Persistent ID0E53868A0E53FD82 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Trainspotting/11%202_1.m4a - File Folder Count4 - Library Folder Count1 - - 4612 - - Track ID4612 - NameA Final Hit - ArtistLeftfield - ComposerDaley/Barnes - AlbumTrainspotting - GenreSoundtrack - KindAAC audio file - Size6127116 - Total Time195800 - Disc Number1 - Disc Count1 - Track Number12 - Track Count14 - Year1996 - Date Modified2008-11-07T05:49:50Z - Date Added2009-10-03T14:57:17Z - Bit Rate256 - Sample Rate44100 - Normalization611 - Compilation - Artwork Count1 - Sort NameFinal Hit - Persistent IDD75C4DF224F580A4 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Trainspotting/12%20A%20Final%20Hit.m4a - File Folder Count4 - Library Folder Count1 - - 4614 - - Track ID4614 - NameBorn Slippy (Nuxx) - ArtistUnderworld - ComposerRick Smith/Karl Hyde - AlbumTrainspotting - GenreSoundtrack - KindAAC audio file - Size19087223 - Total Time584600 - Disc Number1 - Disc Count1 - Track Number13 - Track Count14 - Year1996 - Date Modified2008-11-07T05:49:50Z - Date Added2009-10-03T14:57:17Z - Bit Rate256 - Sample Rate44100 - Normalization759 - Compilation - Artwork Count1 - Persistent ID6BED191FE3189F1D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Trainspotting/13%20Born%20Slippy%20(Nuxx).m4a - File Folder Count4 - Library Folder Count1 - - 4616 - - Track ID4616 - NameCloset Romantic - ArtistDamon Albarn - ComposerDamon Albarn - AlbumTrainspotting - GenreSoundtrack - KindAAC audio file - Size6205018 - Total Time189000 - Disc Number1 - Disc Count1 - Track Number14 - Track Count14 - Year1996 - Date Modified2008-11-07T05:49:49Z - Date Added2009-10-03T14:57:17Z - Bit Rate256 - Sample Rate44100 - Normalization1122 - Compilation - Artwork Count1 - Persistent IDE8DFEA953F153782 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Trainspotting/14%20Closet%20Romantic.m4a - File Folder Count4 - Library Folder Count1 - - 4618 - - Track ID4618 - NameAnthen-Pacrt 2 (From Powaqqatsi) - ArtistPhilip Glass - ComposerPhilip Glass - AlbumThe Truman Show - GenreSoundtrack - KindAAC audio file - Size5723684 - Total Time231906 - Disc Number1 - Disc Count1 - Track Number6 - Track Count21 - Year1998 - Date Modified2007-10-06T19:41:16Z - Date Added2009-10-03T14:57:17Z - Bit Rate192 - Sample Rate44100 - Normalization659 - Compilation - Artwork Count1 - Sort AlbumTruman Show - Persistent ID8638E228F5531863 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Truman%20Show/06%20Anthen-Pacrt%202%20(From%20Powaqqatsi).m4a - File Folder Count4 - Library Folder Count1 - - 4620 - - Track ID4620 - NameDreaming Of Fiji - ArtistPhilip Glass - ComposerPhilip Glass - AlbumThe Truman Show - GenreSoundtrack - KindAAC audio file - Size2898866 - Total Time114826 - Disc Number1 - Disc Count1 - Track Number4 - Track Count21 - Year1998 - Date Modified2007-10-06T19:41:11Z - Date Added2009-10-03T14:57:18Z - Bit Rate192 - Sample Rate44100 - Normalization139 - Compilation - Artwork Count1 - Sort AlbumTruman Show - Persistent ID417B199E318954A8 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Truman%20Show/04%20Dreaming%20Of%20Fiji.m4a - File Folder Count4 - Library Folder Count1 - - 4622 - - Track ID4622 - NameLiving Waters(From Anima Mundi) - ArtistPhilip Glass - ComposerPhilip Glass - AlbumThe Truman Show - GenreSoundtrack - KindAAC audio file - Size5599240 - Total Time228440 - Disc Number1 - Disc Count1 - Track Number12 - Track Count21 - Year1998 - Date Modified2007-10-06T19:41:31Z - Date Added2009-10-03T14:57:18Z - Bit Rate192 - Sample Rate44100 - Normalization386 - Compilation - Artwork Count1 - Sort AlbumTruman Show - Persistent ID0893657F5EF5FD7B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Truman%20Show/12%20Living%20Waters(From%20Anima%20Mundi).m4a - File Folder Count4 - Library Folder Count1 - - 4624 - - Track ID4624 - NameOpening (From Mishima) - ArtistPhilip Glass - ComposerPhilip Glass - AlbumThe Truman Show - GenreSoundtrack - KindAAC audio file - Size3425637 - Total Time136866 - Disc Number1 - Disc Count1 - Track Number19 - Track Count21 - Year1998 - Date Modified2007-10-06T19:41:46Z - Date Added2009-10-03T14:57:18Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Compilation - Artwork Count1 - Sort AlbumTruman Show - Persistent ID7BD27F9571485A68 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Truman%20Show/19%20Opening%20(From%20Mishima).m4a - File Folder Count4 - Library Folder Count1 - - 4626 - - Track ID4626 - NameRaising The Sail - ArtistPhilip Glass - ComposerPhilip Glass - AlbumThe Truman Show - GenreSoundtrack - KindAAC audio file - Size3326857 - Total Time135293 - Disc Number1 - Disc Count1 - Track Number17 - Track Count21 - Year1998 - Date Modified2007-10-06T19:41:42Z - Date Added2009-10-03T14:57:18Z - Bit Rate192 - Sample Rate44100 - Normalization364 - Compilation - Artwork Count1 - Sort AlbumTruman Show - Persistent ID650A8BC76F13DD89 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Truman%20Show/17%20Raising%20The%20Sail.m4a - File Folder Count4 - Library Folder Count1 - - 4628 - - Track ID4628 - NameThe Beginning (From Anima Mundi) - ArtistPhilip Glass - ComposerPhilip Glass - AlbumThe Truman Show - GenreSoundtrack - KindAAC audio file - Size6225388 - Total Time251400 - Disc Number1 - Disc Count1 - Track Number7 - Track Count21 - Year1998 - Date Modified2007-10-06T19:41:19Z - Date Added2009-10-03T14:57:18Z - Bit Rate192 - Sample Rate44100 - Normalization303 - Compilation - Artwork Count1 - Sort AlbumTruman Show - Sort NameBeginning (From Anima Mundi) - Persistent ID6A6EACB284F9EF36 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Truman%20Show/07%20The%20Beginning%20(From%20Anima%20Mundi).m4a - File Folder Count4 - Library Folder Count1 - - 4630 - - Track ID4630 - NameTruman Sleeps - ArtistPhilip Glass - ComposerPhilip Glass - AlbumThe Truman Show - GenreSoundtrack - KindAAC audio file - Size2884647 - Total Time111826 - Disc Number1 - Disc Count1 - Track Number14 - Track Count21 - Year1998 - Date Modified2007-10-06T19:41:34Z - Date Added2009-10-03T14:57:18Z - Bit Rate192 - Sample Rate44100 - Normalization1253 - Compilation - Artwork Count1 - Sort AlbumTruman Show - Persistent ID5020D6745729D187 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Truman%20Show/14%20Truman%20Sleeps.m4a - File Folder Count4 - Library Folder Count1 - - 4632 - - Track ID4632 - NamePrelude And The Sound Of Music - ArtistRodgers & Hammerstein - ComposerRichard Rodgers and Oscar Hammerstein II - AlbumThe Sound Of Music - GenreSoundtrack - KindAAC audio file - Size3992098 - Total Time166694 - Disc Number1 - Disc Count1 - Track Number1 - Track Count16 - Year1995 - Date Modified2006-07-28T13:31:56Z - Date Added2009-10-03T14:57:18Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3389532180 - Play Date UTC2011-05-29T11:13:00Z - Skip Count1 - Skip Date2014-01-13T13:26:07Z - Normalization1230 - Compilation - Artwork Count1 - Sort AlbumSound Of Music - Persistent IDA916616BEF528928 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Sound%20Of%20Music/01%20Prelude%20And%20The%20Sound%20Of%20Music.m4a - File Folder Count4 - Library Folder Count1 - - 4634 - - Track ID4634 - NameOverture And Preludium - ArtistRodgers & Hammerstein - ComposerRichard Rodgers and Oscar Hammerstein II - AlbumThe Sound Of Music - GenreSoundtrack - KindAAC audio file - Size4681616 - Total Time195673 - Disc Number1 - Disc Count1 - Track Number2 - Track Count16 - Year1995 - Date Modified2006-07-28T13:31:56Z - Date Added2009-10-03T14:57:19Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3389532376 - Play Date UTC2011-05-29T11:16:16Z - Normalization1426 - Compilation - Artwork Count1 - Sort AlbumSound Of Music - Persistent IDD1C6DD67D705E6CD - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Sound%20Of%20Music/02%20Overture%20And%20Preludium.m4a - File Folder Count4 - Library Folder Count1 - - 4636 - - Track ID4636 - NameMorning Hymn And Alleluia - ArtistRodgers & Hammerstein - ComposerRichard Rodgers and Oscar Hammerstein II - AlbumThe Sound Of Music - GenreSoundtrack - KindAAC audio file - Size2978641 - Total Time124527 - Disc Number1 - Disc Count1 - Track Number3 - Track Count16 - Year1995 - Date Modified2006-07-28T13:31:58Z - Date Added2009-10-03T14:57:19Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3389532500 - Play Date UTC2011-05-29T11:18:20Z - Normalization553 - Compilation - Artwork Count1 - Sort AlbumSound Of Music - Persistent ID4BF2E791F4587BAE - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Sound%20Of%20Music/03%20Morning%20Hymn%20And%20Alleluia.m4a - File Folder Count4 - Library Folder Count1 - - 4638 - - Track ID4638 - NameMaria - ArtistRodgers & Hammerstein - ComposerRichard Rodgers and Oscar Hammerstein II - AlbumThe Sound Of Music - GenreSoundtrack - KindAAC audio file - Size4776037 - Total Time199341 - Disc Number1 - Disc Count1 - Track Number4 - Track Count16 - Year1995 - Date Modified2006-07-28T13:32:00Z - Date Added2009-10-03T14:57:19Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3389532699 - Play Date UTC2011-05-29T11:21:39Z - Normalization1177 - Compilation - Artwork Count1 - Sort AlbumSound Of Music - Persistent ID789C772B46B9A1AC - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Sound%20Of%20Music/04%20Maria.m4a - File Folder Count4 - Library Folder Count1 - - 4640 - - Track ID4640 - NameI Have Confidence - ArtistRodgers & Hammerstein - ComposerRichard Rodgers and Oscar Hammerstein II - AlbumThe Sound Of Music - GenreSoundtrack - KindAAC audio file - Size4996794 - Total Time208954 - Disc Number1 - Disc Count1 - Track Number5 - Track Count16 - Year1995 - Date Modified2006-07-28T13:32:04Z - Date Added2009-10-03T14:57:19Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3389532908 - Play Date UTC2011-05-29T11:25:08Z - Normalization1217 - Compilation - Artwork Count1 - Sort AlbumSound Of Music - Persistent ID3C5D13403BB54E85 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Sound%20Of%20Music/05%20I%20Have%20Confidence.m4a - File Folder Count4 - Library Folder Count1 - - 4642 - - Track ID4642 - NameSixteen Going On Seventeen - ArtistRodgers & Hammerstein - ComposerRichard Rodgers and Oscar Hammerstein II - AlbumThe Sound Of Music - GenreSoundtrack - KindAAC audio file - Size4787078 - Total Time200015 - Disc Number1 - Disc Count1 - Track Number6 - Track Count16 - Year1995 - Date Modified2006-07-28T13:32:04Z - Date Added2009-10-03T14:57:19Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3389533108 - Play Date UTC2011-05-29T11:28:28Z - Normalization1227 - Compilation - Artwork Count1 - Sort AlbumSound Of Music - Persistent ID067B64B4A003E449 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Sound%20Of%20Music/06%20Sixteen%20Going%20On%20Seventeen.m4a - File Folder Count4 - Library Folder Count1 - - 4644 - - Track ID4644 - NameMy Favorite Things - ArtistRodgers & Hammerstein - ComposerRichard Rodgers and Oscar Hammerstein II - AlbumThe Sound Of Music - GenreSoundtrack - KindAAC audio file - Size3368684 - Total Time140897 - Disc Number1 - Disc Count1 - Track Number7 - Track Count16 - Year1995 - Date Modified2006-07-28T13:32:06Z - Date Added2009-10-03T14:57:19Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3389533249 - Play Date UTC2011-05-29T11:30:49Z - Normalization1185 - Compilation - Artwork Count1 - Sort AlbumSound Of Music - Persistent IDDADAEF4E6287EECD - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Sound%20Of%20Music/07%20My%20Favorite%20Things.m4a - File Folder Count4 - Library Folder Count1 - - 4646 - - Track ID4646 - NameDo-Re-Mi - ArtistRodgers & Hammerstein - ComposerRichard Rodgers and Oscar Hammerstein II - AlbumThe Sound Of Music - GenreSoundtrack - KindAAC audio file - Size8060172 - Total Time335178 - Disc Number1 - Disc Count1 - Track Number8 - Track Count16 - Year1995 - Date Modified2006-07-28T13:32:08Z - Date Added2009-10-03T14:57:19Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3389533585 - Play Date UTC2011-05-29T11:36:25Z - Normalization1878 - Compilation - Artwork Count1 - Sort AlbumSound Of Music - Persistent ID9ED5AB16DFFC26E8 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Sound%20Of%20Music/08%20Do-Re-Mi.m4a - File Folder Count4 - Library Folder Count1 - - 4648 - - Track ID4648 - NameThe Sound Of Music - ArtistRodgers & Hammerstein - ComposerRichard Rodgers and Oscar Hammerstein II - AlbumThe Sound Of Music - GenreSoundtrack - KindAAC audio file - Size3176658 - Total Time133048 - Disc Number1 - Disc Count1 - Track Number9 - Track Count16 - Year1995 - Date Modified2006-07-28T13:32:10Z - Date Added2009-10-03T14:57:19Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3389533717 - Play Date UTC2011-05-29T11:38:37Z - Normalization642 - Compilation - Artwork Count1 - Sort AlbumSound Of Music - Sort NameSound Of Music - Persistent IDA04ED8DDB5AC7FAA - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Sound%20Of%20Music/09%20The%20Sound%20Of%20Music.m4a - File Folder Count4 - Library Folder Count1 - - 4650 - - Track ID4650 - NameThe Lonely Goatherd - ArtistRodgers & Hammerstein - ComposerRichard Rodgers and Oscar Hammerstein II - AlbumThe Sound Of Music - GenreSoundtrack - KindAAC audio file - Size4618910 - Total Time192817 - Disc Number1 - Disc Count1 - Track Number10 - Track Count16 - Year1995 - Date Modified2006-07-28T13:32:10Z - Date Added2009-10-03T14:57:19Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3389533910 - Play Date UTC2011-05-29T11:41:50Z - Normalization2340 - Compilation - Artwork Count1 - Sort AlbumSound Of Music - Sort NameLonely Goatherd - Persistent IDA96DC0382600AA03 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Sound%20Of%20Music/10%20The%20Lonely%20Goatherd.m4a - File Folder Count4 - Library Folder Count1 - - 4652 - - Track ID4652 - NameSo Long, Farwell - ArtistRodgers & Hammerstein - ComposerRichard Rodgers and Oscar Hammerstein II - AlbumThe Sound Of Music - GenreSoundtrack - KindAAC audio file - Size4225489 - Total Time176400 - Disc Number1 - Disc Count1 - Track Number11 - Track Count16 - Year1995 - Date Modified2006-07-28T13:32:12Z - Date Added2009-10-03T14:57:20Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3389534087 - Play Date UTC2011-05-29T11:44:47Z - Normalization908 - Compilation - Artwork Count1 - Sort AlbumSound Of Music - Persistent IDE435FE270AE899FD - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Sound%20Of%20Music/11%20So%20Long,%20Farwell.m4a - File Folder Count4 - Library Folder Count1 - - 4654 - - Track ID4654 - NameClimb Ev'ry Mountain - ArtistRodgers & Hammerstein - ComposerRichard Rodgers and Oscar Hammerstein II - AlbumThe Sound Of Music - GenreSoundtrack - KindAAC audio file - Size3318408 - Total Time138644 - Disc Number1 - Disc Count1 - Track Number12 - Track Count16 - Year1995 - Date Modified2006-07-28T13:32:14Z - Date Added2009-10-03T14:57:20Z - Bit Rate192 - Sample Rate44100 - Normalization1521 - Compilation - Artwork Count1 - Sort AlbumSound Of Music - Persistent IDF6C97FC9FD83B42D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Sound%20Of%20Music/12%20Climb%20Ev'ry%20Mountain.m4a - File Folder Count4 - Library Folder Count1 - - 4656 - - Track ID4656 - NameSomething Good - ArtistRodgers & Hammerstein - ComposerRichard Rodgers and Oscar Hammerstein II - AlbumThe Sound Of Music - GenreSoundtrack - KindAAC audio file - Size4776883 - Total Time199365 - Disc Number1 - Disc Count1 - Track Number13 - Track Count16 - Year1995 - Date Modified2006-07-28T13:32:14Z - Date Added2009-10-03T14:57:20Z - Bit Rate192 - Sample Rate44100 - Normalization323 - Compilation - Artwork Count1 - Sort AlbumSound Of Music - Persistent IDA7BFFC26394F8851 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Sound%20Of%20Music/13%20Something%20Good.m4a - File Folder Count4 - Library Folder Count1 - - 4658 - - Track ID4658 - NameProcessional And Maria - ArtistRodgers & Hammerstein - ComposerRichard Rodgers and Oscar Hammerstein II - AlbumThe Sound Of Music - GenreSoundtrack - KindAAC audio file - Size3579105 - Total Time149511 - Disc Number1 - Disc Count1 - Track Number14 - Track Count16 - Year1995 - Date Modified2006-07-28T13:32:16Z - Date Added2009-10-03T14:57:20Z - Bit Rate192 - Sample Rate44100 - Normalization2502 - Compilation - Artwork Count1 - Sort AlbumSound Of Music - Persistent ID66784626032152A3 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Sound%20Of%20Music/14%20Processional%20And%20Maria.m4a - File Folder Count4 - Library Folder Count1 - - 4660 - - Track ID4660 - NameEdelweiss - ArtistRodgers & Hammerstein - ComposerRichard Rodgers and Oscar Hammerstein II - AlbumThe Sound Of Music - GenreSoundtrack - KindAAC audio file - Size2683681 - Total Time112220 - Disc Number1 - Disc Count1 - Track Number15 - Track Count16 - Year1995 - Date Modified2006-07-28T13:32:18Z - Date Added2009-10-03T14:57:20Z - Bit Rate192 - Sample Rate44100 - Normalization1216 - Compilation - Artwork Count1 - Sort AlbumSound Of Music - Persistent IDD2050AFA15B477BB - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Sound%20Of%20Music/15%20Edelweiss.m4a - File Folder Count4 - Library Folder Count1 - - 4662 - - Track ID4662 - NameClimb Ev'ry Mountain (Reprise) - ArtistRodgers & Hammerstein - ComposerRichard Rodgers and Oscar Hammerstein II - AlbumThe Sound Of Music - GenreSoundtrack - KindAAC audio file - Size1988908 - Total Time80780 - Disc Number1 - Disc Count1 - Track Number16 - Track Count16 - Year1995 - Date Modified2006-07-28T13:32:18Z - Date Added2009-10-03T14:57:20Z - Bit Rate192 - Sample Rate44100 - Normalization2111 - Compilation - Artwork Count1 - Sort AlbumSound Of Music - Persistent ID83C5F8BA799B285D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Sound%20Of%20Music/16%20Climb%20Ev'ry%20Mountain%20(Reprise).m4a - File Folder Count4 - Library Folder Count1 - - 4664 - - Track ID4664 - NameAnna's Theme - ArtistJoshua Bell - ComposerJohn Corigliano - AlbumThe Red Violin - GenreSoundtrack - KindAAC audio file - Size4227548 - Total Time170479 - Disc Number1 - Disc Count1 - Track Number1 - Track Count20 - Year1998 - Date Modified2006-08-07T09:32:30Z - Date Added2009-10-03T14:57:20Z - Bit Rate192 - Sample Rate44100 - Normalization195 - Compilation - Artwork Count1 - Sort AlbumRed Violin - Persistent IDAE135AC9E4862DE0 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Red%20Violin/01%20Anna's%20Theme.m4a - File Folder Count4 - Library Folder Count1 - - 4666 - - Track ID4666 - NameMain Title - ArtistJoshua Bell - ComposerJohn Corigliano - AlbumThe Red Violin - GenreSoundtrack - KindAAC audio file - Size4110482 - Total Time165603 - Disc Number1 - Disc Count1 - Track Number2 - Track Count20 - Year1998 - Date Modified2006-08-07T09:32:30Z - Date Added2009-10-03T14:57:21Z - Bit Rate192 - Sample Rate44100 - Normalization279 - Compilation - Artwork Count1 - Sort AlbumRed Violin - Persistent IDD54DFAE53D56A36C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Red%20Violin/02%20Main%20Title.m4a - File Folder Count4 - Library Folder Count1 - - 4668 - - Track ID4668 - NameDeath Of Anna - ArtistJoshua Bell - ComposerJohn Corigliano - AlbumThe Red Violin - GenreSoundtrack - KindAAC audio file - Size2700002 - Total Time106880 - Disc Number1 - Disc Count1 - Track Number3 - Track Count20 - Year1998 - Date Modified2006-08-07T09:32:30Z - Date Added2009-10-03T14:57:21Z - Bit Rate192 - Sample Rate44100 - Normalization635 - Compilation - Artwork Count1 - Sort AlbumRed Violin - Persistent ID5087E878D691DFA8 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Red%20Violin/03%20Death%20Of%20Anna.m4a - File Folder Count4 - Library Folder Count1 - - 4670 - - Track ID4670 - NameBirth Of The Red Violin - ArtistJoshua Bell - ComposerJohn Corigliano - AlbumThe Red Violin - GenreSoundtrack - KindAAC audio file - Size4576638 - Total Time185038 - Disc Number1 - Disc Count1 - Track Number4 - Track Count20 - Year1998 - Date Modified2006-08-07T09:32:30Z - Date Added2009-10-03T14:57:21Z - Bit Rate192 - Sample Rate44100 - Normalization500 - Compilation - Artwork Count1 - Sort AlbumRed Violin - Persistent IDFEC38B4EF96AC44F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Red%20Violin/04%20Birth%20Of%20The%20Red%20Violin.m4a - File Folder Count4 - Library Folder Count1 - - 4672 - - Track ID4672 - NameThe Red Violin - ArtistJoshua Bell - ComposerJohn Corigliano - AlbumThe Red Violin - GenreSoundtrack - KindAAC audio file - Size2377016 - Total Time94085 - Disc Number1 - Disc Count1 - Track Number5 - Track Count20 - Year1998 - Date Modified2006-08-07T09:32:30Z - Date Added2009-10-03T14:57:22Z - Bit Rate192 - Sample Rate44100 - Normalization275 - Compilation - Artwork Count1 - Sort AlbumRed Violin - Sort NameRed Violin - Persistent ID950EB353594F40CF - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Red%20Violin/05%20The%20Red%20Violin.m4a - File Folder Count4 - Library Folder Count1 - - 4674 - - Track ID4674 - NameThe Monastery - ArtistJoshua Bell - ComposerJohn Corigliano - AlbumThe Red Violin - GenreSoundtrack - KindAAC audio file - Size1738425 - Total Time66848 - Disc Number1 - Disc Count1 - Track Number6 - Track Count20 - Year1998 - Date Modified2006-08-07T09:32:30Z - Date Added2009-10-03T14:57:22Z - Bit Rate192 - Sample Rate44100 - Normalization234 - Compilation - Artwork Count1 - Sort AlbumRed Violin - Sort NameMonastery - Persistent ID3C8EDA3E2648DAAF - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Red%20Violin/06%20The%20Monastery.m4a - File Folder Count4 - Library Folder Count1 - - 4676 - - Track ID4676 - NameKaspar's Audition; Journey To Vienna - ArtistJoshua Bell - ComposerJohn Corigliano - AlbumThe Red Violin - GenreSoundtrack - KindAAC audio file - Size3971830 - Total Time160471 - Disc Number1 - Disc Count1 - Track Number7 - Track Count20 - Year1998 - Date Modified2006-08-07T09:32:30Z - Date Added2009-10-03T14:57:22Z - Bit Rate192 - Sample Rate44100 - Normalization238 - Compilation - Artwork Count1 - Sort AlbumRed Violin - Persistent IDFC742F4928A0FD2A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Red%20Violin/07%20Kaspar's%20Audition%3B%20Journey%20To%20Vienna.m4a - File Folder Count4 - Library Folder Count1 - - 4678 - - Track ID4678 - NameEtudes; Death Of Kaspar - ArtistJoshua Bell - ComposerJohn Corigliano - AlbumThe Red Violin - GenreSoundtrack - KindAAC audio file - Size2011075 - Total Time78203 - Disc Number1 - Disc Count1 - Track Number8 - Track Count20 - Year1998 - Date Modified2006-08-07T09:32:30Z - Date Added2009-10-03T14:57:22Z - Bit Rate192 - Sample Rate44100 - Normalization214 - Compilation - Artwork Count1 - Sort AlbumRed Violin - Persistent ID43A93FDB9FE2B5AD - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Red%20Violin/08%20Etudes%3B%20Death%20Of%20Kaspar.m4a - File Folder Count4 - Library Folder Count1 - - 4680 - - Track ID4680 - NameThe Gypsies; Journey Across Europe - ArtistJoshua Bell - ComposerJohn Corigliano - AlbumThe Red Violin - GenreSoundtrack - KindAAC audio file - Size5267716 - Total Time217035 - Disc Number1 - Disc Count1 - Track Number9 - Track Count20 - Year1998 - Date Modified2006-08-07T09:32:30Z - Date Added2009-10-03T14:57:22Z - Bit Rate192 - Sample Rate44100 - Normalization356 - Compilation - Artwork Count1 - Sort AlbumRed Violin - Sort NameGypsies; Journey Across Europe - Persistent ID6D60A4739077D3A6 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Red%20Violin/09%20The%20Gypsies%3B%20Journey%20Across%20Europe.m4a - File Folder Count4 - Library Folder Count1 - - 4682 - - Track ID4682 - NamePope's Gypsy Cadenza - ArtistJoshua Bell - ComposerJohn Corigliano - AlbumThe Red Violin - GenreSoundtrack - KindAAC audio file - Size2506441 - Total Time98822 - Disc Number1 - Disc Count1 - Track Number10 - Track Count20 - Year1998 - Date Modified2006-08-07T09:32:30Z - Date Added2009-10-03T14:57:22Z - Bit Rate192 - Sample Rate44100 - Normalization325 - Compilation - Artwork Count1 - Sort AlbumRed Violin - Persistent ID8715B7D6B9014246 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Red%20Violin/10%20Pope's%20Gypsy%20Cadenza.m4a - File Folder Count4 - Library Folder Count1 - - 4684 - - Track ID4684 - NameCoitus Musicalis; Victoria's Departure - ArtistJoshua Bell - ComposerJohn Corigliano - AlbumThe Red Violin - GenreSoundtrack - KindAAC audio file - Size6825249 - Total Time278707 - Disc Number1 - Disc Count1 - Track Number11 - Track Count20 - Year1998 - Date Modified2006-08-07T09:32:30Z - Date Added2009-10-03T14:57:22Z - Bit Rate192 - Sample Rate44100 - Normalization178 - Compilation - Artwork Count1 - Sort AlbumRed Violin - Persistent ID5556B58DE3A39C64 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Red%20Violin/11%20Coitus%20Musicalis%3B%20Victoria's%20Departure.m4a - File Folder Count4 - Library Folder Count1 - - 4686 - - Track ID4686 - NamePope's Concert - ArtistJoshua Bell - ComposerJohn Corigliano - AlbumThe Red Violin - GenreSoundtrack - KindAAC audio file - Size2096984 - Total Time82499 - Disc Number1 - Disc Count1 - Track Number12 - Track Count20 - Year1998 - Date Modified2006-08-07T09:32:30Z - Date Added2009-10-03T14:57:23Z - Bit Rate192 - Sample Rate44100 - Normalization364 - Compilation - Artwork Count1 - Sort AlbumRed Violin - Persistent ID2CA614C299F2175B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Red%20Violin/12%20Pope's%20Concert.m4a - File Folder Count4 - Library Folder Count1 - - 4688 - - Track ID4688 - NamePope's Betrayal - ArtistJoshua Bell - ComposerJohn Corigliano - AlbumThe Red Violin - GenreSoundtrack - KindAAC audio file - Size4475438 - Total Time180812 - Disc Number1 - Disc Count1 - Track Number13 - Track Count20 - Year1998 - Date Modified2006-08-07T09:32:30Z - Date Added2009-10-03T14:57:23Z - Bit Rate192 - Sample Rate44100 - Normalization199 - Compilation - Artwork Count1 - Sort AlbumRed Violin - Persistent ID7CD11FDAC0473ACB - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Red%20Violin/13%20Pope's%20Betrayal.m4a - File Folder Count4 - Library Folder Count1 - - 4690 - - Track ID4690 - NameJourney To China - ArtistJoshua Bell - ComposerJohn Corigliano - AlbumThe Red Violin - GenreSoundtrack - KindAAC audio file - Size6139059 - Total Time250077 - Disc Number1 - Disc Count1 - Track Number14 - Track Count20 - Year1998 - Date Modified2006-08-07T09:32:30Z - Date Added2009-10-03T14:57:23Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3378213013 - Play Date UTC2011-01-18T11:00:13Z - Normalization368 - Compilation - Artwork Count1 - Sort AlbumRed Violin - Persistent ID78E7DA805852B0F7 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Red%20Violin/14%20Journey%20To%20China.m4a - File Folder Count4 - Library Folder Count1 - - 4692 - - Track ID4692 - NamePeople's Revolution; Death Of Chou Yuan - ArtistJoshua Bell - ComposerJohn Corigliano - AlbumThe Red Violin - GenreSoundtrack - KindAAC audio file - Size4820694 - Total Time197716 - Disc Number1 - Disc Count1 - Track Number15 - Track Count20 - Year1998 - Date Modified2006-08-07T09:32:28Z - Date Added2009-10-03T14:57:23Z - Bit Rate192 - Sample Rate44100 - Normalization193 - Compilation - Artwork Count1 - Sort AlbumRed Violin - Persistent ID209D962F3436A83D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Red%20Violin/15%20People's%20Revolution%3B%20Death%20Of%20Chou%20Yuan.m4a - File Folder Count4 - Library Folder Count1 - - 4694 - - Track ID4694 - NameMorritz Discovers The Red Violin - ArtistJoshua Bell - ComposerJohn Corigliano - AlbumThe Red Violin - GenreSoundtrack - KindAAC audio file - Size5363561 - Total Time217778 - Disc Number1 - Disc Count1 - Track Number16 - Track Count20 - Year1998 - Date Modified2006-08-07T09:32:28Z - Date Added2009-10-03T14:57:23Z - Bit Rate192 - Sample Rate44100 - Normalization316 - Compilation - Artwork Count1 - Sort AlbumRed Violin - Persistent IDF9A7F49C50D85A1E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Red%20Violin/16%20Morritz%20Discovers%20The%20Red%20Violin.m4a - File Folder Count4 - Library Folder Count1 - - 4696 - - Track ID4696 - NameMorritz's Theme - ArtistJoshua Bell - ComposerJohn Corigliano - AlbumThe Red Violin - GenreSoundtrack - KindAAC audio file - Size2876840 - Total Time114472 - Disc Number1 - Disc Count1 - Track Number17 - Track Count20 - Year1998 - Date Modified2006-08-07T09:32:28Z - Date Added2009-10-03T14:57:23Z - Bit Rate192 - Sample Rate44100 - Normalization104 - Compilation - Artwork Count1 - Sort AlbumRed Violin - Persistent ID0A4317B48FCEF5EB - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Red%20Violin/17%20Morritz's%20Theme.m4a - File Folder Count4 - Library Folder Count1 - - 4698 - - Track ID4698 - NameThe Theft - ArtistJoshua Bell - ComposerJohn Corigliano - AlbumThe Red Violin - GenreSoundtrack - KindAAC audio file - Size3304713 - Total Time132073 - Disc Number1 - Disc Count1 - Track Number18 - Track Count20 - Year1998 - Date Modified2006-08-07T09:32:28Z - Date Added2009-10-03T14:57:23Z - Bit Rate192 - Sample Rate44100 - Normalization708 - Compilation - Artwork Count1 - Sort AlbumRed Violin - Sort NameTheft - Persistent ID101D8E6F33325680 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Red%20Violin/18%20The%20Theft.m4a - File Folder Count4 - Library Folder Count1 - - 4700 - - Track ID4700 - NameEnd Titles - ArtistJoshua Bell - ComposerJohn Corigliano - AlbumThe Red Violin - GenreSoundtrack - KindAAC audio file - Size2691718 - Total Time115053 - Disc Number1 - Disc Count1 - Track Number19 - Track Count20 - Year1998 - Date Modified2006-08-07T09:32:28Z - Date Added2009-10-03T14:57:24Z - Bit Rate192 - Sample Rate44100 - Normalization17 - Compilation - Artwork Count1 - Sort AlbumRed Violin - Persistent ID48995CD4B387A1C3 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Red%20Violin/19%20End%20Titles.m4a - File Folder Count4 - Library Folder Count1 - - 4702 - - Track ID4702 - NameThe Red Violin - ArtistJoshua Bell - ComposerJohn Corigliano - AlbumThe Red Violin - GenreSoundtrack - KindAAC audio file - Size25659102 - Total Time1056878 - Disc Number1 - Disc Count1 - Track Number20 - Track Count20 - Year1998 - Date Modified2006-08-07T09:32:28Z - Date Added2009-10-03T14:57:24Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Compilation - Artwork Count1 - Sort AlbumRed Violin - Sort NameRed Violin - Persistent ID1E2A9C77049DAEE7 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Red%20Violin/20%20The%20Red%20Violin.m4a - File Folder Count4 - Library Folder Count1 - - 4704 - - Track ID4704 - NameIntroduction And Rondo Capriccioso, Op.28 - ArtistCamille Saint-Saëns - AlbumThe Magic Violin - GenreClassical - KindAAC audio file - Size12594717 - Total Time523678 - Disc Number1 - Track Number1 - Track Count15 - Date Modified2006-08-08T03:05:14Z - Date Added2009-10-03T14:57:24Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3361080929 - Play Date UTC2010-07-04T04:05:29Z - Normalization898 - Compilation - Artwork Count1 - Sort AlbumMagic Violin - Persistent IDD57A15C6BDC652F3 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Magic%20Violin/1-01%20Introduction%20And%20Rondo%20Capriccioso,%20Op.28.m4a - File Folder Count4 - Library Folder Count1 - - 4706 - - Track ID4706 - NameRomance For Violin And Orchestra, Op.26 - ArtistJohann Svendsen - AlbumThe Magic Violin - GenreClassical - KindAAC audio file - Size11390631 - Total Time473337 - Disc Number1 - Track Number2 - Track Count15 - Date Modified2006-08-08T03:05:14Z - Date Added2009-10-03T14:57:24Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3361081402 - Play Date UTC2010-07-04T04:13:22Z - Normalization871 - Compilation - Artwork Count1 - Sort AlbumMagic Violin - Persistent ID3026718D1D264477 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Magic%20Violin/1-02%20Romance%20For%20Violin%20And%20Orchestra,%20Op.26.m4a - File Folder Count4 - Library Folder Count1 - - 4708 - - Track ID4708 - NameLa Campanella: Rondo In b, Op.7 - ArtistNiccolò Paganini - AlbumThe Magic Violin - GenreClassical - KindAAC audio file - Size8710037 - Total Time363669 - Disc Number1 - Track Number3 - Track Count15 - Date Modified2006-08-08T03:05:14Z - Date Added2009-10-03T14:57:24Z - Bit Rate192 - Sample Rate44100 - Normalization1037 - Compilation - Artwork Count1 - Sort AlbumMagic Violin - Persistent ID8DFBE5948823D64F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Magic%20Violin/1-03%20La%20Campanella_%20Rondo%20In%20b,%20Op.7.m4a - File Folder Count4 - Library Folder Count1 - - 4710 - - Track ID4710 - NameSuite In D: Air - ArtistJohann Sebastian Bach - AlbumThe Magic Violin - GenreClassical - KindAAC audio file - Size5547965 - Total Time232685 - Disc Number1 - Track Number4 - Track Count15 - Date Modified2006-08-08T03:05:16Z - Date Added2009-10-03T14:57:24Z - Bit Rate192 - Sample Rate44100 - Normalization150 - Compilation - Artwork Count1 - Sort AlbumMagic Violin - Persistent ID4A5A34439CD31F30 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Magic%20Violin/1-04%20Suite%20In%20D_%20Air.m4a - File Folder Count4 - Library Folder Count1 - - 4712 - - Track ID4712 - NameMinuet In G - ArtistLudwig Van Beethoven - AlbumThe Magic Violin - GenreClassical - KindAAC audio file - Size3869297 - Total Time162700 - Disc Number1 - Track Number5 - Track Count15 - Date Modified2006-08-08T03:05:16Z - Date Added2009-10-03T14:57:24Z - Bit Rate192 - Sample Rate44100 - Normalization416 - Compilation - Artwork Count1 - Sort AlbumMagic Violin - Persistent ID70AD67C87818D005 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Magic%20Violin/1-05%20Minuet%20In%20G.m4a - File Folder Count4 - Library Folder Count1 - - 4714 - - Track ID4714 - NameLittle Bee, Op.13/9 - ArtistFranz Schubert - AlbumThe Magic Violin - GenreClassical - KindAAC audio file - Size1484960 - Total Time63319 - Disc Number1 - Track Number6 - Track Count15 - Date Modified2006-08-08T03:05:16Z - Date Added2009-10-03T14:57:24Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3340458369 - Play Date UTC2009-11-07T11:36:09Z - Normalization326 - Compilation - Artwork Count1 - Sort AlbumMagic Violin - Persistent IDBB6C9540DFA0140E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Magic%20Violin/1-06%20Little%20Bee,%20Op.13_9.m4a - File Folder Count4 - Library Folder Count1 - - 4716 - - Track ID4716 - NamePrld I/8: La fille aux cheveux de lin - ArtistClaude Debussy - AlbumThe Magic Violin - GenreClassical - KindAAC audio file - Size3192546 - Total Time135742 - Disc Number1 - Track Number7 - Track Count15 - Date Modified2006-08-08T03:05:16Z - Date Added2009-10-03T14:57:24Z - Bit Rate192 - Sample Rate44100 - Normalization443 - Compilation - Artwork Count1 - Sort AlbumMagic Violin - Persistent ID86B2E3CF1132387D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Magic%20Violin/1-07%20Prld%20I_8_%20La%20fille%20aux%20cheveux%20de%20lin.m4a - File Folder Count4 - Library Folder Count1 - - 4718 - - Track ID4718 - NameSadko: The song of the Indian Merchant - ArtistNikolai Rimsky-Korsakov - AlbumThe Magic Violin - GenreClassical - KindAAC audio file - Size4424036 - Total Time185943 - Disc Number1 - Track Number8 - Track Count15 - Date Modified2006-08-08T03:05:16Z - Date Added2009-10-03T14:57:25Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3401282453 - Play Date UTC2011-10-12T11:10:53Z - Normalization370 - Compilation - Artwork Count1 - Sort AlbumMagic Violin - Persistent ID1E55DD6476019C97 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Magic%20Violin/1-08%20Sadko_%20The%20song%20of%20the%20Indian%20Merchant.m4a - File Folder Count4 - Library Folder Count1 - - 4720 - - Track ID4720 - NameThe Nightingale's Song - ArtistVaclav Trojan - AlbumThe Magic Violin - GenreClassical - KindAAC audio file - Size4074211 - Total Time170827 - Disc Number1 - Track Number9 - Track Count15 - Date Modified2006-08-08T03:05:16Z - Date Added2009-10-03T14:57:25Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3435930705 - Play Date UTC2012-11-16T11:41:45Z - Normalization605 - Compilation - Artwork Count1 - Sort AlbumMagic Violin - Sort NameNightingale's Song - Persistent IDDDA51DAE59439070 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Magic%20Violin/1-09%20The%20Nightingale's%20Song.m4a - File Folder Count4 - Library Folder Count1 - - 4722 - - Track ID4722 - NameDas Blumenleben Op.30: Zephyr Op.30/5 - ArtistJeno Hubay - AlbumThe Magic Violin - GenreClassical - KindAAC audio file - Size5002108 - Total Time212182 - Disc Number1 - Track Number10 - Track Count15 - Date Modified2006-08-08T03:05:16Z - Date Added2009-10-03T14:57:25Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3435930917 - Play Date UTC2012-11-16T11:45:17Z - Normalization386 - Compilation - Artwork Count1 - Sort AlbumMagic Violin - Persistent IDAE9351EE850E5555 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Magic%20Violin/1-10%20Das%20Blumenleben%20Op.30_%20Zephyr%20Op.30_5.m4a - File Folder Count4 - Library Folder Count1 - - 4724 - - Track ID4724 - NameSymphonie Espagnole In d Op.21: Allegro no Troppo - ArtistEdouard Lalo - AlbumThe Magic Violin - GenreClassical - KindAAC audio file - Size11228996 - Total Time463097 - Disc Number1 - Track Number11 - Track Count15 - Date Modified2006-08-08T03:05:16Z - Date Added2009-10-03T14:57:25Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3435931380 - Play Date UTC2012-11-16T11:53:00Z - Normalization989 - Compilation - Artwork Count1 - Sort AlbumMagic Violin - Persistent ID3E75BF24FFF87B16 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Magic%20Violin/1-11%20Symphonie%20Espagnole%20In%20d%20Op.21_%20Allegro%20no%20Troppo.m4a - File Folder Count4 - Library Folder Count1 - - 4726 - - Track ID4726 - NameSymphonie Espagnole In d Op.21: Sherzando - ArtistEdouard Lalo - AlbumThe Magic Violin - GenreClassical - KindAAC audio file - Size6428585 - Total Time264729 - Disc Number1 - Track Number12 - Track Count15 - Date Modified2006-08-08T03:05:16Z - Date Added2009-10-03T14:57:25Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3435931645 - Play Date UTC2012-11-16T11:57:25Z - Skip Count1 - Normalization817 - Compilation - Artwork Count1 - Sort AlbumMagic Violin - Persistent ID66DB88606BE68852 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Magic%20Violin/1-12%20Symphonie%20Espagnole%20In%20d%20Op.21_%20Sherzando.m4a - File Folder Count4 - Library Folder Count1 - - 4728 - - Track ID4728 - NameSymphonie Espagnole In d Op.21: Intermezzo (Allegretto non Troppo) - ArtistEdouard Lalo - AlbumThe Magic Violin - GenreClassical - KindAAC audio file - Size8890802 - Total Time366479 - Disc Number1 - Track Number13 - Track Count15 - Date Modified2006-08-08T03:05:16Z - Date Added2009-10-03T14:57:25Z - Bit Rate192 - Sample Rate44100 - Normalization876 - Compilation - Artwork Count1 - Sort AlbumMagic Violin - Persistent IDA452DD9F31377DE7 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Magic%20Violin/1-13%20Symphonie%20Espagnole%20In%20d%20Op.21_%20Intermezzo%20(Allegretto%20non%20Troppo).m4a - File Folder Count4 - Library Folder Count1 - - 4730 - - Track ID4730 - NameSymphonie Espagnole In d Op.21: Adante - ArtistEdouard Lalo - AlbumThe Magic Violin - GenreClassical - KindAAC audio file - Size9847743 - Total Time406022 - Disc Number1 - Track Number14 - Track Count15 - Date Modified2006-08-08T03:05:18Z - Date Added2009-10-03T14:57:25Z - Bit Rate192 - Sample Rate44100 - Skip Count1 - Normalization852 - Compilation - Artwork Count1 - Sort AlbumMagic Violin - Persistent ID421381DCCF9C8D0F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Magic%20Violin/1-14%20Symphonie%20Espagnole%20In%20d%20Op.21_%20Adante.m4a - File Folder Count4 - Library Folder Count1 - - 4732 - - Track ID4732 - NameSymphonie Espagnole In d Op.21: Molto Moderato e maestoso - ArtistEdouard Lalo - AlbumThe Magic Violin - GenreClassical - KindAAC audio file - Size11701185 - Total Time482602 - Disc Number1 - Track Number15 - Track Count15 - Date Modified2006-08-08T03:05:18Z - Date Added2009-10-03T14:57:25Z - Bit Rate192 - Sample Rate44100 - Skip Count1 - Normalization1246 - Compilation - Artwork Count1 - Sort AlbumMagic Violin - Persistent ID4B8FB66CED0D338F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Magic%20Violin/1-15%20Symphonie%20Espagnole%20In%20d%20Op.21_%20Molto%20Moderato%20e%20maestoso.m4a - File Folder Count4 - Library Folder Count1 - - 4734 - - Track ID4734 - NameLonesome Blues - ArtistLouis Armstrong & The Hot Five - ComposerW. Dixon - AlbumThe Hot Fives And Hot Sevens - Volume II - GenreJazz - KindAAC audio file - Size4865889 - Total Time195733 - Disc Number1 - Disc Count1 - Track Number1 - Track Count16 - Year1926 - Date Modified2008-11-04T13:27:15Z - Date Added2009-10-03T14:57:26Z - Bit Rate256 - Sample Rate44100 - Normalization806 - Compilation - Artwork Count1 - Sort AlbumHot Fives And Hot Sevens - Volume II - Persistent ID4510F4ED9261FC16 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Hot%20Fives%20And%20Hot%20Sevens%20-%20Volume%20II/01%20Lonesome%20Blues.m4a - File Folder Count4 - Library Folder Count1 - - 4736 - - Track ID4736 - NameSweet Little Papa - ArtistLouis Armstrong & The Hot Five - ComposerE. Ory - AlbumThe Hot Fives And Hot Sevens - Volume II - GenreJazz - KindAAC audio file - Size4312970 - Total Time173266 - Disc Number1 - Disc Count1 - Track Number2 - Track Count16 - Year1926 - Date Modified2008-11-04T13:27:15Z - Date Added2009-10-03T14:57:26Z - Bit Rate256 - Sample Rate44100 - Normalization1242 - Compilation - Artwork Count1 - Sort AlbumHot Fives And Hot Sevens - Volume II - Persistent ID168CD01D7259D3A6 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Hot%20Fives%20And%20Hot%20Sevens%20-%20Volume%20II/02%20Sweet%20Little%20Papa.m4a - File Folder Count4 - Library Folder Count1 - - 4738 - - Track ID4738 - NameJazz Lips - ArtistLouis Armstrong & The Hot Five - ComposerLillian Hardin Armstrong - AlbumThe Hot Fives And Hot Sevens - Volume II - GenreJazz - KindAAC audio file - Size4780997 - Total Time192333 - Disc Number1 - Disc Count1 - Track Number3 - Track Count16 - Year1926 - Date Modified2008-11-04T13:27:14Z - Date Added2009-10-03T14:57:26Z - Bit Rate256 - Sample Rate44100 - Normalization1285 - Compilation - Artwork Count1 - Sort AlbumHot Fives And Hot Sevens - Volume II - Persistent IDFC4D05648F51D837 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Hot%20Fives%20And%20Hot%20Sevens%20-%20Volume%20II/03%20Jazz%20Lips.m4a - File Folder Count4 - Library Folder Count1 - - 4740 - - Track ID4740 - NameSkid-Dat-De-Dat - ArtistLouis Armstrong & His Hot Five - ComposerL. Hardin - AlbumThe Hot Fives And Hot Sevens - Volume II - GenreJazz - KindAAC audio file - Size4831855 - Total Time196266 - Disc Number1 - Disc Count1 - Track Number4 - Track Count16 - Year1926 - Date Modified2008-11-04T13:27:14Z - Date Added2009-10-03T14:57:26Z - Bit Rate256 - Sample Rate44100 - Normalization453 - Compilation - Artwork Count1 - Sort AlbumHot Fives And Hot Sevens - Volume II - Persistent ID64DAABAEC2C7E65F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Hot%20Fives%20And%20Hot%20Sevens%20-%20Volume%20II/04%20Skid-Dat-De-Dat.m4a - File Folder Count4 - Library Folder Count1 - - 4742 - - Track ID4742 - NameBig Butter And Egg Man - ArtistLouis Armstrong & His Hot Five - ComposerL. Armstrong/P. Venable - AlbumThe Hot Fives And Hot Sevens - Volume II - GenreJazz - KindAAC audio file - Size5986849 - Total Time191333 - Disc Number1 - Disc Count1 - Track Number5 - Track Count16 - Year1926 - Date Modified2008-11-04T13:27:14Z - Date Added2009-10-03T14:57:26Z - Bit Rate256 - Sample Rate44100 - Normalization993 - Compilation - Artwork Count1 - Sort AlbumHot Fives And Hot Sevens - Volume II - Persistent IDF9E178860572ADE0 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Hot%20Fives%20And%20Hot%20Sevens%20-%20Volume%20II/05%20Big%20Butter%20And%20Egg%20Man.m4a - File Folder Count4 - Library Folder Count1 - - 4744 - - Track ID4744 - NameSunset Cafe Stomp - ArtistLouis Armstrong & The Hot Five - ComposerL. Armstrong/P. Venable - AlbumThe Hot Fives And Hot Sevens - Volume II - GenreJazz - KindAAC audio file - Size4345114 - Total Time176560 - Disc Number1 - Disc Count1 - Track Number6 - Track Count16 - Year1926 - Date Modified2008-11-04T13:27:13Z - Date Added2009-10-03T14:57:26Z - Bit Rate256 - Sample Rate44100 - Normalization724 - Compilation - Artwork Count1 - Sort AlbumHot Fives And Hot Sevens - Volume II - Persistent ID406F442419FDF849 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Hot%20Fives%20And%20Hot%20Sevens%20-%20Volume%20II/06%20Sunset%20Cafe%20Stomp.m4a - File Folder Count4 - Library Folder Count1 - - 4746 - - Track ID4746 - NameYou Made Me Love You - ArtistLouis Armstrong & The Hot Five - ComposerP. Venable/L. Armstrong - AlbumThe Hot Fives And Hot Sevens - Volume II - GenreJazz - KindAAC audio file - Size4496907 - Total Time182466 - Disc Number1 - Disc Count1 - Track Number7 - Track Count16 - Year1926 - Date Modified2008-11-04T13:27:13Z - Date Added2009-10-03T14:57:26Z - Bit Rate256 - Sample Rate44100 - Normalization986 - Compilation - Artwork Count1 - Sort AlbumHot Fives And Hot Sevens - Volume II - Persistent IDFDA8B8D58A55A7D4 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Hot%20Fives%20And%20Hot%20Sevens%20-%20Volume%20II/07%20You%20Made%20Me%20Love%20You.m4a - File Folder Count4 - Library Folder Count1 - - 4748 - - Track ID4748 - NameIrish Black Bottom - ArtistLouis Armstrong & The Hot Five - ComposerL. Armstrong/P. Venable - AlbumThe Hot Fives And Hot Sevens - Volume II - GenreJazz - KindAAC audio file - Size4214204 - Total Time170706 - Disc Number1 - Disc Count1 - Track Number8 - Track Count16 - Year1926 - Date Modified2008-11-04T13:27:13Z - Date Added2009-10-03T14:57:26Z - Bit Rate256 - Sample Rate44100 - Normalization998 - Compilation - Artwork Count1 - Sort AlbumHot Fives And Hot Sevens - Volume II - Persistent ID326176914A42CF23 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Hot%20Fives%20And%20Hot%20Sevens%20-%20Volume%20II/08%20Irish%20Black%20Bottom.m4a - File Folder Count4 - Library Folder Count1 - - 4750 - - Track ID4750 - NameWillie The Weeper - ArtistLouis Armstrong & His Hot Seven - ComposerW, Melrose/G. V. Rymal/M. Bloom - AlbumThe Hot Fives And Hot Sevens - Volume II - GenreJazz - KindAAC audio file - Size4784450 - Total Time193960 - Disc Number1 - Disc Count1 - Track Number9 - Track Count16 - Year1927 - Date Modified2008-11-04T13:27:13Z - Date Added2009-10-03T14:57:26Z - Bit Rate256 - Sample Rate44100 - Normalization953 - Compilation - Artwork Count1 - Sort AlbumHot Fives And Hot Sevens - Volume II - Persistent ID390449BD35F78218 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Hot%20Fives%20And%20Hot%20Sevens%20-%20Volume%20II/09%20Willie%20The%20Weeper.m4a - File Folder Count4 - Library Folder Count1 - - 4752 - - Track ID4752 - NameWild Man Blues - ArtistLouis Armstrong Hot Seven - ComposerL. Armstrong/J. Morton - AlbumThe Hot Fives And Hot Sevens - Volume II - GenreJazz - KindAAC audio file - Size4910557 - Total Time197906 - Disc Number1 - Disc Count1 - Track Number10 - Track Count16 - Year1927 - Date Modified2008-11-04T13:27:12Z - Date Added2009-10-03T14:57:27Z - Bit Rate256 - Sample Rate44100 - Normalization765 - Compilation - Artwork Count1 - Sort AlbumHot Fives And Hot Sevens - Volume II - Persistent ID858B55458304127F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Hot%20Fives%20And%20Hot%20Sevens%20-%20Volume%20II/10%20Wild%20Man%20Blues.m4a - File Folder Count4 - Library Folder Count1 - - 4754 - - Track ID4754 - NameAlligator Crawl - ArtistLouis Armstrong Hot Seven - ComposerF. Waller/A. Razaf/J. Davis - AlbumThe Hot Fives And Hot Sevens - Volume II - GenreJazz - KindAAC audio file - Size4656070 - Total Time188626 - Disc Number1 - Disc Count1 - Track Number11 - Track Count16 - Year1927 - Date Modified2008-11-04T13:27:12Z - Date Added2009-10-03T14:57:27Z - Bit Rate256 - Sample Rate44100 - Normalization762 - Compilation - Artwork Count1 - Sort AlbumHot Fives And Hot Sevens - Volume II - Persistent IDB77E082FC76F31B9 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Hot%20Fives%20And%20Hot%20Sevens%20-%20Volume%20II/11%20Alligator%20Crawl.m4a - File Folder Count4 - Library Folder Count1 - - 4756 - - Track ID4756 - NamePotato Head Blues - ArtistLouis Armstrong & His Hot Seven - ComposerLouis Armstrong - AlbumThe Hot Fives And Hot Sevens - Volume II - GenreJazz - KindAAC audio file - Size4492474 - Total Time181666 - Disc Number1 - Disc Count1 - Track Number12 - Track Count16 - Year1927 - Date Modified2008-11-04T13:27:11Z - Date Added2009-10-03T14:57:27Z - Bit Rate256 - Sample Rate44100 - Normalization1287 - Compilation - Artwork Count1 - Sort AlbumHot Fives And Hot Sevens - Volume II - Persistent IDDAB7B6F8584F7446 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Hot%20Fives%20And%20Hot%20Sevens%20-%20Volume%20II/12%20Potato%20Head%20Blues.m4a - File Folder Count4 - Library Folder Count1 - - 4758 - - Track ID4758 - NameMelancholy - ArtistLouis Armstrong & His Hot Seven - ComposerM. Bloom/W. Melrose - AlbumThe Hot Fives And Hot Sevens - Volume II - GenreJazz - KindAAC audio file - Size4656906 - Total Time188040 - Disc Number1 - Disc Count1 - Track Number13 - Track Count16 - Year1927 - Date Modified2008-11-04T13:27:11Z - Date Added2009-10-03T14:57:27Z - Bit Rate256 - Sample Rate44100 - Normalization1038 - Compilation - Artwork Count1 - Sort AlbumHot Fives And Hot Sevens - Volume II - Persistent ID4C3478F9A60BA992 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Hot%20Fives%20And%20Hot%20Sevens%20-%20Volume%20II/13%20Melancholy.m4a - File Folder Count4 - Library Folder Count1 - - 4760 - - Track ID4760 - NameWeary Blues - ArtistLouis Armstrong Hot Seven - ComposerA. Matthews - AlbumThe Hot Fives And Hot Sevens - Volume II - GenreJazz - KindAAC audio file - Size4650826 - Total Time186093 - Disc Number1 - Disc Count1 - Track Number14 - Track Count16 - Year1927 - Date Modified2008-11-04T13:27:11Z - Date Added2009-10-03T14:57:27Z - Bit Rate256 - Sample Rate44100 - Normalization1033 - Compilation - Artwork Count1 - Sort AlbumHot Fives And Hot Sevens - Volume II - Persistent ID51BD9690FF21CA57 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Hot%20Fives%20And%20Hot%20Sevens%20-%20Volume%20II/14%20Weary%20Blues.m4a - File Folder Count4 - Library Folder Count1 - - 4762 - - Track ID4762 - NameTwelfth Street Rag - ArtistLouis Armstrong Hot Seven - ComposerE. Bowman - AlbumThe Hot Fives And Hot Sevens - Volume II - GenreJazz - KindAAC audio file - Size4717862 - Total Time190400 - Disc Number1 - Disc Count1 - Track Number15 - Track Count16 - Year1927 - Date Modified2008-11-04T13:27:11Z - Date Added2009-10-03T14:57:27Z - Bit Rate256 - Sample Rate44100 - Normalization940 - Compilation - Artwork Count1 - Sort AlbumHot Fives And Hot Sevens - Volume II - Persistent IDD83B8168AE8EA787 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Hot%20Fives%20And%20Hot%20Sevens%20-%20Volume%20II/15%20Twelfth%20Street%20Rag.m4a - File Folder Count4 - Library Folder Count1 - - 4764 - - Track ID4764 - NameKeyhole Blues - ArtistLouis Armstrong Hot Seven - ComposerN. Wilson - AlbumThe Hot Fives And Hot Sevens - Volume II - GenreJazz - KindAAC audio file - Size5317366 - Total Time211200 - Disc Number1 - Disc Count1 - Track Number16 - Track Count16 - Year1927 - Date Modified2008-11-04T13:27:10Z - Date Added2009-10-03T14:57:27Z - Bit Rate256 - Sample Rate44100 - Normalization1223 - Compilation - Artwork Count1 - Sort AlbumHot Fives And Hot Sevens - Volume II - Persistent ID45ADCD2D3BCECD6C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Hot%20Fives%20And%20Hot%20Sevens%20-%20Volume%20II/16%20Keyhole%20Blues.m4a - File Folder Count4 - Library Folder Count1 - - 4766 - - Track ID4766 - NameSri Venkatesa Suprabhatham (1963) - ArtistM.S. Subbulakshmi - AlbumSuprabhathams - GenreWorld - KindAAC audio file - Size29865324 - Total Time1234649 - Track Number1 - Track Count4 - Year1990 - Date Modified2006-07-30T01:38:26Z - Date Added2009-10-03T14:57:27Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3393129072 - Play Date UTC2011-07-10T02:21:12Z - Normalization1813 - Compilation - Artwork Count1 - Persistent ID229022902EB1C991 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Suprabhathams/01%20Sri%20Venkatesa%20Suprabhatham%20(1963).m4a - File Folder Count4 - Library Folder Count1 - - 4768 - - Track ID4768 - NameSri Kamakshi Suprabhatham (1974) - ArtistM.S. Subbulakshmi - AlbumSuprabhathams - GenreWorld - KindAAC audio file - Size18134521 - Total Time748354 - Track Number2 - Track Count4 - Year1990 - Date Modified2006-07-30T01:38:26Z - Date Added2009-10-03T14:57:28Z - Bit Rate192 - Sample Rate44100 - Normalization1234 - Compilation - Artwork Count1 - Persistent ID2CF2874225F6E097 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Suprabhathams/02%20Sri%20Kamakshi%20Suprabhatham%20(1974).m4a - File Folder Count4 - Library Folder Count1 - - 4770 - - Track ID4770 - NameKashi Viswanatha Suprabhatham (1977) - ArtistM.S. Subbulakshmi - AlbumSuprabhathams - GenreWorld - KindAAC audio file - Size16077546 - Total Time663346 - Track Number3 - Track Count4 - Year1990 - Date Modified2006-07-30T01:38:28Z - Date Added2009-10-03T14:57:28Z - Bit Rate192 - Sample Rate44100 - Normalization1266 - Compilation - Artwork Count1 - Persistent IDE1C38442A5B99293 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Suprabhathams/03%20Kashi%20Viswanatha%20Suprabhatham%20(1977).m4a - File Folder Count4 - Library Folder Count1 - - 4772 - - Track ID4772 - NameRameswaram Ramanatha Suprabhatham (1977) - ArtistM.S. Subbulakshmi - AlbumSuprabhathams - GenreWorld - KindAAC audio file - Size24232046 - Total Time1003147 - Track Number4 - Track Count4 - Year1990 - Date Modified2006-07-30T01:38:28Z - Date Added2009-10-03T14:57:28Z - Bit Rate192 - Sample Rate44100 - Normalization1213 - Compilation - Artwork Count1 - Persistent ID0C8DBFCD686AE706 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Suprabhathams/04%20Rameswaram%20Ramanatha%20Suprabhatham%20(1977).m4a - File Folder Count4 - Library Folder Count1 - - 4774 - - Track ID4774 - NameStrauss (R): Also Sprach Zarathustra, Op. 30 - 01. Einleitung - ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra - ComposerRichard Strauss (1864-1949) - AlbumStrauss (R): Also Sprach Zarathustra, Don Juan - GenreClassical - KindAAC audio file - Size2511475 - Total Time104116 - Disc Number1 - Disc Count1 - Track Number1 - Track Count10 - Year1984 - Date Modified2006-08-07T08:17:38Z - Date Added2009-10-03T14:57:28Z - Bit Rate192 - Sample Rate44100 - Skip Count1 - Skip Date2014-05-30T05:48:40Z - Normalization3106 - Compilation - Artwork Count1 - Persistent ID5FC8CC823C4A4811 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Strauss%20(R)_%20Also%20Sprach%20Zarathustra,%20Don%20Juan/01%20Strauss%20(R)_%20Also%20Sprach%20Zarathustra,%20Op.%2030%20-%2001.%20Einleitung.m4a - File Folder Count4 - Library Folder Count1 - - 4776 - - Track ID4776 - NameStrauss (R): Also Sprach Zarathustra, Op. 30 - 02. Von Den Hinterweltlern - ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra - ComposerRichard Strauss (1864-1949) - AlbumStrauss (R): Also Sprach Zarathustra, Don Juan - GenreClassical - KindAAC audio file - Size5040652 - Total Time207027 - Disc Number1 - Disc Count1 - Track Number2 - Track Count10 - Year1984 - Date Modified2006-08-07T08:17:38Z - Date Added2009-10-03T14:57:28Z - Bit Rate192 - Sample Rate44100 - Normalization202 - Compilation - Artwork Count1 - Persistent ID460D592998F53238 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Strauss%20(R)_%20Also%20Sprach%20Zarathustra,%20Don%20Juan/02%20Strauss%20(R)_%20Also%20Sprach%20Zarathustra,%20Op.%2030%20-%2002.%20Von%20Den%20Hinterweltlern.m4a - File Folder Count4 - Library Folder Count1 - - 4778 - - Track ID4778 - NameStrauss (R): Also Sprach Zarathustra, Op. 30 - 03. Von Der Großen Sehnsucht - ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra - ComposerRichard Strauss (1864-1949) - AlbumStrauss (R): Also Sprach Zarathustra, Don Juan - GenreClassical - KindAAC audio file - Size3048712 - Total Time124736 - Disc Number1 - Disc Count1 - Track Number3 - Track Count10 - Year1984 - Date Modified2006-08-07T08:17:38Z - Date Added2009-10-03T14:57:28Z - Bit Rate192 - Sample Rate44100 - Normalization1232 - Compilation - Artwork Count1 - Persistent IDA6B8CF54C65F5942 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Strauss%20(R)_%20Also%20Sprach%20Zarathustra,%20Don%20Juan/03%20Strauss%20(R)_%20Also%20Sprach%20Zarathustra,%20Op.%2030%20-%2003.%20Von%20Der%20Gro%C3%9Fen%20Sehnsucht.m4a - File Folder Count4 - Library Folder Count1 - - 4780 - - Track ID4780 - NameStrauss (R): Also Sprach Zarathustra, Op. 30 - 04. Von Den Freuden Und Leidenschaften - ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra - ComposerRichard Strauss (1864-1949) - AlbumStrauss (R): Also Sprach Zarathustra, Don Juan - GenreClassical - KindAAC audio file - Size3441500 - Total Time141082 - Disc Number1 - Disc Count1 - Track Number4 - Track Count10 - Year1984 - Date Modified2006-08-07T08:17:38Z - Date Added2009-10-03T14:57:28Z - Bit Rate192 - Sample Rate44100 - Normalization1429 - Compilation - Artwork Count1 - Persistent IDCC5A3D6182BE8A65 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Strauss%20(R)_%20Also%20Sprach%20Zarathustra,%20Don%20Juan/04%20Strauss%20(R)_%20Also%20Sprach%20Zarathustra,%20Op.%2030%20-%2004.%20Von%20Den%20Freuden%20Und%20Leidenschaften.m4a - File Folder Count4 - Library Folder Count1 - - 4782 - - Track ID4782 - NameStrauss (R): Also Sprach Zarathustra, Op. 30 - 05. Das Grablied - ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra - ComposerRichard Strauss (1864-1949) - AlbumStrauss (R): Also Sprach Zarathustra, Don Juan - GenreClassical - KindAAC audio file - Size4083171 - Total Time167809 - Disc Number1 - Disc Count1 - Track Number5 - Track Count10 - Year1984 - Date Modified2006-08-07T08:17:38Z - Date Added2009-10-03T14:57:29Z - Bit Rate192 - Sample Rate44100 - Normalization92 - Compilation - Artwork Count1 - Persistent IDD01FB93DC428765F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Strauss%20(R)_%20Also%20Sprach%20Zarathustra,%20Don%20Juan/05%20Strauss%20(R)_%20Also%20Sprach%20Zarathustra,%20Op.%2030%20-%2005.%20Das%20Grablied.m4a - File Folder Count4 - Library Folder Count1 - - 4784 - - Track ID4784 - NameStrauss (R): Also Sprach Zarathustra, Op. 30 - 06. Von Der Wissenschaft - ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra - ComposerRichard Strauss (1864-1949) - AlbumStrauss (R): Also Sprach Zarathustra, Don Juan - GenreClassical - KindAAC audio file - Size6665525 - Total Time274620 - Disc Number1 - Disc Count1 - Track Number6 - Track Count10 - Year1984 - Date Modified2006-08-07T08:17:38Z - Date Added2009-10-03T14:57:29Z - Bit Rate192 - Sample Rate44100 - Normalization1024 - Compilation - Artwork Count1 - Persistent IDC62566DCAA142D12 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Strauss%20(R)_%20Also%20Sprach%20Zarathustra,%20Don%20Juan/06%20Strauss%20(R)_%20Also%20Sprach%20Zarathustra,%20Op.%2030%20-%2006.%20Von%20Der%20Wissenschaft.m4a - File Folder Count4 - Library Folder Count1 - - 4786 - - Track ID4786 - NameStrauss (R): Also Sprach Zarathustra, Op. 30 - 07. Der Genesende - ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra - ComposerRichard Strauss (1864-1949) - AlbumStrauss (R): Also Sprach Zarathustra, Don Juan - GenreClassical - KindAAC audio file - Size7983422 - Total Time329048 - Disc Number1 - Disc Count1 - Track Number7 - Track Count10 - Year1984 - Date Modified2006-08-07T08:17:40Z - Date Added2009-10-03T14:57:29Z - Bit Rate192 - Sample Rate44100 - Normalization1253 - Compilation - Artwork Count1 - Persistent ID4868AB8F203D69E4 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Strauss%20(R)_%20Also%20Sprach%20Zarathustra,%20Don%20Juan/07%20Strauss%20(R)_%20Also%20Sprach%20Zarathustra,%20Op.%2030%20-%2007.%20Der%20Genesende.m4a - File Folder Count4 - Library Folder Count1 - - 4788 - - Track ID4788 - NameStrauss (R): Also Sprach Zarathustra, Op. 30 - 08. Das Tanzlied - ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra - ComposerRichard Strauss (1864-1949) - AlbumStrauss (R): Also Sprach Zarathustra, Don Juan - GenreClassical - KindAAC audio file - Size12239883 - Total Time504939 - Disc Number1 - Disc Count1 - Track Number8 - Track Count10 - Year1984 - Date Modified2006-08-07T08:17:40Z - Date Added2009-10-03T14:57:29Z - Bit Rate192 - Sample Rate44100 - Normalization1222 - Compilation - Artwork Count1 - Persistent IDB6A4B91C7D09A844 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Strauss%20(R)_%20Also%20Sprach%20Zarathustra,%20Don%20Juan/08%20Strauss%20(R)_%20Also%20Sprach%20Zarathustra,%20Op.%2030%20-%2008.%20Das%20Tanzlied.m4a - File Folder Count4 - Library Folder Count1 - - 4790 - - Track ID4790 - NameStrauss (R): Also Sprach Zarathustra, Op. 30 - 09. Nachtwandlerlied - ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra - ComposerRichard Strauss (1864-1949) - AlbumStrauss (R): Also Sprach Zarathustra, Don Juan - GenreClassical - KindAAC audio file - Size7264005 - Total Time304830 - Disc Number1 - Disc Count1 - Track Number9 - Track Count10 - Year1984 - Date Modified2006-08-07T08:17:40Z - Date Added2009-10-03T14:57:29Z - Bit Rate192 - Sample Rate44100 - Normalization1215 - Compilation - Artwork Count1 - Persistent IDA2F8B3DB513F3BE6 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Strauss%20(R)_%20Also%20Sprach%20Zarathustra,%20Don%20Juan/09%20Strauss%20(R)_%20Also%20Sprach%20Zarathustra,%20Op.%2030%20-%2009.%20Nachtwandlerlied.m4a - File Folder Count4 - Library Folder Count1 - - 4792 - - Track ID4792 - NameStrauss (R): Don Juan, Op. 20 - ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra - ComposerRichard Strauss (1864-1949) - AlbumStrauss (R): Also Sprach Zarathustra, Don Juan - GenreClassical - KindAAC audio file - Size26499170 - Total Time1095214 - Disc Number1 - Disc Count1 - Track Number10 - Track Count10 - Year1984 - Date Modified2006-08-07T08:17:42Z - Date Added2009-10-03T14:57:29Z - Bit Rate192 - Sample Rate44100 - Normalization1377 - Compilation - Artwork Count1 - Persistent IDBBB3F4D54F6B9977 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Strauss%20(R)_%20Also%20Sprach%20Zarathustra,%20Don%20Juan/10%20Strauss%20(R)_%20Don%20Juan,%20Op.%2020.m4a - File Folder Count4 - Library Folder Count1 - - 4794 - - Track ID4794 - NameJ.S. Bach: Cantata #167, BWV 167, Sei Lob Und Preis Mit Ehren - ArtistYo-Yo Ma - ComposerJohann Sebastian Bach - AlbumSimply Baroque - GenreClassical - KindAAC audio file - Size3357636 - Total Time137600 - Disc Number1 - Disc Count1 - Track Number1 - Track Count16 - Year1999 - Date Modified2006-08-13T06:36:40Z - Date Added2009-10-03T14:57:29Z - Bit Rate192 - Sample Rate44100 - Normalization270 - Compilation - Artwork Count1 - Persistent ID5D9BB7859237E1A5 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Simply%20Baroque/01%20J.S.%20Bach_%20Cantata%20%23167,%20BWV%20167,%20Sei%20Lob%20Und%20Preis%20Mit%20Ehren.m4a - File Folder Count4 - Library Folder Count1 - - 4796 - - Track ID4796 - NameJ.S. Bach: St. Matthew Passion, BWV 244 - Erbarme Dich - ArtistYo-Yo Ma - ComposerJohann Sebastian Bach - AlbumSimply Baroque - GenreClassical - KindAAC audio file - Size10671172 - Total Time440156 - Disc Number1 - Disc Count1 - Track Number2 - Track Count16 - Year1999 - Date Modified2006-08-13T06:36:40Z - Date Added2009-10-03T14:57:30Z - Bit Rate192 - Sample Rate44100 - Normalization310 - Compilation - Artwork Count1 - Persistent ID768CF4E63E7A8728 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Simply%20Baroque/02%20J.S.%20Bach_%20St.%20Matthew%20Passion,%20BWV%20244%20-%20Erbarme%20Dich.m4a - File Folder Count4 - Library Folder Count1 - - 4798 - - Track ID4798 - NameJ.S. Bach: Cantata #147, BWV 147, Jesu, Joy Of Man's Desiring - ArtistYo-Yo Ma - ComposerJohann Sebastian Bach - AlbumSimply Baroque - GenreClassical - KindAAC audio file - Size4000654 - Total Time164372 - Disc Number1 - Disc Count1 - Track Number3 - Track Count16 - Year1999 - Date Modified2006-08-13T06:36:34Z - Date Added2009-10-03T14:57:30Z - Bit Rate192 - Sample Rate44100 - Normalization206 - Compilation - Artwork Count1 - Persistent ID3D6772CDA61F24A9 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Simply%20Baroque/03%20J.S.%20Bach_%20Cantata%20%23147,%20BWV%20147,%20Jesu,%20Joy%20Of%20Man's%20Desiring.m4a - File Folder Count4 - Library Folder Count1 - - 4800 - - Track ID4800 - NameJ.S. Bach: Cantata #22, BWV 22, Ertot' Uns Durch Dein' Gute - ArtistYo-Yo Ma, Ton Koopman; Amsterdam Baroque Orchestra - ComposerJohann Sebastian Bach - AlbumSimply Baroque - GenreClassical - KindAAC audio file - Size2223110 - Total Time90393 - Disc Number1 - Disc Count1 - Track Number4 - Track Count16 - Year1999 - Date Modified2006-08-13T06:36:32Z - Date Added2009-10-03T14:57:30Z - Bit Rate192 - Sample Rate44100 - Normalization270 - Compilation - Artwork Count1 - Persistent ID7375415E6CF57CCF - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Simply%20Baroque/04%20J.S.%20Bach_%20Cantata%20%2322,%20BWV%2022,%20Ertot'%20Uns%20Durch%20Dein'%20Gute.m4a - File Folder Count4 - Library Folder Count1 - - 4802 - - Track ID4802 - NameJ.S. Bach: Chorale Prelude, BWV 639, Ich Ruf' Zu Dir, Herr Jesu Christ - ArtistYo-Yo Ma, Ton Koopman; Amsterdam Baroque Orchestra - ComposerJohann Sebastian Bach - AlbumSimply Baroque - GenreClassical - KindAAC audio file - Size3628227 - Total Time148884 - Disc Number1 - Disc Count1 - Track Number5 - Track Count16 - Year1999 - Date Modified2006-08-13T06:36:32Z - Date Added2009-10-03T14:57:30Z - Bit Rate192 - Sample Rate44100 - Normalization64 - Compilation - Artwork Count1 - Persistent IDDC97A057B2B03C1F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Simply%20Baroque/05%20J.S.%20Bach_%20Chorale%20Prelude,%20BWV%20639,%20Ich%20Ruf'%20Zu%20Dir,%20Herr%20Jesu%20Christ.m4a - File Folder Count4 - Library Folder Count1 - - 4804 - - Track ID4804 - NameJ.S. Bach: Chorale Prelude, BWV 650, Kommst Du Nun, Jesu, Vom Himmel Herunter - ArtistYo-Yo Ma, Ton Koopman; Amsterdam Baroque Orchestra - ComposerJohann Sebastian Bach - AlbumSimply Baroque - GenreClassical - KindAAC audio file - Size4562964 - Total Time187174 - Disc Number1 - Disc Count1 - Track Number6 - Track Count16 - Year1999 - Date Modified2006-08-13T06:36:30Z - Date Added2009-10-03T14:57:30Z - Bit Rate192 - Sample Rate44100 - Normalization94 - Compilation - Artwork Count1 - Persistent ID7D0EEBB54B8E1D3B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Simply%20Baroque/06%20J.S.%20Bach_%20Chorale%20Prelude,%20BWV%20650,%20Kommst%20Du%20Nun,%20Jesu,%20Vom%20Himmel%20Herunter.m4a - File Folder Count4 - Library Folder Count1 - - 4806 - - Track ID4806 - NameJ.S. Bach: - Cantata #163, BWV 163, Lab Mein Herz Die Munze Sein - ArtistYo-Yo Ma, Ton Koopman; Amsterdam Baroque Orchestra - ComposerJohann Sebastian Bach - AlbumSimply Baroque - GenreClassical - KindAAC audio file - Size4388180 - Total Time180510 - Disc Number1 - Disc Count1 - Track Number7 - Track Count16 - Year1999 - Date Modified2006-08-13T06:36:28Z - Date Added2009-10-03T14:57:30Z - Bit Rate192 - Sample Rate44100 - Normalization141 - Compilation - Artwork Count1 - Persistent ID2DB757590494DA67 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Simply%20Baroque/07%20J.S.%20Bach_%20-%20Cantata%20%23163,%20BWV%20163,%20Lab%20Mein%20Herz%20Die%20Munze%20Sein.m4a - File Folder Count4 - Library Folder Count1 - - 4808 - - Track ID4808 - NameJ.S. Bach: Cantata #136, BWV 136, Dein Blut, Der Edle Saft - ArtistYo-Yo Ma, Ton Koopman; Amsterdam Baroque Orchestra - ComposerJohann Sebastian Bach - AlbumSimply Baroque - GenreClassical - KindAAC audio file - Size1287530 - Total Time51407 - Disc Number1 - Disc Count1 - Track Number8 - Track Count16 - Year1999 - Date Modified2006-08-13T06:36:26Z - Date Added2009-10-03T14:57:30Z - Bit Rate192 - Sample Rate44100 - Normalization78 - Compilation - Artwork Count1 - Persistent ID3AE7B05ACF99C43C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Simply%20Baroque/08%20J.S.%20Bach_%20Cantata%20%23136,%20BWV%20136,%20Dein%20Blut,%20Der%20Edle%20Saft.m4a - File Folder Count4 - Library Folder Count1 - - 4810 - - Track ID4810 - NameJ.S. Bach: Suite 3 In D, BWV 1068, "Air On The G String" - ArtistYo-Yo Ma, Ton Koopman; Amsterdam Baroque Orchestra - ComposerJohann Sebastian Bach - AlbumSimply Baroque - GenreClassical - KindAAC audio file - Size7381800 - Total Time304203 - Disc Number1 - Disc Count1 - Track Number9 - Track Count16 - Year1999 - Date Modified2006-08-13T06:36:26Z - Date Added2009-10-03T14:57:31Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3427541392 - Play Date UTC2012-08-11T09:19:52Z - Normalization205 - Compilation - Artwork Count1 - Persistent IDF31D821382B23AF0 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Simply%20Baroque/09%20J.S.%20Bach_%20Suite%203%20In%20D,%20BWV%201068,%20_Air%20On%20The%20G%20String_.m4a - File Folder Count4 - Library Folder Count1 - - 4812 - - Track ID4812 - NameBoccherini - Cello Concerto In G, G480 - 1. Allegro - ArtistYo-Yo Ma, Ton Koopman; Amsterdam Baroque Orchestra - ComposerLuigi Boccherini - AlbumSimply Baroque - GenreClassical - KindAAC audio file - Size11095908 - Total Time457710 - Disc Number1 - Disc Count1 - Track Number10 - Track Count16 - Year1999 - Date Modified2006-08-13T06:36:22Z - Date Added2009-10-03T14:57:31Z - Bit Rate192 - Sample Rate44100 - Normalization793 - Compilation - Artwork Count1 - Persistent ID58F052E2E6B0EA93 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Simply%20Baroque/10%20Boccherini%20-%20Cello%20Concerto%20In%20G,%20G480%20-%201.%20Allegro.m4a - File Folder Count4 - Library Folder Count1 - - 4814 - - Track ID4814 - NameBoccherini - Cello Concerto In G, G480 - 2. Adagio - ArtistYo-Yo Ma, Ton Koopman; Amsterdam Baroque Orchestra - ComposerLuigi Boccherini - AlbumSimply Baroque - GenreClassical - KindAAC audio file - Size7082623 - Total Time291850 - Disc Number1 - Disc Count1 - Track Number11 - Track Count16 - Year1999 - Date Modified2006-08-13T06:36:18Z - Date Added2009-10-03T14:57:31Z - Bit Rate192 - Sample Rate44100 - Normalization301 - Compilation - Artwork Count1 - Persistent ID7C4E027664CDA155 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Simply%20Baroque/11%20Boccherini%20-%20Cello%20Concerto%20In%20G,%20G480%20-%202.%20Adagio.m4a - File Folder Count4 - Library Folder Count1 - - 4816 - - Track ID4816 - NameBoccherini - Cello Concerto In G, G480 - 3. Allegro - ArtistYo-Yo Ma, Ton Koopman; Amsterdam Baroque Orchestra - ComposerLuigi Boccherini - AlbumSimply Baroque - GenreClassical - KindAAC audio file - Size7387432 - Total Time304435 - Disc Number1 - Disc Count1 - Track Number12 - Track Count16 - Year1999 - Date Modified2006-08-13T06:36:14Z - Date Added2009-10-03T14:57:31Z - Bit Rate192 - Sample Rate44100 - Normalization256 - Compilation - Artwork Count1 - Persistent IDD5B5991CA9EA5B30 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Simply%20Baroque/12%20Boccherini%20-%20Cello%20Concerto%20In%20G,%20G480%20-%203.%20Allegro.m4a - File Folder Count4 - Library Folder Count1 - - 4818 - - Track ID4818 - NameBoccherini - Cello Concerto In D, G478 - 1. Allegro Con Spirito - ArtistYo-Yo Ma, Ton Koopman; Amsterdam Baroque Orchestra - ComposerLuigi Boccherini - AlbumSimply Baroque - GenreClassical - KindAAC audio file - Size10546652 - Total Time434977 - Disc Number1 - Disc Count1 - Track Number13 - Track Count16 - Year1999 - Date Modified2006-08-13T06:36:10Z - Date Added2009-10-03T14:57:31Z - Bit Rate192 - Sample Rate44100 - Normalization929 - Compilation - Artwork Count1 - Persistent IDB9F1FB25E2DD466D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Simply%20Baroque/13%20Boccherini%20-%20Cello%20Concerto%20In%20D,%20G478%20-%201.%20Allegro%20Con%20Spirito.m4a - File Folder Count4 - Library Folder Count1 - - 4820 - - Track ID4820 - NameBoccherini - Cello Concerto In D, G478 - 2. Larghetto - ArtistYo-Yo Ma, Ton Koopman; Amsterdam Baroque Orchestra - ComposerLuigi Boccherini - AlbumSimply Baroque - GenreClassical - KindAAC audio file - Size8412741 - Total Time346811 - Disc Number1 - Disc Count1 - Track Number14 - Track Count16 - Year1999 - Date Modified2006-08-13T06:36:06Z - Date Added2009-10-03T14:57:31Z - Bit Rate192 - Sample Rate44100 - Normalization351 - Compilation - Artwork Count1 - Persistent ID2128E45685C6EACF - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Simply%20Baroque/14%20Boccherini%20-%20Cello%20Concerto%20In%20D,%20G478%20-%202.%20Larghetto.m4a - File Folder Count4 - Library Folder Count1 - - 4822 - - Track ID4822 - NameBoccherini - Cello Concerto In D, G478 - 3. Rondo - ArtistYo-Yo Ma, Ton Koopman; Amsterdam Baroque Orchestra - ComposerLuigi Boccherini - AlbumSimply Baroque - GenreClassical - KindAAC audio file - Size6117731 - Total Time251888 - Disc Number1 - Disc Count1 - Track Number15 - Track Count16 - Year1999 - Date Modified2006-08-13T06:36:02Z - Date Added2009-10-03T14:57:31Z - Bit Rate192 - Sample Rate44100 - Normalization915 - Compilation - Artwork Count1 - Persistent ID559AEAB6B6D2BB52 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Simply%20Baroque/15%20Boccherini%20-%20Cello%20Concerto%20In%20D,%20G478%20-%203.%20Rondo.m4a - File Folder Count4 - Library Folder Count1 - - 4824 - - Track ID4824 - NameBoccherini - Cello Concerto In D, G478 - 4. Rondo Comodo Assai - ArtistYo-Yo Ma, Ton Koopman; Amsterdam Baroque Orchestra - ComposerLuigi Boccherini - AlbumSimply Baroque - GenreClassical - KindAAC audio file - Size8576259 - Total Time353568 - Disc Number1 - Disc Count1 - Track Number16 - Track Count16 - Year1999 - Date Modified2006-08-13T06:36:00Z - Date Added2009-10-03T14:57:31Z - Bit Rate192 - Sample Rate44100 - Normalization497 - Compilation - Artwork Count1 - Persistent ID2594B164DC666E77 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Simply%20Baroque/16%20Boccherini%20-%20Cello%20Concerto%20In%20D,%20G478%20-%204.%20Rondo%20Comodo%20Assai.m4a - File Folder Count4 - Library Folder Count1 - - 4826 - - Track ID4826 - NameDehka Ek Khawab - ArtistLata Mangeshkar & Kishore Kumar - ComposerShiv-Hari - AlbumSilsila/Kabhi Kabhi - GenreWorld - KindAAC audio file - Size7831569 - Total Time325066 - Disc Number1 - Disc Count1 - Track Number1 - Track Count17 - Date Modified2007-09-10T09:57:28Z - Date Added2009-10-03T14:57:32Z - Bit Rate192 - Sample Rate44100 - Normalization1332 - Compilation - Persistent ID4C77B612D2C92C12 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Silsila_Kabhi%20Kabhi/01%20Dehka%20Ek%20Khawab.m4a - File Folder Count4 - Library Folder Count1 - - 4828 - - Track ID4828 - NameDehka Ek Khawab - ArtistLata Mangeshkar & Kishore Kumar - ComposerShiv-Hari - AlbumSilsila/Kabhi Kabhi - GenreWorld - KindAAC audio file - Size7849107 - Total Time325077 - Disc Number1 - Disc Count1 - Track Number1 - Track Count17 - Date Modified2006-07-30T01:52:24Z - Date Added2009-10-03T14:57:32Z - Bit Rate192 - Sample Rate44100 - Normalization1331 - Compilation - Artwork Count1 - Persistent ID4E75F3F68D391143 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Silsila_Kabhi%20Kabhi/01%20Dehka%20Ek%20Khawab%201.m4a - File Folder Count4 - Library Folder Count1 - - 4830 - - Track ID4830 - NameYeh Kahan Aa Gaye Ham - ArtistLata Mangeshkar, Amitabh Bachchan - ComposerShiv-Hari - AlbumSilsila/Kabhi Kabhi - GenreWorld - KindAAC audio file - Size8944429 - Total Time369400 - Disc Number1 - Disc Count1 - Track Number2 - Track Count17 - Date Modified2007-09-10T09:58:16Z - Date Added2009-10-03T14:57:32Z - Bit Rate192 - Sample Rate44100 - Normalization1295 - Compilation - Persistent ID763FA4DF50C8DA5D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Silsila_Kabhi%20Kabhi/02%20Yeh%20Kahan%20Aa%20Gaye%20Ham.m4a - File Folder Count4 - Library Folder Count1 - - 4832 - - Track ID4832 - NameYeh Kahan Aa Gaye Ham - ArtistLata Mangeshkar, Amitabh Bachchan - ComposerShiv-Hari - AlbumSilsila/Kabhi Kabhi - GenreWorld - KindAAC audio file - Size8962015 - Total Time369404 - Disc Number1 - Disc Count1 - Track Number2 - Track Count17 - Date Modified2006-07-30T01:52:26Z - Date Added2009-10-03T14:57:32Z - Bit Rate192 - Sample Rate44100 - Normalization1296 - Compilation - Artwork Count1 - Persistent IDBEA93583E0576EB4 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Silsila_Kabhi%20Kabhi/02%20Yeh%20Kahan%20Aa%20Gaye%20Ham%201.m4a - File Folder Count4 - Library Folder Count1 - - 4834 - - Track ID4834 - NameSar Se Sarke - ArtistLata Mangeshkar & Kishore Kumar - ComposerShiv-Hari - AlbumSilsila/Kabhi Kabhi - GenreWorld - KindAAC audio file - Size8279151 - Total Time341906 - Disc Number1 - Disc Count1 - Track Number3 - Track Count17 - Date Modified2007-09-10T09:58:54Z - Date Added2009-10-03T14:57:32Z - Bit Rate192 - Sample Rate44100 - Normalization2512 - Compilation - Persistent IDF0A4A2D9ED9B070D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Silsila_Kabhi%20Kabhi/03%20Sar%20Se%20Sarke.m4a - File Folder Count4 - Library Folder Count1 - - 4836 - - Track ID4836 - NameSar Se Sarke - ArtistLata Mangeshkar & Kishore Kumar - ComposerShiv-Hari - AlbumSilsila/Kabhi Kabhi - GenreWorld - KindAAC audio file - Size8296748 - Total Time341912 - Disc Number1 - Disc Count1 - Track Number3 - Track Count17 - Date Modified2006-07-30T01:52:26Z - Date Added2009-10-03T14:57:32Z - Bit Rate192 - Sample Rate44100 - Normalization2510 - Compilation - Artwork Count1 - Persistent ID0BF37B4701661DB4 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Silsila_Kabhi%20Kabhi/03%20Sar%20Se%20Sarke%201.m4a - File Folder Count4 - Library Folder Count1 - - 4838 - - Track ID4838 - NameNeela Aasman So Gaya - ArtistLata Mangeshkar - ComposerShiv-Hari - AlbumSilsila/Kabhi Kabhi - GenreWorld - KindAAC audio file - Size7446015 - Total Time307466 - Disc Number1 - Disc Count1 - Track Number4 - Track Count17 - Date Modified2007-09-10T09:59:30Z - Date Added2009-10-03T14:57:33Z - Bit Rate192 - Sample Rate44100 - Normalization2524 - Compilation - Persistent IDE5422A1ED35A8220 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Silsila_Kabhi%20Kabhi/04%20Neela%20Aasman%20So%20Gaya.m4a - File Folder Count4 - Library Folder Count1 - - 4840 - - Track ID4840 - NameNeela Aasman So Gaya - ArtistLata Mangeshkar - ComposerShiv-Hari - AlbumSilsila/Kabhi Kabhi - GenreWorld - KindAAC audio file - Size7463424 - Total Time307477 - Disc Number1 - Disc Count1 - Track Number4 - Track Count17 - Date Modified2006-07-30T01:52:24Z - Date Added2009-10-03T14:57:33Z - Bit Rate192 - Sample Rate44100 - Normalization2521 - Compilation - Artwork Count1 - Persistent ID3D1480D8626B073D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Silsila_Kabhi%20Kabhi/04%20Neela%20Aasman%20So%20Gaya%201.m4a - File Folder Count4 - Library Folder Count1 - - 4842 - - Track ID4842 - NameLadki Hai Ya Shola - ArtistLata Mangeshkar & Kishore Kumar - ComposerShiv-Hari - AlbumSilsila/Kabhi Kabhi - GenreWorld - KindAAC audio file - Size5741124 - Total Time237226 - Disc Number1 - Disc Count1 - Track Number5 - Track Count17 - Date Modified2007-09-10T09:59:56Z - Date Added2009-10-03T14:57:33Z - Bit Rate192 - Sample Rate44100 - Normalization1956 - Compilation - Persistent IDEE662E1A7F6D5300 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Silsila_Kabhi%20Kabhi/05%20Ladki%20Hai%20Ya%20Shola.m4a - File Folder Count4 - Library Folder Count1 - - 4844 - - Track ID4844 - NameLadki Hai Ya Shola - ArtistLata Mangeshkar & Kishore Kumar - ComposerShiv-Hari - AlbumSilsila/Kabhi Kabhi - GenreWorld - KindAAC audio file - Size5763172 - Total Time237236 - Disc Number1 - Disc Count1 - Track Number5 - Track Count17 - Date Modified2006-07-30T01:52:26Z - Date Added2009-10-03T14:57:33Z - Bit Rate192 - Sample Rate44100 - Normalization1955 - Compilation - Artwork Count1 - Persistent ID6E8B71DC63E5B8FB - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Silsila_Kabhi%20Kabhi/05%20Ladki%20Hai%20Ya%20Shola%201.m4a - File Folder Count4 - Library Folder Count1 - - 4846 - - Track ID4846 - NameRang Barse - ArtistAmitabh Bachchan - ComposerShiv-Hari - AlbumSilsila/Kabhi Kabhi - GenreWorld - KindAAC audio file - Size8824129 - Total Time365173 - Disc Number1 - Disc Count1 - Track Number6 - Track Count17 - Date Modified2007-09-10T10:00:36Z - Date Added2009-10-03T14:57:33Z - Bit Rate192 - Sample Rate44100 - Normalization1509 - Compilation - Persistent ID77A085EE29111CFE - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Silsila_Kabhi%20Kabhi/06%20Rang%20Barse.m4a - File Folder Count4 - Library Folder Count1 - - 4848 - - Track ID4848 - NameRang Barse - ArtistAmitabh Bachchan - ComposerShiv-Hari - AlbumSilsila/Kabhi Kabhi - GenreWorld - KindAAC audio file - Size8841698 - Total Time365178 - Disc Number1 - Disc Count1 - Track Number6 - Track Count17 - Date Modified2006-07-30T01:52:24Z - Date Added2009-10-03T14:57:33Z - Bit Rate192 - Sample Rate44100 - Normalization1512 - Compilation - Artwork Count1 - Persistent ID5B2FADB4D4151CA1 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Silsila_Kabhi%20Kabhi/06%20Rang%20Barse%201.m4a - File Folder Count4 - Library Folder Count1 - - 4850 - - Track ID4850 - NameJo Tum Todo Piya - ArtistLata Mangeshkar - ComposerShiv-Hari - AlbumSilsila/Kabhi Kabhi - GenreWorld - KindAAC audio file - Size5011494 - Total Time206866 - Disc Number1 - Disc Count1 - Track Number7 - Track Count17 - Date Modified2007-09-10T10:01:00Z - Date Added2009-10-03T14:57:33Z - Bit Rate192 - Sample Rate44100 - Normalization1280 - Compilation - Persistent ID940A687BAD14E901 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Silsila_Kabhi%20Kabhi/07%20Jo%20Tum%20Todo%20Piya.m4a - File Folder Count4 - Library Folder Count1 - - 4852 - - Track ID4852 - NameJo Tum Todo Piya - ArtistLata Mangeshkar - ComposerShiv-Hari - AlbumSilsila/Kabhi Kabhi - GenreWorld - KindAAC audio file - Size5039255 - Total Time206888 - Disc Number1 - Disc Count1 - Track Number7 - Track Count17 - Date Modified2006-07-30T01:52:24Z - Date Added2009-10-03T14:57:33Z - Bit Rate192 - Sample Rate44100 - Normalization1280 - Compilation - Artwork Count1 - Persistent IDFC878E79B40045E6 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Silsila_Kabhi%20Kabhi/07%20Jo%20Tum%20Todo%20Piya%201.m4a - File Folder Count4 - Library Folder Count1 - - 4854 - - Track ID4854 - NameNeela Aasman So Gaya - ArtistAmitabh Bachchan - ComposerShiv-Hari - AlbumSilsila/Kabhi Kabhi - GenreWorld - KindAAC audio file - Size7307859 - Total Time301760 - Disc Number1 - Disc Count1 - Track Number8 - Track Count17 - Date Modified2007-09-10T10:01:32Z - Date Added2009-10-03T14:57:34Z - Bit Rate192 - Sample Rate44100 - Normalization696 - Compilation - Persistent ID35176A8AEFDFA348 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Silsila_Kabhi%20Kabhi/08%20Neela%20Aasman%20So%20Gaya.m4a - File Folder Count4 - Library Folder Count1 - - 4856 - - Track ID4856 - NameNeela Aasman So Gaya - ArtistAmitabh Bachchan - ComposerShiv-Hari - AlbumSilsila/Kabhi Kabhi - GenreWorld - KindAAC audio file - Size7325116 - Total Time301765 - Disc Number1 - Disc Count1 - Track Number8 - Track Count17 - Date Modified2006-07-30T01:52:24Z - Date Added2009-10-03T14:57:34Z - Bit Rate192 - Sample Rate44100 - Normalization695 - Compilation - Artwork Count1 - Persistent ID4F8676940EFB9EE1 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Silsila_Kabhi%20Kabhi/08%20Neela%20Aasman%20So%20Gaya%201.m4a - File Folder Count4 - Library Folder Count1 - - 4858 - - Track ID4858 - NameKabhi Kabhi Mere Dil Mein Khayal Aata Hai - ArtistAmitabh Bachchan - ComposerKhaiyyaam - AlbumSilsila/Kabhi Kabhi - GenreWorld - KindAAC audio file - Size1525026 - Total Time62800 - Disc Number1 - Disc Count1 - Track Number9 - Track Count17 - Date Modified2007-09-10T10:01:40Z - Date Added2009-10-03T14:57:34Z - Bit Rate192 - Sample Rate44100 - Normalization723 - Compilation - Persistent IDC86DE19AEB378626 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Silsila_Kabhi%20Kabhi/09%20Kabhi%20Kabhi%20Mere%20Dil%20Mein%20Khayal%20Aata%20Hai.m4a - File Folder Count4 - Library Folder Count1 - - 4860 - - Track ID4860 - NameKabhi Kabhi Mere Dil Mein Khayal Aata Hai - ArtistAmitabh Bachchan - ComposerKhaiyyaam - AlbumSilsila/Kabhi Kabhi - GenreWorld - KindAAC audio file - Size1561126 - Total Time62808 - Disc Number1 - Disc Count1 - Track Number9 - Track Count17 - Date Modified2006-07-30T01:52:24Z - Date Added2009-10-03T14:57:34Z - Bit Rate192 - Sample Rate44100 - Normalization723 - Compilation - Artwork Count1 - Persistent ID0BA917D0D6D2D770 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Silsila_Kabhi%20Kabhi/09%20Kabhi%20Kabhi%20Mere%20Dil%20Mein%20Khayal%20Aata%20Hai%201.m4a - File Folder Count4 - Library Folder Count1 - - 4862 - - Track ID4862 - NameKabhi Kabhi Mere Dil Mein Khayal Aata Hai - ArtistMukesh - ComposerKhaiyyaam - AlbumSilsila/Kabhi Kabhi - GenreWorld - KindAAC audio file - Size6932258 - Total Time286240 - Disc Number1 - Disc Count1 - Track Number10 - Track Count17 - Date Modified2007-09-10T10:02:12Z - Date Added2009-10-03T14:57:34Z - Bit Rate192 - Sample Rate44100 - Normalization1129 - Compilation - Persistent ID34CB00A15933446B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Silsila_Kabhi%20Kabhi/10%20Kabhi%20Kabhi%20Mere%20Dil%20Mein%20Khayal%20Aata%20Hai.m4a - File Folder Count4 - Library Folder Count1 - - 4864 - - Track ID4864 - NameKabhi Kabhi Mere Dil Mein Khayal Aata Hai - ArtistMukesh - ComposerKhaiyyaam - AlbumSilsila/Kabhi Kabhi - GenreWorld - KindAAC audio file - Size6949739 - Total Time286254 - Disc Number1 - Disc Count1 - Track Number10 - Track Count17 - Date Modified2006-07-30T01:52:26Z - Date Added2009-10-03T14:57:34Z - Bit Rate192 - Sample Rate44100 - Normalization1128 - Compilation - Artwork Count1 - Persistent ID9542E90F250FA368 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Silsila_Kabhi%20Kabhi/10%20Kabhi%20Kabhi%20Mere%20Dil%20Mein%20Khayal%20Aata%20Hai%201.m4a - File Folder Count4 - Library Folder Count1 - - 4866 - - Track ID4866 - NameSurkh Jode Ki Yeh Jagmagahat - ArtistLata Mangeshkar - ComposerKhaiyyaam - AlbumSilsila/Kabhi Kabhi - GenreWorld - KindAAC audio file - Size5479699 - Total Time226226 - Disc Number1 - Disc Count1 - Track Number11 - Track Count17 - Date Modified2007-09-10T10:02:38Z - Date Added2009-10-03T14:57:34Z - Bit Rate192 - Sample Rate44100 - Normalization1548 - Compilation - Persistent IDBBD6C318987FA1B8 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Silsila_Kabhi%20Kabhi/11%20Surkh%20Jode%20Ki%20Yeh%20Jagmagahat.m4a - File Folder Count4 - Library Folder Count1 - - 4868 - - Track ID4868 - NameSurkh Jode Ki Yeh Jagmagahat - ArtistLata Mangeshkar - ComposerKhaiyyaam - AlbumSilsila/Kabhi Kabhi - GenreWorld - KindAAC audio file - Size5503760 - Total Time226230 - Disc Number1 - Disc Count1 - Track Number11 - Track Count17 - Date Modified2006-07-30T01:52:24Z - Date Added2009-10-03T14:57:35Z - Bit Rate192 - Sample Rate44100 - Normalization1552 - Compilation - Artwork Count1 - Persistent ID55957AFBB1238C44 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Silsila_Kabhi%20Kabhi/11%20Surkh%20Jode%20Ki%20Yeh%20Jagmagahat%201.m4a - File Folder Count4 - Library Folder Count1 - - 4870 - - Track ID4870 - NameMain Pal Do Pal Ka Shair Hoon - ArtistMukesh - ComposerKhaiyyaam - AlbumSilsila/Kabhi Kabhi - GenreWorld - KindAAC audio file - Size4844949 - Total Time200000 - Disc Number1 - Disc Count1 - Track Number12 - Track Count17 - Date Modified2007-09-10T10:03:00Z - Date Added2009-10-03T14:57:35Z - Bit Rate192 - Sample Rate44100 - Normalization1310 - Compilation - Persistent ID49A16A5F17FD22BA - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Silsila_Kabhi%20Kabhi/12%20Main%20Pal%20Do%20Pal%20Ka%20Shair%20Hoon.m4a - File Folder Count4 - Library Folder Count1 - - 4872 - - Track ID4872 - NameMain Pal Do Pal Ka Shair Hoon - ArtistMukesh - ComposerKhaiyyaam - AlbumSilsila/Kabhi Kabhi - GenreWorld - KindAAC audio file - Size4873866 - Total Time200015 - Disc Number1 - Disc Count1 - Track Number12 - Track Count17 - Date Modified2006-07-30T01:52:26Z - Date Added2009-10-03T14:57:35Z - Bit Rate192 - Sample Rate44100 - Normalization1309 - Compilation - Artwork Count1 - Persistent IDA7F231C0150E37D7 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Silsila_Kabhi%20Kabhi/12%20Main%20Pal%20Do%20Pal%20Ka%20Shair%20Hoon%201.m4a - File Folder Count4 - Library Folder Count1 - - 4874 - - Track ID4874 - NameTere Chehere Se Nazar Nahin Hatati - ArtistLata Mangeshkar & Kishore Kumar - ComposerKhaiyyaam - AlbumSilsila/Kabhi Kabhi - GenreWorld - KindAAC audio file - Size7353729 - Total Time303666 - Disc Number1 - Disc Count1 - Track Number13 - Track Count17 - Date Modified2007-09-10T10:03:34Z - Date Added2009-10-03T14:57:35Z - Bit Rate192 - Sample Rate44100 - Normalization1801 - Compilation - Persistent IDA688F255B55EB019 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Silsila_Kabhi%20Kabhi/13%20Tere%20Chehere%20Se%20Nazar%20Nahin%20Hatati.m4a - File Folder Count4 - Library Folder Count1 - - 4876 - - Track ID4876 - NameTere Chehere Se Nazar Nahin Hatati - ArtistLata Mangeshkar & Kishore Kumar - ComposerKhaiyyaam - AlbumSilsila/Kabhi Kabhi - GenreWorld - KindAAC audio file - Size7371248 - Total Time303669 - Disc Number1 - Disc Count1 - Track Number13 - Track Count17 - Date Modified2006-07-30T01:52:26Z - Date Added2009-10-03T14:57:35Z - Bit Rate192 - Sample Rate44100 - Normalization1801 - Compilation - Artwork Count1 - Persistent ID6CB1B76AA46573EA - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Silsila_Kabhi%20Kabhi/13%20Tere%20Chehere%20Se%20Nazar%20Nahin%20Hatati%201.m4a - File Folder Count4 - Library Folder Count1 - - 4878 - - Track ID4878 - NamePyar Kar Liya To Kya - ArtistKishore Kumar - ComposerKhaiyyaam - AlbumSilsila/Kabhi Kabhi - GenreWorld - KindAAC audio file - Size5344900 - Total Time220640 - Disc Number1 - Disc Count1 - Track Number14 - Track Count17 - Date Modified2007-09-10T10:04:00Z - Date Added2009-10-03T14:57:35Z - Bit Rate192 - Sample Rate44100 - Normalization3515 - Compilation - Persistent IDC68E18137F272802 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Silsila_Kabhi%20Kabhi/14%20Pyar%20Kar%20Liya%20To%20Kya.m4a - File Folder Count4 - Library Folder Count1 - - 4880 - - Track ID4880 - NamePyar Kar Liya To Kya - ArtistKishore Kumar - ComposerKhaiyyaam - AlbumSilsila/Kabhi Kabhi - GenreWorld - KindAAC audio file - Size5369947 - Total Time220657 - Disc Number1 - Disc Count1 - Track Number14 - Track Count17 - Date Modified2006-07-30T01:52:24Z - Date Added2009-10-03T14:57:35Z - Bit Rate192 - Sample Rate44100 - Normalization3510 - Compilation - Artwork Count1 - Persistent IDE806E8B04EF4EEFF - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Silsila_Kabhi%20Kabhi/14%20Pyar%20Kar%20Liya%20To%20Kya%201.m4a - File Folder Count4 - Library Folder Count1 - - 4882 - - Track ID4882 - NameMere Ghar Ayee Nanhi Pari - ArtistLata Mangeshkar - ComposerKhaiyyaam - AlbumSilsila/Kabhi Kabhi - GenreWorld - KindAAC audio file - Size4777359 - Total Time197200 - Disc Number1 - Disc Count1 - Track Number15 - Track Count17 - Date Modified2007-09-10T10:04:22Z - Date Added2009-10-03T14:57:35Z - Bit Rate192 - Sample Rate44100 - Normalization1666 - Compilation - Persistent ID251135AC503E1881 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Silsila_Kabhi%20Kabhi/15%20Mere%20Ghar%20Ayee%20Nanhi%20Pari.m4a - File Folder Count4 - Library Folder Count1 - - 4884 - - Track ID4884 - NameMere Ghar Ayee Nanhi Pari - ArtistLata Mangeshkar - ComposerKhaiyyaam - AlbumSilsila/Kabhi Kabhi - GenreWorld - KindAAC audio file - Size4806711 - Total Time197205 - Disc Number1 - Disc Count1 - Track Number15 - Track Count17 - Date Modified2006-07-30T01:52:24Z - Date Added2009-10-03T14:57:35Z - Bit Rate192 - Sample Rate44100 - Normalization1667 - Compilation - Artwork Count1 - Persistent ID957714B914DD5FD8 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Silsila_Kabhi%20Kabhi/15%20Mere%20Ghar%20Ayee%20Nanhi%20Pari%201.m4a - File Folder Count4 - Library Folder Count1 - - 4886 - - Track ID4886 - NameMain Har Ek Pal Ka Shair Hoon - ArtistMukesh - ComposerKhaiyyaam - AlbumSilsila/Kabhi Kabhi - GenreWorld - KindAAC audio file - Size4488670 - Total Time185266 - Disc Number1 - Disc Count1 - Track Number16 - Track Count17 - Date Modified2007-09-10T10:04:44Z - Date Added2009-10-03T14:57:36Z - Bit Rate192 - Sample Rate44100 - Normalization1438 - Compilation - Persistent ID720E6E767325FE1F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Silsila_Kabhi%20Kabhi/16%20Main%20Har%20Ek%20Pal%20Ka%20Shair%20Hoon.m4a - File Folder Count4 - Library Folder Count1 - - 4888 - - Track ID4888 - NameMain Har Ek Pal Ka Shair Hoon - ArtistMukesh - ComposerKhaiyyaam - AlbumSilsila/Kabhi Kabhi - GenreWorld - KindAAC audio file - Size4520104 - Total Time185270 - Disc Number1 - Disc Count1 - Track Number16 - Track Count17 - Date Modified2006-07-30T01:52:26Z - Date Added2009-10-03T14:57:36Z - Bit Rate192 - Sample Rate44100 - Normalization1438 - Compilation - Artwork Count1 - Persistent IDE7F02CD21101E11A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Silsila_Kabhi%20Kabhi/16%20Main%20Har%20Ek%20Pal%20Ka%20Shair%20Hoon%201.m4a - File Folder Count4 - Library Folder Count1 - - 4890 - - Track ID4890 - NameKabhi Kabhi Mere Dil Mein Khayal Aata - ArtistMukesh; Lata Mangeshkar - ComposerKhaiyyaam - AlbumSilsila/Kabhi Kabhi - GenreWorld - KindAAC audio file - Size7255379 - Total Time300666 - Disc Number1 - Disc Count1 - Track Number17 - Track Count17 - Date Modified2007-09-10T10:05:18Z - Date Added2009-10-03T14:57:36Z - Bit Rate192 - Sample Rate44100 - Normalization1665 - Compilation - Persistent IDF5F9821FBDC50FC0 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Silsila_Kabhi%20Kabhi/17%20Kabhi%20Kabhi%20Mere%20Dil%20Mein%20Khayal%20Aata.m4a - File Folder Count4 - Library Folder Count1 - - 4892 - - Track ID4892 - NameKabhi Kabhi Mere Dil Mein Khayal Aata - ArtistMukesh; Lata Mangeshkar - ComposerKhaiyyaam - AlbumSilsila/Kabhi Kabhi - GenreWorld - KindAAC audio file - Size7272886 - Total Time300673 - Disc Number1 - Disc Count1 - Track Number17 - Track Count17 - Date Modified2006-07-30T01:52:26Z - Date Added2009-10-03T14:57:36Z - Bit Rate192 - Sample Rate44100 - Normalization1663 - Compilation - Artwork Count1 - Persistent ID68B66ECFA250B5A9 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Silsila_Kabhi%20Kabhi/17%20Kabhi%20Kabhi%20Mere%20Dil%20Mein%20Khayal%20Aata%201.m4a - File Folder Count4 - Library Folder Count1 - - 4894 - - Track ID4894 - NameMohini (Enchantment) - ArtistYo-Yo Ma & The Silk Road Ensemble - ComposerSandeep Das And Indrajit Dey, Arr. Ljova - AlbumSilk Road Journeys: Beyond The Horizon - GenreWorld - KindAAC audio file - Size2675655 - Total Time107181 - Track Number1 - Track Count15 - Year2005 - Date Modified2006-07-28T03:57:54Z - Date Added2009-10-03T14:57:36Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3441650647 - Play Date UTC2013-01-21T16:34:07Z - Normalization1231 - Compilation - Artwork Count1 - Persistent IDD5EF0D3E25D455D1 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Silk%20Road%20Journeys_%20Beyond%20The%20Horizon/01%20Mohini%20(Enchantment).m4a - File Folder Count4 - Library Folder Count1 - - 4896 - - Track ID4896 - NameOasis - ArtistYo-Yo Ma & The Silk Road Ensemble - ComposerEnsemble Improvisation - AlbumSilk Road Journeys: Beyond The Horizon - GenreWorld - KindAAC audio file - Size4422941 - Total Time179790 - Track Number2 - Track Count15 - Year2005 - Date Modified2006-07-28T03:57:56Z - Date Added2009-10-03T14:57:36Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3441650825 - Play Date UTC2013-01-21T16:37:05Z - Normalization658 - Compilation - Artwork Count1 - Persistent ID9FEA4BE3D0774E25 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Silk%20Road%20Journeys_%20Beyond%20The%20Horizon/02%20Oasis.m4a - File Folder Count4 - Library Folder Count1 - - 4898 - - Track ID4898 - NameDistant Green Valley - ArtistYo-Yo Ma & The Silk Road Ensemble - ComposerZhao Jiping And Zhao Lin - AlbumSilk Road Journeys: Beyond The Horizon - GenreWorld - KindAAC audio file - Size10361366 - Total Time425829 - Track Number3 - Track Count15 - Year2005 - Date Modified2006-07-28T03:57:56Z - Date Added2009-10-03T14:57:36Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3338131882 - Play Date UTC2009-10-11T13:21:22Z - Normalization1232 - Compilation - Artwork Count1 - Persistent ID0DA8B2AB6B18254E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Silk%20Road%20Journeys_%20Beyond%20The%20Horizon/03%20Distant%20Green%20Valley.m4a - File Folder Count4 - Library Folder Count1 - - 4900 - - Track ID4900 - NameAkhalqalaqi Dance - ArtistYo-Yo Ma & The Silk Road Ensemble - ComposerArmenian Traditional, Arr. Gevorg Dabaghyan/Georgian - AlbumSilk Road Journeys: Beyond The Horizon - GenreWorld - KindAAC audio file - Size2072316 - Total Time82034 - Track Number4 - Track Count15 - Year2005 - Date Modified2006-07-28T03:57:56Z - Date Added2009-10-03T14:57:37Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3338131965 - Play Date UTC2009-10-11T13:22:45Z - Normalization368 - Compilation - Artwork Count1 - Persistent ID68D6160499A5C588 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Silk%20Road%20Journeys_%20Beyond%20The%20Horizon/04%20Akhalqalaqi%20Dance.m4a - File Folder Count4 - Library Folder Count1 - - 4902 - - Track ID4902 - NameEchoes of a Lost City - ArtistYo-Yo Ma & The Silk Road Ensemble - ComposerZhao Jiping - AlbumSilk Road Journeys: Beyond The Horizon - GenreWorld - KindAAC audio file - Size1982940 - Total Time78203 - Track Number5 - Track Count15 - Year2005 - Date Modified2006-07-28T03:57:56Z - Date Added2009-10-03T14:57:37Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3338132043 - Play Date UTC2009-10-11T13:24:03Z - Normalization83 - Compilation - Artwork Count1 - Persistent ID2C2A2061F1F3248D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Silk%20Road%20Journeys_%20Beyond%20The%20Horizon/05%20Echoes%20of%20a%20Lost%20City.m4a - File Folder Count4 - Library Folder Count1 - - 4904 - - Track ID4904 - NameMountains Are Far Away - ArtistYo-Yo Ma & The Silk Road Ensemble - ComposerKayhan Klhor, Arr. Ljova - AlbumSilk Road Journeys: Beyond The Horizon - GenreWorld - KindAAC audio file - Size8978170 - Total Time368754 - Track Number6 - Track Count15 - Year2005 - Date Modified2006-07-28T03:57:58Z - Date Added2009-10-03T14:57:37Z - Bit Rate192 - Sample Rate44100 - Normalization1231 - Compilation - Artwork Count1 - Persistent ID7C7313F1A2175D3D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Silk%20Road%20Journeys_%20Beyond%20The%20Horizon/06%20Mountains%20Are%20Far%20Away.m4a - File Folder Count4 - Library Folder Count1 - - 4906 - - Track ID4906 - NameYanzi (Swallow Song) - ArtistYo-Yo Ma & The Silk Road Ensemble - ComposerChinese Traditional, Arr. Zhao Lin/Kazakh - AlbumSilk Road Journeys: Beyond The Horizon - GenreWorld - KindAAC audio file - Size5020605 - Total Time204728 - Track Number7 - Track Count15 - Year2005 - Date Modified2006-07-28T03:57:58Z - Date Added2009-10-03T14:57:37Z - Bit Rate192 - Sample Rate44100 - Normalization518 - Compilation - Artwork Count1 - Persistent ID85E3E66125C24514 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Silk%20Road%20Journeys_%20Beyond%20The%20Horizon/07%20Yanzi%20(Swallow%20Song).m4a - File Folder Count4 - Library Folder Count1 - - 4908 - - Track ID4908 - NameBattle Remembered - ArtistYo-Yo Ma & The Silk Road Ensemble - ComposerZhao Lin - AlbumSilk Road Journeys: Beyond The Horizon - GenreWorld - KindAAC audio file - Size5860798 - Total Time239744 - Track Number8 - Track Count15 - Year2005 - Date Modified2006-07-28T03:57:58Z - Date Added2009-10-03T14:57:37Z - Bit Rate192 - Sample Rate44100 - Normalization1231 - Compilation - Artwork Count1 - Persistent IDE4B7D78AD45D1AF1 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Silk%20Road%20Journeys_%20Beyond%20The%20Horizon/08%20Battle%20Remembered.m4a - File Folder Count4 - Library Folder Count1 - - 4910 - - Track ID4910 - NameSummer In The High Grassland - ArtistYo-Yo Ma & The Silk Road Ensemble - ComposerZhao Jiping - AlbumSilk Road Journeys: Beyond The Horizon - GenreWorld - KindAAC audio file - Size6751657 - Total Time276641 - Track Number9 - Track Count15 - Year2005 - Date Modified2006-07-28T03:58:00Z - Date Added2009-10-03T14:57:37Z - Bit Rate192 - Sample Rate44100 - Normalization196 - Compilation - Artwork Count1 - Persistent ID705A2A2C4049D182 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Silk%20Road%20Journeys_%20Beyond%20The%20Horizon/09%20Summer%20In%20The%20High%20Grassland.m4a - File Folder Count4 - Library Folder Count1 - - 4912 - - Track ID4912 - NameKor Arab (The Blind Arab) - ArtistYo-Yo Ma & The Silk Road Ensemble - ComposerFikret Amirov - AlbumSilk Road Journeys: Beyond The Horizon - GenreWorld - KindAAC audio file - Size6067459 - Total Time248289 - Track Number10 - Track Count15 - Year2005 - Date Modified2006-07-28T03:58:00Z - Date Added2009-10-03T14:57:38Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Compilation - Artwork Count1 - Persistent ID593DB402B76D43B9 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Silk%20Road%20Journeys_%20Beyond%20The%20Horizon/10%20Kor%20Arab%20(The%20Blind%20Arab).m4a - File Folder Count4 - Library Folder Count1 - - 4914 - - Track ID4914 - NameShikasta (Minstrel's Song) - ArtistYo-Yo Ma & The Silk Road Ensemble - ComposerMammad Ordubadi/Uzeyir Hajibeyov - AlbumSilk Road Journeys: Beyond The Horizon - GenreWorld - KindAAC audio file - Size2697344 - Total Time108040 - Track Number11 - Track Count15 - Year2005 - Date Modified2006-07-28T03:58:00Z - Date Added2009-10-03T14:57:38Z - Bit Rate192 - Sample Rate44100 - Normalization1231 - Compilation - Artwork Count1 - Persistent ID8A328FBBEFA8BC2E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Silk%20Road%20Journeys_%20Beyond%20The%20Horizon/11%20Shikasta%20(Minstrel's%20Song).m4a - File Folder Count4 - Library Folder Count1 - - 4916 - - Track ID4916 - NameNight at the Caravanserai - ArtistYo-Yo Ma & The Silk Road Ensemble - ComposerTurkish Traditional, Arr. Shane Shanahan - AlbumSilk Road Journeys: Beyond The Horizon - GenreWorld - KindAAC audio file - Size11576532 - Total Time476146 - Track Number12 - Track Count15 - Year2005 - Date Modified2006-07-28T03:58:02Z - Date Added2009-10-03T14:57:38Z - Bit Rate192 - Sample Rate44100 - Normalization1231 - Compilation - Artwork Count1 - Persistent ID895AD14100214447 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Silk%20Road%20Journeys_%20Beyond%20The%20Horizon/12%20Night%20at%20the%20Caravanserai.m4a - File Folder Count4 - Library Folder Count1 - - 4918 - - Track ID4918 - NameGallop of a Thousand Horses - ArtistYo-Yo Ma & The Silk Road Ensemble - ComposerKayhan Kalhor - AlbumSilk Road Journeys: Beyond The Horizon - GenreWorld - KindAAC audio file - Size7472595 - Total Time306548 - Track Number13 - Track Count15 - Year2005 - Date Modified2006-07-28T03:58:02Z - Date Added2009-10-03T14:57:38Z - Bit Rate192 - Sample Rate44100 - Normalization1230 - Compilation - Artwork Count1 - Persistent ID5C65175E03C7D0A0 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Silk%20Road%20Journeys_%20Beyond%20The%20Horizon/13%20Gallop%20of%20a%20Thousand%20Horses.m4a - File Folder Count4 - Library Folder Count1 - - 4920 - - Track ID4920 - NameTarang (Currents) - ArtistYo-Yo Ma & The Silk Road Ensemble - ComposerSandeep Das - AlbumSilk Road Journeys: Beyond The Horizon - GenreWorld - KindAAC audio file - Size9420436 - Total Time387005 - Track Number14 - Track Count15 - Year2005 - Date Modified2006-07-28T03:58:02Z - Date Added2009-10-03T14:57:38Z - Bit Rate192 - Sample Rate44100 - Normalization1232 - Compilation - Artwork Count1 - Persistent ID9CA54818ACE470CC - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Silk%20Road%20Journeys_%20Beyond%20The%20Horizon/14%20Tarang%20(Currents).m4a - File Folder Count4 - Library Folder Count1 - - 4922 - - Track ID4922 - NameSacred Cloud Music - ArtistYo-Yo Ma & The Silk Road Ensemble - ComposerZhao Jiping - AlbumSilk Road Journeys: Beyond The Horizon - GenreWorld - KindAAC audio file - Size7909579 - Total Time324636 - Track Number15 - Track Count15 - Year2005 - Date Modified2006-07-28T03:58:04Z - Date Added2009-10-03T14:57:38Z - Bit Rate192 - Sample Rate44100 - Normalization357 - Compilation - Artwork Count1 - Persistent ID38D4A6BBEC658DAD - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Silk%20Road%20Journeys_%20Beyond%20The%20Horizon/15%20Sacred%20Cloud%20Music.m4a - File Folder Count4 - Library Folder Count1 - - 4924 - - Track ID4924 - NameSymphony No.5 - I. Moderato - ArtistLorin Maazel; Cleveland Orchestra - ComposerDmitri Shostakovich - AlbumShostakovich: Symphony No.5; Stravinsky: The Rite of Spring - GenreClassical - KindAAC audio file - Size26161225 - Total Time1080771 - Disc Number1 - Disc Count1 - Track Number1 - Track Count18 - Year1993 - Date Modified2006-08-13T06:35:54Z - Date Added2009-10-03T14:57:38Z - Bit Rate192 - Sample Rate44100 - Normalization1202 - Compilation - Artwork Count1 - Persistent ID9D39F8FE970A39EE - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Shostakovich_%20Symphony%20No.5%3B%20Stravinsky_%20The%20Rite%20of%20Spring/01%20Symphony%20No.5%20-%20I.%20Moderato.m4a - File Folder Count4 - Library Folder Count1 - - 4926 - - Track ID4926 - NameSymphony No.5 - II. Allegretto - ArtistLorin Maazel; Cleveland Orchestra - ComposerDmitri Shostakovich - AlbumShostakovich: Symphony No.5; Stravinsky: The Rite of Spring - GenreClassical - KindAAC audio file - Size7364491 - Total Time303413 - Disc Number1 - Disc Count1 - Track Number2 - Track Count18 - Year1993 - Date Modified2006-08-13T06:35:44Z - Date Added2009-10-03T14:57:39Z - Bit Rate192 - Sample Rate44100 - Normalization1211 - Compilation - Artwork Count1 - Persistent IDA8EEF854514F9B97 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Shostakovich_%20Symphony%20No.5%3B%20Stravinsky_%20The%20Rite%20of%20Spring/02%20Symphony%20No.5%20-%20II.%20Allegretto.m4a - File Folder Count4 - Library Folder Count1 - - 4928 - - Track ID4928 - NameSymphony No.5 - III. Largo - ArtistLorin Maazel; Cleveland Orchestra - ComposerDmitri Shostakovich - AlbumShostakovich: Symphony No.5; Stravinsky: The Rite of Spring - GenreClassical - KindAAC audio file - Size21062071 - Total Time869446 - Disc Number1 - Disc Count1 - Track Number3 - Track Count18 - Year1993 - Date Modified2006-08-13T06:35:40Z - Date Added2009-10-03T14:57:39Z - Bit Rate192 - Sample Rate44100 - Normalization625 - Compilation - Artwork Count1 - Persistent ID6112A0F990D3CCBA - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Shostakovich_%20Symphony%20No.5%3B%20Stravinsky_%20The%20Rite%20of%20Spring/03%20Symphony%20No.5%20-%20III.%20Largo.m4a - File Folder Count4 - Library Folder Count1 - - 4930 - - Track ID4930 - NameSymphony No.5 - IV. Allegro non troppo - ArtistLorin Maazel; Cleveland Orchestra - ComposerDmitri Shostakovich - AlbumShostakovich: Symphony No.5; Stravinsky: The Rite of Spring - GenreClassical - KindAAC audio file - Size13606942 - Total Time563244 - Disc Number1 - Disc Count1 - Track Number4 - Track Count18 - Year1993 - Date Modified2006-08-13T06:35:30Z - Date Added2009-10-03T14:57:39Z - Bit Rate192 - Sample Rate44100 - Normalization1236 - Compilation - Artwork Count1 - Persistent ID9F930C382E202D18 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Shostakovich_%20Symphony%20No.5%3B%20Stravinsky_%20The%20Rite%20of%20Spring/04%20Symphony%20No.5%20-%20IV.%20Allegro%20non%20troppo.m4a - File Folder Count4 - Library Folder Count1 - - 4932 - - Track ID4932 - NameRite of Spring - Introduction - ArtistLorin Maazel; Cleveland Orchestra - ComposerIgor Stravinsky - AlbumShostakovich: Symphony No.5; Stravinsky: The Rite of Spring - GenreClassical - KindAAC audio file - Size4761939 - Total Time195394 - Disc Number1 - Disc Count1 - Track Number5 - Track Count18 - Year1993 - Date Modified2006-08-13T06:35:24Z - Date Added2009-10-03T14:57:39Z - Bit Rate192 - Sample Rate44100 - Normalization62 - Compilation - Artwork Count1 - Persistent ID17F07EF9207D97A7 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Shostakovich_%20Symphony%20No.5%3B%20Stravinsky_%20The%20Rite%20of%20Spring/05%20Rite%20of%20Spring%20-%20Introduction.m4a - File Folder Count4 - Library Folder Count1 - - 4934 - - Track ID4934 - NameRite of Spring - The Auguries of Spring/Dances of the Adolescent Girls - ArtistLorin Maazel; Cleveland Orchestra - ComposerIgor Stravinsky - AlbumShostakovich: Symphony No.5; Stravinsky: The Rite of Spring - GenreClassical - KindAAC audio file - Size4916345 - Total Time201803 - Disc Number1 - Disc Count1 - Track Number6 - Track Count18 - Year1993 - Date Modified2006-08-13T06:35:22Z - Date Added2009-10-03T14:57:39Z - Bit Rate192 - Sample Rate44100 - Normalization597 - Compilation - Artwork Count1 - Persistent IDA0C751AF0EBEBA40 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Shostakovich_%20Symphony%20No.5%3B%20Stravinsky_%20The%20Rite%20of%20Spring/06%20Rite%20of%20Spring%20-%20The%20Auguries%20of%20Spring_Dances%20of%20the%20Adolescent%20Girls.m4a - File Folder Count4 - Library Folder Count1 - - 4936 - - Track ID4936 - NameRite of Spring - Game of Abduction - ArtistLorin Maazel; Cleveland Orchestra - ComposerIgor Stravinsky - AlbumShostakovich: Symphony No.5; Stravinsky: The Rite of Spring - GenreClassical - KindAAC audio file - Size2018417 - Total Time81848 - Disc Number1 - Disc Count1 - Track Number7 - Track Count18 - Year1993 - Date Modified2006-08-13T06:35:20Z - Date Added2009-10-03T14:57:39Z - Bit Rate192 - Sample Rate44100 - Normalization1224 - Compilation - Artwork Count1 - Persistent ID545C6C78F208C2AF - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Shostakovich_%20Symphony%20No.5%3B%20Stravinsky_%20The%20Rite%20of%20Spring/07%20Rite%20of%20Spring%20-%20Game%20of%20Abduction.m4a - File Folder Count4 - Library Folder Count1 - - 4938 - - Track ID4938 - NameRite of Spring - Spring Rounds - ArtistLorin Maazel; Cleveland Orchestra - ComposerIgor Stravinsky - AlbumShostakovich: Symphony No.5; Stravinsky: The Rite of Spring - GenreClassical - KindAAC audio file - Size5404153 - Total Time222120 - Disc Number1 - Disc Count1 - Track Number8 - Track Count18 - Year1993 - Date Modified2006-08-13T06:35:20Z - Date Added2009-10-03T14:57:39Z - Bit Rate192 - Sample Rate44100 - Normalization1216 - Compilation - Artwork Count1 - Persistent IDB337B0AF87F7F845 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Shostakovich_%20Symphony%20No.5%3B%20Stravinsky_%20The%20Rite%20of%20Spring/08%20Rite%20of%20Spring%20-%20Spring%20Rounds.m4a - File Folder Count4 - Library Folder Count1 - - 4940 - - Track ID4940 - NameRite of Spring - Games of Rival Tribes - ArtistLorin Maazel; Cleveland Orchestra - ComposerIgor Stravinsky - AlbumShostakovich: Symphony No.5; Stravinsky: The Rite of Spring - GenreClassical - KindAAC audio file - Size2818169 - Total Time115146 - Disc Number1 - Disc Count1 - Track Number9 - Track Count18 - Year1993 - Date Modified2006-08-13T06:35:18Z - Date Added2009-10-03T14:57:39Z - Bit Rate192 - Sample Rate44100 - Normalization571 - Compilation - Artwork Count1 - Persistent ID43DCD6568F90FC07 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Shostakovich_%20Symphony%20No.5%3B%20Stravinsky_%20The%20Rite%20of%20Spring/09%20Rite%20of%20Spring%20-%20Games%20of%20Rival%20Tribes.m4a - File Folder Count4 - Library Folder Count1 - - 4942 - - Track ID4942 - NameRite of Spring - Procession of the Sage - ArtistLorin Maazel; Cleveland Orchestra - ComposerIgor Stravinsky - AlbumShostakovich: Symphony No.5; Stravinsky: The Rite of Spring - GenreClassical - KindAAC audio file - Size1031437 - Total Time40749 - Disc Number1 - Disc Count1 - Track Number10 - Track Count18 - Year1993 - Date Modified2006-08-13T06:35:16Z - Date Added2009-10-03T14:57:40Z - Bit Rate192 - Sample Rate44100 - Normalization856 - Compilation - Artwork Count1 - Persistent IDBC848139E0ECECB3 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Shostakovich_%20Symphony%20No.5%3B%20Stravinsky_%20The%20Rite%20of%20Spring/10%20Rite%20of%20Spring%20-%20Procession%20of%20the%20Sage.m4a - File Folder Count4 - Library Folder Count1 - - 4944 - - Track ID4944 - NameRite of Spring - The Sage - ArtistLorin Maazel; Cleveland Orchestra - ComposerIgor Stravinsky - AlbumShostakovich: Symphony No.5; Stravinsky: The Rite of Spring - GenreClassical - KindAAC audio file - Size478103 - Total Time17715 - Disc Number1 - Disc Count1 - Track Number11 - Track Count18 - Year1993 - Date Modified2006-08-13T06:35:16Z - Date Added2009-10-03T14:57:40Z - Bit Rate192 - Sample Rate44100 - Normalization6 - Compilation - Artwork Count1 - Persistent ID1F8044117546091A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Shostakovich_%20Symphony%20No.5%3B%20Stravinsky_%20The%20Rite%20of%20Spring/11%20Rite%20of%20Spring%20-%20The%20Sage.m4a - File Folder Count4 - Library Folder Count1 - - 4946 - - Track ID4946 - NameRite of Spring - Dance of the Earth - ArtistLorin Maazel; Cleveland Orchestra - ComposerIgor Stravinsky - AlbumShostakovich: Symphony No.5; Stravinsky: The Rite of Spring - GenreClassical - KindAAC audio file - Size1860704 - Total Time75277 - Disc Number1 - Disc Count1 - Track Number12 - Track Count18 - Year1993 - Date Modified2006-08-13T06:35:16Z - Date Added2009-10-03T14:57:40Z - Bit Rate192 - Sample Rate44100 - Normalization1222 - Compilation - Artwork Count1 - Persistent ID2E0076C6E234DDC5 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Shostakovich_%20Symphony%20No.5%3B%20Stravinsky_%20The%20Rite%20of%20Spring/12%20Rite%20of%20Spring%20-%20Dance%20of%20the%20Earth.m4a - File Folder Count4 - Library Folder Count1 - - 4948 - - Track ID4948 - NameRite of Spring - Introduction (The Pagan Night) - ArtistLorin Maazel; Cleveland Orchestra - ComposerIgor Stravinsky - AlbumShostakovich: Symphony No.5; Stravinsky: The Rite of Spring - GenreClassical - KindAAC audio file - Size5713637 - Total Time234984 - Disc Number1 - Disc Count1 - Track Number13 - Track Count18 - Year1993 - Date Modified2006-08-13T06:35:14Z - Date Added2009-10-03T14:57:40Z - Bit Rate192 - Sample Rate44100 - Normalization49 - Compilation - Artwork Count1 - Persistent IDC1A8FE74562FC193 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Shostakovich_%20Symphony%20No.5%3B%20Stravinsky_%20The%20Rite%20of%20Spring/13%20Rite%20of%20Spring%20-%20Introduction%20(The%20Pagan%20Night).m4a - File Folder Count4 - Library Folder Count1 - - 4950 - - Track ID4950 - NameRite of Spring - Mystic Circles of the Young Girls - ArtistLorin Maazel; Cleveland Orchestra - ComposerIgor Stravinsky - AlbumShostakovich: Symphony No.5; Stravinsky: The Rite of Spring - GenreClassical - KindAAC audio file - Size4786478 - Total Time196416 - Disc Number1 - Disc Count1 - Track Number14 - Track Count18 - Year1993 - Date Modified2006-08-13T06:35:12Z - Date Added2009-10-03T14:57:40Z - Bit Rate192 - Sample Rate44100 - Normalization1116 - Compilation - Artwork Count1 - Persistent ID3FB6ADF9D17C3FDE - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Shostakovich_%20Symphony%20No.5%3B%20Stravinsky_%20The%20Rite%20of%20Spring/14%20Rite%20of%20Spring%20-%20Mystic%20Circles%20of%20the%20Young%20Girls.m4a - File Folder Count4 - Library Folder Count1 - - 4952 - - Track ID4952 - NameRite of Spring - Glorification of the Chosen One - ArtistLorin Maazel; Cleveland Orchestra - ComposerIgor Stravinsky - AlbumShostakovich: Symphony No.5; Stravinsky: The Rite of Spring - GenreClassical - KindAAC audio file - Size2534938 - Total Time103350 - Disc Number1 - Disc Count1 - Track Number15 - Track Count18 - Year1993 - Date Modified2006-08-13T06:35:10Z - Date Added2009-10-03T14:57:40Z - Bit Rate192 - Sample Rate44100 - Normalization1184 - Compilation - Artwork Count1 - Persistent ID193A9239EC8B6D2F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Shostakovich_%20Symphony%20No.5%3B%20Stravinsky_%20The%20Rite%20of%20Spring/15%20Rite%20of%20Spring%20-%20Glorification%20of%20the%20Chosen%20One.m4a - File Folder Count4 - Library Folder Count1 - - 4954 - - Track ID4954 - NameRite of Spring - Evocation of the Elders - ArtistLorin Maazel; Cleveland Orchestra - ComposerIgor Stravinsky - AlbumShostakovich: Symphony No.5; Stravinsky: The Rite of Spring - GenreClassical - KindAAC audio file - Size1314611 - Total Time52545 - Disc Number1 - Disc Count1 - Track Number16 - Track Count18 - Year1993 - Date Modified2006-08-13T06:35:08Z - Date Added2009-10-03T14:57:40Z - Bit Rate192 - Sample Rate44100 - Normalization1223 - Compilation - Artwork Count1 - Persistent IDF5D245BFF7B9E460 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Shostakovich_%20Symphony%20No.5%3B%20Stravinsky_%20The%20Rite%20of%20Spring/16%20Rite%20of%20Spring%20-%20Evocation%20of%20the%20Elders.m4a - File Folder Count4 - Library Folder Count1 - - 4956 - - Track ID4956 - NameRite of Spring - Ritual Action of the Elders - ArtistLorin Maazel; Cleveland Orchestra - ComposerIgor Stravinsky - AlbumShostakovich: Symphony No.5; Stravinsky: The Rite of Spring - GenreClassical - KindAAC audio file - Size4908529 - Total Time201478 - Disc Number1 - Disc Count1 - Track Number17 - Track Count18 - Year1993 - Date Modified2006-08-13T06:35:08Z - Date Added2009-10-03T14:57:40Z - Bit Rate192 - Sample Rate44100 - Normalization770 - Compilation - Artwork Count1 - Persistent IDDB099D8B8BC27141 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Shostakovich_%20Symphony%20No.5%3B%20Stravinsky_%20The%20Rite%20of%20Spring/17%20Rite%20of%20Spring%20-%20Ritual%20Action%20of%20the%20Elders.m4a - File Folder Count4 - Library Folder Count1 - - 4958 - - Track ID4958 - NameRite of Spring - Sacrificial Dance (The Chosen One) - ArtistLorin Maazel; Cleveland Orchestra - ComposerIgor Stravinsky - AlbumShostakovich: Symphony No.5; Stravinsky: The Rite of Spring - GenreClassical - KindAAC audio file - Size6730052 - Total Time277569 - Disc Number1 - Disc Count1 - Track Number18 - Track Count18 - Year1993 - Date Modified2006-08-13T06:35:06Z - Date Added2009-10-03T14:57:41Z - Bit Rate192 - Sample Rate44100 - Normalization1210 - Compilation - Artwork Count1 - Persistent ID0374E37E37244008 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Shostakovich_%20Symphony%20No.5%3B%20Stravinsky_%20The%20Rite%20of%20Spring/18%20Rite%20of%20Spring%20-%20Sacrificial%20Dance%20(The%20Chosen%20One).m4a - File Folder Count4 - Library Folder Count1 - - 4960 - - Track ID4960 - NamePiano Concerto in A minor, Op. 54; 1. Allegro affettuoso - ArtistPerahia, Murray; Davis, Colin ©: Symphonieorchester des Bayerischen Rundfunks - ComposerSchumann, Robert (1810-1856) - AlbumSchumann; Grieg: Piano Concertos: Perahia - GenreClassical - KindAAC audio file - Size21495379 - Total Time888301 - Disc Number1 - Disc Count1 - Track Number1 - Track Count6 - Year1988 - Date Modified2006-08-13T06:35:02Z - Date Added2009-10-03T14:57:41Z - Bit Rate192 - Sample Rate44100 - Normalization582 - Compilation - Artwork Count1 - Persistent IDD4871AD90AF5A278 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Schumann%3B%20Grieg_%20Piano%20Concertos_%20Perahia/01%20Piano%20Concerto%20in%20A%20minor,%20Op.%2054%3B%201.%20Allegro%20affettuoso.m4a - File Folder Count4 - Library Folder Count1 - - 4962 - - Track ID4962 - NamePiano Concerto in A minor, Op. 54; 2. Intermezzo. Andantino grazioso - ArtistPerahia, Murray; Davis, Colin ©: Symphonieorchester des Bayerischen Rundfunks - ComposerSchumann, Robert (1810-1856) - AlbumSchumann; Grieg: Piano Concertos: Perahia - GenreClassical - KindAAC audio file - Size7694098 - Total Time317043 - Disc Number1 - Disc Count1 - Track Number2 - Track Count6 - Year1988 - Date Modified2006-08-13T06:34:52Z - Date Added2009-10-03T14:57:41Z - Bit Rate192 - Sample Rate44100 - Normalization97 - Compilation - Artwork Count1 - Persistent IDF63EE4B94668659F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Schumann%3B%20Grieg_%20Piano%20Concertos_%20Perahia/02%20Piano%20Concerto%20in%20A%20minor,%20Op.%2054%3B%202.%20Intermezzo.%20Andantino%20grazioso.m4a - File Folder Count4 - Library Folder Count1 - - 4964 - - Track ID4964 - NamePiano Concerto in A minor, Op. 54; 3. Allegro vivace - ArtistPerahia, Murray; Davis, Colin ©: Symphonieorchester des Bayerischen Rundfunks - ComposerSchumann, Robert (1810-1856) - AlbumSchumann; Grieg: Piano Concertos: Perahia - GenreClassical - KindAAC audio file - Size14921396 - Total Time621828 - Disc Number1 - Disc Count1 - Track Number3 - Track Count6 - Year1988 - Date Modified2006-08-13T06:34:48Z - Date Added2009-10-03T14:57:41Z - Bit Rate192 - Sample Rate44100 - Normalization833 - Compilation - Artwork Count1 - Persistent IDD0496DBCABC47E09 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Schumann%3B%20Grieg_%20Piano%20Concertos_%20Perahia/03%20Piano%20Concerto%20in%20A%20minor,%20Op.%2054%3B%203.%20Allegro%20vivace.m4a - File Folder Count4 - Library Folder Count1 - - 4966 - - Track ID4966 - NamePiano Concerto in A Minor, Op. 16; 1. Allegro molto moderato - ArtistPerahia, Murray; Davis, Colin ©: Symphonieorchester des Bayerischen Rundfunks - ComposerGrieg, Edvard (1843-1907) - AlbumSchumann; Grieg: Piano Concertos: Perahia - GenreClassical - KindAAC audio file - Size18369319 - Total Time758176 - Disc Number1 - Disc Count1 - Track Number4 - Track Count6 - Year1988 - Date Modified2006-08-13T06:34:42Z - Date Added2009-10-03T14:57:41Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3383455327 - Play Date UTC2011-03-20T03:12:07Z - Normalization516 - Compilation - Artwork Count1 - Persistent ID48D1B147FE020F89 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Schumann%3B%20Grieg_%20Piano%20Concertos_%20Perahia/04%20Piano%20Concerto%20in%20A%20Minor,%20Op.%2016%3B%201.%20Allegro%20molto%20moderato.m4a - File Folder Count4 - Library Folder Count1 - - 4968 - - Track ID4968 - NamePiano Concerto in A Minor, Op. 16; 2. Adagio - ArtistPerahia, Murray; Davis, Colin ©: Symphonieorchester des Bayerischen Rundfunks - ComposerGrieg, Edvard (1843-1907) - AlbumSchumann; Grieg: Piano Concertos: Perahia - GenreClassical - KindAAC audio file - Size10006832 - Total Time412617 - Disc Number1 - Disc Count1 - Track Number5 - Track Count6 - Year1988 - Date Modified2006-08-13T06:34:34Z - Date Added2009-10-03T14:57:41Z - Bit Rate192 - Sample Rate44100 - Normalization296 - Compilation - Artwork Count1 - Persistent IDDF19A5F2B62F208F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Schumann%3B%20Grieg_%20Piano%20Concertos_%20Perahia/05%20Piano%20Concerto%20in%20A%20Minor,%20Op.%2016%3B%202.%20Adagio.m4a - File Folder Count4 - Library Folder Count1 - - 4970 - - Track ID4970 - NamePiano Concerto in A Minor, Op. 16; 3. Allegro moderato molto e marcato - ArtistPerahia, Murray; Davis, Colin ©: Symphonieorchester des Bayerischen Rundfunks - ComposerGrieg, Edvard (1843-1907) - AlbumSchumann; Grieg: Piano Concertos: Perahia - GenreClassical - KindAAC audio file - Size14967009 - Total Time618067 - Disc Number1 - Disc Count1 - Track Number6 - Track Count6 - Year1988 - Date Modified2006-08-13T06:34:30Z - Date Added2009-10-03T14:57:42Z - Bit Rate192 - Sample Rate44100 - Normalization1046 - Compilation - Artwork Count1 - Persistent ID09E194DCBC7C6883 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Schumann%3B%20Grieg_%20Piano%20Concertos_%20Perahia/06%20Piano%20Concerto%20in%20A%20Minor,%20Op.%2016%3B%203.%20Allegro%20moderato%20molto%20e%20marcato.m4a - File Folder Count4 - Library Folder Count1 - - 4972 - - Track ID4972 - NameSocha Hai - ArtistFarhan Akhtar - ComposerShankar Ehsaan Loy - AlbumRock On!! - GenreWorld - KindAAC audio file - Size5965266 - Total Time251533 - Disc Number1 - Disc Count1 - Track Number1 - Track Count9 - Year2008 - Date Modified2008-09-28T07:57:20Z - Date Added2009-10-03T14:57:43Z - Bit Rate185 - Sample Rate44100 - Normalization3623 - Compilation - Artwork Count1 - Persistent ID82C7B11903C9DD5B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Rock%20On!!/01%20Socha%20Hai.m4a - File Folder Count4 - Library Folder Count1 - - 4974 - - Track ID4974 - NamePichle Saat Dinon Mein (Album Version) - ArtistFarhan Akhtar - ComposerShankar Ehsaan Loy - AlbumRock On!! - GenreWorld - KindAAC audio file - Size4577895 - Total Time192240 - Disc Number1 - Disc Count1 - Track Number2 - Track Count9 - Year2008 - Date Modified2008-09-28T07:57:20Z - Date Added2009-10-03T14:57:43Z - Bit Rate184 - Sample Rate44100 - Normalization4323 - Compilation - Artwork Count1 - Persistent ID17B9339AE54E2F04 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Rock%20On!!/02%20Pichle%20Saat%20Dinon%20Mein%20(Album%20Version).m4a - File Folder Count4 - Library Folder Count1 - - 4976 - - Track ID4976 - NameRock On!! - ArtistFarhan Akhtar - ComposerShankar Ehsaan Loy - AlbumRock On!! - GenreWorld - KindAAC audio file - Size5644801 - Total Time235200 - Disc Number1 - Disc Count1 - Track Number3 - Track Count9 - Year2008 - Date Modified2008-09-28T07:57:20Z - Date Added2009-10-03T14:57:43Z - Bit Rate187 - Sample Rate44100 - Normalization4003 - Compilation - Artwork Count1 - Persistent ID08536305FCC7A2B9 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Rock%20On!!/03%20Rock%20On!!.m4a - File Folder Count4 - Library Folder Count1 - - 4978 - - Track ID4978 - NameYe Tumhari Meri Baatein - ArtistDominique Cerejo - ComposerShankar Ehsaan Loy - AlbumRock On!! - GenreWorld - KindAAC audio file - Size8068670 - Total Time328973 - Disc Number1 - Disc Count1 - Track Number4 - Track Count9 - Year2008 - Date Modified2008-09-28T07:57:19Z - Date Added2009-10-03T14:57:43Z - Bit Rate192 - Sample Rate44100 - Normalization3081 - Compilation - Artwork Count1 - Persistent ID3AED7AFECAA71C0A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Rock%20On!!/04%20Ye%20Tumhari%20Meri%20Baatein.m4a - File Folder Count4 - Library Folder Count1 - - 4980 - - Track ID4980 - NameZehreelay - ArtistSuraj Jagan - ComposerShankar Ehsaan Loy - AlbumRock On!! - GenreWorld - KindAAC audio file - Size5308781 - Total Time222240 - Disc Number1 - Disc Count1 - Track Number5 - Track Count9 - Year2008 - Date Modified2008-09-28T07:57:19Z - Date Added2009-10-03T14:57:43Z - Bit Rate185 - Sample Rate44100 - Normalization8612 - Compilation - Artwork Count1 - Persistent IDBE5BBB9AD6BAC0DE - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Rock%20On!!/05%20Zehreelay.m4a - File Folder Count4 - Library Folder Count1 - - 4982 - - Track ID4982 - NameTum Ho Toh - ArtistFarhan Akhtar - ComposerShankar Ehsaan Loy - AlbumRock On!! - GenreWorld - KindAAC audio file - Size6158375 - Total Time255253 - Disc Number1 - Disc Count1 - Track Number6 - Track Count9 - Year2008 - Date Modified2008-09-28T07:57:18Z - Date Added2009-10-03T14:57:44Z - Bit Rate188 - Sample Rate44100 - Normalization2745 - Compilation - Artwork Count1 - Persistent IDC06C2903C54B23C5 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Rock%20On!!/06%20Tum%20Ho%20Toh.m4a - File Folder Count4 - Library Folder Count1 - - 4984 - - Track ID4984 - NameSinbad The Sailor - ArtistFarhan Akhtar & Raman Mahadevan - ComposerShankar Ehsaan Loy - AlbumRock On!! - GenreWorld - KindAAC audio file - Size9281013 - Total Time392133 - Disc Number1 - Disc Count1 - Track Number7 - Track Count9 - Year2008 - Date Modified2008-09-28T07:57:18Z - Date Added2009-10-03T14:57:44Z - Bit Rate185 - Sample Rate44100 - Normalization4145 - Compilation - Artwork Count1 - Persistent ID33485F241FAE3713 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Rock%20On!!/07%20Sinbad%20The%20Sailor.m4a - File Folder Count4 - Library Folder Count1 - - 4986 - - Track ID4986 - NamePichle Saat Dinon mein (Live Version) - ArtistFarhan Akhtar - ComposerShankar Ehsaan Loy - AlbumRock On!! - GenreWorld - KindAAC audio file - Size9542171 - Total Time395573 - Disc Number1 - Disc Count1 - Track Number8 - Track Count9 - Year2008 - Date Modified2008-09-28T07:57:17Z - Date Added2009-10-03T14:57:44Z - Bit Rate189 - Sample Rate44100 - Normalization4285 - Compilation - Artwork Count1 - Persistent IDAFBE6E7DE76B1E00 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Rock%20On!!/08%20Pichle%20Saat%20Dinon%20mein%20(Live%20Version).m4a - File Folder Count4 - Library Folder Count1 - - 4988 - - Track ID4988 - NamePhir Dekhiye - ArtistCaralisa Monteiro - ComposerShankar Ehsaan Loy - AlbumRock On!! - GenreWorld - KindAAC audio file - Size4996288 - Total Time207480 - Disc Number1 - Disc Count1 - Track Number9 - Track Count9 - Year2008 - Date Modified2008-09-28T07:57:16Z - Date Added2009-10-03T14:57:44Z - Bit Rate187 - Sample Rate44100 - Normalization1259 - Compilation - Artwork Count1 - Persistent IDB308E616458E7E3F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Rock%20On!!/09%20Phir%20Dekhiye.m4a - File Folder Count4 - Library Folder Count1 - - 4990 - - Track ID4990 - NameAi No Corrida (Vania Borges Feat. Quincy Jones) - ArtistBuena Vista Social Club - Album ArtistVania Borges Feat. Quincy Jones - ComposerKenny Young, Chaz Jankel - AlbumRhythms Del Mundo: Cuba - GenreLatin - KindAAC audio file - Size6572378 - Total Time270520 - Disc Number1 - Disc Count1 - Track Number10 - Track Count16 - Year2006 - Date Modified2007-08-15T06:18:54Z - Date Added2009-10-03T14:57:44Z - Bit Rate192 - Sample Rate44100 - Normalization4140 - Compilation - Artwork Count1 - Persistent ID7A7A3F4D187F52D6 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Rhythms%20Del%20Mundo_%20Cuba/10%20Ai%20No%20Corrida%20(Vania%20Borges%20Feat.%20Quincy%20Jones).m4a - File Folder Count4 - Library Folder Count1 - - 4992 - - Track ID4992 - NameAs Time Goes By (Ibrahim Ferrer) - ArtistBuena Vista Social Club - Album ArtistIbrahim Ferrer - ComposerHerman Hupfeld - AlbumRhythms Del Mundo: Cuba - GenreLatin - KindAAC audio file - Size4641165 - Total Time190533 - Disc Number1 - Disc Count1 - Track Number5 - Track Count16 - Year2006 - Date Modified2007-08-15T06:18:45Z - Date Added2009-10-03T14:57:44Z - Bit Rate192 - Sample Rate44100 - Normalization3480 - Compilation - Artwork Count1 - Persistent IDEFD124E5F64E6E12 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Rhythms%20Del%20Mundo_%20Cuba/05%20As%20Time%20Goes%20By%20(Ibrahim%20Ferrer).m4a - File Folder Count4 - Library Folder Count1 - - 4994 - - Track ID4994 - NameBetter Together (Jack Johnson & Buena Vista Social Club) - ArtistBuena Vista Social Club - Album ArtistJack Johnson & Buena Vista Social Club - ComposerJack Johnson/Chris Martin, Jon Buckland, Guy Berryman, Will Champion - AlbumRhythms Del Mundo: Cuba - GenreLatin - KindAAC audio file - Size5054998 - Total Time207533 - Disc Number1 - Disc Count1 - Track Number2 - Track Count16 - Year2006 - Date Modified2007-08-15T06:18:43Z - Date Added2009-10-03T14:57:45Z - Bit Rate192 - Sample Rate44100 - Normalization1643 - Compilation - Artwork Count1 - Persistent ID16D878A3B3049466 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Rhythms%20Del%20Mundo_%20Cuba/02%20Better%20Together%20(Jack%20Johnson%20&%20Buena%20Vista%20Social%20Club).m4a - File Folder Count4 - Library Folder Count1 - - 4996 - - Track ID4996 - NameCasablanca (As Time Goes By) (Ibrahim Ferrer & Omara Portuondo) - ArtistBuena Vista Social Club - Album ArtistIbrahim Ferrer & Omara Portuondo - ComposerVarious - AlbumRhythms Del Mundo: Cuba - GenreLatin - KindAAC audio file - Size4634348 - Total Time190160 - Disc Number1 - Disc Count1 - Track Number16 - Track Count16 - Year2006 - Date Modified2007-08-15T06:19:03Z - Date Added2009-10-03T14:57:45Z - Bit Rate192 - Sample Rate44100 - Normalization2358 - Compilation - Artwork Count1 - Persistent ID259C46D6DB0F33B6 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Rhythms%20Del%20Mundo_%20Cuba/16%20Casablanca%20(As%20Time%20Goes%20By)%20(Ibrahim%20Ferrer%20&%20Omara%20Portuondo).m4a - File Folder Count4 - Library Folder Count1 - - 4998 - - Track ID4998 - NameClocks (Coldplay & Buena Vista Social Club) - ArtistBuena Vista Social Club - Album ArtistColdplay & Buena Vista Social Club - ComposerChris Martin, Jon Buckland, Guy Berryman, Will Champion - AlbumRhythms Del Mundo: Cuba - GenreLatin - KindAAC audio file - Size7377306 - Total Time301680 - Disc Number1 - Disc Count1 - Track Number1 - Track Count16 - Year2006 - Date Modified2007-08-15T06:18:39Z - Date Added2009-10-03T14:57:45Z - Bit Rate192 - Sample Rate44100 - Normalization2970 - Compilation - Artwork Count1 - Persistent IDCEC8A16C62386D1B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Rhythms%20Del%20Mundo_%20Cuba/01%20Clocks%20(Coldplay%20&%20Buena%20Vista%20Social%20Club).m4a - File Folder Count4 - Library Folder Count1 - - 5000 - - Track ID5000 - NameDancing Shoes (Arctic Monkeys & Buena Vista Social Club) - ArtistBuena Vista Social Club - Album ArtistArctic Monkeys & Buena Vista Social Club - ComposerAlex Turner - AlbumRhythms Del Mundo: Cuba - GenreLatin - KindAAC audio file - Size3684519 - Total Time149466 - Disc Number1 - Disc Count1 - Track Number3 - Track Count16 - Year2006 - Date Modified2007-08-15T06:18:43Z - Date Added2009-10-03T14:57:45Z - Bit Rate192 - Sample Rate44100 - Normalization7275 - Compilation - Artwork Count1 - Persistent ID3543D22193E962E0 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Rhythms%20Del%20Mundo_%20Cuba/03%20Dancing%20Shoes%20(Arctic%20Monkeys%20&%20Buena%20Vista%20Social%20Club).m4a - File Folder Count4 - Library Folder Count1 - - 5002 - - Track ID5002 - NameDon't Know Why (Vania Borges) - ArtistBuena Vista Social Club - Album ArtistVania Borges - ComposerJesse Harris - AlbumRhythms Del Mundo: Cuba - GenreLatin - KindAAC audio file - Size4666519 - Total Time190160 - Disc Number1 - Disc Count1 - Track Number12 - Track Count16 - Year2006 - Date Modified2007-08-15T06:18:56Z - Date Added2009-10-03T14:57:45Z - Bit Rate192 - Sample Rate44100 - Normalization2431 - Compilation - Artwork Count1 - Persistent ID5D8571F574920AE9 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Rhythms%20Del%20Mundo_%20Cuba/12%20Don't%20Know%20Why%20(Vania%20Borges).m4a - File Folder Count4 - Library Folder Count1 - - 5004 - - Track ID5004 - NameFragilidad (Sting & Buena Vista Social Club) - ArtistBuena Vista Social Club - Album ArtistSting & Buena Vista Social Club - ComposerSting (Gordon Sumner) - AlbumRhythms Del Mundo: Cuba - GenreLatin - KindAAC audio file - Size6279848 - Total Time257853 - Disc Number1 - Disc Count1 - Track Number11 - Track Count16 - Year2006 - Date Modified2007-08-15T06:18:55Z - Date Added2009-10-03T14:57:45Z - Bit Rate192 - Sample Rate44100 - Normalization2387 - Compilation - Artwork Count1 - Persistent IDF1D8DAC0D30A6BB5 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Rhythms%20Del%20Mundo_%20Cuba/11%20Fragilidad%20(Sting%20&%20Buena%20Vista%20Social%20Club).m4a - File Folder Count4 - Library Folder Count1 - - 5006 - - Track ID5006 - NameHigh And Dry (Radiohead & El Lele) - ArtistBuena Vista Social Club - Album ArtistRadiohead & El Lele - ComposerVarious - AlbumRhythms Del Mundo: Cuba - GenreLatin - KindAAC audio file - Size7413170 - Total Time314493 - Disc Number1 - Disc Count1 - Track Number15 - Track Count16 - Year2006 - Date Modified2007-08-15T06:19:01Z - Date Added2009-10-03T14:57:45Z - Bit Rate192 - Sample Rate44100 - Normalization2761 - Compilation - Artwork Count1 - Persistent IDA203552B5577FADC - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Rhythms%20Del%20Mundo_%20Cuba/15%20High%20And%20Dry%20(Radiohead%20&%20El%20Lele).m4a - File Folder Count4 - Library Folder Count1 - - 5008 - - Track ID5008 - NameHotel Buena Vista (Aquila Rose & Idana Valdez) - ArtistBuena Vista Social Club - Album ArtistAquila Rose & Idana Valdez - ComposerKenny Young, Ben Brierly - AlbumRhythms Del Mundo: Cuba - GenreLatin - KindAAC audio file - Size5329591 - Total Time217813 - Disc Number1 - Disc Count1 - Track Number13 - Track Count16 - Year2006 - Date Modified2007-08-15T06:18:57Z - Date Added2009-10-03T14:57:45Z - Bit Rate192 - Sample Rate44100 - Normalization2862 - Compilation - Artwork Count1 - Persistent ID92C6C85336B8AF06 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Rhythms%20Del%20Mundo_%20Cuba/13%20Hotel%20Buena%20Vista%20(Aquila%20Rose%20&%20Idana%20Valdez).m4a - File Folder Count4 - Library Folder Count1 - - 5010 - - Track ID5010 - NameI Still Haven't Found What I'm Looking For (Coco Freeman Feat. U2) - ArtistBuena Vista Social Club - Album ArtistCoco Freeman Feat. U2 - ComposerChris Martin, Jon Buckland, Guy Berryman, Will Champion/The Edge, Bono, Adam Clayton, Larry Mullen jr. - AlbumRhythms Del Mundo: Cuba - GenreLatin - KindAAC audio file - Size7241823 - Total Time293440 - Disc Number1 - Disc Count1 - Track Number6 - Track Count16 - Year2006 - Date Modified2007-08-15T06:18:47Z - Date Added2009-10-03T14:57:46Z - Bit Rate192 - Sample Rate44100 - Normalization3657 - Compilation - Artwork Count1 - Persistent ID7EA89F03EA74CA92 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Rhythms%20Del%20Mundo_%20Cuba/06%20I%20Still%20Haven't%20Found%20What%20I'm%20Looking%20For%20(Coco%20Freeman%20Feat.%20U2).m4a - File Folder Count4 - Library Folder Count1 - - 5012 - - Track ID5012 - NameKilling Me Softly (Omara Portuondo) - ArtistBuena Vista Social Club - Album ArtistOmara Portuondo - ComposerCharles Fox, Norman Gimbel - AlbumRhythms Del Mundo: Cuba - GenreLatin - KindAAC audio file - Size6555115 - Total Time267400 - Disc Number1 - Disc Count1 - Track Number9 - Track Count16 - Year2006 - Date Modified2007-08-15T06:18:52Z - Date Added2009-10-03T14:57:46Z - Bit Rate192 - Sample Rate44100 - Normalization3016 - Compilation - Artwork Count1 - Persistent ID4DA8600D508FC774 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Rhythms%20Del%20Mundo_%20Cuba/09%20Killing%20Me%20Softly%20(Omara%20Portuondo).m4a - File Folder Count4 - Library Folder Count1 - - 5014 - - Track ID5014 - NameModern Way (Kaiser Chiefs & Buena Vista Social Club) - ArtistBuena Vista Social Club - Album ArtistKaiser Chiefs & Buena Vista Social Club - ComposerNick Baines, Andrew White, Ricky Wilson, Simon Rix, Nick Hodgson - AlbumRhythms Del Mundo: Cuba - GenreLatin - KindAAC audio file - Size5774839 - Total Time238320 - Disc Number1 - Disc Count1 - Track Number8 - Track Count16 - Year2006 - Date Modified2007-08-15T06:18:50Z - Date Added2009-10-03T14:57:46Z - Bit Rate192 - Sample Rate44100 - Normalization4675 - Compilation - Artwork Count1 - Persistent ID24D3DE3299F498F3 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Rhythms%20Del%20Mundo_%20Cuba/08%20Modern%20Way%20(Kaiser%20Chiefs%20&%20Buena%20Vista%20Social%20Club).m4a - File Folder Count4 - Library Folder Count1 - - 5016 - - Track ID5016 - NameOne Step Too Far (Dido, Faithless & Buena Vista Social Club) - ArtistBuena Vista Social Club - Album ArtistDido, Faithless & Buena Vista Social Club - ComposerDido Armstrong, Rollo Armstrong, Ayalah Bentovim, Maxwell Alexander Fraser - AlbumRhythms Del Mundo: Cuba - GenreLatin - KindAAC audio file - Size4837109 - Total Time197426 - Disc Number1 - Disc Count1 - Track Number4 - Track Count16 - Year2006 - Date Modified2007-08-15T06:18:44Z - Date Added2009-10-03T14:57:46Z - Bit Rate192 - Sample Rate44100 - Normalization2645 - Compilation - Artwork Count1 - Persistent ID44F94FA18DC2C308 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Rhythms%20Del%20Mundo_%20Cuba/04%20One%20Step%20Too%20Far%20(Dido,%20Faithless%20&%20Buena%20Vista%20Social%20Club).m4a - File Folder Count4 - Library Folder Count1 - - 5018 - - Track ID5018 - NameShe Will Be Loved (Maroon 5 & Buena Vista Social Club) - ArtistBuena Vista Social Club - Album ArtistMaroon 5 & Buena Vista Social Club - ComposerJesse Carmichael, Ryan Dusick, Adam Levine, Michael Madden, James Valentine - AlbumRhythms Del Mundo: Cuba - GenreLatin - KindAAC audio file - Size5971055 - Total Time245893 - Disc Number1 - Disc Count1 - Track Number7 - Track Count16 - Year2006 - Date Modified2007-08-15T06:18:49Z - Date Added2009-10-03T14:57:46Z - Bit Rate192 - Sample Rate44100 - Normalization3019 - Compilation - Artwork Count1 - Persistent ID670DA1D2A7565D05 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Rhythms%20Del%20Mundo_%20Cuba/07%20She%20Will%20Be%20Loved%20(Maroon%205%20&%20Buena%20Vista%20Social%20Club).m4a - File Folder Count4 - Library Folder Count1 - - 5020 - - Track ID5020 - NameThe Dark Of The Matinee (Coco Freeman & Franz Ferdinand) - ArtistBuena Vista Social Club - Album ArtistCoco Freeman & Franz Ferdinand - ComposerBob Hardy, Nick McCarthy, Paul Thompson, Alex Kapranos - AlbumRhythms Del Mundo: Cuba - GenreLatin - KindAAC audio file - Size5797500 - Total Time238586 - Disc Number1 - Disc Count1 - Track Number14 - Track Count16 - Year2006 - Date Modified2007-08-15T06:18:58Z - Date Added2009-10-03T14:57:47Z - Bit Rate192 - Sample Rate44100 - Normalization3752 - Compilation - Artwork Count1 - Sort NameDark Of The Matinee (Coco Freeman & Franz Ferdinand) - Persistent IDEDEB9FF0D83EB63E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Rhythms%20Del%20Mundo_%20Cuba/14%20The%20Dark%20Of%20The%20Matinee%20(Coco%20Freeman%20&%20Franz%20Ferdinand).m4a - File Folder Count4 - Library Folder Count1 - - 5022 - - Track ID5022 - NameBolero - ArtistMaurice Ravel - ComposerMaurice Ravel - AlbumRavel: Bolero & Debussy: La Mer - GenreClassical - KindAAC audio file - Size23426695 - Total Time977001 - Disc Number1 - Disc Count1 - Track Number1 - Track Count6 - Year1989 - Date Modified2006-09-05T15:57:18Z - Date Added2009-10-03T14:57:47Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3401379934 - Play Date UTC2011-10-13T14:15:34Z - Normalization1099 - Compilation - Artwork Count1 - Persistent IDA0FC7E7418CE6D0A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Ravel_%20Bolero%20&%20Debussy_%20La%20Mer/01%20Bolero.m4a - File Folder Count4 - Library Folder Count1 - - 5024 - - Track ID5024 - NameLa mer: De l'aube a midi sur la mer - ArtistClaude Debussy - ComposerDebussy, Claude - AlbumRavel: Bolero & Debussy: La Mer - GenreClassical - KindAAC audio file - Size12515878 - Total Time517014 - Disc Number1 - Disc Count1 - Track Number2 - Track Count6 - Year1989 - Date Modified2006-09-05T15:57:16Z - Date Added2009-10-03T14:57:47Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3401387450 - Play Date UTC2011-10-13T16:20:50Z - Normalization965 - Compilation - Artwork Count1 - Persistent IDF4BE9260E54A87B0 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Ravel_%20Bolero%20&%20Debussy_%20La%20Mer/02%20La%20mer_%20De%20l'aube%20a%20midi%20sur%20la%20mer.m4a - File Folder Count4 - Library Folder Count1 - - 5026 - - Track ID5026 - NameLa mer: Jeux de vagues - ArtistClaude Debussy - ComposerDebussy, Claude - AlbumRavel: Bolero & Debussy: La Mer - GenreClassical - KindAAC audio file - Size9045381 - Total Time373003 - Disc Number1 - Disc Count1 - Track Number3 - Track Count6 - Year1989 - Date Modified2006-09-05T15:57:14Z - Date Added2009-10-03T14:57:47Z - Bit Rate192 - Sample Rate44100 - Normalization1000 - Compilation - Artwork Count1 - Persistent ID77D64E5644B3BD55 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Ravel_%20Bolero%20&%20Debussy_%20La%20Mer/03%20La%20mer_%20Jeux%20de%20vagues.m4a - File Folder Count4 - Library Folder Count1 - - 5028 - - Track ID5028 - NameLa mer: Dialogue du vent et de la mer - ArtistClaude Debussy - ComposerDebussy, Claude - AlbumRavel: Bolero & Debussy: La Mer - GenreClassical - KindAAC audio file - Size11401407 - Total Time480001 - Disc Number1 - Disc Count1 - Track Number4 - Track Count6 - Year1990 - Date Modified2006-09-05T15:57:14Z - Date Added2009-10-03T14:57:47Z - Bit Rate192 - Sample Rate44100 - Normalization1067 - Compilation - Artwork Count1 - Persistent ID5BF641A67F4DE06A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Ravel_%20Bolero%20&%20Debussy_%20La%20Mer/04%20La%20mer_%20Dialogue%20du%20vent%20et%20de%20la%20mer.m4a - File Folder Count4 - Library Folder Count1 - - 5030 - - Track ID5030 - NameDaphnis et Chloe: Suite No.2 - ArtistMaurice Ravel - ComposerRavel, Maurice - AlbumRavel: Bolero & Debussy: La Mer - GenreClassical - KindAAC audio file - Size22078165 - Total Time923014 - Disc Number1 - Disc Count1 - Track Number5 - Track Count6 - Year1989 - Date Modified2006-09-05T15:57:12Z - Date Added2009-10-03T14:57:47Z - Bit Rate192 - Sample Rate44100 - Normalization1076 - Compilation - Artwork Count1 - Persistent ID29A8CF52BC980C5A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Ravel_%20Bolero%20&%20Debussy_%20La%20Mer/05%20Daphnis%20et%20Chloe_%20Suite%20No.2.m4a - File Folder Count4 - Library Folder Count1 - - 5032 - - Track ID5032 - NamePrelude a l'apres-midi d'une faune - ArtistClaude Debussy - ComposerDebussy, Claude - AlbumRavel: Bolero & Debussy: La Mer - GenreClassical - KindAAC audio file - Size14294747 - Total Time592014 - Disc Number1 - Disc Count1 - Track Number6 - Track Count6 - Year1989 - Date Modified2006-09-05T15:57:08Z - Date Added2009-10-03T14:57:47Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3401388042 - Play Date UTC2011-10-13T16:30:42Z - Normalization784 - Compilation - Artwork Count1 - Persistent IDA90EA8D24956B402 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Ravel_%20Bolero%20&%20Debussy_%20La%20Mer/06%20Prelude%20a%20l'apres-midi%20d'une%20faune.m4a - File Folder Count4 - Library Folder Count1 - - 5034 - - Track ID5034 - NameSymphony-Concerto in E minor for Cello and Orchestra, Op. 125: 1. Andante - ArtistAlexander Rudin and the National Symphony Ochestra of Ukraine with Theodore Kuchar - ComposerSergey Prokofiev (1891 - 1953) - AlbumProkofiev: Symphony-Concerto for Cello & Orchestra, Concertino, Two Waltzes - GenreClassical - KindAAC audio file - Size15448219 - Total Time640010 - Disc Number1 - Disc Count1 - Track Number1 - Track Count8 - Year1997 - Date Modified2006-08-07T13:52:44Z - Date Added2009-10-03T14:57:47Z - Bit Rate192 - Sample Rate44100 - Normalization1104 - Compilation - Artwork Count1 - Persistent ID0C1647C3B3D17962 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Prokofiev_%20Symphony-Concerto%20for%20Cello%20&%20Orchestra,%20Concertino,%20Two%20Waltzes/01%20Symphony-Concerto%20in%20E%20minor%20for%20Cello%20and%20Orchestra,%20Op.%20125_%201.%20Andante.m4a - File Folder Count4 - Library Folder Count1 - - 5036 - - Track ID5036 - NameAllegro giusto - ArtistAlexander Rudin and the National Symphony Ochestra of Ukraine with Theodore Kuchar - ComposerSergey Prokofiev (1891 - 1953) - AlbumProkofiev: Symphony-Concerto for Cello & Orchestra, Concertino, Two Waltzes - GenreClassical - KindAAC audio file - Size25654712 - Total Time1064888 - Disc Number1 - Disc Count1 - Track Number2 - Track Count8 - Year1997 - Date Modified2006-08-07T13:52:44Z - Date Added2009-10-03T14:57:48Z - Bit Rate192 - Sample Rate44100 - Normalization1187 - Compilation - Artwork Count1 - Persistent IDA1EFC9B7DBD3DBBC - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Prokofiev_%20Symphony-Concerto%20for%20Cello%20&%20Orchestra,%20Concertino,%20Two%20Waltzes/02%20Allegro%20giusto.m4a - File Folder Count4 - Library Folder Count1 - - 5038 - - Track ID5038 - NameAndante con moto - Allegro - Allegro marcato - ArtistAlexander Rudin and the National Symphony Ochestra of Ukraine with Theodore Kuchar - ComposerSergey Prokofiev (1891 - 1953) - AlbumProkofiev: Symphony-Concerto for Cello & Orchestra, Concertino, Two Waltzes - GenreClassical - KindAAC audio file - Size16036064 - Total Time665134 - Disc Number1 - Disc Count1 - Track Number3 - Track Count8 - Year1997 - Date Modified2006-08-07T13:52:42Z - Date Added2009-10-03T14:57:48Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Compilation - Artwork Count1 - Persistent ID525B7EF339A4C7F9 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Prokofiev_%20Symphony-Concerto%20for%20Cello%20&%20Orchestra,%20Concertino,%20Two%20Waltzes/03%20Andante%20con%20moto%20-%20Allegro%20-%20Allegro%20marcato.m4a - File Folder Count4 - Library Folder Count1 - - 5040 - - Track ID5040 - NameConcertino in G minor for Cello and Orchestra, Op. 132: 1. Andante mosso - ArtistAlexander Rudin and the National Symphony Ochestra of Ukraine with Theodore Kuchar - ComposerSergey Prokofiev (1891 - 1953) - AlbumProkofiev: Symphony-Concerto for Cello & Orchestra, Concertino, Two Waltzes - GenreClassical - KindAAC audio file - Size13274133 - Total Time552563 - Disc Number1 - Disc Count1 - Track Number4 - Track Count8 - Year1997 - Date Modified2006-08-07T13:52:42Z - Date Added2009-10-03T14:57:48Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Compilation - Artwork Count1 - Persistent ID3F1CE73898DECDC9 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Prokofiev_%20Symphony-Concerto%20for%20Cello%20&%20Orchestra,%20Concertino,%20Two%20Waltzes/04%20Concertino%20in%20G%20minor%20for%20Cello%20and%20Orchestra,%20Op.%20132_%201.%20Andante%20mosso.m4a - File Folder Count4 - Library Folder Count1 - - 5042 - - Track ID5042 - NameAndante - ArtistAlexander Rudin and the National Symphony Ochestra of Ukraine with Theodore Kuchar - ComposerSergey Prokofiev (1891 - 1953) - AlbumProkofiev: Symphony-Concerto for Cello & Orchestra, Concertino, Two Waltzes - GenreClassical - KindAAC audio file - Size8137219 - Total Time341076 - Disc Number1 - Disc Count1 - Track Number5 - Track Count8 - Year1997 - Date Modified2006-08-07T13:52:42Z - Date Added2009-10-03T14:57:48Z - Bit Rate192 - Sample Rate44100 - Normalization111 - Compilation - Artwork Count1 - Persistent IDC365214E16BF13BD - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Prokofiev_%20Symphony-Concerto%20for%20Cello%20&%20Orchestra,%20Concertino,%20Two%20Waltzes/05%20Andante.m4a - File Folder Count4 - Library Folder Count1 - - 5044 - - Track ID5044 - NameAllegretto - ArtistAlexander Rudin and the National Symphony Ochestra of Ukraine with Theodore Kuchar - ComposerSergey Prokofiev (1891 - 1953) - AlbumProkofiev: Symphony-Concerto for Cello & Orchestra, Concertino, Two Waltzes - GenreClassical - KindAAC audio file - Size6967916 - Total Time290619 - Disc Number1 - Disc Count1 - Track Number6 - Track Count8 - Year1997 - Date Modified2006-08-07T13:52:42Z - Date Added2009-10-03T14:57:48Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Compilation - Artwork Count1 - Persistent ID4461662D6E6713F4 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Prokofiev_%20Symphony-Concerto%20for%20Cello%20&%20Orchestra,%20Concertino,%20Two%20Waltzes/06%20Allegretto.m4a - File Folder Count4 - Library Folder Count1 - - 5046 - - Track ID5046 - NameTwo Pushkin Waltzes, Op. 120: No. 1 in F major - ArtistNational Symphony Ochestra of Ukraine with Theodore Kuchar - ComposerSergey Prokofiev (1891 - 1953) - AlbumProkofiev: Symphony-Concerto for Cello & Orchestra, Concertino, Two Waltzes - GenreClassical - KindAAC audio file - Size5755247 - Total Time239582 - Disc Number1 - Disc Count1 - Track Number7 - Track Count8 - Year1997 - Date Modified2006-08-07T13:52:42Z - Date Added2009-10-03T14:57:49Z - Bit Rate192 - Sample Rate44100 - Normalization870 - Compilation - Artwork Count1 - Persistent IDDD844A3CAF744604 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Prokofiev_%20Symphony-Concerto%20for%20Cello%20&%20Orchestra,%20Concertino,%20Two%20Waltzes/07%20Two%20Pushkin%20Waltzes,%20Op.%20120_%20No.%201%20in%20F%20major.m4a - File Folder Count4 - Library Folder Count1 - - 5048 - - Track ID5048 - NameNo. 2 in C sharp minor - ArtistNational Symphony Ochestra of Ukraine with Theodore Kuchar - ComposerSergey Prokofiev (1891 - 1953) - AlbumProkofiev: Symphony-Concerto for Cello & Orchestra, Concertino, Two Waltzes - GenreClassical - KindAAC audio file - Size5937855 - Total Time247569 - Disc Number1 - Disc Count1 - Track Number8 - Track Count8 - Year1997 - Date Modified2006-08-07T13:52:42Z - Date Added2009-10-03T14:57:49Z - Bit Rate192 - Sample Rate44100 - Normalization894 - Compilation - Artwork Count1 - Persistent IDD5858ACADE192283 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Prokofiev_%20Symphony-Concerto%20for%20Cello%20&%20Orchestra,%20Concertino,%20Two%20Waltzes/08%20No.%202%20in%20C%20sharp%20minor.m4a - File Folder Count4 - Library Folder Count1 - - 5050 - - Track ID5050 - NamePo' Lazarus - ArtistJames Carter & The Prisoners - ComposerTraditional, arr. by Alan Lomax - AlbumO Brother, Where Art Thou? - GenreSoundtrack - KindAAC audio file - Size6548776 - Total Time270812 - Disc Number1 - Disc Count1 - Track Number1 - Track Count19 - Year1959 - Date Modified2006-08-13T06:34:22Z - Date Added2009-10-03T14:57:49Z - Bit Rate192 - Sample Rate44100 - Skip Count2 - Skip Date2014-06-05T08:38:22Z - Normalization1381 - Compilation - Artwork Count1 - Persistent ID2A579B25D6C79EF3 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/O%20Brother,%20Where%20Art%20Thou_/01%20Po'%20Lazarus.m4a - File Folder Count4 - Library Folder Count1 - - 5052 - - Track ID5052 - NameBig Rock Candy Mountain - ArtistHarry McClintock - ComposerHarry McClintock - AlbumO Brother, Where Art Thou? - GenreSoundtrack - KindAAC audio file - Size3325693 - Total Time137716 - Disc Number1 - Disc Count1 - Track Number2 - Track Count19 - Year1928 - Date Modified2006-08-13T06:34:20Z - Date Added2009-10-03T14:57:49Z - Bit Rate192 - Sample Rate44100 - Play Count3 - Play Date3484822240 - Play Date UTC2014-06-05T08:40:40Z - Normalization1230 - Compilation - Artwork Count1 - Persistent ID3A2EBBC3A2587230 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/O%20Brother,%20Where%20Art%20Thou_/02%20Big%20Rock%20Candy%20Mountain.m4a - File Folder Count4 - Library Folder Count1 - - 5054 - - Track ID5054 - NameYou Are My Sunshine - ArtistNorman Blake - ComposerJimmie Davis, Charles Mitchell - AlbumO Brother, Where Art Thou? - GenreSoundtrack - KindAAC audio file - Size6489295 - Total Time267608 - Disc Number1 - Disc Count1 - Track Number3 - Track Count19 - Year2000 - Date Modified2006-08-13T06:34:18Z - Date Added2009-10-03T14:57:49Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3484840286 - Play Date UTC2014-06-05T13:41:26Z - Normalization1047 - Compilation - Artwork Count1 - Persistent ID5BE34E1E51309D67 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/O%20Brother,%20Where%20Art%20Thou_/03%20You%20Are%20My%20Sunshine.m4a - File Folder Count4 - Library Folder Count1 - - 5056 - - Track ID5056 - NameDown To The River To Pray - ArtistAlison Krauss - ComposerJimmie Rodgers/Traditional, arr. by Allison Krauss - AlbumO Brother, Where Art Thou? - GenreSoundtrack - KindAAC audio file - Size4279470 - Total Time175982 - Disc Number1 - Disc Count1 - Track Number4 - Track Count19 - Year2000 - Date Modified2006-08-13T06:34:14Z - Date Added2009-10-03T14:57:49Z - Bit Rate192 - Sample Rate44100 - Play Count5 - Play Date3484840487 - Play Date UTC2014-06-05T13:44:47Z - Skip Count1 - Skip Date2014-06-04T11:26:32Z - Normalization1057 - Compilation - Artwork Count1 - Persistent IDC5808AE0985283A8 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/O%20Brother,%20Where%20Art%20Thou_/04%20Down%20To%20The%20River%20To%20Pray.m4a - File Folder Count4 - Library Folder Count1 - - 5058 - - Track ID5058 - NameI Am A Man Of Constant Sorrow - ArtistThe Soggy Bottom Boys - ComposerTraditional, arr. by Carter Stanley - AlbumO Brother, Where Art Thou? - GenreSoundtrack - KindAAC audio file - Size4616382 - Total Time190007 - Disc Number1 - Disc Count1 - Track Number5 - Track Count19 - Year2000 - Date Modified2006-08-13T06:34:12Z - Date Added2009-10-03T14:57:49Z - Bit Rate192 - Sample Rate44100 - Play Count3 - Play Date3484847888 - Play Date UTC2014-06-05T15:48:08Z - Skip Count1 - Skip Date2014-05-16T15:54:37Z - Normalization926 - Compilation - Artwork Count1 - Sort ArtistSoggy Bottom Boys - Persistent IDADD47F08F4641389 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/O%20Brother,%20Where%20Art%20Thou_/05%20I%20Am%20A%20Man%20Of%20Constant%20Sorrow.m4a - File Folder Count4 - Library Folder Count1 - - 5060 - - Track ID5060 - NameHard Time Killing Floor Blues - ArtistChris Thomas King - ComposerNehemiah "Skip" James - AlbumO Brother, Where Art Thou? - GenreSoundtrack - KindAAC audio file - Size3948906 - Total Time162445 - Disc Number1 - Disc Count1 - Track Number6 - Track Count19 - Year2000 - Date Modified2006-08-13T06:34:10Z - Date Added2009-10-03T14:57:49Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3389531394 - Play Date UTC2011-05-29T10:59:54Z - Normalization714 - Compilation - Artwork Count1 - Persistent IDE3BCA575052CC74F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/O%20Brother,%20Where%20Art%20Thou_/06%20Hard%20Time%20Killing%20Floor%20Blues.m4a - File Folder Count4 - Library Folder Count1 - - 5062 - - Track ID5062 - NameI Am A Man Of Constant Sorrow (Instrumental) - ArtistJohn Hartford - ComposerTraditional, arr. by Norman Blake - AlbumO Brother, Where Art Thou? - GenreSoundtrack - KindAAC audio file - Size6532582 - Total Time269419 - Disc Number1 - Disc Count1 - Track Number7 - Track Count19 - Year2000 - Date Modified2006-08-13T06:34:08Z - Date Added2009-10-03T14:57:50Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3389531664 - Play Date UTC2011-05-29T11:04:24Z - Normalization493 - Compilation - Artwork Count1 - Persistent ID4AE883903F89BCDD - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/O%20Brother,%20Where%20Art%20Thou_/07%20I%20Am%20A%20Man%20Of%20Constant%20Sorrow%20(Instrumental).m4a - File Folder Count4 - Library Folder Count1 - - 5064 - - Track ID5064 - NameKeep On The Sunny Side - ArtistThe Whites - ComposerA.P. Carter - AlbumO Brother, Where Art Thou? - GenreSoundtrack - KindAAC audio file - Size5200282 - Total Time214318 - Disc Number1 - Disc Count1 - Track Number8 - Track Count19 - Year2000 - Date Modified2006-08-13T06:34:06Z - Date Added2009-10-03T14:57:50Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3427382124 - Play Date UTC2012-08-09T13:05:24Z - Normalization908 - Compilation - Artwork Count1 - Sort ArtistWhites - Persistent ID8106C0A07415D208 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/O%20Brother,%20Where%20Art%20Thou_/08%20Keep%20On%20The%20Sunny%20Side.m4a - File Folder Count4 - Library Folder Count1 - - 5066 - - Track ID5066 - NameI'll Fly Away - ArtistAlison Krauss & Gillian Welch - ComposerAlbert E. Brumley - AlbumO Brother, Where Art Thou? - GenreSoundtrack - KindAAC audio file - Size5773826 - Total Time237886 - Disc Number1 - Disc Count1 - Track Number9 - Track Count19 - Year2000 - Date Modified2006-08-13T06:34:04Z - Date Added2009-10-03T14:57:50Z - Bit Rate192 - Sample Rate44100 - Normalization1056 - Compilation - Artwork Count1 - Persistent IDC9D278ACE1006EAE - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/O%20Brother,%20Where%20Art%20Thou_/09%20I'll%20Fly%20Away.m4a - File Folder Count4 - Library Folder Count1 - - 5068 - - Track ID5068 - NameDidn't Leave Nobody But The Baby - ArtistEmmylou Harris, Alison Krauss & Gillian Welch - ComposerTraditional, arr. by Alan Lomax, Mrs. Sidney Carter, Gillian Welch, and T Bone Burnett - AlbumO Brother, Where Art Thou? - GenreSoundtrack - KindAAC audio file - Size2882366 - Total Time117816 - Disc Number1 - Disc Count1 - Track Number10 - Track Count19 - Year2000 - Date Modified2006-08-13T06:34:02Z - Date Added2009-10-03T14:57:50Z - Bit Rate192 - Sample Rate44100 - Skip Count1 - Skip Date2014-05-16T15:51:35Z - Normalization616 - Compilation - Artwork Count1 - Persistent ID50CE2D60589CB100 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/O%20Brother,%20Where%20Art%20Thou_/10%20Didn't%20Leave%20Nobody%20But%20The%20Baby.m4a - File Folder Count4 - Library Folder Count1 - - 5070 - - Track ID5070 - NameIn the Highways - ArtistThe Peasall Sisters - ComposerMaybelle Carter - AlbumO Brother, Where Art Thou? - GenreSoundtrack - KindAAC audio file - Size2362155 - Total Time96152 - Disc Number1 - Disc Count1 - Track Number11 - Track Count19 - Year2000 - Date Modified2006-08-13T06:34:00Z - Date Added2009-10-03T14:57:50Z - Bit Rate192 - Sample Rate44100 - Normalization1332 - Compilation - Artwork Count1 - Sort ArtistPeasall Sisters - Persistent ID6BC700F7B255FFEA - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/O%20Brother,%20Where%20Art%20Thou_/11%20In%20the%20Highways.m4a - File Folder Count4 - Library Folder Count1 - - 5072 - - Track ID5072 - NameI Am Weary (Let Me Rest) - ArtistThe Cox Family - ComposerPete Roberts - AlbumO Brother, Where Art Thou? - GenreSoundtrack - KindAAC audio file - Size4718664 - Total Time194279 - Disc Number1 - Disc Count1 - Track Number12 - Track Count19 - Year2000 - Date Modified2006-08-13T06:33:58Z - Date Added2009-10-03T14:57:50Z - Bit Rate192 - Sample Rate44100 - Normalization713 - Compilation - Artwork Count1 - Sort ArtistCox Family - Persistent IDE065E4AC855E7469 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/O%20Brother,%20Where%20Art%20Thou_/12%20I%20Am%20Weary%20(Let%20Me%20Rest).m4a - File Folder Count4 - Library Folder Count1 - - 5074 - - Track ID5074 - NameI Am A Man Of Constant Sorrow (Instrumental) - ArtistJohn Hartford - ComposerTraditional, arr. by Ed Haley - AlbumO Brother, Where Art Thou? - GenreSoundtrack - KindAAC audio file - Size3755075 - Total Time154155 - Disc Number1 - Disc Count1 - Track Number13 - Track Count19 - Year2000 - Date Modified2006-08-13T06:33:56Z - Date Added2009-10-03T14:57:50Z - Bit Rate192 - Sample Rate44100 - Normalization187 - Compilation - Artwork Count1 - Persistent IDF6F1AAECA97CA1CB - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/O%20Brother,%20Where%20Art%20Thou_/13%20I%20Am%20A%20Man%20Of%20Constant%20Sorrow%20(Instrumental).m4a - File Folder Count4 - Library Folder Count1 - - 5076 - - Track ID5076 - NameO Death - ArtistRalph Stanley - ComposerTraditional, arr. by Ralph Stanley - AlbumO Brother, Where Art Thou? - GenreSoundtrack - KindAAC audio file - Size4847041 - Total Time199620 - Disc Number1 - Disc Count1 - Track Number14 - Track Count19 - Year2000 - Date Modified2006-08-13T06:33:54Z - Date Added2009-10-03T14:57:50Z - Bit Rate192 - Sample Rate44100 - Normalization587 - Compilation - Artwork Count1 - Persistent ID2CB73AE3DA730052 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/O%20Brother,%20Where%20Art%20Thou_/14%20O%20Death.m4a - File Folder Count4 - Library Folder Count1 - - 5078 - - Track ID5078 - NameIn The Jailhouse Now - ArtistThe Soggy Bottom Boys - ComposerJimmie Rodgers - AlbumO Brother, Where Art Thou? - GenreSoundtrack - KindAAC audio file - Size5243089 - Total Time216106 - Disc Number1 - Disc Count1 - Track Number15 - Track Count19 - Year2000 - Date Modified2006-08-13T06:33:52Z - Date Added2009-10-03T14:57:50Z - Bit Rate192 - Sample Rate44100 - Normalization1184 - Compilation - Artwork Count1 - Sort ArtistSoggy Bottom Boys - Persistent ID88F629F468389C54 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/O%20Brother,%20Where%20Art%20Thou_/15%20In%20The%20Jailhouse%20Now.m4a - File Folder Count4 - Library Folder Count1 - - 5080 - - Track ID5080 - NameI Am A Man Of Constant Sorrow - ArtistThe Soggy Bottom Boys - ComposerTraditional, arr. by Carter Stanley - AlbumO Brother, Where Art Thou? - GenreSoundtrack - KindAAC audio file - Size6232749 - Total Time256973 - Disc Number1 - Disc Count1 - Track Number16 - Track Count19 - Year2000 - Date Modified2006-08-13T06:33:50Z - Date Added2009-10-03T14:57:51Z - Bit Rate192 - Sample Rate44100 - Normalization1301 - Compilation - Artwork Count1 - Sort ArtistSoggy Bottom Boys - Persistent ID9C7AB944E53F3315 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/O%20Brother,%20Where%20Art%20Thou_/16%20I%20Am%20A%20Man%20Of%20Constant%20Sorrow.m4a - File Folder Count4 - Library Folder Count1 - - 5082 - - Track ID5082 - NameIndian War Whoop - ArtistJohn Hartford - ComposerHoyt Ming - AlbumO Brother, Where Art Thou? - GenreSoundtrack - KindAAC audio file - Size2224980 - Total Time90440 - Disc Number1 - Disc Count1 - Track Number17 - Track Count19 - Year2000 - Date Modified2006-08-13T06:33:48Z - Date Added2009-10-03T14:57:51Z - Bit Rate192 - Sample Rate44100 - Normalization1244 - Compilation - Artwork Count1 - Persistent ID7AC66E5A2188ECCD - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/O%20Brother,%20Where%20Art%20Thou_/17%20Indian%20War%20Whoop.m4a - File Folder Count4 - Library Folder Count1 - - 5084 - - Track ID5084 - NameLonesome Valley - ArtistThe Fairfield Four - ComposerTraditional, arr. by the Fairfield Four - AlbumO Brother, Where Art Thou? - GenreSoundtrack - KindAAC audio file - Size5997485 - Total Time247174 - Disc Number1 - Disc Count1 - Track Number18 - Track Count19 - Year2000 - Date Modified2006-08-13T06:33:46Z - Date Added2009-10-03T14:57:51Z - Bit Rate192 - Sample Rate44100 - Normalization1387 - Compilation - Artwork Count1 - Sort ArtistFairfield Four - Persistent IDD0DA1542F8DA4951 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/O%20Brother,%20Where%20Art%20Thou_/18%20Lonesome%20Valley.m4a - File Folder Count4 - Library Folder Count1 - - 5086 - - Track ID5086 - NameAngel Band - ArtistThe Stanley Brothers - ComposerTraditional, arr. by Ralph Stanley - AlbumO Brother, Where Art Thou? - GenreSoundtrack - KindAAC audio file - Size3312765 - Total Time135835 - Disc Number1 - Disc Count1 - Track Number19 - Track Count19 - Year1955 - Date Modified2006-08-13T06:33:44Z - Date Added2009-10-03T14:57:51Z - Bit Rate192 - Sample Rate44100 - Normalization723 - Compilation - Artwork Count1 - Sort ArtistStanley Brothers - Persistent ID7820EFED4F6C2F43 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/O%20Brother,%20Where%20Art%20Thou_/19%20Angel%20Band.m4a - File Folder Count4 - Library Folder Count1 - - 5088 - - Track ID5088 - NameNocturne No. 1 in B Flat Minor, Op. 9 No. 1 Larghetto - ArtistDaniel Barenboim - ComposerFrédéric Chopin - AlbumNocturnes - GenreClassical - KindAAC audio file - Size8293911 - Total Time343259 - Disc Number1 - Disc Count1 - Track Number1 - Track Count13 - Year1982 - Date Modified2006-09-05T15:16:38Z - Date Added2009-10-03T14:57:51Z - Bit Rate192 - Sample Rate44100 - Normalization341 - Compilation - Artwork Count1 - Persistent IDCBD0A2D8997FFE21 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Nocturnes/01%20Nocturne%20No.%201%20in%20B%20Flat%20Minor,%20Op.%209%20No.%201%20Larghetto.m4a - File Folder Count4 - Library Folder Count1 - - 5090 - - Track ID5090 - NameNocturne No. 2 in E Flat Major, Op. 9 No. 2 Andante - ArtistDaniel Barenboim - ComposerFrédéric Chopin - AlbumNocturnes - GenreClassical - KindAAC audio file - Size6657544 - Total Time273947 - Disc Number1 - Disc Count1 - Track Number2 - Track Count13 - Year1982 - Date Modified2006-09-05T15:16:38Z - Date Added2009-10-03T14:57:51Z - Bit Rate192 - Sample Rate44100 - Normalization262 - Compilation - Artwork Count1 - Persistent IDD72C1CF7AFFF2705 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Nocturnes/02%20Nocturne%20No.%202%20in%20E%20Flat%20Major,%20Op.%209%20No.%202%20Andante.m4a - File Folder Count4 - Library Folder Count1 - - 5092 - - Track ID5092 - NameNocturne No. 3 in B Major, Op. 9 No. 3 Allegretto - ArtistDaniel Barenboim - ComposerFrédéric Chopin - AlbumNocturnes - GenreClassical - KindAAC audio file - Size10586233 - Total Time436278 - Disc Number1 - Disc Count1 - Track Number3 - Track Count13 - Year1982 - Date Modified2006-09-05T15:16:36Z - Date Added2009-10-03T14:57:51Z - Bit Rate192 - Sample Rate44100 - Normalization595 - Compilation - Artwork Count1 - Persistent ID2298C2EC2E18AD92 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Nocturnes/03%20Nocturne%20No.%203%20in%20B%20Major,%20Op.%209%20No.%203%20Allegretto.m4a - File Folder Count4 - Library Folder Count1 - - 5094 - - Track ID5094 - NameNocturne No. 4 in F Major, Op. 15 No. 1 Andante cantabile - ArtistDaniel Barenboim - ComposerFrédéric Chopin - AlbumNocturnes - GenreClassical - KindAAC audio file - Size6580443 - Total Time270743 - Disc Number1 - Disc Count1 - Track Number4 - Track Count13 - Year1982 - Date Modified2006-09-05T15:16:36Z - Date Added2009-10-03T14:57:52Z - Bit Rate192 - Sample Rate44100 - Normalization468 - Compilation - Artwork Count1 - Persistent ID97E89C43E7DC2640 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Nocturnes/04%20Nocturne%20No.%204%20in%20F%20Major,%20Op.%2015%20No.%201%20Andante%20cantabile.m4a - File Folder Count4 - Library Folder Count1 - - 5096 - - Track ID5096 - NameNocturne No. 7 in C Sharp Minor, Op. 27 No. 1 Larghetto - ArtistDaniel Barenboim - ComposerFrédéric Chopin - AlbumNocturnes - GenreClassical - KindAAC audio file - Size7195772 - Total Time296169 - Disc Number1 - Disc Count1 - Track Number5 - Track Count13 - Year1982 - Date Modified2006-09-05T15:16:36Z - Date Added2009-10-03T14:57:52Z - Bit Rate192 - Sample Rate44100 - Normalization769 - Compilation - Artwork Count1 - Persistent ID862014079186E9E3 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Nocturnes/05%20Nocturne%20No.%207%20in%20C%20Sharp%20Minor,%20Op.%2027%20No.%201%20Larghetto.m4a - File Folder Count4 - Library Folder Count1 - - 5098 - - Track ID5098 - NameNocturne No. 8 in D Flat Major, Op. 27 No. 2 Lento sostenuto - ArtistDaniel Barenboim - ComposerFrédéric Chopin - AlbumNocturnes - GenreClassical - KindAAC audio file - Size9482691 - Total Time390674 - Disc Number1 - Disc Count1 - Track Number6 - Track Count13 - Year1982 - Date Modified2006-09-05T15:16:36Z - Date Added2009-10-03T14:57:52Z - Bit Rate192 - Sample Rate44100 - Normalization293 - Compilation - Artwork Count1 - Persistent ID4B8700C63C3ACD5D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Nocturnes/06%20Nocturne%20No.%208%20in%20D%20Flat%20Major,%20Op.%2027%20No.%202%20Lento%20sostenuto.m4a - File Folder Count4 - Library Folder Count1 - - 5100 - - Track ID5100 - NameNocturne No. 9 in B Major, Op. 32 No. 1 Andante sostenuto - ArtistDaniel Barenboim - ComposerFrédéric Chopin - AlbumNocturnes - GenreClassical - KindAAC audio file - Size7826656 - Total Time322337 - Disc Number1 - Disc Count1 - Track Number7 - Track Count13 - Year1982 - Date Modified2006-09-05T15:16:34Z - Date Added2009-10-03T14:57:52Z - Bit Rate192 - Sample Rate44100 - Normalization404 - Compilation - Artwork Count1 - Persistent ID1D540855AD568E71 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Nocturnes/07%20Nocturne%20No.%209%20in%20B%20Major,%20Op.%2032%20No.%201%20Andante%20sostenuto.m4a - File Folder Count4 - Library Folder Count1 - - 5102 - - Track ID5102 - NameNocturne No. 10 in A Flat Major, Op. 32 No. 2 Lento - ArtistDaniel Barenboim - ComposerFrédéric Chopin - AlbumNocturnes - GenreClassical - KindAAC audio file - Size8304793 - Total Time342005 - Disc Number1 - Disc Count1 - Track Number8 - Track Count13 - Year1982 - Date Modified2006-09-05T15:16:34Z - Date Added2009-10-03T14:57:52Z - Bit Rate192 - Sample Rate44100 - Normalization422 - Compilation - Artwork Count1 - Persistent IDF3467781495F3AAE - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Nocturnes/08%20Nocturne%20No.%2010%20in%20A%20Flat%20Major,%20Op.%2032%20No.%202%20Lento.m4a - File Folder Count4 - Library Folder Count1 - - 5104 - - Track ID5104 - NameNocturne No. 12 in G Major, Op. 37 No. 2 Andantino - ArtistDaniel Barenboim - ComposerFrédéric Chopin - AlbumNocturnes - GenreClassical - KindAAC audio file - Size8426124 - Total Time347020 - Disc Number1 - Disc Count1 - Track Number9 - Track Count13 - Year1982 - Date Modified2006-09-05T15:16:34Z - Date Added2009-10-03T14:57:52Z - Bit Rate192 - Sample Rate44100 - Normalization244 - Compilation - Artwork Count1 - Persistent ID19D8CF914FD2008F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Nocturnes/09%20Nocturne%20No.%2012%20in%20G%20Major,%20Op.%2037%20No.%202%20Andantino.m4a - File Folder Count4 - Library Folder Count1 - - 5106 - - Track ID5106 - NameNocturne No. 13 in C Minor, Op. 48 No. 1 Lento - ArtistDaniel Barenboim - ComposerFrédéric Chopin - AlbumNocturnes - GenreClassical - KindAAC audio file - Size9116342 - Total Time377346 - Disc Number1 - Disc Count1 - Track Number10 - Track Count13 - Year1982 - Date Modified2006-09-05T15:16:34Z - Date Added2009-10-03T14:57:52Z - Bit Rate192 - Sample Rate44100 - Normalization1010 - Compilation - Artwork Count1 - Persistent ID36FB120420637528 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Nocturnes/10%20Nocturne%20No.%2013%20in%20C%20Minor,%20Op.%2048%20No.%201%20Lento.m4a - File Folder Count4 - Library Folder Count1 - - 5108 - - Track ID5108 - NameNocturne No. 15 in F Minor, Op. 55 No. 1 Andante - ArtistDaniel Barenboim - ComposerFrédéric Chopin - AlbumNocturnes - GenreClassical - KindAAC audio file - Size6808855 - Total Time280193 - Disc Number1 - Disc Count1 - Track Number11 - Track Count13 - Year1982 - Date Modified2006-09-05T15:16:34Z - Date Added2009-10-03T14:57:52Z - Bit Rate192 - Sample Rate44100 - Normalization386 - Compilation - Artwork Count1 - Persistent ID1E466C102E88C03F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Nocturnes/11%20Nocturne%20No.%2015%20in%20F%20Minor,%20Op.%2055%20No.%201%20Andante.m4a - File Folder Count4 - Library Folder Count1 - - 5110 - - Track ID5110 - NameNocturne No. 18 in E Major, Op. 62 No. 2 Lento - ArtistDaniel Barenboim - ComposerFrédéric Chopin - AlbumNocturnes - GenreClassical - KindAAC audio file - Size9139986 - Total Time376510 - Disc Number1 - Disc Count1 - Track Number12 - Track Count13 - Year1982 - Date Modified2006-09-05T15:16:32Z - Date Added2009-10-03T14:57:52Z - Bit Rate192 - Sample Rate44100 - Normalization313 - Compilation - Artwork Count1 - Persistent ID0B0EA39E9D2EBE81 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Nocturnes/12%20Nocturne%20No.%2018%20in%20E%20Major,%20Op.%2062%20No.%202%20Lento.m4a - File Folder Count4 - Library Folder Count1 - - 5112 - - Track ID5112 - NameNocturne No. 19 in E Minor, Op. Post. 72 No. 1 Andante - ArtistDaniel Barenboim - ComposerFrédéric Chopin - AlbumNocturnes - GenreClassical - KindAAC audio file - Size6385080 - Total Time263010 - Disc Number1 - Disc Count1 - Track Number13 - Track Count13 - Year1982 - Date Modified2006-09-05T15:16:32Z - Date Added2009-10-03T14:57:52Z - Bit Rate192 - Sample Rate44100 - Normalization329 - Compilation - Artwork Count1 - Persistent ID5F7F1429A64387DD - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Nocturnes/13%20Nocturne%20No.%2019%20in%20E%20Minor,%20Op.%20Post.%2072%20No.%201%20Andante.m4a - File Folder Count4 - Library Folder Count1 - - 5114 - - Track ID5114 - NameNaqoyqatsi - ArtistPhilip Glass - ComposerPhilip Glass - AlbumNaqoyqatsi - GenreSoundtrack - KindAAC audio file - Size11571691 - Total Time476077 - Disc Number1 - Disc Count1 - Track Number1 - Track Count11 - Year2002 - Date Modified2006-07-27T16:20:08Z - Date Added2009-10-03T14:57:53Z - Bit Rate192 - Sample Rate44100 - Normalization390 - Compilation - Artwork Count1 - Persistent ID2A3E6D7B2827F877 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Naqoyqatsi/01%20Naqoyqatsi.m4a - File Folder Count4 - Library Folder Count1 - - 5116 - - Track ID5116 - NamePrimacy of Number - ArtistPhilip Glass - ComposerPhilip Glass - AlbumNaqoyqatsi - GenreSoundtrack - KindAAC audio file - Size10026757 - Total Time412245 - Disc Number1 - Disc Count1 - Track Number2 - Track Count11 - Year2002 - Date Modified2006-07-27T16:20:08Z - Date Added2009-10-03T14:57:53Z - Bit Rate192 - Sample Rate44100 - Normalization1054 - Compilation - Artwork Count1 - Persistent ID057F8FE5C1F409F9 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Naqoyqatsi/02%20Primacy%20of%20Number.m4a - File Folder Count4 - Library Folder Count1 - - 5118 - - Track ID5118 - NameMassman - ArtistPhilip Glass - ComposerPhilip Glass - AlbumNaqoyqatsi - GenreSoundtrack - KindAAC audio file - Size14281459 - Total Time588067 - Disc Number1 - Disc Count1 - Track Number3 - Track Count11 - Year2002 - Date Modified2006-07-27T16:20:10Z - Date Added2009-10-03T14:57:53Z - Bit Rate192 - Sample Rate44100 - Normalization1203 - Compilation - Artwork Count1 - Persistent ID3C0C3B39D6BE28CE - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Naqoyqatsi/03%20Massman.m4a - File Folder Count4 - Library Folder Count1 - - 5120 - - Track ID5120 - NameNew World - ArtistPhilip Glass - ComposerPhilip Glass - AlbumNaqoyqatsi - GenreSoundtrack - KindAAC audio file - Size4527551 - Total Time184411 - Disc Number1 - Disc Count1 - Track Number4 - Track Count11 - Year2002 - Date Modified2006-07-27T16:20:10Z - Date Added2009-10-03T14:57:53Z - Bit Rate192 - Sample Rate44100 - Normalization51 - Compilation - Artwork Count1 - Persistent ID266A5B0D731CDF7E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Naqoyqatsi/04%20New%20World.m4a - File Folder Count4 - Library Folder Count1 - - 5122 - - Track ID5122 - NameReligion - ArtistPhilip Glass - ComposerPhilip Glass - AlbumNaqoyqatsi - GenreSoundtrack - KindAAC audio file - Size13153287 - Total Time541441 - Disc Number1 - Disc Count1 - Track Number5 - Track Count11 - Year2002 - Date Modified2006-07-27T16:20:12Z - Date Added2009-10-03T14:57:53Z - Bit Rate192 - Sample Rate44100 - Normalization955 - Compilation - Artwork Count1 - Persistent ID84E2F2BDF801FB1A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Naqoyqatsi/05%20Religion.m4a - File Folder Count4 - Library Folder Count1 - - 5124 - - Track ID5124 - NameMedia Weather - ArtistPhilip Glass - ComposerPhilip Glass - AlbumNaqoyqatsi - GenreSoundtrack - KindAAC audio file - Size11530368 - Total Time474382 - Disc Number1 - Disc Count1 - Track Number6 - Track Count11 - Year2002 - Date Modified2006-07-27T16:20:12Z - Date Added2009-10-03T14:57:53Z - Bit Rate192 - Sample Rate44100 - Normalization271 - Compilation - Artwork Count1 - Persistent ID2706F1EF4F59E89C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Naqoyqatsi/06%20Media%20Weather.m4a - File Folder Count4 - Library Folder Count1 - - 5126 - - Track ID5126 - NameOld World - ArtistPhilip Glass - ComposerPhilip Glass - AlbumNaqoyqatsi - GenreSoundtrack - KindAAC audio file - Size4630785 - Total Time188707 - Disc Number1 - Disc Count1 - Track Number7 - Track Count11 - Year2002 - Date Modified2006-07-27T16:20:12Z - Date Added2009-10-03T14:57:54Z - Bit Rate192 - Sample Rate44100 - Normalization13 - Compilation - Artwork Count1 - Persistent ID83C048F0CB6EEFB0 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Naqoyqatsi/07%20Old%20World.m4a - File Folder Count4 - Library Folder Count1 - - 5128 - - Track ID5128 - NameIntensive Time - ArtistPhilip Glass - ComposerPhilip Glass - AlbumNaqoyqatsi - GenreSoundtrack - KindAAC audio file - Size11885293 - Total Time489034 - Disc Number1 - Disc Count1 - Track Number8 - Track Count11 - Year2002 - Date Modified2006-07-27T16:20:14Z - Date Added2009-10-03T14:57:54Z - Bit Rate192 - Sample Rate44100 - Normalization1139 - Compilation - Artwork Count1 - Persistent ID4DD5FA03AF3C50EF - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Naqoyqatsi/08%20Intensive%20Time.m4a - File Folder Count4 - Library Folder Count1 - - 5130 - - Track ID5130 - NamePoint Blank - ArtistPhilip Glass - ComposerPhilip Glass - AlbumNaqoyqatsi - GenreSoundtrack - KindAAC audio file - Size16446622 - Total Time677533 - Disc Number1 - Disc Count1 - Track Number9 - Track Count11 - Year2002 - Date Modified2006-07-27T16:20:16Z - Date Added2009-10-03T14:57:54Z - Bit Rate192 - Sample Rate44100 - Normalization886 - Compilation - Artwork Count1 - Persistent ID8358BDE29E696443 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Naqoyqatsi/09%20Point%20Blank.m4a - File Folder Count4 - Library Folder Count1 - - 5132 - - Track ID5132 - NameThe Vivid Unknown - ArtistPhilip Glass - ComposerPhilip Glass - AlbumNaqoyqatsi - GenreSoundtrack - KindAAC audio file - Size10417330 - Total Time428383 - Disc Number1 - Disc Count1 - Track Number10 - Track Count11 - Year2002 - Date Modified2006-07-27T16:20:16Z - Date Added2009-10-03T14:57:54Z - Bit Rate192 - Sample Rate44100 - Normalization88 - Compilation - Artwork Count1 - Sort NameVivid Unknown - Persistent ID03F5B547A5B407F2 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Naqoyqatsi/10%20The%20Vivid%20Unknown.m4a - File Folder Count4 - Library Folder Count1 - - 5134 - - Track ID5134 - NameDefinition - ArtistPhilip Glass - ComposerPhilip Glass - AlbumNaqoyqatsi - GenreSoundtrack - KindAAC audio file - Size4175868 - Total Time170200 - Disc Number1 - Disc Count1 - Track Number11 - Track Count11 - Year2002 - Date Modified2006-07-27T16:20:16Z - Date Added2009-10-03T14:57:54Z - Bit Rate192 - Sample Rate44100 - Normalization424 - Compilation - Artwork Count1 - Persistent ID4834E15A737B795F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Naqoyqatsi/11%20Definition.m4a - File Folder Count4 - Library Folder Count1 - - 5136 - - Track ID5136 - NameWater Poems - ArtistPt. Hari Prasad Chaurasia and others - ComposerHari Prasad Chaurasia - AlbumMusic of the Rivers - GenreWorld - KindAAC audio file - Size42094058 - Total Time1738940 - Disc Number1 - Disc Count1 - Track Number1 - Track Count3 - Year1993 - Date Modified2006-07-30T08:18:08Z - Date Added2009-10-03T14:57:55Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Compilation - Artwork Count1 - Persistent IDAB6C99C63A7A724B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Music%20of%20the%20Rivers/01%20Water%20Poems%201.m4a - File Folder Count4 - Library Folder Count1 - - 5138 - - Track ID5138 - NameSong of the River - ArtistPt. Hari Prasad Chaurasia and others - ComposerHari Prasad Chaurasia - AlbumMusic of the Rivers - GenreWorld - KindAAC audio file - Size23286402 - Total Time961745 - Disc Number1 - Disc Count1 - Track Number2 - Track Count3 - Year1993 - Date Modified2006-07-30T08:18:08Z - Date Added2009-10-03T14:57:55Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3349418689 - Play Date UTC2010-02-19T04:34:49Z - Normalization696 - Compilation - Artwork Count1 - Persistent IDEB9A74A2207FF8E8 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Music%20of%20the%20Rivers/02%20Song%20of%20the%20River%201.m4a - File Folder Count4 - Library Folder Count1 - - 5140 - - Track ID5140 - NameDelta - Journey to the Sea - ArtistPt. Hari Prasad Chaurasia and others - ComposerHari Prasad Chaurasia - AlbumMusic of the Rivers - GenreWorld - KindAAC audio file - Size19790369 - Total Time817271 - Disc Number1 - Disc Count1 - Track Number3 - Track Count3 - Year1993 - Date Modified2006-07-30T08:18:10Z - Date Added2009-10-03T14:57:55Z - Bit Rate192 - Sample Rate44100 - Normalization1215 - Compilation - Artwork Count1 - Persistent IDADADF5D23F45CC80 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Music%20of%20the%20Rivers/03%20Delta%20-%20Journey%20to%20the%20Sea%201.m4a - File Folder Count4 - Library Folder Count1 - - 5142 - - Track ID5142 - NameSandstorm - ArtistZakir Hussain - ComposerZakir Hussain - AlbumMusic of The Desserts - GenreWorld - KindAAC audio file - Size8189627 - Total Time337616 - Track Number1 - Track Count6 - Year1993 - Date Modified2006-07-28T15:05:54Z - Date Added2009-10-03T14:57:55Z - Bit Rate192 - Sample Rate44100 - Normalization561 - Compilation - Artwork Count1 - Persistent ID52F7DF669043BDC7 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Music%20of%20The%20Desserts/01%20Sandstorm.m4a - File Folder Count4 - Library Folder Count1 - - 5144 - - Track ID5144 - NameThe Great Indian Dessert - ArtistZakir Hussain - ComposerZakir Hussain - AlbumMusic of The Desserts - GenreWorld - KindAAC audio file - Size17501583 - Total Time722417 - Track Number2 - Track Count6 - Year1993 - Date Modified2006-07-28T15:05:56Z - Date Added2009-10-03T14:57:56Z - Bit Rate192 - Sample Rate44100 - Normalization579 - Compilation - Artwork Count1 - Sort NameGreat Indian Dessert - Persistent IDE8A18A82D7DB4302 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Music%20of%20The%20Desserts/02%20The%20Great%20Indian%20Dessert.m4a - File Folder Count4 - Library Folder Count1 - - 5146 - - Track ID5146 - NameLadakh, The Ice Desert - ArtistZakir Hussain - ComposerZakir Hussain - AlbumMusic of The Desserts - GenreWorld - KindAAC audio file - Size15594708 - Total Time643632 - Track Number3 - Track Count6 - Year1993 - Date Modified2006-07-28T15:05:56Z - Date Added2009-10-03T14:57:56Z - Bit Rate192 - Sample Rate44100 - Normalization610 - Compilation - Artwork Count1 - Persistent IDF31EAAF1E125B6CC - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Music%20of%20The%20Desserts/03%20Ladakh,%20The%20Ice%20Desert.m4a - File Folder Count4 - Library Folder Count1 - - 5148 - - Track ID5148 - NameDesert Heartbeat - ArtistZakir Hussain - ComposerZakir Hussain - AlbumMusic of The Desserts - GenreWorld - KindAAC audio file - Size15634351 - Total Time645257 - Track Number4 - Track Count6 - Year1993 - Date Modified2006-07-28T15:05:56Z - Date Added2009-10-03T14:57:56Z - Bit Rate192 - Sample Rate44100 - Normalization678 - Compilation - Artwork Count1 - Persistent IDC1064B63865F68EF - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Music%20of%20The%20Desserts/04%20Desert%20Heartbeat.m4a - File Folder Count4 - Library Folder Count1 - - 5150 - - Track ID5150 - NameWhere Desert Meet - ArtistZakir Hussain - ComposerZakir Hussain - AlbumMusic of The Desserts - GenreWorld - KindAAC audio file - Size14384757 - Total Time593616 - Track Number5 - Track Count6 - Year1993 - Date Modified2006-07-28T15:05:58Z - Date Added2009-10-03T14:57:56Z - Bit Rate192 - Sample Rate44100 - Normalization876 - Compilation - Artwork Count1 - Persistent ID7CB22F49F01459D5 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Music%20of%20The%20Desserts/05%20Where%20Desert%20Meet.m4a - File Folder Count4 - Library Folder Count1 - - 5152 - - Track ID5152 - NameNomads - ArtistZakir Hussain - ComposerZakir Hussain - AlbumMusic of The Desserts - GenreWorld - KindAAC audio file - Size13390716 - Total Time552540 - Track Number6 - Track Count6 - Year1993 - Date Modified2006-07-28T15:05:58Z - Date Added2009-10-03T14:57:56Z - Bit Rate192 - Sample Rate44100 - Normalization893 - Compilation - Artwork Count1 - Persistent ID32127306D62BAEB0 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Music%20of%20The%20Desserts/06%20Nomads.m4a - File Folder Count4 - Library Folder Count1 - - 5154 - - Track ID5154 - NameWhat Silence Said - ArtistSusheela Raman - AlbumMusic For Crocodiles - GenreWorld - KindAAC audio file - Size6784515 - Total Time280983 - Track Number1 - Track Count13 - Year2005 - Date Modified2006-08-07T09:55:14Z - Date Added2009-10-03T14:57:56Z - Bit Rate192 - Sample Rate44100 - Play Count3 - Play Date3441562150 - Play Date UTC2013-01-20T15:59:10Z - Skip Count1 - Skip Date2014-05-28T15:51:08Z - Normalization1244 - Compilation - Artwork Count1 - Persistent ID268362DDAF5C2F6F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Music%20For%20Crocodiles/01%20What%20Silence%20Said.m4a - File Folder Count4 - Library Folder Count1 - - 5156 - - Track ID5156 - NameMusic For Crocodiles - ArtistSusheela Raman - AlbumMusic For Crocodiles - GenreWorld - KindAAC audio file - Size7263665 - Total Time299977 - Track Number2 - Track Count13 - Year2005 - Date Modified2006-08-07T09:55:14Z - Date Added2009-10-03T14:57:57Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3424522742 - Play Date UTC2012-07-07T10:49:02Z - Normalization1299 - Compilation - Artwork Count1 - Persistent ID428D83A4763E1377 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Music%20For%20Crocodiles/02%20Music%20For%20Crocodiles.m4a - File Folder Count4 - Library Folder Count1 - - 5158 - - Track ID5158 - NameLight Years Intro - ArtistSusheela Raman - AlbumMusic For Crocodiles - GenreWorld - KindAAC audio file - Size2473260 - Total Time100796 - Track Number3 - Track Count13 - Year2005 - Date Modified2006-08-07T09:55:14Z - Date Added2009-10-03T14:57:57Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3424522843 - Play Date UTC2012-07-07T10:50:43Z - Normalization543 - Compilation - Artwork Count1 - Persistent IDCD7A03226BC79769 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Music%20For%20Crocodiles/03%20Light%20Years%20Intro.m4a - File Folder Count4 - Library Folder Count1 - - 5160 - - Track ID5160 - NameLight Years - ArtistSusheela Raman - AlbumMusic For Crocodiles - GenreWorld - KindAAC audio file - Size8670568 - Total Time357748 - Track Number4 - Track Count13 - Year2005 - Date Modified2006-08-07T09:55:14Z - Date Added2009-10-03T14:57:57Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3424523201 - Play Date UTC2012-07-07T10:56:41Z - Normalization1259 - Compilation - Artwork Count1 - Persistent ID7EFA7FD30D0F2680 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Music%20For%20Crocodiles/04%20Light%20Years.m4a - File Folder Count4 - Library Folder Count1 - - 5162 - - Track ID5162 - NameThe Same Song - ArtistSusheela Raman - AlbumMusic For Crocodiles - GenreWorld - KindAAC audio file - Size6041432 - Total Time249148 - Track Number5 - Track Count13 - Year2005 - Date Modified2006-08-07T09:55:12Z - Date Added2009-10-03T14:57:57Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3424523450 - Play Date UTC2012-07-07T11:00:50Z - Normalization1244 - Compilation - Artwork Count1 - Sort NameSame Song - Persistent ID6D9EE18D975C9227 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Music%20For%20Crocodiles/05%20The%20Same%20Song.m4a - File Folder Count4 - Library Folder Count1 - - 5164 - - Track ID5164 - NameIntro - ArtistSusheela Raman - AlbumMusic For Crocodiles - GenreWorld - KindAAC audio file - Size2373275 - Total Time96616 - Track Number6 - Track Count13 - Year2005 - Date Modified2006-08-07T09:55:12Z - Date Added2009-10-03T14:57:57Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3424523547 - Play Date UTC2012-07-07T11:02:27Z - Normalization254 - Compilation - Artwork Count1 - Persistent IDC8F0C5688B3E7BC0 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Music%20For%20Crocodiles/06%20Intro.m4a - File Folder Count4 - Library Folder Count1 - - 5166 - - Track ID5166 - NameMeanwhile - ArtistSusheela Raman - AlbumMusic For Crocodiles - GenreWorld - KindAAC audio file - Size5622381 - Total Time232430 - Track Number7 - Track Count13 - Year2005 - Date Modified2006-08-07T09:55:12Z - Date Added2009-10-03T14:57:57Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3424523779 - Play Date UTC2012-07-07T11:06:19Z - Normalization1244 - Compilation - Artwork Count1 - Persistent ID30F61BA41C1F98D6 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Music%20For%20Crocodiles/07%20Meanwhile.m4a - File Folder Count4 - Library Folder Count1 - - 5168 - - Track ID5168 - NameChordhiya - ArtistSusheela Raman - AlbumMusic For Crocodiles - GenreWorld - KindAAC audio file - Size8189375 - Total Time337872 - Track Number8 - Track Count13 - Year2005 - Date Modified2006-08-07T09:55:12Z - Date Added2009-10-03T14:57:57Z - Bit Rate192 - Sample Rate44100 - Normalization1420 - Compilation - Artwork Count1 - Persistent IDBC25E5F0C4E2CF87 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Music%20For%20Crocodiles/08%20Chordhiya.m4a - File Folder Count4 - Library Folder Count1 - - 5170 - - Track ID5170 - NameIdi Samayam - ArtistSusheela Raman - AlbumMusic For Crocodiles - GenreWorld - KindAAC audio file - Size8068233 - Total Time332856 - Track Number9 - Track Count13 - Year2005 - Date Modified2006-08-07T09:55:12Z - Date Added2009-10-03T14:57:58Z - Bit Rate192 - Sample Rate44100 - Normalization1231 - Compilation - Artwork Count1 - Persistent IDE72B722E95A58A58 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Music%20For%20Crocodiles/09%20Idi%20Samayam.m4a - File Folder Count4 - Library Folder Count1 - - 5172 - - Track ID5172 - NameL'ame Volatile - ArtistSusheela Raman - AlbumMusic For Crocodiles - GenreWorld - KindAAC audio file - Size5242362 - Total Time216083 - Track Number10 - Track Count13 - Year2005 - Date Modified2006-08-07T09:55:12Z - Date Added2009-10-03T14:57:58Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3484157084 - Play Date UTC2014-05-28T15:54:44Z - Normalization1259 - Compilation - Artwork Count1 - Persistent IDC920E073626B1A99 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Music%20For%20Crocodiles/10%20L'ame%20Volatile.m4a - File Folder Count4 - Library Folder Count1 - - 5174 - - Track ID5174 - NameIntro - ArtistSusheela Raman - AlbumMusic For Crocodiles - GenreWorld - KindAAC audio file - Size2591553 - Total Time105719 - Track Number11 - Track Count13 - Year2005 - Date Modified2006-08-07T09:55:12Z - Date Added2009-10-03T14:57:58Z - Bit Rate192 - Sample Rate44100 - Normalization1148 - Compilation - Artwork Count1 - Persistent IDBDF0294676AFF8F1 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Music%20For%20Crocodiles/11%20Intro.m4a - File Folder Count4 - Library Folder Count1 - - 5176 - - Track ID5176 - NameSharavana - ArtistSusheela Raman - AlbumMusic For Crocodiles - GenreWorld - KindAAC audio file - Size8920276 - Total Time368081 - Track Number12 - Track Count13 - Year2005 - Date Modified2006-08-07T09:55:12Z - Date Added2009-10-03T14:57:58Z - Bit Rate192 - Sample Rate44100 - Normalization1149 - Compilation - Artwork Count1 - Persistent ID4B00A657F97D7C4A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Music%20For%20Crocodiles/12%20Sharavana.m4a - File Folder Count4 - Library Folder Count1 - - 5178 - - Track ID5178 - NameLeela - ArtistSusheela Raman - AlbumMusic For Crocodiles - GenreWorld - KindAAC audio file - Size5517932 - Total Time229202 - Track Number13 - Track Count13 - Year2005 - Date Modified2006-08-07T09:55:12Z - Date Added2009-10-03T14:57:58Z - Bit Rate192 - Sample Rate44100 - Normalization1248 - Compilation - Artwork Count1 - Persistent ID3BB35D00AD68044F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Music%20For%20Crocodiles/13%20Leela.m4a - File Folder Count4 - Library Folder Count1 - - 5180 - - Track ID5180 - NameIn Dinon - ArtistSoham - ComposerPritam - AlbumMetro - GenreSoundtrack - KindAAC audio file - Size9477156 - Total Time401160 - Disc Number1 - Disc Count1 - Track Number1 - Track Count12 - Year2007 - Date Modified2008-09-28T07:57:08Z - Date Added2009-10-03T14:58:00Z - Bit Rate186 - Sample Rate44100 - Play Count2 - Play Date3453390996 - Play Date UTC2013-06-06T13:46:36Z - Normalization4153 - Compilation - Artwork Count1 - Persistent IDB31AC7866BBB4D84 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Metro/01%20In%20Dinon.m4a - File Folder Count4 - Library Folder Count1 - - 5182 - - Track ID5182 - NameAlvida - ArtistFeat, KK - ComposerPritam - AlbumMetro - GenreSoundtrack - KindAAC audio file - Size8356703 - Total Time340746 - Disc Number1 - Disc Count1 - Track Number2 - Track Count12 - Year2007 - Date Modified2008-09-28T07:57:07Z - Date Added2009-10-03T14:58:00Z - Bit Rate193 - Sample Rate44100 - Skip Count1 - Skip Date2013-07-06T11:17:24Z - Normalization6743 - Compilation - Artwork Count1 - Persistent IDB4C576A4D46EE559 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Metro/02%20Alvida.m4a - File Folder Count4 - Library Folder Count1 - - 5184 - - Track ID5184 - NameO Meri Jaan - ArtistFeat, KK - ComposerPritam - AlbumMetro - GenreSoundtrack - KindAAC audio file - Size7531492 - Total Time305960 - Disc Number1 - Disc Count1 - Track Number3 - Track Count12 - Year2007 - Date Modified2008-09-28T07:57:07Z - Date Added2009-10-03T14:58:01Z - Bit Rate194 - Sample Rate44100 - Normalization6994 - Compilation - Artwork Count1 - Persistent IDA4BA47F10B96E583 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Metro/03%20O%20Meri%20Jaan.m4a - File Folder Count4 - Library Folder Count1 - - 5186 - - Track ID5186 - NameRishte - ArtistJames - ComposerPritam - AlbumMetro - GenreSoundtrack - KindAAC audio file - Size10719327 - Total Time443040 - Disc Number1 - Disc Count1 - Track Number4 - Track Count12 - Year2007 - Date Modified2008-09-28T07:57:06Z - Date Added2009-10-03T14:58:01Z - Bit Rate191 - Sample Rate44100 - Skip Count1 - Skip Date2013-07-07T08:50:47Z - Normalization6003 - Compilation - Artwork Count1 - Persistent IDCAFABD4C998B3EBB - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Metro/04%20Rishte.m4a - File Folder Count4 - Library Folder Count1 - - 5188 - - Track ID5188 - NameBaatein Kuchh Ankahee Si (Unplugged) - ArtistSuhail - ComposerPritam - AlbumMetro - GenreSoundtrack - KindAAC audio file - Size6159044 - Total Time261560 - Disc Number1 - Disc Count1 - Track Number5 - Track Count12 - Year2007 - Date Modified2008-09-28T07:57:06Z - Date Added2009-10-03T14:58:01Z - Bit Rate185 - Sample Rate44100 - Normalization2386 - Compilation - Artwork Count1 - Persistent IDA280DC29BB296754 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Metro/05%20Baatein%20Kuchh%20Ankahee%20Si%20(Unplugged).m4a - File Folder Count4 - Library Folder Count1 - - 5190 - - Track ID5190 - NameKar Salaam - ArtistPritam, Suhail & Soham - ComposerPritam - AlbumMetro - GenreSoundtrack - KindAAC audio file - Size5835386 - Total Time238360 - Disc Number1 - Disc Count1 - Track Number6 - Track Count12 - Year2007 - Date Modified2008-09-28T07:57:05Z - Date Added2009-10-03T14:58:01Z - Bit Rate193 - Sample Rate44100 - Normalization10377 - Compilation - Artwork Count1 - Persistent ID3556D14B2CBD17C1 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Metro/06%20Kar%20Salaam.m4a - File Folder Count4 - Library Folder Count1 - - 5192 - - Track ID5192 - NameAlvida Reprise - ArtistJames - ComposerPritam - AlbumMetro - GenreSoundtrack - KindAAC audio file - Size8578311 - Total Time349760 - Disc Number1 - Disc Count1 - Track Number7 - Track Count12 - Year2007 - Date Modified2008-09-28T07:57:05Z - Date Added2009-10-03T14:58:01Z - Bit Rate193 - Sample Rate44100 - Skip Count1 - Skip Date2013-07-07T08:53:33Z - Normalization6873 - Compilation - Artwork Count1 - Persistent IDA0EC274F00BA7A81 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Metro/07%20Alvida%20Reprise.m4a - File Folder Count4 - Library Folder Count1 - - 5194 - - Track ID5194 - NameBaatein Kuchh Ankahee Si - ArtistFeat. Adnan Sami - ComposerPritam - AlbumMetro - GenreSoundtrack - KindAAC audio file - Size6693252 - Total Time277973 - Disc Number1 - Disc Count1 - Track Number8 - Track Count12 - Year2007 - Date Modified2008-09-28T07:57:05Z - Date Added2009-10-03T14:58:01Z - Bit Rate190 - Sample Rate44100 - Normalization3786 - Compilation - Artwork Count1 - Persistent ID3E18F32B8F5759E0 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Metro/08%20Baatein%20Kuchh%20Ankahee%20Si.m4a - File Folder Count4 - Library Folder Count1 - - 5196 - - Track ID5196 - NameO Meri Jaan Reprise - ArtistSuhail - ComposerPritam - AlbumMetro - GenreSoundtrack - KindAAC audio file - Size7469297 - Total Time304960 - Disc Number1 - Disc Count1 - Track Number9 - Track Count12 - Year2007 - Date Modified2008-09-28T07:57:04Z - Date Added2009-10-03T14:58:01Z - Bit Rate193 - Sample Rate44100 - Normalization6962 - Compilation - Artwork Count1 - Persistent IDEDC1B9F0F1866639 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Metro/09%20O%20Meri%20Jaan%20Reprise.m4a - File Folder Count4 - Library Folder Count1 - - 5198 - - Track ID5198 - NameRishte Revisited (Remix) - ArtistDJ Nikhil, DJ Naved - ComposerPritam - AlbumMetro - GenreSoundtrack - KindAAC audio file - Size9391635 - Total Time387680 - Disc Number1 - Disc Count1 - Track Number10 - Track Count12 - Year2007 - Date Modified2008-09-28T07:57:04Z - Date Added2009-10-03T14:58:01Z - Bit Rate191 - Sample Rate44100 - Normalization1614 - Compilation - Artwork Count1 - Persistent ID2832E91A6BFE0DD9 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Metro/10%20Rishte%20Revisited%20(Remix).m4a - File Folder Count4 - Library Folder Count1 - - 5200 - - Track ID5200 - NameBaatein Kuchh Ankahee Si Revisited (Remix) - ArtistDJ A-Myth - ComposerPritam - AlbumMetro - GenreSoundtrack - KindAAC audio file - Size6211572 - Total Time259346 - Disc Number1 - Disc Count1 - Track Number11 - Track Count12 - Year2007 - Date Modified2008-09-28T07:57:03Z - Date Added2009-10-03T14:58:02Z - Bit Rate189 - Sample Rate44100 - Normalization4707 - Compilation - Artwork Count1 - Persistent IDC00AE19B3AE74008 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Metro/11%20Baatein%20Kuchh%20Ankahee%20Si%20Revisited%20(Remix).m4a - File Folder Count4 - Library Folder Count1 - - 5202 - - Track ID5202 - NameIn Dinon Revisited (Remix) - ArtistBunty Rajput - ComposerPritam - AlbumMetro - GenreSoundtrack - KindAAC audio file - Size7736217 - Total Time319093 - Disc Number1 - Disc Count1 - Track Number12 - Track Count12 - Year2007 - Date Modified2008-09-28T07:57:03Z - Date Added2009-10-03T14:58:02Z - Bit Rate191 - Sample Rate44100 - Normalization4908 - Compilation - Artwork Count1 - Persistent ID67FC7BF1A38380FA - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Metro/12%20In%20Dinon%20Revisited%20(Remix).m4a - File Folder Count4 - Library Folder Count1 - - 5204 - - Track ID5204 - NameOne - ArtistAimee Mann - ComposerHarry Nilsson - AlbumMagnolia - GenreFolk - KindAAC audio file - Size4243287 - Total Time173405 - Disc Number1 - Disc Count1 - Track Number1 - Track Count13 - Year1999 - Date Modified2006-07-29T04:20:54Z - Date Added2009-10-03T14:58:02Z - Bit Rate192 - Sample Rate44100 - Play Count9 - Play Date3484228817 - Play Date UTC2014-05-29T11:50:17Z - Skip Count1 - Skip Date2013-01-22T16:38:41Z - Normalization1230 - Compilation - Artwork Count1 - Persistent IDC67CE95D2B5D7B92 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Magnolia/01%20One.m4a - File Folder Count4 - Library Folder Count1 - - 5206 - - Track ID5206 - NameMomentum - ArtistAimee Mann - ComposerAimee Mann - AlbumMagnolia - GenreFolk - KindAAC audio file - Size5069996 - Total Time207817 - Disc Number1 - Disc Count1 - Track Number2 - Track Count13 - Year1999 - Date Modified2006-07-29T04:20:54Z - Date Added2009-10-03T14:58:02Z - Bit Rate192 - Sample Rate44100 - Skip Count1 - Skip Date2013-01-22T16:48:54Z - Normalization2628 - Compilation - Artwork Count1 - Persistent ID7AFDFE5C66BC16F5 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Magnolia/02%20Momentum.m4a - File Folder Count4 - Library Folder Count1 - - 5208 - - Track ID5208 - NameBuild That Wall - ArtistAimee Mann - ComposerAimee Mann/Jon Brion - AlbumMagnolia - GenreFolk - KindAAC audio file - Size6430502 - Total Time265286 - Disc Number1 - Disc Count1 - Track Number3 - Track Count13 - Year1999 - Date Modified2006-07-29T04:20:54Z - Date Added2009-10-03T14:58:02Z - Bit Rate192 - Sample Rate44100 - Normalization1512 - Compilation - Artwork Count1 - Persistent ID38EC82DD54D3DB3C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Magnolia/03%20Build%20That%20Wall.m4a - File Folder Count4 - Library Folder Count1 - - 5210 - - Track ID5210 - NameDeathly - ArtistAimee Mann - ComposerAimee Mann - AlbumMagnolia - GenreFolk - KindAAC audio file - Size7984739 - Total Time328677 - Disc Number1 - Disc Count1 - Track Number4 - Track Count13 - Year1999 - Date Modified2006-07-29T04:20:54Z - Date Added2009-10-03T14:58:02Z - Bit Rate192 - Sample Rate44100 - Normalization2123 - Compilation - Artwork Count1 - Persistent IDCBEFB0104BFC4800 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Magnolia/04%20Deathly.m4a - File Folder Count4 - Library Folder Count1 - - 5212 - - Track ID5212 - NameDriving Sideways - ArtistAimee Mann - ComposerAimee Mann/Michael Lockwood - AlbumMagnolia - GenreFolk - KindAAC audio file - Size5517944 - Total Time227136 - Disc Number1 - Disc Count1 - Track Number5 - Track Count13 - Year1999 - Date Modified2006-07-29T04:20:54Z - Date Added2009-10-03T14:58:02Z - Bit Rate192 - Sample Rate44100 - Normalization2944 - Compilation - Artwork Count1 - Persistent ID58393C0D07DE4DC6 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Magnolia/05%20Driving%20Sideways.m4a - File Folder Count4 - Library Folder Count1 - - 5214 - - Track ID5214 - NameYou Do - ArtistAimee Mann - ComposerAimee Mann - AlbumMagnolia - GenreFolk - KindAAC audio file - Size5406815 - Total Time221841 - Disc Number1 - Disc Count1 - Track Number6 - Track Count13 - Year1999 - Date Modified2006-07-29T04:20:54Z - Date Added2009-10-03T14:58:03Z - Bit Rate192 - Sample Rate44100 - Normalization927 - Compilation - Artwork Count1 - Persistent ID71931E93C44BD3FB - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Magnolia/06%20You%20Do.m4a - File Folder Count4 - Library Folder Count1 - - 5216 - - Track ID5216 - NameNothing Is Good Enough (Instrumental) - ArtistAimee Mann - ComposerAimee Mann - AlbumMagnolia - GenreFolk - KindAAC audio file - Size4626908 - Total Time190309 - Disc Number1 - Disc Count1 - Track Number7 - Track Count13 - Year1999 - Date Modified2006-07-29T04:20:54Z - Date Added2009-10-03T14:58:03Z - Bit Rate192 - Sample Rate44100 - Normalization1222 - Compilation - Artwork Count1 - Persistent IDA5317A428DB466D3 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Magnolia/07%20Nothing%20Is%20Good%20Enough%20(Instrumental).m4a - File Folder Count4 - Library Folder Count1 - - 5218 - - Track ID5218 - NameWise Up - ArtistAimee Mann - ComposerAimee Mann - AlbumMagnolia - GenreFolk - KindAAC audio file - Size5148304 - Total Time211718 - Disc Number1 - Disc Count1 - Track Number8 - Track Count13 - Year1999 - Date Modified2006-07-29T04:20:56Z - Date Added2009-10-03T14:58:03Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3389632354 - Play Date UTC2011-05-30T15:02:34Z - Normalization906 - Compilation - Artwork Count1 - Persistent ID85734C252F311C2C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Magnolia/08%20Wise%20Up.m4a - File Folder Count4 - Library Folder Count1 - - 5220 - - Track ID5220 - NameSave Me - ArtistAimee Mann - ComposerAimee Mann - AlbumMagnolia - GenreFolk - KindAAC audio file - Size6660443 - Total Time275108 - Disc Number1 - Disc Count1 - Track Number9 - Track Count13 - Year1999 - Date Modified2006-07-29T04:20:56Z - Date Added2009-10-03T14:58:03Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3431279836 - Play Date UTC2012-09-23T15:47:16Z - Normalization913 - Compilation - Artwork Count1 - Persistent ID404024ADFF301EE6 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Magnolia/09%20Save%20Me.m4a - File Folder Count4 - Library Folder Count1 - - 5222 - - Track ID5222 - NameGoodbye Stranger - ArtistSupertramp - ComposerRichard Davies/Roger Hudgson - AlbumMagnolia - GenreFolk - KindAAC audio file - Size8502486 - Total Time350457 - Disc Number1 - Disc Count1 - Track Number10 - Track Count13 - Year1979 - Date Modified2006-07-29T04:20:56Z - Date Added2009-10-03T14:58:03Z - Bit Rate192 - Sample Rate44100 - Normalization2237 - Compilation - Artwork Count1 - Persistent ID719964CA43EF24CC - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Magnolia/10%20Goodbye%20Stranger.m4a - File Folder Count4 - Library Folder Count1 - - 5224 - - Track ID5224 - NameLogical Song - ArtistSupertramp - ComposerRichard Davies/Roger Hudgson - AlbumMagnolia - GenreFolk - KindAAC audio file - Size6022997 - Total Time247500 - Disc Number1 - Disc Count1 - Track Number11 - Track Count13 - Year1979 - Date Modified2006-07-29T04:20:56Z - Date Added2009-10-03T14:58:03Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3431280162 - Play Date UTC2012-09-23T15:52:42Z - Normalization2597 - Compilation - Artwork Count1 - Persistent ID9A4BE85C3D978899 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Magnolia/11%20Logical%20Song.m4a - File Folder Count4 - Library Folder Count1 - - 5226 - - Track ID5226 - NameDreams - ArtistGabrielle - ComposerLouisa Gabrielle Bobb/Timothy Charles Laws - AlbumMagnolia - GenreFolk - KindAAC audio file - Size5402469 - Total Time223676 - Disc Number1 - Disc Count1 - Track Number12 - Track Count13 - Year1999 - Date Modified2006-07-29T04:20:56Z - Date Added2009-10-03T14:58:03Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3431280386 - Play Date UTC2012-09-23T15:56:26Z - Normalization1601 - Compilation - Artwork Count1 - Persistent ID31F0E17F1AAC9F61 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Magnolia/12%20Dreams.m4a - File Folder Count4 - Library Folder Count1 - - 5228 - - Track ID5228 - NameMagnolia - ArtistJon Brion - ComposerJon Brion - AlbumMagnolia - GenreFolk - KindAAC audio file - Size3266631 - Total Time132747 - Disc Number1 - Disc Count1 - Track Number13 - Track Count13 - Year1999 - Date Modified2006-07-29T04:20:56Z - Date Added2009-10-03T14:58:03Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3431280519 - Play Date UTC2012-09-23T15:58:39Z - Skip Count1 - Skip Date2013-01-22T16:38:37Z - Normalization813 - Compilation - Artwork Count1 - Persistent ID7D7862D1F7DFE9B6 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Magnolia/13%20Magnolia.m4a - File Folder Count4 - Library Folder Count1 - - 5230 - - Track ID5230 - NameMauja Hi Mauja - ArtistMika Singh - ComposerPritam - AlbumJab We Met - GenreSoundtrack - KindAAC audio file - Size6093176 - Total Time247093 - Disc Number1 - Disc Count1 - Track Number1 - Track Count10 - Year2007 - Date Modified2008-09-28T07:56:52Z - Date Added2009-10-03T14:58:05Z - Bit Rate194 - Sample Rate44100 - Normalization4277 - Compilation - Artwork Count1 - Persistent IDE79C6E629B377D62 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Jab%20We%20Met/01%20Mauja%20Hi%20Mauja.m4a - File Folder Count4 - Library Folder Count1 - - 5232 - - Track ID5232 - NameTum Se Hi - ArtistMohit Chauhan - ComposerPritam - AlbumJab We Met - GenreSoundtrack - KindAAC audio file - Size7814875 - Total Time323213 - Disc Number1 - Disc Count1 - Track Number2 - Track Count10 - Year2007 - Date Modified2008-09-28T07:56:51Z - Date Added2009-10-03T14:58:05Z - Bit Rate190 - Sample Rate44100 - Normalization2891 - Compilation - Artwork Count1 - Persistent ID346F6E93C5653141 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Jab%20We%20Met/02%20Tum%20Se%20Hi.m4a - File Folder Count4 - Library Folder Count1 - - 5234 - - Track ID5234 - NameYe Ishq Hai - ArtistShreya Ghoshal - ComposerPritam - AlbumJab We Met - GenreSoundtrack - KindAAC audio file - Size6954356 - Total Time282973 - Disc Number1 - Disc Count1 - Track Number3 - Track Count10 - Year2007 - Date Modified2008-09-28T07:56:51Z - Date Added2009-10-03T14:58:05Z - Bit Rate193 - Sample Rate44100 - Normalization3095 - Compilation - Artwork Count1 - Persistent ID7B84B970CC8812BE - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Jab%20We%20Met/03%20Ye%20Ishq%20Hai.m4a - File Folder Count4 - Library Folder Count1 - - 5236 - - Track ID5236 - NameNagada Nagada - ArtistSonu Nigam And Javed Ali - ComposerPritam - AlbumJab We Met - GenreSoundtrack - KindAAC audio file - Size5559024 - Total Time230466 - Disc Number1 - Disc Count1 - Track Number4 - Track Count10 - Year2007 - Date Modified2008-09-28T07:56:50Z - Date Added2009-10-03T14:58:05Z - Bit Rate189 - Sample Rate44100 - Normalization6913 - Compilation - Artwork Count1 - Persistent ID3663E641112D2461 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Jab%20We%20Met/04%20Nagada%20Nagada.m4a - File Folder Count4 - Library Folder Count1 - - 5238 - - Track ID5238 - NameAao Milo Chalo - ArtistShaan And Ustad Sultan Khan - ComposerPritam - AlbumJab We Met - GenreSoundtrack - KindAAC audio file - Size8073476 - Total Time327933 - Disc Number1 - Disc Count1 - Track Number5 - Track Count10 - Year2007 - Date Modified2008-09-28T07:56:50Z - Date Added2009-10-03T14:58:05Z - Bit Rate194 - Sample Rate44100 - Normalization4351 - Compilation - Artwork Count1 - Persistent ID09FC7EBCA6D6DC4E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Jab%20We%20Met/05%20Aao%20Milo%20Chalo.m4a - File Folder Count4 - Library Folder Count1 - - 5240 - - Track ID5240 - NameAaoge Jab Tum - ArtistUstad Rashid Khan - ComposerPritam - AlbumJab We Met - GenreSoundtrack - KindAAC audio file - Size8721033 - Total Time357053 - Disc Number1 - Disc Count1 - Track Number6 - Track Count10 - Year2007 - Date Modified2008-09-28T07:56:49Z - Date Added2009-10-03T14:58:05Z - Bit Rate192 - Sample Rate44100 - Normalization1825 - Compilation - Artwork Count1 - Persistent ID6F20E77E637811EB - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Jab%20We%20Met/06%20Aaoge%20Jab%20Tum.m4a - File Folder Count4 - Library Folder Count1 - - 5242 - - Track ID5242 - NameTum Se Hi (Remix) - ArtistDJ Sunil S - ComposerPritam - AlbumJab We Met - GenreSoundtrack - KindAAC audio file - Size6468174 - Total Time264906 - Disc Number1 - Disc Count1 - Track Number7 - Track Count10 - Year2007 - Date Modified2008-09-28T07:56:48Z - Date Added2009-10-03T14:58:05Z - Bit Rate192 - Sample Rate44100 - Normalization3558 - Compilation - Artwork Count1 - Persistent ID905E7D990E0B3D6E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Jab%20We%20Met/07%20Tum%20Se%20Hi%20(Remix).m4a - File Folder Count4 - Library Folder Count1 - - 5244 - - Track ID5244 - NameYe Ishq Hai (Remix) - ArtistDJ Amyth - ComposerPritam - AlbumJab We Met - GenreSoundtrack - KindAAC audio file - Size6184110 - Total Time260360 - Disc Number1 - Disc Count1 - Track Number8 - Track Count10 - Year2007 - Date Modified2008-09-28T07:56:48Z - Date Added2009-10-03T14:58:06Z - Bit Rate187 - Sample Rate44100 - Normalization4861 - Compilation - Artwork Count1 - Persistent IDA06F2A50F4291F50 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Jab%20We%20Met/08%20Ye%20Ishq%20Hai%20(Remix).m4a - File Folder Count4 - Library Folder Count1 - - 5246 - - Track ID5246 - NameMauja Hi Mauja (Remix) - ArtistBunty Rajput - ComposerPritam - AlbumJab We Met - GenreSoundtrack - KindAAC audio file - Size6590313 - Total Time270226 - Disc Number1 - Disc Count1 - Track Number9 - Track Count10 - Year2007 - Date Modified2008-09-28T07:56:48Z - Date Added2009-10-03T14:58:06Z - Bit Rate192 - Sample Rate44100 - Normalization3500 - Compilation - Artwork Count1 - Persistent ID1D5FB014D7C7EC09 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Jab%20We%20Met/09%20Mauja%20Hi%20Mauja%20(Remix).m4a - File Folder Count4 - Library Folder Count1 - - 5248 - - Track ID5248 - NameTum Se Hi (Instrumental) - ArtistPritam - ComposerPritam - AlbumJab We Met - GenreSoundtrack - KindAAC audio file - Size7226270 - Total Time294053 - Disc Number1 - Disc Count1 - Track Number10 - Track Count10 - Year2007 - Date Modified2008-09-28T07:56:47Z - Date Added2009-10-03T14:58:06Z - Bit Rate193 - Sample Rate44100 - Normalization2387 - Compilation - Artwork Count1 - Persistent IDD801B057C1BA0054 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Jab%20We%20Met/10%20Tum%20Se%20Hi%20(Instrumental).m4a - File Folder Count4 - Library Folder Count1 - - 5250 - - Track ID5250 - NameKabhi Kabhi Aditi - ArtistRashid Ali - ComposerA R Rahman - AlbumJaane Tu...Ya Jaane Na - GenreWorld - KindAAC audio file - Size5936488 - Total Time220773 - Disc Number1 - Disc Count1 - Track Number1 - Track Count8 - Year2008 - Date Modified2008-09-30T15:27:28Z - Date Added2009-10-03T14:58:06Z - Bit Rate191 - Sample Rate44100 - Normalization3393 - Compilation - Artwork Count1 - Sort ComposerR Rahman - Persistent ID6379A0691A2A6F1C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Jaane%20Tu...Ya%20Jaane%20Na/01%20Kabhi%20Kabhi%20Aditi.m4a - File Folder Count4 - Library Folder Count1 - - 5252 - - Track ID5252 - NamePappu Can't Dance! - ArtistBenny Dayal, Naresh Iyer, Satish Chakravarthy, Aslam, Blaze, Tanvi & Bhargavi - ComposerA R Rahman - AlbumJaane Tu...Ya Jaane Na - GenreWorld - KindAAC audio file - Size6942781 - Total Time267026 - Disc Number1 - Disc Count1 - Track Number2 - Track Count8 - Year2008 - Date Modified2008-09-30T15:27:27Z - Date Added2009-10-03T14:58:06Z - Bit Rate188 - Sample Rate44100 - Normalization3197 - Compilation - Artwork Count1 - Sort ComposerR Rahman - Persistent ID94268CBE9E0B46D0 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Jaane%20Tu...Ya%20Jaane%20Na/02%20Pappu%20Can't%20Dance!.m4a - File Folder Count4 - Library Folder Count1 - - 5254 - - Track ID5254 - NameJaane Tu Mera Kya Hai (Female) - ArtistRuna - ComposerA R Rahman - AlbumJaane Tu...Ya Jaane Na - GenreWorld - KindAAC audio file - Size5852399 - Total Time220533 - Disc Number1 - Disc Count1 - Track Number3 - Track Count8 - Year2008 - Date Modified2008-09-30T15:27:26Z - Date Added2009-10-03T14:58:07Z - Bit Rate188 - Sample Rate44100 - Normalization1951 - Compilation - Artwork Count1 - Sort ComposerR Rahman - Persistent IDF2A0436E4F4F31C3 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Jaane%20Tu...Ya%20Jaane%20Na/03%20Jaane%20Tu%20Mera%20Kya%20Hai%20(Female).m4a - File Folder Count4 - Library Folder Count1 - - 5256 - - Track ID5256 - NameNazrein Milaana, Nazrein Churana - ArtistBenny Dayal,Satish Chakavarthy,Sayonara,Darshana,Svetha,Bhargavi,Anupama - ComposerA R Rahman - AlbumJaane Tu...Ya Jaane Na - GenreWorld - KindAAC audio file - Size6391232 - Total Time236960 - Disc Number1 - Disc Count1 - Track Number4 - Track Count8 - Year2008 - Date Modified2008-09-30T15:27:26Z - Date Added2009-10-03T14:58:07Z - Bit Rate193 - Sample Rate44100 - Normalization3240 - Compilation - Artwork Count1 - Sort ComposerR Rahman - Persistent ID0A5A9A995B264786 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Jaane%20Tu...Ya%20Jaane%20Na/04%20Nazrein%20Milaana,%20Nazrein%20Churana.m4a - File Folder Count4 - Library Folder Count1 - - 5258 - - Track ID5258 - NameTu Bole... Main Boloon - ArtistA.R. Rahman - ComposerA R Rahman - AlbumJaane Tu...Ya Jaane Na - GenreWorld - KindAAC audio file - Size7314857 - Total Time275333 - Disc Number1 - Disc Count1 - Track Number5 - Track Count8 - Year2008 - Date Modified2008-09-30T15:27:25Z - Date Added2009-10-03T14:58:07Z - Bit Rate193 - Sample Rate44100 - Normalization2717 - Compilation - Artwork Count1 - Sort ComposerR Rahman - Persistent ID34A69E3D6A2126EA - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Jaane%20Tu...Ya%20Jaane%20Na/05%20Tu%20Bole...%20Main%20Boloon.m4a - File Folder Count4 - Library Folder Count1 - - 5260 - - Track ID5260 - NameKahin To... - ArtistRashid Ali,Vasundara Das - ComposerA R Rahman - AlbumJaane Tu...Ya Jaane Na - GenreWorld - KindAAC audio file - Size8014088 - Total Time305160 - Disc Number1 - Disc Count1 - Track Number6 - Track Count8 - Year2008 - Date Modified2008-09-30T15:27:25Z - Date Added2009-10-03T14:58:08Z - Bit Rate192 - Sample Rate44100 - Normalization2929 - Compilation - Artwork Count1 - Sort ComposerR Rahman - Persistent IDEC897368BBE4201C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Jaane%20Tu...Ya%20Jaane%20Na/06%20Kahin%20To....m4a - File Folder Count4 - Library Folder Count1 - - 5262 - - Track ID5262 - NameJaane Tu Meri Kya Hai (Male) - ArtistSukhwinder Singh - ComposerA R Rahman - AlbumJaane Tu...Ya Jaane Na - GenreWorld - KindAAC audio file - Size8857755 - Total Time344280 - Disc Number1 - Disc Count1 - Track Number7 - Track Count8 - Year2008 - Date Modified2008-09-30T15:27:24Z - Date Added2009-10-03T14:58:08Z - Bit Rate190 - Sample Rate44100 - Normalization2474 - Compilation - Artwork Count1 - Sort ComposerR Rahman - Persistent ID234956A8DFA3ADDF - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Jaane%20Tu...Ya%20Jaane%20Na/07%20Jaane%20Tu%20Meri%20Kya%20Hai%20(Male).m4a - File Folder Count4 - Library Folder Count1 - - 5264 - - Track ID5264 - NamePappu Can't Dance! (Remix) - ArtistRemixed By Krishna Chetan - ComposerA R Rahman - AlbumJaane Tu...Ya Jaane Na - GenreWorld - KindAAC audio file - Size5493400 - Total Time204186 - Disc Number1 - Disc Count1 - Track Number8 - Track Count8 - Year2008 - Date Modified2008-09-30T15:27:23Z - Date Added2009-10-03T14:58:08Z - Bit Rate189 - Sample Rate44100 - Normalization3142 - Compilation - Artwork Count1 - Sort ComposerR Rahman - Persistent IDB12A9B6251E3F990 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Jaane%20Tu...Ya%20Jaane%20Na/08%20Pappu%20Can't%20Dance!%20(Remix).m4a - File Folder Count4 - Library Folder Count1 - - 5266 - - Track ID5266 - NameVandeham (Raga: Hamsadhwani Tala: Kanda Chapu) - ArtistM.S. Subbulakshmi - ComposerAnnamacharya - AlbumImmortal Legends Vol. 3 - GenreCarnatic - KindAAC audio file - Size7516127 - Total Time313700 - Disc Number3 - Disc Count5 - Track Number1 - Track Count9 - Date Modified2007-12-19T07:35:45Z - Date Added2009-10-03T14:58:09Z - Bit Rate192 - Sample Rate44100 - CommentsRaga: Hamsadhwani Tala: Kanda Chapu - Normalization4190 - Compilation - Persistent ID0B26B11981B1CD10 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Immortal%20Legends%20Vol.%203/3-01%20Vandeham%20(Raga_%20Hamsadhwani%20Tala_%20Kanda%20Chapu).m4a - File Folder Count4 - Library Folder Count1 - - 5268 - - Track ID5268 - NameSarasakhsa - ArtistM.S. Subbulakshmi - AlbumImmortal Legends Vol. 3 - GenreCarnatic - KindAAC audio file - Size19615962 - Total Time813254 - Disc Number3 - Disc Count5 - Track Number2 - Track Count9 - Date Modified2007-12-17T11:12:27Z - Date Added2009-10-03T14:58:09Z - Bit Rate192 - Sample Rate44100 - Normalization4522 - Compilation - Persistent ID95687FA8CB49E12C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Immortal%20Legends%20Vol.%203/3-02%20Sarasakhsa.m4a - File Folder Count4 - Library Folder Count1 - - 5270 - - Track ID5270 - NameMurugua Muruga - ArtistM.S. Subbulakshmi - AlbumImmortal Legends Vol. 3 - GenreCarnatic - KindAAC audio file - Size7457490 - Total Time311006 - Disc Number3 - Disc Count5 - Track Number3 - Track Count9 - Date Modified2007-12-17T11:12:27Z - Date Added2009-10-03T14:58:09Z - Bit Rate192 - Sample Rate44100 - Normalization3785 - Compilation - Persistent IDAC356F229FC702A7 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Immortal%20Legends%20Vol.%203/3-03%20Murugua%20Muruga.m4a - File Folder Count4 - Library Folder Count1 - - 5272 - - Track ID5272 - NameRama Nannu Brovara - ArtistM.S. Subbulakshmi - AlbumImmortal Legends Vol. 3 - GenreCarnatic - KindAAC audio file - Size13017923 - Total Time540698 - Disc Number3 - Disc Count5 - Track Number4 - Track Count9 - Date Modified2007-12-17T11:12:27Z - Date Added2009-10-03T14:58:09Z - Bit Rate192 - Sample Rate44100 - Normalization2197 - Compilation - Persistent IDE53D8C105669574E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Immortal%20Legends%20Vol.%203/3-04%20Rama%20Nannu%20Brovara.m4a - File Folder Count4 - Library Folder Count1 - - 5274 - - Track ID5274 - NameKarthikeya - ArtistM.S. Subbulakshmi - AlbumImmortal Legends Vol. 3 - GenreCarnatic - KindAAC audio file - Size34366887 - Total Time1422499 - Disc Number3 - Disc Count5 - Track Number5 - Track Count9 - Date Modified2007-12-17T11:12:28Z - Date Added2009-10-03T14:58:09Z - Bit Rate192 - Sample Rate44100 - Normalization2028 - Compilation - Persistent IDBAD6D1ABAE3F7E6F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Immortal%20Legends%20Vol.%203/3-05%20Karthikeya.m4a - File Folder Count4 - Library Folder Count1 - - 5276 - - Track ID5276 - NameTavadasoham - ArtistM.S. Subbulakshmi - AlbumImmortal Legends Vol. 3 - GenreCarnatic - KindAAC audio file - Size5895858 - Total Time245874 - Disc Number3 - Disc Count5 - Track Number6 - Track Count9 - Date Modified2007-12-17T11:12:28Z - Date Added2009-10-03T14:58:09Z - Bit Rate192 - Sample Rate44100 - Normalization2703 - Compilation - Persistent IDFA3897EDB9F7F4D5 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Immortal%20Legends%20Vol.%203/3-06%20Tavadasoham.m4a - File Folder Count4 - Library Folder Count1 - - 5278 - - Track ID5278 - NameRamasimira - ArtistM.S. Subbulakshmi - AlbumImmortal Legends Vol. 3 - GenreCarnatic - KindAAC audio file - Size5304780 - Total Time221191 - Disc Number3 - Disc Count5 - Track Number7 - Track Count9 - Date Modified2007-12-17T11:12:28Z - Date Added2009-10-03T14:58:09Z - Bit Rate192 - Sample Rate44100 - Normalization2966 - Compilation - Persistent ID6173591F57036328 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Immortal%20Legends%20Vol.%203/3-07%20Ramasimira.m4a - File Folder Count4 - Library Folder Count1 - - 5280 - - Track ID5280 - NameBhare Panduranga - ArtistM.S. Subbulakshmi - AlbumImmortal Legends Vol. 3 - GenreCarnatic - KindAAC audio file - Size4796042 - Total Time200340 - Disc Number3 - Disc Count5 - Track Number8 - Track Count9 - Date Modified2007-12-17T11:12:28Z - Date Added2009-10-03T14:58:09Z - Bit Rate192 - Sample Rate44100 - Normalization3223 - Compilation - Persistent ID149C413D77CC331F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Immortal%20Legends%20Vol.%203/3-08%20Bhare%20Panduranga.m4a - File Folder Count4 - Library Folder Count1 - - 5282 - - Track ID5282 - NameMorey To Giridhar - ArtistM.S. Subbulakshmi - AlbumImmortal Legends Vol. 3 - GenreCarnatic - KindAAC audio file - Size6283466 - Total Time260990 - Disc Number3 - Disc Count5 - Track Number9 - Track Count9 - Date Modified2007-12-17T11:12:28Z - Date Added2009-10-03T14:58:10Z - Bit Rate192 - Sample Rate44100 - Normalization2086 - Compilation - Persistent IDFFABF10DA662047C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Immortal%20Legends%20Vol.%203/3-09%20Morey%20To%20Giridhar.m4a - File Folder Count4 - Library Folder Count1 - - 5284 - - Track ID5284 - NameViribhoni (Raga: Bhairavi Tala: Ata) - ArtistM.S. Subbulakshmi - ComposerPachaimiriam Adippaiah - AlbumImmortal Legends Vol. 1 - GenreCarnatic - KindAAC audio file - Size10671873 - Total Time444033 - Disc Number1 - Disc Count5 - Track Number1 - Track Count11 - Year2004 - Date Modified2007-12-17T10:59:16Z - Date Added2009-10-03T14:58:10Z - Bit Rate192 - Sample Rate44100 - CommentsRaga: Bhairavi Tala: Ata - Normalization4515 - Compilation - Persistent ID180696C6906C09EB - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Immortal%20Legends%20Vol.%201/1-01%20Viribhoni%20(Raga_%20Bhairavi%20Tala_%20Ata).m4a - File Folder Count4 - Library Folder Count1 - - 5286 - - Track ID5286 - Namekoluvudee (Raga: Kedara Gowla Tala: Adi) - ArtistM.S. Subbulakshmi - ComposerAnnamacharya - AlbumImmortal Legends Vol. 1 - GenreCarnatic - KindAAC audio file - Size7965374 - Total Time331486 - Disc Number1 - Disc Count5 - Track Number2 - Track Count11 - Year2004 - Date Modified2007-12-17T10:59:16Z - Date Added2009-10-03T14:58:10Z - Bit Rate192 - Sample Rate44100 - CommentsRaga: Kedara Gowla Tala: Adi - Normalization3229 - Compilation - Persistent ID1795E9DBB6BD47A9 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Immortal%20Legends%20Vol.%201/1-02%20koluvudee%20(Raga_%20Kedara%20Gowla%20Tala_%20Adi).m4a - File Folder Count4 - Library Folder Count1 - - 5288 - - Track ID5288 - Namebhogindra sayinam (Raga: Kuntalavarali Tala: Kanda Chapu) - ArtistM.S. Subbulakshmi - ComposerSwathi Thirunal - AlbumImmortal Legends Vol. 1 - GenreCarnatic - KindAAC audio file - Size5215991 - Total Time217523 - Disc Number1 - Disc Count5 - Track Number3 - Track Count11 - Year2004 - Date Modified2007-12-17T11:00:29Z - Date Added2009-10-03T14:58:10Z - Bit Rate192 - Sample Rate44100 - CommentsRaga: Kuntalavarali Tala: Kanda Chapu - Normalization3670 - Compilation - Persistent ID58A5C64820922422 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Immortal%20Legends%20Vol.%201/1-03%20bhogindra%20sayinam%20(Raga_%20Kuntalavarali%20Tala_%20Kanda%20Chapu).m4a - File Folder Count4 - Library Folder Count1 - - 5290 - - Track ID5290 - Namecheri yasodaku (Raga: Mohanam Tala: Adi) - ArtistM.S. Subbulakshmi - ComposerAnnamacharya - AlbumImmortal Legends Vol. 1 - GenreCarnatic - KindAAC audio file - Size10659978 - Total Time442779 - Disc Number1 - Disc Count5 - Track Number4 - Track Count11 - Year2004 - Date Modified2007-12-17T11:00:53Z - Date Added2009-10-03T14:58:10Z - Bit Rate192 - Sample Rate44100 - CommentsRaga: Mohanam Tala: Adi - Normalization2631 - Compilation - Persistent ID1241FDFF1FD73ABC - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Immortal%20Legends%20Vol.%201/1-04%20cheri%20yasodaku%20(Raga_%20Mohanam%20Tala_%20Adi).m4a - File Folder Count4 - Library Folder Count1 - - 5292 - - Track ID5292 - NameEnatinomu Phalamo (Raga: Bhairavi Tala: Adi) - ArtistM.S. Subbulakshmi - ComposerThyagaraja - AlbumImmortal Legends Vol. 1 - GenreCarnatic - KindAAC audio file - Size34840497 - Total Time1442166 - Disc Number1 - Disc Count5 - Track Number5 - Track Count11 - Year2004 - Date Modified2007-12-17T11:03:42Z - Date Added2009-10-03T14:58:10Z - Bit Rate192 - Sample Rate44100 - CommentsRaga: Bhairavi Tala: Adi - Normalization2072 - Compilation - Persistent IDCE35475D4BBDE72B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Immortal%20Legends%20Vol.%201/1-05%20Enatinomu%20Phalamo%20(Raga_%20Bhairavi%20Tala_%20Adi).m4a - File Folder Count4 - Library Folder Count1 - - 5294 - - Track ID5294 - NameJagadoddharana (Raga: Kapi Tala: Adi) - ArtistM.S. Subbulakshmi - ComposerPurandara Dasa - AlbumImmortal Legends Vol. 1 - GenreCarnatic - KindAAC audio file - Size8764003 - Total Time364482 - Disc Number1 - Disc Count5 - Track Number6 - Track Count11 - Year2004 - Date Modified2007-12-17T11:03:18Z - Date Added2009-10-03T14:58:10Z - Bit Rate192 - Sample Rate44100 - CommentsRaga: Kapi Tala: Adi - Normalization5588 - Compilation - Persistent ID81B2A90D6FF18764 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Immortal%20Legends%20Vol.%201/1-06%20Jagadoddharana%20(Raga_%20Kapi%20Tala_%20Adi).m4a - File Folder Count4 - Library Folder Count1 - - 5296 - - Track ID5296 - NameTillana (Raga: Dhanashree Tala: Adi) - ArtistM.S. Subbulakshmi - ComposerSwathi Thirunal - AlbumImmortal Legends Vol. 1 - GenreCarnatic - KindAAC audio file - Size5063794 - Total Time211184 - Disc Number1 - Disc Count5 - Track Number7 - Track Count11 - Year2004 - Date Modified2007-12-17T11:04:17Z - Date Added2009-10-03T14:58:11Z - Bit Rate192 - Sample Rate44100 - CommentsRaga: Dhanashree Tala: Adi - Normalization5130 - Compilation - Persistent ID0C5D20A8DFEB3B92 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Immortal%20Legends%20Vol.%201/1-07%20Tillana%20(Raga_%20Dhanashree%20Tala_%20Adi).m4a - File Folder Count4 - Library Folder Count1 - - 5298 - - Track ID5298 - NameNenjukku Neethi - ArtistM.S. Subbulakshmi - ComposerBharathiar - AlbumImmortal Legends Vol. 1 - GenreCarnatic - KindAAC audio file - Size4179341 - Total Time174264 - Disc Number1 - Disc Count5 - Track Number8 - Track Count11 - Year2004 - Date Modified2007-12-17T11:04:46Z - Date Added2009-10-03T14:58:11Z - Bit Rate192 - Sample Rate44100 - Normalization4157 - Compilation - Persistent IDC5091E9ECD2AC5A7 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Immortal%20Legends%20Vol.%201/1-08%20Nenjukku%20Neethi.m4a - File Folder Count4 - Library Folder Count1 - - 5300 - - Track ID5300 - NameKurai ondrum illai (Raga: Ragamalika Tala: Adi) - ArtistM.S. Subbulakshmi - ComposerRajaji - AlbumImmortal Legends Vol. 1 - GenreCarnatic - KindAAC audio file - Size6277890 - Total Time261710 - Disc Number1 - Disc Count5 - Track Number9 - Track Count11 - Year2004 - Date Modified2007-12-17T11:05:13Z - Date Added2009-10-03T14:58:11Z - Bit Rate192 - Sample Rate44100 - CommentsRaga: Ragamalika Tala: Adi - Normalization2185 - Compilation - Persistent ID46F5CC36BD45D4DA - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Immortal%20Legends%20Vol.%201/1-09%20Kurai%20ondrum%20illai%20(Raga_%20Ragamalika%20Tala_%20Adi).m4a - File Folder Count4 - Library Folder Count1 - - 5302 - - Track ID5302 - Namemarali marali jayamangalamu (Raga: Ragamalika Tala: Adi) - ArtistM.S. Subbulakshmi - ComposerAnnamacharya - AlbumImmortal Legends Vol. 1 - GenreCarnatic - KindAAC audio file - Size5687920 - Total Time237097 - Disc Number1 - Disc Count5 - Track Number10 - Track Count11 - Year2004 - Date Modified2007-12-17T11:06:00Z - Date Added2009-10-03T14:58:11Z - Bit Rate192 - Sample Rate44100 - CommentsRaga: Ragamalika Tala: Adi - Normalization3914 - Compilation - Persistent ID8AB55826A5B63E37 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Immortal%20Legends%20Vol.%201/1-10%20marali%20marali%20jayamangalamu%20(Raga_%20Ragamalika%20Tala_%20Adi).m4a - File Folder Count4 - Library Folder Count1 - - 5304 - - Track ID5304 - Namemaitrim bhajata (Raga: Ragamalika Tala: Adi) - ArtistM.S. Subbulakshmi - ComposerH.H.V. Chandrasekharendra - AlbumImmortal Legends Vol. 1 - GenreCarnatic - KindAAC audio file - Size3518171 - Total Time145982 - Disc Number1 - Disc Count5 - Track Number11 - Track Count11 - Year2004 - Date Modified2007-12-17T11:07:23Z - Date Added2009-10-03T14:58:11Z - Bit Rate192 - Sample Rate44100 - CommentsRaga: Ragamalika Tala: Adi - Normalization7501 - Compilation - Persistent ID48C167C358CF2AFB - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Immortal%20Legends%20Vol.%201/1-11%20maitrim%20bhajata%20(Raga_%20Ragamalika%20Tala_%20Adi).m4a - File Folder Count4 - Library Folder Count1 - - 5306 - - Track ID5306 - NameSarasiruhasanapriye - ArtistM.S. Subbulakshmi - AlbumImmortal Legends - GenreCarnatic - KindAAC audio file - Size6754614 - Total Time282167 - Track Number1 - Track Count8 - Date Modified2007-12-17T02:40:53Z - Date Added2009-10-03T14:58:11Z - Bit Rate192 - Sample Rate44100 - Normalization2968 - Compilation - Persistent ID23078BF9E439875E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Immortal%20Legends/01%20Sarasiruhasanapriye.m4a - File Folder Count4 - Library Folder Count1 - - 5308 - - Track ID5308 - NameSrimannarayana - ArtistM.S. Subbulakshmi - AlbumImmortal Legends - GenreCarnatic - KindAAC audio file - Size6654227 - Total Time278034 - Track Number1 - Track Count15 - Date Modified2007-12-17T02:40:53Z - Date Added2009-10-03T14:58:11Z - Bit Rate192 - Sample Rate44100 - Normalization2671 - Compilation - Persistent IDC6B4CFF3B374FEB3 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Immortal%20Legends/01%20Srimannarayana.m4a - File Folder Count4 - Library Folder Count1 - - 5310 - - Track ID5310 - NameAda Modi Galade - ArtistM.S. Subbulakshmi - AlbumImmortal Legends - GenreCarnatic - KindAAC audio file - Size9708493 - Total Time403770 - Track Number2 - Track Count8 - Date Modified2007-12-17T02:40:53Z - Date Added2009-10-03T14:58:12Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Compilation - Persistent IDCFE859A68FE6B7F8 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Immortal%20Legends/02%20Ada%20Modi%20Galade.m4a - File Folder Count4 - Library Folder Count1 - - 5312 - - Track ID5312 - NameBhavamulona - ArtistM.S. Subbulakshmi - AlbumImmortal Legends - GenreCarnatic - KindAAC audio file - Size7432355 - Total Time309450 - Track Number2 - Track Count15 - Date Modified2007-12-17T02:40:53Z - Date Added2009-10-03T14:58:12Z - Bit Rate192 - Sample Rate44100 - Normalization2980 - Compilation - Persistent IDD63A32597818FB3D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Immortal%20Legends/02%20Bhavamulona.m4a - File Folder Count4 - Library Folder Count1 - - 5314 - - Track ID5314 - NameBrahma Kadigina Paadamu - ArtistM.S. Subbulakshmi - AlbumImmortal Legends - GenreCarnatic - KindAAC audio file - Size6428783 - Total Time267933 - Track Number3 - Track Count8 - Date Modified2007-12-17T02:40:53Z - Date Added2009-10-03T14:58:12Z - Bit Rate192 - Sample Rate44100 - Normalization1734 - Compilation - Persistent IDD5B142DA0B296A8E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Immortal%20Legends/03%20Brahma%20Kadigina%20Paadamu.m4a - File Folder Count4 - Library Folder Count1 - - 5316 - - Track ID5316 - NameDolayam - ArtistM.S. Subbulakshmi - AlbumImmortal Legends - GenreCarnatic - KindAAC audio file - Size3917012 - Total Time163420 - Track Number3 - Track Count15 - Date Modified2007-12-17T02:40:53Z - Date Added2009-10-03T14:58:12Z - Bit Rate192 - Sample Rate44100 - Normalization6237 - Compilation - Persistent IDD41C2D92B64A808C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Immortal%20Legends/03%20Dolayam.m4a - File Folder Count4 - Library Folder Count1 - - 5318 - - Track ID5318 - NameIkanaina - ArtistM.S. Subbulakshmi - AlbumImmortal Legends - GenreCarnatic - KindAAC audio file - Size12709157 - Total Time527695 - Track Number4 - Track Count15 - Date Modified2007-12-17T02:40:53Z - Date Added2009-10-03T14:58:12Z - Bit Rate192 - Sample Rate44100 - Normalization3862 - Compilation - Persistent IDB12ACD480C07EE8D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Immortal%20Legends/04%20Ikanaina.m4a - File Folder Count4 - Library Folder Count1 - - 5320 - - Track ID5320 - NameMeenakshi Memudam - ArtistM.S. Subbulakshmi - AlbumImmortal Legends - GenreCarnatic - KindAAC audio file - Size19851947 - Total Time822681 - Track Number4 - Track Count8 - Date Modified2007-12-17T02:40:53Z - Date Added2009-10-03T14:58:12Z - Bit Rate192 - Sample Rate44100 - Normalization3395 - Compilation - Persistent IDC6ED695A911A9F46 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Immortal%20Legends/04%20Meenakshi%20Memudam.m4a - File Folder Count4 - Library Folder Count1 - - 5322 - - Track ID5322 - NameDeva Devam Bhaje - ArtistM.S. Subbulakshmi - AlbumImmortal Legends - GenreCarnatic - KindAAC audio file - Size5980217 - Total Time249311 - Track Number5 - Track Count15 - Date Modified2007-12-17T02:40:53Z - Date Added2009-10-03T14:58:12Z - Bit Rate192 - Sample Rate44100 - Normalization3080 - Compilation - Persistent ID933AFE25902ABF29 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Immortal%20Legends/05%20Deva%20Devam%20Bhaje.m4a - File Folder Count4 - Library Folder Count1 - - 5324 - - Track ID5324 - NameEnnalloorage - ArtistM.S. Subbulakshmi - AlbumImmortal Legends - GenreCarnatic - KindAAC audio file - Size13576969 - Total Time563407 - Track Number5 - Track Count8 - Date Modified2007-12-17T02:40:53Z - Date Added2009-10-03T14:58:12Z - Bit Rate192 - Sample Rate44100 - Normalization1640 - Compilation - Persistent IDEFCC178723425AC6 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Immortal%20Legends/05%20Ennalloorage.m4a - File Folder Count4 - Library Folder Count1 - - 5326 - - Track ID5326 - NameNaneke Badavanu - ArtistM.S. Subbulakshmi - AlbumImmortal Legends - GenreCarnatic - KindAAC audio file - Size5050814 - Total Time210626 - Track Number6 - Track Count15 - Date Modified2007-12-17T02:40:53Z - Date Added2009-10-03T14:58:13Z - Bit Rate192 - Sample Rate44100 - Normalization4432 - Compilation - Persistent ID478CCD140A8AFD39 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Immortal%20Legends/06%20Naneke%20Badavanu.m4a - File Folder Count4 - Library Folder Count1 - - 5328 - - Track ID5328 - NameSwara Raga Sudha - ArtistM.S. Subbulakshmi - AlbumImmortal Legends - GenreCarnatic - KindAAC audio file - Size34102859 - Total Time1411702 - Track Number6 - Track Count8 - Date Modified2007-12-17T02:40:53Z - Date Added2009-10-03T14:58:13Z - Bit Rate192 - Sample Rate44100 - Normalization2040 - Compilation - Persistent ID6EA0E6CC6C5CB67E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Immortal%20Legends/06%20Swara%20Raga%20Sudha.m4a - File Folder Count4 - Library Folder Count1 - - 5330 - - Track ID5330 - NameRangapura Vihara - ArtistM.S. Subbulakshmi - AlbumImmortal Legends - GenreCarnatic - KindAAC audio file - Size9015281 - Total Time374884 - Track Number7 - Track Count8 - Date Modified2007-12-17T02:40:53Z - Date Added2009-10-03T14:58:13Z - Bit Rate192 - Sample Rate44100 - Normalization7060 - Compilation - Persistent IDE3FC51499D919D10 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Immortal%20Legends/07%20Rangapura%20Vihara.m4a - File Folder Count4 - Library Folder Count1 - - 5332 - - Track ID5332 - NameVandadum Cholai - ArtistM.S. Subbulakshmi - AlbumImmortal Legends - GenreCarnatic - KindAAC audio file - Size9225668 - Total Time384056 - Track Number7 - Track Count15 - Date Modified2007-12-17T02:40:53Z - Date Added2009-10-03T14:58:13Z - Bit Rate192 - Sample Rate44100 - Normalization2333 - Compilation - Persistent ID96EDBF9894C7DF02 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Immortal%20Legends/07%20Vandadum%20Cholai.m4a - File Folder Count4 - Library Folder Count1 - - 5334 - - Track ID5334 - NameHari Tum Haro - ArtistM.S. Subbulakshmi - AlbumImmortal Legends - GenreCarnatic - KindAAC audio file - Size4919267 - Total Time204287 - Track Number8 - Track Count8 - Date Modified2007-12-17T02:40:53Z - Date Added2009-10-03T14:58:13Z - Bit Rate192 - Sample Rate44100 - Normalization3927 - Compilation - Persistent ID80E59E9B4DD80956 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Immortal%20Legends/08%20Hari%20Tum%20Haro.m4a - File Folder Count4 - Library Folder Count1 - - 5336 - - Track ID5336 - NameOlipadaitta Kanninaai - ArtistM.S. Subbulakshmi - AlbumImmortal Legends - GenreCarnatic - KindAAC audio file - Size4118431 - Total Time172104 - Track Number8 - Track Count15 - Date Modified2007-12-17T02:40:53Z - Date Added2009-10-03T14:58:13Z - Bit Rate192 - Sample Rate44100 - Normalization2077 - Compilation - Persistent ID9C283C8075A5A9DA - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Immortal%20Legends/08%20Olipadaitta%20Kanninaai.m4a - File Folder Count4 - Library Folder Count1 - - 5338 - - Track ID5338 - NameVadavarayai - ArtistM.S. Subbulakshmi - AlbumImmortal Legends - GenreCarnatic - KindAAC audio file - Size9245871 - Total Time384474 - Track Number9 - Track Count15 - Date Modified2007-12-17T02:40:53Z - Date Added2009-10-03T14:58:13Z - Bit Rate192 - Sample Rate44100 - Normalization4581 - Compilation - Persistent IDB646312B4488E504 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Immortal%20Legends/09%20Vadavarayai.m4a - File Folder Count4 - Library Folder Count1 - - 5340 - - Track ID5340 - NameJo Achyuthananda Jo Jo Mukunda - ArtistM.S. Subbulakshmi - AlbumImmortal Legends - GenreCarnatic - KindAAC audio file - Size8895842 - Total Time370031 - Track Number10 - Track Count15 - Date Modified2007-12-17T02:40:53Z - Date Added2009-10-03T14:58:14Z - Bit Rate192 - Sample Rate44100 - Normalization3474 - Compilation - Persistent IDE338411285C90447 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Immortal%20Legends/10%20Jo%20Achyuthananda%20Jo%20Jo%20Mukunda.m4a - File Folder Count4 - Library Folder Count1 - - 5342 - - Track ID5342 - NameTolliyunu - ArtistM.S. Subbulakshmi - AlbumImmortal Legends - GenreCarnatic - KindAAC audio file - Size6695832 - Total Time279055 - Track Number11 - Track Count15 - Date Modified2007-12-17T02:40:53Z - Date Added2009-10-03T14:58:14Z - Bit Rate192 - Sample Rate44100 - Normalization3184 - Compilation - Persistent IDFC843B8258B1FAAF - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Immortal%20Legends/11%20Tolliyunu.m4a - File Folder Count4 - Library Folder Count1 - - 5344 - - Track ID5344 - NameBhavayami Gopala Balam - ArtistM.S. Subbulakshmi - AlbumImmortal Legends - GenreCarnatic - KindAAC audio file - Size6658030 - Total Time277639 - Track Number12 - Track Count15 - Date Modified2007-12-17T02:40:53Z - Date Added2009-10-03T14:58:14Z - Bit Rate192 - Sample Rate44100 - Normalization2468 - Compilation - Persistent IDF23A334CF34CCB8B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Immortal%20Legends/12%20Bhavayami%20Gopala%20Balam.m4a - File Folder Count4 - Library Folder Count1 - - 5346 - - Track ID5346 - NameKseerabdi Kanyakaku - ArtistM.S. Subbulakshmi - AlbumImmortal Legends - GenreCarnatic - KindAAC audio file - Size5735922 - Total Time239164 - Track Number13 - Track Count15 - Date Modified2007-12-17T02:40:54Z - Date Added2009-10-03T14:58:14Z - Bit Rate192 - Sample Rate44100 - Normalization2530 - Compilation - Persistent ID96C66EC4622F059B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Immortal%20Legends/13%20Kseerabdi%20Kanyakaku.m4a - File Folder Count4 - Library Folder Count1 - - 5348 - - Track ID5348 - NameNanati Baduku - ArtistM.S. Subbulakshmi - AlbumImmortal Legends - GenreCarnatic - KindAAC audio file - Size7051844 - Total Time293730 - Track Number14 - Track Count15 - Date Modified2007-12-17T02:40:54Z - Date Added2009-10-03T14:58:14Z - Bit Rate192 - Sample Rate44100 - Normalization1727 - Compilation - Persistent IDC29F12889B629AF9 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Immortal%20Legends/14%20Nanati%20Baduku.m4a - File Folder Count4 - Library Folder Count1 - - 5350 - - Track ID5350 - NameNaadavindu Kaladi Namo Namah - ArtistM.S. Subbulakshmi - AlbumImmortal Legends - GenreCarnatic - KindAAC audio file - Size4802499 - Total Time199481 - Track Number15 - Track Count15 - Date Modified2007-12-17T02:40:54Z - Date Added2009-10-03T14:58:14Z - Bit Rate192 - Sample Rate44100 - Normalization5629 - Compilation - Persistent ID41AD053720930B35 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Immortal%20Legends/15%20Naadavindu%20Kaladi%20Namo%20Namah.m4a - File Folder Count4 - Library Folder Count1 - - 5352 - - Track ID5352 - NameThe Warriors Music to an imaginary ballet for orchestra and 3 pianos - ArtistJohn Eliot Gardiner; Philharmonia Orchestra - ComposerPercy Grainger (1882-1961) - AlbumHolst: The Planets / Grainger: The Warriors - GenreClassical - KindAAC audio file - Size26849035 - Total Time1109006 - Disc Number1 - Disc Count1 - Track Number1 - Track Count8 - Year1994 - Date Modified2006-07-31T01:27:28Z - Date Added2009-10-03T14:58:14Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Compilation - Artwork Count1 - Sort NameWarriors Music to an imaginary ballet for orchestra and 3 pianos - Persistent ID7F13F6B0D3DC8EDA - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Holst_%20The%20Planets%20_%20Grainger_%20The%20Warriors/01%20The%20Warriors%20Music%20to%20an%20imaginary%20ballet%20for%20orchestra%20and%203%20pianos.m4a - File Folder Count4 - Library Folder Count1 - - 5354 - - Track ID5354 - NameThe Planets op.32 (H.125), I. Mars, the Bringer of War - ArtistJohn Eliot Gardiner; Philharmonia Orchestra - ComposerGustav Holst (1874-1934) - AlbumHolst: The Planets / Grainger: The Warriors - GenreClassical - KindAAC audio file - Size11700619 - Total Time483020 - Disc Number1 - Disc Count1 - Track Number2 - Track Count8 - Year1994 - Date Modified2006-07-31T01:27:28Z - Date Added2009-10-03T14:58:15Z - Bit Rate192 - Sample Rate44100 - Normalization2128 - Compilation - Artwork Count1 - Sort NamePlanets op.32 (H.125), I. Mars, the Bringer of War - Persistent ID296BF42E6A69D218 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Holst_%20The%20Planets%20_%20Grainger_%20The%20Warriors/02%20The%20Planets%20op.32%20(H.125),%20I.%20Mars,%20the%20Bringer%20of%20War.m4a - File Folder Count4 - Library Folder Count1 - - 5356 - - Track ID5356 - NameThe Planets op.32 (H.125), II. Venus, the Bringer of Peace - ArtistJohn Eliot Gardiner; Philharmonia Orchestra - ComposerGustav Holst (1874-1934) - AlbumHolst: The Planets / Grainger: The Warriors - GenreClassical - KindAAC audio file - Size11072026 - Total Time457013 - Disc Number1 - Disc Count1 - Track Number3 - Track Count8 - Year1994 - Date Modified2006-07-31T01:27:28Z - Date Added2009-10-03T14:58:15Z - Bit Rate192 - Sample Rate44100 - Normalization200 - Compilation - Artwork Count1 - Sort NamePlanets op.32 (H.125), II. Venus, the Bringer of Peace - Persistent ID027B51B375D0976A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Holst_%20The%20Planets%20_%20Grainger_%20The%20Warriors/03%20The%20Planets%20op.32%20(H.125),%20II.%20Venus,%20the%20Bringer%20of%20Peace.m4a - File Folder Count4 - Library Folder Count1 - - 5358 - - Track ID5358 - NameThe Planets op.32 (H.125), III. Mercury, the Winged Messenger - ArtistJohn Eliot Gardiner; Philharmonia Orchestra - ComposerGustav Holst (1874-1934) - AlbumHolst: The Planets / Grainger: The Warriors - GenreClassical - KindAAC audio file - Size5607910 - Total Time231013 - Disc Number1 - Disc Count1 - Track Number4 - Track Count8 - Year1994 - Date Modified2006-07-31T01:27:28Z - Date Added2009-10-03T14:58:15Z - Bit Rate192 - Sample Rate44100 - Normalization1020 - Compilation - Artwork Count1 - Sort NamePlanets op.32 (H.125), III. Mercury, the Winged Messenger - Persistent IDBAF62261242176BD - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Holst_%20The%20Planets%20_%20Grainger_%20The%20Warriors/04%20The%20Planets%20op.32%20(H.125),%20III.%20Mercury,%20the%20Winged%20Messenger.m4a - File Folder Count4 - Library Folder Count1 - - 5360 - - Track ID5360 - NameThe Planets op.32 (H.125), IV. Jupiter, the Bringer of Jollity - ArtistJohn Eliot Gardiner; Philharmonia Orchestra - ComposerGustav Holst (1874-1934) - AlbumHolst: The Planets / Grainger: The Warriors - GenreClassical - KindAAC audio file - Size10587506 - Total Time437021 - Disc Number1 - Disc Count1 - Track Number5 - Track Count8 - Year1994 - Date Modified2006-07-31T01:27:28Z - Date Added2009-10-03T14:58:15Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Compilation - Artwork Count1 - Sort NamePlanets op.32 (H.125), IV. Jupiter, the Bringer of Jollity - Persistent IDF83E35536E7C9A9F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Holst_%20The%20Planets%20_%20Grainger_%20The%20Warriors/05%20The%20Planets%20op.32%20(H.125),%20IV.%20Jupiter,%20the%20Bringer%20of%20Jollity.m4a - File Folder Count4 - Library Folder Count1 - - 5362 - - Track ID5362 - NameThe Planets op.32 (H.125), V. Saturn, the Bringer of Old Age - ArtistJohn Eliot Gardiner; Philharmonia Orchestra - ComposerGustav Holst (1874-1934) - AlbumHolst: The Planets / Grainger: The Warriors - GenreClassical - KindAAC audio file - Size13394842 - Total Time553004 - Disc Number1 - Disc Count1 - Track Number6 - Track Count8 - Year1994 - Date Modified2006-07-31T01:27:28Z - Date Added2009-10-03T14:58:15Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Compilation - Artwork Count1 - Sort NamePlanets op.32 (H.125), V. Saturn, the Bringer of Old Age - Persistent ID0034721A309B9D1E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Holst_%20The%20Planets%20_%20Grainger_%20The%20Warriors/06%20The%20Planets%20op.32%20(H.125),%20V.%20Saturn,%20the%20Bringer%20of%20Old%20Age.m4a - File Folder Count4 - Library Folder Count1 - - 5364 - - Track ID5364 - NameThe Planets op.32 (H.125), VI. Uranus, the Magician - ArtistJohn Eliot Gardiner; Philharmonia Orchestra - ComposerGustav Holst (1874-1934) - AlbumHolst: The Planets / Grainger: The Warriors - GenreClassical - KindAAC audio file - Size8094886 - Total Time334017 - Disc Number1 - Disc Count1 - Track Number7 - Track Count8 - Year1994 - Date Modified2006-07-31T01:27:30Z - Date Added2009-10-03T14:58:15Z - Bit Rate192 - Sample Rate44100 - Normalization1647 - Compilation - Artwork Count1 - Sort NamePlanets op.32 (H.125), VI. Uranus, the Magician - Persistent IDDDD69081649BC20C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Holst_%20The%20Planets%20_%20Grainger_%20The%20Warriors/07%20The%20Planets%20op.32%20(H.125),%20VI.%20Uranus,%20the%20Magician.m4a - File Folder Count4 - Library Folder Count1 - - 5366 - - Track ID5366 - NameThe Planets op.32 (H.125), VII. Neptune, the Mystic - ArtistJohn Eliot Gardiner; Philharmonia Orchestra - ComposerGustav Holst (1874-1934) - AlbumHolst: The Planets / Grainger: The Warriors - GenreClassical - KindAAC audio file - Size11885766 - Total Time491007 - Disc Number1 - Disc Count1 - Track Number8 - Track Count8 - Year1994 - Date Modified2006-07-31T01:27:30Z - Date Added2009-10-03T14:58:15Z - Bit Rate192 - Sample Rate44100 - Normalization26 - Compilation - Artwork Count1 - Sort NamePlanets op.32 (H.125), VII. Neptune, the Mystic - Persistent ID90E3AB15FDE7EF87 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Holst_%20The%20Planets%20_%20Grainger_%20The%20Warriors/08%20The%20Planets%20op.32%20(H.125),%20VII.%20Neptune,%20the%20Mystic.m4a - File Folder Count4 - Library Folder Count1 - - 5368 - - Track ID5368 - NameNight Before Sundance - ArtistPeter "Wyoming" Bender - ComposerVarious Composers - AlbumHearts, Hands, & Hides - GenreWorld - KindAAC audio file - Size5655497 - Total Time235360 - Disc Number1 - Disc Count1 - Track Number1 - Track Count10 - Year1997 - Date Modified2007-09-10T09:22:48Z - Date Added2009-10-03T14:58:16Z - Bit Rate192 - Sample Rate44100 - Normalization2284 - Compilation - Persistent IDE7F2510017A26B60 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Hearts,%20Hands,%20&%20Hides/01%20Night%20Before%20Sundance.m4a - File Folder Count4 - Library Folder Count1 - - 5370 - - Track ID5370 - NameNight Before Sundance - ArtistPeter "Wyoming" Bender - ComposerVarious Composers - AlbumHearts, Hands, & Hides - GenreWorld - KindAAC audio file - Size5670749 - Total Time235379 - Disc Number1 - Disc Count1 - Track Number1 - Track Count10 - Year1997 - Date Modified2006-08-07T08:59:50Z - Date Added2009-10-03T14:58:16Z - Bit Rate192 - Sample Rate44100 - Normalization2282 - Compilation - Artwork Count1 - Persistent IDBDCC183107E46B8C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Hearts,%20Hands,%20&%20Hides/01%20Night%20Before%20Sundance%201.m4a - File Folder Count4 - Library Folder Count1 - - 5372 - - Track ID5372 - NameDrums Of The Heart - ArtistThe Mesa Music Consort - ComposerVarious Composers - AlbumHearts, Hands, & Hides - GenreWorld - KindAAC audio file - Size5815307 - Total Time241200 - Disc Number1 - Disc Count1 - Track Number2 - Track Count10 - Year1997 - Date Modified2007-09-10T09:23:26Z - Date Added2009-10-03T14:58:16Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3377440198 - Play Date UTC2011-01-09T12:19:58Z - Normalization1175 - Compilation - Sort ArtistMesa Music Consort - Persistent ID7CF0A0AD63F8DD69 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Hearts,%20Hands,%20&%20Hides/02%20Drums%20Of%20The%20Heart.m4a - File Folder Count4 - Library Folder Count1 - - 5374 - - Track ID5374 - NameDrums Of The Heart - ArtistThe Mesa Music Consort - ComposerVarious Composers - AlbumHearts, Hands, & Hides - GenreWorld - KindAAC audio file - Size5829787 - Total Time241207 - Disc Number1 - Disc Count1 - Track Number2 - Track Count10 - Year1997 - Date Modified2006-08-07T08:59:50Z - Date Added2009-10-03T14:58:16Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3377440439 - Play Date UTC2011-01-09T12:23:59Z - Normalization1175 - Compilation - Artwork Count1 - Sort ArtistMesa Music Consort - Persistent ID7D09F9301A84B02A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Hearts,%20Hands,%20&%20Hides/02%20Drums%20Of%20The%20Heart%201.m4a - File Folder Count4 - Library Folder Count1 - - 5376 - - Track ID5376 - NameLegends - ArtistMarilyn Rife with Alice Gomez - ComposerVarious Composers - AlbumHearts, Hands, & Hides - GenreWorld - KindAAC audio file - Size7117878 - Total Time294906 - Disc Number1 - Disc Count1 - Track Number3 - Track Count10 - Year1997 - Date Modified2007-09-10T09:24:12Z - Date Added2009-10-03T14:58:16Z - Bit Rate192 - Sample Rate44100 - Normalization1175 - Compilation - Persistent ID15C4C8C18E26E9AB - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Hearts,%20Hands,%20&%20Hides/03%20Legends.m4a - File Folder Count4 - Library Folder Count1 - - 5378 - - Track ID5378 - NameLegends - ArtistMarilyn Rife with Alice Gomez - ComposerVarious Composers - AlbumHearts, Hands, & Hides - GenreWorld - KindAAC audio file - Size7128302 - Total Time294915 - Disc Number1 - Disc Count1 - Track Number3 - Track Count10 - Year1997 - Date Modified2006-08-07T08:59:50Z - Date Added2009-10-03T14:58:16Z - Bit Rate192 - Sample Rate44100 - Normalization1175 - Compilation - Artwork Count1 - Persistent ID8512C0231E515092 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Hearts,%20Hands,%20&%20Hides/03%20Legends%201.m4a - File Folder Count4 - Library Folder Count1 - - 5380 - - Track ID5380 - NameDrummers' Journey - ArtistThe Native Flute Ensemble - ComposerVarious Composers - AlbumHearts, Hands, & Hides - GenreWorld - KindAAC audio file - Size6557115 - Total Time271733 - Disc Number1 - Disc Count1 - Track Number4 - Track Count10 - Year1997 - Date Modified2007-09-10T09:24:42Z - Date Added2009-10-03T14:58:16Z - Bit Rate192 - Sample Rate44100 - Normalization1175 - Compilation - Sort ArtistNative Flute Ensemble - Persistent ID31DF85688EBE6FEB - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Hearts,%20Hands,%20&%20Hides/04%20Drummers'%20Journey.m4a - File Folder Count4 - Library Folder Count1 - - 5382 - - Track ID5382 - NameDrummers' Journey - ArtistThe Native Flute Ensemble - ComposerVarious Composers - AlbumHearts, Hands, & Hides - GenreWorld - KindAAC audio file - Size6567451 - Total Time271741 - Disc Number1 - Disc Count1 - Track Number4 - Track Count10 - Year1997 - Date Modified2006-08-07T08:59:50Z - Date Added2009-10-03T14:58:17Z - Bit Rate192 - Sample Rate44100 - Normalization1175 - Compilation - Artwork Count1 - Sort ArtistNative Flute Ensemble - Persistent ID75F0FD756C0101C5 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Hearts,%20Hands,%20&%20Hides/04%20Drummers'%20Journey%201.m4a - File Folder Count4 - Library Folder Count1 - - 5384 - - Track ID5384 - NameYa-Ta-Hey - ArtistEric Casillas - ComposerVarious Composers - AlbumHearts, Hands, & Hides - GenreWorld - KindAAC audio file - Size9830198 - Total Time407760 - Disc Number1 - Disc Count1 - Track Number5 - Track Count10 - Year1997 - Date Modified2007-09-10T09:25:30Z - Date Added2009-10-03T14:58:17Z - Bit Rate192 - Sample Rate44100 - Normalization1175 - Compilation - Persistent IDFAF8807758495CF3 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Hearts,%20Hands,%20&%20Hides/05%20Ya-Ta-Hey.m4a - File Folder Count4 - Library Folder Count1 - - 5386 - - Track ID5386 - NameYa-Ta-Hey - ArtistEric Casillas - ComposerVarious Composers - AlbumHearts, Hands, & Hides - GenreWorld - KindAAC audio file - Size9840585 - Total Time407764 - Disc Number1 - Disc Count1 - Track Number5 - Track Count10 - Year1997 - Date Modified2006-08-07T08:59:48Z - Date Added2009-10-03T14:58:17Z - Bit Rate192 - Sample Rate44100 - Normalization1175 - Compilation - Artwork Count1 - Persistent IDBE0DED22C6B5B2A1 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Hearts,%20Hands,%20&%20Hides/05%20Ya-Ta-Hey%201.m4a - File Folder Count4 - Library Folder Count1 - - 5388 - - Track ID5388 - NameInvoking The Hawks' Spirit - ArtistThe Mesa Music Consort - ComposerVarious Composers - AlbumHearts, Hands, & Hides - GenreWorld - KindAAC audio file - Size7945884 - Total Time329906 - Disc Number1 - Disc Count1 - Track Number6 - Track Count10 - Year1997 - Date Modified2007-09-10T09:26:04Z - Date Added2009-10-03T14:58:17Z - Bit Rate192 - Sample Rate44100 - Normalization1174 - Compilation - Sort ArtistMesa Music Consort - Persistent ID10F7D177D3DB3D4C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Hearts,%20Hands,%20&%20Hides/06%20Invoking%20The%20Hawks'%20Spirit.m4a - File Folder Count4 - Library Folder Count1 - - 5390 - - Track ID5390 - NameInvoking The Hawks' Spirit - ArtistThe Mesa Music Consort - ComposerVarious Composers - AlbumHearts, Hands, & Hides - GenreWorld - KindAAC audio file - Size7956233 - Total Time329907 - Disc Number1 - Disc Count1 - Track Number6 - Track Count10 - Year1997 - Date Modified2006-08-07T08:59:48Z - Date Added2009-10-03T14:58:17Z - Bit Rate192 - Sample Rate44100 - Normalization1174 - Compilation - Artwork Count1 - Sort ArtistMesa Music Consort - Persistent IDC7881EE0E01C181C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Hearts,%20Hands,%20&%20Hides/06%20Invoking%20The%20Hawks'%20Spirit%201.m4a - File Folder Count4 - Library Folder Count1 - - 5392 - - Track ID5392 - NameCrow Dogs' Paradise - ArtistPeter "Wyoming" Bender - ComposerVarious Composers - AlbumHearts, Hands, & Hides - GenreWorld - KindAAC audio file - Size4547093 - Total Time189466 - Disc Number1 - Disc Count1 - Track Number7 - Track Count10 - Year1997 - Date Modified2007-09-10T09:26:26Z - Date Added2009-10-03T14:58:17Z - Bit Rate192 - Sample Rate44100 - Normalization1412 - Compilation - Persistent ID6F5FD9D930F3EF0F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Hearts,%20Hands,%20&%20Hides/07%20Crow%20Dogs'%20Paradise.m4a - File Folder Count4 - Library Folder Count1 - - 5394 - - Track ID5394 - NameCrow Dogs' Paradise - ArtistPeter "Wyoming" Bender - ComposerVarious Composers - AlbumHearts, Hands, & Hides - GenreWorld - KindAAC audio file - Size4560831 - Total Time189473 - Disc Number1 - Disc Count1 - Track Number7 - Track Count10 - Year1997 - Date Modified2006-08-07T08:59:48Z - Date Added2009-10-03T14:58:18Z - Bit Rate192 - Sample Rate44100 - Normalization1410 - Compilation - Artwork Count1 - Persistent ID1310E5FEA90C760B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Hearts,%20Hands,%20&%20Hides/07%20Crow%20Dogs'%20Paradise%201.m4a - File Folder Count4 - Library Folder Count1 - - 5396 - - Track ID5396 - NameFlute Song - ArtistMarilyn Rife with Alice Gomez - ComposerVarious Composers - AlbumHearts, Hands, & Hides - GenreWorld - KindAAC audio file - Size9019296 - Total Time374333 - Disc Number1 - Disc Count1 - Track Number8 - Track Count10 - Year1997 - Date Modified2007-09-10T09:27:08Z - Date Added2009-10-03T14:58:18Z - Bit Rate192 - Sample Rate44100 - Normalization1175 - Compilation - Persistent IDB0A9163562DC07AF - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Hearts,%20Hands,%20&%20Hides/08%20Flute%20Song.m4a - File Folder Count4 - Library Folder Count1 - - 5398 - - Track ID5398 - NameFlute Song - ArtistMarilyn Rife with Alice Gomez - ComposerVarious Composers - AlbumHearts, Hands, & Hides - GenreWorld - KindAAC audio file - Size9029891 - Total Time374350 - Disc Number1 - Disc Count1 - Track Number8 - Track Count10 - Year1997 - Date Modified2006-08-07T08:59:48Z - Date Added2009-10-03T14:58:18Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3338470875 - Play Date UTC2009-10-15T11:31:15Z - Normalization1175 - Compilation - Artwork Count1 - Persistent ID7C943BF358291414 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Hearts,%20Hands,%20&%20Hides/08%20Flute%20Song%201.m4a - File Folder Count4 - Library Folder Count1 - - 5400 - - Track ID5400 - NameRoad Opener - ArtistEric Casillas - ComposerVarious Composers - AlbumHearts, Hands, & Hides - GenreWorld - KindAAC audio file - Size7872162 - Total Time326360 - Disc Number1 - Disc Count1 - Track Number9 - Track Count10 - Year1997 - Date Modified2007-09-10T09:27:44Z - Date Added2009-10-03T14:58:18Z - Bit Rate192 - Sample Rate44100 - Normalization1175 - Compilation - Persistent IDC9EB19AC824C859C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Hearts,%20Hands,%20&%20Hides/09%20Road%20Opener.m4a - File Folder Count4 - Library Folder Count1 - - 5402 - - Track ID5402 - NameRoad Opener - ArtistEric Casillas - ComposerVarious Composers - AlbumHearts, Hands, & Hides - GenreWorld - KindAAC audio file - Size7882672 - Total Time326378 - Disc Number1 - Disc Count1 - Track Number9 - Track Count10 - Year1997 - Date Modified2006-08-07T08:59:48Z - Date Added2009-10-03T14:58:18Z - Bit Rate192 - Sample Rate44100 - Normalization1175 - Compilation - Artwork Count1 - Persistent ID78AD2BBD7C76B210 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Hearts,%20Hands,%20&%20Hides/09%20Road%20Opener%201.m4a - File Folder Count4 - Library Folder Count1 - - 5404 - - Track ID5404 - NameDrum Quest - ArtistThe Native Flute Ensemble - ComposerVarious Composers - AlbumHearts, Hands, & Hides - GenreWorld - KindAAC audio file - Size6582109 - Total Time271840 - Disc Number1 - Disc Count1 - Track Number10 - Track Count10 - Year1997 - Date Modified2007-09-10T09:28:14Z - Date Added2009-10-03T14:58:18Z - Bit Rate192 - Sample Rate44100 - Normalization1174 - Compilation - Sort ArtistNative Flute Ensemble - Persistent ID12F036DFF82D288B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Hearts,%20Hands,%20&%20Hides/10%20Drum%20Quest.m4a - File Folder Count4 - Library Folder Count1 - - 5406 - - Track ID5406 - NameDrum Quest - ArtistThe Native Flute Ensemble - ComposerVarious Composers - AlbumHearts, Hands, & Hides - GenreWorld - KindAAC audio file - Size6592543 - Total Time271857 - Disc Number1 - Disc Count1 - Track Number10 - Track Count10 - Year1997 - Date Modified2006-08-07T08:59:48Z - Date Added2009-10-03T14:58:18Z - Bit Rate192 - Sample Rate44100 - Normalization1174 - Compilation - Artwork Count1 - Sort ArtistNative Flute Ensemble - Persistent ID7D25652D80FA2C62 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Hearts,%20Hands,%20&%20Hides/10%20Drum%20Quest%201.m4a - File Folder Count4 - Library Folder Count1 - - 5408 - - Track ID5408 - NameChalte Chalte - ArtistLata Mangeshkar - ComposerVarious - AlbumGreatest Hits Of The 70s - GenreSoundtrack - KindAAC audio file - Size8557915 - Total Time352426 - Track Number1 - Track Count15 - Date Modified2007-08-16T15:30:40Z - Date Added2009-10-03T14:58:18Z - Bit Rate192 - Sample Rate44100 - Normalization2888 - Compilation - Artwork Count1 - Persistent ID0EA93865FE847442 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Greatest%20Hits%20Of%20The%2070s/01%20Chalte%20Chalte.m4a - File Folder Count4 - Library Folder Count1 - - 5410 - - Track ID5410 - NameYeh Sham Mastani - ArtistKishore Kumar - ComposerVarious - AlbumGreatest Hits Of The 70s - GenreSoundtrack - KindAAC audio file - Size6864522 - Total Time283573 - Track Number2 - Track Count15 - Date Modified2007-08-16T15:33:28Z - Date Added2009-10-03T14:58:19Z - Bit Rate192 - Sample Rate44100 - Normalization2724 - Compilation - Artwork Count1 - Persistent IDC438EEB10AEC241A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Greatest%20Hits%20Of%20The%2070s/02%20Yeh%20Sham%20Mastani.m4a - File Folder Count4 - Library Folder Count1 - - 5412 - - Track ID5412 - NameKoi Jab Tumhara Hriday Tod De - ArtistMukesh - ComposerVarious - AlbumGreatest Hits Of The 70s - GenreSoundtrack - KindAAC audio file - Size5185604 - Total Time214333 - Track Number3 - Track Count15 - Date Modified2007-08-16T15:35:40Z - Date Added2009-10-03T14:58:19Z - Bit Rate192 - Sample Rate44100 - Normalization888 - Compilation - Artwork Count1 - Persistent ID69E27BF0275F111B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Greatest%20Hits%20Of%20The%2070s/03%20Koi%20Jab%20Tumhara%20Hriday%20Tod%20De.m4a - File Folder Count4 - Library Folder Count1 - - 5414 - - Track ID5414 - NamePhoolon Ke Rang Se - ArtistKishore Kumar - ComposerVarious - AlbumGreatest Hits Of The 70s - GenreSoundtrack - KindAAC audio file - Size7213860 - Total Time297733 - Track Number4 - Track Count15 - Date Modified2007-08-16T15:38:18Z - Date Added2009-10-03T14:58:19Z - Bit Rate192 - Sample Rate44100 - Normalization1464 - Compilation - Artwork Count1 - Persistent IDA65A278DE4B9A0E4 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Greatest%20Hits%20Of%20The%2070s/04%20Phoolon%20Ke%20Rang%20Se.m4a - File Folder Count4 - Library Folder Count1 - - 5416 - - Track ID5416 - NameRanina Beeti Jaye - ArtistLata Mangeshkar - ComposerVarious - AlbumGreatest Hits Of The 70s - GenreSoundtrack - KindAAC audio file - Size8192172 - Total Time337800 - Track Number5 - Track Count15 - Date Modified2007-08-16T15:41:02Z - Date Added2009-10-03T14:58:19Z - Bit Rate192 - Sample Rate44100 - Normalization2428 - Compilation - Artwork Count1 - Persistent ID31CDBFC332530B24 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Greatest%20Hits%20Of%20The%2070s/05%20Ranina%20Beeti%20Jaye.m4a - File Folder Count4 - Library Folder Count1 - - 5418 - - Track ID5418 - NamePhoolon Ka Taron Ka - ArtistKishore Kumar - ComposerVarious - AlbumGreatest Hits Of The 70s - GenreSoundtrack - KindAAC audio file - Size5344061 - Total Time221133 - Track Number6 - Track Count15 - Date Modified2007-08-16T15:42:36Z - Date Added2009-10-03T14:58:19Z - Bit Rate192 - Sample Rate44100 - Normalization2379 - Compilation - Artwork Count1 - Persistent ID7DD7857AE789BB68 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Greatest%20Hits%20Of%20The%2070s/06%20Phoolon%20Ka%20Taron%20Ka.m4a - File Folder Count4 - Library Folder Count1 - - 5420 - - Track ID5420 - NameZindagi Ek Safar Hai - ArtistKishore Kumar - ComposerVarious - AlbumGreatest Hits Of The 70s - GenreSoundtrack - KindAAC audio file - Size461522 - Total Time17000 - Track Number7 - Track Count15 - Date Modified2007-08-16T15:42:48Z - Date Added2009-10-03T14:58:19Z - Bit Rate192 - Sample Rate44100 - Normalization3466 - Compilation - Artwork Count1 - Persistent ID5926D4BA436A1452 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Greatest%20Hits%20Of%20The%2070s/07%20Zindagi%20Ek%20Safar%20Hai.m4a - File Folder Count4 - Library Folder Count1 - - 5422 - - Track ID5422 - NameJane Kahan Gaye Woh Din - ArtistMukesh - ComposerVarious - AlbumGreatest Hits Of The 70s - GenreSoundtrack - KindAAC audio file - Size7022062 - Total Time289830 - Track Number8 - Track Count15 - Date Modified2007-04-03T03:42:54Z - Date Added2009-10-03T14:58:19Z - Bit Rate192 - Sample Rate44100 - Normalization1453 - Compilation - Artwork Count1 - Persistent IDFC0A3C29A31981C6 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Greatest%20Hits%20Of%20The%2070s/08%20Jane%20Kahan%20Gaye%20Woh%20Din.m4a - File Folder Count4 - Library Folder Count1 - - 5424 - - Track ID5424 - NameDilbar Dil Se Pyare - ArtistLata Mangeshkar - ComposerVarious - AlbumGreatest Hits Of The 70s - GenreSoundtrack - KindAAC audio file - Size6914171 - Total Time284512 - Track Number9 - Track Count15 - Date Modified2007-04-09T08:23:24Z - Date Added2009-10-03T14:58:20Z - Bit Rate192 - Sample Rate44100 - Normalization2456 - Compilation - Artwork Count1 - Persistent ID1643633BEBEAC5FD - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Greatest%20Hits%20Of%20The%2070s/09%20Dilbar%20Dil%20Se%20Pyare.m4a - File Folder Count4 - Library Folder Count1 - - 5426 - - Track ID5426 - NameZindagi Ka Safar - Artistkishore kumar - ComposerVarious - AlbumGreatest Hits Of The 70s - GenreHindi Old hits - KindAAC audio file - Size5840466 - Total Time241346 - Track Number10 - Track Count15 - Date Modified2007-04-09T08:36:48Z - Date Added2009-10-03T14:58:20Z - Bit Rate192 - Sample Rate44100 - Normalization1745 - Compilation - Artwork Count1 - Persistent IDB4B20C3B1020F6B8 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Greatest%20Hits%20Of%20The%2070s/10%20Zindagi%20Ka%20Safar.m4a - File Folder Count4 - Library Folder Count1 - - 5428 - - Track ID5428 - NameDuniya Mein - ArtistR.D. Burman - ComposerVarious - AlbumGreatest Hits Of The 70s - GenreSoundtrack - KindAAC audio file - Size8511755 - Total Time351804 - Track Number11 - Track Count15 - Date Modified2006-10-06T10:24:34Z - Date Added2009-10-03T14:58:20Z - Bit Rate192 - Sample Rate44100 - Normalization4230 - Compilation - Persistent IDD4FA158A30ED4F56 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Greatest%20Hits%20Of%20The%2070s/11%20Duniya%20Mein.m4a - File Folder Count4 - Library Folder Count1 - - 5430 - - Track ID5430 - NameBeeti Na Bitai Raina - ArtistR.D. Burman - ComposerVarious - AlbumGreatest Hits Of The 70s - GenreSoundtrack - KindAAC audio file - Size4710400 - Total Time195115 - Track Number12 - Track Count15 - Date Modified2006-10-06T10:24:46Z - Date Added2009-10-03T14:58:20Z - Bit Rate192 - Sample Rate44100 - Normalization4682 - Compilation - Persistent IDEBB7631FCF3E7224 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Greatest%20Hits%20Of%20The%2070s/12%20Beeti%20Na%20Bitai%20Raina.m4a - File Folder Count4 - Library Folder Count1 - - 5432 - - Track ID5432 - NameTeri Bindiya Re - ArtistLata Mangeshkar & Mohd. Rafi - ComposerVarious - AlbumGreatest Hits Of The 70s - GenreHindi Old hits - KindAAC audio file - Size6632846 - Total Time272949 - Track Number13 - Track Count15 - Date Modified2007-10-25T16:27:22Z - Date Added2009-10-03T14:58:20Z - Bit Rate192 - Sample Rate44100 - Normalization3309 - Compilation - Artwork Count1 - Persistent ID29F8FB353C4EB95C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Greatest%20Hits%20Of%20The%2070s/13%20Teri%20Bindiya%20Re.m4a - File Folder Count4 - Library Folder Count1 - - 5434 - - Track ID5434 - NameYeh Jeevan Hai - Artistkishore kumar - ComposerVarious - AlbumGreatest Hits Of The 70s - GenreHindi Old hits - KindAAC audio file - Size5726369 - Total Time236470 - Track Number14 - Track Count15 - Date Modified2007-04-09T08:36:48Z - Date Added2009-10-03T14:58:20Z - Bit Rate192 - Sample Rate44100 - Normalization1083 - Compilation - Artwork Count1 - Persistent ID47AF7DE2425872F6 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Greatest%20Hits%20Of%20The%2070s/14%20Yeh%20Jeevan%20Hai.m4a - File Folder Count4 - Library Folder Count1 - - 5436 - - Track ID5436 - NameAchha To Hum Chalte Hain - Artistkishore kumar - ComposerVarious - AlbumGreatest Hits Of The 70s - GenreHindi Old hits - KindAAC audio file - Size7150496 - Total Time295124 - Track Number15 - Track Count15 - Date Modified2007-04-09T08:36:50Z - Date Added2009-10-03T14:58:20Z - Bit Rate192 - Sample Rate44100 - Normalization3820 - Compilation - Artwork Count1 - Persistent ID63691BE44E8BFFC5 - Disabled - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Greatest%20Hits%20Of%20The%2070s/15%20Achha%20To%20Hum%20Chalte%20Hain.m4a - File Folder Count4 - Library Folder Count1 - - 5438 - - Track ID5438 - NameDancing Queen - ArtistABBA - ComposerStig Anderson - AlbumGold - GenrePop - KindAAC audio file - Size7592555 - Total Time231533 - Disc Number1 - Disc Count1 - Track Number1 - Track Count19 - Year1976 - BPM100 - Date Modified2008-10-17T16:48:45Z - Date Added2009-10-03T14:58:20Z - Bit Rate256 - Sample Rate44100 - Normalization5002 - Compilation - Artwork Count1 - Persistent ID69699F64765E1DDA - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Gold/01%20Dancing%20Queen.m4a - File Folder Count4 - Library Folder Count1 - - 5440 - - Track ID5440 - NameKnowing Me, Knowing You - ArtistABBA - ComposerStig Anderson - AlbumGold - GenrePop - KindAAC audio file - Size7930587 - Total Time243640 - Disc Number1 - Disc Count1 - Track Number2 - Track Count19 - Year1976 - Date Modified2008-10-17T16:48:45Z - Date Added2009-10-03T14:58:20Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3456926761 - Play Date UTC2013-07-17T11:56:01Z - Normalization3850 - Compilation - Artwork Count1 - Persistent ID938621E11952D6D5 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Gold/02%20Knowing%20Me,%20Knowing%20You.m4a - File Folder Count4 - Library Folder Count1 - - 5442 - - Track ID5442 - NameTake A Chance On Me - ArtistABBA - ComposerBjörn Ulvaeus - AlbumGold - GenrePop - KindAAC audio file - Size8004000 - Total Time246400 - Disc Number1 - Disc Count1 - Track Number3 - Track Count19 - Year1978 - Date Modified2008-10-17T16:48:44Z - Date Added2009-10-03T14:58:20Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3456927007 - Play Date UTC2013-07-17T12:00:07Z - Normalization2710 - Compilation - Artwork Count1 - Persistent ID877A59846416E2D2 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Gold/03%20Take%20A%20Chance%20On%20Me.m4a - File Folder Count4 - Library Folder Count1 - - 5444 - - Track ID5444 - NameMamma Mia - ArtistABBA - ComposerBjörn Ulvaeus - AlbumGold - GenrePop - KindAAC audio file - Size6940296 - Total Time213466 - Disc Number1 - Disc Count1 - Track Number4 - Track Count19 - Year1975 - Date Modified2008-10-17T16:48:43Z - Date Added2009-10-03T14:58:21Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3456927221 - Play Date UTC2013-07-17T12:03:41Z - Normalization3397 - Compilation - Artwork Count1 - Persistent ID9C7DF0D8D39E9DDB - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Gold/04%20Mamma%20Mia.m4a - File Folder Count4 - Library Folder Count1 - - 5446 - - Track ID5446 - NameLay All Your Love On Me - ArtistABBA - ComposerBjörn Ulvaeus - AlbumGold - GenrePop - KindAAC audio file - Size8971469 - Total Time275466 - Disc Number1 - Disc Count1 - Track Number5 - Track Count19 - Year1980 - Date Modified2008-10-17T16:48:43Z - Date Added2009-10-03T14:58:21Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3456927496 - Play Date UTC2013-07-17T12:08:16Z - Normalization2796 - Compilation - Artwork Count1 - Persistent ID652ABFC8E2A51188 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Gold/05%20Lay%20All%20Your%20Love%20On%20Me.m4a - File Folder Count4 - Library Folder Count1 - - 5448 - - Track ID5448 - NameSuper Trouper - ArtistABBA - ComposerBjörn Ulvaeus - AlbumGold - GenrePop - KindAAC audio file - Size8262408 - Total Time253693 - Disc Number1 - Disc Count1 - Track Number6 - Track Count19 - Year1980 - Date Modified2008-10-17T16:48:42Z - Date Added2009-10-03T14:58:21Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3456927750 - Play Date UTC2013-07-17T12:12:30Z - Normalization2436 - Compilation - Artwork Count1 - Persistent IDCF89D15699CAEC23 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Gold/06%20Super%20Trouper.m4a - File Folder Count4 - Library Folder Count1 - - 5450 - - Track ID5450 - NameI Have A Dream - ArtistABBA - ComposerBjörn Ulvaeus - AlbumGold - GenrePop - KindAAC audio file - Size9295545 - Total Time282866 - Disc Number1 - Disc Count1 - Track Number7 - Track Count19 - Year1979 - Date Modified2008-10-17T16:48:42Z - Date Added2009-10-03T14:58:21Z - Bit Rate256 - Sample Rate44100 - Normalization1498 - Compilation - Artwork Count1 - Persistent ID54D4226147CF39A3 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Gold/07%20I%20Have%20A%20Dream.m4a - File Folder Count4 - Library Folder Count1 - - 5452 - - Track ID5452 - NameThe Winner Takes It All - ArtistABBA - ComposerBjörn Ulvaeus - AlbumGold - GenrePop - KindAAC audio file - Size9649861 - Total Time294666 - Disc Number1 - Disc Count1 - Track Number8 - Track Count19 - Year1980 - Date Modified2008-10-17T16:48:41Z - Date Added2009-10-03T14:58:21Z - Bit Rate256 - Sample Rate44100 - Normalization4005 - Compilation - Artwork Count1 - Sort NameWinner Takes It All - Persistent IDA4055EABA9B2D39C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Gold/08%20The%20Winner%20Takes%20It%20All.m4a - File Folder Count4 - Library Folder Count1 - - 5454 - - Track ID5454 - NameMoney, Money, Money - ArtistABBA - ComposerBjörn Ulvaeus - AlbumGold - GenrePop - KindAAC audio file - Size6092508 - Total Time186066 - Disc Number1 - Disc Count1 - Track Number9 - Track Count19 - Year1976 - Date Modified2008-10-17T16:48:40Z - Date Added2009-10-03T14:58:21Z - Bit Rate256 - Sample Rate44100 - Normalization3432 - Compilation - Artwork Count1 - Persistent ID291062C077E99A1B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Gold/09%20Money,%20Money,%20Money.m4a - File Folder Count4 - Library Folder Count1 - - 5456 - - Track ID5456 - NameS.O.S. - ArtistABBA - ComposerStig Anderson - AlbumGold - GenrePop - KindAAC audio file - Size6583672 - Total Time200973 - Disc Number1 - Disc Count1 - Track Number10 - Track Count19 - Year1975 - Date Modified2008-10-17T16:48:40Z - Date Added2009-10-03T14:58:21Z - Bit Rate256 - Sample Rate44100 - Normalization4887 - Compilation - Artwork Count1 - Persistent ID8D054CC6EFD5EEEF - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Gold/10%20S.O.S..m4a - File Folder Count4 - Library Folder Count1 - - 5458 - - Track ID5458 - NameChiquitita - ArtistABBA - ComposerBjörn Ulvaeus - AlbumGold - GenrePop - KindAAC audio file - Size10653223 - Total Time324626 - Disc Number1 - Disc Count1 - Track Number11 - Track Count19 - Year1979 - Date Modified2008-10-17T16:48:39Z - Date Added2009-10-03T14:58:21Z - Bit Rate256 - Sample Rate44100 - Normalization3477 - Compilation - Artwork Count1 - Persistent ID924011CFC8BB9EB7 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Gold/11%20Chiquitita.m4a - File Folder Count4 - Library Folder Count1 - - 5460 - - Track ID5460 - NameFernando - ArtistABBA - ComposerBjörn Ulvaeus - AlbumGold - GenrePop - KindAAC audio file - Size8295557 - Total Time254466 - Disc Number1 - Disc Count1 - Track Number12 - Track Count19 - Year1976 - Date Modified2008-10-17T16:48:39Z - Date Added2009-10-03T14:58:22Z - Bit Rate256 - Sample Rate44100 - Normalization2432 - Compilation - Artwork Count1 - Persistent IDCD457E561ED05DF6 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Gold/12%20Fernando.m4a - File Folder Count4 - Library Folder Count1 - - 5462 - - Track ID5462 - NameVoulez Vous - ArtistABBA - ComposerBjörn Ulvaeus - AlbumGold - GenrePop - KindAAC audio file - Size10089112 - Total Time310973 - Disc Number1 - Disc Count1 - Track Number13 - Track Count19 - Year1979 - Date Modified2008-10-17T16:48:38Z - Date Added2009-10-03T14:58:22Z - Bit Rate256 - Sample Rate44100 - Normalization3619 - Compilation - Artwork Count1 - Persistent ID22D81BAEFB3B3FAA - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Gold/13%20Voulez%20Vous.m4a - File Folder Count4 - Library Folder Count1 - - 5464 - - Track ID5464 - NameGimme! Gimme! Gimme! (A Man After Midnight) - ArtistABBA - ComposerBjörn Ulvaeus - AlbumGold - GenrePop - KindAAC audio file - Size9501636 - Total Time292760 - Disc Number1 - Disc Count1 - Track Number14 - Track Count19 - Year1979 - Date Modified2008-10-17T16:48:37Z - Date Added2009-10-03T14:58:22Z - Bit Rate256 - Sample Rate44100 - Normalization1921 - Compilation - Artwork Count1 - Persistent ID8D139F6EB08A807D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Gold/14%20Gimme!%20Gimme!%20Gimme!%20(A%20Man%20After%20Midnight).m4a - File Folder Count4 - Library Folder Count1 - - 5466 - - Track ID5466 - NameDoes Your Mother Know - ArtistABBA - ComposerBjörn Ulvaeus - AlbumGold - GenrePop - KindAAC audio file - Size6349462 - Total Time193506 - Disc Number1 - Disc Count1 - Track Number15 - Track Count19 - Year1979 - Date Modified2008-10-17T16:48:37Z - Date Added2009-10-03T14:58:22Z - Bit Rate256 - Sample Rate44100 - Skip Count1 - Skip Date2014-06-05T05:28:31Z - Normalization5592 - Compilation - Artwork Count1 - Persistent ID047FD530ED7A86F2 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Gold/15%20Does%20Your%20Mother%20Know.m4a - File Folder Count4 - Library Folder Count1 - - 5468 - - Track ID5468 - NameOne Of Us - ArtistABBA - ComposerBjörn Ulvaeus - AlbumGold - GenrePop - KindAAC audio file - Size7694568 - Total Time237360 - Disc Number1 - Disc Count1 - Track Number16 - Track Count19 - Year1981 - Date Modified2008-10-17T16:48:36Z - Date Added2009-10-03T14:58:22Z - Bit Rate256 - Sample Rate44100 - Skip Count1 - Skip Date2014-06-05T05:28:42Z - Normalization2689 - Compilation - Artwork Count1 - Persistent IDA11D93AAA252984E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Gold/16%20One%20Of%20Us.m4a - File Folder Count4 - Library Folder Count1 - - 5470 - - Track ID5470 - NameThe Name Of The Game - ArtistABBA - ComposerStig Anderson - AlbumGold - GenrePop - KindAAC audio file - Size9561098 - Total Time293773 - Disc Number1 - Disc Count1 - Track Number17 - Track Count19 - Year1977 - Date Modified2008-10-17T16:48:36Z - Date Added2009-10-03T14:58:22Z - Bit Rate256 - Sample Rate44100 - Normalization2629 - Compilation - Artwork Count1 - Sort NameName Of The Game - Persistent ID5CEAA638B0669E3D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Gold/17%20The%20Name%20Of%20The%20Game.m4a - File Folder Count4 - Library Folder Count1 - - 5472 - - Track ID5472 - NameThank You For The Music - ArtistABBA - ComposerBjörn Ulvaeus - AlbumGold - GenrePop - KindAAC audio file - Size7506503 - Total Time229666 - Disc Number1 - Disc Count1 - Track Number18 - Track Count19 - Year1983 - Date Modified2008-10-17T16:48:35Z - Date Added2009-10-03T14:58:22Z - Bit Rate256 - Sample Rate44100 - Normalization2792 - Compilation - Artwork Count1 - Persistent ID81C352243C42D0AE - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Gold/18%20Thank%20You%20For%20The%20Music.m4a - File Folder Count4 - Library Folder Count1 - - 5474 - - Track ID5474 - NameWaterloo - ArtistABBA - ComposerStig Anderson - AlbumGold - GenrePop - KindAAC audio file - Size5367769 - Total Time168093 - Disc Number1 - Disc Count1 - Track Number19 - Track Count19 - Year1974 - BPM146 - Date Modified2008-10-17T16:48:35Z - Date Added2009-10-03T14:58:22Z - Bit Rate256 - Sample Rate44100 - Skip Count1 - Skip Date2014-06-05T05:33:43Z - Normalization7048 - Compilation - Artwork Count1 - Persistent ID359746D7F9784FCB - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Gold/19%20Waterloo.m4a - File Folder Count4 - Library Folder Count1 - - 5476 - - Track ID5476 - NameClosing - ArtistPhilip Glass - Album ArtistPhilip Glass Ensemble: Philip Glass - ComposerPHILIP GLASS (b. 1937) - AlbumGlassworks - Expanded Edition - GenreClassical - KindAAC audio file - Size8766433 - Total Time363760 - Disc Number1 - Disc Count1 - Track Number6 - Track Count11 - Year2003 - Date Modified2007-11-15T20:59:04Z - Date Added2009-10-03T14:58:23Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3467304521 - Play Date UTC2013-11-14T14:38:41Z - Normalization481 - Compilation - Artwork Count1 - Persistent ID5D1C8D96DED98F70 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Glassworks%20-%20Expanded%20Edition/06%20Closing.m4a - File Folder Count4 - Library Folder Count1 - - 5478 - - Track ID5478 - NameDance I - ArtistPhilip Glass - Album ArtistMichael Riesman: Philip Glass Ensemble - AlbumGlassworks - Expanded Edition - GenreClassical - KindAAC audio file - Size1729636 - Total Time70600 - Disc Number1 - Disc Count1 - Track Number7 - Track Count11 - Year1987 - Date Modified2007-11-15T20:58:32Z - Date Added2009-10-03T14:58:23Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3368624858 - Play Date UTC2010-09-29T11:37:38Z - Normalization458 - Compilation - Artwork Count1 - Persistent ID9463EBF421DDA660 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Glassworks%20-%20Expanded%20Edition/07%20Dance%20I.m4a - File Folder Count4 - Library Folder Count1 - - 5480 - - Track ID5480 - NameDance II - ArtistPhilip Glass - Album ArtistMichael Riesman: Philip Glass Ensemble - AlbumGlassworks - Expanded Edition - GenreClassical - KindAAC audio file - Size8339757 - Total Time342440 - Disc Number1 - Disc Count1 - Track Number8 - Track Count11 - Year1987 - Date Modified2007-11-15T20:58:32Z - Date Added2009-10-03T14:58:23Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3368625200 - Play Date UTC2010-09-29T11:43:20Z - Normalization288 - Compilation - Artwork Count1 - Persistent IDC67DE4DCB69182EE - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Glassworks%20-%20Expanded%20Edition/08%20Dance%20II.m4a - File Folder Count4 - Library Folder Count1 - - 5482 - - Track ID5482 - NameDance IX - ArtistPhilip Glass - Album ArtistMichael Riesman: Philip Glass Ensemble - AlbumGlassworks - Expanded Edition - GenreClassical - KindAAC audio file - Size11894650 - Total Time490706 - Disc Number1 - Disc Count1 - Track Number11 - Track Count11 - Year1987 - Date Modified2007-11-15T20:58:32Z - Date Added2009-10-03T14:58:23Z - Bit Rate192 - Sample Rate44100 - Normalization1274 - Compilation - Artwork Count1 - Persistent ID074FD54A89BA5272 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Glassworks%20-%20Expanded%20Edition/11%20Dance%20IX.m4a - File Folder Count4 - Library Folder Count1 - - 5484 - - Track ID5484 - NameDance V - ArtistPhilip Glass - Album ArtistMichael Riesman: Philip Glass Ensemble - AlbumGlassworks - Expanded Edition - GenreClassical - KindAAC audio file - Size4983122 - Total Time205026 - Disc Number1 - Disc Count1 - Track Number9 - Track Count11 - Year1987 - Date Modified2007-11-15T20:58:32Z - Date Added2009-10-03T14:58:23Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3368625405 - Play Date UTC2010-09-29T11:46:45Z - Normalization286 - Compilation - Artwork Count1 - Persistent IDA1B23DCB0AB3537A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Glassworks%20-%20Expanded%20Edition/09%20Dance%20V.m4a - File Folder Count4 - Library Folder Count1 - - 5486 - - Track ID5486 - NameDance VIII - ArtistPhilip Glass - Album ArtistMichael Riesman: Philip Glass Ensemble - AlbumGlassworks - Expanded Edition - GenreClassical - KindAAC audio file - Size7286847 - Total Time297933 - Disc Number1 - Disc Count1 - Track Number10 - Track Count11 - Year1987 - Date Modified2007-11-15T20:58:32Z - Date Added2009-10-03T14:58:23Z - Bit Rate192 - Sample Rate44100 - Normalization496 - Compilation - Artwork Count1 - Persistent IDED2272D47AAD9D55 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Glassworks%20-%20Expanded%20Edition/10%20Dance%20VIII.m4a - File Folder Count4 - Library Folder Count1 - - 5488 - - Track ID5488 - NameFacades - ArtistPhilip Glass - Album ArtistPhilip Glass Ensemble: Philip Glass - ComposerPHILIP GLASS (b. 1937) - AlbumGlassworks - Expanded Edition - GenreClassical - KindAAC audio file - Size10721195 - Total Time441200 - Disc Number1 - Disc Count1 - Track Number5 - Track Count11 - Year2003 - Date Modified2007-11-15T20:59:04Z - Date Added2009-10-03T14:58:23Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3467304157 - Play Date UTC2013-11-14T14:32:37Z - Normalization686 - Compilation - Artwork Count1 - Persistent ID9A9AB1938901DC9B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Glassworks%20-%20Expanded%20Edition/05%20Facades.m4a - File Folder Count4 - Library Folder Count1 - - 5490 - - Track ID5490 - NameFloe - ArtistPhilip Glass - Album ArtistPhilip Glass Ensemble: Philip Glass - ComposerPHILIP GLASS (b. 1937) - AlbumGlassworks - Expanded Edition - GenreClassical - KindAAC audio file - Size8732842 - Total Time359506 - Disc Number1 - Disc Count1 - Track Number2 - Track Count11 - Year2003 - Date Modified2007-11-15T20:59:04Z - Date Added2009-10-03T14:58:23Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3467302891 - Play Date UTC2013-11-14T14:11:31Z - Normalization1174 - Compilation - Artwork Count1 - Persistent IDB35CDAA793BF375C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Glassworks%20-%20Expanded%20Edition/02%20Floe.m4a - File Folder Count4 - Library Folder Count1 - - 5492 - - Track ID5492 - NameIslands - ArtistPhilip Glass - Album ArtistPhilip Glass Ensemble: Philip Glass - ComposerPHILIP GLASS (b. 1937) - AlbumGlassworks - Expanded Edition - GenreClassical - KindAAC audio file - Size11223667 - Total Time460360 - Disc Number1 - Disc Count1 - Track Number3 - Track Count11 - Year2003 - Date Modified2007-11-15T20:59:04Z - Date Added2009-10-03T14:58:23Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3467303351 - Play Date UTC2013-11-14T14:19:11Z - Normalization633 - Compilation - Artwork Count1 - Persistent ID891FB58B6951C84F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Glassworks%20-%20Expanded%20Edition/03%20Islands.m4a - File Folder Count4 - Library Folder Count1 - - 5494 - - Track ID5494 - NameOpening - ArtistPhilip Glass - Album ArtistPhilip Glass Ensemble: Philip Glass - ComposerPHILIP GLASS (b. 1937) - AlbumGlassworks - Expanded Edition - GenreClassical - KindAAC audio file - Size9431454 - Total Time384893 - Disc Number1 - Disc Count1 - Track Number1 - Track Count11 - Year2003 - Date Modified2007-11-15T20:59:04Z - Date Added2009-10-03T14:58:24Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3467302532 - Play Date UTC2013-11-14T14:05:32Z - Normalization320 - Compilation - Artwork Count1 - Persistent IDAC86A4448DF5CC32 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Glassworks%20-%20Expanded%20Edition/01%20Opening.m4a - File Folder Count4 - Library Folder Count1 - - 5496 - - Track ID5496 - NameRubric - ArtistPhilip Glass - Album ArtistPhilip Glass Ensemble: Philip Glass - ComposerPHILIP GLASS (b. 1937) - AlbumGlassworks - Expanded Edition - GenreClassical - KindAAC audio file - Size8852978 - Total Time364573 - Disc Number1 - Disc Count1 - Track Number4 - Track Count11 - Year2003 - Date Modified2007-11-15T20:59:04Z - Date Added2009-10-03T14:58:24Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3467303716 - Play Date UTC2013-11-14T14:25:16Z - Normalization1766 - Compilation - Artwork Count1 - Persistent ID2FA38470791C117C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Glassworks%20-%20Expanded%20Edition/04%20Rubric.m4a - File Folder Count4 - Library Folder Count1 - - 5498 - - Track ID5498 - NameThe English Patient - ArtistGabriel Yared - Academy Of St. Martin In The Fields - ComposerGabriel Yared - AlbumEnglish Patient - GenreClassical - KindAAC audio file - Size5266976 - Total Time217314 - Disc Number1 - Disc Count1 - Track Number1 - Track Count28 - Year1996 - Date Modified2006-07-31T04:23:32Z - Date Added2009-10-03T14:58:24Z - Bit Rate192 - Sample Rate44100 - Play Count4 - Play Date3484737444 - Play Date UTC2014-06-04T09:07:24Z - Normalization618 - Compilation - Artwork Count1 - Sort NameEnglish Patient - Persistent ID4C3E47F1A0C5165E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/01%20The%20English%20Patient.m4a - File Folder Count4 - Library Folder Count1 - - 5500 - - Track ID5500 - NameA Retreat - ArtistGabriel Yared - Academy Of St. Martin In The Fields - ComposerGabriel Yared - AlbumEnglish Patient - GenreClassical - KindAAC audio file - Size2123996 - Total Time86260 - Disc Number1 - Disc Count1 - Track Number2 - Track Count28 - Year1996 - Date Modified2006-07-31T04:23:32Z - Date Added2009-10-03T14:58:24Z - Bit Rate192 - Sample Rate44100 - Play Count3 - Play Date3484737531 - Play Date UTC2014-06-04T09:08:51Z - Normalization428 - Compilation - Artwork Count1 - Sort NameRetreat - Persistent IDCBC8F819CFC4C526 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/02%20A%20Retreat.m4a - File Folder Count4 - Library Folder Count1 - - 5502 - - Track ID5502 - NameRupert Bear - ArtistGabriel Yared - Academy Of St. Martin In The Fields - ComposerGabriel Yared - AlbumEnglish Patient - GenreClassical - KindAAC audio file - Size2138327 - Total Time87003 - Disc Number1 - Disc Count1 - Track Number3 - Track Count28 - Year1996 - Date Modified2006-07-31T04:23:32Z - Date Added2009-10-03T14:58:24Z - Bit Rate192 - Sample Rate44100 - Play Count3 - Play Date3484737618 - Play Date UTC2014-06-04T09:10:18Z - Normalization814 - Compilation - Artwork Count1 - Persistent IDD238E33657334788 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/03%20Rupert%20Bear.m4a - File Folder Count4 - Library Folder Count1 - - 5504 - - Track ID5504 - NameWhat Else Do You Love - ArtistGabriel Yared - Academy Of St. Martin In The Fields - ComposerGabriel Yared - AlbumEnglish Patient - GenreClassical - KindAAC audio file - Size1634656 - Total Time65873 - Disc Number1 - Disc Count1 - Track Number4 - Track Count28 - Year1996 - Date Modified2006-07-31T04:23:32Z - Date Added2009-10-03T14:58:24Z - Bit Rate192 - Sample Rate44100 - Play Count3 - Play Date3484737683 - Play Date UTC2014-06-04T09:11:23Z - Normalization352 - Compilation - Artwork Count1 - Persistent ID612A7D10F498BAED - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/04%20What%20Else%20Do%20You%20Love.m4a - File Folder Count4 - Library Folder Count1 - - 5506 - - Track ID5506 - NameWhy Picton? - ArtistGabriel Yared - Academy Of St. Martin In The Fields - ComposerGabriel Yared - AlbumEnglish Patient - GenreClassical - KindAAC audio file - Size1711740 - Total Time69077 - Disc Number1 - Disc Count1 - Track Number5 - Track Count28 - Year1996 - Date Modified2006-07-31T04:23:32Z - Date Added2009-10-03T14:58:24Z - Bit Rate192 - Sample Rate44100 - Play Count3 - Play Date3484737752 - Play Date UTC2014-06-04T09:12:32Z - Normalization508 - Compilation - Artwork Count1 - Persistent IDF155ECF082404F21 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/05%20Why%20Picton_.m4a - File Folder Count4 - Library Folder Count1 - - 5508 - - Track ID5508 - NameCheek To Cheek - ArtistFred Astaire - ComposerGabriel Yared - AlbumEnglish Patient - GenreClassical - KindAAC audio file - Size4765385 - Total Time200340 - Disc Number1 - Disc Count1 - Track Number6 - Track Count28 - Year1996 - Date Modified2006-07-31T04:23:32Z - Date Added2009-10-03T14:58:24Z - Bit Rate192 - Sample Rate44100 - Play Count3 - Play Date3484737953 - Play Date UTC2014-06-04T09:15:53Z - Normalization1257 - Compilation - Artwork Count1 - Persistent ID794315A154A1C873 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/06%20Cheek%20To%20Cheek.m4a - File Folder Count4 - Library Folder Count1 - - 5510 - - Track ID5510 - NameKip's Lights - ArtistGabriel Yared - Academy Of St. Martin In The Fields - ComposerGabriel Yared - AlbumEnglish Patient - GenreClassical - KindAAC audio file - Size2180241 - Total Time89743 - Disc Number1 - Disc Count1 - Track Number7 - Track Count28 - Year1996 - Date Modified2006-07-31T04:23:32Z - Date Added2009-10-03T14:58:25Z - Bit Rate192 - Sample Rate44100 - Play Count3 - Play Date3484738042 - Play Date UTC2014-06-04T09:17:22Z - Normalization1229 - Compilation - Artwork Count1 - Persistent IDF7C7AD26AFB41DE7 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/07%20Kip's%20Lights.m4a - File Folder Count4 - Library Folder Count1 - - 5512 - - Track ID5512 - NameHana's Curse - ArtistGabriel Yared - Academy Of St. Martin In The Fields - ComposerGabriel Yared - AlbumEnglish Patient - GenreClassical - KindAAC audio file - Size3205805 - Total Time131400 - Disc Number1 - Disc Count1 - Track Number8 - Track Count28 - Year1996 - Date Modified2006-07-31T04:23:32Z - Date Added2009-10-03T14:58:25Z - Bit Rate192 - Sample Rate44100 - Play Count3 - Play Date3484738174 - Play Date UTC2014-06-04T09:19:34Z - Normalization931 - Compilation - Artwork Count1 - Persistent IDC7027955CB3530DE - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/08%20Hana's%20Curse.m4a - File Folder Count4 - Library Folder Count1 - - 5514 - - Track ID5514 - NameI'll Always Go Back To That Church - ArtistGabriel Yared - Academy Of St. Martin In The Fields - ComposerGabriel Yared - AlbumEnglish Patient - GenreClassical - KindAAC audio file - Size2786931 - Total Time113845 - Disc Number1 - Disc Count1 - Track Number9 - Track Count28 - Year1996 - Date Modified2006-07-31T04:23:32Z - Date Added2009-10-03T14:58:25Z - Bit Rate192 - Sample Rate44100 - Play Count3 - Play Date3484738288 - Play Date UTC2014-06-04T09:21:28Z - Normalization661 - Compilation - Artwork Count1 - Persistent IDDBF0FA5525F7D7E8 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/09%20I'll%20Always%20Go%20Back%20To%20That%20Church.m4a - File Folder Count4 - Library Folder Count1 - - 5516 - - Track ID5516 - NameBlack Nights - ArtistGabriel Yared - Academy Of St. Martin In The Fields - ComposerGabriel Yared - AlbumEnglish Patient - GenreClassical - KindAAC audio file - Size2854485 - Total Time117143 - Disc Number1 - Disc Count1 - Track Number10 - Track Count28 - Year1996 - Date Modified2006-07-31T04:23:32Z - Date Added2009-10-03T14:58:25Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3484738405 - Play Date UTC2014-06-04T09:23:25Z - Normalization228 - Compilation - Artwork Count1 - Persistent IDE311869DEA108BC7 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/10%20Black%20Nights.m4a - File Folder Count4 - Library Folder Count1 - - 5518 - - Track ID5518 - NameSwoon, I'll Catch You - ArtistGabriel Yared - Academy Of St. Martin In The Fields - ComposerGabriel Yared - AlbumEnglish Patient - GenreClassical - KindAAC audio file - Size2755646 - Total Time112615 - Disc Number1 - Disc Count1 - Track Number11 - Track Count28 - Year1996 - Date Modified2006-07-31T04:23:32Z - Date Added2009-10-03T14:58:25Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3365788220 - Play Date UTC2010-08-27T15:40:20Z - Normalization1155 - Compilation - Artwork Count1 - Persistent ID3F7D26A37BA7AE71 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/11%20Swoon,%20I'll%20Catch%20You.m4a - File Folder Count4 - Library Folder Count1 - - 5520 - - Track ID5520 - NameAm I K. In Your Book? - ArtistGabriel Yared - Academy Of St. Martin In The Fields - ComposerGabriel Yared - AlbumEnglish Patient - GenreClassical - KindAAC audio file - Size1494150 - Total Time60022 - Disc Number1 - Disc Count1 - Track Number12 - Track Count28 - Year1996 - Date Modified2006-07-31T04:23:32Z - Date Added2009-10-03T14:58:25Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3365788280 - Play Date UTC2010-08-27T15:41:20Z - Normalization879 - Compilation - Artwork Count1 - Persistent ID8D1123CEE630D75C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/12%20Am%20I%20K.%20In%20Your%20Book_.m4a - File Folder Count4 - Library Folder Count1 - - 5522 - - Track ID5522 - NameLet Me Come In - ArtistGabriel Yared - Academy Of St. Martin In The Fields - ComposerGabriel Yared - AlbumEnglish Patient - GenreClassical - KindAAC audio file - Size3914110 - Total Time160773 - Disc Number1 - Disc Count1 - Track Number13 - Track Count28 - Year1996 - Date Modified2006-07-31T04:23:32Z - Date Added2009-10-03T14:58:25Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3365788440 - Play Date UTC2010-08-27T15:44:00Z - Normalization894 - Compilation - Artwork Count1 - Persistent IDB68303DCE85979FC - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/13%20Let%20Me%20Come%20In.m4a - File Folder Count4 - Library Folder Count1 - - 5524 - - Track ID5524 - NameWang Wang Blues - ArtistBenny Goodman - ComposerGabriel Yared - AlbumEnglish Patient - GenreClassical - KindAAC audio file - Size4098473 - Total Time173149 - Disc Number1 - Disc Count1 - Track Number14 - Track Count28 - Year1996 - Date Modified2006-07-31T04:23:32Z - Date Added2009-10-03T14:58:26Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3365788614 - Play Date UTC2010-08-27T15:46:54Z - Normalization1376 - Compilation - Artwork Count1 - Persistent IDE8B633ECCB4C2C39 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/14%20Wang%20Wang%20Blues.m4a - File Folder Count4 - Library Folder Count1 - - 5526 - - Track ID5526 - NameConvento Di Santa'Anna - ArtistGabriel Yared - Academy Of St. Martin In The Fields - ComposerGabriel Yared - AlbumEnglish Patient - GenreClassical - KindAAC audio file - Size13293694 - Total Time552215 - Disc Number1 - Disc Count1 - Track Number15 - Track Count28 - Year1996 - Date Modified2006-07-31T04:23:32Z - Date Added2009-10-03T14:58:26Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3365789166 - Play Date UTC2010-08-27T15:56:06Z - Normalization667 - Compilation - Artwork Count1 - Persistent ID34FA5586386FFB5F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/15%20Convento%20Di%20Santa'Anna.m4a - File Folder Count4 - Library Folder Count1 - - 5528 - - Track ID5528 - NameHerodotus - ArtistGabriel Yared - Academy Of St. Martin In The Fields - ComposerGabriel Yared - AlbumEnglish Patient - GenreClassical - KindAAC audio file - Size1666678 - Total Time71841 - Disc Number1 - Disc Count1 - Track Number16 - Track Count28 - Year1996 - Date Modified2006-07-31T04:23:32Z - Date Added2009-10-03T14:58:26Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3365789238 - Play Date UTC2010-08-27T15:57:18Z - Normalization1252 - Compilation - Artwork Count1 - Persistent ID2B9638B71AE3A7D6 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/16%20Herodotus.m4a - File Folder Count4 - Library Folder Count1 - - 5530 - - Track ID5530 - NameMuzsikás - Szerelem, Szerelem - ArtistMárta Sebestyén - ComposerGabriel Yared - AlbumEnglish Patient - GenreClassical - KindAAC audio file - Size6675676 - Total Time276687 - Disc Number1 - Disc Count1 - Track Number17 - Track Count28 - Year1996 - Date Modified2006-07-31T04:23:32Z - Date Added2009-10-03T14:58:26Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3365789514 - Play Date UTC2010-08-27T16:01:54Z - Normalization357 - Compilation - Artwork Count1 - Persistent IDD444698E2D389B95 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/17%20Muzsika%CC%81s%20-%20Szerelem,%20Szerelem.m4a - File Folder Count4 - Library Folder Count1 - - 5532 - - Track ID5532 - NameAsk Your Saint Who He's Killed - ArtistGabriel Yared - Academy Of St. Martin In The Fields - ComposerGabriel Yared - AlbumEnglish Patient - GenreClassical - KindAAC audio file - Size1731001 - Total Time69937 - Disc Number1 - Disc Count1 - Track Number18 - Track Count28 - Year1996 - Date Modified2006-07-31T04:23:32Z - Date Added2009-10-03T14:58:26Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3365789584 - Play Date UTC2010-08-27T16:03:04Z - Normalization179 - Compilation - Artwork Count1 - Persistent IDF92B7C707BEC44FA - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/18%20Ask%20Your%20Saint%20Who%20He's%20Killed.m4a - File Folder Count4 - Library Folder Count1 - - 5534 - - Track ID5534 - NameOne O'Clock Jump - ArtistBenny Goodman - ComposerGabriel Yared - AlbumEnglish Patient - GenreClassical - KindAAC audio file - Size4676267 - Total Time195951 - Disc Number1 - Disc Count1 - Track Number19 - Track Count28 - Year1996 - Date Modified2006-07-31T04:23:32Z - Date Added2009-10-03T14:58:26Z - Bit Rate192 - Sample Rate44100 - Normalization1031 - Compilation - Artwork Count1 - Persistent ID8DA2BEE53500D989 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/19%20One%20O'Clock%20Jump.m4a - File Folder Count4 - Library Folder Count1 - - 5536 - - Track ID5536 - NameI'll Be Back - ArtistGabriel Yared - Academy Of St. Martin In The Fields - ComposerGabriel Yared - AlbumEnglish Patient - GenreClassical - KindAAC audio file - Size5902990 - Total Time243320 - Disc Number1 - Disc Count1 - Track Number20 - Track Count28 - Year1996 - Date Modified2006-07-31T04:23:32Z - Date Added2009-10-03T14:58:26Z - Bit Rate192 - Sample Rate44100 - Normalization737 - Compilation - Artwork Count1 - Persistent ID255C447E4BD63D45 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/20%20I'll%20Be%20Back.m4a - File Folder Count4 - Library Folder Count1 - - 5538 - - Track ID5538 - NameLet Me Tell You About Winds - ArtistGabriel Yared - Academy Of St. Martin In The Fields - ComposerGabriel Yared - AlbumEnglish Patient - GenreClassical - KindAAC audio file - Size1505975 - Total Time60509 - Disc Number1 - Disc Count1 - Track Number21 - Track Count28 - Year1996 - Date Modified2006-07-31T04:23:32Z - Date Added2009-10-03T14:58:26Z - Bit Rate192 - Sample Rate44100 - Normalization1157 - Compilation - Artwork Count1 - Persistent ID91C3289A54BBB5B6 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/21%20Let%20Me%20Tell%20You%20About%20Winds.m4a - File Folder Count4 - Library Folder Count1 - - 5540 - - Track ID5540 - NameRead Me To Sleep - ArtistGabriel Yared - Academy Of St. Martin In The Fields - ComposerGabriel Yared - AlbumEnglish Patient - GenreClassical - KindAAC audio file - Size7279616 - Total Time301857 - Disc Number1 - Disc Count1 - Track Number22 - Track Count28 - Year1996 - Date Modified2006-07-31T04:23:32Z - Date Added2009-10-03T14:58:26Z - Bit Rate192 - Sample Rate44100 - Normalization1074 - Compilation - Artwork Count1 - Persistent ID1BAF64E178E3ECE3 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/22%20Read%20Me%20To%20Sleep.m4a - File Folder Count4 - Library Folder Count1 - - 5542 - - Track ID5542 - NameThe Cave Of Swimmers - ArtistGabriel Yared - Academy Of St. Martin In The Fields - ComposerGabriel Yared - AlbumEnglish Patient - GenreClassical - KindAAC audio file - Size2947567 - Total Time120533 - Disc Number1 - Disc Count1 - Track Number23 - Track Count28 - Year1996 - Date Modified2006-07-31T04:23:32Z - Date Added2009-10-03T14:58:27Z - Bit Rate192 - Sample Rate44100 - Normalization1088 - Compilation - Artwork Count1 - Sort NameCave Of Swimmers - Persistent ID7B2A38C4EB28FC27 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/23%20The%20Cave%20Of%20Swimmers.m4a - File Folder Count4 - Library Folder Count1 - - 5544 - - Track ID5544 - NameWhere Or When - ArtistShepheard's Hotel Jazz Orchestra - ComposerGabriel Yared - AlbumEnglish Patient - GenreClassical - KindAAC audio file - Size3299982 - Total Time139016 - Disc Number1 - Disc Count1 - Track Number24 - Track Count28 - Year1996 - Date Modified2006-07-31T04:23:32Z - Date Added2009-10-03T14:58:27Z - Bit Rate192 - Sample Rate44100 - Normalization1084 - Compilation - Artwork Count1 - Persistent ID7738C27FE9F7E9F1 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/24%20Where%20Or%20When.m4a - File Folder Count4 - Library Folder Count1 - - 5546 - - Track ID5546 - NameAria From The Goldberg Variations - ArtistJulie Steinberg - ComposerGabriel Yared - AlbumEnglish Patient - GenreClassical - KindAAC audio file - Size4418855 - Total Time184481 - Disc Number1 - Disc Count1 - Track Number25 - Track Count28 - Year1996 - Date Modified2006-07-31T04:23:32Z - Date Added2009-10-03T14:58:27Z - Bit Rate192 - Sample Rate44100 - Normalization290 - Compilation - Artwork Count1 - Persistent ID3092478A17DB6C29 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/25%20Aria%20From%20The%20Goldberg%20Variations.m4a - File Folder Count4 - Library Folder Count1 - - 5548 - - Track ID5548 - NameCheek To Cheek - ArtistElla Fitzgerald - ComposerGabriel Yared - AlbumEnglish Patient - GenreClassical - KindAAC audio file - Size5439860 - Total Time227089 - Disc Number1 - Disc Count1 - Track Number26 - Track Count28 - Year1996 - Date Modified2006-07-31T04:23:32Z - Date Added2009-10-03T14:58:27Z - Bit Rate192 - Sample Rate44100 - Normalization1400 - Compilation - Artwork Count1 - Persistent ID6C75078951819EAB - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/26%20Cheek%20To%20Cheek.m4a - File Folder Count4 - Library Folder Count1 - - 5550 - - Track ID5550 - NameAs Far As Florence - ArtistGabriel Yared - Academy Of St. Martin In The Fields - ComposerGabriel Yared - AlbumEnglish Patient - GenreClassical - KindAAC audio file - Size7569637 - Total Time312306 - Disc Number1 - Disc Count1 - Track Number27 - Track Count28 - Year1996 - Date Modified2006-07-31T04:23:34Z - Date Added2009-10-03T14:58:27Z - Bit Rate192 - Sample Rate44100 - Normalization890 - Compilation - Artwork Count1 - Persistent IDD90D9CEA48CD95DD - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/27%20As%20Far%20As%20Florence.m4a - File Folder Count4 - Library Folder Count1 - - 5552 - - Track ID5552 - NameÉn Csak AZT Csodálom (Lullaby For Katharine) - ArtistMárta Sebestyén - ComposerGabriel Yared - AlbumEnglish Patient - GenreClassical - KindAAC audio file - Size1743363 - Total Time70401 - Disc Number1 - Disc Count1 - Track Number28 - Track Count28 - Year1996 - Date Modified2006-07-31T04:23:34Z - Date Added2009-10-03T14:58:27Z - Bit Rate192 - Sample Rate44100 - Normalization74 - Compilation - Artwork Count1 - Persistent IDEC84DC92D57E6691 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/28%20E%CC%81n%20Csak%20AZT%20Csoda%CC%81lom%20(Lullaby%20For%20Katharine).m4a - File Folder Count4 - Library Folder Count1 - - 5554 - - Track ID5554 - NameHappiness - ArtistSangeetha Shankar, Ronu Majumdar - AlbumEmotions In Life - GenreWorld - KindAAC audio file - Size9006379 - Total Time375209 - Track Number1 - Track Count11 - Year1996 - Date Modified2006-07-30T09:01:42Z - Date Added2009-10-03T14:58:27Z - Bit Rate192 - Sample Rate44100 - Normalization1413 - Compilation - Artwork Count1 - Persistent ID1E9E082DE877051E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Emotions%20In%20Life/01%20Happiness.m4a - File Folder Count4 - Library Folder Count1 - - 5556 - - Track ID5556 - NamePeace - ArtistSangeetha Shankar, Ronu Majumdar - AlbumEmotions In Life - GenreWorld - KindAAC audio file - Size9652703 - Total Time403352 - Track Number2 - Track Count11 - Year1996 - Date Modified2006-07-30T09:01:42Z - Date Added2009-10-03T14:58:28Z - Bit Rate192 - Sample Rate44100 - Normalization909 - Compilation - Artwork Count1 - Persistent IDCEB69A12B3E984FF - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Emotions%20In%20Life/02%20Peace.m4a - File Folder Count4 - Library Folder Count1 - - 5558 - - Track ID5558 - NameFear - ArtistSangeetha Shankar, Ronu Majumdar - AlbumEmotions In Life - GenreWorld - KindAAC audio file - Size4773777 - Total Time198738 - Track Number3 - Track Count11 - Year1996 - Date Modified2006-07-30T09:01:42Z - Date Added2009-10-03T14:58:28Z - Bit Rate192 - Sample Rate44100 - Normalization920 - Compilation - Artwork Count1 - Persistent ID84F52CEC7026F460 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Emotions%20In%20Life/03%20Fear.m4a - File Folder Count4 - Library Folder Count1 - - 5560 - - Track ID5560 - NameWonder - ArtistSangeetha Shankar, Ronu Majumdar - AlbumEmotions In Life - GenreWorld - KindAAC audio file - Size4402910 - Total Time184968 - Track Number4 - Track Count11 - Year1996 - Date Modified2006-07-30T09:01:42Z - Date Added2009-10-03T14:58:28Z - Bit Rate192 - Sample Rate44100 - Normalization752 - Compilation - Artwork Count1 - Persistent IDECF6888F27EB9AEB - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Emotions%20In%20Life/04%20Wonder.m4a - File Folder Count4 - Library Folder Count1 - - 5562 - - Track ID5562 - NameRomance - ArtistSangeetha Shankar, Ronu Majumdar - AlbumEmotions In Life - GenreWorld - KindAAC audio file - Size10385297 - Total Time432539 - Track Number5 - Track Count11 - Year1996 - Date Modified2006-07-30T09:01:44Z - Date Added2009-10-03T14:58:28Z - Bit Rate192 - Sample Rate44100 - Normalization867 - Compilation - Artwork Count1 - Persistent IDFE9DFCBEFF7F6A20 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Emotions%20In%20Life/05%20Romance.m4a - File Folder Count4 - Library Folder Count1 - - 5564 - - Track ID5564 - NameValour - ArtistSangeetha Shankar, Ronu Majumdar - AlbumEmotions In Life - GenreWorld - KindAAC audio file - Size4034528 - Total Time169875 - Track Number6 - Track Count11 - Year1996 - Date Modified2006-07-30T09:01:44Z - Date Added2009-10-03T14:58:28Z - Bit Rate192 - Sample Rate44100 - Normalization1098 - Compilation - Artwork Count1 - Persistent ID2C4B131DFE328A94 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Emotions%20In%20Life/06%20Valour.m4a - File Folder Count4 - Library Folder Count1 - - 5566 - - Track ID5566 - NamePathos - ArtistSangeetha Shankar, Ronu Majumdar - AlbumEmotions In Life - GenreWorld - KindAAC audio file - Size13519771 - Total Time563152 - Track Number7 - Track Count11 - Year1996 - Date Modified2006-07-30T09:01:44Z - Date Added2009-10-03T14:58:28Z - Bit Rate192 - Sample Rate44100 - Normalization966 - Compilation - Artwork Count1 - Persistent ID1D2DAFF6DD4637B5 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Emotions%20In%20Life/07%20Pathos.m4a - File Folder Count4 - Library Folder Count1 - - 5568 - - Track ID5568 - NameAnger - ArtistSangeetha Shankar, Ronu Majumdar - AlbumEmotions In Life - GenreWorld - KindAAC audio file - Size7790940 - Total Time326656 - Track Number8 - Track Count11 - Year1996 - Date Modified2006-07-30T09:01:44Z - Date Added2009-10-03T14:58:28Z - Bit Rate192 - Sample Rate44100 - Normalization854 - Compilation - Artwork Count1 - Persistent ID7A72F707961F082E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Emotions%20In%20Life/08%20Anger.m4a - File Folder Count4 - Library Folder Count1 - - 5570 - - Track ID5570 - NameSeparation - ArtistSangeetha Shankar, Ronu Majumdar - AlbumEmotions In Life - GenreWorld - KindAAC audio file - Size8369445 - Total Time349621 - Track Number9 - Track Count11 - Year1996 - Date Modified2006-07-30T09:01:44Z - Date Added2009-10-03T14:58:28Z - Bit Rate192 - Sample Rate44100 - Normalization1520 - Compilation - Artwork Count1 - Persistent ID077365884E7EB301 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Emotions%20In%20Life/09%20Separation.m4a - File Folder Count4 - Library Folder Count1 - - 5572 - - Track ID5572 - NameHorror - ArtistSangeetha Shankar, Ronu Majumdar - AlbumEmotions In Life - GenreWorld - KindAAC audio file - Size3692107 - Total Time155154 - Track Number10 - Track Count11 - Year1996 - Date Modified2006-07-30T09:01:44Z - Date Added2009-10-03T14:58:29Z - Bit Rate192 - Sample Rate44100 - Normalization710 - Compilation - Artwork Count1 - Persistent ID3BE3F9BD2B18D2B1 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Emotions%20In%20Life/10%20Horror.m4a - File Folder Count4 - Library Folder Count1 - - 5574 - - Track ID5574 - NameParental Love - ArtistSangeetha Shankar, Ronu Majumdar - AlbumEmotions In Life - GenreWorld - KindAAC audio file - Size7076530 - Total Time291617 - Track Number11 - Track Count11 - Year1996 - Date Modified2006-07-30T09:01:44Z - Date Added2009-10-03T14:58:29Z - Bit Rate192 - Sample Rate44100 - Normalization897 - Compilation - Artwork Count1 - Persistent IDD911F843940146E2 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Emotions%20In%20Life/11%20Parental%20Love.m4a - File Folder Count4 - Library Folder Count1 - - 5576 - - Track ID5576 - NameMere Sapno Ki Rani - ArtistKishore Kumar - ComposerS.D. Burman - AlbumDo Raaste - Aaradhana - GenreSoundtrack - KindAAC audio file - Size7207650 - Total Time297626 - Track Number1 - Track Count14 - Year1992 - Date Modified2007-09-10T10:15:12Z - Date Added2009-10-03T14:58:29Z - Bit Rate192 - Sample Rate44100 - Normalization3007 - Compilation - Persistent ID1581166F2A2A76CA - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Do%20Raaste%20-%20Aaradhana/01%20Mere%20Sapno%20Ki%20Rani.m4a - File Folder Count4 - Library Folder Count1 - - 5578 - - Track ID5578 - NameMere Sapno Ki Rani - ArtistKishore Kumar - ComposerS.D. Burman - AlbumDo Raaste - Aaradhana - GenreSoundtrack - KindAAC audio file - Size7216825 - Total Time297631 - Track Number1 - Track Count14 - Year1992 - Date Modified2006-07-30T07:58:34Z - Date Added2009-10-03T14:58:29Z - Bit Rate192 - Sample Rate44100 - Normalization3007 - Compilation - Artwork Count1 - Persistent ID495CC778ECD20F87 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Do%20Raaste%20-%20Aaradhana/01%20Mere%20Sapno%20Ki%20Rani%201.m4a - File Folder Count4 - Library Folder Count1 - - 5580 - - Track ID5580 - NameKora Kagaz Tha Yeh Man Mera - ArtistLata Mangeshkar & Kishore Kumar - ComposerS.D. Burman - AlbumDo Raaste - Aaradhana - GenreSoundtrack - KindAAC audio file - Size8252407 - Total Time341333 - Track Number2 - Track Count14 - Year1992 - Date Modified2007-09-10T10:15:54Z - Date Added2009-10-03T14:58:29Z - Bit Rate192 - Sample Rate44100 - Normalization2686 - Compilation - Persistent ID5A9358B01B13B035 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Do%20Raaste%20-%20Aaradhana/02%20Kora%20Kagaz%20Tha%20Yeh%20Man%20Mera.m4a - File Folder Count4 - Library Folder Count1 - - 5582 - - Track ID5582 - NameKora Kagaz Tha Yeh Man Mera - ArtistLata Mangeshkar & Kishore Kumar - ComposerS.D. Burman - AlbumDo Raaste - Aaradhana - GenreSoundtrack - KindAAC audio file - Size8262037 - Total Time341355 - Track Number2 - Track Count14 - Year1992 - Date Modified2006-07-30T07:58:36Z - Date Added2009-10-03T14:58:29Z - Bit Rate192 - Sample Rate44100 - Normalization2686 - Compilation - Artwork Count1 - Persistent IDCD125398F7A50B0C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Do%20Raaste%20-%20Aaradhana/02%20Kora%20Kagaz%20Tha%20Yeh%20Man%20Mera%201.m4a - File Folder Count4 - Library Folder Count1 - - 5584 - - Track ID5584 - NameBaghon Mein Bahar Aayi - ArtistLata Mangeshkar & Mohd. Rafi - ComposerS.D. Burman - AlbumDo Raaste - Aaradhana - GenreSoundtrack - KindAAC audio file - Size5664042 - Total Time234240 - Track Number3 - Track Count14 - Year1992 - Date Modified2007-09-10T10:16:22Z - Date Added2009-10-03T14:58:30Z - Bit Rate192 - Sample Rate44100 - Normalization1708 - Compilation - Persistent IDA9C02068C11DCAF3 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Do%20Raaste%20-%20Aaradhana/03%20Baghon%20Mein%20Bahar%20Aayi.m4a - File Folder Count4 - Library Folder Count1 - - 5586 - - Track ID5586 - NameBaghon Mein Bahar Aayi - ArtistLata Mangeshkar & Mohd. Rafi - ComposerS.D. Burman - AlbumDo Raaste - Aaradhana - GenreSoundtrack - KindAAC audio file - Size5678010 - Total Time234241 - Track Number3 - Track Count14 - Year1992 - Date Modified2006-07-30T07:58:36Z - Date Added2009-10-03T14:58:30Z - Bit Rate192 - Sample Rate44100 - Normalization1711 - Compilation - Artwork Count1 - Persistent IDE2B339B79D3F3136 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Do%20Raaste%20-%20Aaradhana/03%20Baghon%20Mein%20Bahar%20Aayi%201.m4a - File Folder Count4 - Library Folder Count1 - - 5588 - - Track ID5588 - NameRoop Tera Mastana - ArtistKishore Kumar - ComposerS.D. Burman - AlbumDo Raaste - Aaradhana - GenreSoundtrack - KindAAC audio file - Size5414690 - Total Time223893 - Track Number4 - Track Count14 - Year1992 - Date Modified2007-09-10T10:16:50Z - Date Added2009-10-03T14:58:30Z - Bit Rate192 - Sample Rate44100 - Normalization1347 - Compilation - Persistent IDE96F24F8403AC3A0 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Do%20Raaste%20-%20Aaradhana/04%20Roop%20Tera%20Mastana.m4a - File Folder Count4 - Library Folder Count1 - - 5590 - - Track ID5590 - NameRoop Tera Mastana - ArtistKishore Kumar - ComposerS.D. Burman - AlbumDo Raaste - Aaradhana - GenreSoundtrack - KindAAC audio file - Size5430696 - Total Time223908 - Track Number4 - Track Count14 - Year1992 - Date Modified2006-07-30T07:58:34Z - Date Added2009-10-03T14:58:30Z - Bit Rate192 - Sample Rate44100 - Normalization1342 - Compilation - Artwork Count1 - Persistent ID6DBA3CE227F67CCB - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Do%20Raaste%20-%20Aaradhana/04%20Roop%20Tera%20Mastana%201.m4a - File Folder Count4 - Library Folder Count1 - - 5592 - - Track ID5592 - NameGun Guna Rahe Bahavare - ArtistMohammed Rafi & Asha Bhosle - ComposerS.D. Burman - AlbumDo Raaste - Aaradhana - GenreSoundtrack - KindAAC audio file - Size5784330 - Total Time238800 - Track Number5 - Track Count14 - Year1992 - Date Modified2007-09-10T10:17:18Z - Date Added2009-10-03T14:58:30Z - Bit Rate192 - Sample Rate44100 - Normalization2256 - Compilation - Persistent IDE8EACAA28F4220D1 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Do%20Raaste%20-%20Aaradhana/05%20Gun%20Guna%20Rahe%20Bahavare.m4a - File Folder Count4 - Library Folder Count1 - - 5594 - - Track ID5594 - NameGun Guna Rahe Bahavare - ArtistMohammed Rafi & Asha Bhosle - ComposerS.D. Burman - AlbumDo Raaste - Aaradhana - GenreSoundtrack - KindAAC audio file - Size5797663 - Total Time238815 - Track Number5 - Track Count14 - Year1992 - Date Modified2006-07-30T07:58:36Z - Date Added2009-10-03T14:58:30Z - Bit Rate192 - Sample Rate44100 - Normalization2253 - Compilation - Artwork Count1 - Persistent ID14FDDB250A9E77D2 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Do%20Raaste%20-%20Aaradhana/05%20Gun%20Guna%20Rahe%20Bahavare%201.m4a - File Folder Count4 - Library Folder Count1 - - 5596 - - Track ID5596 - NameChanda Hai Tu Mera Suraj Hai Tu - ArtistLata Mangeshkar - ComposerS.D. Burman - AlbumDo Raaste - Aaradhana - GenreSoundtrack - KindAAC audio file - Size6467486 - Total Time267040 - Track Number6 - Track Count14 - Year1992 - Date Modified2007-09-10T10:17:50Z - Date Added2009-10-03T14:58:30Z - Bit Rate192 - Sample Rate44100 - Normalization3758 - Compilation - Persistent IDFEA4F2987F622FEF - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Do%20Raaste%20-%20Aaradhana/06%20Chanda%20Hai%20Tu%20Mera%20Suraj%20Hai%20Tu.m4a - File Folder Count4 - Library Folder Count1 - - 5598 - - Track ID5598 - NameChanda Hai Tu Mera Suraj Hai Tu - ArtistLata Mangeshkar - ComposerS.D. Burman - AlbumDo Raaste - Aaradhana - GenreSoundtrack - KindAAC audio file - Size6476646 - Total Time267051 - Track Number6 - Track Count14 - Year1992 - Date Modified2006-07-30T07:58:36Z - Date Added2009-10-03T14:58:30Z - Bit Rate192 - Sample Rate44100 - Normalization3753 - Compilation - Artwork Count1 - Persistent ID606EBE366920A72A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Do%20Raaste%20-%20Aaradhana/06%20Chanda%20Hai%20Tu%20Mera%20Suraj%20Hai%20Tu%201.m4a - File Folder Count4 - Library Folder Count1 - - 5600 - - Track ID5600 - NameSaphal Hui Teri Aaradhana - ArtistS.D. Burman - ComposerS.D. Burman - AlbumDo Raaste - Aaradhana - GenreSoundtrack - KindAAC audio file - Size8116872 - Total Time335200 - Track Number7 - Track Count14 - Year1992 - Date Modified2007-09-10T10:18:30Z - Date Added2009-10-03T14:58:31Z - Bit Rate192 - Sample Rate44100 - Normalization965 - Compilation - Persistent ID1BD2FB947C1E0EA9 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Do%20Raaste%20-%20Aaradhana/07%20Saphal%20Hui%20Teri%20Aaradhana.m4a - File Folder Count4 - Library Folder Count1 - - 5602 - - Track ID5602 - NameSaphal Hui Teri Aaradhana - ArtistS.D. Burman - ComposerS.D. Burman - AlbumDo Raaste - Aaradhana - GenreSoundtrack - KindAAC audio file - Size8126015 - Total Time335201 - Track Number7 - Track Count14 - Year1992 - Date Modified2006-07-30T07:58:38Z - Date Added2009-10-03T14:58:31Z - Bit Rate192 - Sample Rate44100 - Normalization965 - Compilation - Artwork Count1 - Persistent IDEDDF3FDAF29082B1 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Do%20Raaste%20-%20Aaradhana/07%20Saphal%20Hui%20Teri%20Aaradhana%201.m4a - File Folder Count4 - Library Folder Count1 - - 5604 - - Track ID5604 - NameBindiya Chamke Gi - ArtistLata Mangeshkar - ComposerS.D. Burman - AlbumDo Raaste - Aaradhana - GenreSoundtrack - KindAAC audio file - Size8423641 - Total Time347866 - Track Number8 - Track Count14 - Year1992 - Date Modified2007-09-10T10:19:14Z - Date Added2009-10-03T14:58:31Z - Bit Rate192 - Sample Rate44100 - Normalization2375 - Compilation - Persistent ID225DF9C7EA7A8CA9 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Do%20Raaste%20-%20Aaradhana/08%20Bindiya%20Chamke%20Gi.m4a - File Folder Count4 - Library Folder Count1 - - 5606 - - Track ID5606 - NameBindiya Chamke Gi - ArtistLata Mangeshkar - ComposerS.D. Burman - AlbumDo Raaste - Aaradhana - GenreSoundtrack - KindAAC audio file - Size8432779 - Total Time347879 - Track Number8 - Track Count14 - Year1992 - Date Modified2006-07-30T07:58:36Z - Date Added2009-10-03T14:58:31Z - Bit Rate192 - Sample Rate44100 - Normalization2377 - Compilation - Artwork Count1 - Persistent ID489DAD89C002C75A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Do%20Raaste%20-%20Aaradhana/08%20Bindiya%20Chamke%20Gi%201.m4a - File Folder Count4 - Library Folder Count1 - - 5608 - - Track ID5608 - NameYeh Reshmi Zulfein - ArtistMohammed Rafi - ComposerS.D. Burman - AlbumDo Raaste - Aaradhana - GenreSoundtrack - KindAAC audio file - Size7585276 - Total Time313226 - Track Number9 - Track Count14 - Year1992 - Date Modified2007-09-10T10:19:52Z - Date Added2009-10-03T14:58:31Z - Bit Rate192 - Sample Rate44100 - Normalization1745 - Compilation - Persistent ID9D00CC4ADA45A3FC - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Do%20Raaste%20-%20Aaradhana/09%20Yeh%20Reshmi%20Zulfein.m4a - File Folder Count4 - Library Folder Count1 - - 5610 - - Track ID5610 - NameYeh Reshmi Zulfein - ArtistMohammed Rafi - ComposerS.D. Burman - AlbumDo Raaste - Aaradhana - GenreSoundtrack - KindAAC audio file - Size7594428 - Total Time313235 - Track Number9 - Track Count14 - Year1992 - Date Modified2006-07-30T07:58:36Z - Date Added2009-10-03T14:58:31Z - Bit Rate192 - Sample Rate44100 - Normalization1744 - Compilation - Artwork Count1 - Persistent ID21809AC089361453 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Do%20Raaste%20-%20Aaradhana/09%20Yeh%20Reshmi%20Zulfein%201.m4a - File Folder Count4 - Library Folder Count1 - - 5612 - - Track ID5612 - NameMera Naseeb Mein Aye Dost - ArtistKishore Kumar - ComposerS.D. Burman - AlbumDo Raaste - Aaradhana - GenreSoundtrack - KindAAC audio file - Size6853694 - Total Time283000 - Track Number10 - Track Count14 - Year1992 - Date Modified2007-09-10T10:20:26Z - Date Added2009-10-03T14:58:31Z - Bit Rate192 - Sample Rate44100 - Normalization1680 - Compilation - Persistent IDA4D849E119D8BAF6 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Do%20Raaste%20-%20Aaradhana/10%20Mera%20Naseeb%20Mein%20Aye%20Dost.m4a - File Folder Count4 - Library Folder Count1 - - 5614 - - Track ID5614 - NameMera Naseeb Mein Aye Dost - ArtistKishore Kumar - ComposerS.D. Burman - AlbumDo Raaste - Aaradhana - GenreSoundtrack - KindAAC audio file - Size6862756 - Total Time283003 - Track Number10 - Track Count14 - Year1992 - Date Modified2006-07-30T07:58:36Z - Date Added2009-10-03T14:58:32Z - Bit Rate192 - Sample Rate44100 - Normalization1678 - Compilation - Artwork Count1 - Persistent ID18CA992FDA0446EE - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Do%20Raaste%20-%20Aaradhana/10%20Mera%20Naseeb%20Mein%20Aye%20Dost%201.m4a - File Folder Count4 - Library Folder Count1 - - 5616 - - Track ID5616 - NameDil Ne Dil Ko Pukhara - ArtistLata Mangeshkar & Mohd. Rafi - ComposerS.D. Burman - AlbumDo Raaste - Aaradhana - GenreSoundtrack - KindAAC audio file - Size8175410 - Total Time338000 - Track Number11 - Track Count14 - Year1992 - Date Modified2007-09-10T10:21:06Z - Date Added2009-10-03T14:58:32Z - Bit Rate192 - Sample Rate44100 - Normalization2899 - Compilation - Persistent ID6B9D6C4925A89027 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Do%20Raaste%20-%20Aaradhana/11%20Dil%20Ne%20Dil%20Ko%20Pukhara.m4a - File Folder Count4 - Library Folder Count1 - - 5618 - - Track ID5618 - NameDil Ne Dil Ko Pukhara - ArtistLata Mangeshkar & Mohd. Rafi - ComposerS.D. Burman - AlbumDo Raaste - Aaradhana - GenreSoundtrack - KindAAC audio file - Size8185235 - Total Time338011 - Track Number11 - Track Count14 - Year1992 - Date Modified2006-07-30T07:58:36Z - Date Added2009-10-03T14:58:32Z - Bit Rate192 - Sample Rate44100 - Normalization2898 - Compilation - Artwork Count1 - Persistent ID5AACEDE291C3575C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Do%20Raaste%20-%20Aaradhana/11%20Dil%20Ne%20Dil%20Ko%20Pukhara%201.m4a - File Folder Count4 - Library Folder Count1 - - 5620 - - Track ID5620 - NameApni Apni Biwi - ArtistLata Mangeshkar - ComposerS.D. Burman - AlbumDo Raaste - Aaradhana - GenreSoundtrack - KindAAC audio file - Size5361542 - Total Time221773 - Track Number12 - Track Count14 - Year1992 - Date Modified2007-09-10T10:21:34Z - Date Added2009-10-03T14:58:32Z - Bit Rate192 - Sample Rate44100 - Normalization3644 - Compilation - Persistent IDA22DAD645D02C6A0 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Do%20Raaste%20-%20Aaradhana/12%20Apni%20Apni%20Biwi.m4a - File Folder Count4 - Library Folder Count1 - - 5622 - - Track ID5622 - NameApni Apni Biwi - ArtistLata Mangeshkar - ComposerS.D. Burman - AlbumDo Raaste - Aaradhana - GenreSoundtrack - KindAAC audio file - Size5377955 - Total Time221795 - Track Number12 - Track Count14 - Year1992 - Date Modified2006-07-30T07:58:36Z - Date Added2009-10-03T14:58:32Z - Bit Rate192 - Sample Rate44100 - Normalization3646 - Compilation - Artwork Count1 - Persistent IDC2771F9D6CAAE7E1 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Do%20Raaste%20-%20Aaradhana/12%20Apni%20Apni%20Biwi%201.m4a - File Folder Count4 - Library Folder Count1 - - 5624 - - Track ID5624 - NameDo Raaste - ArtistMukesh - ComposerS.D. Burman - AlbumDo Raaste - Aaradhana - GenreSoundtrack - KindAAC audio file - Size6303730 - Total Time260800 - Track Number13 - Track Count14 - Year1992 - Date Modified2007-09-10T10:22:06Z - Date Added2009-10-03T14:58:32Z - Bit Rate192 - Sample Rate44100 - Normalization2557 - Compilation - Persistent IDDD0455F0AEFD1A17 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Do%20Raaste%20-%20Aaradhana/13%20Do%20Raaste.m4a - File Folder Count4 - Library Folder Count1 - - 5626 - - Track ID5626 - NameDo Raaste - ArtistMukesh - ComposerS.D. Burman - AlbumDo Raaste - Aaradhana - GenreSoundtrack - KindAAC audio file - Size6313209 - Total Time260805 - Track Number13 - Track Count14 - Year1992 - Date Modified2006-07-30T07:58:36Z - Date Added2009-10-03T14:58:32Z - Bit Rate192 - Sample Rate44100 - Normalization2557 - Compilation - Artwork Count1 - Persistent ID49BD581150311E4F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Do%20Raaste%20-%20Aaradhana/13%20Do%20Raaste%201.m4a - File Folder Count4 - Library Folder Count1 - - 5628 - - Track ID5628 - NameTitle Music - ArtistInstrumental - ComposerS.D. Burman - AlbumDo Raaste - Aaradhana - GenreSoundtrack - KindAAC audio file - Size3139635 - Total Time131200 - Track Number14 - Track Count14 - Year1992 - Date Modified2007-09-10T10:22:22Z - Date Added2009-10-03T14:58:32Z - Bit Rate192 - Sample Rate44100 - Normalization2180 - Compilation - Persistent IDFC4ACE7F666E8D03 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Do%20Raaste%20-%20Aaradhana/14%20Title%20Music.m4a - File Folder Count4 - Library Folder Count1 - - 5630 - - Track ID5630 - NameTitle Music - ArtistInstrumental - ComposerS.D. Burman - AlbumDo Raaste - Aaradhana - GenreSoundtrack - KindAAC audio file - Size3163372 - Total Time131214 - Track Number14 - Track Count14 - Year1992 - Date Modified2006-07-30T07:58:34Z - Date Added2009-10-03T14:58:33Z - Bit Rate192 - Sample Rate44100 - Normalization2178 - Compilation - Artwork Count2 - Persistent ID3E91A9D17BD5D590 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Do%20Raaste%20-%20Aaradhana/14%20Title%20Music%201.m4a - File Folder Count4 - Library Folder Count1 - - 5632 - - Track ID5632 - NameBhavaye - ArtistSankaran Namboodiri - ComposerSwathi Thirunal - AlbumCompositions of Swathi Thirunal - GenreCarnatic - KindAAC audio file - Size6177407 - Total Time256834 - Disc Number1 - Disc Count1 - Track Number1 - Track Count8 - Year2000 - Date Modified2007-12-02T15:18:12Z - Date Added2009-10-03T14:58:33Z - Bit Rate192 - Sample Rate44100 - CommentsRaga: Pushpalathika Tala: Rupaka - Normalization989 - Compilation - Artwork Count1 - Persistent ID59E5D62E17F07AC5 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Compositions%20of%20Swathi%20Thirunal/01%20Bhavaye.m4a - File Folder Count4 - Library Folder Count1 - - 5634 - - Track ID5634 - NameKalayami Nanda - ArtistSankaran Namboodiri - ComposerSwathi Thirunal - AlbumCompositions of Swathi Thirunal - GenreCarnatic - KindAAC audio file - Size6332248 - Total Time264288 - Disc Number1 - Disc Count1 - Track Number2 - Track Count8 - Year2000 - Date Modified2007-12-02T15:18:04Z - Date Added2009-10-03T14:58:33Z - Bit Rate192 - Sample Rate44100 - CommentsRaga: Kannada Tala: Rupaka - Normalization1004 - Compilation - Artwork Count1 - Persistent ID6219E2218313A17B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Compositions%20of%20Swathi%20Thirunal/02%20Kalayami%20Nanda.m4a - File Folder Count4 - Library Folder Count1 - - 5636 - - Track ID5636 - NameKalayami Raghuramam (Raga: Begada Tala: Mishra Chapu) - ArtistSankaran Namboodiri - ComposerSwathi Thirunal - AlbumCompositions of Swathi Thirunal - GenreCarnatic - KindAAC audio file - Size12735688 - Total Time529877 - Disc Number1 - Disc Count1 - Track Number3 - Track Count8 - Year2000 - Date Modified2007-12-14T03:28:57Z - Date Added2009-10-03T14:58:33Z - Bit Rate192 - Sample Rate44100 - CommentsRaga: Begada Tala: Mishra Chapu - Normalization1177 - Compilation - Artwork Count1 - Persistent ID3CF309FA81C9A477 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Compositions%20of%20Swathi%20Thirunal/03%20Kalayami%20Raghuramam%20(Raga_%20Begada%20Tala_%20Mishra%20Chapu).m4a - File Folder Count4 - Library Folder Count1 - - 5638 - - Track ID5638 - NameMamavakarunayam - ArtistSankaran Namboodiri - ComposerSwathi Thirunal - AlbumCompositions of Swathi Thirunal - GenreCarnatic - KindAAC audio file - Size24575873 - Total Time1017195 - Disc Number1 - Disc Count1 - Track Number4 - Track Count8 - Year2000 - Date Modified2007-12-02T15:18:34Z - Date Added2009-10-03T14:58:33Z - Bit Rate192 - Sample Rate44100 - CommentsRaga: Shanmukhapriya Tala: Mishra Chapu - Normalization1125 - Compilation - Artwork Count1 - Persistent ID9AC79A37D079CA88 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Compositions%20of%20Swathi%20Thirunal/04%20Mamavakarunayam.m4a - File Folder Count4 - Library Folder Count1 - - 5640 - - Track ID5640 - NamePannagendra Shayana (Raga: Ragamalika Tala: Rupaka) - ArtistSankaran Namboodiri - ComposerSwathi Thirunal - AlbumCompositions of Swathi Thirunal - GenreCarnatic - KindAAC audio file - Size15696591 - Total Time652200 - Disc Number1 - Disc Count1 - Track Number5 - Track Count8 - Year2000 - Date Modified2007-12-14T03:29:32Z - Date Added2009-10-03T14:58:33Z - Bit Rate192 - Sample Rate44100 - CommentsRaga: Ragamalika Tala: Rupaka - Normalization868 - Compilation - Artwork Count1 - Persistent IDA7E598F8F4075E80 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Compositions%20of%20Swathi%20Thirunal/05%20Pannagendra%20Shayana%20(Raga_%20Ragamalika%20Tala_%20Rupaka).m4a - File Folder Count4 - Library Folder Count1 - - 5642 - - Track ID5642 - NameSarasijanabha Nin - ArtistSankaran Namboodiri - ComposerSwathi Thirunal - AlbumCompositions of Swathi Thirunal - GenreCarnatic - KindAAC audio file - Size7161405 - Total Time299512 - Disc Number1 - Disc Count1 - Track Number6 - Track Count8 - Year2000 - Date Modified2007-12-02T15:18:49Z - Date Added2009-10-03T14:58:33Z - Bit Rate192 - Sample Rate44100 - CommentsRaga: Sourashtra Tala: Mishra Chapu - Normalization1045 - Compilation - Artwork Count1 - Persistent IDD665A9E174999C0A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Compositions%20of%20Swathi%20Thirunal/06%20Sarasijanabha%20Nin.m4a - File Folder Count4 - Library Folder Count1 - - 5644 - - Track ID5644 - NameRamachandra Prabho (Raga: Sindhubhairavi Tala: Adi) - ArtistSankaran Namboodiri - ComposerSwathi Thirunal - AlbumCompositions of Swathi Thirunal - GenreCarnatic - KindAAC audio file - Size6761717 - Total Time282004 - Disc Number1 - Disc Count1 - Track Number7 - Track Count8 - Year2000 - Date Modified2007-12-14T16:23:08Z - Date Added2009-10-03T14:58:34Z - Bit Rate192 - Sample Rate44100 - CommentsRaga: Sindhubhairavi Tala: Adi - Normalization751 - Compilation - Artwork Count1 - Persistent ID402B39E762AF512F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Compositions%20of%20Swathi%20Thirunal/07%20Ramachandra%20Prabho%20(Raga_%20Sindhubhairavi%20Tala_%20Adi).m4a - File Folder Count4 - Library Folder Count1 - - 5646 - - Track ID5646 - NameIti Sahasamulu - ArtistSankaran Namboodiri - ComposerSwathi Thirunal - AlbumCompositions of Swathi Thirunal - GenreCarnatic - KindAAC audio file - Size4705654 - Total Time192608 - Disc Number1 - Disc Count1 - Track Number8 - Track Count8 - Year2000 - Date Modified2007-12-02T15:18:26Z - Date Added2009-10-03T14:58:34Z - Bit Rate192 - Sample Rate44100 - CommentsRaga: Saindhavi Tala: Adi - Normalization782 - Compilation - Artwork Count1 - Persistent ID511BCCFEFD720B2E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Compositions%20of%20Swathi%20Thirunal/08%20Iti%20Sahasamulu.m4a - File Folder Count4 - Library Folder Count1 - - 5648 - - Track ID5648 - NameOverture/And All That Jazz - ArtistCatherine Zeta-Jones, Renée Zellweger, Taye Diggs & Cast - ComposerJohn Kander, Fred Ebb - AlbumChicago - GenreSoundtrack - KindAAC audio file - Size8839072 - Total Time364760 - Disc Number1 - Disc Count1 - Track Number1 - Track Count18 - Year2003 - Date Modified2006-08-13T06:33:42Z - Date Added2009-10-03T14:58:34Z - Bit Rate192 - Sample Rate44100 - Normalization3829 - Compilation - Artwork Count1 - Persistent IDDC1274BEEDAD32EE - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Chicago/01%20Overture_And%20All%20That%20Jazz.m4a - File Folder Count4 - Library Folder Count1 - - 5650 - - Track ID5650 - NameFunny Honey - ArtistRenée Zellweger, John C. Reilly & Colm Feore - ComposerJohn Kander, Fred Ebb - AlbumChicago - GenreSoundtrack - KindAAC audio file - Size5317805 - Total Time219218 - Disc Number1 - Disc Count1 - Track Number2 - Track Count18 - Year2003 - Date Modified2006-08-13T06:33:38Z - Date Added2009-10-03T14:58:34Z - Bit Rate192 - Sample Rate44100 - Normalization1256 - Compilation - Artwork Count1 - Persistent ID23FB91DB8EEBE43F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Chicago/02%20Funny%20Honey.m4a - File Folder Count4 - Library Folder Count1 - - 5652 - - Track ID5652 - NameWhen You're Good To Mama - ArtistQueen Latifah - ComposerJohn Kander, Fred Ebb - AlbumChicago - GenreSoundtrack - KindAAC audio file - Size4852143 - Total Time199852 - Disc Number1 - Disc Count1 - Track Number3 - Track Count18 - Year2003 - Date Modified2006-08-13T06:33:34Z - Date Added2009-10-03T14:58:34Z - Bit Rate192 - Sample Rate44100 - Normalization2196 - Compilation - Artwork Count1 - Persistent ID786708271C044397 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Chicago/03%20When%20You're%20Good%20To%20Mama.m4a - File Folder Count4 - Library Folder Count1 - - 5654 - - Track ID5654 - NameCell Block Tango - ArtistCatherine Zeta-Jones, Susan Misner, Deidre Goodwin, Denise Faye, Ekaterina Chtchelkanova, Myá Harrison & Cast - ComposerJohn Kander, Fred Ebb - AlbumChicago - GenreSoundtrack - KindAAC audio file - Size10723775 - Total Time442640 - Disc Number1 - Disc Count1 - Track Number4 - Track Count18 - Year2003 - Date Modified2006-08-13T06:33:32Z - Date Added2009-10-03T14:58:34Z - Bit Rate192 - Sample Rate44100 - Normalization1514 - Compilation - Artwork Count1 - Persistent ID235B2D8CC1955090 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Chicago/04%20Cell%20Block%20Tango.m4a - File Folder Count4 - Library Folder Count1 - - 5656 - - Track ID5656 - NameAll I Care About - ArtistRichard Gere & Cast - ComposerJohn Kander, Fred Ebb - AlbumChicago - GenreSoundtrack - KindAAC audio file - Size5540742 - Total Time228204 - Disc Number1 - Disc Count1 - Track Number5 - Track Count18 - Year2003 - Date Modified2006-08-13T06:33:28Z - Date Added2009-10-03T14:58:34Z - Bit Rate192 - Sample Rate44100 - Normalization2447 - Compilation - Artwork Count1 - Persistent ID4220510EC96DC08A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Chicago/05%20All%20I%20Care%20About.m4a - File Folder Count4 - Library Folder Count1 - - 5658 - - Track ID5658 - NameWe Both Reached For The Gun - ArtistRichard Gere, Renée Zellweger, Christine Baranski & Cast - ComposerJohn Kander, Fred Ebb - AlbumChicago - GenreSoundtrack - KindAAC audio file - Size5813041 - Total Time239535 - Disc Number1 - Disc Count1 - Track Number6 - Track Count18 - Year2003 - Date Modified2006-08-13T06:33:26Z - Date Added2009-10-03T14:58:34Z - Bit Rate192 - Sample Rate44100 - Normalization3041 - Compilation - Artwork Count1 - Persistent ID4D2730F791F0E82A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Chicago/06%20We%20Both%20Reached%20For%20The%20Gun.m4a - File Folder Count4 - Library Folder Count1 - - 5660 - - Track ID5660 - NameRoxie - ArtistRenée Zellweger - ComposerJohn Kander, Fred Ebb - AlbumChicago - GenreSoundtrack - KindAAC audio file - Size4916972 - Total Time202546 - Disc Number1 - Disc Count1 - Track Number7 - Track Count18 - Year2003 - Date Modified2006-08-13T06:33:22Z - Date Added2009-10-03T14:58:35Z - Bit Rate192 - Sample Rate44100 - Normalization1747 - Compilation - Artwork Count1 - Persistent ID53BB85B5160CF0C2 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Chicago/07%20Roxie.m4a - File Folder Count4 - Library Folder Count1 - - 5662 - - Track ID5662 - NameI Can't Do It Alone - ArtistCatherine Zeta-Jones - ComposerJohn Kander, Fred Ebb - AlbumChicago - GenreSoundtrack - KindAAC audio file - Size5622793 - Total Time231640 - Disc Number1 - Disc Count1 - Track Number8 - Track Count18 - Year2003 - Date Modified2006-08-13T06:33:20Z - Date Added2009-10-03T14:58:35Z - Bit Rate192 - Sample Rate44100 - Normalization2795 - Compilation - Artwork Count1 - Persistent IDA78B654314D75C42 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Chicago/08%20I%20Can't%20Do%20It%20Alone.m4a - File Folder Count4 - Library Folder Count1 - - 5664 - - Track ID5664 - NameMister Cellophane - ArtistJohn C. Reilly - ComposerJohn Kander, Fred Ebb - AlbumChicago - GenreSoundtrack - KindAAC audio file - Size5774561 - Total Time237933 - Disc Number1 - Disc Count1 - Track Number9 - Track Count18 - Year2003 - Date Modified2006-08-13T06:33:18Z - Date Added2009-10-03T14:58:35Z - Bit Rate192 - Sample Rate44100 - Normalization1256 - Compilation - Artwork Count1 - Persistent ID4F78D45BF629684C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Chicago/09%20Mister%20Cellophane.m4a - File Folder Count4 - Library Folder Count1 - - 5666 - - Track ID5666 - NameRazzle Dazzle - ArtistRichard Gere & Cast - ComposerJohn Kander, Fred Ebb - AlbumChicago - GenreSoundtrack - KindAAC audio file - Size5517879 - Total Time227275 - Disc Number1 - Disc Count1 - Track Number10 - Track Count18 - Year2003 - Date Modified2006-08-13T06:33:16Z - Date Added2009-10-03T14:58:35Z - Bit Rate192 - Sample Rate44100 - Normalization1353 - Compilation - Artwork Count1 - Persistent ID12F3236D826A1568 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Chicago/10%20Razzle%20Dazzle.m4a - File Folder Count4 - Library Folder Count1 - - 5668 - - Track ID5668 - NameClass - ArtistCatherine Zeta-Jones & Queen Latifah - ComposerJohn Kander, Fred Ebb - AlbumChicago - GenreSoundtrack - KindAAC audio file - Size4253503 - Total Time174937 - Disc Number1 - Disc Count1 - Track Number11 - Track Count18 - Year2003 - Date Modified2006-08-13T06:33:14Z - Date Added2009-10-03T14:58:35Z - Bit Rate192 - Sample Rate44100 - Normalization2005 - Compilation - Artwork Count1 - Persistent ID2C0BE14BE05F95FB - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Chicago/11%20Class.m4a - File Folder Count4 - Library Folder Count1 - - 5670 - - Track ID5670 - NameNowadays (Roxie) - ArtistRenée Zellweger, Taye Diggs - ComposerJohn Kander, Fred Ebb - AlbumChicago - GenreSoundtrack - KindAAC audio file - Size3287412 - Total Time134674 - Disc Number1 - Disc Count1 - Track Number12 - Track Count18 - Year2003 - Date Modified2006-08-13T06:33:12Z - Date Added2009-10-03T14:58:35Z - Bit Rate192 - Sample Rate44100 - Normalization1166 - Compilation - Artwork Count1 - Persistent ID09CBA0F027895729 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Chicago/12%20Nowadays%20(Roxie).m4a - File Folder Count4 - Library Folder Count1 - - 5672 - - Track ID5672 - NameNowadays/Hot Honey Rag - ArtistCatherine Zeta-Jones, Renée Zellweger, Taye Diggs - ComposerJohn Kander, Fred Ebb - AlbumChicago - GenreSoundtrack - KindAAC audio file - Size5059559 - Total Time208467 - Disc Number1 - Disc Count1 - Track Number13 - Track Count18 - Year2003 - Date Modified2006-08-13T06:33:10Z - Date Added2009-10-03T14:58:35Z - Bit Rate192 - Sample Rate44100 - Normalization2238 - Compilation - Artwork Count1 - Persistent ID007B7213F0A240E0 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Chicago/13%20Nowadays_Hot%20Honey%20Rag.m4a - File Folder Count4 - Library Folder Count1 - - 5674 - - Track ID5674 - NameI Move On - ArtistCatherine Zeta-Jones, Renée Zellweger - ComposerJohn Kander, Fred Ebb - AlbumChicago - GenreSoundtrack - KindAAC audio file - Size5838124 - Total Time240626 - Disc Number1 - Disc Count1 - Track Number14 - Track Count18 - Year2003 - Date Modified2006-08-13T06:33:08Z - Date Added2009-10-03T14:58:36Z - Bit Rate192 - Sample Rate44100 - Normalization3288 - Compilation - Artwork Count1 - Persistent ID7029E78414C5F413 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Chicago/14%20I%20Move%20On.m4a - File Folder Count4 - Library Folder Count1 - - 5676 - - Track ID5676 - NameAfter Midnight - ArtistDanny Elfman - ComposerDanny Elfman - AlbumChicago - GenreSoundtrack - KindAAC audio file - Size4973849 - Total Time204937 - Disc Number1 - Disc Count1 - Track Number15 - Track Count18 - Year2003 - Date Modified2006-08-13T06:33:04Z - Date Added2009-10-03T14:58:36Z - Bit Rate192 - Sample Rate44100 - Normalization1783 - Compilation - Artwork Count1 - Persistent ID76FBC70F141CE8E5 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Chicago/15%20After%20Midnight.m4a - File Folder Count4 - Library Folder Count1 - - 5678 - - Track ID5678 - NameRoxie's Suite - ArtistDanny Elfman - ComposerDanny Elfman - AlbumChicago - GenreSoundtrack - KindAAC audio file - Size5653823 - Total Time238513 - Disc Number1 - Disc Count1 - Track Number16 - Track Count18 - Year2003 - Date Modified2006-08-13T06:33:02Z - Date Added2009-10-03T14:58:36Z - Bit Rate192 - Sample Rate44100 - Normalization1532 - Compilation - Artwork Count1 - Persistent IDEE6189B6809B84F8 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Chicago/16%20Roxie's%20Suite.m4a - File Folder Count4 - Library Folder Count1 - - 5680 - - Track ID5680 - NameCell Block Tango - ArtistQueen Latifah & Lil' Kim Feat. Macy Gray - ComposerJohn Kander, Fred Ebb - AlbumChicago - GenreSoundtrack - KindAAC audio file - Size5292247 - Total Time220077 - Disc Number1 - Disc Count1 - Track Number17 - Track Count18 - Year2003 - Date Modified2006-08-13T06:33:00Z - Date Added2009-10-03T14:58:36Z - Bit Rate192 - Sample Rate44100 - Normalization2324 - Compilation - Artwork Count1 - Persistent ID835756E97312D87B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Chicago/17%20Cell%20Block%20Tango.m4a - File Folder Count4 - Library Folder Count1 - - 5682 - - Track ID5682 - NameLove Is A Crime - ArtistAnastacia - ComposerDamon Sharpe, Greg Lawson, Denise Rich, Ric Wake - AlbumChicago - GenreSoundtrack - KindAAC audio file - Size4851799 - Total Time200804 - Disc Number1 - Disc Count1 - Track Number18 - Track Count18 - Year2003 - Date Modified2006-08-13T06:32:58Z - Date Added2009-10-03T14:58:36Z - Bit Rate192 - Sample Rate44100 - Normalization5546 - Compilation - Artwork Count1 - Persistent ID1BC5CBE73B4F9ADB - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Chicago/18%20Love%20Is%20A%20Crime.m4a - File Folder Count4 - Library Folder Count1 - - 5684 - - Track ID5684 - NameScheherezade, op. 35, 1. The sea and Sindbad's ship - ArtistKirill Kondrashin : Herman Krebbers : Conertgebouw Orchestra - ComposerNikolai Rimsky-Korsakov - AlbumBorodin Symphony No.2 - GenreClassical - KindAAC audio file - Size14833316 - Total Time612633 - Track Number1 - Track Count8 - Year1980 - Date Modified2006-08-17T16:47:50Z - Date Added2009-10-03T14:58:36Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3406828761 - Play Date UTC2011-12-15T15:49:21Z - Normalization689 - Compilation - Artwork Count1 - Persistent ID89DA75E2F4D061CE - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Borodin%20Symphony%20No.2/01%20Scheherezade,%20op.%2035,%201.%20The%20sea%20and%20Sindbad's%20ship.m4a - File Folder Count4 - Library Folder Count1 - - 5686 - - Track ID5686 - NameScheherezade, op. 35, 2. The story of the Kalender prince - ArtistKirill Kondrashin : Herman Krebbers : Conertgebouw Orchestra - ComposerNikolai Rimsky-Korsakov - AlbumBorodin Symphony No.2 - GenreClassical - KindAAC audio file - Size17746013 - Total Time732982 - Track Number2 - Track Count8 - Year1980 - Date Modified2006-08-17T16:47:50Z - Date Added2009-10-03T14:58:36Z - Bit Rate192 - Sample Rate44100 - Normalization809 - Compilation - Artwork Count1 - Persistent IDC35F7118468D6612 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Borodin%20Symphony%20No.2/02%20Scheherezade,%20op.%2035,%202.%20The%20story%20of%20the%20Kalender%20prince.m4a - File Folder Count4 - Library Folder Count1 - - 5688 - - Track ID5688 - NameScheherezade, op. 35, 3. The young prince and the princess - ArtistKirill Kondrashin : Herman Krebbers : Conertgebouw Orchestra - ComposerNikolai Rimsky-Korsakov - AlbumBorodin Symphony No.2 - GenreClassical - KindAAC audio file - Size14041799 - Total Time579916 - Track Number3 - Track Count8 - Year1980 - Date Modified2006-08-17T16:47:50Z - Date Added2009-10-03T14:58:37Z - Bit Rate192 - Sample Rate44100 - Normalization474 - Compilation - Artwork Count1 - Persistent IDDE4B566A43CB6ECC - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Borodin%20Symphony%20No.2/03%20Scheherezade,%20op.%2035,%203.%20The%20young%20prince%20and%20the%20princess.m4a - File Folder Count4 - Library Folder Count1 - - 5690 - - Track ID5690 - NameScheherezade, op. 35, 4. Festival at Baghdad - The sea - Shi - ArtistKirill Kondrashin : Herman Krebbers : Conertgebouw Orchestra - ComposerNikolai Rimsky-Korsakov - AlbumBorodin Symphony No.2 - GenreClassical - KindAAC audio file - Size18187448 - Total Time751233 - Track Number4 - Track Count8 - Year1980 - Date Modified2006-08-17T16:47:50Z - Date Added2009-10-03T14:58:37Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3338471626 - Play Date UTC2009-10-15T11:43:46Z - Normalization1237 - Compilation - Artwork Count1 - Persistent ID515E7A739E34EBBE - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Borodin%20Symphony%20No.2/04%20Scheherezade,%20op.%2035,%204.%20Festival%20at%20Baghdad%20-%20The%20sea%20-%20Shi.m4a - File Folder Count4 - Library Folder Count1 - - 5692 - - Track ID5692 - NameSymphony No. 2 in B minor, I. Allegro - ArtistKirill Kondrashin : Conertgebouw Orchestra Amsterdam - ComposerBorodin - AlbumBorodin Symphony No.2 - GenreClassical - KindAAC audio file - Size11661454 - Total Time481557 - Track Number5 - Track Count8 - Year1980 - Date Modified2006-08-13T06:32:26Z - Date Added2009-10-03T14:58:37Z - Bit Rate192 - Sample Rate44100 - Normalization975 - Compilation - Artwork Count1 - Persistent ID64787B9FD5C23E54 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Borodin%20Symphony%20No.2/05%20Symphony%20No.%202%20in%20B%20minor,%20I.%20Allegro.m4a - File Folder Count4 - Library Folder Count1 - - 5694 - - Track ID5694 - NameSymphony No. 2 in B minor, II. Scherzo: prestissimo - Trio: - ArtistKirill Kondrashin : Conertgebouw Orchestra Amsterdam - ComposerBorodin - AlbumBorodin Symphony No.2 - GenreClassical - KindAAC audio file - Size8100672 - Total Time334412 - Track Number6 - Track Count8 - Year1980 - Date Modified2006-08-13T06:32:20Z - Date Added2009-10-03T14:58:37Z - Bit Rate192 - Sample Rate44100 - Normalization444 - Compilation - Artwork Count1 - Persistent ID5B04293678E87975 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Borodin%20Symphony%20No.2/06%20Symphony%20No.%202%20in%20B%20minor,%20II.%20Scherzo_%20prestissimo%20-%20Trio_.m4a - File Folder Count4 - Library Folder Count1 - - 5696 - - Track ID5696 - NameSymphony No. 2 in B minor, IV. Andante - ArtistKirill Kondrashin : Conertgebouw Orchestra Amsterdam - ComposerBorodin - AlbumBorodin Symphony No.2 - GenreClassical - KindAAC audio file - Size10736011 - Total Time443313 - Track Number7 - Track Count8 - Year1980 - Date Modified2006-08-13T06:32:16Z - Date Added2009-10-03T14:58:37Z - Bit Rate192 - Sample Rate44100 - Normalization845 - Compilation - Artwork Count1 - Persistent IDCBD788DCC1D49128 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Borodin%20Symphony%20No.2/07%20Symphony%20No.%202%20in%20B%20minor,%20IV.%20Andante.m4a - File Folder Count4 - Library Folder Count1 - - 5698 - - Track ID5698 - NameSymphony No. 2 in B minor, V. Finale: Allegro - ArtistKirill Kondrashin : Conertgebouw Orchestra Amsterdam - ComposerBorodin - AlbumBorodin Symphony No.2 - GenreClassical - KindAAC audio file - Size9486506 - Total Time391788 - Track Number8 - Track Count8 - Year1980 - Date Modified2006-08-13T06:32:12Z - Date Added2009-10-03T14:58:37Z - Bit Rate192 - Sample Rate44100 - Normalization1202 - Compilation - Artwork Count1 - Persistent IDD2CA0DCE63FF6680 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Borodin%20Symphony%20No.2/08%20Symphony%20No.%202%20in%20B%20minor,%20V.%20Finale_%20Allegro.m4a - File Folder Count4 - Library Folder Count1 - - 5700 - - Track ID5700 - NameThe Man I Love - ArtistBillie Holiday & Lester Young - ComposerGeorge Gershwin/Ira Gershwin - AlbumBillie Holiday & Lester Young - A Musical Romance - GenreJazz - KindAAC audio file - Size4484714 - Total Time186710 - Disc Number1 - Disc Count1 - Track Number1 - Track Count16 - Year2002 - Date Modified2006-08-03T12:47:58Z - Date Added2009-10-03T14:58:38Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3337492178 - Play Date UTC2009-10-04T03:39:38Z - Normalization1471 - Compilation - Artwork Count1 - Sort NameMan I Love - Persistent IDB1736A6AFC13909A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Billie%20Holiday%20&%20Lester%20Young%20-%20A%20Musical%20Romance/01%20The%20Man%20I%20Love.m4a - File Folder Count4 - Library Folder Count1 - - 5702 - - Track ID5702 - NameThis Year's Kisses - ArtistBillie Holiday & Lester Young - ComposerIrving Berlin - AlbumBillie Holiday & Lester Young - A Musical Romance - GenreJazz - KindAAC audio file - Size4561952 - Total Time190355 - Disc Number1 - Disc Count1 - Track Number2 - Track Count16 - Year2002 - Date Modified2006-08-03T12:47:58Z - Date Added2009-10-03T14:58:38Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3337492555 - Play Date UTC2009-10-04T03:45:55Z - Normalization1256 - Compilation - Artwork Count1 - Persistent IDA96610E138F9EFB9 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Billie%20Holiday%20&%20Lester%20Young%20-%20A%20Musical%20Romance/02%20This%20Year's%20Kisses.m4a - File Folder Count4 - Library Folder Count1 - - 5704 - - Track ID5704 - NameMean to Me - ArtistBillie Holiday & Lester Young - ComposerFred E. Ahlert/R. Turke - AlbumBillie Holiday & Lester Young - A Musical Romance - GenreJazz - KindAAC audio file - Size4516560 - Total Time188451 - Disc Number1 - Disc Count1 - Track Number3 - Track Count16 - Year2002 - Date Modified2006-08-03T12:47:58Z - Date Added2009-10-03T14:58:38Z - Bit Rate192 - Sample Rate44100 - Normalization1538 - Compilation - Artwork Count1 - Persistent ID0F5C553AC70E95B6 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Billie%20Holiday%20&%20Lester%20Young%20-%20A%20Musical%20Romance/03%20Mean%20to%20Me.m4a - File Folder Count4 - Library Folder Count1 - - 5706 - - Track ID5706 - NameBack in Your Own Backyard - ArtistBillie Holiday & Lester Young - ComposerAl Jolson/Billy Rose/Dave Dreyer - AlbumBillie Holiday & Lester Young - A Musical Romance - GenreJazz - KindAAC audio file - Size3889157 - Total Time162213 - Disc Number1 - Disc Count1 - Track Number4 - Track Count16 - Year2002 - Date Modified2006-08-03T12:47:58Z - Date Added2009-10-03T14:58:38Z - Bit Rate192 - Sample Rate44100 - Normalization1000 - Compilation - Artwork Count1 - Persistent ID185C6EC16E2BC73C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Billie%20Holiday%20&%20Lester%20Young%20-%20A%20Musical%20Romance/04%20Back%20in%20Your%20Own%20Backyard.m4a - File Folder Count4 - Library Folder Count1 - - 5708 - - Track ID5708 - NameI'll Never Be the Same - ArtistBillie Holiday & Lester Young - ComposerFrank Signorelli/Gus Kahn/Matty Malneck - AlbumBillie Holiday & Lester Young - A Musical Romance - GenreJazz - KindAAC audio file - Size4416485 - Total Time183621 - Disc Number1 - Disc Count1 - Track Number5 - Track Count16 - Year2002 - Date Modified2006-08-03T12:47:58Z - Date Added2009-10-03T14:58:39Z - Bit Rate192 - Sample Rate44100 - Normalization1241 - Compilation - Artwork Count1 - Persistent ID09C4DD44B2EFE8BB - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Billie%20Holiday%20&%20Lester%20Young%20-%20A%20Musical%20Romance/05%20I'll%20Never%20Be%20the%20Same.m4a - File Folder Count4 - Library Folder Count1 - - 5710 - - Track ID5710 - NameMe, Myself and I - ArtistBillie Holiday & Lester Young - ComposerAllan Roberts/Alvin Kaufman/Irving Gordon - AlbumBillie Holiday & Lester Young - A Musical Romance - GenreJazz - KindAAC audio file - Size3784167 - Total Time157313 - Disc Number1 - Disc Count1 - Track Number6 - Track Count16 - Year2002 - Date Modified2006-08-03T12:47:58Z - Date Added2009-10-03T14:58:39Z - Bit Rate192 - Sample Rate44100 - Normalization2871 - Compilation - Artwork Count1 - Persistent ID9C01C25D8D19BB42 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Billie%20Holiday%20&%20Lester%20Young%20-%20A%20Musical%20Romance/06%20Me,%20Myself%20and%20I.m4a - File Folder Count4 - Library Folder Count1 - - 5712 - - Track ID5712 - NameTime On My Hands (You In My Arm) - ArtistBillie Holiday & Lester Young - ComposerHarold Adamson/Mack Gordon/Vincent Youmans - AlbumBillie Holiday & Lester Young - A Musical Romance - GenreJazz - KindAAC audio file - Size4482414 - Total Time186617 - Disc Number1 - Disc Count1 - Track Number7 - Track Count16 - Year2002 - Date Modified2006-08-03T12:47:58Z - Date Added2009-10-03T14:58:39Z - Bit Rate192 - Sample Rate44100 - Normalization998 - Compilation - Artwork Count1 - Persistent ID2E231DA8576AD084 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Billie%20Holiday%20&%20Lester%20Young%20-%20A%20Musical%20Romance/07%20Time%20On%20My%20Hands%20(You%20In%20My%20Arm).m4a - File Folder Count4 - Library Folder Count1 - - 5714 - - Track ID5714 - NameWho Wants Love? - ArtistBillie Holiday & Lester Young - ComposerFranz Waxman/Gus Kahn - AlbumBillie Holiday & Lester Young - A Musical Romance - GenreJazz - KindAAC audio file - Size3707717 - Total Time154388 - Disc Number1 - Disc Count1 - Track Number8 - Track Count16 - Year2002 - Date Modified2006-08-03T12:47:58Z - Date Added2009-10-03T14:58:39Z - Bit Rate192 - Sample Rate44100 - Normalization1921 - Compilation - Artwork Count1 - Persistent ID5893B16F183C346F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Billie%20Holiday%20&%20Lester%20Young%20-%20A%20Musical%20Romance/08%20Who%20Wants%20Love_.m4a - File Folder Count4 - Library Folder Count1 - - 5716 - - Track ID5716 - NameI Must Have That Man! - ArtistBillie Holiday & Lester Young - ComposerDorothy Fields/Jimmy McHugh - AlbumBillie Holiday & Lester Young - A Musical Romance - GenreJazz - KindAAC audio file - Size4243587 - Total Time177073 - Disc Number1 - Disc Count1 - Track Number9 - Track Count16 - Year2002 - Date Modified2006-08-03T12:47:58Z - Date Added2009-10-03T14:58:40Z - Bit Rate192 - Sample Rate44100 - Normalization911 - Compilation - Artwork Count1 - Persistent IDC0DBCDF830E18E73 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Billie%20Holiday%20&%20Lester%20Young%20-%20A%20Musical%20Romance/09%20I%20Must%20Have%20That%20Man!.m4a - File Folder Count4 - Library Folder Count1 - - 5718 - - Track ID5718 - NameFoolin' Myself - ArtistBillie Holiday & Lester Young - ComposerJack Lawrence/Peter Tinturin - AlbumBillie Holiday & Lester Young - A Musical Romance - GenreJazz - KindAAC audio file - Size4371067 - Total Time182484 - Disc Number1 - Disc Count1 - Track Number10 - Track Count16 - Year2002 - Date Modified2006-08-03T12:47:58Z - Date Added2009-10-03T14:58:40Z - Bit Rate192 - Sample Rate44100 - Normalization1936 - Compilation - Artwork Count1 - Persistent IDA677E6150D38B139 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Billie%20Holiday%20&%20Lester%20Young%20-%20A%20Musical%20Romance/10%20Foolin'%20Myself.m4a - File Folder Count4 - Library Folder Count1 - - 5720 - - Track ID5720 - NameWhen You're Smiling - ArtistBillie Holiday & Lester Young - ComposerJoe Goodwin/Larry Shay/Mark Fisher - AlbumBillie Holiday & Lester Young - A Musical Romance - GenreJazz - KindAAC audio file - Size4126853 - Total Time172104 - Disc Number1 - Disc Count1 - Track Number11 - Track Count16 - Year2002 - Date Modified2006-08-03T12:47:58Z - Date Added2009-10-03T14:58:40Z - Bit Rate192 - Sample Rate44100 - Normalization1511 - Compilation - Artwork Count1 - Persistent ID96E02740D8170DA0 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Billie%20Holiday%20&%20Lester%20Young%20-%20A%20Musical%20Romance/11%20When%20You're%20Smiling.m4a - File Folder Count4 - Library Folder Count1 - - 5722 - - Track ID5722 - NameA Sailboat in the Moonlight - ArtistBillie Holiday & Lester Young - ComposerCarmen Lombardo/John Jacob Loeb - AlbumBillie Holiday & Lester Young - A Musical Romance - GenreJazz - KindAAC audio file - Size4111019 - Total Time171454 - Disc Number1 - Disc Count1 - Track Number12 - Track Count16 - Year2002 - Date Modified2006-08-03T12:47:58Z - Date Added2009-10-03T14:58:41Z - Bit Rate192 - Sample Rate44100 - Normalization2230 - Compilation - Artwork Count1 - Sort NameSailboat in the Moonlight - Persistent ID5D5109D2D275223F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Billie%20Holiday%20&%20Lester%20Young%20-%20A%20Musical%20Romance/12%20A%20Sailboat%20in%20the%20Moonlight.m4a - File Folder Count4 - Library Folder Count1 - - 5724 - - Track ID5724 - NameHe's Funny That Way - ArtistBillie Holiday & Lester Young - AlbumBillie Holiday & Lester Young - A Musical Romance - GenreJazz - KindAAC audio file - Size3861746 - Total Time161098 - Disc Number1 - Disc Count1 - Track Number13 - Track Count16 - Year2002 - Date Modified2006-08-03T12:47:58Z - Date Added2009-10-03T14:58:41Z - Bit Rate192 - Sample Rate44100 - Normalization1913 - Compilation - Artwork Count1 - Persistent IDA7480860353205BC - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Billie%20Holiday%20&%20Lester%20Young%20-%20A%20Musical%20Romance/13%20He's%20Funny%20That%20Way.m4a - File Folder Count4 - Library Folder Count1 - - 5726 - - Track ID5726 - NameLaughing at Life - ArtistBillie Holiday & Lester Young - ComposerBob Todd/Charles F. Kenny/Cornell Todd/Nick A. Kenny - AlbumBillie Holiday & Lester Young - A Musical Romance - GenreJazz - KindAAC audio file - Size4238389 - Total Time176725 - Disc Number1 - Disc Count1 - Track Number14 - Track Count16 - Year2002 - Date Modified2006-08-03T12:47:58Z - Date Added2009-10-03T14:58:41Z - Bit Rate192 - Sample Rate44100 - Normalization1351 - Compilation - Artwork Count1 - Persistent IDF476A4E9E6850A5B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Billie%20Holiday%20&%20Lester%20Young%20-%20A%20Musical%20Romance/14%20Laughing%20at%20Life.m4a - File Folder Count4 - Library Folder Count1 - - 5728 - - Track ID5728 - NameWithout Your Love - ArtistBillie Holiday & Lester Young - ComposerFred Stryker/John Lange - AlbumBillie Holiday & Lester Young - A Musical Romance - GenreJazz - KindAAC audio file - Size4162935 - Total Time173335 - Disc Number1 - Disc Count1 - Track Number15 - Track Count16 - Year2002 - Date Modified2006-08-03T12:47:58Z - Date Added2009-10-03T14:58:41Z - Bit Rate192 - Sample Rate44100 - Normalization1816 - Compilation - Artwork Count1 - Persistent ID93D8465B920229C9 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Billie%20Holiday%20&%20Lester%20Young%20-%20A%20Musical%20Romance/15%20Without%20Your%20Love.m4a - File Folder Count4 - Library Folder Count1 - - 5730 - - Track ID5730 - NameFine and Mellow - ArtistBillie Holiday & Lester Young - ComposerBillie Holiday - AlbumBillie Holiday & Lester Young - A Musical Romance - GenreJazz - KindAAC audio file - Size9185328 - Total Time379180 - Disc Number1 - Disc Count1 - Track Number16 - Track Count16 - Year2002 - Date Modified2006-08-03T12:47:58Z - Date Added2009-10-03T14:58:41Z - Bit Rate192 - Sample Rate44100 - Normalization1000 - Compilation - Artwork Count1 - Persistent ID876EE8868D102166 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Billie%20Holiday%20&%20Lester%20Young%20-%20A%20Musical%20Romance/16%20Fine%20and%20Mellow.m4a - File Folder Count4 - Library Folder Count1 - - 5732 - - Track ID5732 - NameKaakkai Siraginiley - ArtistK. J. Yesudas - ComposerL. Vaidhyanathan - AlbumBharathiyaar Songs from Tamil Films - GenreWorld - KindAAC audio file - Size3947181 - Total Time167484 - Track Number1 - Track Count15 - Year1981 - Date Modified2006-07-30T02:40:28Z - Date Added2009-10-03T14:58:42Z - Bit Rate192 - Sample Rate44100 - Normalization2124 - Compilation - Artwork Count1 - Persistent ID337AC20C0E3E9EA4 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Bharathiyaar%20Songs%20from%20Tamil%20Films/01%20Kaakkai%20Siraginiley.m4a - File Folder Count4 - Library Folder Count1 - - 5734 - - Track ID5734 - NamePaayumoli & Veenaiyadi - ArtistK.J. Yesudas & B. Neeraja - ComposerL. Vaidhyanathan - AlbumBharathiyaar Songs from Tamil Films - GenreWorld - KindAAC audio file - Size5641472 - Total Time235982 - Track Number2 - Track Count15 - Year1981 - Date Modified2006-07-30T02:40:28Z - Date Added2009-10-03T14:58:42Z - Bit Rate192 - Sample Rate44100 - Normalization2742 - Compilation - Artwork Count1 - Persistent ID4EFA3CC2B6151CB9 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Bharathiyaar%20Songs%20from%20Tamil%20Films/02%20Paayumoli%20&%20Veenaiyadi.m4a - File Folder Count4 - Library Folder Count1 - - 5736 - - Track ID5736 - NameNallathor Veenaisithe - ArtistRajkumar Bharathi - ComposerL. Vaidhyanathan - AlbumBharathiyaar Songs from Tamil Films - GenreWorld - KindAAC audio file - Size4470587 - Total Time187685 - Track Number3 - Track Count15 - Year1981 - Date Modified2006-07-30T02:40:30Z - Date Added2009-10-03T14:58:42Z - Bit Rate192 - Sample Rate44100 - Normalization2748 - Compilation - Artwork Count1 - Persistent ID2D4420C677C6C29A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Bharathiyaar%20Songs%20from%20Tamil%20Films/03%20Nallathor%20Veenaisithe.m4a - File Folder Count4 - Library Folder Count1 - - 5738 - - Track ID5738 - NameKaatru Veliyidai - ArtistPB Sreenivas, P Susheela - ComposerSubramania Bharathi - AlbumBharathiyaar Songs from Tamil Films - GenreWorld - KindAAC audio file - Size4999798 - Total Time209697 - Track Number4 - Track Count15 - Year1961 - Date Modified2006-07-30T02:40:30Z - Date Added2009-10-03T14:58:42Z - Bit Rate192 - Sample Rate44100 - Normalization2395 - Compilation - Artwork Count1 - Persistent ID22820E2F8D131628 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Bharathiyaar%20Songs%20from%20Tamil%20Films/04%20Kaatru%20Veliyidai.m4a - File Folder Count4 - Library Folder Count1 - - 5740 - - Track ID5740 - NameTheeratha Vilaiyaattu - ArtistD.K. Pattammal - ComposerSubramania Bharathi - AlbumBharathiyaar Songs from Tamil Films - GenreWorld - KindAAC audio file - Size6199247 - Total Time259226 - Track Number5 - Track Count15 - Year1949 - Date Modified2006-07-30T02:40:28Z - Date Added2009-10-03T14:58:42Z - Bit Rate192 - Sample Rate44100 - Normalization3600 - Compilation - Artwork Count1 - Persistent ID421FEA371E1824E8 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Bharathiyaar%20Songs%20from%20Tamil%20Films/05%20Theeratha%20Vilaiyaattu.m4a - File Folder Count4 - Library Folder Count1 - - 5742 - - Track ID5742 - NameNenju Porukkuthilliaiye - ArtistCS Jayaraman - ComposerSubramania Bharathi - AlbumBharathiyaar Songs from Tamil Films - GenreWorld - KindAAC audio file - Size4415488 - Total Time185363 - Track Number6 - Track Count15 - Year1952 - Date Modified2006-07-30T02:40:28Z - Date Added2009-10-03T14:58:42Z - Bit Rate192 - Sample Rate44100 - Normalization2148 - Compilation - Artwork Count1 - Persistent IDA21CA0B9922F1808 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Bharathiyaar%20Songs%20from%20Tamil%20Films/06%20Nenju%20Porukkuthilliaiye.m4a - File Folder Count4 - Library Folder Count1 - - 5744 - - Track ID5744 - NameVellippanimalai - ArtistSeergazhi Govindarajan, Trichy Loganathan, & Chorus - ComposerSubramania Bharathi - AlbumBharathiyaar Songs from Tamil Films - GenreWorld - KindAAC audio file - Size4535163 - Total Time190355 - Track Number7 - Track Count15 - Year1961 - Date Modified2006-07-30T02:40:30Z - Date Added2009-10-03T14:58:43Z - Bit Rate192 - Sample Rate44100 - Normalization2910 - Compilation - Artwork Count1 - Persistent ID02C583E663D324B2 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Bharathiyaar%20Songs%20from%20Tamil%20Films/07%20Vellippanimalai.m4a - File Folder Count4 - Library Folder Count1 - - 5746 - - Track ID5746 - NameEngiruntho Vanthaan - ArtistSeergazhi Govindarajan - ComposerSubramania Bharathi - AlbumBharathiyaar Songs from Tamil Films - GenreWorld - KindAAC audio file - Size4567148 - Total Time191702 - Track Number8 - Track Count15 - Year1960 - Date Modified2006-07-30T02:40:30Z - Date Added2009-10-03T14:58:43Z - Bit Rate192 - Sample Rate44100 - Normalization3531 - Compilation - Artwork Count1 - Persistent IDEDBACD5121E7A6D0 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Bharathiyaar%20Songs%20from%20Tamil%20Films/08%20Engiruntho%20Vanthaan.m4a - File Folder Count4 - Library Folder Count1 - - 5748 - - Track ID5748 - NameManadhil Urudhi Vendum - ArtistB. Neeraja - ComposerL. Vaidhyanathan - AlbumBharathiyaar Songs from Tamil Films - GenreWorld - KindAAC audio file - Size2524902 - Total Time106671 - Track Number9 - Track Count15 - Year1981 - Date Modified2006-07-30T02:40:28Z - Date Added2009-10-03T14:58:43Z - Bit Rate192 - Sample Rate44100 - Normalization1882 - Compilation - Artwork Count1 - Persistent ID6F2A1D0EBB63E88A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Bharathiyaar%20Songs%20from%20Tamil%20Films/09%20Manadhil%20Urudhi%20Vendum.m4a - File Folder Count4 - Library Folder Count1 - - 5750 - - Track ID5750 - NameSenthamizh Naadennum - ArtistP Susheela & Chorus - ComposerL. Vaidhyanathan - AlbumBharathiyaar Songs from Tamil Films - GenreWorld - KindAAC audio file - Size5215677 - Total Time218289 - Track Number10 - Track Count15 - Year1981 - Date Modified2006-07-30T02:40:30Z - Date Added2009-10-03T14:58:43Z - Bit Rate192 - Sample Rate44100 - Normalization6867 - Compilation - Artwork Count1 - Persistent ID4E2D8406CC3ED381 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Bharathiyaar%20Songs%20from%20Tamil%20Films/10%20Senthamizh%20Naadennum.m4a - File Folder Count4 - Library Folder Count1 - - 5752 - - Track ID5752 - NameAchchamillai - ArtistS P Balasubramanyam - ComposerL. Vaidhyanathan - AlbumBharathiyaar Songs from Tamil Films - GenreWorld - KindAAC audio file - Size4388842 - Total Time184272 - Track Number11 - Track Count15 - Year1981 - Date Modified2006-07-30T02:40:30Z - Date Added2009-10-03T14:58:43Z - Bit Rate192 - Sample Rate44100 - Normalization4523 - Compilation - Artwork Count1 - Persistent ID37DFFBE62BF460D9 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Bharathiyaar%20Songs%20from%20Tamil%20Films/11%20Achchamillai.m4a - File Folder Count4 - Library Folder Count1 - - 5754 - - Track ID5754 - NameNenjil Uramummindri - ArtistRajkumar Bharathi - ComposerL. Vaidhyanathan - AlbumBharathiyaar Songs from Tamil Films - GenreWorld - KindAAC audio file - Size5688246 - Total Time237956 - Track Number12 - Track Count15 - Year1981 - Date Modified2006-07-30T02:40:30Z - Date Added2009-10-03T14:58:43Z - Bit Rate192 - Sample Rate44100 - Normalization3056 - Compilation - Artwork Count1 - Persistent ID9B2ECB8F4398321C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Bharathiyaar%20Songs%20from%20Tamil%20Films/12%20Nenjil%20Uramummindri.m4a - File Folder Count4 - Library Folder Count1 - - 5756 - - Track ID5756 - NameOdi Vilayadu Pappa - ArtistK.J. Yesudas & Saibaba - ComposerL. Vaidhyanathan - AlbumBharathiyaar Songs from Tamil Films - GenreWorld - KindAAC audio file - Size7070534 - Total Time295263 - Track Number13 - Track Count15 - Year1981 - Date Modified2006-07-30T02:40:30Z - Date Added2009-10-03T14:58:43Z - Bit Rate192 - Sample Rate44100 - Normalization3971 - Compilation - Artwork Count1 - Persistent IDE9DB76C42ADC2F55 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Bharathiyaar%20Songs%20from%20Tamil%20Films/13%20Odi%20Vilayadu%20Pappa.m4a - File Folder Count4 - Library Folder Count1 - - 5758 - - Track ID5758 - NameAaduvome - ArtistP. Susheela, Dheephan Chakravarthy, Dr. Chandilyan, & Madhangi - ComposerL. Vaidhyanathan - AlbumBharathiyaar Songs from Tamil Films - GenreWorld - KindAAC audio file - Size4773506 - Total Time200270 - Track Number14 - Track Count15 - Year1981 - Date Modified2006-07-30T02:40:30Z - Date Added2009-10-03T14:58:44Z - Bit Rate192 - Sample Rate44100 - Normalization3791 - Compilation - Artwork Count1 - Persistent IDD04A32D2F78443C8 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Bharathiyaar%20Songs%20from%20Tamil%20Films/14%20Aaduvome.m4a - File Folder Count4 - Library Folder Count1 - - 5760 - - Track ID5760 - NameSindhu Nadhiyin Meesai - ArtistT.M. Sounderarajan, J.V. Raghavulu, & L.R. Eswari - ComposerSubramania Bharathi - AlbumBharathiyaar Songs from Tamil Films - GenreWorld - KindAAC audio file - Size8651782 - Total Time356889 - Track Number15 - Track Count15 - Year1963 - Date Modified2006-07-30T02:40:30Z - Date Added2009-10-03T14:58:44Z - Bit Rate192 - Sample Rate44100 - Normalization4238 - Compilation - Artwork Count1 - Persistent IDEA1E65402356BC06 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Bharathiyaar%20Songs%20from%20Tamil%20Films/15%20Sindhu%20Nadhiyin%20Meesai.m4a - File Folder Count4 - Library Folder Count1 - - 5762 - - Track ID5762 - NameBartok:Dance Suite (Orch)/1: Moderato - ArtistPierre Boulez; Chicago Symphony Orchestra - ComposerBartók, Béla - AlbumBartók-Boulez:Divertimento, Dance Suite, Hungarian Sketches, Two Pictures - GenreClassical - KindAAC audio file - Size5354638 - Total Time220820 - Track Number1 - Track Count16 - Year1995 - Date Modified2006-08-13T06:32:06Z - Date Added2009-10-03T14:58:45Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Compilation - Artwork Count1 - Persistent ID396F96C4721CFDB1 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Barto%CC%81k-Boulez_Divertimento,%20Dance%20Suite,%20Hungarian%20Sketches,%20Two%20Pictures/01%20Bartok_Dance%20Suite%20(Orch)_1_%20Moderato.m4a - File Folder Count4 - Library Folder Count1 - - 5764 - - Track ID5764 - NameBartok:Dance Suite (Orch)/2: Allegro Molto - ArtistPierre Boulez; Chicago Symphony Orchestra - ComposerBartók, Béla - AlbumBartók-Boulez:Divertimento, Dance Suite, Hungarian Sketches, Two Pictures - GenreClassical - KindAAC audio file - Size3324015 - Total Time136206 - Track Number2 - Track Count16 - Year1995 - Date Modified2006-08-13T06:32:04Z - Date Added2009-10-03T14:58:45Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Compilation - Artwork Count1 - Persistent ID52327BAECE8D8C88 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Barto%CC%81k-Boulez_Divertimento,%20Dance%20Suite,%20Hungarian%20Sketches,%20Two%20Pictures/02%20Bartok_Dance%20Suite%20(Orch)_2_%20Allegro%20Molto.m4a - File Folder Count4 - Library Folder Count1 - - 5766 - - Track ID5766 - NameBartok:Dance Suite (Orch)/3: Allegro Vivace - ArtistPierre Boulez; Chicago Symphony Orchestra - ComposerBartók, Béla - AlbumBartók-Boulez:Divertimento, Dance Suite, Hungarian Sketches, Two Pictures - GenreClassical - KindAAC audio file - Size4312540 - Total Time177352 - Track Number3 - Track Count16 - Year1995 - Date Modified2006-08-13T06:32:02Z - Date Added2009-10-03T14:58:45Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Compilation - Artwork Count1 - Persistent IDF311B14715E96EEE - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Barto%CC%81k-Boulez_Divertimento,%20Dance%20Suite,%20Hungarian%20Sketches,%20Two%20Pictures/03%20Bartok_Dance%20Suite%20(Orch)_3_%20Allegro%20Vivace.m4a - File Folder Count4 - Library Folder Count1 - - 5768 - - Track ID5768 - NameBartok:Dance Suite (Orch)/4: Molto Tranquillo - ArtistPierre Boulez; Chicago Symphony Orchestra - ComposerBartók, Béla - AlbumBartók-Boulez:Divertimento, Dance Suite, Hungarian Sketches, Two Pictures - GenreClassical - KindAAC audio file - Size3796056 - Total Time155850 - Track Number4 - Track Count16 - Year1995 - Date Modified2006-08-13T06:32:00Z - Date Added2009-10-03T14:58:46Z - Bit Rate192 - Sample Rate44100 - Normalization37 - Compilation - Artwork Count1 - Persistent ID4A0AE40A56B4FBC0 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Barto%CC%81k-Boulez_Divertimento,%20Dance%20Suite,%20Hungarian%20Sketches,%20Two%20Pictures/04%20Bartok_Dance%20Suite%20(Orch)_4_%20Molto%20Tranquillo.m4a - File Folder Count4 - Library Folder Count1 - - 5770 - - Track ID5770 - NameBartok:Dance Suite (Orch)/5: Comodo - ArtistPierre Boulez; Chicago Symphony Orchestra - ComposerBartók, Béla - AlbumBartók-Boulez:Divertimento, Dance Suite, Hungarian Sketches, Two Pictures - GenreClassical - KindAAC audio file - Size1529354 - Total Time61508 - Track Number5 - Track Count16 - Year1995 - Date Modified2006-08-13T06:31:58Z - Date Added2009-10-03T14:58:46Z - Bit Rate192 - Sample Rate44100 - Normalization355 - Compilation - Artwork Count1 - Persistent IDE0BF92950DF4A744 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Barto%CC%81k-Boulez_Divertimento,%20Dance%20Suite,%20Hungarian%20Sketches,%20Two%20Pictures/05%20Bartok_Dance%20Suite%20(Orch)_5_%20Comodo.m4a - File Folder Count4 - Library Folder Count1 - - 5772 - - Track ID5772 - NameBartok:Dance Suite (Orch)/6: Finale: Allegro - ArtistPierre Boulez; Chicago Symphony Orchestra - ComposerBartók, Béla - AlbumBartók-Boulez:Divertimento, Dance Suite, Hungarian Sketches, Two Pictures - GenreClassical - KindAAC audio file - Size5932268 - Total Time252353 - Track Number6 - Track Count16 - Year1995 - Date Modified2006-08-13T06:31:58Z - Date Added2009-10-03T14:58:46Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Compilation - Artwork Count1 - Persistent ID0174AFB179AA126C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Barto%CC%81k-Boulez_Divertimento,%20Dance%20Suite,%20Hungarian%20Sketches,%20Two%20Pictures/06%20Bartok_Dance%20Suite%20(Orch)_6_%20Finale_%20Allegro.m4a - File Folder Count4 - Library Folder Count1 - - 5774 - - Track ID5774 - NameBartok:2 Images (Orch)/1: In Full Flower - ArtistPierre Boulez; Chicago Symphony Orchestra - ComposerBartók, Béla - AlbumBartók-Boulez:Divertimento, Dance Suite, Hungarian Sketches, Two Pictures - GenreClassical - KindAAC audio file - Size12620798 - Total Time522006 - Track Number7 - Track Count16 - Year1995 - Date Modified2006-08-13T06:31:56Z - Date Added2009-10-03T14:58:46Z - Bit Rate192 - Sample Rate44100 - Skip Count2 - Skip Date2014-01-05T09:43:42Z - Normalization1259 - Compilation - Artwork Count1 - Persistent ID76D9633F25254D3E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Barto%CC%81k-Boulez_Divertimento,%20Dance%20Suite,%20Hungarian%20Sketches,%20Two%20Pictures/07%20Bartok_2%20Images%20(Orch)_1_%20In%20Full%20Flower.m4a - File Folder Count4 - Library Folder Count1 - - 5776 - - Track ID5776 - NameBartok:2 Images (Orch)/2: Village Dance - ArtistPierre Boulez; Chicago Symphony Orchestra - ComposerBartók, Béla - AlbumBartók-Boulez:Divertimento, Dance Suite, Hungarian Sketches, Two Pictures - GenreClassical - KindAAC audio file - Size14196162 - Total Time593012 - Track Number8 - Track Count16 - Year1995 - Date Modified2006-08-13T06:31:50Z - Date Added2009-10-03T14:58:46Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Compilation - Artwork Count1 - Persistent ID6FCF4C5392E7806D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Barto%CC%81k-Boulez_Divertimento,%20Dance%20Suite,%20Hungarian%20Sketches,%20Two%20Pictures/08%20Bartok_2%20Images%20(Orch)_2_%20Village%20Dance.m4a - File Folder Count4 - Library Folder Count1 - - 5778 - - Track ID5778 - NameBartok:Hungarian Sketches: I.An Evening With The Szekely - ArtistPierre Boulez; Chicago Symphony Orchestra - ComposerBartók, Béla - AlbumBartók-Boulez:Divertimento, Dance Suite, Hungarian Sketches, Two Pictures - GenreClassical - KindAAC audio file - Size4070569 - Total Time168018 - Track Number9 - Track Count16 - Year1995 - Date Modified2006-08-13T06:31:44Z - Date Added2009-10-03T14:58:46Z - Bit Rate192 - Sample Rate44100 - Normalization97 - Compilation - Artwork Count1 - Persistent IDB5754D3A8CB00053 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Barto%CC%81k-Boulez_Divertimento,%20Dance%20Suite,%20Hungarian%20Sketches,%20Two%20Pictures/09%20Bartok_Hungarian%20Sketches_%20I.An%20Evening%20With%20The%20Szekely.m4a - File Folder Count4 - Library Folder Count1 - - 5780 - - Track ID5780 - NameIi.(2:49) Bear Dance - ArtistPierre Boulez; Chicago Symphony Orchestra - ComposerBartók, Béla - AlbumBartók-Boulez:Divertimento, Dance Suite, Hungarian Sketches, Two Pictures - GenreClassical - KindAAC audio file - Size2190281 - Total Time89000 - Track Number10 - Track Count16 - Year1995 - Date Modified2006-08-13T06:31:42Z - Date Added2009-10-03T14:58:46Z - Bit Rate192 - Sample Rate44100 - Normalization610 - Compilation - Artwork Count1 - Persistent ID5719213EE1358C37 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Barto%CC%81k-Boulez_Divertimento,%20Dance%20Suite,%20Hungarian%20Sketches,%20Two%20Pictures/10%20Ii.(2_49)%20Bear%20Dance.m4a - File Folder Count4 - Library Folder Count1 - - 5782 - - Track ID5782 - NameIII.(4:19)Melody - ArtistPierre Boulez; Chicago Symphony Orchestra - ComposerBartók, Béla - AlbumBartók-Boulez:Divertimento, Dance Suite, Hungarian Sketches, Two Pictures - GenreClassical - KindAAC audio file - Size3439615 - Total Time141013 - Track Number11 - Track Count16 - Year1995 - Date Modified2006-08-13T06:31:40Z - Date Added2009-10-03T14:58:46Z - Bit Rate192 - Sample Rate44100 - Normalization413 - Compilation - Artwork Count1 - Persistent ID60F619E09E36437E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Barto%CC%81k-Boulez_Divertimento,%20Dance%20Suite,%20Hungarian%20Sketches,%20Two%20Pictures/11%20III.(4_19)Melody.m4a - File Folder Count4 - Library Folder Count1 - - 5784 - - Track ID5784 - NameIV.(6:40)Slightly Tipsy - ArtistPierre Boulez; Chicago Symphony Orchestra - ComposerBartók, Béla - AlbumBartók-Boulez:Divertimento, Dance Suite, Hungarian Sketches, Two Pictures - GenreClassical - KindAAC audio file - Size3195216 - Total Time130842 - Track Number12 - Track Count16 - Year1995 - Date Modified2006-08-13T06:31:40Z - Date Added2009-10-03T14:58:46Z - Bit Rate192 - Sample Rate44100 - Normalization323 - Compilation - Artwork Count1 - Persistent ID11B4D01BE8553B75 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Barto%CC%81k-Boulez_Divertimento,%20Dance%20Suite,%20Hungarian%20Sketches,%20Two%20Pictures/12%20IV.(6_40)Slightly%20Tipsy.m4a - File Folder Count4 - Library Folder Count1 - - 5786 - - Track ID5786 - NameV.(8:50)Swineherd's Dance - ArtistPierre Boulez; Chicago Symphony Orchestra - ComposerBartók, Béla - AlbumBartók-Boulez:Divertimento, Dance Suite, Hungarian Sketches, Two Pictures - GenreClassical - KindAAC audio file - Size3061067 - Total Time129171 - Track Number13 - Track Count16 - Year1995 - Date Modified2006-08-13T06:31:38Z - Date Added2009-10-03T14:58:46Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Compilation - Artwork Count1 - Persistent IDF5FE0A08DCFEFF10 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Barto%CC%81k-Boulez_Divertimento,%20Dance%20Suite,%20Hungarian%20Sketches,%20Two%20Pictures/13%20V.(8_50)Swineherd's%20Dance.m4a - File Folder Count4 - Library Folder Count1 - - 5788 - - Track ID5788 - NameBartok:Divermento/1: Allegro Non Troppo - ArtistPierre Boulez; Chicago Symphony Orchestra - ComposerBartók, Béla - AlbumBartók-Boulez:Divertimento, Dance Suite, Hungarian Sketches, Two Pictures - GenreClassical - KindAAC audio file - Size13111097 - Total Time542021 - Track Number14 - Track Count16 - Year1995 - Date Modified2006-08-13T06:31:36Z - Date Added2009-10-03T14:58:46Z - Bit Rate192 - Sample Rate44100 - Normalization949 - Compilation - Artwork Count1 - Persistent ID1DE9130D3C45FF6E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Barto%CC%81k-Boulez_Divertimento,%20Dance%20Suite,%20Hungarian%20Sketches,%20Two%20Pictures/14%20Bartok_Divermento_1_%20Allegro%20Non%20Troppo.m4a - File Folder Count4 - Library Folder Count1 - - 5790 - - Track ID5790 - NameBartok:Divermento/2: Molto Adagio - ArtistPierre Boulez; Chicago Symphony Orchestra - ComposerBartók, Béla - AlbumBartók-Boulez:Divertimento, Dance Suite, Hungarian Sketches, Two Pictures - GenreClassical - KindAAC audio file - Size13927843 - Total Time575017 - Track Number15 - Track Count16 - Year1995 - Date Modified2006-08-13T06:31:30Z - Date Added2009-10-03T14:58:47Z - Bit Rate192 - Sample Rate44100 - Normalization306 - Compilation - Artwork Count1 - Persistent IDCC5877FD20852D51 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Barto%CC%81k-Boulez_Divertimento,%20Dance%20Suite,%20Hungarian%20Sketches,%20Two%20Pictures/15%20Bartok_Divermento_2_%20Molto%20Adagio.m4a - File Folder Count4 - Library Folder Count1 - - 5792 - - Track ID5792 - NameBartok:Divermento/3: Allegro Assai - ArtistPierre Boulez; Chicago Symphony Orchestra - ComposerBartók, Béla - AlbumBartók-Boulez:Divertimento, Dance Suite, Hungarian Sketches, Two Pictures - GenreClassical - KindAAC audio file - Size11008494 - Total Time455016 - Track Number16 - Track Count16 - Year1995 - Date Modified2006-08-13T06:31:24Z - Date Added2009-10-03T14:58:47Z - Bit Rate192 - Sample Rate44100 - Normalization786 - Compilation - Artwork Count1 - Persistent ID5CEC27830222603D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Barto%CC%81k-Boulez_Divertimento,%20Dance%20Suite,%20Hungarian%20Sketches,%20Two%20Pictures/16%20Bartok_Divermento_3_%20Allegro%20Assai.m4a - File Folder Count4 - Library Folder Count1 - - 5794 - - Track ID5794 - NameAdagio for Strings - ArtistEugene Ormandy; Philadelphia Orchestra - ComposerBarber, Samuel - AlbumBarber Copland - GenreClassical - KindAAC audio file - Size9247058 - Total Time388630 - Track Number1 - Track Count7 - Date Modified2006-08-13T06:31:18Z - Date Added2009-10-03T14:58:47Z - Bit Rate192 - Sample Rate44100 - Normalization349 - Compilation - Artwork Count1 - Persistent IDF3CF6117A6780873 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Barber%20Copland/01%20Adagio%20for%20Strings.m4a - File Folder Count4 - Library Folder Count1 - - 5796 - - Track ID5796 - NameEl Salon Mexico - ArtistNeville Marriner; Minnesota Orchestra - ComposerCopland, Aaron - AlbumBarber Copland - GenreClassical - KindAAC audio file - Size15993044 - Total Time667014 - Track Number2 - Track Count7 - Date Modified2006-08-13T06:31:14Z - Date Added2009-10-03T14:58:47Z - Bit Rate192 - Sample Rate44100 - Normalization1246 - Compilation - Artwork Count1 - Persistent IDFB85C04B64905A4E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Barber%20Copland/02%20El%20Salon%20Mexico.m4a - File Folder Count4 - Library Folder Count1 - - 5798 - - Track ID5798 - NameFour Dance Episodes from Rodeo: Buckaroo Holiday - ArtistNeville Marriner; Minnesota Orchestra - ComposerCopland, Aaron - AlbumBarber Copland - GenreClassical - KindAAC audio file - Size12001578 - Total Time498554 - Track Number3 - Track Count7 - Date Modified2006-08-13T06:31:08Z - Date Added2009-10-03T14:58:47Z - Bit Rate192 - Sample Rate44100 - Normalization1226 - Compilation - Artwork Count1 - Persistent IDCC0D3238675033E6 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Barber%20Copland/03%20Four%20Dance%20Episodes%20from%20Rodeo_%20Buckaroo%20Holiday.m4a - File Folder Count4 - Library Folder Count1 - - 5800 - - Track ID5800 - NameFour Dance Episodes from Rodeo: Corral Nocture - ArtistNeville Marriner; Minnesota Orchestra - ComposerCopland, Aaron - AlbumBarber Copland - GenreClassical - KindAAC audio file - Size5856180 - Total Time243552 - Track Number4 - Track Count7 - Date Modified2006-08-13T06:31:02Z - Date Added2009-10-03T14:58:47Z - Bit Rate192 - Sample Rate44100 - Normalization145 - Compilation - Artwork Count1 - Persistent IDFA186CF43D29D3EC - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Barber%20Copland/04%20Four%20Dance%20Episodes%20from%20Rodeo_%20Corral%20Nocture.m4a - File Folder Count4 - Library Folder Count1 - - 5802 - - Track ID5802 - NameFour Dance Episodes from Rodeo: Saturday night waltz - ArtistNeville Marriner; Minnesota Orchestra - ComposerCopland, Aaron - AlbumBarber Copland - GenreClassical - KindAAC audio file - Size7993975 - Total Time332995 - Track Number5 - Track Count7 - Date Modified2006-08-13T06:31:00Z - Date Added2009-10-03T14:58:47Z - Bit Rate192 - Sample Rate44100 - Normalization193 - Compilation - Artwork Count1 - Persistent ID2B49731DE9AE2157 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Barber%20Copland/05%20Four%20Dance%20Episodes%20from%20Rodeo_%20Saturday%20night%20waltz.m4a - File Folder Count4 - Library Folder Count1 - - 5804 - - Track ID5804 - NameFour Dance Episodes from Rodeo: Hoe-down - ArtistNeville Marriner; Minnesota Orchestra - ComposerCopland, Aaron - AlbumBarber Copland - GenreClassical - KindAAC audio file - Size5400441 - Total Time229899 - Track Number6 - Track Count7 - Date Modified2006-08-13T06:30:56Z - Date Added2009-10-03T14:58:47Z - Bit Rate192 - Sample Rate44100 - Normalization1071 - Compilation - Artwork Count1 - Persistent ID2ED3A5681E9FAB70 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Barber%20Copland/06%20Four%20Dance%20Episodes%20from%20Rodeo_%20Hoe-down.m4a - File Folder Count4 - Library Folder Count1 - - 5806 - - Track ID5806 - NameAppalachian Spring - ArtistNeville Marriner; Minnesota Orchestra - ComposerCopland, Aaron - AlbumBarber Copland - GenreClassical - KindAAC audio file - Size34444044 - Total Time1423219 - Track Number7 - Track Count7 - Date Modified2006-08-13T06:30:54Z - Date Added2009-10-03T14:58:47Z - Bit Rate192 - Sample Rate44100 - Normalization881 - Compilation - Artwork Count1 - Persistent ID354BBDF8B5607F55 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Barber%20Copland/07%20Appalachian%20Spring.m4a - File Folder Count4 - Library Folder Count1 - - 5808 - - Track ID5808 - NameConcerto No. 1 BWV 1046 in F Major, I. Allegro - ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra - ComposerJohann Sebastian Bach (1685-1750) - AlbumBach: The Brandenburg Concertos and Suites (Karajan) - GenreClassical - KindAAC audio file - Size6444412 - Total Time266935 - Disc Number1 - Disc Count2 - Track Number1 - Track Count17 - Year1965 - Date Modified2006-08-08T03:31:36Z - Date Added2009-10-03T14:58:48Z - Bit Rate192 - Sample Rate44100 - Normalization1162 - Compilation - Artwork Count1 - Persistent ID4EF2DD4AFAD42D86 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Bach_%20The%20Brandenburg%20Concertos%20and%20Suites%20(Karajan)/1-01%20Concerto%20No.%201%20BWV%201046%20in%20F%20Major,%20I.%20Allegro.m4a - File Folder Count4 - Library Folder Count1 - - 5810 - - Track ID5810 - NameConcerto No. 1 BWV 1046 in F Major, II. Adagio - ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra - ComposerJohann Sebastian Bach (1685-1750) - AlbumBach: The Brandenburg Concertos and Suites (Karajan) - GenreClassical - KindAAC audio file - Size7467014 - Total Time307407 - Disc Number1 - Disc Count2 - Track Number2 - Track Count17 - Year1965 - Date Modified2006-08-08T03:31:36Z - Date Added2009-10-03T14:58:48Z - Bit Rate192 - Sample Rate44100 - Normalization442 - Compilation - Artwork Count1 - Persistent ID759CC57A21B5B995 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Bach_%20The%20Brandenburg%20Concertos%20and%20Suites%20(Karajan)/1-02%20Concerto%20No.%201%20BWV%201046%20in%20F%20Major,%20II.%20Adagio.m4a - File Folder Count4 - Library Folder Count1 - - 5812 - - Track ID5812 - NameConcerto No. 1 BWV 1046 in F Major, III. Allegro - ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra - ComposerJohann Sebastian Bach (1685-1750) - AlbumBach: The Brandenburg Concertos and Suites (Karajan) - GenreClassical - KindAAC audio file - Size7271092 - Total Time299303 - Disc Number1 - Disc Count2 - Track Number3 - Track Count17 - Year1965 - Date Modified2006-08-08T03:31:36Z - Date Added2009-10-03T14:58:48Z - Bit Rate192 - Sample Rate44100 - Normalization1200 - Compilation - Artwork Count1 - Persistent ID5E140F4CF10593B9 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Bach_%20The%20Brandenburg%20Concertos%20and%20Suites%20(Karajan)/1-03%20Concerto%20No.%201%20BWV%201046%20in%20F%20Major,%20III.%20Allegro.m4a - File Folder Count4 - Library Folder Count1 - - 5814 - - Track ID5814 - NameConcerto No. 1 BWV 1046 in F Major, I. Menuetto - Trio I - Polacca - Trio II - ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra - ComposerJohann Sebastian Bach (1685-1750) - AlbumBach: The Brandenburg Concertos and Suites (Karajan) - GenreClassical - KindAAC audio file - Size17530714 - Total Time731380 - Disc Number1 - Disc Count2 - Track Number4 - Track Count17 - Year1965 - Date Modified2006-08-08T03:31:36Z - Date Added2009-10-03T14:58:48Z - Bit Rate192 - Sample Rate44100 - Normalization1202 - Compilation - Artwork Count1 - Persistent ID0B993B4694266329 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Bach_%20The%20Brandenburg%20Concertos%20and%20Suites%20(Karajan)/1-04%20Concerto%20No.%201%20BWV%201046%20in%20F%20Major,%20I.%20Menuetto%20-%20Trio%20I%20-%20Polacca%20-%20Trio%20II.m4a - File Folder Count4 - Library Folder Count1 - - 5816 - - Track ID5816 - NameConcerto No. 3 BWV 1048 in G Major, II. Allegro - ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra - ComposerJohann Sebastian Bach (1685-1750) - AlbumBach: The Brandenburg Concertos and Suites (Karajan) - GenreClassical - KindAAC audio file - Size9926020 - Total Time409018 - Disc Number1 - Disc Count2 - Track Number5 - Track Count17 - Year1965 - Date Modified2006-08-08T03:31:34Z - Date Added2009-10-03T14:58:48Z - Bit Rate192 - Sample Rate44100 - Normalization1006 - Compilation - Artwork Count1 - Persistent ID0C3CFB4D588EA45A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Bach_%20The%20Brandenburg%20Concertos%20and%20Suites%20(Karajan)/1-05%20Concerto%20No.%203%20BWV%201048%20in%20G%20Major,%20II.%20Allegro.m4a - File Folder Count4 - Library Folder Count1 - - 5818 - - Track ID5818 - NameConcerto No. 3 BWV 1048 in G Major, II. Adagio - ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra - ComposerJohann Sebastian Bach (1685-1750) - AlbumBach: The Brandenburg Concertos and Suites (Karajan) - GenreClassical - KindAAC audio file - Size567333 - Total Time21430 - Disc Number1 - Disc Count2 - Track Number6 - Track Count17 - Year1965 - Date Modified2006-08-08T03:31:34Z - Date Added2009-10-03T14:58:48Z - Bit Rate192 - Sample Rate44100 - Normalization11 - Compilation - Artwork Count1 - Persistent IDBEA19895540FF8EA - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Bach_%20The%20Brandenburg%20Concertos%20and%20Suites%20(Karajan)/1-06%20Concerto%20No.%203%20BWV%201048%20in%20G%20Major,%20II.%20Adagio.m4a - File Folder Count4 - Library Folder Count1 - - 5820 - - Track ID5820 - NameConcerto No. 3 BWV 1048 in G Major, IV. Allegro - ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra - ComposerJohann Sebastian Bach (1685-1750) - AlbumBach: The Brandenburg Concertos and Suites (Karajan) - GenreClassical - KindAAC audio file - Size8592489 - Total Time361951 - Disc Number1 - Disc Count2 - Track Number7 - Track Count17 - Year1965 - Date Modified2006-08-08T03:31:34Z - Date Added2009-10-03T14:58:49Z - Bit Rate192 - Sample Rate44100 - Normalization691 - Compilation - Artwork Count1 - Persistent ID118B53FB38082BE4 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Bach_%20The%20Brandenburg%20Concertos%20and%20Suites%20(Karajan)/1-07%20Concerto%20No.%203%20BWV%201048%20in%20G%20Major,%20IV.%20Allegro.m4a - File Folder Count4 - Library Folder Count1 - - 5822 - - Track ID5822 - NameConcerto No. 4 BWV 1049, I. Allegro - ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra - ComposerJohann Sebastian Bach (1685-1750) - AlbumBach: The Brandenburg Concertos and Suites (Karajan) - GenreClassical - KindAAC audio file - Size11826562 - Total Time487547 - Disc Number1 - Disc Count2 - Track Number8 - Track Count17 - Year1965 - Date Modified2006-08-08T03:31:34Z - Date Added2009-10-03T14:58:49Z - Bit Rate192 - Sample Rate44100 - Normalization872 - Compilation - Artwork Count1 - Persistent IDF039A1747C2042FF - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Bach_%20The%20Brandenburg%20Concertos%20and%20Suites%20(Karajan)/1-08%20Concerto%20No.%204%20BWV%201049,%20I.%20Allegro.m4a - File Folder Count4 - Library Folder Count1 - - 5824 - - Track ID5824 - NameConcerto No. 4 BWV 1049, II. Andante - ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra - ComposerJohann Sebastian Bach (1685-1750) - AlbumBach: The Brandenburg Concertos and Suites (Karajan) - GenreClassical - KindAAC audio file - Size5876134 - Total Time241509 - Disc Number1 - Disc Count2 - Track Number9 - Track Count17 - Year1965 - Date Modified2006-08-08T03:31:34Z - Date Added2009-10-03T14:58:49Z - Bit Rate192 - Sample Rate44100 - Normalization758 - Compilation - Artwork Count1 - Persistent IDCCDF9C1999826CE7 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Bach_%20The%20Brandenburg%20Concertos%20and%20Suites%20(Karajan)/1-09%20Concerto%20No.%204%20BWV%201049,%20II.%20Andante.m4a - File Folder Count4 - Library Folder Count1 - - 5826 - - Track ID5826 - NameConcerto No. 4 BWV 1049, III. Presto - ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra - ComposerJohann Sebastian Bach (1685-1750) - AlbumBach: The Brandenburg Concertos and Suites (Karajan) - GenreClassical - KindAAC audio file - Size6852403 - Total Time290015 - Disc Number1 - Disc Count2 - Track Number10 - Track Count17 - Year1965 - Date Modified2006-08-08T03:31:34Z - Date Added2009-10-03T14:58:49Z - Bit Rate192 - Sample Rate44100 - Normalization1202 - Compilation - Artwork Count1 - Persistent ID8D82516193717D10 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Bach_%20The%20Brandenburg%20Concertos%20and%20Suites%20(Karajan)/1-10%20Concerto%20No.%204%20BWV%201049,%20III.%20Presto.m4a - File Folder Count4 - Library Folder Count1 - - 5828 - - Track ID5828 - NameSuite No. 2 BWV 1067 in B Minor, I. Ouverture - ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra - ComposerJohann Sebastian Bach (1685-1750) - AlbumBach: The Brandenburg Concertos and Suites (Karajan) - GenreClassical - KindAAC audio file - Size12916535 - Total Time532617 - Disc Number1 - Disc Count2 - Track Number11 - Track Count17 - Year1965 - Date Modified2006-08-08T03:31:34Z - Date Added2009-10-03T14:58:49Z - Bit Rate192 - Sample Rate44100 - Normalization1441 - Compilation - Artwork Count1 - Persistent IDD9A4B85E26739401 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Bach_%20The%20Brandenburg%20Concertos%20and%20Suites%20(Karajan)/1-11%20Suite%20No.%202%20BWV%201067%20in%20B%20Minor,%20I.%20Ouverture.m4a - File Folder Count4 - Library Folder Count1 - - 5830 - - Track ID5830 - NameSuite No. 2 BWV 1067 in B Minor, II. Rondeau - ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra - ComposerJohann Sebastian Bach (1685-1750) - AlbumBach: The Brandenburg Concertos and Suites (Karajan) - GenreClassical - KindAAC audio file - Size2500678 - Total Time101934 - Disc Number1 - Disc Count2 - Track Number12 - Track Count17 - Year1965 - Date Modified2006-08-08T03:31:34Z - Date Added2009-10-03T14:58:49Z - Bit Rate192 - Sample Rate44100 - Normalization787 - Compilation - Artwork Count1 - Persistent IDAAF2C8285C248B0F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Bach_%20The%20Brandenburg%20Concertos%20and%20Suites%20(Karajan)/1-12%20Suite%20No.%202%20BWV%201067%20in%20B%20Minor,%20II.%20Rondeau.m4a - File Folder Count4 - Library Folder Count1 - - 5832 - - Track ID5832 - NameSuite No. 2 BWV 1067 in B Minor, III. Sarabande - ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra - ComposerJohann Sebastian Bach (1685-1750) - AlbumBach: The Brandenburg Concertos and Suites (Karajan) - GenreClassical - KindAAC audio file - Size4393131 - Total Time179767 - Disc Number1 - Disc Count2 - Track Number13 - Track Count17 - Year1965 - Date Modified2006-08-08T03:31:34Z - Date Added2009-10-03T14:58:49Z - Bit Rate192 - Sample Rate44100 - Normalization1256 - Compilation - Artwork Count1 - Persistent IDEF701D99BF772077 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Bach_%20The%20Brandenburg%20Concertos%20and%20Suites%20(Karajan)/1-13%20Suite%20No.%202%20BWV%201067%20in%20B%20Minor,%20III.%20Sarabande.m4a - File Folder Count4 - Library Folder Count1 - - 5834 - - Track ID5834 - NameSuite No. 2 BWV 1067 in B Minor, IV. Bourree I/II - ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra - ComposerJohann Sebastian Bach (1685-1750) - AlbumBach: The Brandenburg Concertos and Suites (Karajan) - GenreClassical - KindAAC audio file - Size3038497 - Total Time124318 - Disc Number1 - Disc Count2 - Track Number14 - Track Count17 - Year1965 - Date Modified2006-08-08T03:31:34Z - Date Added2009-10-03T14:58:50Z - Bit Rate192 - Sample Rate44100 - Normalization1258 - Compilation - Artwork Count1 - Persistent ID2782A17A88A2DEAC - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Bach_%20The%20Brandenburg%20Concertos%20and%20Suites%20(Karajan)/1-14%20Suite%20No.%202%20BWV%201067%20in%20B%20Minor,%20IV.%20Bourree%20I_II.m4a - File Folder Count4 - Library Folder Count1 - - 5836 - - Track ID5836 - NameSuite No. 2 BWV 1067 in B Minor, V. Polonaise - Double - ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra - ComposerJohann Sebastian Bach (1685-1750) - AlbumBach: The Brandenburg Concertos and Suites (Karajan) - GenreClassical - KindAAC audio file - Size4979933 - Total Time204218 - Disc Number1 - Disc Count2 - Track Number15 - Track Count17 - Year1965 - Date Modified2006-08-08T03:31:34Z - Date Added2009-10-03T14:58:50Z - Bit Rate192 - Sample Rate44100 - Normalization1231 - Compilation - Artwork Count1 - Persistent IDFF338886A12CD900 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Bach_%20The%20Brandenburg%20Concertos%20and%20Suites%20(Karajan)/1-15%20Suite%20No.%202%20BWV%201067%20in%20B%20Minor,%20V.%20Polonaise%20-%20Double.m4a - File Folder Count4 - Library Folder Count1 - - 5838 - - Track ID5838 - NameSuite No. 2 BWV 1067 in B Minor, VI. Menuet - ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra - ComposerJohann Sebastian Bach (1685-1750) - AlbumBach: The Brandenburg Concertos and Suites (Karajan) - GenreClassical - KindAAC audio file - Size2045038 - Total Time82963 - Disc Number1 - Disc Count2 - Track Number16 - Track Count17 - Year1965 - Date Modified2006-08-08T03:31:32Z - Date Added2009-10-03T14:58:50Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Compilation - Artwork Count1 - Persistent ID2B3163D55AFACA8B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Bach_%20The%20Brandenburg%20Concertos%20and%20Suites%20(Karajan)/1-16%20Suite%20No.%202%20BWV%201067%20in%20B%20Minor,%20VI.%20Menuet.m4a - File Folder Count4 - Library Folder Count1 - - 5840 - - Track ID5840 - NameSuite No. 2 BWV 1067 in B Minor, VII. Badinerie - ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra - ComposerJohann Sebastian Bach (1685-1750) - AlbumBach: The Brandenburg Concertos and Suites (Karajan) - GenreClassical - KindAAC audio file - Size2029838 - Total Time82847 - Disc Number1 - Disc Count2 - Track Number17 - Track Count17 - Year1965 - Date Modified2006-08-08T03:31:32Z - Date Added2009-10-03T14:58:50Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Compilation - Artwork Count1 - Persistent ID52335F8A05DD186E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Bach_%20The%20Brandenburg%20Concertos%20and%20Suites%20(Karajan)/1-17%20Suite%20No.%202%20BWV%201067%20in%20B%20Minor,%20VII.%20Badinerie.m4a - File Folder Count4 - Library Folder Count1 - - 5842 - - Track ID5842 - NameConcerto No. 2 In F Major BWV 1047, Allegro - ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra - ComposerBach, Johann Sebastian - AlbumBach: The Brandenburg Concertos - Suites Nos. 2 & 3 (Disc 2) - GenreClassical - KindAAC audio file - Size7922450 - Total Time327794 - Disc Number2 - Disc Count2 - Track Number1 - Track Count14 - Year1965 - Date Modified2006-08-08T03:40:10Z - Date Added2009-10-03T14:58:50Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3401033063 - Play Date UTC2011-10-09T13:54:23Z - Normalization755 - Compilation - Artwork Count1 - Persistent IDD765F744435B71BC - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Bach_%20The%20Brandenburg%20Concertos%20-%20Suites%20Nos.%202%20&%203%20(Disc%202)/2-01%20Concerto%20No.%202%20In%20F%20Major%20BWV%201047,%20Allegro.m4a - File Folder Count4 - Library Folder Count1 - - 5844 - - Track ID5844 - NameConcerto No. 2 In F Major BWV 1047, Andante - ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra - ComposerBach, Johann Sebastian - AlbumBach: The Brandenburg Concertos - Suites Nos. 2 & 3 (Disc 2) - GenreClassical - KindAAC audio file - Size6080337 - Total Time250007 - Disc Number2 - Disc Count2 - Track Number2 - Track Count14 - Year1965 - Date Modified2006-08-08T03:40:10Z - Date Added2009-10-03T14:58:50Z - Bit Rate192 - Sample Rate44100 - Normalization412 - Compilation - Artwork Count1 - Persistent ID6C9649D17BA8F456 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Bach_%20The%20Brandenburg%20Concertos%20-%20Suites%20Nos.%202%20&%203%20(Disc%202)/2-02%20Concerto%20No.%202%20In%20F%20Major%20BWV%201047,%20Andante.m4a - File Folder Count4 - Library Folder Count1 - - 5846 - - Track ID5846 - NameConcerto No. 2 In F Major BWV 1047, Allegro assai - ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra - ComposerBach, Johann Sebastian - AlbumBach: The Brandenburg Concertos - Suites Nos. 2 & 3 (Disc 2) - GenreClassical - KindAAC audio file - Size4134464 - Total Time176354 - Disc Number2 - Disc Count2 - Track Number3 - Track Count14 - Year1965 - Date Modified2006-08-08T03:40:10Z - Date Added2009-10-03T14:58:50Z - Bit Rate192 - Sample Rate44100 - Normalization898 - Compilation - Artwork Count1 - Persistent ID36FE8138B317B406 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Bach_%20The%20Brandenburg%20Concertos%20-%20Suites%20Nos.%202%20&%203%20(Disc%202)/2-03%20Concerto%20No.%202%20In%20F%20Major%20BWV%201047,%20Allegro%20assai.m4a - File Folder Count4 - Library Folder Count1 - - 5848 - - Track ID5848 - NameConcerto No. 5 In D Major BWV 1050, Allegro - ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra - ComposerBach, Johann Sebastian - AlbumBach: The Brandenburg Concertos - Suites Nos. 2 & 3 (Disc 2) - GenreClassical - KindAAC audio file - Size16084573 - Total Time663508 - Disc Number2 - Disc Count2 - Track Number4 - Track Count14 - Year1965 - Date Modified2006-08-08T03:40:10Z - Date Added2009-10-03T14:58:51Z - Bit Rate192 - Sample Rate44100 - Normalization587 - Compilation - Artwork Count1 - Persistent ID549062E4A545C941 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Bach_%20The%20Brandenburg%20Concertos%20-%20Suites%20Nos.%202%20&%203%20(Disc%202)/2-04%20Concerto%20No.%205%20In%20D%20Major%20BWV%201050,%20Allegro.m4a - File Folder Count4 - Library Folder Count1 - - 5850 - - Track ID5850 - NameConcerto No. 5 In D Major BWV 1050, Affettuoso - ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra - ComposerBach, Johann Sebastian - AlbumBach: The Brandenburg Concertos - Suites Nos. 2 & 3 (Disc 2) - GenreClassical - KindAAC audio file - Size8765581 - Total Time361068 - Disc Number2 - Disc Count2 - Track Number5 - Track Count14 - Year1965 - Date Modified2006-08-08T03:40:10Z - Date Added2009-10-03T14:58:51Z - Bit Rate192 - Sample Rate44100 - Normalization144 - Compilation - Artwork Count1 - Persistent ID0E9E21527C68111B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Bach_%20The%20Brandenburg%20Concertos%20-%20Suites%20Nos.%202%20&%203%20(Disc%202)/2-05%20Concerto%20No.%205%20In%20D%20Major%20BWV%201050,%20Affettuoso.m4a - File Folder Count4 - Library Folder Count1 - - 5852 - - Track ID5852 - NameConcerto No. 5 In D Major BWV 1050, Allegro - ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra - ComposerBach, Johann Sebastian - AlbumBach: The Brandenburg Concertos - Suites Nos. 2 & 3 (Disc 2) - GenreClassical - KindAAC audio file - Size8249036 - Total Time345441 - Disc Number2 - Disc Count2 - Track Number6 - Track Count14 - Year1965 - Date Modified2006-08-08T03:40:10Z - Date Added2009-10-03T14:58:51Z - Bit Rate192 - Sample Rate44100 - Normalization903 - Compilation - Artwork Count1 - Persistent IDC5D2F35FE321F093 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Bach_%20The%20Brandenburg%20Concertos%20-%20Suites%20Nos.%202%20&%203%20(Disc%202)/2-06%20Concerto%20No.%205%20In%20D%20Major%20BWV%201050,%20Allegro.m4a - File Folder Count4 - Library Folder Count1 - - 5854 - - Track ID5854 - NameConcerto No. 6 In B flat Major BWV 1051, Allegro - ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra - ComposerBach, Johann Sebastian - AlbumBach: The Brandenburg Concertos - Suites Nos. 2 & 3 (Disc 2) - GenreClassical - KindAAC audio file - Size10308711 - Total Time424830 - Disc Number2 - Disc Count2 - Track Number7 - Track Count14 - Year1965 - Date Modified2006-08-08T03:40:10Z - Date Added2009-10-03T14:58:51Z - Bit Rate192 - Sample Rate44100 - Normalization906 - Compilation - Artwork Count1 - Persistent IDB0DFD5ABF399A046 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Bach_%20The%20Brandenburg%20Concertos%20-%20Suites%20Nos.%202%20&%203%20(Disc%202)/2-07%20Concerto%20No.%206%20In%20B%20flat%20Major%20BWV%201051,%20Allegro.m4a - File Folder Count4 - Library Folder Count1 - - 5856 - - Track ID5856 - NameConcerto No. 6 In B flat Major BWV 1051, Adagio ma non tanto - ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra - ComposerBach, Johann Sebastian - AlbumBach: The Brandenburg Concertos - Suites Nos. 2 & 3 (Disc 2) - GenreClassical - KindAAC audio file - Size8623433 - Total Time355194 - Disc Number2 - Disc Count2 - Track Number8 - Track Count14 - Year1965 - Date Modified2006-08-08T03:40:08Z - Date Added2009-10-03T14:58:51Z - Bit Rate192 - Sample Rate44100 - Normalization433 - Compilation - Artwork Count1 - Persistent ID742805E21F4B2403 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Bach_%20The%20Brandenburg%20Concertos%20-%20Suites%20Nos.%202%20&%203%20(Disc%202)/2-08%20Concerto%20No.%206%20In%20B%20flat%20Major%20BWV%201051,%20Adagio%20ma%20non%20tanto.m4a - File Folder Count4 - Library Folder Count1 - - 5858 - - Track ID5858 - NameConcerto No. 6 In B flat Major BWV 1051, Allegro - ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra - ComposerBach, Johann Sebastian - AlbumBach: The Brandenburg Concertos - Suites Nos. 2 & 3 (Disc 2) - GenreClassical - KindAAC audio file - Size8333642 - Total Time349017 - Disc Number2 - Disc Count2 - Track Number9 - Track Count14 - Year1965 - Date Modified2006-08-08T03:40:08Z - Date Added2009-10-03T14:58:51Z - Bit Rate192 - Sample Rate44100 - Normalization1088 - Compilation - Artwork Count1 - Persistent ID74078A70327860FB - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Bach_%20The%20Brandenburg%20Concertos%20-%20Suites%20Nos.%202%20&%203%20(Disc%202)/2-09%20Concerto%20No.%206%20In%20B%20flat%20Major%20BWV%201051,%20Allegro.m4a - File Folder Count4 - Library Folder Count1 - - 5860 - - Track ID5860 - NameSuite No. 3 in D major BWV1068, Ouverture - ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra - ComposerBach, Johann Sebastian - AlbumBach: The Brandenburg Concertos - Suites Nos. 2 & 3 (Disc 2) - GenreClassical - KindAAC audio file - Size13507715 - Total Time557022 - Disc Number2 - Disc Count2 - Track Number10 - Track Count14 - Year1965 - Date Modified2006-08-08T03:40:08Z - Date Added2009-10-03T14:58:51Z - Bit Rate192 - Sample Rate44100 - Normalization1115 - Compilation - Artwork Count1 - Persistent ID154B49313CD39415 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Bach_%20The%20Brandenburg%20Concertos%20-%20Suites%20Nos.%202%20&%203%20(Disc%202)/2-10%20Suite%20No.%203%20in%20D%20major%20BWV1068,%20Ouverture.m4a - File Folder Count4 - Library Folder Count1 - - 5862 - - Track ID5862 - NameSuite No. 3 In D Major BWV 1068, Air - ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra - ComposerBach, Johann Sebastian - AlbumBach: The Brandenburg Concertos - Suites Nos. 2 & 3 (Disc 2) - GenreClassical - KindAAC audio file - Size9558567 - Total Time393832 - Disc Number2 - Disc Count2 - Track Number11 - Track Count14 - Year1965 - Date Modified2006-08-08T03:40:08Z - Date Added2009-10-03T14:58:51Z - Bit Rate192 - Sample Rate44100 - Normalization1223 - Compilation - Artwork Count1 - Persistent ID515CE9177FBAAA4A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Bach_%20The%20Brandenburg%20Concertos%20-%20Suites%20Nos.%202%20&%203%20(Disc%202)/2-11%20Suite%20No.%203%20In%20D%20Major%20BWV%201068,%20Air.m4a - File Folder Count4 - Library Folder Count1 - - 5864 - - Track ID5864 - NameSuite No. 3 In D Major BWV 1068, Gavotte I/II - ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra - ComposerBach, Johann Sebastian - AlbumBach: The Brandenburg Concertos - Suites Nos. 2 & 3 (Disc 2) - GenreClassical - KindAAC audio file - Size5530011 - Total Time227089 - Disc Number2 - Disc Count2 - Track Number12 - Track Count14 - Year1965 - Date Modified2006-08-08T03:40:08Z - Date Added2009-10-03T14:58:51Z - Bit Rate192 - Sample Rate44100 - Normalization1301 - Compilation - Artwork Count1 - Persistent ID0D320E456F72F015 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Bach_%20The%20Brandenburg%20Concertos%20-%20Suites%20Nos.%202%20&%203%20(Disc%202)/2-12%20Suite%20No.%203%20In%20D%20Major%20BWV%201068,%20Gavotte%20I_II.m4a - File Folder Count4 - Library Folder Count1 - - 5866 - - Track ID5866 - NameSuite No. 3 In D Major BWV 1068, Bourree - ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra - ComposerBach, Johann Sebastian - AlbumBach: The Brandenburg Concertos - Suites Nos. 2 & 3 (Disc 2) - GenreClassical - KindAAC audio file - Size1913656 - Total Time77483 - Disc Number2 - Disc Count2 - Track Number13 - Track Count14 - Year1965 - Date Modified2006-08-08T03:40:08Z - Date Added2009-10-03T14:58:51Z - Bit Rate192 - Sample Rate44100 - Normalization605 - Compilation - Artwork Count1 - Persistent IDF08923805E4F3F82 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Bach_%20The%20Brandenburg%20Concertos%20-%20Suites%20Nos.%202%20&%203%20(Disc%202)/2-13%20Suite%20No.%203%20In%20D%20Major%20BWV%201068,%20Bourree.m4a - File Folder Count4 - Library Folder Count1 - - 5868 - - Track ID5868 - NameSuite No. 3 In D Major BWV 1068, Gigue - ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra - ComposerBach, Johann Sebastian - AlbumBach: The Brandenburg Concertos - Suites Nos. 2 & 3 (Disc 2) - GenreClassical - KindAAC audio file - Size4427538 - Total Time181323 - Disc Number2 - Disc Count2 - Track Number14 - Track Count14 - Year1965 - Date Modified2006-08-08T03:40:08Z - Date Added2009-10-03T14:58:52Z - Bit Rate192 - Sample Rate44100 - Normalization1498 - Compilation - Artwork Count1 - Persistent ID892B0C03C196E870 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Bach_%20The%20Brandenburg%20Concertos%20-%20Suites%20Nos.%202%20&%203%20(Disc%202)/2-14%20Suite%20No.%203%20In%20D%20Major%20BWV%201068,%20Gigue.m4a - File Folder Count4 - Library Folder Count1 - - 5870 - - Track ID5870 - NameTum Itna Jo Muskura Rahe Ho - ArtistJagjit Singh - ComposerJagjit Singh - AlbumArth & Saath Saath - GenreWorld - KindAAC audio file - Size7709598 - Total Time317136 - Track Number1 - Track Count11 - Year1982 - Date Modified2006-07-30T01:44:36Z - Date Added2009-10-03T14:58:52Z - Bit Rate192 - Sample Rate44100 - Normalization924 - Compilation - Artwork Count1 - Persistent ID660B32CE04CA5F89 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Arth%20&%20Saath%20Saath/01%20Tum%20Itna%20Jo%20Muskura%20Rahe%20Ho.m4a - File Folder Count4 - Library Folder Count1 - - 5872 - - Track ID5872 - NameJhuki Jhuki Si Nazar - ArtistJagjit Singh - ComposerJagjit Singh - AlbumArth & Saath Saath - GenreWorld - KindAAC audio file - Size7349471 - Total Time302577 - Track Number2 - Track Count11 - Year1982 - Date Modified2006-07-30T01:44:36Z - Date Added2009-10-03T14:58:52Z - Bit Rate192 - Sample Rate44100 - Normalization619 - Compilation - Artwork Count1 - Persistent ID515370F2EF7C62D7 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Arth%20&%20Saath%20Saath/02%20Jhuki%20Jhuki%20Si%20Nazar.m4a - File Folder Count4 - Library Folder Count1 - - 5874 - - Track ID5874 - NameTere Khushboo Mein Base Khat - ArtistJagjit Singh - ComposerJagjit Singh - AlbumArth & Saath Saath - GenreWorld - KindAAC audio file - Size2112112 - Total Time85749 - Track Number3 - Track Count11 - Year1982 - Date Modified2006-07-30T01:44:36Z - Date Added2009-10-03T14:58:52Z - Bit Rate192 - Sample Rate44100 - Normalization478 - Compilation - Artwork Count1 - Persistent ID4291AF96B5098AE2 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Arth%20&%20Saath%20Saath/03%20Tere%20Khushboo%20Mein%20Base%20Khat.m4a - File Folder Count4 - Library Folder Count1 - - 5876 - - Track ID5876 - NameToo Nahin To Zindagi Mein Aur Kya Rah Jayega - ArtistChitra Singh - ComposerJagjit Singh - AlbumArth & Saath Saath - GenreWorld - KindAAC audio file - Size7878728 - Total Time324125 - Track Number4 - Track Count11 - Year1982 - Date Modified2006-07-30T01:44:36Z - Date Added2009-10-03T14:58:52Z - Bit Rate192 - Sample Rate44100 - Normalization932 - Compilation - Artwork Count1 - Persistent IDB538565BC1F6FDA7 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Arth%20&%20Saath%20Saath/04%20Too%20Nahin%20To%20Zindagi%20Mein%20Aur%20Kya%20Rah%20Jayega.m4a - File Folder Count4 - Library Folder Count1 - - 5878 - - Track ID5878 - NameKoi Yeh Kaise Bataye - ArtistJagjit Singh - ComposerJagjit Singh - AlbumArth & Saath Saath - GenreWorld - KindAAC audio file - Size4813644 - Total Time196973 - Track Number5 - Track Count11 - Year1982 - Date Modified2006-07-30T01:44:38Z - Date Added2009-10-03T14:58:52Z - Bit Rate192 - Sample Rate44100 - Normalization694 - Compilation - Artwork Count1 - Persistent IDA31FFBCF7A77C7E4 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Arth%20&%20Saath%20Saath/05%20Koi%20Yeh%20Kaise%20Bataye.m4a - File Folder Count4 - Library Folder Count1 - - 5880 - - Track ID5880 - NameTum Ko Dekha To Yeh Khayal Aaya - ArtistJagjit Singh & Chitra Singh - ComposerKuldeep Singh - AlbumArth & Saath Saath - GenreWorld - KindAAC audio file - Size7076166 - Total Time291525 - Track Number6 - Track Count11 - Year1981 - Date Modified2006-07-30T01:44:38Z - Date Added2009-10-03T14:58:52Z - Bit Rate192 - Sample Rate44100 - Normalization694 - Compilation - Artwork Count1 - Persistent ID8E644E1105C9BAEC - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Arth%20&%20Saath%20Saath/06%20Tum%20Ko%20Dekha%20To%20Yeh%20Khayal%20Aaya.m4a - File Folder Count4 - Library Folder Count1 - - 5882 - - Track ID5882 - NameYeh Bata De Mujhe Zindagi - ArtistJagjit Singh & Chitra Singh - ComposerKuldeep Singh - AlbumArth & Saath Saath - GenreWorld - KindAAC audio file - Size7265066 - Total Time299280 - Track Number7 - Track Count11 - Year1981 - Date Modified2006-07-30T01:44:38Z - Date Added2009-10-03T14:58:53Z - Bit Rate192 - Sample Rate44100 - Normalization1545 - Compilation - Artwork Count1 - Persistent ID2C48F740E26CF1BD - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Arth%20&%20Saath%20Saath/07%20Yeh%20Bata%20De%20Mujhe%20Zindagi.m4a - File Folder Count4 - Library Folder Count1 - - 5884 - - Track ID5884 - NameYun Zindagi Ki Raah Mein Majboor Ho Gaye - ArtistChitra Singh - ComposerKuldeep Singh - AlbumArth & Saath Saath - GenreWorld - KindAAC audio file - Size6988937 - Total Time287949 - Track Number8 - Track Count11 - Year1981 - Date Modified2006-07-30T01:44:36Z - Date Added2009-10-03T14:58:53Z - Bit Rate192 - Sample Rate44100 - Normalization1257 - Compilation - Artwork Count1 - Persistent IDCCE3B48A31D39AB3 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Arth%20&%20Saath%20Saath/08%20Yun%20Zindagi%20Ki%20Raah%20Mein%20Majboor%20Ho%20Gaye.m4a - File Folder Count4 - Library Folder Count1 - - 5886 - - Track ID5886 - NamePyar Mujhse Jo Kiya Tumne To Kya Paogi - ArtistJagjit Singh - ComposerKuldeep Singh - AlbumArth & Saath Saath - GenreWorld - KindAAC audio file - Size6568749 - Total Time270000 - Track Number9 - Track Count11 - Year1981 - Date Modified2006-07-30T01:44:38Z - Date Added2009-10-03T14:58:53Z - Bit Rate192 - Sample Rate44100 - Normalization976 - Compilation - Artwork Count1 - Persistent ID799210A9483DD9ED - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Arth%20&%20Saath%20Saath/09%20Pyar%20Mujhse%20Jo%20Kiya%20Tumne%20To%20Kya%20Paogi.m4a - File Folder Count4 - Library Folder Count1 - - 5888 - - Track ID5888 - NameYeh Tera Ghar Yeh Mera Ghar - ArtistJagjit Singh & Chitra Singh - ComposerKuldeep Singh - AlbumArth & Saath Saath - GenreWorld - KindAAC audio file - Size7626002 - Total Time314164 - Track Number10 - Track Count11 - Year1981 - Date Modified2006-07-30T01:44:38Z - Date Added2009-10-03T14:58:53Z - Bit Rate192 - Sample Rate44100 - Normalization1956 - Compilation - Artwork Count1 - Persistent IDACA8674B0B4C7263 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Arth%20&%20Saath%20Saath/10%20Yeh%20Tera%20Ghar%20Yeh%20Mera%20Ghar.m4a - File Folder Count4 - Library Folder Count1 - - 5890 - - Track ID5890 - NameTum Ko Pata Hai - ArtistAshok Khosla, Murlidhar, Pushpa & Chorus - ComposerKuldeep Singh - AlbumArth & Saath Saath - GenreWorld - KindAAC audio file - Size8163440 - Total Time337175 - Track Number11 - Track Count11 - Year1981 - Date Modified2006-07-30T01:44:18Z - Date Added2009-10-03T14:58:53Z - Bit Rate192 - Sample Rate44100 - Normalization2062 - Compilation - Persistent ID9F83D030A94A0513 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Arth%20&%20Saath%20Saath/11%20Tum%20Ko%20Pata%20Hai.m4a - File Folder Count4 - Library Folder Count1 - - 5892 - - Track ID5892 - NameMere Sapnon Ki Rani (Aradhana) - ArtistKishore Kumar - AlbumAradhana - Kati Patang - Amar Prem - GenreWorld - KindAAC audio file - Size7231172 - Total Time297724 - Track Number1 - Track Count15 - Date Modified2006-07-30T03:51:42Z - Date Added2009-10-03T14:58:53Z - Bit Rate192 - Sample Rate44100 - Normalization2375 - Compilation - Artwork Count1 - Persistent ID149EBDA0505231C0 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Aradhana%20-%20Kati%20Patang%20-%20Amar%20Prem/01%20Mere%20Sapnon%20Ki%20Rani%20(Aradhana).m4a - File Folder Count4 - Library Folder Count1 - - 5894 - - Track ID5894 - NameKora Kagaz Tha Yeh Man Mera (Aradhana) - ArtistLata Mangeshkar & Kishore Kumar - AlbumAradhana - Kati Patang - Amar Prem - GenreWorld - KindAAC audio file - Size8298419 - Total Time341215 - Track Number2 - Track Count15 - Date Modified2006-07-30T03:51:44Z - Date Added2009-10-03T14:58:53Z - Bit Rate192 - Sample Rate44100 - Normalization2227 - Compilation - Artwork Count1 - Persistent ID3B4530F5ABCA63E9 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Aradhana%20-%20Kati%20Patang%20-%20Amar%20Prem/02%20Kora%20Kagaz%20Tha%20Yeh%20Man%20Mera%20(Aradhana).m4a - File Folder Count4 - Library Folder Count1 - - 5896 - - Track ID5896 - NameRoop Tera Mastana (Aradhana) - ArtistKishore Kumar - AlbumAradhana - Kati Patang - Amar Prem - GenreWorld - KindAAC audio file - Size5468378 - Total Time223978 - Track Number3 - Track Count15 - Date Modified2006-07-30T03:51:42Z - Date Added2009-10-03T14:58:53Z - Bit Rate192 - Sample Rate44100 - Normalization1214 - Compilation - Artwork Count1 - Persistent IDDDDFBD64928DA520 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Aradhana%20-%20Kati%20Patang%20-%20Amar%20Prem/03%20Roop%20Tera%20Mastana%20(Aradhana).m4a - File Folder Count4 - Library Folder Count1 - - 5898 - - Track ID5898 - NameBaghon Mein Bahar Hai (Aradhana) - ArtistLata Mangeshkar & Mohd. Rafi - AlbumAradhana - Kati Patang - Amar Prem - GenreWorld - KindAAC audio file - Size5674035 - Total Time232546 - Track Number4 - Track Count15 - Date Modified2006-07-30T03:51:44Z - Date Added2009-10-03T14:58:54Z - Bit Rate192 - Sample Rate44100 - Normalization1500 - Compilation - Artwork Count1 - Persistent ID4FBC3BB32999D401 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Aradhana%20-%20Kati%20Patang%20-%20Amar%20Prem/04%20Baghon%20Mein%20Bahar%20Hai%20(Aradhana).m4a - File Folder Count4 - Library Folder Count1 - - 5900 - - Track ID5900 - NameGunguna Rahe Hain Bhanvre (Aradhana) - ArtistAsha Bhosle & Mohd. Rafi - AlbumAradhana - Kati Patang - Amar Prem - GenreWorld - KindAAC audio file - Size5825813 - Total Time238862 - Track Number5 - Track Count15 - Date Modified2006-07-30T03:51:42Z - Date Added2009-10-03T14:58:54Z - Bit Rate192 - Sample Rate44100 - Normalization1613 - Compilation - Artwork Count1 - Persistent ID9C72F4C44779C9B7 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Aradhana%20-%20Kati%20Patang%20-%20Amar%20Prem/05%20Gunguna%20Rahe%20Hain%20Bhanvre%20(Aradhana).m4a - File Folder Count4 - Library Folder Count1 - - 5902 - - Track ID5902 - NameChanda Hai Tu Mera Suraj Hai Tu (Aradhana) - ArtistLata Mangeshkar - AlbumAradhana - Kati Patang - Amar Prem - GenreWorld - KindAAC audio file - Size6526235 - Total Time267980 - Track Number6 - Track Count15 - Date Modified2006-07-30T03:51:44Z - Date Added2009-10-03T14:58:54Z - Bit Rate192 - Sample Rate44100 - Normalization2588 - Compilation - Artwork Count1 - Persistent ID83CE1980023A6471 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Aradhana%20-%20Kati%20Patang%20-%20Amar%20Prem/06%20Chanda%20Hai%20Tu%20Mera%20Suraj%20Hai%20Tu%20(Aradhana).m4a - File Folder Count4 - Library Folder Count1 - - 5904 - - Track ID5904 - NameNa Koi Umang Hai (Kati Patang) - ArtistLata Mangeshkar - AlbumAradhana - Kati Patang - Amar Prem - GenreWorld - KindAAC audio file - Size6346819 - Total Time260549 - Track Number7 - Track Count15 - Date Modified2006-07-30T03:51:44Z - Date Added2009-10-03T14:58:54Z - Bit Rate192 - Sample Rate44100 - Normalization1834 - Compilation - Artwork Count1 - Persistent IDE59F907AF818E863 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Aradhana%20-%20Kati%20Patang%20-%20Amar%20Prem/07%20Na%20Koi%20Umang%20Hai%20(Kati%20Patang).m4a - File Folder Count4 - Library Folder Count1 - - 5906 - - Track ID5906 - NameJis Gali Mein Tera Ghar (Kati Patang) - ArtistMukesh - AlbumAradhana - Kati Patang - Amar Prem - GenreWorld - KindAAC audio file - Size5989732 - Total Time245688 - Track Number8 - Track Count15 - Date Modified2006-07-30T03:51:44Z - Date Added2009-10-03T14:58:54Z - Bit Rate192 - Sample Rate44100 - Normalization1234 - Compilation - Artwork Count1 - Persistent ID2DE93FC0822B102C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Aradhana%20-%20Kati%20Patang%20-%20Amar%20Prem/08%20Jis%20Gali%20Mein%20Tera%20Ghar%20(Kati%20Patang).m4a - File Folder Count4 - Library Folder Count1 - - 5908 - - Track ID5908 - NameYeh Sham Mastani (Kati Patang) - ArtistKishore Kumar - AlbumAradhana - Kati Patang - Amar Prem - GenreWorld - KindAAC audio file - Size6856013 - Total Time281610 - Track Number9 - Track Count15 - Date Modified2006-07-30T03:51:42Z - Date Added2009-10-03T14:58:54Z - Bit Rate192 - Sample Rate44100 - Normalization2567 - Compilation - Artwork Count1 - Persistent ID06DF4BAB9450BB69 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Aradhana%20-%20Kati%20Patang%20-%20Amar%20Prem/09%20Yeh%20Sham%20Mastani%20(Kati%20Patang).m4a - File Folder Count4 - Library Folder Count1 - - 5910 - - Track ID5910 - NameYeh Jo Mohabbat Hai (Kati Patang) - ArtistKishore Kumar - AlbumAradhana - Kati Patang - Amar Prem - GenreWorld - KindAAC audio file - Size5988243 - Total Time245642 - Track Number10 - Track Count15 - Date Modified2006-07-30T03:51:42Z - Date Added2009-10-03T14:58:54Z - Bit Rate192 - Sample Rate44100 - Normalization2423 - Compilation - Artwork Count1 - Persistent IDD4C71EA1D371002C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Aradhana%20-%20Kati%20Patang%20-%20Amar%20Prem/10%20Yeh%20Jo%20Mohabbat%20Hai%20(Kati%20Patang).m4a - File Folder Count4 - Library Folder Count1 - - 5912 - - Track ID5912 - NamePyar Diwana Hota Hai (Kati Patang) - ArtistKishore Kumar - AlbumAradhana - Kati Patang - Amar Prem - GenreWorld - KindAAC audio file - Size6979014 - Total Time286695 - Track Number11 - Track Count15 - Date Modified2006-07-30T03:51:42Z - Date Added2009-10-03T14:58:54Z - Bit Rate192 - Sample Rate44100 - Normalization1561 - Compilation - Artwork Count1 - Persistent ID694627EBD4AA354A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Aradhana%20-%20Kati%20Patang%20-%20Amar%20Prem/11%20Pyar%20Diwana%20Hota%20Hai%20(Kati%20Patang).m4a - File Folder Count4 - Library Folder Count1 - - 5914 - - Track ID5914 - NameKuchh To Log Kahenge (Amar Prem) - ArtistKishore Kumar - AlbumAradhana - Kati Patang - Amar Prem - GenreWorld - KindAAC audio file - Size6341377 - Total Time260340 - Track Number12 - Track Count15 - Date Modified2006-07-30T03:51:42Z - Date Added2009-10-03T14:58:54Z - Bit Rate192 - Sample Rate44100 - Normalization1637 - Compilation - Artwork Count1 - Persistent ID460491F5B46FBC77 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Aradhana%20-%20Kati%20Patang%20-%20Amar%20Prem/12%20Kuchh%20To%20Log%20Kahenge%20(Amar%20Prem).m4a - File Folder Count4 - Library Folder Count1 - - 5916 - - Track ID5916 - NameChingari Koi Bhadke (Amar Prem) - ArtistKishore Kumar - AlbumAradhana - Kati Patang - Amar Prem - GenreWorld - KindAAC audio file - Size8188835 - Total Time336687 - Track Number13 - Track Count15 - Date Modified2006-07-30T03:51:44Z - Date Added2009-10-03T14:58:55Z - Bit Rate192 - Sample Rate44100 - Normalization1640 - Compilation - Artwork Count1 - Persistent ID8D9E93E665EBB05A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Aradhana%20-%20Kati%20Patang%20-%20Amar%20Prem/13%20Chingari%20Koi%20Bhadke%20(Amar%20Prem).m4a - File Folder Count4 - Library Folder Count1 - - 5918 - - Track ID5918 - NameYeh Kya Hua (Amar Prem) - ArtistKishore Kumar - AlbumAradhana - Kati Patang - Amar Prem - GenreWorld - KindAAC audio file - Size6673914 - Total Time274086 - Track Number14 - Track Count15 - Date Modified2006-07-30T03:51:44Z - Date Added2009-10-03T14:58:55Z - Bit Rate192 - Sample Rate44100 - Normalization1377 - Compilation - Artwork Count1 - Persistent ID288B494B15E6330B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Aradhana%20-%20Kati%20Patang%20-%20Amar%20Prem/14%20Yeh%20Kya%20Hua%20(Amar%20Prem).m4a - File Folder Count4 - Library Folder Count1 - - 5920 - - Track ID5920 - NameRaina Beeti Jaye (Amar Prem) - ArtistLata Mangeshkar - AlbumAradhana - Kati Patang - Amar Prem - GenreWorld - KindAAC audio file - Size8130282 - Total Time335619 - Track Number15 - Track Count15 - Date Modified2006-07-30T03:51:44Z - Date Added2009-10-03T14:58:55Z - Bit Rate192 - Sample Rate44100 - Normalization1814 - Compilation - Artwork Count1 - Persistent IDDE9F0F0B20F40A90 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Aradhana%20-%20Kati%20Patang%20-%20Amar%20Prem/15%20Raina%20Beeti%20Jaye%20(Amar%20Prem).m4a - File Folder Count4 - Library Folder Count1 - - 5922 - - Track ID5922 - NameMahler: Symphony #5 - Adagietto - ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra - ComposerGustav Mahler - AlbumAdagio - GenreClassical - KindAAC audio file - Size17243375 - Total Time717007 - Disc Number1 - Disc Count1 - Track Number1 - Track Count11 - Year1995 - Date Modified2006-08-07T08:39:36Z - Date Added2009-10-03T14:58:55Z - Bit Rate192 - Sample Rate44100 - Normalization1226 - Compilation - Artwork Count1 - Persistent ID2CE56FFDE627B467 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Adagio/01%20Mahler_%20Symphony%20%235%20-%20Adagietto.m4a - File Folder Count4 - Library Folder Count1 - - 5924 - - Track ID5924 - NamePachelbel: Canon & Gigue In D - ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra - ComposerJohann Pachelbel - AlbumAdagio - GenreClassical - KindAAC audio file - Size7397514 - Total Time310008 - Disc Number1 - Disc Count1 - Track Number2 - Track Count11 - Year1995 - Date Modified2006-08-07T08:39:36Z - Date Added2009-10-03T14:58:55Z - Bit Rate192 - Sample Rate44100 - Normalization683 - Compilation - Artwork Count1 - Persistent ID8BED50329424B665 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Adagio/02%20Pachelbel_%20Canon%20&%20Gigue%20In%20D.m4a - File Folder Count4 - Library Folder Count1 - - 5926 - - Track ID5926 - NameMassenet: Thais - Méditation - ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra - ComposerJules Massenet - AlbumAdagio - GenreClassical - KindAAC audio file - Size8715898 - Total Time365016 - Disc Number1 - Disc Count1 - Track Number3 - Track Count11 - Year1995 - Date Modified2006-08-07T08:39:36Z - Date Added2009-10-03T14:58:55Z - Bit Rate192 - Sample Rate44100 - Normalization631 - Compilation - Artwork Count1 - Persistent IDC56207FD440ECAAB - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Adagio/03%20Massenet_%20Thais%20-%20Me%CC%81ditation.m4a - File Folder Count4 - Library Folder Count1 - - 5928 - - Track ID5928 - NameBrahms: Symphony #3 In F, Op. 90 - Andante - ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra - ComposerJohannes Brahms - AlbumAdagio - GenreClassical - KindAAC audio file - Size11875322 - Total Time495001 - Disc Number1 - Disc Count1 - Track Number4 - Track Count11 - Year1995 - Date Modified2006-08-07T08:39:36Z - Date Added2009-10-03T14:58:55Z - Bit Rate192 - Sample Rate44100 - Normalization841 - Compilation - Artwork Count1 - Persistent ID35768F96A9E3630D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Adagio/04%20Brahms_%20Symphony%20%233%20In%20F,%20Op.%2090%20-%20Andante.m4a - File Folder Count4 - Library Folder Count1 - - 5930 - - Track ID5930 - NameVivaldi: Sinfonia Al Santo Sepolcro In B Minor, RV 169 - Adagio Molto - ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra - ComposerAntonio Vivaldi - AlbumAdagio - GenreClassical - KindAAC audio file - Size5082421 - Total Time214016 - Disc Number1 - Disc Count1 - Track Number5 - Track Count11 - Year1995 - Date Modified2006-08-07T08:39:34Z - Date Added2009-10-03T14:58:55Z - Bit Rate192 - Sample Rate44100 - Normalization90 - Compilation - Artwork Count1 - Persistent ID21F7D866FBF1BC0E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Adagio/05%20Vivaldi_%20Sinfonia%20Al%20Santo%20Sepolcro%20In%20B%20Minor,%20RV%20169%20-%20Adagio%20Molto.m4a - File Folder Count4 - Library Folder Count1 - - 5932 - - Track ID5932 - NameGrieg: Peer Gynt Suite #1, Op. 46 - Ases Tod Ases's Death - ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra - ComposerEdvard Grieg - AlbumAdagio - GenreClassical - KindAAC audio file - Size6686330 - Total Time281006 - Disc Number1 - Disc Count1 - Track Number6 - Track Count11 - Year1995 - Date Modified2006-08-07T08:39:34Z - Date Added2009-10-03T14:58:56Z - Bit Rate192 - Sample Rate44100 - Normalization574 - Compilation - Artwork Count1 - Persistent ID8B8A96C3183B3BE8 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Adagio/06%20Grieg_%20Peer%20Gynt%20Suite%20%231,%20Op.%2046%20-%20Ases%20Tod%20Ases's%20Death.m4a - File Folder Count4 - Library Folder Count1 - - 5934 - - Track ID5934 - NameMozart: Divertimento #15 In B Flat, K 287/271h - Adagio - ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra - ComposerWolfgang Amadeus Mozart - AlbumAdagio - GenreClassical - KindAAC audio file - Size10560127 - Total Time441015 - Disc Number1 - Disc Count1 - Track Number7 - Track Count11 - Year1995 - Date Modified2006-08-07T08:39:34Z - Date Added2009-10-03T14:58:56Z - Bit Rate192 - Sample Rate44100 - Normalization484 - Compilation - Artwork Count1 - Persistent IDBD848D17AF61BD8D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Adagio/07%20Mozart_%20Divertimento%20%2315%20In%20B%20Flat,%20K%20287_271h%20-%20Adagio.m4a - File Folder Count4 - Library Folder Count1 - - 5936 - - Track ID5936 - NameAlbinoni: Adagio In G Minor, T. Mi 26 - ArtistDavid Bell, Leon Spierer, Herbert Von Karajan; Berlin Philharmonic Orchestra - ComposerTomaso Albinoni - AlbumAdagio - GenreClassical - KindAAC audio file - Size17068291 - Total Time710018 - Disc Number1 - Disc Count1 - Track Number8 - Track Count11 - Year1995 - Date Modified2006-08-07T08:39:34Z - Date Added2009-10-03T14:58:56Z - Bit Rate192 - Sample Rate44100 - Normalization1164 - Compilation - Artwork Count1 - Persistent IDD8C0B4EF4D444B33 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Adagio/08%20Albinoni_%20Adagio%20In%20G%20Minor,%20T.%20Mi%2026.m4a - File Folder Count4 - Library Folder Count1 - - 5938 - - Track ID5938 - NameBeethoven: Symphony #7 In A, Op. 92 - Allegretto - ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra - ComposerLudwig van Beethoven - AlbumAdagio - GenreClassical - KindAAC audio file - Size11181993 - Total Time467021 - Disc Number1 - Disc Count1 - Track Number9 - Track Count11 - Year1995 - Date Modified2006-08-07T08:39:34Z - Date Added2009-10-03T14:58:56Z - Bit Rate192 - Sample Rate44100 - Normalization1250 - Compilation - Artwork Count1 - Persistent ID252DA719BAE99F2D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Adagio/09%20Beethoven_%20Symphony%20%237%20In%20A,%20Op.%2092%20-%20Allegretto.m4a - File Folder Count4 - Library Folder Count1 - - 5940 - - Track ID5940 - NameJ.S. Bach: Suite #3 In D, BWV 1068 - Air - ArtistHerbert Von Karajan; Berlin Philharmonic Orchestra - ComposerJohann Sebastian Bach - AlbumAdagio - GenreClassical - KindAAC audio file - Size8719692 - Total Time365016 - Disc Number1 - Disc Count1 - Track Number10 - Track Count11 - Year1995 - Date Modified2006-08-07T08:39:34Z - Date Added2009-10-03T14:58:56Z - Bit Rate192 - Sample Rate44100 - Normalization123 - Compilation - Artwork Count1 - Persistent IDE07906A4B996EF7A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Adagio/10%20J.S.%20Bach_%20Suite%20%233%20In%20D,%20BWV%201068%20-%20Air.m4a - File Folder Count4 - Library Folder Count1 - - 5942 - - Track ID5942 - NameGrieg: Kuolema, Op. 44/1 - Valse Triste - ArtistDavid Bell, Herbert Von Karajan; Berlin Philharmonic Orchestra - ComposerJean Sibelius - AlbumAdagio - GenreClassical - KindAAC audio file - Size8804366 - Total Time364017 - Disc Number1 - Disc Count1 - Track Number11 - Track Count11 - Year1995 - Date Modified2006-08-07T08:39:34Z - Date Added2009-10-03T14:58:56Z - Bit Rate192 - Sample Rate44100 - Normalization1051 - Compilation - Artwork Count1 - Persistent ID98E3D48C0D5502BD - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Adagio/11%20Grieg_%20Kuolema,%20Op.%2044_1%20-%20Valse%20Triste.m4a - File Folder Count4 - Library Folder Count1 - - 5944 - - Track ID5944 - Nameダンシング・クイーン - ArtistABBA - AlbumAbba Gold - GenrePop - KindAAC audio file - Size7572754 - Total Time231533 - Disc Number1 - Disc Count1 - Track Number1 - Track Count19 - Year1976 - BPM100 - Date Modified2008-10-17T16:42:33Z - Date Added2009-10-03T14:58:57Z - Bit Rate256 - Sample Rate44100 - Normalization5002 - Compilation - Persistent ID17DDC62A4F51D4F7 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Abba%20Gold/01%20%E3%82%BF%E3%82%99%E3%83%B3%E3%82%B7%E3%83%B3%E3%82%AF%E3%82%99%E3%83%BB%E3%82%AF%E3%82%A4%E3%83%BC%E3%83%B3.m4a - File Folder Count4 - Library Folder Count1 - - 5946 - - Track ID5946 - NameA -Tisket, a-Tasket - ArtistElla Fitzgerald - Album4 By 4 - The Ladies - Ella, Billie, Sarah, Dinah - GenreJazz - KindAAC audio file - Size2784627 - Total Time116167 - Disc Number1 - Disc Count16 - Track Number1 - Track Count16 - Year1999 - Date Modified2006-08-07T09:09:10Z - Date Added2009-10-03T14:58:57Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3337490953 - Play Date UTC2009-10-04T03:19:13Z - Normalization1931 - Compilation - Artwork Count1 - Sort Name-Tisket, a-Tasket - Persistent ID540F7B2D287A4BEA - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/4%20By%204%20-%20The%20Ladies%20-%20Ella,%20Billie,%20Sarah,%20Dinah/1-01%20A%20-Tisket,%20a-Tasket.m4a - File Folder Count4 - Library Folder Count1 - - 5948 - - Track ID5948 - NameMack the Knife - ArtistElla Fitzgerald - Album4 By 4 - The Ladies - Ella, Billie, Sarah, Dinah - GenreJazz - KindAAC audio file - Size6868905 - Total Time285069 - Disc Number1 - Disc Count16 - Track Number2 - Track Count16 - Year1999 - Date Modified2006-08-07T09:09:10Z - Date Added2009-10-03T14:58:57Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3337491238 - Play Date UTC2009-10-04T03:23:58Z - Normalization1610 - Compilation - Artwork Count1 - Persistent ID3A12B018255583A6 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/4%20By%204%20-%20The%20Ladies%20-%20Ella,%20Billie,%20Sarah,%20Dinah/1-02%20Mack%20the%20Knife.m4a - File Folder Count4 - Library Folder Count1 - - 5950 - - Track ID5950 - NameMr. Paganini - ArtistElla Fitzgerald - Album4 By 4 - The Ladies - Ella, Billie, Sarah, Dinah - GenreJazz - KindAAC audio file - Size5915091 - Total Time246013 - Disc Number1 - Disc Count16 - Track Number3 - Track Count16 - Year1999 - Date Modified2006-08-07T09:09:10Z - Date Added2009-10-03T14:58:57Z - Bit Rate192 - Sample Rate44100 - Normalization3534 - Compilation - Artwork Count1 - Persistent ID0100B23C34EA0054 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/4%20By%204%20-%20The%20Ladies%20-%20Ella,%20Billie,%20Sarah,%20Dinah/1-03%20Mr.%20Paganini.m4a - File Folder Count4 - Library Folder Count1 - - 5952 - - Track ID5952 - NameHow High the Moon - ArtistElla Fitzgerald - Album4 By 4 - The Ladies - Ella, Billie, Sarah, Dinah - GenreJazz - KindAAC audio file - Size10179348 - Total Time422346 - Disc Number1 - Disc Count16 - Track Number4 - Track Count16 - Year1999 - Date Modified2006-08-07T09:09:10Z - Date Added2009-10-03T14:58:57Z - Bit Rate192 - Sample Rate44100 - Normalization1813 - Compilation - Artwork Count1 - Persistent ID3411808F935A2418 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/4%20By%204%20-%20The%20Ladies%20-%20Ella,%20Billie,%20Sarah,%20Dinah/1-04%20How%20High%20the%20Moon.m4a - File Folder Count4 - Library Folder Count1 - - 5954 - - Track ID5954 - NameGod Bless the Child - ArtistBillie Holiday - Album4 By 4 - The Ladies - Ella, Billie, Sarah, Dinah - GenreJazz - KindAAC audio file - Size5761266 - Total Time239512 - Disc Number1 - Disc Count16 - Track Number5 - Track Count16 - Year1999 - Date Modified2006-08-07T09:09:10Z - Date Added2009-10-03T14:58:57Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3337491582 - Play Date UTC2009-10-04T03:29:42Z - Normalization1848 - Compilation - Artwork Count1 - Persistent IDCC687BD99FDC94DD - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/4%20By%204%20-%20The%20Ladies%20-%20Ella,%20Billie,%20Sarah,%20Dinah/1-05%20God%20Bless%20the%20Child.m4a - File Folder Count4 - Library Folder Count1 - - 5956 - - Track ID5956 - NameStrange Fruit - ArtistBillie Holiday - Album4 By 4 - The Ladies - Ella, Billie, Sarah, Dinah - GenreJazz - KindAAC audio file - Size4404996 - Total Time183668 - Disc Number1 - Disc Count16 - Track Number6 - Track Count16 - Year1999 - Date Modified2006-08-07T09:09:10Z - Date Added2009-10-03T14:58:57Z - Bit Rate192 - Sample Rate44100 - Skip Count1 - Skip Date2009-10-04T03:29:49Z - Normalization2543 - Compilation - Artwork Count1 - Persistent ID41A83274C57BCEB4 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/4%20By%204%20-%20The%20Ladies%20-%20Ella,%20Billie,%20Sarah,%20Dinah/1-06%20Strange%20Fruit.m4a - File Folder Count4 - Library Folder Count1 - - 5958 - - Track ID5958 - NameWhat a Little Moonlight Can Do - ArtistBillie Holiday - Album4 By 4 - The Ladies - Ella, Billie, Sarah, Dinah - GenreJazz - KindAAC audio file - Size4614979 - Total Time191911 - Disc Number1 - Disc Count16 - Track Number7 - Track Count16 - Year1999 - Date Modified2006-08-07T09:09:10Z - Date Added2009-10-03T14:58:58Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3337491781 - Play Date UTC2009-10-04T03:33:01Z - Normalization1533 - Compilation - Artwork Count1 - Persistent IDD5DD4FECCF6BFB79 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/4%20By%204%20-%20The%20Ladies%20-%20Ella,%20Billie,%20Sarah,%20Dinah/1-07%20What%20a%20Little%20Moonlight%20Can%20Do.m4a - File Folder Count4 - Library Folder Count1 - - 5960 - - Track ID5960 - NameGood Morning Heartache - ArtistBillie Holiday - Album4 By 4 - The Ladies - Ella, Billie, Sarah, Dinah - GenreJazz - KindAAC audio file - Size5055367 - Total Time211067 - Disc Number1 - Disc Count16 - Track Number8 - Track Count16 - Year1999 - Date Modified2006-08-07T09:09:10Z - Date Added2009-10-03T14:58:58Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3337491992 - Play Date UTC2009-10-04T03:36:32Z - Normalization1259 - Compilation - Artwork Count1 - Persistent IDE69FCFE1890477AA - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/4%20By%204%20-%20The%20Ladies%20-%20Ella,%20Billie,%20Sarah,%20Dinah/1-08%20Good%20Morning%20Heartache.m4a - File Folder Count4 - Library Folder Count1 - - 5962 - - Track ID5962 - NameMisty - ArtistSarah Vaughan - Album4 By 4 - The Ladies - Ella, Billie, Sarah, Dinah - GenreJazz - KindAAC audio file - Size4366419 - Total Time181717 - Disc Number1 - Disc Count16 - Track Number9 - Track Count16 - Year1999 - Date Modified2006-08-07T09:09:10Z - Date Added2009-10-03T14:58:58Z - Bit Rate192 - Sample Rate44100 - Normalization1852 - Compilation - Artwork Count1 - Persistent ID4F645E89F05C6C15 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/4%20By%204%20-%20The%20Ladies%20-%20Ella,%20Billie,%20Sarah,%20Dinah/1-09%20Misty.m4a - File Folder Count4 - Library Folder Count1 - - 5964 - - Track ID5964 - NameLullaby of Birdland - ArtistSarah Vaughan - Album4 By 4 - The Ladies - Ella, Billie, Sarah, Dinah - GenreJazz - KindAAC audio file - Size5790257 - Total Time240441 - Disc Number1 - Disc Count16 - Track Number10 - Track Count16 - Year1999 - Date Modified2006-08-07T09:09:10Z - Date Added2009-10-03T14:58:58Z - Bit Rate192 - Sample Rate44100 - Normalization1379 - Compilation - Artwork Count1 - Persistent IDF1A338488061D000 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/4%20By%204%20-%20The%20Ladies%20-%20Ella,%20Billie,%20Sarah,%20Dinah/1-10%20Lullaby%20of%20Birdland.m4a - File Folder Count4 - Library Folder Count1 - - 5966 - - Track ID5966 - NameLover Man - ArtistSarah Vaughan - Album4 By 4 - The Ladies - Ella, Billie, Sarah, Dinah - GenreJazz - KindAAC audio file - Size4766186 - Total Time198180 - Disc Number1 - Disc Count16 - Track Number11 - Track Count16 - Year1999 - Date Modified2006-08-07T09:09:10Z - Date Added2009-10-03T14:58:58Z - Bit Rate192 - Sample Rate44100 - Normalization1266 - Compilation - Artwork Count1 - Persistent IDF7801E10DC0FD415 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/4%20By%204%20-%20The%20Ladies%20-%20Ella,%20Billie,%20Sarah,%20Dinah/1-11%20Lover%20Man.m4a - File Folder Count4 - Library Folder Count1 - - 5968 - - Track ID5968 - NameLush Life - ArtistSarah Vaughan - Album4 By 4 - The Ladies - Ella, Billie, Sarah, Dinah - GenreJazz - KindAAC audio file - Size5852926 - Total Time243715 - Disc Number1 - Disc Count16 - Track Number12 - Track Count16 - Year1999 - Date Modified2006-08-07T09:09:08Z - Date Added2009-10-03T14:58:58Z - Bit Rate192 - Sample Rate44100 - Normalization1812 - Compilation - Artwork Count1 - Persistent IDDE38DBBB679E95F9 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/4%20By%204%20-%20The%20Ladies%20-%20Ella,%20Billie,%20Sarah,%20Dinah/1-12%20Lush%20Life.m4a - File Folder Count4 - Library Folder Count1 - - 5970 - - Track ID5970 - NameThis Bitter Earth - ArtistDinah Washington - Album4 By 4 - The Ladies - Ella, Billie, Sarah, Dinah - GenreJazz - KindAAC audio file - Size3534166 - Total Time147723 - Disc Number1 - Disc Count16 - Track Number13 - Track Count16 - Year1999 - Date Modified2006-08-07T09:09:08Z - Date Added2009-10-03T14:58:58Z - Bit Rate192 - Sample Rate44100 - Normalization3930 - Compilation - Artwork Count1 - Persistent ID9C0D55EA35B9665A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/4%20By%204%20-%20The%20Ladies%20-%20Ella,%20Billie,%20Sarah,%20Dinah/1-13%20This%20Bitter%20Earth.m4a - File Folder Count4 - Library Folder Count1 - - 5972 - - Track ID5972 - NameUnforgettable - ArtistDinah Washington - Album4 By 4 - The Ladies - Ella, Billie, Sarah, Dinah - GenreJazz - KindAAC audio file - Size3915939 - Total Time162886 - Disc Number1 - Disc Count16 - Track Number14 - Track Count16 - Year1999 - Date Modified2006-08-07T09:09:08Z - Date Added2009-10-03T14:58:58Z - Bit Rate192 - Sample Rate44100 - Normalization2889 - Compilation - Artwork Count1 - Persistent IDC77B0348F4503E6A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/4%20By%204%20-%20The%20Ladies%20-%20Ella,%20Billie,%20Sarah,%20Dinah/1-14%20Unforgettable.m4a - File Folder Count4 - Library Folder Count1 - - 5974 - - Track ID5974 - NameMad About the Boy - ArtistDinah Washington - Album4 By 4 - The Ladies - Ella, Billie, Sarah, Dinah - GenreJazz - KindAAC audio file - Size4322586 - Total Time179163 - Disc Number1 - Disc Count16 - Track Number15 - Track Count16 - Year1999 - Date Modified2006-08-07T09:09:08Z - Date Added2009-10-03T14:58:59Z - Bit Rate192 - Sample Rate44100 - Normalization3755 - Compilation - Artwork Count1 - Persistent IDB04E8095C75F7D83 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/4%20By%204%20-%20The%20Ladies%20-%20Ella,%20Billie,%20Sarah,%20Dinah/1-15%20Mad%20About%20the%20Boy.m4a - File Folder Count4 - Library Folder Count1 - - 5976 - - Track ID5976 - NameWhat A Differance A Day Made - ArtistDinah Washington - Album4 By 4 - The Ladies - Ella, Billie, Sarah, Dinah - GenreJazz - KindAAC audio file - Size3591295 - Total Time147654 - Disc Number1 - Disc Count16 - Track Number16 - Track Count16 - Year1999 - Date Modified2006-08-07T09:09:08Z - Date Added2009-10-03T14:58:59Z - Bit Rate192 - Sample Rate44100 - Normalization1252 - Compilation - Artwork Count1 - Persistent IDE4B4D2D0354C0222 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/4%20By%204%20-%20The%20Ladies%20-%20Ella,%20Billie,%20Sarah,%20Dinah/1-16%20What%20A%20Differance%20A%20Day%20Made.m4a - File Folder Count4 - Library Folder Count1 - - 5978 - - Track ID5978 - NameA Message - ArtistColdplay - ComposerBerryman/Buckland/Champion/Martin - AlbumX&Y - GenreAlternative & Punk - KindAAC audio file - Size6995869 - Total Time285306 - Disc Number1 - Disc Count1 - Track Number8 - Track Count13 - Year2005 - Date Modified2007-08-09T16:07:41Z - Date Added2009-10-03T14:59:00Z - Bit Rate192 - Sample Rate44100 - Normalization4725 - Artwork Count1 - Sort NameMessage - Persistent ID90A95525AD2BCFC1 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Coldplay/X&Y/08%20A%20Message.m4a - File Folder Count4 - Library Folder Count1 - - 5980 - - Track ID5980 - NameFix You - ArtistColdplay - ComposerBerryman/Buckland/Champion/Martin - AlbumX&Y - GenreAlternative & Punk - KindAAC audio file - Size7170771 - Total Time294986 - Disc Number1 - Disc Count1 - Track Number4 - Track Count13 - Year2005 - Date Modified2007-08-09T16:05:08Z - Date Added2009-10-03T14:59:00Z - Bit Rate192 - Sample Rate44100 - Normalization5214 - Artwork Count1 - Persistent ID448905B76FDDB701 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Coldplay/X&Y/04%20Fix%20You.m4a - File Folder Count4 - Library Folder Count1 - - 5982 - - Track ID5982 - NameKingdom Come - ArtistColdplay - ComposerBerryman/Buckland/Champion/Martin - AlbumX&Y - GenreAlternative & Punk - KindAAC audio file - Size6084631 - Total Time250666 - Disc Number1 - Disc Count1 - Track Number13 - Track Count13 - Year2005 - Date Modified2007-08-09T16:11:00Z - Date Added2009-10-03T14:59:00Z - Bit Rate192 - Sample Rate44100 - Normalization1934 - Artwork Count1 - Persistent IDF5263BD7BFB9CDD3 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Coldplay/X&Y/13%20Kingdom%20Come.m4a - File Folder Count4 - Library Folder Count1 - - 5984 - - Track ID5984 - NameLow - ArtistColdplay - ComposerBerryman/Buckland/Champion/Martin - AlbumX&Y - GenreAlternative & Punk - KindAAC audio file - Size8066147 - Total Time332093 - Disc Number1 - Disc Count1 - Track Number9 - Track Count13 - Year2005 - Date Modified2007-08-09T16:08:26Z - Date Added2009-10-03T14:59:00Z - Bit Rate192 - Sample Rate44100 - Normalization7106 - Artwork Count1 - Persistent ID76A06178813776E1 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Coldplay/X&Y/09%20Low.m4a - File Folder Count4 - Library Folder Count1 - - 5986 - - Track ID5986 - NameSpeed Of Sound - ArtistColdplay - ComposerBerryman/Buckland/Champion/Martin - AlbumX&Y - GenreAlternative & Punk - KindAAC audio file - Size7034900 - Total Time288440 - Disc Number1 - Disc Count1 - Track Number7 - Track Count13 - Year2005 - Date Modified2007-08-09T16:07:03Z - Date Added2009-10-03T14:59:01Z - Bit Rate192 - Sample Rate44100 - Normalization6093 - Artwork Count1 - Persistent ID5358BEB817A7CABB - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Coldplay/X&Y/07%20Speed%20Of%20Sound.m4a - File Folder Count4 - Library Folder Count1 - - 5988 - - Track ID5988 - NameSquare One - ArtistColdplay - ComposerBerryman/Buckland/Champion/Martin - AlbumX&Y - GenreAlternative & Punk - KindAAC audio file - Size6990075 - Total Time287386 - Disc Number1 - Disc Count1 - Track Number1 - Track Count13 - Year2005 - Date Modified2007-08-09T16:03:05Z - Date Added2009-10-03T14:59:01Z - Bit Rate192 - Sample Rate44100 - Normalization5377 - Artwork Count1 - Persistent IDB5FD301180E10FCA - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Coldplay/X&Y/01%20Square%20One.m4a - File Folder Count4 - Library Folder Count1 - - 5990 - - Track ID5990 - NameSwallowed In The Sea - ArtistColdplay - ComposerBerryman/Buckland/Champion/Martin - AlbumX&Y - GenreAlternative & Punk - KindAAC audio file - Size5792448 - Total Time238960 - Disc Number1 - Disc Count1 - Track Number11 - Track Count13 - Year2005 - Date Modified2007-08-09T16:09:33Z - Date Added2009-10-03T14:59:01Z - Bit Rate192 - Sample Rate44100 - Normalization4815 - Artwork Count1 - Persistent IDB50ACB5CE48F52C6 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Coldplay/X&Y/11%20Swallowed%20In%20The%20Sea.m4a - File Folder Count4 - Library Folder Count1 - - 5992 - - Track ID5992 - NameTalk - ArtistColdplay - ComposerHütter/Schult - AlbumX&Y - GenreAlternative & Punk - KindAAC audio file - Size7670077 - Total Time311253 - Disc Number1 - Disc Count1 - Track Number5 - Track Count13 - Year2005 - Date Modified2007-08-09T16:05:49Z - Date Added2009-10-03T14:59:01Z - Bit Rate192 - Sample Rate44100 - Normalization4085 - Artwork Count1 - Persistent ID91C14848A2CC2010 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Coldplay/X&Y/05%20Talk.m4a - File Folder Count4 - Library Folder Count1 - - 5994 - - Track ID5994 - NameThe Hardest Part - ArtistColdplay - ComposerBerryman/Buckland/Champion/Martin - AlbumX&Y - GenreAlternative & Punk - KindAAC audio file - Size6423930 - Total Time265040 - Disc Number1 - Disc Count1 - Track Number10 - Track Count13 - Year2005 - Date Modified2007-08-09T16:09:01Z - Date Added2009-10-03T14:59:01Z - Bit Rate192 - Sample Rate44100 - Normalization7362 - Artwork Count1 - Sort NameHardest Part - Persistent IDD6EF9A1643A543BC - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Coldplay/X&Y/10%20The%20Hardest%20Part.m4a - File Folder Count4 - Library Folder Count1 - - 5996 - - Track ID5996 - NameTwisted Logic - ArtistColdplay - ComposerBerryman/Buckland/Champion/Martin - AlbumX&Y - GenreAlternative & Punk - KindAAC audio file - Size6672782 - Total Time301866 - Disc Number1 - Disc Count1 - Track Number12 - Track Count13 - Year2005 - Date Modified2007-08-09T16:10:17Z - Date Added2009-10-03T14:59:01Z - Bit Rate192 - Sample Rate44100 - Normalization5556 - Artwork Count1 - Persistent IDDC200853D31368F9 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Coldplay/X&Y/12%20Twisted%20Logic.m4a - File Folder Count4 - Library Folder Count1 - - 5998 - - Track ID5998 - NameWhat If - ArtistColdplay - ComposerBerryman/Buckland/Champion/Martin - AlbumX&Y - GenreAlternative & Punk - KindAAC audio file - Size7219115 - Total Time297040 - Disc Number1 - Disc Count1 - Track Number2 - Track Count13 - Year2005 - Date Modified2007-08-09T16:03:45Z - Date Added2009-10-03T14:59:01Z - Bit Rate192 - Sample Rate44100 - Normalization5898 - Artwork Count1 - Persistent ID1C6EA533302915C2 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Coldplay/X&Y/02%20What%20If.m4a - File Folder Count4 - Library Folder Count1 - - 6000 - - Track ID6000 - NameWhite Shadows - ArtistColdplay - ComposerBerryman/Buckland/Champion/Martin - AlbumX&Y - GenreAlternative & Punk - KindAAC audio file - Size7969841 - Total Time328160 - Disc Number1 - Disc Count1 - Track Number3 - Track Count13 - Year2005 - Date Modified2007-08-09T16:04:29Z - Date Added2009-10-03T14:59:02Z - Bit Rate192 - Sample Rate44100 - Normalization6027 - Artwork Count1 - Persistent IDBC093EB17B0B444F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Coldplay/X&Y/03%20White%20Shadows.m4a - File Folder Count4 - Library Folder Count1 - - 6002 - - Track ID6002 - NameX&Y - ArtistColdplay - ComposerBerryman/Buckland/Champion/Martin - AlbumX&Y - GenreAlternative & Punk - KindAAC audio file - Size6676374 - Total Time274146 - Disc Number1 - Disc Count1 - Track Number6 - Track Count13 - Year2005 - Date Modified2007-08-09T16:06:25Z - Date Added2009-10-03T14:59:02Z - Bit Rate192 - Sample Rate44100 - Normalization7328 - Artwork Count1 - Persistent ID70AFBA134F8B5B59 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Coldplay/X&Y/06%20X&Y.m4a - File Folder Count4 - Library Folder Count1 - - 6004 - - Track ID6004 - NameDon't Panic - ArtistColdplay - ComposerGuy Berryman, Jon Buckland, Will Champion & Chris Martin - AlbumParachutes - GenreAlternative & Punk - KindAAC audio file - Size3556184 - Total Time138893 - Disc Number1 - Disc Count1 - Track Number1 - Track Count10 - Year2000 - Date Modified2007-10-22T04:48:34Z - Date Added2009-10-03T14:59:02Z - Bit Rate192 - Sample Rate44100 - Normalization3514 - Artwork Count1 - Persistent ID6DCD85C41755741E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Coldplay/Parachutes/01%20Don't%20Panic.m4a - File Folder Count4 - Library Folder Count1 - - 6006 - - Track ID6006 - NameEverything's Not Lost - ArtistColdplay - ComposerGuy Berryman, Jon Buckland, Will Champion & Chris Martin - AlbumParachutes - GenreAlternative & Punk - KindAAC audio file - Size10375022 - Total Time434466 - Disc Number1 - Disc Count1 - Track Number10 - Track Count10 - Year2000 - Date Modified2007-10-22T04:54:40Z - Date Added2009-10-03T14:59:02Z - Bit Rate192 - Sample Rate44100 - Normalization3334 - Artwork Count1 - Persistent IDA273C863962F2D95 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Coldplay/Parachutes/10%20Everything's%20Not%20Lost.m4a - File Folder Count4 - Library Folder Count1 - - 6008 - - Track ID6008 - NameHigh Speed - ArtistColdplay - ComposerGuy Berryman, Jon Buckland, Will Champion & Chris Martin - AlbumParachutes - GenreAlternative & Punk - KindAAC audio file - Size6205457 - Total Time256386 - Disc Number1 - Disc Count1 - Track Number8 - Track Count10 - Year2000 - Date Modified2007-10-22T04:52:50Z - Date Added2009-10-03T14:59:02Z - Bit Rate192 - Sample Rate44100 - Normalization2478 - Artwork Count1 - Persistent ID408EC856E268385B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Coldplay/Parachutes/08%20High%20Speed.m4a - File Folder Count4 - Library Folder Count1 - - 6010 - - Track ID6010 - NameParachutes - ArtistColdplay - ComposerGuy Berryman, Jon Buckland, Will Champion & Chris Martin - AlbumParachutes - GenreAlternative & Punk - KindAAC audio file - Size1167836 - Total Time48226 - Disc Number1 - Disc Count1 - Track Number7 - Track Count10 - Year2000 - Date Modified2007-10-22T04:52:10Z - Date Added2009-10-03T14:59:02Z - Bit Rate192 - Sample Rate44100 - Normalization852 - Artwork Count1 - Persistent ID6934DB40C211E01B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Coldplay/Parachutes/07%20Parachutes.m4a - File Folder Count4 - Library Folder Count1 - - 6012 - - Track ID6012 - NameShiver - ArtistColdplay - ComposerGuy Berryman, Jon Buckland, Will Champion & Chris Martin - AlbumParachutes - GenreAlternative & Punk - KindAAC audio file - Size7359606 - Total Time301720 - Disc Number1 - Disc Count1 - Track Number2 - Track Count10 - Year2000 - Date Modified2007-10-22T04:49:19Z - Date Added2009-10-03T14:59:02Z - Bit Rate192 - Sample Rate44100 - Normalization4196 - Artwork Count1 - Persistent IDE6E77BEC8EE293D2 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Coldplay/Parachutes/02%20Shiver.m4a - File Folder Count4 - Library Folder Count1 - - 6014 - - Track ID6014 - NameSparks - ArtistColdplay - ComposerGuy Berryman, Jon Buckland, Will Champion & Chris Martin - AlbumParachutes - GenreAlternative & Punk - KindAAC audio file - Size5499618 - Total Time229120 - Disc Number1 - Disc Count1 - Track Number4 - Track Count10 - Year2000 - Date Modified2007-10-22T04:50:41Z - Date Added2009-10-03T14:59:02Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3484501552 - Play Date UTC2014-06-01T15:35:52Z - Normalization1442 - Artwork Count1 - Persistent ID5D1B65DC0C9D81ED - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Coldplay/Parachutes/04%20Sparks.m4a - File Folder Count4 - Library Folder Count1 - - 6016 - - Track ID6016 - NameSpies - ArtistColdplay - ComposerGuy Berryman, Jon Buckland, Will Champion & Chris Martin - AlbumParachutes - GenreAlternative & Punk - KindAAC audio file - Size7766425 - Total Time320800 - Disc Number1 - Disc Count1 - Track Number3 - Track Count10 - Year2000 - Date Modified2007-10-22T04:50:06Z - Date Added2009-10-03T14:59:03Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3484501323 - Play Date UTC2014-06-01T15:32:03Z - Skip Count1 - Skip Date2010-08-25T10:55:33Z - Normalization4847 - Artwork Count1 - Persistent ID8B1F7AC8BC55E2EB - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Coldplay/Parachutes/03%20Spies.m4a - File Folder Count4 - Library Folder Count1 - - 6018 - - Track ID6018 - NameTrouble - ArtistColdplay - ComposerGuy Berryman, Jon Buckland, Will Champion & Chris Martin - AlbumParachutes - GenreAlternative & Punk - KindAAC audio file - Size6594447 - Total Time272933 - Disc Number1 - Disc Count1 - Track Number6 - Track Count10 - Year2000 - Date Modified2007-10-22T04:52:03Z - Date Added2009-10-03T14:59:03Z - Bit Rate192 - Sample Rate44100 - Normalization3570 - Artwork Count1 - Persistent IDC8B3B56364326BC1 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Coldplay/Parachutes/06%20Trouble.m4a - File Folder Count4 - Library Folder Count1 - - 6020 - - Track ID6020 - NameWe Never Change - ArtistColdplay - ComposerGuy Berryman, Jon Buckland, Will Champion & Chris Martin - AlbumParachutes - GenreAlternative & Punk - KindAAC audio file - Size6063282 - Total Time251426 - Disc Number1 - Disc Count1 - Track Number9 - Track Count10 - Year2000 - Date Modified2007-10-22T04:53:29Z - Date Added2009-10-03T14:59:03Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Persistent ID14821EB52324E664 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Coldplay/Parachutes/09%20We%20Never%20Change.m4a - File Folder Count4 - Library Folder Count1 - - 6022 - - Track ID6022 - NameYellow - ArtistColdplay - ComposerGuy Berryman, Jon Buckland, Will Champion & Chris Martin - AlbumParachutes - GenreAlternative & Punk - KindAAC audio file - Size6642094 - Total Time271226 - Disc Number1 - Disc Count1 - Track Number5 - Track Count10 - Year2000 - Date Modified2007-10-22T04:51:21Z - Date Added2009-10-03T14:59:03Z - Bit Rate192 - Sample Rate44100 - Normalization6447 - Artwork Count1 - Persistent IDABE09EE2EC11694A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Coldplay/Parachutes/05%20Yellow.m4a - File Folder Count4 - Library Folder Count1 - - 6024 - - Track ID6024 - NameA Rush Of Blood To The Head - ArtistColdplay - ComposerCold play - AlbumA Rush Of Blood To The Head - GenreAlternative & Punk - KindAAC audio file - Size8542008 - Total Time351400 - Disc Number1 - Disc Count1 - Track Number10 - Track Count11 - Year2002 - Date Modified2007-08-09T15:10:17Z - Date Added2009-10-03T14:59:03Z - Bit Rate192 - Sample Rate44100 - Normalization3843 - Artwork Count1 - Sort AlbumRush Of Blood To The Head - Sort NameRush Of Blood To The Head - Persistent ID2D55A1840416D605 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Coldplay/A%20Rush%20Of%20Blood%20To%20The%20Head/10%20A%20Rush%20Of%20Blood%20To%20The%20Head.m4a - File Folder Count4 - Library Folder Count1 - - 6026 - - Track ID6026 - NameA Whisper - ArtistColdplay - ComposerCold play - AlbumA Rush Of Blood To The Head - GenreAlternative & Punk - KindAAC audio file - Size5757598 - Total Time238333 - Disc Number1 - Disc Count1 - Track Number9 - Track Count11 - Year2002 - Date Modified2007-08-09T15:09:20Z - Date Added2009-10-03T14:59:03Z - Bit Rate192 - Sample Rate44100 - Skip Count1 - Skip Date2010-08-25T10:55:21Z - Normalization7290 - Artwork Count1 - Sort AlbumRush Of Blood To The Head - Sort NameWhisper - Persistent IDC3B5F89503C5E407 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Coldplay/A%20Rush%20Of%20Blood%20To%20The%20Head/09%20A%20Whisper.m4a - File Folder Count4 - Library Folder Count1 - - 6028 - - Track ID6028 - NameAmsterdam - ArtistColdplay - ComposerCold play - AlbumA Rush Of Blood To The Head - GenreAlternative & Punk - KindAAC audio file - Size7772820 - Total Time319360 - Disc Number1 - Disc Count1 - Track Number11 - Track Count11 - Year2002 - Date Modified2007-08-09T15:11:13Z - Date Added2009-10-03T14:59:03Z - Bit Rate192 - Sample Rate44100 - Normalization2541 - Artwork Count1 - Sort AlbumRush Of Blood To The Head - Persistent ID2CBE6AE1D12F8B83 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Coldplay/A%20Rush%20Of%20Blood%20To%20The%20Head/11%20Amsterdam.m4a - File Folder Count4 - Library Folder Count1 - - 6030 - - Track ID6030 - NameClocks - ArtistColdplay - ComposerCold play - AlbumA Rush Of Blood To The Head - GenreAlternative & Punk - KindAAC audio file - Size7492294 - Total Time307466 - Disc Number1 - Disc Count1 - Track Number5 - Track Count11 - Year2002 - Date Modified2007-08-09T15:06:13Z - Date Added2009-10-03T14:59:04Z - Bit Rate192 - Sample Rate44100 - Play Count3 - Play Date3484555016 - Play Date UTC2014-06-02T06:26:56Z - Normalization4712 - Artwork Count1 - Sort AlbumRush Of Blood To The Head - Persistent ID8528AFE750EF4BA3 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Coldplay/A%20Rush%20Of%20Blood%20To%20The%20Head/05%20Clocks.m4a - File Folder Count4 - Library Folder Count1 - - 6032 - - Track ID6032 - NameDaylight - ArtistColdplay - ComposerCold play - AlbumA Rush Of Blood To The Head - GenreAlternative & Punk - KindAAC audio file - Size7964774 - Total Time327800 - Disc Number1 - Disc Count1 - Track Number6 - Track Count11 - Year2002 - Date Modified2007-08-09T15:07:08Z - Date Added2009-10-03T14:59:04Z - Bit Rate192 - Sample Rate44100 - Normalization5892 - Artwork Count1 - Sort AlbumRush Of Blood To The Head - Persistent ID1312A89B537198D2 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Coldplay/A%20Rush%20Of%20Blood%20To%20The%20Head/06%20Daylight.m4a - File Folder Count4 - Library Folder Count1 - - 6034 - - Track ID6034 - NameGod Put A Smile Upon Your Face - ArtistColdplay - ComposerCold play - AlbumA Rush Of Blood To The Head - GenreAlternative & Punk - KindAAC audio file - Size7257174 - Total Time297266 - Disc Number1 - Disc Count1 - Track Number3 - Track Count11 - Year2002 - Date Modified2007-08-09T15:04:31Z - Date Added2009-10-03T14:59:04Z - Bit Rate192 - Sample Rate44100 - Normalization4428 - Artwork Count1 - Sort AlbumRush Of Blood To The Head - Persistent ID2E1DC692DB95453E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Coldplay/A%20Rush%20Of%20Blood%20To%20The%20Head/03%20God%20Put%20A%20Smile%20Upon%20Your%20Face.m4a - File Folder Count4 - Library Folder Count1 - - 6036 - - Track ID6036 - NameGreen Eyes - ArtistColdplay - ComposerCold play - AlbumA Rush Of Blood To The Head - GenreAlternative & Punk - KindAAC audio file - Size5364778 - Total Time223040 - Disc Number1 - Disc Count1 - Track Number7 - Track Count11 - Year2002 - Date Modified2007-08-09T15:07:46Z - Date Added2009-10-03T14:59:04Z - Bit Rate192 - Sample Rate44100 - Normalization2249 - Artwork Count1 - Sort AlbumRush Of Blood To The Head - Persistent IDD07241BBF60EEED7 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Coldplay/A%20Rush%20Of%20Blood%20To%20The%20Head/07%20Green%20Eyes.m4a - File Folder Count4 - Library Folder Count1 - - 6038 - - Track ID6038 - NameIn My Place - ArtistColdplay - ComposerCold play - AlbumA Rush Of Blood To The Head - GenreAlternative & Punk - KindAAC audio file - Size5529597 - Total Time228733 - Disc Number1 - Disc Count1 - Track Number2 - Track Count11 - Year2002 - Date Modified2007-08-09T15:03:40Z - Date Added2009-10-03T14:59:04Z - Bit Rate192 - Sample Rate44100 - Normalization5387 - Artwork Count1 - Sort AlbumRush Of Blood To The Head - Persistent ID5BCB6D3C741D74AF - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Coldplay/A%20Rush%20Of%20Blood%20To%20The%20Head/02%20In%20My%20Place.m4a - File Folder Count4 - Library Folder Count1 - - 6040 - - Track ID6040 - NamePolitik - ArtistColdplay - ComposerCold play - AlbumA Rush Of Blood To The Head - GenreAlternative & Punk - KindAAC audio file - Size7763307 - Total Time318626 - Disc Number1 - Disc Count1 - Track Number1 - Track Count11 - Year2002 - Date Modified2007-08-09T15:03:02Z - Date Added2009-10-03T14:59:04Z - Bit Rate192 - Sample Rate44100 - Skip Count1 - Skip Date2014-06-01T15:36:21Z - Normalization4640 - Artwork Count1 - Sort AlbumRush Of Blood To The Head - Persistent ID90B3E5C71DE3DBA3 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Coldplay/A%20Rush%20Of%20Blood%20To%20The%20Head/01%20Politik.m4a - File Folder Count4 - Library Folder Count1 - - 6042 - - Track ID6042 - NameThe Scientist - ArtistColdplay - ComposerCold play - AlbumA Rush Of Blood To The Head - GenreAlternative & Punk - KindAAC audio file - Size7574888 - Total Time309200 - Disc Number1 - Disc Count1 - Track Number4 - Track Count11 - Year2002 - Date Modified2007-08-09T15:05:23Z - Date Added2009-10-03T14:59:04Z - Bit Rate192 - Sample Rate44100 - Normalization3575 - Artwork Count1 - Sort AlbumRush Of Blood To The Head - Sort NameScientist - Persistent ID5037D7616E0655A9 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Coldplay/A%20Rush%20Of%20Blood%20To%20The%20Head/04%20The%20Scientist.m4a - File Folder Count4 - Library Folder Count1 - - 6044 - - Track ID6044 - NameWarning Sign - ArtistColdplay - ComposerCold play - AlbumA Rush Of Blood To The Head - GenreAlternative & Punk - KindAAC audio file - Size8050402 - Total Time331133 - Disc Number1 - Disc Count1 - Track Number8 - Track Count11 - Year2002 - Date Modified2007-08-09T15:08:40Z - Date Added2009-10-03T14:59:04Z - Bit Rate192 - Sample Rate44100 - Normalization2593 - Artwork Count1 - Sort AlbumRush Of Blood To The Head - Persistent ID1810B1A26F88F713 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Coldplay/A%20Rush%20Of%20Blood%20To%20The%20Head/08%20Warning%20Sign.m4a - File Folder Count4 - Library Folder Count1 - - 6046 - - Track ID6046 - NameBloomdido - ArtistCharlie Parker/Dizzy Gillespie - AlbumBird And Diz - GenreJazz - KindAAC audio file - Size5090918 - Total Time209767 - Track Number1 - Track Count24 - Date Modified2006-07-28T08:16:22Z - Date Added2009-10-03T14:59:05Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3437116757 - Play Date UTC2012-11-30T05:09:17Z - Normalization1424 - Persistent ID742E2616AD5F5451 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Charlie%20Parker_Dizzy%20Gillespie/Bird%20And%20Diz/01%20Bloomdido.m4a - File Folder Count4 - Library Folder Count1 - - 6048 - - Track ID6048 - NameMy Melancholy Baby - ArtistCharlie Parker/Dizzy Gillespie - AlbumBird And Diz - GenreJazz - KindAAC audio file - Size5090324 - Total Time209744 - Track Number2 - Track Count24 - Date Modified2006-07-28T08:17:02Z - Date Added2009-10-03T14:59:05Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3437116967 - Play Date UTC2012-11-30T05:12:47Z - Normalization1725 - Persistent IDF870434EBB387D0E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Charlie%20Parker_Dizzy%20Gillespie/Bird%20And%20Diz/02%20My%20Melancholy%20Baby.m4a - File Folder Count4 - Library Folder Count1 - - 6050 - - Track ID6050 - NameRelaxin' With Lee - ArtistCharlie Parker/Dizzy Gillespie - AlbumBird And Diz - GenreJazz - KindAAC audio file - Size4056675 - Total Time170874 - Track Number3 - Track Count24 - Date Modified2006-07-28T08:17:34Z - Date Added2009-10-03T14:59:05Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3437117137 - Play Date UTC2012-11-30T05:15:37Z - Normalization1579 - Persistent IDBD39AF35E4535B4A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Charlie%20Parker_Dizzy%20Gillespie/Bird%20And%20Diz/03%20Relaxin'%20With%20Lee.m4a - File Folder Count4 - Library Folder Count1 - - 6052 - - Track ID6052 - NameLeap Frog - ArtistCharlie Parker/Dizzy Gillespie - AlbumBird And Diz - GenreJazz - KindAAC audio file - Size3648452 - Total Time155641 - Track Number4 - Track Count24 - Date Modified2006-07-28T08:18:04Z - Date Added2009-10-03T14:59:05Z - Bit Rate192 - Sample Rate44100 - Normalization2014 - Persistent IDECFE86A0E9C23E0A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Charlie%20Parker_Dizzy%20Gillespie/Bird%20And%20Diz/04%20Leap%20Frog.m4a - File Folder Count4 - Library Folder Count1 - - 6054 - - Track ID6054 - NameAn Oscar For Treadwell - ArtistCharlie Parker/Dizzy Gillespie - AlbumBird And Diz - GenreJazz - KindAAC audio file - Size5065818 - Total Time208908 - Track Number5 - Track Count24 - Date Modified2006-07-28T08:18:42Z - Date Added2009-10-03T14:59:05Z - Bit Rate192 - Sample Rate44100 - Normalization2495 - Sort NameOscar For Treadwell - Persistent ID99A05AEFBFCBFB70 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Charlie%20Parker_Dizzy%20Gillespie/Bird%20And%20Diz/05%20An%20Oscar%20For%20Treadwell.m4a - File Folder Count4 - Library Folder Count1 - - 6056 - - Track ID6056 - NameMohawk - ArtistCharlie Parker/Dizzy Gillespie - AlbumBird And Diz - GenreJazz - KindAAC audio file - Size5220627 - Total Time224976 - Track Number6 - Track Count24 - Date Modified2006-07-28T08:19:24Z - Date Added2009-10-03T14:59:05Z - Bit Rate192 - Sample Rate44100 - Normalization1485 - Persistent ID97F2A7ADB1E8092B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Charlie%20Parker_Dizzy%20Gillespie/Bird%20And%20Diz/06%20Mohawk.m4a - File Folder Count4 - Library Folder Count1 - - 6058 - - Track ID6058 - NameMy Melancholy Baby [Complete Take] - ArtistCharlie Parker/Dizzy Gillespie - AlbumBird And Diz - GenreJazz - KindAAC audio file - Size4866299 - Total Time200642 - Track Number7 - Track Count24 - Date Modified2006-07-28T08:20:02Z - Date Added2009-10-03T14:59:06Z - Bit Rate192 - Sample Rate44100 - Normalization1791 - Persistent IDD5742C4A18E0BA69 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Charlie%20Parker_Dizzy%20Gillespie/Bird%20And%20Diz/07%20My%20Melancholy%20Baby%20%5BComplete%20Take%5D.m4a - File Folder Count4 - Library Folder Count1 - - 6060 - - Track ID6060 - NameRelaxin' With Lee [Complete Take] - ArtistCharlie Parker/Dizzy Gillespie - AlbumBird And Diz - GenreJazz - KindAAC audio file - Size5805295 - Total Time239512 - Track Number8 - Track Count24 - Date Modified2006-07-28T08:20:50Z - Date Added2009-10-03T14:59:06Z - Bit Rate192 - Sample Rate44100 - Normalization1617 - Persistent ID9EA6D2D961FB2B00 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Charlie%20Parker_Dizzy%20Gillespie/Bird%20And%20Diz/08%20Relaxin'%20With%20Lee%20%5BComplete%20Take%5D.m4a - File Folder Count4 - Library Folder Count1 - - 6062 - - Track ID6062 - NameLeap Frog [Complete Take] - ArtistCharlie Parker/Dizzy Gillespie - AlbumBird And Diz - GenreJazz - KindAAC audio file - Size3765719 - Total Time157336 - Track Number9 - Track Count24 - Date Modified2006-07-28T08:21:22Z - Date Added2009-10-03T14:59:06Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3435929895 - Play Date UTC2012-11-16T11:28:15Z - Normalization2223 - Persistent IDB6C008DC4D3B307D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Charlie%20Parker_Dizzy%20Gillespie/Bird%20And%20Diz/09%20Leap%20Frog%20%5BComplete%20Take%5D.m4a - File Folder Count4 - Library Folder Count1 - - 6064 - - Track ID6064 - NameLeap Frog [Complete Take] - ArtistCharlie Parker/Dizzy Gillespie - AlbumBird And Diz - GenreJazz - KindAAC audio file - Size3042829 - Total Time124689 - Track Number10 - Track Count24 - Date Modified2006-07-28T08:21:48Z - Date Added2009-10-03T14:59:06Z - Bit Rate192 - Sample Rate44100 - Normalization2143 - Persistent ID7460FC41832A2A0E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Charlie%20Parker_Dizzy%20Gillespie/Bird%20And%20Diz/10%20Leap%20Frog%20%5BComplete%20Take%5D.m4a - File Folder Count4 - Library Folder Count1 - - 6066 - - Track ID6066 - NameLeap Frog [Complete Take] - ArtistCharlie Parker/Dizzy Gillespie - AlbumBird And Diz - GenreJazz - KindAAC audio file - Size3162273 - Total Time129473 - Track Number11 - Track Count24 - Date Modified2006-07-28T08:22:14Z - Date Added2009-10-03T14:59:06Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3435930024 - Play Date UTC2012-11-16T11:30:24Z - Normalization1806 - Persistent ID5E7A044848A1B095 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Charlie%20Parker_Dizzy%20Gillespie/Bird%20And%20Diz/11%20Leap%20Frog%20%5BComplete%20Take%5D.m4a - File Folder Count4 - Library Folder Count1 - - 6068 - - Track ID6068 - NameAn Oscar For Treadwell [Complete Take] - ArtistCharlie Parker/Dizzy Gillespie - AlbumBird And Diz - GenreJazz - KindAAC audio file - Size4885360 - Total Time204218 - Track Number12 - Track Count24 - Date Modified2006-07-28T08:22:56Z - Date Added2009-10-03T14:59:06Z - Bit Rate192 - Sample Rate44100 - Normalization2266 - Sort NameOscar For Treadwell [Complete Take] - Persistent IDCAFEF036032CE684 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Charlie%20Parker_Dizzy%20Gillespie/Bird%20And%20Diz/12%20An%20Oscar%20For%20Treadwell%20%5BComplete%20Take%5D.m4a - File Folder Count4 - Library Folder Count1 - - 6070 - - Track ID6070 - NameMohawk [Complete Take] - ArtistCharlie Parker/Dizzy Gillespie - AlbumBird And Diz - GenreJazz - KindAAC audio file - Size5931555 - Total Time246339 - Track Number13 - Track Count24 - Date Modified2006-07-28T08:23:42Z - Date Added2009-10-03T14:59:06Z - Bit Rate192 - Sample Rate44100 - Normalization1022 - Persistent IDA11D61B7173AF7D4 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Charlie%20Parker_Dizzy%20Gillespie/Bird%20And%20Diz/13%20Mohawk%20%5BComplete%20Take%5D.m4a - File Folder Count4 - Library Folder Count1 - - 6072 - - Track ID6072 - NameRelaxin' With Lee [Breakdown Take] - ArtistCharlie Parker/Dizzy Gillespie - AlbumBird And Diz - GenreJazz - KindAAC audio file - Size546187 - Total Time20548 - Track Number14 - Track Count24 - Date Modified2006-07-28T08:23:46Z - Date Added2009-10-03T14:59:06Z - Bit Rate192 - Sample Rate44100 - Normalization1562 - Persistent ID1ACB0E48F062F563 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Charlie%20Parker_Dizzy%20Gillespie/Bird%20And%20Diz/14%20Relaxin'%20With%20Lee%20%5BBreakdown%20Take%5D.m4a - File Folder Count4 - Library Folder Count1 - - 6074 - - Track ID6074 - NameRelaxin' With Lee [Breakdown Take] - ArtistCharlie Parker/Dizzy Gillespie - AlbumBird And Diz - GenreJazz - KindAAC audio file - Size1823910 - Total Time73745 - Track Number15 - Track Count24 - Date Modified2006-07-28T08:23:58Z - Date Added2009-10-03T14:59:06Z - Bit Rate192 - Sample Rate44100 - Normalization1267 - Persistent ID3EAA44327D1CC11E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Charlie%20Parker_Dizzy%20Gillespie/Bird%20And%20Diz/15%20Relaxin'%20With%20Lee%20%5BBreakdown%20Take%5D.m4a - File Folder Count4 - Library Folder Count1 - - 6076 - - Track ID6076 - NameRelaxin' With Lee [False Start] - ArtistCharlie Parker/Dizzy Gillespie - AlbumBird And Diz - GenreJazz - KindAAC audio file - Size211448 - Total Time6616 - Track Number16 - Track Count24 - Date Modified2006-07-28T08:24:00Z - Date Added2009-10-03T14:59:06Z - Bit Rate192 - Sample Rate44100 - Normalization11 - Persistent ID214D8ED35233B383 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Charlie%20Parker_Dizzy%20Gillespie/Bird%20And%20Diz/16%20Relaxin'%20With%20Lee%20%5BFalse%20Start%5D.m4a - File Folder Count4 - Library Folder Count1 - - 6078 - - Track ID6078 - NameRelaxin' With Lee [Breakdown Take] - ArtistCharlie Parker/Dizzy Gillespie - AlbumBird And Diz - GenreJazz - KindAAC audio file - Size642433 - Total Time27467 - Track Number17 - Track Count24 - Date Modified2006-07-28T08:24:06Z - Date Added2009-10-03T14:59:07Z - Bit Rate192 - Sample Rate44100 - Normalization547 - Persistent ID49D1309E71550468 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Charlie%20Parker_Dizzy%20Gillespie/Bird%20And%20Diz/17%20Relaxin'%20With%20Lee%20%5BBreakdown%20Take%5D.m4a - File Folder Count4 - Library Folder Count1 - - 6080 - - Track ID6080 - NameLeap Frog [Breakdown Take] - ArtistCharlie Parker/Dizzy Gillespie - AlbumBird And Diz - GenreJazz - KindAAC audio file - Size695037 - Total Time28675 - Track Number18 - Track Count24 - Date Modified2006-07-28T08:24:10Z - Date Added2009-10-03T14:59:07Z - Bit Rate192 - Sample Rate44100 - Normalization595 - Persistent IDCAA8D040BF8A4C30 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Charlie%20Parker_Dizzy%20Gillespie/Bird%20And%20Diz/18%20Leap%20Frog%20%5BBreakdown%20Take%5D.m4a - File Folder Count4 - Library Folder Count1 - - 6082 - - Track ID6082 - NameLeap Frog [Breakdown Take] - ArtistCharlie Parker/Dizzy Gillespie - AlbumBird And Diz - GenreJazz - KindAAC audio file - Size477066 - Total Time17668 - Track Number19 - Track Count24 - Date Modified2006-07-28T08:24:14Z - Date Added2009-10-03T14:59:07Z - Bit Rate192 - Sample Rate44100 - Normalization1442 - Persistent IDAE486BE9DC4CC0B8 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Charlie%20Parker_Dizzy%20Gillespie/Bird%20And%20Diz/19%20Leap%20Frog%20%5BBreakdown%20Take%5D.m4a - File Folder Count4 - Library Folder Count1 - - 6084 - - Track ID6084 - NameLeap Frog [Breakdown Take] - ArtistCharlie Parker/Dizzy Gillespie - AlbumBird And Diz - GenreJazz - KindAAC audio file - Size1053644 - Total Time41678 - Track Number20 - Track Count24 - Date Modified2006-07-28T08:24:22Z - Date Added2009-10-03T14:59:07Z - Bit Rate192 - Sample Rate44100 - Normalization1371 - Persistent IDAF6B856720E96AA8 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Charlie%20Parker_Dizzy%20Gillespie/Bird%20And%20Diz/20%20Leap%20Frog%20%5BBreakdown%20Take%5D.m4a - File Folder Count4 - Library Folder Count1 - - 6086 - - Track ID6086 - NameLeap Frog [Breakdown Take] - ArtistCharlie Parker/Dizzy Gillespie - AlbumBird And Diz - GenreJazz - KindAAC audio file - Size509344 - Total Time19015 - Track Number21 - Track Count24 - Date Modified2006-07-28T08:24:26Z - Date Added2009-10-03T14:59:07Z - Bit Rate192 - Sample Rate44100 - Normalization1379 - Persistent ID7C9334F328BCAFC2 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Charlie%20Parker_Dizzy%20Gillespie/Bird%20And%20Diz/21%20Leap%20Frog%20%5BBreakdown%20Take%5D.m4a - File Folder Count4 - Library Folder Count1 - - 6088 - - Track ID6088 - NameLeap Frog [Breakdown Take] - ArtistCharlie Parker/Dizzy Gillespie - AlbumBird And Diz - GenreJazz - KindAAC audio file - Size565115 - Total Time21337 - Track Number22 - Track Count24 - Date Modified2006-07-28T08:24:30Z - Date Added2009-10-03T14:59:07Z - Bit Rate192 - Sample Rate44100 - Normalization1901 - Persistent IDC2FECD562E82F37B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Charlie%20Parker_Dizzy%20Gillespie/Bird%20And%20Diz/22%20Leap%20Frog%20%5BBreakdown%20Take%5D.m4a - File Folder Count4 - Library Folder Count1 - - 6090 - - Track ID6090 - NameLeap Frog [Breakdown Take] - ArtistCharlie Parker/Dizzy Gillespie - AlbumBird And Diz - GenreJazz - KindAAC audio file - Size413269 - Total Time15021 - Track Number23 - Track Count24 - Date Modified2006-07-28T08:24:32Z - Date Added2009-10-03T14:59:07Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3435930039 - Play Date UTC2012-11-16T11:30:39Z - Normalization1295 - Persistent IDC5474DA3A7E0D695 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Charlie%20Parker_Dizzy%20Gillespie/Bird%20And%20Diz/23%20Leap%20Frog%20%5BBreakdown%20Take%5D.m4a - File Folder Count4 - Library Folder Count1 - - 6092 - - Track ID6092 - NameLeap Frog [Breakdown Take] - ArtistCharlie Parker/Dizzy Gillespie - AlbumBird And Diz - GenreJazz - KindAAC audio file - Size1037031 - Total Time41353 - Track Number24 - Track Count24 - Date Modified2006-07-28T08:24:40Z - Date Added2009-10-03T14:59:07Z - Bit Rate192 - Sample Rate44100 - Normalization1240 - Persistent ID69EF02337A75171D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Charlie%20Parker_Dizzy%20Gillespie/Bird%20And%20Diz/24%20Leap%20Frog%20%5BBreakdown%20Take%5D.m4a - File Folder Count4 - Library Folder Count1 - - 6094 - - Track ID6094 - NameDuet Solo Dancers - ArtistCharles Mingus - ComposerCharles Mingus - AlbumThe Black Saint And The Sinner Lady - GenreJazz - KindAAC audio file - Size6387761 - Total Time236000 - Disc Number1 - Disc Count1 - Track Number2 - Track Count4 - Year1963 - Date Modified2007-11-26T07:07:36Z - Date Added2009-10-03T14:59:08Z - Bit Rate213 - Sample Rate44100 - Normalization1258 - Artwork Count1 - Sort AlbumBlack Saint And The Sinner Lady - Persistent ID8DB0217AF2430B71 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Charles%20Mingus/The%20Black%20Saint%20And%20The%20Sinner%20Lady/02%20Duet%20Solo%20Dancers.m4a - File Folder Count4 - Library Folder Count1 - - 6096 - - Track ID6096 - NameGroup Dancers - ArtistCharles Mingus - ComposerCharles Mingus - AlbumThe Black Saint And The Sinner Lady - GenreJazz - KindAAC audio file - Size11732738 - Total Time443333 - Disc Number1 - Disc Count1 - Track Number3 - Track Count4 - Year1963 - Date Modified2007-11-26T07:09:50Z - Date Added2009-10-03T14:59:08Z - Bit Rate209 - Sample Rate44100 - Normalization1319 - Artwork Count1 - Sort AlbumBlack Saint And The Sinner Lady - Persistent ID8A3E3054D0BD7C49 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Charles%20Mingus/The%20Black%20Saint%20And%20The%20Sinner%20Lady/03%20Group%20Dancers.m4a - File Folder Count4 - Library Folder Count1 - - 6098 - - Track ID6098 - NameSolo Dancer - ArtistCharles Mingus - ComposerCharles Mingus - AlbumThe Black Saint And The Sinner Lady - GenreJazz - KindAAC audio file - Size10703801 - Total Time399333 - Disc Number1 - Disc Count1 - Track Number1 - Track Count4 - Year1963 - Date Modified2007-11-26T07:12:04Z - Date Added2009-10-03T14:59:08Z - Bit Rate212 - Sample Rate44100 - Normalization1562 - Artwork Count1 - Sort AlbumBlack Saint And The Sinner Lady - Persistent ID352B686C65082749 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Charles%20Mingus/The%20Black%20Saint%20And%20The%20Sinner%20Lady/01%20Solo%20Dancer.m4a - File Folder Count4 - Library Folder Count1 - - 6100 - - Track ID6100 - NameTrio And Group Dancers - ArtistCharles Mingus - ComposerCharles Mingus - AlbumThe Black Saint And The Sinner Lady - GenreJazz - KindAAC audio file - Size29660549 - Total Time1118400 - Disc Number1 - Disc Count1 - Track Number4 - Track Count4 - Year1963 - Date Modified2007-11-26T07:17:38Z - Date Added2009-10-03T14:59:08Z - Bit Rate210 - Sample Rate44100 - Normalization1105 - Artwork Count1 - Sort AlbumBlack Saint And The Sinner Lady - Persistent ID3F371788FD0FEB90 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Charles%20Mingus/The%20Black%20Saint%20And%20The%20Sinner%20Lady/04%20Trio%20And%20Group%20Dancers.m4a - File Folder Count4 - Library Folder Count1 - - 6102 - - Track ID6102 - NameWednesday Night Prayer Meeting - ArtistCharles Mingus - ComposerCharles Mingus - AlbumBlues & Roots - GenreJazz - KindAAC audio file - Size8256656 - Total Time342539 - Disc Number1 - Disc Count1 - Track Number1 - Track Count6 - Year1959 - Date Modified2006-07-30T15:06:02Z - Date Added2009-10-03T14:59:08Z - Bit Rate192 - Sample Rate44100 - Normalization1438 - Artwork Count1 - Persistent IDB992ED86407E92D4 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Charles%20Mingus/Blues%20&%20Roots/01%20Wednesday%20Night%20Prayer%20Meeting.m4a - File Folder Count4 - Library Folder Count1 - - 6104 - - Track ID6104 - NameCryin' Blues - ArtistCharles Mingus - ComposerCharles Mingus - AlbumBlues & Roots - GenreJazz - KindAAC audio file - Size7274694 - Total Time302345 - Disc Number1 - Disc Count1 - Track Number2 - Track Count6 - Year1959 - Date Modified2006-07-30T15:06:04Z - Date Added2009-10-03T14:59:08Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Persistent ID0C1FE70F9B956482 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Charles%20Mingus/Blues%20&%20Roots/02%20Cryin'%20Blues.m4a - File Folder Count4 - Library Folder Count1 - - 6106 - - Track ID6106 - NameMoanin' - ArtistCharles Mingus - ComposerCharles Mingus - AlbumBlues & Roots - GenreJazz - KindAAC audio file - Size11628894 - Total Time482114 - Disc Number1 - Disc Count1 - Track Number3 - Track Count6 - Year1959 - Date Modified2006-07-30T15:06:04Z - Date Added2009-10-03T14:59:08Z - Bit Rate192 - Sample Rate44100 - Normalization1258 - Artwork Count1 - Persistent ID4E151545C1B7ABB5 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Charles%20Mingus/Blues%20&%20Roots/03%20Moanin'.m4a - File Folder Count4 - Library Folder Count1 - - 6108 - - Track ID6108 - NameTensions - ArtistCharles Mingus - ComposerCharles Mingus - AlbumBlues & Roots - GenreJazz - KindAAC audio file - Size9403271 - Total Time390442 - Disc Number1 - Disc Count1 - Track Number4 - Track Count6 - Year1959 - Date Modified2006-07-30T15:06:04Z - Date Added2009-10-03T14:59:08Z - Bit Rate192 - Sample Rate44100 - Normalization944 - Artwork Count1 - Persistent IDCCB28CBFD1B38B14 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Charles%20Mingus/Blues%20&%20Roots/04%20Tensions.m4a - File Folder Count4 - Library Folder Count1 - - 6110 - - Track ID6110 - NameMy Jelly Roll Soul - ArtistCharles Mingus - ComposerCharles Mingus - AlbumBlues & Roots - GenreJazz - KindAAC audio file - Size9886450 - Total Time409946 - Disc Number1 - Disc Count1 - Track Number5 - Track Count6 - Year1959 - Date Modified2006-07-30T15:06:04Z - Date Added2009-10-03T14:59:09Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Persistent IDC2C02BDBA8992EBF - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Charles%20Mingus/Blues%20&%20Roots/05%20My%20Jelly%20Roll%20Soul.m4a - File Folder Count4 - Library Folder Count1 - - 6112 - - Track ID6112 - NameE's Flat Ah's Flat Too - ArtistCharles Mingus - ComposerCharles Mingus - AlbumBlues & Roots - GenreJazz - KindAAC audio file - Size9760413 - Total Time402005 - Disc Number1 - Disc Count1 - Track Number6 - Track Count6 - Year1959 - Date Modified2006-07-30T15:06:04Z - Date Added2009-10-03T14:59:09Z - Bit Rate192 - Sample Rate44100 - Normalization1258 - Artwork Count1 - Persistent ID5C34CAA73D272288 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Charles%20Mingus/Blues%20&%20Roots/06%20E's%20Flat%20Ah's%20Flat%20Too.m4a - File Folder Count4 - Library Folder Count1 - - 6114 - - Track ID6114 - NameBruckner: Symphony #6 In A, WAB 106 - 2. Adagio: Sehr Feierlich - ArtistCesare Cantieri; Süddeutsche Philharmonie - ComposerBruckner, Anton (1824 - 1896) - AlbumBruckner: Symphony #6 - GenreClassical - KindAAC audio file - Size22845048 - Total Time943657 - Disc Number1 - Disc Count1 - Track Number2 - Track Count4 - Year1994 - Date Modified2006-08-08T06:50:44Z - Date Added2009-10-03T14:59:09Z - Bit Rate192 - Sample Rate44100 - Normalization227 - Artwork Count1 - Persistent ID626772FBCE953FDA - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Cesare%20Cantieri%3B%20Su%CC%88ddeutsche%20Philharmonie/Bruckner_%20Symphony%20%236/02%20Bruckner_%20Symphony%20%236%20In%20A,%20WAB%20106%20-%202.%20Adagio_%20Sehr%20Feierlich.m4a - File Folder Count4 - Library Folder Count1 - - 6116 - - Track ID6116 - NameBruckner: Symphony #6 In A, WAB 106 - 3. Scherzo: Ruhig Bewegt, Etwas Gemessen - ArtistCesare Cantieri; Süddeutsche Philharmonie - ComposerBruckner, Anton (1824 - 1896) - AlbumBruckner: Symphony #6 - GenreClassical - KindAAC audio file - Size11829960 - Total Time488476 - Disc Number1 - Disc Count1 - Track Number3 - Track Count4 - Year1994 - Date Modified2006-08-08T06:50:44Z - Date Added2009-10-03T14:59:09Z - Bit Rate192 - Sample Rate44100 - Normalization1113 - Artwork Count1 - Persistent ID571A888C6E77D3C5 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Cesare%20Cantieri%3B%20Su%CC%88ddeutsche%20Philharmonie/Bruckner_%20Symphony%20%236/03%20Bruckner_%20Symphony%20%236%20In%20A,%20WAB%20106%20-%203.%20Scherzo_%20Ruhig%20Bewegt,%20Etwas%20Gemessen.m4a - File Folder Count4 - Library Folder Count1 - - 6118 - - Track ID6118 - NameBruckner: Symphony #6 In A, WAB 106 - 4. Finale: Bewegt, Doch Night Zu Schnell - ArtistCesare Cantieri; Süddeutsche Philharmonie - ComposerBruckner, Anton (1824 - 1896) - AlbumBruckner: Symphony #6 - GenreClassical - KindAAC audio file - Size20151645 - Total Time832619 - Disc Number1 - Disc Count1 - Track Number4 - Track Count4 - Year1994 - Date Modified2006-08-08T06:50:42Z - Date Added2009-10-03T14:59:09Z - Bit Rate192 - Sample Rate44100 - Normalization980 - Artwork Count1 - Persistent IDD7A2FF5365CC110D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Cesare%20Cantieri%3B%20Su%CC%88ddeutsche%20Philharmonie/Bruckner_%20Symphony%20%236/04%20Bruckner_%20Symphony%20%236%20In%20A,%20WAB%20106%20-%204.%20Finale_%20Bewegt,%20Doch%20Night%20Zu%20Schnell.m4a - File Folder Count4 - Library Folder Count1 - - 6120 - - Track ID6120 - NameDuctu Angelico - ArtistCeltic Wanderers - ComposerUnknown (Trinity College, Dublin 15th Century) - AlbumThe Pilgrim's Road - GenreFolk - KindAAC audio file - Size3379877 - Total Time136044 - Disc Number1 - Disc Count1 - Track Number1 - Track Count15 - Year2001 - Date Modified2006-07-31T04:28:00Z - Date Added2009-10-03T14:59:10Z - Bit Rate192 - Sample Rate44100 - Normalization131 - Artwork Count1 - Sort AlbumPilgrim's Road - Persistent IDA60A5E2CFA3B5140 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Celtic%20Wanderers/The%20Pilgrim's%20Road/01%20Ductu%20Angelico.m4a - File Folder Count4 - Library Folder Count1 - - 6122 - - Track ID6122 - NameProsa: Dilecte Deo Galle - ArtistCeltic Wanderers - ComposerNolker Balbulus (10th Century) - AlbumThe Pilgrim's Road - GenreFolk - KindAAC audio file - Size7047638 - Total Time288552 - Disc Number1 - Disc Count1 - Track Number2 - Track Count15 - Year2001 - Date Modified2006-07-31T04:28:02Z - Date Added2009-10-03T14:59:10Z - Bit Rate192 - Sample Rate44100 - Normalization104 - Artwork Count1 - Sort AlbumPilgrim's Road - Persistent ID1BFDC1429898F039 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Celtic%20Wanderers/The%20Pilgrim's%20Road/02%20Prosa_%20Dilecte%20Deo%20Galle.m4a - File Folder Count4 - Library Folder Count1 - - 6124 - - Track ID6124 - NameDuctia Angelorum - ArtistCeltic Wanderers - ComposerUnknown (Trinity College, Dublin 15th Century) - AlbumThe Pilgrim's Road - GenreFolk - KindAAC audio file - Size5985607 - Total Time244527 - Disc Number1 - Disc Count1 - Track Number3 - Track Count15 - Year2001 - Date Modified2006-07-31T04:28:02Z - Date Added2009-10-03T14:59:10Z - Bit Rate192 - Sample Rate44100 - Normalization405 - Artwork Count1 - Sort AlbumPilgrim's Road - Persistent ID0C0AC0D1FF212DA6 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Celtic%20Wanderers/The%20Pilgrim's%20Road/03%20Ductia%20Angelorum.m4a - File Folder Count4 - Library Folder Count1 - - 6126 - - Track ID6126 - NameO mirum admirandum - ArtistCeltic Wanderers - ComposerHildegard von Bingen (1098-1179) - AlbumThe Pilgrim's Road - GenreFolk - KindAAC audio file - Size3845155 - Total Time155409 - Disc Number1 - Disc Count1 - Track Number4 - Track Count15 - Year2001 - Date Modified2006-07-31T04:28:02Z - Date Added2009-10-03T14:59:10Z - Bit Rate192 - Sample Rate44100 - Normalization318 - Artwork Count1 - Sort AlbumPilgrim's Road - Persistent IDAAC6C1F2886BB411 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Celtic%20Wanderers/The%20Pilgrim's%20Road/04%20O%20mirum%20admirandum.m4a - File Folder Count4 - Library Folder Count1 - - 6128 - - Track ID6128 - NameChristi Martir - ArtistCeltic Wanderers - ComposerVespers: Antiphons for St. Kilian (12th Century) - AlbumThe Pilgrim's Road - GenreFolk - KindAAC audio file - Size2709604 - Total Time108133 - Disc Number1 - Disc Count1 - Track Number5 - Track Count15 - Year2001 - Date Modified2006-07-31T04:28:02Z - Date Added2009-10-03T14:59:11Z - Bit Rate192 - Sample Rate44100 - Normalization169 - Artwork Count1 - Sort AlbumPilgrim's Road - Persistent ID7B3C74719F2E680F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Celtic%20Wanderers/The%20Pilgrim's%20Road/05%20Christi%20Martir.m4a - File Folder Count4 - Library Folder Count1 - - 6130 - - Track ID6130 - NameChorus resonet - ArtistCeltic Wanderers - ComposerVespers: Antiphons for St. Kilian (12th Century) - AlbumThe Pilgrim's Road - GenreFolk - KindAAC audio file - Size1681143 - Total Time65316 - Disc Number1 - Disc Count1 - Track Number6 - Track Count15 - Year2001 - Date Modified2006-07-31T04:28:02Z - Date Added2009-10-03T14:59:11Z - Bit Rate192 - Sample Rate44100 - Normalization794 - Artwork Count1 - Sort AlbumPilgrim's Road - Persistent IDF9F832EC4FD4F5F3 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Celtic%20Wanderers/The%20Pilgrim's%20Road/06%20Chorus%20resonet.m4a - File Folder Count4 - Library Folder Count1 - - 6132 - - Track ID6132 - NameIter beatitudinis beatus Kylianus - ArtistCeltic Wanderers - ComposerSix Antiphons from Vigil for the Feast of St. Kilian (Vienna, Schottenstift, Kilian-Fragment 12th Century) - AlbumThe Pilgrim's Road - GenreFolk - KindAAC audio file - Size1765307 - Total Time68822 - Disc Number1 - Disc Count1 - Track Number7 - Track Count15 - Year2001 - Date Modified2006-07-31T04:28:02Z - Date Added2009-10-03T14:59:12Z - Bit Rate192 - Sample Rate44100 - Normalization217 - Artwork Count1 - Sort AlbumPilgrim's Road - Persistent IDCD9D16006EE6A9B7 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Celtic%20Wanderers/The%20Pilgrim's%20Road/07%20Iter%20beatitudinis%20beatus%20Kylianus.m4a - File Folder Count4 - Library Folder Count1 - - 6134 - - Track ID6134 - NameSocios assumpsit itineris - ArtistCeltic Wanderers - ComposerSix Antiphons from Vigil for the Feast of St. Kilian (Vienna, Schottenstift, Kilian-Fragment 12th Century) - AlbumThe Pilgrim's Road - GenreFolk - KindAAC audio file - Size2001288 - Total Time78644 - Disc Number1 - Disc Count1 - Track Number8 - Track Count15 - Year2001 - Date Modified2006-07-31T04:28:02Z - Date Added2009-10-03T14:59:12Z - Bit Rate192 - Sample Rate44100 - Normalization18 - Artwork Count1 - Sort AlbumPilgrim's Road - Persistent IDF41BB3913C921498 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Celtic%20Wanderers/The%20Pilgrim's%20Road/08%20Socios%20assumpsit%20itineris.m4a - File Folder Count4 - Library Folder Count1 - - 6136 - - Track ID6136 - NamePergentes simul mirificati - ArtistCeltic Wanderers - ComposerSix Antiphons from Vigil for the Feast of St. Kilian (Vienna, Schottenstift, Kilian-Fragment 12th Century) - AlbumThe Pilgrim's Road - GenreFolk - KindAAC audio file - Size1614733 - Total Time62553 - Disc Number1 - Disc Count1 - Track Number9 - Track Count15 - Year2001 - Date Modified2006-07-31T04:28:02Z - Date Added2009-10-03T14:59:12Z - Bit Rate192 - Sample Rate44100 - Normalization197 - Artwork Count1 - Sort AlbumPilgrim's Road - Persistent IDF7831BDBE6761C26 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Celtic%20Wanderers/The%20Pilgrim's%20Road/09%20Pergentes%20simul%20mirificati.m4a - File Folder Count4 - Library Folder Count1 - - 6138 - - Track ID6138 - NameGloriati sunt in domino - ArtistCeltic Wanderers - ComposerSix Antiphons from Vigil for the Feast of St. Kilian (Vienna, Schottenstift, Kilian-Fragment 12th Century) - AlbumThe Pilgrim's Road - GenreFolk - KindAAC audio file - Size2169298 - Total Time85633 - Disc Number1 - Disc Count1 - Track Number10 - Track Count15 - Year2001 - Date Modified2006-07-31T04:28:02Z - Date Added2009-10-03T14:59:12Z - Bit Rate192 - Sample Rate44100 - Normalization229 - Artwork Count1 - Sort AlbumPilgrim's Road - Persistent IDA6D15C5A636EC3DF - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Celtic%20Wanderers/The%20Pilgrim's%20Road/10%20Gloriati%20sunt%20in%20domino.m4a - File Folder Count4 - Library Folder Count1 - - 6140 - - Track ID6140 - NameNomen tuum sanctum est domine - ArtistCeltic Wanderers - ComposerSix Antiphons from Vigil for the Feast of St. Kilian (Vienna, Schottenstift, Kilian-Fragment 12th Century) - AlbumThe Pilgrim's Road - GenreFolk - KindAAC audio file - Size2101176 - Total Time82800 - Disc Number1 - Disc Count1 - Track Number11 - Track Count15 - Year2001 - Date Modified2006-07-31T04:28:02Z - Date Added2009-10-03T14:59:13Z - Bit Rate192 - Sample Rate44100 - Normalization136 - Artwork Count1 - Sort AlbumPilgrim's Road - Persistent IDB75B263DF77D11C5 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Celtic%20Wanderers/The%20Pilgrim's%20Road/11%20Nomen%20tuum%20sanctum%20est%20domine.m4a - File Folder Count4 - Library Folder Count1 - - 6142 - - Track ID6142 - NamePredicando verbum dei - ArtistCeltic Wanderers - ComposerSix Antiphons from Vigil for the Feast of St. Kilian (Vienna, Schottenstift, Kilian-Fragment 12th Century) - AlbumThe Pilgrim's Road - GenreFolk - KindAAC audio file - Size1269615 - Total Time48179 - Disc Number1 - Disc Count1 - Track Number12 - Track Count15 - Year2001 - Date Modified2006-07-31T04:28:02Z - Date Added2009-10-03T14:59:13Z - Bit Rate192 - Sample Rate44100 - Normalization131 - Artwork Count1 - Sort AlbumPilgrim's Road - Persistent ID7FEB602525EC78E1 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Celtic%20Wanderers/The%20Pilgrim's%20Road/12%20Predicando%20verbum%20dei.m4a - File Folder Count4 - Library Folder Count1 - - 6144 - - Track ID6144 - NamePuella Christi - ArtistCeltic Wanderers - ComposerUnknown (Vienna, Schottenstift Brigid-Fragment 12th Century) - AlbumThe Pilgrim's Road - GenreFolk - KindAAC audio file - Size10650665 - Total Time437439 - Disc Number1 - Disc Count1 - Track Number13 - Track Count15 - Year2001 - Date Modified2006-07-31T04:28:02Z - Date Added2009-10-03T14:59:13Z - Bit Rate192 - Sample Rate44100 - Normalization635 - Artwork Count1 - Sort AlbumPilgrim's Road - Persistent ID72313AF38FB98E06 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Celtic%20Wanderers/The%20Pilgrim's%20Road/13%20Puella%20Christi.m4a - File Folder Count4 - Library Folder Count1 - - 6146 - - Track ID6146 - NamePlanctus Cygni - ArtistCeltic Wanderers - ComposerUnknown (Paris Bibliotheque Natoinal, MS. Latin 887) - AlbumThe Pilgrim's Road - GenreFolk - KindAAC audio file - Size5762941 - Total Time235263 - Disc Number1 - Disc Count1 - Track Number14 - Track Count15 - Year2001 - Date Modified2006-07-31T04:28:02Z - Date Added2009-10-03T14:59:13Z - Bit Rate192 - Sample Rate44100 - Normalization111 - Artwork Count1 - Sort AlbumPilgrim's Road - Persistent IDC63EE97E1A0CD064 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Celtic%20Wanderers/The%20Pilgrim's%20Road/14%20Planctus%20Cygni.m4a - File Folder Count4 - Library Folder Count1 - - 6148 - - Track ID6148 - NameSamson dux fortissime - ArtistCeltic Wanderers - ComposerSaint Columbanus (c. 1300) - AlbumThe Pilgrim's Road - GenreFolk - KindAAC audio file - Size34267268 - Total Time1413629 - Disc Number1 - Disc Count1 - Track Number15 - Track Count15 - Year2001 - Date Modified2006-07-31T04:28:06Z - Date Added2009-10-03T14:59:14Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Sort AlbumPilgrim's Road - Persistent ID76D051908C133E86 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Celtic%20Wanderers/The%20Pilgrim's%20Road/15%20Samson%20dux%20fortissime.m4a - File Folder Count4 - Library Folder Count1 - - 6150 - - Track ID6150 - NameKeyboard Sonata in C Major (K. 159, L. 104) (Instrumental) - ArtistBéla Fleck - Album ArtistBéla Fleck - ComposerDomenico Scarlatti (1685-1757) - AlbumPerpetual Motion - GenreClassical - KindMPEG audio file - Size4304914 - Total Time135288 - Disc Number1 - Disc Count1 - Track Number1 - Track Count20 - Year2001 - Date Modified2009-06-19T12:47:00Z - Date Added2009-10-03T14:59:14Z - Bit Rate252 - Sample Rate44100 - CommentsAmazon.com Song ID: 203928786 - Play Count2 - Play Date3427119013 - Play Date UTC2012-08-06T12:00:13Z - Skip Count1 - Skip Date2014-05-29T15:56:54Z - Artwork Count1 - Persistent ID8C97337E74C7C6DA - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Be%CC%81la%20Fleck/Perpetual%20Motion/01%20Keyboard%20Sonata%20in%20C%20Major%20(K.%20159,%20L.%20104)%20(Instrumental).mp3 - File Folder Count4 - Library Folder Count1 - - 6152 - - Track ID6152 - NameTwo-Part Invention No. 13 (BWV 784) (Instrumental) - ArtistBéla Fleck - Album ArtistBéla Fleck - ComposerJohann Sebastian Bach (1685-1750) - AlbumPerpetual Motion - GenreClassical - KindMPEG audio file - Size2896244 - Total Time92656 - Disc Number1 - Disc Count1 - Track Number2 - Track Count20 - Year2001 - Date Modified2009-06-19T12:47:49Z - Date Added2009-10-03T14:59:14Z - Bit Rate246 - Sample Rate44100 - CommentsAmazon.com Song ID: 203928784 - Play Count1 - Play Date3338010824 - Play Date UTC2009-10-10T03:43:44Z - Artwork Count1 - Persistent ID22B651E180880ACF - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Be%CC%81la%20Fleck/Perpetual%20Motion/02%20Two-Part%20Invention%20No.%2013%20(BWV%20784)%20(Instrumental).mp3 - File Folder Count4 - Library Folder Count1 - - 6154 - - Track ID6154 - NameDoctor Gradus ad Parnassum from Children's Corner (Instrumental) - ArtistBéla Fleck - Album ArtistBéla Fleck - ComposerClaude Debussy - AlbumPerpetual Motion - GenreClassical - KindMPEG audio file - Size4605065 - Total Time146651 - Disc Number1 - Disc Count1 - Track Number3 - Track Count20 - Year2001 - Date Modified2009-06-19T12:49:02Z - Date Added2009-10-03T14:59:14Z - Bit Rate249 - Sample Rate44100 - CommentsAmazon.com Song ID: 203928777 - Play Count1 - Play Date3338010971 - Play Date UTC2009-10-10T03:46:11Z - Artwork Count1 - Persistent IDDA6640EA0F9FA8BF - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Be%CC%81la%20Fleck/Perpetual%20Motion/03%20Doctor%20Gradus%20ad%20Parnassum%20from%20Children's%20Corner%20(Instrumental).mp3 - File Folder Count4 - Library Folder Count1 - - 6156 - - Track ID6156 - NameMazurka in F-sharp Minor, Op. 59, No. 3 (Instrumental) - ArtistBéla Fleck - Album ArtistBéla Fleck - ComposerFryderyk Chopin - AlbumPerpetual Motion - GenreClassical - KindMPEG audio file - Size6858766 - Total Time218671 - Disc Number1 - Disc Count1 - Track Number4 - Track Count20 - Year2001 - Date Modified2009-06-19T12:50:49Z - Date Added2009-10-03T14:59:14Z - Bit Rate249 - Sample Rate44100 - CommentsAmazon.com Song ID: 203928780 - Play Count1 - Play Date3338011190 - Play Date UTC2009-10-10T03:49:50Z - Artwork Count1 - Persistent IDB575EF6FECC0CB39 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Be%CC%81la%20Fleck/Perpetual%20Motion/04%20Mazurka%20in%20F-sharp%20Minor,%20Op.%2059,%20No.%203%20(Instrumental).mp3 - File Folder Count4 - Library Folder Count1 - - 6158 - - Track ID6158 - NamePrélude from Partita No. 3 for Solo Violin (BWV 1006) (Instrumental) - ArtistBéla Fleck - Album ArtistBéla Fleck - ComposerJohann Sebastian Bach (1685-1750) - AlbumPerpetual Motion - GenreClassical - KindMPEG audio file - Size7050925 - Total Time226063 - Disc Number1 - Disc Count1 - Track Number5 - Track Count20 - Year2001 - Date Modified2009-06-19T12:52:40Z - Date Added2009-10-03T14:59:15Z - Bit Rate248 - Sample Rate44100 - CommentsAmazon.com Song ID: 203928804 - Play Count1 - Play Date3338011415 - Play Date UTC2009-10-10T03:53:35Z - Artwork Count1 - Persistent IDCBF3869F8EBE64D9 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Be%CC%81la%20Fleck/Perpetual%20Motion/05%20Pre%CC%81lude%20from%20Partita%20No.%203%20for%20Solo%20Violin%20(BWV%201006)%20(Instrumental).mp3 - File Folder Count4 - Library Folder Count1 - - 6160 - - Track ID6160 - NameEtude in C-sharp minor, Op. 10, No. 4 (Instrumental) - ArtistBéla Fleck - Album ArtistBéla Fleck - ComposerFryderyk Chopin - AlbumPerpetual Motion - GenreClassical - KindMPEG audio file - Size4325562 - Total Time137168 - Disc Number1 - Disc Count1 - Track Number6 - Track Count20 - Year2001 - Date Modified2009-06-19T12:53:34Z - Date Added2009-10-03T14:59:15Z - Bit Rate250 - Sample Rate44100 - CommentsAmazon.com Song ID: 203928778 - Play Count1 - Play Date3338011553 - Play Date UTC2009-10-10T03:55:53Z - Artwork Count1 - Persistent ID0626694CADFCDFE8 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Be%CC%81la%20Fleck/Perpetual%20Motion/06%20Etude%20in%20C-sharp%20minor,%20Op.%2010,%20No.%204%20(Instrumental).mp3 - File Folder Count4 - Library Folder Count1 - - 6162 - - Track ID6162 - NameMazurka in F-sharp minor, Op. 6, No. 1 (Instrumental) - ArtistBéla Fleck - Album ArtistBéla Fleck - ComposerFryderyk Chopin - AlbumPerpetual Motion - GenreClassical - KindMPEG audio file - Size4342298 - Total Time139520 - Disc Number1 - Disc Count1 - Track Number7 - Track Count20 - Year2001 - Date Modified2009-06-19T12:54:26Z - Date Added2009-10-03T14:59:15Z - Bit Rate246 - Sample Rate44100 - CommentsAmazon.com Song ID: 203928785 - Play Count1 - Play Date3338011692 - Play Date UTC2009-10-10T03:58:12Z - Artwork Count1 - Persistent ID75CBF3E34E6333E2 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Be%CC%81la%20Fleck/Perpetual%20Motion/07%20Mazurka%20in%20F-sharp%20minor,%20Op.%206,%20No.%201%20(Instrumental).mp3 - File Folder Count4 - Library Folder Count1 - - 6164 - - Track ID6164 - NameThree-Part Invention (Sinfonia) No. 10 (BWV 796) (Instrumental) - ArtistBéla Fleck - Album ArtistBéla Fleck - ComposerJohann Sebastian Bach (1685-1750) - AlbumPerpetual Motion - GenreClassical - KindMPEG audio file - Size1842322 - Total Time57756 - Disc Number1 - Disc Count1 - Track Number8 - Track Count20 - Year2001 - Date Modified2009-06-19T12:54:48Z - Date Added2009-10-03T14:59:15Z - Bit Rate250 - Sample Rate44100 - CommentsAmazon.com Song ID: 203928782 - Play Count3 - Play Date3425547498 - Play Date UTC2012-07-19T07:28:18Z - Artwork Count1 - Persistent ID5BD96AA88A302026 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Be%CC%81la%20Fleck/Perpetual%20Motion/08%20Three-Part%20Invention%20(Sinfonia)%20No.%2010%20(BWV%20796)%20(Instrumental).mp3 - File Folder Count4 - Library Folder Count1 - - 6166 - - Track ID6166 - NameMelody in E-flat (Instrumental) - ArtistBéla Fleck - Album ArtistBéla Fleck - ComposerPeter Tchaikovsky (1840-1893) - AlbumPerpetual Motion - GenreClassical - KindMPEG audio file - Size5890573 - Total Time189152 - Disc Number1 - Disc Count1 - Track Number9 - Track Count20 - Year2001 - Date Modified2009-06-19T12:55:59Z - Date Added2009-10-03T14:59:15Z - Bit Rate247 - Sample Rate44100 - CommentsAmazon.com Song ID: 203928788 - Play Count3 - Play Date3383147322 - Play Date UTC2011-03-16T13:38:42Z - Artwork Count1 - Persistent ID12CFB916F77625CE - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Be%CC%81la%20Fleck/Perpetual%20Motion/09%20Melody%20in%20E-flat%20(Instrumental).mp3 - File Folder Count4 - Library Folder Count1 - - 6168 - - Track ID6168 - NamePresto in G minor I after Bach from Five Studies for Piano arrangement of J.S. Bach: Finale from Solo Violin Sonata (BWV 1001) (Instrumental) - ArtistBéla Fleck - Album ArtistBéla Fleck - ComposerJohann Sebastian Bach (1685-1750) - AlbumPerpetual Motion - GenreClassical - KindMPEG audio file - Size3165242 - Total Time101851 - Disc Number1 - Disc Count1 - Track Number10 - Track Count20 - Year2001 - Date Modified2009-06-19T12:56:37Z - Date Added2009-10-03T14:59:15Z - Bit Rate245 - Sample Rate44100 - CommentsAmazon.com Song ID: 203928790 - Play Count3 - Play Date3425560197 - Play Date UTC2012-07-19T10:59:57Z - Artwork Count1 - Persistent ID9C74E9504B4ABE81 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Be%CC%81la%20Fleck/Perpetual%20Motion/10%20Presto%20in%20G%20minor%20I%20after%20Bach%20from%20Five%20Studies%20for%20Piano%20arrangement%20of%20J.S.%20Bach_%20Finale%20from%20Solo%20Violin%20Sonata%20(BWV%201001)%20(Instrumental).mp3 - File Folder Count4 - Library Folder Count1 - - 6170 - - Track ID6170 - NamePrélude from Suite for Unaccompanied Cello No. 1 (BWV 1007) (Instrumental) - ArtistBéla Fleck - Album ArtistBéla Fleck - ComposerJohann Sebastian Bach (1685-1750) - AlbumPerpetual Motion - GenreClassical - KindMPEG audio file - Size4183336 - Total Time134086 - Disc Number1 - Disc Count1 - Track Number11 - Track Count20 - Year2001 - Date Modified2009-06-19T12:57:28Z - Date Added2009-10-03T14:59:15Z - Bit Rate247 - Sample Rate44100 - CommentsAmazon.com Song ID: 203928776 - Play Count1 - Play Date3361691744 - Play Date UTC2010-07-11T05:45:44Z - Artwork Count1 - Persistent IDA5056EAF076EF9D0 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Be%CC%81la%20Fleck/Perpetual%20Motion/11%20Pre%CC%81lude%20from%20Suite%20for%20Unaccompanied%20Cello%20No.%201%20(BWV%201007)%20(Instrumental).mp3 - File Folder Count4 - Library Folder Count1 - - 6172 - - Track ID6172 - NameThree-Part Invention (Sinfonia) No. 15 (BWV 801) (Instrumental) - ArtistBéla Fleck - Album ArtistBéla Fleck - ComposerJohann Sebastian Bach (1685-1750) - AlbumPerpetual Motion - GenreClassical - KindMPEG audio file - Size2271430 - Total Time72359 - Disc Number1 - Disc Count1 - Track Number12 - Track Count20 - Year2001 - Date Modified2009-06-19T12:57:57Z - Date Added2009-10-03T14:59:16Z - Bit Rate247 - Sample Rate44100 - CommentsAmazon.com Song ID: 203928796 - Play Count1 - Play Date3361691816 - Play Date UTC2010-07-11T05:46:56Z - Artwork Count1 - Persistent IDB5DD51B7336F2573 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Be%CC%81la%20Fleck/Perpetual%20Motion/12%20Three-Part%20Invention%20(Sinfonia)%20No.%2015%20(BWV%20801)%20(Instrumental).mp3 - File Folder Count4 - Library Folder Count1 - - 6174 - - Track ID6174 - NameMoto Perpetuo, Op. 11, No. 2 (Instrumental) - ArtistBéla Fleck - Album ArtistBéla Fleck - ComposerNicoló Paganini (1782-1840) - AlbumPerpetual Motion - GenreClassical - KindMPEG audio file - Size6908110 - Total Time219036 - Disc Number1 - Disc Count1 - Track Number13 - Track Count20 - Year2001 - Date Modified2009-06-19T12:59:19Z - Date Added2009-10-03T14:59:16Z - Bit Rate251 - Sample Rate44100 - CommentsAmazon.com Song ID: 203928781 - Play Count1 - Play Date3361692035 - Play Date UTC2010-07-11T05:50:35Z - Artwork Count1 - Persistent IDB4992EBF6FB63AE5 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Be%CC%81la%20Fleck/Perpetual%20Motion/13%20Moto%20Perpetuo,%20Op.%2011,%20No.%202%20(Instrumental).mp3 - File Folder Count4 - Library Folder Count1 - - 6176 - - Track ID6176 - NameKeyboard Sonata in D minor (K. 213, L. 108) (Instrumental) - ArtistBéla Fleck - Album ArtistBéla Fleck - ComposerDomenico Scarlatti (1685-1757) - AlbumPerpetual Motion - GenreClassical - KindMPEG audio file - Size6046584 - Total Time192574 - Disc Number1 - Disc Count1 - Track Number14 - Track Count20 - Year2001 - Date Modified2009-06-19T13:00:48Z - Date Added2009-10-03T14:59:16Z - Bit Rate249 - Sample Rate44100 - CommentsAmazon.com Song ID: 203928792 - Play Count1 - Play Date3361692227 - Play Date UTC2010-07-11T05:53:47Z - Artwork Count1 - Persistent IDF23A6AF06A4B65AC - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Be%CC%81la%20Fleck/Perpetual%20Motion/14%20Keyboard%20Sonata%20in%20D%20minor%20(K.%20213,%20L.%20108)%20(Instrumental).mp3 - File Folder Count4 - Library Folder Count1 - - 6178 - - Track ID6178 - NameTwo-Part Invention No. 6 (BWV 777) (Instrumental) - ArtistBéla Fleck - Album ArtistBéla Fleck - ComposerJohann Sebastian Bach (1685-1750) - AlbumPerpetual Motion - GenreClassical - KindMPEG audio file - Size4688764 - Total Time148453 - Disc Number1 - Disc Count1 - Track Number15 - Track Count20 - Year2001 - Date Modified2009-06-19T13:01:48Z - Date Added2009-10-03T14:59:16Z - Bit Rate250 - Sample Rate44100 - CommentsAmazon.com Song ID: 203928794 - Artwork Count1 - Persistent ID0E78AC801B75BFC0 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Be%CC%81la%20Fleck/Perpetual%20Motion/15%20Two-Part%20Invention%20No.%206%20(BWV%20777)%20(Instrumental).mp3 - File Folder Count4 - Library Folder Count1 - - 6180 - - Track ID6180 - NameAdagio sostenuto from Piano Sonata No. 14 in C-sharp minor, Op. 27, No. 2 "Moonlight" (Instrumental) - ArtistBéla Fleck - Album ArtistBéla Fleck - ComposerLudwig Van Beethoven (1770-1827) - AlbumPerpetual Motion - GenreClassical - KindMPEG audio file - Size9474123 - Total Time302733 - Disc Number1 - Disc Count1 - Track Number16 - Track Count20 - Year2001 - Date Modified2009-06-19T13:03:46Z - Date Added2009-10-03T14:59:16Z - Bit Rate249 - Sample Rate44100 - CommentsAmazon.com Song ID: 203928779 - Artwork Count1 - Persistent ID22F4EF13F77D5559 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Be%CC%81la%20Fleck/Perpetual%20Motion/16%20Adagio%20sostenuto%20from%20Piano%20Sonata%20No.%2014%20in%20C-sharp%20minor,%20Op.%2027,%20No.%202%20_Moonlight_%20(Instrumental).mp3 - File Folder Count4 - Library Folder Count1 - - 6182 - - Track ID6182 - NameTwo-Part Invention No. 11 (BWV 782) (Instrumental) - ArtistBéla Fleck - Album ArtistBéla Fleck - ComposerJohann Sebastian Bach (1685-1750) - AlbumPerpetual Motion - GenreClassical - KindMPEG audio file - Size1698202 - Total Time55719 - Disc Number1 - Disc Count1 - Track Number17 - Track Count20 - Year2001 - Date Modified2009-06-19T13:04:09Z - Date Added2009-10-03T14:59:16Z - Bit Rate238 - Sample Rate44100 - CommentsAmazon.com Song ID: 203928800 - Artwork Count1 - Persistent ID4B226820A2D89841 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Be%CC%81la%20Fleck/Perpetual%20Motion/17%20Two-Part%20Invention%20No.%2011%20(BWV%20782)%20(Instrumental).mp3 - File Folder Count4 - Library Folder Count1 - - 6184 - - Track ID6184 - NameSeven Variations on "God Save the King" (Instrumental) - ArtistBéla Fleck - Album ArtistBéla Fleck - ComposerLudwig Van Beethoven (1770-1827) - AlbumPerpetual Motion - GenreClassical - KindMPEG audio file - Size17058182 - Total Time542981 - Disc Number1 - Disc Count1 - Track Number18 - Track Count20 - Year2001 - Date Modified2009-06-19T13:07:31Z - Date Added2009-10-03T14:59:17Z - Bit Rate250 - Sample Rate44100 - CommentsAmazon.com Song ID: 203928783 - Play Count2 - Play Date3484244185 - Play Date UTC2014-05-29T16:06:25Z - Artwork Count1 - Persistent ID7D5EC00D6AEA3245 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Be%CC%81la%20Fleck/Perpetual%20Motion/18%20Seven%20Variations%20on%20_God%20Save%20the%20King_%20(Instrumental).mp3 - File Folder Count4 - Library Folder Count1 - - 6186 - - Track ID6186 - NameThree-Part Invention (Sinfonia) No. 7 (BWV 793) (Instrumental) - ArtistBéla Fleck - Album ArtistBéla Fleck - ComposerJohann Sebastian Bach (1685-1750) - AlbumPerpetual Motion - GenreClassical - KindMPEG audio file - Size3658123 - Total Time117786 - Disc Number1 - Disc Count1 - Track Number19 - Track Count20 - Year2001 - Date Modified2009-06-19T13:08:15Z - Date Added2009-10-03T14:59:17Z - Bit Rate246 - Sample Rate44100 - CommentsAmazon.com Song ID: 203928787 - Play Count1 - Play Date3484298622 - Play Date UTC2014-05-30T07:13:42Z - Artwork Count1 - Persistent IDCAFEC0285F888D72 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Be%CC%81la%20Fleck/Perpetual%20Motion/19%20Three-Part%20Invention%20(Sinfonia)%20No.%207%20(BWV%20793)%20(Instrumental).mp3 - File Folder Count4 - Library Folder Count1 - - 6188 - - Track ID6188 - NameMoto Perpetuo, Op. 11, No. 2 (Bluegrass version) (Bluegrass) - ArtistBéla Fleck - Album ArtistBéla Fleck - ComposerNicoló Paganini (1782-1840) - AlbumPerpetual Motion - GenreClassical - KindMPEG audio file - Size4993103 - Total Time158955 - Disc Number1 - Disc Count1 - Track Number20 - Track Count20 - Year2001 - Date Modified2009-06-19T13:09:15Z - Date Added2009-10-03T14:59:17Z - Bit Rate249 - Sample Rate44100 - CommentsAmazon.com Song ID: 203928798 - Play Count1 - Play Date3484298804 - Play Date UTC2014-05-30T07:16:44Z - Artwork Count1 - Persistent ID72EF6508EBA24AB4 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Be%CC%81la%20Fleck/Perpetual%20Motion/20%20Moto%20Perpetuo,%20Op.%2011,%20No.%202%20(Bluegrass%20version)%20(Bluegrass).mp3 - File Folder Count4 - Library Folder Count1 - - 6190 - - Track ID6190 - NameFoxglove - ArtistBruce Cockburn - ComposerBruce Cockburn - AlbumSpeechless - GenreFolk - KindAAC audio file - Size2211677 - Total Time87200 - Track Number1 - Track Count15 - Year2005 - Date Modified2007-08-09T04:28:34Z - Date Added2009-10-03T14:59:17Z - Bit Rate192 - Sample Rate44100 - Play Count3 - Play Date3391353005 - Play Date UTC2011-06-19T13:00:05Z - Normalization1012 - Artwork Count1 - Persistent ID25B7A99894598865 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bruce%20Cockburn/Speechless/01%20Foxglove.m4a - File Folder Count4 - Library Folder Count1 - - 6192 - - Track ID6192 - NameTrain In The Rain - ArtistBruce Cockburn - ComposerBruce Cockburn - AlbumSpeechless - GenreFolk - KindAAC audio file - Size5493432 - Total Time224106 - Track Number2 - Track Count15 - Year2005 - Date Modified2007-08-09T04:29:11Z - Date Added2009-10-03T14:59:17Z - Bit Rate192 - Sample Rate44100 - Play Count4 - Play Date3397495452 - Play Date UTC2011-08-29T15:14:12Z - Normalization1533 - Artwork Count1 - Persistent ID601821263FF5B2AB - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bruce%20Cockburn/Speechless/02%20Train%20In%20The%20Rain.m4a - File Folder Count4 - Library Folder Count1 - - 6194 - - Track ID6194 - NameWater Into Wine - ArtistBruce Cockburn - ComposerBruce Cockburn - AlbumSpeechless - GenreFolk - KindAAC audio file - Size8327678 - Total Time331520 - Track Number3 - Track Count15 - Year2005 - Date Modified2007-08-09T04:30:04Z - Date Added2009-10-03T14:59:17Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3391353561 - Play Date UTC2011-06-19T13:09:21Z - Normalization1259 - Artwork Count1 - Persistent ID25E88D5E952D7E17 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bruce%20Cockburn/Speechless/03%20Water%20Into%20Wine.m4a - File Folder Count4 - Library Folder Count1 - - 6196 - - Track ID6196 - NameElegy - ArtistBruce Cockburn - ComposerBruce Cockburn - AlbumSpeechless - GenreFolk - KindAAC audio file - Size6037376 - Total Time246293 - Track Number4 - Track Count15 - Year2005 - Date Modified2007-08-09T04:30:45Z - Date Added2009-10-03T14:59:17Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3391353807 - Play Date UTC2011-06-19T13:13:27Z - Normalization1256 - Artwork Count1 - Persistent IDF800E2C1732DFB77 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bruce%20Cockburn/Speechless/04%20Elegy.m4a - File Folder Count4 - Library Folder Count1 - - 6198 - - Track ID6198 - NameMistress Of Storms - ArtistBruce Cockburn - ComposerBruce Cockburn - AlbumSpeechless - GenreFolk - KindAAC audio file - Size9391588 - Total Time369840 - Track Number5 - Track Count15 - Year2005 - Date Modified2007-08-09T04:31:41Z - Date Added2009-10-03T14:59:18Z - Bit Rate192 - Sample Rate44100 - Play Count3 - Play Date3399467716 - Play Date UTC2011-09-21T11:05:16Z - Normalization951 - Artwork Count1 - Persistent IDD24D4D7A3B2A866B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bruce%20Cockburn/Speechless/05%20Mistress%20Of%20Storms.m4a - File Folder Count4 - Library Folder Count1 - - 6200 - - Track ID6200 - NameRouler Sa Bosse - ArtistBruce Cockburn - ComposerBruce Cockburn - AlbumSpeechless - GenreFolk - KindAAC audio file - Size5620767 - Total Time227613 - Track Number6 - Track Count15 - Year2005 - Date Modified2007-08-09T04:32:21Z - Date Added2009-10-03T14:59:18Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3391354405 - Play Date UTC2011-06-19T13:23:25Z - Normalization1219 - Artwork Count1 - Persistent ID8C1A2EF320E16E45 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bruce%20Cockburn/Speechless/06%20Rouler%20Sa%20Bosse.m4a - File Folder Count4 - Library Folder Count1 - - 6202 - - Track ID6202 - NameSalt, Sun And Time - ArtistBruce Cockburn - ComposerBruce Cockburn - AlbumSpeechless - GenreFolk - KindAAC audio file - Size4709319 - Total Time190440 - Track Number7 - Track Count15 - Year2005 - Date Modified2007-08-09T04:32:52Z - Date Added2009-10-03T14:59:18Z - Bit Rate192 - Sample Rate44100 - Play Count3 - Play Date3397572987 - Play Date UTC2011-08-30T12:46:27Z - Normalization1256 - Artwork Count1 - Persistent IDE1FED9680CE76B40 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bruce%20Cockburn/Speechless/07%20Salt,%20Sun%20And%20Time.m4a - File Folder Count4 - Library Folder Count1 - - 6204 - - Track ID6204 - NameIslands In A Black Sky - ArtistBruce Cockburn - ComposerBruce Cockburn - AlbumSpeechless - GenreFolk - KindAAC audio file - Size11352529 - Total Time460173 - Track Number8 - Track Count15 - Year2005 - Date Modified2007-08-09T04:34:08Z - Date Added2009-10-03T14:59:18Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3391355055 - Play Date UTC2011-06-19T13:34:15Z - Normalization1256 - Artwork Count1 - Persistent ID190B8C334F53F995 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bruce%20Cockburn/Speechless/08%20Islands%20In%20A%20Black%20Sky.m4a - File Folder Count4 - Library Folder Count1 - - 6206 - - Track ID6206 - NameRise And Fall - ArtistBruce Cockburn - ComposerBruce Cockburn - AlbumSpeechless - GenreFolk - KindAAC audio file - Size12407906 - Total Time497173 - Track Number9 - Track Count15 - Year2005 - Date Modified2007-08-09T04:35:27Z - Date Added2009-10-03T14:59:18Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3391355552 - Play Date UTC2011-06-19T13:42:32Z - Normalization1256 - Artwork Count1 - Persistent ID678B1059CE559BA5 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bruce%20Cockburn/Speechless/09%20Rise%20And%20Fall.m4a - File Folder Count4 - Library Folder Count1 - - 6208 - - Track ID6208 - NameSunrise On The Mississippi - ArtistBruce Cockburn - ComposerBruce Cockburn - AlbumSpeechless - GenreFolk - KindAAC audio file - Size4447553 - Total Time180880 - Track Number10 - Track Count15 - Year2005 - Date Modified2007-08-09T04:35:57Z - Date Added2009-10-03T14:59:18Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3391357433 - Play Date UTC2011-06-19T14:13:53Z - Normalization1207 - Artwork Count1 - Persistent IDA850B02D14BBAE14 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bruce%20Cockburn/Speechless/10%20Sunrise%20On%20The%20Mississippi.m4a - File Folder Count4 - Library Folder Count1 - - 6210 - - Track ID6210 - NameKing Kong Goes To Tallahassee - ArtistBruce Cockburn - ComposerBruce Cockburn - AlbumSpeechless - GenreFolk - KindAAC audio file - Size4547067 - Total Time184946 - Track Number11 - Track Count15 - Year2005 - Date Modified2007-08-09T04:36:27Z - Date Added2009-10-03T14:59:18Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3337670197 - Play Date UTC2009-10-06T05:06:37Z - Normalization1256 - Artwork Count1 - Persistent IDA5B1CB394D95E598 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bruce%20Cockburn/Speechless/11%20King%20Kong%20Goes%20To%20Tallahassee.m4a - File Folder Count4 - Library Folder Count1 - - 6212 - - Track ID6212 - NameWhen It's Gone It's Gone - ArtistBruce Cockburn - ComposerBruce Cockburn - AlbumSpeechless - GenreFolk - KindAAC audio file - Size6359358 - Total Time259200 - Track Number12 - Track Count15 - Year2005 - Date Modified2007-08-09T04:37:08Z - Date Added2009-10-03T14:59:18Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3337670457 - Play Date UTC2009-10-06T05:10:57Z - Normalization1256 - Artwork Count1 - Persistent ID8CF2EBD8824AAA5C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bruce%20Cockburn/Speechless/12%20When%20It's%20Gone%20It's%20Gone.m4a - File Folder Count4 - Library Folder Count1 - - 6214 - - Track ID6214 - NameDeep Lake - ArtistBruce Cockburn - ComposerBruce Cockburn - AlbumSpeechless - GenreFolk - KindAAC audio file - Size10401805 - Total Time408000 - Track Number13 - Track Count15 - Year2005 - Date Modified2007-08-09T04:38:06Z - Date Added2009-10-03T14:59:19Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3337670865 - Play Date UTC2009-10-06T05:17:45Z - Normalization1215 - Artwork Count1 - Persistent ID7FF968D018274D15 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bruce%20Cockburn/Speechless/13%20Deep%20Lake.m4a - File Folder Count4 - Library Folder Count1 - - 6216 - - Track ID6216 - NameThe End Of All Rivers - ArtistBruce Cockburn - ComposerBruce Cockburn - AlbumSpeechless - GenreFolk - KindAAC audio file - Size8686386 - Total Time355306 - Track Number14 - Track Count15 - Year2005 - Date Modified2007-08-09T04:38:52Z - Date Added2009-10-03T14:59:19Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3337671220 - Play Date UTC2009-10-06T05:23:40Z - Normalization1458 - Artwork Count1 - Sort NameEnd Of All Rivers - Persistent ID82CE507A3F9B499D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bruce%20Cockburn/Speechless/14%20The%20End%20Of%20All%20Rivers.m4a - File Folder Count4 - Library Folder Count1 - - 6218 - - Track ID6218 - NameSunwheel Dance - ArtistBruce Cockburn - ComposerBruce Cockburn - AlbumSpeechless - GenreFolk - KindAAC audio file - Size2673984 - Total Time106266 - Track Number15 - Track Count15 - Year2005 - Date Modified2007-08-09T04:39:07Z - Date Added2009-10-03T14:59:19Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3337671326 - Play Date UTC2009-10-06T05:25:26Z - Normalization1143 - Artwork Count1 - Persistent ID891B9C2A1050D598 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bruce%20Cockburn/Speechless/15%20Sunwheel%20Dance.m4a - File Folder Count4 - Library Folder Count1 - - 6220 - - Track ID6220 - NameSky Saw (2004 Digital Remaster) - ArtistBrian Eno - Album ArtistBrian Eno - ComposerBrian Eno - AlbumAnother Green World - GenrePop - KindMPEG audio file - Size6275765 - Total Time207725 - Disc Number1 - Disc Count1 - Track Number1 - Track Count14 - Year1975 - Date Modified2008-11-23T17:14:24Z - Date Added2009-10-03T14:59:19Z - Bit Rate240 - Sample Rate44100 - CommentsAmazon.com Song ID: 202025285 - Artwork Count1 - Persistent IDAA1416A81503E73C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Brian%20Eno/Another%20Green%20World/01%20Sky%20Saw%20(2004%20Digital%20Remaster).mp3 - File Folder Count4 - Library Folder Count1 - - 6222 - - Track ID6222 - NameOver Fire Island (2004 Digital Remaster) - ArtistBrian Eno - Album ArtistBrian Eno - ComposerBrian Eno - AlbumAnother Green World - GenrePop - KindMPEG audio file - Size3167406 - Total Time111255 - Disc Number1 - Disc Count1 - Track Number2 - Track Count14 - Year1975 - Date Modified2008-11-23T17:15:10Z - Date Added2009-10-03T14:59:19Z - Bit Rate224 - Sample Rate44100 - CommentsAmazon.com Song ID: 202025286 - Artwork Count1 - Persistent ID6A712BEFF6951FC8 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Brian%20Eno/Another%20Green%20World/02%20Over%20Fire%20Island%20(2004%20Digital%20Remaster).mp3 - File Folder Count4 - Library Folder Count1 - - 6224 - - Track ID6224 - NameSt Elmo's Fire (2004 Digital Remaster) - ArtistBrian Eno - Album ArtistBrian Eno - ComposerBrian Eno - AlbumAnother Green World - GenrePop - KindMPEG audio file - Size5302243 - Total Time182465 - Disc Number1 - Disc Count1 - Track Number3 - Track Count14 - Year1975 - Date Modified2008-11-23T17:16:57Z - Date Added2009-10-03T14:59:19Z - Bit Rate230 - Sample Rate44100 - CommentsAmazon.com Song ID: 202025287 - Artwork Count1 - Persistent IDBAE7A09D52B4EA71 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Brian%20Eno/Another%20Green%20World/03%20St%20Elmo's%20Fire%20(2004%20Digital%20Remaster).mp3 - File Folder Count4 - Library Folder Count1 - - 6226 - - Track ID6226 - NameIn Dark Trees (2004 Digital Remaster) - ArtistBrian Eno - Album ArtistBrian Eno - ComposerBrian Eno - AlbumAnother Green World - GenrePop - KindMPEG audio file - Size4425561 - Total Time151614 - Disc Number1 - Disc Count1 - Track Number4 - Track Count14 - Year1975 - Date Modified2008-11-23T17:18:36Z - Date Added2009-10-03T14:59:19Z - Bit Rate231 - Sample Rate44100 - CommentsAmazon.com Song ID: 202025288 - Artwork Count1 - Persistent ID88695C732BBA8D60 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Brian%20Eno/Another%20Green%20World/04%20In%20Dark%20Trees%20(2004%20Digital%20Remaster).mp3 - File Folder Count4 - Library Folder Count1 - - 6228 - - Track ID6228 - NameThe Big Ship (2004 Digital Remaster) - ArtistBrian Eno - Album ArtistBrian Eno - ComposerBrian Eno - AlbumAnother Green World - GenrePop - KindMPEG audio file - Size5278796 - Total Time181995 - Disc Number1 - Disc Count1 - Track Number5 - Track Count14 - Year1975 - Date Modified2008-11-23T17:20:48Z - Date Added2009-10-03T14:59:20Z - Bit Rate230 - Sample Rate44100 - CommentsAmazon.com Song ID: 202025289 - Artwork Count1 - Sort NameBig Ship (2004 Digital Remaster) - Persistent ID501A703F9AB5D89C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Brian%20Eno/Another%20Green%20World/05%20The%20Big%20Ship%20(2004%20Digital%20Remaster).mp3 - File Folder Count4 - Library Folder Count1 - - 6230 - - Track ID6230 - NameI'll Come Running (2004 Digital Remaster) - ArtistBrian Eno - Album ArtistBrian Eno - ComposerBrian Eno - AlbumAnother Green World - GenrePop - KindMPEG audio file - Size6504834 - Total Time229877 - Disc Number1 - Disc Count1 - Track Number6 - Track Count14 - Year1975 - Date Modified2008-11-23T17:23:14Z - Date Added2009-10-03T14:59:20Z - Bit Rate225 - Sample Rate44100 - CommentsAmazon.com Song ID: 202025290 - Artwork Count1 - Persistent ID86E6313879D2CE2B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Brian%20Eno/Another%20Green%20World/06%20I'll%20Come%20Running%20(2004%20Digital%20Remaster).mp3 - File Folder Count4 - Library Folder Count1 - - 6232 - - Track ID6232 - NameAnother Green World (2004 Digital Remaster) - ArtistBrian Eno - Album ArtistBrian Eno - ComposerBrian Eno - AlbumAnother Green World - GenrePop - KindMPEG audio file - Size2912167 - Total Time101746 - Disc Number1 - Disc Count1 - Track Number7 - Track Count14 - Year1975 - Date Modified2008-11-23T17:24:17Z - Date Added2009-10-03T14:59:20Z - Bit Rate225 - Sample Rate44100 - CommentsAmazon.com Song ID: 202025291 - Play Count1 - Play Date3368624518 - Play Date UTC2010-09-29T11:31:58Z - Artwork Count1 - Persistent ID9995DAC9D90DB682 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Brian%20Eno/Another%20Green%20World/07%20Another%20Green%20World%20(2004%20Digital%20Remaster).mp3 - File Folder Count4 - Library Folder Count1 - - 6234 - - Track ID6234 - NameSombre Reptiles (2004 Digital Remaster) - ArtistBrian Eno - Album ArtistBrian Eno - ComposerBrian Eno - AlbumAnother Green World - GenrePop - KindMPEG audio file - Size3975217 - Total Time141087 - Disc Number1 - Disc Count1 - Track Number8 - Track Count14 - Year1975 - Date Modified2008-11-23T17:25:42Z - Date Added2009-10-03T14:59:20Z - Bit Rate223 - Sample Rate44100 - CommentsAmazon.com Song ID: 202025292 - Artwork Count1 - Persistent ID812C01F796178D11 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Brian%20Eno/Another%20Green%20World/08%20Sombre%20Reptiles%20(2004%20Digital%20Remaster).mp3 - File Folder Count4 - Library Folder Count1 - - 6236 - - Track ID6236 - NameLittle Fishes (2004 Digital Remaster) - ArtistBrian Eno - Album ArtistBrian Eno - ComposerBrian Eno - AlbumAnother Green World - GenrePop - KindMPEG audio file - Size2740403 - Total Time94641 - Disc Number1 - Disc Count1 - Track Number9 - Track Count14 - Year1975 - Date Modified2008-11-23T17:26:45Z - Date Added2009-10-03T14:59:20Z - Bit Rate228 - Sample Rate44100 - CommentsAmazon.com Song ID: 202025293 - Artwork Count1 - Persistent ID23C7683AC891BDE9 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Brian%20Eno/Another%20Green%20World/09%20Little%20Fishes%20(2004%20Digital%20Remaster).mp3 - File Folder Count4 - Library Folder Count1 - - 6238 - - Track ID6238 - NameGolden Hours (2004 Digital Remaster) - ArtistBrian Eno - Album ArtistBrian Eno - ComposerBrian Eno - AlbumAnother Green World - GenrePop - KindMPEG audio file - Size6888098 - Total Time240222 - Disc Number1 - Disc Count1 - Track Number10 - Track Count14 - Year1975 - Date Modified2008-11-23T17:29:30Z - Date Added2009-10-03T14:59:20Z - Bit Rate228 - Sample Rate44100 - CommentsAmazon.com Song ID: 202025294 - Artwork Count1 - Persistent ID47F792D9D4CAE895 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Brian%20Eno/Another%20Green%20World/10%20Golden%20Hours%20(2004%20Digital%20Remaster).mp3 - File Folder Count4 - Library Folder Count1 - - 6240 - - Track ID6240 - NameBecalmed (2004 Digital Remaster) - ArtistBrian Eno - Album ArtistBrian Eno - ComposerBrian Eno - AlbumAnother Green World - GenrePop - KindMPEG audio file - Size6571570 - Total Time236800 - Disc Number1 - Disc Count1 - Track Number11 - Track Count14 - Year1975 - Date Modified2008-11-23T17:31:38Z - Date Added2009-10-03T14:59:21Z - Bit Rate220 - Sample Rate44100 - CommentsAmazon.com Song ID: 202025295 - Artwork Count1 - Persistent IDB08B02D7A19F8026 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Brian%20Eno/Another%20Green%20World/11%20Becalmed%20(2004%20Digital%20Remaster).mp3 - File Folder Count4 - Library Folder Count1 - - 6242 - - Track ID6242 - NameZawinul/Lava (2004 Digital Remaster) - ArtistBrian Eno - Album ArtistBrian Eno - ComposerBrian Eno - AlbumAnother Green World - GenrePop - KindMPEG audio file - Size5110548 - Total Time180349 - Disc Number1 - Disc Count1 - Track Number12 - Track Count14 - Year1975 - Date Modified2008-11-23T17:33:20Z - Date Added2009-10-03T14:59:21Z - Bit Rate224 - Sample Rate44100 - CommentsAmazon.com Song ID: 202025296 - Artwork Count1 - Persistent ID429DED71B10741E1 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Brian%20Eno/Another%20Green%20World/12%20Zawinul_Lava%20(2004%20Digital%20Remaster).mp3 - File Folder Count4 - Library Folder Count1 - - 6244 - - Track ID6244 - NameEverything Merges With The Night (2004 Digital Remaster) - ArtistBrian Eno - Album ArtistBrian Eno - ComposerBrian Eno - AlbumAnother Green World - GenrePop - KindMPEG audio file - Size6876978 - Total Time239360 - Disc Number1 - Disc Count1 - Track Number13 - Track Count14 - Year1975 - Date Modified2008-11-23T17:35:41Z - Date Added2009-10-03T14:59:21Z - Bit Rate228 - Sample Rate44100 - CommentsAmazon.com Song ID: 202025297 - Artwork Count1 - Persistent ID9A7EC6DEE1AFA997 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Brian%20Eno/Another%20Green%20World/13%20Everything%20Merges%20With%20The%20Night%20(2004%20Digital%20Remaster).mp3 - File Folder Count4 - Library Folder Count1 - - 6246 - - Track ID6246 - NameSpirits Drifting (2004 Digital Remaster) - ArtistBrian Eno - Album ArtistBrian Eno - ComposerBrian Eno - AlbumAnother Green World - GenrePop - KindMPEG audio file - Size4311808 - Total Time156238 - Disc Number1 - Disc Count1 - Track Number14 - Track Count14 - Year1975 - Date Modified2008-11-23T17:37:12Z - Date Added2009-10-03T14:59:21Z - Bit Rate218 - Sample Rate44100 - CommentsAmazon.com Song ID: 202025298 - Artwork Count1 - Persistent IDCCBDF528F4CAD62B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Brian%20Eno/Another%20Green%20World/14%20Spirits%20Drifting%20(2004%20Digital%20Remaster).mp3 - File Folder Count4 - Library Folder Count1 - - 6248 - - Track ID6248 - Name1/1 - ArtistBrian Eno - ComposerBrian Eno, Robert Wyatt, Rhett Davies - AlbumAmbient 1 Music For Airports - GenreElectronica/Dance - KindAAC audio file - Size33148265 - Total Time1045093 - Disc Number1 - Disc Count1 - Track Number1 - Track Count4 - Year1978 - BPM192 - Date Modified2011-10-08T11:52:45Z - Date Added2009-10-03T14:59:21Z - Bit Rate256 - Sample Rate44100 - Play Count3 - Play Date3437810234 - Play Date UTC2012-12-08T05:47:14Z - Normalization601 - Persistent ID537E7A8B5E97B4F1 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Brian%20Eno/Ambient%201%20Music%20For%20Airports/01%201_1.m4a - File Folder Count4 - Library Folder Count1 - - 6250 - - Track ID6250 - Name1/2 - ArtistBrian Eno - ComposerBrian Eno, Robert Wyatt, Rhett Davies - AlbumAmbient 1 Music For Airports - GenreElectronica/Dance - KindAAC audio file - Size16748339 - Total Time534240 - Disc Number1 - Disc Count1 - Track Number2 - Track Count4 - Year1978 - BPM192 - Date Modified2011-10-08T11:52:47Z - Date Added2009-10-03T14:59:21Z - Bit Rate256 - Sample Rate44100 - Normalization383 - Persistent IDC3033392AD3C1198 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Brian%20Eno/Ambient%201%20Music%20For%20Airports/02%201_2.m4a - File Folder Count4 - Library Folder Count1 - - 6252 - - Track ID6252 - Name2/1 - ArtistBrian Eno - ComposerBrian Eno, Robert Wyatt, Rhett Davies - AlbumAmbient 1 Music For Airports - GenreElectronica/Dance - KindAAC audio file - Size22841242 - Total Time725533 - Disc Number1 - Disc Count1 - Track Number3 - Track Count4 - Year1978 - BPM192 - Date Modified2011-10-08T11:52:47Z - Date Added2009-10-03T14:59:22Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3428228381 - Play Date UTC2012-08-19T08:09:41Z - Normalization180 - Persistent IDD4F2637595023C3C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Brian%20Eno/Ambient%201%20Music%20For%20Airports/03%202_1.m4a - File Folder Count4 - Library Folder Count1 - - 6254 - - Track ID6254 - Name2/2 - ArtistBrian Eno - ComposerBrian Eno, Robert Wyatt, Rhett Davies - AlbumAmbient 1 Music For Airports - GenreElectronica/Dance - KindAAC audio file - Size18613276 - Total Time608760 - Disc Number1 - Disc Count1 - Track Number4 - Track Count4 - Year1978 - BPM192 - Date Modified2011-10-08T11:52:49Z - Date Added2009-10-03T14:59:22Z - Bit Rate256 - Sample Rate44100 - Normalization1204 - Persistent ID9EC691EC99FA300C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Brian%20Eno/Ambient%201%20Music%20For%20Airports/04%202_2.m4a - File Folder Count4 - Library Folder Count1 - - 6256 - - Track ID6256 - NameCinnan chiru kiliye - ArtistBombay sisters - AlbumBarathiyar songs - KindAAC audio file - Size7971024 - Total Time331904 - Track Number1 - Track Count12 - Date Modified2007-04-03T15:09:58Z - Date Added2009-10-03T14:59:23Z - Bit Rate192 - Sample Rate44100 - Normalization7512 - Artwork Count1 - Persistent IDE5530356B57EFEE6 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bombay%20sisters/Barathiyar%20songs/01%20Cinnan%20chiru%20kiliye.m4a - File Folder Count4 - Library Folder Count1 - - 6258 - - Track ID6258 - Namekayiley pullippathenne - ArtistBombay sisters - AlbumBarathiyar songs - KindAAC audio file - Size6871077 - Total Time286138 - Track Number2 - Track Count12 - Date Modified2007-04-03T15:10:00Z - Date Added2009-10-03T14:59:24Z - Bit Rate192 - Sample Rate44100 - Normalization7127 - Artwork Count1 - Persistent IDD44D0EFB8055BA1A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bombay%20sisters/Barathiyar%20songs/02%20kayiley%20pullippathenne.m4a - File Folder Count4 - Library Folder Count1 - - 6260 - - Track ID6260 - Nametheeratha velayattu pillai - ArtistBombay sisters - AlbumBarathiyar songs - KindAAC audio file - Size5415407 - Total Time225928 - Track Number3 - Track Count12 - Date Modified2007-04-03T15:10:00Z - Date Added2009-10-03T14:59:24Z - Bit Rate192 - Sample Rate44100 - Normalization6786 - Artwork Count1 - Persistent IDFE7ADF5DB499BF20 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bombay%20sisters/Barathiyar%20songs/03%20theeratha%20velayattu%20pillai.m4a - File Folder Count4 - Library Folder Count1 - - 6262 - - Track ID6262 - Namevellai thamarai - ArtistBombay sisters - AlbumBarathiyar songs - KindAAC audio file - Size7303554 - Total Time304249 - Track Number4 - Track Count12 - Date Modified2007-12-03T03:08:26Z - Date Added2009-10-03T14:59:24Z - Bit Rate192 - Sample Rate44100 - CommentsRaga: Abheri Tala: Adi - Normalization5119 - Artwork Count1 - Persistent ID89CC9E0C38814BC5 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bombay%20sisters/Barathiyar%20songs/04%20vellai%20thamarai.m4a - File Folder Count4 - Library Folder Count1 - - 6264 - - Track ID6264 - Nameenthayum thayum - ArtistBombay sisters - AlbumBarathiyar songs - KindAAC audio file - Size6274487 - Total Time261455 - Track Number5 - Track Count12 - Date Modified2007-04-03T15:10:00Z - Date Added2009-10-03T14:59:24Z - Bit Rate192 - Sample Rate44100 - Normalization7022 - Artwork Count1 - Persistent ID504CEDF79CBE7373 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bombay%20sisters/Barathiyar%20songs/05%20enthayum%20thayum.m4a - File Folder Count4 - Library Folder Count1 - - 6266 - - Track ID6266 - Nameparukkulle nalla nadu - ArtistBombay sisters - AlbumBarathiyar songs - KindAAC audio file - Size8499880 - Total Time353661 - Track Number6 - Track Count12 - Date Modified2007-04-03T15:10:02Z - Date Added2009-10-03T14:59:24Z - Bit Rate192 - Sample Rate44100 - Normalization5481 - Artwork Count1 - Persistent IDDE9F72F92F239B28 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bombay%20sisters/Barathiyar%20songs/06%20parukkulle%20nalla%20nadu.m4a - File Folder Count4 - Library Folder Count1 - - 6268 - - Track ID6268 - Nameethhanai kodi enbam - ArtistBombay sisters - AlbumBarathiyar songs - KindAAC audio file - Size6612039 - Total Time275596 - Track Number7 - Track Count12 - Date Modified2007-04-03T15:10:04Z - Date Added2009-10-03T14:59:24Z - Bit Rate192 - Sample Rate44100 - Normalization4521 - Artwork Count1 - Persistent IDB899C44D44E43241 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bombay%20sisters/Barathiyar%20songs/07%20ethhanai%20kodi%20enbam.m4a - File Folder Count4 - Library Folder Count1 - - 6270 - - Track ID6270 - Namethikku theriyatha katill - ArtistBombay sisters - AlbumBarathiyar songs - KindAAC audio file - Size9373954 - Total Time389559 - Track Number8 - Track Count12 - Date Modified2007-04-03T15:10:04Z - Date Added2009-10-03T14:59:24Z - Bit Rate192 - Sample Rate44100 - Skip Count1 - Skip Date2009-10-05T06:12:58Z - Normalization3926 - Artwork Count1 - Persistent IDC06F9D52046224C4 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bombay%20sisters/Barathiyar%20songs/08%20thikku%20theriyatha%20katill.m4a - File Folder Count4 - Library Folder Count1 - - 6272 - - Track ID6272 - Nameoli padaitha kannai - ArtistBombay sisters - AlbumBarathiyar songs - KindAAC audio file - Size5065866 - Total Time211509 - Track Number9 - Track Count12 - Date Modified2007-04-03T15:10:04Z - Date Added2009-10-03T14:59:24Z - Bit Rate192 - Sample Rate44100 - Normalization7896 - Artwork Count1 - Persistent IDA1E9C2EF456718BD - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bombay%20sisters/Barathiyar%20songs/09%20oli%20padaitha%20kannai.m4a - File Folder Count4 - Library Folder Count1 - - 6274 - - Track ID6274 - Namepayum oli nee yenakku - ArtistBombay sisters - AlbumBarathiyar songs - KindAAC audio file - Size8760523 - Total Time364342 - Track Number10 - Track Count12 - Date Modified2007-04-03T15:10:06Z - Date Added2009-10-03T14:59:24Z - Bit Rate192 - Sample Rate44100 - Normalization4542 - Artwork Count1 - Persistent IDBFFD86BFF77C02BA - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bombay%20sisters/Barathiyar%20songs/10%20payum%20oli%20nee%20yenakku.m4a - File Folder Count4 - Library Folder Count1 - - 6276 - - Track ID6276 - Namekakkai chiraginile - ArtistBombay sisters - AlbumBarathiyar songs - KindAAC audio file - Size5455480 - Total Time227600 - Track Number11 - Track Count12 - Date Modified2007-04-03T15:10:06Z - Date Added2009-10-03T14:59:25Z - Bit Rate192 - Sample Rate44100 - Normalization4996 - Artwork Count1 - Persistent ID3961DED97D0BF270 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bombay%20sisters/Barathiyar%20songs/11%20kakkai%20chiraginile.m4a - File Folder Count4 - Library Folder Count1 - - 6278 - - Track ID6278 - Nametheertha karayiniley - ArtistBombay sisters - AlbumBarathiyar songs - KindAAC audio file - Size7747010 - Total Time320642 - Track Number12 - Track Count12 - Date Modified2007-04-03T15:10:06Z - Date Added2009-10-03T14:59:25Z - Bit Rate192 - Sample Rate44100 - Normalization6497 - Artwork Count1 - Persistent IDCF0A596FB3DB386B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bombay%20sisters/Barathiyar%20songs/12%20theertha%20karayiniley.m4a - File Folder Count4 - Library Folder Count1 - - 6280 - - Track ID6280 - NameNatural Mystic - ArtistBob Marley & The Wailers - ComposerBob Marley - AlbumExodus - GenreReggae - KindAAC audio file - Size5033426 - Total Time207375 - Disc Number1 - Disc Count1 - Track Number1 - Track Count10 - Year1977 - Date Modified2006-08-13T06:30:38Z - Date Added2009-10-03T14:59:25Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3430644557 - Play Date UTC2012-09-16T07:19:17Z - Skip Count1 - Skip Date2014-06-06T04:00:54Z - Normalization1024 - Artwork Count1 - Persistent ID5E4D8BEA469BC436 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Marley%20&%20The%20Wailers/Exodus/01%20Natural%20Mystic.m4a - File Folder Count4 - Library Folder Count1 - - 6282 - - Track ID6282 - NameSo Much Things To Say - ArtistBob Marley & The Wailers - ComposerBob Marley - AlbumExodus - GenreReggae - KindAAC audio file - Size4565306 - Total Time187871 - Disc Number1 - Disc Count1 - Track Number2 - Track Count10 - Year1977 - Date Modified2006-08-13T06:30:36Z - Date Added2009-10-03T14:59:25Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3430644745 - Play Date UTC2012-09-16T07:22:25Z - Normalization1254 - Artwork Count1 - Persistent IDA89A9583E1A5C33D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Marley%20&%20The%20Wailers/Exodus/02%20So%20Much%20Things%20To%20Say.m4a - File Folder Count4 - Library Folder Count1 - - 6284 - - Track ID6284 - NameGuiltiness - ArtistBob Marley & The Wailers - ComposerBob Marley - AlbumExodus - GenreReggae - KindAAC audio file - Size4847094 - Total Time199620 - Disc Number1 - Disc Count1 - Track Number3 - Track Count10 - Year1977 - Date Modified2006-08-13T06:30:34Z - Date Added2009-10-03T14:59:25Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3430644944 - Play Date UTC2012-09-16T07:25:44Z - Normalization1148 - Artwork Count1 - Persistent ID3E6C6C272AFEE956 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Marley%20&%20The%20Wailers/Exodus/03%20Guiltiness.m4a - File Folder Count4 - Library Folder Count1 - - 6286 - - Track ID6286 - NameThe Heathen - ArtistBob Marley & The Wailers - ComposerBob Marley - AlbumExodus - GenreReggae - KindAAC audio file - Size3703715 - Total Time152019 - Disc Number1 - Disc Count1 - Track Number4 - Track Count10 - Year1977 - Date Modified2006-08-13T06:30:32Z - Date Added2009-10-03T14:59:25Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3430645096 - Play Date UTC2012-09-16T07:28:16Z - Normalization1077 - Artwork Count1 - Sort NameHeathen - Persistent IDB983E63FCF15B9A6 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Marley%20&%20The%20Wailers/Exodus/04%20The%20Heathen.m4a - File Folder Count4 - Library Folder Count1 - - 6288 - - Track ID6288 - NameExodus - ArtistBob Marley & The Wailers - ComposerBob Marley - AlbumExodus - GenreReggae - KindAAC audio file - Size11022570 - Total Time455434 - Disc Number1 - Disc Count1 - Track Number5 - Track Count10 - Year1977 - Date Modified2006-08-13T06:30:30Z - Date Added2009-10-03T14:59:25Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3430645553 - Play Date UTC2012-09-16T07:35:53Z - Normalization1230 - Artwork Count1 - Persistent ID40CB5C9240593F35 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Marley%20&%20The%20Wailers/Exodus/05%20Exodus.m4a - File Folder Count4 - Library Folder Count1 - - 6290 - - Track ID6290 - NameJamming - ArtistBob Marley & The Wailers - ComposerBob Marley - AlbumExodus - GenreReggae - KindAAC audio file - Size5123890 - Total Time211137 - Disc Number1 - Disc Count1 - Track Number6 - Track Count10 - Year1977 - Date Modified2006-08-13T06:30:24Z - Date Added2009-10-03T14:59:25Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3430645764 - Play Date UTC2012-09-16T07:39:24Z - Normalization1259 - Artwork Count1 - Persistent ID6C835FB2609791F5 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Marley%20&%20The%20Wailers/Exodus/06%20Jamming.m4a - File Folder Count4 - Library Folder Count1 - - 6292 - - Track ID6292 - NameWaiting In Vain - ArtistBob Marley & The Wailers - ComposerBob Marley - AlbumExodus - GenreReggae - KindAAC audio file - Size6164780 - Total Time255580 - Disc Number1 - Disc Count1 - Track Number7 - Track Count10 - Year1977 - Date Modified2006-08-13T06:30:22Z - Date Added2009-10-03T14:59:25Z - Bit Rate192 - Sample Rate44100 - Normalization1165 - Artwork Count1 - Persistent ID917CA51A6DC772EF - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Marley%20&%20The%20Wailers/Exodus/07%20Waiting%20In%20Vain.m4a - File Folder Count4 - Library Folder Count1 - - 6294 - - Track ID6294 - NameTurn Your Lights Down Low - ArtistBob Marley & The Wailers - ComposerBob Marley - AlbumExodus - GenreReggae - KindAAC audio file - Size5318605 - Total Time219241 - Disc Number1 - Disc Count1 - Track Number8 - Track Count10 - Year1977 - Date Modified2006-08-13T06:30:20Z - Date Added2009-10-03T14:59:26Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Persistent IDF2C28C3E8BEEC4BC - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Marley%20&%20The%20Wailers/Exodus/08%20Turn%20Your%20Lights%20Down%20Low.m4a - File Folder Count4 - Library Folder Count1 - - 6296 - - Track ID6296 - NameThree Little Birds - ArtistBob Marley & The Wailers - ComposerBob Marley - AlbumExodus - GenreReggae - KindAAC audio file - Size4378582 - Total Time180115 - Disc Number1 - Disc Count1 - Track Number9 - Track Count10 - Year1977 - Date Modified2006-08-13T06:30:18Z - Date Added2009-10-03T14:59:26Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Persistent IDDF015D3D4B3EEE41 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Marley%20&%20The%20Wailers/Exodus/09%20Three%20Little%20Birds.m4a - File Folder Count4 - Library Folder Count1 - - 6298 - - Track ID6298 - NameOne Love/People Get Ready - ArtistBob Marley & The Wailers - ComposerCurtis Mayfield - AlbumExodus - GenreReggae - KindAAC audio file - Size4158359 - Total Time171152 - Disc Number1 - Disc Count1 - Track Number10 - Track Count10 - Year1977 - Date Modified2006-08-13T06:30:16Z - Date Added2009-10-03T14:59:26Z - Bit Rate192 - Sample Rate44100 - Normalization1244 - Artwork Count1 - Persistent IDB075F63F11AA588A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Marley%20&%20The%20Wailers/Exodus/10%20One%20Love_People%20Get%20Ready.m4a - File Folder Count4 - Library Folder Count1 - - 6300 - - Track ID6300 - NameBlowin' In The Wind - ArtistBob Dylan - ComposerBob Dylan & B. Dylan/H. Thomas - AlbumThe Freewheelin' Bob Dylan - GenreFolk - KindAAC audio file - Size4109380 - Total Time169039 - Disc Number1 - Disc Count1 - Track Number1 - Track Count13 - Year1963 - Date Modified2006-08-07T15:40:02Z - Date Added2009-10-03T14:59:26Z - Bit Rate192 - Sample Rate44100 - Play Count3 - Play Date3457109046 - Play Date UTC2013-07-19T14:34:06Z - Normalization1642 - Artwork Count1 - Sort AlbumFreewheelin' Bob Dylan - Persistent IDE01EE6E6E4EE7994 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Dylan/The%20Freewheelin'%20Bob%20Dylan/01%20Blowin'%20In%20The%20Wind.m4a - File Folder Count4 - Library Folder Count1 - - 6302 - - Track ID6302 - NameGirl From The North Country - ArtistBob Dylan - ComposerBob Dylan & B. Dylan/H. Thomas - AlbumThe Freewheelin' Bob Dylan - GenreFolk - KindAAC audio file - Size4943507 - Total Time203126 - Disc Number1 - Disc Count1 - Track Number2 - Track Count13 - Year1963 - Date Modified2006-08-07T15:40:02Z - Date Added2009-10-03T14:59:26Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3390316681 - Play Date UTC2011-06-07T13:08:01Z - Skip Count1 - Skip Date2013-07-19T14:34:14Z - Normalization3038 - Artwork Count1 - Sort AlbumFreewheelin' Bob Dylan - Persistent ID42DFA732E1AD0BFC - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Dylan/The%20Freewheelin'%20Bob%20Dylan/02%20Girl%20From%20The%20North%20Country.m4a - File Folder Count4 - Library Folder Count1 - - 6304 - - Track ID6304 - NameMasters Of War - ArtistBob Dylan - ComposerBob Dylan & B. Dylan/H. Thomas - AlbumThe Freewheelin' Bob Dylan - GenreFolk - KindAAC audio file - Size6750068 - Total Time278220 - Disc Number1 - Disc Count1 - Track Number3 - Track Count13 - Year1963 - Date Modified2006-08-07T15:40:02Z - Date Added2009-10-03T14:59:26Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3390316965 - Play Date UTC2011-06-07T13:12:45Z - Normalization2642 - Artwork Count1 - Sort AlbumFreewheelin' Bob Dylan - Persistent ID8D8D3DA9DB5013C5 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Dylan/The%20Freewheelin'%20Bob%20Dylan/03%20Masters%20Of%20War.m4a - File Folder Count4 - Library Folder Count1 - - 6306 - - Track ID6306 - NameDown The Highway - ArtistBob Dylan - ComposerBob Dylan & B. Dylan/H. Thomas - AlbumThe Freewheelin' Bob Dylan - GenreFolk - KindAAC audio file - Size5158874 - Total Time212089 - Disc Number1 - Disc Count1 - Track Number4 - Track Count13 - Year1963 - Date Modified2006-08-07T15:40:02Z - Date Added2009-10-03T14:59:27Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3390317177 - Play Date UTC2011-06-07T13:16:17Z - Normalization1256 - Artwork Count1 - Sort AlbumFreewheelin' Bob Dylan - Persistent ID43D05AC5F35966EA - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Dylan/The%20Freewheelin'%20Bob%20Dylan/04%20Down%20The%20Highway.m4a - File Folder Count4 - Library Folder Count1 - - 6308 - - Track ID6308 - NameBob Dylan's Blues - ArtistBob Dylan - ComposerBob Dylan & B. Dylan/H. Thomas - AlbumThe Freewheelin' Bob Dylan - GenreFolk - KindAAC audio file - Size3629184 - Total Time148908 - Disc Number1 - Disc Count1 - Track Number5 - Track Count13 - Year1963 - Date Modified2006-08-07T15:40:02Z - Date Added2009-10-03T14:59:27Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3390317326 - Play Date UTC2011-06-07T13:18:46Z - Normalization2918 - Artwork Count1 - Sort AlbumFreewheelin' Bob Dylan - Persistent ID781D73E944C86632 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Dylan/The%20Freewheelin'%20Bob%20Dylan/05%20Bob%20Dylan's%20Blues.m4a - File Folder Count4 - Library Folder Count1 - - 6310 - - Track ID6310 - NameA Hard Rain's A-Gonna Fall - ArtistBob Dylan - ComposerBob Dylan & B. Dylan/H. Thomas - AlbumThe Freewheelin' Bob Dylan - GenreFolk - KindAAC audio file - Size10019774 - Total Time413336 - Disc Number1 - Disc Count1 - Track Number6 - Track Count13 - Year1963 - Date Modified2006-08-07T15:40:02Z - Date Added2009-10-03T14:59:27Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3481475918 - Play Date UTC2014-04-27T15:08:38Z - Normalization1795 - Artwork Count1 - Sort AlbumFreewheelin' Bob Dylan - Sort NameHard Rain's A-Gonna Fall - Persistent ID9631C07C66C9D0CF - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Dylan/The%20Freewheelin'%20Bob%20Dylan/06%20A%20Hard%20Rain's%20A-Gonna%20Fall.m4a - File Folder Count4 - Library Folder Count1 - - 6312 - - Track ID6312 - NameDon't Think Twice, It's All Right - ArtistBob Dylan - ComposerBob Dylan & B. Dylan/H. Thomas - AlbumThe Freewheelin' Bob Dylan - GenreFolk - KindAAC audio file - Size5372437 - Total Time220982 - Disc Number1 - Disc Count1 - Track Number7 - Track Count13 - Year1963 - Date Modified2006-08-07T15:40:02Z - Date Added2009-10-03T14:59:27Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3390317960 - Play Date UTC2011-06-07T13:29:20Z - Normalization1690 - Artwork Count1 - Sort AlbumFreewheelin' Bob Dylan - Persistent IDDBB9CA540F2429A6 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Dylan/The%20Freewheelin'%20Bob%20Dylan/07%20Don't%20Think%20Twice,%20It's%20All%20Right.m4a - File Folder Count4 - Library Folder Count1 - - 6314 - - Track ID6314 - NameBob Dylan's Dream - ArtistBob Dylan - ComposerBob Dylan & B. Dylan/H. Thomas - AlbumThe Freewheelin' Bob Dylan - GenreFolk - KindAAC audio file - Size7343234 - Total Time302763 - Disc Number1 - Disc Count1 - Track Number8 - Track Count13 - Year1963 - Date Modified2006-08-07T15:40:04Z - Date Added2009-10-03T14:59:27Z - Bit Rate192 - Sample Rate44100 - Normalization3091 - Artwork Count1 - Sort AlbumFreewheelin' Bob Dylan - Persistent IDCEC6BE2DF83BA224 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Dylan/The%20Freewheelin'%20Bob%20Dylan/08%20Bob%20Dylan's%20Dream.m4a - File Folder Count4 - Library Folder Count1 - - 6316 - - Track ID6316 - NameOxford Town - ArtistBob Dylan - ComposerBob Dylan & B. Dylan/H. Thomas - AlbumThe Freewheelin' Bob Dylan - GenreFolk - KindAAC audio file - Size2702710 - Total Time110339 - Disc Number1 - Disc Count1 - Track Number9 - Track Count13 - Year1963 - Date Modified2006-08-07T15:40:04Z - Date Added2009-10-03T14:59:27Z - Bit Rate192 - Sample Rate44100 - Normalization1256 - Artwork Count1 - Sort AlbumFreewheelin' Bob Dylan - Persistent IDA1BC38085724DB93 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Dylan/The%20Freewheelin'%20Bob%20Dylan/09%20Oxford%20Town.m4a - File Folder Count4 - Library Folder Count1 - - 6318 - - Track ID6318 - NameTalking World War III Blues - ArtistBob Dylan - ComposerBob Dylan & B. Dylan/H. Thomas - AlbumThe Freewheelin' Bob Dylan - GenreFolk - KindAAC audio file - Size9395467 - Total Time387539 - Disc Number1 - Disc Count1 - Track Number10 - Track Count13 - Year1963 - Date Modified2006-08-07T15:40:04Z - Date Added2009-10-03T14:59:27Z - Bit Rate192 - Sample Rate44100 - Normalization4041 - Artwork Count1 - Sort AlbumFreewheelin' Bob Dylan - Persistent IDA7D02A27CDE6F9A8 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Dylan/The%20Freewheelin'%20Bob%20Dylan/10%20Talking%20World%20War%20III%20Blues.m4a - File Folder Count4 - Library Folder Count1 - - 6320 - - Track ID6320 - NameCorrina, Corrina - ArtistBob Dylan - ComposerBob Dylan & B. Dylan/H. Thomas - AlbumThe Freewheelin' Bob Dylan - GenreFolk - KindAAC audio file - Size3993190 - Total Time164070 - Disc Number1 - Disc Count1 - Track Number11 - Track Count13 - Year1963 - Date Modified2006-08-07T15:40:04Z - Date Added2009-10-03T14:59:27Z - Bit Rate192 - Sample Rate44100 - Normalization2028 - Artwork Count1 - Sort AlbumFreewheelin' Bob Dylan - Persistent IDC116BDFA99567757 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Dylan/The%20Freewheelin'%20Bob%20Dylan/11%20Corrina,%20Corrina.m4a - File Folder Count4 - Library Folder Count1 - - 6322 - - Track ID6322 - NameHoney, Just Allow Me One More Chance - ArtistBob Dylan - ComposerBob Dylan & B. Dylan/H. Thomas - AlbumThe Freewheelin' Bob Dylan - GenreFolk - KindAAC audio file - Size2955301 - Total Time120858 - Disc Number1 - Disc Count1 - Track Number12 - Track Count13 - Year1963 - Date Modified2006-08-07T15:40:04Z - Date Added2009-10-03T14:59:27Z - Bit Rate192 - Sample Rate44100 - Normalization4896 - Artwork Count1 - Sort AlbumFreewheelin' Bob Dylan - Persistent ID91E2DA9234BBD685 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Dylan/The%20Freewheelin'%20Bob%20Dylan/12%20Honey,%20Just%20Allow%20Me%20One%20More%20Chance.m4a - File Folder Count4 - Library Folder Count1 - - 6324 - - Track ID6324 - NameI Shall Be Free - ArtistBob Dylan - ComposerBob Dylan & B. Dylan/H. Thomas - AlbumThe Freewheelin' Bob Dylan - GenreFolk - KindAAC audio file - Size6970611 - Total Time287484 - Disc Number1 - Disc Count1 - Track Number13 - Track Count13 - Year1963 - Date Modified2006-08-07T15:40:04Z - Date Added2009-10-03T14:59:28Z - Bit Rate192 - Sample Rate44100 - Normalization4250 - Artwork Count1 - Sort AlbumFreewheelin' Bob Dylan - Persistent ID71DC047E956926B2 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Dylan/The%20Freewheelin'%20Bob%20Dylan/13%20I%20Shall%20Be%20Free.m4a - File Folder Count4 - Library Folder Count1 - - 6326 - - Track ID6326 - NameTweedle Dee & Tweedle Dum - ArtistBob Dylan - ComposerBob Dylan - AlbumLove & Theft - GenreFolk - KindAAC audio file - Size6902248 - Total Time286532 - Disc Number1 - Disc Count1 - Track Number1 - Track Count12 - Year2001 - Date Modified2006-08-07T08:13:24Z - Date Added2009-10-03T14:59:28Z - Bit Rate192 - Sample Rate44100 - Normalization2794 - Artwork Count1 - Persistent ID9971445C015FEFBE - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Dylan/Love%20&%20Theft/01%20Tweedle%20Dee%20&%20Tweedle%20Dum.m4a - File Folder Count4 - Library Folder Count1 - - 6328 - - Track ID6328 - NameMississippi - ArtistBob Dylan - ComposerBob Dylan - AlbumLove & Theft - GenreFolk - KindAAC audio file - Size7742530 - Total Time321153 - Disc Number1 - Disc Count1 - Track Number2 - Track Count12 - Year2001 - Date Modified2006-08-07T08:13:26Z - Date Added2009-10-03T14:59:28Z - Bit Rate192 - Sample Rate44100 - Normalization3260 - Artwork Count1 - Persistent ID9B0FD4467A0472DE - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Dylan/Love%20&%20Theft/02%20Mississippi.m4a - File Folder Count4 - Library Folder Count1 - - 6330 - - Track ID6330 - NameSummer Days - ArtistBob Dylan - ComposerBob Dylan - AlbumLove & Theft - GenreFolk - KindAAC audio file - Size7057003 - Total Time292802 - Disc Number1 - Disc Count1 - Track Number3 - Track Count12 - Year2001 - Date Modified2006-08-07T08:13:26Z - Date Added2009-10-03T14:59:28Z - Bit Rate192 - Sample Rate44100 - Normalization3211 - Artwork Count1 - Persistent ID01F5EC5187A9E677 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Dylan/Love%20&%20Theft/03%20Summer%20Days.m4a - File Folder Count4 - Library Folder Count1 - - 6332 - - Track ID6332 - NameBye & Bye - ArtistBob Dylan - ComposerBob Dylan - AlbumLove & Theft - GenreFolk - KindAAC audio file - Size4734902 - Total Time196346 - Disc Number1 - Disc Count1 - Track Number4 - Track Count12 - Year2001 - Date Modified2006-08-07T08:13:26Z - Date Added2009-10-03T14:59:28Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Persistent IDDB00BD9A1B258CDE - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Dylan/Love%20&%20Theft/04%20Bye%20&%20Bye.m4a - File Folder Count4 - Library Folder Count1 - - 6334 - - Track ID6334 - NameLonesome Day Blues - ArtistBob Dylan - ComposerBob Dylan - AlbumLove & Theft - GenreFolk - KindAAC audio file - Size8807197 - Total Time365132 - Disc Number1 - Disc Count1 - Track Number5 - Track Count12 - Year2001 - Date Modified2006-08-07T08:13:26Z - Date Added2009-10-03T14:59:28Z - Bit Rate192 - Sample Rate44100 - Normalization5418 - Artwork Count1 - Persistent ID8FE8B842239C1E99 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Dylan/Love%20&%20Theft/05%20Lonesome%20Day%20Blues.m4a - File Folder Count4 - Library Folder Count1 - - 6336 - - Track ID6336 - NameFloater - ArtistBob Dylan - ComposerBob Dylan - AlbumLove & Theft - GenreFolk - KindAAC audio file - Size7220591 - Total Time299582 - Disc Number1 - Disc Count1 - Track Number6 - Track Count12 - Year2001 - Date Modified2006-08-07T08:13:26Z - Date Added2009-10-03T14:59:28Z - Bit Rate192 - Sample Rate44100 - Normalization1972 - Artwork Count1 - Persistent IDFE0362CF07C75798 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Dylan/Love%20&%20Theft/06%20Floater.m4a - File Folder Count4 - Library Folder Count1 - - 6338 - - Track ID6338 - NameHigh Water - ArtistBob Dylan - ComposerBob Dylan - AlbumLove & Theft - GenreFolk - KindAAC audio file - Size5883624 - Total Time244829 - Disc Number1 - Disc Count1 - Track Number7 - Track Count12 - Year2001 - Date Modified2006-08-07T08:13:26Z - Date Added2009-10-03T14:59:28Z - Bit Rate192 - Sample Rate44100 - Normalization2282 - Artwork Count1 - Persistent ID903A71EEB1B13AEA - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Dylan/Love%20&%20Theft/07%20High%20Water.m4a - File Folder Count4 - Library Folder Count1 - - 6340 - - Track ID6340 - NameMoonlight - ArtistBob Dylan - ComposerBob Dylan - AlbumLove & Theft - GenreFolk - KindAAC audio file - Size4898947 - Total Time203173 - Disc Number1 - Disc Count1 - Track Number8 - Track Count12 - Year2001 - Date Modified2006-08-07T08:13:26Z - Date Added2009-10-03T14:59:28Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Persistent ID395F6A4BEAE3E921 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Dylan/Love%20&%20Theft/08%20Moonlight.m4a - File Folder Count4 - Library Folder Count1 - - 6342 - - Track ID6342 - NameHonest With Me - ArtistBob Dylan - ComposerBob Dylan - AlbumLove & Theft - GenreFolk - KindAAC audio file - Size8407554 - Total Time349133 - Disc Number1 - Disc Count1 - Track Number9 - Track Count12 - Year2001 - Date Modified2006-08-07T08:13:26Z - Date Added2009-10-03T14:59:29Z - Bit Rate192 - Sample Rate44100 - Normalization5986 - Artwork Count1 - Persistent ID2B812109DFFA9041 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Dylan/Love%20&%20Theft/09%20Honest%20With%20Me.m4a - File Folder Count4 - Library Folder Count1 - - 6344 - - Track ID6344 - NamePo' Boy - ArtistBob Dylan - ComposerBob Dylan - AlbumLove & Theft - GenreFolk - KindAAC audio file - Size4468535 - Total Time185874 - Disc Number1 - Disc Count1 - Track Number10 - Track Count12 - Year2001 - Date Modified2006-08-07T08:13:26Z - Date Added2009-10-03T14:59:29Z - Bit Rate192 - Sample Rate44100 - Normalization1543 - Artwork Count1 - Persistent ID12AD02EBA1A25AA0 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Dylan/Love%20&%20Theft/10%20Po'%20Boy.m4a - File Folder Count4 - Library Folder Count1 - - 6346 - - Track ID6346 - NameCry A While - ArtistBob Dylan - ComposerBob Dylan - AlbumLove & Theft - GenreFolk - KindAAC audio file - Size7363756 - Total Time305480 - Disc Number1 - Disc Count1 - Track Number11 - Track Count12 - Year2001 - Date Modified2006-08-07T08:13:26Z - Date Added2009-10-03T14:59:29Z - Bit Rate192 - Sample Rate44100 - Normalization3819 - Artwork Count1 - Persistent IDC9624C862A1AF3CF - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Dylan/Love%20&%20Theft/11%20Cry%20A%20While.m4a - File Folder Count4 - Library Folder Count1 - - 6348 - - Track ID6348 - NameSugar Baby - ArtistBob Dylan - ComposerBob Dylan - AlbumLove & Theft - GenreFolk - KindAAC audio file - Size9714105 - Total Time400914 - Disc Number1 - Disc Count1 - Track Number12 - Track Count12 - Year2001 - Date Modified2006-08-07T08:13:28Z - Date Added2009-10-03T14:59:29Z - Bit Rate192 - Sample Rate44100 - Normalization1365 - Artwork Count1 - Persistent ID77C6BBE1EC6AE990 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Dylan/Love%20&%20Theft/12%20Sugar%20Baby.m4a - File Folder Count4 - Library Folder Count1 - - 6350 - - Track ID6350 - NameHurricane - ArtistBob Dylan - ComposerBob Dylan and Jacques Levy - AlbumDesire - GenreFolk - KindAAC audio file - Size12420684 - Total Time512509 - Disc Number1 - Disc Count1 - Track Number1 - Track Count9 - Year1976 - Date Modified2006-08-07T08:25:54Z - Date Added2009-10-03T14:59:29Z - Bit Rate192 - Sample Rate44100 - Skip Count1 - Skip Date2014-06-06T04:00:49Z - Normalization1286 - Artwork Count1 - Persistent ID841795912A9B4925 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Dylan/Desire/01%20Hurricane.m4a - File Folder Count4 - Library Folder Count1 - - 6352 - - Track ID6352 - NameIsis - ArtistBob Dylan - ComposerBob Dylan and Jacques Levy - AlbumDesire - GenreFolk - KindAAC audio file - Size10152859 - Total Time418816 - Disc Number1 - Disc Count1 - Track Number2 - Track Count9 - Year1976 - Date Modified2006-08-07T08:25:56Z - Date Added2009-10-03T14:59:29Z - Bit Rate192 - Sample Rate44100 - Normalization1774 - Artwork Count1 - Persistent IDCE98C72160982C89 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Dylan/Desire/02%20Isis.m4a - File Folder Count4 - Library Folder Count1 - - 6354 - - Track ID6354 - NameMozambique - ArtistBob Dylan - ComposerBob Dylan and Jacques Levy - AlbumDesire - GenreFolk - KindAAC audio file - Size4409515 - Total Time181416 - Disc Number1 - Disc Count1 - Track Number3 - Track Count9 - Year1976 - Date Modified2006-08-07T08:25:56Z - Date Added2009-10-03T14:59:29Z - Bit Rate192 - Sample Rate44100 - Normalization1286 - Artwork Count1 - Persistent IDE2A458CAD8125348 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Dylan/Desire/03%20Mozambique.m4a - File Folder Count4 - Library Folder Count1 - - 6356 - - Track ID6356 - NameOne More Cup Of Coffee - ArtistBob Dylan - ComposerBob Dylan - AlbumDesire - GenreFolk - KindAAC audio file - Size5498012 - Total Time226184 - Disc Number1 - Disc Count1 - Track Number4 - Track Count9 - Year1976 - Date Modified2006-08-07T08:25:56Z - Date Added2009-10-03T14:59:30Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3426956680 - Play Date UTC2012-08-04T14:54:40Z - Normalization851 - Artwork Count1 - Persistent IDA6765AD809E84365 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Dylan/Desire/04%20One%20More%20Cup%20Of%20Coffee.m4a - File Folder Count4 - Library Folder Count1 - - 6358 - - Track ID6358 - NameOh, Sister - ArtistBob Dylan - ComposerBob Dylan and Jacques Levy - AlbumDesire - GenreFolk - KindAAC audio file - Size5925456 - Total Time243970 - Disc Number1 - Disc Count1 - Track Number5 - Track Count9 - Year1976 - Date Modified2006-08-07T08:25:56Z - Date Added2009-10-03T14:59:30Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3426956924 - Play Date UTC2012-08-04T14:58:44Z - Normalization1127 - Artwork Count1 - Persistent IDD06D43688B0B26BB - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Dylan/Desire/05%20Oh,%20Sister.m4a - File Folder Count4 - Library Folder Count1 - - 6360 - - Track ID6360 - NameJoey - ArtistBob Dylan - ComposerBob Dylan and Jacques Levy - AlbumDesire - GenreFolk - KindAAC audio file - Size16119675 - Total Time665389 - Disc Number1 - Disc Count1 - Track Number6 - Track Count9 - Year1976 - Date Modified2006-08-07T08:25:56Z - Date Added2009-10-03T14:59:30Z - Bit Rate192 - Sample Rate44100 - Normalization1138 - Artwork Count1 - Persistent IDC8635A7B14D33F87 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Dylan/Desire/06%20Joey.m4a - File Folder Count4 - Library Folder Count1 - - 6362 - - Track ID6362 - NameRomance In Durango - ArtistBob Dylan - ComposerBob Dylan and Jacques Levy - AlbumDesire - GenreFolk - KindAAC audio file - Size8343193 - Total Time344048 - Disc Number1 - Disc Count1 - Track Number7 - Track Count9 - Year1976 - Date Modified2006-08-07T08:25:56Z - Date Added2009-10-03T14:59:30Z - Bit Rate192 - Sample Rate44100 - Normalization1366 - Artwork Count1 - Persistent ID0614C1403E83D872 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Dylan/Desire/07%20Romance%20In%20Durango.m4a - File Folder Count4 - Library Folder Count1 - - 6364 - - Track ID6364 - NameBlack Diamond Bay - ArtistBob Dylan - ComposerBob Dylan and Jacques Levy - AlbumDesire - GenreFolk - KindAAC audio file - Size10913632 - Total Time450256 - Disc Number1 - Disc Count1 - Track Number8 - Track Count9 - Year1976 - Date Modified2006-08-07T08:25:56Z - Date Added2009-10-03T14:59:30Z - Bit Rate192 - Sample Rate44100 - Normalization1352 - Artwork Count1 - Persistent ID6297467A7C729445 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Dylan/Desire/08%20Black%20Diamond%20Bay.m4a - File Folder Count4 - Library Folder Count1 - - 6366 - - Track ID6366 - NameSara - ArtistBob Dylan - ComposerBob Dylan - AlbumDesire - GenreFolk - KindAAC audio file - Size7993697 - Total Time329582 - Disc Number1 - Disc Count1 - Track Number9 - Track Count9 - Year1976 - Date Modified2006-08-07T08:25:56Z - Date Added2009-10-03T14:59:30Z - Bit Rate192 - Sample Rate44100 - Normalization1425 - Artwork Count1 - Persistent ID72F66D90ABD4D7A1 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Dylan/Desire/09%20Sara.m4a - File Folder Count4 - Library Folder Count1 - - 6368 - - Track ID6368 - NamePaathshala-Be A Rebel - ArtistBlaaze, Aslam, Naresh Iyer - ComposerA R Rahman - AlbumRang De Basanti - GenreSoundtracks - KindAAC audio file - Size4613710 - Total Time189310 - Track Number7 - Date Modified2007-04-09T08:52:44Z - Date Added2009-10-03T14:59:30Z - Bit Rate192 - Sample Rate44100 - Normalization2063 - Artwork Count1 - Sort ComposerR Rahman - Persistent IDEB3F3932EA1EDDA7 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Blaaze,%20Aslam,%20Naresh%20Iyer/Rang%20De%20Basanti/07%20Paathshala-Be%20A%20Rebel.m4a - File Folder Count4 - Library Folder Count1 - - 6370 - - Track ID6370 - NamePaathshala-Be A Rebel - ArtistBlaaze, Aslam, Naresh Iyer - ComposerA R Rahman - AlbumRang De Basanti - GenreSoundtracks - KindAAC audio file - Size4554226 - Total Time189289 - Track Number7 - Date Modified2007-07-27T06:38:38Z - Date Added2009-10-03T14:59:31Z - Bit Rate192 - Sample Rate44100 - Normalization2063 - Sort ComposerR Rahman - Persistent IDBC53A203F3D0A29A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Blaaze,%20Aslam,%20Naresh%20Iyer/Rang%20De%20Basanti/07%20Paathshala-Be%20A%20Rebel%201.m4a - File Folder Count4 - Library Folder Count1 - - 6372 - - Track ID6372 - NamePaathshala-Be A Rebel - ArtistBlaaze, Aslam, Naresh Iyer - ComposerA R Rahman - AlbumRang De Basanti - GenreSoundtracks - KindAAC audio file - Size4567424 - Total Time189310 - Track Number7 - Date Modified2006-12-27T10:37:30Z - Date Added2009-10-03T14:59:31Z - Bit Rate192 - Sample Rate44100 - Normalization2063 - Sort ComposerR Rahman - Persistent IDCD8D3DF85AFDE1A2 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Blaaze,%20Aslam,%20Naresh%20Iyer/Rang%20De%20Basanti/07%20Paathshala-Be%20A%20Rebel%202.m4a - File Folder Count4 - Library Folder Count1 - - 6374 - - Track ID6374 - NamePaathshala-Be A Rebel - ArtistBlaaze, Aslam, Naresh Iyer - ComposerA R Rahman - AlbumRang De Basanti - GenreSoundtracks - KindAAC audio file - Size4518685 - Total Time189289 - Track Number7 - Date Modified2007-12-02T08:06:26Z - Date Added2009-10-03T14:59:31Z - Bit Rate189 - Sample Rate44100 - Normalization2063 - Sort ComposerR Rahman - Persistent ID14740497A50B7BBB - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Blaaze,%20Aslam,%20Naresh%20Iyer/Rang%20De%20Basanti/07%20Paathshala-Be%20A%20Rebel%203.m4a - File Folder Count4 - Library Folder Count1 - - 6376 - - Track ID6376 - NameHunter - ArtistBjörk - ComposerBjork - AlbumHomogenic - GenreAlternative & Punk - KindAAC audio file - Size8506913 - Total Time255266 - Disc Number1 - Disc Count1 - Track Number1 - Track Count10 - Year1997 - BPM80 - Date Modified2008-10-15T05:55:04Z - Date Added2009-10-03T14:59:31Z - Bit Rate256 - Sample Rate44100 - Normalization2672 - Artwork Count1 - Persistent IDB4257A97EF877963 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bjo%CC%88rk/Homogenic/01%20Hunter.m4a - File Folder Count4 - Library Folder Count1 - - 6378 - - Track ID6378 - NameJoga - ArtistBjörk - ComposerBjörk and Sigurjon Birgir Sigurdsson (aka Sjòn) - AlbumHomogenic - GenreAlternative & Punk - KindAAC audio file - Size10173249 - Total Time305360 - Disc Number1 - Disc Count1 - Track Number2 - Track Count10 - Year1997 - BPM73 - Date Modified2008-10-15T05:55:08Z - Date Added2009-10-03T14:59:31Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3390500422 - Play Date UTC2011-06-09T16:10:22Z - Normalization4580 - Artwork Count1 - Persistent IDECA31D67C9FA70EE - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bjo%CC%88rk/Homogenic/02%20Joga.m4a - File Folder Count4 - Library Folder Count1 - - 6380 - - Track ID6380 - NameUnravel - ArtistBjörk - ComposerBjörk and Guy Sigsworth - AlbumHomogenic - GenreAlternative & Punk - KindAAC audio file - Size6781212 - Total Time201800 - Disc Number1 - Disc Count1 - Track Number3 - Track Count10 - Year1997 - BPM52 - Date Modified2008-10-15T05:55:12Z - Date Added2009-10-03T14:59:31Z - Bit Rate256 - Sample Rate44100 - Normalization1987 - Artwork Count1 - Persistent ID90B5344DEA1982F7 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bjo%CC%88rk/Homogenic/03%20Unravel.m4a - File Folder Count4 - Library Folder Count1 - - 6382 - - Track ID6382 - NameBachelorette - ArtistBjörk - ComposerBjörk and Sigurjon Birgir Sigurdsson (aka Sjòn) - AlbumHomogenic - GenreAlternative & Punk - KindAAC audio file - Size10345806 - Total Time312666 - Disc Number1 - Disc Count1 - Track Number4 - Track Count10 - Year1997 - BPM98 - Date Modified2008-10-15T05:55:20Z - Date Added2009-10-03T14:59:32Z - Bit Rate256 - Sample Rate44100 - Normalization7345 - Artwork Count1 - Persistent IDCCA152F982D7F330 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bjo%CC%88rk/Homogenic/04%20Bachelorette.m4a - File Folder Count4 - Library Folder Count1 - - 6384 - - Track ID6384 - NameAll Neon Like - ArtistBjörk - ComposerBjork - AlbumHomogenic - GenreAlternative & Punk - KindAAC audio file - Size11443937 - Total Time353266 - Disc Number1 - Disc Count1 - Track Number5 - Track Count10 - Year1997 - BPM77 - Date Modified2008-10-15T05:55:23Z - Date Added2009-10-03T14:59:32Z - Bit Rate256 - Sample Rate44100 - Normalization1937 - Artwork Count1 - Persistent IDA9000E6015645266 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bjo%CC%88rk/Homogenic/05%20All%20Neon%20Like.m4a - File Folder Count4 - Library Folder Count1 - - 6386 - - Track ID6386 - Name5 Years - ArtistBjörk - ComposerBjork - AlbumHomogenic - GenreAlternative & Punk - KindAAC audio file - Size9005340 - Total Time269066 - Disc Number1 - Disc Count1 - Track Number6 - Track Count10 - Year1997 - BPM83 - Date Modified2008-10-15T05:55:26Z - Date Added2009-10-03T14:59:32Z - Bit Rate256 - Sample Rate44100 - Normalization5382 - Artwork Count1 - Persistent ID8659E18F1A851278 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bjo%CC%88rk/Homogenic/06%205%20Years.m4a - File Folder Count4 - Library Folder Count1 - - 6388 - - Track ID6388 - NameImmature - ArtistBjörk - ComposerBjork - AlbumHomogenic - GenreAlternative & Punk - KindAAC audio file - Size6318674 - Total Time186266 - Disc Number1 - Disc Count1 - Track Number7 - Track Count10 - Year1997 - BPM94 - Date Modified2008-10-15T05:55:29Z - Date Added2009-10-03T14:59:32Z - Bit Rate256 - Sample Rate44100 - Normalization2920 - Artwork Count1 - Persistent ID2EAE8F13CAEDA68F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bjo%CC%88rk/Homogenic/07%20Immature.m4a - File Folder Count4 - Library Folder Count1 - - 6390 - - Track ID6390 - NameAlarm Call - ArtistBjörk - ComposerBjork - AlbumHomogenic - GenreAlternative & Punk - KindAAC audio file - Size8511994 - Total Time259773 - Disc Number1 - Disc Count1 - Track Number8 - Track Count10 - Year1997 - BPM97 - Date Modified2008-10-15T05:55:37Z - Date Added2009-10-03T14:59:32Z - Bit Rate256 - Sample Rate44100 - Normalization3683 - Artwork Count1 - Persistent IDAC51CCACFC4CB49C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bjo%CC%88rk/Homogenic/08%20Alarm%20Call.m4a - File Folder Count4 - Library Folder Count1 - - 6392 - - Track ID6392 - NamePluto - ArtistBjörk - ComposerBjörk and Mark Bell - AlbumHomogenic - GenreAlternative & Punk - KindAAC audio file - Size6713289 - Total Time199293 - Disc Number1 - Disc Count1 - Track Number9 - Track Count10 - Year1997 - BPM149 - Date Modified2008-10-15T05:55:42Z - Date Added2009-10-03T14:59:32Z - Bit Rate256 - Sample Rate44100 - Normalization4381 - Artwork Count1 - Persistent ID9929E9E8F2FF5F35 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bjo%CC%88rk/Homogenic/09%20Pluto.m4a - File Folder Count4 - Library Folder Count1 - - 6394 - - Track ID6394 - NameAll Is Full Of Love - ArtistBjörk - ComposerBjork - AlbumHomogenic - GenreAlternative & Punk - KindAAC audio file - Size9000871 - Total Time273106 - Disc Number1 - Disc Count1 - Track Number10 - Track Count10 - Year1997 - BPM55 - Date Modified2008-10-15T05:55:45Z - Date Added2009-10-03T14:59:33Z - Bit Rate256 - Sample Rate44100 - Normalization2418 - Artwork Count1 - Persistent IDDE879376BA5BD501 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bjo%CC%88rk/Homogenic/10%20All%20Is%20Full%20Of%20Love.m4a - File Folder Count4 - Library Folder Count1 - - 6396 - - Track ID6396 - Name(1) Pag Laagan (Vilambit) - ArtistBhimsen Joshi - AlbumGolden Raaga Collection - GenreClassical - KindAAC audio file - Size67721336 - Total Time2797770 - Track Number1 - Track Count2 - Date Modified2006-08-13T07:02:52Z - Date Added2009-10-03T14:59:33Z - Bit Rate192 - Sample Rate44100 - Normalization2191 - Artwork Count1 - Persistent ID3E7A1CB287674C50 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bhimsen%20Joshi/Golden%20Raaga%20Collection/01%20(1)%20Pag%20Laagan%20(Vilambit).m4a - File Folder Count4 - Library Folder Count1 - - 6398 - - Track ID6398 - Namerang raliyan/jamuna ke teer - ArtistBhimsen Joshi - AlbumGolden Raaga Collection - GenreClassical - KindAAC audio file - Size22430567 - Total Time926288 - Track Number2 - Track Count2 - Date Modified2006-08-13T07:02:22Z - Date Added2009-10-03T14:59:33Z - Bit Rate192 - Sample Rate44100 - Normalization2464 - Artwork Count1 - Persistent ID408A0695147BA8D4 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bhimsen%20Joshi/Golden%20Raaga%20Collection/02%20rang%20raliyan_jamuna%20ke%20teer.m4a - File Folder Count4 - Library Folder Count1 - - 6400 - - Track ID6400 - NameLa Mer - 1. From Dawn till Noon on the Sea (De l'aube à midi sur la mer) - ArtistBerliner Philharmoniker - Album ArtistBerliner Philharmoniker - ComposerClaude Debussy - AlbumRavel: Boléro / Debussy: La Mer / Mussorgsky: Pictures at an Exhibition - GenreClassical - KindMPEG audio file - Size16604877 - Total Time515082 - Disc Number1 - Disc Count1 - Track Number1 - Track Count19 - Year1996 - Date Modified2008-11-23T17:19:23Z - Date Added2009-10-03T14:59:33Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 204929326 - Play Count3 - Play Date3408275072 - Play Date UTC2012-01-01T09:34:32Z - Rating80 - Album Rating80 - Album Rating Computed - Artwork Count1 - Persistent IDC6F460041F8369F6 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Berliner%20Philharmoniker/Ravel_%20Bole%CC%81ro%20_%20Debussy_%20La%20Mer%20_%20Mussorgsky_%20Pictures%20at%20an%20Exhibition/01%20La%20Mer%20-%201.%20From%20Dawn%20till%20Noon%20on%20the%20Sea%20(De%20l'aube%20a%CC%80%20midi%20sur%20la%20mer).mp3 - File Folder Count4 - Library Folder Count1 - - 6402 - - Track ID6402 - NameLa Mer - 2. Play of the Waves (Jeux de vagues) - ArtistBerliner Philharmoniker - Album ArtistBerliner Philharmoniker - ComposerClaude Debussy - AlbumRavel: Boléro / Debussy: La Mer / Mussorgsky: Pictures at an Exhibition - GenreClassical - KindMPEG audio file - Size12060799 - Total Time373080 - Disc Number1 - Disc Count1 - Track Number2 - Track Count19 - Year1996 - Date Modified2008-11-23T17:23:34Z - Date Added2009-10-03T14:59:33Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 204929327 - Play Count2 - Play Date3408275445 - Play Date UTC2012-01-01T09:40:45Z - Skip Count1 - Skip Date2011-10-31T11:30:22Z - Album Rating80 - Album Rating Computed - Artwork Count1 - Persistent ID8D583EB79F09970B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Berliner%20Philharmoniker/Ravel_%20Bole%CC%81ro%20_%20Debussy_%20La%20Mer%20_%20Mussorgsky_%20Pictures%20at%20an%20Exhibition/02%20La%20Mer%20-%202.%20Play%20of%20the%20Waves%20(Jeux%20de%20vagues).mp3 - File Folder Count4 - Library Folder Count1 - - 6404 - - Track ID6404 - NameLa Mer - 3. Dialogue of the Wind and the Sea (Dialogue du vent et de la mer) - ArtistBerliner Philharmoniker - Album ArtistBerliner Philharmoniker - ComposerClaude Debussy - AlbumRavel: Boléro / Debussy: La Mer / Mussorgsky: Pictures at an Exhibition - GenreClassical - KindMPEG audio file - Size15164594 - Total Time470073 - Disc Number1 - Disc Count1 - Track Number3 - Track Count19 - Year1996 - Date Modified2008-11-23T17:28:38Z - Date Added2009-10-03T14:59:34Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 204929328 - Play Count1 - Play Date3408275915 - Play Date UTC2012-01-01T09:48:35Z - Skip Count1 - Skip Date2011-10-31T11:30:27Z - Album Rating80 - Album Rating Computed - Artwork Count1 - Persistent IDD9456B280663D082 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Berliner%20Philharmoniker/Ravel_%20Bole%CC%81ro%20_%20Debussy_%20La%20Mer%20_%20Mussorgsky_%20Pictures%20at%20an%20Exhibition/03%20La%20Mer%20-%203.%20Dialogue%20of%20the%20Wind%20and%20the%20Sea%20(Dialogue%20du%20vent%20et%20de%20la%20mer).mp3 - File Folder Count4 - Library Folder Count1 - - 6406 - - Track ID6406 - NamePictures at an Exhibition - Orchestrated by Maurice Ravel - Promenade - ArtistBerliner Philharmoniker - Album ArtistBerliner Philharmoniker - ComposerMussorgsky, Modest Petrovich - AlbumRavel: Boléro / Debussy: La Mer / Mussorgsky: Pictures at an Exhibition - GenreClassical - KindMPEG audio file - Size3653169 - Total Time110341 - Disc Number1 - Disc Count1 - Track Number4 - Track Count19 - Year1996 - Date Modified2008-11-23T17:29:52Z - Date Added2009-10-03T14:59:34Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 204929329 - Play Count2 - Play Date3408276025 - Play Date UTC2012-01-01T09:50:25Z - Album Rating80 - Album Rating Computed - Artwork Count1 - Persistent ID0A29BD4A2D20F99B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Berliner%20Philharmoniker/Ravel_%20Bole%CC%81ro%20_%20Debussy_%20La%20Mer%20_%20Mussorgsky_%20Pictures%20at%20an%20Exhibition/04%20Pictures%20at%20an%20Exhibition%20-%20Orchestrated%20by%20Maurice%20Ravel%20-%20Promenade.mp3 - File Folder Count4 - Library Folder Count1 - - 6408 - - Track ID6408 - NamePictures at an Exhibition - Orchestrated by Maurice Ravel - Gnomus - ArtistBerliner Philharmoniker - Album ArtistBerliner Philharmoniker - ComposerMussorgsky, Modest Petrovich - AlbumRavel: Boléro / Debussy: La Mer / Mussorgsky: Pictures at an Exhibition - GenreClassical - KindMPEG audio file - Size5394384 - Total Time164754 - Disc Number1 - Disc Count1 - Track Number5 - Track Count19 - Year1996 - Date Modified2008-11-23T17:31:55Z - Date Added2009-10-03T14:59:34Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 204929330 - Play Count2 - Play Date3408448610 - Play Date UTC2012-01-03T09:46:50Z - Album Rating80 - Album Rating Computed - Artwork Count1 - Persistent ID3295C23676021F86 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Berliner%20Philharmoniker/Ravel_%20Bole%CC%81ro%20_%20Debussy_%20La%20Mer%20_%20Mussorgsky_%20Pictures%20at%20an%20Exhibition/05%20Pictures%20at%20an%20Exhibition%20-%20Orchestrated%20by%20Maurice%20Ravel%20-%20Gnomus.mp3 - File Folder Count4 - Library Folder Count1 - - 6410 - - Track ID6410 - NamePictures at an Exhibition - Orchestrated by Maurice Ravel - Promenade - ArtistBerliner Philharmoniker - Album ArtistBerliner Philharmoniker - ComposerMussorgsky, Modest Petrovich - AlbumRavel: Boléro / Debussy: La Mer / Mussorgsky: Pictures at an Exhibition - GenreClassical - KindMPEG audio file - Size2505453 - Total Time74475 - Disc Number1 - Disc Count1 - Track Number6 - Track Count19 - Year1996 - Date Modified2008-11-23T17:32:54Z - Date Added2009-10-03T14:59:34Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 204929331 - Album Rating80 - Album Rating Computed - Artwork Count1 - Persistent ID9808123D1B47B3AA - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Berliner%20Philharmoniker/Ravel_%20Bole%CC%81ro%20_%20Debussy_%20La%20Mer%20_%20Mussorgsky_%20Pictures%20at%20an%20Exhibition/06%20Pictures%20at%20an%20Exhibition%20-%20Orchestrated%20by%20Maurice%20Ravel%20-%20Promenade.mp3 - File Folder Count4 - Library Folder Count1 - - 6412 - - Track ID6412 - NamePictures at an Exhibition - Orchestrated by Maurice Ravel - The Old Castle - ArtistBerliner Philharmoniker - Album ArtistBerliner Philharmoniker - ComposerMussorgsky, Modest Petrovich - AlbumRavel: Boléro / Debussy: La Mer / Mussorgsky: Pictures at an Exhibition - GenreClassical - KindMPEG audio file - Size8967107 - Total Time276401 - Disc Number1 - Disc Count1 - Track Number7 - Track Count19 - Year1996 - Date Modified2008-11-23T17:36:11Z - Date Added2009-10-03T14:59:34Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 204929332 - Album Rating80 - Album Rating Computed - Artwork Count1 - Persistent ID541CC8A79D8E1D20 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Berliner%20Philharmoniker/Ravel_%20Bole%CC%81ro%20_%20Debussy_%20La%20Mer%20_%20Mussorgsky_%20Pictures%20at%20an%20Exhibition/07%20Pictures%20at%20an%20Exhibition%20-%20Orchestrated%20by%20Maurice%20Ravel%20-%20The%20Old%20Castle.mp3 - File Folder Count4 - Library Folder Count1 - - 6414 - - Track ID6414 - NamePictures at an Exhibition - Orchestrated by Maurice Ravel - Promenade - ArtistBerliner Philharmoniker - Album ArtistBerliner Philharmoniker - ComposerMussorgsky, Modest Petrovich - AlbumRavel: Boléro / Debussy: La Mer / Mussorgsky: Pictures at an Exhibition - GenreClassical - KindMPEG audio file - Size1462227 - Total Time41874 - Disc Number1 - Disc Count1 - Track Number8 - Track Count19 - Year1996 - Date Modified2008-11-23T17:36:42Z - Date Added2009-10-03T14:59:34Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 204929333 - Play Count1 - Play Date3401473491 - Play Date UTC2011-10-14T16:14:51Z - Album Rating80 - Album Rating Computed - Artwork Count1 - Persistent IDE37A8984A9D2DA13 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Berliner%20Philharmoniker/Ravel_%20Bole%CC%81ro%20_%20Debussy_%20La%20Mer%20_%20Mussorgsky_%20Pictures%20at%20an%20Exhibition/08%20Pictures%20at%20an%20Exhibition%20-%20Orchestrated%20by%20Maurice%20Ravel%20-%20Promenade.mp3 - File Folder Count4 - Library Folder Count1 - - 6416 - - Track ID6416 - NamePictures at an Exhibition - Orchestrated by Maurice Ravel - The Tuileries Gardens - ArtistBerliner Philharmoniker - Album ArtistBerliner Philharmoniker - ComposerMussorgsky, Modest Petrovich - AlbumRavel: Boléro / Debussy: La Mer / Mussorgsky: Pictures at an Exhibition - GenreClassical - KindMPEG audio file - Size2179457 - Total Time64287 - Disc Number1 - Disc Count1 - Track Number9 - Track Count19 - Year1996 - Date Modified2008-11-23T17:37:27Z - Date Added2009-10-03T14:59:34Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 204929334 - Play Count1 - Play Date3401473556 - Play Date UTC2011-10-14T16:15:56Z - Album Rating80 - Album Rating Computed - Artwork Count1 - Persistent ID23DD0A0262FB6027 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Berliner%20Philharmoniker/Ravel_%20Bole%CC%81ro%20_%20Debussy_%20La%20Mer%20_%20Mussorgsky_%20Pictures%20at%20an%20Exhibition/09%20Pictures%20at%20an%20Exhibition%20-%20Orchestrated%20by%20Maurice%20Ravel%20-%20The%20Tuileries%20Gardens.mp3 - File Folder Count4 - Library Folder Count1 - - 6418 - - Track ID6418 - NamePictures at an Exhibition - Orchestrated by Maurice Ravel - Bydlo - ArtistBerliner Philharmoniker - Album ArtistBerliner Philharmoniker - ComposerMussorgsky, Modest Petrovich - AlbumRavel: Boléro / Debussy: La Mer / Mussorgsky: Pictures at an Exhibition - GenreClassical - KindMPEG audio file - Size5543177 - Total Time169404 - Disc Number1 - Disc Count1 - Track Number10 - Track Count19 - Year1996 - Date Modified2008-11-23T17:38:47Z - Date Added2009-10-03T14:59:35Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 204929335 - Album Rating80 - Album Rating Computed - Artwork Count1 - Persistent ID526D84C3DC3CDD76 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Berliner%20Philharmoniker/Ravel_%20Bole%CC%81ro%20_%20Debussy_%20La%20Mer%20_%20Mussorgsky_%20Pictures%20at%20an%20Exhibition/10%20Pictures%20at%20an%20Exhibition%20-%20Orchestrated%20by%20Maurice%20Ravel%20-%20Bydlo.mp3 - File Folder Count4 - Library Folder Count1 - - 6420 - - Track ID6420 - NamePictures at an Exhibition - Orchestrated by Maurice Ravel - Promenade - ArtistBerliner Philharmoniker - Album ArtistBerliner Philharmoniker - ComposerMussorgsky, Modest Petrovich - AlbumRavel: Boléro / Debussy: La Mer / Mussorgsky: Pictures at an Exhibition - GenreClassical - KindMPEG audio file - Size2101705 - Total Time61857 - Disc Number1 - Disc Count1 - Track Number11 - Track Count19 - Year1996 - Date Modified2008-11-23T17:39:19Z - Date Added2009-10-03T14:59:35Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 204929336 - Album Rating80 - Album Rating Computed - Artwork Count1 - Persistent ID9F9BDF56CC894EA8 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Berliner%20Philharmoniker/Ravel_%20Bole%CC%81ro%20_%20Debussy_%20La%20Mer%20_%20Mussorgsky_%20Pictures%20at%20an%20Exhibition/11%20Pictures%20at%20an%20Exhibition%20-%20Orchestrated%20by%20Maurice%20Ravel%20-%20Promenade.mp3 - File Folder Count4 - Library Folder Count1 - - 6422 - - Track ID6422 - NamePictures at an Exhibition - Orchestrated by Maurice Ravel - Ballet of the Chickens in Their Shells - ArtistBerliner Philharmoniker - Album ArtistBerliner Philharmoniker - ComposerMussorgsky, Modest Petrovich - AlbumRavel: Boléro / Debussy: La Mer / Mussorgsky: Pictures at an Exhibition - GenreClassical - KindMPEG audio file - Size2435266 - Total Time72280 - Disc Number1 - Disc Count1 - Track Number12 - Track Count19 - Year1996 - Date Modified2008-11-23T17:39:54Z - Date Added2009-10-03T14:59:35Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 204929337 - Play Count1 - Play Date3401473628 - Play Date UTC2011-10-14T16:17:08Z - Album Rating80 - Album Rating Computed - Artwork Count1 - Persistent ID3739D86BC9090F18 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Berliner%20Philharmoniker/Ravel_%20Bole%CC%81ro%20_%20Debussy_%20La%20Mer%20_%20Mussorgsky_%20Pictures%20at%20an%20Exhibition/12%20Pictures%20at%20an%20Exhibition%20-%20Orchestrated%20by%20Maurice%20Ravel%20-%20Ballet%20of%20the%20Chickens%20in%20Their%20Shells.mp3 - File Folder Count4 - Library Folder Count1 - - 6424 - - Track ID6424 - NamePictures at an Exhibition - Orchestrated by Maurice Ravel - Samuel Goldenberg and Schmuyle - ArtistBerliner Philharmoniker - Album ArtistBerliner Philharmoniker - ComposerMussorgsky, Modest Petrovich - AlbumRavel: Boléro / Debussy: La Mer / Mussorgsky: Pictures at an Exhibition - GenreClassical - KindMPEG audio file - Size4534249 - Total Time137874 - Disc Number1 - Disc Count1 - Track Number13 - Track Count19 - Year1996 - Date Modified2008-11-23T17:41:03Z - Date Added2009-10-03T14:59:35Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 204929338 - Album Rating80 - Album Rating Computed - Artwork Count1 - Persistent ID65F62E1410E01DB2 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Berliner%20Philharmoniker/Ravel_%20Bole%CC%81ro%20_%20Debussy_%20La%20Mer%20_%20Mussorgsky_%20Pictures%20at%20an%20Exhibition/13%20Pictures%20at%20an%20Exhibition%20-%20Orchestrated%20by%20Maurice%20Ravel%20-%20Samuel%20Goldenberg%20and%20Schmuyle.mp3 - File Folder Count4 - Library Folder Count1 - - 6426 - - Track ID6426 - NamePictures at an Exhibition - Orchestrated by Maurice Ravel - The Market-place at Limoges - ArtistBerliner Philharmoniker - Album ArtistBerliner Philharmoniker - ComposerMussorgsky, Modest Petrovich - AlbumRavel: Boléro / Debussy: La Mer / Mussorgsky: Pictures at an Exhibition - GenreClassical - KindMPEG audio file - Size2883307 - Total Time86282 - Disc Number1 - Disc Count1 - Track Number14 - Track Count19 - Year1996 - Date Modified2008-11-23T17:41:43Z - Date Added2009-10-03T14:59:35Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 204929339 - Album Rating80 - Album Rating Computed - Artwork Count1 - Persistent ID5F125C35B6744469 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Berliner%20Philharmoniker/Ravel_%20Bole%CC%81ro%20_%20Debussy_%20La%20Mer%20_%20Mussorgsky_%20Pictures%20at%20an%20Exhibition/14%20Pictures%20at%20an%20Exhibition%20-%20Orchestrated%20by%20Maurice%20Ravel%20-%20The%20Market-place%20at%20Limoges.mp3 - File Folder Count4 - Library Folder Count1 - - 6428 - - Track ID6428 - NamePictures at an Exhibition - Orchestrated by Maurice Ravel - The Catacombs (Sepulchrum romanum) - ArtistBerliner Philharmoniker - Album ArtistBerliner Philharmoniker - ComposerMussorgsky, Modest Petrovich - AlbumRavel: Boléro / Debussy: La Mer / Mussorgsky: Pictures at an Exhibition - GenreClassical - KindMPEG audio file - Size4417224 - Total Time134217 - Disc Number1 - Disc Count1 - Track Number15 - Track Count19 - Year1996 - Date Modified2008-11-23T17:42:50Z - Date Added2009-10-03T14:59:36Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 204929340 - Album Rating80 - Album Rating Computed - Artwork Count1 - Persistent ID045BEFF2ADCB1377 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Berliner%20Philharmoniker/Ravel_%20Bole%CC%81ro%20_%20Debussy_%20La%20Mer%20_%20Mussorgsky_%20Pictures%20at%20an%20Exhibition/15%20Pictures%20at%20an%20Exhibition%20-%20Orchestrated%20by%20Maurice%20Ravel%20-%20The%20Catacombs%20(Sepulchrum%20romanum).mp3 - File Folder Count4 - Library Folder Count1 - - 6430 - - Track ID6430 - NamePictures at an Exhibition - Orchestrated by Maurice Ravel - Cum mortuis in lingua mortua - ArtistBerliner Philharmoniker - Album ArtistBerliner Philharmoniker - ComposerMussorgsky, Modest Petrovich - AlbumRavel: Boléro / Debussy: La Mer / Mussorgsky: Pictures at an Exhibition - GenreClassical - KindMPEG audio file - Size4670501 - Total Time142132 - Disc Number1 - Disc Count1 - Track Number16 - Track Count19 - Year1996 - Date Modified2008-11-23T17:43:57Z - Date Added2009-10-03T14:59:36Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 204929341 - Album Rating80 - Album Rating Computed - Artwork Count1 - Persistent ID95C01D9E4F234E67 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Berliner%20Philharmoniker/Ravel_%20Bole%CC%81ro%20_%20Debussy_%20La%20Mer%20_%20Mussorgsky_%20Pictures%20at%20an%20Exhibition/16%20Pictures%20at%20an%20Exhibition%20-%20Orchestrated%20by%20Maurice%20Ravel%20-%20Cum%20mortuis%20in%20lingua%20mortua.mp3 - File Folder Count4 - Library Folder Count1 - - 6432 - - Track ID6432 - NamePictures at an Exhibition - Orchestrated by Maurice Ravel - The Hut on Fowl's Legs (Baba-Yaga) - ArtistBerliner Philharmoniker - Album ArtistBerliner Philharmoniker - ComposerMussorgsky, Modest Petrovich - AlbumRavel: Boléro / Debussy: La Mer / Mussorgsky: Pictures at an Exhibition - GenreClassical - KindMPEG audio file - Size6879004 - Total Time211147 - Disc Number1 - Disc Count1 - Track Number17 - Track Count19 - Year1996 - Date Modified2008-11-23T17:45:33Z - Date Added2009-10-03T14:59:36Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 204929342 - Album Rating80 - Album Rating Computed - Artwork Count1 - Persistent ID252B415A9A9E2E70 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Berliner%20Philharmoniker/Ravel_%20Bole%CC%81ro%20_%20Debussy_%20La%20Mer%20_%20Mussorgsky_%20Pictures%20at%20an%20Exhibition/17%20Pictures%20at%20an%20Exhibition%20-%20Orchestrated%20by%20Maurice%20Ravel%20-%20The%20Hut%20on%20Fowl's%20Legs%20(Baba-Yaga).mp3 - File Folder Count4 - Library Folder Count1 - - 6434 - - Track ID6434 - NamePictures at an Exhibition - Orchestrated by Maurice Ravel - The Great Gate of Kiev - ArtistBerliner Philharmoniker - Album ArtistBerliner Philharmoniker - ComposerMussorgsky, Modest Petrovich - AlbumRavel: Boléro / Debussy: La Mer / Mussorgsky: Pictures at an Exhibition - GenreClassical - KindMPEG audio file - Size13043890 - Total Time403800 - Disc Number1 - Disc Count1 - Track Number18 - Track Count19 - Year1996 - Date Modified2008-11-23T17:48:49Z - Date Added2009-10-03T14:59:36Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 204929343 - Album Rating80 - Album Rating Computed - Artwork Count1 - Persistent ID1BD37A88D1AD4ED8 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Berliner%20Philharmoniker/Ravel_%20Bole%CC%81ro%20_%20Debussy_%20La%20Mer%20_%20Mussorgsky_%20Pictures%20at%20an%20Exhibition/18%20Pictures%20at%20an%20Exhibition%20-%20Orchestrated%20by%20Maurice%20Ravel%20-%20The%20Great%20Gate%20of%20Kiev.mp3 - File Folder Count4 - Library Folder Count1 - - 6436 - - Track ID6436 - NameBoléro - ArtistBerliner Philharmoniker - Album ArtistBerliner Philharmoniker - ComposerMaurice Ravel - AlbumRavel: Boléro / Debussy: La Mer / Mussorgsky: Pictures at an Exhibition - GenreClassical - KindMPEG audio file - Size31100471 - Total Time968071 - Disc Number1 - Disc Count1 - Track Number19 - Track Count19 - Year1996 - Date Modified2008-11-23T17:56:29Z - Date Added2009-10-03T14:59:36Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 204929344 - Play Count1 - Play Date3402926483 - Play Date UTC2011-10-31T11:51:23Z - Skip Count1 - Skip Date2011-10-31T11:29:35Z - Album Rating80 - Album Rating Computed - Artwork Count1 - Persistent IDD7A388D88B5CDC1B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Berliner%20Philharmoniker/Ravel_%20Bole%CC%81ro%20_%20Debussy_%20La%20Mer%20_%20Mussorgsky_%20Pictures%20at%20an%20Exhibition/19%20Bole%CC%81ro.mp3 - File Folder Count4 - Library Folder Count1 - - 6438 - - Track ID6438 - NameBhajare Sriramam - ArtistBalamurali Krishna - ComposerBhadrachala Ramadas - AlbumBhadrachala Ramadas Krithis - GenreCarnatic - KindMPEG audio file - Size5542607 - Total Time337867 - Track Number13 - Year2001 - Date Modified2007-12-02T16:23:18Z - Date Added2009-10-03T14:59:37Z - Bit Rate131 - Sample Rate44100 - CommentsRaga: Vakulabharanam - Artwork Count1 - Persistent IDE1DE1FD49DF2665D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Balamurali%20Krishna/Bhadrachala%20Ramadas%20Krithis/13%20Bhajare%20Sriramam.mp3 - File Folder Count4 - Library Folder Count1 - - 6440 - - Track ID6440 - NameCharanamule Nammithi - ArtistBalamurali Krishna - ComposerBhadrachala Ramadas - AlbumBhadrachala Ramadas Krithis - GenreCarnatic - KindMPEG audio file - Size6712437 - Total Time403200 - Track Number12 - Year2001 - Date Modified2007-12-02T16:23:17Z - Date Added2009-10-03T14:59:37Z - Bit Rate133 - Sample Rate44100 - CommentsRaga: Kaapi Tala: Adi - Artwork Count1 - Persistent IDCFF9BC3AD3CF94F7 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Balamurali%20Krishna/Bhadrachala%20Ramadas%20Krithis/12%20Charanamule%20Nammithi.mp3 - File Folder Count4 - Library Folder Count1 - - 6442 - - Track ID6442 - NameDiname Sudinamu - ArtistBalamurali Krishna - ComposerBhadrachala Ramadas - AlbumBhadrachala Ramadas Krithis - GenreCarnatic - KindMPEG audio file - Size4169592 - Total Time238550 - Track Number16 - Year2001 - Date Modified2007-12-02T16:23:19Z - Date Added2009-10-03T14:59:37Z - Bit Rate139 - Sample Rate44100 - CommentsRaga: Kaapi - Artwork Count1 - Persistent ID21DB9FE23A28DCBC - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Balamurali%20Krishna/Bhadrachala%20Ramadas%20Krithis/16%20Diname%20Sudinamu.mp3 - File Folder Count4 - Library Folder Count1 - - 6444 - - Track ID6444 - NameEa Theeruga Nanu Dhaya (Raga: Nadanamakriya Tala: Adi) - ArtistBalamurali Krishna - ComposerBhadrachala Ramadas - AlbumBhadrachala Ramadas Krithis - GenreCarnatic - KindMPEG audio file - Size5265333 - Total Time374935 - Track Number4 - Year2001 - Date Modified2007-12-14T10:22:03Z - Date Added2009-10-03T14:59:37Z - Bit Rate112 - Sample Rate44100 - CommentsRaga: Nadanamakriya Tala: Adi - Artwork Count1 - Persistent ID9E3D31F8099D6BF8 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Balamurali%20Krishna/Bhadrachala%20Ramadas%20Krithis/04%20Ea%20Theeruga%20Nanu%20Dhaya%20(Raga_%20Nadanamakriya%20Tala_%20Adi).mp3 - File Folder Count4 - Library Folder Count1 - - 6446 - - Track ID6446 - NameEmira Rama - ArtistBalamurali Krishna - ComposerBhadrachala Ramadas - AlbumBhadrachala Ramadas Krithis - GenreCarnatic - KindMPEG audio file - Size4033299 - Total Time228911 - Track Number19 - Year2001 - Date Modified2007-12-02T16:23:21Z - Date Added2009-10-03T14:59:37Z - Bit Rate140 - Sample Rate44100 - CommentsRaga: Kaapi Narayani - Artwork Count1 - Persistent ID1F136ACC14F18F29 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Balamurali%20Krishna/Bhadrachala%20Ramadas%20Krithis/19%20Emira%20Rama.mp3 - File Folder Count4 - Library Folder Count1 - - 6448 - - Track ID6448 - NameEtu Pothivorama (Raga: Ananda Bhairavi) - ArtistBalamurali Krishna - ComposerBhadrachala Ramadas - AlbumBhadrachala Ramadas Krithis - GenreCarnatic - KindMPEG audio file - Size5416310 - Total Time309524 - Track Number18 - Year2001 - Date Modified2007-12-14T03:28:03Z - Date Added2009-10-03T14:59:37Z - Bit Rate139 - Sample Rate44100 - CommentsRaga: Ananda Bhairavi - Artwork Count1 - Persistent ID89A085CB8AFBD0EE - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Balamurali%20Krishna/Bhadrachala%20Ramadas%20Krithis/18%20Etu%20Pothivorama%20(Raga_%20Ananda%20Bhairavi).mp3 - File Folder Count4 - Library Folder Count1 - - 6450 - - Track ID6450 - NameIdhigo Bhadradri - ArtistBalamurali Krishna - ComposerBhadrachala Ramadas - AlbumBhadrachala Ramadas Krithis - GenreCarnatic - KindMPEG audio file - Size2408706 - Total Time161854 - Track Number1 - Year2001 - Date Modified2007-12-12T07:24:58Z - Date Added2009-10-03T14:59:37Z - Bit Rate118 - Sample Rate44100 - CommentsRaga: Varali Tala: Adi - Artwork Count1 - Persistent IDDB01B70F2685E28A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Balamurali%20Krishna/Bhadrachala%20Ramadas%20Krithis/01%20Idhigo%20Bhadradri.mp3 - File Folder Count4 - Library Folder Count1 - - 6452 - - Track ID6452 - NameIkshvakukula Thilaka - ArtistBalamurali Krishna - ComposerBhadrachala Ramadas - AlbumBhadrachala Ramadas Krithis - GenreCarnatic - KindMPEG audio file - Size6712159 - Total Time429139 - Track Number8 - Year2001 - Date Modified2007-12-12T07:26:55Z - Date Added2009-10-03T14:59:37Z - Bit Rate125 - Sample Rate44100 - CommentsRaga: Yadukula Kamboji Raga: Misra Chapu - Artwork Count1 - Persistent IDDBFDCA539A4208A9 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Balamurali%20Krishna/Bhadrachala%20Ramadas%20Krithis/08%20Ikshvakukula%20Thilaka.mp3 - File Folder Count4 - Library Folder Count1 - - 6454 - - Track ID6454 - NameNannu Brovamani Cheppave - ArtistBalamurali Krishna (Raga: Kalyani Tala: Chapu) - ComposerBhadrachala Ramadas - AlbumBhadrachala Ramadas Krithis - GenreCarnatic - KindMPEG audio file - Size3003399 - Total Time193985 - Track Number7 - Year2001 - Date Modified2007-12-14T10:22:46Z - Date Added2009-10-03T14:59:38Z - Bit Rate123 - Sample Rate44100 - CommentsRaga: Kalyani Tala: Chapu - Artwork Count1 - Persistent ID5E75418E2DFDF167 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Balamurali%20Krishna%20(Raga_%20Kalyani%20Tala_%20Chapu)/Bhadrachala%20Ramadas%20Krithis/07%20Nannu%20Brovamani%20Cheppave.mp3 - File Folder Count4 - Library Folder Count1 - - 6456 - - Track ID6456 - NamePaahimam Srirama (Raga: Edukula Kambhoji) - ArtistBalamurali Krishna - ComposerBhadrachala Ramadas - AlbumBhadrachala Ramadas Krithis - GenreCarnatic - KindMPEG audio file - Size7126181 - Total Time421250 - Track Number14 - Year2001 - Date Modified2007-12-14T03:36:16Z - Date Added2009-10-03T14:59:38Z - Bit Rate135 - Sample Rate44100 - CommentsRaga: Edukula Kambhoji - Artwork Count1 - Persistent ID09D9831392FB4E4E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Balamurali%20Krishna/Bhadrachala%20Ramadas%20Krithis/14%20Paahimam%20Srirama%20(Raga_%20Edukula%20Kambhoji).mp3 - File Folder Count4 - Library Folder Count1 - - 6458 - - Track ID6458 - NamePahi Rama Prabho (Raga: Madyamavati Tala: Jhampa) - ArtistBalamurali Krishna - ComposerBhadrachala Ramadas - AlbumBhadrachala Ramadas Krithis - GenreCarnatic - KindMPEG audio file - Size4696403 - Total Time307853 - Track Number5 - Year2001 - Date Modified2007-12-14T10:23:35Z - Date Added2009-10-03T14:59:38Z - Bit Rate121 - Sample Rate44100 - CommentsRaga: Madyamavati Tala: Jhampa - Artwork Count1 - Persistent ID265A4B66DAE009ED - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Balamurali%20Krishna/Bhadrachala%20Ramadas%20Krithis/05%20Pahi%20Rama%20Prabho%20(Raga_%20Madyamavati%20Tala_%20Jhampa).mp3 - File Folder Count4 - Library Folder Count1 - - 6460 - - Track ID6460 - NamePaluke Bangaramayena (Raga: Anandabairavi Tala: Adi) - ArtistBalamurali Krishna - ComposerBhadrachala Ramadas - AlbumBhadrachala Ramadas Krithis - GenreCarnatic - KindMPEG audio file - Size3997727 - Total Time251820 - Track Number3 - Year2001 - Date Modified2007-12-14T03:31:25Z - Date Added2009-10-03T14:59:38Z - Bit Rate126 - Sample Rate44100 - CommentsRaga: Anandabairavi Tala: Adi - Artwork Count1 - Persistent IDE39B5B30A3795EDF - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Balamurali%20Krishna/Bhadrachala%20Ramadas%20Krithis/03%20Paluke%20Bangaramayena%20(Raga_%20Anandabairavi%20Tala_%20Adi).mp3 - File Folder Count4 - Library Folder Count1 - - 6462 - - Track ID6462 - NameRama Ne Yeda - ArtistBalamurali Krishna - ComposerBhadrachala Ramadas - AlbumBhadrachala Ramadas Krithis - GenreCarnatic - KindMPEG audio file - Size26373379 - Total Time1458625 - Track Number20 - Year2001 - Date Modified2007-12-02T16:23:26Z - Date Added2009-10-03T14:59:38Z - Bit Rate144 - Sample Rate44100 - CommentsRaga: Karaharapriya - Artwork Count1 - Persistent ID8F8F5B1C4E751A7F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Balamurali%20Krishna/Bhadrachala%20Ramadas%20Krithis/20%20Rama%20Ne%20Yeda.mp3 - File Folder Count4 - Library Folder Count1 - - 6464 - - Track ID6464 - NameRamajogi Mandukonare - ArtistBalamurali Krishna - ComposerBhadrachala Ramadas - AlbumBhadrachala Ramadas Krithis - GenreCarnatic - KindMPEG audio file - Size3262136 - Total Time191477 - Track Number15 - Year2001 - Date Modified2007-12-02T16:23:19Z - Date Added2009-10-03T14:59:38Z - Bit Rate136 - Sample Rate44100 - CommentsRaga: Salaga Bhairavi - Artwork Count1 - Persistent IDEFAD83A57C1C4D12 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Balamurali%20Krishna/Bhadrachala%20Ramadas%20Krithis/15%20Ramajogi%20Mandukonare.mp3 - File Folder Count4 - Library Folder Count1 - - 6466 - - Track ID6466 - NameSeetha Ramaswamy - ArtistBalamurali Krishna - ComposerBhadrachala Ramadas - AlbumBhadrachala Ramadas Krithis - GenreCarnatic - KindMPEG audio file - Size11307266 - Total Time593345 - Track Number17 - Year2001 - Date Modified2007-12-02T16:23:20Z - Date Added2009-10-03T14:59:38Z - Bit Rate152 - Sample Rate44100 - CommentsRaga: Mayamalava Gowla - Artwork Count1 - Persistent ID9C9B016CB4117C0F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Balamurali%20Krishna/Bhadrachala%20Ramadas%20Krithis/17%20Seetha%20Ramaswamy.mp3 - File Folder Count4 - Library Folder Count1 - - 6468 - - Track ID6468 - NameThakkuvemimanaku - ArtistBalamurali Krishna - ComposerBhadrachala Ramadas - AlbumBhadrachala Ramadas Krithis - GenreCarnatic - KindMPEG audio file - Size2807664 - Total Time171520 - Track Number9 - Year2001 - Date Modified2007-12-02T16:23:16Z - Date Added2009-10-03T14:59:38Z - Bit Rate130 - Sample Rate44100 - Artwork Count1 - Persistent ID2A3024D6F7497FEA - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Balamurali%20Krishna/Bhadrachala%20Ramadas%20Krithis/09%20Thakkuvemimanaku.mp3 - File Folder Count4 - Library Folder Count1 - - 6470 - - Track ID6470 - NameTharaka Mantramu (Raga: Dhanyasi Tala: Adi) - ArtistBalamurali Krishna - ComposerBhadrachala Ramadas - AlbumBhadrachala Ramadas Krithis - GenreCarnatic - KindMPEG audio file - Size3121552 - Total Time201142 - Track Number2 - Year2001 - Date Modified2007-12-14T03:36:03Z - Date Added2009-10-03T14:59:38Z - Bit Rate124 - Sample Rate44100 - CommentsRaga: Dhanyasi Tala: Adi - Artwork Count1 - Persistent ID67DFDF889D7D24E4 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Balamurali%20Krishna/Bhadrachala%20Ramadas%20Krithis/02%20Tharaka%20Mantramu%20(Raga_%20Dhanyasi%20Tala_%20Adi).mp3 - File Folder Count4 - Library Folder Count1 - - 6472 - - Track ID6472 - NameEmi Ka Sai D'augho - ArtistBabatunde Olatunji - AlbumHealing Session - GenreWorld - KindAAC audio file - Size10514105 - Total Time432075 - Track Number1 - Track Count8 - Year2003 - Date Modified2006-07-27T16:17:40Z - Date Added2009-10-03T14:59:39Z - Bit Rate192 - Sample Rate44100 - Normalization1231 - Artwork Count1 - Persistent ID9B63CF26E42ED648 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Babatunde%20Olatunji/Healing%20Session/01%20Emi%20Ka%20Sai%20D'augho.m4a - File Folder Count4 - Library Folder Count1 - - 6474 - - Track ID6474 - NameAdura - ArtistBabatunde Olatunji - AlbumHealing Session - GenreWorld - KindAAC audio file - Size15513693 - Total Time638663 - Track Number2 - Track Count8 - Year2003 - Date Modified2006-07-27T16:17:42Z - Date Added2009-10-03T14:59:39Z - Bit Rate192 - Sample Rate44100 - Normalization1231 - Artwork Count1 - Persistent ID148ED66D00B6C14B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Babatunde%20Olatunji/Healing%20Session/02%20Adura.m4a - File Folder Count4 - Library Folder Count1 - - 6476 - - Track ID6476 - NameEdunmare - ArtistBabatunde Olatunji - AlbumHealing Session - GenreWorld - KindAAC audio file - Size6348504 - Total Time259922 - Track Number3 - Track Count8 - Year2003 - Date Modified2006-07-27T16:17:42Z - Date Added2009-10-03T14:59:39Z - Bit Rate192 - Sample Rate44100 - Normalization1438 - Artwork Count1 - Persistent ID06263041F48D6EC2 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Babatunde%20Olatunji/Healing%20Session/03%20Edunmare.m4a - File Folder Count4 - Library Folder Count1 - - 6478 - - Track ID6478 - NameAra Mi Le - ArtistBabatunde Olatunji - AlbumHealing Session - GenreWorld - KindAAC audio file - Size8969190 - Total Time368220 - Track Number4 - Track Count8 - Year2003 - Date Modified2006-07-27T16:17:42Z - Date Added2009-10-03T14:59:39Z - Bit Rate192 - Sample Rate44100 - Normalization2331 - Artwork Count1 - Persistent ID32D5D2626431EC78 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Babatunde%20Olatunji/Healing%20Session/04%20Ara%20Mi%20Le.m4a - File Folder Count4 - Library Folder Count1 - - 6480 - - Track ID6480 - NameMystery Of Love - ArtistBabatunde Olatunji - AlbumHealing Session - GenreWorld - KindAAC audio file - Size8710078 - Total Time357539 - Track Number5 - Track Count8 - Year2003 - Date Modified2006-07-27T16:17:44Z - Date Added2009-10-03T14:59:39Z - Bit Rate192 - Sample Rate44100 - Normalization1231 - Artwork Count1 - Persistent IDB2F51C6EBE0325CC - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Babatunde%20Olatunji/Healing%20Session/05%20Mystery%20Of%20Love.m4a - File Folder Count4 - Library Folder Count1 - - 6482 - - Track ID6482 - NameWatusi - ArtistBabatunde Olatunji - AlbumHealing Session - GenreWorld - KindAAC audio file - Size9458236 - Total Time388421 - Track Number6 - Track Count8 - Year2003 - Date Modified2006-07-27T16:17:44Z - Date Added2009-10-03T14:59:39Z - Bit Rate192 - Sample Rate44100 - Normalization1231 - Artwork Count1 - Persistent ID4F01C94B3CCD83E9 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Babatunde%20Olatunji/Healing%20Session/06%20Watusi.m4a - File Folder Count4 - Library Folder Count1 - - 6484 - - Track ID6484 - NameNeNe - ArtistBabatunde Olatunji - AlbumHealing Session - GenreWorld - KindAAC audio file - Size12496862 - Total Time513995 - Track Number7 - Track Count8 - Year2003 - Date Modified2006-07-27T16:17:46Z - Date Added2009-10-03T14:59:40Z - Bit Rate192 - Sample Rate44100 - Normalization3456 - Artwork Count1 - Persistent ID191DC1F89F938F9B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Babatunde%20Olatunji/Healing%20Session/07%20NeNe.m4a - File Folder Count4 - Library Folder Count1 - - 6486 - - Track ID6486 - NamePrimitive Fire - ArtistBabatunde Olatunji - AlbumHealing Session - GenreWorld - KindAAC audio file - Size12295969 - Total Time504753 - Track Number8 - Track Count8 - Year2003 - Date Modified2006-07-27T16:17:46Z - Date Added2009-10-03T14:59:40Z - Bit Rate192 - Sample Rate44100 - Normalization1231 - Artwork Count1 - Persistent ID3C5F4FB400F6E6F2 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Babatunde%20Olatunji/Healing%20Session/08%20Primitive%20Fire.m4a - File Folder Count4 - Library Folder Count1 - - 6488 - - Track ID6488 - NameEvery Day I Have The Blues - ArtistB.B. King - ComposerPeter Chatman - AlbumLive At The Regal - GenreBlues - KindAAC audio file - Size6245627 - Total Time189133 - Disc Number1 - Disc Count1 - Track Number1 - Track Count10 - Year1965 - Date Modified2008-11-07T05:49:42Z - Date Added2009-10-03T14:59:40Z - Bit Rate256 - Sample Rate44100 - Normalization3000 - Artwork Count1 - Persistent IDB3A99A7A20153DE4 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/B.B.%20King/Live%20At%20The%20Regal/01%20Every%20Day%20I%20Have%20The%20Blues.m4a - File Folder Count4 - Library Folder Count1 - - 6490 - - Track ID6490 - NameSweet Little Angel - ArtistB.B. King - ComposerRiley B. King, Jules Taub - AlbumLive At The Regal - GenreBlues - KindAAC audio file - Size8234882 - Total Time249640 - Disc Number1 - Disc Count1 - Track Number2 - Track Count10 - Year1965 - Date Modified2008-11-07T05:49:41Z - Date Added2009-10-03T14:59:40Z - Bit Rate256 - Sample Rate44100 - Normalization3080 - Artwork Count1 - Persistent IDFF22D8A2183348D6 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/B.B.%20King/Live%20At%20The%20Regal/02%20Sweet%20Little%20Angel.m4a - File Folder Count4 - Library Folder Count1 - - 6492 - - Track ID6492 - NameIt's My Own Fault - ArtistB.B. King - ComposerJohn Lee Hooker - AlbumLive At The Regal - GenreBlues - KindAAC audio file - Size6261951 - Total Time189333 - Disc Number1 - Disc Count1 - Track Number3 - Track Count10 - Year1965 - Date Modified2008-11-07T05:49:41Z - Date Added2009-10-03T14:59:40Z - Bit Rate256 - Sample Rate44100 - Normalization2214 - Artwork Count1 - Persistent ID12916A72642E6898 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/B.B.%20King/Live%20At%20The%20Regal/03%20It's%20My%20Own%20Fault.m4a - File Folder Count4 - Library Folder Count1 - - 6494 - - Track ID6494 - NameHow Blue Can You Get? - ArtistB.B. King - ComposerLeonard Feather, Jane Feather - AlbumLive At The Regal - GenreBlues - KindAAC audio file - Size7103243 - Total Time214960 - Disc Number1 - Disc Count1 - Track Number4 - Track Count10 - Year1965 - Date Modified2008-11-07T05:49:40Z - Date Added2009-10-03T14:59:40Z - Bit Rate256 - Sample Rate44100 - Normalization2809 - Artwork Count1 - Persistent ID0D05ECB9E81C052F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/B.B.%20King/Live%20At%20The%20Regal/04%20How%20Blue%20Can%20You%20Get_.m4a - File Folder Count4 - Library Folder Count1 - - 6496 - - Track ID6496 - NamePlease Love Me - ArtistB.B. King - ComposerRiley B. King, Jules Bihari - AlbumLive At The Regal - GenreBlues - KindAAC audio file - Size5900200 - Total Time181800 - Disc Number1 - Disc Count1 - Track Number5 - Track Count10 - Year1965 - Date Modified2008-11-07T05:49:40Z - Date Added2009-10-03T14:59:40Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3390980327 - Play Date UTC2011-06-15T05:28:47Z - Normalization3721 - Artwork Count1 - Persistent ID275A0258DE74D05B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/B.B.%20King/Live%20At%20The%20Regal/05%20Please%20Love%20Me.m4a - File Folder Count4 - Library Folder Count1 - - 6498 - - Track ID6498 - NameYou Upset Me Baby - ArtistB.B. King - ComposerRiley B. King, Jules Bihari - AlbumLive At The Regal - GenreBlues - KindAAC audio file - Size5266238 - Total Time159173 - Disc Number1 - Disc Count1 - Track Number6 - Track Count10 - Year1965 - Date Modified2008-11-07T05:49:39Z - Date Added2009-10-03T14:59:41Z - Bit Rate256 - Sample Rate44100 - Normalization2424 - Artwork Count1 - Persistent ID9F642F11AEC9E292 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/B.B.%20King/Live%20At%20The%20Regal/06%20You%20Upset%20Me%20Baby.m4a - File Folder Count4 - Library Folder Count1 - - 6500 - - Track ID6500 - NameWorry, Worry - ArtistB.B. King - ComposerPlummer Davis, Jules Bihari - AlbumLive At The Regal - GenreBlues - KindAAC audio file - Size12616816 - Total Time383333 - Disc Number1 - Disc Count1 - Track Number7 - Track Count10 - Year1965 - Date Modified2008-11-07T05:49:39Z - Date Added2009-10-03T14:59:41Z - Bit Rate256 - Sample Rate44100 - Normalization2069 - Artwork Count1 - Persistent IDF99C983C205FA88D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/B.B.%20King/Live%20At%20The%20Regal/07%20Worry,%20Worry.m4a - File Folder Count4 - Library Folder Count1 - - 6502 - - Track ID6502 - NameWoke Up This Mornin' (My Baby's Gone) - ArtistB.B. King - ComposerRiley B. King, Jules Bihari - AlbumLive At The Regal - GenreBlues - KindAAC audio file - Size3471879 - Total Time104466 - Disc Number1 - Disc Count1 - Track Number8 - Track Count10 - Year1965 - Date Modified2008-11-07T05:49:38Z - Date Added2009-10-03T14:59:41Z - Bit Rate256 - Sample Rate44100 - Normalization3281 - Artwork Count1 - Persistent IDB6D62FEECA8D3DF9 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/B.B.%20King/Live%20At%20The%20Regal/08%20Woke%20Up%20This%20Mornin'%20(My%20Baby's%20Gone).m4a - File Folder Count4 - Library Folder Count1 - - 6504 - - Track ID6504 - NameYou Done Lost Your Good Thing Now - ArtistB.B. King - ComposerRiley B. King, Joe Josea - AlbumLive At The Regal - GenreBlues - KindAAC audio file - Size9012005 - Total Time273160 - Disc Number1 - Disc Count1 - Track Number9 - Track Count10 - Year1965 - Date Modified2008-11-07T05:49:38Z - Date Added2009-10-03T14:59:41Z - Bit Rate256 - Sample Rate44100 - Normalization2244 - Artwork Count1 - Persistent ID8237E31D99761DA5 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/B.B.%20King/Live%20At%20The%20Regal/09%20You%20Done%20Lost%20Your%20Good%20Thing%20Now.m4a - File Folder Count4 - Library Folder Count1 - - 6506 - - Track ID6506 - NameHelp The Poor - ArtistB.B. King - ComposerCharlie Singleton - AlbumLive At The Regal - GenreBlues - KindAAC audio file - Size5220396 - Total Time158333 - Disc Number1 - Disc Count1 - Track Number10 - Track Count10 - Year1965 - Date Modified2008-11-07T05:49:38Z - Date Added2009-10-03T14:59:41Z - Bit Rate256 - Sample Rate44100 - Normalization1719 - Artwork Count1 - Persistent IDAA0C14BDE54F58F4 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/B.B.%20King/Live%20At%20The%20Regal/10%20Help%20The%20Poor.m4a - File Folder Count4 - Library Folder Count1 - - 6508 - - Track ID6508 - NameRadha Kaise Na Jale - ArtistAsha Bhonsle, Udit Narayan, Vaishali - ComposerA.R. Rahman - AlbumLagaan: Once Upon A Time In India - GenreSoundtrack - KindAAC audio file - Size8136200 - Total Time334714 - Disc Number1 - Disc Count1 - Track Number3 - Track Count8 - Year2001 - Date Modified2006-07-29T04:05:54Z - Date Added2009-10-03T14:59:42Z - Bit Rate192 - Sample Rate44100 - Normalization2222 - Artwork Count1 - Persistent IDF10DB4762A7AE1F2 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Asha%20Bhonsle,%20Udit%20Narayan,%20Vaishali/Lagaan_%20Once%20Upon%20A%20Time%20In%20India/03%20Radha%20Kaise%20Na%20Jale.m4a - File Folder Count4 - Library Folder Count1 - - 6510 - - Track ID6510 - NamePrayer - ArtistArt Blakey & The Afro Drum Ensemble - Composertrad. - AlbumThe African Beat - GenreJazz - KindAAC audio file - Size1372305 - Total Time55215 - Disc Number7 - Disc Count7 - Track Number1 - Track Count7 - Year1962 - Date Modified2006-08-07T08:21:36Z - Date Added2009-10-03T14:59:43Z - Bit Rate192 - Sample Rate44100 - Normalization1118 - Artwork Count1 - Sort AlbumAfrican Beat - Persistent ID5C786A364028AC89 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Art%20Blakey%20&%20The%20Afro%20Drum%20Ensemble/The%20African%20Beat/7-01%20Prayer.m4a - File Folder Count4 - Library Folder Count1 - - 6512 - - Track ID6512 - NameIFE L'AYO (There Is Happiness In Love) - ArtistArt Blakey & The Afro Drum Ensemble - ComposerSolomon Ilori - AlbumThe African Beat - GenreJazz - KindAAC audio file - Size8021493 - Total Time330766 - Disc Number7 - Disc Count7 - Track Number2 - Track Count7 - Year1962 - Date Modified2006-08-07T08:21:38Z - Date Added2009-10-03T14:59:43Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3428046260 - Play Date UTC2012-08-17T05:34:20Z - Normalization2036 - Artwork Count1 - Sort AlbumAfrican Beat - Persistent ID7F4DEAFBACF8E39B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Art%20Blakey%20&%20The%20Afro%20Drum%20Ensemble/The%20African%20Beat/7-02%20IFE%20L'AYO%20(There%20Is%20Happiness%20In%20Love).m4a - File Folder Count4 - Library Folder Count1 - - 6514 - - Track ID6514 - NameOBIRIN AFRICAN (Woman Of Africa) - ArtistArt Blakey & The Afro Drum Ensemble - ComposerGarvin Masseaux - AlbumThe African Beat - GenreJazz - KindAAC audio file - Size5403839 - Total Time222979 - Disc Number7 - Disc Count7 - Track Number3 - Track Count7 - Year1962 - Date Modified2006-08-07T08:21:38Z - Date Added2009-10-03T14:59:44Z - Bit Rate192 - Sample Rate44100 - Normalization1937 - Artwork Count1 - Sort AlbumAfrican Beat - Persistent IDA6F7FBEF3CF819B8 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Art%20Blakey%20&%20The%20Afro%20Drum%20Ensemble/The%20African%20Beat/7-03%20OBIRIN%20AFRICAN%20(Woman%20Of%20Africa).m4a - File Folder Count4 - Library Folder Count1 - - 6516 - - Track ID6516 - NameLOVE, THE MYSTERY OF - ArtistArt Blakey & The Afro Drum Ensemble - ComposerGuy Warren - AlbumThe African Beat - GenreJazz - KindAAC audio file - Size13667403 - Total Time564405 - Disc Number7 - Disc Count7 - Track Number4 - Track Count7 - Year1962 - Date Modified2006-08-07T08:21:38Z - Date Added2009-10-03T14:59:44Z - Bit Rate192 - Sample Rate44100 - Normalization2152 - Artwork Count1 - Sort AlbumAfrican Beat - Persistent ID2FF633441E27B7C9 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Art%20Blakey%20&%20The%20Afro%20Drum%20Ensemble/The%20African%20Beat/7-04%20LOVE,%20THE%20MYSTERY%20OF.m4a - File Folder Count4 - Library Folder Count1 - - 6518 - - Track ID6518 - NameERO TI NR'OJEJE - ArtistArt Blakey & The Afro Drum Ensemble - ComposerSolomon G. Ilori - AlbumThe African Beat - GenreJazz - KindAAC audio file - Size11016444 - Total Time454436 - Disc Number7 - Disc Count7 - Track Number5 - Track Count7 - Year1962 - Date Modified2006-08-07T08:21:38Z - Date Added2009-10-03T14:59:44Z - Bit Rate192 - Sample Rate44100 - Normalization1706 - Artwork Count1 - Sort AlbumAfrican Beat - Persistent ID9C5330B96683E4CE - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Art%20Blakey%20&%20The%20Afro%20Drum%20Ensemble/The%20African%20Beat/7-05%20ERO%20TI%20NR'OJEJE.m4a - File Folder Count4 - Library Folder Count1 - - 6520 - - Track ID6520 - NameAYIKO AYIKO - ArtistArt Blakey & The Afro Drum Ensemble - ComposerSolomon G. Ilori - AlbumThe African Beat - GenreJazz - KindAAC audio file - Size10509761 - Total Time434513 - Disc Number7 - Disc Count7 - Track Number6 - Track Count7 - Year1962 - Date Modified2006-08-07T08:21:38Z - Date Added2009-10-03T14:59:44Z - Bit Rate192 - Sample Rate44100 - Normalization3379 - Artwork Count1 - Sort AlbumAfrican Beat - Persistent IDABCEE4D9CE6DA5EB - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Art%20Blakey%20&%20The%20Afro%20Drum%20Ensemble/The%20African%20Beat/7-06%20AYIKO%20AYIKO.m4a - File Folder Count4 - Library Folder Count1 - - 6522 - - Track ID6522 - NameTOBI ILU - ArtistArt Blakey & The Afro Drum Ensemble - ComposerJames H. Bey - AlbumThe African Beat - GenreJazz - KindAAC audio file - Size8690033 - Total Time357400 - Disc Number7 - Disc Count7 - Track Number7 - Track Count7 - Year1962 - Date Modified2006-08-07T08:21:38Z - Date Added2009-10-03T14:59:44Z - Bit Rate192 - Sample Rate44100 - Normalization1753 - Artwork Count1 - Sort AlbumAfrican Beat - Persistent IDCAAEA24DAA4FA1C6 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Art%20Blakey%20&%20The%20Afro%20Drum%20Ensemble/The%20African%20Beat/7-07%20TOBI%20ILU.m4a - File Folder Count4 - Library Folder Count1 - - 6524 - - Track ID6524 - NameIshwar Allah - ArtistAnuradha Shriram/Sujata Mohan - ComposerA.R. Rahman/Javed Akhtar - Album1947 - GenreSoundtrack - KindAAC audio file - Size7572218 - Total Time315023 - Track Number7 - Year1999 - Date Modified2006-12-26T05:35:58Z - Date Added2009-10-03T14:59:44Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Persistent IDDD089D00573DFEFA - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Anuradha%20Shriram_Sujata%20Mohan/1947/07%20Ishwar%20Allah.m4a - File Folder Count4 - Library Folder Count1 - - 6526 - - Track ID6526 - NameIshwar Allah - ArtistAnuradha Shriram/Sujata Mohan - ComposerA.R. Rahman/Javed Akhtar - Album1947 - GenreSoundtrack - KindAAC audio file - Size7572218 - Total Time315023 - Track Number7 - Year1999 - Date Modified2007-01-17T10:33:02Z - Date Added2009-10-03T14:59:45Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Persistent IDD74ECD6F066A724F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Anuradha%20Shriram_Sujata%20Mohan/1947/07%20Ishwar%20Allah%201.m4a - File Folder Count4 - Library Folder Count1 - - 6528 - - Track ID6528 - NameIshwar Allah - ArtistAnuradha Shriram/Sujata Mohan - ComposerA.R. Rahman/Javed Akhtar - Album1947 - GenreSoundtrack - KindAAC audio file - Size7572188 - Total Time315001 - Track Number7 - Year1999 - Date Modified2007-07-27T05:56:46Z - Date Added2009-10-03T14:59:45Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Persistent ID2A8D37575947C179 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Anuradha%20Shriram_Sujata%20Mohan/1947/07%20Ishwar%20Allah%202.m4a - File Folder Count4 - Library Folder Count1 - - 6530 - - Track ID6530 - NameIshwar Allah - ArtistAnuradha Shriram/Sujata Mohan - ComposerA.R. Rahman/Javed Akhtar - Album1947 - GenreSoundtrack - KindAAC audio file - Size7572218 - Total Time315023 - Track Number7 - Year1999 - Date Modified2006-12-27T09:57:14Z - Date Added2009-10-03T14:59:45Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Persistent IDB40E770F72F35582 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Anuradha%20Shriram_Sujata%20Mohan/1947/07%20Ishwar%20Allah%203.m4a - File Folder Count4 - Library Folder Count1 - - 6532 - - Track ID6532 - NameIshwar Allah - ArtistAnuradha Shriram/Sujata Mohan - ComposerA.R. Rahman/Javed Akhtar - Album1947 - GenreSoundtrack - KindAAC audio file - Size7707736 - Total Time315001 - Track Number7 - Year1999 - Date Modified2007-12-02T07:37:09Z - Date Added2009-10-03T14:59:45Z - Bit Rate194 - Sample Rate44100 - Normalization1259 - Persistent IDBFD2453B4550C280 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Anuradha%20Shriram_Sujata%20Mohan/1947/07%20Ishwar%20Allah%204.m4a - File Folder Count4 - Library Folder Count1 - - 6534 - - Track ID6534 - NameLagaan (Once Upon A Time In India) - ArtistAnudhara Sriram - ComposerA.R. Rahman - AlbumLagaan: Once Upon A Time In India - GenreSoundtrack - KindAAC audio file - Size6103418 - Total Time250611 - Disc Number1 - Disc Count1 - Track Number8 - Track Count8 - Year2001 - Date Modified2006-07-29T04:05:54Z - Date Added2009-10-03T14:59:45Z - Bit Rate192 - Sample Rate44100 - Normalization1867 - Artwork Count1 - Persistent ID73519BD08F4F6852 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Anudhara%20Sriram/Lagaan_%20Once%20Upon%20A%20Time%20In%20India/08%20Lagaan%20(Once%20Upon%20A%20Time%20In%20India).m4a - File Folder Count4 - Library Folder Count1 - - 6536 - - Track ID6536 - NamePrayer In Passing - ArtistAnoushka Shankar - ComposerAnoushka Shankar - AlbumRise - GenreWorld - KindAAC audio file - Size9241437 - Total Time381873 - Disc Number1 - Disc Count1 - Track Number1 - Track Count9 - Year2005 - Date Modified2006-09-05T15:10:34Z - Date Added2009-10-03T14:59:45Z - Bit Rate192 - Sample Rate44100 - Normalization1227 - Artwork Count1 - Persistent ID189476E9FAE9B76C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Anoushka%20Shankar/Rise/01%20Prayer%20In%20Passing.m4a - File Folder Count4 - Library Folder Count1 - - 6538 - - Track ID6538 - NameRed Sun 4 - ArtistAnoushka Shankar - ComposerAnoushka Shankar - AlbumRise - GenreWorld - KindAAC audio file - Size7043131 - Total Time290433 - Disc Number1 - Disc Count1 - Track Number2 - Track Count9 - Year2005 - Date Modified2006-09-05T15:10:32Z - Date Added2009-10-03T14:59:46Z - Bit Rate192 - Sample Rate44100 - Normalization1228 - Artwork Count1 - Persistent IDC5DEEF127F844CA0 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Anoushka%20Shankar/Rise/02%20Red%20Sun%204.m4a - File Folder Count4 - Library Folder Count1 - - 6540 - - Track ID6540 - NameMahadeva - ArtistAnoushka Shankar - ComposerAnoushka Shankar - AlbumRise - GenreWorld - KindAAC audio file - Size8278037 - Total Time341447 - Disc Number1 - Disc Count1 - Track Number3 - Track Count9 - Year2005 - Date Modified2006-09-05T15:10:30Z - Date Added2009-10-03T14:59:46Z - Bit Rate192 - Sample Rate44100 - Normalization2094 - Artwork Count1 - Persistent ID7727EB6CFF0E2262 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Anoushka%20Shankar/Rise/03%20Mahadeva.m4a - File Folder Count4 - Library Folder Count1 - - 6542 - - Track ID6542 - NameNaked - ArtistAnoushka Shankar - ComposerAnoushka Shankar - AlbumRise - GenreWorld - KindAAC audio file - Size6234340 - Total Time256950 - Disc Number1 - Disc Count1 - Track Number4 - Track Count9 - Year2005 - Date Modified2006-09-05T15:10:28Z - Date Added2009-10-03T14:59:46Z - Bit Rate192 - Sample Rate44100 - Normalization855 - Artwork Count1 - Persistent IDCC556584466B9536 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Anoushka%20Shankar/Rise/04%20Naked.m4a - File Folder Count4 - Library Folder Count1 - - 6544 - - Track ID6544 - NameSolea - ArtistAnoushka Shankar - ComposerAnoushka Shankar, Pedro Ricardo Miño - AlbumRise - GenreWorld - KindAAC audio file - Size10808126 - Total Time446007 - Disc Number1 - Disc Count1 - Track Number5 - Track Count9 - Year2005 - Date Modified2006-09-05T15:10:28Z - Date Added2009-10-03T14:59:46Z - Bit Rate192 - Sample Rate44100 - Normalization1227 - Artwork Count1 - Persistent IDDDB0E7B82A5D8CBC - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Anoushka%20Shankar/Rise/05%20Solea.m4a - File Folder Count4 - Library Folder Count1 - - 6546 - - Track ID6546 - NameBeloved - ArtistAnoushka Shankar - ComposerAnoushka Shankar - AlbumRise - GenreWorld - KindAAC audio file - Size10303477 - Total Time425155 - Disc Number1 - Disc Count1 - Track Number6 - Track Count9 - Year2005 - Date Modified2006-09-05T15:10:26Z - Date Added2009-10-03T14:59:46Z - Bit Rate192 - Sample Rate44100 - Normalization1228 - Artwork Count1 - Persistent ID5BEA498BBAD61039 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Anoushka%20Shankar/Rise/06%20Beloved.m4a - File Folder Count4 - Library Folder Count1 - - 6548 - - Track ID6548 - NameSinister Grains - ArtistAnoushka Shankar - ComposerAnoushka Shankar - AlbumRise - GenreWorld - KindAAC audio file - Size9002078 - Total Time371378 - Disc Number1 - Disc Count1 - Track Number7 - Track Count9 - Year2005 - Date Modified2006-09-05T15:10:26Z - Date Added2009-10-03T14:59:47Z - Bit Rate192 - Sample Rate44100 - Normalization1227 - Artwork Count1 - Persistent IDA3C469525C2522EF - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Anoushka%20Shankar/Rise/07%20Sinister%20Grains.m4a - File Folder Count4 - Library Folder Count1 - - 6550 - - Track ID6550 - NameVoice Of The Moon - ArtistAnoushka Shankar - ComposerAnoushka Shankar - AlbumRise - GenreWorld - KindAAC audio file - Size12957490 - Total Time535497 - Disc Number1 - Disc Count1 - Track Number8 - Track Count9 - Year2005 - Date Modified2006-09-05T15:10:24Z - Date Added2009-10-03T14:59:47Z - Bit Rate192 - Sample Rate44100 - Normalization1227 - Artwork Count1 - Persistent IDD4F6417D312B4351 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Anoushka%20Shankar/Rise/08%20Voice%20Of%20The%20Moon.m4a - File Folder Count4 - Library Folder Count1 - - 6552 - - Track ID6552 - NameAncient Love - ArtistAnoushka Shankar - ComposerAnoushka Shankar - AlbumRise - GenreWorld - KindAAC audio file - Size16132743 - Total Time667502 - Disc Number1 - Disc Count1 - Track Number9 - Track Count9 - Year2005 - Date Modified2006-09-05T15:10:24Z - Date Added2009-10-03T14:59:47Z - Bit Rate192 - Sample Rate44100 - Normalization1228 - Artwork Count1 - Persistent ID04A5CBA07B556AC7 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Anoushka%20Shankar/Rise/09%20Ancient%20Love.m4a - File Folder Count4 - Library Folder Count1 - - 6554 - - Track ID6554 - NameRhapsody In Blue - ArtistAndré Previn; London Symphony Orchestra - ComposerGeorge Gershwin - AlbumGershwin: Rhapsody In Blue • Concerto In F • An American In Paris - GenreClassical - KindAAC audio file - Size21575693 - Total Time898935 - Disc Number1 - Disc Count1 - Track Number1 - Track Count5 - Year1971 - Date Modified2006-09-05T15:56:48Z - Date Added2009-10-03T14:59:47Z - Bit Rate192 - Sample Rate44100 - Play Count3 - Play Date3430329438 - Play Date UTC2012-09-12T15:47:18Z - Normalization1057 - Artwork Count1 - Persistent ID90C899A63DE6D57A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Andre%CC%81%20Previn%3B%20London%20Symphony%20Orchestra/Gershwin_%20Rhapsody%20In%20Blue%20%E2%80%A2%20Concerto%20In%20F%20%E2%80%A2%20An%20American%20In%20Paris/01%20Rhapsody%20In%20Blue.m4a - File Folder Count4 - Library Folder Count1 - - 6556 - - Track ID6556 - NameAn American In Paris - ArtistAndré Previn; London Symphony Orchestra - ComposerGeorge Gershwin - AlbumGershwin: Rhapsody In Blue • Concerto In F • An American In Paris - GenreClassical - KindAAC audio file - Size26351564 - Total Time1097094 - Disc Number1 - Disc Count1 - Track Number2 - Track Count5 - Year1971 - Date Modified2006-09-05T15:56:46Z - Date Added2009-10-03T14:59:47Z - Bit Rate192 - Sample Rate44100 - Normalization1090 - Artwork Count1 - Sort NameAmerican In Paris - Persistent ID4C38A0C50B7530DD - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Andre%CC%81%20Previn%3B%20London%20Symphony%20Orchestra/Gershwin_%20Rhapsody%20In%20Blue%20%E2%80%A2%20Concerto%20In%20F%20%E2%80%A2%20An%20American%20In%20Paris/02%20An%20American%20In%20Paris.m4a - File Folder Count4 - Library Folder Count1 - - 6558 - - Track ID6558 - NamePiano Concerto In F (I. Allegro) - ArtistAndré Previn; London Symphony Orchestra - ComposerGeorge Gershwin - AlbumGershwin: Rhapsody In Blue • Concerto In F • An American In Paris - GenreClassical - KindAAC audio file - Size18721277 - Total Time773385 - Disc Number1 - Disc Count1 - Track Number3 - Track Count5 - Year1971 - Date Modified2006-09-05T15:56:44Z - Date Added2009-10-03T14:59:47Z - Bit Rate192 - Sample Rate44100 - Normalization1050 - Artwork Count1 - Persistent IDF34EFF440BF2352C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Andre%CC%81%20Previn%3B%20London%20Symphony%20Orchestra/Gershwin_%20Rhapsody%20In%20Blue%20%E2%80%A2%20Concerto%20In%20F%20%E2%80%A2%20An%20American%20In%20Paris/03%20Piano%20Concerto%20In%20F%20(I.%20Allegro).m4a - File Folder Count4 - Library Folder Count1 - - 6560 - - Track ID6560 - NamePiano Concerto In F (II. Adagio - Adante con moto) - ArtistAndré Previn; London Symphony Orchestra - ComposerGeorge Gershwin - AlbumGershwin: Rhapsody In Blue • Concerto In F • An American In Paris - GenreClassical - KindAAC audio file - Size18068712 - Total Time745777 - Disc Number1 - Disc Count1 - Track Number4 - Track Count5 - Year1971 - Date Modified2006-09-05T15:56:44Z - Date Added2009-10-03T14:59:48Z - Bit Rate192 - Sample Rate44100 - Normalization1066 - Artwork Count1 - Persistent ID96A6D78AA46E1144 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Andre%CC%81%20Previn%3B%20London%20Symphony%20Orchestra/Gershwin_%20Rhapsody%20In%20Blue%20%E2%80%A2%20Concerto%20In%20F%20%E2%80%A2%20An%20American%20In%20Paris/04%20Piano%20Concerto%20In%20F%20(II.%20Adagio%20-%20Adante%20con%20moto).m4a - File Folder Count4 - Library Folder Count1 - - 6562 - - Track ID6562 - NamePiano Concerto In F (III. Allegro agitato) - ArtistAndré Previn; London Symphony Orchestra - ComposerGeorge Gershwin - AlbumGershwin: Rhapsody In Blue • Concerto In F • An American In Paris - GenreClassical - KindAAC audio file - Size9639276 - Total Time397779 - Disc Number1 - Disc Count1 - Track Number5 - Track Count5 - Year1971 - Date Modified2006-09-05T15:56:42Z - Date Added2009-10-03T14:59:48Z - Bit Rate192 - Sample Rate44100 - Normalization1076 - Artwork Count1 - Persistent IDA05F9F223205D41A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Andre%CC%81%20Previn%3B%20London%20Symphony%20Orchestra/Gershwin_%20Rhapsody%20In%20Blue%20%E2%80%A2%20Concerto%20In%20F%20%E2%80%A2%20An%20American%20In%20Paris/05%20Piano%20Concerto%20In%20F%20(III.%20Allegro%20agitato).m4a - File Folder Count4 - Library Folder Count1 - - 6564 - - Track ID6564 - NameRefuge - ArtistAndrew Hill - ComposerAndrew Hill - AlbumPoint Of Departure - GenreJazz - KindAAC audio file - Size23980438 - Total Time736600 - Disc Number1 - Disc Count1 - Track Number1 - Track Count8 - Year1964 - Date Modified2008-11-04T13:27:55Z - Date Added2009-10-03T14:59:48Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3338659955 - Play Date UTC2009-10-17T16:02:35Z - Normalization1892 - Artwork Count1 - Persistent IDB453BC23E552647C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Andrew%20Hill/Point%20Of%20Departure/01%20Refuge.m4a - File Folder Count4 - Library Folder Count1 - - 6566 - - Track ID6566 - NameNew Monastery - ArtistAndrew Hill - ComposerAndrew Hill - AlbumPoint Of Departure - GenreJazz - KindAAC audio file - Size13819908 - Total Time425066 - Disc Number1 - Disc Count1 - Track Number2 - Track Count8 - Year1964 - Date Modified2008-11-04T13:27:53Z - Date Added2009-10-03T14:59:48Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3338660380 - Play Date UTC2009-10-17T16:09:40Z - Normalization2024 - Artwork Count1 - Persistent ID28237172C3542269 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Andrew%20Hill/Point%20Of%20Departure/02%20New%20Monastery.m4a - File Folder Count4 - Library Folder Count1 - - 6568 - - Track ID6568 - NameSpectrum - ArtistAndrew Hill - ComposerAndrew Hill - AlbumPoint Of Departure - GenreJazz - KindAAC audio file - Size18774366 - Total Time587520 - Disc Number1 - Disc Count1 - Track Number3 - Track Count8 - Year1964 - Date Modified2008-11-04T13:27:52Z - Date Added2009-10-03T14:59:48Z - Bit Rate256 - Sample Rate44100 - Normalization1380 - Artwork Count1 - Persistent IDC984270DC0672C79 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Andrew%20Hill/Point%20Of%20Departure/03%20Spectrum.m4a - File Folder Count4 - Library Folder Count1 - - 6570 - - Track ID6570 - NameFlight - ArtistAndrew Hill - ComposerAndrew Hill - AlbumPoint Of Departure - GenreJazz - KindAAC audio file - Size8171499 - Total Time258320 - Disc Number1 - Disc Count1 - Track Number4 - Track Count8 - Year1964 - Date Modified2008-11-04T13:27:51Z - Date Added2009-10-03T14:59:48Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3428045930 - Play Date UTC2012-08-17T05:28:50Z - Normalization1161 - Artwork Count1 - Persistent ID5A92A93BA8D4ACF8 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Andrew%20Hill/Point%20Of%20Departure/04%20Flight.m4a - File Folder Count4 - Library Folder Count1 - - 6572 - - Track ID6572 - NameDedication - ArtistAndrew Hill - ComposerAndrew Hill - AlbumPoint Of Departure - GenreJazz - KindAAC audio file - Size12823652 - Total Time405213 - Disc Number1 - Disc Count1 - Track Number5 - Track Count8 - Year1964 - Date Modified2008-11-04T13:27:50Z - Date Added2009-10-03T14:59:48Z - Bit Rate256 - Sample Rate44100 - Normalization987 - Artwork Count1 - Persistent ID2E10D60D175BF742 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Andrew%20Hill/Point%20Of%20Departure/05%20Dedication.m4a - File Folder Count4 - Library Folder Count1 - - 6574 - - Track ID6574 - NameNew Monastery (Alternate Take) - ArtistAndrew Hill - ComposerAndrew Hill - AlbumPoint Of Departure - GenreJazz - KindAAC audio file - Size12090777 - Total Time373693 - Disc Number1 - Disc Count1 - Track Number6 - Track Count8 - Year1964 - Date Modified2008-11-04T13:27:49Z - Date Added2009-10-03T14:59:48Z - Bit Rate256 - Sample Rate44100 - Normalization1941 - Artwork Count1 - Persistent ID4A023F4CAAF1C8D3 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Andrew%20Hill/Point%20Of%20Departure/06%20New%20Monastery%20(Alternate%20Take).m4a - File Folder Count4 - Library Folder Count1 - - 6576 - - Track ID6576 - NameFlight 19 (Alternate Take) - ArtistAndrew Hill - ComposerAndrew Hill - AlbumPoint Of Departure - GenreJazz - KindAAC audio file - Size7313988 - Total Time229506 - Disc Number1 - Disc Count1 - Track Number7 - Track Count8 - Year1964 - Date Modified2008-11-04T13:27:49Z - Date Added2009-10-03T14:59:49Z - Bit Rate256 - Sample Rate44100 - Normalization1141 - Artwork Count1 - Persistent IDF2D93DC442AF59D0 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Andrew%20Hill/Point%20Of%20Departure/07%20Flight%2019%20(Alternate%20Take).m4a - File Folder Count4 - Library Folder Count1 - - 6578 - - Track ID6578 - NameDedication (Alternate Take) - ArtistAndrew Hill - ComposerAndrew Hill - AlbumPoint Of Departure - GenreJazz - KindAAC audio file - Size13400496 - Total Time421040 - Disc Number1 - Disc Count1 - Track Number8 - Track Count8 - Year1964 - Date Modified2008-11-04T13:27:48Z - Date Added2009-10-03T14:59:49Z - Bit Rate256 - Sample Rate44100 - Normalization1452 - Artwork Count1 - Persistent ID87B859738272E548 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Andrew%20Hill/Point%20Of%20Departure/08%20Dedication%20(Alternate%20Take).m4a - File Folder Count4 - Library Folder Count1 - - 6580 - - Track ID6580 - NameDebe - ArtistAli Farka Touré & Toumani Diabeté - ComposerTraditional, Arranged by Ali Farka Touré & Toumani Diabeté - AlbumIn The Heart Of The Moon - GenreWorld - KindAAC audio file - Size7183541 - Total Time295588 - Disc Number1 - Disc Count1 - Track Number1 - Track Count12 - Year2005 - Date Modified2006-09-05T15:58:00Z - Date Added2009-10-03T14:59:49Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Persistent ID009227F36E2BCE96 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ali%20Farka%20Toure%CC%81%20&%20Toumani%20Diabete%CC%81/In%20The%20Heart%20Of%20The%20Moon/01%20Debe.m4a - File Folder Count4 - Library Folder Count1 - - 6582 - - Track ID6582 - NameKala - ArtistAli Farka Touré & Toumani Diabeté - ComposerTraditional, Arranged by Toumani Diabeté - AlbumIn The Heart Of The Moon - GenreWorld - KindAAC audio file - Size7452632 - Total Time306710 - Disc Number1 - Disc Count1 - Track Number2 - Track Count12 - Year2005 - Date Modified2006-09-05T15:57:58Z - Date Added2009-10-03T14:59:49Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Persistent IDC3DFE7F9BC9B0BE7 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ali%20Farka%20Toure%CC%81%20&%20Toumani%20Diabete%CC%81/In%20The%20Heart%20Of%20The%20Moon/02%20Kala.m4a - File Folder Count4 - Library Folder Count1 - - 6584 - - Track ID6584 - NameMamadou Boutiquier - ArtistAli Farka Touré & Toumani Diabeté - ComposerTraditional, Arranged by Toumani Diabeté - AlbumIn The Heart Of The Moon - GenreWorld - KindAAC audio file - Size7410341 - Total Time304969 - Disc Number1 - Disc Count1 - Track Number3 - Track Count12 - Year2005 - Date Modified2006-09-05T15:57:58Z - Date Added2009-10-03T14:59:49Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Persistent ID9AE2BF896792DB2C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ali%20Farka%20Toure%CC%81%20&%20Toumani%20Diabete%CC%81/In%20The%20Heart%20Of%20The%20Moon/03%20Mamadou%20Boutiquier.m4a - File Folder Count4 - Library Folder Count1 - - 6586 - - Track ID6586 - NameMonsieur Le Maire De Niafunké - ArtistAli Farka Touré & Toumani Diabeté - ComposerToumani Diabeté - AlbumIn The Heart Of The Moon - GenreWorld - KindAAC audio file - Size5816225 - Total Time238908 - Disc Number1 - Disc Count1 - Track Number4 - Track Count12 - Year2005 - Date Modified2006-09-05T15:57:56Z - Date Added2009-10-03T14:59:50Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Persistent IDF4BC7B27A3999C0C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ali%20Farka%20Toure%CC%81%20&%20Toumani%20Diabete%CC%81/In%20The%20Heart%20Of%20The%20Moon/04%20Monsieur%20Le%20Maire%20De%20Niafunke%CC%81.m4a - File Folder Count4 - Library Folder Count1 - - 6588 - - Track ID6588 - NameKaira - ArtistAli Farka Touré & Toumani Diabeté - ComposerTraditional, Arranged by Ali Farka Touré & Toumani Diabeté - AlbumIn The Heart Of The Moon - GenreWorld - KindAAC audio file - Size9345078 - Total Time384915 - Disc Number1 - Disc Count1 - Track Number5 - Track Count12 - Year2005 - Date Modified2006-09-05T15:57:56Z - Date Added2009-10-03T14:59:50Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Persistent ID75BDFE622498FF00 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ali%20Farka%20Toure%CC%81%20&%20Toumani%20Diabete%CC%81/In%20The%20Heart%20Of%20The%20Moon/05%20Kaira.m4a - File Folder Count4 - Library Folder Count1 - - 6590 - - Track ID6590 - NameSimbo - ArtistAli Farka Touré & Toumani Diabeté - ComposerTraditional, Arranged by Ali Farka Touré & Toumani Diabeté - AlbumIn The Heart Of The Moon - GenreWorld - KindAAC audio file - Size5847429 - Total Time240208 - Disc Number1 - Disc Count1 - Track Number6 - Track Count12 - Year2005 - Date Modified2006-09-05T15:57:54Z - Date Added2009-10-03T14:59:50Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Persistent ID1C654ECEB4AAA828 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ali%20Farka%20Toure%CC%81%20&%20Toumani%20Diabete%CC%81/In%20The%20Heart%20Of%20The%20Moon/06%20Simbo.m4a - File Folder Count4 - Library Folder Count1 - - 6592 - - Track ID6592 - NameAi Ga Bani - ArtistAli Farka Touré & Toumani Diabeté - ComposerAli Farka Touré - AlbumIn The Heart Of The Moon - GenreWorld - KindAAC audio file - Size6672268 - Total Time274458 - Disc Number1 - Disc Count1 - Track Number7 - Track Count12 - Year2005 - Date Modified2006-09-05T15:57:54Z - Date Added2009-10-03T14:59:50Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Persistent IDCF1ED35B2D16F72B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ali%20Farka%20Toure%CC%81%20&%20Toumani%20Diabete%CC%81/In%20The%20Heart%20Of%20The%20Moon/07%20Ai%20Ga%20Bani.m4a - File Folder Count4 - Library Folder Count1 - - 6594 - - Track ID6594 - NameSoumbou Ya Ya - ArtistAli Farka Touré & Toumani Diabeté - ComposerTraditional, Arranged by Ali Farka Touré & Toumani Diabeté - AlbumIn The Heart Of The Moon - GenreWorld - KindAAC audio file - Size5129172 - Total Time210301 - Disc Number1 - Disc Count1 - Track Number8 - Track Count12 - Year2005 - Date Modified2006-09-05T15:57:52Z - Date Added2009-10-03T14:59:50Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Persistent ID7C4834B6D2A8BC5C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ali%20Farka%20Toure%CC%81%20&%20Toumani%20Diabete%CC%81/In%20The%20Heart%20Of%20The%20Moon/08%20Soumbou%20Ya%20Ya.m4a - File Folder Count4 - Library Folder Count1 - - 6596 - - Track ID6596 - NameNaweye Toro - ArtistAli Farka Touré & Toumani Diabeté - ComposerTraditional, Arranged by Ali Farka Touré & Toumani Diabeté - AlbumIn The Heart Of The Moon - GenreWorld - KindAAC audio file - Size6415303 - Total Time263846 - Disc Number1 - Disc Count1 - Track Number9 - Track Count12 - Year2005 - Date Modified2006-09-05T15:57:52Z - Date Added2009-10-03T14:59:50Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Persistent ID4F2EEA8C22C0063D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ali%20Farka%20Toure%CC%81%20&%20Toumani%20Diabete%CC%81/In%20The%20Heart%20Of%20The%20Moon/09%20Naweye%20Toro.m4a - File Folder Count4 - Library Folder Count1 - - 6598 - - Track ID6598 - NameKadi Kadi - ArtistAli Farka Touré & Toumani Diabeté - ComposerAli Farka Touré - AlbumIn The Heart Of The Moon - GenreWorld - KindAAC audio file - Size4914279 - Total Time201361 - Disc Number1 - Disc Count1 - Track Number10 - Track Count12 - Year2005 - Date Modified2006-09-05T15:57:50Z - Date Added2009-10-03T14:59:50Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Persistent ID2A57459C4A5A6A2D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ali%20Farka%20Toure%CC%81%20&%20Toumani%20Diabete%CC%81/In%20The%20Heart%20Of%20The%20Moon/10%20Kadi%20Kadi.m4a - File Folder Count4 - Library Folder Count1 - - 6600 - - Track ID6600 - NameGomni - ArtistAli Farka Touré & Toumani Diabeté - ComposerAli Farka Touré - AlbumIn The Heart Of The Moon - GenreWorld - KindAAC audio file - Size6262793 - Total Time257507 - Disc Number1 - Disc Count1 - Track Number11 - Track Count12 - Year2005 - Date Modified2006-09-05T15:57:50Z - Date Added2009-10-03T14:59:51Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Persistent IDABC1C84DDF04A690 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ali%20Farka%20Toure%CC%81%20&%20Toumani%20Diabete%CC%81/In%20The%20Heart%20Of%20The%20Moon/11%20Gomni.m4a - File Folder Count4 - Library Folder Count1 - - 6602 - - Track ID6602 - NameHawa Dolo - ArtistAli Farka Touré & Toumani Diabeté - ComposerAli Farka Touré - AlbumIn The Heart Of The Moon - GenreWorld - KindAAC audio file - Size7312714 - Total Time300929 - Disc Number1 - Disc Count1 - Track Number12 - Track Count12 - Year2005 - Date Modified2006-09-05T15:57:50Z - Date Added2009-10-03T14:59:51Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Persistent IDD017B743A8C73E1D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ali%20Farka%20Toure%CC%81%20&%20Toumani%20Diabete%CC%81/In%20The%20Heart%20Of%20The%20Moon/12%20Hawa%20Dolo.m4a - File Folder Count4 - Library Folder Count1 - - 6604 - - Track ID6604 - NameAll I Really Want - ArtistAlanis Morissette - ComposerMorissette, Alanis and Glen Ballard/Music by Alanis Morissette and Glen Ballard. Lyrics by Alanis Morissette. - AlbumJagged Little Pill - GenreRock - KindAAC audio file - Size6994560 - Total Time283760 - Disc Number1 - Disc Count1 - Track Number1 - Track Count13 - Year1995 - Date Modified2008-10-07T13:58:56Z - Date Added2009-10-03T14:59:51Z - Bit Rate192 - Sample Rate44100 - Normalization3230 - Artwork Count1 - Persistent ID3994851EC17097A0 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alanis%20Morissette/Jagged%20Little%20Pill/01%20All%20I%20Really%20Want.m4a - File Folder Count4 - Library Folder Count1 - - 6606 - - Track ID6606 - NameYou Oughta Know - ArtistAlanis Morissette - ComposerMorissette, Alanis and Glen Ballard/Music by Alanis Morissette and Glen Ballard. Lyrics by Alanis Morissette. - AlbumJagged Little Pill - GenreRock - KindAAC audio file - Size6060808 - Total Time248573 - Disc Number1 - Disc Count1 - Track Number2 - Track Count13 - Year1995 - Date Modified2008-10-07T13:58:55Z - Date Added2009-10-03T14:59:51Z - Bit Rate192 - Sample Rate44100 - Normalization3751 - Artwork Count1 - Persistent ID83D18875C337BBCB - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alanis%20Morissette/Jagged%20Little%20Pill/02%20You%20Oughta%20Know.m4a - File Folder Count4 - Library Folder Count1 - - 6608 - - Track ID6608 - NamePerfect - ArtistAlanis Morissette - ComposerMorissette, Alanis and Glen Ballard/Music by Alanis Morissette and Glen Ballard. Lyrics by Alanis Morissette. - AlbumJagged Little Pill - GenreRock - KindAAC audio file - Size4557122 - Total Time185253 - Disc Number1 - Disc Count1 - Track Number3 - Track Count13 - Year1995 - Date Modified2008-10-07T13:58:55Z - Date Added2009-10-03T14:59:51Z - Bit Rate192 - Sample Rate44100 - Normalization1787 - Artwork Count1 - Persistent ID3723821CB434E013 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alanis%20Morissette/Jagged%20Little%20Pill/03%20Perfect.m4a - File Folder Count4 - Library Folder Count1 - - 6610 - - Track ID6610 - NameHand In My Pocket - ArtistAlanis Morissette - ComposerMorissette, Alanis and Glen Ballard/Music by Alanis Morissette and Glen Ballard. Lyrics by Alanis Morissette. - AlbumJagged Little Pill - GenreRock - KindAAC audio file - Size5336015 - Total Time219333 - Disc Number1 - Disc Count1 - Track Number4 - Track Count13 - Year1995 - Date Modified2008-10-07T13:58:54Z - Date Added2009-10-03T14:59:51Z - Bit Rate192 - Sample Rate44100 - Normalization1951 - Artwork Count1 - Persistent ID59E1B50342384287 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alanis%20Morissette/Jagged%20Little%20Pill/04%20Hand%20In%20My%20Pocket.m4a - File Folder Count4 - Library Folder Count1 - - 6612 - - Track ID6612 - NameRight Through You - ArtistAlanis Morissette - ComposerMorissette, Alanis and Glen Ballard/Music by Alanis Morissette and Glen Ballard. Lyrics by Alanis Morissette. - AlbumJagged Little Pill - GenreRock - KindAAC audio file - Size4258198 - Total Time174533 - Disc Number1 - Disc Count1 - Track Number5 - Track Count13 - Year1995 - Date Modified2008-10-07T13:58:54Z - Date Added2009-10-03T14:59:52Z - Bit Rate192 - Sample Rate44100 - Normalization4757 - Artwork Count1 - Persistent ID45408FF01779DEC9 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alanis%20Morissette/Jagged%20Little%20Pill/05%20Right%20Through%20You.m4a - File Folder Count4 - Library Folder Count1 - - 6614 - - Track ID6614 - NameForgiven - ArtistAlanis Morissette - ComposerMorissette, Alanis and Glen Ballard/Music by Alanis Morissette and Glen Ballard. Lyrics by Alanis Morissette. - AlbumJagged Little Pill - GenreRock - KindAAC audio file - Size7302676 - Total Time297893 - Disc Number1 - Disc Count1 - Track Number6 - Track Count13 - Year1995 - Date Modified2008-10-07T13:58:53Z - Date Added2009-10-03T14:59:52Z - Bit Rate192 - Sample Rate44100 - Normalization5342 - Artwork Count1 - Persistent IDC90329EF6F17591F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alanis%20Morissette/Jagged%20Little%20Pill/06%20Forgiven.m4a - File Folder Count4 - Library Folder Count1 - - 6616 - - Track ID6616 - NameYou Learn - ArtistAlanis Morissette - ComposerMorissette, Alanis and Glen Ballard/Music by Alanis Morissette and Glen Ballard. Lyrics by Alanis Morissette. - AlbumJagged Little Pill - GenreRock - KindAAC audio file - Size5759202 - Total Time239240 - Disc Number1 - Disc Count1 - Track Number7 - Track Count13 - Year1995 - Date Modified2008-10-07T13:58:53Z - Date Added2009-10-03T14:59:52Z - Bit Rate192 - Sample Rate44100 - Normalization3655 - Artwork Count1 - Persistent ID4FE2094D93F52180 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alanis%20Morissette/Jagged%20Little%20Pill/07%20You%20Learn.m4a - File Folder Count4 - Library Folder Count1 - - 6618 - - Track ID6618 - NameHead Over Feet - ArtistAlanis Morissette - ComposerMorissette, Alanis and Glen Ballard/Music by Alanis Morissette and Glen Ballard. Lyrics by Alanis Morissette. - AlbumJagged Little Pill - GenreRock - KindAAC audio file - Size6502576 - Total Time264853 - Disc Number1 - Disc Count1 - Track Number8 - Track Count13 - Year1995 - Date Modified2008-10-07T13:58:52Z - Date Added2009-10-03T14:59:52Z - Bit Rate192 - Sample Rate44100 - Normalization3545 - Artwork Count1 - Persistent ID54EB22460E083B63 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alanis%20Morissette/Jagged%20Little%20Pill/08%20Head%20Over%20Feet.m4a - File Folder Count4 - Library Folder Count1 - - 6620 - - Track ID6620 - NameMary Jane - ArtistAlanis Morissette - ComposerMorissette, Alanis and Glen Ballard/Music by Alanis Morissette and Glen Ballard. Lyrics by Alanis Morissette. - AlbumJagged Little Pill - GenreRock - KindAAC audio file - Size6889019 - Total Time279320 - Disc Number1 - Disc Count1 - Track Number9 - Track Count13 - Year1995 - Date Modified2008-10-07T13:58:52Z - Date Added2009-10-03T14:59:52Z - Bit Rate192 - Sample Rate44100 - Normalization3632 - Artwork Count1 - Persistent ID8976FF2411A688BC - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alanis%20Morissette/Jagged%20Little%20Pill/09%20Mary%20Jane.m4a - File Folder Count4 - Library Folder Count1 - - 6622 - - Track ID6622 - NameIronic - ArtistAlanis Morissette - ComposerMorissette, Alanis and Glen Ballard/Music by Alanis Morissette and Glen Ballard. Lyrics by Alanis Morissette. - AlbumJagged Little Pill - GenreRock - KindAAC audio file - Size5611804 - Total Time228213 - Disc Number1 - Disc Count1 - Track Number10 - Track Count13 - Year1995 - Date Modified2008-10-07T13:58:51Z - Date Added2009-10-03T14:59:52Z - Bit Rate192 - Sample Rate44100 - Normalization2369 - Artwork Count1 - Persistent ID3C0288B8ACED2A74 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alanis%20Morissette/Jagged%20Little%20Pill/10%20Ironic.m4a - File Folder Count4 - Library Folder Count1 - - 6624 - - Track ID6624 - NameNot The Doctor - ArtistAlanis Morissette - ComposerMorissette, Alanis and Glen Ballard/Music by Alanis Morissette and Glen Ballard. Lyrics by Alanis Morissette. - AlbumJagged Little Pill - GenreRock - KindAAC audio file - Size5537344 - Total Time225440 - Disc Number1 - Disc Count1 - Track Number11 - Track Count13 - Year1995 - Date Modified2008-10-07T13:58:50Z - Date Added2009-10-03T14:59:52Z - Bit Rate192 - Sample Rate44100 - Normalization2053 - Artwork Count1 - Persistent ID4E88E0524B8AA851 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alanis%20Morissette/Jagged%20Little%20Pill/11%20Not%20The%20Doctor.m4a - File Folder Count4 - Library Folder Count1 - - 6626 - - Track ID6626 - NameWake Up - ArtistAlanis Morissette - ComposerMorissette, Alanis and Glen Ballard/Music by Alanis Morissette and Glen Ballard. Lyrics by Alanis Morissette. - AlbumJagged Little Pill - GenreRock - KindAAC audio file - Size7286911 - Total Time295146 - Disc Number1 - Disc Count1 - Track Number12 - Track Count13 - Year1995 - Date Modified2008-10-07T13:58:50Z - Date Added2009-10-03T14:59:52Z - Bit Rate192 - Sample Rate44100 - Normalization2643 - Artwork Count1 - Persistent ID4AE6D1A57D766C98 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alanis%20Morissette/Jagged%20Little%20Pill/12%20Wake%20Up.m4a - File Folder Count4 - Library Folder Count1 - - 6628 - - Track ID6628 - NameYou Oughta Know [Alternate Take] - ArtistAlanis Morissette - ComposerMorissette, Alanis and Glen Ballard/Music by Alanis Morissette and Glen Ballard. Lyrics by Alanis Morissette. - AlbumJagged Little Pill - GenreRock - KindAAC audio file - Size10405095 - Total Time436373 - Disc Number1 - Disc Count1 - Track Number13 - Track Count13 - Year1995 - Date Modified2008-10-07T13:58:49Z - Date Added2009-10-03T14:59:52Z - Bit Rate192 - Sample Rate44100 - Normalization3923 - Artwork Count1 - Persistent ID7A1826CE7974E37E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alanis%20Morissette/Jagged%20Little%20Pill/13%20You%20Oughta%20Know%20%5BAlternate%20Take%5D.m4a - File Folder Count4 - Library Folder Count1 - - 6630 - - Track ID6630 - NameHells Bells - ArtistAC/DC - AlbumBack In Black - GenreRock - KindAAC audio file - Size7667370 - Total Time312400 - Disc Number1 - Disc Count1 - Track Number1 - Track Count10 - Year1980 - BPM192 - Date Modified2008-10-05T08:16:20Z - Date Added2009-10-03T14:59:53Z - Bit Rate192 - Sample Rate44100 - Normalization7402 - Artwork Count1 - Persistent IDD86D0E111D3AE152 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/AC_DC/Back%20In%20Black/01%20Hells%20Bells.m4a - File Folder Count4 - Library Folder Count1 - - 6632 - - Track ID6632 - NameShoot To Thrill - ArtistAC/DC - AlbumBack In Black - GenreRock - KindAAC audio file - Size7870311 - Total Time317600 - Disc Number1 - Disc Count1 - Track Number2 - Track Count10 - Year1980 - BPM192 - Date Modified2008-10-05T08:16:21Z - Date Added2009-10-03T14:59:53Z - Bit Rate192 - Sample Rate44100 - Normalization8159 - Artwork Count1 - Persistent ID95970EC01A2DE92D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/AC_DC/Back%20In%20Black/02%20Shoot%20To%20Thrill.m4a - File Folder Count4 - Library Folder Count1 - - 6634 - - Track ID6634 - NameWhat Do You Do For Money Honey - ArtistAC/DC - AlbumBack In Black - GenreRock - KindAAC audio file - Size5294181 - Total Time215226 - Disc Number1 - Disc Count1 - Track Number3 - Track Count10 - Year1980 - BPM192 - Date Modified2008-10-05T08:16:21Z - Date Added2009-10-03T14:59:53Z - Bit Rate192 - Sample Rate44100 - Normalization9486 - Artwork Count1 - Persistent IDA0C483F13547A462 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/AC_DC/Back%20In%20Black/03%20What%20Do%20You%20Do%20For%20Money%20Honey.m4a - File Folder Count4 - Library Folder Count1 - - 6636 - - Track ID6636 - NameGivin' The Dog A Bone - ArtistAC/DC - AlbumBack In Black - GenreRock - KindAAC audio file - Size5259571 - Total Time211933 - Disc Number1 - Disc Count1 - Track Number4 - Track Count10 - Year1980 - BPM192 - Date Modified2008-10-05T08:16:22Z - Date Added2009-10-03T14:59:53Z - Bit Rate192 - Sample Rate44100 - Normalization9997 - Artwork Count1 - Persistent IDE8C44542D30DAFDB - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/AC_DC/Back%20In%20Black/04%20Givin'%20The%20Dog%20A%20Bone.m4a - File Folder Count4 - Library Folder Count1 - - 6638 - - Track ID6638 - NameLet Me Put My Love Into You - ArtistAC/DC - AlbumBack In Black - GenreRock - KindAAC audio file - Size6322986 - Total Time255640 - Disc Number1 - Disc Count1 - Track Number5 - Track Count10 - Year1980 - BPM192 - Date Modified2008-10-05T08:16:22Z - Date Added2009-10-03T14:59:53Z - Bit Rate192 - Sample Rate44100 - Normalization9818 - Artwork Count1 - Persistent IDB67ECBF7506690A1 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/AC_DC/Back%20In%20Black/05%20Let%20Me%20Put%20My%20Love%20Into%20You.m4a - File Folder Count4 - Library Folder Count1 - - 6640 - - Track ID6640 - NameBack In Black - ArtistAC/DC - AlbumBack In Black - GenreRock - KindAAC audio file - Size6320595 - Total Time255293 - Disc Number1 - Disc Count1 - Track Number6 - Track Count10 - Year1980 - BPM192 - Date Modified2008-10-05T08:16:23Z - Date Added2009-10-03T14:59:53Z - Bit Rate192 - Sample Rate44100 - Normalization8072 - Artwork Count1 - Persistent ID99CE6E3C3D06603B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/AC_DC/Back%20In%20Black/06%20Back%20In%20Black.m4a - File Folder Count4 - Library Folder Count1 - - 6642 - - Track ID6642 - NameYou Shook Me All Night Long - ArtistAC/DC - AlbumBack In Black - GenreRock - KindAAC audio file - Size5212877 - Total Time210200 - Disc Number1 - Disc Count1 - Track Number7 - Track Count10 - Year1980 - BPM192 - Date Modified2008-10-05T08:16:23Z - Date Added2009-10-03T14:59:53Z - Bit Rate192 - Sample Rate44100 - Normalization8405 - Artwork Count1 - Persistent IDEACF76E16B8DA6B6 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/AC_DC/Back%20In%20Black/07%20You%20Shook%20Me%20All%20Night%20Long.m4a - File Folder Count4 - Library Folder Count1 - - 6644 - - Track ID6644 - NameHave A Drink On Me - ArtistAC/DC - AlbumBack In Black - GenreRock - KindAAC audio file - Size5902918 - Total Time238640 - Disc Number1 - Disc Count1 - Track Number8 - Track Count10 - Year1980 - BPM192 - Date Modified2008-10-05T08:16:24Z - Date Added2009-10-03T14:59:54Z - Bit Rate192 - Sample Rate44100 - Normalization8482 - Artwork Count1 - Persistent ID826F899140006034 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/AC_DC/Back%20In%20Black/08%20Have%20A%20Drink%20On%20Me.m4a - File Folder Count4 - Library Folder Count1 - - 6646 - - Track ID6646 - NameShake A Leg - ArtistAC/DC - AlbumBack In Black - GenreRock - KindAAC audio file - Size6071578 - Total Time245493 - Disc Number1 - Disc Count1 - Track Number9 - Track Count10 - Year1980 - BPM192 - Date Modified2008-10-05T08:16:24Z - Date Added2009-10-03T14:59:54Z - Bit Rate192 - Sample Rate44100 - Normalization9676 - Artwork Count1 - Persistent IDACBAD1A184EA7D5F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/AC_DC/Back%20In%20Black/09%20Shake%20A%20Leg.m4a - File Folder Count4 - Library Folder Count1 - - 6648 - - Track ID6648 - NameRock And Roll Ain't Noise Pollution - ArtistAC/DC - AlbumBack In Black - GenreRock - KindAAC audio file - Size6333791 - Total Time266040 - Disc Number1 - Disc Count1 - Track Number10 - Track Count10 - Year1980 - BPM192 - Date Modified2008-10-05T08:16:25Z - Date Added2009-10-03T14:59:54Z - Bit Rate192 - Sample Rate44100 - Normalization6777 - Artwork Count1 - Persistent IDAE41B4395D9C8A77 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/AC_DC/Back%20In%20Black/10%20Rock%20And%20Roll%20Ain't%20Noise%20Pollution.m4a - File Folder Count4 - Library Folder Count1 - - 6650 - - Track ID6650 - NameLalkaar - ArtistAamir Khan & Chorus - Composera r rahman - AlbumRang De Basanti - GenreSoundtracks - KindAAC audio file - Size4270741 - Total Time176772 - Track Number9 - Date Modified2007-04-09T09:37:24Z - Date Added2009-10-03T15:00:49Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Sort Composerr rahman - Persistent ID9CC41C25C8E18118 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Aamir%20Khan%20&%20Chorus/Rang%20De%20Basanti/09%20Lalkaar.m4a - File Folder Count4 - Library Folder Count1 - - 6652 - - Track ID6652 - NameLalkaar - ArtistAamir Khan & Chorus - Composera r rahman - AlbumRang De Basanti - GenreSoundtracks - KindAAC audio file - Size4255241 - Total Time176750 - Track Number9 - Date Modified2007-07-27T06:39:12Z - Date Added2009-10-03T15:00:50Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Sort Composerr rahman - Persistent ID9BACD11B50FD5380 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Aamir%20Khan%20&%20Chorus/Rang%20De%20Basanti/09%20Lalkaar%201.m4a - File Folder Count4 - Library Folder Count1 - - 6654 - - Track ID6654 - NameLalkaar - ArtistAamir Khan & Chorus - Composera r rahman - AlbumRang De Basanti - GenreSoundtracks - KindAAC audio file - Size4270741 - Total Time176772 - Track Number9 - Date Modified2006-12-27T10:38:34Z - Date Added2009-10-03T15:00:50Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Sort Composerr rahman - Persistent ID2FCADCC2E978A693 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Aamir%20Khan%20&%20Chorus/Rang%20De%20Basanti/09%20Lalkaar%202.m4a - File Folder Count4 - Library Folder Count1 - - 6656 - - Track ID6656 - NameLalkaar - ArtistAamir Khan & Chorus - Composera r rahman - AlbumRang De Basanti - GenreSoundtracks - KindAAC audio file - Size4169224 - Total Time176750 - Track Number9 - Date Modified2007-12-02T08:06:59Z - Date Added2009-10-03T15:00:50Z - Bit Rate187 - Sample Rate44100 - Normalization1259 - Sort Composerr rahman - Persistent IDE55810F1ACF024EE - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Aamir%20Khan%20&%20Chorus/Rang%20De%20Basanti/09%20Lalkaar%203.m4a - File Folder Count4 - Library Folder Count1 - - 6658 - - Track ID6658 - NameChale Chalo - ArtistA.R. Rahman, Srinivas - ComposerA.R. Rahman - AlbumLagaan: Once Upon A Time In India - GenreSoundtrack - KindAAC audio file - Size9727450 - Total Time400449 - Disc Number1 - Disc Count1 - Track Number5 - Track Count8 - Year2001 - Date Modified2006-07-29T04:05:52Z - Date Added2009-10-03T15:00:50Z - Bit Rate192 - Sample Rate44100 - Skip Count2 - Skip Date2014-06-04T05:21:18Z - Normalization1629 - Artwork Count1 - Persistent ID442EC2B3BD3B548C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/A.R.%20Rahman,%20Srinivas/Lagaan_%20Once%20Upon%20A%20Time%20In%20India/05%20Chale%20Chalo.m4a - File Folder Count4 - Library Folder Count1 - - 6660 - - Track ID6660 - NameRoobaroo - ArtistA R Rahman, Naresh Iyer - Composera r rahman - AlbumRang De Basanti - GenreSoundtracks - KindAAC audio file - Size6848853 - Total Time283026 - Track Number10 - Date Modified2007-04-01T07:26:48Z - Date Added2009-10-03T15:00:50Z - Bit Rate192 - Sample Rate44100 - Normalization2489 - Artwork Count1 - Sort ArtistR Rahman, Naresh Iyer - Sort Composerr rahman - Persistent ID705624DDFD6638C0 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/A%20R%20Rahman,%20Naresh%20Iyer/Rang%20De%20Basanti/10%20Roobaroo.m4a - File Folder Count4 - Library Folder Count1 - - 6662 - - Track ID6662 - NameRoobaroo - ArtistA R Rahman, Naresh Iyer - Composera r rahman - AlbumRang De Basanti - GenreSoundtracks - KindAAC audio file - Size6802512 - Total Time283004 - Track Number10 - Date Modified2007-07-27T06:39:30Z - Date Added2009-10-03T15:00:50Z - Bit Rate192 - Sample Rate44100 - Normalization2489 - Sort ArtistR Rahman, Naresh Iyer - Sort Composerr rahman - Persistent ID083845475EAD97F0 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/A%20R%20Rahman,%20Naresh%20Iyer/Rang%20De%20Basanti/10%20Roobaroo%201.m4a - File Folder Count4 - Library Folder Count1 - - 6664 - - Track ID6664 - NameRoobaroo - ArtistA R Rahman, Naresh Iyer - Composera r rahman - AlbumRang De Basanti - GenreSoundtracks - KindAAC audio file - Size6848853 - Total Time283026 - Track Number10 - Date Modified2007-04-09T08:52:44Z - Date Added2009-10-03T15:00:51Z - Bit Rate192 - Sample Rate44100 - Normalization2489 - Artwork Count1 - Sort ArtistR Rahman, Naresh Iyer - Sort Composerr rahman - Persistent ID85823B1E6FC3F205 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/A%20R%20Rahman,%20Naresh%20Iyer/Rang%20De%20Basanti/10%20Roobaroo%202.m4a - File Folder Count4 - Library Folder Count1 - - 6666 - - Track ID6666 - NameRoobaroo - ArtistA R Rahman, Naresh Iyer - Composera r rahman - AlbumRang De Basanti - GenreSoundtracks - KindAAC audio file - Size6691046 - Total Time283004 - Track Number10 - Date Modified2007-12-02T08:07:16Z - Date Added2009-10-03T15:00:51Z - Bit Rate187 - Sample Rate44100 - Normalization2489 - Sort ArtistR Rahman, Naresh Iyer - Sort Composerr rahman - Persistent ID77BE5E51CC311979 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/A%20R%20Rahman,%20Naresh%20Iyer/Rang%20De%20Basanti/10%20Roobaroo%203.m4a - File Folder Count4 - Library Folder Count1 - - 6668 - - Track ID6668 - NameKhalbali - ArtistA R Rahman, Aslam, Nacim - ComposerA R Rahman - AlbumRang De Basanti - GenreSoundtracks - KindAAC audio file - Size9168274 - Total Time379250 - Track Number5 - Date Modified2007-04-09T09:37:02Z - Date Added2009-10-03T15:00:51Z - Bit Rate192 - Sample Rate44100 - Normalization2495 - Artwork Count2 - Sort ArtistR Rahman, Aslam, Nacim - Sort ComposerR Rahman - Persistent ID2B2C617EC4E37CAF - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/A%20R%20Rahman,%20Aslam,%20Nacim/Rang%20De%20Basanti/05%20Khalbali.m4a - File Folder Count4 - Library Folder Count1 - - 6670 - - Track ID6670 - NameKhalbali - ArtistA R Rahman, Aslam, Nacim - ComposerA R Rahman - AlbumRang De Basanti - GenreSoundtracks - KindAAC audio file - Size9161232 - Total Time379228 - Track Number5 - Date Modified2007-07-27T06:38:14Z - Date Added2009-10-03T15:00:51Z - Bit Rate192 - Sample Rate44100 - Normalization2495 - Sort ArtistR Rahman, Aslam, Nacim - Sort ComposerR Rahman - Persistent IDBCC349BEF908F257 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/A%20R%20Rahman,%20Aslam,%20Nacim/Rang%20De%20Basanti/05%20Khalbali%201.m4a - File Folder Count4 - Library Folder Count1 - - 6672 - - Track ID6672 - NameKhalbali - ArtistA R Rahman, Aslam, Nacim - ComposerA R Rahman - AlbumRang De Basanti - GenreSoundtracks - KindAAC audio file - Size9161341 - Total Time379250 - Track Number5 - Date Modified2006-12-27T10:36:46Z - Date Added2009-10-03T15:00:51Z - Bit Rate192 - Sample Rate44100 - Normalization2495 - Sort ArtistR Rahman, Aslam, Nacim - Sort ComposerR Rahman - Persistent ID59710F3C92F8D065 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/A%20R%20Rahman,%20Aslam,%20Nacim/Rang%20De%20Basanti/05%20Khalbali%202.m4a - File Folder Count4 - Library Folder Count1 - - 6674 - - Track ID6674 - NameKhalbali - ArtistA R Rahman, Aslam, Nacim - ComposerA R Rahman - AlbumRang De Basanti - GenreSoundtracks - KindAAC audio file - Size9011669 - Total Time379228 - Track Number5 - Date Modified2007-12-02T08:06:05Z - Date Added2009-10-03T15:00:51Z - Bit Rate188 - Sample Rate44100 - Normalization2495 - Sort ArtistR Rahman, Aslam, Nacim - Sort ComposerR Rahman - Persistent IDEF157ACE720EDD0D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/A%20R%20Rahman,%20Aslam,%20Nacim/Rang%20De%20Basanti/05%20Khalbali%203.m4a - File Folder Count4 - Library Folder Count1 - - 6676 - - Track ID6676 - NameTokyo Traffic - ArtistDave Brubeck Quartet - Album ArtistDave Brubeck - ComposerDave Brubeck - AlbumJazz Impressions of Japan - GenreJazz - KindMPEG audio file - Size11546758 - Total Time353985 - Track Number1 - Year1964 - Date Modified2011-01-18T10:56:19Z - Date Added2009-10-03T15:00:51Z - Bit Rate256 - Sample Rate44100 - Play Count5 - Play Date3426953991 - Play Date UTC2012-08-04T14:09:51Z - Artwork Count1 - Persistent ID29FF6C672331B1F7 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Dave%20Brubeck/Jazz%20Impressions%20of%20Japan/01%20Tokyo%20Traffic.mp3 - File Folder Count4 - Library Folder Count1 - - 6678 - - Track ID6678 - NameRising Sun - ArtistDave Brubeck Quartet - Album ArtistDave Brubeck - ComposerDave Brubeck - AlbumJazz Impressions of Japan - GenreJazz - KindMPEG audio file - Size9268875 - Total Time282723 - Track Number2 - Year1964 - Date Modified2011-01-18T10:56:20Z - Date Added2009-10-03T15:01:08Z - Bit Rate256 - Sample Rate44100 - Play Count5 - Play Date3426954274 - Play Date UTC2012-08-04T14:14:34Z - Artwork Count1 - Persistent IDB670B19E0945E4B9 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Dave%20Brubeck/Jazz%20Impressions%20of%20Japan/02%20Rising%20Sun.mp3 - File Folder Count4 - Library Folder Count1 - - 6680 - - Track ID6680 - NameToki's Theme from CBS-TV Series, "Mr. Broadway"] - ArtistDave Brubeck Quartet - Album ArtistDave Brubeck - ComposerDave Brubeck - AlbumJazz Impressions of Japan - GenreJazz - KindMPEG audio file - Size4405038 - Total Time130560 - Track Number3 - Year1964 - Date Modified2011-01-18T10:56:20Z - Date Added2009-10-03T15:01:18Z - Bit Rate256 - Sample Rate44100 - Play Count3 - Play Date3426954404 - Play Date UTC2012-08-04T14:16:44Z - Artwork Count1 - Persistent ID96B597F8F3997CB7 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Dave%20Brubeck/Jazz%20Impressions%20of%20Japan/03%20Toki's%20Theme%20from%20CBS-TV%20Series,%20_Mr.%20Broadway_%5D.mp3 - File Folder Count4 - Library Folder Count1 - - 6682 - - Track ID6682 - NameFujiyama - ArtistDave Brubeck Quartet - Album ArtistDave Brubeck - ComposerDave Brubeck - AlbumJazz Impressions of Japan - GenreJazz - KindMPEG audio file - Size10010353 - Total Time305920 - Track Number4 - Year1964 - Date Modified2011-01-18T10:56:21Z - Date Added2009-10-03T15:01:27Z - Bit Rate256 - Sample Rate44100 - Play Count3 - Play Date3426954710 - Play Date UTC2012-08-04T14:21:50Z - Skip Count1 - Skip Date2013-01-20T10:58:33Z - Artwork Count1 - Persistent ID4D6DBFD45088EE05 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Dave%20Brubeck/Jazz%20Impressions%20of%20Japan/04%20Fujiyama.mp3 - File Folder Count4 - Library Folder Count1 - - 6684 - - Track ID6684 - NameZen Is When - ArtistDave Brubeck Quartet - Album ArtistDave Brubeck - ComposerBud Freeman/Leon Pober - AlbumJazz Impressions of Japan - GenreJazz - KindMPEG audio file - Size5838706 - Total Time175412 - Track Number5 - Year1964 - Date Modified2011-01-18T10:56:21Z - Date Added2009-10-03T15:01:39Z - Bit Rate256 - Sample Rate44100 - Play Count3 - Play Date3426954886 - Play Date UTC2012-08-04T14:24:46Z - Artwork Count1 - Persistent IDD8EFE861640F4795 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Dave%20Brubeck/Jazz%20Impressions%20of%20Japan/05%20Zen%20Is%20When.mp3 - File Folder Count4 - Library Folder Count1 - - 6686 - - Track ID6686 - NameThe City Is Crying - ArtistDave Brubeck Quartet - Album ArtistDave Brubeck - ComposerDave Brubeck - AlbumJazz Impressions of Japan - GenreJazz - KindMPEG audio file - Size11859888 - Total Time363781 - Track Number6 - Year1964 - Date Modified2011-01-18T10:56:22Z - Date Added2009-10-03T15:01:46Z - Bit Rate256 - Sample Rate44100 - Play Count3 - Play Date3426955250 - Play Date UTC2012-08-04T14:30:50Z - Artwork Count1 - Sort NameCity Is Crying - Persistent IDA133A08607B1B597 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Dave%20Brubeck/Jazz%20Impressions%20of%20Japan/06%20The%20City%20Is%20Crying.mp3 - File Folder Count4 - Library Folder Count1 - - 6688 - - Track ID6688 - NameOsaka Blues - ArtistDave Brubeck Quartet - Album ArtistDave Brubeck - ComposerDave Brubeck - AlbumJazz Impressions of Japan - GenreJazz - KindMPEG audio file - Size10201571 - Total Time311902 - Track Number7 - Year1964 - Date Modified2011-01-18T10:56:23Z - Date Added2009-10-03T15:02:02Z - Bit Rate256 - Sample Rate44100 - Play Count4 - Play Date3438965165 - Play Date UTC2012-12-21T14:36:05Z - Artwork Count1 - Persistent IDF15844D773013924 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Dave%20Brubeck/Jazz%20Impressions%20of%20Japan/07%20Osaka%20Blues.mp3 - File Folder Count4 - Library Folder Count1 - - 6690 - - Track ID6690 - NameKoto Song - ArtistDave Brubeck Quartet - Album ArtistDave Brubeck - ComposerDave Brubeck - AlbumJazz Impressions of Japan - GenreJazz - KindMPEG audio file - Size6031579 - Total Time181446 - Track Number8 - Year1964 - Date Modified2011-01-18T10:56:24Z - Date Added2009-10-03T15:02:15Z - Bit Rate256 - Sample Rate44100 - Play Count5 - Play Date3438965346 - Play Date UTC2012-12-21T14:39:06Z - Artwork Count1 - Persistent IDFA7140175EA6C9FD - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Dave%20Brubeck/Jazz%20Impressions%20of%20Japan/08%20Koto%20Song.mp3 - File Folder Count4 - Library Folder Count1 - - 6692 - - Track ID6692 - NameBlackbird - ArtistThe Beatles - Album ArtistThe Beatles - ComposerJohn Lennon/Paul McCartney - AlbumThe Beatles [White Album] Disc 1 - GenreRock - KindMPEG audio file - Size5532460 - Total Time138318 - Track Number11 - Year1968 - Date Modified2009-11-02T12:44:32Z - Date Added2009-11-02T12:45:42Z - Bit Rate320 - Sample Rate44100 - Play Count2 - Play Date3393072727 - Play Date UTC2011-07-09T10:42:07Z - Sort AlbumBeatles [White Album] Disc 1 - Sort Album ArtistBeatles - Sort ArtistBeatles - Persistent IDD813DF2764CEB544 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/The%20Beatles%20%5BWhite%20Album%5D%20Disc%201/11%20Blackbird.mp3 - File Folder Count4 - Library Folder Count1 - - 6706 - - Track ID6706 - NameI Loves You Porgy - ArtistJoshua Bell;Chris Botti - Album ArtistJoshua Bell - ComposerGeorge Gershwin - AlbumAt Home With Friends - GenreClassical - KindMPEG audio file - Size7777688 - Total Time253675 - Disc Number1 - Disc Count1 - Track Number1 - Track Count16 - Year2009 - Date Modified2009-11-14T14:04:07Z - Date Added2009-11-14T14:31:10Z - Bit Rate243 - Sample Rate44100 - CommentsAmazon.com Song ID: 212882168 - Play Count1 - Play Date3341074826 - Play Date UTC2009-11-14T14:50:26Z - Artwork Count1 - Persistent IDCD1B6B022DD5D0DB - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Joshua%20Bell/At%20Home%20With%20Friends/01%20I%20Loves%20You%20Porgy.mp3 - File Folder Count4 - Library Folder Count1 - - 6708 - - Track ID6708 - NameCome Again - ArtistJoshua Bell;Sting - Album ArtistJoshua Bell - ComposerJohn Dowland - AlbumAt Home With Friends - GenreClassical - KindMPEG audio file - Size7128175 - Total Time237792 - Disc Number1 - Disc Count1 - Track Number2 - Track Count16 - Year2009 - Date Modified2009-11-14T14:04:47Z - Date Added2009-11-14T14:31:10Z - Bit Rate238 - Sample Rate44100 - CommentsAmazon.com Song ID: 212882172 - Artwork Count1 - Persistent IDD09ECC74E621F599 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Joshua%20Bell/At%20Home%20With%20Friends/02%20Come%20Again.mp3 - File Folder Count4 - Library Folder Count1 - - 6710 - - Track ID6710 - NameOblivion - ArtistJoshua Bell;Carel Kraayenhof - Album ArtistJoshua Bell - ComposerAstor Piazzola - AlbumAt Home With Friends - GenreClassical - KindMPEG audio file - Size7184922 - Total Time234422 - Disc Number1 - Disc Count1 - Track Number3 - Track Count16 - Year2009 - Date Modified2009-11-14T14:05:29Z - Date Added2009-11-14T14:31:10Z - Bit Rate243 - Sample Rate44100 - CommentsAmazon.com Song ID: 212882158 - Artwork Count1 - Persistent ID443416A2402C004D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Joshua%20Bell/At%20Home%20With%20Friends/03%20Oblivion.mp3 - File Folder Count4 - Library Folder Count1 - - 6712 - - Track ID6712 - NameCinema Paradiso - ArtistJoshua Bell;Josh Groban - Album ArtistJoshua Bell - ComposerEnnio Morricone - AlbumAt Home With Friends - GenreClassical - KindMPEG audio file - Size8300053 - Total Time267859 - Disc Number1 - Disc Count1 - Track Number4 - Track Count16 - Year2009 - Date Modified2009-11-14T14:06:55Z - Date Added2009-11-14T14:31:10Z - Bit Rate246 - Sample Rate44100 - CommentsAmazon.com Song ID: 212882161 - Play Count1 - Play Date3341074124 - Play Date UTC2009-11-14T14:38:44Z - Artwork Count1 - Persistent ID888E393D79789A60 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Joshua%20Bell/At%20Home%20With%20Friends/04%20Cinema%20Paradiso.mp3 - File Folder Count4 - Library Folder Count1 - - 6714 - - Track ID6714 - NamePara Tí - ArtistJoshua Bell;Tiempo Libre - Album ArtistJoshua Bell - ComposerJorge Gomez - AlbumAt Home With Friends - GenreClassical - KindMPEG audio file - Size7458082 - Total Time226037 - Disc Number1 - Disc Count1 - Track Number5 - Track Count16 - Year2009 - Date Modified2009-11-14T14:08:06Z - Date Added2009-11-14T14:31:10Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 212882167 - Artwork Count1 - Persistent IDC2AA45269942E7DF - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Joshua%20Bell/At%20Home%20With%20Friends/05%20Para%20Ti%CC%81.mp3 - File Folder Count4 - Library Folder Count1 - - 6716 - - Track ID6716 - NameMy Funny Valentine - ArtistJoshua Bell;Kristin Chenoweth - Album ArtistJoshua Bell - ComposerLorenz Hart - AlbumAt Home With Friends - GenreClassical - KindMPEG audio file - Size10506270 - Total Time345678 - Disc Number1 - Disc Count1 - Track Number6 - Track Count16 - Year2009 - Date Modified2009-11-14T14:09:07Z - Date Added2009-11-14T14:31:10Z - Bit Rate242 - Sample Rate44100 - CommentsAmazon.com Song ID: 212882170 - Artwork Count1 - Persistent ID63B2392CA4E6B49B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Joshua%20Bell/At%20Home%20With%20Friends/06%20My%20Funny%20Valentine.mp3 - File Folder Count4 - Library Folder Count1 - - 6718 - - Track ID6718 - NameMaybe So - ArtistJoshua Bell;Edgar Meyer;Sam Bush;Mike Marshall - Album ArtistJoshua Bell - ComposerSam Bush - AlbumAt Home With Friends - GenreClassical - KindMPEG audio file - Size9212307 - Total Time290586 - Disc Number1 - Disc Count1 - Track Number7 - Track Count16 - Year2009 - Date Modified2009-11-14T14:10:10Z - Date Added2009-11-14T14:31:10Z - Bit Rate252 - Sample Rate44100 - CommentsAmazon.com Song ID: 212882165 - Artwork Count1 - Persistent IDB7B9932DA28DAD07 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Joshua%20Bell/At%20Home%20With%20Friends/07%20Maybe%20So.mp3 - File Folder Count4 - Library Folder Count1 - - 6720 - - Track ID6720 - NameII. Allegretto Espressivo Alla Romanza From Sonata No. 3 In C Minor For Violin And Piano - ArtistJoshua Bell;Sergei Rachmaninoff (Zenph Re-Performance) - Album ArtistJoshua Bell - ComposerEdvard Grieg - AlbumAt Home With Friends - GenreClassical - KindMPEG audio file - Size12305889 - Total Time401057 - Disc Number1 - Disc Count1 - Track Number8 - Track Count16 - Year2009 - Date Modified2009-11-14T14:11:20Z - Date Added2009-11-14T14:31:10Z - Bit Rate244 - Sample Rate44100 - CommentsAmazon.com Song ID: 212882160 - Play Count2 - Play Date3383452198 - Play Date UTC2011-03-20T02:19:58Z - Artwork Count1 - Persistent ID9FAC81C32EE2D52C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Joshua%20Bell/At%20Home%20With%20Friends/08%20II.%20Allegretto%20Espressivo%20Alla%20Romanza%20From%20Sonata%20No.%203%20In%20C%20Minor%20For%20Violin%20And%20Piano.mp3 - File Folder Count4 - Library Folder Count1 - - 6722 - - Track ID6722 - NameEleanor Rigby - ArtistJoshua Bell;Frankie Moreno - Album ArtistJoshua Bell - ComposerJohn Lennon - AlbumAt Home With Friends - GenreClassical - KindMPEG audio file - Size7279100 - Total Time238889 - Disc Number1 - Disc Count1 - Track Number9 - Track Count16 - Year2009 - Date Modified2009-11-14T14:12:02Z - Date Added2009-11-14T14:31:10Z - Bit Rate242 - Sample Rate44100 - CommentsAmazon.com Song ID: 212882157 - Play Count1 - Play Date3341074572 - Play Date UTC2009-11-14T14:46:12Z - Artwork Count1 - Persistent ID55E2C00874869EBA - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Joshua%20Bell/At%20Home%20With%20Friends/09%20Eleanor%20Rigby.mp3 - File Folder Count4 - Library Folder Count1 - - 6724 - - Track ID6724 - NameO, Cease Thy Singing, Maiden Fair, Op. 4 No. 4 - ArtistJoshua Bell;Nathan Gunn - Album ArtistJoshua Bell - ComposerSergie Rachmaninoff - AlbumAt Home With Friends - GenreClassical - KindMPEG audio file - Size7731329 - Total Time252160 - Disc Number1 - Disc Count1 - Track Number10 - Track Count16 - Year2009 - Date Modified2009-11-14T14:12:51Z - Date Added2009-11-14T14:31:10Z - Bit Rate243 - Sample Rate44100 - CommentsAmazon.com Song ID: 212882163 - Artwork Count1 - Persistent IDFAD01F68B35A4885 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Joshua%20Bell/At%20Home%20With%20Friends/10%20O,%20Cease%20Thy%20Singing,%20Maiden%20Fair,%20Op.%204%20No.%204.mp3 - File Folder Count4 - Library Folder Count1 - - 6726 - - Track ID6726 - NameIl Postino - ArtistJoshua Bell;Carel Kraayenhof - Album ArtistJoshua Bell - ComposerLuis Bacalov - AlbumAt Home With Friends - GenreClassical - KindMPEG audio file - Size6705220 - Total Time222040 - Disc Number1 - Disc Count1 - Track Number11 - Track Count16 - Year2009 - Date Modified2009-11-14T14:13:26Z - Date Added2009-11-14T14:31:10Z - Bit Rate239 - Sample Rate44100 - CommentsAmazon.com Song ID: 212882164 - Artwork Count1 - Persistent ID195EF57E5ABC3091 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Joshua%20Bell/At%20Home%20With%20Friends/11%20Il%20Postino.mp3 - File Folder Count4 - Library Folder Count1 - - 6728 - - Track ID6728 - NameLeft Hand Song - ArtistJoshua Bell;Regina Spektor - Album ArtistJoshua Bell - ComposerRegina Spektor - AlbumAt Home With Friends - GenreClassical - KindMPEG audio file - Size5094899 - Total Time166008 - Disc Number1 - Disc Count1 - Track Number12 - Track Count16 - Year2009 - Date Modified2009-11-14T14:13:58Z - Date Added2009-11-14T14:31:10Z - Bit Rate243 - Sample Rate44100 - CommentsAmazon.com Song ID: 212882169 - Artwork Count1 - Persistent ID5BAD2D9CAAFF0D85 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Joshua%20Bell/At%20Home%20With%20Friends/12%20Left%20Hand%20Song.mp3 - File Folder Count4 - Library Folder Count1 - - 6730 - - Track ID6730 - NameChovendo Na Roseira - ArtistJoshua Bell;Dave Grusin - Album ArtistJoshua Bell - ComposerAntonio Carlos Jobim - AlbumAt Home With Friends - GenreClassical - KindMPEG audio file - Size6382061 - Total Time207386 - Disc Number1 - Disc Count1 - Track Number13 - Track Count16 - Year2009 - Date Modified2009-11-14T14:15:39Z - Date Added2009-11-14T14:31:10Z - Bit Rate244 - Sample Rate44100 - CommentsAmazon.com Song ID: 212882171 - Artwork Count1 - Persistent IDBD4D335725E66B60 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Joshua%20Bell/At%20Home%20With%20Friends/13%20Chovendo%20Na%20Roseira.mp3 - File Folder Count4 - Library Folder Count1 - - 6732 - - Track ID6732 - NameLook Away - ArtistJoshua Bell;Edgar Meyer;Chris Thile - Album ArtistJoshua Bell - ComposerChris Thile - AlbumAt Home With Friends - GenreClassical - KindMPEG audio file - Size8005601 - Total Time256574 - Disc Number1 - Disc Count1 - Track Number14 - Track Count16 - Year2009 - Date Modified2009-11-14T14:17:03Z - Date Added2009-11-14T14:31:10Z - Bit Rate248 - Sample Rate44100 - CommentsAmazon.com Song ID: 212882159 - Artwork Count1 - Persistent IDFD60039E6111CC6B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Joshua%20Bell/At%20Home%20With%20Friends/14%20Look%20Away.mp3 - File Folder Count4 - Library Folder Count1 - - 6734 - - Track ID6734 - NameVariant Moods - Duet For Sitar & Violin (Abridged Version) - ArtistJoshua Bell;Anoushka Shankar - Album ArtistJoshua Bell - ComposerRavi Shankar - AlbumAt Home With Friends - GenreClassical - KindMPEG audio file - Size17041186 - Total Time542641 - Disc Number1 - Disc Count1 - Track Number15 - Track Count16 - Year2009 - Date Modified2009-11-14T14:18:44Z - Date Added2009-11-14T14:31:10Z - Bit Rate250 - Sample Rate44100 - CommentsAmazon.com Song ID: 212882162 - Artwork Count1 - Persistent ID3DDC4E25354BF730 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Joshua%20Bell/At%20Home%20With%20Friends/15%20Variant%20Moods%20-%20Duet%20For%20Sitar%20&%20Violin%20(Abridged%20Version).mp3 - File Folder Count4 - Library Folder Count1 - - 6736 - - Track ID6736 - NameI'll Take Manhattan - ArtistJoshua Bell;Marvin Hamlisch - Album ArtistJoshua Bell - ComposerRichard Rodgers - AlbumAt Home With Friends - GenreClassical - KindMPEG audio file - Size6422870 - Total Time206994 - Disc Number1 - Disc Count1 - Track Number16 - Track Count16 - Year2009 - Date Modified2009-11-14T14:19:28Z - Date Added2009-11-14T14:31:10Z - Bit Rate246 - Sample Rate44100 - CommentsAmazon.com Song ID: 212882166 - Play Count1 - Play Date3341075032 - Play Date UTC2009-11-14T14:53:52Z - Artwork Count1 - Persistent ID5F99A9BA6ECAE8D7 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Joshua%20Bell/At%20Home%20With%20Friends/16%20I'll%20Take%20Manhattan.mp3 - File Folder Count4 - Library Folder Count1 - - 6738 - - Track ID6738 - NameJeux interdits (Romance) - ArtistPepe Romero - Album ArtistVarious Artists - ComposerYepes, Narciso - AlbumEssential Guitar - GenreClassical - KindMPEG audio file - Size3642988 - Total Time110106 - Disc Number2 - Disc Count2 - Track Number1 - Track Count19 - Year2002 - Date Modified2009-11-14T14:20:31Z - Date Added2009-11-14T15:03:01Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202532116 - Play Count7 - Play Date3401389562 - Play Date UTC2011-10-13T16:56:02Z - Album Rating80 - Album Rating Computed - Artwork Count1 - Persistent IDFC3ABD5A1D08F4D7 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Essential%20Guitar/2-01%20Jeux%20interdits%20(Romance).mp3 - File Folder Count4 - Library Folder Count1 - - 6740 - - Track ID6740 - NameSuite española, Op.47 - No.3: Sevilla - ArtistEduardo Fernandez - Album ArtistVarious Artists - ComposerAlbéniz, Isaac - AlbumEssential Guitar - GenreClassical - KindMPEG audio file - Size9005423 - Total Time277681 - Disc Number2 - Disc Count2 - Track Number2 - Track Count19 - Year2002 - Date Modified2009-11-14T14:21:37Z - Date Added2009-11-14T15:03:01Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202532117 - Play Count5 - Play Date3400433313 - Play Date UTC2011-10-02T15:18:33Z - Album Rating80 - Album Rating Computed - Artwork Count1 - Persistent ID965A755CEFA291FE - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Essential%20Guitar/2-02%20Suite%20espan%CC%83ola,%20Op.47%20-%20No.3_%20Sevilla.mp3 - File Folder Count4 - Library Folder Count1 - - 6742 - - Track ID6742 - NameSpanish Dance Op.37, No.5 - "Andaluza" - ArtistPepe Romero - Album ArtistVarious Artists - ComposerGranados, Enrique - AlbumEssential Guitar - GenreClassical - KindMPEG audio file - Size7779129 - Total Time239360 - Disc Number2 - Disc Count2 - Track Number3 - Track Count19 - Year2002 - Date Modified2009-11-14T14:22:41Z - Date Added2009-11-14T15:03:01Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202532118 - Play Count7 - Play Date3400958130 - Play Date UTC2011-10-08T17:05:30Z - Album Rating80 - Album Rating Computed - Artwork Count1 - Persistent ID280FFFA3BF5F889F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Essential%20Guitar/2-03%20Spanish%20Dance%20Op.37,%20No.5%20-%20_Andaluza_.mp3 - File Folder Count4 - Library Folder Count1 - - 6744 - - Track ID6744 - NameSuite española, Op.47 - Transcr. Celedonio Romero - Granada (Serenata) - ArtistPepe Romero - Album ArtistVarious Artists - ComposerAlbéniz, Isaac - AlbumEssential Guitar - GenreClassical - KindMPEG audio file - Size8890094 - Total Time274076 - Disc Number2 - Disc Count2 - Track Number4 - Track Count19 - Year2002 - Date Modified2009-11-14T14:23:31Z - Date Added2009-11-14T15:03:01Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202532119 - Play Count6 - Play Date3403724177 - Play Date UTC2011-11-09T17:26:17Z - Album Rating80 - Album Rating Computed - Artwork Count1 - Persistent ID4A9A2E2DEC3CD683 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Essential%20Guitar/2-04%20Suite%20espan%CC%83ola,%20Op.47%20-%20Transcr.%20Celedonio%20Romero%20-%20Granada%20(Serenata).mp3 - File Folder Count4 - Library Folder Count1 - - 6746 - - Track ID6746 - NameOboe Concerto in D minor: Arr. Guitar and Orchestra - 2. Andante sostenuto - ArtistAlexandre Lagoya - Album ArtistVarious Artists - ComposerMarcello, Alessandro - AlbumEssential Guitar - GenreClassical - KindMPEG audio file - Size8547397 - Total Time263366 - Disc Number2 - Disc Count2 - Track Number5 - Track Count19 - Year2002 - Date Modified2009-11-14T14:24:21Z - Date Added2009-11-14T15:03:01Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202532120 - Play Count4 - Play Date3400237117 - Play Date UTC2011-09-30T08:48:37Z - Album Rating80 - Album Rating Computed - Artwork Count1 - Persistent ID20640185FB7F89C8 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Essential%20Guitar/2-05%20Oboe%20Concerto%20in%20D%20minor_%20Arr.%20Guitar%20and%20Orchestra%20-%202.%20Andante%20sostenuto.mp3 - File Folder Count4 - Library Folder Count1 - - 6748 - - Track ID6748 - NameSonata in E, K.380 - Trans. A.Lagoya - ArtistAlexandre Lagoya - Album ArtistVarious Artists - ComposerScarlatti, Domenico - AlbumEssential Guitar - GenreClassical - KindMPEG audio file - Size9983451 - Total Time308244 - Disc Number2 - Disc Count2 - Track Number6 - Track Count19 - Year2002 - Date Modified2009-11-14T14:25:19Z - Date Added2009-11-14T15:03:01Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202532121 - Play Count2 - Play Date3399229097 - Play Date UTC2011-09-18T16:48:17Z - Album Rating80 - Album Rating Computed - Artwork Count1 - Persistent ID95F28EE029D38698 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Essential%20Guitar/2-06%20Sonata%20in%20E,%20K.380%20-%20Trans.%20A.Lagoya.mp3 - File Folder Count4 - Library Folder Count1 - - 6750 - - Track ID6750 - NameSuite for Cello Solo No.3 in C, BWV 1009 - 3. Courante - ArtistPepe Romero - Album ArtistVarious Artists - ComposerJohann Sebastian Bach - AlbumEssential Guitar - GenreClassical - KindMPEG audio file - Size5411828 - Total Time165381 - Disc Number2 - Disc Count2 - Track Number7 - Track Count19 - Year2002 - Date Modified2009-11-14T14:25:51Z - Date Added2009-11-14T15:03:01Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202532122 - Play Count3 - Play Date3401389728 - Play Date UTC2011-10-13T16:58:48Z - Album Rating80 - Album Rating Computed - Artwork Count1 - Persistent ID75AF4871723E914B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Essential%20Guitar/2-07%20Suite%20for%20Cello%20Solo%20No.3%20in%20C,%20BWV%201009%20-%203.%20Courante.mp3 - File Folder Count4 - Library Folder Count1 - - 6752 - - Track ID6752 - NameFantasie Hongroise, Op.65, No.1 - Edited Simon Wynberg - ArtistNicola Hall - Album ArtistVarious Artists - ComposerMertz, Johann Kaspar - AlbumEssential Guitar - GenreClassical - KindMPEG audio file - Size12115892 - Total Time374883 - Disc Number2 - Disc Count2 - Track Number8 - Track Count19 - Year2002 - Date Modified2009-11-14T14:27:18Z - Date Added2009-11-14T15:03:01Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202532123 - Play Count2 - Play Date3400084449 - Play Date UTC2011-09-28T14:24:09Z - Skip Count1 - Skip Date2011-10-11T17:10:53Z - Album Rating80 - Album Rating Computed - Artwork Count1 - Persistent ID5BDA296E87C0FCD0 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Essential%20Guitar/2-08%20Fantasie%20Hongroise,%20Op.65,%20No.1%20-%20Edited%20Simon%20Wynberg.mp3 - File Folder Count4 - Library Folder Count1 - - 6754 - - Track ID6754 - NameBachianas brasileiras No.5 for Soprano and Cellos - ArtistAlexandre Lagoya - Album ArtistVarious Artists - ComposerVilla-Lobos, Heitor - AlbumEssential Guitar - GenreClassical - KindMPEG audio file - Size9124155 - Total Time281391 - Disc Number2 - Disc Count2 - Track Number9 - Track Count19 - Year2002 - Date Modified2009-11-14T14:28:45Z - Date Added2009-11-14T15:03:01Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202532124 - Play Count2 - Play Date3403723594 - Play Date UTC2011-11-09T17:16:34Z - Album Rating80 - Album Rating Computed - Artwork Count1 - Persistent ID1DD8975E48060EBA - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Essential%20Guitar/2-09%20Bachianas%20brasileiras%20No.5%20for%20Soprano%20and%20Cellos.mp3 - File Folder Count4 - Library Folder Count1 - - 6756 - - Track ID6756 - NameFantasía para un gentilhombre for Guitar and Small Orchestra - 1. Villano y Ricercare (Adagietto - Andante moderato) - ArtistAlexandre Lagoya - Album ArtistVarious Artists - ComposerRodrigo, Joaquin - AlbumEssential Guitar - GenreClassical - KindMPEG audio file - Size9278032 - Total Time286197 - Disc Number2 - Disc Count2 - Track Number10 - Track Count19 - Year2002 - Date Modified2009-11-14T14:29:39Z - Date Added2009-11-14T15:03:01Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202532125 - Play Count1 - Play Date3399230205 - Play Date UTC2011-09-18T17:06:45Z - Album Rating80 - Album Rating Computed - Artwork Count1 - Persistent IDD312C04F1C58B493 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Essential%20Guitar/2-10%20Fantasi%CC%81a%20para%20un%20gentilhombre%20for%20Guitar%20and%20Small%20Orchestra%20-%201.%20Villano%20y%20Ricercare%20(Adagietto%20-%20Andante%20moderato).mp3 - File Folder Count4 - Library Folder Count1 - - 6758 - - Track ID6758 - NameConcerto for Cello & Orchestra No.6 in D, G479 - Arr. as Concerto in E for Guitar, Gaspar Cassado (1896/1966) - 2. Andante cantabile - ArtistAndrés Segovia - Album ArtistVarious Artists - ComposerBoccherini, Luigi - AlbumEssential Guitar - GenreClassical - KindMPEG audio file - Size12123508 - Total Time375118 - Disc Number2 - Disc Count2 - Track Number11 - Track Count19 - Year2002 - Date Modified2009-11-14T14:30:46Z - Date Added2009-11-14T15:03:01Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202532126 - Play Count1 - Play Date3399230580 - Play Date UTC2011-09-18T17:13:00Z - Album Rating80 - Album Rating Computed - Artwork Count1 - Persistent IDCC1480C215E84104 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Essential%20Guitar/2-11%20Concerto%20for%20Cello%20&%20Orchestra%20No.6%20in%20D,%20G479%20-%20Arr.%20as%20Concerto%20in%20E%20for%20Guitar,%20Gaspar%20Cassado%20(1896_1966)%20-%202.%20Andante%20cantabile.mp3 - File Folder Count4 - Library Folder Count1 - - 6760 - - Track ID6760 - NamePrelude for Lute in C minor, BWV 999 - transcription for guitar in D minor - ArtistEduardo Fernandez - Album ArtistVarious Artists - ComposerJohann Sebastian Bach - AlbumEssential Guitar - GenreClassical - KindMPEG audio file - Size2973481 - Total Time89182 - Disc Number2 - Disc Count2 - Track Number12 - Track Count19 - Year2002 - Date Modified2009-11-14T14:31:08Z - Date Added2009-11-14T15:03:01Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202532127 - Play Count1 - Play Date3399230669 - Play Date UTC2011-09-18T17:14:29Z - Album Rating80 - Album Rating Computed - Artwork Count1 - Persistent IDF4314B1BA0EB0446 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Essential%20Guitar/2-12%20Prelude%20for%20Lute%20in%20C%20minor,%20BWV%20999%20-%20transcription%20for%20guitar%20in%20D%20minor.mp3 - File Folder Count4 - Library Folder Count1 - - 6762 - - Track ID6762 - Name2 Temas Populares Cubanos - Canción de cuna (Berceuse) - ArtistEduardo Fernandez - Album ArtistVarious Artists - ComposerBrouwer, Leo - AlbumEssential Guitar - GenreClassical - KindMPEG audio file - Size6648985 - Total Time204042 - Disc Number2 - Disc Count2 - Track Number13 - Track Count19 - Year2002 - Date Modified2009-11-14T14:31:48Z - Date Added2009-11-14T15:03:01Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202532128 - Play Count4 - Play Date3403724517 - Play Date UTC2011-11-09T17:31:57Z - Skip Count1 - Album Rating80 - Album Rating Computed - Artwork Count1 - Persistent ID571C25C582881437 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Essential%20Guitar/2-13%202%20Temas%20Populares%20Cubanos%20-%20Cancio%CC%81n%20de%20cuna%20(Berceuse).mp3 - File Folder Count4 - Library Folder Count1 - - 6764 - - Track ID6764 - Name24 Caprices for Violin, Op.1 - Caprice, Op.1, No.24 - ArtistNicola Hall - Album ArtistVarious Artists - ComposerPaganini, Nicolo - AlbumEssential Guitar - GenreClassical - KindMPEG audio file - Size9265405 - Total Time285805 - Disc Number2 - Disc Count2 - Track Number14 - Track Count19 - Year2002 - Date Modified2009-11-14T14:32:46Z - Date Added2009-11-14T15:03:01Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202532129 - Play Count6 - Play Date3400411041 - Play Date UTC2011-10-02T09:07:21Z - Album Rating80 - Album Rating Computed - Artwork Count1 - Persistent ID7F8E5AD6C2C8C991 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Essential%20Guitar/2-14%2024%20Caprices%20for%20Violin,%20Op.1%20-%20Caprice,%20Op.1,%20No.24.mp3 - File Folder Count4 - Library Folder Count1 - - 6766 - - Track ID6766 - NameGuitar Concerto - 3. Con brio - ArtistEduardo Fernandez - Album ArtistVarious Artists - ComposerArnold, Sir Malcolm - AlbumEssential Guitar - GenreClassical - KindMPEG audio file - Size8655187 - Total Time266736 - Disc Number2 - Disc Count2 - Track Number15 - Track Count19 - Year2002 - Date Modified2009-11-14T14:33:38Z - Date Added2009-11-14T15:03:01Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202532130 - Play Count4 - Play Date3401390141 - Play Date UTC2011-10-13T17:05:41Z - Album Rating80 - Album Rating Computed - Artwork Count1 - Persistent ID09128CB198968D4F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Essential%20Guitar/2-15%20Guitar%20Concerto%20-%203.%20Con%20brio.mp3 - File Folder Count4 - Library Folder Count1 - - 6768 - - Track ID6768 - NameBatucada - ArtistEduardo Fernandez - Album ArtistVarious Artists - ComposerSavio, Isaias - AlbumEssential Guitar - GenreClassical - KindMPEG audio file - Size5387540 - Total Time164623 - Disc Number2 - Disc Count2 - Track Number16 - Track Count19 - Year2002 - Date Modified2009-11-14T14:34:06Z - Date Added2009-11-14T15:03:01Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202532131 - Play Count2 - Play Date3400959144 - Play Date UTC2011-10-08T17:22:24Z - Skip Count1 - Skip Date2011-10-09T15:40:43Z - Album Rating80 - Album Rating Computed - Artwork Count1 - Persistent ID8455871D25CDD8D6 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Essential%20Guitar/2-16%20Batucada.mp3 - File Folder Count4 - Library Folder Count1 - - 6770 - - Track ID6770 - NameNoche en Málaga - ArtistLos Romeros - Album ArtistVarious Artists - ComposerRomero, Celedonio - AlbumEssential Guitar - GenreClassical - KindMPEG audio file - Size7766568 - Total Time238968 - Disc Number2 - Disc Count2 - Track Number17 - Track Count19 - Year2002 - Date Modified2009-11-14T14:35:00Z - Date Added2009-11-14T15:03:01Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202532132 - Play Count1 - Play Date3401389451 - Play Date UTC2011-10-13T16:54:11Z - Skip Count1 - Skip Date2011-10-09T15:40:33Z - Album Rating80 - Album Rating Computed - Artwork Count1 - Persistent ID231F0DF119E2A065 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Essential%20Guitar/2-17%20Noche%20en%20Ma%CC%81laga.mp3 - File Folder Count4 - Library Folder Count1 - - 6772 - - Track ID6772 - NameLa Alcazaba (Verdiales) - ArtistPaco Peña - Album ArtistVarious Artists - ComposerPeña, Paco - AlbumEssential Guitar - GenreClassical - KindMPEG audio file - Size6094730 - Total Time186723 - Disc Number2 - Disc Count2 - Track Number18 - Track Count19 - Year2002 - Date Modified2009-11-14T14:36:00Z - Date Added2009-11-14T15:03:01Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202532133 - Album Rating80 - Album Rating Computed - Artwork Count1 - Persistent ID442E04AED91ECED5 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Essential%20Guitar/2-18%20La%20Alcazaba%20(Verdiales).mp3 - File Folder Count4 - Library Folder Count1 - - 6774 - - Track ID6774 - NameEstudio brillante - ArtistEduardo Fernandez - Album ArtistVarious Artists - ComposerAlard, Delphin Jean - AlbumEssential Guitar - GenreClassical - KindMPEG audio file - Size3542683 - Total Time106971 - Disc Number2 - Disc Count2 - Track Number19 - Track Count19 - Year2002 - Date Modified2009-11-14T14:36:23Z - Date Added2009-11-14T15:03:01Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202532134 - Play Count3 - Play Date3400093608 - Play Date UTC2011-09-28T16:56:48Z - Album Rating80 - Album Rating Computed - Artwork Count1 - Persistent ID014D5EB6F224742A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Essential%20Guitar/2-19%20Estudio%20brillante.mp3 - File Folder Count4 - Library Folder Count1 - - 6776 - - Track ID6776 - NameConcierto de Aranjuez for Guitar and Orchestra - 1. Allegro con spirito - ArtistPepe Romero - Album ArtistVarious Artists - ComposerRodrigo, Joaquin - AlbumEssential Guitar - GenreClassical - KindMPEG audio file - Size11733911 - Total Time362945 - Disc Number1 - Disc Count2 - Track Number1 - Track Count18 - Year2002 - Date Modified2009-11-14T14:37:28Z - Date Added2009-11-14T15:03:01Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202532098 - Play Count3 - Play Date3399818796 - Play Date UTC2011-09-25T12:36:36Z - Rating100 - Album Rating80 - Album Rating Computed - Artwork Count1 - Persistent ID3245FADF198007E6 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Essential%20Guitar/1-01%20Concierto%20de%20Aranjuez%20for%20Guitar%20and%20Orchestra%20-%201.%20Allegro%20con%20spirito.mp3 - File Folder Count4 - Library Folder Count1 - - 6778 - - Track ID6778 - NameConcierto de Aranjuez for Guitar and Orchestra - 2. Adagio - ArtistPepe Romero - Album ArtistVarious Artists - ComposerRodrigo, Joaquin - AlbumEssential Guitar - GenreClassical - KindMPEG audio file - Size22230525 - Total Time690964 - Disc Number1 - Disc Count2 - Track Number2 - Track Count18 - Year2002 - Date Modified2009-11-14T14:39:32Z - Date Added2009-11-14T15:03:01Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202532099 - Play Count3 - Play Date3399819589 - Play Date UTC2011-09-25T12:49:49Z - Album Rating80 - Album Rating Computed - Artwork Count1 - Persistent ID8EE79C9C919D8485 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Essential%20Guitar/1-02%20Concierto%20de%20Aranjuez%20for%20Guitar%20and%20Orchestra%20-%202.%20Adagio.mp3 - File Folder Count4 - Library Folder Count1 - - 6780 - - Track ID6780 - NameConcierto de Aranjuez for Guitar and Orchestra - 3. Allegro gentile - ArtistPepe Romero - Album ArtistVarious Artists - ComposerRodrigo, Joaquin - AlbumEssential Guitar - GenreClassical - KindMPEG audio file - Size10010243 - Total Time309080 - Disc Number1 - Disc Count2 - Track Number3 - Track Count18 - Year2002 - Date Modified2009-11-14T14:40:38Z - Date Added2009-11-14T15:03:01Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202532100 - Play Count5 - Play Date3403723903 - Play Date UTC2011-11-09T17:21:43Z - Album Rating80 - Album Rating Computed - Artwork Count1 - Persistent ID3FE7FBFDC407032A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Essential%20Guitar/1-03%20Concierto%20de%20Aranjuez%20for%20Guitar%20and%20Orchestra%20-%203.%20Allegro%20gentile.mp3 - File Folder Count4 - Library Folder Count1 - - 6782 - - Track ID6782 - NameTango, Op.165, No.2 - ArtistPepe Romero - Album ArtistVarious Artists - ComposerAlbéniz, Isaac - AlbumEssential Guitar - GenreClassical - KindMPEG audio file - Size4488096 - Total Time136515 - Disc Number1 - Disc Count2 - Track Number4 - Track Count18 - Year2002 - Date Modified2009-11-14T14:41:06Z - Date Added2009-11-14T15:03:01Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202532101 - Play Count8 - Play Date3401854911 - Play Date UTC2011-10-19T02:11:51Z - Album Rating80 - Album Rating Computed - Artwork Count1 - Persistent IDE6BDC20EBF5F3F3F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Essential%20Guitar/1-04%20Tango,%20Op.165,%20No.2.mp3 - File Folder Count4 - Library Folder Count1 - - 6784 - - Track ID6784 - NameCavatina - Arr. John Williams - ArtistGöran Söllscher - Album ArtistVarious Artists - ComposerMyers, Stanley - AlbumEssential Guitar - GenreClassical - KindMPEG audio file - Size7026794 - Total Time215849 - Disc Number1 - Disc Count2 - Track Number5 - Track Count18 - Year2002 - Date Modified2009-11-14T14:42:00Z - Date Added2009-11-14T15:03:01Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202532102 - Play Count13 - Play Date3403723077 - Play Date UTC2011-11-09T17:07:57Z - Album Rating80 - Album Rating Computed - Artwork Count1 - Persistent ID305D0E331184200E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Essential%20Guitar/1-05%20Cavatina%20-%20Arr.%20John%20Williams.mp3 - File Folder Count4 - Library Folder Count1 - - 6786 - - Track ID6786 - NameSuite in E for Lute, BWV 1006a/1000 - 1. Praeludium - ArtistEduardo Fernandez - Album ArtistVarious Artists - ComposerJohann Sebastian Bach - AlbumEssential Guitar - GenreClassical - KindMPEG audio file - Size7643733 - Total Time235128 - Disc Number1 - Disc Count2 - Track Number6 - Track Count18 - Year2002 - Date Modified2009-11-14T14:42:53Z - Date Added2009-11-14T15:03:01Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202532103 - Play Count11 - Play Date3403723312 - Play Date UTC2011-11-09T17:11:52Z - Album Rating80 - Album Rating Computed - Artwork Count1 - Persistent IDEA072EEF4722639D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Essential%20Guitar/1-06%20Suite%20in%20E%20for%20Lute,%20BWV%201006a_1000%20-%201.%20Praeludium.mp3 - File Folder Count4 - Library Folder Count1 - - 6788 - - Track ID6788 - NameSuite española, Op.47 - Asturias (Leyenda) - ArtistPepe Romero - Album ArtistVarious Artists - ComposerAlbéniz, Isaac - AlbumEssential Guitar - GenreClassical - KindMPEG audio file - Size12100828 - Total Time374413 - Disc Number1 - Disc Count2 - Track Number7 - Track Count18 - Year2002 - Date Modified2009-11-14T14:44:13Z - Date Added2009-11-14T15:03:01Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202532104 - Play Count5 - Play Date3400430629 - Play Date UTC2011-10-02T14:33:49Z - Skip Count1 - Skip Date2011-10-09T15:40:38Z - Album Rating80 - Album Rating Computed - Artwork Count1 - Persistent IDCC064D31188F017C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Essential%20Guitar/1-07%20Suite%20espan%CC%83ola,%20Op.47%20-%20Asturias%20(Leyenda).mp3 - File Folder Count4 - Library Folder Count1 - - 6790 - - Track ID6790 - NameRecuerdos de la Alhambra - ArtistEduardo Fernandez - Album ArtistVarious Artists - ComposerTárrega, Francisco - AlbumEssential Guitar - GenreClassical - KindMPEG audio file - Size9261205 - Total Time285675 - Disc Number1 - Disc Count2 - Track Number8 - Track Count18 - Year2002 - Date Modified2009-11-14T14:47:03Z - Date Added2009-11-14T15:03:01Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202532105 - Play Count6 - Play Date3400430915 - Play Date UTC2011-10-02T14:38:35Z - Album Rating80 - Album Rating Computed - Artwork Count1 - Persistent ID4CBAE28FB5DFBDF7 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Essential%20Guitar/1-08%20Recuerdos%20de%20la%20Alhambra.mp3 - File Folder Count4 - Library Folder Count1 - - 6792 - - Track ID6792 - NameLa vida breve - Transcribed for guitar by Nicola Hall - Act 2 - Spanish Dance No.1 - ArtistNicola Hall - Album ArtistVarious Artists - ComposerShaw, Carlos Fernandez - AlbumEssential Guitar - GenreClassical - KindMPEG audio file - Size7285150 - Total Time223921 - Disc Number1 - Disc Count2 - Track Number9 - Track Count18 - Year2002 - Date Modified2009-11-14T14:47:46Z - Date Added2009-11-14T15:03:01Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202532106 - Play Count5 - Play Date3400431139 - Play Date UTC2011-10-02T14:42:19Z - Skip Count1 - Skip Date2011-10-11T17:10:45Z - Album Rating80 - Album Rating Computed - Artwork Count1 - Persistent IDB9C8C289BFA3EEFB - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Essential%20Guitar/1-09%20La%20vida%20breve%20-%20Transcribed%20for%20guitar%20by%20Nicola%20Hall%20-%20Act%202%20-%20Spanish%20Dance%20No.1.mp3 - File Folder Count4 - Library Folder Count1 - - 6794 - - Track ID6794 - NameCastillos de España - 2. Torija (Elegía) - ArtistAndrés Segovia - Album ArtistVarious Artists - ComposerMoreno Torroba, Federico - AlbumEssential Guitar - GenreClassical - KindMPEG audio file - Size4432125 - Total Time134765 - Disc Number1 - Disc Count2 - Track Number10 - Track Count18 - Year2002 - Date Modified2009-11-14T14:48:18Z - Date Added2009-11-14T15:03:01Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202532107 - Play Count6 - Play Date3401388977 - Play Date UTC2011-10-13T16:46:17Z - Album Rating80 - Album Rating Computed - Artwork Count1 - Persistent ID95EF4CB893828D81 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Essential%20Guitar/1-10%20Castillos%20de%20Espan%CC%83a%20-%202.%20Torija%20(Elegi%CC%81a).mp3 - File Folder Count4 - Library Folder Count1 - - 6796 - - Track ID6796 - NameCastillos de España - 5. Alcañiz (Festiva) - ArtistAndrés Segovia - Album ArtistVarious Artists - ComposerMoreno Torroba, Federico - AlbumEssential Guitar - GenreClassical - KindMPEG audio file - Size3887108 - Total Time117733 - Disc Number1 - Disc Count2 - Track Number11 - Track Count18 - Year2002 - Date Modified2009-11-14T14:48:45Z - Date Added2009-11-14T15:03:01Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202532108 - Play Count6 - Play Date3401389867 - Play Date UTC2011-10-13T17:01:07Z - Album Rating80 - Album Rating Computed - Artwork Count1 - Persistent ID63DFBFB1145F86C0 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Essential%20Guitar/1-11%20Castillos%20de%20Espan%CC%83a%20-%205.%20Alcan%CC%83iz%20(Festiva).mp3 - File Folder Count4 - Library Folder Count1 - - 6798 - - Track ID6798 - NameSuite for Cello Solo No.1 in G, BWV 1007 - Transcribed for solo guitar by John Duarte - 1. Prélude - ArtistJohn Williams - Album ArtistVarious Artists - ComposerJohann Sebastian Bach - AlbumEssential Guitar - GenreClassical - KindMPEG audio file - Size4715555 - Total Time143621 - Disc Number1 - Disc Count2 - Track Number12 - Track Count18 - Year2002 - Date Modified2009-11-14T14:49:21Z - Date Added2009-11-14T15:03:01Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202532109 - Play Count9 - Play Date3401385905 - Play Date UTC2011-10-13T15:55:05Z - Album Rating80 - Album Rating Computed - Artwork Count1 - Persistent ID17AB4CB02F79B865 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Essential%20Guitar/1-12%20Suite%20for%20Cello%20Solo%20No.1%20in%20G,%20BWV%201007%20-%20Transcribed%20for%20solo%20guitar%20by%20John%20Duarte%20-%201.%20Pre%CC%81lude.mp3 - File Folder Count4 - Library Folder Count1 - - 6800 - - Track ID6800 - NameConcerto in D for guitar & strings - 2. Largo - ArtistEduardo Fernandez - Album ArtistVarious Artists - ComposerAntonio Vivaldi - AlbumEssential Guitar - GenreClassical - KindMPEG audio file - Size10045330 - Total Time310177 - Disc Number1 - Disc Count2 - Track Number13 - Track Count18 - Year2002 - Date Modified2009-11-14T14:50:58Z - Date Added2009-11-14T15:03:01Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202532110 - Play Count8 - Play Date3401648351 - Play Date UTC2011-10-16T16:49:11Z - Album Rating80 - Album Rating Computed - Artwork Count1 - Persistent IDA9CE678E2B247575 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Essential%20Guitar/1-13%20Concerto%20in%20D%20for%20guitar%20&%20strings%20-%202.%20Largo.mp3 - File Folder Count4 - Library Folder Count1 - - 6802 - - Track ID6802 - NameRomance de los pinos - ArtistPepe Romero - Album ArtistVarious Artists - ComposerMoreno Torroba, Federico - AlbumEssential Guitar - GenreClassical - KindMPEG audio file - Size3674760 - Total Time111098 - Disc Number1 - Disc Count2 - Track Number14 - Track Count18 - Year2002 - Date Modified2009-11-14T14:51:33Z - Date Added2009-11-14T15:03:01Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202532111 - Play Count8 - Play Date3400788430 - Play Date UTC2011-10-06T17:57:10Z - Album Rating80 - Album Rating Computed - Artwork Count1 - Persistent ID5CA53565305E9FBB - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Essential%20Guitar/1-14%20Romance%20de%20los%20pinos.mp3 - File Folder Count4 - Library Folder Count1 - - 6804 - - Track ID6804 - Name5 Preludes - No. 1 in E minor - ArtistJulian Bream - Album ArtistVarious Artists - ComposerVilla-Lobos, Heitor - AlbumEssential Guitar - GenreClassical - KindMPEG audio file - Size8508045 - Total Time262138 - Disc Number1 - Disc Count2 - Track Number15 - Track Count18 - Year2002 - Date Modified2009-11-14T14:52:29Z - Date Added2009-11-14T15:03:01Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202532112 - Play Count9 - Play Date3400432218 - Play Date UTC2011-10-02T15:00:18Z - Rating60 - Album Rating80 - Album Rating Computed - Artwork Count1 - Persistent IDE31BCFCEE14DAB58 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Essential%20Guitar/1-15%205%20Preludes%20-%20No.%201%20in%20E%20minor.mp3 - File Folder Count4 - Library Folder Count1 - - 6806 - - Track ID6806 - NameDanza paraguaya No.1 - Revised Jesús Benites R. - ArtistEduardo Fernandez - Album ArtistVarious Artists - ComposerBarrios Mangoré, Agustín - AlbumEssential Guitar - GenreClassical - KindMPEG audio file - Size4472259 - Total Time136019 - Disc Number1 - Disc Count2 - Track Number16 - Track Count18 - Year2002 - Date Modified2009-11-14T14:52:55Z - Date Added2009-11-14T15:03:01Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202532113 - Play Count10 - Play Date3406907618 - Play Date UTC2011-12-16T13:43:38Z - Skip Count1 - Album Rating80 - Album Rating Computed - Artwork Count1 - Persistent IDF3F4AB6C88DFBEC3 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Essential%20Guitar/1-16%20Danza%20paraguaya%20No.1%20-%20Revised%20Jesu%CC%81s%20Benites%20R..mp3 - File Folder Count4 - Library Folder Count1 - - 6808 - - Track ID6808 - NameMalagueña - ArtistPepe Romero - Album ArtistVarious Artists - ComposerRomero, Celedonio - AlbumEssential Guitar - GenreClassical - KindMPEG audio file - Size10225834 - Total Time315820 - Disc Number1 - Disc Count2 - Track Number17 - Track Count18 - Year2002 - Date Modified2009-11-14T14:53:48Z - Date Added2009-11-14T15:03:01Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202532114 - Play Count8 - Play Date3400789200 - Play Date UTC2011-10-06T18:10:00Z - Album Rating80 - Album Rating Computed - Artwork Count1 - Persistent IDE8DCB5470610FD84 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Essential%20Guitar/1-17%20Malaguen%CC%83a.mp3 - File Folder Count4 - Library Folder Count1 - - 6810 - - Track ID6810 - NameAyer y hoy (Guajiras) - ArtistPaco Peña - Album ArtistVarious Artists - ComposerPeña, Paco - AlbumEssential Guitar - GenreClassical - KindMPEG audio file - Size8294866 - Total Time255477 - Disc Number1 - Disc Count2 - Track Number18 - Track Count18 - Year2002 - Date Modified2009-11-14T14:54:41Z - Date Added2009-11-14T15:03:01Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202532115 - Play Count6 - Play Date3400432925 - Play Date UTC2011-10-02T15:12:05Z - Album Rating80 - Album Rating Computed - Artwork Count1 - Persistent ID124525090477DDE6 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Essential%20Guitar/1-18%20Ayer%20y%20hoy%20(Guajiras).mp3 - File Folder Count4 - Library Folder Count1 - - 6812 - - Track ID6812 - NameBabar (Feat. Detroit Symphony Orchestra) - ArtistBela Fleck, Zakir Hussein, Edgar Meyer - Album ArtistBela Fleck, Zakir Hussain & Edgar Meyer - AlbumThe Melody Of Rhythm - GenreClassical - KindMPEG audio file - Size10423563 - Total Time370991 - Disc Number1 - Disc Count1 - Track Number1 - Track Count9 - Year2009 - Date Modified2009-11-14T14:55:37Z - Date Added2009-11-14T15:09:31Z - Bit Rate223 - Sample Rate44100 - CommentsAmazon.com Song ID: 212511759 - Play Count7 - Play Date3417369033 - Play Date UTC2012-04-15T15:40:33Z - Skip Count1 - Skip Date2014-01-05T09:44:18Z - Artwork Count1 - Sort AlbumMelody Of Rhythm - Persistent ID036C2B3480D1F76A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bela%20Fleck,%20Zakir%20Hussain%20&%20Edgar%20Meyer/The%20Melody%20Of%20Rhythm/01%20Babar%20(Feat.%20Detroit%20Symphony%20Orchestra).mp3 - File Folder Count4 - Library Folder Count1 - - 6814 - - Track ID6814 - NameOut Of The Blue (Feat. Detroit Symphony Orchestra) - ArtistBela Fleck, Zakir Hussein, Edgar Meyer - Album ArtistBela Fleck, Zakir Hussain & Edgar Meyer - AlbumThe Melody Of Rhythm - GenreClassical - KindMPEG audio file - Size8499464 - Total Time298318 - Disc Number1 - Disc Count1 - Track Number2 - Track Count9 - Year2009 - Date Modified2009-11-14T14:56:32Z - Date Added2009-11-14T15:09:31Z - Bit Rate226 - Sample Rate44100 - CommentsAmazon.com Song ID: 212511760 - Play Count3 - Play Date3341477607 - Play Date UTC2009-11-19T06:43:27Z - Artwork Count1 - Sort AlbumMelody Of Rhythm - Persistent IDCBB6DDE0E61CD3E2 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bela%20Fleck,%20Zakir%20Hussain%20&%20Edgar%20Meyer/The%20Melody%20Of%20Rhythm/02%20Out%20Of%20The%20Blue%20(Feat.%20Detroit%20Symphony%20Orchestra).mp3 - File Folder Count4 - Library Folder Count1 - - 6816 - - Track ID6816 - NameBubbles (Feat. Detroit Symphony Orchestra) - ArtistBela Fleck, Zakir Hussein, Edgar Meyer - Album ArtistBela Fleck, Zakir Hussain & Edgar Meyer - AlbumThe Melody Of Rhythm - GenreClassical - KindMPEG audio file - Size12557318 - Total Time432352 - Disc Number1 - Disc Count1 - Track Number3 - Track Count9 - Year2009 - Date Modified2009-11-14T14:58:12Z - Date Added2009-11-14T15:09:31Z - Bit Rate231 - Sample Rate44100 - CommentsAmazon.com Song ID: 212511761 - Play Count2 - Play Date3341478039 - Play Date UTC2009-11-19T06:50:39Z - Artwork Count1 - Sort AlbumMelody Of Rhythm - Persistent ID76AAB46824E8D882 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bela%20Fleck,%20Zakir%20Hussain%20&%20Edgar%20Meyer/The%20Melody%20Of%20Rhythm/03%20Bubbles%20(Feat.%20Detroit%20Symphony%20Orchestra).mp3 - File Folder Count4 - Library Folder Count1 - - 6818 - - Track ID6818 - NameThe Melody Of Rhythm, Movement 1 (Feat. Detroit Symphony Orchestra) - ArtistBela Fleck, Zakir Hussein, Edgar Meyer - Album ArtistBela Fleck, Zakir Hussain & Edgar Meyer - AlbumThe Melody Of Rhythm - GenreClassical - KindMPEG audio file - Size20772985 - Total Time711366 - Disc Number1 - Disc Count1 - Track Number4 - Track Count9 - Year2009 - Date Modified2009-11-14T15:00:12Z - Date Added2009-11-14T15:09:31Z - Bit Rate232 - Sample Rate44100 - CommentsAmazon.com Song ID: 212511762 - Play Count2 - Play Date3341478751 - Play Date UTC2009-11-19T07:02:31Z - Artwork Count1 - Sort AlbumMelody Of Rhythm - Sort NameMelody Of Rhythm, Movement 1 (Feat. Detroit Symphony Orchestra) - Persistent IDF122EDE7D4B28B57 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bela%20Fleck,%20Zakir%20Hussain%20&%20Edgar%20Meyer/The%20Melody%20Of%20Rhythm/04%20The%20Melody%20Of%20Rhythm,%20Movement%201%20(Feat.%20Detroit%20Symphony%20Orchestra).mp3 - File Folder Count4 - Library Folder Count1 - - 6820 - - Track ID6820 - NameThe Melody Of Rhythm, Movement 2 (Feat. Detroit Symphony Orchestra) - ArtistBela Fleck, Zakir Hussein, Edgar Meyer - Album ArtistBela Fleck, Zakir Hussain & Edgar Meyer - AlbumThe Melody Of Rhythm - GenreClassical - KindMPEG audio file - Size10540520 - Total Time386324 - Disc Number1 - Disc Count1 - Track Number5 - Track Count9 - Year2009 - Date Modified2009-11-14T15:01:24Z - Date Added2009-11-14T15:09:31Z - Bit Rate216 - Sample Rate44100 - CommentsAmazon.com Song ID: 212511763 - Play Count2 - Play Date3341479137 - Play Date UTC2009-11-19T07:08:57Z - Artwork Count1 - Sort AlbumMelody Of Rhythm - Sort NameMelody Of Rhythm, Movement 2 (Feat. Detroit Symphony Orchestra) - Persistent IDEB750EB58FFEE12C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bela%20Fleck,%20Zakir%20Hussain%20&%20Edgar%20Meyer/The%20Melody%20Of%20Rhythm/05%20The%20Melody%20Of%20Rhythm,%20Movement%202%20(Feat.%20Detroit%20Symphony%20Orchestra).mp3 - File Folder Count4 - Library Folder Count1 - - 6822 - - Track ID6822 - NameThe Melody Of Rhythm, Movement 3 (Feat. Detroit Symphony Orchestra) - ArtistBela Fleck, Zakir Hussein, Edgar Meyer - Album ArtistBela Fleck, Zakir Hussain & Edgar Meyer - AlbumThe Melody Of Rhythm - GenreClassical - KindMPEG audio file - Size17203991 - Total Time579239 - Disc Number1 - Disc Count1 - Track Number6 - Track Count9 - Year2009 - Date Modified2009-11-14T15:02:57Z - Date Added2009-11-14T15:09:31Z - Bit Rate236 - Sample Rate44100 - CommentsAmazon.com Song ID: 212511764 - Artwork Count1 - Sort AlbumMelody Of Rhythm - Sort NameMelody Of Rhythm, Movement 3 (Feat. Detroit Symphony Orchestra) - Persistent IDCFEBD920BAF83247 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bela%20Fleck,%20Zakir%20Hussain%20&%20Edgar%20Meyer/The%20Melody%20Of%20Rhythm/06%20The%20Melody%20Of%20Rhythm,%20Movement%203%20(Feat.%20Detroit%20Symphony%20Orchestra).mp3 - File Folder Count4 - Library Folder Count1 - - 6824 - - Track ID6824 - NameCadence (Feat. Detroit Symphony Orchestra) - ArtistBela Fleck, Zakir Hussein, Edgar Meyer - Album ArtistBela Fleck, Zakir Hussain & Edgar Meyer - AlbumThe Melody Of Rhythm - GenreClassical - KindMPEG audio file - Size6862110 - Total Time236277 - Disc Number1 - Disc Count1 - Track Number7 - Track Count9 - Year2009 - Date Modified2009-11-14T15:04:06Z - Date Added2009-11-14T15:09:31Z - Bit Rate230 - Sample Rate44100 - CommentsAmazon.com Song ID: 212511765 - Skip Count1 - Skip Date2014-01-05T09:48:22Z - Artwork Count1 - Sort AlbumMelody Of Rhythm - Persistent ID3B01CE07992F8D17 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bela%20Fleck,%20Zakir%20Hussain%20&%20Edgar%20Meyer/The%20Melody%20Of%20Rhythm/07%20Cadence%20(Feat.%20Detroit%20Symphony%20Orchestra).mp3 - File Folder Count4 - Library Folder Count1 - - 6826 - - Track ID6826 - NameIn Conclusion (Feat. Detroit Symphony Orchestra) - ArtistBela Fleck, Zakir Hussein, Edgar Meyer - Album ArtistBela Fleck, Zakir Hussain & Edgar Meyer - AlbumThe Melody Of Rhythm - GenreClassical - KindMPEG audio file - Size11184535 - Total Time394370 - Disc Number1 - Disc Count1 - Track Number8 - Track Count9 - Year2009 - Date Modified2009-11-14T15:06:39Z - Date Added2009-11-14T15:09:31Z - Bit Rate225 - Sample Rate44100 - CommentsAmazon.com Song ID: 212511767 - Artwork Count1 - Sort AlbumMelody Of Rhythm - Persistent ID85A174CF5AD3FC1E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bela%20Fleck,%20Zakir%20Hussain%20&%20Edgar%20Meyer/The%20Melody%20Of%20Rhythm/08%20In%20Conclusion%20(Feat.%20Detroit%20Symphony%20Orchestra).mp3 - File Folder Count4 - Library Folder Count1 - - 6828 - - Track ID6828 - NameThen Again (Feat. Detroit Symphony Orchestra) - ArtistBela Fleck, Zakir Hussein, Edgar Meyer - Album ArtistBela Fleck, Zakir Hussain & Edgar Meyer - AlbumThe Melody Of Rhythm - GenreJazz - KindMPEG audio file - Size11286404 - Total Time400979 - Disc Number1 - Disc Count1 - Track Number9 - Track Count9 - Year2009 - Date Modified2009-11-14T15:07:42Z - Date Added2009-11-14T15:09:31Z - Bit Rate223 - Sample Rate44100 - CommentsAmazon.com Song ID: 212511769 - Artwork Count1 - Sort AlbumMelody Of Rhythm - Persistent ID86590F63AF323227 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bela%20Fleck,%20Zakir%20Hussain%20&%20Edgar%20Meyer/The%20Melody%20Of%20Rhythm/09%20Then%20Again%20(Feat.%20Detroit%20Symphony%20Orchestra).mp3 - File Folder Count4 - Library Folder Count1 - - 6830 - - Track ID6830 - NameString Quartet No. 5, Sz 102: I. Allegro - ArtistBartok, Bela - ComposerBartok, Bela - AlbumBartók String Quartet #5 - Chilingirian Quartet - GenreClassical - KindMPEG audio file - Size8982652 - Total Time449018 - Track Number10 - Track Count14 - Date Modified2009-11-16T02:06:26Z - Date Added2009-11-16T02:04:39Z - Bit Rate160 - Sample Rate44100 - Commentsfrom-david,digital-only - Play Count1 - Play Date3341295648 - Play Date UTC2009-11-17T04:10:48Z - Normalization1176 - Persistent ID882CDC9D2AF8CB33 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bartok,%20Bela/Barto%CC%81k%20String%20Quartet%20%235%20-%20Chilingirian%20Quartet/10%20String%20Quartet%20No.%205,%20Sz%20102_%20I.%20Allegro.mp3 - File Folder Count4 - Library Folder Count1 - - 6832 - - Track ID6832 - NameString Quartet No. 5, Sz 102: II. Adagio molto - ArtistBartok, Bela - ComposerBartok, Bela - AlbumBartók String Quartet #5 - Chilingirian Quartet - GenreClassical - KindMPEG audio file - Size6784193 - Total Time339095 - Track Number11 - Track Count14 - Date Modified2009-11-16T02:06:26Z - Date Added2009-11-16T02:04:39Z - Bit Rate160 - Sample Rate44100 - Commentsfrom-david,digital-only - Normalization247 - Persistent ID4EB2CBDD68C936D0 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bartok,%20Bela/Barto%CC%81k%20String%20Quartet%20%235%20-%20Chilingirian%20Quartet/11%20String%20Quartet%20No.%205,%20Sz%20102_%20II.%20Adagio%20molto.mp3 - File Folder Count4 - Library Folder Count1 - - 6834 - - Track ID6834 - NameString Quartet No. 5, Sz 102: III. Scherzo - ArtistBartok, Bela - ComposerBartok, Bela - AlbumBartók String Quartet #5 - Chilingirian Quartet - GenreClassical - KindMPEG audio file - Size6063732 - Total Time303072 - Track Number12 - Track Count14 - Date Modified2009-11-16T02:06:26Z - Date Added2009-11-16T02:04:39Z - Bit Rate160 - Sample Rate44100 - Commentsfrom-david,digital-only - Normalization542 - Persistent ID0FC86AD0E16B722C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bartok,%20Bela/Barto%CC%81k%20String%20Quartet%20%235%20-%20Chilingirian%20Quartet/12%20String%20Quartet%20No.%205,%20Sz%20102_%20III.%20Scherzo.mp3 - File Folder Count4 - Library Folder Count1 - - 6836 - - Track ID6836 - NameString Quartet No. 5, Sz 102: IV. Andante - ArtistBartok, Bela - ComposerBartok, Bela - AlbumBartók String Quartet #5 - Chilingirian Quartet - GenreClassical - KindMPEG audio file - Size5799894 - Total Time289880 - Track Number13 - Track Count14 - Date Modified2009-11-16T02:06:26Z - Date Added2009-11-16T02:04:39Z - Bit Rate160 - Sample Rate44100 - Commentsfrom-david,digital-only - Normalization703 - Persistent ID245F0B315D5CC76B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bartok,%20Bela/Barto%CC%81k%20String%20Quartet%20%235%20-%20Chilingirian%20Quartet/13%20String%20Quartet%20No.%205,%20Sz%20102_%20IV.%20Andante.mp3 - File Folder Count4 - Library Folder Count1 - - 6838 - - Track ID6838 - NameString Quartet No. 5, Sz 102: V. Finale - ArtistBartok, Bela - ComposerBartok, Bela - AlbumBartók String Quartet #5 - Chilingirian Quartet - GenreClassical - KindMPEG audio file - Size8403256 - Total Time420048 - Track Number14 - Track Count14 - Date Modified2009-11-16T02:06:26Z - Date Added2009-11-16T02:04:39Z - Bit Rate160 - Sample Rate44100 - Commentsfrom-david,digital-only - Normalization1096 - Persistent ID090E3BE2480F7A34 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bartok,%20Bela/Barto%CC%81k%20String%20Quartet%20%235%20-%20Chilingirian%20Quartet/14%20String%20Quartet%20No.%205,%20Sz%20102_%20V.%20Finale.mp3 - File Folder Count4 - Library Folder Count1 - - 6840 - - Track ID6840 - NameSextet - Allegro Vivace - ArtistCopland, Aaron - ComposerCopland, Aaron - AlbumSextet - GenreClassical - KindMPEG audio file - Size6525543 - Total Time271804 - Disc Number1 - Disc Count1 - Track Number1 - Track Count7 - Year1987 - Date Modified2009-11-16T02:06:26Z - Date Added2009-11-16T02:04:47Z - Bit Rate192 - Sample Rate44100 - Commentsfrom-david,digital-only - Play Count2 - Play Date3341223196 - Play Date UTC2009-11-16T08:03:16Z - Normalization1146 - Compilation - Persistent IDCB0DAF1A7C6F68CD - Track TypeFile - File Type1297106739 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Sextet/01%20Sextet%20-%20Allegro%20Vivace.mp3 - File Folder Count4 - Library Folder Count1 - - 6842 - - Track ID6842 - NameVocalise - ArtistCopland, Aaron - ComposerCopland, Aaron - GenreClassical - KindMPEG audio file - Size6685353 - Total Time278465 - Track Number2 - Track Count11 - Date Modified2009-11-16T02:06:26Z - Date Added2009-11-16T02:04:47Z - Bit Rate192 - Sample Rate44100 - Commentsfrom-david,digital-only - Play Count1 - Play Date3341222436 - Play Date UTC2009-11-16T07:50:36Z - Normalization346 - Persistent IDFF92C18BFDE47084 - Track TypeFile - File Type1297106739 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Copland,%20Aaron/Unknown%20Album/02%20Vocalise.mp3 - File Folder Count4 - Library Folder Count1 - - 6844 - - Track ID6844 - Nameno.4: I. Largo affettuoso :Concerto no.4 in a minor(Handel,Stepner,Quan,Lutzke,Handel&Haydn Society,1991.3.26-29) - ArtistHandel - ComposerHandel - AlbumConcerti Grossi Op. 6, Nos. 1-4 - GenreClassical - KindMPEG audio file - Size3243586 - Total Time162063 - Disc Number1 - Disc Count3 - Track Number15 - Track Count18 - Year1739 - Date Modified2009-11-16T02:06:26Z - Date Added2009-11-16T02:04:52Z - Bit Rate160 - Sample Rate44100 - Commentsfrom-david,digital-only - Play Count2 - Play Date3341222924 - Play Date UTC2009-11-16T07:58:44Z - Normalization233 - Persistent ID03C11AA1E061DA40 - Track TypeFile - File Type1297106739 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Handel/Concerti%20Grossi%20Op.%206,%20Nos.%201-4/1-15%20no.4_%20I.%20Largo%20affettuoso%20_Concerto%20no.4%20in%20a%20minor(Handel,Stepner,Quan,Lutzke,Handel&Haydn%20Society,1991.3.26-29).mp3 - File Folder Count4 - Library Folder Count1 - - 6846 - - Track ID6846 - Nameno.4: II. Allegro :Concerto no.4 in a minor(Handel,Stepner,Quan,Lutzke,Handel&Haydn Society,1991.3.26-29) - ArtistHandel - ComposerHandel - AlbumConcerti Grossi Op. 6, Nos. 1-4 - GenreClassical - KindMPEG audio file - Size3223725 - Total Time161071 - Disc Number1 - Disc Count3 - Track Number16 - Track Count18 - Year1739 - Date Modified2009-11-16T02:06:26Z - Date Added2009-11-16T02:04:53Z - Bit Rate160 - Sample Rate44100 - Commentsfrom-david,digital-only - Play Count1 - Play Date3341221453 - Play Date UTC2009-11-16T07:34:13Z - Normalization474 - Persistent ID16E77B4A9119A993 - Track TypeFile - File Type1297106739 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Handel/Concerti%20Grossi%20Op.%206,%20Nos.%201-4/1-16%20no.4_%20II.%20Allegro%20_Concerto%20no.4%20in%20a%20minor(Handel,Stepner,Quan,Lutzke,Handel&Haydn%20Society,1991.3.26-29).mp3 - File Folder Count4 - Library Folder Count1 - - 6848 - - Track ID6848 - Nameno.4: III. Largo e piano :Concerto no.4 in a minor(Handel,Stepner,Quan,Lutzke,Handel&Haydn Society,1991.3.26-29) - ArtistHandel - ComposerHandel - AlbumConcerti Grossi Op. 6, Nos. 1-4 - GenreClassical - KindMPEG audio file - Size2393561 - Total Time119562 - Disc Number1 - Disc Count3 - Track Number17 - Track Count18 - Year1739 - Date Modified2009-11-16T02:06:26Z - Date Added2009-11-16T02:04:53Z - Bit Rate160 - Sample Rate44100 - Commentsfrom-david,digital-only - Play Count2 - Play Date3383452318 - Play Date UTC2011-03-20T02:21:58Z - Normalization223 - Persistent IDF7334AFD7FC2792C - Track TypeFile - File Type1297106739 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Handel/Concerti%20Grossi%20Op.%206,%20Nos.%201-4/1-17%20no.4_%20III.%20Largo%20e%20piano%20_Concerto%20no.4%20in%20a%20minor(Handel,Stepner,Quan,Lutzke,Handel&Haydn%20Society,1991.3.26-29).mp3 - File Folder Count4 - Library Folder Count1 - - 6850 - - Track ID6850 - Nameno.4: IV. Allegro :Concerto no.4 in a minor(Handel,Stepner,Quan,Lutzke,Handel&Haydn Society,1991.3.26-29) - ArtistHandel - ComposerHandel - AlbumConcerti Grossi Op. 6, Nos. 1-4 - GenreClassical - KindMPEG audio file - Size3030419 - Total Time151405 - Disc Number1 - Disc Count3 - Track Number18 - Track Count18 - Year1739 - Date Modified2009-11-16T02:06:26Z - Date Added2009-11-16T02:04:53Z - Bit Rate160 - Sample Rate44100 - Commentsfrom-david,digital-only - Play Count2 - Play Date3341222762 - Play Date UTC2009-11-16T07:56:02Z - Normalization479 - Persistent IDE8D416A0C8048D92 - Track TypeFile - File Type1297106739 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Handel/Concerti%20Grossi%20Op.%206,%20Nos.%201-4/1-18%20no.4_%20IV.%20Allegro%20_Concerto%20no.4%20in%20a%20minor(Handel,Stepner,Quan,Lutzke,Handel&Haydn%20Society,1991.3.26-29).mp3 - File Folder Count4 - Library Folder Count1 - - 6862 - - Track ID6862 - NameChandan sabadan - GenreHindi Old hits - KindMPEG audio file - Size1288516 - Total Time182592 - Date Modified2009-11-18T00:08:52Z - Date Added2009-11-29T03:28:31Z - Bit Rate56 - Sample Rate24000 - Play Count2 - Play Date3342872538 - Play Date UTC2009-12-05T10:12:18Z - Persistent IDA92F8B2999231909 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Unknown%20Artist/Unknown%20Album/Chandan%20sabadan.mp3 - File Folder Count4 - Library Folder Count1 - - 6866 - - Track ID6866 - Name21/11/09 8:34 PM - KindApple Lossless audio file - Size3483862 - Total Time72074 - Date Modified2009-11-29T14:56:26Z - Date Added2009-11-29T14:56:26Z - Bit Rate386 - Sample Rate44100 - Persistent ID36C0DAD35492CA66 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Voice%20Memos/20091121%20203415.m4a - File Folder Count3 - Library Folder Count1 - - 6868 - - Track ID6868 - Name28/11/09 5:42 PM - KindApple Lossless audio file - Size882031 - Total Time21362 - Date Modified2009-11-29T14:56:26Z - Date Added2009-11-29T14:56:26Z - Bit Rate329 - Sample Rate44100 - Persistent IDDA6AAFEE98E69F0C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Voice%20Memos/20091128%20174203.m4a - File Folder Count3 - Library Folder Count1 - - 6870 - - Track ID6870 - NameIntro - ArtistMark Hanson - AlbumBeyond Basics Fingerstyle Guitar - GenreUnclassifiable - KindAAC audio file - Size2744627 - Total Time83240 - Track Number1 - Track Count72 - Year1997 - Date Modified2009-11-30T08:29:18Z - Date Added2009-11-30T07:45:39Z - Bit Rate256 - Sample Rate44100 - Normalization486 - Artwork Count1 - Persistent ID9AF9093F3F8A1EAE - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/01%20Intro.m4a - File Folder Count4 - Library Folder Count1 - - 6872 - - Track ID6872 - NameTuning Notes - ArtistMark Hanson - AlbumBeyond Basics Fingerstyle Guitar - GenreUnclassifiable - KindAAC audio file - Size1514560 - Total Time47066 - Track Number2 - Track Count72 - Year1997 - Date Modified2009-11-30T08:29:18Z - Date Added2009-11-30T07:46:15Z - Bit Rate256 - Sample Rate44100 - Normalization322 - Artwork Count1 - Persistent IDB3C2A4849CB77CC9 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/02%20Tuning%20Notes.m4a - File Folder Count4 - Library Folder Count1 - - 6874 - - Track ID6874 - NameArpeggios Example 1 - ArtistMark Hanson - AlbumBeyond Basics Fingerstyle Guitar - GenreUnclassifiable - KindAAC audio file - Size1402420 - Total Time43306 - Track Number3 - Track Count72 - Year1997 - Date Modified2009-11-30T08:29:18Z - Date Added2009-11-30T07:46:36Z - Bit Rate256 - Sample Rate44100 - Normalization584 - Artwork Count1 - Persistent ID02712659742FB5B9 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/03%20Arpeggios%20Example%201.m4a - File Folder Count4 - Library Folder Count1 - - 6876 - - Track ID6876 - NameArpeggios Example 2 - ArtistMark Hanson - AlbumBeyond Basics Fingerstyle Guitar - GenreUnclassifiable - KindAAC audio file - Size1771010 - Total Time54440 - Track Number4 - Track Count72 - Year1997 - Date Modified2009-11-30T08:29:18Z - Date Added2009-11-30T07:46:56Z - Bit Rate256 - Sample Rate44100 - Normalization492 - Artwork Count1 - Persistent ID9498213C63D9E8BA - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/04%20Arpeggios%20Example%202.m4a - File Folder Count4 - Library Folder Count1 - - 6878 - - Track ID6878 - NameArpeggios Example 3 - ArtistMark Hanson - AlbumBeyond Basics Fingerstyle Guitar - GenreUnclassifiable - KindAAC audio file - Size1633893 - Total Time50813 - Track Number5 - Track Count72 - Year1997 - Date Modified2009-11-30T08:29:19Z - Date Added2009-11-30T07:47:21Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3342509094 - Play Date UTC2009-12-01T05:14:54Z - Normalization361 - Artwork Count1 - Persistent ID0B87761CFB9D065E - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/05%20Arpeggios%20Example%203.m4a - File Folder Count4 - Library Folder Count1 - - 6880 - - Track ID6880 - NameArpeggios Example 4 - ArtistMark Hanson - AlbumBeyond Basics Fingerstyle Guitar - GenreUnclassifiable - KindAAC audio file - Size3058280 - Total Time94493 - Track Number6 - Track Count72 - Year1997 - Date Modified2009-11-30T08:29:19Z - Date Added2009-11-30T07:47:45Z - Bit Rate256 - Sample Rate44100 - Normalization588 - Artwork Count1 - Persistent IDBD107FD7FC3FD996 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/06%20Arpeggios%20Example%204.m4a - File Folder Count4 - Library Folder Count1 - - 6882 - - Track ID6882 - NameArpeggios Example 5 - ArtistMark Hanson - AlbumBeyond Basics Fingerstyle Guitar - GenreUnclassifiable - KindAAC audio file - Size1275255 - Total Time39893 - Track Number7 - Track Count72 - Year1997 - Date Modified2009-11-30T08:29:19Z - Date Added2009-11-30T07:48:30Z - Bit Rate256 - Sample Rate44100 - Normalization457 - Artwork Count1 - Persistent ID33A1BA3D7F594C80 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/07%20Arpeggios%20Example%205.m4a - File Folder Count4 - Library Folder Count1 - - 6884 - - Track ID6884 - NameCanyon Canon Example 6 - ArtistMark Hanson - AlbumBeyond Basics Fingerstyle Guitar - GenreUnclassifiable - KindAAC audio file - Size1505251 - Total Time46786 - Track Number8 - Track Count72 - Year1997 - Date Modified2009-11-30T08:29:19Z - Date Added2009-11-30T07:48:49Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3342433590 - Play Date UTC2009-11-30T08:16:30Z - Normalization508 - Artwork Count1 - Persistent ID3CC77049463EA9AA - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/08%20Canyon%20Canon%20Example%206.m4a - File Folder Count4 - Library Folder Count1 - - 6886 - - Track ID6886 - NameCanyon Canon Example 7 - ArtistMark Hanson - AlbumBeyond Basics Fingerstyle Guitar - GenreUnclassifiable - KindAAC audio file - Size1497818 - Total Time46280 - Track Number9 - Track Count72 - Year1997 - Date Modified2009-11-30T08:29:19Z - Date Added2009-11-30T07:49:12Z - Bit Rate256 - Sample Rate44100 - Normalization393 - Artwork Count1 - Persistent ID6F5C6805A075E212 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/09%20Canyon%20Canon%20Example%207.m4a - File Folder Count4 - Library Folder Count1 - - 6888 - - Track ID6888 - NameCanyon Canon Example 8 - ArtistMark Hanson - AlbumBeyond Basics Fingerstyle Guitar - GenreUnclassifiable - KindAAC audio file - Size1251437 - Total Time38893 - Track Number10 - Track Count72 - Year1997 - Date Modified2009-11-30T08:29:19Z - Date Added2009-11-30T07:49:36Z - Bit Rate256 - Sample Rate44100 - Normalization388 - Artwork Count1 - Persistent ID03CD900B76CDB0E7 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/10%20Canyon%20Canon%20Example%208.m4a - File Folder Count4 - Library Folder Count1 - - 6890 - - Track ID6890 - NameCanyon Canon Example 9 - ArtistMark Hanson - AlbumBeyond Basics Fingerstyle Guitar - GenreUnclassifiable - KindAAC audio file - Size944913 - Total Time29480 - Track Number11 - Track Count72 - Year1997 - Date Modified2009-11-30T08:29:19Z - Date Added2009-11-30T07:49:55Z - Bit Rate256 - Sample Rate44100 - Normalization338 - Artwork Count1 - Persistent ID4E0152E88E3BCB39 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/11%20Canyon%20Canon%20Example%209.m4a - File Folder Count4 - Library Folder Count1 - - 6892 - - Track ID6892 - NameCanyon Canon Example 10 - ArtistMark Hanson - AlbumBeyond Basics Fingerstyle Guitar - GenreUnclassifiable - KindAAC audio file - Size835653 - Total Time25946 - Track Number12 - Track Count72 - Year1997 - Date Modified2009-11-30T08:29:19Z - Date Added2009-11-30T07:50:11Z - Bit Rate256 - Sample Rate44100 - Play Count2 - Play Date3342853593 - Play Date UTC2009-12-05T04:56:33Z - Normalization165 - Artwork Count1 - Persistent ID28850FC23ACB3CCF - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/12%20Canyon%20Canon%20Example%2010.m4a - File Folder Count4 - Library Folder Count1 - - 6894 - - Track ID6894 - NameCanyon Canon Example 11 - ArtistMark Hanson - AlbumBeyond Basics Fingerstyle Guitar - GenreUnclassifiable - KindAAC audio file - Size797517 - Total Time24840 - Track Number13 - Track Count72 - Year1997 - Date Modified2009-11-30T08:29:19Z - Date Added2009-11-30T07:50:24Z - Bit Rate256 - Sample Rate44100 - Normalization345 - Artwork Count1 - Persistent ID39F9161B578619C3 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/13%20Canyon%20Canon%20Example%2011.m4a - File Folder Count4 - Library Folder Count1 - - 6896 - - Track ID6896 - NameCanyon Canon - ArtistMark Hanson - AlbumBeyond Basics Fingerstyle Guitar - GenreUnclassifiable - KindAAC audio file - Size6942374 - Total Time212000 - Track Number14 - Track Count72 - Year1997 - Date Modified2009-11-30T08:29:19Z - Date Added2009-11-30T07:50:38Z - Bit Rate256 - Sample Rate44100 - Play Count2 - Play Date3398146310 - Play Date UTC2011-09-06T04:01:50Z - Normalization430 - Artwork Count1 - Persistent ID9395C438EF94F4D4 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/14%20Canyon%20Canon.m4a - File Folder Count4 - Library Folder Count1 - - 6898 - - Track ID6898 - NameFingerpicking In 3/4 Time Example 12 - ArtistMark Hanson - AlbumBeyond Basics Fingerstyle Guitar - GenreUnclassifiable - KindAAC audio file - Size2254825 - Total Time70266 - Track Number15 - Track Count72 - Year1997 - Date Modified2009-11-30T08:29:20Z - Date Added2009-11-30T07:52:23Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3342688879 - Play Date UTC2009-12-03T07:11:19Z - Normalization353 - Artwork Count1 - Persistent ID5002A17D7C6BDC36 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/15%20Fingerpicking%20In%203_4%20Time%20Example%2012.m4a - File Folder Count4 - Library Folder Count1 - - 6900 - - Track ID6900 - NameFingerpicking In 3/4 Time Example 13 - ArtistMark Hanson - AlbumBeyond Basics Fingerstyle Guitar - GenreUnclassifiable - KindAAC audio file - Size1649375 - Total Time51133 - Track Number16 - Track Count72 - Year1997 - Date Modified2009-11-30T08:29:20Z - Date Added2009-11-30T07:52:59Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3342688930 - Play Date UTC2009-12-03T07:12:10Z - Normalization394 - Artwork Count1 - Persistent ID7C786D6099FEB81F - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/16%20Fingerpicking%20In%203_4%20Time%20Example%2013.m4a - File Folder Count4 - Library Folder Count1 - - 6902 - - Track ID6902 - NameFingerpicking In 3/4 Time Example 14 - ArtistMark Hanson - AlbumBeyond Basics Fingerstyle Guitar - GenreUnclassifiable - KindAAC audio file - Size3988612 - Total Time122146 - Track Number17 - Track Count72 - Year1997 - Date Modified2009-11-30T08:29:20Z - Date Added2009-11-30T07:53:26Z - Bit Rate256 - Sample Rate44100 - Normalization458 - Artwork Count1 - Persistent IDA980D619A76AFDE3 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/17%20Fingerpicking%20In%203_4%20Time%20Example%2014.m4a - File Folder Count4 - Library Folder Count1 - - 6904 - - Track ID6904 - NameWindows Example 15 - ArtistMark Hanson - AlbumBeyond Basics Fingerstyle Guitar - GenreUnclassifiable - KindAAC audio file - Size1974833 - Total Time60600 - Track Number18 - Track Count72 - Year1997 - Date Modified2009-11-30T08:29:20Z - Date Added2009-11-30T07:54:30Z - Bit Rate256 - Sample Rate44100 - Normalization292 - Artwork Count1 - Persistent ID2B967ACA3B63DD5B - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/18%20Windows%20Example%2015.m4a - File Folder Count4 - Library Folder Count1 - - 6906 - - Track ID6906 - NameWindows Example 16 - ArtistMark Hanson - AlbumBeyond Basics Fingerstyle Guitar - GenreUnclassifiable - KindAAC audio file - Size2823257 - Total Time86840 - Track Number19 - Track Count72 - Year1997 - Date Modified2009-11-30T08:29:20Z - Date Added2009-11-30T07:55:03Z - Bit Rate256 - Sample Rate44100 - Normalization573 - Artwork Count1 - Persistent IDB29DCE4E3DB23C27 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/19%20Windows%20Example%2016.m4a - File Folder Count4 - Library Folder Count1 - - 6908 - - Track ID6908 - NameWindows Example 17 - ArtistMark Hanson - AlbumBeyond Basics Fingerstyle Guitar - GenreUnclassifiable - KindAAC audio file - Size2105614 - Total Time65066 - Track Number20 - Track Count72 - Year1997 - Date Modified2009-11-30T08:29:20Z - Date Added2009-11-30T07:55:49Z - Bit Rate256 - Sample Rate44100 - Normalization387 - Artwork Count1 - Persistent ID1DDB47068D7DA131 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/20%20Windows%20Example%2017.m4a - File Folder Count4 - Library Folder Count1 - - 6910 - - Track ID6910 - NameWindows Example 18 - ArtistMark Hanson - AlbumBeyond Basics Fingerstyle Guitar - GenreUnclassifiable - KindAAC audio file - Size3578616 - Total Time109773 - Track Number21 - Track Count72 - Year1997 - Date Modified2009-11-30T08:29:21Z - Date Added2009-11-30T07:56:25Z - Bit Rate256 - Sample Rate44100 - Normalization345 - Artwork Count1 - Persistent IDCD7D89B39742989C - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/21%20Windows%20Example%2018.m4a - File Folder Count4 - Library Folder Count1 - - 6912 - - Track ID6912 - NameWindows - ArtistMark Hanson - AlbumBeyond Basics Fingerstyle Guitar - GenreUnclassifiable - KindAAC audio file - Size5833524 - Total Time177973 - Track Number22 - Track Count72 - Year1997 - Date Modified2009-11-30T08:29:21Z - Date Added2009-11-30T07:57:25Z - Bit Rate256 - Sample Rate44100 - Play Count2 - Play Date3343584673 - Play Date UTC2009-12-13T16:01:13Z - Normalization491 - Artwork Count1 - Persistent IDD5E82A856D76717D - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/22%20Windows.m4a - File Folder Count4 - Library Folder Count1 - - 6914 - - Track ID6914 - NameThe Travis Picking Pattern Example 19 - ArtistMark Hanson - AlbumBeyond Basics Fingerstyle Guitar - GenreUnclassifiable - KindAAC audio file - Size1532144 - Total Time47426 - Track Number23 - Track Count72 - Year1997 - Date Modified2009-11-30T08:29:21Z - Date Added2009-11-30T07:59:03Z - Bit Rate256 - Sample Rate44100 - Play Count2 - Play Date3343190124 - Play Date UTC2009-12-09T02:25:24Z - Normalization303 - Artwork Count1 - Sort NameTravis Picking Pattern Example 19 - Persistent IDA48EEA7593850587 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/23%20The%20Travis%20Picking%20Pattern%20Example%2019.m4a - File Folder Count4 - Library Folder Count1 - - 6916 - - Track ID6916 - NameThe Travis Picking Pattern Example 20 - ArtistMark Hanson - AlbumBeyond Basics Fingerstyle Guitar - GenreUnclassifiable - KindAAC audio file - Size1900699 - Total Time58600 - Track Number24 - Track Count72 - Year1997 - Date Modified2009-11-30T08:29:21Z - Date Added2009-11-30T07:59:31Z - Bit Rate256 - Sample Rate44100 - Normalization304 - Artwork Count1 - Sort NameTravis Picking Pattern Example 20 - Persistent ID8021483409525B56 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/24%20The%20Travis%20Picking%20Pattern%20Example%2020.m4a - File Folder Count4 - Library Folder Count1 - - 6918 - - Track ID6918 - NameThe Travis Picking Pattern Example 21 - ArtistMark Hanson - AlbumBeyond Basics Fingerstyle Guitar - GenreUnclassifiable - KindAAC audio file - Size848541 - Total Time26413 - Track Number25 - Track Count72 - Year1997 - Date Modified2009-11-30T08:29:21Z - Date Added2009-11-30T08:00:04Z - Bit Rate256 - Sample Rate44100 - Normalization341 - Artwork Count1 - Sort NameTravis Picking Pattern Example 21 - Persistent ID2FAB28472D65F448 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/25%20The%20Travis%20Picking%20Pattern%20Example%2021.m4a - File Folder Count4 - Library Folder Count1 - - 6920 - - Track ID6920 - NameWheels Example 22 - ArtistMark Hanson - AlbumBeyond Basics Fingerstyle Guitar - GenreUnclassifiable - KindAAC audio file - Size1027016 - Total Time32040 - Track Number26 - Track Count72 - Year1997 - Date Modified2009-11-30T08:29:21Z - Date Added2009-11-30T08:00:20Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3343190191 - Play Date UTC2009-12-09T02:26:31Z - Normalization376 - Artwork Count1 - Persistent ID9CB1129ABD719EDC - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/26%20Wheels%20Example%2022.m4a - File Folder Count4 - Library Folder Count1 - - 6922 - - Track ID6922 - NameWheels Example 23 - ArtistMark Hanson - AlbumBeyond Basics Fingerstyle Guitar - GenreUnclassifiable - KindAAC audio file - Size966443 - Total Time30120 - Track Number27 - Track Count72 - Year1997 - Date Modified2009-11-30T08:29:21Z - Date Added2009-11-30T08:00:40Z - Bit Rate256 - Sample Rate44100 - Skip Count1 - Skip Date2009-12-09T02:26:33Z - Normalization213 - Artwork Count1 - Persistent IDC26A48AE4FDEE2D5 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/27%20Wheels%20Example%2023.m4a - File Folder Count4 - Library Folder Count1 - - 6924 - - Track ID6924 - NameWheels Example 24 - ArtistMark Hanson - AlbumBeyond Basics Fingerstyle Guitar - GenreUnclassifiable - KindAAC audio file - Size1122828 - Total Time35053 - Track Number28 - Track Count72 - Year1997 - Date Modified2009-11-30T08:29:21Z - Date Added2009-11-30T08:00:58Z - Bit Rate256 - Sample Rate44100 - Normalization349 - Artwork Count1 - Persistent ID1348CBA1D591EE2D - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/28%20Wheels%20Example%2024.m4a - File Folder Count4 - Library Folder Count1 - - 6926 - - Track ID6926 - NameWheels Example 25 - ArtistMark Hanson - AlbumBeyond Basics Fingerstyle Guitar - GenreUnclassifiable - KindAAC audio file - Size1217946 - Total Time38040 - Track Number29 - Track Count72 - Year1997 - Date Modified2009-11-30T08:29:22Z - Date Added2009-11-30T08:01:19Z - Bit Rate256 - Sample Rate44100 - Skip Count1 - Skip Date2009-12-09T02:26:49Z - Normalization300 - Artwork Count1 - Persistent IDFFD1E5C3E4DF6E35 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/29%20Wheels%20Example%2025.m4a - File Folder Count4 - Library Folder Count1 - - 6928 - - Track ID6928 - NameWheels - ArtistMark Hanson - AlbumBeyond Basics Fingerstyle Guitar - GenreUnclassifiable - KindAAC audio file - Size2834708 - Total Time87706 - Track Number30 - Track Count72 - Year1997 - Date Modified2009-11-30T08:29:22Z - Date Added2009-11-30T08:01:43Z - Bit Rate256 - Sample Rate44100 - Play Count3 - Play Date3343907962 - Play Date UTC2009-12-17T09:49:22Z - Normalization225 - Artwork Count1 - Persistent ID79D3A9738BBF0B5E - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/30%20Wheels.m4a - File Folder Count4 - Library Folder Count1 - - 6930 - - Track ID6930 - NamePlayin' The Blues Example 26 - ArtistMark Hanson - AlbumBeyond Basics Fingerstyle Guitar - GenreUnclassifiable - KindAAC audio file - Size1546708 - Total Time47933 - Track Number31 - Track Count72 - Year1997 - Date Modified2009-11-30T08:29:22Z - Date Added2009-11-30T08:02:34Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3343121815 - Play Date UTC2009-12-08T07:26:55Z - Normalization400 - Artwork Count1 - Persistent ID0EF7D6949E6165D6 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/31%20Playin'%20The%20Blues%20Example%2026.m4a - File Folder Count4 - Library Folder Count1 - - 6932 - - Track ID6932 - NamePlayin' The Blues Example 27 - ArtistMark Hanson - AlbumBeyond Basics Fingerstyle Guitar - GenreUnclassifiable - KindAAC audio file - Size1563622 - Total Time48813 - Track Number32 - Track Count72 - Year1997 - Date Modified2009-11-30T08:29:22Z - Date Added2009-11-30T08:03:03Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3343908023 - Play Date UTC2009-12-17T09:50:23Z - Normalization377 - Artwork Count1 - Persistent IDD2F04D075A0529FE - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/32%20Playin'%20The%20Blues%20Example%2027.m4a - File Folder Count4 - Library Folder Count1 - - 6934 - - Track ID6934 - NamePlayin' The Blues Example 28 - ArtistMark Hanson - AlbumBeyond Basics Fingerstyle Guitar - GenreUnclassifiable - KindAAC audio file - Size672437 - Total Time20866 - Track Number33 - Track Count72 - Year1997 - Date Modified2009-11-30T08:29:22Z - Date Added2009-11-30T08:03:32Z - Bit Rate256 - Sample Rate44100 - Normalization510 - Artwork Count1 - Persistent ID447C914DE890934A - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/33%20Playin'%20The%20Blues%20Example%2028.m4a - File Folder Count4 - Library Folder Count1 - - 6936 - - Track ID6936 - NamePlayin' The Blues Example 29 - ArtistMark Hanson - AlbumBeyond Basics Fingerstyle Guitar - GenreUnclassifiable - KindAAC audio file - Size650569 - Total Time20200 - Track Number34 - Track Count72 - Year1997 - Date Modified2009-11-30T08:29:22Z - Date Added2009-11-30T08:03:45Z - Bit Rate256 - Sample Rate44100 - Normalization434 - Artwork Count1 - Persistent ID1065E7CFD4DE23B7 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/34%20Playin'%20The%20Blues%20Example%2029.m4a - File Folder Count4 - Library Folder Count1 - - 6938 - - Track ID6938 - NamePlayin' The Blues Example 30 - ArtistMark Hanson - AlbumBeyond Basics Fingerstyle Guitar - GenreUnclassifiable - KindAAC audio file - Size1736508 - Total Time53266 - Track Number35 - Track Count72 - Year1997 - Date Modified2009-11-30T08:29:22Z - Date Added2009-11-30T08:03:59Z - Bit Rate256 - Sample Rate44100 - Normalization393 - Artwork Count1 - Persistent ID85AE3658FF1E2C81 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/35%20Playin'%20The%20Blues%20Example%2030.m4a - File Folder Count4 - Library Folder Count1 - - 6940 - - Track ID6940 - NamePlayin' The Blues Example 31 - ArtistMark Hanson - AlbumBeyond Basics Fingerstyle Guitar - GenreUnclassifiable - KindAAC audio file - Size1683204 - Total Time52013 - Track Number36 - Track Count72 - Year1997 - Date Modified2009-11-30T08:29:22Z - Date Added2009-11-30T08:04:32Z - Bit Rate256 - Sample Rate44100 - Normalization483 - Artwork Count1 - Persistent IDE808C61DA08204C0 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/36%20Playin'%20The%20Blues%20Example%2031.m4a - File Folder Count4 - Library Folder Count1 - - 6942 - - Track ID6942 - NamePlayin' The Blues Example 32 - ArtistMark Hanson - AlbumBeyond Basics Fingerstyle Guitar - GenreUnclassifiable - KindAAC audio file - Size643361 - Total Time19906 - Track Number37 - Track Count72 - Year1997 - Date Modified2009-11-30T08:29:22Z - Date Added2009-11-30T08:05:04Z - Bit Rate256 - Sample Rate44100 - Normalization457 - Artwork Count1 - Persistent ID7FD7FAB5781313C2 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/37%20Playin'%20The%20Blues%20Example%2032.m4a - File Folder Count4 - Library Folder Count1 - - 6944 - - Track ID6944 - NamePlayin' The Blues Example 33 - ArtistMark Hanson - AlbumBeyond Basics Fingerstyle Guitar - GenreUnclassifiable - KindAAC audio file - Size4369337 - Total Time133520 - Track Number38 - Track Count72 - Year1997 - Date Modified2009-11-30T08:29:22Z - Date Added2009-11-30T08:05:17Z - Bit Rate256 - Sample Rate44100 - Normalization588 - Artwork Count1 - Persistent ID5B56C30CCC4C60DD - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/38%20Playin'%20The%20Blues%20Example%2033.m4a - File Folder Count4 - Library Folder Count1 - - 6946 - - Track ID6946 - NameOther Alternating Bass Patterns Examples 34 - ArtistMark Hanson - AlbumBeyond Basics Fingerstyle Guitar - GenreUnclassifiable - KindAAC audio file - Size1210272 - Total Time37506 - Track Number39 - Track Count72 - Year1997 - Date Modified2009-11-30T08:29:23Z - Date Added2009-11-30T08:06:38Z - Bit Rate256 - Sample Rate44100 - Play Count2 - Play Date3343908062 - Play Date UTC2009-12-17T09:51:02Z - Normalization405 - Artwork Count1 - Persistent ID4C477C939EB7A11A - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/39%20Other%20Alternating%20Bass%20Patterns%20Examples%2034.m4a - File Folder Count4 - Library Folder Count1 - - 6948 - - Track ID6948 - NameOther Alternating Bass Patterns Examples 35 - ArtistMark Hanson - AlbumBeyond Basics Fingerstyle Guitar - GenreUnclassifiable - KindAAC audio file - Size966161 - Total Time30106 - Track Number40 - Track Count72 - Year1997 - Date Modified2009-11-30T08:29:23Z - Date Added2009-11-30T08:07:02Z - Bit Rate256 - Sample Rate44100 - Play Count2 - Play Date3343924227 - Play Date UTC2009-12-17T14:20:27Z - Normalization469 - Artwork Count1 - Persistent ID0B1A658CD436CFED - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/40%20Other%20Alternating%20Bass%20Patterns%20Examples%2035.m4a - File Folder Count4 - Library Folder Count1 - - 6950 - - Track ID6950 - NameOther Alternating Bass Patterns Examples 36 - ArtistMark Hanson - AlbumBeyond Basics Fingerstyle Guitar - GenreUnclassifiable - KindAAC audio file - Size1511327 - Total Time47000 - Track Number41 - Track Count72 - Year1997 - Date Modified2009-11-30T08:29:23Z - Date Added2009-11-30T08:07:22Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3343125952 - Play Date UTC2009-12-08T08:35:52Z - Normalization543 - Artwork Count1 - Persistent IDD9BB28A81FE633D9 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/41%20Other%20Alternating%20Bass%20Patterns%20Examples%2036.m4a - File Folder Count4 - Library Folder Count1 - - 6952 - - Track ID6952 - NameOther Alternating Bass Patterns Examples 37 - ArtistMark Hanson - AlbumBeyond Basics Fingerstyle Guitar - GenreUnclassifiable - KindAAC audio file - Size1500543 - Total Time46960 - Track Number42 - Track Count72 - Year1997 - Date Modified2009-11-30T08:29:23Z - Date Added2009-11-30T08:07:52Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3343125999 - Play Date UTC2009-12-08T08:36:39Z - Normalization450 - Artwork Count1 - Persistent IDE44EE363661AD1A1 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/42%20Other%20Alternating%20Bass%20Patterns%20Examples%2037.m4a - File Folder Count4 - Library Folder Count1 - - 6954 - - Track ID6954 - NameOther Alternating Bass Patterns Examples 38 - ArtistMark Hanson - AlbumBeyond Basics Fingerstyle Guitar - GenreUnclassifiable - KindAAC audio file - Size754490 - Total Time23386 - Track Number43 - Track Count72 - Year1997 - Date Modified2009-11-30T08:29:23Z - Date Added2009-11-30T08:08:22Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3343126024 - Play Date UTC2009-12-08T08:37:04Z - Normalization578 - Artwork Count1 - Persistent ID9D95CABC4E7E0ABF - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/43%20Other%20Alternating%20Bass%20Patterns%20Examples%2038.m4a - File Folder Count4 - Library Folder Count1 - - 6956 - - Track ID6956 - NameOther Alternating Bass Patterns Examples 39 - ArtistMark Hanson - AlbumBeyond Basics Fingerstyle Guitar - GenreUnclassifiable - KindAAC audio file - Size705662 - Total Time21880 - Track Number44 - Track Count72 - Year1997 - Date Modified2009-11-30T08:29:23Z - Date Added2009-11-30T08:08:38Z - Bit Rate256 - Sample Rate44100 - Normalization602 - Artwork Count1 - Persistent ID9592A1892E274B83 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/44%20Other%20Alternating%20Bass%20Patterns%20Examples%2039.m4a - File Folder Count4 - Library Folder Count1 - - 6958 - - Track ID6958 - NameOther Alternating Bass Patterns Examples 40 - ArtistMark Hanson - AlbumBeyond Basics Fingerstyle Guitar - GenreUnclassifiable - KindAAC audio file - Size1051183 - Total Time32826 - Track Number45 - Track Count72 - Year1997 - Date Modified2009-11-30T08:29:23Z - Date Added2009-11-30T08:08:53Z - Bit Rate256 - Sample Rate44100 - Normalization547 - Artwork Count1 - Persistent IDC68A6FB69B7513B2 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/45%20Other%20Alternating%20Bass%20Patterns%20Examples%2040.m4a - File Folder Count4 - Library Folder Count1 - - 6960 - - Track ID6960 - NameOther Alternating Bass Patterns Examples 41 - ArtistMark Hanson - AlbumBeyond Basics Fingerstyle Guitar - GenreUnclassifiable - KindAAC audio file - Size882713 - Total Time27520 - Track Number46 - Track Count72 - Year1997 - Date Modified2009-11-30T08:29:23Z - Date Added2009-11-30T08:09:14Z - Bit Rate256 - Sample Rate44100 - Normalization431 - Artwork Count1 - Persistent ID6DE1F6BF6B0A4B9B - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/46%20Other%20Alternating%20Bass%20Patterns%20Examples%2041.m4a - File Folder Count4 - Library Folder Count1 - - 6962 - - Track ID6962 - NameFour Per Bar Example 42 - ArtistMark Hanson - AlbumBeyond Basics Fingerstyle Guitar - GenreUnclassifiable - KindAAC audio file - Size1135626 - Total Time35440 - Track Number47 - Track Count72 - Year1997 - Date Modified2009-11-30T08:29:23Z - Date Added2009-11-30T08:09:33Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3343924259 - Play Date UTC2009-12-17T14:20:59Z - Normalization504 - Artwork Count1 - Persistent IDCAF3B844D0665641 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/47%20Four%20Per%20Bar%20Example%2042.m4a - File Folder Count4 - Library Folder Count1 - - 6964 - - Track ID6964 - NameFour Per Bar Example 43 - ArtistMark Hanson - AlbumBeyond Basics Fingerstyle Guitar - GenreUnclassifiable - KindAAC audio file - Size994490 - Total Time30973 - Track Number48 - Track Count72 - Year1997 - Date Modified2009-11-30T08:29:23Z - Date Added2009-11-30T08:09:56Z - Bit Rate256 - Sample Rate44100 - Normalization520 - Artwork Count1 - Persistent IDA133A0493DE72CAE - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/48%20Four%20Per%20Bar%20Example%2043.m4a - File Folder Count4 - Library Folder Count1 - - 6966 - - Track ID6966 - NameFour Per Bar Example 44 - ArtistMark Hanson - AlbumBeyond Basics Fingerstyle Guitar - GenreUnclassifiable - KindAAC audio file - Size1992085 - Total Time61480 - Track Number49 - Track Count72 - Year1997 - Date Modified2009-11-30T08:29:23Z - Date Added2009-11-30T08:10:17Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3343924469 - Play Date UTC2009-12-17T14:24:29Z - Normalization588 - Artwork Count1 - Persistent ID9590FD6C94BBB5ED - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/49%20Four%20Per%20Bar%20Example%2044.m4a - File Folder Count4 - Library Folder Count1 - - 6968 - - Track ID6968 - NameFour Per Bar Example 45 - ArtistMark Hanson - AlbumBeyond Basics Fingerstyle Guitar - GenreUnclassifiable - KindAAC audio file - Size2297996 - Total Time89680 - Track Number50 - Track Count72 - Year1997 - Date Modified2009-11-30T08:29:23Z - Date Added2009-11-30T08:10:57Z - Bit Rate256 - Sample Rate44100 - Normalization589 - Artwork Count1 - Persistent ID37183A7803FAA476 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/50%20Four%20Per%20Bar%20Example%2045.m4a - File Folder Count4 - Library Folder Count1 - - 6970 - - Track ID6970 - NameFour Per Bar - ArtistMark Hanson - AlbumBeyond Basics Fingerstyle Guitar - GenreUnclassifiable - KindAAC audio file - Size2418854 - Total Time74106 - Track Number51 - Track Count72 - Year1997 - Date Modified2009-11-30T08:29:23Z - Date Added2009-11-30T08:11:55Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3343924337 - Play Date UTC2009-12-17T14:22:17Z - Normalization580 - Artwork Count1 - Persistent IDACB3214E839EC87D - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/51%20Four%20Per%20Bar.m4a - File Folder Count4 - Library Folder Count1 - - 6972 - - Track ID6972 - NameOther Accompaniment Patterns Using The Travis Style Example 46 - ArtistMark Hanson - AlbumBeyond Basics Fingerstyle Guitar - GenreUnclassifiable - KindAAC audio file - Size1680026 - Total Time52240 - Track Number52 - Track Count72 - Year1997 - Date Modified2009-11-30T08:29:24Z - Date Added2009-11-30T08:12:44Z - Bit Rate256 - Sample Rate44100 - Normalization588 - Artwork Count1 - Persistent ID11F98B4506695070 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/52%20Other%20Accompaniment%20Patterns%20Using%20The%20Travis%20Style%20Example%2046.m4a - File Folder Count4 - Library Folder Count1 - - 6974 - - Track ID6974 - NameOther Accompaniment Patterns Using The Travis Style Example 47 - ArtistMark Hanson - AlbumBeyond Basics Fingerstyle Guitar - GenreUnclassifiable - KindAAC audio file - Size2835099 - Total Time87200 - Track Number53 - Track Count72 - Year1997 - Date Modified2009-11-30T08:29:24Z - Date Added2009-11-30T08:13:20Z - Bit Rate256 - Sample Rate44100 - Normalization526 - Artwork Count1 - Persistent ID72A9A494F02FC324 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/53%20Other%20Accompaniment%20Patterns%20Using%20The%20Travis%20Style%20Example%2047.m4a - File Folder Count4 - Library Folder Count1 - - 6976 - - Track ID6976 - NameOther Accompaniment Patterns Using The Travis Style Example 48 - ArtistMark Hanson - AlbumBeyond Basics Fingerstyle Guitar - GenreUnclassifiable - KindAAC audio file - Size2646739 - Total Time81533 - Track Number54 - Track Count72 - Year1997 - Date Modified2009-11-30T08:29:24Z - Date Added2009-11-30T08:14:18Z - Bit Rate256 - Sample Rate44100 - Normalization579 - Artwork Count1 - Persistent ID0D14291177DF887B - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/54%20Other%20Accompaniment%20Patterns%20Using%20The%20Travis%20Style%20Example%2048.m4a - File Folder Count4 - Library Folder Count1 - - 6978 - - Track ID6978 - NameOther Accompaniment Patterns Using The Travis Style Example 49 - ArtistMark Hanson - AlbumBeyond Basics Fingerstyle Guitar - GenreUnclassifiable - KindAAC audio file - Size4275764 - Total Time130293 - Track Number55 - Track Count72 - Year1997 - Date Modified2009-11-30T08:29:24Z - Date Added2009-11-30T08:15:13Z - Bit Rate256 - Sample Rate44100 - Normalization588 - Artwork Count1 - Persistent IDCD41515E7A0CEF1F - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/55%20Other%20Accompaniment%20Patterns%20Using%20The%20Travis%20Style%20Example%2049.m4a - File Folder Count4 - Library Folder Count1 - - 6980 - - Track ID6980 - NameOther Accompaniment Patterns Using The Travis Style Example 50 - ArtistMark Hanson - AlbumBeyond Basics Fingerstyle Guitar - GenreUnclassifiable - KindAAC audio file - Size1288986 - Total Time39893 - Track Number56 - Track Count72 - Year1997 - Date Modified2009-11-30T08:29:24Z - Date Added2009-11-30T08:16:40Z - Bit Rate256 - Sample Rate44100 - Normalization588 - Artwork Count1 - Persistent IDFEE8716FAA0FBDD6 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/56%20Other%20Accompaniment%20Patterns%20Using%20The%20Travis%20Style%20Example%2050.m4a - File Folder Count4 - Library Folder Count1 - - 6982 - - Track ID6982 - NameKey To The Kingdom Example 51 - ArtistMark Hanson - AlbumBeyond Basics Fingerstyle Guitar - GenreUnclassifiable - KindAAC audio file - Size1938087 - Total Time59586 - Track Number57 - Track Count72 - Year1997 - Date Modified2009-11-30T08:29:24Z - Date Added2009-11-30T08:17:09Z - Bit Rate256 - Sample Rate44100 - Normalization588 - Artwork Count1 - Persistent IDE41FBB9CD7C01D9B - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/57%20Key%20To%20The%20Kingdom%20Example%2051.m4a - File Folder Count4 - Library Folder Count1 - - 6984 - - Track ID6984 - NameKey To The Kingdom Example 52 - ArtistMark Hanson - AlbumBeyond Basics Fingerstyle Guitar - GenreUnclassifiable - KindAAC audio file - Size1860204 - Total Time57733 - Track Number58 - Track Count72 - Year1997 - Date Modified2009-11-30T08:29:24Z - Date Added2009-11-30T08:17:50Z - Bit Rate256 - Sample Rate44100 - Normalization481 - Artwork Count1 - Persistent ID86CB9C940E1D0CFE - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/58%20Key%20To%20The%20Kingdom%20Example%2052.m4a - File Folder Count4 - Library Folder Count1 - - 6986 - - Track ID6986 - NameKey To The Kingdom Example 53 - ArtistMark Hanson - AlbumBeyond Basics Fingerstyle Guitar - GenreUnclassifiable - KindAAC audio file - Size901329 - Total Time28053 - Track Number59 - Track Count72 - Year1997 - Date Modified2009-11-30T08:29:25Z - Date Added2009-11-30T08:18:30Z - Bit Rate256 - Sample Rate44100 - Normalization416 - Artwork Count1 - Persistent ID7D1CFE794633B4C3 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/59%20Key%20To%20The%20Kingdom%20Example%2053.m4a - File Folder Count4 - Library Folder Count1 - - 6988 - - Track ID6988 - NameKey To The Kingdom - ArtistMark Hanson - AlbumBeyond Basics Fingerstyle Guitar - GenreUnclassifiable - KindAAC audio file - Size2309762 - Total Time71106 - Track Number60 - Track Count72 - Year1997 - Date Modified2009-11-30T08:29:25Z - Date Added2009-11-30T08:18:51Z - Bit Rate256 - Sample Rate44100 - Play Count2 - Play Date3343924594 - Play Date UTC2009-12-17T14:26:34Z - Normalization549 - Artwork Count1 - Persistent ID3E575FBC3A6B7246 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/60%20Key%20To%20The%20Kingdom.m4a - File Folder Count4 - Library Folder Count1 - - 6990 - - Track ID6990 - NameThe Blues With Alternating Bass Example 54 - ArtistMark Hanson - AlbumBeyond Basics Fingerstyle Guitar - GenreUnclassifiable - KindAAC audio file - Size1045792 - Total Time32666 - Track Number61 - Track Count72 - Year1997 - Date Modified2009-11-30T08:29:25Z - Date Added2009-11-30T08:19:41Z - Bit Rate256 - Sample Rate44100 - Normalization552 - Artwork Count1 - Sort NameBlues With Alternating Bass Example 54 - Persistent ID760C27748F2C3B56 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/61%20The%20Blues%20With%20Alternating%20Bass%20Example%2054.m4a - File Folder Count4 - Library Folder Count1 - - 6992 - - Track ID6992 - NameThe Blues With Alternating Bass Example 55 - ArtistMark Hanson - AlbumBeyond Basics Fingerstyle Guitar - GenreUnclassifiable - KindAAC audio file - Size991636 - Total Time30973 - Track Number62 - Track Count72 - Year1997 - Date Modified2009-11-30T08:29:25Z - Date Added2009-11-30T08:20:05Z - Bit Rate256 - Sample Rate44100 - Normalization550 - Artwork Count1 - Sort NameBlues With Alternating Bass Example 55 - Persistent ID2539F0EE636001A9 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/62%20The%20Blues%20With%20Alternating%20Bass%20Example%2055.m4a - File Folder Count4 - Library Folder Count1 - - 6994 - - Track ID6994 - NameThe Blues With Alternating Bass Example 56 - ArtistMark Hanson - AlbumBeyond Basics Fingerstyle Guitar - GenreUnclassifiable - KindAAC audio file - Size1685448 - Total Time52333 - Track Number63 - Track Count72 - Year1997 - Date Modified2009-11-30T08:29:25Z - Date Added2009-11-30T08:20:28Z - Bit Rate256 - Sample Rate44100 - Normalization437 - Artwork Count1 - Sort NameBlues With Alternating Bass Example 56 - Persistent IDA8EE55CA1FCE7F67 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/63%20The%20Blues%20With%20Alternating%20Bass%20Example%2056.m4a - File Folder Count4 - Library Folder Count1 - - 6996 - - Track ID6996 - NameThe Blues With Alternating Bass Example 57 - ArtistMark Hanson - AlbumBeyond Basics Fingerstyle Guitar - GenreUnclassifiable - KindAAC audio file - Size394473 - Total Time12066 - Track Number64 - Track Count72 - Year1997 - Date Modified2009-11-30T08:29:25Z - Date Added2009-11-30T08:21:05Z - Bit Rate256 - Sample Rate44100 - Normalization542 - Artwork Count1 - Sort NameBlues With Alternating Bass Example 57 - Persistent ID3A869ACCBF741F51 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/64%20The%20Blues%20With%20Alternating%20Bass%20Example%2057.m4a - File Folder Count4 - Library Folder Count1 - - 6998 - - Track ID6998 - NameThe Blues With Alternating Bass Example 58 - ArtistMark Hanson - AlbumBeyond Basics Fingerstyle Guitar - GenreUnclassifiable - KindAAC audio file - Size1996189 - Total Time61573 - Track Number65 - Track Count72 - Year1997 - Date Modified2009-11-30T08:29:25Z - Date Added2009-11-30T08:21:15Z - Bit Rate256 - Sample Rate44100 - Normalization576 - Artwork Count1 - Sort NameBlues With Alternating Bass Example 58 - Persistent ID95D231E928D14B67 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/65%20The%20Blues%20With%20Alternating%20Bass%20Example%2058.m4a - File Folder Count4 - Library Folder Count1 - - 7000 - - Track ID7000 - NameTaylor's Ferry Example 59 - ArtistMark Hanson - AlbumBeyond Basics Fingerstyle Guitar - GenreUnclassifiable - KindAAC audio file - Size1892745 - Total Time58613 - Track Number66 - Track Count72 - Year1997 - Date Modified2009-11-30T08:29:25Z - Date Added2009-11-30T08:21:59Z - Bit Rate256 - Sample Rate44100 - Normalization477 - Artwork Count1 - Persistent IDF477C2F268A3FEEA - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/66%20Taylor's%20Ferry%20Example%2059.m4a - File Folder Count4 - Library Folder Count1 - - 7002 - - Track ID7002 - NameTaylor's Ferry Example 60 - ArtistMark Hanson - AlbumBeyond Basics Fingerstyle Guitar - GenreUnclassifiable - KindAAC audio file - Size1860875 - Total Time57520 - Track Number67 - Track Count72 - Year1997 - Date Modified2009-11-30T08:29:25Z - Date Added2009-11-30T08:22:42Z - Bit Rate256 - Sample Rate44100 - Normalization588 - Artwork Count1 - Persistent IDC3D9082CD7ADB85A - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/67%20Taylor's%20Ferry%20Example%2060.m4a - File Folder Count4 - Library Folder Count1 - - 7004 - - Track ID7004 - NameTaylor's Ferry Example 61 - ArtistMark Hanson - AlbumBeyond Basics Fingerstyle Guitar - GenreUnclassifiable - KindAAC audio file - Size3133696 - Total Time96000 - Track Number68 - Track Count72 - Year1997 - Date Modified2009-11-30T08:29:25Z - Date Added2009-11-30T08:23:23Z - Bit Rate256 - Sample Rate44100 - Normalization542 - Artwork Count1 - Persistent IDE1CE4D4C8090D12A - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/68%20Taylor's%20Ferry%20Example%2061.m4a - File Folder Count4 - Library Folder Count1 - - 7006 - - Track ID7006 - NameTaylor's Ferry Example 62 - ArtistMark Hanson - AlbumBeyond Basics Fingerstyle Guitar - GenreUnclassifiable - KindAAC audio file - Size3034474 - Total Time92840 - Track Number69 - Track Count72 - Year1997 - Date Modified2009-11-30T08:29:26Z - Date Added2009-11-30T08:24:32Z - Bit Rate256 - Sample Rate44100 - Normalization393 - Artwork Count1 - Persistent IDEB6106EB56A17B4C - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/69%20Taylor's%20Ferry%20Example%2062.m4a - File Folder Count4 - Library Folder Count1 - - 7008 - - Track ID7008 - NameTaylor's Ferry - ArtistMark Hanson - AlbumBeyond Basics Fingerstyle Guitar - GenreUnclassifiable - KindAAC audio file - Size2168697 - Total Time66386 - Track Number70 - Track Count72 - Year1997 - Date Modified2009-11-30T08:29:26Z - Date Added2009-11-30T08:25:39Z - Bit Rate256 - Sample Rate44100 - Normalization528 - Artwork Count1 - Persistent ID77A224670D91D7DC - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/70%20Taylor's%20Ferry.m4a - File Folder Count4 - Library Folder Count1 - - 7010 - - Track ID7010 - NameBrahm's Lullaby Example 63 (Version I) - ArtistMark Hanson - AlbumBeyond Basics Fingerstyle Guitar - GenreUnclassifiable - KindAAC audio file - Size2565139 - Total Time78960 - Track Number71 - Track Count72 - Year1997 - Date Modified2009-11-30T08:29:26Z - Date Added2009-11-30T08:26:28Z - Bit Rate256 - Sample Rate44100 - Normalization504 - Artwork Count1 - Persistent IDBCCD11BFABCDC272 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/71%20Brahm's%20Lullaby%20Example%2063%20(Version%20I).m4a - File Folder Count4 - Library Folder Count1 - - 7012 - - Track ID7012 - NameBrahm's Lullaby Example 64 (Version II) - ArtistMark Hanson - AlbumBeyond Basics Fingerstyle Guitar - GenreUnclassifiable - KindAAC audio file - Size1624543 - Total Time49066 - Track Number72 - Track Count72 - Year1997 - Date Modified2009-11-30T08:29:26Z - Date Added2009-11-30T08:27:26Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3342509368 - Play Date UTC2009-12-01T05:19:28Z - Normalization377 - Artwork Count1 - Persistent IDE2B37C1B4599AF3C - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/Beyond%20Basics%20Fingerstyle%20Guitar/72%20Brahm's%20Lullaby%20Example%2064%20(Version%20II).m4a - File Folder Count4 - Library Folder Count1 - - 7014 - - Track ID7014 - Name"Strawberry Curl" - ArtistMark Hanson - AlbumThe Art Of Solo Fingerpicking - GenreUnclassifiable - KindAAC audio file - Size5442005 - Total Time142093 - Disc Number1 - Disc Count1 - Track Number1 - Track Count45 - Year1988 - Date Modified2009-11-30T10:10:19Z - Date Added2009-11-30T09:41:28Z - Bit Rate256 - Sample Rate44100 - Play Count2 - Play Date3342696732 - Play Date UTC2009-12-03T09:22:12Z - Normalization1243 - Artwork Count1 - Sort AlbumArt Of Solo Fingerpicking - Persistent IDBB8BF5960B0453AF - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/The%20Art%20Of%20Solo%20Fingerpicking/01%20_Strawberry%20Curl_.m4a - File Folder Count4 - Library Folder Count1 - - 7016 - - Track ID7016 - NameIntroduction And Tuning - ArtistMark Hanson - AlbumThe Art Of Solo Fingerpicking - GenreUnclassifiable - KindAAC audio file - Size2503613 - Total Time65480 - Disc Number1 - Disc Count1 - Track Number2 - Track Count45 - Year1988 - Date Modified2009-11-30T10:10:20Z - Date Added2009-11-30T09:41:42Z - Bit Rate256 - Sample Rate44100 - Normalization1178 - Artwork Count1 - Sort AlbumArt Of Solo Fingerpicking - Persistent IDD4B95F977DCAC5BD - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/The%20Art%20Of%20Solo%20Fingerpicking/02%20Introduction%20And%20Tuning.m4a - File Folder Count4 - Library Folder Count1 - - 7018 - - Track ID7018 - NameExs. 7A-B - ArtistMark Hanson - AlbumThe Art Of Solo Fingerpicking - GenreUnclassifiable - KindAAC audio file - Size3202963 - Total Time84306 - Disc Number1 - Disc Count1 - Track Number3 - Track Count45 - Year1988 - Date Modified2009-11-30T10:10:20Z - Date Added2009-11-30T09:41:48Z - Bit Rate256 - Sample Rate44100 - Normalization1134 - Artwork Count1 - Sort AlbumArt Of Solo Fingerpicking - Persistent ID4105082F3F5B5623 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/The%20Art%20Of%20Solo%20Fingerpicking/03%20Exs.%207A-B.m4a - File Folder Count4 - Library Folder Count1 - - 7020 - - Track ID7020 - Name"Red, White & Blue Rag" Slowly - ArtistMark Hanson - AlbumThe Art Of Solo Fingerpicking - GenreUnclassifiable - KindAAC audio file - Size5143844 - Total Time135826 - Disc Number1 - Disc Count1 - Track Number4 - Track Count45 - Year1988 - Date Modified2009-11-30T10:10:20Z - Date Added2009-11-30T09:41:56Z - Bit Rate256 - Sample Rate44100 - Normalization1119 - Artwork Count1 - Sort AlbumArt Of Solo Fingerpicking - Persistent IDECF9E11DBD9B1091 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/The%20Art%20Of%20Solo%20Fingerpicking/04%20_Red,%20White%20&%20Blue%20Rag_%20Slowly.m4a - File Folder Count4 - Library Folder Count1 - - 7022 - - Track ID7022 - NameExs. 13a-D - ArtistMark Hanson - AlbumThe Art Of Solo Fingerpicking - GenreUnclassifiable - KindAAC audio file - Size2439286 - Total Time63853 - Disc Number1 - Disc Count1 - Track Number5 - Track Count45 - Year1988 - Date Modified2009-11-30T10:10:20Z - Date Added2009-11-30T09:42:08Z - Bit Rate256 - Sample Rate44100 - Normalization1023 - Artwork Count1 - Sort AlbumArt Of Solo Fingerpicking - Persistent IDA82F83BA65558504 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/The%20Art%20Of%20Solo%20Fingerpicking/05%20Exs.%2013a-D.m4a - File Folder Count4 - Library Folder Count1 - - 7024 - - Track ID7024 - NameExs. 14a-F - ArtistMark Hanson - AlbumThe Art Of Solo Fingerpicking - GenreUnclassifiable - KindAAC audio file - Size5378099 - Total Time140880 - Disc Number1 - Disc Count1 - Track Number6 - Track Count45 - Year1988 - Date Modified2009-11-30T10:10:20Z - Date Added2009-11-30T09:42:14Z - Bit Rate256 - Sample Rate44100 - Normalization957 - Artwork Count1 - Sort AlbumArt Of Solo Fingerpicking - Persistent IDF3890A147DF5A6CE - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/The%20Art%20Of%20Solo%20Fingerpicking/06%20Exs.%2014a-F.m4a - File Folder Count4 - Library Folder Count1 - - 7026 - - Track ID7026 - NameExs. 15a-D - ArtistMark Hanson - AlbumThe Art Of Solo Fingerpicking - GenreUnclassifiable - KindAAC audio file - Size4443503 - Total Time115866 - Disc Number1 - Disc Count1 - Track Number7 - Track Count45 - Year1988 - Date Modified2009-11-30T10:10:21Z - Date Added2009-11-30T09:42:25Z - Bit Rate256 - Sample Rate44100 - Normalization1126 - Artwork Count1 - Sort AlbumArt Of Solo Fingerpicking - Persistent IDC92AE16E832B9056 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/The%20Art%20Of%20Solo%20Fingerpicking/07%20Exs.%2015a-D.m4a - File Folder Count4 - Library Folder Count1 - - 7028 - - Track ID7028 - NameExs. 16a-C - ArtistMark Hanson - AlbumThe Art Of Solo Fingerpicking - GenreUnclassifiable - KindAAC audio file - Size3817327 - Total Time99986 - Disc Number1 - Disc Count1 - Track Number8 - Track Count45 - Year1988 - Date Modified2009-11-30T10:10:21Z - Date Added2009-11-30T09:42:34Z - Bit Rate256 - Sample Rate44100 - Normalization1060 - Artwork Count1 - Sort AlbumArt Of Solo Fingerpicking - Persistent IDA6E9F73970CD8675 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/The%20Art%20Of%20Solo%20Fingerpicking/08%20Exs.%2016a-C.m4a - File Folder Count4 - Library Folder Count1 - - 7030 - - Track ID7030 - NameEx. 17A - ArtistMark Hanson - AlbumThe Art Of Solo Fingerpicking - GenreUnclassifiable - KindAAC audio file - Size1277441 - Total Time33293 - Disc Number1 - Disc Count1 - Track Number9 - Track Count45 - Year1988 - Date Modified2009-11-30T10:10:21Z - Date Added2009-11-30T09:42:42Z - Bit Rate256 - Sample Rate44100 - Normalization941 - Artwork Count1 - Sort AlbumArt Of Solo Fingerpicking - Persistent ID0508D4CAFB69C613 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/The%20Art%20Of%20Solo%20Fingerpicking/09%20Ex.%2017A.m4a - File Folder Count4 - Library Folder Count1 - - 7032 - - Track ID7032 - Name"Devils's Dream" Slowly - ArtistMark Hanson - AlbumThe Art Of Solo Fingerpicking - GenreUnclassifiable - KindAAC audio file - Size4692357 - Total Time123120 - Disc Number1 - Disc Count1 - Track Number10 - Track Count45 - Year1988 - Date Modified2009-11-30T10:10:21Z - Date Added2009-11-30T09:42:45Z - Bit Rate256 - Sample Rate44100 - Normalization1156 - Artwork Count1 - Sort AlbumArt Of Solo Fingerpicking - Persistent IDA97FAF30F1E1A091 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/The%20Art%20Of%20Solo%20Fingerpicking/10%20_Devils's%20Dream_%20Slowly.m4a - File Folder Count4 - Library Folder Count1 - - 7034 - - Track ID7034 - Name"Freight Train" Slowly - ArtistMark Hanson - AlbumThe Art Of Solo Fingerpicking - GenreUnclassifiable - KindAAC audio file - Size4042645 - Total Time106533 - Disc Number1 - Disc Count1 - Track Number11 - Track Count45 - Year1988 - Date Modified2009-11-30T10:10:21Z - Date Added2009-11-30T09:42:54Z - Bit Rate256 - Sample Rate44100 - Normalization1098 - Artwork Count1 - Sort AlbumArt Of Solo Fingerpicking - Persistent IDD0CCD5A2074BB2BC - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/The%20Art%20Of%20Solo%20Fingerpicking/11%20_Freight%20Train_%20Slowly.m4a - File Folder Count4 - Library Folder Count1 - - 7036 - - Track ID7036 - NameEx. 22A - ArtistMark Hanson - AlbumThe Art Of Solo Fingerpicking - GenreUnclassifiable - KindAAC audio file - Size3880770 - Total Time101666 - Disc Number1 - Disc Count1 - Track Number12 - Track Count45 - Year1988 - Date Modified2009-11-30T10:10:21Z - Date Added2009-11-30T09:43:01Z - Bit Rate256 - Sample Rate44100 - Normalization781 - Artwork Count1 - Sort AlbumArt Of Solo Fingerpicking - Persistent ID13F3E9D50E65E323 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/The%20Art%20Of%20Solo%20Fingerpicking/12%20Ex.%2022A.m4a - File Folder Count4 - Library Folder Count1 - - 7038 - - Track ID7038 - NameExs. 23a-D - ArtistMark Hanson - AlbumThe Art Of Solo Fingerpicking - GenreUnclassifiable - KindAAC audio file - Size4084554 - Total Time107106 - Disc Number1 - Disc Count1 - Track Number13 - Track Count45 - Year1988 - Date Modified2009-11-30T10:10:22Z - Date Added2009-11-30T09:43:08Z - Bit Rate256 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Sort AlbumArt Of Solo Fingerpicking - Persistent ID7CA287360526B515 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/The%20Art%20Of%20Solo%20Fingerpicking/13%20Exs.%2023a-D.m4a - File Folder Count4 - Library Folder Count1 - - 7040 - - Track ID7040 - Name"Fishin' Blues" Slowly - ArtistMark Hanson - AlbumThe Art Of Solo Fingerpicking - GenreUnclassifiable - KindAAC audio file - Size2830373 - Total Time74480 - Disc Number1 - Disc Count1 - Track Number14 - Track Count45 - Year1988 - Date Modified2009-11-30T10:10:22Z - Date Added2009-11-30T09:43:16Z - Bit Rate256 - Sample Rate44100 - Normalization1178 - Artwork Count1 - Sort AlbumArt Of Solo Fingerpicking - Persistent ID187B7481B072E5FD - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/The%20Art%20Of%20Solo%20Fingerpicking/14%20_Fishin'%20Blues_%20Slowly.m4a - File Folder Count4 - Library Folder Count1 - - 7042 - - Track ID7042 - Name"White House Blues" Slowly - ArtistMark Hanson - AlbumThe Art Of Solo Fingerpicking - GenreUnclassifiable - KindAAC audio file - Size6464655 - Total Time170346 - Disc Number1 - Disc Count1 - Track Number15 - Track Count45 - Year1988 - Date Modified2009-11-30T10:10:22Z - Date Added2009-11-30T09:43:21Z - Bit Rate256 - Sample Rate44100 - Normalization1254 - Artwork Count1 - Sort AlbumArt Of Solo Fingerpicking - Persistent IDD958F10142747C20 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/The%20Art%20Of%20Solo%20Fingerpicking/15%20_White%20House%20Blues_%20Slowly.m4a - File Folder Count4 - Library Folder Count1 - - 7044 - - Track ID7044 - NameExs. 32a-C - ArtistMark Hanson - AlbumThe Art Of Solo Fingerpicking - GenreUnclassifiable - KindAAC audio file - Size2665508 - Total Time70346 - Disc Number1 - Disc Count1 - Track Number16 - Track Count45 - Year1988 - Date Modified2009-11-30T10:10:22Z - Date Added2009-11-30T09:43:32Z - Bit Rate256 - Sample Rate44100 - Normalization1114 - Artwork Count1 - Sort AlbumArt Of Solo Fingerpicking - Persistent ID417FE89EB78C2BF9 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/The%20Art%20Of%20Solo%20Fingerpicking/16%20Exs.%2032a-C.m4a - File Folder Count4 - Library Folder Count1 - - 7046 - - Track ID7046 - NameExs. 33a-D - ArtistMark Hanson - AlbumThe Art Of Solo Fingerpicking - GenreUnclassifiable - KindAAC audio file - Size2759523 - Total Time72640 - Disc Number1 - Disc Count1 - Track Number17 - Track Count45 - Year1988 - Date Modified2009-11-30T10:10:22Z - Date Added2009-11-30T09:43:37Z - Bit Rate256 - Sample Rate44100 - Normalization1149 - Artwork Count1 - Sort AlbumArt Of Solo Fingerpicking - Persistent ID88993CBFFBD14917 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/The%20Art%20Of%20Solo%20Fingerpicking/17%20Exs.%2033a-D.m4a - File Folder Count4 - Library Folder Count1 - - 7048 - - Track ID7048 - Name"Over The Waves" - ArtistMark Hanson - AlbumThe Art Of Solo Fingerpicking - GenreUnclassifiable - KindAAC audio file - Size4316028 - Total Time113626 - Disc Number1 - Disc Count1 - Track Number18 - Track Count45 - Year1988 - Date Modified2009-11-30T10:10:23Z - Date Added2009-11-30T09:43:41Z - Bit Rate256 - Sample Rate44100 - Normalization1166 - Artwork Count1 - Sort AlbumArt Of Solo Fingerpicking - Persistent IDCEF9F560F78974C1 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/The%20Art%20Of%20Solo%20Fingerpicking/18%20_Over%20The%20Waves_.m4a - File Folder Count4 - Library Folder Count1 - - 7050 - - Track ID7050 - NameEx. 36A - ArtistMark Hanson - AlbumThe Art Of Solo Fingerpicking - GenreUnclassifiable - KindAAC audio file - Size1475895 - Total Time38880 - Disc Number1 - Disc Count1 - Track Number19 - Track Count45 - Year1988 - Date Modified2009-11-30T10:10:23Z - Date Added2009-11-30T09:43:49Z - Bit Rate256 - Sample Rate44100 - Normalization949 - Artwork Count1 - Sort AlbumArt Of Solo Fingerpicking - Persistent ID187B771BC3AD79FE - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/The%20Art%20Of%20Solo%20Fingerpicking/19%20Ex.%2036A.m4a - File Folder Count4 - Library Folder Count1 - - 7052 - - Track ID7052 - NameExs. 37a-B - ArtistMark Hanson - AlbumThe Art Of Solo Fingerpicking - GenreUnclassifiable - KindAAC audio file - Size2569514 - Total Time68080 - Disc Number1 - Disc Count1 - Track Number20 - Track Count45 - Year1988 - Date Modified2009-11-30T10:10:23Z - Date Added2009-11-30T09:43:51Z - Bit Rate256 - Sample Rate44100 - Normalization1073 - Artwork Count1 - Sort AlbumArt Of Solo Fingerpicking - Persistent IDC42D09B2B90A072C - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/The%20Art%20Of%20Solo%20Fingerpicking/20%20Exs.%2037a-B.m4a - File Folder Count4 - Library Folder Count1 - - 7054 - - Track ID7054 - NameEx. 38A - ArtistMark Hanson - AlbumThe Art Of Solo Fingerpicking - GenreUnclassifiable - KindAAC audio file - Size1843522 - Total Time48200 - Disc Number1 - Disc Count1 - Track Number21 - Track Count45 - Year1988 - Date Modified2009-11-30T10:10:23Z - Date Added2009-11-30T09:43:55Z - Bit Rate256 - Sample Rate44100 - Normalization1108 - Artwork Count1 - Sort AlbumArt Of Solo Fingerpicking - Persistent IDD6E4B8FDB3DB15ED - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/The%20Art%20Of%20Solo%20Fingerpicking/21%20Ex.%2038A.m4a - File Folder Count4 - Library Folder Count1 - - 7056 - - Track ID7056 - Name"Etude" - ArtistMark Hanson - AlbumThe Art Of Solo Fingerpicking - GenreUnclassifiable - KindAAC audio file - Size1670435 - Total Time43946 - Disc Number1 - Disc Count1 - Track Number22 - Track Count45 - Year1988 - Date Modified2009-11-30T10:10:23Z - Date Added2009-11-30T09:43:59Z - Bit Rate256 - Sample Rate44100 - Normalization1198 - Artwork Count1 - Sort AlbumArt Of Solo Fingerpicking - Persistent ID733ABAF1B2365CDE - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/The%20Art%20Of%20Solo%20Fingerpicking/22%20_Etude_.m4a - File Folder Count4 - Library Folder Count1 - - 7058 - - Track ID7058 - NameExs. 40a-C - ArtistMark Hanson - AlbumThe Art Of Solo Fingerpicking - GenreUnclassifiable - KindAAC audio file - Size1992991 - Total Time52520 - Disc Number1 - Disc Count1 - Track Number23 - Track Count45 - Year1988 - Date Modified2009-11-30T10:10:23Z - Date Added2009-11-30T09:44:01Z - Bit Rate256 - Sample Rate44100 - Normalization1100 - Artwork Count1 - Sort AlbumArt Of Solo Fingerpicking - Persistent ID4B6E862EB7261B36 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/The%20Art%20Of%20Solo%20Fingerpicking/23%20Exs.%2040a-C.m4a - File Folder Count4 - Library Folder Count1 - - 7060 - - Track ID7060 - NameExs. 41a-C - ArtistMark Hanson - AlbumThe Art Of Solo Fingerpicking - GenreUnclassifiable - KindAAC audio file - Size2694147 - Total Time70986 - Disc Number1 - Disc Count1 - Track Number24 - Track Count45 - Year1988 - Date Modified2009-11-30T10:10:23Z - Date Added2009-11-30T09:44:05Z - Bit Rate256 - Sample Rate44100 - Normalization977 - Artwork Count1 - Sort AlbumArt Of Solo Fingerpicking - Persistent ID10AF702EAC79F734 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/The%20Art%20Of%20Solo%20Fingerpicking/24%20Exs.%2041a-C.m4a - File Folder Count4 - Library Folder Count1 - - 7062 - - Track ID7062 - Name"Bill Bailey" Slowly - ArtistMark Hanson - AlbumThe Art Of Solo Fingerpicking - GenreUnclassifiable - KindAAC audio file - Size3366326 - Total Time88866 - Disc Number1 - Disc Count1 - Track Number25 - Track Count45 - Year1988 - Date Modified2009-11-30T10:10:24Z - Date Added2009-11-30T09:44:09Z - Bit Rate256 - Sample Rate44100 - Normalization1180 - Artwork Count1 - Sort AlbumArt Of Solo Fingerpicking - Persistent ID605CB29676FE67B7 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/The%20Art%20Of%20Solo%20Fingerpicking/25%20_Bill%20Bailey_%20Slowly.m4a - File Folder Count4 - Library Folder Count1 - - 7064 - - Track ID7064 - Name"Dedicated To Mississippi John Hurt" - ArtistMark Hanson - AlbumThe Art Of Solo Fingerpicking - GenreUnclassifiable - KindAAC audio file - Size3831967 - Total Time101000 - Disc Number1 - Disc Count1 - Track Number26 - Track Count45 - Year1988 - Date Modified2009-11-30T10:10:24Z - Date Added2009-11-30T09:44:14Z - Bit Rate256 - Sample Rate44100 - Normalization1170 - Artwork Count1 - Sort AlbumArt Of Solo Fingerpicking - Persistent IDBDD3E6979450227F - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/The%20Art%20Of%20Solo%20Fingerpicking/26%20_Dedicated%20To%20Mississippi%20John%20Hurt_.m4a - File Folder Count4 - Library Folder Count1 - - 7066 - - Track ID7066 - NameExs. 46a-B - ArtistMark Hanson - AlbumThe Art Of Solo Fingerpicking - GenreUnclassifiable - KindAAC audio file - Size1057189 - Total Time27600 - Disc Number1 - Disc Count1 - Track Number27 - Track Count45 - Year1988 - Date Modified2009-11-30T10:10:24Z - Date Added2009-11-30T09:44:20Z - Bit Rate256 - Sample Rate44100 - Normalization995 - Artwork Count1 - Sort AlbumArt Of Solo Fingerpicking - Persistent ID446F5DB636DAE789 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/The%20Art%20Of%20Solo%20Fingerpicking/27%20Exs.%2046a-B.m4a - File Folder Count4 - Library Folder Count1 - - 7068 - - Track ID7068 - Name"Golden Valley" - ArtistMark Hanson - AlbumThe Art Of Solo Fingerpicking - GenreUnclassifiable - KindAAC audio file - Size8216173 - Total Time216773 - Disc Number1 - Disc Count1 - Track Number28 - Track Count45 - Year1988 - Date Modified2009-11-30T10:10:24Z - Date Added2009-11-30T09:44:22Z - Bit Rate256 - Sample Rate44100 - Normalization1254 - Artwork Count1 - Sort AlbumArt Of Solo Fingerpicking - Persistent IDD4B41A71CEBC07E5 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/The%20Art%20Of%20Solo%20Fingerpicking/28%20_Golden%20Valley_.m4a - File Folder Count4 - Library Folder Count1 - - 7070 - - Track ID7070 - Name"Flier" Slowly - ArtistMark Hanson - AlbumThe Art Of Solo Fingerpicking - GenreUnclassifiable - KindAAC audio file - Size7094439 - Total Time187026 - Disc Number1 - Disc Count1 - Track Number29 - Track Count45 - Year1988 - Date Modified2009-11-30T10:10:25Z - Date Added2009-11-30T09:44:34Z - Bit Rate256 - Sample Rate44100 - Normalization1250 - Artwork Count1 - Sort AlbumArt Of Solo Fingerpicking - Persistent ID52A2F0C58E2F6A09 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/The%20Art%20Of%20Solo%20Fingerpicking/29%20_Flier_%20Slowly.m4a - File Folder Count4 - Library Folder Count1 - - 7072 - - Track ID7072 - NameExs. 58a-C - ArtistMark Hanson - AlbumThe Art Of Solo Fingerpicking - GenreUnclassifiable - KindAAC audio file - Size1786767 - Total Time46506 - Disc Number1 - Disc Count1 - Track Number30 - Track Count45 - Year1988 - Date Modified2009-11-30T10:10:25Z - Date Added2009-11-30T09:44:44Z - Bit Rate256 - Sample Rate44100 - Normalization1049 - Artwork Count1 - Sort AlbumArt Of Solo Fingerpicking - Persistent ID6CBA08EB3A353DFF - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/The%20Art%20Of%20Solo%20Fingerpicking/30%20Exs.%2058a-C.m4a - File Folder Count4 - Library Folder Count1 - - 7074 - - Track ID7074 - NameEx. 59A - ArtistMark Hanson - AlbumThe Art Of Solo Fingerpicking - GenreUnclassifiable - KindAAC audio file - Size810327 - Total Time21000 - Disc Number1 - Disc Count1 - Track Number31 - Track Count45 - Year1988 - Date Modified2009-11-30T10:10:25Z - Date Added2009-11-30T09:44:47Z - Bit Rate256 - Sample Rate44100 - Normalization1117 - Artwork Count1 - Sort AlbumArt Of Solo Fingerpicking - Persistent ID8B9512E0DEF4461F - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/The%20Art%20Of%20Solo%20Fingerpicking/31%20Ex.%2059A.m4a - File Folder Count4 - Library Folder Count1 - - 7076 - - Track ID7076 - Name"Good Time Blues" - ArtistMark Hanson - AlbumThe Art Of Solo Fingerpicking - GenreUnclassifiable - KindAAC audio file - Size5497350 - Total Time145506 - Disc Number1 - Disc Count1 - Track Number32 - Track Count45 - Year1988 - Date Modified2009-11-30T10:10:25Z - Date Added2009-11-30T09:44:48Z - Bit Rate256 - Sample Rate44100 - Normalization1142 - Artwork Count1 - Sort AlbumArt Of Solo Fingerpicking - Persistent ID2D84F43AB06EF9E0 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/The%20Art%20Of%20Solo%20Fingerpicking/32%20_Good%20Time%20Blues_.m4a - File Folder Count4 - Library Folder Count1 - - 7078 - - Track ID7078 - NameExs. 62a-B & 63A - ArtistMark Hanson - AlbumThe Art Of Solo Fingerpicking - GenreUnclassifiable - KindAAC audio file - Size2334003 - Total Time61186 - Disc Number1 - Disc Count1 - Track Number33 - Track Count45 - Year1988 - Date Modified2009-11-30T10:10:25Z - Date Added2009-11-30T09:44:56Z - Bit Rate256 - Sample Rate44100 - Normalization1212 - Artwork Count1 - Sort AlbumArt Of Solo Fingerpicking - Persistent ID0D94C70673922EDD - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/The%20Art%20Of%20Solo%20Fingerpicking/33%20Exs.%2062a-B%20&%2063A.m4a - File Folder Count4 - Library Folder Count1 - - 7080 - - Track ID7080 - NameEx. 64A - ArtistMark Hanson - AlbumThe Art Of Solo Fingerpicking - GenreUnclassifiable - KindAAC audio file - Size2058563 - Total Time53986 - Disc Number1 - Disc Count1 - Track Number34 - Track Count45 - Year1988 - Date Modified2009-11-30T10:10:25Z - Date Added2009-11-30T09:44:59Z - Bit Rate256 - Sample Rate44100 - Normalization1117 - Artwork Count1 - Sort AlbumArt Of Solo Fingerpicking - Persistent ID5E35702E6956C74D - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/The%20Art%20Of%20Solo%20Fingerpicking/34%20Ex.%2064A.m4a - File Folder Count4 - Library Folder Count1 - - 7082 - - Track ID7082 - NameExs. 70a-B - ArtistMark Hanson - AlbumThe Art Of Solo Fingerpicking - GenreUnclassifiable - KindAAC audio file - Size2424825 - Total Time63280 - Disc Number1 - Disc Count1 - Track Number35 - Track Count45 - Year1988 - Date Modified2009-11-30T10:10:25Z - Date Added2009-11-30T09:45:02Z - Bit Rate256 - Sample Rate44100 - Normalization806 - Artwork Count1 - Sort AlbumArt Of Solo Fingerpicking - Persistent ID148267506836C0AA - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/The%20Art%20Of%20Solo%20Fingerpicking/35%20Exs.%2070a-B.m4a - File Folder Count4 - Library Folder Count1 - - 7084 - - Track ID7084 - NameEx. 71A - ArtistMark Hanson - AlbumThe Art Of Solo Fingerpicking - GenreUnclassifiable - KindAAC audio file - Size976241 - Total Time23546 - Disc Number1 - Disc Count1 - Track Number36 - Track Count45 - Year1988 - Date Modified2009-11-30T10:10:25Z - Date Added2009-11-30T09:45:06Z - Bit Rate256 - Sample Rate44100 - Normalization679 - Artwork Count1 - Sort AlbumArt Of Solo Fingerpicking - Persistent ID07FE8DEFDE287CD3 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/The%20Art%20Of%20Solo%20Fingerpicking/36%20Ex.%2071A.m4a - File Folder Count4 - Library Folder Count1 - - 7086 - - Track ID7086 - Name"Strawberry Curl" Slowly - ArtistMark Hanson - AlbumThe Art Of Solo Fingerpicking - GenreUnclassifiable - KindAAC audio file - Size5604135 - Total Time167106 - Disc Number1 - Disc Count1 - Track Number37 - Track Count45 - Year1988 - Date Modified2009-11-30T10:10:26Z - Date Added2009-11-30T09:45:07Z - Bit Rate256 - Sample Rate44100 - Normalization1257 - Artwork Count1 - Sort AlbumArt Of Solo Fingerpicking - Persistent ID5088C77AA4E0F3EE - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/The%20Art%20Of%20Solo%20Fingerpicking/37%20_Strawberry%20Curl_%20Slowly.m4a - File Folder Count4 - Library Folder Count1 - - 7088 - - Track ID7088 - Name"Red, White & Blue Rag" - ArtistMark Hanson - AlbumThe Art Of Solo Fingerpicking - GenreUnclassifiable - KindAAC audio file - Size3915757 - Total Time103120 - Disc Number1 - Disc Count1 - Track Number38 - Track Count45 - Year1988 - Date Modified2009-11-30T10:10:26Z - Date Added2009-11-30T09:45:16Z - Bit Rate256 - Sample Rate44100 - Normalization1157 - Artwork Count1 - Sort AlbumArt Of Solo Fingerpicking - Persistent ID5B4D0BAEFBEE3D1E - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/The%20Art%20Of%20Solo%20Fingerpicking/38%20_Red,%20White%20&%20Blue%20Rag_.m4a - File Folder Count4 - Library Folder Count1 - - 7090 - - Track ID7090 - Name"Devil's Dream" - ArtistMark Hanson - AlbumThe Art Of Solo Fingerpicking - GenreUnclassifiable - KindAAC audio file - Size3165217 - Total Time83400 - Disc Number1 - Disc Count1 - Track Number39 - Track Count45 - Year1988 - Date Modified2009-11-30T10:10:26Z - Date Added2009-11-30T09:45:21Z - Bit Rate256 - Sample Rate44100 - Normalization1218 - Artwork Count1 - Sort AlbumArt Of Solo Fingerpicking - Persistent ID7CF20FA9FD981D3F - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/The%20Art%20Of%20Solo%20Fingerpicking/39%20_Devil's%20Dream_.m4a - File Folder Count4 - Library Folder Count1 - - 7092 - - Track ID7092 - Name"Freight Train" - ArtistMark Hanson - AlbumThe Art Of Solo Fingerpicking - GenreUnclassifiable - KindAAC audio file - Size2491581 - Total Time65346 - Disc Number1 - Disc Count1 - Track Number40 - Track Count45 - Year1988 - Date Modified2009-11-30T10:10:26Z - Date Added2009-11-30T09:45:52Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3342697162 - Play Date UTC2009-12-03T09:29:22Z - Normalization1205 - Artwork Count1 - Sort AlbumArt Of Solo Fingerpicking - Persistent ID7AB56FB8C2325FA7 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/The%20Art%20Of%20Solo%20Fingerpicking/40%20_Freight%20Train_.m4a - File Folder Count4 - Library Folder Count1 - - 7094 - - Track ID7094 - Name"Fishin' Blues" - ArtistMark Hanson - AlbumThe Art Of Solo Fingerpicking - GenreUnclassifiable - KindAAC audio file - Size1758645 - Total Time44026 - Disc Number1 - Disc Count1 - Track Number41 - Track Count45 - Year1988 - Date Modified2009-11-30T10:26:07Z - Date Added2009-11-30T09:49:13Z - Bit Rate256 - Sample Rate44100 - Play Count4 - Play Date3342702820 - Play Date UTC2009-12-03T11:03:40Z - Normalization1584 - Artwork Count2 - Sort AlbumArt Of Solo Fingerpicking - Persistent ID8A2BE45E58C0B451 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/The%20Art%20Of%20Solo%20Fingerpicking/41%20_Fishin'%20Blues_.m4a - File Folder Count4 - Library Folder Count1 - - 7096 - - Track ID7096 - Name"White House Blues" - ArtistMark Hanson - AlbumThe Art Of Solo Fingerpicking - GenreUnclassifiable - KindAAC audio file - Size10984152 - Total Time286426 - Disc Number1 - Disc Count1 - Track Number42 - Track Count45 - Year1988 - Date Modified2009-11-30T10:26:07Z - Date Added2009-11-30T09:56:41Z - Bit Rate256 - Sample Rate44100 - Play Count4 - Play Date3342697492 - Play Date UTC2009-12-03T09:34:52Z - Normalization1088 - Artwork Count2 - Sort AlbumArt Of Solo Fingerpicking - Persistent IDA8173A26A13E0EB9 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/The%20Art%20Of%20Solo%20Fingerpicking/42%20_White%20House%20Blues_.m4a - File Folder Count4 - Library Folder Count1 - - 7098 - - Track ID7098 - Name"Bill Bailey" - ArtistMark Hanson - AlbumThe Art Of Solo Fingerpicking - GenreUnclassifiable - KindAAC audio file - Size4547520 - Total Time117066 - Disc Number1 - Disc Count1 - Track Number43 - Track Count45 - Year1988 - Date Modified2009-11-30T10:26:06Z - Date Added2009-11-30T10:00:22Z - Bit Rate256 - Sample Rate44100 - Play Count3 - Play Date3342697609 - Play Date UTC2009-12-03T09:36:49Z - Normalization1253 - Artwork Count2 - Sort AlbumArt Of Solo Fingerpicking - Persistent IDF2B0B20D0320294B - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/The%20Art%20Of%20Solo%20Fingerpicking/43%20_Bill%20Bailey_.m4a - File Folder Count4 - Library Folder Count1 - - 7100 - - Track ID7100 - Name"Flier" - ArtistMark Hanson - AlbumThe Art Of Solo Fingerpicking - GenreUnclassifiable - KindAAC audio file - Size6737048 - Total Time175666 - Disc Number1 - Disc Count1 - Track Number44 - Track Count45 - Year1988 - Date Modified2009-11-30T10:26:06Z - Date Added2009-11-30T10:04:22Z - Bit Rate256 - Sample Rate44100 - Play Count3 - Play Date3342697785 - Play Date UTC2009-12-03T09:39:45Z - Normalization1120 - Artwork Count2 - Sort AlbumArt Of Solo Fingerpicking - Persistent ID2675EA130F87D386 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/The%20Art%20Of%20Solo%20Fingerpicking/44%20_Flier_.m4a - File Folder Count4 - Library Folder Count1 - - 7102 - - Track ID7102 - Name"Twin Sisters" - ArtistMark Hanson - AlbumThe Art Of Solo Fingerpicking - GenreUnclassifiable - KindAAC audio file - Size7858976 - Total Time207413 - Disc Number1 - Disc Count1 - Track Number45 - Track Count45 - Year1988 - Date Modified2009-11-30T10:26:05Z - Date Added2009-11-30T10:08:03Z - Bit Rate256 - Sample Rate44100 - Play Count3 - Play Date3342697990 - Play Date UTC2009-12-03T09:43:10Z - Normalization1206 - Artwork Count2 - Sort AlbumArt Of Solo Fingerpicking - Persistent IDE564F815146958CF - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mark%20Hanson/The%20Art%20Of%20Solo%20Fingerpicking/45%20_Twin%20Sisters_.m4a - File Folder Count4 - Library Folder Count1 - - 7106 - - Track ID7106 - NameDt - Artistanupam shadhakar - Composeranupam shadhakar/anupam shadhakar - AlbumDream Theory - GenreClassical - KindAAC audio file - Size32972152 - Total Time1161906 - Track Number1 - Track Count3 - Date Modified2009-12-04T15:03:56Z - Date Added2009-12-04T15:01:01Z - Bit Rate256 - Sample Rate44100 - Normalization1947 - Persistent ID44A3A7DB2188EE5F - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/anupam%20shadhakar/Dream%20Theory/01%20Dt.m4a - File Folder Count4 - Library Folder Count1 - - 7108 - - Track ID7108 - NameDt - Artistanupam shadhakar - Composeranupam shadhakar/anupam shadhakar - AlbumDream Theory - GenreClassical - KindAAC audio file - Size45479075 - Total Time1406373 - Track Number2 - Track Count3 - Date Modified2009-12-04T15:06:32Z - Date Added2009-12-04T15:03:58Z - Bit Rate256 - Sample Rate44100 - Normalization1443 - Persistent ID1337F2227B5C8439 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/anupam%20shadhakar/Dream%20Theory/02%20Dt.m4a - File Folder Count4 - Library Folder Count1 - - 7110 - - Track ID7110 - NameDt - Artistanupam shadhakar - Composeranupam shadhakar/anupam shadhakar - AlbumDream Theory - GenreClassical - KindAAC audio file - Size50581284 - Total Time1541573 - Track Number3 - Track Count3 - Date Modified2009-12-04T15:08:49Z - Date Added2009-12-04T15:06:33Z - Bit Rate256 - Sample Rate44100 - Normalization2367 - Persistent ID2D7594BD1197C8DC - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/anupam%20shadhakar/Dream%20Theory/03%20Dt.m4a - File Folder Count4 - Library Folder Count1 - - 7112 - - Track ID7112 - NameIntroduction - ArtistEar Training Course - AlbumThe Complete Idiot's Guide To Music Theory - GenreJazz - KindAAC audio file - Size1404571 - Total Time56693 - Disc Number1 - Disc Count1 - Track Number1 - Track Count46 - Date Modified2009-12-06T02:58:13Z - Date Added2009-12-05T16:46:21Z - Bit Rate256 - Sample Rate44100 - Normalization88 - Artwork Count1 - Sort AlbumComplete Idiot's Guide To Music Theory - Persistent ID9C76BCDB79A24FDA - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ear%20Training%20Course/The%20Complete%20Idiot's%20Guide%20To%20Music%20Theory/01%20Introduction.m4a - File Folder Count4 - Library Folder Count1 - - 7114 - - Track ID7114 - NameLesson One : Pitches - ArtistEar Training Course - AlbumThe Complete Idiot's Guide To Music Theory - GenreJazz - KindAAC audio file - Size1425240 - Total Time57240 - Disc Number1 - Disc Count1 - Track Number2 - Track Count46 - Date Modified2009-12-06T02:58:13Z - Date Added2009-12-05T16:46:33Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3343033616 - Play Date UTC2009-12-07T06:56:56Z - Normalization59 - Artwork Count1 - Sort AlbumComplete Idiot's Guide To Music Theory - Persistent IDFD4427919F98D4CE - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ear%20Training%20Course/The%20Complete%20Idiot's%20Guide%20To%20Music%20Theory/02%20Lesson%20One%20_%20Pitches.m4a - File Folder Count4 - Library Folder Count1 - - 7116 - - Track ID7116 - NamePitch Exercises 1-5 - ArtistEar Training Course - AlbumThe Complete Idiot's Guide To Music Theory - GenreJazz - KindAAC audio file - Size1503259 - Total Time80880 - Disc Number1 - Disc Count1 - Track Number3 - Track Count46 - Date Modified2009-12-06T02:58:13Z - Date Added2009-12-05T16:46:45Z - Bit Rate256 - Sample Rate44100 - Normalization368 - Artwork Count1 - Sort AlbumComplete Idiot's Guide To Music Theory - Persistent ID7963445845F85FBC - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ear%20Training%20Course/The%20Complete%20Idiot's%20Guide%20To%20Music%20Theory/03%20Pitch%20Exercises%201-5.m4a - File Folder Count4 - Library Folder Count1 - - 7118 - - Track ID7118 - NamePitch Exercises 6-10 - ArtistEar Training Course - AlbumThe Complete Idiot's Guide To Music Theory - GenreJazz - KindAAC audio file - Size925987 - Total Time65506 - Disc Number1 - Disc Count1 - Track Number4 - Track Count46 - Date Modified2009-12-06T02:58:13Z - Date Added2009-12-05T16:47:00Z - Bit Rate256 - Sample Rate44100 - Normalization495 - Artwork Count1 - Sort AlbumComplete Idiot's Guide To Music Theory - Persistent ID517EDEC5FC1D4050 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ear%20Training%20Course/The%20Complete%20Idiot's%20Guide%20To%20Music%20Theory/04%20Pitch%20Exercises%206-10.m4a - File Folder Count4 - Library Folder Count1 - - 7120 - - Track ID7120 - NamePitch Exercises 11-15 - ArtistEar Training Course - AlbumThe Complete Idiot's Guide To Music Theory - GenreJazz - KindAAC audio file - Size936059 - Total Time61880 - Disc Number1 - Disc Count1 - Track Number5 - Track Count46 - Date Modified2009-12-06T02:58:13Z - Date Added2009-12-05T16:47:12Z - Bit Rate256 - Sample Rate44100 - Normalization368 - Artwork Count1 - Sort AlbumComplete Idiot's Guide To Music Theory - Persistent ID83E556AC03219CB5 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ear%20Training%20Course/The%20Complete%20Idiot's%20Guide%20To%20Music%20Theory/05%20Pitch%20Exercises%2011-15.m4a - File Folder Count4 - Library Folder Count1 - - 7122 - - Track ID7122 - NamePitch Exercises 16-20 - ArtistEar Training Course - AlbumThe Complete Idiot's Guide To Music Theory - GenreJazz - KindAAC audio file - Size972015 - Total Time61360 - Disc Number1 - Disc Count1 - Track Number6 - Track Count46 - Date Modified2009-12-06T02:58:13Z - Date Added2009-12-05T16:47:24Z - Bit Rate256 - Sample Rate44100 - Normalization404 - Artwork Count1 - Sort AlbumComplete Idiot's Guide To Music Theory - Persistent ID15CBACCA6B042DE1 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ear%20Training%20Course/The%20Complete%20Idiot's%20Guide%20To%20Music%20Theory/06%20Pitch%20Exercises%2016-20.m4a - File Folder Count4 - Library Folder Count1 - - 7124 - - Track ID7124 - NamePitch Exercsies 21-25 - ArtistEar Training Course - AlbumThe Complete Idiot's Guide To Music Theory - GenreJazz - KindAAC audio file - Size1236107 - Total Time67013 - Disc Number1 - Disc Count1 - Track Number7 - Track Count46 - Date Modified2009-12-06T02:58:13Z - Date Added2009-12-05T16:47:35Z - Bit Rate256 - Sample Rate44100 - Normalization242 - Artwork Count1 - Sort AlbumComplete Idiot's Guide To Music Theory - Persistent IDFACAE115F0E1B45E - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ear%20Training%20Course/The%20Complete%20Idiot's%20Guide%20To%20Music%20Theory/07%20Pitch%20Exercsies%2021-25.m4a - File Folder Count4 - Library Folder Count1 - - 7126 - - Track ID7126 - NamePitch Exercises 26-30 - ArtistEar Training Course - AlbumThe Complete Idiot's Guide To Music Theory - GenreJazz - KindAAC audio file - Size1047900 - Total Time62386 - Disc Number1 - Disc Count1 - Track Number8 - Track Count46 - Date Modified2009-12-06T02:58:13Z - Date Added2009-12-05T16:47:47Z - Bit Rate256 - Sample Rate44100 - Normalization280 - Artwork Count1 - Sort AlbumComplete Idiot's Guide To Music Theory - Persistent ID020D3ECC47EABEC5 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ear%20Training%20Course/The%20Complete%20Idiot's%20Guide%20To%20Music%20Theory/08%20Pitch%20Exercises%2026-30.m4a - File Folder Count4 - Library Folder Count1 - - 7128 - - Track ID7128 - NamePitch Exercises 31-35 - ArtistEar Training Course - AlbumThe Complete Idiot's Guide To Music Theory - GenreJazz - KindAAC audio file - Size1071140 - Total Time60493 - Disc Number1 - Disc Count1 - Track Number9 - Track Count46 - Date Modified2009-12-06T02:58:13Z - Date Added2009-12-05T16:47:58Z - Bit Rate256 - Sample Rate44100 - Skip Count1 - Skip Date2012-08-17T05:48:48Z - Normalization282 - Artwork Count1 - Sort AlbumComplete Idiot's Guide To Music Theory - Persistent ID39C0075F8A4C46B4 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ear%20Training%20Course/The%20Complete%20Idiot's%20Guide%20To%20Music%20Theory/09%20Pitch%20Exercises%2031-35.m4a - File Folder Count4 - Library Folder Count1 - - 7130 - - Track ID7130 - NamePitch Exercises 36-40 - ArtistEar Training Course - AlbumThe Complete Idiot's Guide To Music Theory - GenreJazz - KindAAC audio file - Size1078987 - Total Time61053 - Disc Number1 - Disc Count1 - Track Number10 - Track Count46 - Date Modified2009-12-06T02:58:13Z - Date Added2009-12-05T16:48:08Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3428047189 - Play Date UTC2012-08-17T05:49:49Z - Normalization261 - Artwork Count1 - Sort AlbumComplete Idiot's Guide To Music Theory - Persistent ID2F987FF4D6625ED1 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ear%20Training%20Course/The%20Complete%20Idiot's%20Guide%20To%20Music%20Theory/10%20Pitch%20Exercises%2036-40.m4a - File Folder Count4 - Library Folder Count1 - - 7132 - - Track ID7132 - NameLesson Two Intervals - ArtistEar Training Course - AlbumThe Complete Idiot's Guide To Music Theory - GenreJazz - KindAAC audio file - Size5656343 - Total Time212706 - Disc Number1 - Disc Count1 - Track Number11 - Track Count46 - Date Modified2009-12-06T02:58:13Z - Date Added2009-12-05T16:48:18Z - Bit Rate256 - Sample Rate44100 - Normalization432 - Artwork Count1 - Sort AlbumComplete Idiot's Guide To Music Theory - Persistent ID7D966EC9C8B8A114 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ear%20Training%20Course/The%20Complete%20Idiot's%20Guide%20To%20Music%20Theory/11%20Lesson%20Two%20Intervals.m4a - File Folder Count4 - Library Folder Count1 - - 7134 - - Track ID7134 - NameInterval Exercises 1-5 - ArtistEar Training Course - AlbumThe Complete Idiot's Guide To Music Theory - GenreJazz - KindAAC audio file - Size1423109 - Total Time72426 - Disc Number1 - Disc Count1 - Track Number12 - Track Count46 - Date Modified2009-12-06T02:58:12Z - Date Added2009-12-05T16:48:50Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3428047262 - Play Date UTC2012-08-17T05:51:02Z - Normalization451 - Artwork Count1 - Sort AlbumComplete Idiot's Guide To Music Theory - Persistent ID192C9BF1D6F25819 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ear%20Training%20Course/The%20Complete%20Idiot's%20Guide%20To%20Music%20Theory/12%20Interval%20Exercises%201-5.m4a - File Folder Count4 - Library Folder Count1 - - 7136 - - Track ID7136 - NameInterval Exercises 6-10 - ArtistEar Training Course - AlbumThe Complete Idiot's Guide To Music Theory - GenreJazz - KindAAC audio file - Size1102988 - Total Time61946 - Disc Number1 - Disc Count1 - Track Number13 - Track Count46 - Date Modified2009-12-06T02:58:12Z - Date Added2009-12-05T16:49:01Z - Bit Rate256 - Sample Rate44100 - Normalization462 - Artwork Count1 - Sort AlbumComplete Idiot's Guide To Music Theory - Persistent IDBCC1D04E8422C859 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ear%20Training%20Course/The%20Complete%20Idiot's%20Guide%20To%20Music%20Theory/13%20Interval%20Exercises%206-10.m4a - File Folder Count4 - Library Folder Count1 - - 7138 - - Track ID7138 - NameInterval Exercises 11-15 - ArtistEar Training Course - AlbumThe Complete Idiot's Guide To Music Theory - GenreJazz - KindAAC audio file - Size1102164 - Total Time61746 - Disc Number1 - Disc Count1 - Track Number14 - Track Count46 - Date Modified2009-12-06T02:58:12Z - Date Added2009-12-05T16:49:11Z - Bit Rate256 - Sample Rate44100 - Normalization426 - Artwork Count1 - Sort AlbumComplete Idiot's Guide To Music Theory - Persistent ID4DED3D31396739B2 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ear%20Training%20Course/The%20Complete%20Idiot's%20Guide%20To%20Music%20Theory/14%20Interval%20Exercises%2011-15.m4a - File Folder Count4 - Library Folder Count1 - - 7140 - - Track ID7140 - NameInterval Exercises 16-20 - ArtistEar Training Course - AlbumThe Complete Idiot's Guide To Music Theory - GenreJazz - KindAAC audio file - Size1069099 - Total Time62493 - Disc Number1 - Disc Count1 - Track Number15 - Track Count46 - Date Modified2009-12-06T02:58:12Z - Date Added2009-12-05T16:49:20Z - Bit Rate256 - Sample Rate44100 - Normalization381 - Artwork Count1 - Sort AlbumComplete Idiot's Guide To Music Theory - Persistent ID8224CC25283D7F41 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ear%20Training%20Course/The%20Complete%20Idiot's%20Guide%20To%20Music%20Theory/15%20Interval%20Exercises%2016-20.m4a - File Folder Count4 - Library Folder Count1 - - 7142 - - Track ID7142 - NameInterval Exercises 21-25 - ArtistEar Training Course - AlbumThe Complete Idiot's Guide To Music Theory - GenreJazz - KindAAC audio file - Size1267170 - Total Time66946 - Disc Number1 - Disc Count1 - Track Number16 - Track Count46 - Date Modified2009-12-06T02:58:12Z - Date Added2009-12-05T16:49:29Z - Bit Rate256 - Sample Rate44100 - Normalization366 - Artwork Count1 - Sort AlbumComplete Idiot's Guide To Music Theory - Persistent IDCB3AA72A74F0C9E1 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ear%20Training%20Course/The%20Complete%20Idiot's%20Guide%20To%20Music%20Theory/16%20Interval%20Exercises%2021-25.m4a - File Folder Count4 - Library Folder Count1 - - 7144 - - Track ID7144 - NameInterval Exercises 26-30 - ArtistEar Training Course - AlbumThe Complete Idiot's Guide To Music Theory - GenreJazz - KindAAC audio file - Size1110680 - Total Time60760 - Disc Number1 - Disc Count1 - Track Number17 - Track Count46 - Date Modified2009-12-06T02:58:12Z - Date Added2009-12-05T16:49:39Z - Bit Rate256 - Sample Rate44100 - Normalization391 - Artwork Count1 - Sort AlbumComplete Idiot's Guide To Music Theory - Persistent ID7EE89C566C58E33B - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ear%20Training%20Course/The%20Complete%20Idiot's%20Guide%20To%20Music%20Theory/17%20Interval%20Exercises%2026-30.m4a - File Folder Count4 - Library Folder Count1 - - 7146 - - Track ID7146 - NameInterval Exercises 31-35 - ArtistEar Training Course - AlbumThe Complete Idiot's Guide To Music Theory - GenreJazz - KindAAC audio file - Size1151025 - Total Time59573 - Disc Number1 - Disc Count1 - Track Number18 - Track Count46 - Date Modified2009-12-06T02:58:12Z - Date Added2009-12-05T16:49:48Z - Bit Rate256 - Sample Rate44100 - Normalization450 - Artwork Count1 - Sort AlbumComplete Idiot's Guide To Music Theory - Persistent ID26AEC00A96A28C40 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ear%20Training%20Course/The%20Complete%20Idiot's%20Guide%20To%20Music%20Theory/18%20Interval%20Exercises%2031-35.m4a - File Folder Count4 - Library Folder Count1 - - 7148 - - Track ID7148 - NameInterval Exercises 36-40 - ArtistEar Training Course - AlbumThe Complete Idiot's Guide To Music Theory - GenreJazz - KindAAC audio file - Size1136675 - Total Time59813 - Disc Number1 - Disc Count1 - Track Number19 - Track Count46 - Date Modified2009-12-06T02:58:12Z - Date Added2009-12-05T16:49:56Z - Bit Rate256 - Sample Rate44100 - Normalization450 - Artwork Count1 - Sort AlbumComplete Idiot's Guide To Music Theory - Persistent ID713A664CCB577C88 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ear%20Training%20Course/The%20Complete%20Idiot's%20Guide%20To%20Music%20Theory/19%20Interval%20Exercises%2036-40.m4a - File Folder Count4 - Library Folder Count1 - - 7150 - - Track ID7150 - NameInterval Exercises 41-45 - ArtistEar Training Course - AlbumThe Complete Idiot's Guide To Music Theory - GenreJazz - KindAAC audio file - Size1487453 - Total Time73813 - Disc Number1 - Disc Count1 - Track Number20 - Track Count46 - Date Modified2009-12-06T02:58:12Z - Date Added2009-12-05T16:50:05Z - Bit Rate256 - Sample Rate44100 - Normalization402 - Artwork Count1 - Sort AlbumComplete Idiot's Guide To Music Theory - Persistent IDE9366ACCE9C17095 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ear%20Training%20Course/The%20Complete%20Idiot's%20Guide%20To%20Music%20Theory/20%20Interval%20Exercises%2041-45.m4a - File Folder Count4 - Library Folder Count1 - - 7152 - - Track ID7152 - NameInterval Exercises 46-50 - ArtistEar Training Course - AlbumThe Complete Idiot's Guide To Music Theory - GenreJazz - KindAAC audio file - Size1261633 - Total Time63946 - Disc Number1 - Disc Count1 - Track Number21 - Track Count46 - Date Modified2009-12-06T02:58:12Z - Date Added2009-12-05T16:50:15Z - Bit Rate256 - Sample Rate44100 - Normalization450 - Artwork Count1 - Sort AlbumComplete Idiot's Guide To Music Theory - Persistent ID152879FE7F053C9B - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ear%20Training%20Course/The%20Complete%20Idiot's%20Guide%20To%20Music%20Theory/21%20Interval%20Exercises%2046-50.m4a - File Folder Count4 - Library Folder Count1 - - 7154 - - Track ID7154 - NameInterval Exercises 51-55 - ArtistEar Training Course - AlbumThe Complete Idiot's Guide To Music Theory - GenreJazz - KindAAC audio file - Size1230642 - Total Time64760 - Disc Number1 - Disc Count1 - Track Number22 - Track Count46 - Date Modified2009-12-06T02:58:12Z - Date Added2009-12-05T16:50:23Z - Bit Rate256 - Sample Rate44100 - Normalization412 - Artwork Count1 - Sort AlbumComplete Idiot's Guide To Music Theory - Persistent IDF0C69639E83224CA - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ear%20Training%20Course/The%20Complete%20Idiot's%20Guide%20To%20Music%20Theory/22%20Interval%20Exercises%2051-55.m4a - File Folder Count4 - Library Folder Count1 - - 7156 - - Track ID7156 - NameInterval Exercises 56-60 - ArtistEar Training Course - AlbumThe Complete Idiot's Guide To Music Theory - GenreJazz - KindAAC audio file - Size1167944 - Total Time65040 - Disc Number1 - Disc Count1 - Track Number23 - Track Count46 - Date Modified2009-12-06T02:58:12Z - Date Added2009-12-05T16:50:32Z - Bit Rate256 - Sample Rate44100 - Normalization305 - Artwork Count1 - Sort AlbumComplete Idiot's Guide To Music Theory - Persistent IDB73ECA20870A249D - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ear%20Training%20Course/The%20Complete%20Idiot's%20Guide%20To%20Music%20Theory/23%20Interval%20Exercises%2056-60.m4a - File Folder Count4 - Library Folder Count1 - - 7158 - - Track ID7158 - NameLesson Three: Scales - ArtistEar Training Course - AlbumThe Complete Idiot's Guide To Music Theory - GenreJazz - KindAAC audio file - Size5748548 - Total Time214266 - Disc Number1 - Disc Count1 - Track Number24 - Track Count46 - Date Modified2009-12-06T02:58:12Z - Date Added2009-12-05T16:50:41Z - Bit Rate256 - Sample Rate44100 - Normalization431 - Artwork Count1 - Sort AlbumComplete Idiot's Guide To Music Theory - Persistent ID1A24E7E05C185C63 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ear%20Training%20Course/The%20Complete%20Idiot's%20Guide%20To%20Music%20Theory/24%20Lesson%20Three_%20Scales.m4a - File Folder Count4 - Library Folder Count1 - - 7160 - - Track ID7160 - NameScale Exercises 1-5 - ArtistEar Training Course - AlbumThe Complete Idiot's Guide To Music Theory - GenreJazz - KindAAC audio file - Size2691116 - Total Time121866 - Disc Number1 - Disc Count1 - Track Number25 - Track Count46 - Date Modified2009-12-06T02:58:11Z - Date Added2009-12-05T16:51:06Z - Bit Rate256 - Sample Rate44100 - Normalization529 - Artwork Count1 - Sort AlbumComplete Idiot's Guide To Music Theory - Persistent ID2A85D7BC009F2080 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ear%20Training%20Course/The%20Complete%20Idiot's%20Guide%20To%20Music%20Theory/25%20Scale%20Exercises%201-5.m4a - File Folder Count4 - Library Folder Count1 - - 7162 - - Track ID7162 - NameScale Exercises 6-10 - ArtistEar Training Course - AlbumThe Complete Idiot's Guide To Music Theory - GenreJazz - KindAAC audio file - Size2132404 - Total Time91653 - Disc Number1 - Disc Count1 - Track Number26 - Track Count46 - Date Modified2009-12-06T02:58:11Z - Date Added2009-12-05T16:51:21Z - Bit Rate256 - Sample Rate44100 - Normalization625 - Artwork Count1 - Sort AlbumComplete Idiot's Guide To Music Theory - Persistent IDF688E46776ACD373 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ear%20Training%20Course/The%20Complete%20Idiot's%20Guide%20To%20Music%20Theory/26%20Scale%20Exercises%206-10.m4a - File Folder Count4 - Library Folder Count1 - - 7164 - - Track ID7164 - NameLesson Four: Rhythms - ArtistEar Training Course - AlbumThe Complete Idiot's Guide To Music Theory - GenreJazz - KindAAC audio file - Size2925189 - Total Time115040 - Disc Number1 - Disc Count1 - Track Number27 - Track Count46 - Date Modified2009-12-06T02:58:11Z - Date Added2009-12-05T16:51:32Z - Bit Rate256 - Sample Rate44100 - Normalization57 - Artwork Count1 - Sort AlbumComplete Idiot's Guide To Music Theory - Persistent ID816FD529F987638D - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ear%20Training%20Course/The%20Complete%20Idiot's%20Guide%20To%20Music%20Theory/27%20Lesson%20Four_%20Rhythms.m4a - File Folder Count4 - Library Folder Count1 - - 7166 - - Track ID7166 - NameRhythm Exercises 1-5 - ArtistEar Training Course - AlbumThe Complete Idiot's Guide To Music Theory - GenreJazz - KindAAC audio file - Size2307529 - Total Time111986 - Disc Number1 - Disc Count1 - Track Number28 - Track Count46 - Date Modified2009-12-06T02:58:11Z - Date Added2009-12-05T16:51:45Z - Bit Rate256 - Sample Rate44100 - Normalization209 - Artwork Count1 - Sort AlbumComplete Idiot's Guide To Music Theory - Persistent ID3078C71A21C5216F - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ear%20Training%20Course/The%20Complete%20Idiot's%20Guide%20To%20Music%20Theory/28%20Rhythm%20Exercises%201-5.m4a - File Folder Count4 - Library Folder Count1 - - 7168 - - Track ID7168 - NameRhythm Exercises 6-10 - ArtistEar Training Course - AlbumThe Complete Idiot's Guide To Music Theory - GenreJazz - KindAAC audio file - Size1732266 - Total Time90426 - Disc Number1 - Disc Count1 - Track Number29 - Track Count46 - Date Modified2009-12-06T02:58:11Z - Date Added2009-12-05T16:51:58Z - Bit Rate256 - Sample Rate44100 - Normalization208 - Artwork Count1 - Sort AlbumComplete Idiot's Guide To Music Theory - Persistent ID5DBD23C870CFA38C - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ear%20Training%20Course/The%20Complete%20Idiot's%20Guide%20To%20Music%20Theory/29%20Rhythm%20Exercises%206-10.m4a - File Folder Count4 - Library Folder Count1 - - 7170 - - Track ID7170 - NameRhythm Exercises 11-15 - ArtistEar Training Course - AlbumThe Complete Idiot's Guide To Music Theory - GenreJazz - KindAAC audio file - Size1787288 - Total Time89960 - Disc Number1 - Disc Count1 - Track Number30 - Track Count46 - Date Modified2009-12-06T02:58:11Z - Date Added2009-12-05T16:52:08Z - Bit Rate256 - Sample Rate44100 - Normalization215 - Artwork Count1 - Sort AlbumComplete Idiot's Guide To Music Theory - Persistent ID9F6AC7A5C0C5B02B - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ear%20Training%20Course/The%20Complete%20Idiot's%20Guide%20To%20Music%20Theory/30%20Rhythm%20Exercises%2011-15.m4a - File Folder Count4 - Library Folder Count1 - - 7172 - - Track ID7172 - NameRhythm Exercises 16-20 - ArtistEar Training Course - AlbumThe Complete Idiot's Guide To Music Theory - GenreJazz - KindAAC audio file - Size1648062 - Total Time89213 - Disc Number1 - Disc Count1 - Track Number31 - Track Count46 - Date Modified2009-12-06T02:58:11Z - Date Added2009-12-05T16:52:18Z - Bit Rate256 - Sample Rate44100 - Normalization173 - Artwork Count1 - Sort AlbumComplete Idiot's Guide To Music Theory - Persistent ID9EC0DEF62034CE73 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ear%20Training%20Course/The%20Complete%20Idiot's%20Guide%20To%20Music%20Theory/31%20Rhythm%20Exercises%2016-20.m4a - File Folder Count4 - Library Folder Count1 - - 7174 - - Track ID7174 - NameRhythm Exercises 21-25 - ArtistEar Training Course - AlbumThe Complete Idiot's Guide To Music Theory - GenreJazz - KindAAC audio file - Size1855455 - Total Time89560 - Disc Number1 - Disc Count1 - Track Number32 - Track Count46 - Date Modified2009-12-06T02:58:10Z - Date Added2009-12-05T16:52:28Z - Bit Rate256 - Sample Rate44100 - Normalization255 - Artwork Count1 - Sort AlbumComplete Idiot's Guide To Music Theory - Persistent IDE4E6BC48A7CF469D - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ear%20Training%20Course/The%20Complete%20Idiot's%20Guide%20To%20Music%20Theory/32%20Rhythm%20Exercises%2021-25.m4a - File Folder Count4 - Library Folder Count1 - - 7176 - - Track ID7176 - NameRhythm Exercises 26-30 - ArtistEar Training Course - AlbumThe Complete Idiot's Guide To Music Theory - GenreJazz - KindAAC audio file - Size1843656 - Total Time89840 - Disc Number1 - Disc Count1 - Track Number33 - Track Count46 - Date Modified2009-12-06T02:58:10Z - Date Added2009-12-05T16:52:38Z - Bit Rate256 - Sample Rate44100 - Normalization285 - Artwork Count1 - Sort AlbumComplete Idiot's Guide To Music Theory - Persistent ID5FF36F72DD53E396 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ear%20Training%20Course/The%20Complete%20Idiot's%20Guide%20To%20Music%20Theory/33%20Rhythm%20Exercises%2026-30.m4a - File Folder Count4 - Library Folder Count1 - - 7178 - - Track ID7178 - NameRhythm Exercises 31-35 - ArtistEar Training Course - AlbumThe Complete Idiot's Guide To Music Theory - GenreJazz - KindAAC audio file - Size1858068 - Total Time88880 - Disc Number1 - Disc Count1 - Track Number34 - Track Count46 - Date Modified2009-12-06T02:58:10Z - Date Added2009-12-05T16:52:48Z - Bit Rate256 - Sample Rate44100 - Normalization233 - Artwork Count1 - Sort AlbumComplete Idiot's Guide To Music Theory - Persistent ID2080A61A14ACD929 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ear%20Training%20Course/The%20Complete%20Idiot's%20Guide%20To%20Music%20Theory/34%20Rhythm%20Exercises%2031-35.m4a - File Folder Count4 - Library Folder Count1 - - 7180 - - Track ID7180 - NameRhythm Exercises 36-40 - ArtistEar Training Course - AlbumThe Complete Idiot's Guide To Music Theory - GenreJazz - KindAAC audio file - Size1820230 - Total Time89586 - Disc Number1 - Disc Count1 - Track Number35 - Track Count46 - Date Modified2009-12-06T02:58:10Z - Date Added2009-12-05T16:52:57Z - Bit Rate256 - Sample Rate44100 - Normalization211 - Artwork Count1 - Sort AlbumComplete Idiot's Guide To Music Theory - Persistent ID6F16D7B6A6E747E4 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ear%20Training%20Course/The%20Complete%20Idiot's%20Guide%20To%20Music%20Theory/35%20Rhythm%20Exercises%2036-40.m4a - File Folder Count4 - Library Folder Count1 - - 7182 - - Track ID7182 - NameLesson Five: Melodies - ArtistEar Training Course - AlbumThe Complete Idiot's Guide To Music Theory - GenreJazz - KindAAC audio file - Size1245293 - Total Time50360 - Disc Number1 - Disc Count1 - Track Number36 - Track Count46 - Date Modified2009-12-06T02:58:10Z - Date Added2009-12-05T16:53:07Z - Bit Rate256 - Sample Rate44100 - Normalization48 - Artwork Count1 - Sort AlbumComplete Idiot's Guide To Music Theory - Persistent ID43D6CDC7BBADDDCA - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ear%20Training%20Course/The%20Complete%20Idiot's%20Guide%20To%20Music%20Theory/36%20Lesson%20Five_%20Melodies.m4a - File Folder Count4 - Library Folder Count1 - - 7184 - - Track ID7184 - NameMelody Exercises 1-5 - ArtistEar Training Course - AlbumThe Complete Idiot's Guide To Music Theory - GenreJazz - KindAAC audio file - Size2644718 - Total Time124960 - Disc Number1 - Disc Count1 - Track Number37 - Track Count46 - Date Modified2009-12-06T02:58:10Z - Date Added2009-12-05T16:53:13Z - Bit Rate256 - Sample Rate44100 - Normalization412 - Artwork Count1 - Sort AlbumComplete Idiot's Guide To Music Theory - Persistent ID2DC51B7EE78DFEE9 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ear%20Training%20Course/The%20Complete%20Idiot's%20Guide%20To%20Music%20Theory/37%20Melody%20Exercises%201-5.m4a - File Folder Count4 - Library Folder Count1 - - 7186 - - Track ID7186 - NameMelody Exercises 6-10 - ArtistEar Training Course - AlbumThe Complete Idiot's Guide To Music Theory - GenreJazz - KindAAC audio file - Size2016687 - Total Time94360 - Disc Number1 - Disc Count1 - Track Number38 - Track Count46 - Date Modified2009-12-06T02:58:10Z - Date Added2009-12-05T16:53:26Z - Bit Rate256 - Sample Rate44100 - Normalization515 - Artwork Count1 - Sort AlbumComplete Idiot's Guide To Music Theory - Persistent ID74E5DC907570637E - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ear%20Training%20Course/The%20Complete%20Idiot's%20Guide%20To%20Music%20Theory/38%20Melody%20Exercises%206-10.m4a - File Folder Count4 - Library Folder Count1 - - 7188 - - Track ID7188 - NameMelody Exercises 11-15 - ArtistEar Training Course - AlbumThe Complete Idiot's Guide To Music Theory - GenreJazz - KindAAC audio file - Size3237370 - Total Time142813 - Disc Number1 - Disc Count1 - Track Number39 - Track Count46 - Date Modified2009-12-06T02:58:10Z - Date Added2009-12-05T16:53:36Z - Bit Rate256 - Sample Rate44100 - Normalization450 - Artwork Count1 - Sort AlbumComplete Idiot's Guide To Music Theory - Persistent ID392E90ADB80A8C63 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ear%20Training%20Course/The%20Complete%20Idiot's%20Guide%20To%20Music%20Theory/39%20Melody%20Exercises%2011-15.m4a - File Folder Count4 - Library Folder Count1 - - 7190 - - Track ID7190 - NameMelody Exercises 16-20 - ArtistEar Training Course - AlbumThe Complete Idiot's Guide To Music Theory - GenreJazz - KindAAC audio file - Size2890323 - Total Time127053 - Disc Number1 - Disc Count1 - Track Number40 - Track Count46 - Date Modified2009-12-06T02:58:10Z - Date Added2009-12-05T16:53:50Z - Bit Rate256 - Sample Rate44100 - Normalization688 - Artwork Count1 - Sort AlbumComplete Idiot's Guide To Music Theory - Persistent ID807B1CD264000078 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ear%20Training%20Course/The%20Complete%20Idiot's%20Guide%20To%20Music%20Theory/40%20Melody%20Exercises%2016-20.m4a - File Folder Count4 - Library Folder Count1 - - 7192 - - Track ID7192 - NameLesson Six: Chords - ArtistEar Training Course - AlbumThe Complete Idiot's Guide To Music Theory - GenreJazz - KindAAC audio file - Size7551895 - Total Time284920 - Disc Number1 - Disc Count1 - Track Number41 - Track Count46 - Date Modified2009-12-06T02:58:09Z - Date Added2009-12-05T16:54:03Z - Bit Rate256 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Sort AlbumComplete Idiot's Guide To Music Theory - Persistent IDD7BF0C68B679D5D6 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ear%20Training%20Course/The%20Complete%20Idiot's%20Guide%20To%20Music%20Theory/41%20Lesson%20Six_%20Chords.m4a - File Folder Count4 - Library Folder Count1 - - 7194 - - Track ID7194 - NameChord Exercises 1-5 - ArtistEar Training Course - AlbumThe Complete Idiot's Guide To Music Theory - GenreJazz - KindAAC audio file - Size2123406 - Total Time97173 - Disc Number1 - Disc Count1 - Track Number42 - Track Count46 - Date Modified2009-12-06T02:58:09Z - Date Added2009-12-05T16:54:30Z - Bit Rate256 - Sample Rate44100 - Normalization1117 - Artwork Count1 - Sort AlbumComplete Idiot's Guide To Music Theory - Persistent ID091866AAFBE7F7A0 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ear%20Training%20Course/The%20Complete%20Idiot's%20Guide%20To%20Music%20Theory/42%20Chord%20Exercises%201-5.m4a - File Folder Count4 - Library Folder Count1 - - 7196 - - Track ID7196 - NameChord Exercises 6-10 - ArtistEar Training Course - AlbumThe Complete Idiot's Guide To Music Theory - GenreJazz - KindAAC audio file - Size1497604 - Total Time71106 - Disc Number1 - Disc Count1 - Track Number43 - Track Count46 - Date Modified2009-12-06T02:58:09Z - Date Added2009-12-05T16:54:41Z - Bit Rate256 - Sample Rate44100 - Normalization953 - Artwork Count1 - Sort AlbumComplete Idiot's Guide To Music Theory - Persistent IDB0310272564B1981 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ear%20Training%20Course/The%20Complete%20Idiot's%20Guide%20To%20Music%20Theory/43%20Chord%20Exercises%206-10.m4a - File Folder Count4 - Library Folder Count1 - - 7198 - - Track ID7198 - NameChord Exercises 11-15 - ArtistEar Training Course - AlbumThe Complete Idiot's Guide To Music Theory - GenreJazz - KindAAC audio file - Size1825999 - Total Time85560 - Disc Number1 - Disc Count1 - Track Number44 - Track Count46 - Date Modified2009-12-06T02:58:09Z - Date Added2009-12-05T16:54:49Z - Bit Rate256 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Sort AlbumComplete Idiot's Guide To Music Theory - Persistent IDEE4D164CED61F9B9 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ear%20Training%20Course/The%20Complete%20Idiot's%20Guide%20To%20Music%20Theory/44%20Chord%20Exercises%2011-15.m4a - File Folder Count4 - Library Folder Count1 - - 7200 - - Track ID7200 - NameChord Exercises 16-20 - ArtistEar Training Course - AlbumThe Complete Idiot's Guide To Music Theory - GenreJazz - KindAAC audio file - Size2299700 - Total Time102280 - Disc Number1 - Disc Count1 - Track Number45 - Track Count46 - Date Modified2009-12-06T02:58:09Z - Date Added2009-12-05T16:54:58Z - Bit Rate256 - Sample Rate44100 - Normalization1163 - Artwork Count1 - Sort AlbumComplete Idiot's Guide To Music Theory - Persistent IDE1391FC82F78159E - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ear%20Training%20Course/The%20Complete%20Idiot's%20Guide%20To%20Music%20Theory/45%20Chord%20Exercises%2016-20.m4a - File Folder Count4 - Library Folder Count1 - - 7202 - - Track ID7202 - NameCoda - ArtistEar Training Course - AlbumThe Complete Idiot's Guide To Music Theory - GenreJazz - KindAAC audio file - Size648558 - Total Time24293 - Disc Number1 - Disc Count1 - Track Number46 - Track Count46 - Date Modified2009-12-06T02:58:09Z - Date Added2009-12-05T16:55:08Z - Bit Rate256 - Sample Rate44100 - Normalization43 - Artwork Count1 - Sort AlbumComplete Idiot's Guide To Music Theory - Persistent ID2034741368AA27E9 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ear%20Training%20Course/The%20Complete%20Idiot's%20Guide%20To%20Music%20Theory/46%20Coda.m4a - File Folder Count4 - Library Folder Count1 - - 7204 - - Track ID7204 - NameTuning - ArtistHal Leonard - AlbumGuitar Method: Book 1 - GenreEasy Listening - KindAAC audio file - Size1919049 - Total Time60600 - Disc Number1 - Disc Count1 - Track Number1 - Track Count47 - Year2002 - Date Modified2009-12-06T03:29:47Z - Date Added2009-12-06T02:59:09Z - Bit Rate256 - Sample Rate44100 - Normalization671 - Artwork Count1 - Persistent ID20A8C69A14AB8C98 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method_%20Book%201/01%20Tuning.m4a - File Folder Count4 - Library Folder Count1 - - 7206 - - Track ID7206 - NameUntitled - ArtistHal Leonard - AlbumGuitar Method: Book 1 - GenreEasy Listening - KindAAC audio file - Size1099449 - Total Time30120 - Disc Number1 - Disc Count1 - Track Number2 - Track Count47 - Year2002 - Date Modified2009-12-06T03:29:47Z - Date Added2009-12-06T02:59:22Z - Bit Rate256 - Sample Rate44100 - Normalization4557 - Artwork Count1 - Persistent ID2B7C1B1907E13BB7 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method_%20Book%201/02%20Untitled.m4a - File Folder Count4 - Library Folder Count1 - - 7208 - - Track ID7208 - NameSpanish Theme - ArtistHal Leonard - AlbumGuitar Method: Book 1 - GenreEasy Listening - KindAAC audio file - Size1063686 - Total Time30040 - Disc Number1 - Disc Count1 - Track Number3 - Track Count47 - Year2002 - Date Modified2009-12-06T03:29:47Z - Date Added2009-12-06T02:59:28Z - Bit Rate256 - Sample Rate44100 - Play Count3 - Play Date3392054178 - Play Date UTC2011-06-27T15:46:18Z - Normalization1190 - Artwork Count1 - Persistent IDF392F62BF5FE7BB4 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method_%20Book%201/03%20Spanish%20Theme.m4a - File Folder Count4 - Library Folder Count1 - - 7210 - - Track ID7210 - NameWorld Beat - ArtistHal Leonard - AlbumGuitar Method: Book 1 - GenreEasy Listening - KindAAC audio file - Size1150878 - Total Time32786 - Disc Number1 - Disc Count1 - Track Number4 - Track Count47 - Year2002 - Date Modified2009-12-06T03:29:47Z - Date Added2009-12-06T02:59:34Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3391612242 - Play Date UTC2011-06-22T13:00:42Z - Normalization4411 - Artwork Count1 - Persistent IDD0BA3CB36C57EE36 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method_%20Book%201/04%20World%20Beat.m4a - File Folder Count4 - Library Folder Count1 - - 7212 - - Track ID7212 - NameOde To Joy - ArtistHal Leonard - AlbumGuitar Method: Book 1 - GenreEasy Listening - KindAAC audio file - Size3447773 - Total Time97640 - Disc Number1 - Disc Count1 - Track Number5 - Track Count47 - Year2002 - Date Modified2009-12-06T03:29:47Z - Date Added2009-12-06T02:59:41Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3391612177 - Play Date UTC2011-06-22T12:59:37Z - Normalization1596 - Artwork Count1 - Persistent ID66E42A7457A8D4D2 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method_%20Book%201/05%20Ode%20To%20Joy.m4a - File Folder Count4 - Library Folder Count1 - - 7214 - - Track ID7214 - NameBlues - ArtistHal Leonard - AlbumGuitar Method: Book 1 - GenreEasy Listening - KindAAC audio file - Size1219194 - Total Time33453 - Disc Number1 - Disc Count1 - Track Number6 - Track Count47 - Year2002 - Date Modified2009-12-06T03:29:47Z - Date Added2009-12-06T02:59:59Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3391612083 - Play Date UTC2011-06-22T12:58:03Z - Normalization7549 - Artwork Count1 - Persistent ID62011C9A737DC8F1 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method_%20Book%201/06%20Blues.m4a - File Folder Count4 - Library Folder Count1 - - 7216 - - Track ID7216 - NameRockin' Robin - ArtistHal Leonard - AlbumGuitar Method: Book 1 - GenreEasy Listening - KindAAC audio file - Size2415863 - Total Time64226 - Disc Number1 - Disc Count1 - Track Number7 - Track Count47 - Year2002 - Date Modified2009-12-06T03:29:47Z - Date Added2009-12-06T03:00:06Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3392729568 - Play Date UTC2011-07-05T11:22:48Z - Normalization4142 - Artwork Count1 - Persistent ID0E8A6C8AEE15FCDC - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method_%20Book%201/07%20Rockin'%20Robin.m4a - File Folder Count4 - Library Folder Count1 - - 7218 - - Track ID7218 - NameYankee Doodle - ArtistHal Leonard - AlbumGuitar Method: Book 1 - GenreEasy Listening - KindAAC audio file - Size1442054 - Total Time41760 - Disc Number1 - Disc Count1 - Track Number8 - Track Count47 - Year2002 - Date Modified2009-12-06T03:29:47Z - Date Added2009-12-06T03:00:17Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3392729610 - Play Date UTC2011-07-05T11:23:30Z - Normalization2959 - Artwork Count1 - Persistent ID8783583A12D2080F - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method_%20Book%201/08%20Yankee%20Doodle.m4a - File Folder Count4 - Library Folder Count1 - - 7220 - - Track ID7220 - NameSurf Rock - ArtistHal Leonard - AlbumGuitar Method: Book 1 - GenreEasy Listening - KindAAC audio file - Size1993687 - Total Time60280 - Disc Number1 - Disc Count1 - Track Number9 - Track Count47 - Year2002 - Date Modified2009-12-06T03:29:47Z - Date Added2009-12-06T03:00:25Z - Bit Rate256 - Sample Rate44100 - Normalization8534 - Artwork Count1 - Persistent IDFF14BB34CB5E481E - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method_%20Book%201/09%20Surf%20Rock.m4a - File Folder Count4 - Library Folder Count1 - - 7222 - - Track ID7222 - NameAu Claire De La Lune - ArtistHal Leonard - AlbumGuitar Method: Book 1 - GenreEasy Listening - KindAAC audio file - Size1726671 - Total Time48480 - Disc Number1 - Disc Count1 - Track Number10 - Track Count47 - Year2002 - Date Modified2009-12-06T03:29:46Z - Date Added2009-12-06T03:00:35Z - Bit Rate256 - Sample Rate44100 - Normalization1643 - Artwork Count1 - Persistent ID2DCEF82E3B541A57 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method_%20Book%201/10%20Au%20Claire%20De%20La%20Lune.m4a - File Folder Count4 - Library Folder Count1 - - 7224 - - Track ID7224 - NameAura Lee - ArtistHal Leonard - AlbumGuitar Method: Book 1 - GenreEasy Listening - KindAAC audio file - Size1753647 - Total Time52893 - Disc Number1 - Disc Count1 - Track Number11 - Track Count47 - Year2002 - Date Modified2009-12-06T03:29:46Z - Date Added2009-12-06T03:00:44Z - Bit Rate256 - Sample Rate44100 - Play Count2 - Play Date3392814614 - Play Date UTC2011-07-06T11:00:14Z - Normalization1122 - Artwork Count1 - Persistent IDEA8862E48EC02627 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method_%20Book%201/11%20Aura%20Lee.m4a - File Folder Count4 - Library Folder Count1 - - 7226 - - Track ID7226 - NameHe's A Jolly Good Fellow - ArtistHal Leonard - AlbumGuitar Method: Book 1 - GenreEasy Listening - KindAAC audio file - Size954625 - Total Time26866 - Disc Number1 - Disc Count1 - Track Number12 - Track Count47 - Year2002 - Date Modified2009-12-06T03:29:46Z - Date Added2009-12-06T03:00:53Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3392814641 - Play Date UTC2011-07-06T11:00:41Z - Normalization3885 - Artwork Count1 - Persistent IDDAF8B846C7045483 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method_%20Book%201/12%20He's%20A%20Jolly%20Good%20Fellow.m4a - File Folder Count4 - Library Folder Count1 - - 7228 - - Track ID7228 - NameWorried Man Blues - ArtistHal Leonard - AlbumGuitar Method: Book 1 - GenreEasy Listening - KindAAC audio file - Size2770875 - Total Time79480 - Disc Number1 - Disc Count1 - Track Number13 - Track Count47 - Year2002 - Date Modified2009-12-06T03:29:46Z - Date Added2009-12-06T03:00:57Z - Bit Rate256 - Sample Rate44100 - Normalization4035 - Artwork Count1 - Persistent ID1EA34087E6E8A5FB - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method_%20Book%201/13%20Worried%20Man%20Blues.m4a - File Folder Count4 - Library Folder Count1 - - 7230 - - Track ID7230 - NameTom Dooley - ArtistHal Leonard - AlbumGuitar Method: Book 1 - GenreEasy Listening - KindAAC audio file - Size883955 - Total Time25226 - Disc Number1 - Disc Count1 - Track Number14 - Track Count47 - Year2002 - Date Modified2009-12-06T03:29:46Z - Date Added2009-12-06T03:01:10Z - Bit Rate256 - Sample Rate44100 - Normalization3091 - Artwork Count1 - Persistent ID176E1F7CFCD287BE - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method_%20Book%201/14%20Tom%20Dooley.m4a - File Folder Count4 - Library Folder Count1 - - 7232 - - Track ID7232 - NamePay Me My Money Down - ArtistHal Leonard - AlbumGuitar Method: Book 1 - GenreEasy Listening - KindAAC audio file - Size926861 - Total Time25986 - Disc Number1 - Disc Count1 - Track Number15 - Track Count47 - Year2002 - Date Modified2009-12-06T03:29:46Z - Date Added2009-12-06T03:01:14Z - Bit Rate256 - Sample Rate44100 - Normalization4268 - Artwork Count1 - Persistent ID3E17A3BAD0D508FD - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method_%20Book%201/15%20Pay%20Me%20My%20Money%20Down.m4a - File Folder Count4 - Library Folder Count1 - - 7234 - - Track ID7234 - Name12-Bar Rock - ArtistHal Leonard - AlbumGuitar Method: Book 1 - GenreEasy Listening - KindAAC audio file - Size2250928 - Total Time62666 - Disc Number1 - Disc Count1 - Track Number16 - Track Count47 - Year2002 - Date Modified2009-12-06T03:29:46Z - Date Added2009-12-06T03:01:19Z - Bit Rate256 - Sample Rate44100 - Normalization15872 - Artwork Count1 - Persistent IDA010729D64ADF2EA - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method_%20Book%201/16%2012-Bar%20Rock.m4a - File Folder Count4 - Library Folder Count1 - - 7236 - - Track ID7236 - NameAmazing Grace - ArtistHal Leonard - AlbumGuitar Method: Book 1 - GenreEasy Listening - KindAAC audio file - Size1357732 - Total Time36773 - Disc Number1 - Disc Count1 - Track Number17 - Track Count47 - Year2002 - Date Modified2009-12-06T03:29:46Z - Date Added2009-12-06T03:01:28Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3392213722 - Play Date UTC2011-06-29T12:05:22Z - Normalization1278 - Artwork Count1 - Persistent ID95B948D6166BC233 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method_%20Book%201/17%20Amazing%20Grace.m4a - File Folder Count4 - Library Folder Count1 - - 7238 - - Track ID7238 - NameRiffin' - ArtistHal Leonard - AlbumGuitar Method: Book 1 - GenreEasy Listening - KindAAC audio file - Size2154395 - Total Time61853 - Disc Number1 - Disc Count1 - Track Number18 - Track Count47 - Year2002 - Date Modified2009-12-06T03:29:46Z - Date Added2009-12-06T03:01:34Z - Bit Rate256 - Sample Rate44100 - Normalization4857 - Artwork Count1 - Persistent IDA0DC97F192F7A1BA - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method_%20Book%201/18%20Riffin'.m4a - File Folder Count4 - Library Folder Count1 - - 7240 - - Track ID7240 - NameWhen The Saints Go Marching In - ArtistHal Leonard - AlbumGuitar Method: Book 1 - GenreEasy Listening - KindAAC audio file - Size2636017 - Total Time74186 - Disc Number1 - Disc Count1 - Track Number19 - Track Count47 - Year2002 - Date Modified2009-12-06T03:29:46Z - Date Added2009-12-06T03:01:43Z - Bit Rate256 - Sample Rate44100 - Normalization3654 - Artwork Count1 - Persistent ID2318183259A4FFD0 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method_%20Book%201/19%20When%20The%20Saints%20Go%20Marching%20In.m4a - File Folder Count4 - Library Folder Count1 - - 7242 - - Track ID7242 - NameWill The Circle Be Unbroken - ArtistHal Leonard - AlbumGuitar Method: Book 1 - GenreEasy Listening - KindAAC audio file - Size1287814 - Total Time40080 - Disc Number1 - Disc Count1 - Track Number20 - Track Count47 - Year2002 - Date Modified2009-12-06T03:29:46Z - Date Added2009-12-06T03:01:54Z - Bit Rate256 - Sample Rate44100 - Normalization1484 - Artwork Count1 - Persistent ID219BD7CDF1BFDA39 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method_%20Book%201/20%20Will%20The%20Circle%20Be%20Unbroken.m4a - File Folder Count4 - Library Folder Count1 - - 7244 - - Track ID7244 - NameBlues Bass - ArtistHal Leonard - AlbumGuitar Method: Book 1 - GenreEasy Listening - KindAAC audio file - Size1907427 - Total Time55000 - Disc Number1 - Disc Count1 - Track Number21 - Track Count47 - Year2002 - Date Modified2009-12-06T03:29:45Z - Date Added2009-12-06T03:02:00Z - Bit Rate256 - Sample Rate44100 - Normalization15835 - Artwork Count1 - Persistent ID82F21C85B1FE908E - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method_%20Book%201/21%20Blues%20Bass.m4a - File Folder Count4 - Library Folder Count1 - - 7246 - - Track ID7246 - NameJoshua Fought The Battle Of Jericho - ArtistHal Leonard - AlbumGuitar Method: Book 1 - GenreEasy Listening - KindAAC audio file - Size1566522 - Total Time44013 - Disc Number1 - Disc Count1 - Track Number22 - Track Count47 - Year2002 - Date Modified2009-12-06T03:29:45Z - Date Added2009-12-06T03:02:08Z - Bit Rate256 - Sample Rate44100 - Normalization3656 - Artwork Count1 - Persistent ID1095BE63005F564B - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method_%20Book%201/22%20Joshua%20Fought%20The%20Battle%20Of%20Jericho.m4a - File Folder Count4 - Library Folder Count1 - - 7248 - - Track ID7248 - NameGreensleeves - ArtistHal Leonard - AlbumGuitar Method: Book 1 - GenreEasy Listening - KindAAC audio file - Size4390488 - Total Time128866 - Disc Number1 - Disc Count1 - Track Number23 - Track Count47 - Year2002 - Date Modified2009-12-06T03:29:45Z - Date Added2009-12-06T03:02:15Z - Bit Rate256 - Sample Rate44100 - Play Count2 - Play Date3392814560 - Play Date UTC2011-07-06T10:59:20Z - Normalization1504 - Artwork Count1 - Persistent IDD691ABDAC8230050 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method_%20Book%201/23%20Greensleeves.m4a - File Folder Count4 - Library Folder Count1 - - 7250 - - Track ID7250 - NameDoo Wop - ArtistHal Leonard - AlbumGuitar Method: Book 1 - GenreEasy Listening - KindAAC audio file - Size1245177 - Total Time34986 - Disc Number1 - Disc Count1 - Track Number24 - Track Count47 - Year2002 - Date Modified2009-12-06T03:29:45Z - Date Added2009-12-06T03:02:32Z - Bit Rate256 - Sample Rate44100 - Normalization3686 - Artwork Count1 - Persistent ID18FDF2CF1CBF8A53 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method_%20Book%201/24%20Doo%20Wop.m4a - File Folder Count4 - Library Folder Count1 - - 7252 - - Track ID7252 - NameGive My Regards To Broadway - ArtistHal Leonard - AlbumGuitar Method: Book 1 - GenreEasy Listening - KindAAC audio file - Size2446565 - Total Time68373 - Disc Number1 - Disc Count1 - Track Number25 - Track Count47 - Year2002 - Date Modified2009-12-06T03:29:45Z - Date Added2009-12-06T03:02:37Z - Bit Rate256 - Sample Rate44100 - Normalization1204 - Artwork Count1 - Persistent IDDACDD0868C5CDC36 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method_%20Book%201/25%20Give%20My%20Regards%20To%20Broadway.m4a - File Folder Count4 - Library Folder Count1 - - 7254 - - Track ID7254 - NameBass Rock - ArtistHal Leonard - AlbumGuitar Method: Book 1 - GenreEasy Listening - KindAAC audio file - Size1901185 - Total Time52893 - Disc Number1 - Disc Count1 - Track Number26 - Track Count47 - Year2002 - Date Modified2009-12-06T03:29:45Z - Date Added2009-12-06T03:02:46Z - Bit Rate256 - Sample Rate44100 - Normalization12324 - Artwork Count1 - Persistent IDEE8A9EE81103D0EE - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method_%20Book%201/26%20Bass%20Rock.m4a - File Folder Count4 - Library Folder Count1 - - 7256 - - Track ID7256 - NameDanny Boy (Londonderry Air) - ArtistHal Leonard - AlbumGuitar Method: Book 1 - GenreEasy Listening - KindAAC audio file - Size1658551 - Total Time49146 - Disc Number1 - Disc Count1 - Track Number27 - Track Count47 - Year2002 - Date Modified2009-12-06T03:29:45Z - Date Added2009-12-06T03:02:53Z - Bit Rate256 - Sample Rate44100 - Normalization1733 - Artwork Count1 - Persistent ID6EA079CE1D63552D - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method_%20Book%201/27%20Danny%20Boy%20(Londonderry%20Air).m4a - File Folder Count4 - Library Folder Count1 - - 7258 - - Track ID7258 - NameShenandoah - ArtistHal Leonard - AlbumGuitar Method: Book 1 - GenreEasy Listening - KindAAC audio file - Size1696761 - Total Time46880 - Disc Number1 - Disc Count1 - Track Number28 - Track Count47 - Year2002 - Date Modified2009-12-06T03:29:45Z - Date Added2009-12-06T03:02:59Z - Bit Rate256 - Sample Rate44100 - Normalization2536 - Artwork Count1 - Persistent ID72949E8362C51798 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method_%20Book%201/28%20Shenandoah.m4a - File Folder Count4 - Library Folder Count1 - - 7260 - - Track ID7260 - NameSpy Riff - ArtistHal Leonard - AlbumGuitar Method: Book 1 - GenreEasy Listening - KindAAC audio file - Size1440633 - Total Time41493 - Disc Number1 - Disc Count1 - Track Number29 - Track Count47 - Year2002 - Date Modified2009-12-06T03:29:45Z - Date Added2009-12-06T03:03:05Z - Bit Rate256 - Sample Rate44100 - Normalization2568 - Artwork Count1 - Persistent ID5486F937C6996E2B - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method_%20Book%201/29%20Spy%20Riff.m4a - File Folder Count4 - Library Folder Count1 - - 7262 - - Track ID7262 - NameDeep Blue - ArtistHal Leonard - AlbumGuitar Method: Book 1 - GenreEasy Listening - KindAAC audio file - Size436275 - Total Time14333 - Disc Number1 - Disc Count1 - Track Number30 - Track Count47 - Year2002 - Date Modified2009-12-06T03:29:45Z - Date Added2009-12-06T03:03:11Z - Bit Rate256 - Sample Rate44100 - Normalization4118 - Artwork Count1 - Persistent ID5AD5FBCAA2580B0C - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method_%20Book%201/30%20Deep%20Blue.m4a - File Folder Count4 - Library Folder Count1 - - 7264 - - Track ID7264 - NameRed River Valley - ArtistHal Leonard - AlbumGuitar Method: Book 1 - GenreEasy Listening - KindAAC audio file - Size1170892 - Total Time37853 - Disc Number1 - Disc Count1 - Track Number31 - Track Count47 - Year2002 - Date Modified2009-12-06T03:29:45Z - Date Added2009-12-06T03:03:13Z - Bit Rate256 - Sample Rate44100 - Normalization2310 - Artwork Count1 - Persistent IDD4A5479D46545524 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method_%20Book%201/31%20Red%20River%20Valley.m4a - File Folder Count4 - Library Folder Count1 - - 7266 - - Track ID7266 - NameTwang - ArtistHal Leonard - AlbumGuitar Method: Book 1 - GenreEasy Listening - KindAAC audio file - Size651396 - Total Time21866 - Disc Number1 - Disc Count1 - Track Number32 - Track Count47 - Year2002 - Date Modified2009-12-06T03:29:44Z - Date Added2009-12-06T03:03:18Z - Bit Rate256 - Sample Rate44100 - Normalization1762 - Artwork Count1 - Persistent ID765A1F6E5A38B2EA - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method_%20Book%201/32%20Twang.m4a - File Folder Count4 - Library Folder Count1 - - 7268 - - Track ID7268 - NameRock 'N' Rest - ArtistHal Leonard - AlbumGuitar Method: Book 1 - GenreEasy Listening - KindAAC audio file - Size560025 - Total Time15653 - Disc Number1 - Disc Count1 - Track Number33 - Track Count47 - Year2002 - Date Modified2009-12-06T03:29:44Z - Date Added2009-12-06T03:03:21Z - Bit Rate256 - Sample Rate44100 - Normalization4057 - Artwork Count1 - Persistent ID6BDBAD40D1A67FAF - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method_%20Book%201/33%20Rock%20'N'%20Rest.m4a - File Folder Count4 - Library Folder Count1 - - 7270 - - Track ID7270 - NameSea Shanty - ArtistHal Leonard - AlbumGuitar Method: Book 1 - GenreEasy Listening - KindAAC audio file - Size3197203 - Total Time89546 - Disc Number1 - Disc Count1 - Track Number34 - Track Count47 - Year2002 - Date Modified2009-12-06T03:29:44Z - Date Added2009-12-06T03:03:24Z - Bit Rate256 - Sample Rate44100 - Normalization3940 - Artwork Count1 - Persistent ID71D55DEBA1EA0132 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method_%20Book%201/34%20Sea%20Shanty.m4a - File Folder Count4 - Library Folder Count1 - - 7272 - - Track ID7272 - NameFrére Jacques - ArtistHal Leonard - AlbumGuitar Method: Book 1 - GenreEasy Listening - KindAAC audio file - Size1985569 - Total Time56360 - Disc Number1 - Disc Count1 - Track Number35 - Track Count47 - Year2002 - Date Modified2009-12-06T03:29:44Z - Date Added2009-12-06T03:03:34Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3392214048 - Play Date UTC2011-06-29T12:10:48Z - Normalization1341 - Artwork Count1 - Persistent ID655887E1C15B854B - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method_%20Book%201/35%20Fre%CC%81re%20Jacques.m4a - File Folder Count4 - Library Folder Count1 - - 7274 - - Track ID7274 - NameSnake Charmer - ArtistHal Leonard - AlbumGuitar Method: Book 1 - GenreEasy Listening - KindAAC audio file - Size1910499 - Total Time54760 - Disc Number1 - Disc Count1 - Track Number36 - Track Count47 - Year2002 - Date Modified2009-12-06T03:29:44Z - Date Added2009-12-06T03:03:41Z - Bit Rate256 - Sample Rate44100 - Skip Count1 - Normalization1855 - Artwork Count1 - Persistent IDF0EC5501691D8A92 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method_%20Book%201/36%20Snake%20Charmer.m4a - File Folder Count4 - Library Folder Count1 - - 7276 - - Track ID7276 - NameThe Star-Spangeled Banner - ArtistHal Leonard - AlbumGuitar Method: Book 1 - GenreEasy Listening - KindAAC audio file - Size2744671 - Total Time81226 - Disc Number1 - Disc Count1 - Track Number37 - Track Count47 - Year2002 - Date Modified2009-12-06T03:29:44Z - Date Added2009-12-06T03:03:48Z - Bit Rate256 - Sample Rate44100 - Normalization3991 - Artwork Count1 - Sort NameStar-Spangeled Banner - Persistent IDD5EF6C8D66507707 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method_%20Book%201/37%20The%20Star-Spangeled%20Banner.m4a - File Folder Count4 - Library Folder Count1 - - 7278 - - Track ID7278 - NameHey, Ho, Nobody Home - ArtistHal Leonard - AlbumGuitar Method: Book 1 - GenreEasy Listening - KindAAC audio file - Size2317984 - Total Time71653 - Disc Number1 - Disc Count1 - Track Number38 - Track Count47 - Year2002 - Date Modified2009-12-06T03:29:44Z - Date Added2009-12-06T03:03:58Z - Bit Rate256 - Sample Rate44100 - Normalization1766 - Artwork Count1 - Persistent ID03740862EF0AFB51 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method_%20Book%201/38%20Hey,%20Ho,%20Nobody%20Home.m4a - File Folder Count4 - Library Folder Count1 - - 7280 - - Track ID7280 - NameShalom Chaverim (Peace, My Friend) - ArtistHal Leonard - AlbumGuitar Method: Book 1 - GenreEasy Listening - KindAAC audio file - Size2668427 - Total Time82440 - Disc Number1 - Disc Count1 - Track Number39 - Track Count47 - Year2002 - Date Modified2009-12-06T03:29:44Z - Date Added2009-12-06T03:04:06Z - Bit Rate256 - Sample Rate44100 - Normalization2540 - Artwork Count1 - Persistent ID7FC7DBAB3F56492F - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method_%20Book%201/39%20Shalom%20Chaverim%20(Peace,%20My%20Friend).m4a - File Folder Count4 - Library Folder Count1 - - 7282 - - Track ID7282 - NameThis Train - ArtistHal Leonard - AlbumGuitar Method: Book 1 - GenreEasy Listening - KindAAC audio file - Size2198935 - Total Time64800 - Disc Number1 - Disc Count1 - Track Number40 - Track Count47 - Year2002 - Date Modified2009-12-06T03:29:43Z - Date Added2009-12-06T03:04:15Z - Bit Rate256 - Sample Rate44100 - Normalization3581 - Artwork Count1 - Persistent ID40DCDBA789ABC653 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method_%20Book%201/40%20This%20Train.m4a - File Folder Count4 - Library Folder Count1 - - 7284 - - Track ID7284 - NameBoogie Bass - ArtistHal Leonard - AlbumGuitar Method: Book 1 - GenreEasy Listening - KindAAC audio file - Size2943245 - Total Time81813 - Disc Number1 - Disc Count1 - Track Number41 - Track Count47 - Year2002 - Date Modified2009-12-06T03:29:43Z - Date Added2009-12-06T03:04:23Z - Bit Rate256 - Sample Rate44100 - Normalization6005 - Artwork Count1 - Persistent IDD0EB52B762AB8994 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method_%20Book%201/41%20Boogie%20Bass.m4a - File Folder Count4 - Library Folder Count1 - - 7286 - - Track ID7286 - NameSimple Gifts - ArtistHal Leonard - AlbumGuitar Method: Book 1 - GenreEasy Listening - KindAAC audio file - Size3755482 - Total Time103946 - Disc Number1 - Disc Count1 - Track Number42 - Track Count47 - Year2002 - Date Modified2009-12-06T03:29:43Z - Date Added2009-12-06T03:04:32Z - Bit Rate256 - Sample Rate44100 - Normalization3705 - Artwork Count1 - Persistent ID993F50FF809EB10B - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method_%20Book%201/42%20Simple%20Gifts.m4a - File Folder Count4 - Library Folder Count1 - - 7288 - - Track ID7288 - NameRockin' Blues - ArtistHal Leonard - AlbumGuitar Method: Book 1 - GenreEasy Listening - KindAAC audio file - Size1079188 - Total Time30439 - Disc Number1 - Disc Count1 - Track Number43 - Track Count47 - Year2002 - Date Modified2009-12-23T11:26:04Z - Date Added2009-12-06T03:04:43Z - Bit Rate256 - Sample Rate44100 - Normalization5328 - Persistent IDA55D5934CB126D20 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method_%20Book%201/43%20Rockin'%20Blues.m4a - File Folder Count4 - Library Folder Count1 - - 7290 - - Track ID7290 - NameDown In The Valley - ArtistHal Leonard - AlbumGuitar Method: Book 1 - GenreEasy Listening - KindAAC audio file - Size1344502 - Total Time41466 - Disc Number1 - Disc Count1 - Track Number44 - Track Count47 - Year2002 - Date Modified2009-12-06T03:29:43Z - Date Added2009-12-06T03:04:47Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3392224120 - Play Date UTC2011-06-29T14:58:40Z - Normalization2404 - Artwork Count1 - Persistent ID20827BA018B79E2E - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method_%20Book%201/44%20Down%20In%20The%20Valley.m4a - File Folder Count4 - Library Folder Count1 - - 7292 - - Track ID7292 - NameMinuet In G - ArtistHal Leonard - AlbumGuitar Method: Book 1 - GenreEasy Listening - KindAAC audio file - Size10187336 - Total Time299386 - Disc Number1 - Disc Count1 - Track Number45 - Track Count47 - Year2002 - Date Modified2009-12-06T03:29:43Z - Date Added2009-12-06T03:04:52Z - Bit Rate256 - Sample Rate44100 - Normalization2805 - Artwork Count1 - Persistent IDBC3C94392225DD54 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method_%20Book%201/45%20Minuet%20In%20G.m4a - File Folder Count4 - Library Folder Count1 - - 7294 - - Track ID7294 - NameTime Is On My Side - ArtistHal Leonard - AlbumGuitar Method: Book 1 - GenreEasy Listening - KindAAC audio file - Size3025636 - Total Time94293 - Disc Number1 - Disc Count1 - Track Number46 - Track Count47 - Year2002 - Date Modified2009-12-06T03:29:42Z - Date Added2009-12-06T03:05:22Z - Bit Rate256 - Sample Rate44100 - Normalization10661 - Artwork Count1 - Persistent ID482FF8AFC22881BE - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method_%20Book%201/46%20Time%20Is%20On%20My%20Side.m4a - File Folder Count4 - Library Folder Count1 - - 7296 - - Track ID7296 - NameGrand Finale - ArtistHal Leonard - AlbumGuitar Method: Book 1 - GenreEasy Listening - KindAAC audio file - Size2534138 - Total Time69040 - Disc Number1 - Disc Count1 - Track Number47 - Track Count47 - Year2002 - Date Modified2009-12-06T03:29:42Z - Date Added2009-12-06T03:05:32Z - Bit Rate256 - Sample Rate44100 - Normalization5334 - Artwork Count1 - Persistent IDBA7449999D64D8A0 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method_%20Book%201/47%20Grand%20Finale.m4a - File Folder Count4 - Library Folder Count1 - - 7298 - - Track ID7298 - NameTuning Notes (Am Chord) - ArtistHal Leonard - AlbumGuitar Method Book 2 - GenreSoundtrack - KindAAC audio file - Size1915827 - Total Time59600 - Disc Number2 - Disc Count3 - Track Number1 - Track Count58 - Year2002 - Date Modified2009-12-06T03:29:42Z - Date Added2009-12-06T03:06:44Z - Bit Rate256 - Sample Rate44100 - Normalization498 - Artwork Count1 - Persistent ID41EA5E41CC831E67 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-01%20Tuning%20Notes%20(Am%20Chord).m4a - File Folder Count4 - Library Folder Count1 - - 7300 - - Track ID7300 - NameSinner Man - ArtistHal Leonard - AlbumGuitar Method Book 2 - GenreSoundtrack - KindAAC audio file - Size1459751 - Total Time44786 - Disc Number2 - Disc Count3 - Track Number2 - Track Count58 - Year2002 - Date Modified2009-12-06T03:29:42Z - Date Added2009-12-06T03:06:50Z - Bit Rate256 - Sample Rate44100 - Normalization2535 - Artwork Count1 - Persistent ID1A771DA04868128F - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-02%20Sinner%20Man.m4a - File Folder Count4 - Library Folder Count1 - - 7302 - - Track ID7302 - NameJoshua Fought The Battle Of Jericho - ArtistHal Leonard - AlbumGuitar Method Book 2 - GenreSoundtrack - KindAAC audio file - Size1759464 - Total Time52346 - Disc Number2 - Disc Count3 - Track Number3 - Track Count58 - Year2002 - Date Modified2009-12-06T03:29:42Z - Date Added2009-12-06T03:06:54Z - Bit Rate256 - Sample Rate44100 - Normalization2823 - Artwork Count1 - Persistent ID509448C42299CE46 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-03%20Joshua%20Fought%20The%20Battle%20Of%20Jericho.m4a - File Folder Count4 - Library Folder Count1 - - 7304 - - Track ID7304 - NameRock-a-my-Soul - ArtistHal Leonard - AlbumGuitar Method Book 2 - GenreSoundtrack - KindAAC audio file - Size1626911 - Total Time50426 - Disc Number2 - Disc Count3 - Track Number4 - Track Count58 - Year2002 - Date Modified2009-12-06T03:29:42Z - Date Added2009-12-06T03:07:00Z - Bit Rate256 - Sample Rate44100 - Normalization2960 - Artwork Count1 - Persistent ID6B7278711CB0B636 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-04%20Rock-a-my-Soul.m4a - File Folder Count4 - Library Folder Count1 - - 7306 - - Track ID7306 - NameJamaica Farewell - ArtistHal Leonard - AlbumGuitar Method Book 2 - GenreSoundtrack - KindAAC audio file - Size2955256 - Total Time90120 - Disc Number2 - Disc Count3 - Track Number5 - Track Count58 - Year2002 - Date Modified2009-12-06T03:29:42Z - Date Added2009-12-06T03:07:05Z - Bit Rate256 - Sample Rate44100 - Normalization1570 - Artwork Count1 - Persistent IDC6A4E1557DAC06EF - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-05%20Jamaica%20Farewell.m4a - File Folder Count4 - Library Folder Count1 - - 7308 - - Track ID7308 - NameOh, Mary Don't You Weep - ArtistHal Leonard - AlbumGuitar Method Book 2 - GenreSoundtrack - KindAAC audio file - Size1790251 - Total Time49000 - Disc Number2 - Disc Count3 - Track Number6 - Track Count58 - Year2002 - Date Modified2009-12-06T03:29:42Z - Date Added2009-12-06T03:07:13Z - Bit Rate256 - Sample Rate44100 - Normalization1587 - Artwork Count1 - Persistent ID35639DE9201B94AE - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-06%20Oh,%20Mary%20Don't%20You%20Weep.m4a - File Folder Count4 - Library Folder Count1 - - 7310 - - Track ID7310 - NameDe Colores - ArtistHal Leonard - AlbumGuitar Method Book 2 - GenreSoundtrack - KindAAC audio file - Size1751082 - Total Time53920 - Disc Number2 - Disc Count3 - Track Number7 - Track Count58 - Year2002 - Date Modified2009-12-06T03:29:42Z - Date Added2009-12-06T03:07:17Z - Bit Rate256 - Sample Rate44100 - Normalization1324 - Artwork Count1 - Persistent ID975BCB27777BF648 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-07%20De%20Colores.m4a - File Folder Count4 - Library Folder Count1 - - 7312 - - Track ID7312 - NameAngels We Have Heard On High - ArtistHal Leonard - AlbumGuitar Method Book 2 - GenreSoundtrack - KindAAC audio file - Size2476629 - Total Time67000 - Disc Number2 - Disc Count3 - Track Number8 - Track Count58 - Year2002 - Date Modified2009-12-06T03:29:41Z - Date Added2009-12-06T03:07:22Z - Bit Rate256 - Sample Rate44100 - Normalization1234 - Artwork Count1 - Persistent ID2EF906C96DEB651C - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-08%20Angels%20We%20Have%20Heard%20On%20High.m4a - File Folder Count4 - Library Folder Count1 - - 7314 - - Track ID7314 - NameCatchy Riff - ArtistHal Leonard - AlbumGuitar Method Book 2 - GenreSoundtrack - KindAAC audio file - Size1071909 - Total Time34293 - Disc Number2 - Disc Count3 - Track Number9 - Track Count58 - Year2002 - Date Modified2009-12-06T03:29:41Z - Date Added2009-12-06T03:07:28Z - Bit Rate256 - Sample Rate44100 - Normalization1233 - Artwork Count1 - Persistent IDF0983B2503F14B4D - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-09%20Catchy%20Riff.m4a - File Folder Count4 - Library Folder Count1 - - 7316 - - Track ID7316 - NameMarianne - ArtistHal Leonard - AlbumGuitar Method Book 2 - GenreSoundtrack - KindAAC audio file - Size1210573 - Total Time38000 - Disc Number2 - Disc Count3 - Track Number10 - Track Count58 - Year2002 - Date Modified2009-12-06T03:29:41Z - Date Added2009-12-06T03:07:31Z - Bit Rate256 - Sample Rate44100 - Normalization1221 - Artwork Count1 - Persistent ID20C4DC410B748C4A - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-10%20Marianne.m4a - File Folder Count4 - Library Folder Count1 - - 7318 - - Track ID7318 - NameBlues/Rock Riff - ArtistHal Leonard - AlbumGuitar Method Book 2 - GenreSoundtrack - KindAAC audio file - Size1605774 - Total Time45346 - Disc Number2 - Disc Count3 - Track Number11 - Track Count58 - Year2002 - Date Modified2009-12-06T03:29:41Z - Date Added2009-12-06T03:07:34Z - Bit Rate256 - Sample Rate44100 - Normalization3450 - Artwork Count1 - Persistent IDB851043F2BD42C49 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-11%20Blues_Rock%20Riff.m4a - File Folder Count4 - Library Folder Count1 - - 7320 - - Track ID7320 - NameThe Wabash Cannonball - ArtistHal Leonard - AlbumGuitar Method Book 2 - GenreSoundtrack - KindAAC audio file - Size1054698 - Total Time32760 - Disc Number2 - Disc Count3 - Track Number12 - Track Count58 - Year2002 - Date Modified2009-12-06T03:29:41Z - Date Added2009-12-06T03:07:38Z - Bit Rate256 - Sample Rate44100 - Normalization2440 - Artwork Count1 - Sort NameWabash Cannonball - Persistent IDCB896D97FC1C5174 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-12%20The%20Wabash%20Cannonball.m4a - File Folder Count4 - Library Folder Count1 - - 7322 - - Track ID7322 - NameLa Bamba - ArtistHal Leonard - AlbumGuitar Method Book 2 - GenreSoundtrack - KindAAC audio file - Size1143685 - Total Time32000 - Disc Number2 - Disc Count3 - Track Number13 - Track Count58 - Year2002 - Date Modified2009-12-06T03:29:41Z - Date Added2009-12-06T03:07:41Z - Bit Rate256 - Sample Rate44100 - Normalization1526 - Artwork Count1 - Persistent ID8ACFC43C7096372A - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-13%20La%20Bamba.m4a - File Folder Count4 - Library Folder Count1 - - 7324 - - Track ID7324 - NameJoy To The World - ArtistHal Leonard - AlbumGuitar Method Book 2 - GenreSoundtrack - KindAAC audio file - Size1533146 - Total Time43133 - Disc Number2 - Disc Count3 - Track Number14 - Track Count58 - Year2002 - Date Modified2009-12-06T03:29:41Z - Date Added2009-12-06T03:07:44Z - Bit Rate256 - Sample Rate44100 - Normalization1793 - Artwork Count1 - Persistent ID9D513073BDB9EDE3 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-14%20Joy%20To%20The%20World.m4a - File Folder Count4 - Library Folder Count1 - - 7326 - - Track ID7326 - NameSteady Groove - ArtistHal Leonard - AlbumGuitar Method Book 2 - GenreSoundtrack - KindAAC audio file - Size2003248 - Total Time56466 - Disc Number2 - Disc Count3 - Track Number15 - Track Count58 - Year2002 - Date Modified2009-12-06T03:29:41Z - Date Added2009-12-06T03:07:47Z - Bit Rate256 - Sample Rate44100 - Normalization3196 - Artwork Count1 - Persistent ID41EEE6D6B8BB7173 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-15%20Steady%20Groove.m4a - File Folder Count4 - Library Folder Count1 - - 7328 - - Track ID7328 - NamePower Chord Shuffle - ArtistHal Leonard - AlbumGuitar Method Book 2 - GenreSoundtrack - KindAAC audio file - Size3633527 - Total Time102346 - Disc Number2 - Disc Count3 - Track Number16 - Track Count58 - Year2002 - Date Modified2009-12-06T03:29:41Z - Date Added2009-12-06T03:07:52Z - Bit Rate256 - Sample Rate44100 - Normalization8570 - Artwork Count1 - Persistent ID4ABDAED1526E0DA1 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-16%20Power%20Chord%20Shuffle.m4a - File Folder Count4 - Library Folder Count1 - - 7330 - - Track ID7330 - NameMidnight Special - ArtistHal Leonard - AlbumGuitar Method Book 2 - GenreSoundtrack - KindAAC audio file - Size1906613 - Total Time53573 - Disc Number2 - Disc Count3 - Track Number17 - Track Count58 - Year2002 - Date Modified2009-12-06T03:29:41Z - Date Added2009-12-06T03:08:00Z - Bit Rate256 - Sample Rate44100 - Normalization7647 - Artwork Count1 - Persistent IDD0E0A3F1073D1389 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-17%20Midnight%20Special.m4a - File Folder Count4 - Library Folder Count1 - - 7332 - - Track ID7332 - NameMidnight Special W/ 8th Note Rock Feel - ArtistHal Leonard - AlbumGuitar Method Book 2 - GenreSoundtrack - KindAAC audio file - Size1814623 - Total Time49280 - Disc Number2 - Disc Count3 - Track Number18 - Track Count58 - Year2002 - Date Modified2009-12-06T03:29:41Z - Date Added2009-12-06T03:08:04Z - Bit Rate256 - Sample Rate44100 - Normalization10113 - Artwork Count1 - Persistent ID7D50C8A099C2BC0C - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-18%20Midnight%20Special%20W_%208th%20Note%20Rock%20Feel.m4a - File Folder Count4 - Library Folder Count1 - - 7334 - - Track ID7334 - NameBlues In A - ArtistHal Leonard - AlbumGuitar Method Book 2 - GenreSoundtrack - KindAAC audio file - Size2201998 - Total Time63613 - Disc Number2 - Disc Count3 - Track Number19 - Track Count58 - Year2002 - Date Modified2009-12-06T03:29:40Z - Date Added2009-12-06T03:08:08Z - Bit Rate256 - Sample Rate44100 - Normalization6492 - Artwork Count1 - Persistent IDC767E423569515DF - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-19%20Blues%20In%20A.m4a - File Folder Count4 - Library Folder Count1 - - 7336 - - Track ID7336 - NameC. C. Rider - ArtistHal Leonard - AlbumGuitar Method Book 2 - GenreSoundtrack - KindAAC audio file - Size2537942 - Total Time78533 - Disc Number2 - Disc Count3 - Track Number20 - Track Count58 - Year2002 - Date Modified2009-12-06T03:29:40Z - Date Added2009-12-06T03:08:12Z - Bit Rate256 - Sample Rate44100 - Normalization2159 - Artwork Count1 - Persistent IDB70D223D96BEFBB9 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-20%20C.%20C.%20Rider.m4a - File Folder Count4 - Library Folder Count1 - - 7338 - - Track ID7338 - NameShuffle Riff - ArtistHal Leonard - AlbumGuitar Method Book 2 - GenreSoundtrack - KindAAC audio file - Size4568677 - Total Time131253 - Disc Number2 - Disc Count3 - Track Number21 - Track Count58 - Year2002 - Date Modified2009-12-06T03:29:40Z - Date Added2009-12-06T03:08:18Z - Bit Rate256 - Sample Rate44100 - Normalization1255 - Artwork Count1 - Persistent ID70BCF7296402D156 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-21%20Shuffle%20Riff.m4a - File Folder Count4 - Library Folder Count1 - - 7340 - - Track ID7340 - NameWayfaring Stranger - ArtistHal Leonard - AlbumGuitar Method Book 2 - GenreSoundtrack - KindAAC audio file - Size2125270 - Total Time57733 - Disc Number2 - Disc Count3 - Track Number22 - Track Count58 - Year2002 - Date Modified2009-12-06T03:29:40Z - Date Added2009-12-06T03:08:27Z - Bit Rate256 - Sample Rate44100 - Normalization918 - Artwork Count1 - Persistent ID24760EDEE5C5AA79 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-22%20Wayfaring%20Stranger.m4a - File Folder Count4 - Library Folder Count1 - - 7342 - - Track ID7342 - NameHava Nagila - ArtistHal Leonard - AlbumGuitar Method Book 2 - GenreSoundtrack - KindAAC audio file - Size5324357 - Total Time155986 - Disc Number2 - Disc Count3 - Track Number23 - Track Count58 - Year2002 - Date Modified2009-12-06T03:29:40Z - Date Added2009-12-06T03:08:31Z - Bit Rate256 - Sample Rate44100 - Normalization2203 - Artwork Count1 - Persistent ID768BD7BE2511C347 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-23%20Hava%20Nagila.m4a - File Folder Count4 - Library Folder Count1 - - 7344 - - Track ID7344 - NameSwing Low, Sweet Chariot - ArtistHal Leonard - AlbumGuitar Method Book 2 - GenreSoundtrack - KindAAC audio file - Size2160579 - Total Time58533 - Disc Number2 - Disc Count3 - Track Number24 - Track Count58 - Year2002 - Date Modified2009-12-06T03:29:40Z - Date Added2009-12-06T03:08:41Z - Bit Rate256 - Sample Rate44100 - Normalization1986 - Artwork Count1 - Persistent ID06E36B75A9A91E3D - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-24%20Swing%20Low,%20Sweet%20Chariot.m4a - File Folder Count4 - Library Folder Count1 - - 7346 - - Track ID7346 - NameScarborough Fair - ArtistHal Leonard - AlbumGuitar Method Book 2 - GenreSoundtrack - KindAAC audio file - Size1644451 - Total Time46466 - Disc Number2 - Disc Count3 - Track Number25 - Track Count58 - Year2002 - Date Modified2009-12-06T03:29:39Z - Date Added2009-12-06T03:08:44Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3392224446 - Play Date UTC2011-06-29T15:04:06Z - Normalization2334 - Artwork Count1 - Persistent ID69390ADF3322C46B - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-25%20Scarborough%20Fair.m4a - File Folder Count4 - Library Folder Count1 - - 7348 - - Track ID7348 - NameThe Water Is Wide - ArtistHal Leonard - AlbumGuitar Method Book 2 - GenreSoundtrack - KindAAC audio file - Size1978880 - Total Time54333 - Disc Number2 - Disc Count3 - Track Number26 - Track Count58 - Year2002 - Date Modified2009-12-06T03:29:39Z - Date Added2009-12-06T03:08:48Z - Bit Rate256 - Sample Rate44100 - Normalization1554 - Artwork Count1 - Sort NameWater Is Wide - Persistent IDA81221BAFEFEB157 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-26%20The%20Water%20Is%20Wide.m4a - File Folder Count4 - Library Folder Count1 - - 7350 - - Track ID7350 - NamePicking Chords-The F Chord - ArtistHal Leonard - AlbumGuitar Method Book 2 - GenreSoundtrack - KindAAC audio file - Size853202 - Total Time24546 - Disc Number2 - Disc Count3 - Track Number27 - Track Count58 - Year2002 - Date Modified2009-12-06T03:29:39Z - Date Added2009-12-06T03:08:51Z - Bit Rate256 - Sample Rate44100 - Normalization2400 - Artwork Count1 - Persistent ID916515B5C9C76F82 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-27%20Picking%20Chords-The%20F%20Chord.m4a - File Folder Count4 - Library Folder Count1 - - 7352 - - Track ID7352 - NameHouse Of The Rising Sun - ArtistHal Leonard - AlbumGuitar Method Book 2 - GenreSoundtrack - KindAAC audio file - Size1420753 - Total Time39360 - Disc Number2 - Disc Count3 - Track Number28 - Track Count58 - Year2002 - Date Modified2009-12-06T03:29:39Z - Date Added2009-12-06T03:08:53Z - Bit Rate256 - Sample Rate44100 - Normalization2713 - Artwork Count1 - Persistent ID10C6D3F2381C0D9D - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-28%20House%20Of%20The%20Rising%20Sun.m4a - File Folder Count4 - Library Folder Count1 - - 7354 - - Track ID7354 - NameCarter Style-Row, Row, Row Your Boat - ArtistHal Leonard - AlbumGuitar Method Book 2 - GenreSoundtrack - KindAAC audio file - Size904284 - Total Time27826 - Disc Number2 - Disc Count3 - Track Number29 - Track Count58 - Year2002 - Date Modified2009-12-06T03:29:39Z - Date Added2009-12-06T03:08:56Z - Bit Rate256 - Sample Rate44100 - Normalization830 - Artwork Count1 - Persistent ID0113B81A78AE836F - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-29%20Carter%20Style-Row,%20Row,%20Row%20Your%20Boat.m4a - File Folder Count4 - Library Folder Count1 - - 7356 - - Track ID7356 - NameMan Of Constant Sorrow - ArtistHal Leonard - AlbumGuitar Method Book 2 - GenreSoundtrack - KindAAC audio file - Size2830047 - Total Time86333 - Disc Number2 - Disc Count3 - Track Number30 - Track Count58 - Year2002 - Date Modified2009-12-06T03:29:39Z - Date Added2009-12-06T03:08:57Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3392787644 - Play Date UTC2011-07-06T03:30:44Z - Normalization1149 - Artwork Count1 - Persistent ID48564069F7BA2D8F - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-30%20Man%20Of%20Constant%20Sorrow.m4a - File Folder Count4 - Library Folder Count1 - - 7358 - - Track ID7358 - NameWildwood Flower - ArtistHal Leonard - AlbumGuitar Method Book 2 - GenreSoundtrack - KindAAC audio file - Size2619132 - Total Time79800 - Disc Number2 - Disc Count3 - Track Number31 - Track Count58 - Year2002 - Date Modified2009-12-06T03:29:39Z - Date Added2009-12-06T03:09:03Z - Bit Rate256 - Sample Rate44100 - Normalization1339 - Artwork Count1 - Persistent IDF2D2D7F6E58C80DB - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-31%20Wildwood%20Flower.m4a - File Folder Count4 - Library Folder Count1 - - 7360 - - Track ID7360 - NameBass Runs-Goin' Down The Road - ArtistHal Leonard - AlbumGuitar Method Book 2 - GenreSoundtrack - KindAAC audio file - Size827555 - Total Time26946 - Disc Number2 - Disc Count3 - Track Number32 - Track Count58 - Year2002 - Date Modified2009-12-06T03:29:39Z - Date Added2009-12-06T03:09:08Z - Bit Rate256 - Sample Rate44100 - Normalization2617 - Artwork Count1 - Persistent ID185581C80606379F - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-32%20Bass%20Runs-Goin'%20Down%20The%20Road.m4a - File Folder Count4 - Library Folder Count1 - - 7362 - - Track ID7362 - NameB7-We Three Kings - ArtistHal Leonard - AlbumGuitar Method Book 2 - GenreSoundtrack - KindAAC audio file - Size971789 - Total Time29720 - Disc Number2 - Disc Count3 - Track Number33 - Track Count58 - Year2002 - Date Modified2009-12-06T03:29:39Z - Date Added2009-12-06T03:09:09Z - Bit Rate256 - Sample Rate44100 - Normalization2282 - Artwork Count1 - Persistent IDE15D0E745D13AD5F - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-33%20B7-We%20Three%20Kings.m4a - File Folder Count4 - Library Folder Count1 - - 7364 - - Track ID7364 - NameE- By The Waters Of Babylon - ArtistHal Leonard - AlbumGuitar Method Book 2 - GenreSoundtrack - KindAAC audio file - Size1424197 - Total Time44266 - Disc Number2 - Disc Count3 - Track Number34 - Track Count58 - Year2002 - Date Modified2009-12-06T03:29:39Z - Date Added2009-12-06T03:09:11Z - Bit Rate256 - Sample Rate44100 - Normalization2588 - Artwork Count1 - Persistent IDEEE392439E44412C - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-34%20E-%20By%20The%20Waters%20Of%20Babylon.m4a - File Folder Count4 - Library Folder Count1 - - 7366 - - Track ID7366 - NameE-Battle Hymn Of The Republic - ArtistHal Leonard - AlbumGuitar Method Book 2 - GenreSoundtrack - KindAAC audio file - Size896422 - Total Time27173 - Disc Number2 - Disc Count3 - Track Number35 - Track Count58 - Year2002 - Date Modified2009-12-06T03:29:39Z - Date Added2009-12-06T03:09:14Z - Bit Rate256 - Sample Rate44100 - Normalization2154 - Artwork Count1 - Persistent ID18843F9F6B0355F8 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-35%20E-Battle%20Hymn%20Of%20The%20Republic.m4a - File Folder Count4 - Library Folder Count1 - - 7368 - - Track ID7368 - NameJesu, Joy Of Man's Desiring(Triplets) - ArtistHal Leonard - AlbumGuitar Method Book 2 - GenreSoundtrack - KindAAC audio file - Size1157258 - Total Time31653 - Disc Number2 - Disc Count3 - Track Number36 - Track Count58 - Year2002 - Date Modified2009-12-06T03:29:39Z - Date Added2009-12-06T03:09:16Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3392224362 - Play Date UTC2011-06-29T15:02:42Z - Normalization1942 - Artwork Count1 - Persistent ID4EF58C4888A0B51D - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-36%20Jesu,%20Joy%20Of%20Man's%20Desiring(Triplets).m4a - File Folder Count4 - Library Folder Count1 - - 7370 - - Track ID7370 - Nameshuffle-Deep Blues - ArtistHal Leonard - AlbumGuitar Method Book 2 - GenreSoundtrack - KindAAC audio file - Size362598 - Total Time12546 - Disc Number2 - Disc Count3 - Track Number37 - Track Count58 - Year2002 - Date Modified2009-12-06T03:29:39Z - Date Added2009-12-06T03:09:18Z - Bit Rate256 - Sample Rate44100 - Normalization4187 - Artwork Count1 - Persistent ID7C037B1A826550C4 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-37%20shuffle-Deep%20Blues.m4a - File Folder Count4 - Library Folder Count1 - - 7372 - - Track ID7372 - NameLost In The Shuffle - ArtistHal Leonard - AlbumGuitar Method Book 2 - GenreSoundtrack - KindAAC audio file - Size2120654 - Total Time66266 - Disc Number2 - Disc Count3 - Track Number38 - Track Count58 - Year2002 - Date Modified2009-12-06T03:29:39Z - Date Added2009-12-06T03:09:19Z - Bit Rate256 - Sample Rate44100 - Normalization4521 - Artwork Count1 - Persistent ID034393BC8154E4A4 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-38%20Lost%20In%20The%20Shuffle.m4a - File Folder Count4 - Library Folder Count1 - - 7374 - - Track ID7374 - NamePentatonicScale- Rock Lick - ArtistHal Leonard - AlbumGuitar Method Book 2 - GenreSoundtrack - KindAAC audio file - Size441832 - Total Time14573 - Disc Number2 - Disc Count3 - Track Number39 - Track Count58 - Year2002 - Date Modified2009-12-06T03:29:39Z - Date Added2009-12-06T03:09:23Z - Bit Rate256 - Sample Rate44100 - Normalization14522 - Artwork Count1 - Persistent ID29F5F10A23C11D9D - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-39%20PentatonicScale-%20Rock%20Lick.m4a - File Folder Count4 - Library Folder Count1 - - 7376 - - Track ID7376 - NameCountry/Rock Lick - ArtistHal Leonard - AlbumGuitar Method Book 2 - GenreSoundtrack - KindAAC audio file - Size344018 - Total Time11093 - Disc Number2 - Disc Count3 - Track Number40 - Track Count58 - Year2002 - Date Modified2009-12-06T03:29:39Z - Date Added2009-12-06T03:09:24Z - Bit Rate256 - Sample Rate44100 - Normalization10784 - Artwork Count1 - Persistent ID11328196E28A6624 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-40%20Country_Rock%20Lick.m4a - File Folder Count4 - Library Folder Count1 - - 7378 - - Track ID7378 - NameHard Rock Lick - ArtistHal Leonard - AlbumGuitar Method Book 2 - GenreSoundtrack - KindAAC audio file - Size444111 - Total Time14560 - Disc Number2 - Disc Count3 - Track Number41 - Track Count58 - Year2002 - Date Modified2009-12-06T03:29:39Z - Date Added2009-12-06T03:09:25Z - Bit Rate256 - Sample Rate44100 - Normalization12880 - Artwork Count1 - Persistent ID4C763DD4F2659BFC - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-41%20Hard%20Rock%20Lick.m4a - File Folder Count4 - Library Folder Count1 - - 7380 - - Track ID7380 - NameBluegrass Lick - ArtistHal Leonard - AlbumGuitar Method Book 2 - GenreSoundtrack - KindAAC audio file - Size294050 - Total Time10240 - Disc Number2 - Disc Count3 - Track Number42 - Track Count58 - Year2002 - Date Modified2009-12-06T03:29:39Z - Date Added2009-12-06T03:09:26Z - Bit Rate256 - Sample Rate44100 - Normalization829 - Artwork Count1 - Persistent IDCD15579B8CDA191E - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-42%20Bluegrass%20Lick.m4a - File Folder Count4 - Library Folder Count1 - - 7382 - - Track ID7382 - NameCountry Lick - ArtistHal Leonard - AlbumGuitar Method Book 2 - GenreSoundtrack - KindAAC audio file - Size290796 - Total Time11213 - Disc Number2 - Disc Count3 - Track Number43 - Track Count58 - Year2002 - Date Modified2009-12-06T03:29:39Z - Date Added2009-12-06T03:09:27Z - Bit Rate256 - Sample Rate44100 - Normalization2653 - Artwork Count1 - Persistent ID5CBE6129DEFF49D1 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-43%20Country%20Lick.m4a - File Folder Count4 - Library Folder Count1 - - 7384 - - Track ID7384 - NameBlues Lick - ArtistHal Leonard - AlbumGuitar Method Book 2 - GenreSoundtrack - KindAAC audio file - Size273749 - Total Time12106 - Disc Number2 - Disc Count3 - Track Number44 - Track Count58 - Year2002 - Date Modified2009-12-06T03:29:39Z - Date Added2009-12-06T03:09:28Z - Bit Rate256 - Sample Rate44100 - Normalization1064 - Artwork Count1 - Persistent IDBA4AFE1AE84C6B1E - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-44%20Blues%20Lick.m4a - File Folder Count4 - Library Folder Count1 - - 7386 - - Track ID7386 - NameRock 'n' Roll Lick - ArtistHal Leonard - AlbumGuitar Method Book 2 - GenreSoundtrack - KindAAC audio file - Size278169 - Total Time10453 - Disc Number2 - Disc Count3 - Track Number45 - Track Count58 - Year2002 - Date Modified2009-12-06T03:29:39Z - Date Added2009-12-06T03:09:29Z - Bit Rate256 - Sample Rate44100 - Normalization6361 - Artwork Count1 - Persistent ID68865383ED174321 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-45%20Rock%20'n'%20Roll%20Lick.m4a - File Folder Count4 - Library Folder Count1 - - 7388 - - Track ID7388 - NameBlues/Rock Lick - ArtistHal Leonard - AlbumGuitar Method Book 2 - GenreSoundtrack - KindAAC audio file - Size327627 - Total Time11573 - Disc Number2 - Disc Count3 - Track Number46 - Track Count58 - Year2002 - Date Modified2009-12-06T03:29:38Z - Date Added2009-12-06T03:09:30Z - Bit Rate256 - Sample Rate44100 - Normalization9592 - Artwork Count1 - Persistent ID1D59ADF3DE1F68BC - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-46%20Blues_Rock%20Lick.m4a - File Folder Count4 - Library Folder Count1 - - 7390 - - Track ID7390 - NamePentatonic Lead Guitar - ArtistHal Leonard - AlbumGuitar Method Book 2 - GenreSoundtrack - KindAAC audio file - Size3105133 - Total Time92853 - Disc Number2 - Disc Count3 - Track Number47 - Track Count58 - Year2002 - Date Modified2009-12-06T03:29:38Z - Date Added2009-12-06T03:09:31Z - Bit Rate256 - Sample Rate44100 - Normalization2583 - Artwork Count1 - Persistent ID3E976175CD8C9307 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-47%20Pentatonic%20Lead%20Guitar.m4a - File Folder Count4 - Library Folder Count1 - - 7392 - - Track ID7392 - NameOpen Jam - ArtistHal Leonard - AlbumGuitar Method Book 2 - GenreSoundtrack - KindAAC audio file - Size3360915 - Total Time103200 - Disc Number2 - Disc Count3 - Track Number48 - Track Count58 - Year2002 - Date Modified2009-12-06T03:29:38Z - Date Added2009-12-06T03:09:36Z - Bit Rate256 - Sample Rate44100 - Normalization1216 - Artwork Count1 - Persistent ID9544761F4AF0F2AD - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-48%20Open%20Jam.m4a - File Folder Count4 - Library Folder Count1 - - 7394 - - Track ID7394 - NamePop Riff - ArtistHal Leonard - AlbumGuitar Method Book 2 - GenreSoundtrack - KindAAC audio file - Size535121 - Total Time15466 - Disc Number2 - Disc Count3 - Track Number49 - Track Count58 - Year2002 - Date Modified2009-12-06T03:29:38Z - Date Added2009-12-06T03:09:42Z - Bit Rate256 - Sample Rate44100 - Normalization1544 - Artwork Count1 - Persistent ID7107CCB48420BA91 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-49%20Pop%20Riff.m4a - File Folder Count4 - Library Folder Count1 - - 7396 - - Track ID7396 - NameEarly Rock Riff - ArtistHal Leonard - AlbumGuitar Method Book 2 - GenreSoundtrack - KindAAC audio file - Size460704 - Total Time14426 - Disc Number2 - Disc Count3 - Track Number50 - Track Count58 - Year2002 - Date Modified2009-12-06T03:29:38Z - Date Added2009-12-06T03:09:43Z - Bit Rate256 - Sample Rate44100 - Normalization3242 - Artwork Count1 - Persistent ID879E294FB9F00F95 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-50%20Early%20Rock%20Riff.m4a - File Folder Count4 - Library Folder Count1 - - 7398 - - Track ID7398 - NameHard Rock Riff - ArtistHal Leonard - AlbumGuitar Method Book 2 - GenreSoundtrack - KindAAC audio file - Size439136 - Total Time12640 - Disc Number2 - Disc Count3 - Track Number51 - Track Count58 - Year2002 - Date Modified2009-12-06T03:29:38Z - Date Added2009-12-06T03:09:46Z - Bit Rate256 - Sample Rate44100 - Normalization5922 - Artwork Count1 - Persistent IDBAC6C3C38822B513 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-51%20Hard%20Rock%20Riff.m4a - File Folder Count4 - Library Folder Count1 - - 7400 - - Track ID7400 - NamePop Rock Riff - ArtistHal Leonard - AlbumGuitar Method Book 2 - GenreSoundtrack - KindAAC audio file - Size583220 - Total Time16373 - Disc Number2 - Disc Count3 - Track Number52 - Track Count58 - Year2002 - Date Modified2009-12-06T03:29:38Z - Date Added2009-12-06T03:09:47Z - Bit Rate256 - Sample Rate44100 - Normalization6276 - Artwork Count1 - Persistent ID1A957051DE69BF47 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-52%20Pop%20Rock%20Riff.m4a - File Folder Count4 - Library Folder Count1 - - 7402 - - Track ID7402 - NameRockabilly Riff - ArtistHal Leonard - AlbumGuitar Method Book 2 - GenreSoundtrack - KindAAC audio file - Size511744 - Total Time15306 - Disc Number2 - Disc Count3 - Track Number53 - Track Count58 - Year2002 - Date Modified2009-12-06T03:29:38Z - Date Added2009-12-06T03:09:50Z - Bit Rate256 - Sample Rate44100 - Normalization1606 - Artwork Count1 - Persistent IDCC0C66E3D4CAD004 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-53%20Rockabilly%20Riff.m4a - File Folder Count4 - Library Folder Count1 - - 7404 - - Track ID7404 - NameClassic Rock Riff - ArtistHal Leonard - AlbumGuitar Method Book 2 - GenreSoundtrack - KindAAC audio file - Size817421 - Total Time23240 - Disc Number2 - Disc Count3 - Track Number54 - Track Count58 - Year2002 - Date Modified2009-12-06T03:29:38Z - Date Added2009-12-06T03:09:51Z - Bit Rate256 - Sample Rate44100 - Normalization2874 - Artwork Count1 - Persistent ID786A24CB05D47A14 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-54%20Classic%20Rock%20Riff.m4a - File Folder Count4 - Library Folder Count1 - - 7406 - - Track ID7406 - NameHeavy Rock Riff - ArtistHal Leonard - AlbumGuitar Method Book 2 - GenreSoundtrack - KindAAC audio file - Size928078 - Total Time25866 - Disc Number2 - Disc Count3 - Track Number55 - Track Count58 - Year2002 - Date Modified2009-12-06T03:29:38Z - Date Added2009-12-06T03:09:56Z - Bit Rate256 - Sample Rate44100 - Normalization3229 - Artwork Count1 - Persistent ID4D540F38ED834844 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-55%20Heavy%20Rock%20Riff.m4a - File Folder Count4 - Library Folder Count1 - - 7408 - - Track ID7408 - NameMuted Groove - ArtistHal Leonard - AlbumGuitar Method Book 2 - GenreSoundtrack - KindAAC audio file - Size909532 - Total Time25493 - Disc Number2 - Disc Count3 - Track Number56 - Track Count58 - Year2002 - Date Modified2009-12-06T03:29:38Z - Date Added2009-12-06T03:10:05Z - Bit Rate256 - Sample Rate44100 - Normalization8675 - Artwork Count1 - Persistent IDBE1C166D871AEEAD - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-56%20Muted%20Groove.m4a - File Folder Count4 - Library Folder Count1 - - 7410 - - Track ID7410 - NameAccented Rhythm - ArtistHal Leonard - AlbumGuitar Method Book 2 - GenreSoundtrack - KindAAC audio file - Size606559 - Total Time17960 - Disc Number2 - Disc Count3 - Track Number57 - Track Count58 - Year2002 - Date Modified2009-12-06T03:29:38Z - Date Added2009-12-06T03:10:08Z - Bit Rate256 - Sample Rate44100 - Normalization7344 - Artwork Count1 - Persistent IDCAC5D76BCA86EE7F - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-57%20Accented%20Rhythm.m4a - File Folder Count4 - Library Folder Count1 - - 7412 - - Track ID7412 - NameGrand Finale #2 - ArtistHal Leonard - AlbumGuitar Method Book 2 - GenreSoundtrack - KindAAC audio file - Size3152908 - Total Time86386 - Disc Number2 - Disc Count3 - Track Number58 - Track Count58 - Year2002 - Date Modified2009-12-06T03:29:38Z - Date Added2009-12-06T03:10:10Z - Bit Rate256 - Sample Rate44100 - Normalization6216 - Artwork Count1 - Persistent IDE2824151495F6B6F - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%202/2-58%20Grand%20Finale%20%232.m4a - File Folder Count4 - Library Folder Count1 - - 7414 - - Track ID7414 - NameTrack 1: Tuning Notes - ArtistHal Leonard - AlbumGuitar Method Book 3 - GenreSoundtrack - KindAAC audio file - Size1923525 - Total Time59600 - Disc Number3 - Disc Count3 - Track Number1 - Track Count61 - Year2002 - Date Modified2009-12-06T03:29:38Z - Date Added2009-12-06T03:20:53Z - Bit Rate256 - Sample Rate44100 - Normalization671 - Artwork Count1 - Persistent ID064D322223B3EEE5 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-01%20Track%201_%20Tuning%20Notes.m4a - File Folder Count4 - Library Folder Count1 - - 7416 - - Track ID7416 - NameTrack 2: Chord Progression 1 - ArtistHal Leonard - AlbumGuitar Method Book 3 - GenreSoundtrack - KindAAC audio file - Size3347384 - Total Time103626 - Disc Number3 - Disc Count3 - Track Number2 - Track Count61 - Year2002 - Date Modified2009-12-06T03:29:38Z - Date Added2009-12-06T03:21:06Z - Bit Rate256 - Sample Rate44100 - Normalization1357 - Artwork Count1 - Persistent ID50BDCB1FDC6CCFE8 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-02%20Track%202_%20Chord%20Progression%201.m4a - File Folder Count4 - Library Folder Count1 - - 7418 - - Track ID7418 - NameTrack 3: Chord Progression 2 - ArtistHal Leonard - AlbumGuitar Method Book 3 - GenreSoundtrack - KindAAC audio file - Size2492688 - Total Time78400 - Disc Number3 - Disc Count3 - Track Number3 - Track Count61 - Year2002 - Date Modified2009-12-06T03:29:37Z - Date Added2009-12-06T03:21:25Z - Bit Rate256 - Sample Rate44100 - Normalization1158 - Artwork Count1 - Persistent ID170C380B2DA04940 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-03%20Track%203_%20Chord%20Progression%202.m4a - File Folder Count4 - Library Folder Count1 - - 7420 - - Track ID7420 - NameTrack 4: Chord Progression 3 - ArtistHal Leonard - AlbumGuitar Method Book 3 - GenreSoundtrack - KindAAC audio file - Size2490885 - Total Time69013 - Disc Number3 - Disc Count3 - Track Number4 - Track Count61 - Year2002 - Date Modified2009-12-06T03:29:37Z - Date Added2009-12-06T03:21:40Z - Bit Rate256 - Sample Rate44100 - Normalization1223 - Artwork Count1 - Persistent ID8AEC6D347C895293 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-04%20Track%204_%20Chord%20Progression%203.m4a - File Folder Count4 - Library Folder Count1 - - 7422 - - Track ID7422 - NameTrack 5: The First Noel - ArtistHal Leonard - AlbumGuitar Method Book 3 - GenreSoundtrack - KindAAC audio file - Size1599783 - Total Time43706 - Disc Number3 - Disc Count3 - Track Number5 - Track Count61 - Year2002 - Date Modified2009-12-06T03:29:37Z - Date Added2009-12-06T03:21:52Z - Bit Rate256 - Sample Rate44100 - Normalization1174 - Artwork Count1 - Persistent ID77F6248F3A72C990 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-05%20Track%205_%20The%20First%20Noel.m4a - File Folder Count4 - Library Folder Count1 - - 7424 - - Track ID7424 - NameTrack 6: Riff In D - ArtistHal Leonard - AlbumGuitar Method Book 3 - GenreSoundtrack - KindAAC audio file - Size1263986 - Total Time39226 - Disc Number3 - Disc Count3 - Track Number6 - Track Count61 - Year2002 - Date Modified2009-12-06T03:29:37Z - Date Added2009-12-06T03:22:00Z - Bit Rate256 - Sample Rate44100 - Normalization3721 - Artwork Count1 - Persistent IDDF20399457D6A48C - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-06%20Track%206_%20Riff%20In%20D.m4a - File Folder Count4 - Library Folder Count1 - - 7426 - - Track ID7426 - NameTrack 7: Arkansas Traveler - ArtistHal Leonard - AlbumGuitar Method Book 3 - GenreSoundtrack - KindAAC audio file - Size3983475 - Total Time119560 - Disc Number3 - Disc Count3 - Track Number7 - Track Count61 - Year2002 - Date Modified2009-12-06T03:29:37Z - Date Added2009-12-06T03:22:07Z - Bit Rate256 - Sample Rate44100 - Normalization3091 - Artwork Count1 - Persistent IDB28D30636F9C203F - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-07%20Track%207_%20Arkansas%20Traveler.m4a - File Folder Count4 - Library Folder Count1 - - 7428 - - Track ID7428 - NameTrack 8: Exotic Rock - ArtistHal Leonard - AlbumGuitar Method Book 3 - GenreSoundtrack - KindAAC audio file - Size1141083 - Total Time33960 - Disc Number3 - Disc Count3 - Track Number8 - Track Count61 - Year2002 - Date Modified2009-12-06T03:29:37Z - Date Added2009-12-06T03:22:27Z - Bit Rate256 - Sample Rate44100 - Normalization3288 - Artwork Count1 - Persistent IDC821211A1C858630 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-08%20Track%208_%20Exotic%20Rock.m4a - File Folder Count4 - Library Folder Count1 - - 7430 - - Track ID7430 - NameTrack 9: Freedom Rock - ArtistHal Leonard - AlbumGuitar Method Book 3 - GenreSoundtrack - KindAAC audio file - Size1005183 - Total Time30053 - Disc Number3 - Disc Count3 - Track Number9 - Track Count61 - Year2002 - Date Modified2009-12-06T03:29:37Z - Date Added2009-12-06T03:22:33Z - Bit Rate256 - Sample Rate44100 - Normalization2677 - Artwork Count1 - Persistent IDAE808E564B87D349 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-09%20Track%209_%20Freedom%20Rock.m4a - File Folder Count4 - Library Folder Count1 - - 7432 - - Track ID7432 - NameTrack 1 : Eine Kleine Nachtmusik - ArtistHal Leonard - AlbumGuitar Method Book 3 - GenreSoundtrack - KindAAC audio file - Size1501482 - Total Time45560 - Disc Number3 - Disc Count3 - Track Number10 - Track Count61 - Year2002 - Date Modified2009-12-06T03:29:37Z - Date Added2009-12-06T03:22:38Z - Bit Rate256 - Sample Rate44100 - Normalization1088 - Artwork Count1 - Persistent IDFCB2A68B0E86FBF7 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-10%20Track%201%20_%20Eine%20Kleine%20Nachtmusik.m4a - File Folder Count4 - Library Folder Count1 - - 7434 - - Track ID7434 - NameTrack 11: Tramp, Tramp, Tramp - ArtistHal Leonard - AlbumGuitar Method Book 3 - GenreSoundtrack - KindAAC audio file - Size1422642 - Total Time43533 - Disc Number3 - Disc Count3 - Track Number11 - Track Count61 - Year2002 - Date Modified2009-12-06T03:29:37Z - Date Added2009-12-06T03:22:45Z - Bit Rate256 - Sample Rate44100 - Normalization1474 - Artwork Count1 - Persistent IDDC587FAE26637A4D - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-11%20Track%2011_%20Tramp,%20Tramp,%20Tramp.m4a - File Folder Count4 - Library Folder Count1 - - 7436 - - Track ID7436 - NameTrack 12: The Entertainer - ArtistHal Leonard - AlbumGuitar Method Book 3 - GenreSoundtrack - KindAAC audio file - Size5148381 - Total Time157120 - Disc Number3 - Disc Count3 - Track Number12 - Track Count61 - Year2002 - Date Modified2009-12-06T03:29:36Z - Date Added2009-12-06T03:22:53Z - Bit Rate256 - Sample Rate44100 - Normalization1310 - Artwork Count1 - Persistent IDD383F6DED981C2DC - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-12%20Track%2012_%20The%20Entertainer.m4a - File Folder Count4 - Library Folder Count1 - - 7438 - - Track ID7438 - NameTrack 13: In The Hall Of The Mountain King - ArtistHal Leonard - AlbumGuitar Method Book 3 - GenreSoundtrack - KindAAC audio file - Size3248760 - Total Time100733 - Disc Number3 - Disc Count3 - Track Number13 - Track Count61 - Year2002 - Date Modified2009-12-06T03:29:36Z - Date Added2009-12-06T03:23:16Z - Bit Rate256 - Sample Rate44100 - Normalization1374 - Artwork Count1 - Persistent ID76768CC5B8BC54A2 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-13%20Track%2013_%20In%20The%20Hall%20Of%20The%20Mountain%20King.m4a - File Folder Count4 - Library Folder Count1 - - 7440 - - Track ID7440 - NameTrack 14: Estudio - ArtistHal Leonard - AlbumGuitar Method Book 3 - GenreSoundtrack - KindAAC audio file - Size1645786 - Total Time50066 - Disc Number3 - Disc Count3 - Track Number14 - Track Count61 - Year2002 - Date Modified2009-12-06T03:29:36Z - Date Added2009-12-06T03:23:30Z - Bit Rate256 - Sample Rate44100 - Normalization579 - Artwork Count1 - Persistent IDA603A612330B8DCB - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-14%20Track%2014_%20Estudio.m4a - File Folder Count4 - Library Folder Count1 - - 7442 - - Track ID7442 - NameTrack 15: St. Louis Blues - ArtistHal Leonard - AlbumGuitar Method Book 3 - GenreSoundtrack - KindAAC audio file - Size4804120 - Total Time147000 - Disc Number3 - Disc Count3 - Track Number15 - Track Count61 - Year2002 - Date Modified2009-12-06T03:29:36Z - Date Added2009-12-06T03:23:37Z - Bit Rate256 - Sample Rate44100 - Normalization1244 - Artwork Count1 - Persistent ID8246DA3EA7D2CD40 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-15%20Track%2015_%20St.%20Louis%20Blues.m4a - File Folder Count4 - Library Folder Count1 - - 7444 - - Track ID7444 - NameTrack 16: Barre CHORDS-Classic Rock - ArtistHal Leonard - AlbumGuitar Method Book 3 - GenreSoundtrack - KindAAC audio file - Size587320 - Total Time19160 - Disc Number3 - Disc Count3 - Track Number16 - Track Count61 - Year2002 - Date Modified2009-12-06T03:29:36Z - Date Added2009-12-06T03:23:57Z - Bit Rate256 - Sample Rate44100 - Normalization2080 - Artwork Count1 - Persistent ID685BFB92FC6F95F0 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-16%20Track%2016_%20Barre%20CHORDS-Classic%20Rock.m4a - File Folder Count4 - Library Folder Count1 - - 7446 - - Track ID7446 - NameTrack 17: Barre CHORDS-Swingin' - ArtistHal Leonard - AlbumGuitar Method Book 3 - GenreSoundtrack - KindAAC audio file - Size1507324 - Total Time47600 - Disc Number3 - Disc Count3 - Track Number17 - Track Count61 - Year2002 - Date Modified2009-12-06T03:29:36Z - Date Added2009-12-06T03:24:00Z - Bit Rate256 - Sample Rate44100 - Normalization821 - Artwork Count1 - Persistent IDE043A4BED73D3BD0 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-17%20Track%2017_%20Barre%20CHORDS-Swingin'.m4a - File Folder Count4 - Library Folder Count1 - - 7448 - - Track ID7448 - NameTrack 18: Barre CHORDS-Alt. Rock - ArtistHal Leonard - AlbumGuitar Method Book 3 - GenreSoundtrack - KindAAC audio file - Size816840 - Total Time24000 - Disc Number3 - Disc Count3 - Track Number18 - Track Count61 - Year2002 - Date Modified2009-12-06T03:29:36Z - Date Added2009-12-06T03:24:07Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3392213686 - Play Date UTC2011-06-29T12:04:46Z - Normalization4169 - Artwork Count1 - Persistent IDB116DB5AEC10BA67 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-18%20Track%2018_%20Barre%20CHORDS-Alt.%20Rock.m4a - File Folder Count4 - Library Folder Count1 - - 7450 - - Track ID7450 - NameTrack 19: Barre CHORDS-Slow Rock - ArtistHal Leonard - AlbumGuitar Method Book 3 - GenreSoundtrack - KindAAC audio file - Size1170787 - Total Time37186 - Disc Number3 - Disc Count3 - Track Number19 - Track Count61 - Year2002 - Date Modified2009-12-06T03:29:35Z - Date Added2009-12-06T03:24:11Z - Bit Rate256 - Sample Rate44100 - Normalization814 - Artwork Count1 - Persistent ID3FFD397C97807E0F - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-19%20Track%2019_%20Barre%20CHORDS-Slow%20Rock.m4a - File Folder Count4 - Library Folder Count1 - - 7452 - - Track ID7452 - NameTrack 20: Barre CHORDS-Minor Groove - ArtistHal Leonard - AlbumGuitar Method Book 3 - GenreSoundtrack - KindAAC audio file - Size857055 - Total Time24480 - Disc Number3 - Disc Count3 - Track Number20 - Track Count61 - Year2002 - Date Modified2009-12-06T03:29:35Z - Date Added2009-12-06T03:24:16Z - Bit Rate256 - Sample Rate44100 - Normalization1094 - Artwork Count1 - Persistent ID41ED4B8760E86436 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-20%20Track%2020_%20Barre%20CHORDS-Minor%20Groove.m4a - File Folder Count4 - Library Folder Count1 - - 7454 - - Track ID7454 - NameTrack 21: Barre CHORDS-Jazzy - ArtistHal Leonard - AlbumGuitar Method Book 3 - GenreSoundtrack - KindAAC audio file - Size668406 - Total Time22093 - Disc Number3 - Disc Count3 - Track Number21 - Track Count61 - Year2002 - Date Modified2009-12-06T03:29:35Z - Date Added2009-12-06T03:24:19Z - Bit Rate256 - Sample Rate44100 - Normalization1566 - Artwork Count1 - Persistent IDD54C4813F6EDD883 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-21%20Track%2021_%20Barre%20CHORDS-Jazzy.m4a - File Folder Count4 - Library Folder Count1 - - 7456 - - Track ID7456 - NameTrack 22: Barre CHORDS-Bossa Nova - ArtistHal Leonard - AlbumGuitar Method Book 3 - GenreSoundtrack - KindAAC audio file - Size1302230 - Total Time36786 - Disc Number3 - Disc Count3 - Track Number22 - Track Count61 - Year2002 - Date Modified2009-12-06T03:29:35Z - Date Added2009-12-06T03:24:23Z - Bit Rate256 - Sample Rate44100 - Normalization765 - Artwork Count1 - Persistent ID179A9898AE2C89E4 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-22%20Track%2022_%20Barre%20CHORDS-Bossa%20Nova.m4a - File Folder Count4 - Library Folder Count1 - - 7458 - - Track ID7458 - NameTrack 23: Barre CHORDS-Hard Rock - ArtistHal Leonard - AlbumGuitar Method Book 3 - GenreSoundtrack - KindAAC audio file - Size669900 - Total Time22013 - Disc Number3 - Disc Count3 - Track Number23 - Track Count61 - Year2002 - Date Modified2009-12-06T03:29:35Z - Date Added2009-12-06T03:24:28Z - Bit Rate256 - Sample Rate44100 - Normalization3260 - Artwork Count1 - Persistent ID5AE11CDC3B0AC500 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-23%20Track%2023_%20Barre%20CHORDS-Hard%20Rock.m4a - File Folder Count4 - Library Folder Count1 - - 7460 - - Track ID7460 - NameTrack 24: Barre CHORDS-Barre Exam - ArtistHal Leonard - AlbumGuitar Method Book 3 - GenreSoundtrack - KindAAC audio file - Size574789 - Total Time19440 - Disc Number3 - Disc Count3 - Track Number24 - Track Count61 - Year2002 - Date Modified2009-12-06T03:29:35Z - Date Added2009-12-06T03:24:31Z - Bit Rate256 - Sample Rate44100 - Normalization4327 - Artwork Count1 - Persistent IDD0C5D05DB52AB8E4 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-24%20Track%2024_%20Barre%20CHORDS-Barre%20Exam.m4a - File Folder Count4 - Library Folder Count1 - - 7462 - - Track ID7462 - NameTrack 25: Travis Picking-Sometimes I Feel Like A Motherless Child - ArtistHal Leonard - AlbumGuitar Method Book 3 - GenreSoundtrack - KindAAC audio file - Size1839518 - Total Time50560 - Disc Number3 - Disc Count3 - Track Number25 - Track Count61 - Year2002 - Date Modified2009-12-06T03:29:35Z - Date Added2009-12-06T03:24:34Z - Bit Rate256 - Sample Rate44100 - Normalization1082 - Artwork Count1 - Persistent IDED9FED03822AF2BF - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-25%20Track%2025_%20Travis%20Picking-Sometimes%20I%20Feel%20Like%20A%20Motherless%20Child.m4a - File Folder Count4 - Library Folder Count1 - - 7464 - - Track ID7464 - NameTrack 26: Travis Picking-Freight Train - ArtistHal Leonard - AlbumGuitar Method Book 3 - GenreSoundtrack - KindAAC audio file - Size2592903 - Total Time74506 - Disc Number3 - Disc Count3 - Track Number26 - Track Count61 - Year2002 - Date Modified2009-12-06T03:29:35Z - Date Added2009-12-06T03:24:41Z - Bit Rate256 - Sample Rate44100 - Normalization1552 - Artwork Count1 - Persistent IDF4B3CD9E4F12E791 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-26%20Track%2026_%20Travis%20Picking-Freight%20Train.m4a - File Folder Count4 - Library Folder Count1 - - 7466 - - Track ID7466 - NameTrack 27: Alt.Tuning(Drop D)-Pop/Rock - ArtistHal Leonard - AlbumGuitar Method Book 3 - GenreSoundtrack - KindAAC audio file - Size1098111 - Total Time30906 - Disc Number3 - Disc Count3 - Track Number27 - Track Count61 - Year2002 - Date Modified2009-12-06T03:29:35Z - Date Added2009-12-06T03:24:50Z - Bit Rate256 - Sample Rate44100 - Normalization1924 - Artwork Count1 - Persistent ID3A8FE549D08AECBC - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-27%20Track%2027_%20Alt.Tuning(Drop%20D)-Pop_Rock.m4a - File Folder Count4 - Library Folder Count1 - - 7468 - - Track ID7468 - NameTrack 28: Alt.Tuning-Grunge - ArtistHal Leonard - AlbumGuitar Method Book 3 - GenreSoundtrack - KindAAC audio file - Size996774 - Total Time26973 - Disc Number3 - Disc Count3 - Track Number28 - Track Count61 - Year2002 - Date Modified2009-12-06T03:29:35Z - Date Added2009-12-06T03:24:54Z - Bit Rate256 - Sample Rate44100 - Normalization6013 - Artwork Count1 - Persistent IDF03775B6FD9E70F0 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-28%20Track%2028_%20Alt.Tuning-Grunge.m4a - File Folder Count4 - Library Folder Count1 - - 7470 - - Track ID7470 - NameTrack 29: Alt.Tuning-Folk Rock - ArtistHal Leonard - AlbumGuitar Method Book 3 - GenreSoundtrack - KindAAC audio file - Size1140276 - Total Time33746 - Disc Number3 - Disc Count3 - Track Number29 - Track Count61 - Year2002 - Date Modified2009-12-06T03:29:35Z - Date Added2009-12-06T03:24:58Z - Bit Rate256 - Sample Rate44100 - Normalization1164 - Artwork Count1 - Persistent ID2D338DAA726F09DF - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-29%20Track%2029_%20Alt.Tuning-Folk%20Rock.m4a - File Folder Count4 - Library Folder Count1 - - 7472 - - Track ID7472 - NameTrack 30: Miss McLeod's Reel-Moveable Scales - ArtistHal Leonard - AlbumGuitar Method Book 3 - GenreSoundtrack - KindAAC audio file - Size1412367 - Total Time41453 - Disc Number3 - Disc Count3 - Track Number30 - Track Count61 - Year2002 - Date Modified2009-12-06T03:29:35Z - Date Added2009-12-06T03:25:02Z - Bit Rate256 - Sample Rate44100 - Normalization3194 - Artwork Count1 - Persistent ID79E12F45DC098CD2 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-30%20Track%2030_%20Miss%20McLeod's%20Reel-Moveable%20Scales.m4a - File Folder Count4 - Library Folder Count1 - - 7474 - - Track ID7474 - NameTrack 31: God Rest Ye Merry Gentlemen-Moveable Scales - ArtistHal Leonard - AlbumGuitar Method Book 3 - GenreSoundtrack - KindAAC audio file - Size1449500 - Total Time44933 - Disc Number3 - Disc Count3 - Track Number31 - Track Count61 - Year2002 - Date Modified2009-12-06T03:29:35Z - Date Added2009-12-06T03:25:08Z - Bit Rate256 - Sample Rate44100 - Normalization1327 - Artwork Count1 - Persistent IDD8A46213FC5D0C24 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-31%20Track%2031_%20God%20Rest%20Ye%20Merry%20Gentlemen-Moveable%20Scales.m4a - File Folder Count4 - Library Folder Count1 - - 7476 - - Track ID7476 - NameTrack 32: Deep River-Moveable Scales - ArtistHal Leonard - AlbumGuitar Method Book 3 - GenreSoundtrack - KindAAC audio file - Size1513479 - Total Time48960 - Disc Number3 - Disc Count3 - Track Number32 - Track Count61 - Year2002 - Date Modified2009-12-06T03:29:35Z - Date Added2009-12-06T03:25:13Z - Bit Rate256 - Sample Rate44100 - Normalization1182 - Artwork Count1 - Persistent ID9A9E95F5C25AB8C2 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-32%20Track%2032_%20Deep%20River-Moveable%20Scales.m4a - File Folder Count4 - Library Folder Count1 - - 7478 - - Track ID7478 - NameTrack 33: Bouree-Moveable Scales - ArtistHal Leonard - AlbumGuitar Method Book 3 - GenreSoundtrack - KindAAC audio file - Size1301079 - Total Time38160 - Disc Number3 - Disc Count3 - Track Number33 - Track Count61 - Year2002 - Date Modified2009-12-06T03:29:35Z - Date Added2009-12-06T03:25:19Z - Bit Rate256 - Sample Rate44100 - Normalization1162 - Artwork Count1 - Persistent ID182E1A8B3B123349 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-33%20Track%2033_%20Bouree-Moveable%20Scales.m4a - File Folder Count4 - Library Folder Count1 - - 7480 - - Track ID7480 - NameTrack 34: Heavy Rock-Moveable Scales - ArtistHal Leonard - AlbumGuitar Method Book 3 - GenreSoundtrack - KindAAC audio file - Size1155215 - Total Time35746 - Disc Number3 - Disc Count3 - Track Number34 - Track Count61 - Year2002 - Date Modified2009-12-06T03:29:35Z - Date Added2009-12-06T03:25:24Z - Bit Rate256 - Sample Rate44100 - Normalization3565 - Artwork Count1 - Persistent ID604AD9DEB2730DB9 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-34%20Track%2034_%20Heavy%20Rock-Moveable%20Scales.m4a - File Folder Count4 - Library Folder Count1 - - 7482 - - Track ID7482 - NameTrack 35: Jazzin' The Blues-Moveable Scales - ArtistHal Leonard - AlbumGuitar Method Book 3 - GenreSoundtrack - KindAAC audio file - Size1062935 - Total Time33693 - Disc Number3 - Disc Count3 - Track Number35 - Track Count61 - Year2002 - Date Modified2009-12-06T03:29:35Z - Date Added2009-12-06T03:25:29Z - Bit Rate256 - Sample Rate44100 - Normalization1150 - Artwork Count1 - Persistent ID0910FA577760F17A - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-35%20Track%2035_%20Jazzin'%20The%20Blues-Moveable%20Scales.m4a - File Folder Count4 - Library Folder Count1 - - 7484 - - Track ID7484 - NameTrack 36: F-Sloop John B. - ArtistHal Leonard - AlbumGuitar Method Book 3 - GenreSoundtrack - KindAAC audio file - Size2015003 - Total Time59186 - Disc Number3 - Disc Count3 - Track Number36 - Track Count61 - Year2002 - Date Modified2009-12-06T03:29:34Z - Date Added2009-12-06T03:25:33Z - Bit Rate256 - Sample Rate44100 - Normalization1306 - Artwork Count1 - Persistent IDB915D705FB4FA40B - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-36%20Track%2036_%20F-Sloop%20John%20B..m4a - File Folder Count4 - Library Folder Count1 - - 7486 - - Track ID7486 - NameTrack 37: I Saw Three Ships - ArtistHal Leonard - AlbumGuitar Method Book 3 - GenreSoundtrack - KindAAC audio file - Size603539 - Total Time19626 - Disc Number3 - Disc Count3 - Track Number37 - Track Count61 - Year2002 - Date Modified2009-12-06T03:29:34Z - Date Added2009-12-06T03:25:40Z - Bit Rate256 - Sample Rate44100 - Normalization1822 - Artwork Count1 - Persistent ID5713D77478B8A988 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-37%20Track%2037_%20I%20Saw%20Three%20Ships.m4a - File Folder Count4 - Library Folder Count1 - - 7488 - - Track ID7488 - NameTrack 38: 12/8 time-Slow Blues - ArtistHal Leonard - AlbumGuitar Method Book 3 - GenreSoundtrack - KindAAC audio file - Size1768125 - Total Time54946 - Disc Number3 - Disc Count3 - Track Number38 - Track Count61 - Year2002 - Date Modified2009-12-06T03:29:34Z - Date Added2009-12-06T03:25:43Z - Bit Rate256 - Sample Rate44100 - Normalization1018 - Artwork Count1 - Persistent ID69EBA61C17B575F7 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-38%20Track%2038_%2012_8%20time-Slow%20Blues.m4a - File Folder Count4 - Library Folder Count1 - - 7490 - - Track ID7490 - NameTrack 39: Hammer-On/Bouncy Blues - ArtistHal Leonard - AlbumGuitar Method Book 3 - GenreSoundtrack - KindAAC audio file - Size483166 - Total Time14866 - Disc Number3 - Disc Count3 - Track Number39 - Track Count61 - Year2002 - Date Modified2009-12-06T03:29:34Z - Date Added2009-12-06T03:25:49Z - Bit Rate256 - Sample Rate44100 - Normalization1094 - Artwork Count1 - Persistent IDB17FC6F1778000B3 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-39%20Track%2039_%20Hammer-On_Bouncy%20Blues.m4a - File Folder Count4 - Library Folder Count1 - - 7492 - - Track ID7492 - NameTrack 40: Hammer-On/POWER Chord Slides - ArtistHal Leonard - AlbumGuitar Method Book 3 - GenreSoundtrack - KindAAC audio file - Size877462 - Total Time27053 - Disc Number3 - Disc Count3 - Track Number40 - Track Count61 - Year2002 - Date Modified2009-12-06T03:29:34Z - Date Added2009-12-06T03:25:51Z - Bit Rate256 - Sample Rate44100 - Normalization2003 - Artwork Count1 - Persistent ID5B6F71DEBC322757 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-40%20Track%2040_%20Hammer-On_POWER%20Chord%20Slides.m4a - File Folder Count4 - Library Folder Count1 - - 7494 - - Track ID7494 - NameTrack 40: Hammer-On/Folk Pattern - ArtistHal Leonard - AlbumGuitar Method Book 3 - GenreSoundtrack - KindAAC audio file - Size284709 - Total Time12373 - Disc Number3 - Disc Count3 - Track Number41 - Track Count61 - Year2002 - Date Modified2009-12-06T03:29:34Z - Date Added2009-12-06T03:25:55Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3392224229 - Play Date UTC2011-06-29T15:00:29Z - Normalization767 - Artwork Count1 - Persistent ID4BC9BE648F497F74 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-41%20Track%2040_%20Hammer-On_Folk%20Pattern.m4a - File Folder Count4 - Library Folder Count1 - - 7496 - - Track ID7496 - NameTrack 42: Hammer-On/Rock 'n' Hammer - ArtistHal Leonard - AlbumGuitar Method Book 3 - GenreSoundtrack - KindAAC audio file - Size395001 - Total Time13000 - Disc Number3 - Disc Count3 - Track Number42 - Track Count61 - Year2002 - Date Modified2009-12-06T03:29:34Z - Date Added2009-12-06T03:25:57Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3392224235 - Play Date UTC2011-06-29T15:00:35Z - Normalization6296 - Artwork Count1 - Persistent ID14C4C57FFA2C167D - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-42%20Track%2042_%20Hammer-On_Rock%20'n'%20Hammer.m4a - File Folder Count4 - Library Folder Count1 - - 7498 - - Track ID7498 - NameTrack 43: Hammer-On/Acoustic Rock - ArtistHal Leonard - AlbumGuitar Method Book 3 - GenreSoundtrack - KindAAC audio file - Size583667 - Total Time18213 - Disc Number3 - Disc Count3 - Track Number43 - Track Count61 - Year2002 - Date Modified2009-12-06T03:29:34Z - Date Added2009-12-06T03:25:59Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3392224215 - Play Date UTC2011-06-29T15:00:15Z - Normalization1244 - Artwork Count1 - Persistent IDEE0AC93250051D82 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-43%20Track%2043_%20Hammer-On_Acoustic%20Rock.m4a - File Folder Count4 - Library Folder Count1 - - 7500 - - Track ID7500 - NameTrack 44: Hammer-On/Boogie Blues - ArtistHal Leonard - AlbumGuitar Method Book 3 - GenreSoundtrack - KindAAC audio file - Size343713 - Total Time12173 - Disc Number3 - Disc Count3 - Track Number44 - Track Count61 - Year2002 - Date Modified2009-12-06T03:29:34Z - Date Added2009-12-06T03:26:01Z - Bit Rate256 - Sample Rate44100 - Normalization1176 - Artwork Count1 - Persistent ID12A6C468471D909E - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-44%20Track%2044_%20Hammer-On_Boogie%20Blues.m4a - File Folder Count4 - Library Folder Count1 - - 7502 - - Track ID7502 - NameTrack 45: Pull-Off/POWER Pull - ArtistHal Leonard - AlbumGuitar Method Book 3 - GenreSoundtrack - KindAAC audio file - Size450914 - Total Time14333 - Disc Number3 - Disc Count3 - Track Number45 - Track Count61 - Year2002 - Date Modified2009-12-06T03:29:34Z - Date Added2009-12-06T03:26:03Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3392224196 - Play Date UTC2011-06-29T14:59:56Z - Normalization5863 - Artwork Count1 - Persistent ID16A891361C40870C - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-45%20Track%2045_%20Pull-Off_POWER%20Pull.m4a - File Folder Count4 - Library Folder Count1 - - 7504 - - Track ID7504 - NameTrack 46: Pull-Off/BLUES Waltz - ArtistHal Leonard - AlbumGuitar Method Book 3 - GenreSoundtrack - KindAAC audio file - Size296229 - Total Time11333 - Disc Number3 - Disc Count3 - Track Number46 - Track Count61 - Year2002 - Date Modified2009-12-06T03:29:34Z - Date Added2009-12-06T03:26:05Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3392224247 - Play Date UTC2011-06-29T15:00:47Z - Normalization1232 - Artwork Count1 - Persistent ID433E8D5D2DF305CB - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-46%20Track%2046_%20Pull-Off_BLUES%20Waltz.m4a - File Folder Count4 - Library Folder Count1 - - 7506 - - Track ID7506 - NameTrack 47: Pull-Off/BLUEGRASS RUN - ArtistHal Leonard - AlbumGuitar Method Book 3 - GenreSoundtrack - KindAAC audio file - Size1657571 - Total Time46826 - Disc Number3 - Disc Count3 - Track Number47 - Track Count61 - Year2002 - Date Modified2009-12-06T03:29:34Z - Date Added2009-12-06T03:26:07Z - Bit Rate256 - Sample Rate44100 - Normalization1289 - Artwork Count1 - Persistent ID714D5411A99AAC80 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-47%20Track%2047_%20Pull-Off_BLUEGRASS%20RUN.m4a - File Folder Count4 - Library Folder Count1 - - 7508 - - Track ID7508 - NameTrack 48: Pull-Off/ROCK Lick - ArtistHal Leonard - AlbumGuitar Method Book 3 - GenreSoundtrack - KindAAC audio file - Size292683 - Total Time11266 - Disc Number3 - Disc Count3 - Track Number48 - Track Count61 - Year2002 - Date Modified2009-12-06T03:29:34Z - Date Added2009-12-06T03:26:12Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3392224259 - Play Date UTC2011-06-29T15:00:59Z - Normalization3452 - Artwork Count1 - Persistent ID1AF1C5FDE9CC742C - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-48%20Track%2048_%20Pull-Off_ROCK%20Lick.m4a - File Folder Count4 - Library Folder Count1 - - 7510 - - Track ID7510 - NameTrack 49: Pull-Off/SWAMPY Blues - ArtistHal Leonard - AlbumGuitar Method Book 3 - GenreSoundtrack - KindAAC audio file - Size371181 - Total Time12573 - Disc Number3 - Disc Count3 - Track Number49 - Track Count61 - Year2002 - Date Modified2009-12-06T03:29:34Z - Date Added2009-12-06T03:26:14Z - Bit Rate256 - Sample Rate44100 - Normalization3080 - Artwork Count1 - Persistent IDAEF2CCBBE63DC1E4 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-49%20Track%2049_%20Pull-Off_SWAMPY%20Blues.m4a - File Folder Count4 - Library Folder Count1 - - 7512 - - Track ID7512 - NameTrack 50: Pull-Off/DOUBLE-STOP Bend - ArtistHal Leonard - AlbumGuitar Method Book 3 - GenreSoundtrack - KindAAC audio file - Size250670 - Total Time10026 - Disc Number3 - Disc Count3 - Track Number50 - Track Count61 - Year2002 - Date Modified2009-12-06T03:29:34Z - Date Added2009-12-06T03:26:16Z - Bit Rate256 - Sample Rate44100 - Normalization2954 - Artwork Count1 - Persistent IDFEE3093C8D5BC8C5 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-50%20Track%2050_%20Pull-Off_DOUBLE-STOP%20Bend.m4a - File Folder Count4 - Library Folder Count1 - - 7514 - - Track ID7514 - NameTrack 51: Jam Session-POP/ROCK Ballad - ArtistHal Leonard - AlbumGuitar Method Book 3 - GenreSoundtrack - KindAAC audio file - Size2787793 - Total Time86013 - Disc Number3 - Disc Count3 - Track Number51 - Track Count61 - Year2002 - Date Modified2009-12-06T03:29:34Z - Date Added2009-12-06T03:26:17Z - Bit Rate256 - Sample Rate44100 - Normalization1471 - Artwork Count1 - Persistent ID09F719DB47934807 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-51%20Track%2051_%20Jam%20Session-POP_ROCK%20Ballad.m4a - File Folder Count4 - Library Folder Count1 - - 7516 - - Track ID7516 - NameTrack 52: Jam Session/FUNK - ArtistHal Leonard - AlbumGuitar Method Book 3 - GenreSoundtrack - KindAAC audio file - Size2868720 - Total Time89213 - Disc Number3 - Disc Count3 - Track Number52 - Track Count61 - Year2002 - Date Modified2009-12-06T03:29:34Z - Date Added2009-12-06T03:26:27Z - Bit Rate256 - Sample Rate44100 - Normalization2715 - Artwork Count1 - Persistent ID9FA7F86440671EFA - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-52%20Track%2052_%20Jam%20Session_FUNK.m4a - File Folder Count4 - Library Folder Count1 - - 7518 - - Track ID7518 - NameTrack 53: Jam Session/SMOOTH Jazz - ArtistHal Leonard - AlbumGuitar Method Book 3 - GenreSoundtrack - KindAAC audio file - Size3300717 - Total Time102266 - Disc Number3 - Disc Count3 - Track Number53 - Track Count61 - Year2002 - Date Modified2009-12-06T03:29:34Z - Date Added2009-12-06T03:26:36Z - Bit Rate256 - Sample Rate44100 - Normalization1013 - Artwork Count1 - Persistent ID44CE8B0F6AD7C5E7 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-53%20Track%2053_%20Jam%20Session_SMOOTH%20Jazz.m4a - File Folder Count4 - Library Folder Count1 - - 7520 - - Track ID7520 - NameTrack 54: Jam Session/LATIN Rock - ArtistHal Leonard - AlbumGuitar Method Book 3 - GenreSoundtrack - KindAAC audio file - Size2096810 - Total Time65680 - Disc Number3 - Disc Count3 - Track Number54 - Track Count61 - Year2002 - Date Modified2009-12-06T03:29:33Z - Date Added2009-12-06T03:26:47Z - Bit Rate256 - Sample Rate44100 - Normalization2643 - Artwork Count1 - Persistent ID0A4ACF78A71369CD - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-54%20Track%2054_%20Jam%20Session_LATIN%20Rock.m4a - File Folder Count4 - Library Folder Count1 - - 7522 - - Track ID7522 - NameTrack 55: Jam Session/COUNTRY - ArtistHal Leonard - AlbumGuitar Method Book 3 - GenreSoundtrack - KindAAC audio file - Size2020550 - Total Time63533 - Disc Number3 - Disc Count3 - Track Number55 - Track Count61 - Year2002 - Date Modified2009-12-06T03:29:33Z - Date Added2009-12-06T03:26:54Z - Bit Rate256 - Sample Rate44100 - Normalization2636 - Artwork Count1 - Persistent IDA9C2D55DED3F0CFD - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-55%20Track%2055_%20Jam%20Session_COUNTRY.m4a - File Folder Count4 - Library Folder Count1 - - 7524 - - Track ID7524 - NameTrack 56: Jam Session/JAZZ Waltz - ArtistHal Leonard - AlbumGuitar Method Book 3 - GenreSoundtrack - KindAAC audio file - Size1163484 - Total Time36773 - Disc Number3 - Disc Count3 - Track Number56 - Track Count61 - Year2002 - Date Modified2009-12-06T03:29:33Z - Date Added2009-12-06T03:27:01Z - Bit Rate256 - Sample Rate44100 - Normalization1216 - Artwork Count1 - Persistent ID02B70AC2A2113D9B - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-56%20Track%2056_%20Jam%20Session_JAZZ%20Waltz.m4a - File Folder Count4 - Library Folder Count1 - - 7526 - - Track ID7526 - NameTrack 57: Jam Session/REGGAE - ArtistHal Leonard - AlbumGuitar Method Book 3 - GenreSoundtrack - KindAAC audio file - Size2491261 - Total Time77026 - Disc Number3 - Disc Count3 - Track Number57 - Track Count61 - Year2002 - Date Modified2009-12-06T03:29:33Z - Date Added2009-12-06T03:27:05Z - Bit Rate256 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Persistent ID2EBBEA6FC0965E45 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-57%20Track%2057_%20Jam%20Session_REGGAE.m4a - File Folder Count4 - Library Folder Count1 - - 7528 - - Track ID7528 - NameTrack 58: Jam Session/HARD Rock - ArtistHal Leonard - AlbumGuitar Method Book 3 - GenreSoundtrack - KindAAC audio file - Size2305011 - Total Time71453 - Disc Number3 - Disc Count3 - Track Number58 - Track Count61 - Year2002 - Date Modified2009-12-06T03:29:33Z - Date Added2009-12-06T03:27:13Z - Bit Rate256 - Sample Rate44100 - Normalization8565 - Artwork Count1 - Persistent ID80806C1C8FDB303C - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-58%20Track%2058_%20Jam%20Session_HARD%20Rock.m4a - File Folder Count4 - Library Folder Count1 - - 7530 - - Track ID7530 - NameTrack 59: Jam Session/BLUES - ArtistHal Leonard - AlbumGuitar Method Book 3 - GenreSoundtrack - KindAAC audio file - Size2506402 - Total Time68573 - Disc Number3 - Disc Count3 - Track Number59 - Track Count61 - Year2002 - Date Modified2009-12-06T03:29:33Z - Date Added2009-12-06T03:27:20Z - Bit Rate256 - Sample Rate44100 - Normalization1198 - Artwork Count1 - Persistent ID3E3CD9DA4C5834E9 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-59%20Track%2059_%20Jam%20Session_BLUES.m4a - File Folder Count4 - Library Folder Count1 - - 7532 - - Track ID7532 - NameTrack 60: Jam Session/JAZZ Rock - ArtistHal Leonard - AlbumGuitar Method Book 3 - GenreSoundtrack - KindAAC audio file - Size2795585 - Total Time87653 - Disc Number3 - Disc Count3 - Track Number60 - Track Count61 - Year2002 - Date Modified2009-12-06T03:29:33Z - Date Added2009-12-06T03:27:28Z - Bit Rate256 - Sample Rate44100 - Normalization1211 - Artwork Count1 - Persistent IDC1E0367553A8C1E8 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-60%20Track%2060_%20Jam%20Session_JAZZ%20Rock.m4a - File Folder Count4 - Library Folder Count1 - - 7534 - - Track ID7534 - NameTrack 61: Grand Finale #3 - ArtistHal Leonard - AlbumGuitar Method Book 3 - GenreSoundtrack - KindAAC audio file - Size4547434 - Total Time137186 - Disc Number3 - Disc Count3 - Track Number61 - Track Count61 - Year2002 - Date Modified2009-12-06T03:29:33Z - Date Added2009-12-06T03:27:36Z - Bit Rate256 - Sample Rate44100 - Normalization5873 - Artwork Count1 - Persistent ID8F5458CA81E89A04 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard/Guitar%20Method%20Book%203/3-61%20Track%2061_%20Grand%20Finale%20%233.m4a - File Folder Count4 - Library Folder Count1 - - 7536 - - Track ID7536 - NameSgt. Pepper's Lonely Hearts Club Band - ArtistThe Beatles - Album ArtistThe Beatles - ComposerJohn Lennon/Paul McCartney - AlbumSgt. Pepper's Lonely Hearts Club Band - GenreRock - KindMPEG audio file - Size5270727 - Total Time122305 - Track Number1 - Year1967 - Date Modified2009-12-16T02:31:48Z - Date Added2009-12-16T01:59:40Z - Bit Rate320 - Sample Rate44100 - Play Count2 - Play Date3343802958 - Play Date UTC2009-12-16T04:39:18Z - Skip Count1 - Skip Date2014-01-02T14:56:16Z - Artwork Count1 - Sort Album ArtistBeatles - Sort ArtistBeatles - Persistent ID6F35793EF2C362D0 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Sgt.%20Pepper's%20Lonely%20Hearts%20Club%20Band/01%20Sgt.%20Pepper's%20Lonely%20Hearts%20Club%20Band.mp3 - File Folder Count4 - Library Folder Count1 - - 7538 - - Track ID7538 - NameWith a Little Help from My Friends - ArtistThe Beatles - Album ArtistThe Beatles - ComposerJohn Lennon/Paul McCartney - AlbumSgt. Pepper's Lonely Hearts Club Band - GenreRock - KindMPEG audio file - Size6932772 - Total Time163996 - Track Number2 - Year1967 - Date Modified2009-12-16T02:31:50Z - Date Added2009-12-16T01:59:40Z - Bit Rate320 - Sample Rate44100 - Play Count3 - Play Date3344002760 - Play Date UTC2009-12-18T12:09:20Z - Artwork Count1 - Sort Album ArtistBeatles - Sort ArtistBeatles - Persistent IDE6958E4F53C0E718 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Sgt.%20Pepper's%20Lonely%20Hearts%20Club%20Band/02%20With%20a%20Little%20Help%20from%20My%20Friends.mp3 - File Folder Count4 - Library Folder Count1 - - 7540 - - Track ID7540 - NameLucy in the Sky With Diamonds - ArtistThe Beatles - Album ArtistThe Beatles - ComposerJohn Lennon/Paul McCartney - AlbumSgt. Pepper's Lonely Hearts Club Band - GenreRock - KindMPEG audio file - Size8708611 - Total Time208431 - Track Number3 - Year1967 - Date Modified2009-12-16T02:31:48Z - Date Added2009-12-16T01:59:40Z - Bit Rate320 - Sample Rate44100 - Play Count3 - Play Date3344002968 - Play Date UTC2009-12-18T12:12:48Z - Artwork Count1 - Sort Album ArtistBeatles - Sort ArtistBeatles - Persistent ID0DF3E29462E675E2 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Sgt.%20Pepper's%20Lonely%20Hearts%20Club%20Band/03%20Lucy%20in%20the%20Sky%20With%20Diamonds.mp3 - File Folder Count4 - Library Folder Count1 - - 7542 - - Track ID7542 - NameGetting Better - ArtistThe Beatles - Album ArtistThe Beatles - ComposerJohn Lennon/Paul McCartney - AlbumSgt. Pepper's Lonely Hearts Club Band - GenreRock - KindMPEG audio file - Size7087264 - Total Time167862 - Track Number4 - Year1967 - Date Modified2009-12-16T02:31:46Z - Date Added2009-12-16T01:59:40Z - Bit Rate320 - Sample Rate44100 - Play Count3 - Play Date3344003136 - Play Date UTC2009-12-18T12:15:36Z - Artwork Count1 - Sort Album ArtistBeatles - Sort ArtistBeatles - Persistent IDD3384122A9E8C982 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Sgt.%20Pepper's%20Lonely%20Hearts%20Club%20Band/04%20Getting%20Better.mp3 - File Folder Count4 - Library Folder Count1 - - 7544 - - Track ID7544 - NameFixing a Hole - ArtistThe Beatles - Album ArtistThe Beatles - ComposerJohn Lennon/Paul McCartney - AlbumSgt. Pepper's Lonely Hearts Club Band - GenreRock - KindMPEG audio file - Size6637299 - Total Time156604 - Track Number5 - Year1967 - Date Modified2009-12-16T02:31:46Z - Date Added2009-12-16T01:59:40Z - Bit Rate320 - Sample Rate44100 - Play Count3 - Play Date3344003293 - Play Date UTC2009-12-18T12:18:13Z - Artwork Count1 - Sort Album ArtistBeatles - Sort ArtistBeatles - Persistent ID943BF6CEBD22D429 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Sgt.%20Pepper's%20Lonely%20Hearts%20Club%20Band/05%20Fixing%20a%20Hole.mp3 - File Folder Count4 - Library Folder Count1 - - 7546 - - Track ID7546 - NameShe's Leaving Home - ArtistThe Beatles - Album ArtistThe Beatles - ComposerJohn Lennon/Paul McCartney - AlbumSgt. Pepper's Lonely Hearts Club Band - GenreRock - KindMPEG audio file - Size8972732 - Total Time214857 - Track Number6 - Year1967 - Date Modified2009-12-16T02:31:50Z - Date Added2009-12-16T01:59:40Z - Bit Rate320 - Sample Rate44100 - Play Count2 - Play Date3344003508 - Play Date UTC2009-12-18T12:21:48Z - Artwork Count1 - Sort Album ArtistBeatles - Sort ArtistBeatles - Persistent IDCCD7B7F705C1AF37 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Sgt.%20Pepper's%20Lonely%20Hearts%20Club%20Band/06%20She's%20Leaving%20Home.mp3 - File Folder Count4 - Library Folder Count1 - - 7548 - - Track ID7548 - NameBeing for the Benefit of Mr. Kite! - ArtistThe Beatles - Album ArtistThe Beatles - ComposerJohn Lennon/Paul McCartney - AlbumSgt. Pepper's Lonely Hearts Club Band - GenreRock - KindMPEG audio file - Size6656112 - Total Time157074 - Track Number7 - Year1967 - Date Modified2009-12-16T02:31:45Z - Date Added2009-12-16T01:59:40Z - Bit Rate320 - Sample Rate44100 - Play Count2 - Play Date3344003665 - Play Date UTC2009-12-18T12:24:25Z - Artwork Count1 - Sort Album ArtistBeatles - Sort ArtistBeatles - Persistent ID4AB95ABDB601CBAB - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Sgt.%20Pepper's%20Lonely%20Hearts%20Club%20Band/07%20Being%20for%20the%20Benefit%20of%20Mr.%20Kite!.mp3 - File Folder Count4 - Library Folder Count1 - - 7550 - - Track ID7550 - NameWithin You Without You - ArtistThe Beatles - Album ArtistThe Beatles - ComposerGeorge Harrison - AlbumSgt. Pepper's Lonely Hearts Club Band - GenreRock - KindMPEG audio file - Size12570349 - Total Time304796 - Track Number8 - Year1967 - Date Modified2009-12-16T02:31:51Z - Date Added2009-12-16T01:59:40Z - Bit Rate320 - Sample Rate44100 - Play Count1 - Play Date3343796899 - Play Date UTC2009-12-16T02:58:19Z - Artwork Count1 - Sort Album ArtistBeatles - Sort ArtistBeatles - Persistent IDF404E640DEE353FE - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Sgt.%20Pepper's%20Lonely%20Hearts%20Club%20Band/08%20Within%20You%20Without%20You.mp3 - File Folder Count4 - Library Folder Count1 - - 7552 - - Track ID7552 - NameWhen I'm Sixty-Four - ArtistThe Beatles - Album ArtistThe Beatles - ComposerJohn Lennon/Paul McCartney - AlbumSgt. Pepper's Lonely Hearts Club Band - GenreRock - KindMPEG audio file - Size6681153 - Total Time157701 - Track Number9 - Year1967 - Date Modified2009-12-16T02:31:50Z - Date Added2009-12-16T01:59:40Z - Bit Rate320 - Sample Rate44100 - Play Count1 - Play Date3343797057 - Play Date UTC2009-12-16T03:00:57Z - Artwork Count1 - Sort Album ArtistBeatles - Sort ArtistBeatles - Persistent ID95E0772F16F36F9C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Sgt.%20Pepper's%20Lonely%20Hearts%20Club%20Band/09%20When%20I'm%20Sixty-Four.mp3 - File Folder Count4 - Library Folder Count1 - - 7554 - - Track ID7554 - NameLovely Rita - ArtistThe Beatles - Album ArtistThe Beatles - ComposerJohn Lennon/Paul McCartney - AlbumSgt. Pepper's Lonely Hearts Club Band - GenreRock - KindMPEG audio file - Size6856538 - Total Time162089 - Track Number10 - Year1967 - Date Modified2009-12-16T02:31:47Z - Date Added2009-12-16T01:59:40Z - Bit Rate320 - Sample Rate44100 - Play Count1 - Play Date3343797219 - Play Date UTC2009-12-16T03:03:39Z - Artwork Count1 - Sort Album ArtistBeatles - Sort ArtistBeatles - Persistent IDEFD9EC6CB0A8EEBD - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Sgt.%20Pepper's%20Lonely%20Hearts%20Club%20Band/10%20Lovely%20Rita.mp3 - File Folder Count4 - Library Folder Count1 - - 7556 - - Track ID7556 - NameGood Morning Good Morning - ArtistThe Beatles - Album ArtistThe Beatles - ComposerJohn Lennon/Paul McCartney - AlbumSgt. Pepper's Lonely Hearts Club Band - GenreRock - KindMPEG audio file - Size6825232 - Total Time161306 - Track Number11 - Year1967 - Date Modified2009-12-16T02:31:47Z - Date Added2009-12-16T01:59:40Z - Bit Rate320 - Sample Rate44100 - Play Count1 - Play Date3343797380 - Play Date UTC2009-12-16T03:06:20Z - Artwork Count1 - Sort Album ArtistBeatles - Sort ArtistBeatles - Persistent ID655B791FC0B8BBF0 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Sgt.%20Pepper's%20Lonely%20Hearts%20Club%20Band/11%20Good%20Morning%20Good%20Morning.mp3 - File Folder Count4 - Library Folder Count1 - - 7558 - - Track ID7558 - NameSgt. Pepper's Lonely Hearts Club Band (Reprise) - ArtistThe Beatles - Album ArtistThe Beatles - ComposerJohn Lennon/Paul McCartney - AlbumSgt. Pepper's Lonely Hearts Club Band - GenreRock - KindMPEG audio file - Size3531433 - Total Time78889 - Track Number12 - Year1967 - Date Modified2009-12-16T02:31:49Z - Date Added2009-12-16T01:59:40Z - Bit Rate320 - Sample Rate44100 - Play Count1 - Play Date3343797459 - Play Date UTC2009-12-16T03:07:39Z - Artwork Count1 - Sort Album ArtistBeatles - Sort ArtistBeatles - Persistent IDB7BDA27E0BA7F94A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Sgt.%20Pepper's%20Lonely%20Hearts%20Club%20Band/12%20Sgt.%20Pepper's%20Lonely%20Hearts%20Club%20Band%20(Reprise).mp3 - File Folder Count4 - Library Folder Count1 - - 7560 - - Track ID7560 - NameA Day in the Life - ArtistThe Beatles - Album ArtistThe Beatles - ComposerJohn Lennon/Paul McCartney - AlbumSgt. Pepper's Lonely Hearts Club Band - GenreRock - KindMPEG audio file - Size13721888 - Total Time333583 - Track Number13 - Year1967 - Date Modified2009-12-16T02:31:45Z - Date Added2009-12-16T01:59:40Z - Bit Rate320 - Sample Rate44100 - Play Count1 - Play Date3393073192 - Play Date UTC2011-07-09T10:49:52Z - Artwork Count1 - Sort Album ArtistBeatles - Sort ArtistBeatles - Sort NameDay in the Life - Persistent IDB8DDD0452FA47967 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Sgt.%20Pepper's%20Lonely%20Hearts%20Club%20Band/13%20A%20Day%20in%20the%20Life.mp3 - File Folder Count4 - Library Folder Count1 - - 7562 - - Track ID7562 - NameOver And Out Rag - ArtistTravis Picking - ComposerTravis Picking via Mark Hanson - AlbumThe Art Of Contemporary Travis Picking - GenreBlues - KindAAC audio file - Size3187556 - Total Time76893 - Disc Number1 - Disc Count1 - Track Number1 - Track Count47 - Year1986 - Date Modified2009-12-18T06:23:04Z - Date Added2009-12-18T06:12:32Z - Bit Rate256 - Sample Rate44100 - Normalization2047 - Artwork Count1 - Sort AlbumArt Of Contemporary Travis Picking - Persistent ID9952D919CCA4C33F - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Travis%20Picking/The%20Art%20Of%20Contemporary%20Travis%20Picking/01%20Over%20And%20Out%20Rag.m4a - File Folder Count4 - Library Folder Count1 - - 7564 - - Track ID7564 - NameIntroduction And Tuning - ArtistTravis Picking - ComposerTravis Picking via Mark Hanson - AlbumThe Art Of Contemporary Travis Picking - GenreBlues - KindAAC audio file - Size1136510 - Total Time32000 - Disc Number1 - Disc Count1 - Track Number2 - Track Count47 - Year1986 - Date Modified2009-12-18T06:23:04Z - Date Added2009-12-18T06:12:47Z - Bit Rate256 - Sample Rate44100 - Normalization591 - Artwork Count1 - Sort AlbumArt Of Contemporary Travis Picking - Persistent IDD7F2650FB89F79D9 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Travis%20Picking/The%20Art%20Of%20Contemporary%20Travis%20Picking/02%20Introduction%20And%20Tuning.m4a - File Folder Count4 - Library Folder Count1 - - 7566 - - Track ID7566 - NamePattern 1 - Outside In - ArtistTravis Picking - ComposerTravis Picking via Mark Hanson - AlbumThe Art Of Contemporary Travis Picking - GenreBlues - KindAAC audio file - Size8947087 - Total Time260440 - Disc Number1 - Disc Count1 - Track Number3 - Track Count47 - Year1986 - Date Modified2009-12-18T06:23:05Z - Date Added2009-12-18T06:12:54Z - Bit Rate256 - Sample Rate44100 - Normalization1202 - Artwork Count1 - Sort AlbumArt Of Contemporary Travis Picking - Persistent IDAF47FA05CD350595 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Travis%20Picking/The%20Art%20Of%20Contemporary%20Travis%20Picking/03%20Pattern%201%20-%20Outside%20In.m4a - File Folder Count4 - Library Folder Count1 - - 7568 - - Track ID7568 - NameOI- Exercise 1 - ArtistTravis Picking - ComposerTravis Picking via Mark Hanson - AlbumThe Art Of Contemporary Travis Picking - GenreBlues - KindAAC audio file - Size6160965 - Total Time174400 - Disc Number1 - Disc Count1 - Track Number4 - Track Count47 - Year1986 - Date Modified2009-12-18T06:23:05Z - Date Added2009-12-18T06:13:39Z - Bit Rate256 - Sample Rate44100 - Normalization1202 - Artwork Count1 - Sort AlbumArt Of Contemporary Travis Picking - Persistent ID40F1D7CA4FAB9DBE - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Travis%20Picking/The%20Art%20Of%20Contemporary%20Travis%20Picking/04%20OI-%20Exercise%201.m4a - File Folder Count4 - Library Folder Count1 - - 7570 - - Track ID7570 - NameOI - Exercise 2 - ArtistTravis Picking - ComposerTravis Picking via Mark Hanson - AlbumThe Art Of Contemporary Travis Picking - GenreBlues - KindAAC audio file - Size6419723 - Total Time183120 - Disc Number1 - Disc Count1 - Track Number5 - Track Count47 - Year1986 - Date Modified2009-12-18T06:23:05Z - Date Added2009-12-18T06:14:07Z - Bit Rate256 - Sample Rate44100 - Normalization1202 - Artwork Count1 - Sort AlbumArt Of Contemporary Travis Picking - Persistent ID1BB194B808AFD35D - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Travis%20Picking/The%20Art%20Of%20Contemporary%20Travis%20Picking/05%20OI%20-%20Exercise%202.m4a - File Folder Count4 - Library Folder Count1 - - 7572 - - Track ID7572 - NameSloop John B. - Slowly - ArtistTravis Picking - ComposerTravis Picking via Mark Hanson - AlbumThe Art Of Contemporary Travis Picking - GenreBlues - KindAAC audio file - Size1908896 - Total Time46213 - Disc Number1 - Disc Count1 - Track Number6 - Track Count47 - Year1986 - Date Modified2009-12-18T06:23:05Z - Date Added2009-12-18T06:14:36Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3343982071 - Play Date UTC2009-12-18T06:24:31Z - Normalization1254 - Artwork Count1 - Sort AlbumArt Of Contemporary Travis Picking - Persistent ID8334686E0BE336BC - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Travis%20Picking/The%20Art%20Of%20Contemporary%20Travis%20Picking/06%20Sloop%20John%20B.%20-%20Slowly.m4a - File Folder Count4 - Library Folder Count1 - - 7574 - - Track ID7574 - NameInside Out - ArtistTravis Picking - ComposerTravis Picking via Mark Hanson - AlbumThe Art Of Contemporary Travis Picking - GenreBlues - KindAAC audio file - Size5112403 - Total Time140853 - Disc Number1 - Disc Count1 - Track Number7 - Track Count47 - Year1986 - Date Modified2009-12-18T06:23:06Z - Date Added2009-12-18T06:14:45Z - Bit Rate256 - Sample Rate44100 - Normalization1202 - Artwork Count1 - Sort AlbumArt Of Contemporary Travis Picking - Persistent IDF208252DAD5D5969 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Travis%20Picking/The%20Art%20Of%20Contemporary%20Travis%20Picking/07%20Inside%20Out.m4a - File Folder Count4 - Library Folder Count1 - - 7576 - - Track ID7576 - NameJohn Barleycorn - Slowly - ArtistTravis Picking - ComposerTravis Picking via Mark Hanson - AlbumThe Art Of Contemporary Travis Picking - GenreBlues - KindAAC audio file - Size3323504 - Total Time82546 - Disc Number1 - Disc Count1 - Track Number8 - Track Count47 - Year1986 - Date Modified2009-12-18T06:23:06Z - Date Added2009-12-18T06:15:09Z - Bit Rate256 - Sample Rate44100 - Normalization1527 - Artwork Count1 - Sort AlbumArt Of Contemporary Travis Picking - Persistent ID8A807D7373EB7FE6 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Travis%20Picking/The%20Art%20Of%20Contemporary%20Travis%20Picking/08%20John%20Barleycorn%20-%20Slowly.m4a - File Folder Count4 - Library Folder Count1 - - 7578 - - Track ID7578 - NamePinch - ArtistTravis Picking - ComposerTravis Picking via Mark Hanson - AlbumThe Art Of Contemporary Travis Picking - GenreBlues - KindAAC audio file - Size3455979 - Total Time90960 - Disc Number1 - Disc Count1 - Track Number9 - Track Count47 - Year1986 - Date Modified2009-12-18T06:23:06Z - Date Added2009-12-18T06:15:23Z - Bit Rate256 - Sample Rate44100 - Normalization1104 - Artwork Count1 - Sort AlbumArt Of Contemporary Travis Picking - Persistent ID570BCC15CFDBEE21 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Travis%20Picking/The%20Art%20Of%20Contemporary%20Travis%20Picking/09%20Pinch.m4a - File Folder Count4 - Library Folder Count1 - - 7580 - - Track ID7580 - NameWill The Circle Be Unbroken - Slowly - ArtistTravis Picking - ComposerTravis Picking via Mark Hanson - AlbumThe Art Of Contemporary Travis Picking - GenreBlues - KindAAC audio file - Size1837317 - Total Time42693 - Disc Number1 - Disc Count1 - Track Number10 - Track Count47 - Year1986 - Date Modified2009-12-18T06:23:06Z - Date Added2009-12-18T06:15:38Z - Bit Rate256 - Sample Rate44100 - Normalization1766 - Artwork Count1 - Sort AlbumArt Of Contemporary Travis Picking - Persistent ID594238004AB82AD4 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Travis%20Picking/The%20Art%20Of%20Contemporary%20Travis%20Picking/10%20Will%20The%20Circle%20Be%20Unbroken%20-%20Slowly.m4a - File Folder Count4 - Library Folder Count1 - - 7582 - - Track ID7582 - NameExample 22A - ArtistTravis Picking - ComposerTravis Picking via Mark Hanson - AlbumThe Art Of Contemporary Travis Picking - GenreBlues - KindAAC audio file - Size1643251 - Total Time39120 - Disc Number1 - Disc Count1 - Track Number11 - Track Count47 - Year1986 - Date Modified2009-12-18T06:23:06Z - Date Added2009-12-18T06:15:45Z - Bit Rate256 - Sample Rate44100 - Normalization1106 - Artwork Count1 - Sort AlbumArt Of Contemporary Travis Picking - Persistent ID3EEE17ED7E73790D - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Travis%20Picking/The%20Art%20Of%20Contemporary%20Travis%20Picking/11%20Example%2022A.m4a - File Folder Count4 - Library Folder Count1 - - 7584 - - Track ID7584 - NameThe Trees They Do Grow High - Slowly - ArtistTravis Picking - ComposerTravis Picking via Mark Hanson - AlbumThe Art Of Contemporary Travis Picking - GenreBlues - KindAAC audio file - Size1908705 - Total Time45293 - Disc Number1 - Disc Count1 - Track Number12 - Track Count47 - Year1986 - Date Modified2009-12-18T06:23:06Z - Date Added2009-12-18T06:15:52Z - Bit Rate256 - Sample Rate44100 - Normalization1660 - Artwork Count1 - Sort AlbumArt Of Contemporary Travis Picking - Sort NameTrees They Do Grow High - Slowly - Persistent IDC80996FAA6C5DE57 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Travis%20Picking/The%20Art%20Of%20Contemporary%20Travis%20Picking/12%20The%20Trees%20They%20Do%20Grow%20High%20-%20Slowly.m4a - File Folder Count4 - Library Folder Count1 - - 7586 - - Track ID7586 - NameDescending Arpeggio - ArtistTravis Picking - ComposerTravis Picking via Mark Hanson - AlbumThe Art Of Contemporary Travis Picking - GenreBlues - KindAAC audio file - Size1547059 - Total Time36400 - Disc Number1 - Disc Count1 - Track Number13 - Track Count47 - Year1986 - Date Modified2009-12-18T06:23:06Z - Date Added2009-12-18T06:16:00Z - Bit Rate256 - Sample Rate44100 - Normalization1186 - Artwork Count1 - Sort AlbumArt Of Contemporary Travis Picking - Persistent IDC45B64DD5CEB4CB1 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Travis%20Picking/The%20Art%20Of%20Contemporary%20Travis%20Picking/13%20Descending%20Arpeggio.m4a - File Folder Count4 - Library Folder Count1 - - 7588 - - Track ID7588 - NameRing Finger Variations - ArtistTravis Picking - ComposerTravis Picking via Mark Hanson - AlbumThe Art Of Contemporary Travis Picking - GenreBlues - KindAAC audio file - Size2233755 - Total Time56266 - Disc Number1 - Disc Count1 - Track Number14 - Track Count47 - Year1986 - Date Modified2009-12-18T06:23:06Z - Date Added2009-12-18T06:16:06Z - Bit Rate256 - Sample Rate44100 - Normalization1003 - Artwork Count1 - Sort AlbumArt Of Contemporary Travis Picking - Persistent ID9CF38CBB379191C2 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Travis%20Picking/The%20Art%20Of%20Contemporary%20Travis%20Picking/14%20Ring%20Finger%20Variations.m4a - File Folder Count4 - Library Folder Count1 - - 7590 - - Track ID7590 - NameRFV Chart - ArtistTravis Picking - ComposerTravis Picking via Mark Hanson - AlbumThe Art Of Contemporary Travis Picking - GenreBlues - KindAAC audio file - Size7349236 - Total Time196106 - Disc Number1 - Disc Count1 - Track Number15 - Track Count47 - Year1986 - Date Modified2009-12-18T06:23:07Z - Date Added2009-12-18T06:16:15Z - Bit Rate256 - Sample Rate44100 - Normalization1202 - Artwork Count1 - Sort AlbumArt Of Contemporary Travis Picking - Persistent ID1C68B5C09EDF8389 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Travis%20Picking/The%20Art%20Of%20Contemporary%20Travis%20Picking/15%20RFV%20Chart.m4a - File Folder Count4 - Library Folder Count1 - - 7592 - - Track ID7592 - NameGoin' Down The Road Feelin' Bad - Slowly - ArtistTravis Picking - ComposerTravis Picking via Mark Hanson - AlbumThe Art Of Contemporary Travis Picking - GenreBlues - KindAAC audio file - Size1737490 - Total Time37800 - Disc Number1 - Disc Count1 - Track Number16 - Track Count47 - Year1986 - Date Modified2009-12-18T06:23:07Z - Date Added2009-12-18T06:16:44Z - Bit Rate256 - Sample Rate44100 - Normalization1279 - Artwork Count1 - Sort AlbumArt Of Contemporary Travis Picking - Persistent ID10D5DDB9A0D66719 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Travis%20Picking/The%20Art%20Of%20Contemporary%20Travis%20Picking/16%20Goin'%20Down%20The%20Road%20Feelin'%20Bad%20-%20Slowly.m4a - File Folder Count4 - Library Folder Count1 - - 7594 - - Track ID7594 - NameFreight Train - Slowly - ArtistTravis Picking - ComposerTravis Picking via Mark Hanson - AlbumThe Art Of Contemporary Travis Picking - GenreBlues - KindAAC audio file - Size2382679 - Total Time54093 - Disc Number1 - Disc Count1 - Track Number17 - Track Count47 - Year1986 - Date Modified2009-12-18T06:23:07Z - Date Added2009-12-18T06:16:50Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3398610148 - Play Date UTC2011-09-11T12:52:28Z - Normalization946 - Artwork Count1 - Sort AlbumArt Of Contemporary Travis Picking - Persistent IDFB766D47499CFA41 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Travis%20Picking/The%20Art%20Of%20Contemporary%20Travis%20Picking/17%20Freight%20Train%20-%20Slowly.m4a - File Folder Count4 - Library Folder Count1 - - 7596 - - Track ID7596 - NameExample 34A - ArtistTravis Picking - ComposerTravis Picking via Mark Hanson - AlbumThe Art Of Contemporary Travis Picking - GenreBlues - KindAAC audio file - Size1525880 - Total Time34613 - Disc Number1 - Disc Count1 - Track Number18 - Track Count47 - Year1986 - Date Modified2009-12-18T06:23:07Z - Date Added2009-12-18T06:16:59Z - Bit Rate256 - Sample Rate44100 - Normalization882 - Artwork Count1 - Sort AlbumArt Of Contemporary Travis Picking - Persistent IDE74F04D588FA3964 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Travis%20Picking/The%20Art%20Of%20Contemporary%20Travis%20Picking/18%20Example%2034A.m4a - File Folder Count4 - Library Folder Count1 - - 7598 - - Track ID7598 - NameWatch The Stars - Slowly - ArtistTravis Picking - ComposerTravis Picking via Mark Hanson - AlbumThe Art Of Contemporary Travis Picking - GenreBlues - KindAAC audio file - Size1848581 - Total Time43786 - Disc Number1 - Disc Count1 - Track Number19 - Track Count47 - Year1986 - Date Modified2009-12-18T06:23:07Z - Date Added2009-12-18T06:17:04Z - Bit Rate256 - Sample Rate44100 - Normalization932 - Artwork Count1 - Sort AlbumArt Of Contemporary Travis Picking - Persistent ID079AF3318CC1E1D5 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Travis%20Picking/The%20Art%20Of%20Contemporary%20Travis%20Picking/19%20Watch%20The%20Stars%20-%20Slowly.m4a - File Folder Count4 - Library Folder Count1 - - 7600 - - Track ID7600 - NameExample 38A - ArtistTravis Picking - ComposerTravis Picking via Mark Hanson - AlbumThe Art Of Contemporary Travis Picking - GenreBlues - KindAAC audio file - Size2362346 - Total Time57800 - Disc Number1 - Disc Count1 - Track Number20 - Track Count47 - Year1986 - Date Modified2009-12-18T06:23:07Z - Date Added2009-12-18T06:17:11Z - Bit Rate256 - Sample Rate44100 - Normalization867 - Artwork Count1 - Sort AlbumArt Of Contemporary Travis Picking - Persistent ID606C1CD252A98C8F - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Travis%20Picking/The%20Art%20Of%20Contemporary%20Travis%20Picking/20%20Example%2038A.m4a - File Folder Count4 - Library Folder Count1 - - 7602 - - Track ID7602 - NameRoll In My Sweet Baby's Arms - Slowly - ArtistTravis Picking - ComposerTravis Picking via Mark Hanson - AlbumThe Art Of Contemporary Travis Picking - GenreBlues - KindAAC audio file - Size1911911 - Total Time42146 - Disc Number1 - Disc Count1 - Track Number21 - Track Count47 - Year1986 - Date Modified2009-12-18T06:23:07Z - Date Added2009-12-18T06:17:19Z - Bit Rate256 - Sample Rate44100 - Normalization1367 - Artwork Count1 - Sort AlbumArt Of Contemporary Travis Picking - Persistent IDD0FAC64A3C2CBBE9 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Travis%20Picking/The%20Art%20Of%20Contemporary%20Travis%20Picking/21%20Roll%20In%20My%20Sweet%20Baby's%20Arms%20-%20Slowly.m4a - File Folder Count4 - Library Folder Count1 - - 7604 - - Track ID7604 - NameExample 42A - ArtistTravis Picking - ComposerTravis Picking via Mark Hanson - AlbumThe Art Of Contemporary Travis Picking - GenreBlues - KindAAC audio file - Size3073419 - Total Time77546 - Disc Number1 - Disc Count1 - Track Number22 - Track Count47 - Year1986 - Date Modified2009-12-18T06:23:08Z - Date Added2009-12-18T06:17:26Z - Bit Rate256 - Sample Rate44100 - Normalization857 - Artwork Count1 - Sort AlbumArt Of Contemporary Travis Picking - Persistent ID1911670C4E7E7145 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Travis%20Picking/The%20Art%20Of%20Contemporary%20Travis%20Picking/22%20Example%2042A.m4a - File Folder Count4 - Library Folder Count1 - - 7606 - - Track ID7606 - NameExample 43A - ArtistTravis Picking - ComposerTravis Picking via Mark Hanson - AlbumThe Art Of Contemporary Travis Picking - GenreBlues - KindAAC audio file - Size1736056 - Total Time40506 - Disc Number1 - Disc Count1 - Track Number23 - Track Count47 - Year1986 - Date Modified2009-12-18T06:23:08Z - Date Added2009-12-18T06:17:37Z - Bit Rate256 - Sample Rate44100 - Normalization1034 - Artwork Count1 - Sort AlbumArt Of Contemporary Travis Picking - Persistent IDAC0EAB4DD1CA0749 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Travis%20Picking/The%20Art%20Of%20Contemporary%20Travis%20Picking/23%20Example%2043A.m4a - File Folder Count4 - Library Folder Count1 - - 7608 - - Track ID7608 - NameExample 44A - ArtistTravis Picking - ComposerTravis Picking via Mark Hanson - AlbumThe Art Of Contemporary Travis Picking - GenreBlues - KindAAC audio file - Size2970901 - Total Time75493 - Disc Number1 - Disc Count1 - Track Number24 - Track Count47 - Year1986 - Date Modified2009-12-18T06:23:08Z - Date Added2009-12-18T06:17:43Z - Bit Rate256 - Sample Rate44100 - Normalization1122 - Artwork Count1 - Sort AlbumArt Of Contemporary Travis Picking - Persistent IDEDE2FBB2F6335FFC - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Travis%20Picking/The%20Art%20Of%20Contemporary%20Travis%20Picking/24%20Example%2044A.m4a - File Folder Count4 - Library Folder Count1 - - 7610 - - Track ID7610 - NameExample 45A - ArtistTravis Picking - ComposerTravis Picking via Mark Hanson - AlbumThe Art Of Contemporary Travis Picking - GenreBlues - KindAAC audio file - Size4185735 - Total Time109866 - Disc Number1 - Disc Count1 - Track Number25 - Track Count47 - Year1986 - Date Modified2009-12-18T06:23:08Z - Date Added2009-12-18T06:17:54Z - Bit Rate256 - Sample Rate44100 - Normalization1202 - Artwork Count1 - Sort AlbumArt Of Contemporary Travis Picking - Persistent IDC8E829D46D9757E0 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Travis%20Picking/The%20Art%20Of%20Contemporary%20Travis%20Picking/25%20Example%2045A.m4a - File Folder Count4 - Library Folder Count1 - - 7612 - - Track ID7612 - NameI Know You Rider - Slowly - ArtistTravis Picking - ComposerTravis Picking via Mark Hanson - AlbumThe Art Of Contemporary Travis Picking - GenreBlues - KindAAC audio file - Size2204732 - Total Time53960 - Disc Number1 - Disc Count1 - Track Number26 - Track Count47 - Year1986 - Date Modified2009-12-18T06:23:08Z - Date Added2009-12-18T06:18:08Z - Bit Rate256 - Sample Rate44100 - Normalization2625 - Artwork Count1 - Sort AlbumArt Of Contemporary Travis Picking - Persistent ID53BE73AAFFC7940B - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Travis%20Picking/The%20Art%20Of%20Contemporary%20Travis%20Picking/26%20I%20Know%20You%20Rider%20-%20Slowly.m4a - File Folder Count4 - Library Folder Count1 - - 7614 - - Track ID7614 - NameExample 48A - ArtistTravis Picking - ComposerTravis Picking via Mark Hanson - AlbumThe Art Of Contemporary Travis Picking - GenreBlues - KindAAC audio file - Size2378415 - Total Time58933 - Disc Number1 - Disc Count1 - Track Number27 - Track Count47 - Year1986 - Date Modified2009-12-18T06:23:08Z - Date Added2009-12-18T06:18:16Z - Bit Rate256 - Sample Rate44100 - Normalization1202 - Artwork Count1 - Sort AlbumArt Of Contemporary Travis Picking - Persistent IDC8B964931F0E31FA - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Travis%20Picking/The%20Art%20Of%20Contemporary%20Travis%20Picking/27%20Example%2048A.m4a - File Folder Count4 - Library Folder Count1 - - 7616 - - Track ID7616 - NameExample 49A - ArtistTravis Picking - ComposerTravis Picking via Mark Hanson - AlbumThe Art Of Contemporary Travis Picking - GenreBlues - KindAAC audio file - Size1219748 - Total Time26413 - Disc Number1 - Disc Count1 - Track Number28 - Track Count47 - Year1986 - Date Modified2009-12-18T06:23:08Z - Date Added2009-12-18T06:18:24Z - Bit Rate256 - Sample Rate44100 - Normalization990 - Artwork Count1 - Sort AlbumArt Of Contemporary Travis Picking - Persistent IDC04ED1AB554FCCEA - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Travis%20Picking/The%20Art%20Of%20Contemporary%20Travis%20Picking/28%20Example%2049A.m4a - File Folder Count4 - Library Folder Count1 - - 7618 - - Track ID7618 - NameWanderin' - Slowly - ArtistTravis Picking - ComposerTravis Picking via Mark Hanson - AlbumThe Art Of Contemporary Travis Picking - GenreBlues - KindAAC audio file - Size1459870 - Total Time32946 - Disc Number1 - Disc Count1 - Track Number29 - Track Count47 - Year1986 - Date Modified2009-12-18T06:23:08Z - Date Added2009-12-18T06:18:28Z - Bit Rate256 - Sample Rate44100 - Normalization1547 - Artwork Count1 - Sort AlbumArt Of Contemporary Travis Picking - Persistent ID0E65A916A7B8C48F - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Travis%20Picking/The%20Art%20Of%20Contemporary%20Travis%20Picking/29%20Wanderin'%20-%20Slowly.m4a - File Folder Count4 - Library Folder Count1 - - 7620 - - Track ID7620 - NameExample 52A - ArtistTravis Picking - ComposerTravis Picking via Mark Hanson - AlbumThe Art Of Contemporary Travis Picking - GenreBlues - KindAAC audio file - Size2688084 - Total Time67346 - Disc Number1 - Disc Count1 - Track Number30 - Track Count47 - Year1986 - Date Modified2009-12-18T06:23:09Z - Date Added2009-12-18T06:18:33Z - Bit Rate256 - Sample Rate44100 - Normalization1065 - Artwork Count1 - Sort AlbumArt Of Contemporary Travis Picking - Persistent ID681ACD6F8B2EC80F - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Travis%20Picking/The%20Art%20Of%20Contemporary%20Travis%20Picking/30%20Example%2052A.m4a - File Folder Count4 - Library Folder Count1 - - 7622 - - Track ID7622 - NameThe Water Is Wide - Slowly - ArtistTravis Picking - ComposerTravis Picking via Mark Hanson - AlbumThe Art Of Contemporary Travis Picking - GenreBlues - KindAAC audio file - Size2380294 - Total Time57453 - Disc Number1 - Disc Count1 - Track Number31 - Track Count47 - Year1986 - Date Modified2009-12-18T06:23:09Z - Date Added2009-12-18T06:18:42Z - Bit Rate256 - Sample Rate44100 - Normalization1469 - Artwork Count1 - Sort AlbumArt Of Contemporary Travis Picking - Sort NameWater Is Wide - Slowly - Persistent ID3F9A38854632E388 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Travis%20Picking/The%20Art%20Of%20Contemporary%20Travis%20Picking/31%20The%20Water%20Is%20Wide%20-%20Slowly.m4a - File Folder Count4 - Library Folder Count1 - - 7624 - - Track ID7624 - NameExample 56A - ArtistTravis Picking - ComposerTravis Picking via Mark Hanson - AlbumThe Art Of Contemporary Travis Picking - GenreBlues - KindAAC audio file - Size1342888 - Total Time29893 - Disc Number1 - Disc Count1 - Track Number32 - Track Count47 - Year1986 - Date Modified2009-12-18T06:23:09Z - Date Added2009-12-18T06:18:49Z - Bit Rate256 - Sample Rate44100 - Normalization825 - Artwork Count1 - Sort AlbumArt Of Contemporary Travis Picking - Persistent ID15C7675AC19B8CFF - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Travis%20Picking/The%20Art%20Of%20Contemporary%20Travis%20Picking/32%20Example%2056A.m4a - File Folder Count4 - Library Folder Count1 - - 7626 - - Track ID7626 - NameHesitation Blues - Slowly - ArtistTravis Picking - ComposerTravis Picking via Mark Hanson - AlbumThe Art Of Contemporary Travis Picking - GenreBlues - KindAAC audio file - Size1837765 - Total Time41466 - Disc Number1 - Disc Count1 - Track Number33 - Track Count47 - Year1986 - Date Modified2009-12-18T06:23:09Z - Date Added2009-12-18T06:18:54Z - Bit Rate256 - Sample Rate44100 - Normalization1024 - Artwork Count1 - Sort AlbumArt Of Contemporary Travis Picking - Persistent ID9D9D8DF95D539D52 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Travis%20Picking/The%20Art%20Of%20Contemporary%20Travis%20Picking/33%20Hesitation%20Blues%20-%20Slowly.m4a - File Folder Count4 - Library Folder Count1 - - 7628 - - Track ID7628 - NameOver And Out Rag - Slowly - ArtistTravis Picking - ComposerTravis Picking via Mark Hanson - AlbumThe Art Of Contemporary Travis Picking - GenreBlues - KindAAC audio file - Size4471475 - Total Time113840 - Disc Number1 - Disc Count1 - Track Number34 - Track Count47 - Year1986 - Date Modified2009-12-18T06:23:09Z - Date Added2009-12-18T06:18:59Z - Bit Rate256 - Sample Rate44100 - Normalization1079 - Artwork Count1 - Sort AlbumArt Of Contemporary Travis Picking - Persistent ID31339460DBB54F4D - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Travis%20Picking/The%20Art%20Of%20Contemporary%20Travis%20Picking/34%20Over%20And%20Out%20Rag%20-%20Slowly.m4a - File Folder Count4 - Library Folder Count1 - - 7630 - - Track ID7630 - NameSloop John B. - ArtistTravis Picking - ComposerTravis Picking via Mark Hanson - AlbumThe Art Of Contemporary Travis Picking - GenreBlues - KindAAC audio file - Size6199722 - Total Time165226 - Disc Number1 - Disc Count1 - Track Number35 - Track Count47 - Year1986 - Date Modified2009-12-18T06:23:09Z - Date Added2009-12-18T06:19:14Z - Bit Rate256 - Sample Rate44100 - Normalization1955 - Artwork Count1 - Sort AlbumArt Of Contemporary Travis Picking - Persistent IDD584F2035F206D4D - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Travis%20Picking/The%20Art%20Of%20Contemporary%20Travis%20Picking/35%20Sloop%20John%20B..m4a - File Folder Count4 - Library Folder Count1 - - 7632 - - Track ID7632 - NameJohn Barleycorn - ArtistTravis Picking - ComposerTravis Picking via Mark Hanson - AlbumThe Art Of Contemporary Travis Picking - GenreBlues - KindAAC audio file - Size8766778 - Total Time235493 - Disc Number1 - Disc Count1 - Track Number36 - Track Count47 - Year1986 - Date Modified2009-12-18T06:23:10Z - Date Added2009-12-18T06:19:34Z - Bit Rate256 - Sample Rate44100 - Normalization2122 - Artwork Count1 - Sort AlbumArt Of Contemporary Travis Picking - Persistent IDEE97997BB32F9DAB - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Travis%20Picking/The%20Art%20Of%20Contemporary%20Travis%20Picking/36%20John%20Barleycorn.m4a - File Folder Count4 - Library Folder Count1 - - 7634 - - Track ID7634 - NameWill The Circle Be Unbroken - ArtistTravis Picking - ComposerTravis Picking via Mark Hanson - AlbumThe Art Of Contemporary Travis Picking - GenreBlues - KindAAC audio file - Size6417608 - Total Time160000 - Disc Number1 - Disc Count1 - Track Number37 - Track Count47 - Year1986 - Date Modified2009-12-18T06:23:10Z - Date Added2009-12-18T06:20:01Z - Bit Rate256 - Sample Rate44100 - Normalization1231 - Artwork Count1 - Sort AlbumArt Of Contemporary Travis Picking - Persistent ID77A2E345933BD27C - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Travis%20Picking/The%20Art%20Of%20Contemporary%20Travis%20Picking/37%20Will%20The%20Circle%20Be%20Unbroken.m4a - File Folder Count4 - Library Folder Count1 - - 7636 - - Track ID7636 - NameThe Trees They Do Grow High - ArtistTravis Picking - ComposerTravis Picking via Mark Hanson - AlbumThe Art Of Contemporary Travis Picking - GenreBlues - KindAAC audio file - Size7189795 - Total Time193240 - Disc Number1 - Disc Count1 - Track Number38 - Track Count47 - Year1986 - Date Modified2009-12-18T06:23:11Z - Date Added2009-12-18T06:20:20Z - Bit Rate256 - Sample Rate44100 - Normalization1770 - Artwork Count1 - Sort AlbumArt Of Contemporary Travis Picking - Sort NameTrees They Do Grow High - Persistent IDE2809E4D22CD41C6 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Travis%20Picking/The%20Art%20Of%20Contemporary%20Travis%20Picking/38%20The%20Trees%20They%20Do%20Grow%20High.m4a - File Folder Count4 - Library Folder Count1 - - 7638 - - Track ID7638 - NameHush, Little Baby - ArtistTravis Picking - ComposerTravis Picking via Mark Hanson - AlbumThe Art Of Contemporary Travis Picking - GenreBlues - KindAAC audio file - Size2915507 - Total Time74226 - Disc Number1 - Disc Count1 - Track Number39 - Track Count47 - Year1986 - Date Modified2009-12-18T06:23:11Z - Date Added2009-12-18T06:20:42Z - Bit Rate256 - Sample Rate44100 - Normalization1559 - Artwork Count1 - Sort AlbumArt Of Contemporary Travis Picking - Persistent IDB45CD7B7305F648B - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Travis%20Picking/The%20Art%20Of%20Contemporary%20Travis%20Picking/39%20Hush,%20Little%20Baby.m4a - File Folder Count4 - Library Folder Count1 - - 7640 - - Track ID7640 - NameGoin' Down The Road Feelin' Bad - ArtistTravis Picking - ComposerTravis Picking via Mark Hanson - AlbumThe Art Of Contemporary Travis Picking - GenreBlues - KindAAC audio file - Size2953083 - Total Time75813 - Disc Number1 - Disc Count1 - Track Number40 - Track Count47 - Year1986 - Date Modified2009-12-18T06:23:11Z - Date Added2009-12-18T06:20:50Z - Bit Rate256 - Sample Rate44100 - Normalization1542 - Artwork Count1 - Sort AlbumArt Of Contemporary Travis Picking - Persistent IDE11AA474BAD4368E - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Travis%20Picking/The%20Art%20Of%20Contemporary%20Travis%20Picking/40%20Goin'%20Down%20The%20Road%20Feelin'%20Bad.m4a - File Folder Count4 - Library Folder Count1 - - 7642 - - Track ID7642 - NameFreight Train - ArtistTravis Picking - ComposerTravis Picking via Mark Hanson - AlbumThe Art Of Contemporary Travis Picking - GenreBlues - KindAAC audio file - Size2304138 - Total Time60506 - Disc Number1 - Disc Count1 - Track Number41 - Track Count47 - Year1986 - Date Modified2009-12-18T06:23:11Z - Date Added2009-12-18T06:20:59Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3398610094 - Play Date UTC2011-09-11T12:51:34Z - Normalization1120 - Artwork Count1 - Sort AlbumArt Of Contemporary Travis Picking - Persistent IDEAC509A74480AA86 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Travis%20Picking/The%20Art%20Of%20Contemporary%20Travis%20Picking/41%20Freight%20Train.m4a - File Folder Count4 - Library Folder Count1 - - 7644 - - Track ID7644 - NameWatch The Stars - ArtistTravis Picking - ComposerTravis Picking via Mark Hanson - AlbumThe Art Of Contemporary Travis Picking - GenreBlues - KindAAC audio file - Size4572496 - Total Time120813 - Disc Number1 - Disc Count1 - Track Number42 - Track Count47 - Year1986 - Date Modified2009-12-18T06:23:11Z - Date Added2009-12-18T06:21:06Z - Bit Rate256 - Sample Rate44100 - Normalization1280 - Artwork Count1 - Sort AlbumArt Of Contemporary Travis Picking - Persistent ID1B5FD0DF06631FD7 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Travis%20Picking/The%20Art%20Of%20Contemporary%20Travis%20Picking/42%20Watch%20The%20Stars.m4a - File Folder Count4 - Library Folder Count1 - - 7646 - - Track ID7646 - NameRoll In My Sweet Baby's Arms - ArtistTravis Picking - ComposerTravis Picking via Mark Hanson - AlbumThe Art Of Contemporary Travis Picking - GenreBlues - KindAAC audio file - Size5454218 - Total Time146373 - Disc Number1 - Disc Count1 - Track Number43 - Track Count47 - Year1986 - Date Modified2009-12-18T06:23:12Z - Date Added2009-12-18T06:21:19Z - Bit Rate256 - Sample Rate44100 - Normalization1596 - Artwork Count1 - Sort AlbumArt Of Contemporary Travis Picking - Persistent IDE04CE39ACE3032F0 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Travis%20Picking/The%20Art%20Of%20Contemporary%20Travis%20Picking/43%20Roll%20In%20My%20Sweet%20Baby's%20Arms.m4a - File Folder Count4 - Library Folder Count1 - - 7648 - - Track ID7648 - NameI Know You Rider - ArtistTravis Picking - ComposerTravis Picking via Mark Hanson - AlbumThe Art Of Contemporary Travis Picking - GenreBlues - KindAAC audio file - Size5792892 - Total Time157880 - Disc Number1 - Disc Count1 - Track Number44 - Track Count47 - Year1986 - Date Modified2009-12-18T06:23:12Z - Date Added2009-12-18T06:21:35Z - Bit Rate256 - Sample Rate44100 - Normalization1834 - Artwork Count1 - Sort AlbumArt Of Contemporary Travis Picking - Persistent IDC28C9EFD8F4AD6DD - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Travis%20Picking/The%20Art%20Of%20Contemporary%20Travis%20Picking/44%20I%20Know%20You%20Rider.m4a - File Folder Count4 - Library Folder Count1 - - 7650 - - Track ID7650 - NameWanderin' - ArtistTravis Picking - ComposerTravis Picking via Mark Hanson - AlbumThe Art Of Contemporary Travis Picking - GenreBlues - KindAAC audio file - Size4602556 - Total Time123973 - Disc Number1 - Disc Count1 - Track Number45 - Track Count47 - Year1986 - Date Modified2009-12-18T06:23:12Z - Date Added2009-12-18T06:21:52Z - Bit Rate256 - Sample Rate44100 - Normalization687 - Artwork Count1 - Sort AlbumArt Of Contemporary Travis Picking - Persistent IDF60A00B32B8E41E1 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Travis%20Picking/The%20Art%20Of%20Contemporary%20Travis%20Picking/45%20Wanderin'.m4a - File Folder Count4 - Library Folder Count1 - - 7652 - - Track ID7652 - NameThe Water Is Wide - ArtistTravis Picking - ComposerTravis Picking via Mark Hanson - AlbumThe Art Of Contemporary Travis Picking - GenreBlues - KindAAC audio file - Size6718547 - Total Time180960 - Disc Number1 - Disc Count1 - Track Number46 - Track Count47 - Year1986 - Date Modified2009-12-18T06:23:13Z - Date Added2009-12-18T06:22:05Z - Bit Rate256 - Sample Rate44100 - Normalization1241 - Artwork Count1 - Sort AlbumArt Of Contemporary Travis Picking - Sort NameWater Is Wide - Persistent ID41020ABBC5234EFE - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Travis%20Picking/The%20Art%20Of%20Contemporary%20Travis%20Picking/46%20The%20Water%20Is%20Wide.m4a - File Folder Count4 - Library Folder Count1 - - 7654 - - Track ID7654 - NameHesitation Blues - ArtistTravis Picking - ComposerTravis Picking via Mark Hanson - AlbumThe Art Of Contemporary Travis Picking - GenreBlues - KindAAC audio file - Size3805722 - Total Time101040 - Disc Number1 - Disc Count1 - Track Number47 - Track Count47 - Year1986 - Date Modified2009-12-18T06:23:13Z - Date Added2009-12-18T06:22:23Z - Bit Rate256 - Sample Rate44100 - Normalization1573 - Artwork Count1 - Sort AlbumArt Of Contemporary Travis Picking - Persistent ID848CB1C4C7C97F6B - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Travis%20Picking/The%20Art%20Of%20Contemporary%20Travis%20Picking/47%20Hesitation%20Blues.m4a - File Folder Count4 - Library Folder Count1 - - 7656 - - Track ID7656 - NameBack In The USSR - ArtistThe Beatles - ComposerJohn Lennon & Paul McCartney - AlbumThe Beatles (White Album) [Disc 1] [2009 Stereo Remaster] - GenreRock - KindAAC audio file - Size6317754 - Total Time163453 - Disc Number1 - Disc Count2 - Track Number1 - Track Count17 - Year1968 - Date Modified2009-12-18T13:43:57Z - Date Added2009-12-18T13:30:36Z - Bit Rate256 - Sample Rate44100 - Normalization8245 - Artwork Count1 - Sort AlbumBeatles (White Album) [Disc 1] [2009 Stereo Remaster] - Sort ArtistBeatles - Persistent ID82D98C2C94BCC0A8 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/The%20Beatles%20(White%20Album)%20%5BDisc%201%5D%20%5B2009%20Stereo%20Remaster%5D/1-01%20Back%20In%20The%20USSR.m4a - File Folder Count4 - Library Folder Count1 - - 7658 - - Track ID7658 - NameDear Prudence - ArtistThe Beatles - ComposerJohn Lennon & Paul McCartney - AlbumThe Beatles (White Album) [Disc 1] [2009 Stereo Remaster] - GenreRock - KindAAC audio file - Size9030240 - Total Time235773 - Disc Number1 - Disc Count2 - Track Number2 - Track Count17 - Year1968 - Date Modified2009-12-18T13:43:57Z - Date Added2009-12-18T13:30:52Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3393073428 - Play Date UTC2011-07-09T10:53:48Z - Normalization2617 - Artwork Count1 - Sort AlbumBeatles (White Album) [Disc 1] [2009 Stereo Remaster] - Sort ArtistBeatles - Persistent IDCDDA4473F8229436 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/The%20Beatles%20(White%20Album)%20%5BDisc%201%5D%20%5B2009%20Stereo%20Remaster%5D/1-02%20Dear%20Prudence.m4a - File Folder Count4 - Library Folder Count1 - - 7660 - - Track ID7660 - NameGlass Onion - ArtistThe Beatles - ComposerJohn Lennon & Paul McCartney - AlbumThe Beatles (White Album) [Disc 1] [2009 Stereo Remaster] - GenreRock - KindAAC audio file - Size5088234 - Total Time137840 - Disc Number1 - Disc Count2 - Track Number3 - Track Count17 - Year1968 - Date Modified2009-12-18T13:43:56Z - Date Added2009-12-18T13:31:12Z - Bit Rate256 - Sample Rate44100 - Normalization2767 - Artwork Count1 - Sort AlbumBeatles (White Album) [Disc 1] [2009 Stereo Remaster] - Sort ArtistBeatles - Persistent ID909BACF0A302A1DC - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/The%20Beatles%20(White%20Album)%20%5BDisc%201%5D%20%5B2009%20Stereo%20Remaster%5D/1-03%20Glass%20Onion.m4a - File Folder Count4 - Library Folder Count1 - - 7662 - - Track ID7662 - NameOb-La-Di, Ob-La-Da - ArtistThe Beatles - ComposerJohn Lennon & Paul McCartney - AlbumThe Beatles (White Album) [Disc 1] [2009 Stereo Remaster] - GenreRock - KindAAC audio file - Size6279380 - Total Time188960 - Disc Number1 - Disc Count2 - Track Number4 - Track Count17 - Year1968 - Date Modified2009-12-18T13:43:56Z - Date Added2009-12-18T13:31:23Z - Bit Rate256 - Sample Rate44100 - Normalization4077 - Artwork Count1 - Sort AlbumBeatles (White Album) [Disc 1] [2009 Stereo Remaster] - Sort ArtistBeatles - Persistent ID7E3157A1235F8D4E - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/The%20Beatles%20(White%20Album)%20%5BDisc%201%5D%20%5B2009%20Stereo%20Remaster%5D/1-04%20Ob-La-Di,%20Ob-La-Da.m4a - File Folder Count4 - Library Folder Count1 - - 7664 - - Track ID7664 - NameWild Honey Pie - ArtistThe Beatles - ComposerJohn Lennon & Paul McCartney - AlbumThe Beatles (White Album) [Disc 1] [2009 Stereo Remaster] - GenreRock - KindAAC audio file - Size2009188 - Total Time52973 - Disc Number1 - Disc Count2 - Track Number5 - Track Count17 - Year1968 - Date Modified2009-12-18T13:43:56Z - Date Added2009-12-18T13:31:38Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3344182911 - Play Date UTC2009-12-20T14:11:51Z - Normalization3225 - Artwork Count1 - Sort AlbumBeatles (White Album) [Disc 1] [2009 Stereo Remaster] - Sort ArtistBeatles - Persistent IDDAB9768690789EC5 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/The%20Beatles%20(White%20Album)%20%5BDisc%201%5D%20%5B2009%20Stereo%20Remaster%5D/1-05%20Wild%20Honey%20Pie.m4a - File Folder Count4 - Library Folder Count1 - - 7666 - - Track ID7666 - NameThe Continuing Story Of Bungalow Bill - ArtistThe Beatles - ComposerJohn Lennon & Paul McCartney - AlbumThe Beatles (White Album) [Disc 1] [2009 Stereo Remaster] - GenreRock - KindAAC audio file - Size7209566 - Total Time194160 - Disc Number1 - Disc Count2 - Track Number6 - Track Count17 - Year1968 - Date Modified2009-12-18T13:43:56Z - Date Added2009-12-18T13:31:42Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3344183276 - Play Date UTC2009-12-20T14:17:56Z - Skip Count1 - Normalization3505 - Artwork Count1 - Sort AlbumBeatles (White Album) [Disc 1] [2009 Stereo Remaster] - Sort ArtistBeatles - Sort NameContinuing Story Of Bungalow Bill - Persistent ID0CA5273E4035A33E - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/The%20Beatles%20(White%20Album)%20%5BDisc%201%5D%20%5B2009%20Stereo%20Remaster%5D/1-06%20The%20Continuing%20Story%20Of%20Bungalow%20Bill.m4a - File Folder Count4 - Library Folder Count1 - - 7668 - - Track ID7668 - NameWhile My Guitar Gently Weeps - ArtistThe Beatles - ComposerGeorge Harrison/John Lennon & Paul McCartney - AlbumThe Beatles (White Album) [Disc 1] [2009 Stereo Remaster] - GenreRock - KindAAC audio file - Size10741270 - Total Time285000 - Disc Number1 - Disc Count2 - Track Number7 - Track Count17 - Year1968 - Date Modified2009-12-18T13:43:55Z - Date Added2009-12-18T13:31:56Z - Bit Rate256 - Sample Rate44100 - Normalization6308 - Artwork Count1 - Sort AlbumBeatles (White Album) [Disc 1] [2009 Stereo Remaster] - Sort ArtistBeatles - Persistent ID9B0C3398AA7906CB - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/The%20Beatles%20(White%20Album)%20%5BDisc%201%5D%20%5B2009%20Stereo%20Remaster%5D/1-07%20While%20My%20Guitar%20Gently%20Weeps.m4a - File Folder Count4 - Library Folder Count1 - - 7670 - - Track ID7670 - NameHappiness Is A Warm Gun - ArtistThe Beatles - ComposerJohn Lennon & Paul McCartney - AlbumThe Beatles (White Album) [Disc 1] [2009 Stereo Remaster] - GenreRock - KindAAC audio file - Size6181162 - Total Time164546 - Disc Number1 - Disc Count2 - Track Number8 - Track Count17 - Year1968 - Date Modified2009-12-18T13:43:55Z - Date Added2009-12-18T13:32:15Z - Bit Rate256 - Sample Rate44100 - Normalization4450 - Artwork Count1 - Sort AlbumBeatles (White Album) [Disc 1] [2009 Stereo Remaster] - Sort ArtistBeatles - Persistent IDB1D78E3F33E1ADCB - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/The%20Beatles%20(White%20Album)%20%5BDisc%201%5D%20%5B2009%20Stereo%20Remaster%5D/1-08%20Happiness%20Is%20A%20Warm%20Gun.m4a - File Folder Count4 - Library Folder Count1 - - 7672 - - Track ID7672 - NameMartha My Dear - ArtistThe Beatles - ComposerJohn Lennon & Paul McCartney - AlbumThe Beatles (White Album) [Disc 1] [2009 Stereo Remaster] - GenreRock - KindAAC audio file - Size5688609 - Total Time148573 - Disc Number1 - Disc Count2 - Track Number9 - Track Count17 - Year1968 - Date Modified2009-12-18T13:43:54Z - Date Added2009-12-18T13:32:25Z - Bit Rate256 - Sample Rate44100 - Normalization1861 - Artwork Count1 - Sort AlbumBeatles (White Album) [Disc 1] [2009 Stereo Remaster] - Sort ArtistBeatles - Persistent ID842D4934D598A8E6 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/The%20Beatles%20(White%20Album)%20%5BDisc%201%5D%20%5B2009%20Stereo%20Remaster%5D/1-09%20Martha%20My%20Dear.m4a - File Folder Count4 - Library Folder Count1 - - 7674 - - Track ID7674 - NameI'm So Tired - ArtistThe Beatles - ComposerJohn Lennon & Paul McCartney - AlbumThe Beatles (White Album) [Disc 1] [2009 Stereo Remaster] - GenreRock - KindAAC audio file - Size4167398 - Total Time123493 - Disc Number1 - Disc Count2 - Track Number10 - Track Count17 - Year1968 - Date Modified2009-12-18T13:43:54Z - Date Added2009-12-18T13:32:35Z - Bit Rate256 - Sample Rate44100 - Normalization2055 - Artwork Count1 - Sort AlbumBeatles (White Album) [Disc 1] [2009 Stereo Remaster] - Sort ArtistBeatles - Persistent ID5CA00413F8224A6B - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/The%20Beatles%20(White%20Album)%20%5BDisc%201%5D%20%5B2009%20Stereo%20Remaster%5D/1-10%20I'm%20So%20Tired.m4a - File Folder Count4 - Library Folder Count1 - - 7676 - - Track ID7676 - NameBlackbird - ArtistThe Beatles - ComposerJohn Lennon & Paul McCartney - AlbumThe Beatles (White Album) [Disc 1] [2009 Stereo Remaster] - GenreRock - KindAAC audio file - Size5170194 - Total Time138386 - Disc Number1 - Disc Count2 - Track Number11 - Track Count17 - Year1968 - Date Modified2009-12-18T13:43:54Z - Date Added2009-12-18T13:32:42Z - Bit Rate256 - Sample Rate44100 - Play Count3 - Play Date3392224877 - Play Date UTC2011-06-29T15:11:17Z - Normalization1156 - Artwork Count1 - Sort AlbumBeatles (White Album) [Disc 1] [2009 Stereo Remaster] - Sort ArtistBeatles - Persistent ID6607DB6E1FA54770 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/The%20Beatles%20(White%20Album)%20%5BDisc%201%5D%20%5B2009%20Stereo%20Remaster%5D/1-11%20Blackbird.m4a - File Folder Count4 - Library Folder Count1 - - 7678 - - Track ID7678 - NamePiggies - ArtistThe Beatles - ComposerJohn Lennon & Paul McCartney/George Harrison - AlbumThe Beatles (White Album) [Disc 1] [2009 Stereo Remaster] - GenreRock - KindAAC audio file - Size4535673 - Total Time124266 - Disc Number1 - Disc Count2 - Track Number12 - Track Count17 - Year1968 - Date Modified2009-12-18T13:43:53Z - Date Added2009-12-18T13:32:50Z - Bit Rate256 - Sample Rate44100 - Normalization2243 - Artwork Count1 - Sort AlbumBeatles (White Album) [Disc 1] [2009 Stereo Remaster] - Sort ArtistBeatles - Persistent IDBF9D4B98FF2884A3 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/The%20Beatles%20(White%20Album)%20%5BDisc%201%5D%20%5B2009%20Stereo%20Remaster%5D/1-12%20Piggies.m4a - File Folder Count4 - Library Folder Count1 - - 7680 - - Track ID7680 - NameRocky Racoon - ArtistThe Beatles - ComposerJohn Lennon & Paul McCartney - AlbumThe Beatles (White Album) [Disc 1] [2009 Stereo Remaster] - GenreRock - KindAAC audio file - Size8048078 - Total Time213106 - Disc Number1 - Disc Count2 - Track Number13 - Track Count17 - Year1968 - Date Modified2009-12-18T13:43:53Z - Date Added2009-12-18T13:32:58Z - Bit Rate256 - Sample Rate44100 - Normalization1161 - Artwork Count1 - Sort AlbumBeatles (White Album) [Disc 1] [2009 Stereo Remaster] - Sort ArtistBeatles - Persistent ID9CB49BF865FF9F5F - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/The%20Beatles%20(White%20Album)%20%5BDisc%201%5D%20%5B2009%20Stereo%20Remaster%5D/1-13%20Rocky%20Racoon.m4a - File Folder Count4 - Library Folder Count1 - - 7682 - - Track ID7682 - NameDon't Pass Me By - ArtistThe Beatles - ComposerRichard Starkey - AlbumThe Beatles (White Album) [Disc 1] [2009 Stereo Remaster] - GenreRock - KindAAC audio file - Size8733217 - Total Time230453 - Disc Number1 - Disc Count2 - Track Number14 - Track Count17 - Year1968 - Date Modified2009-12-18T13:43:53Z - Date Added2009-12-18T13:33:10Z - Bit Rate256 - Sample Rate44100 - Normalization2944 - Artwork Count1 - Sort AlbumBeatles (White Album) [Disc 1] [2009 Stereo Remaster] - Sort ArtistBeatles - Persistent ID234D0055C074CAC2 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/The%20Beatles%20(White%20Album)%20%5BDisc%201%5D%20%5B2009%20Stereo%20Remaster%5D/1-14%20Don't%20Pass%20Me%20By.m4a - File Folder Count4 - Library Folder Count1 - - 7684 - - Track ID7684 - NameWhy Don't We Do It In The Road? - ArtistThe Beatles - ComposerJohn Lennon & Paul McCartney - AlbumThe Beatles (White Album) [Disc 1] [2009 Stereo Remaster] - GenreRock - KindAAC audio file - Size3445160 - Total Time101160 - Disc Number1 - Disc Count2 - Track Number15 - Track Count17 - Year1968 - Date Modified2009-12-18T13:43:52Z - Date Added2009-12-18T13:33:22Z - Bit Rate256 - Sample Rate44100 - Normalization2720 - Artwork Count1 - Sort AlbumBeatles (White Album) [Disc 1] [2009 Stereo Remaster] - Sort ArtistBeatles - Persistent IDAEAD99562F66BEE0 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/The%20Beatles%20(White%20Album)%20%5BDisc%201%5D%20%5B2009%20Stereo%20Remaster%5D/1-15%20Why%20Don't%20We%20Do%20It%20In%20The%20Road_.m4a - File Folder Count4 - Library Folder Count1 - - 7686 - - Track ID7686 - NameI Will - ArtistThe Beatles - ComposerJohn Lennon & Paul McCartney - AlbumThe Beatles (White Album) [Disc 1] [2009 Stereo Remaster] - GenreRock - KindAAC audio file - Size3845943 - Total Time105933 - Disc Number1 - Disc Count2 - Track Number16 - Track Count17 - Year1968 - Date Modified2009-12-18T13:43:52Z - Date Added2009-12-18T13:33:27Z - Bit Rate256 - Sample Rate44100 - Normalization1570 - Artwork Count1 - Sort AlbumBeatles (White Album) [Disc 1] [2009 Stereo Remaster] - Sort ArtistBeatles - Persistent IDD134666D05ADDD87 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/The%20Beatles%20(White%20Album)%20%5BDisc%201%5D%20%5B2009%20Stereo%20Remaster%5D/1-16%20I%20Will.m4a - File Folder Count4 - Library Folder Count1 - - 7688 - - Track ID7688 - NameJulia - ArtistThe Beatles - ComposerJohn Lennon & Paul McCartney - AlbumThe Beatles (White Album) [Disc 1] [2009 Stereo Remaster] - GenreRock - KindAAC audio file - Size6040372 - Total Time176666 - Disc Number1 - Disc Count2 - Track Number17 - Track Count17 - Year1968 - Date Modified2009-12-18T13:43:52Z - Date Added2009-12-18T13:33:33Z - Bit Rate256 - Sample Rate44100 - Normalization1155 - Artwork Count1 - Sort AlbumBeatles (White Album) [Disc 1] [2009 Stereo Remaster] - Sort ArtistBeatles - Persistent ID22A83F5B332DD9B6 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/The%20Beatles%20(White%20Album)%20%5BDisc%201%5D%20%5B2009%20Stereo%20Remaster%5D/1-17%20Julia.m4a - File Folder Count4 - Library Folder Count1 - - 7690 - - Track ID7690 - NameBirthday - ArtistThe Beatles - ComposerMcCartney/Lennnon - AlbumThe Beatles (White Album) [Disc 2] [2009 Stereo Remaster] - GenreRock - KindAAC audio file - Size5440540 - Total Time163080 - Disc Number2 - Disc Count2 - Track Number1 - Track Count13 - Year1968 - Date Modified2009-12-18T13:43:51Z - Date Added2009-12-18T13:34:44Z - Bit Rate256 - Sample Rate44100 - Normalization4141 - Artwork Count1 - Sort AlbumBeatles (White Album) [Disc 2] [2009 Stereo Remaster] - Sort ArtistBeatles - Persistent ID6EEECE156AE40156 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/The%20Beatles%20(White%20Album)%20%5BDisc%202%5D%20%5B2009%20Stereo%20Remaster%5D/2-01%20Birthday.m4a - File Folder Count4 - Library Folder Count1 - - 7692 - - Track ID7692 - NameYer Blues - ArtistThe Beatles - ComposerLennnon/McCartney - AlbumThe Beatles (White Album) [Disc 2] [2009 Stereo Remaster] - GenreRock - KindAAC audio file - Size8925818 - Total Time240453 - Disc Number2 - Disc Count2 - Track Number2 - Track Count13 - Year1968 - Date Modified2009-12-18T13:43:51Z - Date Added2009-12-18T13:35:14Z - Bit Rate256 - Sample Rate44100 - Normalization3872 - Artwork Count1 - Sort AlbumBeatles (White Album) [Disc 2] [2009 Stereo Remaster] - Sort ArtistBeatles - Persistent ID5CDD7002BA46C80F - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/The%20Beatles%20(White%20Album)%20%5BDisc%202%5D%20%5B2009%20Stereo%20Remaster%5D/2-02%20Yer%20Blues.m4a - File Folder Count4 - Library Folder Count1 - - 7694 - - Track ID7694 - NameMother Nature's Son - ArtistThe Beatles - ComposerLennnon/McCartney - AlbumThe Beatles (White Album) [Disc 2] [2009 Stereo Remaster] - GenreRock - KindAAC audio file - Size6331298 - Total Time168026 - Disc Number2 - Disc Count2 - Track Number3 - Track Count13 - Year1968 - Date Modified2009-12-18T13:43:51Z - Date Added2009-12-18T13:35:55Z - Bit Rate256 - Sample Rate44100 - Normalization1156 - Artwork Count1 - Sort AlbumBeatles (White Album) [Disc 2] [2009 Stereo Remaster] - Sort ArtistBeatles - Persistent IDBC383788E59291DB - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/The%20Beatles%20(White%20Album)%20%5BDisc%202%5D%20%5B2009%20Stereo%20Remaster%5D/2-03%20Mother%20Nature's%20Son.m4a - File Folder Count4 - Library Folder Count1 - - 7696 - - Track ID7696 - NameEverybody's Got Something To Hide Except Me And My Monkey - ArtistThe Beatles - ComposerMcCartney/Lennnon - AlbumThe Beatles (White Album) [Disc 2] [2009 Stereo Remaster] - GenreRock - KindAAC audio file - Size5597898 - Total Time144773 - Disc Number2 - Disc Count2 - Track Number4 - Track Count13 - Year1968 - Date Modified2009-12-18T13:43:50Z - Date Added2009-12-18T13:36:23Z - Bit Rate256 - Sample Rate44100 - Normalization6132 - Artwork Count1 - Sort AlbumBeatles (White Album) [Disc 2] [2009 Stereo Remaster] - Sort ArtistBeatles - Persistent ID90AD8CA73A4CC1A6 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/The%20Beatles%20(White%20Album)%20%5BDisc%202%5D%20%5B2009%20Stereo%20Remaster%5D/2-04%20Everybody's%20Got%20Something%20To%20Hide%20Except%20Me%20And%20My%20Monkey.m4a - File Folder Count4 - Library Folder Count1 - - 7698 - - Track ID7698 - NameSexy Sadie - ArtistThe Beatles - ComposerLennnon/McCartney - AlbumThe Beatles (White Album) [Disc 2] [2009 Stereo Remaster] - GenreRock - KindAAC audio file - Size6962850 - Total Time195266 - Disc Number2 - Disc Count2 - Track Number5 - Track Count13 - Year1968 - Date Modified2009-12-18T13:43:50Z - Date Added2009-12-18T13:36:45Z - Bit Rate256 - Sample Rate44100 - Normalization2197 - Artwork Count1 - Sort AlbumBeatles (White Album) [Disc 2] [2009 Stereo Remaster] - Sort ArtistBeatles - Persistent IDF57CFC7EFC2D6E34 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/The%20Beatles%20(White%20Album)%20%5BDisc%202%5D%20%5B2009%20Stereo%20Remaster%5D/2-05%20Sexy%20Sadie.m4a - File Folder Count4 - Library Folder Count1 - - 7700 - - Track ID7700 - NameHelter Skelter - ArtistThe Beatles - ComposerLennnon/McCartney - AlbumThe Beatles (White Album) [Disc 2] [2009 Stereo Remaster] - GenreRock - KindAAC audio file - Size10268676 - Total Time269786 - Disc Number2 - Disc Count2 - Track Number6 - Track Count13 - Year1968 - Date Modified2009-12-18T13:43:50Z - Date Added2009-12-18T13:37:13Z - Bit Rate256 - Sample Rate44100 - Normalization6670 - Artwork Count1 - Sort AlbumBeatles (White Album) [Disc 2] [2009 Stereo Remaster] - Sort ArtistBeatles - Persistent ID12AF35248A3A8624 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/The%20Beatles%20(White%20Album)%20%5BDisc%202%5D%20%5B2009%20Stereo%20Remaster%5D/2-06%20Helter%20Skelter.m4a - File Folder Count4 - Library Folder Count1 - - 7702 - - Track ID7702 - NameLong, Long, Long - ArtistThe Beatles - ComposerHarrison - AlbumThe Beatles (White Album) [Disc 2] [2009 Stereo Remaster] - GenreRock - KindAAC audio file - Size6753161 - Total Time186306 - Disc Number2 - Disc Count2 - Track Number7 - Track Count13 - Year1968 - Date Modified2009-12-18T13:43:49Z - Date Added2009-12-18T13:37:50Z - Bit Rate256 - Sample Rate44100 - Normalization1156 - Artwork Count1 - Sort AlbumBeatles (White Album) [Disc 2] [2009 Stereo Remaster] - Sort ArtistBeatles - Persistent ID1C67CCAFC12348DA - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/The%20Beatles%20(White%20Album)%20%5BDisc%202%5D%20%5B2009%20Stereo%20Remaster%5D/2-07%20Long,%20Long,%20Long.m4a - File Folder Count4 - Library Folder Count1 - - 7704 - - Track ID7704 - NameRevolution 1 - ArtistThe Beatles - ComposerMcCartney/Lennnon - AlbumThe Beatles (White Album) [Disc 2] [2009 Stereo Remaster] - GenreRock - KindAAC audio file - Size8699595 - Total Time255706 - Disc Number2 - Disc Count2 - Track Number8 - Track Count13 - Year1968 - Date Modified2009-12-18T13:43:49Z - Date Added2009-12-18T13:38:14Z - Bit Rate256 - Sample Rate44100 - Normalization3282 - Artwork Count1 - Sort AlbumBeatles (White Album) [Disc 2] [2009 Stereo Remaster] - Sort ArtistBeatles - Persistent ID370954B4DE96D77A - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/The%20Beatles%20(White%20Album)%20%5BDisc%202%5D%20%5B2009%20Stereo%20Remaster%5D/2-08%20Revolution%201.m4a - File Folder Count4 - Library Folder Count1 - - 7706 - - Track ID7706 - NameHoney Pie - ArtistThe Beatles - ComposerLennnon/McCartney - AlbumThe Beatles (White Album) [Disc 2] [2009 Stereo Remaster] - GenreRock - KindAAC audio file - Size6235547 - Total Time161160 - Disc Number2 - Disc Count2 - Track Number9 - Track Count13 - Year1968 - Date Modified2009-12-18T13:43:48Z - Date Added2009-12-18T13:38:45Z - Bit Rate256 - Sample Rate44100 - Normalization798 - Artwork Count1 - Sort AlbumBeatles (White Album) [Disc 2] [2009 Stereo Remaster] - Sort ArtistBeatles - Persistent IDCC2FC357F2B9C48D - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/The%20Beatles%20(White%20Album)%20%5BDisc%202%5D%20%5B2009%20Stereo%20Remaster%5D/2-09%20Honey%20Pie.m4a - File Folder Count4 - Library Folder Count1 - - 7708 - - Track ID7708 - NameSavoy Truffle - ArtistThe Beatles - ComposerHarrison - AlbumThe Beatles (White Album) [Disc 2] [2009 Stereo Remaster] - GenreRock - KindAAC audio file - Size6732003 - Total Time174466 - Disc Number2 - Disc Count2 - Track Number10 - Track Count13 - Year1968 - Date Modified2009-12-18T13:43:48Z - Date Added2009-12-18T13:39:04Z - Bit Rate256 - Sample Rate44100 - Normalization4442 - Artwork Count1 - Sort AlbumBeatles (White Album) [Disc 2] [2009 Stereo Remaster] - Sort ArtistBeatles - Persistent ID7C7D4F819A171A6B - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/The%20Beatles%20(White%20Album)%20%5BDisc%202%5D%20%5B2009%20Stereo%20Remaster%5D/2-10%20Savoy%20Truffle.m4a - File Folder Count4 - Library Folder Count1 - - 7710 - - Track ID7710 - NameCry Baby Cry - ArtistThe Beatles - ComposerLennnon/McCartney - AlbumThe Beatles (White Album) [Disc 2] [2009 Stereo Remaster] - GenreRock - KindAAC audio file - Size6767430 - Total Time182080 - Disc Number2 - Disc Count2 - Track Number11 - Track Count13 - Year1968 - Date Modified2009-12-18T13:43:47Z - Date Added2009-12-18T13:39:25Z - Bit Rate256 - Sample Rate44100 - Normalization1466 - Artwork Count1 - Sort AlbumBeatles (White Album) [Disc 2] [2009 Stereo Remaster] - Sort ArtistBeatles - Persistent ID5BE149A3AC519B0E - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/The%20Beatles%20(White%20Album)%20%5BDisc%202%5D%20%5B2009%20Stereo%20Remaster%5D/2-11%20Cry%20Baby%20Cry.m4a - File Folder Count4 - Library Folder Count1 - - 7712 - - Track ID7712 - NameRevolution 9 - ArtistThe Beatles - ComposerLennnon/McCartney - AlbumThe Beatles (White Album) [Disc 2] [2009 Stereo Remaster] - GenreRock - KindAAC audio file - Size18710142 - Total Time502013 - Disc Number2 - Disc Count2 - Track Number12 - Track Count13 - Year1968 - Date Modified2009-12-18T13:43:47Z - Date Added2009-12-18T13:39:45Z - Bit Rate256 - Sample Rate44100 - Normalization2428 - Artwork Count1 - Sort AlbumBeatles (White Album) [Disc 2] [2009 Stereo Remaster] - Sort ArtistBeatles - Persistent ID8CB68E4971D5EE89 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/The%20Beatles%20(White%20Album)%20%5BDisc%202%5D%20%5B2009%20Stereo%20Remaster%5D/2-12%20Revolution%209.m4a - File Folder Count4 - Library Folder Count1 - - 7714 - - Track ID7714 - NameGood Night - ArtistThe Beatles - ComposerLennnon/McCartney - AlbumThe Beatles (White Album) [Disc 2] [2009 Stereo Remaster] - GenreRock - KindAAC audio file - Size6825856 - Total Time193760 - Disc Number2 - Disc Count2 - Track Number13 - Track Count13 - Year1968 - Date Modified2009-12-18T13:40:56Z - Date Added2009-12-18T13:40:38Z - Bit Rate256 - Sample Rate44100 - Normalization1332 - Sort AlbumBeatles (White Album) [Disc 2] [2009 Stereo Remaster] - Sort ArtistBeatles - Persistent IDA2E4F6E6D2518CEA - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/The%20Beatles%20(White%20Album)%20%5BDisc%202%5D%20%5B2009%20Stereo%20Remaster%5D/2-13%20Good%20Night.m4a - File Folder Count4 - Library Folder Count1 - - 7716 - - Track ID7716 - NameLove Me Do - ArtistThe Beatles - ComposerJohn Lennon & Paul McCartney - Album1 - GenrePop - KindAAC audio file - Size4146279 - Total Time140733 - Disc Number1 - Disc Count1 - Track Number1 - Track Count27 - Year1962 - BPM146 - Date Modified2010-01-02T05:43:12Z - Date Added2010-01-02T05:27:55Z - Bit Rate256 - Sample Rate44100 - Play Count2 - Play Date3471538850 - Play Date UTC2014-01-02T14:50:50Z - Normalization3317 - Artwork Count1 - Sort ArtistBeatles - Persistent IDBDC7F998F3E877D6 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/1/01%20Love%20Me%20Do.m4a - File Folder Count4 - Library Folder Count1 - - 7718 - - Track ID7718 - NameFrom Me To You - ArtistThe Beatles - ComposerJohn Lennon & Paul McCartney - Album1 - GenrePop - KindAAC audio file - Size3482518 - Total Time116160 - Disc Number1 - Disc Count1 - Track Number2 - Track Count27 - Year1963 - BPM138 - Date Modified2010-01-02T05:43:12Z - Date Added2010-01-02T05:28:21Z - Bit Rate256 - Sample Rate44100 - Skip Count1 - Skip Date2014-01-02T14:50:53Z - Normalization4262 - Artwork Count1 - Sort ArtistBeatles - Persistent IDC2D02256928BB7D0 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/1/02%20From%20Me%20To%20You.m4a - File Folder Count4 - Library Folder Count1 - - 7720 - - Track ID7720 - NameShe Loves You - ArtistThe Beatles - ComposerJohn Lennon & Paul McCartney - Album1 - GenrePop - KindAAC audio file - Size4293233 - Total Time141173 - Disc Number1 - Disc Count1 - Track Number3 - Track Count27 - Year1963 - BPM153 - Date Modified2010-01-02T05:43:12Z - Date Added2010-01-02T05:28:42Z - Bit Rate256 - Sample Rate44100 - Normalization6711 - Artwork Count1 - Sort ArtistBeatles - Persistent ID3ECAED04E5415768 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/1/03%20She%20Loves%20You.m4a - File Folder Count4 - Library Folder Count1 - - 7722 - - Track ID7722 - NameI Want To Hold Your Hand - ArtistThe Beatles - ComposerSomething - Album1 - GenrePop - KindAAC audio file - Size5446560 - Total Time144960 - Disc Number1 - Disc Count1 - Track Number4 - Track Count27 - Year1963 - BPM133 - Date Modified2010-01-02T05:43:12Z - Date Added2010-01-02T05:29:06Z - Bit Rate256 - Sample Rate44100 - Normalization7819 - Artwork Count1 - Sort ArtistBeatles - Persistent IDD02432AF743C2084 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/1/04%20I%20Want%20To%20Hold%20Your%20Hand.m4a - File Folder Count4 - Library Folder Count1 - - 7724 - - Track ID7724 - NameCan't Buy Me Love - ArtistThe Beatles - ComposerJohn Lennon & Paul McCartney - Album1 - GenrePop - KindAAC audio file - Size4777319 - Total Time131573 - Disc Number1 - Disc Count1 - Track Number5 - Track Count27 - Year1964 - BPM174 - Date Modified2010-01-02T05:43:12Z - Date Added2010-01-02T05:29:29Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3393072859 - Play Date UTC2011-07-09T10:44:19Z - Normalization6763 - Artwork Count1 - Sort ArtistBeatles - Persistent ID5FE61891FFF73C18 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/1/05%20Can't%20Buy%20Me%20Love.m4a - File Folder Count4 - Library Folder Count1 - - 7726 - - Track ID7726 - NameA Hard Day's Night - ArtistThe Beatles - ComposerJohn Lennon & Paul McCartney - Album1 - GenrePop - KindAAC audio file - Size5733772 - Total Time153426 - Disc Number1 - Disc Count1 - Track Number6 - Track Count27 - Year1964 - BPM139 - Date Modified2010-01-02T05:43:13Z - Date Added2010-01-02T05:29:50Z - Bit Rate256 - Sample Rate44100 - Normalization9506 - Artwork Count1 - Sort ArtistBeatles - Sort NameHard Day's Night - Persistent ID9019EFDC36CAD79A - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/1/06%20A%20Hard%20Day's%20Night.m4a - File Folder Count4 - Library Folder Count1 - - 7728 - - Track ID7728 - NameI Feel Fine - ArtistThe Beatles - ComposerSomething - Album1 - GenrePop - KindAAC audio file - Size5063076 - Total Time138333 - Disc Number1 - Disc Count1 - Track Number7 - Track Count27 - Year1964 - BPM180 - Date Modified2010-01-02T05:43:13Z - Date Added2010-01-02T05:30:13Z - Bit Rate256 - Sample Rate44100 - Normalization9068 - Artwork Count1 - Sort ArtistBeatles - Persistent ID1F38DBF689113D08 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/1/07%20I%20Feel%20Fine.m4a - File Folder Count4 - Library Folder Count1 - - 7730 - - Track ID7730 - NameEight Days A Week - ArtistThe Beatles - ComposerJohn Lennon & Paul McCartney - Album1 - GenrePop - KindAAC audio file - Size5912554 - Total Time164373 - Disc Number1 - Disc Count1 - Track Number8 - Track Count27 - Year1964 - BPM138 - Date Modified2010-01-02T05:43:13Z - Date Added2010-01-02T05:30:33Z - Bit Rate256 - Sample Rate44100 - Normalization8571 - Artwork Count1 - Sort ArtistBeatles - Persistent ID7FB48C9A330847CB - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/1/08%20Eight%20Days%20A%20Week.m4a - File Folder Count4 - Library Folder Count1 - - 7732 - - Track ID7732 - NameTicket To Ride - ArtistThe Beatles - ComposerSomething - Album1 - GenrePop - KindAAC audio file - Size6305264 - Total Time190533 - Disc Number1 - Disc Count1 - Track Number9 - Track Count27 - Year1964 - BPM126 - Date Modified2010-01-02T05:43:14Z - Date Added2010-01-02T05:30:56Z - Bit Rate256 - Sample Rate44100 - Normalization6494 - Artwork Count1 - Sort ArtistBeatles - Persistent ID28FFE41D2D6D5F3F - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/1/09%20Ticket%20To%20Ride.m4a - File Folder Count4 - Library Folder Count1 - - 7734 - - Track ID7734 - NameHelp! - ArtistThe Beatles - ComposerJohn Lennon & Paul McCartney - Album1 - GenrePop - KindAAC audio file - Size4570230 - Total Time138826 - Disc Number1 - Disc Count1 - Track Number10 - Track Count27 - Year1965 - BPM191 - Date Modified2010-01-02T05:43:14Z - Date Added2010-01-02T05:31:21Z - Bit Rate256 - Sample Rate44100 - Normalization5905 - Artwork Count1 - Sort ArtistBeatles - Persistent ID0AD82867DC405839 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/1/10%20Help!.m4a - File Folder Count4 - Library Folder Count1 - - 7736 - - Track ID7736 - NameYesterday - ArtistThe Beatles - ComposerJohn Lennon & Paul McCartney - Album1 - GenrePop - KindAAC audio file - Size4426178 - Total Time125400 - Disc Number1 - Disc Count1 - Track Number11 - Track Count27 - Year1965 - BPM100 - Date Modified2010-01-02T05:43:15Z - Date Added2010-01-02T05:31:39Z - Bit Rate256 - Sample Rate44100 - Normalization1760 - Artwork Count1 - Sort ArtistBeatles - Persistent ID074816ECFE331F95 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/1/11%20Yesterday.m4a - File Folder Count4 - Library Folder Count1 - - 7738 - - Track ID7738 - NameDay Tripper - ArtistThe Beatles - ComposerSomething - Album1 - GenrePop - KindAAC audio file - Size6030512 - Total Time168400 - Disc Number1 - Disc Count1 - Track Number12 - Track Count27 - Year1965 - BPM138 - Date Modified2010-01-02T05:43:15Z - Date Added2010-01-02T05:31:54Z - Bit Rate256 - Sample Rate44100 - Normalization8796 - Artwork Count1 - Sort ArtistBeatles - Persistent ID3060E9E626605E40 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/1/12%20Day%20Tripper.m4a - File Folder Count4 - Library Folder Count1 - - 7740 - - Track ID7740 - NameWe Can Work It Out - ArtistThe Beatles - ComposerJohn Lennon & Paul McCartney - Album1 - GenrePop - KindAAC audio file - Size4796679 - Total Time135133 - Disc Number1 - Disc Count1 - Track Number13 - Track Count27 - Year1965 - BPM104 - Date Modified2010-01-02T05:43:15Z - Date Added2010-01-02T05:32:15Z - Bit Rate256 - Sample Rate44100 - Normalization6850 - Artwork Count1 - Sort ArtistBeatles - Persistent ID3AEF3109E4A36A56 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/1/13%20We%20Can%20Work%20It%20Out.m4a - File Folder Count4 - Library Folder Count1 - - 7742 - - Track ID7742 - NamePaperback Writer - ArtistThe Beatles - ComposerJohn Lennon & Paul McCartney - Album1 - GenrePop - KindAAC audio file - Size5295979 - Total Time138400 - Disc Number1 - Disc Count1 - Track Number14 - Track Count27 - Year1966 - BPM158 - Date Modified2010-01-02T05:43:15Z - Date Added2010-01-02T05:32:31Z - Bit Rate256 - Sample Rate44100 - Normalization10784 - Artwork Count1 - Sort ArtistBeatles - Persistent ID961FE4EC56152462 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/1/14%20Paperback%20Writer.m4a - File Folder Count4 - Library Folder Count1 - - 7744 - - Track ID7744 - NameYellow Submarine - ArtistThe Beatles - ComposerJohn Lennon & Paul McCartney - Album1 - GenrePop - KindAAC audio file - Size5896947 - Total Time158373 - Disc Number1 - Disc Count1 - Track Number15 - Track Count27 - Year1966 - BPM113 - Date Modified2010-01-02T05:43:16Z - Date Added2010-01-02T05:32:47Z - Bit Rate256 - Sample Rate44100 - Play Count2 - Play Date3471539011 - Play Date UTC2014-01-02T14:53:31Z - Skip Count1 - Skip Date2014-05-16T15:38:27Z - Normalization5717 - Artwork Count1 - Sort ArtistBeatles - Persistent ID16D0D53DD6D0EFA2 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/1/15%20Yellow%20Submarine.m4a - File Folder Count4 - Library Folder Count1 - - 7746 - - Track ID7746 - NameEleanor Rigby - ArtistThe Beatles - ComposerJohn Lennon & Paul McCartney - Album1 - GenrePop - KindAAC audio file - Size4571808 - Total Time126826 - Disc Number1 - Disc Count1 - Track Number16 - Track Count27 - Year1966 - BPM137 - Date Modified2010-01-02T05:43:16Z - Date Added2010-01-02T05:33:05Z - Bit Rate256 - Sample Rate44100 - Play Count3 - Play Date3471539138 - Play Date UTC2014-01-02T14:55:38Z - Normalization3378 - Artwork Count1 - Sort ArtistBeatles - Persistent IDDC03D6ABE1A1DE92 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/1/16%20Eleanor%20Rigby.m4a - File Folder Count4 - Library Folder Count1 - - 7748 - - Track ID7748 - NamePenny Lane - ArtistThe Beatles - ComposerJohn Lennon & Paul McCartney - Album1 - GenrePop - KindAAC audio file - Size5929389 - Total Time179906 - Disc Number1 - Disc Count1 - Track Number17 - Track Count27 - Year1967 - BPM114 - Date Modified2010-01-02T05:43:16Z - Date Added2010-01-02T05:33:19Z - Bit Rate256 - Sample Rate44100 - Normalization6901 - Artwork Count1 - Sort ArtistBeatles - Persistent IDE519B93AA0F2D9CA - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/1/17%20Penny%20Lane.m4a - File Folder Count4 - Library Folder Count1 - - 7750 - - Track ID7750 - NameAll You Need Is Love - ArtistThe Beatles - ComposerJohn Lennon & Paul McCartney - Album1 - GenrePop - KindAAC audio file - Size8091543 - Total Time227493 - Disc Number1 - Disc Count1 - Track Number18 - Track Count27 - Year1967 - BPM100 - Date Modified2010-01-02T05:43:16Z - Date Added2010-01-02T05:33:39Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3393072438 - Play Date UTC2011-07-09T10:37:18Z - Normalization5018 - Artwork Count1 - Sort ArtistBeatles - Persistent ID0964F19B8E1039B9 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/1/18%20All%20You%20Need%20Is%20Love.m4a - File Folder Count4 - Library Folder Count1 - - 7752 - - Track ID7752 - NameHello Goodbye - ArtistThe Beatles - ComposerSomething - Album1 - GenrePop - KindAAC audio file - Size7630431 - Total Time207133 - Disc Number1 - Disc Count1 - Track Number19 - Track Count27 - Year1967 - BPM98 - Date Modified2010-01-02T05:43:17Z - Date Added2010-01-02T05:34:02Z - Bit Rate256 - Sample Rate44100 - Normalization6063 - Artwork Count1 - Sort ArtistBeatles - Persistent IDCCB1BACDF78A4FA8 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/1/19%20Hello%20Goodbye.m4a - File Folder Count4 - Library Folder Count1 - - 7754 - - Track ID7754 - NameLady Madonna - ArtistThe Beatles - ComposerJohn Lennon & Paul McCartney - Album1 - GenrePop - KindAAC audio file - Size5059590 - Total Time136933 - Disc Number1 - Disc Count1 - Track Number20 - Track Count27 - Year1968 - BPM110 - Date Modified2010-01-02T05:43:17Z - Date Added2010-01-02T05:34:24Z - Bit Rate256 - Sample Rate44100 - Normalization5224 - Artwork Count1 - Sort ArtistBeatles - Persistent ID4DBF889D919B5E7D - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/1/20%20Lady%20Madonna.m4a - File Folder Count4 - Library Folder Count1 - - 7756 - - Track ID7756 - NameHey Jude - ArtistThe Beatles - ComposerJohn Lennon & Paul McCartney/George Harrison - Album1 - GenrePop - KindAAC audio file - Size15597465 - Total Time424440 - Disc Number1 - Disc Count1 - Track Number21 - Track Count27 - Year1968 - BPM76 - Date Modified2010-01-02T05:43:18Z - Date Added2010-01-02T05:34:38Z - Bit Rate256 - Sample Rate44100 - Normalization2853 - Artwork Count1 - Sort ArtistBeatles - Persistent ID09C15C08D4A7E784 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/1/21%20Hey%20Jude.m4a - File Folder Count4 - Library Folder Count1 - - 7758 - - Track ID7758 - NameGet Back - ArtistThe Beatles - ComposerJohn Lennon & Paul McCartney - Album1 - GenrePop - KindAAC audio file - Size7249507 - Total Time192066 - Disc Number1 - Disc Count1 - Track Number22 - Track Count27 - Year1969 - BPM126 - Date Modified2010-01-02T05:43:18Z - Date Added2010-01-02T05:35:18Z - Bit Rate256 - Sample Rate44100 - Normalization3952 - Artwork Count1 - Sort ArtistBeatles - Persistent IDA752B884EDE93E75 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/1/22%20Get%20Back.m4a - File Folder Count4 - Library Folder Count1 - - 7760 - - Track ID7760 - NameThe Ballad Of John And Yoko - ArtistThe Beatles - ComposerJohn Lennon & Paul McCartney - Album1 - GenrePop - KindAAC audio file - Size6400291 - Total Time179493 - Disc Number1 - Disc Count1 - Track Number23 - Track Count27 - Year1969 - BPM136 - Date Modified2010-01-02T05:43:19Z - Date Added2010-01-02T05:35:36Z - Bit Rate256 - Sample Rate44100 - Normalization3184 - Artwork Count1 - Sort ArtistBeatles - Sort NameBallad Of John And Yoko - Persistent ID6A94F04C2122C788 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/1/23%20The%20Ballad%20Of%20John%20And%20Yoko.m4a - File Folder Count4 - Library Folder Count1 - - 7762 - - Track ID7762 - NameSomething - ArtistThe Beatles - ComposerGeorge Harrison - Album1 - GenrePop - KindAAC audio file - Size6332009 - Total Time181200 - Disc Number1 - Disc Count1 - Track Number24 - Track Count27 - Year1969 - BPM70 - Date Modified2010-01-02T05:43:19Z - Date Added2010-01-02T05:35:53Z - Bit Rate256 - Sample Rate44100 - Normalization3261 - Artwork Count1 - Sort ArtistBeatles - Persistent IDA661C944A34D0AEE - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/1/24%20Something.m4a - File Folder Count4 - Library Folder Count1 - - 7764 - - Track ID7764 - NameCome Together - ArtistThe Beatles - ComposerJohn Lennon & Paul McCartney - Album1 - GenrePop - KindAAC audio file - Size9600425 - Total Time258506 - Disc Number1 - Disc Count1 - Track Number25 - Track Count27 - Year1969 - BPM83 - Date Modified2010-01-02T05:43:20Z - Date Added2010-01-02T05:36:10Z - Bit Rate256 - Sample Rate44100 - Normalization2171 - Artwork Count1 - Sort ArtistBeatles - Persistent ID8C1DFABE574AFCF3 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/1/25%20Come%20Together.m4a - File Folder Count4 - Library Folder Count1 - - 7766 - - Track ID7766 - NameLet It Be - ArtistThe Beatles - ComposerJohn Lennon & Paul McCartney - Album1 - GenrePop - KindAAC audio file - Size8047574 - Total Time230826 - Disc Number1 - Disc Count1 - Track Number26 - Track Count27 - Year1970 - BPM65 - Date Modified2010-01-02T05:43:20Z - Date Added2010-01-02T05:36:33Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3393055754 - Play Date UTC2011-07-09T05:59:14Z - Normalization3665 - Artwork Count1 - Sort ArtistBeatles - Persistent ID811D48DE3F7BE7FE - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/1/26%20Let%20It%20Be.m4a - File Folder Count4 - Library Folder Count1 - - 7768 - - Track ID7768 - NameThe Long And Winding Road - ArtistThe Beatles - ComposerJohn Lennon & Paul McCartney - Album1 - GenrePop - KindAAC audio file - Size7951679 - Total Time217666 - Disc Number1 - Disc Count1 - Track Number27 - Track Count27 - Year1970 - BPM68 - Date Modified2010-01-02T05:43:20Z - Date Added2010-01-02T05:36:54Z - Bit Rate256 - Sample Rate44100 - Normalization3620 - Artwork Count1 - Sort ArtistBeatles - Sort NameLong And Winding Road - Persistent ID712A25DB2773D649 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/1/27%20The%20Long%20And%20Winding%20Road.m4a - File Folder Count4 - Library Folder Count1 - - 7770 - - Track ID7770 - Name01 Ras Gagan Gufaa Mein Ajar Jharay - ArtistShubha Mudgal - AlbumShubha - The Eternal Voice - GenreHindustani Classical - KindMPEG audio file - Size13607453 - Total Time679157 - Track Number1 - Date Modified2010-02-20T10:35:55Z - Date Added2010-02-20T10:32:14Z - Bit Rate160 - Sample Rate44100 - CommentsGBBFW0355085 - - Artwork Count1 - Persistent ID292B9F111E98E70B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Shubha%20Mudgal/Shubha%20-%20The%20Eternal%20Voice/01%2001%20Ras%20Gagan%20Gufaa%20Mein%20Ajar%20Jharay.mp3 - File Folder Count4 - Library Folder Count1 - - 7772 - - Track ID7772 - Name02 Gaayi Gaayi Ab Kaa Kahi - Ravidas - ArtistShubha Mudgal - ComposerRaidas - AlbumShubha - The Eternal Voice - GenreHindustani Classical - KindMPEG audio file - Size12812407 - Total Time639399 - Disc Number1 - Disc Count1 - Track Number2 - Year2003 - Date Modified2010-02-20T10:35:55Z - Date Added2010-02-20T10:32:15Z - Bit Rate160 - Sample Rate44100 - CommentsGBBFW0355081 - - Artwork Count1 - Persistent ID158B3F5BD3892B8B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Shubha%20Mudgal/Shubha%20-%20The%20Eternal%20Voice/02%2002%20Gaayi%20Gaayi%20Ab%20Kaa%20Kahi%20-%20Ravidas.mp3 - File Folder Count4 - Library Folder Count1 - - 7774 - - Track ID7774 - Name03 Ud Re Ud Bihangam - Yaari Sahab - ArtistShubha Mudgal - AlbumShubha - The Eternal Voice - GenreHindustani Classical - KindMPEG audio file - Size11076290 - Total Time552594 - Disc Number1 - Disc Count1 - Track Number3 - Year2003 - Date Modified2010-02-20T10:35:55Z - Date Added2010-02-20T10:32:16Z - Bit Rate160 - Sample Rate44100 - CommentsGBBFW0355082 - - Artwork Count1 - Persistent ID27F89ECDE6D0C549 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Shubha%20Mudgal/Shubha%20-%20The%20Eternal%20Voice/03%2003%20Ud%20Re%20Ud%20Bihangam%20-%20Yaari%20Sahab.mp3 - File Folder Count4 - Library Folder Count1 - - 7776 - - Track ID7776 - Name04 Bahut Rahi Babul Ghar Dulahin - Amir Khusrao - ArtistShubha Mudgal - ComposerAmir Khusrau - AlbumShubha - The Eternal Voice - GenreHindustani Classical - KindMPEG audio file - Size17628358 - Total Time880195 - Disc Number1 - Disc Count1 - Track Number4 - Year2003 - Date Modified2010-02-20T10:35:55Z - Date Added2010-02-20T10:32:16Z - Bit Rate160 - Sample Rate44100 - CommentsGBBFW0355083 - - Artwork Count1 - Persistent ID15CB7556A0B320BB - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Shubha%20Mudgal/Shubha%20-%20The%20Eternal%20Voice/04%2004%20Bahut%20Rahi%20Babul%20Ghar%20Dulahin%20-%20Amir%20Khusrao.mp3 - File Folder Count4 - Library Folder Count1 - - 7778 - - Track ID7778 - Name05 Ab Kaise Chhoote Naam Ratt laagi - Ravidas - ArtistShubha Mudgal - ComposerRaidas - AlbumShubha - The Eternal Voice - GenreHindustani Classical - KindMPEG audio file - Size16825869 - Total Time840071 - Disc Number1 - Disc Count1 - Track Number5 - Year2003 - Date Modified2010-02-20T10:35:55Z - Date Added2010-02-20T10:32:16Z - Bit Rate160 - Sample Rate44100 - CommentsGBBFW0355084 - - Artwork Count1 - Persistent IDB37600F1B911EC38 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Shubha%20Mudgal/Shubha%20-%20The%20Eternal%20Voice/05%2005%20Ab%20Kaise%20Chhoote%20Naam%20Ratt%20laagi%20-%20Ravidas.mp3 - File Folder Count4 - Library Folder Count1 - - 7780 - - Track ID7780 - Name06 Murat Aaj Nihari Mai - Alap - ArtistShubha Mudgal - AlbumShubha - The Eternal Voice - GenreHindustani Classical - KindMPEG audio file - Size4823616 - Total Time239960 - Disc Number1 - Disc Count1 - Track Number6 - Year2004 - Date Modified2010-02-20T10:35:55Z - Date Added2010-02-20T10:32:17Z - Bit Rate160 - Sample Rate44100 - CommentsGBBFW0501691 - - Artwork Count1 - Persistent IDFBFBB4FA9A145A71 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Shubha%20Mudgal/Shubha%20-%20The%20Eternal%20Voice/06%2006%20Murat%20Aaj%20Nihari%20Mai%20-%20Alap.mp3 - File Folder Count4 - Library Folder Count1 - - 7782 - - Track ID7782 - Name07 Murat Aaj Nihari Mai - Raga Bihag in Vilambit Ektal - ArtistShubha Mudgal - AlbumShubha - The Eternal Voice - GenreHindustani Classical - KindMPEG audio file - Size26645289 - Total Time1331043 - Disc Number1 - Disc Count1 - Track Number7 - Year2004 - Date Modified2010-02-20T10:35:55Z - Date Added2010-02-20T10:32:17Z - Bit Rate160 - Sample Rate44100 - CommentsGBBFW0501691 - - Artwork Count1 - Persistent ID387C9F8DFFE8D48B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Shubha%20Mudgal/Shubha%20-%20The%20Eternal%20Voice/07%2007%20Murat%20Aaj%20Nihari%20Mai%20-%20Raga%20Bihag%20in%20Vilambit%20Ektal.mp3 - File Folder Count4 - Library Folder Count1 - - 7784 - - Track ID7784 - Name08 Chhip Ja Ri Chandni Raat - Raga Bihag in madhyalay Teental - ArtistShubha Mudgal - AlbumShubha - The Eternal Voice - GenreHindustani Classical - KindMPEG audio file - Size13057966 - Total Time651676 - Disc Number1 - Disc Count1 - Track Number8 - Year2004 - Date Modified2010-02-20T10:35:55Z - Date Added2010-02-20T10:32:17Z - Bit Rate160 - Sample Rate44100 - CommentsGBBFW0501692 - - Artwork Count1 - Persistent ID3EF468E35EF4BB68 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Shubha%20Mudgal/Shubha%20-%20The%20Eternal%20Voice/08%2008%20Chhip%20Ja%20Ri%20Chandni%20Raat%20-%20Raga%20Bihag%20in%20madhyalay%20Teental.mp3 - File Folder Count4 - Library Folder Count1 - - 7786 - - Track ID7786 - Name09 Chaturang Gaao - Alap - ArtistShubha Mudgal - AlbumShubha - The Eternal Voice - GenreHindustani Classical - KindMPEG audio file - Size1381194 - Total Time67840 - Disc Number1 - Disc Count1 - Track Number9 - Year2004 - Date Modified2010-02-20T10:35:55Z - Date Added2010-02-20T10:32:17Z - Bit Rate160 - Sample Rate44100 - CommentsGBBFW0501693 - - Artwork Count1 - Persistent ID50CCB87AE66D3B7D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Shubha%20Mudgal/Shubha%20-%20The%20Eternal%20Voice/09%2009%20Chaturang%20Gaao%20-%20Alap.mp3 - File Folder Count4 - Library Folder Count1 - - 7788 - - Track ID7788 - Name10 Chaturang Gaao - Raga Sindhura - ArtistShubha Mudgal - AlbumShubha - The Eternal Voice - GenreHindustani Classical - KindMPEG audio file - Size11708453 - Total Time584202 - Disc Number1 - Disc Count1 - Track Number10 - Year2004 - Date Modified2010-02-20T10:35:55Z - Date Added2010-02-20T10:32:17Z - Bit Rate160 - Sample Rate44100 - CommentsGBBFW0501693 - - Artwork Count1 - Persistent ID6A4294E9CF6039E5 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Shubha%20Mudgal/Shubha%20-%20The%20Eternal%20Voice/10%2010%20Chaturang%20Gaao%20-%20Raga%20Sindhura.mp3 - File Folder Count4 - Library Folder Count1 - - 7790 - - Track ID7790 - Name11 Aaye Anokhe Khelaiyya - Raga Desh - ArtistShubha Mudgal - AlbumShubha - The Eternal Voice - GenreHindustani Classical - KindMPEG audio file - Size18271982 - Total Time912378 - Disc Number1 - Disc Count1 - Track Number11 - Year2004 - Date Modified2010-02-20T10:35:55Z - Date Added2010-02-20T10:32:18Z - Bit Rate160 - Sample Rate44100 - CommentsGBBFW0501694 - - Artwork Count1 - Persistent IDA7F6E44505D28964 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Shubha%20Mudgal/Shubha%20-%20The%20Eternal%20Voice/11%2011%20Aaye%20Anokhe%20Khelaiyya%20-%20Raga%20Desh.mp3 - File Folder Count4 - Library Folder Count1 - - 7792 - - Track ID7792 - Name12 Piyari Na Pahirab - Alap - ArtistShubha Mudgal - AlbumShubha - The Eternal Voice - GenreHindustani Classical - KindMPEG audio file - Size2896822 - Total Time143621 - Disc Number1 - Disc Count1 - Track Number12 - Year2004 - Date Modified2010-02-20T10:35:55Z - Date Added2010-02-20T10:32:18Z - Bit Rate160 - Sample Rate44100 - CommentsGBBFW0501695 - - Artwork Count1 - Persistent ID6D30EF872B1159BB - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Shubha%20Mudgal/Shubha%20-%20The%20Eternal%20Voice/12%2012%20Piyari%20Na%20Pahirab%20-%20Alap.mp3 - File Folder Count4 - Library Folder Count1 - - 7794 - - Track ID7794 - Name13 Piyari Na Pahirab - Raga Mishra Piloo - ArtistShubha Mudgal - AlbumShubha - The Eternal Voice - GenreHindustani Classical - KindMPEG audio file - Size10397635 - Total Time518661 - Disc Number1 - Disc Count1 - Track Number13 - Year2004 - Date Modified2010-02-20T10:35:55Z - Date Added2010-02-20T10:32:18Z - Bit Rate160 - Sample Rate44100 - CommentsGBBFW0501695 - - Artwork Count1 - Persistent IDDC0628AD0D1D510A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Shubha%20Mudgal/Shubha%20-%20The%20Eternal%20Voice/13%2013%20Piyari%20Na%20Pahirab%20-%20Raga%20Mishra%20Piloo.mp3 - File Folder Count4 - Library Folder Count1 - - 7796 - - Track ID7796 - NameRaga Malkauns: Pag Laagan (Vilambit); Rang Rliyaan Karat (Drut) - ArtistBhimsen Joshi - AlbumGolden Raaga Collection - GenreClassical - KindAAC audio file - Size92275577 - Total Time2797760 - Disc Number1 - Disc Count1 - Track Number1 - Track Count2 - Date Modified2010-02-20T10:41:28Z - Date Added2010-02-20T10:35:35Z - Bit Rate256 - Sample Rate44100 - Normalization2196 - Persistent ID6894A502DB31625E - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bhimsen%20Joshi/Golden%20Raaga%20Collection/01%20Raga%20Malkauns_%20Pag%20Laagan%20(Vilambit)%3B%20Rang%20Rliyaan%20Karat%20(Drut).m4a - File Folder Count4 - Library Folder Count1 - - 7798 - - Track ID7798 - NameRaga Bhairvi: Jamuna Ke Teer - ArtistBhimsen Joshi - AlbumGolden Raaga Collection - GenreClassical - KindAAC audio file - Size30485339 - Total Time926266 - Disc Number1 - Disc Count1 - Track Number2 - Track Count2 - Date Modified2010-02-20T10:42:52Z - Date Added2010-02-20T10:41:29Z - Bit Rate256 - Sample Rate44100 - Normalization2460 - Persistent ID33302BD8E46C3B33 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bhimsen%20Joshi/Golden%20Raaga%20Collection/02%20Raga%20Bhairvi_%20Jamuna%20Ke%20Teer.m4a - File Folder Count4 - Library Folder Count1 - - 7838 - - Track ID7838 - NameI Gotta Feeling - ArtistBlack Eyed Peas - Album2010 Grammy Nominees - GenrePop - KindAAC audio file - Size8734259 - Total Time247106 - Disc Number1 - Disc Count1 - Track Number1 - Track Count20 - Year2009 - Date Modified2010-06-26T09:44:45Z - Date Added2010-06-26T09:28:03Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3360416871 - Play Date UTC2010-06-26T11:37:51Z - Normalization5700 - Compilation - Artwork Count1 - Persistent IDCC8FE6C898EA801C - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/2010%20Grammy%20Nominees/01%20I%20Gotta%20Feeling.m4a - File Folder Count4 - Library Folder Count1 - - 7840 - - Track ID7840 - NamePoker Face - ArtistLady Gaga - Album2010 Grammy Nominees - GenrePop - KindAAC audio file - Size8676825 - Total Time238213 - Disc Number1 - Disc Count1 - Track Number2 - Track Count20 - Year2008 - Date Modified2010-06-26T09:44:46Z - Date Added2010-06-26T09:28:47Z - Bit Rate256 - Sample Rate44100 - Play Count7 - Play Date3378127784 - Play Date UTC2011-01-17T11:19:44Z - Skip Count1 - Skip Date2011-01-07T11:14:32Z - Normalization6387 - Compilation - Artwork Count1 - Persistent ID86EA99BB35FC3F41 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/2010%20Grammy%20Nominees/02%20Poker%20Face.m4a - File Folder Count4 - Library Folder Count1 - - 7842 - - Track ID7842 - NameUse Somebody - ArtistKings Of Leon - Album2010 Grammy Nominees - GenrePop - KindAAC audio file - Size8212723 - Total Time232293 - Disc Number1 - Disc Count1 - Track Number3 - Track Count20 - Year2008 - Date Modified2010-06-26T09:44:46Z - Date Added2010-06-26T09:29:26Z - Bit Rate256 - Sample Rate44100 - Play Count2 - Play Date3360515760 - Play Date UTC2010-06-27T15:06:00Z - Normalization8605 - Compilation - Artwork Count1 - Persistent ID30896C97573E38C4 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/2010%20Grammy%20Nominees/03%20Use%20Somebody.m4a - File Folder Count4 - Library Folder Count1 - - 7844 - - Track ID7844 - NameYou & Me - ArtistDave Matthews Band - Album2010 Grammy Nominees - GenrePop - KindAAC audio file - Size9371427 - Total Time259693 - Disc Number1 - Disc Count1 - Track Number4 - Track Count20 - Year2010 - Date Modified2010-06-26T09:44:47Z - Date Added2010-06-26T09:30:01Z - Bit Rate256 - Sample Rate44100 - Play Count2 - Play Date3360516019 - Play Date UTC2010-06-27T15:10:19Z - Normalization3873 - Compilation - Artwork Count1 - Persistent ID6C30F8D28DBFE9B5 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/2010%20Grammy%20Nominees/04%20You%20&%20Me.m4a - File Folder Count4 - Library Folder Count1 - - 7846 - - Track ID7846 - NameYou Belong With Me - ArtistTaylor Swift - Album2010 Grammy Nominees - GenrePop - KindAAC audio file - Size8159837 - Total Time231626 - Disc Number1 - Disc Count1 - Track Number5 - Track Count20 - Year2010 - Date Modified2010-06-26T09:44:47Z - Date Added2010-06-26T09:30:38Z - Bit Rate256 - Sample Rate44100 - Play Count2 - Play Date3360516251 - Play Date UTC2010-06-27T15:14:11Z - Normalization8264 - Compilation - Artwork Count1 - Persistent IDD61BEC2B7D7417C9 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/2010%20Grammy%20Nominees/05%20You%20Belong%20With%20Me.m4a - File Folder Count4 - Library Folder Count1 - - 7848 - - Track ID7848 - NameFallin' For You - ArtistColbie Caillat - Album2010 Grammy Nominees - GenrePop - KindAAC audio file - Size8141444 - Total Time217426 - Disc Number1 - Disc Count1 - Track Number6 - Track Count20 - Year2009 - Date Modified2010-06-26T09:44:48Z - Date Added2010-06-26T09:31:10Z - Bit Rate256 - Sample Rate44100 - Play Count2 - Play Date3360516468 - Play Date UTC2010-06-27T15:17:48Z - Normalization5537 - Compilation - Artwork Count1 - Persistent ID067A085E34E06D6D - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/2010%20Grammy%20Nominees/06%20Fallin'%20For%20You.m4a - File Folder Count4 - Library Folder Count1 - - 7850 - - Track ID7850 - NameYou Found Me - ArtistThe Fray - Album2010 Grammy Nominees - GenrePop - KindAAC audio file - Size8672154 - Total Time243173 - Disc Number1 - Disc Count1 - Track Number7 - Track Count20 - Year2010 - Date Modified2010-06-26T09:44:49Z - Date Added2010-06-26T09:31:38Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3360418294 - Play Date UTC2010-06-26T12:01:34Z - Normalization7212 - Compilation - Artwork Count1 - Sort ArtistFray - Persistent ID5E457145A115B3D4 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/2010%20Grammy%20Nominees/07%20You%20Found%20Me.m4a - File Folder Count4 - Library Folder Count1 - - 7852 - - Track ID7852 - NameSober - ArtistPink - Album2010 Grammy Nominees - GenrePop - KindAAC audio file - Size8820783 - Total Time253413 - Disc Number1 - Disc Count1 - Track Number8 - Track Count20 - Year2008 - Date Modified2010-06-26T09:44:49Z - Date Added2010-06-26T09:32:09Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3360418547 - Play Date UTC2010-06-26T12:05:47Z - Normalization7270 - Compilation - Artwork Count1 - Persistent ID37FD6B605F116500 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/2010%20Grammy%20Nominees/08%20Sober.m4a - File Folder Count4 - Library Folder Count1 - - 7854 - - Track ID7854 - NameMy Life Would Suck Without You - ArtistKelly Clarkson - Album2010 Grammy Nominees - GenrePop - KindAAC audio file - Size7549327 - Total Time213760 - Disc Number1 - Disc Count1 - Track Number9 - Track Count20 - Year2009 - Date Modified2010-06-26T09:44:49Z - Date Added2010-06-26T09:32:39Z - Bit Rate256 - Sample Rate44100 - Normalization10630 - Compilation - Artwork Count1 - Persistent ID03751818575140DC - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/2010%20Grammy%20Nominees/09%20My%20Life%20Would%20Suck%20Without%20You.m4a - File Folder Count4 - Library Folder Count1 - - 7856 - - Track ID7856 - NameHot N Cold - ArtistKaty Perry - Album2010 Grammy Nominees - GenrePop - KindAAC audio file - Size7762062 - Total Time221346 - Disc Number1 - Disc Count1 - Track Number10 - Track Count20 - Year2008 - Date Modified2010-06-26T09:44:50Z - Date Added2010-06-26T09:33:04Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3360517647 - Play Date UTC2010-06-27T15:37:27Z - Normalization7376 - Compilation - Artwork Count1 - Persistent ID51B858CEAC19135D - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/2010%20Grammy%20Nominees/10%20Hot%20N%20Cold.m4a - File Folder Count4 - Library Folder Count1 - - 7858 - - Track ID7858 - NameHalo - ArtistBeyoncé - Album2010 Grammy Nominees - GenrePop - KindAAC audio file - Size8838806 - Total Time225960 - Disc Number1 - Disc Count1 - Track Number11 - Track Count20 - Year2008 - Date Modified2010-06-26T09:44:50Z - Date Added2010-06-26T09:33:28Z - Bit Rate256 - Sample Rate44100 - Play Count7 - Play Date3441560957 - Play Date UTC2013-01-20T15:39:17Z - Normalization5884 - Compilation - Artwork Count1 - Persistent IDB73EEE67008380B7 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/2010%20Grammy%20Nominees/11%20Halo.m4a - File Folder Count4 - Library Folder Count1 - - 7860 - - Track ID7860 - NameHometown Glory - ArtistAdele - Album2010 Grammy Nominees - GenrePop - KindAAC audio file - Size7590176 - Total Time212933 - Disc Number1 - Disc Count1 - Track Number12 - Track Count20 - Year2010 - Date Modified2010-06-26T09:44:51Z - Date Added2010-06-26T09:33:53Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3360518086 - Play Date UTC2010-06-27T15:44:46Z - Normalization3105 - Compilation - Artwork Count1 - Persistent ID1BEE3074693C6BD0 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/2010%20Grammy%20Nominees/12%20Hometown%20Glory.m4a - File Folder Count4 - Library Folder Count1 - - 7862 - - Track ID7862 - NameChicken Fried - ArtistZac Brown Band - Album2010 Grammy Nominees - GenrePop - KindAAC audio file - Size7577784 - Total Time214813 - Disc Number1 - Disc Count1 - Track Number13 - Track Count20 - Year2010 - Date Modified2010-06-26T09:44:51Z - Date Added2010-06-26T09:34:15Z - Bit Rate256 - Sample Rate44100 - Play Count3 - Play Date3377257441 - Play Date UTC2011-01-07T09:34:01Z - Normalization6038 - Compilation - Artwork Count1 - Persistent IDFAEAAC7AC2C90EDF - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/2010%20Grammy%20Nominees/13%20Chicken%20Fried.m4a - File Folder Count4 - Library Folder Count1 - - 7864 - - Track ID7864 - NameIt Happens - ArtistSugarland - Album2010 Grammy Nominees - GenrePop - KindAAC audio file - Size6530660 - Total Time182386 - Disc Number1 - Disc Count1 - Track Number14 - Track Count20 - Year2010 - Date Modified2010-06-26T09:44:52Z - Date Added2010-06-26T09:34:37Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3360518484 - Play Date UTC2010-06-27T15:51:24Z - Normalization8686 - Compilation - Artwork Count1 - Persistent IDEC2A61AA261F9FF6 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/2010%20Grammy%20Nominees/14%20It%20Happens.m4a - File Folder Count4 - Library Folder Count1 - - 7866 - - Track ID7866 - NameI Run To You - ArtistLady Antebellum - Album2010 Grammy Nominees - GenrePop - KindAAC audio file - Size8027362 - Total Time229586 - Disc Number1 - Disc Count1 - Track Number15 - Track Count20 - Year2010 - Date Modified2010-06-26T09:44:52Z - Date Added2010-06-26T09:34:56Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3360518713 - Play Date UTC2010-06-27T15:55:13Z - Normalization5696 - Compilation - Artwork Count1 - Persistent ID143B39B8CDE50987 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/2010%20Grammy%20Nominees/15%20I%20Run%20To%20You.m4a - File Folder Count4 - Library Folder Count1 - - 7868 - - Track ID7868 - NameHere Comes Goodbye - ArtistRascal Flatts - Album2010 Grammy Nominees - GenrePop - KindAAC audio file - Size8802460 - Total Time245360 - Disc Number1 - Disc Count1 - Track Number16 - Track Count20 - Year2010 - Date Modified2010-06-26T09:44:53Z - Date Added2010-06-26T09:35:18Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3360518958 - Play Date UTC2010-06-27T15:59:18Z - Normalization6602 - Compilation - Artwork Count1 - Persistent IDB7306DDC8C73BC6D - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/2010%20Grammy%20Nominees/16%20Here%20Comes%20Goodbye.m4a - File Folder Count4 - Library Folder Count1 - - 7870 - - Track ID7870 - Name21 Guns - ArtistGreen Day - Album2010 Grammy Nominees - GenrePop - KindAAC audio file - Size11561836 - Total Time322946 - Disc Number1 - Disc Count1 - Track Number17 - Track Count20 - Year2009 - Date Modified2010-06-26T09:44:53Z - Date Added2010-06-26T09:35:42Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3360519281 - Play Date UTC2010-06-27T16:04:41Z - Normalization8137 - Compilation - Artwork Count1 - Persistent ID28481033C27792BD - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/2010%20Grammy%20Nominees/17%2021%20Guns.m4a - File Folder Count4 - Library Folder Count1 - - 7872 - - Track ID7872 - NameLife In Technicolor II - ArtistColdplay - Album2010 Grammy Nominees - GenrePop - KindAAC audio file - Size7992401 - Total Time217186 - Disc Number1 - Disc Count1 - Track Number18 - Track Count20 - Year2010 - Date Modified2010-06-26T09:44:54Z - Date Added2010-06-26T09:36:11Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3360519499 - Play Date UTC2010-06-27T16:08:19Z - Normalization6891 - Compilation - Artwork Count1 - Persistent IDDFE4D7A43B6EEAFA - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/2010%20Grammy%20Nominees/18%20Life%20In%20Technicolor%20II.m4a - File Folder Count4 - Library Folder Count1 - - 7874 - - Track ID7874 - NameI'll Go Crazy If I Don't Go Crazy Tonight - ArtistU2 - Album2010 Grammy Nominees - GenrePop - KindAAC audio file - Size8906263 - Total Time254360 - Disc Number1 - Disc Count1 - Track Number19 - Track Count20 - Year2010 - Date Modified2010-06-26T09:44:54Z - Date Added2010-06-26T09:36:31Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3360430648 - Play Date UTC2010-06-26T15:27:28Z - Normalization8297 - Compilation - Artwork Count1 - Persistent IDF788704BA742955F - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/2010%20Grammy%20Nominees/19%20I'll%20Go%20Crazy%20If%20I%20Don't%20Go%20Crazy%20Tonight.m4a - File Folder Count4 - Library Folder Count1 - - 7876 - - Track ID7876 - NameCan't Find My Way Home - ArtistEric Clapton & Steve Winwood - Album2010 Grammy Nominees - GenrePop - KindAAC audio file - Size11520750 - Total Time332906 - Disc Number1 - Disc Count1 - Track Number20 - Track Count20 - Year2010 - Date Modified2010-06-26T09:44:55Z - Date Added2010-06-26T09:36:53Z - Bit Rate256 - Sample Rate44100 - Normalization2907 - Compilation - Artwork Count1 - Persistent IDE60BEE96DC3399C7 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/2010%20Grammy%20Nominees/20%20Can't%20Find%20My%20Way%20Home.m4a - File Folder Count4 - Library Folder Count1 - - 7884 - - Track ID7884 - NameShri Ganesh Stuti - ArtistAshit Desai - ComposerAshit Desai - AlbumHimalayan Chants - GenrePop - KindAAC audio file - Size10462867 - Total Time281920 - Disc Number1 - Disc Count1 - Track Number1 - Track Count12 - Year2001 - Date Modified2010-06-27T15:35:13Z - Date Added2010-06-27T14:57:33Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3457590665 - Play Date UTC2013-07-25T04:21:05Z - Normalization1760 - Artwork Count1 - Persistent ID555794E83F720ADB - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ashit%20Desai/Himalayan%20Chants/01%20Shri%20Ganesh%20Stuti.m4a - File Folder Count4 - Library Folder Count1 - - 7886 - - Track ID7886 - NamePartah Smaran - ArtistAshit Desai - ComposerAshit Desai - AlbumHimalayan Chants - GenrePop - KindAAC audio file - Size4554914 - Total Time102880 - Disc Number1 - Disc Count1 - Track Number2 - Track Count12 - Year2001 - Date Modified2010-06-27T15:35:14Z - Date Added2010-06-27T14:58:24Z - Bit Rate256 - Sample Rate44100 - Normalization5943 - Artwork Count1 - Persistent ID9B217145EF078DEA - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ashit%20Desai/Himalayan%20Chants/02%20Partah%20Smaran.m4a - File Folder Count4 - Library Folder Count1 - - 7888 - - Track ID7888 - NameShri Guru Stuti - ArtistAshit Desai - ComposerAshit Desai - AlbumHimalayan Chants - GenrePop - KindAAC audio file - Size1967374 - Total Time26866 - Disc Number1 - Disc Count1 - Track Number3 - Track Count12 - Year2001 - Date Modified2010-06-27T15:35:14Z - Date Added2010-06-27T14:58:42Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3373618096 - Play Date UTC2010-11-26T06:38:16Z - Normalization1544 - Artwork Count1 - Persistent ID0B762D223E60A8FE - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ashit%20Desai/Himalayan%20Chants/03%20Shri%20Guru%20Stuti.m4a - File Folder Count4 - Library Folder Count1 - - 7890 - - Track ID7890 - NameShri Shanker Stuti - ArtistAshit Desai - ComposerAshit Desai - AlbumHimalayan Chants - GenrePop - KindAAC audio file - Size7728863 - Total Time199000 - Disc Number1 - Disc Count1 - Track Number4 - Track Count12 - Year2001 - Date Modified2010-06-27T15:35:14Z - Date Added2010-06-27T14:58:47Z - Bit Rate256 - Sample Rate44100 - Normalization5968 - Artwork Count1 - Persistent IDD4CC98C16A32F4FE - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ashit%20Desai/Himalayan%20Chants/04%20Shri%20Shanker%20Stuti.m4a - File Folder Count4 - Library Folder Count1 - - 7892 - - Track ID7892 - NameShri Vishnu Stuti - ArtistAshit Desai - ComposerAshit Desai - AlbumHimalayan Chants - GenrePop - KindAAC audio file - Size3824648 - Total Time82666 - Disc Number1 - Disc Count1 - Track Number5 - Track Count12 - Year2001 - Date Modified2010-06-27T15:35:15Z - Date Added2010-06-27T14:59:18Z - Bit Rate256 - Sample Rate44100 - Normalization4656 - Artwork Count1 - Persistent ID3DDC683439CB177C - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ashit%20Desai/Himalayan%20Chants/05%20Shri%20Vishnu%20Stuti.m4a - File Folder Count4 - Library Folder Count1 - - 7894 - - Track ID7894 - NameShri Krishna Stuti - ArtistAshit Desai - ComposerAshit Desai - AlbumHimalayan Chants - GenrePop - KindAAC audio file - Size3766661 - Total Time80560 - Disc Number1 - Disc Count1 - Track Number6 - Track Count12 - Year2001 - Date Modified2010-06-27T15:35:15Z - Date Added2010-06-27T14:59:31Z - Bit Rate256 - Sample Rate44100 - Normalization3942 - Artwork Count1 - Persistent ID62439D5EA21D92D1 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ashit%20Desai/Himalayan%20Chants/06%20Shri%20Krishna%20Stuti.m4a - File Folder Count4 - Library Folder Count1 - - 7896 - - Track ID7896 - NameShri Devi Stuti - ArtistAshit Desai - ComposerAshit Desai - AlbumHimalayan Chants - GenrePop - KindAAC audio file - Size6239350 - Total Time155040 - Disc Number1 - Disc Count1 - Track Number7 - Track Count12 - Year2001 - Date Modified2010-06-27T15:35:15Z - Date Added2010-06-27T14:59:44Z - Bit Rate256 - Sample Rate44100 - Normalization5720 - Artwork Count1 - Persistent ID11F2475BFF46E2F1 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ashit%20Desai/Himalayan%20Chants/07%20Shri%20Devi%20Stuti.m4a - File Folder Count4 - Library Folder Count1 - - 7898 - - Track ID7898 - NamePrakirna: Mantra, Shloka - ArtistAshit Desai - ComposerAshit Desai - AlbumHimalayan Chants - GenrePop - KindAAC audio file - Size3427804 - Total Time68533 - Disc Number1 - Disc Count1 - Track Number8 - Track Count12 - Year2001 - Date Modified2010-06-27T15:35:15Z - Date Added2010-06-27T15:00:06Z - Bit Rate256 - Sample Rate44100 - Normalization7691 - Artwork Count1 - Persistent IDB5C043F4974ECBDA - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ashit%20Desai/Himalayan%20Chants/08%20Prakirna_%20Mantra,%20Shloka.m4a - File Folder Count4 - Library Folder Count1 - - 7900 - - Track ID7900 - NamePrakirna: Mantra - ArtistAshit Desai - ComposerAshit Desai - AlbumHimalayan Chants - GenrePop - KindAAC audio file - Size26878595 - Total Time780160 - Disc Number1 - Disc Count1 - Track Number9 - Track Count12 - Year2001 - Date Modified2010-06-27T15:35:17Z - Date Added2010-06-27T15:00:16Z - Bit Rate256 - Sample Rate44100 - Normalization3138 - Artwork Count1 - Persistent IDA262B883F2C5271D - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ashit%20Desai/Himalayan%20Chants/09%20Prakirna_%20Mantra.m4a - File Folder Count4 - Library Folder Count1 - - 7902 - - Track ID7902 - NameSangachhadnam - ArtistAshit Desai - ComposerAshit Desai - AlbumHimalayan Chants - GenrePop - KindAAC audio file - Size7362631 - Total Time185106 - Disc Number1 - Disc Count1 - Track Number10 - Track Count12 - Year2001 - Date Modified2010-06-27T15:35:17Z - Date Added2010-06-27T15:01:50Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3373618354 - Play Date UTC2010-11-26T06:42:34Z - Normalization3682 - Artwork Count1 - Persistent ID027F2EBC9D3BF7FC - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ashit%20Desai/Himalayan%20Chants/10%20Sangachhadnam.m4a - File Folder Count4 - Library Folder Count1 - - 7904 - - Track ID7904 - NameNirvanshatakam - ArtistAshit Desai - ComposerAshit Desai - AlbumHimalayan Chants - GenrePop - KindAAC audio file - Size9138286 - Total Time243160 - Disc Number1 - Disc Count1 - Track Number11 - Track Count12 - Year2001 - Date Modified2010-06-27T15:35:18Z - Date Added2010-06-27T15:02:12Z - Bit Rate256 - Sample Rate44100 - Normalization2743 - Artwork Count1 - Persistent ID9E86D13169280B56 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ashit%20Desai/Himalayan%20Chants/11%20Nirvanshatakam.m4a - File Folder Count4 - Library Folder Count1 - - 7906 - - Track ID7906 - NameDevi Suktam - ArtistAshit Desai - ComposerAshit Desai - AlbumHimalayan Chants - GenrePop - KindAAC audio file - Size19746128 - Total Time553800 - Disc Number1 - Disc Count1 - Track Number12 - Track Count12 - Year2001 - Date Modified2010-06-27T15:35:20Z - Date Added2010-06-27T15:02:38Z - Bit Rate256 - Sample Rate44100 - Normalization5488 - Artwork Count1 - Persistent ID5B4D867960AFC8CE - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ashit%20Desai/Himalayan%20Chants/12%20Devi%20Suktam.m4a - File Folder Count4 - Library Folder Count1 - - 7930 - - Track ID7930 - NameTrack 01 - ArtistTraditional Khmer Music - AlbumTraditional Khmer Music - KindAAC audio file - Size11070772 - Total Time307360 - Track Number1 - Track Count12 - Date Modified2011-01-01T13:16:05Z - Date Added2010-12-26T04:44:42Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3376204103 - Play Date UTC2010-12-26T04:58:23Z - Normalization1259 - Persistent ID9BA8CE817695FF95 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Traditional%20Khmer%20Music/Traditional%20Khmer%20Music/01%20Track%2001.m4a - File Folder Count4 - Library Folder Count1 - - 7932 - - Track ID7932 - NameTrack 02 - ArtistTraditional Khmer Music - AlbumTraditional Khmer Music - KindAAC audio file - Size13245957 - Total Time404400 - Track Number2 - Track Count12 - Date Modified2011-01-01T13:16:05Z - Date Added2010-12-26T04:45:36Z - Bit Rate256 - Sample Rate44100 - Normalization1259 - Persistent ID610EFB23D85382F6 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Traditional%20Khmer%20Music/Traditional%20Khmer%20Music/02%20Track%2002.m4a - File Folder Count4 - Library Folder Count1 - - 7934 - - Track ID7934 - NameTrack 03 - ArtistTraditional Khmer Music - AlbumTraditional Khmer Music - KindAAC audio file - Size8415220 - Total Time239640 - Track Number3 - Track Count12 - Date Modified2011-01-01T13:16:05Z - Date Added2010-12-26T04:46:39Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3376310337 - Play Date UTC2010-12-27T10:28:57Z - Normalization1258 - Persistent IDA9C1F9030C1DFBEE - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Traditional%20Khmer%20Music/Traditional%20Khmer%20Music/03%20Track%2003.m4a - File Folder Count4 - Library Folder Count1 - - 7936 - - Track ID7936 - NameTrack 04 - ArtistTraditional Khmer Music - AlbumTraditional Khmer Music - KindAAC audio file - Size14069519 - Total Time390960 - Track Number4 - Track Count12 - Date Modified2011-01-01T13:16:05Z - Date Added2010-12-26T04:47:13Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3376310727 - Play Date UTC2010-12-27T10:35:27Z - Normalization1259 - Persistent IDD37B4DC5BFF36C14 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Traditional%20Khmer%20Music/Traditional%20Khmer%20Music/04%20Track%2004.m4a - File Folder Count4 - Library Folder Count1 - - 7938 - - Track ID7938 - NameTrack 05 - ArtistTraditional Khmer Music - AlbumTraditional Khmer Music - KindAAC audio file - Size16638271 - Total Time441826 - Track Number5 - Track Count12 - Date Modified2011-01-01T13:16:05Z - Date Added2010-12-26T04:48:04Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3376311169 - Play Date UTC2010-12-27T10:42:49Z - Normalization1259 - Persistent ID9E844D7A92FAD2FC - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Traditional%20Khmer%20Music/Traditional%20Khmer%20Music/05%20Track%2005.m4a - File Folder Count4 - Library Folder Count1 - - 7940 - - Track ID7940 - NameTrack 06 - ArtistTraditional Khmer Music - AlbumTraditional Khmer Music - KindAAC audio file - Size10662689 - Total Time283706 - Track Number6 - Track Count12 - Date Modified2011-01-01T13:16:05Z - Date Added2010-12-26T04:48:58Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3376311453 - Play Date UTC2010-12-27T10:47:33Z - Normalization1259 - Persistent ID5F2C926B290C3D13 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Traditional%20Khmer%20Music/Traditional%20Khmer%20Music/06%20Track%2006.m4a - File Folder Count4 - Library Folder Count1 - - 7942 - - Track ID7942 - NameTrack 07 - ArtistTraditional Khmer Music - AlbumTraditional Khmer Music - KindAAC audio file - Size14149394 - Total Time405573 - Track Number7 - Track Count12 - Date Modified2011-01-01T13:16:05Z - Date Added2010-12-26T04:49:30Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3376311859 - Play Date UTC2010-12-27T10:54:19Z - Normalization1259 - Persistent ID7CDC5C8056DC9038 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Traditional%20Khmer%20Music/Traditional%20Khmer%20Music/07%20Track%2007.m4a - File Folder Count4 - Library Folder Count1 - - 7944 - - Track ID7944 - NameTrack 08 - ArtistTraditional Khmer Music - AlbumTraditional Khmer Music - KindAAC audio file - Size11626477 - Total Time340173 - Track Number8 - Track Count12 - Date Modified2011-01-01T13:16:05Z - Date Added2010-12-26T04:50:13Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3376312199 - Play Date UTC2010-12-27T10:59:59Z - Normalization1259 - Persistent IDBB79271206F5E19A - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Traditional%20Khmer%20Music/Traditional%20Khmer%20Music/08%20Track%2008.m4a - File Folder Count4 - Library Folder Count1 - - 7946 - - Track ID7946 - NameTrack 09 - ArtistTraditional Khmer Music - AlbumTraditional Khmer Music - KindAAC audio file - Size12303100 - Total Time359000 - Track Number9 - Track Count12 - Date Modified2011-01-01T13:16:05Z - Date Added2010-12-26T04:50:48Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3376312558 - Play Date UTC2010-12-27T11:05:58Z - Normalization1329 - Persistent ID56386BA88A72C43D - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Traditional%20Khmer%20Music/Traditional%20Khmer%20Music/09%20Track%2009.m4a - File Folder Count4 - Library Folder Count1 - - 7948 - - Track ID7948 - NameTrack 10 - ArtistTraditional Khmer Music - AlbumTraditional Khmer Music - KindAAC audio file - Size13998901 - Total Time415346 - Track Number10 - Track Count12 - Date Modified2011-01-01T13:16:05Z - Date Added2010-12-26T04:51:23Z - Bit Rate256 - Sample Rate44100 - Play Count2 - Play Date3376735113 - Play Date UTC2011-01-01T08:28:33Z - Normalization1390 - Persistent ID69BBB81ECF8EE4C4 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Traditional%20Khmer%20Music/Traditional%20Khmer%20Music/10%20Track%2010.m4a - File Folder Count4 - Library Folder Count1 - - 7950 - - Track ID7950 - NameTrack 11 - ArtistTraditional Khmer Music - AlbumTraditional Khmer Music - KindAAC audio file - Size14194613 - Total Time399946 - Track Number11 - Track Count12 - Date Modified2011-01-01T13:16:05Z - Date Added2010-12-26T04:52:02Z - Bit Rate256 - Sample Rate44100 - Normalization1259 - Persistent IDBC6D61D178E51B04 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Traditional%20Khmer%20Music/Traditional%20Khmer%20Music/11%20Track%2011.m4a - File Folder Count4 - Library Folder Count1 - - 7952 - - Track ID7952 - NameTrack 12 - ArtistTraditional Khmer Music - AlbumTraditional Khmer Music - KindAAC audio file - Size12287376 - Total Time340786 - Track Number12 - Track Count12 - Date Modified2011-01-01T13:16:05Z - Date Added2010-12-26T04:52:38Z - Bit Rate256 - Sample Rate44100 - Normalization1653 - Persistent ID363C06770DF28BF8 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Traditional%20Khmer%20Music/Traditional%20Khmer%20Music/12%20Track%2012.m4a - File Folder Count4 - Library Folder Count1 - - 7954 - - Track ID7954 - Nameความรัก - ArtistBodyslam - AlbumGMM Grammy Best Of The Year 2010 - GenrePop - KindAAC audio file - Size10203984 - Total Time293080 - Disc Number1 - Disc Count2 - Track Number1 - Track Count12 - Year2010 - Date Modified2011-01-01T08:17:17Z - Date Added2011-01-01T08:16:25Z - Bit Rate256 - Sample Rate44100 - Normalization9487 - Compilation - Persistent IDDCF25FFECD2B1BE4 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/GMM%20Grammy%20Best%20Of%20The%20Year%202010/1-01%20%E0%B8%84%E0%B8%A7%E0%B8%B2%E0%B8%A1%E0%B8%A3%E0%B8%B1%E0%B8%81.m4a - File Folder Count4 - Library Folder Count1 - - 7956 - - Track ID7956 - Nameยินดีที่ไม่รู้จัก - Artist25 Hours - AlbumGMM Grammy Best Of The Year 2010 - GenrePop - KindAAC audio file - Size6805214 - Total Time203133 - Disc Number1 - Disc Count2 - Track Number2 - Track Count12 - Year2010 - Date Modified2011-01-01T08:17:52Z - Date Added2011-01-01T08:17:20Z - Bit Rate256 - Sample Rate44100 - Normalization8186 - Compilation - Persistent ID0A3E4933C8506828 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/GMM%20Grammy%20Best%20Of%20The%20Year%202010/1-02%20%E0%B8%A2%E0%B8%B4%E0%B8%99%E0%B8%94%E0%B8%B5%E0%B8%97%E0%B8%B5%E0%B9%88%E0%B9%84%E0%B8%A1%E0%B9%88%E0%B8%A3%E0%B8%B9%E0%B9%89%E0%B8%88%E0%B8%B1%E0%B8%81.m4a - File Folder Count4 - Library Folder Count1 - - 7958 - - Track ID7958 - Nameจะรักหรือจะร้าย - ArtistKlear - AlbumGMM Grammy Best Of The Year 2010 - GenrePop - KindAAC audio file - Size8000737 - Total Time236133 - Disc Number1 - Disc Count2 - Track Number3 - Track Count12 - Year2010 - Date Modified2011-01-01T08:18:29Z - Date Added2011-01-01T08:17:54Z - Bit Rate256 - Sample Rate44100 - Normalization12968 - Compilation - Persistent ID8C57B5F596DAFC5A - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/GMM%20Grammy%20Best%20Of%20The%20Year%202010/1-03%20%E0%B8%88%E0%B8%B0%E0%B8%A3%E0%B8%B1%E0%B8%81%E0%B8%AB%E0%B8%A3%E0%B8%B7%E0%B8%AD%E0%B8%88%E0%B8%B0%E0%B8%A3%E0%B9%89%E0%B8%B2%E0%B8%A2.m4a - File Folder Count4 - Library Folder Count1 - - 7960 - - Track ID7960 - Nameแบบไหนที่เธอรัก - ArtistZeal - AlbumGMM Grammy Best Of The Year 2010 - GenrePop - KindAAC audio file - Size8142542 - Total Time235000 - Disc Number1 - Disc Count2 - Track Number4 - Track Count12 - Year2010 - Date Modified2011-01-01T08:19:04Z - Date Added2011-01-01T08:18:32Z - Bit Rate256 - Sample Rate44100 - Normalization8714 - Compilation - Persistent IDC72E78542FBA4D7C - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/GMM%20Grammy%20Best%20Of%20The%20Year%202010/1-04%20%E0%B9%81%E0%B8%9A%E0%B8%9A%E0%B9%84%E0%B8%AB%E0%B8%99%E0%B8%97%E0%B8%B5%E0%B9%88%E0%B9%80%E0%B8%98%E0%B8%AD%E0%B8%A3%E0%B8%B1%E0%B8%81.m4a - File Folder Count4 - Library Folder Count1 - - 7962 - - Track ID7962 - Nameระยะทำใจ - Artistกัน The Star - AlbumGMM Grammy Best Of The Year 2010 - GenrePop - KindAAC audio file - Size7570061 - Total Time221293 - Disc Number1 - Disc Count2 - Track Number5 - Track Count12 - Year2010 - Date Modified2011-01-01T08:19:35Z - Date Added2011-01-01T08:19:06Z - Bit Rate256 - Sample Rate44100 - Normalization4210 - Compilation - Persistent IDF2D272548DB469F9 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/GMM%20Grammy%20Best%20Of%20The%20Year%202010/1-05%20%E0%B8%A3%E0%B8%B0%E0%B8%A2%E0%B8%B0%E0%B8%97%E0%B8%B3%E0%B9%83%E0%B8%88.m4a - File Folder Count4 - Library Folder Count1 - - 7964 - - Track ID7964 - Nameเมื่อไม่มีเธอ (ในวันที่ฟ้าสีเทา) - Artistบีม จารุวรรณ - AlbumGMM Grammy Best Of The Year 2010 - GenrePop - KindAAC audio file - Size9183852 - Total Time279293 - Disc Number1 - Disc Count2 - Track Number6 - Track Count12 - Year2010 - Date Modified2011-01-01T08:20:11Z - Date Added2011-01-01T08:19:37Z - Bit Rate256 - Sample Rate44100 - Normalization5295 - Compilation - Persistent IDE666FCEC39DFA0C9 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/GMM%20Grammy%20Best%20Of%20The%20Year%202010/1-06%20%E0%B9%80%E0%B8%A1%E0%B8%B7%E0%B9%88%E0%B8%AD%E0%B9%84%E0%B8%A1%E0%B9%88%E0%B8%A1%E0%B8%B5%E0%B9%80%E0%B8%98%E0%B8%AD%20(%E0%B9%83%E0%B8%99%E0%B8%A7%E0%B8%B1%E0%B8%99%E0%B8%97%E0%B8%B5%E0%B9%88%E0%B8%9F%E0%B9%89%E0%B8%B2%E0%B8%AA%E0%B8%B5%E0%B9%80%E0%B8%97%E0%B8%B2).m4a - File Folder Count4 - Library Folder Count1 - - 7966 - - Track ID7966 - Nameครั้งหนึ่ง...เราเคยรักกัน - Artistดา Endorphine - AlbumGMM Grammy Best Of The Year 2010 - GenrePop - KindAAC audio file - Size8485292 - Total Time252533 - Disc Number1 - Disc Count2 - Track Number7 - Track Count12 - Year2010 - Date Modified2011-01-01T08:20:42Z - Date Added2011-01-01T08:20:14Z - Bit Rate256 - Sample Rate44100 - Normalization4567 - Compilation - Persistent IDB498D04DBEDF3DD5 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/GMM%20Grammy%20Best%20Of%20The%20Year%202010/1-07%20%E0%B8%84%E0%B8%A3%E0%B8%B1%E0%B9%89%E0%B8%87%E0%B8%AB%E0%B8%99%E0%B8%B6%E0%B9%88%E0%B8%87...%E0%B9%80%E0%B8%A3%E0%B8%B2%E0%B9%80%E0%B8%84%E0%B8%A2%E0%B8%A3%E0%B8%B1%E0%B8%81%E0%B8%81%E0%B8%B1%E0%B8%99.m4a - File Folder Count4 - Library Folder Count1 - - 7968 - - Track ID7968 - Nameเพลงรัก - Artistบี้ สุกฤษฎิ์ - AlbumGMM Grammy Best Of The Year 2010 - GenrePop - KindAAC audio file - Size8820475 - Total Time266213 - Disc Number1 - Disc Count2 - Track Number8 - Track Count12 - Year2010 - Date Modified2011-01-01T08:21:14Z - Date Added2011-01-01T08:20:45Z - Bit Rate256 - Sample Rate44100 - Normalization8538 - Compilation - Persistent ID6B8D92DE446F0E67 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/GMM%20Grammy%20Best%20Of%20The%20Year%202010/1-08%20%E0%B9%80%E0%B8%9E%E0%B8%A5%E0%B8%87%E0%B8%A3%E0%B8%B1%E0%B8%81.m4a - File Folder Count4 - Library Folder Count1 - - 7970 - - Track ID7970 - Nameมากกว่ารัก - Artistโรส ศิรินทิพย์ - AlbumGMM Grammy Best Of The Year 2010 - GenrePop - KindAAC audio file - Size7992588 - Total Time242760 - Disc Number1 - Disc Count2 - Track Number9 - Track Count12 - Year2010 - Date Modified2011-01-01T08:21:42Z - Date Added2011-01-01T08:21:17Z - Bit Rate256 - Sample Rate44100 - Normalization3218 - Compilation - Persistent IDC21D375CC19A374D - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/GMM%20Grammy%20Best%20Of%20The%20Year%202010/1-09%20%E0%B8%A1%E0%B8%B2%E0%B8%81%E0%B8%81%E0%B8%A7%E0%B9%88%E0%B8%B2%E0%B8%A3%E0%B8%B1%E0%B8%81.m4a - File Folder Count4 - Library Folder Count1 - - 7972 - - Track ID7972 - Nameความคิดถึงไม่พึ่งปาฏิหาริย์ - ArtistPancake - AlbumGMM Grammy Best Of The Year 2010 - GenrePop - KindAAC audio file - Size9764727 - Total Time279080 - Disc Number1 - Disc Count2 - Track Number10 - Track Count12 - Year2010 - Date Modified2011-01-01T08:22:12Z - Date Added2011-01-01T08:21:44Z - Bit Rate256 - Sample Rate44100 - Normalization3803 - Compilation - Persistent ID63CDAE4C4E638476 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/GMM%20Grammy%20Best%20Of%20The%20Year%202010/1-10%20%E0%B8%84%E0%B8%A7%E0%B8%B2%E0%B8%A1%E0%B8%84%E0%B8%B4%E0%B8%94%E0%B8%96%E0%B8%B6%E0%B8%87%E0%B9%84%E0%B8%A1%E0%B9%88%E0%B8%9E%E0%B8%B6%E0%B9%88%E0%B8%87%E0%B8%9B%E0%B8%B2%E0%B8%8F%E0%B8%B4%E0%B8%AB%E0%B8%B2%E0%B8%A3%E0%B8%B4%E0%B8%A2%E0%B9%8C.m4a - File Folder Count4 - Library Folder Count1 - - 7974 - - Track ID7974 - Nameไม่เห็นฝุ่น - ArtistKala - AlbumGMM Grammy Best Of The Year 2010 - GenrePop - KindAAC audio file - Size8711531 - Total Time250813 - Disc Number1 - Disc Count2 - Track Number11 - Track Count12 - Year2010 - Date Modified2011-01-01T08:22:39Z - Date Added2011-01-01T08:22:15Z - Bit Rate256 - Sample Rate44100 - Normalization6953 - Compilation - Persistent ID84826110F3391EFD - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/GMM%20Grammy%20Best%20Of%20The%20Year%202010/1-11%20%E0%B9%84%E0%B8%A1%E0%B9%88%E0%B9%80%E0%B8%AB%E0%B9%87%E0%B8%99%E0%B8%9D%E0%B8%B8%E0%B9%88%E0%B8%99.m4a - File Folder Count4 - Library Folder Count1 - - 7976 - - Track ID7976 - Nameไม่ใช่ฉันใช่ไหม (Featuring ดา Endorphine) - Artistเสก โลโซ - AlbumGMM Grammy Best Of The Year 2010 - GenrePop - KindAAC audio file - Size8694609 - Total Time262013 - Disc Number1 - Disc Count2 - Track Number12 - Track Count12 - Year2010 - Date Modified2011-01-01T08:23:04Z - Date Added2011-01-01T08:22:40Z - Bit Rate256 - Sample Rate44100 - Normalization10224 - Compilation - Persistent ID33F4282E5D359B87 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/GMM%20Grammy%20Best%20Of%20The%20Year%202010/1-12%20%E0%B9%84%E0%B8%A1%E0%B9%88%E0%B9%83%E0%B8%8A%E0%B9%88%E0%B8%89%E0%B8%B1%E0%B8%99%E0%B9%83%E0%B8%8A%E0%B9%88%E0%B9%84%E0%B8%AB%E0%B8%A1%20(Featuring%20%E0%B8%94%E0%B8%B2%20Endorphine).m4a - File Folder Count4 - Library Folder Count1 - - 8000 - - Track ID8000 - NameForget You - ArtistCee Lo Green - ComposerAri Levine/Cee Lo Green/Bruno Mars/Phillip Lawrence/Christopher Steven Brown - Album2011 Grammy Nominees - GenrePop - KindAAC audio file - Size8264857 - Total Time223293 - Disc Number1 - Disc Count1 - Track Number1 - Track Count19 - Year2011 - Date Modified2011-02-19T11:14:37Z - Date Added2011-02-13T13:40:53Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3380471283 - Play Date UTC2011-02-13T14:18:03Z - Normalization7065 - Compilation - Artwork Count1 - Persistent ID62C0ABD0C12E5AF9 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/2011%20Grammy%20Nominees/01%20Forget%20You.m4a - File Folder Count4 - Library Folder Count1 - - 8002 - - Track ID8002 - NameNothin' On You - ArtistB.o.B Feat. Bruno Mars - ComposerBruno Mars/Ari Levine/Bobby Simmons Jr./Phillip Lawrence - Album2011 Grammy Nominees - GenrePop - KindAAC audio file - Size7935701 - Total Time224200 - Disc Number1 - Disc Count1 - Track Number2 - Track Count19 - Year2011 - Date Modified2011-02-19T11:14:37Z - Date Added2011-02-13T13:41:14Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3380471507 - Play Date UTC2011-02-13T14:21:47Z - Normalization8323 - Compilation - Artwork Count1 - Persistent ID2B3D130AF9B56D72 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/2011%20Grammy%20Nominees/02%20Nothin'%20On%20You.m4a - File Folder Count4 - Library Folder Count1 - - 8004 - - Track ID8004 - NameCalifornia Gurls - ArtistKaty Perry Feat. Snoop Dogg - ComposerB. McKee/M.S. Martin/B. Levin/K. Perry/C.Broadus/L Gottwald - Album2011 Grammy Nominees - GenrePop - KindAAC audio file - Size8304125 - Total Time235026 - Disc Number1 - Disc Count1 - Track Number3 - Track Count19 - Year2011 - Date Modified2011-02-19T11:14:38Z - Date Added2011-02-13T13:41:34Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3380471742 - Play Date UTC2011-02-13T14:25:42Z - Normalization6560 - Compilation - Artwork Count1 - Persistent ID4DD81A1A5A95E368 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/2011%20Grammy%20Nominees/03%20California%20Gurls.m4a - File Folder Count4 - Library Folder Count1 - - 8006 - - Track ID8006 - NameTelephone - ArtistLady Gaga Feat. Beyoncé - ComposerLaShawn Daniels/Lady Gaga/Lazonte Franklin/Rodney Jerkins/Beyoncé - Album2011 Grammy Nominees - GenrePop - KindAAC audio file - Size7999515 - Total Time221840 - Disc Number1 - Disc Count1 - Track Number4 - Track Count19 - Year2011 - Date Modified2011-02-19T11:14:39Z - Date Added2011-02-13T13:41:52Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3380471964 - Play Date UTC2011-02-13T14:29:24Z - Normalization5217 - Compilation - Artwork Count1 - Persistent ID3500DB9A6271359F - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/2011%20Grammy%20Nominees/04%20Telephone.m4a - File Folder Count4 - Library Folder Count1 - - 8008 - - Track ID8008 - NameLove The Way You Lie - ArtistEminem Feat. Rihanna - ComposerSkylar Grey/ALEXANDER GRANT/Marshall Mathers III - Album2011 Grammy Nominees - GenrePop - KindAAC audio file - Size9539935 - Total Time265453 - Disc Number1 - Disc Count1 - Track Number5 - Track Count19 - Year2011 - Date Modified2011-02-19T11:14:40Z - Date Added2011-02-13T13:42:09Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3380472229 - Play Date UTC2011-02-13T14:33:49Z - Normalization7905 - Compilation - Artwork Count1 - Persistent ID5CD75541AEF7B581 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/2011%20Grammy%20Nominees/05%20Love%20The%20Way%20You%20Lie.m4a - File Folder Count4 - Library Folder Count1 - - 8010 - - Track ID8010 - NameNeed You Now - ArtistLady Antebellum - ComposerC. Kelley/D. Haywood/H. Scott/J.Kear - Album2011 Grammy Nominees - GenrePop - KindAAC audio file - Size8461536 - Total Time234880 - Disc Number1 - Disc Count1 - Track Number6 - Track Count19 - Year2011 - Date Modified2011-02-19T11:14:42Z - Date Added2011-02-13T13:42:28Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3380472464 - Play Date UTC2011-02-13T14:37:44Z - Normalization8125 - Compilation - Artwork Count1 - Persistent IDC03C984F3E7BD96A - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/2011%20Grammy%20Nominees/06%20Need%20You%20Now.m4a - File Folder Count4 - Library Folder Count1 - - 8012 - - Track ID8012 - NameReady To Start - ArtistArcade Fire - ComposerArcade Fire - Album2011 Grammy Nominees - GenrePop - KindAAC audio file - Size9278967 - Total Time259453 - Disc Number1 - Disc Count1 - Track Number7 - Track Count19 - Year2011 - Date Modified2011-02-19T11:14:44Z - Date Added2011-02-13T13:42:43Z - Bit Rate256 - Sample Rate44100 - Normalization7967 - Compilation - Artwork Count1 - Persistent ID9A0AAA8EACCAA306 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/2011%20Grammy%20Nominees/07%20Ready%20To%20Start.m4a - File Folder Count4 - Library Folder Count1 - - 8014 - - Track ID8014 - NameWhataya Want From Me - ArtistAdam Lambert - ComposerMax Martin/Shellback/P!nk - Album2011 Grammy Nominees - GenrePop - KindAAC audio file - Size8315901 - Total Time227613 - Disc Number1 - Disc Count1 - Track Number8 - Track Count19 - Year2011 - Date Modified2011-02-19T11:14:45Z - Date Added2011-02-13T13:43:00Z - Bit Rate256 - Sample Rate44100 - Normalization8019 - Compilation - Artwork Count1 - Persistent IDA9C32B8D7F7CA843 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/2011%20Grammy%20Nominees/08%20Whataya%20Want%20From%20Me.m4a - File Folder Count4 - Library Folder Count1 - - 8016 - - Track ID8016 - NameHalf Of My Heart (With Taylor Swift) - ArtistJohn Mayer - ComposerJohn Mayer - Album2011 Grammy Nominees - GenrePop - KindAAC audio file - Size8804470 - Total Time234266 - Disc Number1 - Disc Count1 - Track Number9 - Track Count19 - Year2011 - Date Modified2011-02-19T11:14:46Z - Date Added2011-02-13T13:43:13Z - Bit Rate256 - Sample Rate44100 - Normalization5661 - Compilation - Artwork Count1 - Persistent ID8FFC4DE1F6AD0AFE - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/2011%20Grammy%20Nominees/09%20Half%20Of%20My%20Heart%20(With%20Taylor%20Swift).m4a - File Folder Count4 - Library Folder Count1 - - 8018 - - Track ID8018 - NameHaven't Met You Yet - ArtistMichael Bublé - ComposerAmy Foster/Michael Bublé/Alan Chang - Album2011 Grammy Nominees - GenrePop - KindAAC audio file - Size8731911 - Total Time245053 - Disc Number1 - Disc Count1 - Track Number10 - Track Count19 - Year2011 - Date Modified2011-02-19T11:14:46Z - Date Added2011-02-13T13:43:27Z - Bit Rate256 - Sample Rate44100 - Normalization6246 - Compilation - Artwork Count1 - Persistent ID3A4A617863799727 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/2011%20Grammy%20Nominees/10%20Haven't%20Met%20You%20Yet.m4a - File Folder Count4 - Library Folder Count1 - - 8020 - - Track ID8020 - NameJust The Way You Are - ArtistBruno Mars - ComposerPhillip Lawrence/Ari Levine/Bruno Mars/Khalil Walton/Khari Cain - Album2011 Grammy Nominees - GenrePop - KindAAC audio file - Size7803245 - Total Time218573 - Disc Number1 - Disc Count1 - Track Number11 - Track Count19 - Year2011 - Date Modified2011-02-19T11:14:47Z - Date Added2011-02-13T13:43:41Z - Bit Rate256 - Sample Rate44100 - Normalization4404 - Compilation - Artwork Count1 - Persistent ID7D3772F67F060F2A - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/2011%20Grammy%20Nominees/11%20Just%20The%20Way%20You%20Are.m4a - File Folder Count4 - Library Folder Count1 - - 8022 - - Track ID8022 - NameThis Is It - ArtistMichael Jackson - ComposerMichael Jackson/Paul Anka - Album2011 Grammy Nominees - GenrePop - KindAAC audio file - Size8369383 - Total Time222453 - Disc Number1 - Disc Count1 - Track Number12 - Track Count19 - Year2011 - Date Modified2011-02-19T11:14:48Z - Date Added2011-02-13T13:43:53Z - Bit Rate256 - Sample Rate44100 - Normalization5194 - Compilation - Artwork Count1 - Persistent ID47D9DA57D8BBF5EE - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/2011%20Grammy%20Nominees/12%20This%20Is%20It.m4a - File Folder Count4 - Library Folder Count1 - - 8024 - - Track ID8024 - NameBeg Steal Or Borrow - ArtistRay LaMontagne & The Pariah Dogs - ComposerRay LaMontagne - Album2011 Grammy Nominees - GenrePop - KindAAC audio file - Size9572347 - Total Time272493 - Disc Number1 - Disc Count1 - Track Number13 - Track Count19 - Year2011 - Date Modified2011-02-19T11:14:48Z - Date Added2011-02-13T13:44:04Z - Bit Rate256 - Sample Rate44100 - Normalization2923 - Compilation - Artwork Count1 - Persistent IDD19B4E478E75073E - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/2011%20Grammy%20Nominees/13%20Beg%20Steal%20Or%20Borrow.m4a - File Folder Count4 - Library Folder Count1 - - 8026 - - Track ID8026 - NameThe House That Built Me - ArtistMiranda Lambert - ComposerAllen Shamblin/Tom Douglas - Album2011 Grammy Nominees - GenrePop - KindAAC audio file - Size8080778 - Total Time227733 - Disc Number1 - Disc Count1 - Track Number14 - Track Count19 - Year2011 - Date Modified2011-02-19T11:14:49Z - Date Added2011-02-13T13:44:18Z - Bit Rate256 - Sample Rate44100 - Normalization3091 - Compilation - Artwork Count1 - Sort NameHouse That Built Me - Persistent ID847A2A294671BCE6 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/2011%20Grammy%20Nominees/14%20The%20House%20That%20Built%20Me.m4a - File Folder Count4 - Library Folder Count1 - - 8028 - - Track ID8028 - NameBabyfather - ArtistSade - ComposerHelen Adu/Stuart Matthewman/Juan Janes/Andrew Nicholls - Album2011 Grammy Nominees - GenrePop - KindAAC audio file - Size8580702 - Total Time242600 - Disc Number1 - Disc Count1 - Track Number15 - Track Count19 - Year2011 - Date Modified2011-02-19T11:14:50Z - Date Added2011-02-13T13:44:29Z - Bit Rate256 - Sample Rate44100 - Normalization2325 - Compilation - Artwork Count1 - Persistent ID24F6164D015C3B18 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/2011%20Grammy%20Nominees/15%20Babyfather.m4a - File Folder Count4 - Library Folder Count1 - - 8030 - - Track ID8030 - NameThe Only Exception - ArtistParamore - ComposerHayley Williams/Josh Farro - Album2011 Grammy Nominees - GenrePop - KindAAC audio file - Size10053684 - Total Time267493 - Disc Number1 - Disc Count1 - Track Number16 - Track Count19 - Year2011 - Date Modified2011-02-19T11:14:50Z - Date Added2011-02-13T13:44:41Z - Bit Rate256 - Sample Rate44100 - Normalization3796 - Compilation - Artwork Count1 - Sort NameOnly Exception - Persistent IDF1C10A9B56D76EE3 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/2011%20Grammy%20Nominees/16%20The%20Only%20Exception.m4a - File Folder Count4 - Library Folder Count1 - - 8032 - - Track ID8032 - NameHey, Soul Sister (Live) - ArtistTrain - ComposerEspen Lind/Pat Monahan/Amund Björklund - Album2011 Grammy Nominees - GenrePop - KindAAC audio file - Size8023217 - Total Time213226 - Disc Number1 - Disc Count1 - Track Number17 - Track Count19 - Year2011 - Date Modified2011-02-19T11:14:51Z - Date Added2011-02-13T13:44:54Z - Bit Rate256 - Sample Rate44100 - Normalization5897 - Compilation - Artwork Count1 - Persistent IDED130F7E778DE387 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/2011%20Grammy%20Nominees/17%20Hey,%20Soul%20Sister%20(Live).m4a - File Folder Count4 - Library Folder Count1 - - 8034 - - Track ID8034 - NameMisery - ArtistMaroon 5 - ComposerSam Farrar/Jesse Carmichael/Adam Levine - Album2011 Grammy Nominees - GenrePop - KindAAC audio file - Size7675895 - Total Time213213 - Disc Number1 - Disc Count1 - Track Number18 - Track Count19 - Year2011 - Date Modified2011-02-19T11:14:51Z - Date Added2011-02-13T13:45:04Z - Bit Rate256 - Sample Rate44100 - Normalization8064 - Compilation - Artwork Count1 - Persistent ID4EE4AA17950B0D6C - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/2011%20Grammy%20Nominees/18%20Misery.m4a - File Folder Count4 - Library Folder Count1 - - 8036 - - Track ID8036 - NameDon't Stop Believin' (Regionals Version) - ArtistGlee Cast - ComposerN Schon/J. Cain/Perry's - Album2011 Grammy Nominees - GenrePop - KindAAC audio file - Size7996215 - Total Time223520 - Disc Number1 - Disc Count1 - Track Number19 - Track Count19 - Year2011 - Date Modified2011-02-19T11:14:52Z - Date Added2011-02-13T13:45:13Z - Bit Rate256 - Sample Rate44100 - Normalization10393 - Compilation - Artwork Count1 - Persistent ID980E7BC0262776D1 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/2011%20Grammy%20Nominees/19%20Don't%20Stop%20Believin'%20(Regionals%20Version).m4a - File Folder Count4 - Library Folder Count1 - - 8038 - - Track ID8038 - NameFirefly - Main Title - ArtistGreg Edmonson, Sonny Rhodes - Album ArtistGreg Edmonson - ComposerGreg Edmonson - AlbumFirefly - GenreSoundtracks - KindMPEG audio file - Size1564708 - Total Time52323 - Disc Number1 - Disc Count1 - Track Number1 - Track Count25 - Year2005 - Date Modified2011-03-21T16:03:04Z - Date Added2011-03-21T16:36:10Z - Bit Rate226 - Sample Rate44100 - CommentsAmazon.com Song ID: 211958476 - Play Count3 - Play Date3385878313 - Play Date UTC2011-04-17T04:15:13Z - Artwork Count1 - Persistent ID8A9113C5A13BA5FE - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Greg%20Edmonson/Firefly/01%20Firefly%20-%20Main%20Title.mp3 - File Folder Count4 - Library Folder Count1 - - 8040 - - Track ID8040 - NameBig Bar Fight - ArtistGreg Edmonson - Album ArtistGreg Edmonson - ComposerGreg Edmonson - AlbumFirefly - GenreSoundtracks - KindMPEG audio file - Size3468971 - Total Time117002 - Disc Number1 - Disc Count1 - Track Number2 - Track Count25 - Year2005 - Date Modified2011-03-21T16:04:14Z - Date Added2011-03-21T16:36:10Z - Bit Rate231 - Sample Rate44100 - CommentsAmazon.com Song ID: 211958477 - Play Count4 - Play Date3385878430 - Play Date UTC2011-04-17T04:17:10Z - Artwork Count1 - Persistent ID23906ECED38A0F93 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Greg%20Edmonson/Firefly/02%20Big%20Bar%20Fight.mp3 - File Folder Count4 - Library Folder Count1 - - 8042 - - Track ID8042 - NameHeart of Gold Montage - ArtistGreg Edmonson - Album ArtistGreg Edmonson - ComposerGreg Edmonson - AlbumFirefly - GenreSoundtracks - KindMPEG audio file - Size3760146 - Total Time130821 - Disc Number1 - Disc Count1 - Track Number3 - Track Count25 - Year2005 - Date Modified2011-03-21T15:57:49Z - Date Added2011-03-21T16:36:10Z - Bit Rate225 - Sample Rate44100 - CommentsAmazon.com Song ID: 211958478 - Play Count4 - Play Date3385878561 - Play Date UTC2011-04-17T04:19:21Z - Artwork Count1 - Persistent ID72021235A0DE1E7D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Greg%20Edmonson/Firefly/03%20Heart%20of%20Gold%20Montage.mp3 - File Folder Count4 - Library Folder Count1 - - 8044 - - Track ID8044 - NameWhitefall / Book - ArtistGreg Edmonson - Album ArtistGreg Edmonson - ComposerGreg Edmonson - AlbumFirefly - GenreSoundtracks - KindMPEG audio file - Size3952892 - Total Time140512 - Disc Number1 - Disc Count1 - Track Number4 - Track Count25 - Year2005 - Date Modified2011-03-21T16:02:02Z - Date Added2011-03-21T16:36:10Z - Bit Rate220 - Sample Rate44100 - CommentsAmazon.com Song ID: 211958479 - Play Count5 - Play Date3385878701 - Play Date UTC2011-04-17T04:21:41Z - Artwork Count1 - Persistent IDF82C3C0AF09AF11D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Greg%20Edmonson/Firefly/04%20Whitefall%20_%20Book.mp3 - File Folder Count4 - Library Folder Count1 - - 8046 - - Track ID8046 - NameEarly Takes Serenity - ArtistGreg Edmonson - Album ArtistGreg Edmonson - ComposerGreg Edmonson - AlbumFirefly - GenreSoundtracks - KindMPEG audio file - Size4473093 - Total Time156290 - Disc Number1 - Disc Count1 - Track Number5 - Track Count25 - Year2005 - Date Modified2011-03-21T16:27:10Z - Date Added2011-03-21T16:36:10Z - Bit Rate224 - Sample Rate44100 - CommentsAmazon.com Song ID: 211958480 - Play Count2 - Play Date3385878858 - Play Date UTC2011-04-17T04:24:18Z - Artwork Count1 - Persistent IDB807F6183A5D5AEB - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Greg%20Edmonson/Firefly/05%20Early%20Takes%20Serenity.mp3 - File Folder Count4 - Library Folder Count1 - - 8048 - - Track ID8048 - NameThe Funeral - ArtistGreg Edmonson - Album ArtistGreg Edmonson - ComposerGreg Edmonson - AlbumFirefly - GenreSoundtracks - KindMPEG audio file - Size4231258 - Total Time156186 - Disc Number1 - Disc Count1 - Track Number6 - Track Count25 - Year2005 - Date Modified2011-03-21T16:22:20Z - Date Added2011-03-21T16:36:10Z - Bit Rate212 - Sample Rate44100 - CommentsAmazon.com Song ID: 211958481 - Play Count2 - Play Date3385879014 - Play Date UTC2011-04-17T04:26:54Z - Artwork Count1 - Sort NameFuneral - Persistent ID76FFECE866BD0F02 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Greg%20Edmonson/Firefly/06%20The%20Funeral.mp3 - File Folder Count4 - Library Folder Count1 - - 8050 - - Track ID8050 - NameRiver's Perception / Saffron - ArtistGreg Edmonson - Album ArtistGreg Edmonson - ComposerGreg Edmonson - AlbumFirefly - GenreSoundtracks - KindMPEG audio file - Size3965159 - Total Time134922 - Disc Number1 - Disc Count1 - Track Number7 - Track Count25 - Year2005 - Date Modified2011-03-21T16:17:12Z - Date Added2011-03-21T16:36:10Z - Bit Rate230 - Sample Rate44100 - CommentsAmazon.com Song ID: 211958482 - Play Count2 - Play Date3385879149 - Play Date UTC2011-04-17T04:29:09Z - Artwork Count1 - Persistent IDB6620C831311233F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Greg%20Edmonson/Firefly/07%20River's%20Perception%20_%20Saffron.mp3 - File Folder Count4 - Library Folder Count1 - - 8052 - - Track ID8052 - NameMal Fights Niska / Back Home - ArtistGreg Edmonson - Album ArtistGreg Edmonson - ComposerGreg Edmonson - AlbumFirefly - GenreSoundtracks - KindMPEG audio file - Size3375460 - Total Time114442 - Disc Number1 - Disc Count1 - Track Number8 - Track Count25 - Year2005 - Date Modified2011-03-21T16:19:31Z - Date Added2011-03-21T16:36:10Z - Bit Rate230 - Sample Rate44100 - CommentsAmazon.com Song ID: 211958483 - Play Count3 - Play Date3385879263 - Play Date UTC2011-04-17T04:31:03Z - Artwork Count1 - Persistent ID54D3F8833A4A0A19 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Greg%20Edmonson/Firefly/08%20Mal%20Fights%20Niska%20_%20Back%20Home.mp3 - File Folder Count4 - Library Folder Count1 - - 8054 - - Track ID8054 - NameRiver Tricks Early - ArtistGreg Edmonson - Album ArtistGreg Edmonson - ComposerGreg Edmonson - AlbumFirefly - GenreSoundtracks - KindMPEG audio file - Size5845654 - Total Time210442 - Disc Number1 - Disc Count1 - Track Number9 - Track Count25 - Year2005 - Date Modified2011-03-21T16:07:57Z - Date Added2011-03-21T16:36:10Z - Bit Rate219 - Sample Rate44100 - CommentsAmazon.com Song ID: 211958484 - Play Count2 - Play Date3385879474 - Play Date UTC2011-04-17T04:34:34Z - Artwork Count1 - Persistent IDC21DDDC04489FAC7 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Greg%20Edmonson/Firefly/09%20River%20Tricks%20Early.mp3 - File Folder Count4 - Library Folder Count1 - - 8056 - - Track ID8056 - NameRiver Understands Simon - ArtistGreg Edmonson - Album ArtistGreg Edmonson - ComposerGreg Edmonson - AlbumFirefly - GenreSoundtracks - KindMPEG audio file - Size3317805 - Total Time124238 - Disc Number1 - Disc Count1 - Track Number10 - Track Count25 - Year2005 - Date Modified2011-03-21T16:25:10Z - Date Added2011-03-21T16:36:10Z - Bit Rate208 - Sample Rate44100 - CommentsAmazon.com Song ID: 211958485 - Play Count1 - Play Date3383629141 - Play Date UTC2011-03-22T03:29:01Z - Artwork Count1 - Persistent ID8AB67BFD855B0180 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Greg%20Edmonson/Firefly/10%20River%20Understands%20Simon.mp3 - File Folder Count4 - Library Folder Count1 - - 8058 - - Track ID8058 - NameLeaving / Caper / Spaceball - ArtistGreg Edmonson - Album ArtistGreg Edmonson - ComposerGreg Edmonson - AlbumFirefly - GenreSoundtracks - KindMPEG audio file - Size4447826 - Total Time159216 - Disc Number1 - Disc Count1 - Track Number11 - Track Count25 - Year2005 - Date Modified2011-03-21T15:59:12Z - Date Added2011-03-21T16:36:10Z - Bit Rate219 - Sample Rate44100 - CommentsAmazon.com Song ID: 211958486 - Play Count1 - Play Date3383629300 - Play Date UTC2011-03-22T03:31:40Z - Artwork Count1 - Persistent IDEEBF81F4C2C6A2EB - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Greg%20Edmonson/Firefly/11%20Leaving%20_%20Caper%20_%20Spaceball.mp3 - File Folder Count4 - Library Folder Count1 - - 8060 - - Track ID8060 - NameRiver's Afraid / Niska / Torture - ArtistGreg Edmonson - Album ArtistGreg Edmonson - ComposerGreg Edmonson - AlbumFirefly - GenreSoundtracks - KindMPEG audio file - Size5563287 - Total Time201377 - Disc Number1 - Disc Count1 - Track Number12 - Track Count25 - Year2005 - Date Modified2011-03-21T16:21:03Z - Date Added2011-03-21T16:36:10Z - Bit Rate217 - Sample Rate44100 - CommentsAmazon.com Song ID: 211958487 - Play Count1 - Play Date3383629502 - Play Date UTC2011-03-22T03:35:02Z - Artwork Count1 - Persistent IDD18D4AF8ED6BF114 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Greg%20Edmonson/Firefly/12%20River's%20Afraid%20_%20Niska%20_%20Torture.mp3 - File Folder Count4 - Library Folder Count1 - - 8062 - - Track ID8062 - NameIn My Bunk / Jayne's Statue / Boom - ArtistGreg Edmonson - Album ArtistGreg Edmonson - ComposerGreg Edmonson - AlbumFirefly - GenreSoundtracks - KindMPEG audio file - Size4168249 - Total Time148793 - Disc Number1 - Disc Count1 - Track Number13 - Track Count25 - Year2005 - Date Modified2011-03-21T16:00:11Z - Date Added2011-03-21T16:36:10Z - Bit Rate219 - Sample Rate44100 - CommentsAmazon.com Song ID: 211958488 - Play Count1 - Play Date3383630566 - Play Date UTC2011-03-22T03:52:46Z - Artwork Count1 - Persistent ID055FE23D0C09031C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Greg%20Edmonson/Firefly/13%20In%20My%20Bunk%20_%20Jayne's%20Statue%20_%20Boom.mp3 - File Folder Count4 - Library Folder Count1 - - 8064 - - Track ID8064 - NameInara's Suite - ArtistGreg Edmonson - Album ArtistGreg Edmonson - ComposerGreg Edmonson - AlbumFirefly - GenreSoundtracks - KindMPEG audio file - Size5599219 - Total Time209893 - Disc Number1 - Disc Count1 - Track Number14 - Track Count25 - Year2005 - Date Modified2011-03-21T16:13:20Z - Date Added2011-03-21T16:36:10Z - Bit Rate210 - Sample Rate44100 - CommentsAmazon.com Song ID: 211958489 - Play Count3 - Play Date3383670674 - Play Date UTC2011-03-22T15:01:14Z - Artwork Count1 - Persistent IDCA00EEE4FD956217 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Greg%20Edmonson/Firefly/14%20Inara's%20Suite.mp3 - File Folder Count4 - Library Folder Count1 - - 8066 - - Track ID8066 - NameOut Of Gas / Empty Derelict - ArtistGreg Edmonson - Album ArtistGreg Edmonson - ComposerGreg Edmonson - AlbumFirefly - GenreSoundtracks - KindMPEG audio file - Size3167180 - Total Time110576 - Disc Number1 - Disc Count1 - Track Number15 - Track Count25 - Year2005 - Date Modified2011-03-21T16:14:11Z - Date Added2011-03-21T16:36:10Z - Bit Rate223 - Sample Rate44100 - CommentsAmazon.com Song ID: 211958490 - Play Count2 - Play Date3383630886 - Play Date UTC2011-03-22T03:58:06Z - Artwork Count1 - Persistent ID820CF2B82B0710C2 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Greg%20Edmonson/Firefly/15%20Out%20Of%20Gas%20_%20Empty%20Derelict.mp3 - File Folder Count4 - Library Folder Count1 - - 8068 - - Track ID8068 - NameBook's Hair / Ready For Battle - ArtistGreg Edmonson - Album ArtistGreg Edmonson - ComposerGreg Edmonson - AlbumFirefly - GenreSoundtracks - KindMPEG audio file - Size3509096 - Total Time119484 - Disc Number1 - Disc Count1 - Track Number16 - Track Count25 - Year2005 - Date Modified2011-03-21T16:23:50Z - Date Added2011-03-21T16:36:10Z - Bit Rate229 - Sample Rate44100 - CommentsAmazon.com Song ID: 211958491 - Play Count1 - Play Date3383631006 - Play Date UTC2011-03-22T04:00:06Z - Artwork Count1 - Persistent IDD53ED034610CD0BC - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Greg%20Edmonson/Firefly/16%20Book's%20Hair%20_%20Ready%20For%20Battle.mp3 - File Folder Count4 - Library Folder Count1 - - 8070 - - Track ID8070 - NameTears / River's Eyes - ArtistGreg Edmonson - Album ArtistGreg Edmonson - ComposerGreg Edmonson - AlbumFirefly - GenreSoundtracks - KindMPEG audio file - Size3371326 - Total Time119823 - Disc Number1 - Disc Count1 - Track Number17 - Track Count25 - Year2005 - Date Modified2011-03-21T16:11:19Z - Date Added2011-03-21T16:36:10Z - Bit Rate219 - Sample Rate44100 - CommentsAmazon.com Song ID: 211958492 - Play Count2 - Play Date3383670871 - Play Date UTC2011-03-22T15:04:31Z - Artwork Count1 - Persistent IDAD8F1B9892CF1C2E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Greg%20Edmonson/Firefly/17%20Tears%20_%20River's%20Eyes.mp3 - File Folder Count4 - Library Folder Count1 - - 8072 - - Track ID8072 - NameCows / New Dress / My Crew - ArtistGreg Edmonson - Album ArtistGreg Edmonson - ComposerGreg Edmonson - AlbumFirefly - GenreSoundtracks - KindMPEG audio file - Size3743706 - Total Time131683 - Disc Number1 - Disc Count1 - Track Number18 - Track Count25 - Year2005 - Date Modified2011-03-21T16:01:13Z - Date Added2011-03-21T16:36:10Z - Bit Rate222 - Sample Rate44100 - CommentsAmazon.com Song ID: 211958493 - Play Count2 - Play Date3383671003 - Play Date UTC2011-03-22T15:06:43Z - Artwork Count1 - Persistent ID57921B8F2726985E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Greg%20Edmonson/Firefly/18%20Cows%20_%20New%20Dress%20_%20My%20Crew.mp3 - File Folder Count4 - Library Folder Count1 - - 8074 - - Track ID8074 - NameBoarding The Serenity / Derelict - ArtistGreg Edmonson - Album ArtistGreg Edmonson - ComposerGreg Edmonson - AlbumFirefly - GenreSoundtracks - KindMPEG audio file - Size3420068 - Total Time122253 - Disc Number1 - Disc Count1 - Track Number19 - Track Count25 - Year2005 - Date Modified2011-03-21T16:15:34Z - Date Added2011-03-21T16:36:10Z - Bit Rate218 - Sample Rate44100 - CommentsAmazon.com Song ID: 211958494 - Play Count2 - Play Date3383671125 - Play Date UTC2011-03-22T15:08:45Z - Artwork Count1 - Persistent ID9D38091D18A16C78 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Greg%20Edmonson/Firefly/19%20Boarding%20The%20Serenity%20_%20Derelict.mp3 - File Folder Count4 - Library Folder Count1 - - 8076 - - Track ID8076 - NameBurgess Kills / Captain & Ship - ArtistGreg Edmonson - Album ArtistGreg Edmonson - ComposerGreg Edmonson, Alan Steinberger - AlbumFirefly - GenreSoundtracks - KindMPEG audio file - Size6180956 - Total Time206680 - Disc Number1 - Disc Count1 - Track Number20 - Track Count25 - Year2005 - Date Modified2011-03-21T16:09:07Z - Date Added2011-03-21T16:36:10Z - Bit Rate236 - Sample Rate44100 - CommentsAmazon.com Song ID: 211958495 - Play Count1 - Play Date3383631586 - Play Date UTC2011-03-22T04:09:46Z - Artwork Count1 - Persistent ID11B7C7433B453B24 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Greg%20Edmonson/Firefly/20%20Burgess%20Kills%20_%20Captain%20&%20Ship.mp3 - File Folder Count4 - Library Folder Count1 - - 8078 - - Track ID8078 - NameSaved / Isn't Home? / Reavers - ArtistGreg Edmonson - Album ArtistGreg Edmonson - ComposerGreg Edmonson - AlbumFirefly - GenreSoundtracks - KindMPEG audio file - Size4992461 - Total Time176013 - Disc Number1 - Disc Count1 - Track Number21 - Track Count25 - Year2005 - Date Modified2011-03-21T16:10:33Z - Date Added2011-03-21T16:36:10Z - Bit Rate223 - Sample Rate44100 - CommentsAmazon.com Song ID: 211958496 - Play Count1 - Play Date3383631762 - Play Date UTC2011-03-22T04:12:42Z - Artwork Count1 - Persistent IDE8B45325E64B7571 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Greg%20Edmonson/Firefly/21%20Saved%20_%20Isn't%20Home_%20_%20Reavers.mp3 - File Folder Count4 - Library Folder Count1 - - 8080 - - Track ID8080 - NameReavers Chase Serenity - ArtistGreg Edmonson - Album ArtistGreg Edmonson - ComposerGreg Edmonson - AlbumFirefly - GenreSoundtracks - KindMPEG audio file - Size6313592 - Total Time202396 - Disc Number1 - Disc Count1 - Track Number22 - Track Count25 - Year2005 - Date Modified2011-03-21T16:05:45Z - Date Added2011-03-21T16:36:10Z - Bit Rate246 - Sample Rate44100 - CommentsAmazon.com Song ID: 211958497 - Play Count1 - Play Date3383631964 - Play Date UTC2011-03-22T04:16:04Z - Artwork Count1 - Persistent ID2D29928AAC4773FB - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Greg%20Edmonson/Firefly/22%20Reavers%20Chase%20Serenity.mp3 - File Folder Count4 - Library Folder Count1 - - 8082 - - Track ID8082 - NameRiver's Dance - ArtistGreg Edmonson - Album ArtistGreg Edmonson - ComposerGreg Edmonson - AlbumFirefly - GenreSoundtracks - KindMPEG audio file - Size2399382 - Total Time110968 - Disc Number1 - Disc Count1 - Track Number23 - Track Count25 - Year2005 - Date Modified2011-03-21T16:03:34Z - Date Added2011-03-21T16:36:10Z - Bit Rate167 - Sample Rate44100 - CommentsAmazon.com Song ID: 211958498 - Play Count2 - Play Date3383671240 - Play Date UTC2011-03-22T15:10:40Z - Artwork Count1 - Persistent IDE04BDE38C61FC00B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Greg%20Edmonson/Firefly/23%20River's%20Dance.mp3 - File Folder Count4 - Library Folder Count1 - - 8084 - - Track ID8084 - NameInside The Tam House - ArtistGreg Edmonson - Album ArtistGreg Edmonson - ComposerGreg Edmonson, Alan Steinberger - AlbumFirefly - GenreSoundtracks - KindMPEG audio file - Size4005666 - Total Time142315 - Disc Number1 - Disc Count1 - Track Number24 - Track Count25 - Year2005 - Date Modified2011-03-21T16:18:42Z - Date Added2011-03-21T16:36:10Z - Bit Rate220 - Sample Rate44100 - CommentsAmazon.com Song ID: 211958499 - Play Count2 - Play Date3383671384 - Play Date UTC2011-03-22T15:13:04Z - Artwork Count1 - Persistent IDCC68F01C25D7778A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Greg%20Edmonson/Firefly/24%20Inside%20The%20Tam%20House.mp3 - File Folder Count4 - Library Folder Count1 - - 8086 - - Track ID8086 - NameDying Ship / Naked Mal - ArtistGreg Edmonson - Album ArtistGreg Edmonson - ComposerGreg Edmonson - AlbumFirefly - GenreSoundtracks - KindMPEG audio file - Size3744317 - Total Time130716 - Disc Number1 - Disc Count1 - Track Number25 - Track Count25 - Year2005 - Date Modified2011-03-21T16:02:44Z - Date Added2011-03-21T16:36:10Z - Bit Rate224 - Sample Rate44100 - CommentsAmazon.com Song ID: 211958500 - Play Count3 - Play Date3384364998 - Play Date UTC2011-03-30T15:53:18Z - Artwork Count1 - Persistent ID81DA75B23F049775 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Greg%20Edmonson/Firefly/25%20Dying%20Ship%20_%20Naked%20Mal.mp3 - File Folder Count4 - Library Folder Count1 - - 8094 - - Track ID8094 - NameString Quartet No. 5: I. - ArtistKronos Quartet - Album ArtistKronos Quartet - ComposerPhilip Glass - AlbumKronos Quartet Performs Philip Glass - GenreClassical - KindMPEG audio file - Size2611760 - Total Time71079 - Disc Number1 - Disc Count1 - Track Number1 - Track Count18 - Year2005 - Date Modified2011-03-28T02:06:36Z - Date Added2011-03-28T03:22:17Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 203498456 - Play Count8 - Play Date3457606549 - Play Date UTC2013-07-25T08:45:49Z - Skip Count1 - Skip Date2013-04-16T09:02:14Z - Artwork Count1 - Persistent ID1806C9E8C4069F95 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kronos%20Quartet/Kronos%20Quartet%20Performs%20Philip%20Glass/01%20String%20Quartet%20No.%205_%20I..mp3 - File Folder Count4 - Library Folder Count1 - - 8096 - - Track ID8096 - NameString Quartet No. 5: II. - ArtistKronos Quartet - Album ArtistKronos Quartet - ComposerPhilip Glass - AlbumKronos Quartet Performs Philip Glass - GenreClassical - KindMPEG audio file - Size6071628 - Total Time179200 - Disc Number1 - Disc Count1 - Track Number2 - Track Count18 - Year2005 - Date Modified2011-03-28T02:02:17Z - Date Added2011-03-28T03:22:17Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 203498457 - Play Count4 - Play Date3385742138 - Play Date UTC2011-04-15T14:25:38Z - Artwork Count1 - Persistent ID8367EAAD79FC5F2A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kronos%20Quartet/Kronos%20Quartet%20Performs%20Philip%20Glass/02%20String%20Quartet%20No.%205_%20II..mp3 - File Folder Count4 - Library Folder Count1 - - 8098 - - Track ID8098 - NameString Quartet No. 5: III. - ArtistKronos Quartet - Album ArtistKronos Quartet - ComposerPhilip Glass - AlbumKronos Quartet Performs Philip Glass - GenreClassical - KindMPEG audio file - Size10839708 - Total Time328202 - Disc Number1 - Disc Count1 - Track Number3 - Track Count18 - Year2005 - Date Modified2011-03-28T02:05:51Z - Date Added2011-03-28T03:22:17Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 203498458 - Play Count4 - Play Date3385742466 - Play Date UTC2011-04-15T14:31:06Z - Artwork Count1 - Persistent ID111FF75612035CF8 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kronos%20Quartet/Kronos%20Quartet%20Performs%20Philip%20Glass/03%20String%20Quartet%20No.%205_%20III..mp3 - File Folder Count4 - Library Folder Count1 - - 8100 - - Track ID8100 - NameString Quartet No. 5: IV. - ArtistKronos Quartet - Album ArtistKronos Quartet - ComposerPhilip Glass - AlbumKronos Quartet Performs Philip Glass - GenreClassical - KindMPEG audio file - Size9240594 - Total Time278230 - Disc Number1 - Disc Count1 - Track Number4 - Track Count18 - Year2005 - Date Modified2011-03-28T02:15:08Z - Date Added2011-03-28T03:22:17Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 203498459 - Play Count5 - Play Date3385742744 - Play Date UTC2011-04-15T14:35:44Z - Artwork Count1 - Persistent IDBFE0D437D4C47A32 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kronos%20Quartet/Kronos%20Quartet%20Performs%20Philip%20Glass/04%20String%20Quartet%20No.%205_%20IV..mp3 - File Folder Count4 - Library Folder Count1 - - 8102 - - Track ID8102 - NameString Quartet No. 5: V. - ArtistKronos Quartet - Album ArtistKronos Quartet - ComposerPhilip Glass - AlbumKronos Quartet Performs Philip Glass - GenreClassical - KindMPEG audio file - Size15097872 - Total Time461270 - Disc Number1 - Disc Count1 - Track Number5 - Track Count18 - Year2005 - Date Modified2011-03-28T02:14:21Z - Date Added2011-03-28T03:22:17Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 203498460 - Play Count2 - Play Date3385743205 - Play Date UTC2011-04-15T14:43:25Z - Artwork Count1 - Persistent ID5618EF95DEF71315 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kronos%20Quartet/Kronos%20Quartet%20Performs%20Philip%20Glass/05%20String%20Quartet%20No.%205_%20V..mp3 - File Folder Count4 - Library Folder Count1 - - 8104 - - Track ID8104 - NameString Quartet No. 4 (Buzcak): I. - ArtistKronos Quartet - Album ArtistKronos Quartet - ComposerPhilip Glass - AlbumKronos Quartet Performs Philip Glass - GenreClassical - KindMPEG audio file - Size15699751 - Total Time480078 - Disc Number1 - Disc Count1 - Track Number6 - Track Count18 - Year2005 - Date Modified2011-03-28T02:09:30Z - Date Added2011-03-28T03:22:17Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 203498461 - Play Count1 - Play Date3384399804 - Play Date UTC2011-03-31T01:33:24Z - Artwork Count1 - Persistent ID65B373988731A08A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kronos%20Quartet/Kronos%20Quartet%20Performs%20Philip%20Glass/06%20String%20Quartet%20No.%204%20(Buzcak)_%20I..mp3 - File Folder Count4 - Library Folder Count1 - - 8106 - - Track ID8106 - NameString Quartet No. 4 (Buczak): II. - ArtistKronos Quartet - Album ArtistKronos Quartet - ComposerPhilip Glass - AlbumKronos Quartet Performs Philip Glass - GenreClassical - KindMPEG audio file - Size12659518 - Total Time385071 - Disc Number1 - Disc Count1 - Track Number7 - Track Count18 - Year2005 - Date Modified2011-03-28T02:16:20Z - Date Added2011-03-28T03:22:17Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 203498462 - Artwork Count1 - Persistent ID2093094AC33997E2 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kronos%20Quartet/Kronos%20Quartet%20Performs%20Philip%20Glass/07%20String%20Quartet%20No.%204%20(Buczak)_%20II..mp3 - File Folder Count4 - Library Folder Count1 - - 8108 - - Track ID8108 - NameString Quartet No. 4 (Buczak): III. - ArtistKronos Quartet - Album ArtistKronos Quartet - ComposerPhilip Glass - AlbumKronos Quartet Performs Philip Glass - GenreClassical - KindMPEG audio file - Size17244533 - Total Time528352 - Disc Number1 - Disc Count1 - Track Number8 - Track Count18 - Year2005 - Date Modified2011-03-28T02:08:04Z - Date Added2011-03-28T03:22:17Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 203498463 - Artwork Count1 - Persistent IDAF28B8B4F7751183 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kronos%20Quartet/Kronos%20Quartet%20Performs%20Philip%20Glass/08%20String%20Quartet%20No.%204%20(Buczak)_%20III..mp3 - File Folder Count4 - Library Folder Count1 - - 8110 - - Track ID8110 - NameString Quartet No. 2 (Company): I. - ArtistKronos Quartet - Album ArtistKronos Quartet - ComposerPhilip Glass - AlbumKronos Quartet Performs Philip Glass - GenreClassical - KindMPEG audio file - Size4510150 - Total Time130403 - Disc Number1 - Disc Count1 - Track Number9 - Track Count18 - Year2005 - Date Modified2011-03-28T02:10:34Z - Date Added2011-03-28T03:22:17Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 203498464 - Artwork Count1 - Persistent ID9388853FDC866838 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kronos%20Quartet/Kronos%20Quartet%20Performs%20Philip%20Glass/09%20String%20Quartet%20No.%202%20(Company)_%20I..mp3 - File Folder Count4 - Library Folder Count1 - - 8112 - - Track ID8112 - NameString Quartet No. 2 (Company): II. - ArtistKronos Quartet - Album ArtistKronos Quartet - ComposerPhilip Glass - AlbumKronos Quartet Performs Philip Glass - GenreClassical - KindMPEG audio file - Size3421788 - Total Time96391 - Disc Number1 - Disc Count1 - Track Number10 - Track Count18 - Year2005 - Date Modified2011-03-28T02:04:09Z - Date Added2011-03-28T03:22:17Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 203498465 - Artwork Count1 - Persistent ID8FFE82615A3E01F7 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kronos%20Quartet/Kronos%20Quartet%20Performs%20Philip%20Glass/10%20String%20Quartet%20No.%202%20(Company)_%20II..mp3 - File Folder Count4 - Library Folder Count1 - - 8114 - - Track ID8114 - NameString Quartet No. 2 (Company): III. - ArtistKronos Quartet - Album ArtistKronos Quartet - ComposerPhilip Glass - AlbumKronos Quartet Performs Philip Glass - GenreClassical - KindMPEG audio file - Size3303090 - Total Time92682 - Disc Number1 - Disc Count1 - Track Number11 - Track Count18 - Year2005 - Date Modified2011-03-28T02:03:50Z - Date Added2011-03-28T03:22:17Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 203498466 - Artwork Count1 - Persistent IDCCAF0B07BEE21ACF - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kronos%20Quartet/Kronos%20Quartet%20Performs%20Philip%20Glass/11%20String%20Quartet%20No.%202%20(Company)_%20III..mp3 - File Folder Count4 - Library Folder Count1 - - 8116 - - Track ID8116 - NameString Quartet No. 2 (Company): IV. - ArtistKronos Quartet - Album ArtistKronos Quartet - ComposerPhilip Glass - AlbumKronos Quartet Performs Philip Glass - GenreClassical - KindMPEG audio file - Size4570340 - Total Time132284 - Disc Number1 - Disc Count1 - Track Number12 - Track Count18 - Year2005 - Date Modified2011-03-28T02:12:42Z - Date Added2011-03-28T03:22:17Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 203498467 - Artwork Count1 - Persistent ID1DE992764B28170D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kronos%20Quartet/Kronos%20Quartet%20Performs%20Philip%20Glass/12%20String%20Quartet%20No.%202%20(Company)_%20IV..mp3 - File Folder Count4 - Library Folder Count1 - - 8118 - - Track ID8118 - NameString Quartet No. 3 (Mishima): 1957-Award Montage - ArtistKronos Quartet - Album ArtistKronos Quartet - ComposerPhilip Glass - AlbumKronos Quartet Performs Philip Glass - GenreClassical - KindMPEG audio file - Size7132460 - Total Time212349 - Disc Number1 - Disc Count1 - Track Number13 - Track Count18 - Year2005 - Date Modified2011-03-28T02:10:10Z - Date Added2011-03-28T03:22:17Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 203498468 - Artwork Count1 - Persistent IDA6B93DD33B58C75B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kronos%20Quartet/Kronos%20Quartet%20Performs%20Philip%20Glass/13%20String%20Quartet%20No.%203%20(Mishima)_%201957-Award%20Montage.mp3 - File Folder Count4 - Library Folder Count1 - - 8120 - - Track ID8120 - NameString Quartet No. 3 (Mishima): November 25-Ichigaya - ArtistKronos Quartet - Album ArtistKronos Quartet - ComposerPhilip Glass - AlbumKronos Quartet Performs Philip Glass - GenreClassical - KindMPEG audio file - Size2986309 - Total Time82782 - Disc Number1 - Disc Count1 - Track Number14 - Track Count18 - Year2005 - Date Modified2011-03-28T02:11:51Z - Date Added2011-03-28T03:22:17Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 203498469 - Artwork Count1 - Persistent ID795397D30CEDA7E9 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kronos%20Quartet/Kronos%20Quartet%20Performs%20Philip%20Glass/14%20String%20Quartet%20No.%203%20(Mishima)_%20November%2025-Ichigaya.mp3 - File Folder Count4 - Library Folder Count1 - - 8122 - - Track ID8122 - NameString Quartet No. 3 (Mishima): 1934-Grandmother and Kimitake - ArtistKronos Quartet - Album ArtistKronos Quartet - ComposerPhilip Glass - AlbumKronos Quartet Performs Philip Glass - GenreClassical - KindMPEG audio file - Size5584361 - Total Time163970 - Disc Number1 - Disc Count1 - Track Number15 - Track Count18 - Year2005 - Date Modified2011-03-28T02:11:11Z - Date Added2011-03-28T03:22:17Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 203498470 - Artwork Count1 - Persistent ID8FEF74219A2116E1 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kronos%20Quartet/Kronos%20Quartet%20Performs%20Philip%20Glass/15%20String%20Quartet%20No.%203%20(Mishima)_%201934-Grandmother%20and%20Kimitake.mp3 - File Folder Count4 - Library Folder Count1 - - 8124 - - Track ID8124 - NameString Quartet No. 3 (Mishima): 1962-Body Building - ArtistKronos Quartet - Album ArtistKronos Quartet - ComposerPhilip Glass - AlbumKronos Quartet Performs Philip Glass - GenreClassical - KindMPEG audio file - Size3548042 - Total Time100336 - Disc Number1 - Disc Count1 - Track Number16 - Track Count18 - Year2005 - Date Modified2011-03-28T02:11:33Z - Date Added2011-03-28T03:22:17Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 203498471 - Play Count1 - Play Date3384192001 - Play Date UTC2011-03-28T15:50:01Z - Artwork Count1 - Persistent ID3511B6E96B589667 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kronos%20Quartet/Kronos%20Quartet%20Performs%20Philip%20Glass/16%20String%20Quartet%20No.%203%20(Mishima)_%201962-Body%20Building.mp3 - File Folder Count4 - Library Folder Count1 - - 8126 - - Track ID8126 - NameString Quartet No. 3 (Mishima): Blood Oath - ArtistKronos Quartet - Album ArtistKronos Quartet - ComposerPhilip Glass - AlbumKronos Quartet Performs Philip Glass - GenreClassical - KindMPEG audio file - Size6551481 - Total Time194194 - Disc Number1 - Disc Count1 - Track Number17 - Track Count18 - Year2005 - Date Modified2011-03-28T02:03:31Z - Date Added2011-03-28T03:22:17Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 203498472 - Artwork Count1 - Persistent IDBA52FFA5F71B3CD6 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kronos%20Quartet/Kronos%20Quartet%20Performs%20Philip%20Glass/17%20String%20Quartet%20No.%203%20(Mishima)_%20Blood%20Oath.mp3 - File Folder Count4 - Library Folder Count1 - - 8128 - - Track ID8128 - NameString Quartet No. 3 (Mishima): Mishima/Closing - ArtistKronos Quartet - Album ArtistKronos Quartet - ComposerPhilip Glass - AlbumKronos Quartet Performs Philip Glass - GenreClassical - KindMPEG audio file - Size6260591 - Total Time185103 - Disc Number1 - Disc Count1 - Track Number18 - Track Count18 - Year2005 - Date Modified2011-03-28T02:02:55Z - Date Added2011-03-28T03:22:17Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 203498473 - Artwork Count1 - Persistent ID0408A42917DD8145 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kronos%20Quartet/Kronos%20Quartet%20Performs%20Philip%20Glass/18%20String%20Quartet%20No.%203%20(Mishima)_%20Mishima_Closing.mp3 - File Folder Count4 - Library Folder Count1 - - 8130 - - Track ID8130 - NameIs Not All One - ArtistTony Scott - Album ArtistTony Scott - ComposerHozan Yamamoto - AlbumMusic For Zen Meditation And Other Joys - GenreJazz - KindMPEG audio file - Size6458777 - Total Time192052 - Disc Number1 - Disc Count1 - Track Number1 - Track Count9 - Year1964 - Date Modified2011-03-28T02:38:34Z - Date Added2011-03-28T03:22:17Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202688993 - Play Count3 - Play Date3424525220 - Play Date UTC2012-07-07T11:30:20Z - Artwork Count1 - Persistent IDEB51D7C480970F4E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tony%20Scott/Music%20For%20Zen%20Meditation%20And%20Other%20Joys/01%20Is%20Not%20All%20One.mp3 - File Folder Count4 - Library Folder Count1 - - 8132 - - Track ID8132 - NameThe Murmuring Sound Of The Mountain Stream - ArtistTony Scott - Album ArtistTony Scott - ComposerShinichi Yuize - AlbumMusic For Zen Meditation And Other Joys - GenreJazz - KindMPEG audio file - Size15688208 - Total Time480470 - Disc Number1 - Disc Count1 - Track Number2 - Track Count9 - Year1964 - Date Modified2011-03-28T02:36:24Z - Date Added2011-03-28T03:22:17Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202688994 - Play Count2 - Play Date3424525700 - Play Date UTC2012-07-07T11:38:20Z - Artwork Count1 - Sort NameMurmuring Sound Of The Mountain Stream - Persistent ID942D654F218B858A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tony%20Scott/Music%20For%20Zen%20Meditation%20And%20Other%20Joys/02%20The%20Murmuring%20Sound%20Of%20The%20Mountain%20Stream.mp3 - File Folder Count4 - Library Folder Count1 - - 8134 - - Track ID8134 - NameA Quivering Leaf Ask The Winds - ArtistTony Scott - Album ArtistTony Scott - ComposerYamamoto - AlbumMusic For Zen Meditation And Other Joys - GenreJazz - KindMPEG audio file - Size5102937 - Total Time149681 - Disc Number1 - Disc Count1 - Track Number3 - Track Count9 - Year1964 - Date Modified2011-03-28T02:34:03Z - Date Added2011-03-28T03:22:17Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202688995 - Play Count2 - Play Date3424525850 - Play Date UTC2012-07-07T11:40:50Z - Artwork Count1 - Sort NameQuivering Leaf Ask The Winds - Persistent ID180F67871490AB53 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tony%20Scott/Music%20For%20Zen%20Meditation%20And%20Other%20Joys/03%20A%20Quivering%20Leaf%20Ask%20The%20Winds.mp3 - File Folder Count4 - Library Folder Count1 - - 8136 - - Track ID8136 - NameAfter The Snow The Fragrance - ArtistTony Scott - Album ArtistTony Scott - ComposerTony Scott - AlbumMusic For Zen Meditation And Other Joys - GenreJazz - KindMPEG audio file - Size13823238 - Total Time422191 - Disc Number1 - Disc Count1 - Track Number4 - Track Count9 - Year1964 - Date Modified2011-03-28T02:38:00Z - Date Added2011-03-28T03:22:17Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202688996 - Play Count2 - Play Date3384528598 - Play Date UTC2011-04-01T13:19:58Z - Artwork Count1 - Persistent IDB4CDF7C5999320CD - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tony%20Scott/Music%20For%20Zen%20Meditation%20And%20Other%20Joys/04%20After%20The%20Snow%20The%20Fragrance.mp3 - File Folder Count4 - Library Folder Count1 - - 8138 - - Track ID8138 - NameTo Drift Like Clouds - ArtistTony Scott - Album ArtistTony Scott - ComposerHozan Yamamoto - AlbumMusic For Zen Meditation And Other Joys - GenreJazz - KindMPEG audio file - Size3411030 - Total Time96809 - Disc Number1 - Disc Count1 - Track Number5 - Track Count9 - Year1964 - Date Modified2011-03-28T02:30:45Z - Date Added2011-03-28T03:22:17Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202688997 - Play Count1 - Play Date3384415782 - Play Date UTC2011-03-31T05:59:42Z - Artwork Count1 - Persistent ID511BFF20BE678A0E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tony%20Scott/Music%20For%20Zen%20Meditation%20And%20Other%20Joys/05%20To%20Drift%20Like%20Clouds.mp3 - File Folder Count4 - Library Folder Count1 - - 8140 - - Track ID8140 - NameZa Zen (Meditation) - ArtistTony Scott - Album ArtistTony Scott - ComposerHozan Yamamoto - AlbumMusic For Zen Meditation And Other Joys - GenreJazz - KindMPEG audio file - Size4233572 - Total Time122514 - Disc Number1 - Disc Count1 - Track Number6 - Track Count9 - Year1964 - Date Modified2011-03-28T02:36:49Z - Date Added2011-03-28T03:22:17Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202688998 - Play Count3 - Play Date3427467518 - Play Date UTC2012-08-10T12:48:38Z - Artwork Count1 - Persistent ID7219B74B3AD86B44 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tony%20Scott/Music%20For%20Zen%20Meditation%20And%20Other%20Joys/06%20Za%20Zen%20(Meditation).mp3 - File Folder Count4 - Library Folder Count1 - - 8142 - - Track ID8142 - NamePrajna-Paramita-Hridaya Sutra (Sutra Chant) - ArtistTony Scott - Album ArtistTony Scott - ComposerShinichi Yuize - AlbumMusic For Zen Meditation And Other Joys - GenreJazz - KindMPEG audio file - Size14059005 - Total Time429557 - Disc Number1 - Disc Count1 - Track Number7 - Track Count9 - Year1964 - Date Modified2011-03-28T02:33:31Z - Date Added2011-03-28T03:22:17Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202688999 - Play Count2 - Play Date3384447862 - Play Date UTC2011-03-31T14:54:22Z - Artwork Count1 - Persistent ID1DB804C6A7AA5C36 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tony%20Scott/Music%20For%20Zen%20Meditation%20And%20Other%20Joys/07%20Prajna-Paramita-Hridaya%20Sutra%20(Sutra%20Chant).mp3 - File Folder Count4 - Library Folder Count1 - - 8144 - - Track ID8144 - NameSanzen (Moment Of Truth) - ArtistTony Scott - Album ArtistTony Scott - ComposerShinichi Yuize - AlbumMusic For Zen Meditation And Other Joys - GenreJazz - KindMPEG audio file - Size13232243 - Total Time403722 - Disc Number1 - Disc Count1 - Track Number8 - Track Count9 - Year1964 - Date Modified2011-03-28T02:31:54Z - Date Added2011-03-28T03:22:17Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202689000 - Play Count2 - Play Date3384448266 - Play Date UTC2011-03-31T15:01:06Z - Artwork Count1 - Persistent ID66C2B981C28D57D0 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tony%20Scott/Music%20For%20Zen%20Meditation%20And%20Other%20Joys/08%20Sanzen%20(Moment%20Of%20Truth).mp3 - File Folder Count4 - Library Folder Count1 - - 8146 - - Track ID8146 - NameSatori (Enlightenment) - ArtistTony Scott - Album ArtistTony Scott - ComposerShinichi Yuize - AlbumMusic For Zen Meditation And Other Joys - GenreJazz - KindMPEG audio file - Size10640057 - Total Time322716 - Disc Number1 - Disc Count1 - Track Number9 - Track Count9 - Year1964 - Date Modified2011-03-28T02:35:01Z - Date Added2011-03-28T03:22:17Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202689001 - Play Count2 - Play Date3384448588 - Play Date UTC2011-03-31T15:06:28Z - Artwork Count1 - Persistent IDC4A2CBAD04BBAEF9 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tony%20Scott/Music%20For%20Zen%20Meditation%20And%20Other%20Joys/09%20Satori%20(Enlightenment).mp3 - File Folder Count4 - Library Folder Count1 - - 8148 - - Track ID8148 - NameThe Moon Mirrored In The Pool - ArtistVarious - Album ArtistVarious - ComposerYan Jun Hua - AlbumPhases of the Moon - GenreClassical - KindMPEG audio file - Size9797214 - Total Time312346 - Disc Number1 - Disc Count1 - Track Number1 - Track Count11 - Year1988 - Date Modified2011-03-28T03:11:28Z - Date Added2011-03-28T03:22:17Z - Bit Rate245 - Sample Rate44100 - CommentsAmazon.com Song ID: 203976768 - Play Count2 - Play Date3384448901 - Play Date UTC2011-03-31T15:11:41Z - Artwork Count1 - Sort NameMoon Mirrored In The Pool - Persistent ID103104E98A3557DA - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various/Phases%20of%20the%20Moon/01%20The%20Moon%20Mirrored%20In%20The%20Pool.mp3 - File Folder Count4 - Library Folder Count1 - - 8150 - - Track ID8150 - NameThe Moon On High - ArtistVarious - Album ArtistVarious - ComposerTraditional - AlbumPhases of the Moon - GenreClassical - KindMPEG audio file - Size22559383 - Total Time728215 - Disc Number1 - Disc Count1 - Track Number2 - Track Count11 - Year1988 - Date Modified2011-03-28T03:08:52Z - Date Added2011-03-28T03:22:17Z - Bit Rate245 - Sample Rate44100 - CommentsAmazon.com Song ID: 203976793 - Artwork Count1 - Sort NameMoon On High - Persistent IDCE2D2D1CA1196E06 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various/Phases%20of%20the%20Moon/02%20The%20Moon%20On%20High.mp3 - File Folder Count4 - Library Folder Count1 - - 8152 - - Track ID8152 - NameDays of Emancipation - ArtistThe Central Broadcasting Traditional Instruments Orchestra - Album ArtistVarious - ComposerZhu Jianer - AlbumPhases of the Moon - GenreClassical - KindMPEG audio file - Size5176209 - Total Time160417 - Disc Number1 - Disc Count1 - Track Number3 - Track Count11 - Year1988 - Date Modified2011-03-28T03:14:15Z - Date Added2011-03-28T03:22:17Z - Bit Rate247 - Sample Rate44100 - CommentsAmazon.com Song ID: 203976772 - Artwork Count1 - Sort ArtistCentral Broadcasting Traditional Instruments Orchestra - Persistent ID324B6D61332A9D6E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various/Phases%20of%20the%20Moon/03%20Days%20of%20Emancipation.mp3 - File Folder Count4 - Library Folder Count1 - - 8154 - - Track ID8154 - NameDance of the Yao People - ArtistVarious - Album ArtistVarious - ComposerLiu Tieshan - AlbumPhases of the Moon - GenreClassical - KindMPEG audio file - Size11552656 - Total Time366863 - Disc Number1 - Disc Count1 - Track Number4 - Track Count11 - Year1988 - Date Modified2011-03-28T03:16:53Z - Date Added2011-03-28T03:22:17Z - Bit Rate247 - Sample Rate44100 - CommentsAmazon.com Song ID: 203976782 - Artwork Count1 - Persistent IDF874B701384CC743 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various/Phases%20of%20the%20Moon/04%20Dance%20of%20the%20Yao%20People.mp3 - File Folder Count4 - Library Folder Count1 - - 8156 - - Track ID8156 - NamePeking Opera Melody: Flowing Water - ArtistVarious - Album ArtistVarious - ComposerGu Guanren - AlbumPhases of the Moon - GenreClassical - KindMPEG audio file - Size6142235 - Total Time192052 - Disc Number1 - Disc Count1 - Track Number5 - Track Count11 - Year1988 - Date Modified2011-03-28T03:09:29Z - Date Added2011-03-28T03:22:17Z - Bit Rate247 - Sample Rate44100 - CommentsAmazon.com Song ID: 203976763 - Artwork Count1 - Persistent IDA4E5FE4117FE8E33 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various/Phases%20of%20the%20Moon/05%20Peking%20Opera%20Melody_%20Flowing%20Water.mp3 - File Folder Count4 - Library Folder Count1 - - 8158 - - Track ID8158 - NameTashwayi - ArtistVarious - Album ArtistVarious - ComposerTraditional - AlbumPhases of the Moon - GenreClassical - KindMPEG audio file - Size9530824 - Total Time300643 - Disc Number1 - Disc Count1 - Track Number6 - Track Count11 - Year1988 - Date Modified2011-03-28T03:06:59Z - Date Added2011-03-28T03:22:17Z - Bit Rate248 - Sample Rate44100 - CommentsAmazon.com Song ID: 203976785 - Artwork Count1 - Persistent ID7107E724FCEC4462 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various/Phases%20of%20the%20Moon/06%20Tashwayi.mp3 - File Folder Count4 - Library Folder Count1 - - 8160 - - Track ID8160 - NameSpring on the Pamir Plateau - ArtistVarious - Album ArtistVarious - ComposerTraditional - AlbumPhases of the Moon - GenreClassical - KindMPEG audio file - Size6520442 - Total Time202553 - Disc Number1 - Disc Count1 - Track Number7 - Track Count11 - Year1988 - Date Modified2011-03-28T03:13:39Z - Date Added2011-03-28T03:22:17Z - Bit Rate249 - Sample Rate44100 - CommentsAmazon.com Song ID: 203976784 - Artwork Count1 - Persistent IDA4581EB9A4B79443 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various/Phases%20of%20the%20Moon/07%20Spring%20on%20the%20Pamir%20Plateau.mp3 - File Folder Count4 - Library Folder Count1 - - 8162 - - Track ID8162 - NamePurple Bamboo Melody - ArtistShanghai Philharmonic Orchestra - Album ArtistVarious - ComposerTraditional - AlbumPhases of the Moon - GenreClassical - KindMPEG audio file - Size5085985 - Total Time159242 - Disc Number1 - Disc Count1 - Track Number8 - Track Count11 - Year1988 - Date Modified2011-03-28T03:10:22Z - Date Added2011-03-28T03:22:17Z - Bit Rate245 - Sample Rate44100 - CommentsAmazon.com Song ID: 203976762 - Play Count1 - Play Date3384399199 - Play Date UTC2011-03-31T01:23:19Z - Artwork Count1 - Persistent ID9052B9483EEDF833 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various/Phases%20of%20the%20Moon/08%20Purple%20Bamboo%20Melody.mp3 - File Folder Count4 - Library Folder Count1 - - 8164 - - Track ID8164 - NameDancing in the Moonlight - ArtistVarious - Album ArtistVarious - ComposerTraditional - AlbumPhases of the Moon - GenreClassical - KindMPEG audio file - Size4230366 - Total Time130063 - Disc Number1 - Disc Count1 - Track Number9 - Track Count11 - Year1988 - Date Modified2011-03-28T03:13:00Z - Date Added2011-03-28T03:22:17Z - Bit Rate247 - Sample Rate44100 - CommentsAmazon.com Song ID: 203976775 - Play Count1 - Play Date3384399321 - Play Date UTC2011-03-31T01:25:21Z - Artwork Count1 - Persistent ID116A89B5A07CE11C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various/Phases%20of%20the%20Moon/09%20Dancing%20in%20the%20Moonlight.mp3 - File Folder Count4 - Library Folder Count1 - - 8166 - - Track ID8166 - NameSong of the Herdsmen - ArtistVarious - Album ArtistVarious - ComposerTraditional - AlbumPhases of the Moon - GenreClassical - KindMPEG audio file - Size11351281 - Total Time365348 - Disc Number1 - Disc Count1 - Track Number10 - Track Count11 - Year1988 - Date Modified2011-03-28T03:12:37Z - Date Added2011-03-28T03:22:17Z - Bit Rate244 - Sample Rate44100 - CommentsAmazon.com Song ID: 203976755 - Artwork Count1 - Persistent IDFC44CD159C73BA15 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various/Phases%20of%20the%20Moon/10%20Song%20of%20the%20Herdsmen.mp3 - File Folder Count4 - Library Folder Count1 - - 8168 - - Track ID8168 - NameSpring on a Moonlit River - ArtistVarious - Album ArtistVarious - ComposerTraditional - AlbumPhases of the Moon - GenreClassical - KindMPEG audio file - Size17416867 - Total Time565054 - Disc Number1 - Disc Count1 - Track Number11 - Track Count11 - Year1988 - Date Modified2011-03-28T03:15:54Z - Date Added2011-03-28T03:22:17Z - Bit Rate243 - Sample Rate44100 - CommentsAmazon.com Song ID: 203976765 - Artwork Count1 - Persistent IDE277D4D6A2592B0F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various/Phases%20of%20the%20Moon/11%20Spring%20on%20a%20Moonlit%20River.mp3 - File Folder Count4 - Library Folder Count1 - - 8170 - - Track ID8170 - NameMai Nozipo ("Mother Nozipo") - ArtistKronos Quartet - Album ArtistKronos Quartet - ComposerDumisani Maraire - AlbumPieces of Africa - GenreClassical - KindMPEG audio file - Size13490277 - Total Time419448 - Disc Number1 - Disc Count1 - Track Number1 - Track Count12 - Year2005 - Date Modified2011-03-28T02:58:44Z - Date Added2011-03-28T03:22:17Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 212029791 - Play Count1 - Play Date3384165490 - Play Date UTC2011-03-28T08:28:10Z - Artwork Count1 - Persistent ID42862B93BDB89685 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kronos%20Quartet/Pieces%20of%20Africa/01%20Mai%20Nozipo%20(_Mother%20Nozipo_).mp3 - File Folder Count4 - Library Folder Count1 - - 8172 - - Track ID8172 - NameSaade ("I'm Happy") - ArtistKronos Quartet - Album ArtistKronos Quartet - ComposerHassan Hakmoun - AlbumPieces of Africa - GenreClassical - KindMPEG audio file - Size6502813 - Total Time201090 - Disc Number1 - Disc Count1 - Track Number2 - Track Count12 - Year2005 - Date Modified2011-03-28T02:57:14Z - Date Added2011-03-28T03:22:17Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 212029792 - Play Count1 - Play Date3384165691 - Play Date UTC2011-03-28T08:31:31Z - Artwork Count1 - Persistent ID31B9128B9530CD55 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kronos%20Quartet/Pieces%20of%20Africa/02%20Saade%20(_I'm%20Happy_).mp3 - File Folder Count4 - Library Folder Count1 - - 8174 - - Track ID8174 - NameTilliboyo ("Sunset") - ArtistKronos Quartet - Album ArtistKronos Quartet - ComposerFoday Musa Suso - AlbumPieces of Africa - GenreClassical - KindMPEG audio file - Size8419578 - Total Time260989 - Disc Number1 - Disc Count1 - Track Number3 - Track Count12 - Year2005 - Date Modified2011-03-28T03:01:50Z - Date Added2011-03-28T03:22:17Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 212029793 - Play Count1 - Play Date3384165952 - Play Date UTC2011-03-28T08:35:52Z - Artwork Count1 - Persistent ID3F13D85A5EDE2A13 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kronos%20Quartet/Pieces%20of%20Africa/03%20Tilliboyo%20(_Sunset_).mp3 - File Folder Count4 - Library Folder Count1 - - 8176 - - Track ID8176 - NameEkitundu Ekisooka ("First Movement") - ArtistKronos Quartet - Album ArtistKronos Quartet - ComposerJustinian Tamasuza - AlbumPieces of Africa - GenreClassical - KindMPEG audio file - Size10842943 - Total Time336718 - Disc Number1 - Disc Count1 - Track Number4 - Track Count12 - Year2005 - Date Modified2011-03-28T02:53:58Z - Date Added2011-03-28T03:22:17Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 212029794 - Play Count1 - Play Date3384166288 - Play Date UTC2011-03-28T08:41:28Z - Artwork Count1 - Persistent IDB99E1A964B647F11 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kronos%20Quartet/Pieces%20of%20Africa/04%20Ekitundu%20Ekisooka%20(_First%20Movement_).mp3 - File Folder Count4 - Library Folder Count1 - - 8178 - - Track ID8178 - NameEscalay ("Waterwheel") - ArtistKronos Quartet - Album ArtistKronos Quartet - ComposerHamza El Din - AlbumPieces of Africa - GenreClassical - KindMPEG audio file - Size23667563 - Total Time737488 - Disc Number1 - Disc Count1 - Track Number5 - Track Count12 - Year2005 - Date Modified2011-03-28T03:04:44Z - Date Added2011-03-28T03:22:17Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 212029795 - Play Count1 - Play Date3384167026 - Play Date UTC2011-03-28T08:53:46Z - Artwork Count1 - Persistent ID62ECD5F0E5FFC4D8 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kronos%20Quartet/Pieces%20of%20Africa/05%20Escalay%20(_Waterwheel_).mp3 - File Folder Count4 - Library Folder Count1 - - 8180 - - Track ID8180 - NameWawshishijay ("Our Beginning") - ArtistKronos Quartet - Album ArtistKronos Quartet - ComposerObo Addy - AlbumPieces of Africa - GenreClassical - KindMPEG audio file - Size9390921 - Total Time291343 - Disc Number1 - Disc Count1 - Track Number6 - Track Count12 - Year2005 - Date Modified2011-03-28T02:59:45Z - Date Added2011-03-28T03:22:17Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 212029796 - Play Count1 - Play Date3384167317 - Play Date UTC2011-03-28T08:58:37Z - Artwork Count1 - Persistent ID122D659ED9621A28 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kronos%20Quartet/Pieces%20of%20Africa/06%20Wawshishijay%20(_Our%20Beginning_).mp3 - File Folder Count4 - Library Folder Count1 - - 8182 - - Track ID8182 - NameI. White Man Sleeps - ArtistKronos Quartet - Album ArtistKronos Quartet - ComposerKevin Volans - AlbumPieces of Africa - GenreClassical - KindMPEG audio file - Size7880403 - Total Time244140 - Disc Number1 - Disc Count1 - Track Number7 - Track Count12 - Year2005 - Date Modified2011-03-28T02:52:52Z - Date Added2011-03-28T03:22:17Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 212029797 - Play Count1 - Play Date3384167561 - Play Date UTC2011-03-28T09:02:41Z - Artwork Count1 - Persistent IDFE1E40C78D6D8723 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kronos%20Quartet/Pieces%20of%20Africa/07%20I.%20White%20Man%20Sleeps.mp3 - File Folder Count4 - Library Folder Count1 - - 8184 - - Track ID8184 - NameII. White Man Sleeps - ArtistKronos Quartet - Album ArtistKronos Quartet - ComposerKevin Volans - AlbumPieces of Africa - GenreClassical - KindMPEG audio file - Size9923389 - Total Time307983 - Disc Number1 - Disc Count1 - Track Number8 - Track Count12 - Year2005 - Date Modified2011-03-28T02:55:16Z - Date Added2011-03-28T03:22:17Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 212029798 - Play Count1 - Play Date3439100030 - Play Date UTC2012-12-23T04:03:50Z - Artwork Count1 - Persistent ID8C3B798690B181D8 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kronos%20Quartet/Pieces%20of%20Africa/08%20II.%20White%20Man%20Sleeps.mp3 - File Folder Count4 - Library Folder Count1 - - 8186 - - Track ID8186 - NameIII. White Man Sleeps - ArtistKronos Quartet - Album ArtistKronos Quartet - ComposerKevin Volans - AlbumPieces of Africa - GenreClassical - KindMPEG audio file - Size6711793 - Total Time207621 - Disc Number1 - Disc Count1 - Track Number9 - Track Count12 - Year2005 - Date Modified2011-03-28T03:05:25Z - Date Added2011-03-28T03:22:17Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 212029799 - Artwork Count1 - Persistent IDE4ED3FCF5825B32F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kronos%20Quartet/Pieces%20of%20Africa/09%20III.%20White%20Man%20Sleeps.mp3 - File Folder Count4 - Library Folder Count1 - - 8188 - - Track ID8188 - NameIV. White Man Sleeps - ArtistKronos Quartet - Album ArtistKronos Quartet - ComposerKevin Volans - AlbumPieces of Africa - GenreClassical - KindMPEG audio file - Size12240557 - Total Time380395 - Disc Number1 - Disc Count1 - Track Number10 - Track Count12 - Year2005 - Date Modified2011-03-28T03:00:57Z - Date Added2011-03-28T03:22:17Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 212029800 - Artwork Count1 - Persistent IDAF1DA02E51A90B0C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kronos%20Quartet/Pieces%20of%20Africa/10%20IV.%20White%20Man%20Sleeps.mp3 - File Folder Count4 - Library Folder Count1 - - 8190 - - Track ID8190 - NameV. White Man Sleeps - ArtistKronos Quartet - Album ArtistKronos Quartet - ComposerKevin Volans - AlbumPieces of Africa - GenreClassical - KindMPEG audio file - Size6720986 - Total Time207908 - Disc Number1 - Disc Count1 - Track Number11 - Track Count12 - Year2005 - Date Modified2011-03-28T03:06:07Z - Date Added2011-03-28T03:22:17Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 212029801 - Artwork Count1 - Persistent ID1461F47E4F3C3835 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kronos%20Quartet/Pieces%20of%20Africa/11%20V.%20White%20Man%20Sleeps.mp3 - File Folder Count4 - Library Folder Count1 - - 8192 - - Track ID8192 - NameKutambarara (" Spreading") - ArtistKronos Quartet - Album ArtistKronos Quartet - ComposerDumisani Maraire - AlbumPieces of Africa - GenreClassical - KindMPEG audio file - Size13830494 - Total Time430080 - Disc Number1 - Disc Count1 - Track Number12 - Track Count12 - Year2005 - Date Modified2011-03-28T02:56:33Z - Date Added2011-03-28T03:22:17Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 212029802 - Artwork Count1 - Persistent ID7D812D6E7769C0EF - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kronos%20Quartet/Pieces%20of%20Africa/12%20Kutambarara%20(_%20Spreading_).mp3 - File Folder Count4 - Library Folder Count1 - - 8194 - - Track ID8194 - NameMongolian Traditional longsong - ArtistGanbaatar Khongorzul - Album ArtistYo-Yo Ma & The Silk Road Ensemble - ComposerTraditional - AlbumSilk Road Journeys - When Strangers Meet - GenreClassical - KindMPEG audio file - Size2818149 - Total Time90723 - Disc Number1 - Disc Count1 - Track Number1 - Track Count12 - Year2002 - Date Modified2011-03-28T02:49:08Z - Date Added2011-03-28T03:22:17Z - Bit Rate228 - Sample Rate44100 - CommentsAmazon.com Song ID: 203913592 - Play Count2 - Play Date3406908093 - Play Date UTC2011-12-16T13:51:33Z - Artwork Count1 - Persistent ID2E1DB8F325538FCB - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yo-Yo%20Ma%20&%20The%20Silk%20Road%20Ensemble/Silk%20Road%20Journeys%20-%20When%20Strangers%20Meet/01%20Mongolian%20Traditional%20longsong.mp3 - File Folder Count4 - Library Folder Count1 - - 8196 - - Track ID8196 - NameLegend of Herlen - ArtistYo-Yo Ma - Album ArtistYo-Yo Ma & The Silk Road Ensemble - ComposerByambasuren Sharav - AlbumSilk Road Journeys - When Strangers Meet - GenreClassical - KindMPEG audio file - Size20597068 - Total Time678791 - Disc Number1 - Disc Count1 - Track Number2 - Track Count12 - Year2002 - Date Modified2011-03-28T02:48:43Z - Date Added2011-03-28T03:22:17Z - Bit Rate240 - Sample Rate44100 - CommentsAmazon.com Song ID: 203913591 - Artwork Count1 - Persistent ID34F4E8EA7AF3CC2E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yo-Yo%20Ma%20&%20The%20Silk%20Road%20Ensemble/Silk%20Road%20Journeys%20-%20When%20Strangers%20Meet/02%20Legend%20of%20Herlen.mp3 - File Folder Count4 - Library Folder Count1 - - 8198 - - Track ID8198 - NameBlue Little Flower (Chinese Traditional) - ArtistYo-Yo Ma - Album ArtistYo-Yo Ma & The Silk Road Ensemble - ComposerTraditional - AlbumSilk Road Journeys - When Strangers Meet - GenreClassical - KindMPEG audio file - Size8324466 - Total Time265639 - Disc Number1 - Disc Count1 - Track Number3 - Track Count12 - Year2002 - Date Modified2011-03-28T02:39:20Z - Date Added2011-03-28T03:22:17Z - Bit Rate243 - Sample Rate44100 - CommentsAmazon.com Song ID: 203913595 - Artwork Count1 - Persistent IDF241723C529D9099 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yo-Yo%20Ma%20&%20The%20Silk%20Road%20Ensemble/Silk%20Road%20Journeys%20-%20When%20Strangers%20Meet/03%20Blue%20Little%20Flower%20(Chinese%20Traditional).mp3 - File Folder Count4 - Library Folder Count1 - - 8200 - - Track ID8200 - NameMido Mountain (Chinese Traditional) - ArtistYo-Yo Ma - Album ArtistYo-Yo Ma & The Silk Road Ensemble - ComposerTraditional - AlbumSilk Road Journeys - When Strangers Meet - GenreClassical - KindMPEG audio file - Size7373348 - Total Time233822 - Disc Number1 - Disc Count1 - Track Number4 - Track Count12 - Year2002 - Date Modified2011-03-28T02:43:09Z - Date Added2011-03-28T03:22:17Z - Bit Rate244 - Sample Rate44100 - CommentsAmazon.com Song ID: 203913589 - Artwork Count1 - Persistent ID3D034990DAFEED15 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yo-Yo%20Ma%20&%20The%20Silk%20Road%20Ensemble/Silk%20Road%20Journeys%20-%20When%20Strangers%20Meet/04%20Mido%20Mountain%20(Chinese%20Traditional).mp3 - File Folder Count4 - Library Folder Count1 - - 8202 - - Track ID8202 - NameMoon over Guan Mountain - ArtistYo-Yo Ma - Album ArtistYo-Yo Ma & The Silk Road Ensemble - ComposerZhao Jiping - AlbumSilk Road Journeys - When Strangers Meet - GenreClassical - KindMPEG audio file - Size22021191 - Total Time709720 - Disc Number1 - Disc Count1 - Track Number5 - Track Count12 - Year2002 - Date Modified2011-03-28T02:52:10Z - Date Added2011-03-28T03:22:17Z - Bit Rate245 - Sample Rate44100 - CommentsAmazon.com Song ID: 203913585 - Artwork Count1 - Persistent IDC04B000F84E4E35C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yo-Yo%20Ma%20&%20The%20Silk%20Road%20Ensemble/Silk%20Road%20Journeys%20-%20When%20Strangers%20Meet/05%20Moon%20over%20Guan%20Mountain.mp3 - File Folder Count4 - Library Folder Count1 - - 8204 - - Track ID8204 - NameNo. 3 Miero vuotti uutta kuuta from Five Finnish Folk Songs (Edited Version) - ArtistYo-Yo Ma - Album ArtistYo-Yo Ma & The Silk Road Ensemble - ComposerMichio Mamiya - AlbumSilk Road Journeys - When Strangers Meet - GenreClassical - KindMPEG audio file - Size3882575 - Total Time120894 - Disc Number1 - Disc Count1 - Track Number6 - Track Count12 - Year2002 - Date Modified2011-03-28T02:39:41Z - Date Added2011-03-28T03:22:17Z - Bit Rate241 - Sample Rate44100 - CommentsAmazon.com Song ID: 203913582 - Artwork Count1 - Persistent ID556C3BD435755A75 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yo-Yo%20Ma%20&%20The%20Silk%20Road%20Ensemble/Silk%20Road%20Journeys%20-%20When%20Strangers%20Meet/06%20No.%203%20Miero%20vuotti%20uutta%20kuuta%20from%20Five%20Finnish%20Folk%20Songs%20(Edited%20Version).mp3 - File Folder Count4 - Library Folder Count1 - - 8206 - - Track ID8206 - NameNo. 5 Joiku from Five Finnish Folk Songs (Edited Version) - ArtistYo-Yo Ma - Album ArtistYo-Yo Ma & The Silk Road Ensemble - ComposerMichio Mamiya - AlbumSilk Road Journeys - When Strangers Meet - GenreClassical - KindMPEG audio file - Size4755311 - Total Time146050 - Disc Number1 - Disc Count1 - Track Number7 - Track Count12 - Year2002 - Date Modified2011-03-28T02:46:54Z - Date Added2011-03-28T03:22:18Z - Bit Rate248 - Sample Rate44100 - CommentsAmazon.com Song ID: 203913583 - Artwork Count1 - Persistent ID1C0CD8B176FAC70E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yo-Yo%20Ma%20&%20The%20Silk%20Road%20Ensemble/Silk%20Road%20Journeys%20-%20When%20Strangers%20Meet/07%20No.%205%20Joiku%20from%20Five%20Finnish%20Folk%20Songs%20(Edited%20Version).mp3 - File Folder Count4 - Library Folder Count1 - - 8208 - - Track ID8208 - NamePersian Traditional Avaz-e Dashti - ArtistKayhan Kalhor;Siamak Jahangiri;Siamak Aghaei - Album ArtistYo-Yo Ma & The Silk Road Ensemble - ComposerTraditional - AlbumSilk Road Journeys - When Strangers Meet - GenreClassical - KindMPEG audio file - Size11273847 - Total Time363049 - Disc Number1 - Disc Count1 - Track Number8 - Track Count12 - Year2002 - Date Modified2011-03-28T02:46:28Z - Date Added2011-03-28T03:22:18Z - Bit Rate243 - Sample Rate44100 - CommentsAmazon.com Song ID: 203913593 - Artwork Count1 - Persistent ID970F1D1D331E52C2 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yo-Yo%20Ma%20&%20The%20Silk%20Road%20Ensemble/Silk%20Road%20Journeys%20-%20When%20Strangers%20Meet/08%20Persian%20Traditional%20Avaz-e%20Dashti.mp3 - File Folder Count4 - Library Folder Count1 - - 8210 - - Track ID8210 - NameHabil-Sayagy (In Habil's Style) - ArtistYo-Yo Ma - Album ArtistYo-Yo Ma & The Silk Road Ensemble - ComposerFranghiz Ali-Zadeh (B.1947) - AlbumSilk Road Journeys - When Strangers Meet - GenreClassical - KindMPEG audio file - Size24768405 - Total Time807183 - Disc Number1 - Disc Count1 - Track Number9 - Track Count12 - Year2002 - Date Modified2011-03-28T02:45:29Z - Date Added2011-03-28T03:22:18Z - Bit Rate243 - Sample Rate44100 - CommentsAmazon.com Song ID: 203913594 - Artwork Count1 - Persistent ID0D5552021E1FB6BF - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yo-Yo%20Ma%20&%20The%20Silk%20Road%20Ensemble/Silk%20Road%20Journeys%20-%20When%20Strangers%20Meet/09%20Habil-Sayagy%20(In%20Habil's%20Style).mp3 - File Folder Count4 - Library Folder Count1 - - 8212 - - Track ID8212 - NameBlue As The Turquoise Night of Neyshabur - ArtistYo-Yo Ma - Album ArtistYo-Yo Ma & The Silk Road Ensemble - ComposerKayhan Kalhor - AlbumSilk Road Journeys - When Strangers Meet - GenreClassical - KindMPEG audio file - Size29389884 - Total Time937090 - Disc Number1 - Disc Count1 - Track Number10 - Track Count12 - Year2002 - Date Modified2011-03-28T02:42:31Z - Date Added2011-03-28T03:22:18Z - Bit Rate248 - Sample Rate44100 - CommentsAmazon.com Song ID: 203913590 - Artwork Count1 - Persistent IDB1D572C04F2A9072 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yo-Yo%20Ma%20&%20The%20Silk%20Road%20Ensemble/Silk%20Road%20Journeys%20-%20When%20Strangers%20Meet/10%20Blue%20As%20The%20Turquoise%20Night%20of%20Neyshabur.mp3 - File Folder Count4 - Library Folder Count1 - - 8214 - - Track ID8214 - NameChi passa per'sta strada - ArtistYo-Yo Ma - Album ArtistYo-Yo Ma & The Silk Road Ensemble - ComposerFilippo Azzaiolo (Ca. 1530-After 1569) - AlbumSilk Road Journeys - When Strangers Meet - GenreClassical - KindMPEG audio file - Size9058148 - Total Time286850 - Disc Number1 - Disc Count1 - Track Number11 - Track Count12 - Year2002 - Date Modified2011-03-28T02:50:01Z - Date Added2011-03-28T03:22:18Z - Bit Rate246 - Sample Rate44100 - CommentsAmazon.com Song ID: 203913587 - Artwork Count1 - Persistent ID476A3DEA03FCE101 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yo-Yo%20Ma%20&%20The%20Silk%20Road%20Ensemble/Silk%20Road%20Journeys%20-%20When%20Strangers%20Meet/11%20Chi%20passa%20per'sta%20strada.mp3 - File Folder Count4 - Library Folder Count1 - - 8216 - - Track ID8216 - NameDesert Capriccio (Music from the film Crouching Tiger, Hidden Dragon) - ArtistYo-Yo Ma - Album ArtistYo-Yo Ma & The Silk Road Ensemble - ComposerTAN DUN (b. 1957) - AlbumSilk Road Journeys - When Strangers Meet - GenreClassical - KindMPEG audio file - Size3129259 - Total Time97175 - Disc Number1 - Disc Count1 - Track Number12 - Track Count12 - Year2002 - Date Modified2011-03-28T02:39:59Z - Date Added2011-03-28T03:22:18Z - Bit Rate238 - Sample Rate44100 - CommentsAmazon.com Song ID: 203913588 - Play Count1 - Play Date3384399040 - Play Date UTC2011-03-31T01:20:40Z - Artwork Count1 - Persistent IDAC93406F28A0391A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Yo-Yo%20Ma%20&%20The%20Silk%20Road%20Ensemble/Silk%20Road%20Journeys%20-%20When%20Strangers%20Meet/12%20Desert%20Capriccio%20(Music%20from%20the%20film%20Crouching%20Tiger,%20Hidden%20Dragon).mp3 - File Folder Count4 - Library Folder Count1 - - 8218 - - Track ID8218 - NameLam Tooro - ArtistBaaba Maal - Album ArtistBaaba Maal - AlbumDjam Leelii: The Adventurers - GenreInternational - KindMPEG audio file - Size11701470 - Total Time401005 - Disc Number1 - Disc Count1 - Track Number1 - Track Count12 - Year1989 - Date Modified2011-03-28T15:50:41Z - Date Added2011-03-28T16:30:17Z - Bit Rate231 - Sample Rate44100 - CommentsAmazon.com Song ID: 208738057 - Artwork Count1 - Persistent IDE47F071678BBDE79 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Baaba%20Maal/Djam%20Leelii_%20The%20Adventurers/01%20Lam%20Tooro.mp3 - File Folder Count4 - Library Folder Count1 - - 8220 - - Track ID8220 - NameLoodo - ArtistBaaba Maal - Album ArtistBaaba Maal - AlbumDjam Leelii: The Adventurers - GenreInternational - KindMPEG audio file - Size11027314 - Total Time371017 - Disc Number1 - Disc Count1 - Track Number2 - Track Count12 - Year1989 - Date Modified2011-03-28T15:53:46Z - Date Added2011-03-28T16:30:17Z - Bit Rate236 - Sample Rate44100 - CommentsAmazon.com Song ID: 208738058 - Artwork Count1 - Persistent ID70558301FAF65374 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Baaba%20Maal/Djam%20Leelii_%20The%20Adventurers/02%20Loodo.mp3 - File Folder Count4 - Library Folder Count1 - - 8222 - - Track ID8222 - NameMuudo Hormo - ArtistBaaba Maal - Album ArtistBaaba Maal - AlbumDjam Leelii: The Adventurers - GenreInternational - KindMPEG audio file - Size10803275 - Total Time373420 - Disc Number1 - Disc Count1 - Track Number3 - Track Count12 - Year1989 - Date Modified2011-03-28T15:46:34Z - Date Added2011-03-28T16:30:17Z - Bit Rate229 - Sample Rate44100 - CommentsAmazon.com Song ID: 208738059 - Artwork Count1 - Persistent ID0BE07500E07FF23F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Baaba%20Maal/Djam%20Leelii_%20The%20Adventurers/03%20Muudo%20Hormo.mp3 - File Folder Count4 - Library Folder Count1 - - 8224 - - Track ID8224 - NameSalminanam - ArtistBaaba Maal - Album ArtistBaaba Maal - AlbumDjam Leelii: The Adventurers - GenreInternational - KindMPEG audio file - Size8353801 - Total Time269113 - Disc Number1 - Disc Count1 - Track Number4 - Track Count12 - Year1989 - Date Modified2011-03-28T15:52:47Z - Date Added2011-03-28T16:30:17Z - Bit Rate246 - Sample Rate44100 - CommentsAmazon.com Song ID: 208738060 - Skip Count1 - Skip Date2011-03-30T15:56:52Z - Artwork Count1 - Persistent ID79FD268105987220 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Baaba%20Maal/Djam%20Leelii_%20The%20Adventurers/04%20Salminanam.mp3 - File Folder Count4 - Library Folder Count1 - - 8226 - - Track ID8226 - NameMaacina Tooro - ArtistBaaba Maal - Album ArtistBaaba Maal - AlbumDjam Leelii: The Adventurers - GenreInternational - KindMPEG audio file - Size11006631 - Total Time349100 - Disc Number1 - Disc Count1 - Track Number5 - Track Count12 - Year1989 - Date Modified2011-03-28T15:49:03Z - Date Added2011-03-28T16:30:17Z - Bit Rate250 - Sample Rate44100 - CommentsAmazon.com Song ID: 208738061 - Artwork Count1 - Persistent ID50B8C0FB8D02E101 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Baaba%20Maal/Djam%20Leelii_%20The%20Adventurers/05%20Maacina%20Tooro.mp3 - File Folder Count4 - Library Folder Count1 - - 8228 - - Track ID8228 - NameDjam Leelii - ArtistBaaba Maal - Album ArtistBaaba Maal - AlbumDjam Leelii: The Adventurers - GenreInternational - KindMPEG audio file - Size10426571 - Total Time362840 - Disc Number1 - Disc Count1 - Track Number6 - Track Count12 - Year1989 - Date Modified2011-03-28T15:57:14Z - Date Added2011-03-28T16:30:17Z - Bit Rate228 - Sample Rate44100 - CommentsAmazon.com Song ID: 208738062 - Artwork Count1 - Persistent IDF128D42349B0D4C9 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Baaba%20Maal/Djam%20Leelii_%20The%20Adventurers/06%20Djam%20Leelii.mp3 - File Folder Count4 - Library Folder Count1 - - 8230 - - Track ID8230 - NameBibbe Leydy - ArtistBaaba Maal - Album ArtistBaaba Maal - AlbumDjam Leelii: The Adventurers - GenreInternational - KindMPEG audio file - Size11654203 - Total Time387578 - Disc Number1 - Disc Count1 - Track Number7 - Track Count12 - Year1989 - Date Modified2011-03-28T15:43:15Z - Date Added2011-03-28T16:30:17Z - Bit Rate239 - Sample Rate44100 - CommentsAmazon.com Song ID: 208738063 - Artwork Count1 - Persistent ID987022347C4AF10E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Baaba%20Maal/Djam%20Leelii_%20The%20Adventurers/07%20Bibbe%20Leydy.mp3 - File Folder Count4 - Library Folder Count1 - - 8232 - - Track ID8232 - NameSehilam - ArtistBaaba Maal - Album ArtistBaaba Maal - AlbumDjam Leelii: The Adventurers - GenreInternational - KindMPEG audio file - Size12248881 - Total Time384261 - Disc Number1 - Disc Count1 - Track Number8 - Track Count12 - Year1989 - Date Modified2011-03-28T15:56:06Z - Date Added2011-03-28T16:30:17Z - Bit Rate253 - Sample Rate44100 - CommentsAmazon.com Song ID: 208738064 - Skip Count2 - Skip Date2011-03-30T16:01:44Z - Artwork Count1 - Persistent ID4071A592437A525A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Baaba%20Maal/Djam%20Leelii_%20The%20Adventurers/08%20Sehilam.mp3 - File Folder Count4 - Library Folder Count1 - - 8234 - - Track ID8234 - NameKettodee - ArtistBaaba Maal - Album ArtistBaaba Maal - AlbumDjam Leelii: The Adventurers - GenreInternational - KindMPEG audio file - Size9237201 - Total Time294974 - Disc Number1 - Disc Count1 - Track Number9 - Track Count12 - Year1989 - Date Modified2011-03-28T15:54:44Z - Date Added2011-03-28T16:30:17Z - Bit Rate248 - Sample Rate44100 - CommentsAmazon.com Song ID: 208738065 - Skip Count1 - Skip Date2011-03-30T16:01:54Z - Artwork Count1 - Persistent ID8BB804A53A7A4875 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Baaba%20Maal/Djam%20Leelii_%20The%20Adventurers/09%20Kettodee.mp3 - File Folder Count4 - Library Folder Count1 - - 8236 - - Track ID8236 - NameKo Wone Mayo - ArtistBaaba Maal - Album ArtistBaaba Maal - AlbumDjam Leelii: The Adventurers - GenreInternational - KindMPEG audio file - Size16518029 - Total Time569547 - Disc Number1 - Disc Count1 - Track Number10 - Track Count12 - Year1989 - Date Modified2011-03-28T15:44:50Z - Date Added2011-03-28T16:30:17Z - Bit Rate230 - Sample Rate44100 - CommentsAmazon.com Song ID: 208738066 - Artwork Count1 - Persistent IDD02DCE2D1B1DCE6D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Baaba%20Maal/Djam%20Leelii_%20The%20Adventurers/10%20Ko%20Wone%20Mayo.mp3 - File Folder Count4 - Library Folder Count1 - - 8238 - - Track ID8238 - NameDaande Lenol - ArtistBaaba Maal - Album ArtistBaaba Maal - AlbumDjam Leelii: The Adventurers - GenreInternational - KindMPEG audio file - Size8136416 - Total Time274102 - Disc Number1 - Disc Count1 - Track Number11 - Track Count12 - Year1989 - Date Modified2011-03-28T15:42:05Z - Date Added2011-03-28T16:30:17Z - Bit Rate235 - Sample Rate44100 - CommentsAmazon.com Song ID: 208738067 - Artwork Count1 - Persistent IDDB791BB256263162 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Baaba%20Maal/Djam%20Leelii_%20The%20Adventurers/11%20Daande%20Lenol.mp3 - File Folder Count4 - Library Folder Count1 - - 8240 - - Track ID8240 - NameTaara - ArtistBaaba Maal - Album ArtistBaaba Maal - AlbumDjam Leelii: The Adventurers - GenreInternational - KindMPEG audio file - Size9344153 - Total Time323552 - Disc Number1 - Disc Count1 - Track Number12 - Track Count12 - Year1989 - Date Modified2011-03-28T15:51:40Z - Date Added2011-03-28T16:30:17Z - Bit Rate229 - Sample Rate44100 - CommentsAmazon.com Song ID: 208738068 - Artwork Count1 - Persistent IDACA9C85D81D02EE8 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Baaba%20Maal/Djam%20Leelii_%20The%20Adventurers/12%20Taara.mp3 - File Folder Count4 - Library Folder Count1 - - 8242 - - Track ID8242 - NameUnder Stars (2005 Digital Remaster) - ArtistBrian Eno - Album ArtistBrian Eno - ComposerBrian Eno - AlbumApollo - GenrePop - KindMPEG audio file - Size7515423 - Total Time270341 - Disc Number1 - Disc Count1 - Track Number1 - Track Count12 - Year2005 - Date Modified2011-03-28T16:26:59Z - Date Added2011-03-28T16:30:17Z - Bit Rate213 - Sample Rate44100 - CommentsAmazon.com Song ID: 202160158 - Artwork Count1 - Persistent IDDE6EB6A1A7E1E60F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Brian%20Eno/Apollo/01%20Under%20Stars%20(2005%20Digital%20Remaster).mp3 - File Folder Count4 - Library Folder Count1 - - 8244 - - Track ID8244 - NameThe Secret Place (2005 Digital Remaster) - ArtistBrian Eno - Album ArtistBrian Eno - ComposerBrian Eno - AlbumApollo - GenrePop - KindMPEG audio file - Size5887431 - Total Time209737 - Disc Number1 - Disc Count1 - Track Number2 - Track Count12 - Year2005 - Date Modified2011-03-28T16:26:11Z - Date Added2011-03-28T16:30:17Z - Bit Rate213 - Sample Rate44100 - CommentsAmazon.com Song ID: 202160159 - Play Count1 - Play Date3384512909 - Play Date UTC2011-04-01T08:58:29Z - Artwork Count1 - Sort NameSecret Place (2005 Digital Remaster) - Persistent ID5AEBC80F09934DF0 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Brian%20Eno/Apollo/02%20The%20Secret%20Place%20(2005%20Digital%20Remaster).mp3 - File Folder Count4 - Library Folder Count1 - - 8246 - - Track ID8246 - NameMatta (2005 Digital Remaster) - ArtistBrian Eno - Album ArtistBrian Eno - ComposerBrian Eno - AlbumApollo - GenrePop - KindMPEG audio file - Size7466216 - Total Time259735 - Disc Number1 - Disc Count1 - Track Number3 - Track Count12 - Year2005 - Date Modified2011-03-28T16:21:32Z - Date Added2011-03-28T16:30:17Z - Bit Rate221 - Sample Rate44100 - CommentsAmazon.com Song ID: 202160160 - Play Count1 - Play Date3384513169 - Play Date UTC2011-04-01T09:02:49Z - Artwork Count1 - Persistent ID09766F08512EBF2C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Brian%20Eno/Apollo/03%20Matta%20(2005%20Digital%20Remaster).mp3 - File Folder Count4 - Library Folder Count1 - - 8248 - - Track ID8248 - NameSignals (2005 Digital Remaster) - ArtistBrian Eno - Album ArtistBrian Eno - ComposerBrian Eno - AlbumApollo - GenrePop - KindMPEG audio file - Size4648497 - Total Time166608 - Disc Number1 - Disc Count1 - Track Number4 - Track Count12 - Year2005 - Date Modified2011-03-28T16:19:52Z - Date Added2011-03-28T16:30:17Z - Bit Rate209 - Sample Rate44100 - CommentsAmazon.com Song ID: 202160161 - Play Count1 - Play Date3384513335 - Play Date UTC2011-04-01T09:05:35Z - Artwork Count1 - Persistent ID9017BA1666FE8156 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Brian%20Eno/Apollo/04%20Signals%20(2005%20Digital%20Remaster).mp3 - File Folder Count4 - Library Folder Count1 - - 8250 - - Track ID8250 - NameAn Ending (Ascent) (2005 Digital Remaster) - ArtistBrian Eno - Album ArtistBrian Eno - ComposerBrian Eno - AlbumApollo - GenrePop - KindMPEG audio file - Size7550453 - Total Time266240 - Disc Number1 - Disc Count1 - Track Number5 - Track Count12 - Year2005 - Date Modified2011-03-28T16:25:36Z - Date Added2011-03-28T16:30:17Z - Bit Rate218 - Sample Rate44100 - CommentsAmazon.com Song ID: 202160162 - Play Count1 - Play Date3384513601 - Play Date UTC2011-04-01T09:10:01Z - Artwork Count1 - Sort NameEnding (Ascent) (2005 Digital Remaster) - Persistent IDB92AA4E604D3F4B4 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Brian%20Eno/Apollo/05%20An%20Ending%20(Ascent)%20(2005%20Digital%20Remaster).mp3 - File Folder Count4 - Library Folder Count1 - - 8252 - - Track ID8252 - NameUnder Stars II (2005 Digital Remaster) - ArtistBrian Eno - Album ArtistBrian Eno - ComposerBrian Eno - AlbumApollo - GenrePop - KindMPEG audio file - Size5725150 - Total Time202814 - Disc Number1 - Disc Count1 - Track Number6 - Track Count12 - Year2005 - Date Modified2011-03-28T16:20:23Z - Date Added2011-03-28T16:30:17Z - Bit Rate214 - Sample Rate44100 - CommentsAmazon.com Song ID: 202160163 - Play Count1 - Play Date3384513804 - Play Date UTC2011-04-01T09:13:24Z - Artwork Count1 - Persistent IDEE1FAD5FE2779A29 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Brian%20Eno/Apollo/06%20Under%20Stars%20II%20(2005%20Digital%20Remaster).mp3 - File Folder Count4 - Library Folder Count1 - - 8254 - - Track ID8254 - NameDrift (2005 Digital Remaster) - ArtistBrian Eno - Album ArtistBrian Eno - ComposerRoger Eno - AlbumApollo - GenrePop - KindMPEG audio file - Size5362901 - Total Time189518 - Disc Number1 - Disc Count1 - Track Number7 - Track Count12 - Year2005 - Date Modified2011-03-28T16:24:00Z - Date Added2011-03-28T16:30:17Z - Bit Rate214 - Sample Rate44100 - CommentsAmazon.com Song ID: 202160164 - Play Count1 - Play Date3384513993 - Play Date UTC2011-04-01T09:16:33Z - Skip Count1 - Skip Date2011-03-30T15:54:09Z - Artwork Count1 - Persistent ID7EF5D9199F4D35B2 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Brian%20Eno/Apollo/07%20Drift%20(2005%20Digital%20Remaster).mp3 - File Folder Count4 - Library Folder Count1 - - 8256 - - Track ID8256 - NameSilver Morning (2005 Digital Remaster) - ArtistBrian Eno - Album ArtistBrian Eno - ComposerDaniel Lanois - AlbumApollo - GenrePop - KindMPEG audio file - Size5167633 - Total Time159529 - Disc Number1 - Disc Count1 - Track Number8 - Track Count12 - Year2005 - Date Modified2011-03-28T16:20:50Z - Date Added2011-03-28T16:30:17Z - Bit Rate244 - Sample Rate44100 - CommentsAmazon.com Song ID: 202160165 - Play Count1 - Play Date3384514153 - Play Date UTC2011-04-01T09:19:13Z - Skip Count1 - Skip Date2011-03-30T15:54:05Z - Artwork Count1 - Persistent IDE5DFE6443959C535 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Brian%20Eno/Apollo/08%20Silver%20Morning%20(2005%20Digital%20Remaster).mp3 - File Folder Count4 - Library Folder Count1 - - 8258 - - Track ID8258 - NameDeep Blue Day (2005 Digital Remaster) - ArtistBrian Eno - Album ArtistBrian Eno - ComposerRoger Eno - AlbumApollo - GenrePop - KindMPEG audio file - Size7679115 - Total Time238837 - Disc Number1 - Disc Count1 - Track Number9 - Track Count12 - Year2005 - Date Modified2011-03-28T16:24:47Z - Date Added2011-03-28T16:30:17Z - Bit Rate247 - Sample Rate44100 - CommentsAmazon.com Song ID: 202160166 - Play Count2 - Play Date3384514392 - Play Date UTC2011-04-01T09:23:12Z - Artwork Count1 - Persistent ID1034B310A1B479F8 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Brian%20Eno/Apollo/09%20Deep%20Blue%20Day%20(2005%20Digital%20Remaster).mp3 - File Folder Count4 - Library Folder Count1 - - 8260 - - Track ID8260 - NameWeightless (2005 Digital Remaster) - ArtistBrian Eno - Album ArtistBrian Eno - ComposerRoger Eno - AlbumApollo - GenrePop - KindMPEG audio file - Size8204457 - Total Time275226 - Disc Number1 - Disc Count1 - Track Number10 - Track Count12 - Year2005 - Date Modified2011-03-28T16:22:25Z - Date Added2011-03-28T16:30:17Z - Bit Rate230 - Sample Rate44100 - CommentsAmazon.com Song ID: 202160167 - Play Count1 - Play Date3384514667 - Play Date UTC2011-04-01T09:27:47Z - Artwork Count1 - Persistent IDE04DC06D47F0BD2F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Brian%20Eno/Apollo/10%20Weightless%20(2005%20Digital%20Remaster).mp3 - File Folder Count4 - Library Folder Count1 - - 8262 - - Track ID8262 - NameAlways Returning (2005 Digital Remaster) - ArtistBrian Eno - Album ArtistBrian Eno - ComposerRoger Eno - AlbumApollo - GenrePop - KindMPEG audio file - Size7240705 - Total Time244244 - Disc Number1 - Disc Count1 - Track Number11 - Track Count12 - Year2005 - Date Modified2011-03-28T16:23:28Z - Date Added2011-03-28T16:30:17Z - Bit Rate227 - Sample Rate44100 - CommentsAmazon.com Song ID: 202160168 - Play Count2 - Play Date3384514911 - Play Date UTC2011-04-01T09:31:51Z - Artwork Count1 - Persistent ID4123ABE896A1DD4E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Brian%20Eno/Apollo/11%20Always%20Returning%20(2005%20Digital%20Remaster).mp3 - File Folder Count4 - Library Folder Count1 - - 8264 - - Track ID8264 - NameStars (2005 Digital Remaster) - ArtistBrian Eno - Album ArtistBrian Eno - ComposerBrian Eno - AlbumApollo - GenrePop - KindMPEG audio file - Size12955470 - Total Time480339 - Disc Number1 - Disc Count1 - Track Number12 - Track Count12 - Year2005 - Date Modified2011-03-28T16:19:19Z - Date Added2011-03-28T16:30:17Z - Bit Rate210 - Sample Rate44100 - CommentsAmazon.com Song ID: 202160169 - Play Count2 - Play Date3384541316 - Play Date UTC2011-04-01T16:51:56Z - Artwork Count1 - Persistent ID5FF8BFD7F0CAFF06 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Brian%20Eno/Apollo/12%20Stars%20(2005%20Digital%20Remaster).mp3 - File Folder Count4 - Library Folder Count1 - - 8266 - - Track ID8266 - NamePilentze Pee - ArtistBulgarian State Television Female Choir - Album ArtistBulgarian State Television Female Choir - AlbumLe Mystere Des Voix Bulgares - GenreInternational - KindMPEG audio file - Size4572602 - Total Time141583 - Disc Number1 - Disc Count1 - Track Number1 - Track Count13 - Year2006 - Date Modified2011-03-28T16:17:00Z - Date Added2011-03-28T16:30:17Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 203510891 - Play Count3 - Play Date3390500670 - Play Date UTC2011-06-09T16:14:30Z - Artwork Count1 - Persistent IDB5F078378E6F0037 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bulgarian%20State%20Television%20Female%20Choir/Le%20Mystere%20Des%20Voix%20Bulgares/01%20Pilentze%20Pee.mp3 - File Folder Count4 - Library Folder Count1 - - 8268 - - Track ID8268 - NameSvatba (The Wedding) - ArtistBulgarian State Television Female Choir - Album ArtistBulgarian State Television Female Choir - AlbumLe Mystere Des Voix Bulgares - GenreInternational - KindMPEG audio file - Size2835580 - Total Time87301 - Disc Number1 - Disc Count1 - Track Number2 - Track Count13 - Year2006 - Date Modified2011-03-28T16:13:32Z - Date Added2011-03-28T16:30:17Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 203510892 - Play Count3 - Play Date3390500757 - Play Date UTC2011-06-09T16:15:57Z - Artwork Count1 - Persistent ID690E407A88FFD1E2 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bulgarian%20State%20Television%20Female%20Choir/Le%20Mystere%20Des%20Voix%20Bulgares/02%20Svatba%20(The%20Wedding).mp3 - File Folder Count4 - Library Folder Count1 - - 8270 - - Track ID8270 - NameKalimankou Denkou (The Evening Gathering) - ArtistBulgarian State Television Female Choir - Album ArtistBulgarian State Television Female Choir - AlbumLe Mystere Des Voix Bulgares - GenreInternational - KindMPEG audio file - Size9840618 - Total Time306207 - Disc Number1 - Disc Count1 - Track Number3 - Track Count13 - Year2006 - Date Modified2011-03-28T16:16:07Z - Date Added2011-03-28T16:30:17Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 203510893 - Play Count1 - Play Date3384866292 - Play Date UTC2011-04-05T11:08:12Z - Artwork Count1 - Persistent IDFD95A83EDF35A51D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bulgarian%20State%20Television%20Female%20Choir/Le%20Mystere%20Des%20Voix%20Bulgares/03%20Kalimankou%20Denkou%20(The%20Evening%20Gathering).mp3 - File Folder Count4 - Library Folder Count1 - - 8272 - - Track ID8272 - NameStrati na Angelaki Doumasche (Haiduk Song) - ArtistBulgarian State Television Female Choir - Album ArtistBulgarian State Television Female Choir - AlbumLe Mystere Des Voix Bulgares - GenreInternational - KindMPEG audio file - Size5064182 - Total Time156943 - Disc Number1 - Disc Count1 - Track Number4 - Track Count13 - Year2006 - Date Modified2011-03-28T16:14:33Z - Date Added2011-03-28T16:30:17Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 203510894 - Play Count1 - Play Date3384866449 - Play Date UTC2011-04-05T11:10:49Z - Artwork Count1 - Persistent ID30B7B77A5E9DA1E1 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bulgarian%20State%20Television%20Female%20Choir/Le%20Mystere%20Des%20Voix%20Bulgares/04%20Strati%20na%20Angelaki%20Doumasche%20(Haiduk%20Song).mp3 - File Folder Count4 - Library Folder Count1 - - 8274 - - Track ID8274 - NamePolegnala e Pschenitza (Harvest Song from Thrace) - ArtistBulgarian State Television Female Choir - Album ArtistBulgarian State Television Female Choir - AlbumLe Mystere Des Voix Bulgares - GenreInternational - KindMPEG audio file - Size3935706 - Total Time121678 - Disc Number1 - Disc Count1 - Track Number5 - Track Count13 - Year2006 - Date Modified2011-03-28T16:13:56Z - Date Added2011-03-28T16:30:17Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 203510895 - Play Count1 - Play Date3384365739 - Play Date UTC2011-03-30T16:05:39Z - Artwork Count1 - Persistent ID4E40DB3B39FABA71 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bulgarian%20State%20Television%20Female%20Choir/Le%20Mystere%20Des%20Voix%20Bulgares/05%20Polegnala%20e%20Pschenitza%20(Harvest%20Song%20from%20Thrace).mp3 - File Folder Count4 - Library Folder Count1 - - 8276 - - Track ID8276 - NameMessetschinko lio Gre_livko (Love Song from the Mountains) - ArtistBulgarian State Television Female Choir - Album ArtistBulgarian State Television Female Choir - AlbumLe Mystere Des Voix Bulgares - GenreInternational - KindMPEG audio file - Size4878640 - Total Time151144 - Disc Number1 - Disc Count1 - Track Number6 - Track Count13 - Year2006 - Date Modified2011-03-28T16:13:13Z - Date Added2011-03-28T16:30:17Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 203510896 - Play Count2 - Play Date3385469274 - Play Date UTC2011-04-12T10:37:54Z - Artwork Count1 - Persistent IDC0BD23986D6DFC67 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bulgarian%20State%20Television%20Female%20Choir/Le%20Mystere%20Des%20Voix%20Bulgares/06%20Messetschinko%20lio%20Gre_livko%20(Love%20Song%20from%20the%20Mountains).mp3 - File Folder Count4 - Library Folder Count1 - - 8278 - - Track ID8278 - NameBre_Yvance (Dancing Song) - ArtistBulgarian State Television Female Choir - Album ArtistBulgarian State Television Female Choir - AlbumLe Mystere Des Voix Bulgares - GenreInternational - KindMPEG audio file - Size2950947 - Total Time90906 - Disc Number1 - Disc Count1 - Track Number7 - Track Count13 - Year2006 - Date Modified2011-03-28T16:11:31Z - Date Added2011-03-28T16:30:17Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 203510897 - Artwork Count1 - Persistent ID460B962CAE0B536F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bulgarian%20State%20Television%20Female%20Choir/Le%20Mystere%20Des%20Voix%20Bulgares/07%20Bre_Yvance%20(Dancing%20Song).mp3 - File Folder Count4 - Library Folder Count1 - - 8280 - - Track ID8280 - NameErghan Diado (Song of Schopsko) - ArtistBulgarian State Television Female Choir - Album ArtistBulgarian State Television Female Choir - AlbumLe Mystere Des Voix Bulgares - GenreInternational - KindMPEG audio file - Size5497166 - Total Time170475 - Disc Number1 - Disc Count1 - Track Number8 - Track Count13 - Year2006 - Date Modified2011-03-28T16:17:58Z - Date Added2011-03-28T16:30:17Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 203510898 - Play Count1 - Play Date3385037610 - Play Date UTC2011-04-07T10:43:30Z - Artwork Count1 - Persistent ID3FE85B8297AD100C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bulgarian%20State%20Television%20Female%20Choir/Le%20Mystere%20Des%20Voix%20Bulgares/08%20Erghan%20Diado%20(Song%20of%20Schopsko).mp3 - File Folder Count4 - Library Folder Count1 - - 8282 - - Track ID8282 - NameSableyalo mi Agontze (The Bleating Lamb) - ArtistBulgarian State Television Female Choir - Album ArtistBulgarian State Television Female Choir - AlbumLe Mystere Des Voix Bulgares - GenreInternational - KindMPEG audio file - Size8713798 - Total Time270994 - Disc Number1 - Disc Count1 - Track Number9 - Track Count13 - Year2006 - Date Modified2011-03-28T16:12:40Z - Date Added2011-03-28T16:30:17Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 203510899 - Artwork Count1 - Persistent ID1CE6B958B961C2CA - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bulgarian%20State%20Television%20Female%20Choir/Le%20Mystere%20Des%20Voix%20Bulgares/09%20Sableyalo%20mi%20Agontze%20(The%20Bleating%20Lamb).mp3 - File Folder Count4 - Library Folder Count1 - - 8284 - - Track ID8284 - NameMir Stanke le (Harvest Song from Thrace) - ArtistBulgarian State Television Female Choir - Album ArtistBulgarian State Television Female Choir - AlbumLe Mystere Des Voix Bulgares - GenreInternational - KindMPEG audio file - Size5350900 - Total Time165903 - Disc Number1 - Disc Count1 - Track Number10 - Track Count13 - Year2006 - Date Modified2011-03-28T16:17:29Z - Date Added2011-03-28T16:30:17Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 203510900 - Artwork Count1 - Persistent ID807A9DAD758AB893 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bulgarian%20State%20Television%20Female%20Choir/Le%20Mystere%20Des%20Voix%20Bulgares/10%20Mir%20Stanke%20le%20(Harvest%20Song%20from%20Thrace).mp3 - File Folder Count4 - Library Folder Count1 - - 8286 - - Track ID8286 - NamePr_tour_tze Planinata (Song from the Tracian Plain) - ArtistBulgarian State Television Female Choir - Album ArtistBulgarian State Television Female Choir - AlbumLe Mystere Des Voix Bulgares - GenreInternational - KindMPEG audio file - Size6122475 - Total Time190014 - Disc Number1 - Disc Count1 - Track Number11 - Track Count13 - Year2006 - Date Modified2011-03-28T16:15:08Z - Date Added2011-03-28T16:30:17Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 203510901 - Artwork Count1 - Persistent IDC798D1F9A704DBD5 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bulgarian%20State%20Television%20Female%20Choir/Le%20Mystere%20Des%20Voix%20Bulgares/11%20Pr_tour_tze%20Planinata%20(Song%20from%20the%20Tracian%20Plain).mp3 - File Folder Count4 - Library Folder Count1 - - 8288 - - Track ID8288 - NameSchopska Pesen (Diaphonic Chant) - ArtistBulgarian State Television Female Choir - Album ArtistBulgarian State Television Female Choir - AlbumLe Mystere Des Voix Bulgares - GenreInternational - KindMPEG audio file - Size2847309 - Total Time87666 - Disc Number1 - Disc Count1 - Track Number12 - Track Count13 - Year2006 - Date Modified2011-03-28T16:16:29Z - Date Added2011-03-28T16:30:17Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 203510902 - Play Count1 - Play Date3384398727 - Play Date UTC2011-03-31T01:15:27Z - Artwork Count1 - Persistent ID79980CF4D3171C63 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bulgarian%20State%20Television%20Female%20Choir/Le%20Mystere%20Des%20Voix%20Bulgares/12%20Schopska%20Pesen%20(Diaphonic%20Chant).mp3 - File Folder Count4 - Library Folder Count1 - - 8290 - - Track ID8290 - NamePolegnala e Todora (Love Song) - ArtistBulgarian State Television Female Choir - Album ArtistBulgarian State Television Female Choir - AlbumLe Mystere Des Voix Bulgares - GenreInternational - KindMPEG audio file - Size7011014 - Total Time217782 - Disc Number1 - Disc Count1 - Track Number13 - Track Count13 - Year2006 - Date Modified2011-03-28T16:11:12Z - Date Added2011-03-28T16:30:17Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 203510903 - Play Count1 - Play Date3384398941 - Play Date UTC2011-03-31T01:19:01Z - Artwork Count1 - Persistent IDE6803394ECA307BD - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bulgarian%20State%20Television%20Female%20Choir/Le%20Mystere%20Des%20Voix%20Bulgares/13%20Polegnala%20e%20Todora%20(Love%20Song).mp3 - File Folder Count4 - Library Folder Count1 - - 8292 - - Track ID8292 - NameFratres - ArtistGidon Kremer - Album ArtistGidon Kremer - ComposerPärt, Arvo - AlbumArvo Pärt: Tabula Rasa - GenreClassical - KindMPEG audio file - Size22061653 - Total Time686811 - Disc Number1 - Disc Count1 - Track Number1 - Track Count4 - Year1999 - Date Modified2011-03-28T16:07:03Z - Date Added2011-03-28T16:30:17Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202413495 - Play Count3 - Play Date3384542002 - Play Date UTC2011-04-01T17:03:22Z - Artwork Count1 - Persistent ID2C715D618B90870F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Gidon%20Kremer/Arvo%20Pa%CC%88rt_%20Tabula%20Rasa/01%20Fratres.mp3 - File Folder Count4 - Library Folder Count1 - - 8294 - - Track ID8294 - NameCantus In Memory Of Benjamin Britten - ArtistStaatsorchester Stuttgart - Album ArtistGidon Kremer - ComposerPärt, Arvo - AlbumArvo Pärt: Tabula Rasa - GenreClassical - KindMPEG audio file - Size9803036 - Total Time303725 - Disc Number1 - Disc Count1 - Track Number2 - Track Count4 - Year1999 - Date Modified2011-03-28T16:04:36Z - Date Added2011-03-28T16:30:17Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202413496 - Play Count2 - Play Date3384542306 - Play Date UTC2011-04-01T17:08:26Z - Artwork Count1 - Persistent ID5AD73803DF2D4B68 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Gidon%20Kremer/Arvo%20Pa%CC%88rt_%20Tabula%20Rasa/02%20Cantus%20In%20Memory%20Of%20Benjamin%20Britten.mp3 - File Folder Count4 - Library Folder Count1 - - 8296 - - Track ID8296 - NameFratres - Artist12 Cellists Of The Berlin Philh. - Album ArtistGidon Kremer - ComposerPärt, Arvo - AlbumArvo Pärt: Tabula Rasa - GenreClassical - KindMPEG audio file - Size23053092 - Total Time717792 - Disc Number1 - Disc Count1 - Track Number3 - Track Count4 - Year1999 - Date Modified2011-03-28T16:10:19Z - Date Added2011-03-28T16:30:17Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202413497 - Play Count1 - Play Date3384506930 - Play Date UTC2011-04-01T07:18:50Z - Artwork Count1 - Persistent IDED70D5F4597C80C6 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Gidon%20Kremer/Arvo%20Pa%CC%88rt_%20Tabula%20Rasa/03%20Fratres.mp3 - File Folder Count4 - Library Folder Count1 - - 8298 - - Track ID8298 - NameTabula Rasa - ArtistLithuanian Chamber Orchestra - Album ArtistGidon Kremer - ComposerPärt, Arvo - AlbumArvo Pärt: Tabula Rasa - GenreClassical - KindMPEG audio file - Size51154192 - Total Time1595951 - Disc Number1 - Disc Count1 - Track Number4 - Track Count4 - Year1999 - Date Modified2011-03-28T16:03:03Z - Date Added2011-03-28T16:30:17Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202413498 - Artwork Count1 - Persistent IDAF4F960274B3B475 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Gidon%20Kremer/Arvo%20Pa%CC%88rt_%20Tabula%20Rasa/04%20Tabula%20Rasa.mp3 - File Folder Count4 - Library Folder Count1 - - 8304 - - Track ID8304 - NameDance Me To The End Of Love - ArtistMadeleine Peyroux - ComposerLeonard Cohen - AlbumCareless Love - GenrePop - KindAAC audio file - Size3878645 - Total Time239674 - Disc Number1 - Disc Count1 - Track Number1 - Track Count12 - Year2004 - Date Modified2008-10-05T13:31:02Z - Date Added2011-05-31T15:40:06Z - Bit Rate128 - Sample Rate44100 - Play Count2 - Play Date3430070775 - Play Date UTC2012-09-09T15:56:15Z - Normalization2676 - Artwork Count1 - Persistent IDFA617C15C8C3314A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Madeleine%20Peyroux/Careless%20Love/01%20Dance%20Me%20To%20The%20End%20Of%20Love.m4a - File Folder Count4 - Library Folder Count1 - - 8306 - - Track ID8306 - NameDon't Wait Too Long - ArtistMadeleine Peyroux - ComposerMadeleine Peyroux, Jesse Harris, Larry Klein - AlbumCareless Love - GenrePop - KindAAC audio file - Size3141994 - Total Time193978 - Disc Number1 - Disc Count1 - Track Number2 - Track Count12 - Year2004 - Date Modified2006-06-22T18:07:34Z - Date Added2011-05-31T15:40:07Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3430070969 - Play Date UTC2012-09-09T15:59:29Z - Normalization2120 - Artwork Count1 - Persistent IDE605AC56CE796F52 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Madeleine%20Peyroux/Careless%20Love/02%20Don't%20Wait%20Too%20Long.m4a - File Folder Count4 - Library Folder Count1 - - 8308 - - Track ID8308 - NameDon't Cry Baby - ArtistMadeleine Peyroux - ComposerS. Bernie, J. Johnson, S. Unger - AlbumCareless Love - GenrePop - KindAAC audio file - Size3250268 - Total Time200386 - Disc Number1 - Disc Count1 - Track Number3 - Track Count12 - Year2004 - Date Modified2006-06-22T18:07:34Z - Date Added2011-05-31T15:40:07Z - Bit Rate128 - Sample Rate44100 - Normalization2877 - Artwork Count1 - Persistent ID073A66EAE1830D8F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Madeleine%20Peyroux/Careless%20Love/03%20Don't%20Cry%20Baby.m4a - File Folder Count4 - Library Folder Count1 - - 8310 - - Track ID8310 - NameYou're Gonna Make Me Lonesome When You Go - ArtistMadeleine Peyroux - ComposerBob Dylan - AlbumCareless Love - GenrePop - KindAAC audio file - Size3396710 - Total Time209930 - Disc Number1 - Disc Count1 - Track Number4 - Track Count12 - Year2004 - Date Modified2008-10-05T13:31:20Z - Date Added2011-05-31T15:40:07Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3389724277 - Play Date UTC2011-05-31T16:34:37Z - Normalization2802 - Artwork Count1 - Persistent IDE609931BE75B63E9 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Madeleine%20Peyroux/Careless%20Love/04%20You're%20Gonna%20Make%20Me%20Lonesome%20When%20You%20Go.m4a - File Folder Count4 - Library Folder Count1 - - 8312 - - Track ID8312 - NameBetween The Bars - ArtistMadeleine Peyroux - ComposerSteven Paul Smith - AlbumCareless Love - GenrePop - KindAAC audio file - Size3661698 - Total Time227020 - Disc Number1 - Disc Count1 - Track Number5 - Track Count12 - Year2004 - Date Modified2006-06-22T18:07:36Z - Date Added2011-05-31T15:40:07Z - Bit Rate128 - Sample Rate44100 - Normalization2027 - Artwork Count1 - Persistent ID6DE8D7263AB2927E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Madeleine%20Peyroux/Careless%20Love/05%20Between%20The%20Bars.m4a - File Folder Count4 - Library Folder Count1 - - 8314 - - Track ID8314 - NameNo More - ArtistMadeleine Peyroux - ComposerSalvador Camarata, Bob Russell - AlbumCareless Love - GenrePop - KindAAC audio file - Size3488521 - Total Time215340 - Disc Number1 - Disc Count1 - Track Number6 - Track Count12 - Year2004 - Date Modified2006-06-22T18:07:36Z - Date Added2011-05-31T15:40:07Z - Bit Rate128 - Sample Rate44100 - Normalization1843 - Artwork Count1 - Persistent ID17A3122752EA3882 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Madeleine%20Peyroux/Careless%20Love/06%20No%20More.m4a - File Folder Count4 - Library Folder Count1 - - 8316 - - Track ID8316 - NameLonesome Road - ArtistMadeleine Peyroux - ComposerGene Austin, Nathaniel Shilkret - AlbumCareless Love - GenrePop - KindAAC audio file - Size3139112 - Total Time193861 - Disc Number1 - Disc Count1 - Track Number7 - Track Count12 - Year2004 - Date Modified2006-06-22T18:07:36Z - Date Added2011-05-31T15:40:07Z - Bit Rate128 - Sample Rate44100 - Normalization2705 - Artwork Count1 - Persistent ID76A680BCFB000F0B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Madeleine%20Peyroux/Careless%20Love/07%20Lonesome%20Road.m4a - File Folder Count4 - Library Folder Count1 - - 8318 - - Track ID8318 - NameJ'ai Deux Amours - ArtistMadeleine Peyroux - ComposerVincent Scotto, Georges Koger, Henri Varna - AlbumCareless Love - GenrePop - KindAAC audio file - Size2894054 - Total Time178165 - Disc Number1 - Disc Count1 - Track Number8 - Track Count12 - Year2004 - Date Modified2006-06-22T18:07:36Z - Date Added2011-05-31T15:40:07Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3389724067 - Play Date UTC2011-05-31T16:31:07Z - Normalization2872 - Artwork Count1 - Persistent ID442E382B8C1ED1E8 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Madeleine%20Peyroux/Careless%20Love/08%20J'ai%20Deux%20Amours.m4a - File Folder Count4 - Library Folder Count1 - - 8320 - - Track ID8320 - NameWeary Blues - ArtistMadeleine Peyroux - ComposerHank Williams - AlbumCareless Love - GenrePop - KindAAC audio file - Size3608648 - Total Time222701 - Disc Number1 - Disc Count1 - Track Number9 - Track Count12 - Year2004 - Date Modified2006-06-22T18:07:38Z - Date Added2011-05-31T15:40:07Z - Bit Rate128 - Sample Rate44100 - Normalization2295 - Artwork Count1 - Persistent ID4BB58E0808DD265B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Madeleine%20Peyroux/Careless%20Love/09%20Weary%20Blues.m4a - File Folder Count4 - Library Folder Count1 - - 8322 - - Track ID8322 - NameI'll Look Around - ArtistMadeleine Peyroux - ComposerGeorge Cory, Douglas Cross - AlbumCareless Love - GenrePop - KindAAC audio file - Size4699774 - Total Time290689 - Disc Number1 - Disc Count1 - Track Number10 - Track Count12 - Year2004 - Date Modified2006-06-22T18:07:38Z - Date Added2011-05-31T15:40:07Z - Bit Rate128 - Sample Rate44100 - Normalization1771 - Artwork Count1 - Persistent ID85699062A43618E6 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Madeleine%20Peyroux/Careless%20Love/10%20I'll%20Look%20Around.m4a - File Folder Count4 - Library Folder Count1 - - 8324 - - Track ID8324 - NameCareless Love - ArtistMadeleine Peyroux - ComposerWilliam C. Handy, Martha Koening, Spencer Williams - AlbumCareless Love - GenrePop - KindAAC audio file - Size3780589 - Total Time233823 - Disc Number1 - Disc Count1 - Track Number11 - Track Count12 - Year2004 - Date Modified2006-06-22T18:07:38Z - Date Added2011-05-31T15:40:07Z - Bit Rate128 - Sample Rate44100 - Normalization2443 - Artwork Count1 - Persistent ID23CE26B638766118 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Madeleine%20Peyroux/Careless%20Love/11%20Careless%20Love.m4a - File Folder Count4 - Library Folder Count1 - - 8326 - - Track ID8326 - NameThis Is Heaven To Me - ArtistMadeleine Peyroux - ComposerFrank Reardon, Ernest Schweikert, Theodore Presser - AlbumCareless Love - GenrePop - KindAAC audio file - Size3162490 - Total Time191539 - Disc Number1 - Disc Count1 - Track Number12 - Track Count12 - Year2004 - Date Modified2006-06-22T18:07:40Z - Date Added2011-05-31T15:40:07Z - Bit Rate128 - Sample Rate44100 - Normalization2731 - Artwork Count1 - Persistent ID78D60C4A7685386F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Madeleine%20Peyroux/Careless%20Love/12%20This%20Is%20Heaven%20To%20Me.m4a - File Folder Count4 - Library Folder Count1 - - 8330 - - Track ID8330 - NameLet's Call The Whole Thing Off - ArtistElla Fitzgerald - Album ArtistElla Fitzgerald - ComposerGeorge Gershwin - AlbumThe Best Of Ella Fitzgerald And Louis Armstrong On Verve - GenreJazz - KindMPEG audio file - Size8390433 - Total Time254380 - Disc Number1 - Disc Count1 - Track Number1 - Track Count15 - Year1997 - Date Modified2011-06-04T01:10:55Z - Date Added2011-06-04T01:28:16Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202661676 - Play Count2 - Play Date3390625113 - Play Date UTC2011-06-11T02:48:33Z - Artwork Count1 - Sort AlbumBest Of Ella Fitzgerald And Louis Armstrong On Verve - Persistent IDBFFCE47DFF7D72A9 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ella%20Fitzgerald/The%20Best%20Of%20Ella%20Fitzgerald%20And%20Louis%20Armstrong%20On%20Verve/01%20-%20Let's%20Call%20The%20Whole%20Thing%20Off.mp3 - File Folder Count4 - Library Folder Count1 - - 8332 - - Track ID8332 - NameLove Is Here To Stay - ArtistElla Fitzgerald - Album ArtistElla Fitzgerald - ComposerIra Gershwin - AlbumThe Best Of Ella Fitzgerald And Louis Armstrong On Verve - GenreJazz - KindMPEG audio file - Size7944863 - Total Time240457 - Disc Number1 - Disc Count1 - Track Number2 - Track Count15 - Year1997 - Date Modified2011-06-04T01:07:35Z - Date Added2011-06-04T01:28:16Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202661677 - Play Count2 - Play Date3390625353 - Play Date UTC2011-06-11T02:52:33Z - Artwork Count1 - Sort AlbumBest Of Ella Fitzgerald And Louis Armstrong On Verve - Persistent ID953735397764CFE0 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ella%20Fitzgerald/The%20Best%20Of%20Ella%20Fitzgerald%20And%20Louis%20Armstrong%20On%20Verve/02%20-%20Love%20Is%20Here%20To%20Stay.mp3 - File Folder Count4 - Library Folder Count1 - - 8334 - - Track ID8334 - NameThe Nearness Of You - ArtistElla Fitzgerald - Album ArtistElla Fitzgerald - ComposerNed Washington - AlbumThe Best Of Ella Fitzgerald And Louis Armstrong On Verve - GenreJazz - KindMPEG audio file - Size11211634 - Total Time342543 - Disc Number1 - Disc Count1 - Track Number3 - Track Count15 - Year1997 - Date Modified2011-06-04T01:14:34Z - Date Added2011-06-04T01:28:16Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202661678 - Play Count2 - Play Date3428047627 - Play Date UTC2012-08-17T05:57:07Z - Artwork Count1 - Sort AlbumBest Of Ella Fitzgerald And Louis Armstrong On Verve - Sort NameNearness Of You - Persistent ID63C040F0CE1EC9CA - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ella%20Fitzgerald/The%20Best%20Of%20Ella%20Fitzgerald%20And%20Louis%20Armstrong%20On%20Verve/03%20The%20Nearness%20Of%20You.mp3 - File Folder Count4 - Library Folder Count1 - - 8336 - - Track ID8336 - NameStars Fell On Alabama - ArtistElla Fitzgerald - Album ArtistElla Fitzgerald - ComposerFrank S. Perkins - AlbumThe Best Of Ella Fitzgerald And Louis Armstrong On Verve - GenreJazz - KindMPEG audio file - Size7131524 - Total Time215040 - Disc Number1 - Disc Count1 - Track Number4 - Track Count15 - Year1997 - Date Modified2011-06-04T01:03:24Z - Date Added2011-06-04T01:28:16Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202661679 - Artwork Count1 - Sort AlbumBest Of Ella Fitzgerald And Louis Armstrong On Verve - Persistent IDFE69D34AFD2C2205 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ella%20Fitzgerald/The%20Best%20Of%20Ella%20Fitzgerald%20And%20Louis%20Armstrong%20On%20Verve/04%20Stars%20Fell%20On%20Alabama.mp3 - File Folder Count4 - Library Folder Count1 - - 8338 - - Track ID8338 - NameGee Baby Ain't I Good To You - ArtistElla Fitzgerald - Album ArtistElla Fitzgerald - ComposerDon Redman - AlbumThe Best Of Ella Fitzgerald And Louis Armstrong On Verve - GenreJazz - KindMPEG audio file - Size8370357 - Total Time253753 - Disc Number1 - Disc Count1 - Track Number5 - Track Count15 - Year1997 - Date Modified2011-06-04T01:06:56Z - Date Added2011-06-04T01:28:16Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202661680 - Artwork Count1 - Sort AlbumBest Of Ella Fitzgerald And Louis Armstrong On Verve - Persistent ID2024E3CF0A313536 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ella%20Fitzgerald/The%20Best%20Of%20Ella%20Fitzgerald%20And%20Louis%20Armstrong%20On%20Verve/05%20Gee%20Baby%20Ain't%20I%20Good%20To%20You.mp3 - File Folder Count4 - Library Folder Count1 - - 8340 - - Track ID8340 - NameThey Can't Take That Away From Me - ArtistElla Fitzgerald - Album ArtistElla Fitzgerald - ComposerIra Gershwin - AlbumThe Best Of Ella Fitzgerald And Louis Armstrong On Verve - GenreJazz - KindMPEG audio file - Size9218828 - Total Time280267 - Disc Number1 - Disc Count1 - Track Number6 - Track Count15 - Year1997 - Date Modified2011-06-04T01:04:13Z - Date Added2011-06-04T01:28:16Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202661681 - Artwork Count1 - Sort AlbumBest Of Ella Fitzgerald And Louis Armstrong On Verve - Persistent ID6D97E30C20054630 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ella%20Fitzgerald/The%20Best%20Of%20Ella%20Fitzgerald%20And%20Louis%20Armstrong%20On%20Verve/06%20They%20Can't%20Take%20That%20Away%20From%20Me.mp3 - File Folder Count4 - Library Folder Count1 - - 8342 - - Track ID8342 - NameAutumn In New York - ArtistElla Fitzgerald - Album ArtistElla Fitzgerald - ComposerVernon Duke - AlbumThe Best Of Ella Fitzgerald And Louis Armstrong On Verve - GenreJazz - KindMPEG audio file - Size11747449 - Total Time359288 - Disc Number1 - Disc Count1 - Track Number7 - Track Count15 - Year1997 - Date Modified2011-06-04T01:06:12Z - Date Added2011-06-04T01:28:16Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202661682 - Artwork Count1 - Sort AlbumBest Of Ella Fitzgerald And Louis Armstrong On Verve - Persistent IDE853B27159959EC3 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ella%20Fitzgerald/The%20Best%20Of%20Ella%20Fitzgerald%20And%20Louis%20Armstrong%20On%20Verve/07%20Autumn%20In%20New%20York.mp3 - File Folder Count4 - Library Folder Count1 - - 8344 - - Track ID8344 - NameSummertime - ArtistLouis Armstrong - Album ArtistElla Fitzgerald - ComposerDubose Heyward - AlbumThe Best Of Ella Fitzgerald And Louis Armstrong On Verve - GenreJazz - KindMPEG audio file - Size9905103 - Total Time301714 - Disc Number1 - Disc Count1 - Track Number8 - Track Count15 - Year1997 - Date Modified2011-06-04T01:08:24Z - Date Added2011-06-04T01:28:17Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202661683 - Artwork Count1 - Sort AlbumBest Of Ella Fitzgerald And Louis Armstrong On Verve - Persistent ID5963CBA69693B93F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ella%20Fitzgerald/The%20Best%20Of%20Ella%20Fitzgerald%20And%20Louis%20Armstrong%20On%20Verve/08%20Summertime.mp3 - File Folder Count4 - Library Folder Count1 - - 8346 - - Track ID8346 - NameTenderly - ArtistElla Fitzgerald - Album ArtistElla Fitzgerald - ComposerJack Lawrence - AlbumThe Best Of Ella Fitzgerald And Louis Armstrong On Verve - GenreJazz - KindMPEG audio file - Size10144978 - Total Time309211 - Disc Number1 - Disc Count1 - Track Number9 - Track Count15 - Year1997 - Date Modified2011-06-04T01:10:04Z - Date Added2011-06-04T01:28:17Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202661684 - Artwork Count1 - Sort AlbumBest Of Ella Fitzgerald And Louis Armstrong On Verve - Persistent IDC1CACF4F357F00AD - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ella%20Fitzgerald/The%20Best%20Of%20Ella%20Fitzgerald%20And%20Louis%20Armstrong%20On%20Verve/09%20Tenderly.mp3 - File Folder Count4 - Library Folder Count1 - - 8348 - - Track ID8348 - NameStompin' At The Savoy - ArtistElla Fitzgerald - Album ArtistElla Fitzgerald - ComposerBenny Goodman - AlbumThe Best Of Ella Fitzgerald And Louis Armstrong On Verve - GenreJazz - KindMPEG audio file - Size10316369 - Total Time314566 - Disc Number1 - Disc Count1 - Track Number10 - Track Count15 - Year1997 - Date Modified2011-06-04T01:11:47Z - Date Added2011-06-04T01:28:17Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202661685 - Artwork Count1 - Sort AlbumBest Of Ella Fitzgerald And Louis Armstrong On Verve - Persistent IDFC49A37A51AE029C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ella%20Fitzgerald/The%20Best%20Of%20Ella%20Fitzgerald%20And%20Louis%20Armstrong%20On%20Verve/10%20Stompin'%20At%20The%20Savoy.mp3 - File Folder Count4 - Library Folder Count1 - - 8350 - - Track ID8350 - NameUnder A Blanket Of Blue - ArtistElla Fitzgerald - Album ArtistElla Fitzgerald - ComposerAl J. Neiburg - AlbumThe Best Of Ella Fitzgerald And Louis Armstrong On Verve - GenreJazz - KindMPEG audio file - Size8533359 - Total Time258847 - Disc Number1 - Disc Count1 - Track Number11 - Track Count15 - Year1997 - Date Modified2011-06-04T01:09:06Z - Date Added2011-06-04T01:28:17Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202661686 - Artwork Count1 - Sort AlbumBest Of Ella Fitzgerald And Louis Armstrong On Verve - Persistent IDA408D21226CDE190 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ella%20Fitzgerald/The%20Best%20Of%20Ella%20Fitzgerald%20And%20Louis%20Armstrong%20On%20Verve/11%20Under%20A%20Blanket%20Of%20Blue.mp3 - File Folder Count4 - Library Folder Count1 - - 8352 - - Track ID8352 - NameI Wants To Stay Here - ArtistLouis Armstrong - Album ArtistElla Fitzgerald - ComposerDubose Heyward - AlbumThe Best Of Ella Fitzgerald And Louis Armstrong On Verve - GenreJazz - KindMPEG audio file - Size9147755 - Total Time278047 - Disc Number1 - Disc Count1 - Track Number12 - Track Count15 - Year1997 - Date Modified2011-06-04T01:12:42Z - Date Added2011-06-04T01:28:17Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202661687 - Artwork Count1 - Sort AlbumBest Of Ella Fitzgerald And Louis Armstrong On Verve - Persistent ID18CCD78F4E21749A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ella%20Fitzgerald/The%20Best%20Of%20Ella%20Fitzgerald%20And%20Louis%20Armstrong%20On%20Verve/12%20I%20Wants%20To%20Stay%20Here.mp3 - File Folder Count4 - Library Folder Count1 - - 8354 - - Track ID8354 - NameI've Got My Love To Keep Me Warm - ArtistElla Fitzgerald - Album ArtistElla Fitzgerald - ComposerIrving Berlin - AlbumThe Best Of Ella Fitzgerald And Louis Armstrong On Verve - GenreJazz - KindMPEG audio file - Size6384231 - Total Time191686 - Disc Number1 - Disc Count1 - Track Number13 - Track Count15 - Year1997 - Date Modified2011-06-04T01:02:48Z - Date Added2011-06-04T01:28:17Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202661688 - Artwork Count1 - Sort AlbumBest Of Ella Fitzgerald And Louis Armstrong On Verve - Persistent ID235AC734223B45A3 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ella%20Fitzgerald/The%20Best%20Of%20Ella%20Fitzgerald%20And%20Louis%20Armstrong%20On%20Verve/13%20I've%20Got%20My%20Love%20To%20Keep%20Me%20Warm.mp3 - File Folder Count4 - Library Folder Count1 - - 8356 - - Track ID8356 - NameThere's A Boat Dat's Leavin' Soon For New York - ArtistLouis Armstrong - Album ArtistElla Fitzgerald - ComposerDubose Heyward - AlbumThe Best Of Ella Fitzgerald And Louis Armstrong On Verve - GenreJazz - KindMPEG audio file - Size9687002 - Total Time294896 - Disc Number1 - Disc Count1 - Track Number14 - Track Count15 - Year1997 - Date Modified2011-06-04T01:13:36Z - Date Added2011-06-04T01:28:17Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202661689 - Artwork Count1 - Sort AlbumBest Of Ella Fitzgerald And Louis Armstrong On Verve - Persistent ID50A7975D048FE107 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ella%20Fitzgerald/The%20Best%20Of%20Ella%20Fitzgerald%20And%20Louis%20Armstrong%20On%20Verve/14%20There's%20A%20Boat%20Dat's%20Leavin'%20Soon%20For%20New%20York.mp3 - File Folder Count4 - Library Folder Count1 - - 8358 - - Track ID8358 - NameYou Won't Be Satisfied (Until You Break My Heart) - ArtistElla Fitzgerald - Album ArtistElla Fitzgerald - ComposerTeddy Powell - AlbumThe Best Of Ella Fitzgerald And Louis Armstrong On Verve - GenreJazz - KindMPEG audio file - Size6311538 - Total Time189413 - Disc Number1 - Disc Count1 - Track Number15 - Track Count15 - Year1997 - Date Modified2011-06-04T01:05:03Z - Date Added2011-06-04T01:28:17Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202661690 - Artwork Count1 - Sort AlbumBest Of Ella Fitzgerald And Louis Armstrong On Verve - Persistent IDDF58ABA490766695 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ella%20Fitzgerald/The%20Best%20Of%20Ella%20Fitzgerald%20And%20Louis%20Armstrong%20On%20Verve/15%20You%20Won't%20Be%20Satisfied%20(Until%20You%20Break%20My%20Heart).mp3 - File Folder Count4 - Library Folder Count1 - - 8360 - - Track ID8360 - NameA Day Without Rain - ArtistEnya - Album ArtistEnya - AlbumA Day Without Rain [with booklet artwork] - GenrePop - KindMPEG audio file - Size5325782 - Total Time157544 - Disc Number1 - Disc Count1 - Track Number1 - Track Count12 - Year2005 - Date Modified2011-06-04T01:21:04Z - Date Added2011-06-04T01:28:17Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 212707111 - Play Count5 - Play Date3483119647 - Play Date UTC2014-05-16T15:44:07Z - Artwork Count1 - Sort AlbumDay Without Rain [with booklet artwork] - Sort NameDay Without Rain - Persistent IDDAD2EDD91EE8F1D0 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enya/A%20Day%20Without%20Rain%20%5Bwith%20booklet%20artwork%5D/01%20A%20Day%20Without%20Rain.mp3 - File Folder Count4 - Library Folder Count1 - - 8362 - - Track ID8362 - NameWild Child - ArtistEnya - Album ArtistEnya - AlbumA Day Without Rain [with booklet artwork] - GenrePop - KindMPEG audio file - Size7539278 - Total Time226716 - Disc Number1 - Disc Count1 - Track Number2 - Track Count12 - Year2005 - Date Modified2011-06-04T01:18:07Z - Date Added2011-06-04T01:28:18Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 212707112 - Play Count3 - Play Date3431278862 - Play Date UTC2012-09-23T15:31:02Z - Skip Count1 - Skip Date2014-05-16T15:44:20Z - Artwork Count1 - Sort AlbumDay Without Rain [with booklet artwork] - Persistent ID128296CAEAF38479 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enya/A%20Day%20Without%20Rain%20%5Bwith%20booklet%20artwork%5D/02%20Wild%20Child.mp3 - File Folder Count4 - Library Folder Count1 - - 8364 - - Track ID8364 - NameOnly Time (Original Version) - ArtistEnya - Album ArtistEnya - AlbumA Day Without Rain [with booklet artwork] - GenrePop - KindMPEG audio file - Size7204111 - Total Time216241 - Disc Number1 - Disc Count1 - Track Number3 - Track Count12 - Year2005 - Date Modified2011-06-04T01:15:12Z - Date Added2011-06-04T01:28:18Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 212707113 - Play Count4 - Play Date3431279277 - Play Date UTC2012-09-23T15:37:57Z - Artwork Count1 - Sort AlbumDay Without Rain [with booklet artwork] - Persistent ID5A87766968322904 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enya/A%20Day%20Without%20Rain%20%5Bwith%20booklet%20artwork%5D/03%20Only%20Time%20(Original%20Version).mp3 - File Folder Count4 - Library Folder Count1 - - 8366 - - Track ID8366 - NameTempus Vernum - ArtistEnya - Album ArtistEnya - ComposerRyan - AlbumA Day Without Rain [with booklet artwork] - GenrePop - KindMPEG audio file - Size4907821 - Total Time144483 - Disc Number1 - Disc Count1 - Track Number4 - Track Count12 - Year2005 - Date Modified2011-06-04T01:17:02Z - Date Added2011-06-04T01:28:18Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 212707114 - Play Count1 - Play Date3390022549 - Play Date UTC2011-06-04T03:25:49Z - Artwork Count1 - Sort AlbumDay Without Rain [with booklet artwork] - Persistent ID6C869A99B624E834 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enya/A%20Day%20Without%20Rain%20%5Bwith%20booklet%20artwork%5D/04%20Tempus%20Vernum.mp3 - File Folder Count4 - Library Folder Count1 - - 8368 - - Track ID8368 - NameDeora Ar Mo Chroí - ArtistEnya - Album ArtistEnya - ComposerEnya - AlbumA Day Without Rain [with booklet artwork] - GenrePop - KindMPEG audio file - Size5645109 - Total Time167523 - Disc Number1 - Disc Count1 - Track Number5 - Track Count12 - Year2005 - Date Modified2011-06-04T01:17:30Z - Date Added2011-06-04T01:28:18Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 212707115 - Play Count1 - Play Date3390022717 - Play Date UTC2011-06-04T03:28:37Z - Artwork Count1 - Sort AlbumDay Without Rain [with booklet artwork] - Persistent IDC0E91B5A576BD5C6 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enya/A%20Day%20Without%20Rain%20%5Bwith%20booklet%20artwork%5D/05%20Deora%20Ar%20Mo%20Chroi%CC%81.mp3 - File Folder Count4 - Library Folder Count1 - - 8370 - - Track ID8370 - NameFlora's Secret - ArtistEnya - Album ArtistEnya - AlbumA Day Without Rain [with booklet artwork] - GenrePop - KindMPEG audio file - Size8132788 - Total Time245263 - Disc Number1 - Disc Count1 - Track Number6 - Track Count12 - Year2005 - Date Modified2011-06-04T01:20:38Z - Date Added2011-06-04T01:28:18Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 212707116 - Play Count1 - Play Date3390022962 - Play Date UTC2011-06-04T03:32:42Z - Artwork Count1 - Sort AlbumDay Without Rain [with booklet artwork] - Persistent ID42A5A94D6DB5EF58 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enya/A%20Day%20Without%20Rain%20%5Bwith%20booklet%20artwork%5D/06%20Flora's%20Secret.mp3 - File Folder Count4 - Library Folder Count1 - - 8372 - - Track ID8372 - NameFallen Embers - ArtistEnya - Album ArtistEnya - ComposerEnya - AlbumA Day Without Rain [with booklet artwork] - GenrePop - KindMPEG audio file - Size5048255 - Total Time148871 - Disc Number1 - Disc Count1 - Track Number7 - Track Count12 - Year2005 - Date Modified2011-06-04T01:19:59Z - Date Added2011-06-04T01:28:18Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 212707117 - Play Count1 - Play Date3390023110 - Play Date UTC2011-06-04T03:35:10Z - Artwork Count1 - Sort AlbumDay Without Rain [with booklet artwork] - Persistent ID4264F7FBA2DD5F14 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enya/A%20Day%20Without%20Rain%20%5Bwith%20booklet%20artwork%5D/07%20Fallen%20Embers.mp3 - File Folder Count4 - Library Folder Count1 - - 8374 - - Track ID8374 - NameSilver Inches - ArtistEnya - Album ArtistEnya - ComposerEnya - AlbumA Day Without Rain [with booklet artwork] - GenrePop - KindMPEG audio file - Size3419886 - Total Time97985 - Disc Number1 - Disc Count1 - Track Number8 - Track Count12 - Year2005 - Date Modified2011-06-04T01:18:55Z - Date Added2011-06-04T01:28:18Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 212707118 - Play Count1 - Play Date3390023208 - Play Date UTC2011-06-04T03:36:48Z - Artwork Count1 - Sort AlbumDay Without Rain [with booklet artwork] - Persistent ID8B8B723D73A76D74 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enya/A%20Day%20Without%20Rain%20%5Bwith%20booklet%20artwork%5D/08%20Silver%20Inches.mp3 - File Folder Count4 - Library Folder Count1 - - 8376 - - Track ID8376 - NamePilgrim - ArtistEnya - Album ArtistEnya - ComposerRyan - AlbumA Day Without Rain [with booklet artwork] - GenrePop - KindMPEG audio file - Size6453422 - Total Time192783 - Disc Number1 - Disc Count1 - Track Number9 - Track Count12 - Year2005 - Date Modified2011-06-04T01:15:47Z - Date Added2011-06-04T01:28:18Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 212707119 - Artwork Count1 - Sort AlbumDay Without Rain [with booklet artwork] - Persistent IDE1074D13AB9B039D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enya/A%20Day%20Without%20Rain%20%5Bwith%20booklet%20artwork%5D/09%20Pilgrim.mp3 - File Folder Count4 - Library Folder Count1 - - 8378 - - Track ID8378 - NameOne By One - ArtistEnya - Album ArtistEnya - ComposerEnya - AlbumA Day Without Rain [with booklet artwork] - GenrePop - KindMPEG audio file - Size7738237 - Total Time232933 - Disc Number1 - Disc Count1 - Track Number10 - Track Count12 - Year2005 - Date Modified2011-06-04T01:19:33Z - Date Added2011-06-04T01:28:18Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 212707120 - Artwork Count1 - Sort AlbumDay Without Rain [with booklet artwork] - Persistent ID903A79218218C613 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enya/A%20Day%20Without%20Rain%20%5Bwith%20booklet%20artwork%5D/10%20One%20By%20One.mp3 - File Folder Count4 - Library Folder Count1 - - 8380 - - Track ID8380 - NameThe First Of Autumn - ArtistEnya - Album ArtistEnya - ComposerNicky Ryan - AlbumA Day Without Rain [with booklet artwork] - GenrePop - KindMPEG audio file - Size6338103 - Total Time189178 - Disc Number1 - Disc Count1 - Track Number11 - Track Count12 - Year2005 - Date Modified2011-06-04T01:18:38Z - Date Added2011-06-04T01:28:18Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 212707121 - Play Count1 - Play Date3390498977 - Play Date UTC2011-06-09T15:46:17Z - Artwork Count1 - Sort AlbumDay Without Rain [with booklet artwork] - Sort NameFirst Of Autumn - Persistent IDF6A282DA07C9DD22 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enya/A%20Day%20Without%20Rain%20%5Bwith%20booklet%20artwork%5D/11%20The%20First%20Of%20Autumn.mp3 - File Folder Count4 - Library Folder Count1 - - 8382 - - Track ID8382 - NameLazy Days - ArtistEnya - Album ArtistEnya - ComposerEnya - AlbumA Day Without Rain [with booklet artwork] - GenrePop - KindMPEG audio file - Size7368759 - Total Time221387 - Disc Number1 - Disc Count1 - Track Number12 - Track Count12 - Year2005 - Date Modified2011-06-04T01:16:32Z - Date Added2011-06-04T01:28:18Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 212707122 - Artwork Count1 - Sort AlbumDay Without Rain [with booklet artwork] - Persistent IDF33BF6E657A0091E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enya/A%20Day%20Without%20Rain%20%5Bwith%20booklet%20artwork%5D/12%20Lazy%20Days.mp3 - File Folder Count4 - Library Folder Count1 - - 8384 - - Track ID8384 - NameCrouching Tiger, Hidden Dragon - ArtistTan Dun with Yo-Yo Ma - Album ArtistTan Dun, Yo-Yo Ma - ComposerTAN DUN (b. 1957) - AlbumCrouching Tiger, Hidden Dragon - Omps - GenreSoundtracks - KindMPEG audio file - Size6405934 - Total Time206419 - Disc Number1 - Disc Count1 - Track Number1 - Track Count15 - Year2000 - Date Modified2011-06-04T01:29:33Z - Date Added2011-06-04T01:30:25Z - Bit Rate245 - Sample Rate44100 - CommentsAmazon.com Song ID: 203911836 - Play Count1 - Play Date3390061486 - Play Date UTC2011-06-04T14:14:46Z - Artwork Count1 - Persistent ID6C7B7C5DD4235793 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tan%20Dun,%20Yo-Yo%20Ma/Crouching%20Tiger,%20Hidden%20Dragon%20-%20Omps/01%20Crouching%20Tiger,%20Hidden%20Dragon.mp3 - File Folder Count4 - Library Folder Count1 - - 8386 - - Track ID8386 - NameThe Eternal Vow from Crouching Tiger, Hidden Dragon - ArtistYo-Yo Ma;Tan Dun - Album ArtistTan Dun, Yo-Yo Ma - ComposerTAN DUN (b. 1957) - AlbumCrouching Tiger, Hidden Dragon - Omps - GenreSoundtracks - KindMPEG audio file - Size5513436 - Total Time178233 - Disc Number1 - Disc Count1 - Track Number2 - Track Count15 - Year2000 - Date Modified2011-06-04T01:23:44Z - Date Added2011-06-04T01:30:25Z - Bit Rate244 - Sample Rate44100 - CommentsAmazon.com Song ID: 203911847 - Play Count1 - Play Date3390061664 - Play Date UTC2011-06-04T14:17:44Z - Artwork Count1 - Sort NameEternal Vow from Crouching Tiger, Hidden Dragon - Persistent ID47E3758D38349947 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tan%20Dun,%20Yo-Yo%20Ma/Crouching%20Tiger,%20Hidden%20Dragon%20-%20Omps/02%20The%20Eternal%20Vow%20from%20Crouching%20Tiger,%20Hidden%20Dragon.mp3 - File Folder Count4 - Library Folder Count1 - - 8388 - - Track ID8388 - NameA Wedding Interrupted (Instrumental) - ArtistYo-Yo Ma;Tan Dun - Album ArtistTan Dun, Yo-Yo Ma - ComposerTAN DUN (b. 1957) - AlbumCrouching Tiger, Hidden Dragon - Omps - GenreSoundtracks - KindMPEG audio file - Size4334737 - Total Time137273 - Disc Number1 - Disc Count1 - Track Number3 - Track Count15 - Year2000 - Date Modified2011-06-04T01:22:03Z - Date Added2011-06-04T01:30:25Z - Bit Rate248 - Sample Rate44100 - CommentsAmazon.com Song ID: 203911851 - Play Count1 - Play Date3390061801 - Play Date UTC2011-06-04T14:20:01Z - Artwork Count1 - Sort NameWedding Interrupted (Instrumental) - Persistent IDE4B58E75185E9B57 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tan%20Dun,%20Yo-Yo%20Ma/Crouching%20Tiger,%20Hidden%20Dragon%20-%20Omps/03%20A%20Wedding%20Interrupted%20(Instrumental).mp3 - File Folder Count4 - Library Folder Count1 - - 8390 - - Track ID8390 - NameNight Fight (Instrumental) - ArtistYo-Yo Ma;Tan Dun - Album ArtistTan Dun, Yo-Yo Ma - ComposerTAN DUN (b. 1957) - AlbumCrouching Tiger, Hidden Dragon - Omps - GenreSoundtracks - KindMPEG audio file - Size6131615 - Total Time189022 - Disc Number1 - Disc Count1 - Track Number4 - Track Count15 - Year2000 - Date Modified2011-06-04T01:22:35Z - Date Added2011-06-04T01:30:25Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 203911841 - Artwork Count1 - Persistent IDD9746552461FD17F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tan%20Dun,%20Yo-Yo%20Ma/Crouching%20Tiger,%20Hidden%20Dragon%20-%20Omps/04%20Night%20Fight%20(Instrumental).mp3 - File Folder Count4 - Library Folder Count1 - - 8392 - - Track ID8392 - NameSilk Road (Instrumental) - ArtistYo-Yo Ma;Tan Dun - Album ArtistTan Dun, Yo-Yo Ma - ComposerTAN DUN (b. 1957) - AlbumCrouching Tiger, Hidden Dragon - Omps - GenreSoundtracks - KindMPEG audio file - Size5815033 - Total Time190824 - Disc Number1 - Disc Count1 - Track Number5 - Track Count15 - Year2000 - Date Modified2011-06-04T01:26:44Z - Date Added2011-06-04T01:30:25Z - Bit Rate240 - Sample Rate44100 - CommentsAmazon.com Song ID: 203911840 - Artwork Count1 - Persistent ID9DE5046965C29CE1 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tan%20Dun,%20Yo-Yo%20Ma/Crouching%20Tiger,%20Hidden%20Dragon%20-%20Omps/05%20Silk%20Road%20(Instrumental).mp3 - File Folder Count4 - Library Folder Count1 - - 8394 - - Track ID8394 - NameTo the South (Instrumental) - ArtistYo-Yo Ma;Tan Dun - Album ArtistTan Dun, Yo-Yo Ma - ComposerTAN DUN (b. 1957) - AlbumCrouching Tiger, Hidden Dragon - Omps - GenreSoundtracks - KindMPEG audio file - Size4446792 - Total Time142445 - Disc Number1 - Disc Count1 - Track Number6 - Track Count15 - Year2000 - Date Modified2011-06-04T01:24:06Z - Date Added2011-06-04T01:30:25Z - Bit Rate245 - Sample Rate44100 - CommentsAmazon.com Song ID: 203911842 - Artwork Count1 - Persistent ID538DFF849DFFD10B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tan%20Dun,%20Yo-Yo%20Ma/Crouching%20Tiger,%20Hidden%20Dragon%20-%20Omps/06%20To%20the%20South%20(Instrumental).mp3 - File Folder Count4 - Library Folder Count1 - - 8396 - - Track ID8396 - NameThrough the Bamboo Forest (Instrumental) - ArtistYo-Yo Ma;Tan Dun - Album ArtistTan Dun, Yo-Yo Ma - ComposerTAN DUN (b. 1957) - AlbumCrouching Tiger, Hidden Dragon - Omps - GenreSoundtracks - KindMPEG audio file - Size8148603 - Total Time261851 - Disc Number1 - Disc Count1 - Track Number7 - Track Count15 - Year2000 - Date Modified2011-06-04T01:25:23Z - Date Added2011-06-04T01:30:25Z - Bit Rate246 - Sample Rate44100 - CommentsAmazon.com Song ID: 203911835 - Artwork Count1 - Persistent IDE5B55DBB6DB9A0B5 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tan%20Dun,%20Yo-Yo%20Ma/Crouching%20Tiger,%20Hidden%20Dragon%20-%20Omps/07%20Through%20the%20Bamboo%20Forest%20(Instrumental).mp3 - File Folder Count4 - Library Folder Count1 - - 8398 - - Track ID8398 - NameThe Encounter (Instrumental) - ArtistYo-Yo Ma;Tan Dun - Album ArtistTan Dun, Yo-Yo Ma - ComposerTAN DUN (b. 1957) - AlbumCrouching Tiger, Hidden Dragon - Omps - GenreSoundtracks - KindMPEG audio file - Size5035241 - Total Time159190 - Disc Number1 - Disc Count1 - Track Number8 - Track Count15 - Year2000 - Date Modified2011-06-04T01:24:35Z - Date Added2011-06-04T01:30:25Z - Bit Rate249 - Sample Rate44100 - CommentsAmazon.com Song ID: 203911839 - Artwork Count1 - Sort NameEncounter (Instrumental) - Persistent ID3800430BAB67E1E9 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tan%20Dun,%20Yo-Yo%20Ma/Crouching%20Tiger,%20Hidden%20Dragon%20-%20Omps/08%20The%20Encounter%20(Instrumental).mp3 - File Folder Count4 - Library Folder Count1 - - 8400 - - Track ID8400 - NameDesert Capriccio (Instrumental) - ArtistYo-Yo Ma;Tan Dun - Album ArtistTan Dun, Yo-Yo Ma - ComposerTAN DUN (b. 1957) - AlbumCrouching Tiger, Hidden Dragon - Omps - GenreSoundtracks - KindMPEG audio file - Size8701064 - Total Time274729 - Disc Number1 - Disc Count1 - Track Number9 - Track Count15 - Year2000 - Date Modified2011-06-04T01:26:12Z - Date Added2011-06-04T01:30:25Z - Bit Rate251 - Sample Rate44100 - CommentsAmazon.com Song ID: 203911850 - Artwork Count1 - Persistent IDBECE3CFC415EA1A6 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tan%20Dun,%20Yo-Yo%20Ma/Crouching%20Tiger,%20Hidden%20Dragon%20-%20Omps/09%20Desert%20Capriccio%20(Instrumental).mp3 - File Folder Count4 - Library Folder Count1 - - 8402 - - Track ID8402 - NameIn the Old Temple (Instrumental) - ArtistYo-Yo Ma;Tan Dun - Album ArtistTan Dun, Yo-Yo Ma - ComposerTAN DUN (b. 1957) - AlbumCrouching Tiger, Hidden Dragon - Omps - GenreSoundtracks - KindMPEG audio file - Size7068608 - Total Time224783 - Disc Number1 - Disc Count1 - Track Number10 - Track Count15 - Year2000 - Date Modified2011-06-04T01:29:01Z - Date Added2011-06-04T01:30:25Z - Bit Rate249 - Sample Rate44100 - CommentsAmazon.com Song ID: 203911844 - Artwork Count1 - Persistent IDE8709F34AFEADAC7 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tan%20Dun,%20Yo-Yo%20Ma/Crouching%20Tiger,%20Hidden%20Dragon%20-%20Omps/10%20In%20the%20Old%20Temple%20(Instrumental).mp3 - File Folder Count4 - Library Folder Count1 - - 8404 - - Track ID8404 - NameYearning of the Sword (Instrumental) - ArtistYo-Yo Ma;Tan Dun - Album ArtistTan Dun, Yo-Yo Ma - ComposerTAN DUN (b. 1957) - AlbumCrouching Tiger, Hidden Dragon - Omps - GenreSoundtracks - KindMPEG audio file - Size6609172 - Total Time214230 - Disc Number1 - Disc Count1 - Track Number11 - Track Count15 - Year2000 - Date Modified2011-06-04T01:28:25Z - Date Added2011-06-04T01:30:25Z - Bit Rate244 - Sample Rate44100 - CommentsAmazon.com Song ID: 203911848 - Artwork Count1 - Persistent IDE792DAFD85706105 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tan%20Dun,%20Yo-Yo%20Ma/Crouching%20Tiger,%20Hidden%20Dragon%20-%20Omps/11%20Yearning%20of%20the%20Sword%20(Instrumental).mp3 - File Folder Count4 - Library Folder Count1 - - 8406 - - Track ID8406 - NameSorrow (Instrumental) - ArtistYo-Yo Ma;Tan Dun - Album ArtistTan Dun, Yo-Yo Ma - ComposerTAN DUN (b. 1957) - AlbumCrouching Tiger, Hidden Dragon - Omps - GenreSoundtracks - KindMPEG audio file - Size7616303 - Total Time244819 - Disc Number1 - Disc Count1 - Track Number12 - Track Count15 - Year2000 - Date Modified2011-06-04T01:23:14Z - Date Added2011-06-04T01:30:25Z - Bit Rate246 - Sample Rate44100 - CommentsAmazon.com Song ID: 203911845 - Artwork Count1 - Persistent IDB00A143F53E76FF8 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tan%20Dun,%20Yo-Yo%20Ma/Crouching%20Tiger,%20Hidden%20Dragon%20-%20Omps/12%20Sorrow%20(Instrumental).mp3 - File Folder Count4 - Library Folder Count1 - - 8408 - - Track ID8408 - NameFarewell (Instrumental) - ArtistYo-Yo Ma;Tan Dun - Album ArtistTan Dun, Yo-Yo Ma - ComposerTAN DUN (b. 1957) - AlbumCrouching Tiger, Hidden Dragon - Omps - GenreSoundtracks - KindMPEG audio file - Size4618098 - Total Time148480 - Disc Number1 - Disc Count1 - Track Number13 - Track Count15 - Year2000 - Date Modified2011-06-04T01:27:50Z - Date Added2011-06-04T01:30:25Z - Bit Rate244 - Sample Rate44100 - CommentsAmazon.com Song ID: 203911837 - Artwork Count1 - Persistent ID25B5168BCAEFB308 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tan%20Dun,%20Yo-Yo%20Ma/Crouching%20Tiger,%20Hidden%20Dragon%20-%20Omps/13%20Farewell%20(Instrumental).mp3 - File Folder Count4 - Library Folder Count1 - - 8410 - - Track ID8410 - NameA Love Before Time (Voice) - ArtistYo-Yo Ma - Album ArtistTan Dun, Yo-Yo Ma - ComposerTAN DUN (b.1957) - AlbumCrouching Tiger, Hidden Dragon - Omps - GenreSoundtracks - KindMPEG audio file - Size6685518 - Total Time218853 - Disc Number1 - Disc Count1 - Track Number14 - Track Count15 - Year2000 - Date Modified2011-06-04T01:21:39Z - Date Added2011-06-04T01:30:25Z - Bit Rate241 - Sample Rate44100 - CommentsAmazon.com Song ID: 203911838 - Artwork Count1 - Sort NameLove Before Time (Voice) - Persistent ID2C787F7124CF2672 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tan%20Dun,%20Yo-Yo%20Ma/Crouching%20Tiger,%20Hidden%20Dragon%20-%20Omps/14%20A%20Love%20Before%20Time%20(Voice).mp3 - File Folder Count4 - Library Folder Count1 - - 8412 - - Track ID8412 - NameA Love Before Time (Mandarin) (Voice) - ArtistCoco Lee - Album ArtistTan Dun, Yo-Yo Ma - ComposerJorge Calandrelli - AlbumCrouching Tiger, Hidden Dragon - Omps - GenreSoundtracks - KindMPEG audio file - Size6685326 - Total Time218096 - Disc Number1 - Disc Count1 - Track Number15 - Track Count15 - Year2000 - Date Modified2011-06-04T01:27:20Z - Date Added2011-06-04T01:30:25Z - Bit Rate242 - Sample Rate44100 - CommentsAmazon.com Song ID: 203911843 - Artwork Count1 - Sort NameLove Before Time (Mandarin) (Voice) - Persistent IDE37D6258434446A7 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tan%20Dun,%20Yo-Yo%20Ma/Crouching%20Tiger,%20Hidden%20Dragon%20-%20Omps/15%20A%20Love%20Before%20Time%20(Mandarin)%20(Voice).mp3 - File Folder Count4 - Library Folder Count1 - - 8414 - - Track ID8414 - NameTea For Two - ArtistArt Tatum - Album ArtistArt Tatum - ComposerVincent Youmans - AlbumPiano Starts Here - GenreJazz - KindMPEG audio file - Size4589613 - Total Time195918 - Disc Number1 - Disc Count1 - Track Number1 - Track Count13 - Year1995 - Date Modified2011-06-07T15:01:06Z - Date Added2011-06-07T15:10:36Z - Bit Rate184 - Sample Rate44100 - CommentsAmazon.com Song ID: 203969978 - Play Count1 - Play Date3390325317 - Play Date UTC2011-06-07T15:31:57Z - Artwork Count1 - Persistent ID55CC202A5398275E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Art%20Tatum/Piano%20Starts%20Here/01%20-%20Tea%20For%20Two.mp3 - File Folder Count4 - Library Folder Count1 - - 8416 - - Track ID8416 - NameSt. Louis Blues - ArtistArt Tatum - Album ArtistArt Tatum - ComposerW.C. Handy - AlbumPiano Starts Here - GenreJazz - KindMPEG audio file - Size3616169 - Total Time158824 - Disc Number1 - Disc Count1 - Track Number2 - Track Count13 - Year1995 - Date Modified2011-06-07T15:02:45Z - Date Added2011-06-07T15:10:37Z - Bit Rate179 - Sample Rate44100 - CommentsAmazon.com Song ID: 203969981 - Play Count1 - Play Date3390325476 - Play Date UTC2011-06-07T15:34:36Z - Artwork Count1 - Persistent ID2E6B5392353CF198 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Art%20Tatum/Piano%20Starts%20Here/02%20-%20St.%20Louis%20Blues.mp3 - File Folder Count4 - Library Folder Count1 - - 8418 - - Track ID8418 - NameTiger Rag - ArtistArt Tatum - Album ArtistArt Tatum - ComposerD. James LaRocca - AlbumPiano Starts Here - GenreJazz - KindMPEG audio file - Size3271838 - Total Time141348 - Disc Number1 - Disc Count1 - Track Number3 - Track Count13 - Year1995 - Date Modified2011-06-07T15:03:57Z - Date Added2011-06-07T15:10:37Z - Bit Rate181 - Sample Rate44100 - CommentsAmazon.com Song ID: 203969993 - Play Count2 - Play Date3390892248 - Play Date UTC2011-06-14T05:00:48Z - Artwork Count1 - Persistent ID47A98A591077F0CC - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Art%20Tatum/Piano%20Starts%20Here/03%20Tiger%20Rag.mp3 - File Folder Count4 - Library Folder Count1 - - 8420 - - Track ID8420 - NameSophisticated Lady - ArtistArt Tatum - Album ArtistArt Tatum - ComposerD. Ellington - AlbumPiano Starts Here - GenreJazz - KindMPEG audio file - Size4599506 - Total Time198112 - Disc Number1 - Disc Count1 - Track Number4 - Track Count13 - Year1995 - Date Modified2011-06-07T14:57:25Z - Date Added2011-06-07T15:10:37Z - Bit Rate183 - Sample Rate44100 - CommentsAmazon.com Song ID: 203969988 - Play Count1 - Play Date3390325815 - Play Date UTC2011-06-07T15:40:15Z - Artwork Count1 - Persistent ID3DD179C9BAC171E8 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Art%20Tatum/Piano%20Starts%20Here/04%20Sophisticated%20Lady.mp3 - File Folder Count4 - Library Folder Count1 - - 8422 - - Track ID8422 - NameHow High The Moon (Live) - ArtistArt Tatum - Album ArtistArt Tatum - ComposerNancy Hamilton - AlbumPiano Starts Here - GenreJazz - KindMPEG audio file - Size3351518 - Total Time146416 - Disc Number1 - Disc Count1 - Track Number5 - Track Count13 - Year1995 - Date Modified2011-06-07T14:59:14Z - Date Added2011-06-07T15:10:38Z - Bit Rate179 - Sample Rate44100 - CommentsAmazon.com Song ID: 203969983 - Play Count1 - Play Date3390325961 - Play Date UTC2011-06-07T15:42:41Z - Artwork Count1 - Persistent IDF04CCAC27C9B9264 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Art%20Tatum/Piano%20Starts%20Here/05%20-%20How%20High%20The%20Moon%20(Live).mp3 - File Folder Count4 - Library Folder Count1 - - 8424 - - Track ID8424 - NameHumoresque - ArtistArt Tatum - Album ArtistArt Tatum - ComposerAntonin Dvorak - AlbumPiano Starts Here - GenreJazz - KindMPEG audio file - Size5228914 - Total Time229198 - Disc Number1 - Disc Count1 - Track Number6 - Track Count13 - Year1995 - Date Modified2011-06-07T14:52:21Z - Date Added2011-06-07T15:10:38Z - Bit Rate180 - Sample Rate44100 - CommentsAmazon.com Song ID: 203969990 - Play Count1 - Play Date3390326190 - Play Date UTC2011-06-07T15:46:30Z - Artwork Count1 - Persistent IDCF3F96E4C5A64737 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Art%20Tatum/Piano%20Starts%20Here/06%20-%20Humoresque.mp3 - File Folder Count4 - Library Folder Count1 - - 8426 - - Track ID8426 - NameSomeone To Watch Over Me - ArtistArt Tatum - Album ArtistArt Tatum - ComposerGeorge Gershwin - AlbumPiano Starts Here - GenreJazz - KindMPEG audio file - Size4763061 - Total Time209423 - Disc Number1 - Disc Count1 - Track Number7 - Track Count13 - Year1995 - Date Modified2011-06-07T14:45:37Z - Date Added2011-06-07T15:10:38Z - Bit Rate179 - Sample Rate44100 - CommentsAmazon.com Song ID: 203969984 - Play Count1 - Play Date3390326400 - Play Date UTC2011-06-07T15:50:00Z - Artwork Count1 - Persistent ID0532D0C2D47C2509 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Art%20Tatum/Piano%20Starts%20Here/07%20Someone%20To%20Watch%20Over%20Me.mp3 - File Folder Count4 - Library Folder Count1 - - 8428 - - Track ID8428 - NameYesterdays - ArtistArt Tatum - Album ArtistArt Tatum - ComposerO. Harbach - AlbumPiano Starts Here - GenreJazz - KindMPEG audio file - Size4675281 - Total Time205008 - Disc Number1 - Disc Count1 - Track Number8 - Track Count13 - Year1995 - Date Modified2011-06-07T14:54:20Z - Date Added2011-06-07T15:10:38Z - Bit Rate180 - Sample Rate44100 - CommentsAmazon.com Song ID: 203969991 - Play Count1 - Play Date3390326605 - Play Date UTC2011-06-07T15:53:25Z - Artwork Count1 - Persistent IDA7673419B0C65EA7 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Art%20Tatum/Piano%20Starts%20Here/08%20Yesterdays.mp3 - File Folder Count4 - Library Folder Count1 - - 8430 - - Track ID8430 - NameI Know That You Know (Live) - ArtistArt Tatum - Album ArtistArt Tatum - ComposerV. Youmans - AlbumPiano Starts Here - GenreJazz - KindMPEG audio file - Size3556812 - Total Time155245 - Disc Number1 - Disc Count1 - Track Number9 - Track Count13 - Year1995 - Date Modified2011-06-07T14:55:43Z - Date Added2011-06-07T15:10:39Z - Bit Rate180 - Sample Rate44100 - CommentsAmazon.com Song ID: 203969986 - Play Count1 - Play Date3390326760 - Play Date UTC2011-06-07T15:56:00Z - Artwork Count1 - Persistent ID97C9BDF3E2C137F9 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Art%20Tatum/Piano%20Starts%20Here/09%20I%20Know%20That%20You%20Know%20(Live).mp3 - File Folder Count4 - Library Folder Count1 - - 8432 - - Track ID8432 - NameWillow Weep For Me (Live) - ArtistArt Tatum - Album ArtistArt Tatum - ComposerA. Ronell - AlbumPiano Starts Here - GenreJazz - KindMPEG audio file - Size4490058 - Total Time196963 - Disc Number1 - Disc Count1 - Track Number10 - Track Count13 - Year1995 - Date Modified2011-06-07T14:46:51Z - Date Added2011-06-07T15:10:39Z - Bit Rate179 - Sample Rate44100 - CommentsAmazon.com Song ID: 203969977 - Play Count1 - Play Date3390326957 - Play Date UTC2011-06-07T15:59:17Z - Artwork Count1 - Persistent IDB1F2A58010C77674 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Art%20Tatum/Piano%20Starts%20Here/10%20Willow%20Weep%20For%20Me%20(Live).mp3 - File Folder Count4 - Library Folder Count1 - - 8434 - - Track ID8434 - NameTatum Pole Boogie (Live) - ArtistArt Tatum - Album ArtistArt Tatum - ComposerA. Tatum - AlbumPiano Starts Here - GenreJazz - KindMPEG audio file - Size3364170 - Total Time145841 - Disc Number1 - Disc Count1 - Track Number11 - Track Count13 - Year1995 - Date Modified2011-06-07T15:02:02Z - Date Added2011-06-07T15:10:39Z - Bit Rate181 - Sample Rate44100 - CommentsAmazon.com Song ID: 203969979 - Play Count1 - Play Date3390327103 - Play Date UTC2011-06-07T16:01:43Z - Artwork Count1 - Persistent ID25F4551F731E564C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Art%20Tatum/Piano%20Starts%20Here/11%20Tatum%20Pole%20Boogie%20(Live).mp3 - File Folder Count4 - Library Folder Count1 - - 8436 - - Track ID8436 - NameThe Kerry Dance (Live) - ArtistArt Tatum - Album ArtistArt Tatum - ComposerMolloy - AlbumPiano Starts Here - GenreJazz - KindMPEG audio file - Size1555843 - Total Time67134 - Disc Number1 - Disc Count1 - Track Number12 - Track Count13 - Year1995 - Date Modified2011-06-07T15:05:22Z - Date Added2011-06-07T15:10:40Z - Bit Rate178 - Sample Rate44100 - CommentsAmazon.com Song ID: 203969980 - Play Count1 - Play Date3390327170 - Play Date UTC2011-06-07T16:02:50Z - Artwork Count1 - Sort NameKerry Dance (Live) - Persistent ID105B0C61778AC897 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Art%20Tatum/Piano%20Starts%20Here/12%20The%20Kerry%20Dance%20(Live).mp3 - File Folder Count4 - Library Folder Count1 - - 8438 - - Track ID8438 - NameThe Man I Love (Live) - ArtistArt Tatum - Album ArtistArt Tatum - ComposerIra Gershwin - AlbumPiano Starts Here - GenreJazz - KindMPEG audio file - Size3010511 - Total Time128391 - Disc Number1 - Disc Count1 - Track Number13 - Track Count13 - Year1995 - Date Modified2011-06-07T15:07:02Z - Date Added2011-06-07T15:10:40Z - Bit Rate183 - Sample Rate44100 - CommentsAmazon.com Song ID: 203969982 - Play Count1 - Play Date3390327298 - Play Date UTC2011-06-07T16:04:58Z - Artwork Count1 - Sort NameMan I Love (Live) - Persistent ID4ACB1E7EE7EC7FCC - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Art%20Tatum/Piano%20Starts%20Here/13%20The%20Man%20I%20Love%20(Live).mp3 - File Folder Count4 - Library Folder Count1 - - 8440 - - Track ID8440 - NameNight Train - ArtistOscar Peterson Trio - ComposerDuke Ellington - AlbumNight Train - GenreJazz - KindAAC audio file - Size5163334 - Total Time292800 - Disc Number1 - Disc Count1 - Track Number1 - Track Count17 - Year1962 - Date Modified2011-06-14T01:44:14Z - Date Added2011-06-07T16:11:19Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3390839264 - Play Date UTC2011-06-13T14:17:44Z - Normalization1050 - Artwork Count1 - Persistent ID598ACF0B27CD7110 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Oscar%20Peterson%20Trio/Night%20Train/01%20Night%20Train.m4a - File Folder Count4 - Library Folder Count1 - - 8442 - - Track ID8442 - NameC-Jam Blues - ArtistOscar Peterson Trio - ComposerBilly Strayhorn & Duke Ellington - AlbumNight Train - GenreJazz - KindAAC audio file - Size3730864 - Total Time206093 - Disc Number1 - Disc Count1 - Track Number2 - Track Count17 - Year1962 - Date Modified2011-06-14T01:44:12Z - Date Added2011-06-07T16:11:20Z - Bit Rate128 - Sample Rate44100 - Play Count2 - Play Date3390839470 - Play Date UTC2011-06-13T14:21:10Z - Normalization1259 - Artwork Count1 - Persistent ID5C11B7E51D5E6FFD - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Oscar%20Peterson%20Trio/Night%20Train/02%20C-Jam%20Blues.m4a - File Folder Count4 - Library Folder Count1 - - 8444 - - Track ID8444 - NameGeorgia On My Mind - ArtistOscar Peterson Trio - ComposerHoagland Howard "Hoagy" Carmichael - AlbumNight Train - GenreJazz - KindAAC audio file - Size4079340 - Total Time226600 - Disc Number1 - Disc Count1 - Track Number3 - Track Count17 - Year1962 - Date Modified2011-06-14T01:44:12Z - Date Added2011-06-07T16:11:20Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3390839696 - Play Date UTC2011-06-13T14:24:56Z - Normalization382 - Artwork Count1 - Persistent ID1FD4BB12619423DF - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Oscar%20Peterson%20Trio/Night%20Train/03%20Georgia%20On%20My%20Mind.m4a - File Folder Count4 - Library Folder Count1 - - 8446 - - Track ID8446 - NameBag's Groove - ArtistOscar Peterson Trio - ComposerMilt Jackson - AlbumNight Train - GenreJazz - KindAAC audio file - Size5993840 - Total Time343040 - Disc Number1 - Disc Count1 - Track Number4 - Track Count17 - Year1962 - Date Modified2011-06-14T01:44:11Z - Date Added2011-06-07T16:11:20Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3390840040 - Play Date UTC2011-06-13T14:30:40Z - Normalization721 - Artwork Count1 - Persistent ID2A9C5900DF56DB66 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Oscar%20Peterson%20Trio/Night%20Train/04%20Bag's%20Groove.m4a - File Folder Count4 - Library Folder Count1 - - 8448 - - Track ID8448 - NameMoten Swing - ArtistOscar Peterson Trio - ComposerEddie Durham - AlbumNight Train - GenreJazz - KindAAC audio file - Size3228106 - Total Time175466 - Disc Number1 - Disc Count1 - Track Number5 - Track Count17 - Year1962 - Date Modified2011-06-14T01:44:13Z - Date Added2011-06-07T16:11:20Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3390840215 - Play Date UTC2011-06-13T14:33:35Z - Normalization1259 - Artwork Count1 - Persistent IDB7145CEE644E3187 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Oscar%20Peterson%20Trio/Night%20Train/05%20Moten%20Swing.m4a - File Folder Count4 - Library Folder Count1 - - 8450 - - Track ID8450 - NameEasy Does It - ArtistOscar Peterson Trio - ComposerMelvin James "Sy" Oliver & Lester Willis Young - AlbumNight Train - GenreJazz - KindAAC audio file - Size3082102 - Total Time165693 - Disc Number1 - Disc Count1 - Track Number6 - Track Count17 - Year1962 - Date Modified2011-06-14T01:44:12Z - Date Added2011-06-07T16:11:20Z - Bit Rate128 - Sample Rate44100 - Play Count2 - Play Date3390840381 - Play Date UTC2011-06-13T14:36:21Z - Normalization800 - Artwork Count1 - Persistent IDCCF8C0BABC28C567 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Oscar%20Peterson%20Trio/Night%20Train/06%20Easy%20Does%20It.m4a - File Folder Count4 - Library Folder Count1 - - 8452 - - Track ID8452 - NameThe Honeydripper - ArtistOscar Peterson Trio - ComposerJoseph C "Joe" Liggins, Jr - AlbumNight Train - GenreJazz - KindAAC audio file - Size2723829 - Total Time144733 - Disc Number1 - Disc Count1 - Track Number7 - Track Count17 - Year1962 - Date Modified2011-06-14T01:44:13Z - Date Added2011-06-07T16:11:20Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3390840525 - Play Date UTC2011-06-13T14:38:45Z - Normalization1129 - Artwork Count1 - Sort NameHoneydripper - Persistent ID044809DA54EDC56D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Oscar%20Peterson%20Trio/Night%20Train/07%20The%20Honeydripper.m4a - File Folder Count4 - Library Folder Count1 - - 8454 - - Track ID8454 - NameThings Ain't What They Used To Be - ArtistOscar Peterson Trio - ComposerMercer Kennedy Ellington & Ted Persons - AlbumNight Train - GenreJazz - KindAAC audio file - Size4940871 - Total Time278773 - Disc Number1 - Disc Count1 - Track Number8 - Track Count17 - Year1962 - Date Modified2011-06-14T01:44:13Z - Date Added2011-06-07T16:11:20Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3390840804 - Play Date UTC2011-06-13T14:43:24Z - Normalization1167 - Artwork Count1 - Persistent ID86F653EA45FCC200 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Oscar%20Peterson%20Trio/Night%20Train/08%20Things%20Ain't%20What%20They%20Used%20To%20Be.m4a - File Folder Count4 - Library Folder Count1 - - 8456 - - Track ID8456 - NameI Got It Bad - ArtistOscar Peterson Trio - ComposerDuke Ellington & Paul Francis Webster - AlbumNight Train - GenreJazz - KindAAC audio file - Size5437735 - Total Time308893 - Disc Number1 - Disc Count1 - Track Number9 - Track Count17 - Year1962 - Date Modified2011-06-14T01:44:09Z - Date Added2011-06-07T16:11:21Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3390841113 - Play Date UTC2011-06-13T14:48:33Z - Normalization352 - Artwork Count1 - Persistent IDB91B04FBBD417A36 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Oscar%20Peterson%20Trio/Night%20Train/09%20I%20Got%20It%20Bad.m4a - File Folder Count4 - Library Folder Count1 - - 8458 - - Track ID8458 - NameBand Call - ArtistOscar Peterson Trio - ComposerDuke Ellington - AlbumNight Train - GenreJazz - KindAAC audio file - Size4215357 - Total Time235466 - Disc Number1 - Disc Count1 - Track Number10 - Track Count17 - Year1962 - Date Modified2011-06-14T01:44:08Z - Date Added2011-06-07T16:11:21Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3390841348 - Play Date UTC2011-06-13T14:52:28Z - Normalization1259 - Artwork Count1 - Persistent ID1102C0DB8B9D0BA9 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Oscar%20Peterson%20Trio/Night%20Train/10%20Band%20Call.m4a - File Folder Count4 - Library Folder Count1 - - 8460 - - Track ID8460 - NameHymn To Freedom - ArtistOscar Peterson Trio - ComposerOscar Peterson - AlbumNight Train - GenreJazz - KindAAC audio file - Size5853299 - Total Time338133 - Disc Number1 - Disc Count1 - Track Number11 - Track Count17 - Year1962 - Date Modified2011-06-14T01:44:08Z - Date Added2011-06-07T16:11:21Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3390841687 - Play Date UTC2011-06-13T14:58:07Z - Normalization911 - Artwork Count1 - Persistent ID658AEE87B9158F57 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Oscar%20Peterson%20Trio/Night%20Train/11%20Hymn%20To%20Freedom.m4a - File Folder Count4 - Library Folder Count1 - - 8462 - - Track ID8462 - NameHappy-Go-lucky Local (Night Train) - ArtistOscar Peterson Trio - ComposerDuke Ellington - AlbumNight Train - GenreJazz - KindAAC audio file - Size5290279 - Total Time300066 - Disc Number1 - Disc Count1 - Track Number12 - Track Count17 - Year1962 - Date Modified2011-06-14T01:44:08Z - Date Added2011-06-07T16:11:21Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3390841987 - Play Date UTC2011-06-13T15:03:07Z - Normalization1134 - Artwork Count1 - Persistent IDFAC3FCAB776F4A41 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Oscar%20Peterson%20Trio/Night%20Train/12%20Happy-Go-lucky%20Local%20(Night%20Train).m4a - File Folder Count4 - Library Folder Count1 - - 8464 - - Track ID8464 - NameVolare - ArtistOscar Peterson Trio - ComposerDomenico Modugno & Francesco Migliacci - AlbumNight Train - GenreJazz - KindAAC audio file - Size3118876 - Total Time169306 - Disc Number1 - Disc Count1 - Track Number13 - Track Count17 - Year1962 - Date Modified2011-06-14T01:44:11Z - Date Added2011-06-07T16:11:21Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3390842156 - Play Date UTC2011-06-13T15:05:56Z - Normalization1259 - Artwork Count1 - Persistent IDD7F312BC94102B44 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Oscar%20Peterson%20Trio/Night%20Train/13%20Volare.m4a - File Folder Count4 - Library Folder Count1 - - 8466 - - Track ID8466 - NameMy Heart Belongs To Daddy - ArtistOscar Peterson Trio - ComposerCole Porter - AlbumNight Train - GenreJazz - KindAAC audio file - Size4260340 - Total Time237693 - Disc Number1 - Disc Count1 - Track Number14 - Track Count17 - Year1962 - Date Modified2011-06-14T01:44:10Z - Date Added2011-06-07T16:11:21Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3390842394 - Play Date UTC2011-06-13T15:09:54Z - Normalization1259 - Artwork Count1 - Persistent ID190C60D2CC97EE93 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Oscar%20Peterson%20Trio/Night%20Train/14%20My%20Heart%20Belongs%20To%20Daddy.m4a - File Folder Count4 - Library Folder Count1 - - 8468 - - Track ID8468 - NameMoten Swing - ArtistOscar Peterson Trio - ComposerEddie Durham - AlbumNight Train - GenreJazz - KindAAC audio file - Size3890493 - Total Time216706 - Disc Number1 - Disc Count1 - Track Number15 - Track Count17 - Year1962 - Date Modified2011-06-14T01:44:09Z - Date Added2011-06-07T16:11:21Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3390842610 - Play Date UTC2011-06-13T15:13:30Z - Normalization1259 - Artwork Count1 - Persistent ID313DD44658580768 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Oscar%20Peterson%20Trio/Night%20Train/15%20Moten%20Swing.m4a - File Folder Count4 - Library Folder Count1 - - 8470 - - Track ID8470 - NameNow Is The Time - ArtistOscar Peterson Trio - ComposerCharlie Parker - AlbumNight Train - GenreJazz - KindAAC audio file - Size2920433 - Total Time156693 - Disc Number1 - Disc Count1 - Track Number16 - Track Count17 - Year1962 - Date Modified2011-06-14T01:44:10Z - Date Added2011-06-07T16:11:21Z - Bit Rate128 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Persistent ID3C7612D4BE17C379 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Oscar%20Peterson%20Trio/Night%20Train/16%20Now%20Is%20The%20Time.m4a - File Folder Count4 - Library Folder Count1 - - 8472 - - Track ID8472 - NameThis Could Be The Start Of Something - ArtistOscar Peterson Trio - ComposerStephen Valentine Patrick William "Steve" Allen - AlbumNight Train - GenreJazz - KindAAC audio file - Size5084351 - Total Time311800 - Disc Number1 - Disc Count1 - Track Number17 - Track Count17 - Year1962 - Date Modified2011-06-14T01:44:11Z - Date Added2011-06-07T16:11:21Z - Bit Rate128 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Persistent IDA7F553FB0BC61756 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Oscar%20Peterson%20Trio/Night%20Train/17%20This%20Could%20Be%20The%20Start%20Of%20Something.m4a - File Folder Count4 - Library Folder Count1 - - 8474 - - Track ID8474 - NameFire - ArtistGhazal - Album ArtistGhazal - ComposerShujaat Husain Khan - AlbumThe Rain - GenreJazz - KindMPEG audio file - Size35464702 - Total Time1098814 - Disc Number1 - Disc Count1 - Track Number1 - Track Count3 - Year2003 - Date Modified2011-06-07T16:42:28Z - Date Added2011-06-08T01:53:26Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202480263 - Play Count1 - Play Date3390417849 - Play Date UTC2011-06-08T17:14:09Z - Artwork Count1 - Sort AlbumRain - Persistent IDD53F80F883498DFD - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ghazal/The%20Rain/01%20Fire.mp3 - File Folder Count4 - Library Folder Count1 - - 8476 - - Track ID8476 - NameDawn - ArtistGhazal - Album ArtistGhazal - ComposerShujaat Husain Khan - AlbumThe Rain - GenreJazz - KindMPEG audio file - Size29068255 - Total Time898925 - Disc Number1 - Disc Count1 - Track Number2 - Track Count3 - Year2003 - Date Modified2011-06-08T01:45:49Z - Date Added2011-06-08T01:53:26Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202480264 - Play Count1 - Play Date3390418748 - Play Date UTC2011-06-08T17:29:08Z - Artwork Count1 - Sort AlbumRain - Persistent ID9D47C950D4CC0F0B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ghazal/The%20Rain/02%20Dawn.mp3 - File Folder Count4 - Library Folder Count1 - - 8478 - - Track ID8478 - NameEternity - ArtistGhazal - Album ArtistGhazal - ComposerKayhan Kalhor - AlbumThe Rain - GenreJazz - KindMPEG audio file - Size38410475 - Total Time1190870 - Disc Number1 - Disc Count1 - Track Number3 - Track Count3 - Year2003 - Date Modified2011-06-08T01:46:07Z - Date Added2011-06-08T01:53:26Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202480265 - Artwork Count1 - Sort AlbumRain - Persistent IDAEF005A1E3F889DC - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ghazal/The%20Rain/03%20Eternity.mp3 - File Folder Count4 - Library Folder Count1 - - 8480 - - Track ID8480 - NameHazarat Khwaja Sangh Kheliye Dhamar (An Overture In Raga Bahar) - ArtistNusrat Fateh Ali Khan - AlbumTraditional Sufi Qawwalis. Live From London-Vol I (1993 Navras Records) - GenreReligious - KindAAC audio file - Size49698290 - Total Time1505693 - Track Number1 - Track Count3 - Date Modified2011-06-14T01:49:03Z - Date Added2011-06-08T15:31:46Z - Bit Rate256 - Sample Rate44100 - Normalization794 - Artwork Count1 - Persistent IDA237066530B7EDE0 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Nusrat%20Fateh%20Ali%20Khan/Traditional%20Sufi%20Qawwalis.%20Live%20From%20London-Vol%20I%20(1993%20Navras%20Records)/01%20Hazarat%20Khwaja%20Sangh%20Kheliye%20Dhamar%20(An%20Overture%20In%20Raga%20Bahar).m4a - File Folder Count4 - Library Folder Count1 - - 8482 - - Track ID8482 - NameAllah Hoo Allah Hoo Allah Hoo (Hamd - In Raga Mishra Khamaj) - ArtistNusrat Fateh Ali Khan - AlbumTraditional Sufi Qawwalis. Live From London-Vol I (1993 Navras Records) - GenreReligious - KindAAC audio file - Size55388575 - Total Time1677373 - Track Number2 - Track Count3 - Date Modified2011-06-14T01:49:00Z - Date Added2011-06-08T15:35:24Z - Bit Rate256 - Sample Rate44100 - Normalization794 - Artwork Count1 - Persistent IDA899696B7C0B2D34 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Nusrat%20Fateh%20Ali%20Khan/Traditional%20Sufi%20Qawwalis.%20Live%20From%20London-Vol%20I%20(1993%20Navras%20Records)/02%20Allah%20Hoo%20Allah%20Hoo%20Allah%20Hoo%20(Hamd%20-%20In%20Raga%20Mishra%20Khamaj).m4a - File Folder Count4 - Library Folder Count1 - - 8484 - - Track ID8484 - NameFarsuda Japara Zeh Hisra, Yaar Rasool Allah (Naat I Sharif) - ArtistNusrat Fateh Ali Khan - AlbumTraditional Sufi Qawwalis. Live From London-Vol I (1993 Navras Records) - GenreReligious - KindAAC audio file - Size37738419 - Total Time1140933 - Track Number3 - Track Count3 - Date Modified2011-06-14T01:48:56Z - Date Added2011-06-08T15:38:17Z - Bit Rate256 - Sample Rate44100 - Normalization438 - Artwork Count1 - Persistent ID6F2CF7D24F25B6CE - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Nusrat%20Fateh%20Ali%20Khan/Traditional%20Sufi%20Qawwalis.%20Live%20From%20London-Vol%20I%20(1993%20Navras%20Records)/03%20Farsuda%20Japara%20Zeh%20Hisra,%20Yaar%20Rasool%20Allah%20(Naat%20I%20Sharif).m4a - File Folder Count4 - Library Folder Count1 - - 8486 - - Track ID8486 - NameManqabat In Raga Bhairvi - ArtistNusrat Fateh Ali Khan - AlbumTraditional Sufi Qawwalis - Live In London Vol.2 - GenreReligious - KindAAC audio file - Size53403384 - Total Time1616106 - Disc Number2 - Disc Count4 - Track Number1 - Track Count4 - Year1993 - Date Modified2011-06-14T01:48:53Z - Date Added2011-06-08T15:41:31Z - Bit Rate256 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Persistent ID3FC9DB2126052650 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Nusrat%20Fateh%20Ali%20Khan/Traditional%20Sufi%20Qawwalis%20-%20Live%20In%20London%20Vol.2/2-01%20Manqabat%20In%20Raga%20Bhairvi.m4a - File Folder Count4 - Library Folder Count1 - - 8488 - - Track ID8488 - NameGhazal In Raga Kedar - ArtistNusrat Fateh Ali Khan - AlbumTraditional Sufi Qawwalis - Live In London Vol.2 - GenreReligious - KindAAC audio file - Size38732621 - Total Time1173200 - Disc Number2 - Disc Count4 - Track Number2 - Track Count4 - Year1993 - Date Modified2011-06-14T01:48:50Z - Date Added2011-06-08T15:46:08Z - Bit Rate256 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Persistent IDBB579C2ECDC2BC46 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Nusrat%20Fateh%20Ali%20Khan/Traditional%20Sufi%20Qawwalis%20-%20Live%20In%20London%20Vol.2/2-02%20Ghazal%20In%20Raga%20Kedar.m4a - File Folder Count4 - Library Folder Count1 - - 8490 - - Track ID8490 - NameSong In Raga Bilawal - ArtistNusrat Fateh Ali Khan - AlbumTraditional Sufi Qawwalis - Live In London Vol.2 - GenreReligious - KindAAC audio file - Size26515668 - Total Time802893 - Disc Number2 - Disc Count4 - Track Number3 - Track Count4 - Year1993 - Date Modified2011-06-14T01:48:49Z - Date Added2011-06-08T15:48:36Z - Bit Rate256 - Sample Rate44100 - Normalization1228 - Artwork Count1 - Persistent IDD06E99AFD56B31E0 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Nusrat%20Fateh%20Ali%20Khan/Traditional%20Sufi%20Qawwalis%20-%20Live%20In%20London%20Vol.2/2-03%20Song%20In%20Raga%20Bilawal.m4a - File Folder Count4 - Library Folder Count1 - - 8492 - - Track ID8492 - NameQaul/Qalbana In Raga Bhopali, Yaman Kalyan - ArtistNusrat Fateh Ali Khan - AlbumTraditional Sufi Qawwalis - Live In London Vol.2 - GenreReligious - KindAAC audio file - Size19323917 - Total Time585200 - Disc Number2 - Disc Count4 - Track Number4 - Track Count4 - Year1993 - Date Modified2011-06-14T01:48:47Z - Date Added2011-06-08T15:50:05Z - Bit Rate256 - Sample Rate44100 - Normalization941 - Artwork Count1 - Persistent ID2AA4E37D03A34C26 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Nusrat%20Fateh%20Ali%20Khan/Traditional%20Sufi%20Qawwalis%20-%20Live%20In%20London%20Vol.2/2-04%20Qaul_Qalbana%20In%20Raga%20Bhopali,%20Yaman%20Kalyan.m4a - File Folder Count4 - Library Folder Count1 - - 8494 - - Track ID8494 - NameClassical Qawwali in Raga Gawoti (Araj soonli jho, Kwaja mori araj soonli jho) - ArtistNusrat Fateh Ali Khan - AlbumTraditional Sufi Qawwalis - Live in London, Vol. III - GenreReligious - KindAAC audio file - Size18302879 - Total Time556600 - Disc Number1 - Disc Count1 - Track Number1 - Track Count4 - Year2006 - Date Modified2011-06-14T01:48:47Z - Date Added2011-06-08T15:53:19Z - Bit Rate256 - Sample Rate44100 - Normalization1000 - Artwork Count1 - Persistent ID22B4C88A4C7DD6DF - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Nusrat%20Fateh%20Ali%20Khan/Traditional%20Sufi%20Qawwalis%20-%20Live%20in%20London,%20Vol.%20III/01%20Classical%20Qawwali%20in%20Raga%20Gawoti%20(Araj%20soonli%20jho,%20Kwaja%20mori%20araj%20soonli%20jho).m4a - File Folder Count4 - Library Folder Count1 - - 8496 - - Track ID8496 - NameQawwali in Farsi by Hazrat Amir Kusrau in Raga Khamaj (Nami danam chi manzil bud shab jai ki man budam) - ArtistNusrat Fateh Ali Khan - AlbumTraditional Sufi Qawwalis - Live in London, Vol. III - GenreReligious - KindAAC audio file - Size14893202 - Total Time453040 - Disc Number1 - Disc Count1 - Track Number2 - Track Count4 - Year2006 - Date Modified2011-06-14T01:48:46Z - Date Added2011-06-08T15:55:11Z - Bit Rate256 - Sample Rate44100 - Normalization911 - Artwork Count1 - Persistent IDCEF3F06A3CED88F2 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Nusrat%20Fateh%20Ali%20Khan/Traditional%20Sufi%20Qawwalis%20-%20Live%20in%20London,%20Vol.%20III/02%20Qawwali%20in%20Farsi%20by%20Hazrat%20Amir%20Kusrau%20in%20Raga%20Khamaj%20(Nami%20danam%20chi%20manzil%20bud%20shab%20jai%20ki%20man%20budam).m4a - File Folder Count4 - Library Folder Count1 - - 8498 - - Track ID8498 - NameTraditional Qawwali by Hazrat Amir Khusrau in Raga Mishra Kafi (Kirpa karo maharaj, Mohinuddin Khwaja) - ArtistNusrat Fateh Ali Khan - AlbumTraditional Sufi Qawwalis - Live in London, Vol. III - GenreReligious - KindAAC audio file - Size27486012 - Total Time832533 - Disc Number1 - Disc Count1 - Track Number3 - Track Count4 - Year2006 - Date Modified2011-06-14T01:48:44Z - Date Added2011-06-08T15:56:27Z - Bit Rate256 - Sample Rate44100 - Normalization1000 - Artwork Count1 - Persistent IDF6C31C734A0EBD66 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Nusrat%20Fateh%20Ali%20Khan/Traditional%20Sufi%20Qawwalis%20-%20Live%20in%20London,%20Vol.%20III/03%20Traditional%20Qawwali%20by%20Hazrat%20Amir%20Khusrau%20in%20Raga%20Mishra%20Kafi%20(Kirpa%20karo%20maharaj,%20Mohinuddin%20Khwaja).m4a - File Folder Count4 - Library Folder Count1 - - 8500 - - Track ID8500 - NameModern Qawwali by Allama Iqbal in Raga Bilawal (Shiwa jawab shikwa) - ArtistNusrat Fateh Ali Khan - AlbumTraditional Sufi Qawwalis - Live in London, Vol. III - GenreReligious - KindAAC audio file - Size40957372 - Total Time1239200 - Disc Number1 - Disc Count1 - Track Number4 - Track Count4 - Year2006 - Date Modified2011-06-14T01:48:42Z - Date Added2011-06-08T15:58:25Z - Bit Rate256 - Sample Rate44100 - Normalization1000 - Artwork Count1 - Persistent ID5CD32D0F588936CA - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Nusrat%20Fateh%20Ali%20Khan/Traditional%20Sufi%20Qawwalis%20-%20Live%20in%20London,%20Vol.%20III/04%20Modern%20Qawwali%20by%20Allama%20Iqbal%20in%20Raga%20Bilawal%20(Shiwa%20jawab%20shikwa).m4a - File Folder Count4 - Library Folder Count1 - - 8502 - - Track ID8502 - NameTraditional Qawwali in Ragas Marwa & Bhatiyar - ArtistNusrat Fateh Ali Khan - AlbumTraditional Sufi Qawwalis - Live in London, Vol IV - GenreReligious - KindAAC audio file - Size30292714 - Total Time919133 - Disc Number1 - Disc Count1 - Track Number1 - Track Count3 - Year2006 - Date Modified2011-06-14T01:48:41Z - Date Added2011-06-08T16:01:43Z - Bit Rate256 - Sample Rate44100 - Normalization846 - Artwork Count1 - Persistent IDF8F71E6191773508 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Nusrat%20Fateh%20Ali%20Khan/Traditional%20Sufi%20Qawwalis%20-%20Live%20in%20London,%20Vol%20IV/01%20Traditional%20Qawwali%20in%20Ragas%20Marwa%20&%20Bhatiyar.m4a - File Folder Count4 - Library Folder Count1 - - 8504 - - Track ID8504 - NameTraditional Qawwali (Punjabi) by Baba Buleh Shah in Ragas Tilang & Khamaj - ArtistNusrat Fateh Ali Khan - AlbumTraditional Sufi Qawwalis - Live in London, Vol IV - GenreReligious - KindAAC audio file - Size51340059 - Total Time1564040 - Disc Number1 - Disc Count1 - Track Number2 - Track Count3 - Year2006 - Date Modified2011-06-14T01:48:39Z - Date Added2011-06-08T16:04:36Z - Bit Rate256 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Persistent ID6A167EC6239C0150 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Nusrat%20Fateh%20Ali%20Khan/Traditional%20Sufi%20Qawwalis%20-%20Live%20in%20London,%20Vol%20IV/02%20Traditional%20Qawwali%20(Punjabi)%20by%20Baba%20Buleh%20Shah%20in%20Ragas%20Tilang%20&%20Khamaj.m4a - File Folder Count4 - Library Folder Count1 - - 8506 - - Track ID8506 - NameTraditional Qawwali in Hindi by Hazrat Amir Khusrau in Raga Khamaj - ArtistNusrat Fateh Ali Khan - AlbumTraditional Sufi Qawwalis - Live in London, Vol IV - GenreReligious - KindAAC audio file - Size35875556 - Total Time1084960 - Disc Number1 - Disc Count1 - Track Number3 - Track Count3 - Year2006 - Date Modified2011-06-14T01:48:37Z - Date Added2011-06-08T16:08:08Z - Bit Rate256 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Persistent ID4B9D6C41B733F403 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Nusrat%20Fateh%20Ali%20Khan/Traditional%20Sufi%20Qawwalis%20-%20Live%20in%20London,%20Vol%20IV/03%20Traditional%20Qawwali%20in%20Hindi%20by%20Hazrat%20Amir%20Khusrau%20in%20Raga%20Khamaj.m4a - File Folder Count4 - Library Folder Count1 - - 8508 - - Track ID8508 - Namecha rahi kaali ghata - ArtistBegum Akhtar - Albumfarmaish - GenreTraditional - KindAAC audio file - Size19534299 - Total Time605986 - Track Number1 - Track Count11 - Date Modified2011-06-14T01:45:38Z - Date Added2011-06-09T04:52:42Z - Bit Rate256 - Sample Rate44100 - Normalization2009 - Artwork Count1 - Persistent ID1294183F90985C08 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Begum%20Akhtar/farmaish/01%20cha%20rahi%20kaali%20ghata.m4a - File Folder Count4 - Library Folder Count1 - - 8510 - - Track ID8510 - Namehar jagah har sitam - ArtistBegum Akhtar - Albumfarmaish - GenreTraditional - KindAAC audio file - Size14515516 - Total Time434946 - Track Number2 - Track Count11 - Date Modified2011-06-14T01:45:37Z - Date Added2011-06-09T04:54:43Z - Bit Rate256 - Sample Rate44100 - Normalization2922 - Artwork Count1 - Persistent ID153DD24A94D4C834 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Begum%20Akhtar/farmaish/02%20har%20jagah%20har%20sitam.m4a - File Folder Count4 - Library Folder Count1 - - 8512 - - Track ID8512 - Nameaiye balam - ArtistBegum Akhtar - Albumfarmaish - GenreTraditional - KindAAC audio file - Size13297402 - Total Time427320 - Track Number3 - Track Count11 - Date Modified2011-06-14T01:45:36Z - Date Added2011-06-09T04:55:57Z - Bit Rate256 - Sample Rate44100 - Normalization2323 - Artwork Count1 - Persistent ID2F01DC88E97EAFAB - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Begum%20Akhtar/farmaish/03%20aiye%20balam.m4a - File Folder Count4 - Library Folder Count1 - - 8514 - - Track ID8514 - Namehamar kahi manoji - ArtistBegum Akhtar - Albumfarmaish - GenreTraditional - KindAAC audio file - Size7644178 - Total Time227720 - Track Number4 - Track Count11 - Date Modified2011-06-14T01:45:35Z - Date Added2011-06-09T04:57:02Z - Bit Rate256 - Sample Rate44100 - Normalization2755 - Artwork Count1 - Persistent IDE45061B070111DA8 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Begum%20Akhtar/farmaish/04%20hamar%20kahi%20manoji.m4a - File Folder Count4 - Library Folder Count1 - - 8516 - - Track ID8516 - Namekesaria - ArtistBegum Akhtar - Albumfarmaish - GenreTraditional - KindAAC audio file - Size9178211 - Total Time274466 - Track Number5 - Track Count11 - Date Modified2011-06-14T01:45:35Z - Date Added2011-06-09T04:57:35Z - Bit Rate256 - Sample Rate44100 - Normalization2101 - Artwork Count1 - Persistent ID39DFB9F665D20767 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Begum%20Akhtar/farmaish/05%20kesaria.m4a - File Folder Count4 - Library Folder Count1 - - 8518 - - Track ID8518 - Namewo dil mein - ArtistBegum Akhtar - Albumfarmaish - GenreTraditional - KindAAC audio file - Size14060002 - Total Time421293 - Track Number6 - Track Count11 - Date Modified2011-06-14T01:45:34Z - Date Added2011-06-09T04:58:13Z - Bit Rate256 - Sample Rate44100 - Normalization2127 - Artwork Count1 - Persistent ID04FB23212900DB79 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Begum%20Akhtar/farmaish/06%20wo%20dil%20mein.m4a - File Folder Count4 - Library Folder Count1 - - 8520 - - Track ID8520 - Namesovat nindiya - ArtistBegum Akhtar - Albumfarmaish - GenreTraditional - KindAAC audio file - Size6870672 - Total Time204600 - Track Number7 - Track Count11 - Date Modified2011-06-14T01:45:33Z - Date Added2011-06-09T04:59:07Z - Bit Rate256 - Sample Rate44100 - Normalization2595 - Artwork Count1 - Persistent ID93E317FAD204AEC3 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Begum%20Akhtar/farmaish/07%20sovat%20nindiya.m4a - File Folder Count4 - Library Folder Count1 - - 8522 - - Track ID8522 - Namehaye ram ka leke - ArtistBegum Akhtar - Albumfarmaish - GenreTraditional - KindAAC audio file - Size14759450 - Total Time441706 - Track Number8 - Track Count11 - Date Modified2011-06-14T01:45:33Z - Date Added2011-06-09T04:59:33Z - Bit Rate256 - Sample Rate44100 - Normalization2577 - Artwork Count1 - Persistent ID8E35D85E4BC41855 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Begum%20Akhtar/farmaish/08%20haye%20ram%20ka%20leke.m4a - File Folder Count4 - Library Folder Count1 - - 8524 - - Track ID8524 - Namemori o preet - ArtistBegum Akhtar - Albumfarmaish - GenreTraditional - KindAAC audio file - Size16476169 - Total Time498066 - Track Number9 - Track Count11 - Date Modified2011-06-14T01:45:32Z - Date Added2011-06-09T05:00:25Z - Bit Rate256 - Sample Rate44100 - Normalization2224 - Artwork Count1 - Persistent ID934DD41D5C2E1EBC - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Begum%20Akhtar/farmaish/09%20mori%20o%20preet.m4a - File Folder Count4 - Library Folder Count1 - - 8526 - - Track ID8526 - Namepat rakho - ArtistBegum Akhtar - Albumfarmaish - GenreTraditional - KindAAC audio file - Size10831515 - Total Time324280 - Track Number10 - Track Count11 - Date Modified2011-06-14T01:45:31Z - Date Added2011-06-09T05:01:21Z - Bit Rate256 - Sample Rate44100 - Normalization2914 - Artwork Count1 - Persistent ID07D5CFAD0B101ADC - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Begum%20Akhtar/farmaish/10%20pat%20rakho.m4a - File Folder Count4 - Library Folder Count1 - - 8528 - - Track ID8528 - Namedono jahan teri - ArtistBegum Akhtar - Albumfarmaish - GenreTraditional - KindAAC audio file - Size14837312 - Total Time443613 - Track Number11 - Track Count11 - Date Modified2011-06-14T01:45:30Z - Date Added2011-06-09T05:01:55Z - Bit Rate256 - Sample Rate44100 - Normalization4063 - Artwork Count1 - Persistent ID767FA2DF1AB4B843 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Begum%20Akhtar/farmaish/11%20dono%20jahan%20teri.m4a - File Folder Count4 - Library Folder Count1 - - 8530 - - Track ID8530 - NameRanjish Hi Sahi - ArtistMehdi Hassan - AlbumFarmaaish - GenreTraditional - KindAAC audio file - Size17751216 - Total Time533320 - Track Number1 - Track Count7 - Date Modified2011-06-14T01:45:29Z - Date Added2011-06-09T05:07:57Z - Bit Rate256 - Sample Rate44100 - Normalization1886 - Artwork Count1 - Persistent ID0E2D86FB09E3214A - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mehdi%20Hassan/Farmaaish/01%20Ranjish%20Hi%20Sahi.m4a - File Folder Count4 - Library Folder Count1 - - 8532 - - Track ID8532 - NameTu Husn Ki Devi Hai - ArtistMehdi Hassan - AlbumFarmaaish - GenreTraditional - KindAAC audio file - Size12025525 - Total Time359880 - Track Number2 - Track Count7 - Date Modified2011-06-14T01:45:28Z - Date Added2011-06-09T05:09:46Z - Bit Rate256 - Sample Rate44100 - Normalization1894 - Artwork Count1 - Persistent ID0E6B59EBC654C87A - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mehdi%20Hassan/Farmaaish/02%20Tu%20Husn%20Ki%20Devi%20Hai.m4a - File Folder Count4 - Library Folder Count1 - - 8534 - - Track ID8534 - NameRoshan Jammal-E-Yaar Se - ArtistMehdi Hassan - AlbumFarmaaish - GenreTraditional - KindAAC audio file - Size13649057 - Total Time407666 - Track Number3 - Track Count7 - Date Modified2011-06-14T01:45:28Z - Date Added2011-06-09T05:10:49Z - Bit Rate256 - Sample Rate44100 - Normalization2133 - Artwork Count1 - Persistent IDD14B4C7E3FC9440F - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mehdi%20Hassan/Farmaaish/03%20Roshan%20Jammal-E-Yaar%20Se.m4a - File Folder Count4 - Library Folder Count1 - - 8536 - - Track ID8536 - NameShola Tha Jal Bujha Hoon - ArtistMehdi Hassan - AlbumFarmaaish - GenreTraditional - KindAAC audio file - Size15065813 - Total Time450546 - Track Number4 - Track Count7 - Date Modified2011-06-14T01:45:27Z - Date Added2011-06-09T05:11:53Z - Bit Rate256 - Sample Rate44100 - Normalization2275 - Artwork Count1 - Persistent ID49186658976F6EC6 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mehdi%20Hassan/Farmaaish/04%20Shola%20Tha%20Jal%20Bujha%20Hoon.m4a - File Folder Count4 - Library Folder Count1 - - 8538 - - Track ID8538 - NameBhooli Bisri Chand Umeeden - ArtistMehdi Hassan - AlbumFarmaaish - GenreTraditional - KindAAC audio file - Size19492392 - Total Time585373 - Track Number5 - Track Count7 - Date Modified2011-06-14T01:45:26Z - Date Added2011-06-09T05:12:57Z - Bit Rate256 - Sample Rate44100 - Normalization1599 - Artwork Count1 - Persistent IDACD20FC86A8C3CAC - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mehdi%20Hassan/Farmaaish/05%20Bhooli%20Bisri%20Chand%20Umeeden.m4a - File Folder Count4 - Library Folder Count1 - - 8540 - - Track ID8540 - NameMohabbat Karne Wale Kam Na Honge - ArtistMehdi Hassan - AlbumFarmaaish - GenreTraditional - KindAAC audio file - Size22478628 - Total Time675453 - Track Number6 - Track Count7 - Date Modified2011-06-14T01:45:25Z - Date Added2011-06-09T05:14:12Z - Bit Rate256 - Sample Rate44100 - Normalization1441 - Artwork Count1 - Persistent IDC7FB6F98247AEDF6 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mehdi%20Hassan/Farmaaish/06%20Mohabbat%20Karne%20Wale%20Kam%20Na%20Honge.m4a - File Folder Count4 - Library Folder Count1 - - 8542 - - Track ID8542 - NameAb Ke Hum Bichhde - ArtistMehdi Hassan - AlbumFarmaaish - GenreTraditional - KindAAC audio file - Size18369370 - Total Time550040 - Track Number7 - Track Count7 - Date Modified2011-06-14T01:45:24Z - Date Added2011-06-09T05:15:32Z - Bit Rate256 - Sample Rate44100 - Normalization1819 - Artwork Count1 - Persistent IDB0951C06AA6732BE - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mehdi%20Hassan/Farmaaish/07%20Ab%20Ke%20Hum%20Bichhde.m4a - File Folder Count4 - Library Folder Count1 - - 8544 - - Track ID8544 - NameQadar Na Jaani More Balma (Traditional Thumri) - ArtistGhulam Ali - AlbumFarmaaish Vol-1 - GenreTraditional - KindAAC audio file - Size55869570 - Total Time1686493 - Track Number1 - Track Count5 - Date Modified2011-06-14T01:45:22Z - Date Added2011-06-09T05:17:23Z - Bit Rate256 - Sample Rate44100 - Normalization1411 - Artwork Count1 - Persistent ID9F94A30D3332A9B4 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ghulam%20Ali/Farmaaish%20Vol-1/01%20Qadar%20Na%20Jaani%20More%20Balma%20(Traditional%20Thumri).m4a - File Folder Count4 - Library Folder Count1 - - 8546 - - Track ID8546 - NameAnkhan Sauni Vich Dudla Khumar ( Punjabi Geet ) - ArtistGhulam Ali - AlbumFarmaaish Vol-1 - GenreTraditional - KindAAC audio file - Size18228113 - Total Time549240 - Track Number2 - Track Count5 - Date Modified2011-06-14T01:45:20Z - Date Added2011-06-09T05:22:13Z - Bit Rate256 - Sample Rate44100 - Normalization2357 - Artwork Count1 - Persistent ID5A2D90935443862B - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ghulam%20Ali/Farmaaish%20Vol-1/02%20Ankhan%20Sauni%20Vich%20Dudla%20Khumar%20(%20Punjabi%20Geet%20).m4a - File Folder Count4 - Library Folder Count1 - - 8548 - - Track ID8548 - NameMera JO Haal HO SO HO ( ghazal-Jigar Moradabadi ) - ArtistGhulam Ali - AlbumFarmaaish Vol-1 - GenreTraditional - KindAAC audio file - Size30599261 - Total Time923040 - Track Number3 - Track Count5 - Date Modified2011-06-14T01:45:18Z - Date Added2011-06-09T05:23:26Z - Bit Rate256 - Sample Rate44100 - Normalization1641 - Artwork Count1 - Persistent ID2DBD1E7804EE4D46 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ghulam%20Ali/Farmaaish%20Vol-1/03%20Mera%20JO%20Haal%20HO%20SO%20HO%20(%20ghazal-Jigar%20Moradabadi%20).m4a - File Folder Count4 - Library Folder Count1 - - 8550 - - Track ID8550 - NamePhir USI Raahguzar PAR Shayaad ( Ghazal-Ahmed Faraz ) - ArtistGhulam Ali - AlbumFarmaaish Vol-1 - GenreTraditional - KindAAC audio file - Size22819789 - Total Time688600 - Track Number4 - Track Count5 - Date Modified2011-06-14T01:45:17Z - Date Added2011-06-09T05:25:17Z - Bit Rate256 - Sample Rate44100 - Normalization1905 - Artwork Count1 - Persistent ID419A33EB6E83FD97 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ghulam%20Ali/Farmaaish%20Vol-1/04%20Phir%20USI%20Raahguzar%20PAR%20Shayaad%20(%20Ghazal-Ahmed%20Faraz%20).m4a - File Folder Count4 - Library Folder Count1 - - 8552 - - Track ID8552 - NameAe Husn-E-Beparva Tujhe - ArtistGhulam Ali - AlbumFarmaaish Vol-1 - GenreTraditional - KindAAC audio file - Size19367339 - Total Time581746 - Track Number5 - Track Count5 - Date Modified2011-06-14T01:45:16Z - Date Added2011-06-09T05:26:32Z - Bit Rate256 - Sample Rate44100 - Normalization1897 - Artwork Count1 - Persistent IDF99AAA6174B53F54 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ghulam%20Ali/Farmaaish%20Vol-1/05%20Ae%20Husn-E-Beparva%20Tujhe.m4a - File Folder Count4 - Library Folder Count1 - - 8554 - - Track ID8554 - NameYaad Nahin - ArtistJagjit Singh - AlbumParwaaz [Live] [Disc 1] - GenreTraditional - KindAAC audio file - Size11150283 - Total Time331413 - Disc Number1 - Disc Count2 - Track Number1 - Track Count7 - Year2004 - Date Modified2011-06-14T01:45:15Z - Date Added2011-06-09T05:37:24Z - Bit Rate256 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Persistent ID5A5DED4C359DD88B - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jagjit%20Singh/Parwaaz%20%5BLive%5D%20%5BDisc%201%5D/1-01%20Yaad%20Nahin.m4a - File Folder Count4 - Library Folder Count1 - - 8556 - - Track ID8556 - NameTere Barey Mein - ArtistJagjit Singh - AlbumParwaaz [Live] [Disc 1] - GenreTraditional - KindAAC audio file - Size11243706 - Total Time336666 - Disc Number1 - Disc Count2 - Track Number2 - Track Count7 - Year2004 - Date Modified2011-06-14T01:45:14Z - Date Added2011-06-09T05:38:34Z - Bit Rate256 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Persistent IDB2B9419654EE01A5 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jagjit%20Singh/Parwaaz%20%5BLive%5D%20%5BDisc%201%5D/1-02%20Tere%20Barey%20Mein.m4a - File Folder Count4 - Library Folder Count1 - - 8558 - - Track ID8558 - NameHosh Walon Ko - ArtistJagjit Singh - AlbumParwaaz [Live] [Disc 1] - GenreTraditional - KindAAC audio file - Size15519730 - Total Time467693 - Disc Number1 - Disc Count2 - Track Number3 - Track Count7 - Year2004 - Date Modified2011-06-14T01:45:13Z - Date Added2011-06-09T05:39:36Z - Bit Rate256 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Persistent IDA0C69F54D24D7D61 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jagjit%20Singh/Parwaaz%20%5BLive%5D%20%5BDisc%201%5D/1-03%20Hosh%20Walon%20Ko.m4a - File Folder Count4 - Library Folder Count1 - - 8560 - - Track ID8560 - NameKagaj Ki Kashti - ArtistJagjit Singh - AlbumParwaaz [Live] [Disc 1] - GenreTraditional - KindAAC audio file - Size13530397 - Total Time405093 - Disc Number1 - Disc Count2 - Track Number4 - Track Count7 - Year2004 - Date Modified2011-06-14T01:45:13Z - Date Added2011-06-09T05:40:52Z - Bit Rate256 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Persistent ID1611F7353EDD2031 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jagjit%20Singh/Parwaaz%20%5BLive%5D%20%5BDisc%201%5D/1-04%20Kagaj%20Ki%20Kashti.m4a - File Folder Count4 - Library Folder Count1 - - 8562 - - Track ID8562 - NameKiska Chera - ArtistJagjit Singh - AlbumParwaaz [Live] [Disc 1] - GenreTraditional - KindAAC audio file - Size12250672 - Total Time367106 - Disc Number1 - Disc Count2 - Track Number5 - Track Count7 - Year2004 - Date Modified2011-06-14T01:45:12Z - Date Added2011-06-09T05:41:51Z - Bit Rate256 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Persistent ID5BA3B3CA147FA2F0 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jagjit%20Singh/Parwaaz%20%5BLive%5D%20%5BDisc%201%5D/1-05%20Kiska%20Chera.m4a - File Folder Count4 - Library Folder Count1 - - 8564 - - Track ID8564 - NameKal Chaudhivi Ki Raat - ArtistJagjit Singh - AlbumParwaaz [Live] [Disc 1] - GenreTraditional - KindAAC audio file - Size16223290 - Total Time485720 - Disc Number1 - Disc Count2 - Track Number6 - Track Count7 - Year2004 - Date Modified2011-06-14T01:45:11Z - Date Added2011-06-09T05:42:40Z - Bit Rate256 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Persistent IDD32F5DAF7FF173C2 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jagjit%20Singh/Parwaaz%20%5BLive%5D%20%5BDisc%201%5D/1-06%20Kal%20Chaudhivi%20Ki%20Raat.m4a - File Folder Count4 - Library Folder Count1 - - 8566 - - Track ID8566 - NameTera Chera - ArtistJagjit Singh - AlbumParwaaz [Live] [Disc 1] - GenreTraditional - KindAAC audio file - Size22174872 - Total Time667133 - Disc Number1 - Disc Count2 - Track Number7 - Track Count7 - Year2004 - Date Modified2011-06-14T01:45:10Z - Date Added2011-06-09T05:43:40Z - Bit Rate256 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Persistent ID087374443ACDC38F - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jagjit%20Singh/Parwaaz%20%5BLive%5D%20%5BDisc%201%5D/1-07%20Tera%20Chera.m4a - File Folder Count4 - Library Folder Count1 - - 8568 - - Track ID8568 - NameTale Of Fairies - ArtistVarious Artists - AlbumThe Legacy - GenreTraditional - KindAAC audio file - Size14500583 - Total Time441440 - Disc Number1 - Disc Count1 - Track Number1 - Track Count7 - Year2011 - Date Modified2011-06-13T10:57:43Z - Date Added2011-06-13T10:37:16Z - Bit Rate256 - Sample Rate44100 - Play Count5 - Play Date3426230657 - Play Date UTC2012-07-27T05:14:17Z - Normalization1498 - Compilation - Artwork Count1 - Sort AlbumLegacy - Persistent IDC13A04349FF17990 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Legacy/01%20Tale%20Of%20Fairies.m4a - File Folder Count4 - Library Folder Count1 - - 8570 - - Track ID8570 - NameSurrender - ArtistVarious Artists - AlbumThe Legacy - GenreTraditional - KindAAC audio file - Size11908274 - Total Time338346 - Disc Number1 - Disc Count1 - Track Number2 - Track Count7 - Year2011 - Date Modified2011-06-13T10:57:42Z - Date Added2011-06-13T10:38:33Z - Bit Rate256 - Sample Rate44100 - Play Count3 - Play Date3392653908 - Play Date UTC2011-07-04T14:21:48Z - Normalization2400 - Compilation - Artwork Count1 - Sort AlbumLegacy - Persistent IDC1C9877FCF40E58F - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Legacy/02%20Surrender.m4a - File Folder Count4 - Library Folder Count1 - - 8572 - - Track ID8572 - NameMystic Emotion - ArtistVarious Artists - AlbumThe Legacy - GenreTraditional - KindAAC audio file - Size11624327 - Total Time348333 - Disc Number1 - Disc Count1 - Track Number3 - Track Count7 - Year2011 - Date Modified2011-06-13T10:57:41Z - Date Added2011-06-13T10:39:24Z - Bit Rate256 - Sample Rate44100 - Play Count4 - Play Date3426262915 - Play Date UTC2012-07-27T14:11:55Z - Normalization1720 - Compilation - Artwork Count1 - Sort AlbumLegacy - Persistent ID25E5C5C756820F10 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Legacy/03%20Mystic%20Emotion.m4a - File Folder Count4 - Library Folder Count1 - - 8574 - - Track ID8574 - NameCosmic Bliss - ArtistVarious Artists - AlbumThe Legacy - GenreTraditional - KindAAC audio file - Size13300764 - Total Time402786 - Disc Number1 - Disc Count1 - Track Number4 - Track Count7 - Year2011 - Date Modified2011-06-13T10:57:40Z - Date Added2011-06-13T10:40:12Z - Bit Rate256 - Sample Rate44100 - Play Count3 - Play Date3426263318 - Play Date UTC2012-07-27T14:18:38Z - Normalization1230 - Compilation - Artwork Count1 - Sort AlbumLegacy - Persistent IDC820E2F67CA4D5F2 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Legacy/04%20Cosmic%20Bliss.m4a - File Folder Count4 - Library Folder Count1 - - 8576 - - Track ID8576 - NameSweet Farewell - ArtistVarious Artists - AlbumThe Legacy - GenreTraditional - KindAAC audio file - Size12570767 - Total Time374973 - Disc Number1 - Disc Count1 - Track Number5 - Track Count7 - Year2011 - Date Modified2011-06-13T10:57:39Z - Date Added2011-06-13T10:41:02Z - Bit Rate256 - Sample Rate44100 - Play Count2 - Play Date3390836945 - Play Date UTC2011-06-13T13:39:05Z - Normalization1230 - Compilation - Artwork Count1 - Sort AlbumLegacy - Persistent ID165F34E260682D58 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Legacy/05%20Sweet%20Farewell.m4a - File Folder Count4 - Library Folder Count1 - - 8578 - - Track ID8578 - NameCelebration - ArtistVarious Artists - AlbumThe Legacy - GenreTraditional - KindAAC audio file - Size9185798 - Total Time271600 - Disc Number1 - Disc Count1 - Track Number6 - Track Count7 - Year2011 - Date Modified2011-06-13T10:57:39Z - Date Added2011-06-13T10:41:45Z - Bit Rate256 - Sample Rate44100 - Play Count2 - Play Date3390837217 - Play Date UTC2011-06-13T13:43:37Z - Normalization1320 - Compilation - Artwork Count1 - Sort AlbumLegacy - Persistent IDC6435D851A9060C7 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Legacy/06%20Celebration.m4a - File Folder Count4 - Library Folder Count1 - - 8580 - - Track ID8580 - NameNostalgia - ArtistVarious Artists - AlbumThe Legacy - GenreTraditional - KindAAC audio file - Size13758297 - Total Time416386 - Disc Number1 - Disc Count1 - Track Number7 - Track Count7 - Year2011 - Date Modified2011-06-13T10:57:38Z - Date Added2011-06-13T10:42:15Z - Bit Rate256 - Sample Rate44100 - Play Count2 - Play Date3390837633 - Play Date UTC2011-06-13T13:50:33Z - Normalization2363 - Compilation - Artwork Count1 - Sort AlbumLegacy - Persistent ID17B2B0C17F1E58F2 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Legacy/07%20Nostalgia.m4a - File Folder Count4 - Library Folder Count1 - - 8582 - - Track ID8582 - NameShadow Captain - ArtistCrosby, Stills & Nash - Album ArtistCrosby, Stills & Nash - ComposerD.Crosby-C.Doerge - AlbumCSN - GenreRock - KindAAC audio file - Size6999142 - Total Time274066 - Disc Number1 - Disc Count1 - Track Number1 - Track Count12 - Year1977 - Date Modified2011-06-14T01:17:44Z - Date Added2011-06-14T01:43:14Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3392307363 - Play Date UTC2011-06-30T14:06:03Z - Normalization1122 - Artwork Count1 - Persistent IDD62065704B0C4255 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Crosby,%20Stills%20&%20Nash/CSN/01%20Shadow%20Captain.m4a - File Folder Count4 - Library Folder Count1 - - 8584 - - Track ID8584 - NameSee The Changes - ArtistCrosby, Stills & Nash - Album ArtistCrosby, Stills & Nash - ComposerS.Stills - AlbumCSN - GenreRock - KindAAC audio file - Size4334073 - Total Time177693 - Disc Number1 - Disc Count1 - Track Number2 - Track Count12 - Year1977 - Date Modified2011-06-14T01:15:51Z - Date Added2011-06-14T01:43:14Z - Bit Rate192 - Sample Rate44100 - Play Count3 - Play Date3392307541 - Play Date UTC2011-06-30T14:09:01Z - Normalization1093 - Artwork Count1 - Persistent IDF680052CF7537234 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Crosby,%20Stills%20&%20Nash/CSN/02%20See%20The%20Changes.m4a - File Folder Count4 - Library Folder Count1 - - 8586 - - Track ID8586 - NameCarried Away - ArtistCrosby, Stills & Nash - ComposerG.Nash - AlbumCSN - GenreRock - KindAAC audio file - Size3771630 - Total Time154026 - Disc Number1 - Disc Count1 - Track Number3 - Track Count12 - Year1977 - Date Modified2011-06-14T01:15:04Z - Date Added2011-06-14T01:43:15Z - Bit Rate192 - Sample Rate44100 - Play Count3 - Play Date3392307695 - Play Date UTC2011-06-30T14:11:35Z - Normalization1122 - Artwork Count1 - Persistent IDF1D85E79E6D2C1DC - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Crosby,%20Stills%20&%20Nash/CSN/03%20Carried%20Away.m4a - File Folder Count4 - Library Folder Count1 - - 8588 - - Track ID8588 - NameFair Game - ArtistCrosby, Stills & Nash - Album ArtistCrosby, Stills & Nash - ComposerS.Stills - AlbumCSN - GenreRock - KindAAC audio file - Size5413302 - Total Time212053 - Disc Number1 - Disc Count1 - Track Number4 - Track Count12 - Year1977 - Date Modified2011-06-14T01:22:31Z - Date Added2011-06-14T01:43:15Z - Bit Rate192 - Sample Rate44100 - Play Count3 - Play Date3392307907 - Play Date UTC2011-06-30T14:15:07Z - Normalization1122 - Artwork Count1 - Persistent ID13DA677DA5E164D3 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Crosby,%20Stills%20&%20Nash/CSN/04%20Fair%20Game.m4a - File Folder Count4 - Library Folder Count1 - - 8590 - - Track ID8590 - NameAnything At All - ArtistCrosby, Stills & Nash - Album ArtistCrosby, Stills & Nash - ComposerD.Crosby - AlbumCSN - GenreRock - KindAAC audio file - Size4727639 - Total Time186133 - Disc Number1 - Disc Count1 - Track Number5 - Track Count12 - Year1977 - Date Modified2011-06-14T01:23:51Z - Date Added2011-06-14T01:43:15Z - Bit Rate192 - Sample Rate44100 - Play Count3 - Play Date3392308093 - Play Date UTC2011-06-30T14:18:13Z - Normalization1122 - Artwork Count1 - Persistent ID243DF7A367C2F8CC - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Crosby,%20Stills%20&%20Nash/CSN/05%20Anything%20At%20All.m4a - File Folder Count4 - Library Folder Count1 - - 8592 - - Track ID8592 - NameCathedral - ArtistCrosby, Stills & Nash - Album ArtistCrosby, Stills & Nash - ComposerG.Nash - AlbumCSN - GenreRock - KindAAC audio file - Size8000717 - Total Time317653 - Disc Number1 - Disc Count1 - Track Number6 - Track Count12 - Year1977 - Date Modified2011-06-14T01:18:40Z - Date Added2011-06-14T01:43:15Z - Bit Rate192 - Sample Rate44100 - Play Count4 - Play Date3427906214 - Play Date UTC2012-08-15T14:40:14Z - Normalization1122 - Artwork Count1 - Persistent ID41013D345B95B8AB - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Crosby,%20Stills%20&%20Nash/CSN/06%20Cathedral.m4a - File Folder Count4 - Library Folder Count1 - - 8594 - - Track ID8594 - NameDark Star - ArtistCrosby, Stills & Nash - Album ArtistCrosby, Stills & Nash - ComposerS.Stills - AlbumCSN - GenreRock - KindAAC audio file - Size7415051 - Total Time285733 - Disc Number1 - Disc Count1 - Track Number7 - Track Count12 - Year1977 - Date Modified2011-06-14T01:21:42Z - Date Added2011-06-14T01:43:15Z - Bit Rate192 - Sample Rate44100 - Play Count4 - Play Date3427906500 - Play Date UTC2012-08-15T14:45:00Z - Normalization1122 - Artwork Count1 - Persistent ID558549C4DAFA979C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Crosby,%20Stills%20&%20Nash/CSN/07%20Dark%20Star.m4a - File Folder Count4 - Library Folder Count1 - - 8596 - - Track ID8596 - NameJust A Song Before I Go - ArtistCrosby, Stills & Nash - Album ArtistCrosby, Stills & Nash - ComposerG.Nash - AlbumCSN - GenreRock - KindAAC audio file - Size3375400 - Total Time133986 - Disc Number1 - Disc Count1 - Track Number8 - Track Count12 - Year1977 - Date Modified2011-06-14T01:16:46Z - Date Added2011-06-14T01:43:15Z - Bit Rate192 - Sample Rate44100 - Play Count3 - Play Date3427906634 - Play Date UTC2012-08-15T14:47:14Z - Normalization1122 - Artwork Count1 - Persistent ID383D795B7ADBC461 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Crosby,%20Stills%20&%20Nash/CSN/08%20Just%20A%20Song%20Before%20I%20Go.m4a - File Folder Count4 - Library Folder Count1 - - 8598 - - Track ID8598 - NameRun From Tears - ArtistCrosby, Stills & Nash - Album ArtistCrosby, Stills & Nash - ComposerS.Stills - AlbumCSN - GenreRock - KindAAC audio file - Size6047273 - Total Time242893 - Disc Number1 - Disc Count1 - Track Number9 - Track Count12 - Year1977 - Date Modified2011-06-14T01:19:21Z - Date Added2011-06-14T01:43:15Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3427906877 - Play Date UTC2012-08-15T14:51:17Z - Normalization1122 - Artwork Count1 - Persistent ID97FC0F77DE991F87 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Crosby,%20Stills%20&%20Nash/CSN/09%20Run%20From%20Tears.m4a - File Folder Count4 - Library Folder Count1 - - 8600 - - Track ID8600 - NameCold Rain - ArtistCrosby, Stills & Nash - Album ArtistCrosby, Stills & Nash - ComposerG.Nash - AlbumCSN - GenreRock - KindAAC audio file - Size3847664 - Total Time154626 - Disc Number1 - Disc Count1 - Track Number10 - Track Count12 - Year1977 - Date Modified2011-06-14T01:16:13Z - Date Added2011-06-14T01:43:15Z - Bit Rate192 - Sample Rate44100 - Play Count4 - Play Date3431278461 - Play Date UTC2012-09-23T15:24:21Z - Normalization1114 - Artwork Count1 - Persistent ID2CD5BDA825B25530 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Crosby,%20Stills%20&%20Nash/CSN/10%20Cold%20Rain.m4a - File Folder Count4 - Library Folder Count1 - - 8602 - - Track ID8602 - NameIn My Dreams - ArtistCrosby, Stills & Nash - ComposerD.Crosby - AlbumCSN - GenreRock - KindAAC audio file - Size7988528 - Total Time311866 - Disc Number1 - Disc Count1 - Track Number11 - Track Count12 - Year1977 - Date Modified2011-06-14T01:23:19Z - Date Added2011-06-14T01:43:15Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3391359909 - Play Date UTC2011-06-19T14:55:09Z - Normalization1122 - Artwork Count1 - Persistent IDA1066B2A7DDD3EF4 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Crosby,%20Stills%20&%20Nash/CSN/11%20In%20My%20Dreams.m4a - File Folder Count4 - Library Folder Count1 - - 8604 - - Track ID8604 - NameI Give You Give Blind - ArtistCrosby, Stills & Nash - Album ArtistCrosby, Stills & Nash - ComposerS.Stills - AlbumCSN - GenreRock - KindAAC audio file - Size5166643 - Total Time201186 - Disc Number1 - Disc Count1 - Track Number12 - Track Count12 - Year1977 - Date Modified2011-06-14T01:19:52Z - Date Added2011-06-14T01:43:15Z - Bit Rate192 - Sample Rate44100 - Normalization1827 - Artwork Count1 - Persistent ID7C21DB55FC3421B0 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Crosby,%20Stills%20&%20Nash/CSN/12%20I%20Give%20You%20Give%20Blind.m4a - File Folder Count4 - Library Folder Count1 - - 8606 - - Track ID8606 - NameMargaret vs. Pauline - ArtistNeko Case - Album ArtistNeko Case - ComposerNeko Case - AlbumFox Confessor Brings the Flood - GenreAlternative - KindAAC audio file - Size4186468 - Total Time172586 - Track Number1 - Year2006 - Date Modified2011-06-14T01:25:28Z - Date Added2011-06-14T01:43:15Z - Bit Rate192 - Sample Rate44100 - Skip Count1 - Skip Date2014-01-05T15:01:44Z - Normalization3640 - Artwork Count1 - Persistent IDC4C0BC7808B287CD - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Neko%20Case/Fox%20Confessor%20Brings%20the%20Flood/01%20Margaret%20vs.%20Pauline.m4a - File Folder Count4 - Library Folder Count1 - - 8608 - - Track ID8608 - NameStar Witness - ArtistNeko Case - Album ArtistNeko Case - ComposerNeko Case - AlbumFox Confessor Brings the Flood - GenreAlternative - KindAAC audio file - Size7609913 - Total Time316466 - Track Number2 - Year2006 - Date Modified2011-06-14T01:29:30Z - Date Added2011-06-14T01:43:15Z - Bit Rate192 - Sample Rate44100 - Normalization3920 - Artwork Count1 - Persistent ID84125F858E8D6018 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Neko%20Case/Fox%20Confessor%20Brings%20the%20Flood/02%20Star%20Witness.m4a - File Folder Count4 - Library Folder Count1 - - 8610 - - Track ID8610 - NameHold on, Hold On - ArtistNeko Case - Album ArtistNeko Case - ComposerNeko Case/The Sadies - AlbumFox Confessor Brings the Flood - GenreAlternative - KindAAC audio file - Size3985956 - Total Time166546 - Track Number3 - Year2006 - Date Modified2011-06-14T01:24:19Z - Date Added2011-06-14T01:43:15Z - Bit Rate192 - Sample Rate44100 - Normalization6601 - Artwork Count1 - Persistent ID49AB4C5781A6BF08 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Neko%20Case/Fox%20Confessor%20Brings%20the%20Flood/03%20Hold%20on,%20Hold%20On.m4a - File Folder Count4 - Library Folder Count1 - - 8612 - - Track ID8612 - NameA Widow's Toast - ArtistNeko Case - Album ArtistNeko Case - ComposerNeko Case - AlbumFox Confessor Brings the Flood - GenreAlternative - KindAAC audio file - Size2319187 - Total Time96573 - Track Number4 - Year2006 - Date Modified2011-06-14T01:26:38Z - Date Added2011-06-14T01:43:15Z - Bit Rate192 - Sample Rate44100 - Normalization3647 - Artwork Count1 - Sort NameWidow's Toast - Persistent ID79EA4172BEE27055 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Neko%20Case/Fox%20Confessor%20Brings%20the%20Flood/04%20A%20Widow's%20Toast.m4a - File Folder Count4 - Library Folder Count1 - - 8614 - - Track ID8614 - NameThat Teenage Feeling - ArtistNeko Case - Album ArtistNeko Case - ComposerNeko Case - AlbumFox Confessor Brings the Flood - GenreAlternative - KindAAC audio file - Size3913775 - Total Time162893 - Track Number5 - Year2006 - Date Modified2011-06-14T01:25:56Z - Date Added2011-06-14T01:43:15Z - Bit Rate192 - Sample Rate44100 - Normalization6790 - Artwork Count1 - Persistent ID2DEB94502E6C3016 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Neko%20Case/Fox%20Confessor%20Brings%20the%20Flood/05%20That%20Teenage%20Feeling.m4a - File Folder Count4 - Library Folder Count1 - - 8616 - - Track ID8616 - NameFox Confessor Brings the Flood - ArtistNeko Case - Album ArtistNeko Case - ComposerNeko Case/Paul Rigby - AlbumFox Confessor Brings the Flood - GenreAlternative - KindAAC audio file - Size3898579 - Total Time162373 - Track Number6 - Year2006 - Date Modified2011-06-14T01:28:42Z - Date Added2011-06-14T01:43:15Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3390882826 - Play Date UTC2011-06-14T02:23:46Z - Normalization4841 - Artwork Count1 - Persistent ID6A355D3F8835697D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Neko%20Case/Fox%20Confessor%20Brings%20the%20Flood/06%20Fox%20Confessor%20Brings%20the%20Flood.m4a - File Folder Count4 - Library Folder Count1 - - 8618 - - Track ID8618 - NameJohn Saw That Number - ArtistNeko Case - Album ArtistNeko Case - ComposerNeko Case/Traditional - AlbumFox Confessor Brings the Flood - GenreAlternative - KindAAC audio file - Size5818183 - Total Time246088 - Track Number7 - Year2006 - Date Modified2011-06-14T01:24:51Z - Date Added2011-06-14T01:43:15Z - Bit Rate192 - Sample Rate44100 - Normalization5721 - Artwork Count1 - Persistent ID551034BAD4F94ABD - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Neko%20Case/Fox%20Confessor%20Brings%20the%20Flood/07%20John%20Saw%20That%20Number.m4a - File Folder Count4 - Library Folder Count1 - - 8620 - - Track ID8620 - NameDirty Knife - ArtistNeko Case - Album ArtistNeko Case - ComposerNeko Case - AlbumFox Confessor Brings the Flood - GenreAlternative - KindAAC audio file - Size4792029 - Total Time198760 - Track Number8 - Year2006 - Date Modified2011-06-14T01:26:25Z - Date Added2011-06-14T01:43:15Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3390882451 - Play Date UTC2011-06-14T02:17:31Z - Normalization2048 - Artwork Count1 - Persistent ID358C912CA4E8CA1A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Neko%20Case/Fox%20Confessor%20Brings%20the%20Flood/08%20Dirty%20Knife.m4a - File Folder Count4 - Library Folder Count1 - - 8622 - - Track ID8622 - NameLion's Jaws - ArtistNeko Case - Album ArtistNeko Case - ComposerNeko Case/The Sadies - AlbumFox Confessor Brings the Flood - GenreAlternative - KindAAC audio file - Size3572029 - Total Time148160 - Track Number9 - Year2006 - Date Modified2011-06-14T01:27:50Z - Date Added2011-06-14T01:43:15Z - Bit Rate192 - Sample Rate44100 - Normalization2690 - Artwork Count1 - Persistent ID989C9373ADE454C1 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Neko%20Case/Fox%20Confessor%20Brings%20the%20Flood/09%20Lion's%20Jaws.m4a - File Folder Count4 - Library Folder Count1 - - 8624 - - Track ID8624 - NameMaybe Sparrow - ArtistNeko Case - Album ArtistNeko Case - ComposerNeko Case - AlbumFox Confessor Brings the Flood - GenreAlternative - KindAAC audio file - Size3739610 - Total Time157493 - Track Number10 - Year2006 - Date Modified2011-06-14T01:27:21Z - Date Added2011-06-14T01:43:15Z - Bit Rate192 - Sample Rate44100 - Normalization4736 - Artwork Count1 - Persistent IDDDDB34943B04056D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Neko%20Case/Fox%20Confessor%20Brings%20the%20Flood/10%20Maybe%20Sparrow.m4a - File Folder Count4 - Library Folder Count1 - - 8626 - - Track ID8626 - NameAt Last - ArtistNeko Case - Album ArtistNeko Case - ComposerNeko Case - AlbumFox Confessor Brings the Flood - GenreAlternative - KindAAC audio file - Size2253407 - Total Time95545 - Track Number11 - Year2006 - Date Modified2011-06-14T01:26:52Z - Date Added2011-06-14T01:43:15Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3390881341 - Play Date UTC2011-06-14T01:59:01Z - Normalization1714 - Artwork Count1 - Persistent ID6DC12B578584EFF0 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Neko%20Case/Fox%20Confessor%20Brings%20the%20Flood/11%20At%20Last.m4a - File Folder Count4 - Library Folder Count1 - - 8628 - - Track ID8628 - NameThe Needle Has Landed - ArtistNeko Case - Album ArtistNeko Case - ComposerNeko Case/The Sadies - AlbumFox Confessor Brings the Flood - GenreAlternative - KindAAC audio file - Size5477602 - Total Time225880 - Track Number12 - Year2006 - Date Modified2011-06-14T01:28:19Z - Date Added2011-06-14T01:43:16Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3390881059 - Play Date UTC2011-06-14T01:54:19Z - Normalization4992 - Artwork Count1 - Sort NameNeedle Has Landed - Persistent IDA0730C4F40B270A5 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Neko%20Case/Fox%20Confessor%20Brings%20the%20Flood/12%20The%20Needle%20Has%20Landed.m4a - File Folder Count4 - Library Folder Count1 - - 8630 - - Track ID8630 - NameOne Quiet Night - ArtistPat Metheny - ComposerPat Metheny - AlbumOne Quiet Night - GenreJazz - KindAAC audio file - Size4909911 - Total Time301881 - Disc Number1 - Disc Count1 - Track Number1 - Track Count12 - Year2003 - Date Modified2009-11-09T09:03:54Z - Date Added2011-06-14T15:56:30Z - Bit Rate128 - Sample Rate44100 - Play Count4 - Play Date3436266774 - Play Date UTC2012-11-20T09:02:54Z - Normalization1254 - Artwork Count1 - Persistent ID347127E6C02CDD51 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pat%20Metheny/One%20Quiet%20Night/01%20One%20Quiet%20Night.m4a - File Folder Count4 - Library Folder Count1 - - 8632 - - Track ID8632 - NameSong For The Boys - ArtistPat Metheny - ComposerPat Metheny - AlbumOne Quiet Night - GenreJazz - KindAAC audio file - Size4385791 - Total Time271555 - Disc Number1 - Disc Count1 - Track Number2 - Track Count12 - Year2003 - Date Modified2009-11-09T09:03:55Z - Date Added2011-06-14T15:56:31Z - Bit Rate128 - Sample Rate44100 - Play Count3 - Play Date3392057967 - Play Date UTC2011-06-27T16:49:27Z - Normalization1259 - Artwork Count1 - Persistent ID2B849D13FDC77166 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pat%20Metheny/One%20Quiet%20Night/02%20Song%20For%20The%20Boys.m4a - File Folder Count4 - Library Folder Count1 - - 8634 - - Track ID8634 - NameDon't Know Why - ArtistPat Metheny - ComposerJesse Harris - AlbumOne Quiet Night - GenreJazz - KindAAC audio file - Size3066667 - Total Time188614 - Disc Number1 - Disc Count1 - Track Number3 - Track Count12 - Year2003 - Date Modified2009-11-09T09:03:56Z - Date Added2011-06-14T15:56:31Z - Bit Rate128 - Sample Rate44100 - Play Count2 - Play Date3391962622 - Play Date UTC2011-06-26T14:20:22Z - Normalization1259 - Artwork Count1 - Persistent IDDC080641F21059A4 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pat%20Metheny/One%20Quiet%20Night/03%20Don't%20Know%20Why.m4a - File Folder Count4 - Library Folder Count1 - - 8636 - - Track ID8636 - NameAnother Chance - ArtistPat Metheny - ComposerPat Metheny - AlbumOne Quiet Night - GenreJazz - KindAAC audio file - Size6618753 - Total Time414312 - Disc Number1 - Disc Count1 - Track Number4 - Track Count12 - Year2003 - Date Modified2009-11-09T09:03:57Z - Date Added2011-06-14T15:56:31Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3391014276 - Play Date UTC2011-06-15T14:54:36Z - Normalization1253 - Artwork Count1 - Persistent IDDD014855FE92400C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pat%20Metheny/One%20Quiet%20Night/04%20Another%20Chance.m4a - File Folder Count4 - Library Folder Count1 - - 8638 - - Track ID8638 - NameTime Goes On - ArtistPat Metheny - ComposerPat Metheny - AlbumOne Quiet Night - GenreJazz - KindAAC audio file - Size3235756 - Total Time199550 - Disc Number1 - Disc Count1 - Track Number5 - Track Count12 - Year2003 - Date Modified2009-11-09T09:03:58Z - Date Added2011-06-14T15:56:31Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3391014476 - Play Date UTC2011-06-15T14:57:56Z - Normalization1250 - Artwork Count1 - Persistent ID14542A288002694A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pat%20Metheny/One%20Quiet%20Night/05%20Time%20Goes%20On.m4a - File Folder Count4 - Library Folder Count1 - - 8640 - - Track ID8640 - NameMy Song - ArtistPat Metheny - ComposerKeith Jarrett - AlbumOne Quiet Night - GenreJazz - KindAAC audio file - Size4234689 - Total Time262314 - Disc Number1 - Disc Count1 - Track Number6 - Track Count12 - Year2003 - Date Modified2009-11-09T09:03:59Z - Date Added2011-06-14T15:56:31Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3391014738 - Play Date UTC2011-06-15T15:02:18Z - Normalization1257 - Artwork Count1 - Persistent ID208AC146A56FB77F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pat%20Metheny/One%20Quiet%20Night/06%20My%20Song.m4a - File Folder Count4 - Library Folder Count1 - - 8642 - - Track ID8642 - NamePeace Memory - ArtistPat Metheny - ComposerPat Metheny - AlbumOne Quiet Night - GenreJazz - KindAAC audio file - Size6020608 - Total Time372516 - Disc Number1 - Disc Count1 - Track Number7 - Track Count12 - Year2003 - Date Modified2009-11-09T09:04:00Z - Date Added2011-06-14T15:56:31Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3391015110 - Play Date UTC2011-06-15T15:08:30Z - Normalization1245 - Artwork Count1 - Persistent IDD8F4CF4C91AEE823 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pat%20Metheny/One%20Quiet%20Night/07%20Peace%20Memory.m4a - File Folder Count4 - Library Folder Count1 - - 8644 - - Track ID8644 - NameFerry Cross The Mersey - ArtistPat Metheny - ComposerGerry Marsden - AlbumOne Quiet Night - GenreJazz - KindAAC audio file - Size3861232 - Total Time238142 - Disc Number1 - Disc Count1 - Track Number8 - Track Count12 - Year2003 - Date Modified2009-11-09T09:04:01Z - Date Added2011-06-14T15:56:31Z - Bit Rate128 - Sample Rate44100 - Normalization1257 - Artwork Count1 - Persistent ID404C1D616A4776AA - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pat%20Metheny/One%20Quiet%20Night/08%20Ferry%20Cross%20The%20Mersey.m4a - File Folder Count4 - Library Folder Count1 - - 8646 - - Track ID8646 - NameOver On 4th Street - ArtistPat Metheny - ComposerPat Metheny - AlbumOne Quiet Night - GenreJazz - KindAAC audio file - Size3567227 - Total Time221447 - Disc Number1 - Disc Count1 - Track Number9 - Track Count12 - Year2003 - Date Modified2009-11-09T09:04:02Z - Date Added2011-06-14T15:56:31Z - Bit Rate128 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Persistent ID7FDB3124DD44AFA0 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pat%20Metheny/One%20Quiet%20Night/09%20Over%20On%204th%20Street.m4a - File Folder Count4 - Library Folder Count1 - - 8648 - - Track ID8648 - NameI Will Find The Way - ArtistPat Metheny - ComposerPat Metheny - AlbumOne Quiet Night - GenreJazz - KindAAC audio file - Size7589932 - Total Time471828 - Disc Number1 - Disc Count1 - Track Number10 - Track Count12 - Year2003 - Date Modified2009-11-09T09:04:03Z - Date Added2011-06-14T15:56:32Z - Bit Rate128 - Sample Rate44100 - Normalization1237 - Artwork Count1 - Persistent ID7CE9D2ED0174BFC9 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pat%20Metheny/One%20Quiet%20Night/10%20I%20Will%20Find%20The%20Way.m4a - File Folder Count4 - Library Folder Count1 - - 8650 - - Track ID8650 - NameNorth To South, East To West - ArtistPat Metheny - ComposerPat Metheny - AlbumOne Quiet Night - GenreJazz - KindAAC audio file - Size11692429 - Total Time723973 - Disc Number1 - Disc Count1 - Track Number11 - Track Count12 - Year2003 - Date Modified2009-11-09T09:04:05Z - Date Added2011-06-14T15:56:32Z - Bit Rate128 - Sample Rate44100 - Normalization1252 - Artwork Count1 - Persistent ID8D60B696D657F990 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pat%20Metheny/One%20Quiet%20Night/11%20North%20To%20South,%20East%20To%20West.m4a - File Folder Count4 - Library Folder Count1 - - 8652 - - Track ID8652 - NameLast Train Home - ArtistPat Metheny - ComposerPat Metheny - AlbumOne Quiet Night - GenreJazz - KindAAC audio file - Size4473194 - Total Time275062 - Disc Number1 - Disc Count1 - Track Number12 - Track Count12 - Year2003 - Date Modified2009-11-09T09:04:06Z - Date Added2011-06-14T15:56:32Z - Bit Rate128 - Sample Rate44100 - Normalization1251 - Artwork Count1 - Persistent IDE3D612256AB47171 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pat%20Metheny/One%20Quiet%20Night/12%20Last%20Train%20Home.m4a - File Folder Count4 - Library Folder Count1 - - 8654 - - Track ID8654 - NameTamacun - ArtistRodrigo Y Gabriela - Album ArtistRodrigo y Gabriela - ComposerRodrigo Y Gabriela - AlbumRodrigo Y Gabriela - GenreJazz - KindAAC audio file - Size5273539 - Total Time205800 - Disc Number1 - Disc Count1 - Track Number1 - Track Count9 - Year2006 - Date Modified2011-06-21T02:13:49Z - Date Added2011-06-21T02:23:40Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3403623282 - Play Date UTC2011-11-08T13:24:42Z - Skip Count2 - Skip Date2013-09-29T14:10:07Z - Normalization4338 - Artwork Count1 - Persistent ID793E09AC5E50E5D8 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rodrigo%20y%20Gabriela/Rodrigo%20Y%20Gabriela/01%20Tamacun.m4a - File Folder Count4 - Library Folder Count1 - - 8656 - - Track ID8656 - NameDiablo Rojo - ArtistRodrigo Y Gabriela - Album ArtistRodrigo y Gabriela - ComposerRodrigo Y Gabriela - AlbumRodrigo Y Gabriela - GenreJazz - KindAAC audio file - Size7557131 - Total Time296800 - Disc Number1 - Disc Count1 - Track Number2 - Track Count9 - Year2006 - Date Modified2011-06-21T02:16:34Z - Date Added2011-06-21T02:23:40Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3402407506 - Play Date UTC2011-10-25T11:41:46Z - Skip Count3 - Skip Date2011-10-27T11:19:19Z - Normalization3352 - Artwork Count1 - Persistent IDDCE9A6C1FFBE3F7B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rodrigo%20y%20Gabriela/Rodrigo%20Y%20Gabriela/02%20Diablo%20Rojo.m4a - File Folder Count4 - Library Folder Count1 - - 8658 - - Track ID8658 - NameVikingman - ArtistRodrigo Y Gabriela - Album ArtistRodrigo y Gabriela - ComposerRodrigo Y Gabriela - AlbumRodrigo Y Gabriela - GenreJazz - KindAAC audio file - Size6141565 - Total Time243320 - Disc Number1 - Disc Count1 - Track Number3 - Track Count9 - Year2006 - Date Modified2011-06-21T02:11:49Z - Date Added2011-06-21T02:23:41Z - Bit Rate192 - Sample Rate44100 - Play Count4 - Play Date3403627537 - Play Date UTC2011-11-08T14:35:37Z - Skip Count3 - Skip Date2011-10-27T11:19:12Z - Normalization3659 - Artwork Count1 - Persistent IDAC15374D8359CE9C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rodrigo%20y%20Gabriela/Rodrigo%20Y%20Gabriela/03%20Vikingman.m4a - File Folder Count4 - Library Folder Count1 - - 8660 - - Track ID8660 - NameSatori - ArtistRodrigo Y Gabriela - Album ArtistRodrigo y Gabriela - ComposerRodrigo Y Gabriela - AlbumRodrigo Y Gabriela - GenreJazz - KindAAC audio file - Size7584629 - Total Time304400 - Disc Number1 - Disc Count1 - Track Number4 - Track Count9 - Year2006 - Date Modified2011-06-21T02:12:26Z - Date Added2011-06-21T02:23:41Z - Bit Rate192 - Sample Rate44100 - Play Count5 - Play Date3403628126 - Play Date UTC2011-11-08T14:45:26Z - Skip Count3 - Skip Date2011-11-02T11:04:15Z - Normalization1776 - Artwork Count1 - Persistent ID8C4B664170B0AF64 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rodrigo%20y%20Gabriela/Rodrigo%20Y%20Gabriela/04%20Satori.m4a - File Folder Count4 - Library Folder Count1 - - 8662 - - Track ID8662 - NameIxtapa - ArtistRodrigo Y Gabriela - Album ArtistRodrigo y Gabriela - ComposerRodrigo Y Gabriela - AlbumRodrigo Y Gabriela - GenreJazz - KindAAC audio file - Size7913274 - Total Time313973 - Disc Number1 - Disc Count1 - Track Number5 - Track Count9 - Year2006 - Date Modified2011-06-21T02:15:57Z - Date Added2011-06-21T02:23:41Z - Bit Rate192 - Sample Rate44100 - Play Count8 - Play Date3402408368 - Play Date UTC2011-10-25T11:56:08Z - Skip Count3 - Skip Date2011-11-02T11:04:23Z - Normalization3094 - Artwork Count1 - Persistent ID16F8F7AD3C2AD0DB - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rodrigo%20y%20Gabriela/Rodrigo%20Y%20Gabriela/05%20Ixtapa.m4a - File Folder Count4 - Library Folder Count1 - - 8664 - - Track ID8664 - NameStairway To Heaven - ArtistRodrigo Y Gabriela - Album ArtistRodrigo y Gabriela - ComposerJimmy Page.Robert Plant - AlbumRodrigo Y Gabriela - GenreJazz - KindAAC audio file - Size7282326 - Total Time284200 - Disc Number1 - Disc Count1 - Track Number6 - Track Count9 - Year2006 - Date Modified2011-06-21T02:15:18Z - Date Added2011-06-21T02:23:41Z - Bit Rate192 - Sample Rate44100 - Play Count12 - Play Date3463328692 - Play Date UTC2013-09-29T14:14:52Z - Normalization1615 - Artwork Count1 - Persistent ID4D45998A35B14ACB - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rodrigo%20y%20Gabriela/Rodrigo%20Y%20Gabriela/06%20Stairway%20To%20Heaven.m4a - File Folder Count4 - Library Folder Count1 - - 8666 - - Track ID8666 - NameOrion - ArtistRodrigo Y Gabriela - Album ArtistRodrigo y Gabriela - ComposerCliford Lee Burton,James Alan Hetfield+Lars Ulrich - AlbumRodrigo Y Gabriela - GenreJazz - KindAAC audio file - Size11736010 - Total Time464000 - Disc Number1 - Disc Count1 - Track Number7 - Track Count9 - Year2006 - Date Modified2011-06-21T02:14:44Z - Date Added2011-06-21T02:23:41Z - Bit Rate192 - Sample Rate44100 - Play Count11 - Play Date3463329156 - Play Date UTC2013-09-29T14:22:36Z - Skip Count1 - Skip Date2011-10-19T12:08:33Z - Normalization3105 - Artwork Count1 - Persistent ID2BA34FDE67F8C1D6 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rodrigo%20y%20Gabriela/Rodrigo%20Y%20Gabriela/07%20Orion.m4a - File Folder Count4 - Library Folder Count1 - - 8668 - - Track ID8668 - NameJuan Loco - ArtistRodrigo Y Gabriela - Album ArtistRodrigo y Gabriela - ComposerRodrigo Y Gabriela - AlbumRodrigo Y Gabriela - GenreJazz - KindAAC audio file - Size5299008 - Total Time207413 - Disc Number1 - Disc Count1 - Track Number8 - Track Count9 - Year2006 - Date Modified2011-06-21T02:12:51Z - Date Added2011-06-21T02:23:41Z - Bit Rate192 - Sample Rate44100 - Play Count9 - Play Date3430146738 - Play Date UTC2012-09-10T13:02:18Z - Skip Count2 - Skip Date2011-10-27T11:19:28Z - Normalization3852 - Artwork Count1 - Persistent ID1F5B47824495483D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rodrigo%20y%20Gabriela/Rodrigo%20Y%20Gabriela/08%20Juan%20Loco.m4a - File Folder Count4 - Library Folder Count1 - - 8670 - - Track ID8670 - NamePPA - ArtistRodrigo Y Gabriela - Album ArtistRodrigo y Gabriela - ComposerRodrigo Y Gabriela - AlbumRodrigo Y Gabriela - GenreJazz - KindAAC audio file - Size6589124 - Total Time252346 - Disc Number1 - Disc Count1 - Track Number9 - Track Count9 - Year2006 - Date Modified2011-06-21T02:13:24Z - Date Added2011-06-21T02:23:42Z - Bit Rate192 - Sample Rate44100 - Play Count3 - Play Date3427389410 - Play Date UTC2012-08-09T15:06:50Z - Skip Count3 - Skip Date2011-10-27T10:55:51Z - Normalization3555 - Artwork Count1 - Persistent ID7A0D0B0D474CFD59 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rodrigo%20y%20Gabriela/Rodrigo%20Y%20Gabriela/09%20PPA.m4a - File Folder Count4 - Library Folder Count1 - - 8672 - - Track ID8672 - NameArt of Motion - ArtistAndy McKee - Album ArtistAndy McKee - AlbumArt of Motion - GenreFolk - KindMPEG audio file - Size5935292 - Total Time205635 - Disc Number1 - Disc Count1 - Track Number1 - Track Count12 - Year2005 - Date Modified2011-06-27T15:30:04Z - Date Added2011-06-27T15:44:38Z - Bit Rate226 - Sample Rate44100 - CommentsAmazon.com Song ID: 201157123 - Play Count1 - Play Date3392054790 - Play Date UTC2011-06-27T15:56:30Z - Artwork Count1 - Persistent IDB4276347018F60A6 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Andy%20McKee/Art%20of%20Motion/01%20Art%20of%20Motion.mp3 - File Folder Count4 - Library Folder Count1 - - 8674 - - Track ID8674 - NameWhen She Cries - ArtistAndy McKee - Album ArtistAndy McKee - AlbumArt of Motion - GenreFolk - KindMPEG audio file - Size6001585 - Total Time215614 - Disc Number1 - Disc Count1 - Track Number2 - Track Count12 - Year2005 - Date Modified2011-06-27T15:27:36Z - Date Added2011-06-27T15:44:38Z - Bit Rate218 - Sample Rate44100 - CommentsAmazon.com Song ID: 201157124 - Play Count1 - Play Date3392055005 - Play Date UTC2011-06-27T16:00:05Z - Artwork Count1 - Persistent ID68A5215872A1313A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Andy%20McKee/Art%20of%20Motion/02%20When%20She%20Cries.mp3 - File Folder Count4 - Library Folder Count1 - - 8676 - - Track ID8676 - NameDrifting - ArtistAndy McKee - Album ArtistAndy McKee - AlbumArt of Motion - GenreFolk - KindMPEG audio file - Size4979652 - Total Time191973 - Disc Number1 - Disc Count1 - Track Number3 - Track Count12 - Year2005 - Date Modified2011-06-27T15:34:28Z - Date Added2011-06-27T15:44:38Z - Bit Rate202 - Sample Rate44100 - CommentsAmazon.com Song ID: 201157125 - Play Count1 - Play Date3392055197 - Play Date UTC2011-06-27T16:03:17Z - Artwork Count1 - Persistent ID274E29262E4FE8F8 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Andy%20McKee/Art%20of%20Motion/03%20Drifting.mp3 - File Folder Count4 - Library Folder Count1 - - 8678 - - Track ID8678 - NameFor My Father - ArtistAndy McKee - Album ArtistAndy McKee - AlbumArt of Motion - GenreFolk - KindMPEG audio file - Size5304795 - Total Time235232 - Disc Number1 - Disc Count1 - Track Number4 - Track Count12 - Year2005 - Date Modified2011-06-27T15:33:48Z - Date Added2011-06-27T15:44:38Z - Bit Rate176 - Sample Rate44100 - CommentsAmazon.com Song ID: 201157126 - Play Count2 - Play Date3392225173 - Play Date UTC2011-06-29T15:16:13Z - Artwork Count1 - Persistent ID8DE532CB7205F05F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Andy%20McKee/Art%20of%20Motion/04%20For%20My%20Father.mp3 - File Folder Count4 - Library Folder Count1 - - 8680 - - Track ID8680 - NamePractice Is Perfect - ArtistAndy McKee - Album ArtistAndy McKee - AlbumArt of Motion - GenreFolk - KindMPEG audio file - Size4472713 - Total Time179983 - Disc Number1 - Disc Count1 - Track Number5 - Track Count12 - Year2005 - Date Modified2011-06-27T15:29:14Z - Date Added2011-06-27T15:44:38Z - Bit Rate193 - Sample Rate44100 - CommentsAmazon.com Song ID: 201157127 - Play Count1 - Play Date3392055612 - Play Date UTC2011-06-27T16:10:12Z - Artwork Count1 - Persistent ID90872DD970DD4F2B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Andy%20McKee/Art%20of%20Motion/05%20Practice%20Is%20Perfect.mp3 - File Folder Count4 - Library Folder Count1 - - 8682 - - Track ID8682 - NameShanghai - ArtistAndy McKee - Album ArtistAndy McKee - AlbumArt of Motion - GenreFolk - KindMPEG audio file - Size6191160 - Total Time253100 - Disc Number1 - Disc Count1 - Track Number6 - Track Count12 - Year2005 - Date Modified2011-06-27T15:35:09Z - Date Added2011-06-27T15:44:38Z - Bit Rate192 - Sample Rate44100 - CommentsAmazon.com Song ID: 201157128 - Play Count1 - Play Date3392055866 - Play Date UTC2011-06-27T16:14:26Z - Artwork Count1 - Persistent ID61CEA1B2F24892A9 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Andy%20McKee/Art%20of%20Motion/06%20Shanghai.mp3 - File Folder Count4 - Library Folder Count1 - - 8684 - - Track ID8684 - NameInto the Ocean - ArtistAndy McKee - Album ArtistAndy McKee - AlbumArt of Motion - GenreFolk - KindMPEG audio file - Size6460125 - Total Time232124 - Disc Number1 - Disc Count1 - Track Number7 - Track Count12 - Year2005 - Date Modified2011-06-27T15:28:14Z - Date Added2011-06-27T15:44:38Z - Bit Rate218 - Sample Rate44100 - CommentsAmazon.com Song ID: 201157129 - Play Count1 - Play Date3392056098 - Play Date UTC2011-06-27T16:18:18Z - Artwork Count1 - Persistent ID9091EB7562C6C2C6 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Andy%20McKee/Art%20of%20Motion/07%20Into%20the%20Ocean.mp3 - File Folder Count4 - Library Folder Count1 - - 8686 - - Track ID8686 - NameNocturne - ArtistAndy McKee - Album ArtistAndy McKee - AlbumArt of Motion - GenreFolk - KindMPEG audio file - Size4792494 - Total Time193071 - Disc Number1 - Disc Count1 - Track Number8 - Track Count12 - Year2005 - Date Modified2011-06-27T15:33:13Z - Date Added2011-06-27T15:44:39Z - Bit Rate194 - Sample Rate44100 - CommentsAmazon.com Song ID: 201157130 - Play Count2 - Play Date3396794605 - Play Date UTC2011-08-21T12:33:25Z - Artwork Count1 - Persistent IDFE1EDB84ADE4154B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Andy%20McKee/Art%20of%20Motion/08%20Nocturne.mp3 - File Folder Count4 - Library Folder Count1 - - 8688 - - Track ID8688 - NameHeather's Song - ArtistAndy McKee - Album ArtistAndy McKee - AlbumArt of Motion - GenreFolk - KindMPEG audio file - Size6001604 - Total Time204355 - Disc Number1 - Disc Count1 - Track Number9 - Track Count12 - Year2005 - Date Modified2011-06-27T15:31:46Z - Date Added2011-06-27T15:44:39Z - Bit Rate230 - Sample Rate44100 - CommentsAmazon.com Song ID: 201157131 - Play Count2 - Play Date3396794183 - Play Date UTC2011-08-21T12:26:23Z - Artwork Count1 - Persistent ID479A1A507AE4D452 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Andy%20McKee/Art%20of%20Motion/09%20Heather's%20Song.mp3 - File Folder Count4 - Library Folder Count1 - - 8690 - - Track ID8690 - NameSamus' Stardrive - ArtistAndy McKee - Album ArtistAndy McKee - AlbumArt of Motion - GenreFolk - KindMPEG audio file - Size4066807 - Total Time161880 - Disc Number1 - Disc Count1 - Track Number10 - Track Count12 - Year2005 - Date Modified2011-06-27T15:30:31Z - Date Added2011-06-27T15:44:39Z - Bit Rate195 - Sample Rate44100 - CommentsAmazon.com Song ID: 201157132 - Play Count1 - Play Date3392056657 - Play Date UTC2011-06-27T16:27:37Z - Artwork Count1 - Persistent IDF609E8F19EA6C8F2 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Andy%20McKee/Art%20of%20Motion/10%20Samus'%20Stardrive.mp3 - File Folder Count4 - Library Folder Count1 - - 8692 - - Track ID8692 - NameKeys To the Hovercar - ArtistAndy McKee - Album ArtistAndy McKee - AlbumArt of Motion - GenreFolk - KindMPEG audio file - Size6145040 - Total Time228884 - Disc Number1 - Disc Count1 - Track Number11 - Track Count12 - Year2005 - Date Modified2011-06-27T15:31:01Z - Date Added2011-06-27T15:44:39Z - Bit Rate210 - Sample Rate44100 - CommentsAmazon.com Song ID: 201157133 - Play Count2 - Play Date3396794412 - Play Date UTC2011-08-21T12:30:12Z - Artwork Count1 - Persistent IDDA6AB185AF1B03FB - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Andy%20McKee/Art%20of%20Motion/11%20Keys%20To%20the%20Hovercar.mp3 - File Folder Count4 - Library Folder Count1 - - 8694 - - Track ID8694 - NameRylynn - ArtistAndy McKee - Album ArtistAndy McKee - AlbumArt of Motion - GenreFolk - KindMPEG audio file - Size7684268 - Total Time313756 - Disc Number1 - Disc Count1 - Track Number12 - Track Count12 - Year2005 - Date Modified2011-06-27T15:32:44Z - Date Added2011-06-27T15:44:39Z - Bit Rate193 - Sample Rate44100 - CommentsAmazon.com Song ID: 201157134 - Play Count1 - Play Date3392057199 - Play Date UTC2011-06-27T16:36:39Z - Artwork Count1 - Persistent ID5D9866204E9AF307 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Andy%20McKee/Art%20of%20Motion/12%20Rylynn.mp3 - File Folder Count4 - Library Folder Count1 - - 8696 - - Track ID8696 - NameDrive My Car - ArtistThe Beatles - ComposerLennon/McCartney - AlbumRubber Soul - GenreRock - KindMPEG audio file - Size2418873 - Total Time150360 - Disc Number1 - Disc Count1 - Track Number1 - Track Count14 - Year1965 - Date Modified2009-11-09T09:18:33Z - Date Added2011-07-09T05:59:00Z - Bit Rate128 - Sample Rate44100 - Play Count2 - Play Date3471345286 - Play Date UTC2013-12-31T09:04:46Z - Normalization1972 - Artwork Count1 - Sort ArtistBeatles - Persistent ID05F5D8EE43145A0C - Track TypeFile - File Type1297106739 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Rubber%20Soul/01%20Drive%20My%20Car.mp3 - File Folder Count4 - Library Folder Count1 - - 8698 - - Track ID8698 - NameNorwegian Wood (This Bird Has Flown) - ArtistThe Beatles - ComposerLennon/McCartney - AlbumRubber Soul - GenreRock - KindMPEG audio file - Size2021417 - Total Time125518 - Disc Number1 - Disc Count1 - Track Number2 - Track Count14 - Year1965 - Date Modified2009-11-09T09:18:34Z - Date Added2011-07-09T05:59:00Z - Bit Rate128 - Sample Rate44100 - Play Count2 - Play Date3427389686 - Play Date UTC2012-08-09T15:11:26Z - Normalization948 - Artwork Count1 - Sort ArtistBeatles - Persistent ID89620F6594133BC6 - Track TypeFile - File Type1297106739 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Rubber%20Soul/02%20Norwegian%20Wood%20(This%20Bird%20Has%20Flown).mp3 - File Folder Count4 - Library Folder Count1 - - 8700 - - Track ID8700 - NameYou Won't See Me - ArtistThe Beatles - ComposerLennon/McCartney - AlbumRubber Soul - GenreRock - KindMPEG audio file - Size3256049 - Total Time202684 - Disc Number1 - Disc Count1 - Track Number3 - Track Count14 - Year1965 - Date Modified2009-11-09T09:18:34Z - Date Added2011-07-09T05:59:00Z - Bit Rate128 - Sample Rate44100 - Play Count2 - Play Date3427389889 - Play Date UTC2012-08-09T15:14:49Z - Normalization2414 - Artwork Count1 - Sort ArtistBeatles - Persistent IDFBC564B199EC7473 - Track TypeFile - File Type1297106739 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Rubber%20Soul/03%20You%20Won't%20See%20Me.mp3 - File Folder Count4 - Library Folder Count1 - - 8702 - - Track ID8702 - NameNowhere Man - ArtistThe Beatles - ComposerLennon/McCartney - AlbumRubber Soul - GenreRock - KindMPEG audio file - Size2643316 - Total Time164388 - Disc Number1 - Disc Count1 - Track Number4 - Track Count14 - Year1965 - Date Modified2009-11-09T09:18:35Z - Date Added2011-07-09T05:59:00Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3396793474 - Play Date UTC2011-08-21T12:14:34Z - Normalization2196 - Artwork Count1 - Sort ArtistBeatles - Persistent IDCCABA736BD0FE16E - Track TypeFile - File Type1297106739 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Rubber%20Soul/04%20Nowhere%20Man.mp3 - File Folder Count4 - Library Folder Count1 - - 8704 - - Track ID8704 - NameThink For Yourself - ArtistThe Beatles - ComposerHarrison - AlbumRubber Soul - GenreRock - KindMPEG audio file - Size2243746 - Total Time139415 - Disc Number1 - Disc Count1 - Track Number5 - Track Count14 - Year1965 - Date Modified2009-11-09T09:18:36Z - Date Added2011-07-09T05:59:00Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3396793613 - Play Date UTC2011-08-21T12:16:53Z - Normalization1563 - Artwork Count1 - Sort ArtistBeatles - Persistent ID153EB33E488EAF61 - Track TypeFile - File Type1297106739 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Rubber%20Soul/05%20Think%20For%20Yourself.mp3 - File Folder Count4 - Library Folder Count1 - - 8706 - - Track ID8706 - NameThe Word - ArtistThe Beatles - ComposerLennon/McCartney - AlbumRubber Soul - GenreRock - KindMPEG audio file - Size2633700 - Total Time163787 - Disc Number1 - Disc Count1 - Track Number6 - Track Count14 - Year1965 - Date Modified2009-11-09T09:18:36Z - Date Added2011-07-09T05:59:00Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3396793777 - Play Date UTC2011-08-21T12:19:37Z - Normalization3304 - Artwork Count1 - Sort ArtistBeatles - Sort NameWord - Persistent IDB50E4C127A2335D0 - Track TypeFile - File Type1297106739 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Rubber%20Soul/06%20The%20Word.mp3 - File Folder Count4 - Library Folder Count1 - - 8708 - - Track ID8708 - NameMichelle - ArtistThe Beatles - ComposerLennon/McCartney - AlbumRubber Soul - GenreRock - KindMPEG audio file - Size2612384 - Total Time162455 - Disc Number1 - Disc Count1 - Track Number7 - Track Count14 - Year1965 - Date Modified2009-11-09T09:18:37Z - Date Added2011-07-09T05:59:00Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3396793184 - Play Date UTC2011-08-21T12:09:44Z - Normalization482 - Artwork Count1 - Sort ArtistBeatles - Persistent IDD003490AE18ABDFA - Track TypeFile - File Type1297106739 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Rubber%20Soul/07%20Michelle.mp3 - File Folder Count4 - Library Folder Count1 - - 8710 - - Track ID8710 - NameWhat Goes On - ArtistThe Beatles - ComposerLennon/McCartney/Starkey - AlbumRubber Soul - GenreRock - KindMPEG audio file - Size2747396 - Total Time170893 - Disc Number1 - Disc Count1 - Track Number8 - Track Count14 - Year1965 - Date Modified2009-11-09T09:18:38Z - Date Added2011-07-09T05:59:01Z - Bit Rate128 - Sample Rate44100 - Normalization1163 - Artwork Count1 - Sort ArtistBeatles - Persistent IDEBC09052474AFBC9 - Track TypeFile - File Type1297106739 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Rubber%20Soul/08%20What%20Goes%20On.mp3 - File Folder Count4 - Library Folder Count1 - - 8712 - - Track ID8712 - NameGirl - ArtistThe Beatles - ComposerLennon/McCartney - AlbumRubber Soul - GenreRock - KindMPEG audio file - Size2476543 - Total Time153965 - Disc Number1 - Disc Count1 - Track Number9 - Track Count14 - Year1965 - Date Modified2009-11-09T09:18:38Z - Date Added2011-07-09T05:59:01Z - Bit Rate128 - Sample Rate44100 - Normalization733 - Artwork Count1 - Sort ArtistBeatles - Persistent ID481D914672ED86E4 - Track TypeFile - File Type1297106739 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Rubber%20Soul/09%20Girl.mp3 - File Folder Count4 - Library Folder Count1 - - 8714 - - Track ID8714 - NameI'm Looking Through You - ArtistThe Beatles - ComposerLennon/McCartney - AlbumRubber Soul - GenreRock - KindMPEG audio file - Size2380014 - Total Time147931 - Disc Number1 - Disc Count1 - Track Number10 - Track Count14 - Year1965 - Date Modified2009-11-09T09:18:39Z - Date Added2011-07-09T05:59:01Z - Bit Rate128 - Sample Rate44100 - Normalization1212 - Artwork Count1 - Sort ArtistBeatles - Persistent ID7F3F89FBE2052B96 - Track TypeFile - File Type1297106739 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Rubber%20Soul/10%20I'm%20Looking%20Through%20You.mp3 - File Folder Count4 - Library Folder Count1 - - 8716 - - Track ID8716 - NameIn My Life - ArtistThe Beatles - ComposerLennon/McCartney - AlbumRubber Soul - GenreRock - KindMPEG audio file - Size2382091 - Total Time148062 - Disc Number1 - Disc Count1 - Track Number11 - Track Count14 - Year1965 - Date Modified2009-11-09T09:18:40Z - Date Added2011-07-09T05:59:01Z - Bit Rate128 - Sample Rate44100 - Normalization919 - Artwork Count1 - Sort ArtistBeatles - Persistent IDC11C418313184541 - Track TypeFile - File Type1297106739 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Rubber%20Soul/11%20In%20My%20Life.mp3 - File Folder Count4 - Library Folder Count1 - - 8718 - - Track ID8718 - NameWait - ArtistThe Beatles - ComposerLennon/McCartney - AlbumRubber Soul - GenreRock - KindMPEG audio file - Size2206124 - Total Time137064 - Disc Number1 - Disc Count1 - Track Number12 - Track Count14 - Year1965 - Date Modified2009-11-09T09:18:40Z - Date Added2011-07-09T05:59:01Z - Bit Rate128 - Sample Rate44100 - Normalization1542 - Artwork Count1 - Sort ArtistBeatles - Persistent IDCBC42E63050D4165 - Track TypeFile - File Type1297106739 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Rubber%20Soul/12%20Wait.mp3 - File Folder Count4 - Library Folder Count1 - - 8720 - - Track ID8720 - NameIf I Needed Someone - ArtistThe Beatles - ComposerHarrison - AlbumRubber Soul - GenreRock - KindMPEG audio file - Size2316055 - Total Time143934 - Disc Number1 - Disc Count1 - Track Number13 - Track Count14 - Year1965 - Date Modified2009-11-09T09:18:41Z - Date Added2011-07-09T05:59:01Z - Bit Rate128 - Sample Rate44100 - Normalization1709 - Artwork Count1 - Sort ArtistBeatles - Persistent IDEF687F493E5A2405 - Track TypeFile - File Type1297106739 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Rubber%20Soul/13%20If%20I%20Needed%20Someone.mp3 - File Folder Count4 - Library Folder Count1 - - 8722 - - Track ID8722 - NameRun For Your Life - ArtistThe Beatles - ComposerLennon/McCartney - AlbumRubber Soul - GenreRock - KindMPEG audio file - Size2235394 - Total Time138893 - Disc Number1 - Disc Count1 - Track Number14 - Track Count14 - Year1965 - Date Modified2009-11-09T09:18:41Z - Date Added2011-07-09T05:59:01Z - Bit Rate128 - Sample Rate44100 - Normalization1850 - Artwork Count1 - Sort ArtistBeatles - Persistent IDFD35D6C53B2847A2 - Track TypeFile - File Type1297106739 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Rubber%20Soul/14%20Run%20For%20Your%20Life.mp3 - File Folder Count4 - Library Folder Count1 - - 8724 - - Track ID8724 - NameTuning Notes - ArtistTom Kolb - AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask - GenreSpoken & Audio - KindAAC audio file - Size1390696 - Total Time45640 - Track Number1 - Track Count94 - Year2005 - Date Modified2011-07-09T10:41:49Z - Date Added2011-07-09T10:30:05Z - Bit Rate256 - Sample Rate44100 - Normalization665 - Artwork Count1 - Persistent ID9B475199D9741F7B - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/01%20Tuning%20Notes.m4a - File Folder Count4 - Library Folder Count1 - - 8726 - - Track ID8726 - NameThe Fretboard - ArtistTom Kolb - AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask - GenreSpoken & Audio - KindAAC audio file - Size2290606 - Total Time72506 - Track Number2 - Track Count94 - Year2005 - Date Modified2011-07-09T10:41:49Z - Date Added2011-07-09T10:30:17Z - Bit Rate256 - Sample Rate44100 - Normalization704 - Artwork Count1 - Sort NameFretboard - Persistent IDFB33314D9C02CFA4 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/02%20The%20Fretboard.m4a - File Folder Count4 - Library Folder Count1 - - 8728 - - Track ID8728 - NameTheory Basics - - ArtistTom Kolb - AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask - GenreSpoken & Audio - KindAAC audio file - Size1026629 - Total Time29253 - Track Number3 - Track Count94 - Year2005 - Date Modified2011-07-09T10:41:48Z - Date Added2011-07-09T10:30:32Z - Bit Rate256 - Sample Rate44100 - Normalization879 - Artwork Count1 - Persistent ID72DAC1AF30B2DAF4 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/03%20Theory%20Basics%20-.m4a - File Folder Count4 - Library Folder Count1 - - 8730 - - Track ID8730 - NameTheory Basics - - ArtistTom Kolb - AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask - GenreSpoken & Audio - KindAAC audio file - Size975468 - Total Time25506 - Track Number4 - Track Count94 - Year2005 - Date Modified2011-07-09T10:41:48Z - Date Added2011-07-09T10:30:40Z - Bit Rate256 - Sample Rate44100 - Normalization801 - Artwork Count1 - Persistent ID7571613DFD65B006 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/04%20Theory%20Basics%20-.m4a - File Folder Count4 - Library Folder Count1 - - 8732 - - Track ID8732 - NameTheory Basics - - ArtistTom Kolb - AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask - GenreSpoken & Audio - KindAAC audio file - Size797935 - Total Time20386 - Track Number5 - Track Count94 - Year2005 - Date Modified2011-07-09T10:41:48Z - Date Added2011-07-09T10:30:47Z - Bit Rate256 - Sample Rate44100 - Normalization742 - Artwork Count1 - Persistent ID9744E2920CFE4F79 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/05%20Theory%20Basics%20-.m4a - File Folder Count4 - Library Folder Count1 - - 8734 - - Track ID8734 - NameTheory Basics - - ArtistTom Kolb - AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask - GenreSpoken & Audio - KindAAC audio file - Size503145 - Total Time10760 - Track Number6 - Track Count94 - Year2005 - Date Modified2011-07-09T10:41:48Z - Date Added2011-07-09T10:30:55Z - Bit Rate256 - Sample Rate44100 - Normalization929 - Artwork Count1 - Persistent ID79ACC8D55343294B - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/06%20Theory%20Basics%20-.m4a - File Folder Count4 - Library Folder Count1 - - 8736 - - Track ID8736 - NameScales And Key Signatures - Figure 2 - ArtistTom Kolb - AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask - GenreSpoken & Audio - KindAAC audio file - Size552553 - Total Time15000 - Track Number7 - Track Count94 - Year2005 - Date Modified2011-07-09T10:41:48Z - Date Added2011-07-09T10:30:58Z - Bit Rate256 - Sample Rate44100 - Normalization600 - Artwork Count1 - Persistent IDD628F98C52F6E522 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/07%20Scales%20And%20Key%20Signatures%20-%20Figure%202.m4a - File Folder Count4 - Library Folder Count1 - - 8738 - - Track ID8738 - NameScales And Key Signatures - Figure 4 - ArtistTom Kolb - AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask - GenreSpoken & Audio - KindAAC audio file - Size536455 - Total Time14000 - Track Number8 - Track Count94 - Year2005 - Date Modified2011-07-09T10:41:48Z - Date Added2011-07-09T10:31:03Z - Bit Rate256 - Sample Rate44100 - Normalization615 - Artwork Count1 - Persistent ID87FA5C09C734B7F2 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/08%20Scales%20And%20Key%20Signatures%20-%20Figure%204.m4a - File Folder Count4 - Library Folder Count1 - - 8740 - - Track ID8740 - NameScales And Key Signatures - Figure 5 - ArtistTom Kolb - AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask - GenreSpoken & Audio - KindAAC audio file - Size549443 - Total Time13506 - Track Number9 - Track Count94 - Year2005 - Date Modified2011-07-09T10:41:48Z - Date Added2011-07-09T10:31:08Z - Bit Rate256 - Sample Rate44100 - Normalization470 - Artwork Count1 - Persistent IDD08C733E48872B67 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/09%20Scales%20And%20Key%20Signatures%20-%20Figure%205.m4a - File Folder Count4 - Library Folder Count1 - - 8742 - - Track ID8742 - NameScales And Key Signatures - Figure 10 - ArtistTom Kolb - AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask - GenreSpoken & Audio - KindAAC audio file - Size433170 - Total Time11253 - Track Number10 - Track Count94 - Year2005 - Date Modified2011-07-09T10:41:48Z - Date Added2011-07-09T10:31:14Z - Bit Rate256 - Sample Rate44100 - Normalization608 - Artwork Count1 - Persistent ID4302454E373A094F - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/10%20Scales%20And%20Key%20Signatures%20-%20Figure%2010.m4a - File Folder Count4 - Library Folder Count1 - - 8744 - - Track ID8744 - NameScales And Key Signatures - Figure 11 - ArtistTom Kolb - AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask - GenreSpoken & Audio - KindAAC audio file - Size453908 - Total Time12000 - Track Number11 - Track Count94 - Year2005 - Date Modified2011-07-09T10:41:48Z - Date Added2011-07-09T10:31:18Z - Bit Rate256 - Sample Rate44100 - Normalization648 - Artwork Count1 - Persistent ID611CFB4F48F456DF - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/11%20Scales%20And%20Key%20Signatures%20-%20Figure%2011.m4a - File Folder Count4 - Library Folder Count1 - - 8746 - - Track ID8746 - NameScales And Key Signatures - Figure 13 - C Major Scale, A Minor Scale - ArtistTom Kolb - AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask - GenreSpoken & Audio - KindAAC audio file - Size706290 - Total Time17386 - Track Number12 - Track Count94 - Year2005 - Date Modified2011-07-09T10:41:48Z - Date Added2011-07-09T10:31:22Z - Bit Rate256 - Sample Rate44100 - Normalization665 - Artwork Count1 - Persistent IDAC76410C2785EC13 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/12%20Scales%20And%20Key%20Signatures%20-%20Figure%2013%20-%20C%20Major%20Scale,%20A%20Minor%20Scale.m4a - File Folder Count4 - Library Folder Count1 - - 8748 - - Track ID8748 - NameIntervals - Figure 7 - ArtistTom Kolb - AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask - GenreSpoken & Audio - KindAAC audio file - Size376008 - Total Time10000 - Track Number13 - Track Count94 - Year2005 - Date Modified2011-07-09T10:41:48Z - Date Added2011-07-09T10:31:29Z - Bit Rate256 - Sample Rate44100 - Normalization700 - Artwork Count1 - Persistent IDA4BA82D5804B33CA - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/13%20Intervals%20-%20Figure%207.m4a - File Folder Count4 - Library Folder Count1 - - 8750 - - Track ID8750 - NameEar Training Drill #1 - Intervals - Figure 10 - ArtistTom Kolb - AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask - GenreSpoken & Audio - KindAAC audio file - Size1977170 - Total Time68000 - Track Number14 - Track Count94 - Year2005 - Date Modified2011-07-09T10:41:48Z - Date Added2011-07-09T10:31:32Z - Bit Rate256 - Sample Rate44100 - Normalization824 - Artwork Count1 - Persistent ID9192FEF71D420F05 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/14%20Ear%20Training%20Drill%20%231%20-%20Intervals%20-%20Figure%2010.m4a - File Folder Count4 - Library Folder Count1 - - 8752 - - Track ID8752 - NameEar Training Drill #1 - Intervals - Figure 11 - ArtistTom Kolb - AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask - GenreSpoken & Audio - KindAAC audio file - Size3208540 - Total Time111000 - Track Number15 - Track Count94 - Year2005 - Date Modified2011-07-09T10:41:47Z - Date Added2011-07-09T10:31:46Z - Bit Rate256 - Sample Rate44100 - Normalization851 - Artwork Count1 - Persistent ID12F66A6C556B6E1E - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/15%20Ear%20Training%20Drill%20%231%20-%20Intervals%20-%20Figure%2011.m4a - File Folder Count4 - Library Folder Count1 - - 8754 - - Track ID8754 - NameEar Training Drill #1 - Intervals - Figure 12 - ArtistTom Kolb - AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask - GenreSpoken & Audio - KindAAC audio file - Size3263976 - Total Time113000 - Track Number16 - Track Count94 - Year2005 - Date Modified2011-07-09T10:41:47Z - Date Added2011-07-09T10:32:06Z - Bit Rate256 - Sample Rate44100 - Normalization856 - Artwork Count1 - Persistent ID3E2AAFE7F3B1BA5D - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/16%20Ear%20Training%20Drill%20%231%20-%20Intervals%20-%20Figure%2012.m4a - File Folder Count4 - Library Folder Count1 - - 8756 - - Track ID8756 - NameEar Training Drill #1 - Intervals - Figure 13 - ArtistTom Kolb - AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask - GenreSpoken & Audio - KindAAC audio file - Size3200688 - Total Time112000 - Track Number17 - Track Count94 - Year2005 - Date Modified2011-07-09T10:41:47Z - Date Added2011-07-09T10:32:26Z - Bit Rate256 - Sample Rate44100 - Normalization777 - Artwork Count1 - Persistent IDAC8A247FAF6A3B39 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/17%20Ear%20Training%20Drill%20%231%20-%20Intervals%20-%20Figure%2013.m4a - File Folder Count4 - Library Folder Count1 - - 8758 - - Track ID8758 - NameEar Training Drill #2 - Triads - Fig. 14A - ArtistTom Kolb - AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask - GenreSpoken & Audio - KindAAC audio file - Size4268092 - Total Time152000 - Track Number18 - Track Count94 - Year2005 - Date Modified2011-07-09T10:41:47Z - Date Added2011-07-09T10:32:44Z - Bit Rate256 - Sample Rate44100 - Normalization765 - Artwork Count1 - Persistent ID0D9E449DF39B937B - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/18%20Ear%20Training%20Drill%20%232%20-%20Triads%20-%20Fig.%2014A.m4a - File Folder Count4 - Library Folder Count1 - - 8760 - - Track ID8760 - NameEar Training Drill #2 - Triads - Fig. 14B - ArtistTom Kolb - AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask - GenreSpoken & Audio - KindAAC audio file - Size4260025 - Total Time154253 - Track Number19 - Track Count94 - Year2005 - Date Modified2011-07-09T10:41:47Z - Date Added2011-07-09T10:33:08Z - Bit Rate256 - Sample Rate44100 - Normalization739 - Artwork Count1 - Persistent ID7DF1293FAC79C693 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/19%20Ear%20Training%20Drill%20%232%20-%20Triads%20-%20Fig.%2014B.m4a - File Folder Count4 - Library Folder Count1 - - 8762 - - Track ID8762 - NameEar Training Drill #2 - Triads - Fig 14C - ArtistTom Kolb - AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask - GenreSpoken & Audio - KindAAC audio file - Size4151957 - Total Time148253 - Track Number20 - Track Count94 - Year2005 - Date Modified2011-07-09T10:41:46Z - Date Added2011-07-09T10:33:31Z - Bit Rate256 - Sample Rate44100 - Normalization850 - Artwork Count1 - Persistent IDBBEC4D1263D76845 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/20%20Ear%20Training%20Drill%20%232%20-%20Triads%20-%20Fig%2014C.m4a - File Folder Count4 - Library Folder Count1 - - 8764 - - Track ID8764 - NameDiatonic Triads - Fig. 1A - ArtistTom Kolb - AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask - GenreSpoken & Audio - KindAAC audio file - Size1360838 - Total Time38000 - Track Number21 - Track Count94 - Year2005 - Date Modified2011-07-09T10:41:46Z - Date Added2011-07-09T10:33:53Z - Bit Rate256 - Sample Rate44100 - Normalization884 - Artwork Count1 - Persistent IDBE0A17C56FFED72F - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/21%20Diatonic%20Triads%20-%20Fig.%201A.m4a - File Folder Count4 - Library Folder Count1 - - 8766 - - Track ID8766 - NameDiatonic Seventh Chords - FIgs. 4a-4b - ArtistTom Kolb - AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask - GenreSpoken & Audio - KindAAC audio file - Size1060703 - Total Time28506 - Track Number22 - Track Count94 - Year2005 - Date Modified2011-07-09T10:41:46Z - Date Added2011-07-09T10:34:00Z - Bit Rate256 - Sample Rate44100 - Normalization1218 - Artwork Count1 - Persistent ID19BEA90484D1CF2E - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/22%20Diatonic%20Seventh%20Chords%20-%20FIgs.%204a-4b.m4a - File Folder Count4 - Library Folder Count1 - - 8768 - - Track ID8768 - NameMinor Scale Triads - FIg 1a-1c - ArtistTom Kolb - AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask - GenreSpoken & Audio - KindAAC audio file - Size1421809 - Total Time40000 - Track Number23 - Track Count94 - Year2005 - Date Modified2011-07-09T10:41:46Z - Date Added2011-07-09T10:34:07Z - Bit Rate256 - Sample Rate44100 - Normalization989 - Artwork Count1 - Persistent IDB64554237DECC5EC - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/23%20Minor%20Scale%20Triads%20-%20FIg%201a-1c.m4a - File Folder Count4 - Library Folder Count1 - - 8770 - - Track ID8770 - NameMinor Scale Seventh Chords - FIg 5 - ArtistTom Kolb - AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask - GenreSpoken & Audio - KindAAC audio file - Size607216 - Total Time14600 - Track Number24 - Track Count94 - Year2005 - Date Modified2011-07-09T10:41:46Z - Date Added2011-07-09T10:34:14Z - Bit Rate256 - Sample Rate44100 - Normalization905 - Artwork Count1 - Persistent ID446BE9B0625D5516 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/24%20Minor%20Scale%20Seventh%20Chords%20-%20FIg%205.m4a - File Folder Count4 - Library Folder Count1 - - 8772 - - Track ID8772 - NameMinor Scale Seventh Chords - FIg 6 - ArtistTom Kolb - AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask - GenreSpoken & Audio - KindAAC audio file - Size712665 - Total Time17600 - Track Number25 - Track Count94 - Year2005 - Date Modified2011-07-09T10:41:46Z - Date Added2011-07-09T10:34:19Z - Bit Rate256 - Sample Rate44100 - Normalization1415 - Artwork Count1 - Persistent ID7EC0B9B6D454A26E - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/25%20Minor%20Scale%20Seventh%20Chords%20-%20FIg%206.m4a - File Folder Count4 - Library Folder Count1 - - 8774 - - Track ID8774 - NameMinor Scale Seventh Chords - Ear Training Drill #3 - ArtistTom Kolb - AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask - GenreSpoken & Audio - KindAAC audio file - Size6491690 - Total Time200760 - Track Number26 - Track Count94 - Year2005 - Date Modified2011-07-09T10:41:46Z - Date Added2011-07-09T10:34:23Z - Bit Rate256 - Sample Rate44100 - Normalization692 - Artwork Count1 - Persistent ID7511C9BA33D2D183 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/26%20Minor%20Scale%20Seventh%20Chords%20-%20Ear%20Training%20Drill%20%233.m4a - File Folder Count4 - Library Folder Count1 - - 8776 - - Track ID8776 - NameMajor Key Centers - Fig 1 - ArtistTom Kolb - AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask - GenreSpoken & Audio - KindAAC audio file - Size770380 - Total Time19506 - Track Number27 - Track Count94 - Year2005 - Date Modified2011-07-09T10:41:45Z - Date Added2011-07-09T10:34:50Z - Bit Rate256 - Sample Rate44100 - Normalization688 - Artwork Count1 - Persistent ID24F0E93957896423 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/27%20Major%20Key%20Centers%20-%20Fig%201.m4a - File Folder Count4 - Library Folder Count1 - - 8778 - - Track ID8778 - NameMinor Key Centers - Fig. 4 - ArtistTom Kolb - AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask - GenreSpoken & Audio - KindAAC audio file - Size867756 - Total Time21573 - Track Number28 - Track Count94 - Year2005 - Date Modified2011-07-09T10:41:45Z - Date Added2011-07-09T10:34:55Z - Bit Rate256 - Sample Rate44100 - Normalization817 - Artwork Count1 - Persistent IDC7F322FE07D29AC5 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/28%20Minor%20Key%20Centers%20-%20Fig.%204.m4a - File Folder Count4 - Library Folder Count1 - - 8780 - - Track ID8780 - NameMinor Key Centers - Fig. 6 - ArtistTom Kolb - AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask - GenreSpoken & Audio - KindAAC audio file - Size885686 - Total Time22426 - Track Number29 - Track Count94 - Year2005 - Date Modified2011-07-09T10:41:45Z - Date Added2011-07-09T10:35:00Z - Bit Rate256 - Sample Rate44100 - Normalization1044 - Artwork Count1 - Persistent ID4A29087CF9182C99 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/29%20Minor%20Key%20Centers%20-%20Fig.%206.m4a - File Folder Count4 - Library Folder Count1 - - 8782 - - Track ID8782 - NameModulation - Fig. 9, Fig 10 - ArtistTom Kolb - AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask - GenreSpoken & Audio - KindAAC audio file - Size1359190 - Total Time38000 - Track Number30 - Track Count94 - Year2005 - Date Modified2011-07-09T10:41:45Z - Date Added2011-07-09T10:35:05Z - Bit Rate256 - Sample Rate44100 - Normalization844 - Artwork Count1 - Persistent IDD88FA7C67B282481 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/30%20Modulation%20-%20Fig.%209,%20Fig%2010.m4a - File Folder Count4 - Library Folder Count1 - - 8784 - - Track ID8784 - NameModal Interchange Fig. 12 - ArtistTom Kolb - AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask - GenreSpoken & Audio - KindAAC audio file - Size871300 - Total Time22426 - Track Number31 - Track Count94 - Year2005 - Date Modified2011-07-09T10:41:45Z - Date Added2011-07-09T10:35:12Z - Bit Rate256 - Sample Rate44100 - Normalization836 - Artwork Count1 - Persistent ID5478AD798D217957 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/31%20Modal%20Interchange%20Fig.%2012.m4a - File Folder Count4 - Library Folder Count1 - - 8786 - - Track ID8786 - NameModal Interchange Fig. 14 - Seventh Chords - ArtistTom Kolb - AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask - GenreSpoken & Audio - KindAAC audio file - Size1334430 - Total Time32546 - Track Number32 - Track Count94 - Year2005 - Date Modified2011-07-09T10:41:45Z - Date Added2011-07-09T10:35:17Z - Bit Rate256 - Sample Rate44100 - Normalization960 - Artwork Count1 - Persistent ID96D6DB3D989A3D3F - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/32%20Modal%20Interchange%20Fig.%2014%20-%20Seventh%20Chords.m4a - File Folder Count4 - Library Folder Count1 - - 8788 - - Track ID8788 - NameModal Interchange Fig. 15 - ArtistTom Kolb - AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask - GenreSpoken & Audio - KindAAC audio file - Size1225666 - Total Time29400 - Track Number33 - Track Count94 - Year2005 - Date Modified2011-07-09T10:41:45Z - Date Added2011-07-09T10:35:24Z - Bit Rate256 - Sample Rate44100 - Normalization799 - Artwork Count1 - Persistent ID30427BC16BB5314F - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/33%20Modal%20Interchange%20Fig.%2015.m4a - File Folder Count4 - Library Folder Count1 - - 8790 - - Track ID8790 - NameEar Training Drill # 4 - Major Or Minor Chord Progressions, Modal Interchange - ArtistTom Kolb - AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask - GenreSpoken & Audio - KindAAC audio file - Size6915043 - Total Time206000 - Track Number34 - Track Count94 - Year2005 - Date Modified2011-07-09T10:41:44Z - Date Added2011-07-09T10:35:30Z - Bit Rate256 - Sample Rate44100 - Normalization925 - Artwork Count1 - Persistent IDC7341F07194C351A - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/34%20Ear%20Training%20Drill%20%23%204%20-%20Major%20Or%20Minor%20Chord%20Progressions,%20Modal%20Interchange.m4a - File Folder Count4 - Library Folder Count1 - - 8792 - - Track ID8792 - NameThe 12-Bar Blues Progression - Fig. 1 - ArtistTom Kolb - AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask - GenreSpoken & Audio - KindAAC audio file - Size2390417 - Total Time60933 - Track Number35 - Track Count94 - Year2005 - Date Modified2011-07-09T10:41:44Z - Date Added2011-07-09T10:35:55Z - Bit Rate256 - Sample Rate44100 - Normalization885 - Artwork Count1 - Sort Name12-Bar Blues Progression - Fig. 1 - Persistent IDEA66800D49E9D4A9 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/35%20The%2012-Bar%20Blues%20Progression%20-%20Fig.%201.m4a - File Folder Count4 - Library Folder Count1 - - 8794 - - Track ID8794 - NameThe 12-Bar Blues Progression - Fig. 2 - ArtistTom Kolb - AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask - GenreSpoken & Audio - KindAAC audio file - Size761565 - Total Time16066 - Track Number36 - Track Count94 - Year2005 - Date Modified2011-07-09T10:41:44Z - Date Added2011-07-09T10:36:04Z - Bit Rate256 - Sample Rate44100 - Normalization1123 - Artwork Count1 - Sort Name12-Bar Blues Progression - Fig. 2 - Persistent IDDD455A99EFC153CC - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/36%20The%2012-Bar%20Blues%20Progression%20-%20Fig.%202.m4a - File Folder Count4 - Library Folder Count1 - - 8796 - - Track ID8796 - NameThe 12-Bar Blues Progression - Fig. 3 - ArtistTom Kolb - AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask - GenreSpoken & Audio - KindAAC audio file - Size642951 - Total Time13120 - Track Number37 - Track Count94 - Year2005 - Date Modified2011-07-09T10:41:44Z - Date Added2011-07-09T10:36:09Z - Bit Rate256 - Sample Rate44100 - Normalization875 - Artwork Count1 - Sort Name12-Bar Blues Progression - Fig. 3 - Persistent IDFB455AA22BF828F5 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/37%20The%2012-Bar%20Blues%20Progression%20-%20Fig.%203.m4a - File Folder Count4 - Library Folder Count1 - - 8798 - - Track ID8798 - NameOther Blues Progressions - Fig. 5A - ArtistTom Kolb - AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask - GenreSpoken & Audio - KindAAC audio file - Size1110517 - Total Time25440 - Track Number38 - Track Count94 - Year2005 - Date Modified2011-07-09T10:41:44Z - Date Added2011-07-09T10:36:13Z - Bit Rate256 - Sample Rate44100 - Normalization755 - Artwork Count1 - Persistent ID7592C63102D8C08C - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/38%20Other%20Blues%20Progressions%20-%20Fig.%205A.m4a - File Folder Count4 - Library Folder Count1 - - 8800 - - Track ID8800 - NameOther Blues Progressions - Fig. 5B - ArtistTom Kolb - AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask - GenreSpoken & Audio - KindAAC audio file - Size1107119 - Total Time25306 - Track Number39 - Track Count94 - Year2005 - Date Modified2011-07-09T10:41:44Z - Date Added2011-07-09T10:36:18Z - Bit Rate256 - Sample Rate44100 - Normalization1355 - Artwork Count1 - Persistent IDCE0D0CC523D89005 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/39%20Other%20Blues%20Progressions%20-%20Fig.%205B.m4a - File Folder Count4 - Library Folder Count1 - - 8802 - - Track ID8802 - NameOther Blues Progressions - Fig. 6 - ArtistTom Kolb - AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask - GenreSpoken & Audio - KindAAC audio file - Size2567010 - Total Time67000 - Track Number40 - Track Count94 - Year2005 - Date Modified2011-07-09T10:41:44Z - Date Added2011-07-09T10:36:24Z - Bit Rate256 - Sample Rate44100 - Normalization1394 - Artwork Count1 - Persistent IDCCFBD51E0E8474C0 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/40%20Other%20Blues%20Progressions%20-%20Fig.%206.m4a - File Folder Count4 - Library Folder Count1 - - 8804 - - Track ID8804 - NameOther Blues Progressions - Fig. 7 - ArtistTom Kolb - AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask - GenreSpoken & Audio - KindAAC audio file - Size1654214 - Total Time40800 - Track Number41 - Track Count94 - Year2005 - Date Modified2011-07-09T10:41:44Z - Date Added2011-07-09T10:36:34Z - Bit Rate256 - Sample Rate44100 - Normalization815 - Artwork Count1 - Persistent ID75C79820352A3722 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/41%20Other%20Blues%20Progressions%20-%20Fig.%207.m4a - File Folder Count4 - Library Folder Count1 - - 8806 - - Track ID8806 - NameMinor Pentatonic And Blues Scale - Fig. 8 - ArtistTom Kolb - AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask - GenreSpoken & Audio - KindAAC audio file - Size773865 - Total Time19400 - Track Number42 - Track Count94 - Year2005 - Date Modified2011-07-09T10:41:43Z - Date Added2011-07-09T10:36:41Z - Bit Rate256 - Sample Rate44100 - Normalization835 - Artwork Count1 - Persistent IDB937EA16E2546EFC - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/42%20Minor%20Pentatonic%20And%20Blues%20Scale%20-%20Fig.%208.m4a - File Folder Count4 - Library Folder Count1 - - 8808 - - Track ID8808 - NameMinor Pentatonic And Blues Scale - Fig. 10 - ArtistTom Kolb - AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask - GenreSpoken & Audio - KindAAC audio file - Size1314915 - Total Time35253 - Track Number43 - Track Count94 - Year2005 - Date Modified2011-07-09T10:41:43Z - Date Added2011-07-09T10:36:45Z - Bit Rate256 - Sample Rate44100 - Normalization852 - Artwork Count1 - Persistent ID5A7C1964FA65E5B6 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/43%20Minor%20Pentatonic%20And%20Blues%20Scale%20-%20Fig.%2010.m4a - File Folder Count4 - Library Folder Count1 - - 8810 - - Track ID8810 - NameMinor Pentatonic And Blues Scale - Fig. 11 - ArtistTom Kolb - AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask - GenreSpoken & Audio - KindAAC audio file - Size504539 - Total Time11600 - Track Number44 - Track Count94 - Year2005 - Date Modified2011-07-09T10:41:43Z - Date Added2011-07-09T10:36:53Z - Bit Rate256 - Sample Rate44100 - Normalization812 - Artwork Count1 - Persistent ID98E6D594CFC65742 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/44%20Minor%20Pentatonic%20And%20Blues%20Scale%20-%20Fig.%2011.m4a - File Folder Count4 - Library Folder Count1 - - 8812 - - Track ID8812 - NameMajor Pentatonic Scale - Fig. 12A - C Major Scale, C Major Pentatonic Scale - ArtistTom Kolb - AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask - GenreSpoken & Audio - KindAAC audio file - Size784976 - Total Time20000 - Track Number45 - Track Count94 - Year2005 - Date Modified2011-07-09T10:41:43Z - Date Added2011-07-09T10:36:57Z - Bit Rate256 - Sample Rate44100 - Normalization840 - Artwork Count1 - Persistent ID064C8BDA5BB5B266 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/45%20Major%20Pentatonic%20Scale%20-%20Fig.%2012A%20-%20C%20Major%20Scale,%20C%20Major%20Pentatonic%20Scale.m4a - File Folder Count4 - Library Folder Count1 - - 8814 - - Track ID8814 - NameMajor Pentatonic Scale - Fig. 13 - C Major Pentatonic Scale - ArtistTom Kolb - AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask - GenreSpoken & Audio - KindAAC audio file - Size1287428 - Total Time35506 - Track Number46 - Track Count94 - Year2005 - Date Modified2011-07-09T10:41:43Z - Date Added2011-07-09T10:37:00Z - Bit Rate256 - Sample Rate44100 - Normalization704 - Artwork Count1 - Persistent IDA888263A44286F24 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/46%20Major%20Pentatonic%20Scale%20-%20Fig.%2013%20-%20C%20Major%20Pentatonic%20Scale.m4a - File Folder Count4 - Library Folder Count1 - - 8816 - - Track ID8816 - NameParallel Pentatonic Scales - Fig. 14 - A Minor Pentatonic, A Major Pentatonic, A Major Pentatonic And A Major Penatonic Scales Combined - ArtistTom Kolb - AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask - GenreSpoken & Audio - KindAAC audio file - Size1108404 - Total Time30200 - Track Number47 - Track Count94 - Year2005 - Date Modified2011-07-09T10:41:43Z - Date Added2011-07-09T10:37:05Z - Bit Rate256 - Sample Rate44100 - Normalization830 - Artwork Count1 - Persistent ID0D06A414686CE00B - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/47%20Parallel%20Pentatonic%20Scales%20-%20Fig.%2014%20-%20A%20Minor%20Pentatonic,%20A%20Major%20Pentatonic,%20A%20Major%20Pentatonic%20And%20A%20Major%20Penatonic%20Scales%20Combined.m4a - File Folder Count4 - Library Folder Count1 - - 8818 - - Track ID8818 - NameModes - Fig. 1 - C Major Scale (Root To Root) - ArtistTom Kolb - AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask - GenreSpoken & Audio - KindAAC audio file - Size3687263 - Total Time116906 - Track Number48 - Track Count94 - Year2005 - Date Modified2011-07-09T10:41:43Z - Date Added2011-07-09T10:37:09Z - Bit Rate256 - Sample Rate44100 - Normalization868 - Artwork Count1 - Persistent IDFD9F02275E70EB34 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/48%20Modes%20-%20Fig.%201%20-%20C%20Major%20Scale%20(Root%20To%20Root).m4a - File Folder Count4 - Library Folder Count1 - - 8820 - - Track ID8820 - NameModes - Fig. 2 - C Major Scale (D To D) - ArtistTom Kolb - AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask - GenreSpoken & Audio - KindAAC audio file - Size825089 - Total Time21200 - Track Number49 - Track Count94 - Year2005 - Date Modified2011-07-09T10:41:43Z - Date Added2011-07-09T10:37:24Z - Bit Rate256 - Sample Rate44100 - Normalization795 - Artwork Count1 - Persistent ID21375263938FBB22 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/49%20Modes%20-%20Fig.%202%20-%20C%20Major%20Scale%20(D%20To%20D).m4a - File Folder Count4 - Library Folder Count1 - - 8822 - - Track ID8822 - NameModes - First Mode Through Seventh Mode FIg. 3 - ArtistTom Kolb - AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask - GenreSpoken & Audio - KindAAC audio file - Size2512854 - Total Time72506 - Track Number50 - Track Count94 - Year2005 - Date Modified2011-07-09T10:41:42Z - Date Added2011-07-09T10:37:27Z - Bit Rate256 - Sample Rate44100 - Normalization1099 - Artwork Count1 - Persistent IDD4AAE82275D70C02 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/50%20Modes%20-%20First%20Mode%20Through%20Seventh%20Mode%20FIg.%203.m4a - File Folder Count4 - Library Folder Count1 - - 8824 - - Track ID8824 - NameHow Modes Are Used - Modes In Major And Minor Scale Progressions - Fig. 5 - ArtistTom Kolb - AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask - GenreSpoken & Audio - KindAAC audio file - Size532863 - Total Time13000 - Track Number51 - Track Count94 - Year2005 - Date Modified2011-07-09T10:41:42Z - Date Added2011-07-09T10:37:36Z - Bit Rate256 - Sample Rate44100 - Normalization1419 - Artwork Count1 - Persistent ID2E02997EFCFF3039 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/51%20How%20Modes%20Are%20Used%20-%20Modes%20In%20Major%20And%20Minor%20Scale%20Progressions%20-%20Fig.%205.m4a - File Folder Count4 - Library Folder Count1 - - 8826 - - Track ID8826 - NameHow Modes Are Used - Modes In Major And Minor Scale Progressions - Fig. 6 - ArtistTom Kolb - AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask - GenreSpoken & Audio - KindAAC audio file - Size1089038 - Total Time25480 - Track Number52 - Track Count94 - Year2005 - Date Modified2011-07-09T10:41:42Z - Date Added2011-07-09T10:37:38Z - Bit Rate256 - Sample Rate44100 - Normalization1351 - Artwork Count1 - Persistent ID8E44A5CA17A8F942 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/52%20How%20Modes%20Are%20Used%20-%20Modes%20In%20Major%20And%20Minor%20Scale%20Progressions%20-%20Fig.%206.m4a - File Folder Count4 - Library Folder Count1 - - 8828 - - Track ID8828 - NameHow Modes Are Used - Modes And Modal Progressions - Harmonizing D Dorian - Fig. 7 - ArtistTom Kolb - AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask - GenreSpoken & Audio - KindAAC audio file - Size559292 - Total Time13253 - Track Number53 - Track Count94 - Year2005 - Date Modified2011-07-09T10:41:42Z - Date Added2011-07-09T10:37:41Z - Bit Rate256 - Sample Rate44100 - Normalization1456 - Artwork Count1 - Persistent IDA1DD8E9DECE35A5F - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/53%20How%20Modes%20Are%20Used%20-%20Modes%20And%20Modal%20Progressions%20-%20Harmonizing%20D%20Dorian%20-%20Fig.%207.m4a - File Folder Count4 - Library Folder Count1 - - 8830 - - Track ID8830 - NameHow Modes Are Used - Modes And Modal Progressions - Harmonizing D Dorian - Fig. 8 - ArtistTom Kolb - AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask - GenreSpoken & Audio - KindAAC audio file - Size825728 - Total Time19106 - Track Number54 - Track Count94 - Year2005 - Date Modified2011-07-09T10:41:42Z - Date Added2011-07-09T10:37:43Z - Bit Rate256 - Sample Rate44100 - Normalization997 - Artwork Count1 - Persistent IDCCEF189D9DC2E329 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/54%20How%20Modes%20Are%20Used%20-%20Modes%20And%20Modal%20Progressions%20-%20Harmonizing%20D%20Dorian%20-%20Fig.%208.m4a - File Folder Count4 - Library Folder Count1 - - 8832 - - Track ID8832 - NameThe Modes - Ionian - Fig. 10 - ArtistTom Kolb - AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask - GenreSpoken & Audio - KindAAC audio file - Size862158 - Total Time19293 - Track Number55 - Track Count94 - Year2005 - Date Modified2011-07-09T10:41:42Z - Date Added2011-07-09T10:37:46Z - Bit Rate256 - Sample Rate44100 - Normalization1048 - Artwork Count1 - Sort NameModes - Ionian - Fig. 10 - Persistent ID75A39A7929C0A705 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/55%20The%20Modes%20-%20Ionian%20-%20Fig.%2010.m4a - File Folder Count4 - Library Folder Count1 - - 8834 - - Track ID8834 - NameThe Modes - Dorian - Fig. 12 - ArtistTom Kolb - AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask - GenreSpoken & Audio - KindAAC audio file - Size733632 - Total Time15960 - Track Number56 - Track Count94 - Year2005 - Date Modified2011-07-09T10:41:42Z - Date Added2011-07-09T10:37:49Z - Bit Rate256 - Sample Rate44100 - Normalization1046 - Artwork Count1 - Sort NameModes - Dorian - Fig. 12 - Persistent ID94A24377B9A4E427 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/56%20The%20Modes%20-%20Dorian%20-%20Fig.%2012.m4a - File Folder Count4 - Library Folder Count1 - - 8836 - - Track ID8836 - NameThe Modes - Phrygian - Fig. 14 - ArtistTom Kolb - AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask - GenreSpoken & Audio - KindAAC audio file - Size772357 - Total Time17173 - Track Number57 - Track Count94 - Year2005 - Date Modified2011-07-09T10:41:42Z - Date Added2011-07-09T10:37:51Z - Bit Rate256 - Sample Rate44100 - Normalization876 - Artwork Count1 - Sort NameModes - Phrygian - Fig. 14 - Persistent IDC12594436375E6FD - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/57%20The%20Modes%20-%20Phrygian%20-%20Fig.%2014.m4a - File Folder Count4 - Library Folder Count1 - - 8838 - - Track ID8838 - NameThe Modes - Lydian - Fig. 16 - ArtistTom Kolb - AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask - GenreSpoken & Audio - KindAAC audio file - Size738456 - Total Time16786 - Track Number58 - Track Count94 - Year2005 - Date Modified2011-07-09T10:41:42Z - Date Added2011-07-09T10:37:54Z - Bit Rate256 - Sample Rate44100 - Normalization859 - Artwork Count1 - Sort NameModes - Lydian - Fig. 16 - Persistent ID2D4B81B21C06F48A - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/58%20The%20Modes%20-%20Lydian%20-%20Fig.%2016.m4a - File Folder Count4 - Library Folder Count1 - - 8840 - - Track ID8840 - NameThe Modes - Mixolydian - Fig. 18 - ArtistTom Kolb - AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask - GenreSpoken & Audio - KindAAC audio file - Size641086 - Total Time14146 - Track Number59 - Track Count94 - Year2005 - Date Modified2011-07-09T10:41:42Z - Date Added2011-07-09T10:37:56Z - Bit Rate256 - Sample Rate44100 - Normalization1446 - Artwork Count1 - Sort NameModes - Mixolydian - Fig. 18 - Persistent ID8D58A70C0CA52AF8 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/59%20The%20Modes%20-%20Mixolydian%20-%20Fig.%2018.m4a - File Folder Count4 - Library Folder Count1 - - 8842 - - Track ID8842 - NameThe Modes - Aeolian - Fig. 20 - ArtistTom Kolb - AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask - GenreSpoken & Audio - KindAAC audio file - Size957526 - Total Time21533 - Track Number60 - Track Count94 - Year2005 - Date Modified2011-07-09T10:41:42Z - Date Added2011-07-09T10:37:58Z - Bit Rate256 - Sample Rate44100 - Normalization1100 - Artwork Count1 - Sort NameModes - Aeolian - Fig. 20 - Persistent IDE94D666C8D2E9CE0 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/60%20The%20Modes%20-%20Aeolian%20-%20Fig.%2020.m4a - File Folder Count4 - Library Folder Count1 - - 8844 - - Track ID8844 - NameThe Modes - Locrian - Fig. 22 - ArtistTom Kolb - AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask - GenreSpoken & Audio - KindAAC audio file - Size646974 - Total Time13586 - Track Number61 - Track Count94 - Year2005 - Date Modified2011-07-09T10:41:41Z - Date Added2011-07-09T10:38:01Z - Bit Rate256 - Sample Rate44100 - Normalization813 - Artwork Count1 - Sort NameModes - Locrian - Fig. 22 - Persistent ID7BA3A147C5F0F45F - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/61%20The%20Modes%20-%20Locrian%20-%20Fig.%2022.m4a - File Folder Count4 - Library Folder Count1 - - 8846 - - Track ID8846 - NameEar Training Drill #6 - ArtistTom Kolb - AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask - GenreSpoken & Audio - KindAAC audio file - Size3449959 - Total Time109253 - Track Number62 - Track Count94 - Year2005 - Date Modified2011-07-09T10:41:41Z - Date Added2011-07-09T10:38:04Z - Bit Rate256 - Sample Rate44100 - Normalization816 - Artwork Count1 - Persistent ID46CD9294C1694630 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/62%20Ear%20Training%20Drill%20%236.m4a - File Folder Count4 - Library Folder Count1 - - 8848 - - Track ID8848 - NameA Harmonic Minor - Fig. 1 - ArtistTom Kolb - AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask - GenreSpoken & Audio - KindAAC audio file - Size506206 - Total Time11600 - Track Number63 - Track Count94 - Year2005 - Date Modified2011-07-09T10:41:41Z - Date Added2011-07-09T10:38:17Z - Bit Rate256 - Sample Rate44100 - Normalization1393 - Artwork Count1 - Sort NameHarmonic Minor - Fig. 1 - Persistent ID145BDC9F1241A850 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/63%20A%20Harmonic%20Minor%20-%20Fig.%201.m4a - File Folder Count4 - Library Folder Count1 - - 8850 - - Track ID8850 - NameA Phrygian Dominant - Fig. 2 - ArtistTom Kolb - AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask - GenreSpoken & Audio - KindAAC audio file - Size493820 - Total Time11600 - Track Number64 - Track Count94 - Year2005 - Date Modified2011-07-09T10:41:41Z - Date Added2011-07-09T10:38:19Z - Bit Rate256 - Sample Rate44100 - Normalization1536 - Artwork Count1 - Sort NamePhrygian Dominant - Fig. 2 - Persistent ID98E46AC999AAAB0F - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/64%20A%20Phrygian%20Dominant%20-%20Fig.%202.m4a - File Folder Count4 - Library Folder Count1 - - 8852 - - Track ID8852 - NameA Melodic Minor (Jazz Melodic Minor) - FIg. 3 - ArtistTom Kolb - AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask - GenreSpoken & Audio - KindAAC audio file - Size501425 - Total Time11600 - Track Number65 - Track Count94 - Year2005 - Date Modified2011-07-09T10:41:41Z - Date Added2011-07-09T10:38:21Z - Bit Rate256 - Sample Rate44100 - Normalization1888 - Artwork Count1 - Sort NameMelodic Minor (Jazz Melodic Minor) - FIg. 3 - Persistent ID35B268FDD0C9005F - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/65%20A%20Melodic%20Minor%20(Jazz%20Melodic%20Minor)%20-%20FIg.%203.m4a - File Folder Count4 - Library Folder Count1 - - 8854 - - Track ID8854 - NameC Lydian Dominant - FIg. 4 - ArtistTom Kolb - AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask - GenreSpoken & Audio - KindAAC audio file - Size504951 - Total Time11600 - Track Number66 - Track Count94 - Year2005 - Date Modified2011-07-09T10:41:41Z - Date Added2011-07-09T10:38:22Z - Bit Rate256 - Sample Rate44100 - Normalization912 - Artwork Count1 - Persistent ID059A523ED5CC6D6F - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/66%20C%20Lydian%20Dominant%20-%20FIg.%204.m4a - File Folder Count4 - Library Folder Count1 - - 8856 - - Track ID8856 - NameA Locrian #2 - FIg. 5 - ArtistTom Kolb - AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask - GenreSpoken & Audio - KindAAC audio file - Size506887 - Total Time11600 - Track Number67 - Track Count94 - Year2005 - Date Modified2011-07-09T10:41:41Z - Date Added2011-07-09T10:38:24Z - Bit Rate256 - Sample Rate44100 - Normalization1645 - Artwork Count1 - Sort NameLocrian #2 - FIg. 5 - Persistent IDAA80B4D66303719D - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/67%20A%20Locrian%20%232%20-%20FIg.%205.m4a - File Folder Count4 - Library Folder Count1 - - 8858 - - Track ID8858 - NameA Altered Scale - Fig. 6 - ArtistTom Kolb - AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask - GenreSpoken & Audio - KindAAC audio file - Size502675 - Total Time11600 - Track Number68 - Track Count94 - Year2005 - Date Modified2011-07-09T10:41:41Z - Date Added2011-07-09T10:38:26Z - Bit Rate256 - Sample Rate44100 - Normalization1725 - Artwork Count1 - Sort NameAltered Scale - Fig. 6 - Persistent ID36A78F6FC2D16970 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/68%20A%20Altered%20Scale%20-%20Fig.%206.m4a - File Folder Count4 - Library Folder Count1 - - 8860 - - Track ID8860 - NameC Lydian Augmented - FIg. 7 - ArtistTom Kolb - AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask - GenreSpoken & Audio - KindAAC audio file - Size506483 - Total Time11600 - Track Number69 - Track Count94 - Year2005 - Date Modified2011-07-09T10:41:41Z - Date Added2011-07-09T10:38:27Z - Bit Rate256 - Sample Rate44100 - Normalization906 - Artwork Count1 - Persistent IDB08C69D1044D6737 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/69%20C%20Lydian%20Augmented%20-%20FIg.%207.m4a - File Folder Count4 - Library Folder Count1 - - 8862 - - Track ID8862 - NameA Diminished (Whole/Half) - FIg. 8 - ArtistTom Kolb - AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask - GenreSpoken & Audio - KindAAC audio file - Size537528 - Total Time12200 - Track Number70 - Track Count94 - Year2005 - Date Modified2011-07-09T10:41:41Z - Date Added2011-07-09T10:38:29Z - Bit Rate256 - Sample Rate44100 - Normalization1678 - Artwork Count1 - Sort NameDiminished (Whole/Half) - FIg. 8 - Persistent ID9ED07353DDA50702 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/70%20A%20Diminished%20(Whole_Half)%20-%20FIg.%208.m4a - File Folder Count4 - Library Folder Count1 - - 8864 - - Track ID8864 - NameA Diminished (Half/Whole) - FIg. 9 - ArtistTom Kolb - AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask - GenreSpoken & Audio - KindAAC audio file - Size526309 - Total Time12200 - Track Number71 - Track Count94 - Year2005 - Date Modified2011-07-09T10:41:40Z - Date Added2011-07-09T10:38:31Z - Bit Rate256 - Sample Rate44100 - Normalization1639 - Artwork Count1 - Sort NameDiminished (Half/Whole) - FIg. 9 - Persistent IDCA6CA380E082F3C7 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/71%20A%20Diminished%20(Half_Whole)%20-%20FIg.%209.m4a - File Folder Count4 - Library Folder Count1 - - 8866 - - Track ID8866 - NameC Whole Tone Scale - Fig. 10 - ArtistTom Kolb - AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask - GenreSpoken & Audio - KindAAC audio file - Size494316 - Total Time11600 - Track Number72 - Track Count94 - Year2005 - Date Modified2011-07-09T10:41:40Z - Date Added2011-07-09T10:38:33Z - Bit Rate256 - Sample Rate44100 - Normalization1084 - Artwork Count1 - Persistent IDE53CDD271CC03C71 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/72%20C%20Whole%20Tone%20Scale%20-%20Fig.%2010.m4a - File Folder Count4 - Library Folder Count1 - - 8868 - - Track ID8868 - NameC Chromatic Scale - Fig. 11 - ArtistTom Kolb - AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask - GenreSpoken & Audio - KindAAC audio file - Size621281 - Total Time14600 - Track Number73 - Track Count94 - Year2005 - Date Modified2011-07-09T10:41:40Z - Date Added2011-07-09T10:38:35Z - Bit Rate256 - Sample Rate44100 - Normalization1385 - Artwork Count1 - Persistent IDE7783AD9E97D4825 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/73%20C%20Chromatic%20Scale%20-%20Fig.%2011.m4a - File Folder Count4 - Library Folder Count1 - - 8870 - - Track ID8870 - NameArpeggios - Fig. 12 - ArtistTom Kolb - AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask - GenreSpoken & Audio - KindAAC audio file - Size599283 - Total Time16253 - Track Number74 - Track Count94 - Year2005 - Date Modified2011-07-09T10:41:40Z - Date Added2011-07-09T10:38:37Z - Bit Rate256 - Sample Rate44100 - Normalization1226 - Artwork Count1 - Persistent IDFAE45F0DB8D3B3E1 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/74%20Arpeggios%20-%20Fig.%2012.m4a - File Folder Count4 - Library Folder Count1 - - 8872 - - Track ID8872 - NameTriad Arpeggio Patterns - Fig. 13 - ArtistTom Kolb - AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask - GenreSpoken & Audio - KindAAC audio file - Size884484 - Total Time23760 - Track Number75 - Track Count94 - Year2005 - Date Modified2011-07-09T10:41:40Z - Date Added2011-07-09T10:38:40Z - Bit Rate256 - Sample Rate44100 - Normalization1419 - Artwork Count1 - Persistent ID3619F6636AD873AB - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/75%20Triad%20Arpeggio%20Patterns%20-%20Fig.%2013.m4a - File Folder Count4 - Library Folder Count1 - - 8874 - - Track ID8874 - NameC Major Triad Arpeggios - ArtistTom Kolb - AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask - GenreSpoken & Audio - KindAAC audio file - Size858637 - Total Time22253 - Track Number76 - Track Count94 - Year2005 - Date Modified2011-07-09T10:41:40Z - Date Added2011-07-09T10:38:43Z - Bit Rate256 - Sample Rate44100 - Normalization1399 - Artwork Count1 - Persistent IDBA2BCAEA8B8EE429 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/76%20C%20Major%20Triad%20Arpeggios.m4a - File Folder Count4 - Library Folder Count1 - - 8876 - - Track ID8876 - NameCmaj7 Arpeggios - ArtistTom Kolb - AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask - GenreSpoken & Audio - KindAAC audio file - Size975520 - Total Time26200 - Track Number77 - Track Count94 - Year2005 - Date Modified2011-07-09T10:41:40Z - Date Added2011-07-09T10:38:46Z - Bit Rate256 - Sample Rate44100 - Normalization1846 - Artwork Count1 - Persistent IDABD572E4DFDBF7E2 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/77%20Cmaj7%20Arpeggios.m4a - File Folder Count4 - Library Folder Count1 - - 8878 - - Track ID8878 - NameCmin7 Arpeggios - ArtistTom Kolb - AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask - GenreSpoken & Audio - KindAAC audio file - Size1005296 - Total Time26760 - Track Number78 - Track Count94 - Year2005 - Date Modified2011-07-09T10:41:40Z - Date Added2011-07-09T10:38:49Z - Bit Rate256 - Sample Rate44100 - Normalization1703 - Artwork Count1 - Persistent ID1E9355AE6D6EAD97 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/78%20Cmin7%20Arpeggios.m4a - File Folder Count4 - Library Folder Count1 - - 8880 - - Track ID8880 - NameC7 Arpeggios - ArtistTom Kolb - AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask - GenreSpoken & Audio - KindAAC audio file - Size984075 - Total Time26000 - Track Number79 - Track Count94 - Year2005 - Date Modified2011-07-09T10:41:40Z - Date Added2011-07-09T10:38:53Z - Bit Rate256 - Sample Rate44100 - Normalization2117 - Artwork Count1 - Persistent IDF40526A5C68F0B14 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/79%20C7%20Arpeggios.m4a - File Folder Count4 - Library Folder Count1 - - 8882 - - Track ID8882 - NameCm7b5 Arpeggios - ArtistTom Kolb - AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask - GenreSpoken & Audio - KindAAC audio file - Size1029864 - Total Time27506 - Track Number80 - Track Count94 - Year2005 - Date Modified2011-07-09T10:41:40Z - Date Added2011-07-09T10:38:56Z - Bit Rate256 - Sample Rate44100 - Normalization1875 - Artwork Count1 - Persistent ID06F8DD70AAE17777 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/80%20Cm7b5%20Arpeggios.m4a - File Folder Count4 - Library Folder Count1 - - 8884 - - Track ID8884 - NameEar Training Drill #7 - ArtistTom Kolb - AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask - GenreSpoken & Audio - KindAAC audio file - Size5352088 - Total Time167200 - Track Number81 - Track Count94 - Year2005 - Date Modified2011-07-09T10:41:39Z - Date Added2011-07-09T10:39:00Z - Bit Rate256 - Sample Rate44100 - Normalization1033 - Artwork Count1 - Persistent IDD4F95F5C67E6E5FD - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/81%20Ear%20Training%20Drill%20%237.m4a - File Folder Count4 - Library Folder Count1 - - 8886 - - Track ID8886 - NameChord Embellishment - Fig. 1 - ArtistTom Kolb - AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask - GenreSpoken & Audio - KindAAC audio file - Size849141 - Total Time21800 - Track Number82 - Track Count94 - Year2005 - Date Modified2011-07-09T10:41:39Z - Date Added2011-07-09T10:39:18Z - Bit Rate256 - Sample Rate44100 - Normalization742 - Artwork Count1 - Persistent ID4C4F11A7A5CD4436 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/82%20Chord%20Embellishment%20-%20Fig.%201.m4a - File Folder Count4 - Library Folder Count1 - - 8888 - - Track ID8888 - NameDiatonic Chord Substitution And Reharmonization - Fig. 2 - ArtistTom Kolb - AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask - GenreSpoken & Audio - KindAAC audio file - Size1022742 - Total Time27200 - Track Number83 - Track Count94 - Year2005 - Date Modified2011-07-09T10:41:39Z - Date Added2011-07-09T10:39:20Z - Bit Rate256 - Sample Rate44100 - Normalization841 - Artwork Count1 - Persistent ID0C973ECD939BB4D1 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/83%20Diatonic%20Chord%20Substitution%20And%20Reharmonization%20-%20Fig.%202.m4a - File Folder Count4 - Library Folder Count1 - - 8890 - - Track ID8890 - NameDiatonic Chord Substitution And Reharmonization - Fig. 3A - ArtistTom Kolb - AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask - GenreSpoken & Audio - KindAAC audio file - Size1277308 - Total Time31360 - Track Number84 - Track Count94 - Year2005 - Date Modified2011-07-09T10:41:39Z - Date Added2011-07-09T10:39:24Z - Bit Rate256 - Sample Rate44100 - Normalization747 - Artwork Count1 - Persistent ID36B70A76919AE908 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/84%20Diatonic%20Chord%20Substitution%20And%20Reharmonization%20-%20Fig.%203A.m4a - File Folder Count4 - Library Folder Count1 - - 8892 - - Track ID8892 - NameDiatonic Chord Substitution And Reharmonization - Fig. 3B - ArtistTom Kolb - AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask - GenreSpoken & Audio - KindAAC audio file - Size1269396 - Total Time31360 - Track Number85 - Track Count94 - Year2005 - Date Modified2011-07-09T10:41:39Z - Date Added2011-07-09T10:39:28Z - Bit Rate256 - Sample Rate44100 - Normalization784 - Artwork Count1 - Persistent ID00EF28821431C723 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/85%20Diatonic%20Chord%20Substitution%20And%20Reharmonization%20-%20Fig.%203B.m4a - File Folder Count4 - Library Folder Count1 - - 8894 - - Track ID8894 - NameDiatonic Chord Substitution And Reharmonization - Fig. 4A - ArtistTom Kolb - AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask - GenreSpoken & Audio - KindAAC audio file - Size1140445 - Total Time26786 - Track Number86 - Track Count94 - Year2005 - Date Modified2011-07-09T10:41:39Z - Date Added2011-07-09T10:39:31Z - Bit Rate256 - Sample Rate44100 - Normalization797 - Artwork Count1 - Persistent IDAEEA0ACFB9F456F4 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/86%20Diatonic%20Chord%20Substitution%20And%20Reharmonization%20-%20Fig.%204A.m4a - File Folder Count4 - Library Folder Count1 - - 8896 - - Track ID8896 - NameDiatonic Chord Substitution And Reharmonization - Fig. 4B - ArtistTom Kolb - AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask - GenreSpoken & Audio - KindAAC audio file - Size1148286 - Total Time26786 - Track Number87 - Track Count94 - Year2005 - Date Modified2011-07-09T10:41:38Z - Date Added2011-07-09T10:39:35Z - Bit Rate256 - Sample Rate44100 - Normalization814 - Artwork Count1 - Persistent ID47FB288CAA964EE0 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/87%20Diatonic%20Chord%20Substitution%20And%20Reharmonization%20-%20Fig.%204B.m4a - File Folder Count4 - Library Folder Count1 - - 8898 - - Track ID8898 - NameDiatonic Chord Substitution And Reharmonization - Triad And Seventh Arpeggio Substitution - Fig. 5A - ArtistTom Kolb - AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask - GenreSpoken & Audio - KindAAC audio file - Size513267 - Total Time10400 - Track Number88 - Track Count94 - Year2005 - Date Modified2011-07-09T10:41:38Z - Date Added2011-07-09T10:39:38Z - Bit Rate256 - Sample Rate44100 - Normalization3217 - Artwork Count1 - Persistent IDD9C57D6F4F04B1E1 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/88%20Diatonic%20Chord%20Substitution%20And%20Reharmonization%20-%20Triad%20And%20Seventh%20Arpeggio%20Substitution%20-%20Fig.%205A.m4a - File Folder Count4 - Library Folder Count1 - - 8900 - - Track ID8900 - NameDiatonic Chord Substitution And Reharmonization - Triad And Seventh Arpeggio Substitution - Fig. 5B - ArtistTom Kolb - AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask - GenreSpoken & Audio - KindAAC audio file - Size558349 - Total Time11093 - Track Number89 - Track Count94 - Year2005 - Date Modified2011-07-09T10:41:38Z - Date Added2011-07-09T10:39:40Z - Bit Rate256 - Sample Rate44100 - Normalization1307 - Artwork Count1 - Persistent IDBD4B4B538FBE6E29 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/89%20Diatonic%20Chord%20Substitution%20And%20Reharmonization%20-%20Triad%20And%20Seventh%20Arpeggio%20Substitution%20-%20Fig.%205B.m4a - File Folder Count4 - Library Folder Count1 - - 8902 - - Track ID8902 - NameDiatonic Chord Substitution And Reharmonization - Flat-Five Substitution - Fig. 6 - ArtistTom Kolb - AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask - GenreSpoken & Audio - KindAAC audio file - Size772898 - Total Time19466 - Track Number90 - Track Count94 - Year2005 - Date Modified2011-07-09T10:41:38Z - Date Added2011-07-09T10:39:41Z - Bit Rate256 - Sample Rate44100 - Normalization713 - Artwork Count1 - Persistent ID2D2559191A5833B0 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/90%20Diatonic%20Chord%20Substitution%20And%20Reharmonization%20-%20Flat-Five%20Substitution%20-%20Fig.%206.m4a - File Folder Count4 - Library Folder Count1 - - 8904 - - Track ID8904 - NameDiatonic Chord Substitution And Reharmonization - Secondary Dominant Substitution - Fig. 7 - ArtistTom Kolb - AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask - GenreSpoken & Audio - KindAAC audio file - Size770297 - Total Time19066 - Track Number91 - Track Count94 - Year2005 - Date Modified2011-07-09T10:41:38Z - Date Added2011-07-09T10:39:43Z - Bit Rate256 - Sample Rate44100 - Normalization796 - Artwork Count1 - Persistent ID45B6A00771C8FD33 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/91%20Diatonic%20Chord%20Substitution%20And%20Reharmonization%20-%20Secondary%20Dominant%20Substitution%20-%20Fig.%207.m4a - File Folder Count4 - Library Folder Count1 - - 8906 - - Track ID8906 - NameDiatonic Chord Substitution And Reharmonization - Diminished Seventh Chord Substitution - A Harmonic Minor - Fig. 8 - ArtistTom Kolb - AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask - GenreSpoken & Audio - KindAAC audio file - Size853771 - Total Time22066 - Track Number92 - Track Count94 - Year2005 - Date Modified2011-07-09T10:41:38Z - Date Added2011-07-09T10:39:46Z - Bit Rate256 - Sample Rate44100 - Normalization882 - Artwork Count1 - Persistent ID306E3A8D399A255B - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/92%20Diatonic%20Chord%20Substitution%20And%20Reharmonization%20-%20Diminished%20Seventh%20Chord%20Substitution%20-%20A%20Harmonic%20Minor%20-%20Fig.%208.m4a - File Folder Count4 - Library Folder Count1 - - 8908 - - Track ID8908 - NameDiatonic Chord Substitution And Reharmonization - Diminished Seventh Chord Substitution - Fig. 9 - ArtistTom Kolb - AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask - GenreSpoken & Audio - KindAAC audio file - Size413296 - Total Time9506 - Track Number93 - Track Count94 - Year2005 - Date Modified2011-07-09T10:41:38Z - Date Added2011-07-09T10:39:50Z - Bit Rate256 - Sample Rate44100 - Normalization720 - Artwork Count1 - Persistent IDED52FBAC91C545F7 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/93%20Diatonic%20Chord%20Substitution%20And%20Reharmonization%20-%20Diminished%20Seventh%20Chord%20Substitution%20-%20Fig.%209.m4a - File Folder Count4 - Library Folder Count1 - - 8910 - - Track ID8910 - NameDiatonic Chord Substitution And Reharmonization - Diminished Seventh Chord Substitution - Fig. 10 - ArtistTom Kolb - AlbumMusic Theory - Everything You Ever Wanted To Know But Were Afriad To Ask - GenreSpoken & Audio - KindAAC audio file - Size785446 - Total Time18000 - Track Number94 - Track Count94 - Year2005 - Date Modified2011-07-09T10:41:38Z - Date Added2011-07-09T10:39:51Z - Bit Rate256 - Sample Rate44100 - Normalization821 - Artwork Count1 - Persistent ID61D0D7CB13ADC820 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tom%20Kolb/Music%20Theory%20-%20Everything%20You%20Ever%20Wanted%20To%20Know%20But%20Were%20Afriad%20To%20Ask/94%20Diatonic%20Chord%20Substitution%20And%20Reharmonization%20-%20Diminished%20Seventh%20Chord%20Substitution%20-%20Fig.%2010.m4a - File Folder Count4 - Library Folder Count1 - - 8912 - - Track ID8912 - NameTuning - ArtistHal Leonard Guitar Method - AlbumAcoustic Guitar - GenreOther - KindAAC audio file - Size2799485 - Total Time65920 - Track Number1 - Track Count83 - Date Modified2011-07-09T10:56:24Z - Date Added2011-07-09T10:43:16Z - Bit Rate256 - Sample Rate44100 - Normalization1239 - Artwork Count1 - Persistent IDBE5BE9BB0E898418 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/01%20Tuning.m4a - File Folder Count4 - Library Folder Count1 - - 8914 - - Track ID8914 - NameDownstrokes & Upstrokes 1 - ArtistHal Leonard Guitar Method - AlbumAcoustic Guitar - GenreOther - KindAAC audio file - Size983851 - Total Time18880 - Track Number2 - Track Count83 - Date Modified2011-07-09T10:56:23Z - Date Added2011-07-09T10:43:32Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3393644107 - Play Date UTC2011-07-16T01:25:07Z - Normalization1302 - Artwork Count1 - Persistent ID9300F4E19CF70AF8 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/02%20Downstrokes%20&%20Upstrokes%201.m4a - File Folder Count4 - Library Folder Count1 - - 8916 - - Track ID8916 - NameDownstrokes & Upstrokes 2 - ArtistHal Leonard Guitar Method - AlbumAcoustic Guitar - GenreOther - KindAAC audio file - Size983531 - Total Time18973 - Track Number3 - Track Count83 - Date Modified2011-07-09T10:56:23Z - Date Added2011-07-09T10:43:38Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3393644127 - Play Date UTC2011-07-16T01:25:27Z - Normalization1439 - Artwork Count1 - Persistent IDF6DBBFF7284F418C - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/03%20Downstrokes%20&%20Upstrokes%202.m4a - File Folder Count4 - Library Folder Count1 - - 8918 - - Track ID8918 - NameDownstrokes & Upstrokes 3 - ArtistHal Leonard Guitar Method - AlbumAcoustic Guitar - GenreOther - KindAAC audio file - Size980448 - Total Time19013 - Track Number4 - Track Count83 - Date Modified2011-07-09T10:56:23Z - Date Added2011-07-09T10:43:44Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3393644149 - Play Date UTC2011-07-16T01:25:49Z - Normalization1639 - Artwork Count1 - Persistent IDBAB033415AD327B3 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/04%20Downstrokes%20&%20Upstrokes%203.m4a - File Folder Count4 - Library Folder Count1 - - 8920 - - Track ID8920 - NameDownstrokes & Upstrokes 4 - ArtistHal Leonard Guitar Method - AlbumAcoustic Guitar - GenreOther - KindAAC audio file - Size979326 - Total Time18920 - Track Number5 - Track Count83 - Date Modified2011-07-09T10:56:23Z - Date Added2011-07-09T10:43:50Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3393644171 - Play Date UTC2011-07-16T01:26:11Z - Normalization1238 - Artwork Count1 - Persistent IDB4D895C964E64792 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/05%20Downstrokes%20&%20Upstrokes%204.m4a - File Folder Count4 - Library Folder Count1 - - 8922 - - Track ID8922 - NameMoving From Chord To Chord 1 - ArtistHal Leonard Guitar Method - AlbumAcoustic Guitar - GenreOther - KindAAC audio file - Size1379123 - Total Time29546 - Track Number6 - Track Count83 - Date Modified2011-07-09T10:56:23Z - Date Added2011-07-09T10:43:56Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3393644200 - Play Date UTC2011-07-16T01:26:40Z - Normalization1493 - Artwork Count1 - Persistent ID952BFC66C577E13B - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/06%20Moving%20From%20Chord%20To%20Chord%201.m4a - File Folder Count4 - Library Folder Count1 - - 8924 - - Track ID8924 - NameMoving From Chord To Chord 2 - ArtistHal Leonard Guitar Method - AlbumAcoustic Guitar - GenreOther - KindAAC audio file - Size1386458 - Total Time29426 - Track Number7 - Track Count83 - Date Modified2011-07-09T10:56:23Z - Date Added2011-07-09T10:44:03Z - Bit Rate256 - Sample Rate44100 - Normalization1435 - Artwork Count1 - Persistent ID802B40B182B6DFCD - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/07%20Moving%20From%20Chord%20To%20Chord%202.m4a - File Folder Count4 - Library Folder Count1 - - 8926 - - Track ID8926 - NameMoving From Chord To Chord 3 - ArtistHal Leonard Guitar Method - AlbumAcoustic Guitar - GenreOther - KindAAC audio file - Size912403 - Total Time16973 - Track Number8 - Track Count83 - Date Modified2011-07-09T10:56:23Z - Date Added2011-07-09T10:44:11Z - Bit Rate256 - Sample Rate44100 - Normalization1354 - Artwork Count1 - Persistent ID20EC855142B6FBE6 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/08%20Moving%20From%20Chord%20To%20Chord%203.m4a - File Folder Count4 - Library Folder Count1 - - 8928 - - Track ID8928 - NameMoving From Chord To Chord 4 - ArtistHal Leonard Guitar Method - AlbumAcoustic Guitar - GenreOther - KindAAC audio file - Size913712 - Total Time17133 - Track Number9 - Track Count83 - Date Modified2011-07-09T10:56:23Z - Date Added2011-07-09T10:44:17Z - Bit Rate256 - Sample Rate44100 - Normalization1656 - Artwork Count1 - Persistent IDE5303DD962B9D2F4 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/09%20Moving%20From%20Chord%20To%20Chord%204.m4a - File Folder Count4 - Library Folder Count1 - - 8930 - - Track ID8930 - NameMoving From Chord To Chord 5 - ArtistHal Leonard Guitar Method - AlbumAcoustic Guitar - GenreOther - KindAAC audio file - Size906357 - Total Time16586 - Track Number10 - Track Count83 - Date Modified2011-07-09T10:56:23Z - Date Added2011-07-09T10:44:22Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3393644220 - Play Date UTC2011-07-16T01:27:00Z - Normalization1204 - Artwork Count1 - Persistent ID6FD9735214C605DF - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/10%20Moving%20From%20Chord%20To%20Chord%205.m4a - File Folder Count4 - Library Folder Count1 - - 8932 - - Track ID8932 - NameMoving From Chord To Chord 6 - ArtistHal Leonard Guitar Method - AlbumAcoustic Guitar - GenreOther - KindAAC audio file - Size906385 - Total Time16786 - Track Number11 - Track Count83 - Date Modified2011-07-09T10:56:23Z - Date Added2011-07-09T10:44:28Z - Bit Rate256 - Sample Rate44100 - Play Count2 - Play Date3393644269 - Play Date UTC2011-07-16T01:27:49Z - Normalization1177 - Artwork Count1 - Persistent ID626D95CEBEF584F8 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/11%20Moving%20From%20Chord%20To%20Chord%206.m4a - File Folder Count4 - Library Folder Count1 - - 8934 - - Track ID8934 - NameSyncopation 1 - ArtistHal Leonard Guitar Method - AlbumAcoustic Guitar - GenreOther - KindAAC audio file - Size912061 - Total Time16933 - Track Number12 - Track Count83 - Date Modified2011-07-09T10:56:23Z - Date Added2011-07-09T10:44:33Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3393644253 - Play Date UTC2011-07-16T01:27:33Z - Normalization1127 - Artwork Count1 - Persistent ID3EF532C631F43623 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/12%20Syncopation%201.m4a - File Folder Count4 - Library Folder Count1 - - 8936 - - Track ID8936 - NameSyncopation 2 - ArtistHal Leonard Guitar Method - AlbumAcoustic Guitar - GenreOther - KindAAC audio file - Size910004 - Total Time16880 - Track Number13 - Track Count83 - Date Modified2011-07-09T10:56:23Z - Date Added2011-07-09T10:44:38Z - Bit Rate256 - Sample Rate44100 - Normalization1112 - Artwork Count1 - Persistent ID9FF16A450ADA449B - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/13%20Syncopation%202.m4a - File Folder Count4 - Library Folder Count1 - - 8938 - - Track ID8938 - NameBand On The Run - ArtistHal Leonard Guitar Method - AlbumAcoustic Guitar - GenreOther - KindAAC audio file - Size871739 - Total Time15760 - Track Number14 - Track Count83 - Date Modified2011-07-09T10:56:23Z - Date Added2011-07-09T10:44:44Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3393644285 - Play Date UTC2011-07-16T01:28:05Z - Normalization1313 - Artwork Count1 - Persistent IDDA633749AB2FEEDE - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/14%20Band%20On%20The%20Run.m4a - File Folder Count4 - Library Folder Count1 - - 8940 - - Track ID8940 - NameSixteenth Notes 1 - ArtistHal Leonard Guitar Method - AlbumAcoustic Guitar - GenreOther - KindAAC audio file - Size992049 - Total Time19146 - Track Number15 - Track Count83 - Date Modified2011-07-09T10:56:23Z - Date Added2011-07-09T10:44:49Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3393644302 - Play Date UTC2011-07-16T01:28:22Z - Normalization1846 - Artwork Count1 - Persistent IDEDA6D399034F623D - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/15%20Sixteenth%20Notes%201.m4a - File Folder Count4 - Library Folder Count1 - - 8942 - - Track ID8942 - NameSixteenth Notes 2 - ArtistHal Leonard Guitar Method - AlbumAcoustic Guitar - GenreOther - KindAAC audio file - Size986101 - Total Time18840 - Track Number16 - Track Count83 - Date Modified2011-07-09T10:56:22Z - Date Added2011-07-09T10:44:55Z - Bit Rate256 - Sample Rate44100 - Normalization1483 - Artwork Count1 - Persistent ID4EFBE410A34AC352 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/16%20Sixteenth%20Notes%202.m4a - File Folder Count4 - Library Folder Count1 - - 8944 - - Track ID8944 - NameBarely Breathing - ArtistHal Leonard Guitar Method - AlbumAcoustic Guitar - GenreOther - KindAAC audio file - Size10166206 - Total Time258600 - Track Number17 - Track Count83 - Date Modified2011-07-09T10:56:22Z - Date Added2011-07-09T10:45:00Z - Bit Rate256 - Sample Rate44100 - Normalization1578 - Artwork Count1 - Persistent ID50D1326F05A63D11 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/17%20Barely%20Breathing.m4a - File Folder Count4 - Library Folder Count1 - - 8946 - - Track ID8946 - NameTravis Picking 1 - ArtistHal Leonard Guitar Method - AlbumAcoustic Guitar - GenreOther - KindAAC audio file - Size871697 - Total Time15986 - Track Number18 - Track Count83 - Date Modified2011-07-09T10:56:22Z - Date Added2011-07-09T10:45:43Z - Bit Rate256 - Sample Rate44100 - Normalization1183 - Artwork Count1 - Persistent IDD475A4CB1A5D1B33 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/18%20Travis%20Picking%201.m4a - File Folder Count4 - Library Folder Count1 - - 8948 - - Track ID8948 - NameTravis Picking 2 - ArtistHal Leonard Guitar Method - AlbumAcoustic Guitar - GenreOther - KindAAC audio file - Size845088 - Total Time15173 - Track Number19 - Track Count83 - Date Modified2011-07-09T10:56:22Z - Date Added2011-07-09T10:45:48Z - Bit Rate256 - Sample Rate44100 - Normalization1022 - Artwork Count1 - Persistent ID3C9C51CAD1E7AE3C - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/19%20Travis%20Picking%202.m4a - File Folder Count4 - Library Folder Count1 - - 8950 - - Track ID8950 - NameTravis Picking 3 - ArtistHal Leonard Guitar Method - AlbumAcoustic Guitar - GenreOther - KindAAC audio file - Size1552229 - Total Time36600 - Track Number20 - Track Count83 - Date Modified2011-07-09T10:56:22Z - Date Added2011-07-09T10:45:52Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3393644396 - Play Date UTC2011-07-16T01:29:56Z - Normalization1238 - Artwork Count1 - Persistent ID0ED62C6FC4729EEE - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/20%20Travis%20Picking%203.m4a - File Folder Count4 - Library Folder Count1 - - 8952 - - Track ID8952 - NameYou Were Meant For Me - ArtistHal Leonard Guitar Method - AlbumAcoustic Guitar - GenreOther - KindAAC audio file - Size1162941 - Total Time23293 - Track Number21 - Track Count83 - Date Modified2011-07-09T10:56:21Z - Date Added2011-07-09T10:46:00Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3393644365 - Play Date UTC2011-07-16T01:29:25Z - Normalization1067 - Artwork Count1 - Persistent IDFC0FDB8C797FE342 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/21%20You%20Were%20Meant%20For%20Me.m4a - File Folder Count4 - Library Folder Count1 - - 8954 - - Track ID8954 - NameArpeggiation 1 - ArtistHal Leonard Guitar Method - AlbumAcoustic Guitar - GenreOther - KindAAC audio file - Size870193 - Total Time15853 - Track Number22 - Track Count83 - Date Modified2011-07-09T10:56:21Z - Date Added2011-07-09T10:46:06Z - Bit Rate256 - Sample Rate44100 - Normalization1080 - Artwork Count1 - Persistent ID626F8748D9CB696F - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/22%20Arpeggiation%201.m4a - File Folder Count4 - Library Folder Count1 - - 8956 - - Track ID8956 - NameArpeggiation 2 - ArtistHal Leonard Guitar Method - AlbumAcoustic Guitar - GenreOther - KindAAC audio file - Size874129 - Total Time15853 - Track Number23 - Track Count83 - Date Modified2011-07-09T10:56:21Z - Date Added2011-07-09T10:46:11Z - Bit Rate256 - Sample Rate44100 - Normalization972 - Artwork Count1 - Persistent ID37ADCF92FFFBC32D - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/23%20Arpeggiation%202.m4a - File Folder Count4 - Library Folder Count1 - - 8958 - - Track ID8958 - NameArpeggiation 3 - ArtistHal Leonard Guitar Method - AlbumAcoustic Guitar - GenreOther - KindAAC audio file - Size1013411 - Total Time19466 - Track Number24 - Track Count83 - Date Modified2011-07-09T10:56:21Z - Date Added2011-07-09T10:46:16Z - Bit Rate256 - Sample Rate44100 - Normalization1080 - Artwork Count1 - Persistent ID41C357A484478B3A - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/24%20Arpeggiation%203.m4a - File Folder Count4 - Library Folder Count1 - - 8960 - - Track ID8960 - NameArpeggiation 4 - ArtistHal Leonard Guitar Method - AlbumAcoustic Guitar - GenreOther - KindAAC audio file - Size838657 - Total Time14773 - Track Number25 - Track Count83 - Date Modified2011-07-09T10:56:21Z - Date Added2011-07-09T10:46:21Z - Bit Rate256 - Sample Rate44100 - Normalization1230 - Artwork Count1 - Persistent ID8E5988952F0111BA - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/25%20Arpeggiation%204.m4a - File Folder Count4 - Library Folder Count1 - - 8962 - - Track ID8962 - NameArpeggiation 5 - ArtistHal Leonard Guitar Method - AlbumAcoustic Guitar - GenreOther - KindAAC audio file - Size1095887 - Total Time21800 - Track Number26 - Track Count83 - Date Modified2011-07-09T10:56:21Z - Date Added2011-07-09T10:46:26Z - Bit Rate256 - Sample Rate44100 - Normalization1132 - Artwork Count1 - Persistent IDBBA1D163F8677852 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/26%20Arpeggiation%205.m4a - File Folder Count4 - Library Folder Count1 - - 8964 - - Track ID8964 - NameFriends In Low Places - ArtistHal Leonard Guitar Method - AlbumAcoustic Guitar - GenreOther - KindAAC audio file - Size865235 - Total Time15786 - Track Number27 - Track Count83 - Date Modified2011-07-09T10:56:21Z - Date Added2011-07-09T10:46:32Z - Bit Rate256 - Sample Rate44100 - Normalization1130 - Artwork Count1 - Persistent ID7A499B74270FC8D5 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/27%20Friends%20In%20Low%20Places.m4a - File Folder Count4 - Library Folder Count1 - - 8966 - - Track ID8966 - NameBlock Chord Style 1 - ArtistHal Leonard Guitar Method - AlbumAcoustic Guitar - GenreOther - KindAAC audio file - Size812804 - Total Time14280 - Track Number28 - Track Count83 - Date Modified2011-07-09T10:56:21Z - Date Added2011-07-09T10:46:36Z - Bit Rate256 - Sample Rate44100 - Normalization1204 - Artwork Count1 - Persistent IDE1A75BE208AFC830 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/28%20Block%20Chord%20Style%201.m4a - File Folder Count4 - Library Folder Count1 - - 8968 - - Track ID8968 - NameBlock Chord Style 2 - ArtistHal Leonard Guitar Method - AlbumAcoustic Guitar - GenreOther - KindAAC audio file - Size866330 - Total Time15706 - Track Number29 - Track Count83 - Date Modified2011-07-09T10:56:21Z - Date Added2011-07-09T10:46:41Z - Bit Rate256 - Sample Rate44100 - Normalization1160 - Artwork Count1 - Persistent ID985B69A0CAF1F56D - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/29%20Block%20Chord%20Style%202.m4a - File Folder Count4 - Library Folder Count1 - - 8970 - - Track ID8970 - NameYesterday - ArtistHal Leonard Guitar Method - AlbumAcoustic Guitar - GenreOther - KindAAC audio file - Size1224131 - Total Time25053 - Track Number30 - Track Count83 - Date Modified2011-07-09T10:56:21Z - Date Added2011-07-09T10:46:46Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3393644422 - Play Date UTC2011-07-16T01:30:22Z - Normalization1229 - Artwork Count1 - Persistent ID0FAD8B55D64C914C - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/30%20Yesterday.m4a - File Folder Count4 - Library Folder Count1 - - 8972 - - Track ID8972 - NameMore Than Words - ArtistHal Leonard Guitar Method - AlbumAcoustic Guitar - GenreOther - KindAAC audio file - Size977796 - Total Time19026 - Track Number31 - Track Count83 - Date Modified2011-07-09T10:56:20Z - Date Added2011-07-09T10:46:52Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3393644439 - Play Date UTC2011-07-16T01:30:39Z - Normalization1204 - Artwork Count1 - Persistent IDD681C0F98AB7264E - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/31%20More%20Than%20Words.m4a - File Folder Count4 - Library Folder Count1 - - 8974 - - Track ID8974 - NameDust In The Wind - ArtistHal Leonard Guitar Method - AlbumAcoustic Guitar - GenreOther - KindAAC audio file - Size8183352 - Total Time212106 - Track Number32 - Track Count83 - Date Modified2011-07-09T10:56:20Z - Date Added2011-07-09T10:46:57Z - Bit Rate256 - Sample Rate44100 - Normalization1850 - Artwork Count1 - Persistent ID81734CE5364F8132 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/32%20Dust%20In%20The%20Wind.m4a - File Folder Count4 - Library Folder Count1 - - 8976 - - Track ID8976 - NameAvoiding Barre Chords 1 - ArtistHal Leonard Guitar Method - AlbumAcoustic Guitar - GenreOther - KindAAC audio file - Size920644 - Total Time17173 - Track Number33 - Track Count83 - Date Modified2011-07-09T10:56:20Z - Date Added2011-07-09T10:47:27Z - Bit Rate256 - Sample Rate44100 - Normalization1465 - Artwork Count1 - Persistent ID1695C96D9577E656 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/33%20Avoiding%20Barre%20Chords%201.m4a - File Folder Count4 - Library Folder Count1 - - 8978 - - Track ID8978 - NameAvoiding Barre Chords 2 - ArtistHal Leonard Guitar Method - AlbumAcoustic Guitar - GenreOther - KindAAC audio file - Size919562 - Total Time16213 - Track Number34 - Track Count83 - Date Modified2011-07-09T10:56:19Z - Date Added2011-07-09T10:47:32Z - Bit Rate256 - Sample Rate44100 - Normalization1322 - Artwork Count1 - Persistent ID1A421DE6077630B6 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/34%20Avoiding%20Barre%20Chords%202.m4a - File Folder Count4 - Library Folder Count1 - - 8980 - - Track ID8980 - NameADJusting The Key For A Better Vocal Range - ArtistHal Leonard Guitar Method - AlbumAcoustic Guitar - GenreOther - KindAAC audio file - Size1099721 - Total Time21440 - Track Number35 - Track Count83 - Date Modified2011-07-09T10:56:19Z - Date Added2011-07-09T10:47:37Z - Bit Rate256 - Sample Rate44100 - Normalization1286 - Artwork Count1 - Persistent ID6528D1ABA32A5BA5 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/35%20ADJusting%20The%20Key%20For%20A%20Better%20Vocal%20Range.m4a - File Folder Count4 - Library Folder Count1 - - 8982 - - Track ID8982 - NameAlternate Guitar Part 1 - ArtistHal Leonard Guitar Method - AlbumAcoustic Guitar - GenreOther - KindAAC audio file - Size858109 - Total Time15653 - Track Number36 - Track Count83 - Date Modified2011-07-09T10:56:19Z - Date Added2011-07-09T10:47:42Z - Bit Rate256 - Sample Rate44100 - Normalization3605 - Artwork Count1 - Persistent ID0523C667E1F69DA2 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/36%20Alternate%20Guitar%20Part%201.m4a - File Folder Count4 - Library Folder Count1 - - 8984 - - Track ID8984 - NameAlternate Guitar Part 2 - ArtistHal Leonard Guitar Method - AlbumAcoustic Guitar - GenreOther - KindAAC audio file - Size868830 - Total Time15133 - Track Number37 - Track Count83 - Date Modified2011-07-09T10:56:19Z - Date Added2011-07-09T10:47:47Z - Bit Rate256 - Sample Rate44100 - Normalization2442 - Artwork Count1 - Persistent IDD96F69E7FBB6B160 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/37%20Alternate%20Guitar%20Part%202.m4a - File Folder Count4 - Library Folder Count1 - - 8986 - - Track ID8986 - NameLandslide - ArtistHal Leonard Guitar Method - AlbumAcoustic Guitar - GenreOther - KindAAC audio file - Size1111126 - Total Time22760 - Track Number38 - Track Count83 - Date Modified2011-07-09T10:56:19Z - Date Added2011-07-09T10:47:51Z - Bit Rate256 - Sample Rate44100 - Normalization1134 - Artwork Count1 - Persistent ID3CC0F9CFB4E453A7 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/38%20Landslide.m4a - File Folder Count4 - Library Folder Count1 - - 8988 - - Track ID8988 - NameSmall Town - ArtistHal Leonard Guitar Method - AlbumAcoustic Guitar - GenreOther - KindAAC audio file - Size874906 - Total Time15413 - Track Number39 - Track Count83 - Date Modified2011-07-09T10:56:19Z - Date Added2011-07-09T10:47:57Z - Bit Rate256 - Sample Rate44100 - Normalization1190 - Artwork Count1 - Persistent IDE867FFD9C4C3BE62 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/39%20Small%20Town.m4a - File Folder Count4 - Library Folder Count1 - - 8990 - - Track ID8990 - NameHere Comes The Sun (Excerpt) 1 - ArtistHal Leonard Guitar Method - AlbumAcoustic Guitar - GenreOther - KindAAC audio file - Size839231 - Total Time14800 - Track Number40 - Track Count83 - Date Modified2011-07-09T10:56:19Z - Date Added2011-07-09T10:48:01Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3393684968 - Play Date UTC2011-07-16T12:46:08Z - Normalization1370 - Artwork Count1 - Persistent ID51F3C7795E4B8D0D - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/40%20Here%20Comes%20The%20Sun%20(Excerpt)%201.m4a - File Folder Count4 - Library Folder Count1 - - 8992 - - Track ID8992 - NameHere Comes The Sun (Excerpt) 2 - ArtistHal Leonard Guitar Method - AlbumAcoustic Guitar - GenreOther - KindAAC audio file - Size897896 - Total Time16306 - Track Number41 - Track Count83 - Date Modified2011-07-09T10:56:19Z - Date Added2011-07-09T10:48:06Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3393684984 - Play Date UTC2011-07-16T12:46:24Z - Normalization1112 - Artwork Count1 - Persistent ID97B4C651620E6EE5 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/41%20Here%20Comes%20The%20Sun%20(Excerpt)%202.m4a - File Folder Count4 - Library Folder Count1 - - 8994 - - Track ID8994 - NameHere Comes The Sun (Excerpt) 3 - ArtistHal Leonard Guitar Method - AlbumAcoustic Guitar - GenreOther - KindAAC audio file - Size898429 - Total Time16320 - Track Number42 - Track Count83 - Date Modified2011-07-09T10:56:19Z - Date Added2011-07-09T10:48:10Z - Bit Rate256 - Sample Rate44100 - Play Count2 - Play Date3393685014 - Play Date UTC2011-07-16T12:46:54Z - Normalization1492 - Artwork Count1 - Persistent ID2A97530E287C78BA - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/42%20Here%20Comes%20The%20Sun%20(Excerpt)%203.m4a - File Folder Count4 - Library Folder Count1 - - 8996 - - Track ID8996 - NameHere Comes The Sun - ArtistHal Leonard Guitar Method - AlbumAcoustic Guitar - GenreOther - KindAAC audio file - Size7002982 - Total Time178613 - Track Number43 - Track Count83 - Date Modified2011-07-09T10:56:18Z - Date Added2011-07-09T10:48:15Z - Bit Rate256 - Sample Rate44100 - Normalization1170 - Artwork Count1 - Persistent ID864282B649200522 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/43%20Here%20Comes%20The%20Sun.m4a - File Folder Count4 - Library Folder Count1 - - 8998 - - Track ID8998 - NameOpen G 1 - ArtistHal Leonard Guitar Method - AlbumAcoustic Guitar - GenreOther - KindAAC audio file - Size727899 - Total Time12826 - Track Number44 - Track Count83 - Date Modified2011-07-09T10:56:18Z - Date Added2011-07-09T10:48:39Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3393684932 - Play Date UTC2011-07-16T12:45:32Z - Normalization959 - Artwork Count1 - Persistent ID7319292A155305F3 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/44%20Open%20G%201.m4a - File Folder Count4 - Library Folder Count1 - - 9000 - - Track ID9000 - NameOpen G 2 - ArtistHal Leonard Guitar Method - AlbumAcoustic Guitar - GenreOther - KindAAC audio file - Size729249 - Total Time12866 - Track Number45 - Track Count83 - Date Modified2011-07-09T10:56:18Z - Date Added2011-07-09T10:48:43Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3393684935 - Play Date UTC2011-07-16T12:45:35Z - Normalization1186 - Artwork Count1 - Persistent ID259635A41B390859 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/45%20Open%20G%202.m4a - File Folder Count4 - Library Folder Count1 - - 9002 - - Track ID9002 - NameDrop D 1 - ArtistHal Leonard Guitar Method - AlbumAcoustic Guitar - GenreOther - KindAAC audio file - Size751957 - Total Time13586 - Track Number46 - Track Count83 - Date Modified2011-07-09T10:56:18Z - Date Added2011-07-09T10:48:47Z - Bit Rate256 - Sample Rate44100 - Normalization1097 - Artwork Count1 - Persistent ID5827381897C7E5EF - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/46%20Drop%20D%201.m4a - File Folder Count4 - Library Folder Count1 - - 9004 - - Track ID9004 - NameDrop D 2 - ArtistHal Leonard Guitar Method - AlbumAcoustic Guitar - GenreOther - KindAAC audio file - Size1034193 - Total Time20333 - Track Number47 - Track Count83 - Date Modified2011-07-09T10:56:18Z - Date Added2011-07-09T10:48:51Z - Bit Rate256 - Sample Rate44100 - Normalization1080 - Artwork Count1 - Persistent ID34E8A98AD3160F3E - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/47%20Drop%20D%202.m4a - File Folder Count4 - Library Folder Count1 - - 9006 - - Track ID9006 - NameDear Prudence - ArtistHal Leonard Guitar Method - AlbumAcoustic Guitar - GenreOther - KindAAC audio file - Size803190 - Total Time15240 - Track Number48 - Track Count83 - Date Modified2011-07-09T10:56:18Z - Date Added2011-07-09T10:48:57Z - Bit Rate256 - Sample Rate44100 - Normalization1097 - Artwork Count1 - Persistent ID738BC1116DD6E7B6 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/48%20Dear%20Prudence.m4a - File Folder Count4 - Library Folder Count1 - - 9008 - - Track ID9008 - NameBuilding A Mystery - ArtistHal Leonard Guitar Method - AlbumAcoustic Guitar - GenreOther - KindAAC audio file - Size868241 - Total Time15840 - Track Number49 - Track Count83 - Date Modified2011-07-09T10:56:18Z - Date Added2011-07-09T10:49:01Z - Bit Rate256 - Sample Rate44100 - Normalization1004 - Artwork Count1 - Persistent IDD2EE8BFF599999EF - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/49%20Building%20A%20Mystery.m4a - File Folder Count4 - Library Folder Count1 - - 9010 - - Track ID9010 - NameName - ArtistHal Leonard Guitar Method - AlbumAcoustic Guitar - GenreOther - KindAAC audio file - Size9913051 - Total Time274480 - Track Number50 - Track Count83 - Date Modified2011-07-09T10:56:17Z - Date Added2011-07-09T10:49:05Z - Bit Rate256 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Persistent IDF033132677D06453 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/50%20Name.m4a - File Folder Count4 - Library Folder Count1 - - 9012 - - Track ID9012 - NameBallad Strum 1 - ArtistHal Leonard Guitar Method - AlbumAcoustic Guitar - GenreOther - KindAAC audio file - Size1236565 - Total Time25320 - Track Number51 - Track Count83 - Date Modified2011-07-09T10:56:17Z - Date Added2011-07-09T10:49:39Z - Bit Rate256 - Sample Rate44100 - Normalization1288 - Artwork Count1 - Persistent ID0470D4F48A551337 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/51%20Ballad%20Strum%201.m4a - File Folder Count4 - Library Folder Count1 - - 9014 - - Track ID9014 - NameBallad Strum 2 - ArtistHal Leonard Guitar Method - AlbumAcoustic Guitar - GenreOther - KindAAC audio file - Size1231494 - Total Time25253 - Track Number52 - Track Count83 - Date Modified2011-07-09T10:56:17Z - Date Added2011-07-09T10:49:44Z - Bit Rate256 - Sample Rate44100 - Normalization1187 - Artwork Count1 - Persistent ID39B64895C4A6074F - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/52%20Ballad%20Strum%202.m4a - File Folder Count4 - Library Folder Count1 - - 9016 - - Track ID9016 - NameBallad Strum 3 - ArtistHal Leonard Guitar Method - AlbumAcoustic Guitar - GenreOther - KindAAC audio file - Size997733 - Total Time18946 - Track Number53 - Track Count83 - Date Modified2011-07-09T10:56:17Z - Date Added2011-07-09T10:49:50Z - Bit Rate256 - Sample Rate44100 - Normalization930 - Artwork Count1 - Persistent ID9F4AD7D08D9135E7 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/53%20Ballad%20Strum%203.m4a - File Folder Count4 - Library Folder Count1 - - 9018 - - Track ID9018 - NameBluegrass - ArtistHal Leonard Guitar Method - AlbumAcoustic Guitar - GenreOther - KindAAC audio file - Size828495 - Total Time14253 - Track Number54 - Track Count83 - Date Modified2011-07-09T10:56:17Z - Date Added2011-07-09T10:49:55Z - Bit Rate256 - Sample Rate44100 - Normalization1366 - Artwork Count1 - Persistent ID58F1914C24089634 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/54%20Bluegrass.m4a - File Folder Count4 - Library Folder Count1 - - 9020 - - Track ID9020 - NameSoldier's Joy - ArtistHal Leonard Guitar Method - AlbumAcoustic Guitar - GenreOther - KindAAC audio file - Size892713 - Total Time16186 - Track Number55 - Track Count83 - Date Modified2011-07-09T10:56:17Z - Date Added2011-07-09T10:49:59Z - Bit Rate256 - Sample Rate44100 - Normalization2092 - Artwork Count1 - Persistent IDC985C8ABEA085348 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/55%20Soldier's%20Joy.m4a - File Folder Count4 - Library Folder Count1 - - 9022 - - Track ID9022 - NameBilly In The Low Ground - ArtistHal Leonard Guitar Method - AlbumAcoustic Guitar - GenreOther - KindAAC audio file - Size910519 - Total Time16600 - Track Number56 - Track Count83 - Date Modified2011-07-09T10:56:17Z - Date Added2011-07-09T10:50:03Z - Bit Rate256 - Sample Rate44100 - Normalization2039 - Artwork Count1 - Persistent ID7B6F86BF72F37F74 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/56%20Billy%20In%20The%20Low%20Ground.m4a - File Folder Count4 - Library Folder Count1 - - 9024 - - Track ID9024 - NameWhisky Before Breakfast - ArtistHal Leonard Guitar Method - AlbumAcoustic Guitar - GenreOther - KindAAC audio file - Size912885 - Total Time16986 - Track Number57 - Track Count83 - Date Modified2011-07-09T10:56:17Z - Date Added2011-07-09T10:50:08Z - Bit Rate256 - Sample Rate44100 - Normalization1984 - Artwork Count1 - Persistent ID3E8E0E19AE4D23DF - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/57%20Whisky%20Before%20Breakfast.m4a - File Folder Count4 - Library Folder Count1 - - 9026 - - Track ID9026 - NameBlackberry Blossom - ArtistHal Leonard Guitar Method - AlbumAcoustic Guitar - GenreOther - KindAAC audio file - Size912803 - Total Time16440 - Track Number58 - Track Count83 - Date Modified2011-07-09T10:56:16Z - Date Added2011-07-09T10:50:12Z - Bit Rate256 - Sample Rate44100 - Normalization2464 - Artwork Count1 - Persistent ID0D33B8E10F382E73 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/58%20Blackberry%20Blossom.m4a - File Folder Count4 - Library Folder Count1 - - 9028 - - Track ID9028 - NameWildwood Flower - ArtistHal Leonard Guitar Method - AlbumAcoustic Guitar - GenreOther - KindAAC audio file - Size7453592 - Total Time193466 - Track Number59 - Track Count83 - Date Modified2011-07-09T10:56:16Z - Date Added2011-07-09T10:50:17Z - Bit Rate256 - Sample Rate44100 - Normalization1175 - Artwork Count1 - Persistent ID3F75A151365DAF2B - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/59%20Wildwood%20Flower.m4a - File Folder Count4 - Library Folder Count1 - - 9030 - - Track ID9030 - NameSlide Basics 1 - ArtistHal Leonard Guitar Method - AlbumAcoustic Guitar - GenreOther - KindAAC audio file - Size663049 - Total Time11186 - Track Number60 - Track Count83 - Date Modified2011-07-09T10:56:16Z - Date Added2011-07-09T10:50:41Z - Bit Rate256 - Sample Rate44100 - Normalization1224 - Artwork Count1 - Persistent ID2E82E9CDE68AC875 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/60%20Slide%20Basics%201.m4a - File Folder Count4 - Library Folder Count1 - - 9032 - - Track ID9032 - NameSlide Basics 2 - ArtistHal Leonard Guitar Method - AlbumAcoustic Guitar - GenreOther - KindAAC audio file - Size1051700 - Total Time20733 - Track Number61 - Track Count83 - Date Modified2011-07-09T10:56:16Z - Date Added2011-07-09T10:50:45Z - Bit Rate256 - Sample Rate44100 - Normalization1157 - Artwork Count1 - Persistent IDB234CAE8B81C2577 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/61%20Slide%20Basics%202.m4a - File Folder Count4 - Library Folder Count1 - - 9034 - - Track ID9034 - NameSlide Basics 3 - ArtistHal Leonard Guitar Method - AlbumAcoustic Guitar - GenreOther - KindAAC audio file - Size631588 - Total Time10360 - Track Number62 - Track Count83 - Date Modified2011-07-09T10:56:16Z - Date Added2011-07-09T10:50:48Z - Bit Rate256 - Sample Rate44100 - Normalization1218 - Artwork Count1 - Persistent ID8ECAEB44B09963FA - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/62%20Slide%20Basics%203.m4a - File Folder Count4 - Library Folder Count1 - - 9036 - - Track ID9036 - NameRhythm Patterns 1 - ArtistHal Leonard Guitar Method - AlbumAcoustic Guitar - GenreOther - KindAAC audio file - Size942380 - Total Time16840 - Track Number63 - Track Count83 - Date Modified2011-07-09T10:56:16Z - Date Added2011-07-09T10:50:50Z - Bit Rate256 - Sample Rate44100 - Normalization1189 - Artwork Count1 - Persistent IDF96C1B51661FDAC6 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/63%20Rhythm%20Patterns%201.m4a - File Folder Count4 - Library Folder Count1 - - 9038 - - Track ID9038 - NameRhythm Patterns 2 - ArtistHal Leonard Guitar Method - AlbumAcoustic Guitar - GenreOther - KindAAC audio file - Size1122927 - Total Time23146 - Track Number64 - Track Count83 - Date Modified2011-07-09T10:56:16Z - Date Added2011-07-09T10:50:53Z - Bit Rate256 - Sample Rate44100 - Normalization1114 - Artwork Count1 - Persistent IDDBB8019C3C5796BB - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/64%20Rhythm%20Patterns%202.m4a - File Folder Count4 - Library Folder Count1 - - 9040 - - Track ID9040 - NameMy Black Mama - ArtistHal Leonard Guitar Method - AlbumAcoustic Guitar - GenreOther - KindAAC audio file - Size732307 - Total Time13013 - Track Number65 - Track Count83 - Date Modified2011-07-09T10:56:16Z - Date Added2011-07-09T10:50:56Z - Bit Rate256 - Sample Rate44100 - Normalization1202 - Artwork Count1 - Persistent ID79C523045543AE0A - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/65%20My%20Black%20Mama.m4a - File Folder Count4 - Library Folder Count1 - - 9042 - - Track ID9042 - NameCome On In My Kitchen - ArtistHal Leonard Guitar Method - AlbumAcoustic Guitar - GenreOther - KindAAC audio file - Size976472 - Total Time18466 - Track Number66 - Track Count83 - Date Modified2011-07-09T10:56:15Z - Date Added2011-07-09T10:50:58Z - Bit Rate256 - Sample Rate44100 - Normalization1147 - Artwork Count1 - Persistent ID1FCCB54F6832F597 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/66%20Come%20On%20In%20My%20Kitchen.m4a - File Folder Count4 - Library Folder Count1 - - 9044 - - Track ID9044 - NameTerraplane Blues - ArtistHal Leonard Guitar Method - AlbumAcoustic Guitar - GenreOther - KindAAC audio file - Size1083526 - Total Time21093 - Track Number67 - Track Count83 - Date Modified2011-07-09T10:56:15Z - Date Added2011-07-09T10:51:01Z - Bit Rate256 - Sample Rate44100 - Normalization1250 - Artwork Count1 - Persistent ID21CF2F1BC07FD795 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/67%20Terraplane%20Blues.m4a - File Folder Count4 - Library Folder Count1 - - 9046 - - Track ID9046 - NameCross Road Blues - ArtistHal Leonard Guitar Method - AlbumAcoustic Guitar - GenreOther - KindAAC audio file - Size6225450 - Total Time158946 - Track Number68 - Track Count83 - Date Modified2011-07-09T10:56:15Z - Date Added2011-07-09T10:51:04Z - Bit Rate256 - Sample Rate44100 - Normalization1147 - Artwork Count1 - Persistent ID85AFF7807C1196C2 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/68%20Cross%20Road%20Blues.m4a - File Folder Count4 - Library Folder Count1 - - 9048 - - Track ID9048 - NameDroning Strings 1 - ArtistHal Leonard Guitar Method - AlbumAcoustic Guitar - GenreOther - KindAAC audio file - Size866147 - Total Time15653 - Track Number69 - Track Count83 - Date Modified2011-07-09T10:56:15Z - Date Added2011-07-09T10:51:23Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3393685229 - Play Date UTC2011-07-16T12:50:29Z - Normalization1092 - Artwork Count1 - Persistent ID2316EEF4A228A0A4 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/69%20Droning%20Strings%201.m4a - File Folder Count4 - Library Folder Count1 - - 9050 - - Track ID9050 - NameDroning Strings 2 - ArtistHal Leonard Guitar Method - AlbumAcoustic Guitar - GenreOther - KindAAC audio file - Size921923 - Total Time16866 - Track Number70 - Track Count83 - Date Modified2011-07-09T10:56:15Z - Date Added2011-07-09T10:51:26Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3393685246 - Play Date UTC2011-07-16T12:50:46Z - Normalization1090 - Artwork Count1 - Persistent IDC27C8D045B8E3BD0 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/70%20Droning%20Strings%202.m4a - File Folder Count4 - Library Folder Count1 - - 9052 - - Track ID9052 - NameDroning Strings 3 - ArtistHal Leonard Guitar Method - AlbumAcoustic Guitar - GenreOther - KindAAC audio file - Size829600 - Total Time14613 - Track Number71 - Track Count83 - Date Modified2011-07-09T10:56:15Z - Date Added2011-07-09T10:51:29Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3393685261 - Play Date UTC2011-07-16T12:51:01Z - Normalization1161 - Artwork Count1 - Persistent ID3F56EB410B1D89E4 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/71%20Droning%20Strings%203.m4a - File Folder Count4 - Library Folder Count1 - - 9054 - - Track ID9054 - NameDroning Strings 4 - ArtistHal Leonard Guitar Method - AlbumAcoustic Guitar - GenreOther - KindAAC audio file - Size742286 - Total Time13333 - Track Number72 - Track Count83 - Date Modified2011-07-09T10:56:14Z - Date Added2011-07-09T10:51:31Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3393685274 - Play Date UTC2011-07-16T12:51:14Z - Normalization1019 - Artwork Count1 - Persistent IDB0E17D8E5EDFB55D - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/72%20Droning%20Strings%204.m4a - File Folder Count4 - Library Folder Count1 - - 9056 - - Track ID9056 - NameDroning Strings 5 - ArtistHal Leonard Guitar Method - AlbumAcoustic Guitar - GenreOther - KindAAC audio file - Size701324 - Total Time12040 - Track Number73 - Track Count83 - Date Modified2011-07-09T10:56:14Z - Date Added2011-07-09T10:51:33Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3393685286 - Play Date UTC2011-07-16T12:51:26Z - Normalization870 - Artwork Count1 - Persistent ID091A1692557F4CD7 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/73%20Droning%20Strings%205.m4a - File Folder Count4 - Library Folder Count1 - - 9058 - - Track ID9058 - NameDroning Strings 6 - ArtistHal Leonard Guitar Method - AlbumAcoustic Guitar - GenreOther - KindAAC audio file - Size751948 - Total Time13186 - Track Number74 - Track Count83 - Date Modified2011-07-09T10:56:14Z - Date Added2011-07-09T10:51:35Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3393685299 - Play Date UTC2011-07-16T12:51:39Z - Normalization929 - Artwork Count1 - Persistent ID45BB7B663206699D - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/74%20Droning%20Strings%206.m4a - File Folder Count4 - Library Folder Count1 - - 9060 - - Track ID9060 - NameHeaven Beside You - ArtistHal Leonard Guitar Method - AlbumAcoustic Guitar - GenreOther - KindAAC audio file - Size1170417 - Total Time23573 - Track Number75 - Track Count83 - Date Modified2011-07-09T10:56:14Z - Date Added2011-07-09T10:51:37Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3393685323 - Play Date UTC2011-07-16T12:52:03Z - Normalization947 - Artwork Count1 - Persistent ID40D7ED34393C0B9B - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/75%20Heaven%20Beside%20You.m4a - File Folder Count4 - Library Folder Count1 - - 9062 - - Track ID9062 - NameChordal Embellishments 1 - ArtistHal Leonard Guitar Method - AlbumAcoustic Guitar - GenreOther - KindAAC audio file - Size606786 - Total Time9453 - Track Number76 - Track Count83 - Date Modified2011-07-09T10:56:14Z - Date Added2011-07-09T10:51:41Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3393685332 - Play Date UTC2011-07-16T12:52:12Z - Normalization1214 - Artwork Count1 - Persistent ID324F9341AF53D8F9 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/76%20Chordal%20Embellishments%201.m4a - File Folder Count4 - Library Folder Count1 - - 9064 - - Track ID9064 - NameChordal Embellishments 2 - ArtistHal Leonard Guitar Method - AlbumAcoustic Guitar - GenreOther - KindAAC audio file - Size718028 - Total Time12480 - Track Number77 - Track Count83 - Date Modified2011-07-09T10:56:14Z - Date Added2011-07-09T10:51:42Z - Bit Rate256 - Sample Rate44100 - Normalization1103 - Artwork Count1 - Persistent IDE5E39169DD307956 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/77%20Chordal%20Embellishments%202.m4a - File Folder Count4 - Library Folder Count1 - - 9066 - - Track ID9066 - NameChordal Embellishments 3 - ArtistHal Leonard Guitar Method - AlbumAcoustic Guitar - GenreOther - KindAAC audio file - Size647777 - Total Time10893 - Track Number78 - Track Count83 - Date Modified2011-07-09T10:56:14Z - Date Added2011-07-09T10:51:44Z - Bit Rate256 - Sample Rate44100 - Normalization1184 - Artwork Count1 - Persistent ID5193729687CEA8BE - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/78%20Chordal%20Embellishments%203.m4a - File Folder Count4 - Library Folder Count1 - - 9068 - - Track ID9068 - NameChordal Embellishments 4 - ArtistHal Leonard Guitar Method - AlbumAcoustic Guitar - GenreOther - KindAAC audio file - Size609581 - Total Time9400 - Track Number79 - Track Count83 - Date Modified2011-07-09T10:56:14Z - Date Added2011-07-09T10:51:46Z - Bit Rate256 - Sample Rate44100 - Normalization1383 - Artwork Count1 - Persistent ID447E655BF77F036E - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/79%20Chordal%20Embellishments%204.m4a - File Folder Count4 - Library Folder Count1 - - 9070 - - Track ID9070 - NameChordal Embellishments 5 - ArtistHal Leonard Guitar Method - AlbumAcoustic Guitar - GenreOther - KindAAC audio file - Size644659 - Total Time10880 - Track Number80 - Track Count83 - Date Modified2011-07-09T10:56:14Z - Date Added2011-07-09T10:51:48Z - Bit Rate256 - Sample Rate44100 - Normalization818 - Artwork Count1 - Persistent ID8E349E4AB481FDA7 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/80%20Chordal%20Embellishments%205.m4a - File Folder Count4 - Library Folder Count1 - - 9072 - - Track ID9072 - NameChordal Embellishments 6 - ArtistHal Leonard Guitar Method - AlbumAcoustic Guitar - GenreOther - KindAAC audio file - Size657840 - Total Time11120 - Track Number81 - Track Count83 - Date Modified2011-07-09T10:56:13Z - Date Added2011-07-09T10:51:50Z - Bit Rate256 - Sample Rate44100 - Normalization1258 - Artwork Count1 - Persistent ID7B31071702D5303E - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/81%20Chordal%20Embellishments%206.m4a - File Folder Count4 - Library Folder Count1 - - 9074 - - Track ID9074 - NameJack & Diane - ArtistHal Leonard Guitar Method - AlbumAcoustic Guitar - GenreOther - KindAAC audio file - Size858219 - Total Time15373 - Track Number82 - Track Count83 - Date Modified2011-07-09T10:56:13Z - Date Added2011-07-09T10:51:51Z - Bit Rate256 - Sample Rate44100 - Normalization1223 - Artwork Count1 - Persistent ID9EC2CDB95FACFF32 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/82%20Jack%20&%20Diane.m4a - File Folder Count4 - Library Folder Count1 - - 9076 - - Track ID9076 - NameAngie - ArtistHal Leonard Guitar Method - AlbumAcoustic Guitar - GenreOther - KindAAC audio file - Size10425593 - Total Time271373 - Track Number83 - Track Count83 - Date Modified2011-07-09T10:56:13Z - Date Added2011-07-09T10:51:53Z - Bit Rate256 - Sample Rate44100 - Normalization1851 - Artwork Count1 - Persistent IDFD84272F3054A4D9 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Hal%20Leonard%20Guitar%20Method/Acoustic%20Guitar/83%20Angie.m4a - File Folder Count4 - Library Folder Count1 - - 9080 - - Track ID9080 - NameTrack 01 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size550254 - Total Time17533 - Track Number1 - Track Count99 - Date Modified2011-07-24T03:28:02Z - Date Added2011-07-24T02:53:07Z - Bit Rate256 - Sample Rate44100 - Normalization495 - Artwork Count1 - Persistent ID9DFF314D71587AA4 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/01%20Track%2001.m4a - File Folder Count4 - Library Folder Count1 - - 9082 - - Track ID9082 - NameTrack 02 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size1899898 - Total Time59346 - Track Number2 - Track Count99 - Date Modified2011-07-24T03:28:02Z - Date Added2011-07-24T02:53:11Z - Bit Rate256 - Sample Rate44100 - Normalization725 - Artwork Count1 - Persistent IDDB81C026041F779B - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/02%20Track%2002.m4a - File Folder Count4 - Library Folder Count1 - - 9084 - - Track ID9084 - NameTrack 03 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size1287406 - Total Time41240 - Track Number3 - Track Count99 - Date Modified2011-07-24T03:28:02Z - Date Added2011-07-24T02:53:23Z - Bit Rate256 - Sample Rate44100 - Normalization811 - Artwork Count1 - Persistent IDA7A13B1BC4596141 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/03%20Track%2003.m4a - File Folder Count4 - Library Folder Count1 - - 9086 - - Track ID9086 - NameTrack 04 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size720792 - Total Time22573 - Track Number4 - Track Count99 - Date Modified2011-07-24T03:28:02Z - Date Added2011-07-24T02:53:31Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3394461877 - Play Date UTC2011-07-25T12:34:37Z - Normalization766 - Artwork Count1 - Persistent ID247C675632568F82 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/04%20Track%2004.m4a - File Folder Count4 - Library Folder Count1 - - 9088 - - Track ID9088 - NameTrack 05 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size720740 - Total Time22720 - Track Number5 - Track Count99 - Date Modified2011-07-24T03:28:02Z - Date Added2011-07-24T02:53:36Z - Bit Rate256 - Sample Rate44100 - Normalization713 - Artwork Count1 - Persistent ID577B4985EC705E72 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/05%20Track%2005.m4a - File Folder Count4 - Library Folder Count1 - - 9090 - - Track ID9090 - NameTrack 06 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size986783 - Total Time31333 - Track Number6 - Track Count99 - Date Modified2011-07-24T03:28:02Z - Date Added2011-07-24T02:53:41Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3394560497 - Play Date UTC2011-07-26T15:58:17Z - Normalization713 - Artwork Count1 - Persistent ID686B37D63A82145D - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/06%20Track%2006.m4a - File Folder Count4 - Library Folder Count1 - - 9092 - - Track ID9092 - NameTrack 07 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size2138437 - Total Time66706 - Track Number7 - Track Count99 - Date Modified2011-07-24T03:28:02Z - Date Added2011-07-24T02:53:47Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3395062776 - Play Date UTC2011-08-01T11:29:36Z - Normalization763 - Artwork Count1 - Persistent ID416139A75D83BCF3 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/07%20Track%2007.m4a - File Folder Count4 - Library Folder Count1 - - 9094 - - Track ID9094 - NameTrack 08 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size955691 - Total Time31333 - Track Number8 - Track Count99 - Date Modified2011-07-24T03:28:01Z - Date Added2011-07-24T02:53:59Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3394560585 - Play Date UTC2011-07-26T15:59:45Z - Normalization968 - Artwork Count1 - Persistent ID036E5D7EBCF6CD3F - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/08%20Track%2008.m4a - File Folder Count4 - Library Folder Count1 - - 9096 - - Track ID9096 - NameTrack 09 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size469640 - Total Time15333 - Track Number9 - Track Count99 - Date Modified2011-07-24T03:28:01Z - Date Added2011-07-24T02:54:05Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3394560600 - Play Date UTC2011-07-26T16:00:00Z - Normalization1172 - Artwork Count1 - Persistent ID72F7C326F70AE0E6 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/09%20Track%2009.m4a - File Folder Count4 - Library Folder Count1 - - 9098 - - Track ID9098 - NameTrack 10 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size681044 - Total Time20226 - Track Number10 - Track Count99 - Date Modified2011-07-24T03:28:01Z - Date Added2011-07-24T02:54:08Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3394560620 - Play Date UTC2011-07-26T16:00:20Z - Normalization1207 - Artwork Count1 - Persistent ID88CD8F95C322DBCD - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/10%20Track%2010.m4a - File Folder Count4 - Library Folder Count1 - - 9100 - - Track ID9100 - NameTrack 11 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size602952 - Total Time17520 - Track Number11 - Track Count99 - Date Modified2011-07-24T03:28:01Z - Date Added2011-07-24T02:54:12Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3394560664 - Play Date UTC2011-07-26T16:01:04Z - Normalization1009 - Artwork Count1 - Persistent ID2EF9C924B7733827 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/11%20Track%2011.m4a - File Folder Count4 - Library Folder Count1 - - 9102 - - Track ID9102 - NameTrack 12 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size595709 - Total Time16906 - Track Number12 - Track Count99 - Date Modified2011-07-24T03:28:01Z - Date Added2011-07-24T02:54:16Z - Bit Rate256 - Sample Rate44100 - Play Count3 - Play Date3395235045 - Play Date UTC2011-08-03T11:20:45Z - Skip Count1 - Normalization781 - Artwork Count1 - Persistent ID96366C103CF9C51E - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/12%20Track%2012.m4a - File Folder Count4 - Library Folder Count1 - - 9104 - - Track ID9104 - NameTrack 13 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size560390 - Total Time16053 - Track Number13 - Track Count99 - Date Modified2011-07-24T03:28:01Z - Date Added2011-07-24T02:54:19Z - Bit Rate256 - Sample Rate44100 - Play Count4 - Play Date3395241454 - Play Date UTC2011-08-03T13:07:34Z - Skip Count1 - Normalization1090 - Artwork Count1 - Persistent ID93056E54FA83E172 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/13%20Track%2013.m4a - File Folder Count4 - Library Folder Count1 - - 9106 - - Track ID9106 - NameTrack 14 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size926963 - Total Time26413 - Track Number14 - Track Count99 - Date Modified2011-07-24T03:28:01Z - Date Added2011-07-24T02:54:23Z - Bit Rate256 - Sample Rate44100 - Play Count2 - Play Date3395320339 - Play Date UTC2011-08-04T11:02:19Z - Normalization933 - Artwork Count1 - Persistent ID0B54713C86708ADA - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/14%20Track%2014.m4a - File Folder Count4 - Library Folder Count1 - - 9108 - - Track ID9108 - NameTrack 15 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size779018 - Total Time23786 - Track Number15 - Track Count99 - Date Modified2011-07-24T03:28:01Z - Date Added2011-07-24T02:54:28Z - Bit Rate256 - Sample Rate44100 - Normalization495 - Artwork Count1 - Persistent ID142941686E3CDC3C - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/15%20Track%2015.m4a - File Folder Count4 - Library Folder Count1 - - 9110 - - Track ID9110 - NameTrack 16 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size1464636 - Total Time44520 - Track Number16 - Track Count99 - Date Modified2011-07-24T03:28:01Z - Date Added2011-07-24T02:54:32Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3395571999 - Play Date UTC2011-08-07T08:56:39Z - Normalization495 - Artwork Count1 - Persistent ID05C81FD1E6673A5A - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/16%20Track%2016.m4a - File Folder Count4 - Library Folder Count1 - - 9112 - - Track ID9112 - NameTrack 17 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size947152 - Total Time28493 - Track Number17 - Track Count99 - Date Modified2011-07-24T03:28:01Z - Date Added2011-07-24T02:54:40Z - Bit Rate256 - Sample Rate44100 - Normalization495 - Artwork Count1 - Persistent ID6A99EBAD7B789D2B - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/17%20Track%2017.m4a - File Folder Count4 - Library Folder Count1 - - 9114 - - Track ID9114 - NameTrack 18 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size955414 - Total Time28493 - Track Number18 - Track Count99 - Date Modified2011-07-24T03:28:01Z - Date Added2011-07-24T02:54:45Z - Bit Rate256 - Sample Rate44100 - Normalization495 - Artwork Count1 - Persistent IDA1237F9CDDE0F01E - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/18%20Track%2018.m4a - File Folder Count4 - Library Folder Count1 - - 9116 - - Track ID9116 - NameTrack 19 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size585757 - Total Time18173 - Track Number19 - Track Count99 - Date Modified2011-07-24T03:28:00Z - Date Added2011-07-24T02:54:50Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3395665679 - Play Date UTC2011-08-08T10:57:59Z - Skip Count1 - Normalization495 - Artwork Count1 - Persistent IDE3838ECAA09A47B6 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/19%20Track%2019.m4a - File Folder Count4 - Library Folder Count1 - - 9118 - - Track ID9118 - NameTrack 20 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size860472 - Total Time25266 - Track Number20 - Track Count99 - Date Modified2011-07-24T03:28:00Z - Date Added2011-07-24T02:54:53Z - Bit Rate256 - Sample Rate44100 - Play Count2 - Play Date3395673323 - Play Date UTC2011-08-08T13:05:23Z - Skip Count1 - Normalization495 - Artwork Count1 - Persistent IDE66A9912B96F46DC - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/20%20Track%2020.m4a - File Folder Count4 - Library Folder Count1 - - 9120 - - Track ID9120 - NameTrack 21 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size862714 - Total Time24920 - Track Number21 - Track Count99 - Date Modified2011-07-24T03:28:00Z - Date Added2011-07-24T02:54:58Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3395664960 - Play Date UTC2011-08-08T10:46:00Z - Normalization495 - Artwork Count1 - Persistent ID02C53E3271951E49 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/21%20Track%2021.m4a - File Folder Count4 - Library Folder Count1 - - 9122 - - Track ID9122 - NameTrack 22 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size875995 - Total Time24920 - Track Number22 - Track Count99 - Date Modified2011-07-24T03:28:00Z - Date Added2011-07-24T02:55:02Z - Bit Rate256 - Sample Rate44100 - Normalization705 - Artwork Count1 - Persistent ID678CB007F223B775 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/22%20Track%2022.m4a - File Folder Count4 - Library Folder Count1 - - 9124 - - Track ID9124 - NameTrack 23 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size770371 - Total Time22280 - Track Number23 - Track Count99 - Date Modified2011-07-24T03:28:00Z - Date Added2011-07-24T02:55:07Z - Bit Rate256 - Sample Rate44100 - Skip Count1 - Normalization701 - Artwork Count1 - Persistent ID0535444A6F255FD1 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/23%20Track%2023.m4a - File Folder Count4 - Library Folder Count1 - - 9126 - - Track ID9126 - NameTrack 24 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size674423 - Total Time21546 - Track Number24 - Track Count99 - Date Modified2011-07-24T03:28:00Z - Date Added2011-07-24T02:55:11Z - Bit Rate256 - Sample Rate44100 - Normalization782 - Artwork Count1 - Persistent ID5316C102F96E8AD4 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/24%20Track%2024.m4a - File Folder Count4 - Library Folder Count1 - - 9128 - - Track ID9128 - NameTrack 25 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size786329 - Total Time23853 - Track Number25 - Track Count99 - Date Modified2011-07-24T03:28:00Z - Date Added2011-07-24T02:55:14Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3394547877 - Play Date UTC2011-07-26T12:27:57Z - Normalization495 - Artwork Count1 - Persistent ID8FF3E9BE3A1D2485 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/25%20Track%2025.m4a - File Folder Count4 - Library Folder Count1 - - 9130 - - Track ID9130 - NameTrack 26 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size971473 - Total Time27773 - Track Number26 - Track Count99 - Date Modified2011-07-24T03:28:00Z - Date Added2011-07-24T02:55:19Z - Bit Rate256 - Sample Rate44100 - Play Count3 - Play Date3395664885 - Play Date UTC2011-08-08T10:44:45Z - Skip Count1 - Normalization784 - Artwork Count1 - Persistent IDC18FC77ECE4F8EA4 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/26%20Track%2026.m4a - File Folder Count4 - Library Folder Count1 - - 9132 - - Track ID9132 - NameTrack 27 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size768791 - Total Time24426 - Track Number27 - Track Count99 - Date Modified2011-07-24T03:28:00Z - Date Added2011-07-24T02:55:23Z - Bit Rate256 - Sample Rate44100 - Normalization573 - Artwork Count1 - Persistent ID76CF4F7546B1D7FE - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/27%20Track%2027.m4a - File Folder Count4 - Library Folder Count1 - - 9134 - - Track ID9134 - NameTrack 28 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size575043 - Total Time16200 - Track Number28 - Track Count99 - Date Modified2011-07-24T03:28:00Z - Date Added2011-07-24T02:55:27Z - Bit Rate256 - Sample Rate44100 - Normalization495 - Artwork Count1 - Persistent ID8B82DCF0248BBD74 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/28%20Track%2028.m4a - File Folder Count4 - Library Folder Count1 - - 9136 - - Track ID9136 - NameTrack 29 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size577006 - Total Time16266 - Track Number29 - Track Count99 - Date Modified2011-07-24T03:28:00Z - Date Added2011-07-24T02:55:30Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3396168525 - Play Date UTC2011-08-14T06:38:45Z - Skip Count1 - Normalization725 - Artwork Count1 - Persistent IDA26F4ED88D782ECB - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/29%20Track%2029.m4a - File Folder Count4 - Library Folder Count1 - - 9138 - - Track ID9138 - NameTrack 30 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size925738 - Total Time26266 - Track Number30 - Track Count99 - Date Modified2011-07-24T03:28:00Z - Date Added2011-07-24T02:55:33Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3395943751 - Play Date UTC2011-08-11T16:12:31Z - Skip Count2 - Normalization537 - Artwork Count1 - Persistent IDEB01F5537D51F28E - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/30%20Track%2030.m4a - File Folder Count4 - Library Folder Count1 - - 9140 - - Track ID9140 - NameTrack 31 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size662588 - Total Time21173 - Track Number31 - Track Count99 - Date Modified2011-07-24T03:27:59Z - Date Added2011-07-24T02:55:38Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3395943809 - Play Date UTC2011-08-11T16:13:29Z - Skip Count1 - Normalization495 - Artwork Count1 - Persistent ID5752154D3BACD814 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/31%20Track%2031.m4a - File Folder Count4 - Library Folder Count1 - - 9142 - - Track ID9142 - NameTrack 32 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size667397 - Total Time21280 - Track Number32 - Track Count99 - Date Modified2011-07-24T03:27:59Z - Date Added2011-07-24T02:55:42Z - Bit Rate256 - Sample Rate44100 - Play Count2 - Play Date3396198082 - Play Date UTC2011-08-14T14:51:22Z - Normalization1054 - Artwork Count1 - Persistent ID6F255B746D785D65 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/32%20Track%2032.m4a - File Folder Count4 - Library Folder Count1 - - 9144 - - Track ID9144 - NameTrack 33 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size527782 - Total Time15986 - Track Number33 - Track Count99 - Date Modified2011-07-24T03:27:59Z - Date Added2011-07-24T02:55:45Z - Bit Rate256 - Sample Rate44100 - Play Count2 - Play Date3396275648 - Play Date UTC2011-08-15T12:24:08Z - Skip Count1 - Normalization740 - Artwork Count1 - Persistent ID077ECD3CEEF5897B - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/33%20Track%2033.m4a - File Folder Count4 - Library Folder Count1 - - 9146 - - Track ID9146 - NameTrack 34 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size887449 - Total Time26733 - Track Number34 - Track Count99 - Date Modified2011-07-24T03:27:59Z - Date Added2011-07-24T02:55:48Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3395943925 - Play Date UTC2011-08-11T16:15:25Z - Normalization832 - Artwork Count1 - Persistent ID2ACC7CE256E2951B - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/34%20Track%2034.m4a - File Folder Count4 - Library Folder Count1 - - 9148 - - Track ID9148 - NameTrack 35 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size761007 - Total Time23013 - Track Number35 - Track Count99 - Date Modified2011-07-24T03:27:59Z - Date Added2011-07-24T02:55:52Z - Bit Rate256 - Sample Rate44100 - Play Count2 - Play Date3396355797 - Play Date UTC2011-08-16T10:39:57Z - Skip Count2 - Normalization1074 - Artwork Count1 - Persistent ID574ED18245822E6D - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/35%20Track%2035.m4a - File Folder Count4 - Library Folder Count1 - - 9150 - - Track ID9150 - NameTrack 36 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size1263514 - Total Time36480 - Track Number36 - Track Count99 - Date Modified2011-07-24T03:27:59Z - Date Added2011-07-24T02:55:56Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3395854252 - Play Date UTC2011-08-10T15:20:52Z - Normalization831 - Artwork Count1 - Persistent ID87E7794371492A6B - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/36%20Track%2036.m4a - File Folder Count4 - Library Folder Count1 - - 9152 - - Track ID9152 - NameTrack 37 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size1002978 - Total Time29120 - Track Number37 - Track Count99 - Date Modified2011-07-24T03:27:59Z - Date Added2011-07-24T02:56:02Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3396374566 - Play Date UTC2011-08-16T15:52:46Z - Normalization1027 - Artwork Count1 - Persistent IDED8978D7B2766521 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/37%20Track%2037.m4a - File Folder Count4 - Library Folder Count1 - - 9154 - - Track ID9154 - NameTrack 38 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size571927 - Total Time16720 - Track Number38 - Track Count99 - Date Modified2011-07-24T03:27:59Z - Date Added2011-07-24T02:56:06Z - Bit Rate256 - Sample Rate44100 - Play Count3 - Play Date3396374583 - Play Date UTC2011-08-16T15:53:03Z - Skip Count1 - Normalization944 - Artwork Count1 - Persistent ID0A146517ABE0833A - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/38%20Track%2038.m4a - File Folder Count4 - Library Folder Count1 - - 9156 - - Track ID9156 - NameTrack 39 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size546514 - Total Time16080 - Track Number39 - Track Count99 - Date Modified2011-07-24T03:27:59Z - Date Added2011-07-24T02:56:09Z - Bit Rate256 - Sample Rate44100 - Play Count4 - Play Date3396374600 - Play Date UTC2011-08-16T15:53:20Z - Skip Count2 - Normalization495 - Artwork Count1 - Persistent IDBA84CEE7B13E62C7 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/39%20Track%2039.m4a - File Folder Count4 - Library Folder Count1 - - 9158 - - Track ID9158 - NameTrack 40 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size582725 - Total Time16120 - Track Number40 - Track Count99 - Date Modified2011-07-24T03:27:58Z - Date Added2011-07-24T02:56:12Z - Bit Rate256 - Sample Rate44100 - Play Count3 - Play Date3396543988 - Play Date UTC2011-08-18T14:56:28Z - Skip Count2 - Normalization1118 - Artwork Count1 - Persistent IDB6EAC63CC9391F9F - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/40%20Track%2040.m4a - File Folder Count4 - Library Folder Count1 - - 9160 - - Track ID9160 - NameTrack 41 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size937222 - Total Time25853 - Track Number41 - Track Count99 - Date Modified2011-07-24T03:27:58Z - Date Added2011-07-24T02:56:15Z - Bit Rate256 - Sample Rate44100 - Play Count3 - Play Date3396544014 - Play Date UTC2011-08-18T14:56:54Z - Normalization1214 - Artwork Count1 - Persistent IDB8CDC9350033428D - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/41%20Track%2041.m4a - File Folder Count4 - Library Folder Count1 - - 9162 - - Track ID9162 - NameTrack 42 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size582245 - Total Time16266 - Track Number42 - Track Count99 - Date Modified2011-07-24T03:27:58Z - Date Added2011-07-24T02:56:19Z - Bit Rate256 - Sample Rate44100 - Play Count4 - Play Date3396544030 - Play Date UTC2011-08-18T14:57:10Z - Skip Count1 - Normalization1203 - Artwork Count1 - Persistent IDA3474CC9A9946DA2 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/42%20Track%2042.m4a - File Folder Count4 - Library Folder Count1 - - 9164 - - Track ID9164 - NameTrack 43 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size630507 - Total Time17520 - Track Number43 - Track Count99 - Date Modified2011-07-24T03:27:58Z - Date Added2011-07-24T02:56:22Z - Bit Rate256 - Sample Rate44100 - Play Count3 - Play Date3396544057 - Play Date UTC2011-08-18T14:57:37Z - Normalization1223 - Artwork Count1 - Persistent ID0900012A1F783CBA - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/43%20Track%2043.m4a - File Folder Count4 - Library Folder Count1 - - 9166 - - Track ID9166 - NameTrack 44 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size493200 - Total Time16253 - Track Number44 - Track Count99 - Date Modified2011-07-24T03:27:58Z - Date Added2011-07-24T02:56:25Z - Bit Rate256 - Sample Rate44100 - Play Count3 - Play Date3396607110 - Play Date UTC2011-08-19T08:28:30Z - Normalization803 - Artwork Count1 - Persistent ID04C6889D69601CF2 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/44%20Track%2044.m4a - File Folder Count4 - Library Folder Count1 - - 9168 - - Track ID9168 - NameTrack 45 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size621599 - Total Time19893 - Track Number45 - Track Count99 - Date Modified2011-07-24T03:27:58Z - Date Added2011-07-24T02:56:27Z - Bit Rate256 - Sample Rate44100 - Play Count3 - Play Date3396374667 - Play Date UTC2011-08-16T15:54:27Z - Normalization589 - Artwork Count1 - Persistent IDDA0E91B53E56CCF6 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/45%20Track%2045.m4a - File Folder Count4 - Library Folder Count1 - - 9170 - - Track ID9170 - NameTrack 46 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size420922 - Total Time13440 - Track Number46 - Track Count99 - Date Modified2011-07-24T03:27:58Z - Date Added2011-07-24T02:56:31Z - Bit Rate256 - Sample Rate44100 - Play Count3 - Play Date3396374681 - Play Date UTC2011-08-16T15:54:41Z - Normalization656 - Artwork Count1 - Persistent IDA48147408DFC8950 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/46%20Track%2046.m4a - File Folder Count4 - Library Folder Count1 - - 9172 - - Track ID9172 - NameTrack 47 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size582101 - Total Time17053 - Track Number47 - Track Count99 - Date Modified2011-07-24T03:27:58Z - Date Added2011-07-24T02:56:33Z - Bit Rate256 - Sample Rate44100 - Play Count3 - Play Date3396374691 - Play Date UTC2011-08-16T15:54:51Z - Skip Count2 - Normalization1124 - Artwork Count1 - Persistent ID01CF2B661A227CEF - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/47%20Track%2047.m4a - File Folder Count4 - Library Folder Count1 - - 9174 - - Track ID9174 - NameTrack 48 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size573951 - Total Time16680 - Track Number48 - Track Count99 - Date Modified2011-07-24T03:27:58Z - Date Added2011-07-24T02:56:36Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3396275751 - Play Date UTC2011-08-15T12:25:51Z - Normalization731 - Artwork Count1 - Persistent IDC5FC77B71CC06597 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/48%20Track%2048.m4a - File Folder Count4 - Library Folder Count1 - - 9176 - - Track ID9176 - NameTrack 49 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size630490 - Total Time20226 - Track Number49 - Track Count99 - Date Modified2011-07-24T03:27:58Z - Date Added2011-07-24T02:56:39Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3396275771 - Play Date UTC2011-08-15T12:26:11Z - Normalization1094 - Artwork Count1 - Persistent ID59B24AA157DCCE89 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/49%20Track%2049.m4a - File Folder Count4 - Library Folder Count1 - - 9178 - - Track ID9178 - NameTrack 50 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size642569 - Total Time19493 - Track Number50 - Track Count99 - Date Modified2011-07-24T03:27:58Z - Date Added2011-07-24T02:56:42Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3396275791 - Play Date UTC2011-08-15T12:26:31Z - Normalization762 - Artwork Count1 - Persistent IDB7D2A962C6EC8AFC - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/50%20Track%2050.m4a - File Folder Count4 - Library Folder Count1 - - 9180 - - Track ID9180 - NameTrack 51 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size678097 - Total Time21520 - Track Number51 - Track Count99 - Date Modified2011-07-24T03:27:58Z - Date Added2011-07-24T02:56:45Z - Bit Rate256 - Sample Rate44100 - Play Count3 - Play Date3396781597 - Play Date UTC2011-08-21T08:56:37Z - Normalization495 - Artwork Count1 - Persistent ID17AF316947F56DE2 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/51%20Track%2051.m4a - File Folder Count4 - Library Folder Count1 - - 9182 - - Track ID9182 - NameTrack 52 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size685050 - Total Time21866 - Track Number52 - Track Count99 - Date Modified2011-07-24T03:27:58Z - Date Added2011-07-24T02:56:49Z - Bit Rate256 - Sample Rate44100 - Play Count3 - Play Date3396891463 - Play Date UTC2011-08-22T15:27:43Z - Skip Count2 - Normalization544 - Artwork Count1 - Persistent ID727D04CC3C402285 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/52%20Track%2052.m4a - File Folder Count4 - Library Folder Count1 - - 9184 - - Track ID9184 - NameTrack 53 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size1215994 - Total Time37280 - Track Number53 - Track Count99 - Date Modified2011-07-24T03:27:58Z - Date Added2011-07-24T02:56:52Z - Bit Rate256 - Sample Rate44100 - Play Count2 - Play Date3396374807 - Play Date UTC2011-08-16T15:56:47Z - Normalization642 - Artwork Count1 - Persistent IDA354F4BC081B70A0 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/53%20Track%2053.m4a - File Folder Count4 - Library Folder Count1 - - 9186 - - Track ID9186 - NameTrack 54 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size761052 - Total Time22906 - Track Number54 - Track Count99 - Date Modified2011-07-24T03:27:57Z - Date Added2011-07-24T02:56:57Z - Bit Rate256 - Sample Rate44100 - Play Count2 - Play Date3396374853 - Play Date UTC2011-08-16T15:57:33Z - Skip Count1 - Normalization495 - Artwork Count1 - Persistent IDC04F4611B4006FA9 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/54%20Track%2054.m4a - File Folder Count4 - Library Folder Count1 - - 9188 - - Track ID9188 - NameTrack 55 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size624167 - Total Time19213 - Track Number55 - Track Count99 - Date Modified2011-07-24T03:27:57Z - Date Added2011-07-24T02:57:01Z - Bit Rate256 - Sample Rate44100 - Play Count5 - Play Date3397042813 - Play Date UTC2011-08-24T09:30:13Z - Skip Count1 - Normalization495 - Artwork Count1 - Persistent ID25159328F0A941DA - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/55%20Track%2055.m4a - File Folder Count4 - Library Folder Count1 - - 9190 - - Track ID9190 - NameTrack 56 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size618415 - Total Time19306 - Track Number56 - Track Count99 - Date Modified2011-07-24T03:27:57Z - Date Added2011-07-24T02:57:04Z - Bit Rate256 - Sample Rate44100 - Play Count3 - Play Date3397042832 - Play Date UTC2011-08-24T09:30:32Z - Skip Count1 - Normalization998 - Artwork Count1 - Persistent IDF6E041723408D92F - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/56%20Track%2056.m4a - File Folder Count4 - Library Folder Count1 - - 9192 - - Track ID9192 - NameTrack 57 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size327576 - Total Time10773 - Track Number57 - Track Count99 - Date Modified2011-07-24T03:27:57Z - Date Added2011-07-24T02:57:07Z - Bit Rate256 - Sample Rate44100 - Play Count4 - Play Date3397042843 - Play Date UTC2011-08-24T09:30:43Z - Normalization646 - Artwork Count1 - Persistent ID8A8270B34699C881 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/57%20Track%2057.m4a - File Folder Count4 - Library Folder Count1 - - 9194 - - Track ID9194 - NameTrack 58 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size383740 - Total Time12293 - Track Number58 - Track Count99 - Date Modified2011-07-24T03:27:57Z - Date Added2011-07-24T02:57:09Z - Bit Rate256 - Sample Rate44100 - Play Count4 - Play Date3397042855 - Play Date UTC2011-08-24T09:30:55Z - Normalization393 - Artwork Count1 - Persistent IDC3AD85E045DD2F72 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/58%20Track%2058.m4a - File Folder Count4 - Library Folder Count1 - - 9196 - - Track ID9196 - NameTrack 59 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size425390 - Total Time13533 - Track Number59 - Track Count99 - Date Modified2011-07-24T03:27:57Z - Date Added2011-07-24T02:57:11Z - Bit Rate256 - Sample Rate44100 - Play Count5 - Play Date3397042869 - Play Date UTC2011-08-24T09:31:09Z - Skip Count1 - Normalization495 - Artwork Count1 - Persistent IDD4875625071EABC2 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/59%20Track%2059.m4a - File Folder Count4 - Library Folder Count1 - - 9198 - - Track ID9198 - NameTrack 60 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size576363 - Total Time17893 - Track Number60 - Track Count99 - Date Modified2011-07-24T03:27:57Z - Date Added2011-07-24T02:57:13Z - Bit Rate256 - Sample Rate44100 - Play Count4 - Play Date3397042887 - Play Date UTC2011-08-24T09:31:27Z - Normalization495 - Artwork Count1 - Persistent IDCA58CA954D74A7A4 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/60%20Track%2060.m4a - File Folder Count4 - Library Folder Count1 - - 9200 - - Track ID9200 - NameTrack 61 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size655665 - Total Time20706 - Track Number61 - Track Count99 - Date Modified2011-07-24T03:27:57Z - Date Added2011-07-24T02:57:16Z - Bit Rate256 - Sample Rate44100 - Play Count3 - Play Date3397042907 - Play Date UTC2011-08-24T09:31:47Z - Skip Count2 - Normalization866 - Artwork Count1 - Persistent ID0BD3E91169DA27FB - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/61%20Track%2061.m4a - File Folder Count4 - Library Folder Count1 - - 9202 - - Track ID9202 - NameTrack 62 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size574411 - Total Time16853 - Track Number62 - Track Count99 - Date Modified2011-07-24T03:27:57Z - Date Added2011-07-24T02:57:19Z - Bit Rate256 - Sample Rate44100 - Play Count3 - Play Date3396375109 - Play Date UTC2011-08-16T16:01:49Z - Skip Count1 - Normalization495 - Artwork Count1 - Persistent ID68511D7E6D6F0C74 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/62%20Track%2062.m4a - File Folder Count4 - Library Folder Count1 - - 9204 - - Track ID9204 - NameTrack 63 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size838943 - Total Time24866 - Track Number63 - Track Count99 - Date Modified2011-07-24T03:27:57Z - Date Added2011-07-24T02:57:22Z - Bit Rate256 - Sample Rate44100 - Play Count2 - Play Date3396276083 - Play Date UTC2011-08-15T12:31:23Z - Normalization495 - Artwork Count1 - Persistent ID50B5A317490CA08C - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/63%20Track%2063.m4a - File Folder Count4 - Library Folder Count1 - - 9206 - - Track ID9206 - NameTrack 64 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size1920334 - Total Time61253 - Track Number64 - Track Count99 - Date Modified2011-07-24T03:27:57Z - Date Added2011-07-24T02:57:26Z - Bit Rate256 - Sample Rate44100 - Normalization823 - Artwork Count1 - Persistent ID20F6530698FFB1AA - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/64%20Track%2064.m4a - File Folder Count4 - Library Folder Count1 - - 9208 - - Track ID9208 - NameTrack 65 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size1999051 - Total Time60693 - Track Number65 - Track Count99 - Date Modified2011-07-24T03:27:57Z - Date Added2011-07-24T02:57:34Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3394548261 - Play Date UTC2011-07-26T12:34:21Z - Normalization693 - Artwork Count1 - Persistent IDBD848740E8899B88 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/65%20Track%2065.m4a - File Folder Count4 - Library Folder Count1 - - 9210 - - Track ID9210 - NameTrack 66 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size2257746 - Total Time66120 - Track Number66 - Track Count99 - Date Modified2011-07-24T03:27:56Z - Date Added2011-07-24T02:57:42Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3394561035 - Play Date UTC2011-07-26T16:07:15Z - Normalization1139 - Artwork Count1 - Persistent ID6E7110B82725FEA9 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/66%20Track%2066.m4a - File Folder Count4 - Library Folder Count1 - - 9212 - - Track ID9212 - NameTrack 67 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size857420 - Total Time26226 - Track Number67 - Track Count99 - Date Modified2011-07-24T03:27:56Z - Date Added2011-07-24T02:57:50Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3394561061 - Play Date UTC2011-07-26T16:07:41Z - Normalization603 - Artwork Count1 - Persistent ID03D14B7C21B70E0A - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/67%20Track%2067.m4a - File Folder Count4 - Library Folder Count1 - - 9214 - - Track ID9214 - NameTrack 68 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size2055553 - Total Time61400 - Track Number68 - Track Count99 - Date Modified2011-07-24T03:27:56Z - Date Added2011-07-24T02:57:54Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3394972531 - Play Date UTC2011-07-31T10:25:31Z - Normalization562 - Artwork Count1 - Persistent ID1EEFD0F71C6E271F - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/68%20Track%2068.m4a - File Folder Count4 - Library Folder Count1 - - 9216 - - Track ID9216 - NameTrack 69 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size4797197 - Total Time148413 - Track Number69 - Track Count99 - Date Modified2011-07-24T03:27:56Z - Date Added2011-07-24T02:58:01Z - Bit Rate256 - Sample Rate44100 - Normalization690 - Artwork Count1 - Persistent IDA585B298C998F604 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/69%20Track%2069.m4a - File Folder Count4 - Library Folder Count1 - - 9218 - - Track ID9218 - NameTrack 70 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size7462079 - Total Time228626 - Track Number70 - Track Count99 - Date Modified2011-07-24T03:27:56Z - Date Added2011-07-24T02:58:19Z - Bit Rate256 - Sample Rate44100 - Skip Count1 - Normalization793 - Artwork Count1 - Persistent ID2A961C1981F622EF - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/70%20Track%2070.m4a - File Folder Count4 - Library Folder Count1 - - 9220 - - Track ID9220 - NameTrack 71 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size3663664 - Total Time114186 - Track Number71 - Track Count99 - Date Modified2011-07-24T03:27:55Z - Date Added2011-07-24T02:58:44Z - Bit Rate256 - Sample Rate44100 - Normalization1061 - Artwork Count1 - Persistent ID84448959C66B59F6 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/71%20Track%2071.m4a - File Folder Count4 - Library Folder Count1 - - 9222 - - Track ID9222 - NameTrack 72 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size6540266 - Total Time202400 - Track Number72 - Track Count99 - Date Modified2011-07-24T03:27:55Z - Date Added2011-07-24T02:58:57Z - Bit Rate256 - Sample Rate44100 - Skip Count1 - Normalization839 - Artwork Count1 - Persistent ID3A41B32C0C50733B - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/72%20Track%2072.m4a - File Folder Count4 - Library Folder Count1 - - 9224 - - Track ID9224 - NameTrack 73 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size6539492 - Total Time199933 - Track Number73 - Track Count99 - Date Modified2011-07-24T03:27:54Z - Date Added2011-07-24T02:59:19Z - Bit Rate256 - Sample Rate44100 - Normalization762 - Artwork Count1 - Persistent ID1E84B030151A7B2D - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/73%20Track%2073.m4a - File Folder Count4 - Library Folder Count1 - - 9226 - - Track ID9226 - NameTrack 74 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size780988 - Total Time24600 - Track Number74 - Track Count99 - Date Modified2011-07-24T03:27:54Z - Date Added2011-07-24T02:59:39Z - Bit Rate256 - Sample Rate44100 - Normalization495 - Artwork Count1 - Persistent IDB7227D671FFB1335 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/74%20Track%2074.m4a - File Folder Count4 - Library Folder Count1 - - 9228 - - Track ID9228 - NameTrack 75 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size913518 - Total Time26466 - Track Number75 - Track Count99 - Date Modified2011-07-24T03:27:54Z - Date Added2011-07-24T02:59:42Z - Bit Rate256 - Sample Rate44100 - Normalization1043 - Artwork Count1 - Persistent IDFCCF0FD78F216BEF - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/75%20Track%2075.m4a - File Folder Count4 - Library Folder Count1 - - 9230 - - Track ID9230 - NameTrack 76 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size850925 - Total Time23866 - Track Number76 - Track Count99 - Date Modified2011-07-24T03:27:54Z - Date Added2011-07-24T02:59:45Z - Bit Rate256 - Sample Rate44100 - Normalization1045 - Artwork Count1 - Persistent IDA3080AEF3809E717 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/76%20Track%2076.m4a - File Folder Count4 - Library Folder Count1 - - 9232 - - Track ID9232 - NameTrack 77 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size589311 - Total Time16666 - Track Number77 - Track Count99 - Date Modified2011-07-24T03:27:54Z - Date Added2011-07-24T02:59:48Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3394548441 - Play Date UTC2011-07-26T12:37:21Z - Normalization672 - Artwork Count1 - Persistent ID28C19FF182462D8E - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/77%20Track%2077.m4a - File Folder Count4 - Library Folder Count1 - - 9234 - - Track ID9234 - NameTrack 78 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size691542 - Total Time20280 - Track Number78 - Track Count99 - Date Modified2011-07-24T03:27:54Z - Date Added2011-07-24T02:59:50Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3394548461 - Play Date UTC2011-07-26T12:37:41Z - Normalization1109 - Artwork Count1 - Persistent IDCBD67B6966D4E00E - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/78%20Track%2078.m4a - File Folder Count4 - Library Folder Count1 - - 9236 - - Track ID9236 - NameTrack 79 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size709289 - Total Time20333 - Track Number79 - Track Count99 - Date Modified2011-07-24T03:27:53Z - Date Added2011-07-24T02:59:53Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3394548475 - Play Date UTC2011-07-26T12:37:55Z - Skip Count1 - Normalization976 - Artwork Count1 - Persistent ID8B56F68F900D789B - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/79%20Track%2079.m4a - File Folder Count4 - Library Folder Count1 - - 9238 - - Track ID9238 - NameTrack 80 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size574568 - Total Time16733 - Track Number80 - Track Count99 - Date Modified2011-07-24T03:27:53Z - Date Added2011-07-24T02:59:55Z - Bit Rate256 - Sample Rate44100 - Normalization522 - Artwork Count1 - Persistent ID03340A25524504D2 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/80%20Track%2080.m4a - File Folder Count4 - Library Folder Count1 - - 9240 - - Track ID9240 - NameTrack 81 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size926244 - Total Time26600 - Track Number81 - Track Count99 - Date Modified2011-07-24T03:27:53Z - Date Added2011-07-24T02:59:57Z - Bit Rate256 - Sample Rate44100 - Normalization631 - Artwork Count1 - Persistent ID7AF4F82ABD815E2A - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/81%20Track%2081.m4a - File Folder Count4 - Library Folder Count1 - - 9242 - - Track ID9242 - NameTrack 82 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size435436 - Total Time13946 - Track Number82 - Track Count99 - Date Modified2011-07-24T03:27:53Z - Date Added2011-07-24T03:00:00Z - Bit Rate256 - Sample Rate44100 - Normalization1049 - Artwork Count1 - Persistent IDDAF80D434E4454FC - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/82%20Track%2082.m4a - File Folder Count4 - Library Folder Count1 - - 9244 - - Track ID9244 - NameTrack 83 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size1006168 - Total Time31560 - Track Number83 - Track Count99 - Date Modified2011-07-24T03:27:53Z - Date Added2011-07-24T03:00:02Z - Bit Rate256 - Sample Rate44100 - Normalization495 - Artwork Count1 - Persistent IDC0302AD135986A56 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/83%20Track%2083.m4a - File Folder Count4 - Library Folder Count1 - - 9246 - - Track ID9246 - NameTrack 84 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size1618883 - Total Time46533 - Track Number84 - Track Count99 - Date Modified2011-07-24T03:27:53Z - Date Added2011-07-24T03:00:06Z - Bit Rate256 - Sample Rate44100 - Normalization495 - Artwork Count1 - Persistent ID5C8ED2D03D9BE9EB - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/84%20Track%2084.m4a - File Folder Count4 - Library Folder Count1 - - 9248 - - Track ID9248 - NameTrack 85 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size1539916 - Total Time45133 - Track Number85 - Track Count99 - Date Modified2011-07-24T03:27:53Z - Date Added2011-07-24T03:00:11Z - Bit Rate256 - Sample Rate44100 - Normalization495 - Artwork Count1 - Persistent ID1F26700F7D7B3BBB - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/85%20Track%2085.m4a - File Folder Count4 - Library Folder Count1 - - 9250 - - Track ID9250 - NameTrack 86 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size1952495 - Total Time58613 - Track Number86 - Track Count99 - Date Modified2011-07-24T03:27:53Z - Date Added2011-07-24T03:00:15Z - Bit Rate256 - Sample Rate44100 - Normalization884 - Artwork Count1 - Persistent ID46C68B8D4E191098 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/86%20Track%2086.m4a - File Folder Count4 - Library Folder Count1 - - 9252 - - Track ID9252 - NameTrack 87 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size585526 - Total Time16600 - Track Number87 - Track Count99 - Date Modified2011-07-24T03:27:53Z - Date Added2011-07-24T03:00:21Z - Bit Rate256 - Sample Rate44100 - Normalization1151 - Artwork Count1 - Persistent ID7C3E45265030844B - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/87%20Track%2087.m4a - File Folder Count4 - Library Folder Count1 - - 9254 - - Track ID9254 - NameTrack 88 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size1020413 - Total Time30746 - Track Number88 - Track Count99 - Date Modified2011-07-24T03:27:53Z - Date Added2011-07-24T03:00:23Z - Bit Rate256 - Sample Rate44100 - Normalization1026 - Artwork Count1 - Persistent ID14A077636DEF7584 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/88%20Track%2088.m4a - File Folder Count4 - Library Folder Count1 - - 9256 - - Track ID9256 - NameTrack 89 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size1195401 - Total Time36440 - Track Number89 - Track Count99 - Date Modified2011-07-24T03:27:52Z - Date Added2011-07-24T03:00:27Z - Bit Rate256 - Sample Rate44100 - Normalization559 - Artwork Count1 - Persistent ID76AA4E6C1AEF0359 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/89%20Track%2089.m4a - File Folder Count4 - Library Folder Count1 - - 9258 - - Track ID9258 - NameTrack 90 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size5143569 - Total Time153480 - Track Number90 - Track Count99 - Date Modified2011-07-24T03:27:52Z - Date Added2011-07-24T03:00:31Z - Bit Rate256 - Sample Rate44100 - Normalization1197 - Artwork Count1 - Persistent IDABEBC502F1058017 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/90%20Track%2090.m4a - File Folder Count4 - Library Folder Count1 - - 9260 - - Track ID9260 - NameTrack 91 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size1030223 - Total Time29746 - Track Number91 - Track Count99 - Date Modified2011-07-24T03:27:52Z - Date Added2011-07-24T03:00:45Z - Bit Rate256 - Sample Rate44100 - Normalization750 - Artwork Count1 - Persistent ID09CF18FD15216FD9 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/91%20Track%2091.m4a - File Folder Count4 - Library Folder Count1 - - 9262 - - Track ID9262 - NameTrack 92 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size1556386 - Total Time48333 - Track Number92 - Track Count99 - Date Modified2011-07-24T03:27:52Z - Date Added2011-07-24T03:00:49Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3396375793 - Play Date UTC2011-08-16T16:13:13Z - Skip Count1 - Normalization954 - Artwork Count1 - Persistent ID3F249BB0FD81065A - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/92%20Track%2092.m4a - File Folder Count4 - Library Folder Count1 - - 9264 - - Track ID9264 - NameTrack 93 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size8397151 - Total Time258600 - Track Number93 - Track Count99 - Date Modified2011-07-24T03:27:52Z - Date Added2011-07-24T03:00:53Z - Bit Rate256 - Sample Rate44100 - Normalization936 - Artwork Count1 - Persistent ID58705C3968085B93 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/93%20Track%2093.m4a - File Folder Count4 - Library Folder Count1 - - 9266 - - Track ID9266 - NameTrack 94 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size804220 - Total Time25480 - Track Number94 - Track Count99 - Date Modified2011-07-24T03:27:51Z - Date Added2011-07-24T03:01:17Z - Bit Rate256 - Sample Rate44100 - Normalization529 - Artwork Count1 - Persistent ID64CC2BC9FD3EB3E5 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/94%20Track%2094.m4a - File Folder Count4 - Library Folder Count1 - - 9268 - - Track ID9268 - NameTrack 95 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size5108244 - Total Time155400 - Track Number95 - Track Count99 - Date Modified2011-07-24T03:27:51Z - Date Added2011-07-24T03:01:20Z - Bit Rate256 - Sample Rate44100 - Normalization1044 - Artwork Count1 - Persistent IDB11E0CFE7834515C - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/95%20Track%2095.m4a - File Folder Count4 - Library Folder Count1 - - 9270 - - Track ID9270 - NameTrack 96 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size5419203 - Total Time168120 - Track Number96 - Track Count99 - Date Modified2011-07-24T03:27:51Z - Date Added2011-07-24T03:01:34Z - Bit Rate256 - Sample Rate44100 - Normalization879 - Artwork Count1 - Persistent IDD1565A00A59E16E8 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/96%20Track%2096.m4a - File Folder Count4 - Library Folder Count1 - - 9272 - - Track ID9272 - NameTrack 97 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size5708506 - Total Time165680 - Track Number97 - Track Count99 - Date Modified2011-07-24T03:27:50Z - Date Added2011-07-24T03:01:49Z - Bit Rate256 - Sample Rate44100 - Normalization1060 - Artwork Count1 - Persistent ID0A141931DA4C71A9 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/97%20Track%2097.m4a - File Folder Count4 - Library Folder Count1 - - 9274 - - Track ID9274 - NameTrack 98 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size3970984 - Total Time116866 - Track Number98 - Track Count99 - Date Modified2011-07-24T03:27:50Z - Date Added2011-07-24T03:02:03Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3396375567 - Play Date UTC2011-08-16T16:09:27Z - Normalization1328 - Artwork Count1 - Persistent IDEB5A6E60A95D7651 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/98%20Track%2098.m4a - File Folder Count4 - Library Folder Count1 - - 9276 - - Track ID9276 - NameTrack 99 - ArtistChad Johnson - AlbumFingerstyle Guitar - Hal Leonard - KindAAC audio file - Size4765775 - Total Time147373 - Track Number99 - Track Count99 - Date Modified2011-07-24T03:27:50Z - Date Added2011-07-24T03:02:14Z - Bit Rate256 - Sample Rate44100 - Normalization1224 - Artwork Count1 - Persistent ID1BB4C3C32E744E95 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chad%20Johnson/Fingerstyle%20Guitar%20-%20Hal%20Leonard/99%20Track%2099.m4a - File Folder Count4 - Library Folder Count1 - - 9278 - - Track ID9278 - NameTrack 01 - ArtistTroy Nelson - AlbumGuitar Aerobics - Hal Leonard - KindAAC audio file - Size2090816 - Total Time80800 - Disc Number1 - Disc Count2 - Track Number1 - Track Count53 - Date Modified2011-07-24T03:35:39Z - Date Added2011-07-24T03:29:08Z - Bit Rate256 - Sample Rate44100 - Normalization5294 - Artwork Count1 - Persistent IDCFB575672A8D2D58 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-01%20Track%2001.m4a - File Folder Count4 - Library Folder Count1 - - 9280 - - Track ID9280 - NameTrack 02 - ArtistTroy Nelson - AlbumGuitar Aerobics - Hal Leonard - KindAAC audio file - Size2145649 - Total Time83186 - Disc Number1 - Disc Count2 - Track Number2 - Track Count53 - Date Modified2011-07-24T03:35:39Z - Date Added2011-07-24T03:29:16Z - Bit Rate256 - Sample Rate44100 - Normalization6385 - Artwork Count1 - Persistent IDB19676F7678502DF - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-02%20Track%2002.m4a - File Folder Count4 - Library Folder Count1 - - 9282 - - Track ID9282 - NameTrack 03 - ArtistTroy Nelson - AlbumGuitar Aerobics - Hal Leonard - KindAAC audio file - Size2134271 - Total Time82493 - Disc Number1 - Disc Count2 - Track Number3 - Track Count53 - Date Modified2011-07-24T03:35:39Z - Date Added2011-07-24T03:29:24Z - Bit Rate256 - Sample Rate44100 - Normalization6261 - Artwork Count1 - Persistent ID0AF3C7FCCEA5670B - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-03%20Track%2003.m4a - File Folder Count4 - Library Folder Count1 - - 9284 - - Track ID9284 - NameTrack 04 - ArtistTroy Nelson - AlbumGuitar Aerobics - Hal Leonard - KindAAC audio file - Size2192730 - Total Time83373 - Disc Number1 - Disc Count2 - Track Number4 - Track Count53 - Date Modified2011-07-24T03:35:39Z - Date Added2011-07-24T03:29:32Z - Bit Rate256 - Sample Rate44100 - Normalization5949 - Artwork Count1 - Persistent ID8BF29D47D0EED0CC - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-04%20Track%2004.m4a - File Folder Count4 - Library Folder Count1 - - 9286 - - Track ID9286 - NameTrack 05 - ArtistTroy Nelson - AlbumGuitar Aerobics - Hal Leonard - KindAAC audio file - Size2203348 - Total Time83293 - Disc Number1 - Disc Count2 - Track Number5 - Track Count53 - Date Modified2011-07-24T03:35:39Z - Date Added2011-07-24T03:29:39Z - Bit Rate256 - Sample Rate44100 - Normalization6147 - Artwork Count1 - Persistent ID4EBF799BD365C2DF - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-05%20Track%2005.m4a - File Folder Count4 - Library Folder Count1 - - 9288 - - Track ID9288 - NameTrack 06 - ArtistTroy Nelson - AlbumGuitar Aerobics - Hal Leonard - KindAAC audio file - Size2184187 - Total Time82866 - Disc Number1 - Disc Count2 - Track Number6 - Track Count53 - Date Modified2011-07-24T03:35:39Z - Date Added2011-07-24T03:29:47Z - Bit Rate256 - Sample Rate44100 - Normalization5004 - Artwork Count1 - Persistent ID9420D247166F8973 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-06%20Track%2006.m4a - File Folder Count4 - Library Folder Count1 - - 9290 - - Track ID9290 - NameTrack 07 - ArtistTroy Nelson - AlbumGuitar Aerobics - Hal Leonard - KindAAC audio file - Size2061512 - Total Time77360 - Disc Number1 - Disc Count2 - Track Number7 - Track Count53 - Date Modified2011-07-24T03:35:38Z - Date Added2011-07-24T03:29:54Z - Bit Rate256 - Sample Rate44100 - Normalization4427 - Artwork Count1 - Persistent ID42F7F751DE6A8492 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-07%20Track%2007.m4a - File Folder Count4 - Library Folder Count1 - - 9292 - - Track ID9292 - NameTrack 08 - ArtistTroy Nelson - AlbumGuitar Aerobics - Hal Leonard - KindAAC audio file - Size2132336 - Total Time80080 - Disc Number1 - Disc Count2 - Track Number8 - Track Count53 - Date Modified2011-07-24T03:35:38Z - Date Added2011-07-24T03:30:00Z - Bit Rate256 - Sample Rate44100 - Normalization5622 - Artwork Count1 - Persistent IDFDE815EB5FFD68D0 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-08%20Track%2008.m4a - File Folder Count4 - Library Folder Count1 - - 9294 - - Track ID9294 - NameTrack 09 - ArtistTroy Nelson - AlbumGuitar Aerobics - Hal Leonard - KindAAC audio file - Size2391697 - Total Time91320 - Disc Number1 - Disc Count2 - Track Number9 - Track Count53 - Date Modified2011-07-24T03:35:38Z - Date Added2011-07-24T03:30:07Z - Bit Rate256 - Sample Rate44100 - Normalization5082 - Artwork Count1 - Persistent ID51D144F9FE4B5C05 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-09%20Track%2009.m4a - File Folder Count4 - Library Folder Count1 - - 9296 - - Track ID9296 - NameTrack 10 - ArtistTroy Nelson - AlbumGuitar Aerobics - Hal Leonard - KindAAC audio file - Size2553685 - Total Time97453 - Disc Number1 - Disc Count2 - Track Number10 - Track Count53 - Date Modified2011-07-24T03:35:38Z - Date Added2011-07-24T03:30:14Z - Bit Rate256 - Sample Rate44100 - Normalization5036 - Artwork Count1 - Persistent ID50132BB74847891D - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-10%20Track%2010.m4a - File Folder Count4 - Library Folder Count1 - - 9298 - - Track ID9298 - NameTrack 11 - ArtistTroy Nelson - AlbumGuitar Aerobics - Hal Leonard - KindAAC audio file - Size2541114 - Total Time97973 - Disc Number1 - Disc Count2 - Track Number11 - Track Count53 - Date Modified2011-07-24T03:35:38Z - Date Added2011-07-24T03:30:22Z - Bit Rate256 - Sample Rate44100 - Normalization4481 - Artwork Count1 - Persistent IDCD1133C19DED27DA - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-11%20Track%2011.m4a - File Folder Count4 - Library Folder Count1 - - 9300 - - Track ID9300 - NameTrack 12 - ArtistTroy Nelson - AlbumGuitar Aerobics - Hal Leonard - KindAAC audio file - Size2548148 - Total Time97200 - Disc Number1 - Disc Count2 - Track Number12 - Track Count53 - Date Modified2011-07-24T03:35:38Z - Date Added2011-07-24T03:30:29Z - Bit Rate256 - Sample Rate44100 - Normalization4685 - Artwork Count1 - Persistent IDD7532C6A0F0D426A - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-12%20Track%2012.m4a - File Folder Count4 - Library Folder Count1 - - 9302 - - Track ID9302 - NameTrack 13 - ArtistTroy Nelson - AlbumGuitar Aerobics - Hal Leonard - KindAAC audio file - Size2430614 - Total Time94000 - Disc Number1 - Disc Count2 - Track Number13 - Track Count53 - Date Modified2011-07-24T03:35:38Z - Date Added2011-07-24T03:30:36Z - Bit Rate256 - Sample Rate44100 - Normalization3787 - Artwork Count1 - Persistent IDD3B467EA657AE0CE - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-13%20Track%2013.m4a - File Folder Count4 - Library Folder Count1 - - 9304 - - Track ID9304 - NameTrack 14 - ArtistTroy Nelson - AlbumGuitar Aerobics - Hal Leonard - KindAAC audio file - Size2432181 - Total Time93346 - Disc Number1 - Disc Count2 - Track Number14 - Track Count53 - Date Modified2011-07-24T03:35:37Z - Date Added2011-07-24T03:30:43Z - Bit Rate256 - Sample Rate44100 - Normalization4379 - Artwork Count1 - Persistent ID55B2C64F75BEE70E - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-14%20Track%2014.m4a - File Folder Count4 - Library Folder Count1 - - 9306 - - Track ID9306 - NameTrack 15 - ArtistTroy Nelson - AlbumGuitar Aerobics - Hal Leonard - KindAAC audio file - Size2383392 - Total Time90906 - Disc Number1 - Disc Count2 - Track Number15 - Track Count53 - Date Modified2011-07-24T03:35:37Z - Date Added2011-07-24T03:30:49Z - Bit Rate256 - Sample Rate44100 - Normalization4091 - Artwork Count1 - Persistent ID66D5234503801927 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-15%20Track%2015.m4a - File Folder Count4 - Library Folder Count1 - - 9308 - - Track ID9308 - NameTrack 16 - ArtistTroy Nelson - AlbumGuitar Aerobics - Hal Leonard - KindAAC audio file - Size2407102 - Total Time94160 - Disc Number1 - Disc Count2 - Track Number16 - Track Count53 - Date Modified2011-07-24T03:35:37Z - Date Added2011-07-24T03:30:56Z - Bit Rate256 - Sample Rate44100 - Normalization3968 - Artwork Count1 - Persistent IDAB361BAD412B1471 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-16%20Track%2016.m4a - File Folder Count4 - Library Folder Count1 - - 9310 - - Track ID9310 - NameTrack 17 - ArtistTroy Nelson - AlbumGuitar Aerobics - Hal Leonard - KindAAC audio file - Size2434632 - Total Time93666 - Disc Number1 - Disc Count2 - Track Number17 - Track Count53 - Date Modified2011-07-24T03:35:37Z - Date Added2011-07-24T03:31:02Z - Bit Rate256 - Sample Rate44100 - Normalization3915 - Artwork Count1 - Persistent ID627D09AE26506898 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-17%20Track%2017.m4a - File Folder Count4 - Library Folder Count1 - - 9312 - - Track ID9312 - NameTrack 18 - ArtistTroy Nelson - AlbumGuitar Aerobics - Hal Leonard - KindAAC audio file - Size2643721 - Total Time100160 - Disc Number1 - Disc Count2 - Track Number18 - Track Count53 - Date Modified2011-07-24T03:35:37Z - Date Added2011-07-24T03:31:08Z - Bit Rate256 - Sample Rate44100 - Normalization4004 - Artwork Count1 - Persistent ID35C3D044F9F14821 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-18%20Track%2018.m4a - File Folder Count4 - Library Folder Count1 - - 9314 - - Track ID9314 - NameTrack 19 - ArtistTroy Nelson - AlbumGuitar Aerobics - Hal Leonard - KindAAC audio file - Size2679541 - Total Time102080 - Disc Number1 - Disc Count2 - Track Number19 - Track Count53 - Date Modified2011-07-24T03:35:37Z - Date Added2011-07-24T03:31:15Z - Bit Rate256 - Sample Rate44100 - Normalization4783 - Artwork Count1 - Persistent ID365D0730BD8DC532 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-19%20Track%2019.m4a - File Folder Count4 - Library Folder Count1 - - 9316 - - Track ID9316 - NameTrack 20 - ArtistTroy Nelson - AlbumGuitar Aerobics - Hal Leonard - KindAAC audio file - Size2735534 - Total Time100453 - Disc Number1 - Disc Count2 - Track Number20 - Track Count53 - Date Modified2011-07-24T03:35:37Z - Date Added2011-07-24T03:31:21Z - Bit Rate256 - Sample Rate44100 - Normalization4626 - Artwork Count1 - Persistent IDC1C9FC4D904F72CA - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-20%20Track%2020.m4a - File Folder Count4 - Library Folder Count1 - - 9318 - - Track ID9318 - NameTrack 21 - ArtistTroy Nelson - AlbumGuitar Aerobics - Hal Leonard - KindAAC audio file - Size2336240 - Total Time87173 - Disc Number1 - Disc Count2 - Track Number21 - Track Count53 - Date Modified2011-07-24T03:35:36Z - Date Added2011-07-24T03:31:27Z - Bit Rate256 - Sample Rate44100 - Normalization4529 - Artwork Count1 - Persistent ID90841E41E9E47695 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-21%20Track%2021.m4a - File Folder Count4 - Library Folder Count1 - - 9320 - - Track ID9320 - NameTrack 22 - ArtistTroy Nelson - AlbumGuitar Aerobics - Hal Leonard - KindAAC audio file - Size2647827 - Total Time98546 - Disc Number1 - Disc Count2 - Track Number22 - Track Count53 - Date Modified2011-07-24T03:35:36Z - Date Added2011-07-24T03:31:33Z - Bit Rate256 - Sample Rate44100 - Normalization3673 - Artwork Count1 - Persistent IDBAB3C79B7B0DB02D - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-22%20Track%2022.m4a - File Folder Count4 - Library Folder Count1 - - 9322 - - Track ID9322 - NameTrack 23 - ArtistTroy Nelson - AlbumGuitar Aerobics - Hal Leonard - KindAAC audio file - Size2516843 - Total Time95733 - Disc Number1 - Disc Count2 - Track Number23 - Track Count53 - Date Modified2011-07-24T03:35:36Z - Date Added2011-07-24T03:31:39Z - Bit Rate256 - Sample Rate44100 - Normalization3645 - Artwork Count1 - Persistent ID5A0A75EF2B239CE7 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-23%20Track%2023.m4a - File Folder Count4 - Library Folder Count1 - - 9324 - - Track ID9324 - NameTrack 24 - ArtistTroy Nelson - AlbumGuitar Aerobics - Hal Leonard - KindAAC audio file - Size2408091 - Total Time93840 - Disc Number1 - Disc Count2 - Track Number24 - Track Count53 - Date Modified2011-07-24T03:35:36Z - Date Added2011-07-24T03:31:45Z - Bit Rate256 - Sample Rate44100 - Normalization3931 - Artwork Count1 - Persistent ID1ECDAE73FDD882A6 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-24%20Track%2024.m4a - File Folder Count4 - Library Folder Count1 - - 9326 - - Track ID9326 - NameTrack 25 - ArtistTroy Nelson - AlbumGuitar Aerobics - Hal Leonard - KindAAC audio file - Size2276370 - Total Time88480 - Disc Number1 - Disc Count2 - Track Number25 - Track Count53 - Date Modified2011-07-24T03:35:36Z - Date Added2011-07-24T03:31:50Z - Bit Rate256 - Sample Rate44100 - Normalization4157 - Artwork Count1 - Persistent ID46899E2B1CBDA6BD - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-25%20Track%2025.m4a - File Folder Count4 - Library Folder Count1 - - 9328 - - Track ID9328 - NameTrack 26 - ArtistTroy Nelson - AlbumGuitar Aerobics - Hal Leonard - KindAAC audio file - Size2442134 - Total Time93080 - Disc Number1 - Disc Count2 - Track Number26 - Track Count53 - Date Modified2011-07-24T03:35:36Z - Date Added2011-07-24T03:31:55Z - Bit Rate256 - Sample Rate44100 - Normalization4548 - Artwork Count1 - Persistent ID564D2C3CD6939FA7 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-26%20Track%2026.m4a - File Folder Count4 - Library Folder Count1 - - 9330 - - Track ID9330 - NameTrack 27 - ArtistTroy Nelson - AlbumGuitar Aerobics - Hal Leonard - KindAAC audio file - Size2337440 - Total Time88213 - Disc Number1 - Disc Count2 - Track Number27 - Track Count53 - Date Modified2011-07-24T03:35:35Z - Date Added2011-07-24T03:32:01Z - Bit Rate256 - Sample Rate44100 - Normalization5318 - Artwork Count1 - Persistent IDA69F9E02FDEA27A6 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-27%20Track%2027.m4a - File Folder Count4 - Library Folder Count1 - - 9332 - - Track ID9332 - NameTrack 28 - ArtistTroy Nelson - AlbumGuitar Aerobics - Hal Leonard - KindAAC audio file - Size2312857 - Total Time86506 - Disc Number1 - Disc Count2 - Track Number28 - Track Count53 - Date Modified2011-07-24T03:35:35Z - Date Added2011-07-24T03:32:06Z - Bit Rate256 - Sample Rate44100 - Normalization4023 - Artwork Count1 - Persistent ID8A01CDC1FC5E3126 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-28%20Track%2028.m4a - File Folder Count4 - Library Folder Count1 - - 9334 - - Track ID9334 - NameTrack 29 - ArtistTroy Nelson - AlbumGuitar Aerobics - Hal Leonard - KindAAC audio file - Size2471479 - Total Time87240 - Disc Number1 - Disc Count2 - Track Number29 - Track Count53 - Date Modified2011-07-24T03:35:35Z - Date Added2011-07-24T03:32:11Z - Bit Rate256 - Sample Rate44100 - Normalization4435 - Artwork Count1 - Persistent IDC47CF6149772A23A - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-29%20Track%2029.m4a - File Folder Count4 - Library Folder Count1 - - 9336 - - Track ID9336 - NameTrack 30 - ArtistTroy Nelson - AlbumGuitar Aerobics - Hal Leonard - KindAAC audio file - Size2586241 - Total Time92466 - Disc Number1 - Disc Count2 - Track Number30 - Track Count53 - Date Modified2011-07-24T03:35:35Z - Date Added2011-07-24T03:32:16Z - Bit Rate256 - Sample Rate44100 - Normalization4182 - Artwork Count1 - Persistent IDAB4726265F626F42 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-30%20Track%2030.m4a - File Folder Count4 - Library Folder Count1 - - 9338 - - Track ID9338 - NameTrack 31 - ArtistTroy Nelson - AlbumGuitar Aerobics - Hal Leonard - KindAAC audio file - Size2289012 - Total Time84773 - Disc Number1 - Disc Count2 - Track Number31 - Track Count53 - Date Modified2011-07-24T03:35:35Z - Date Added2011-07-24T03:32:21Z - Bit Rate256 - Sample Rate44100 - Normalization4083 - Artwork Count1 - Persistent IDEA443E817DD8966C - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-31%20Track%2031.m4a - File Folder Count4 - Library Folder Count1 - - 9340 - - Track ID9340 - NameTrack 32 - ArtistTroy Nelson - AlbumGuitar Aerobics - Hal Leonard - KindAAC audio file - Size2304927 - Total Time84773 - Disc Number1 - Disc Count2 - Track Number32 - Track Count53 - Date Modified2011-07-24T03:35:35Z - Date Added2011-07-24T03:32:25Z - Bit Rate256 - Sample Rate44100 - Normalization5280 - Artwork Count1 - Persistent ID2DBD11BC0BBBA855 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-32%20Track%2032.m4a - File Folder Count4 - Library Folder Count1 - - 9342 - - Track ID9342 - NameTrack 33 - ArtistTroy Nelson - AlbumGuitar Aerobics - Hal Leonard - KindAAC audio file - Size2084259 - Total Time75173 - Disc Number1 - Disc Count2 - Track Number33 - Track Count53 - Date Modified2011-07-24T03:35:34Z - Date Added2011-07-24T03:32:30Z - Bit Rate256 - Sample Rate44100 - Normalization3925 - Artwork Count1 - Persistent IDE53BB4E3A2FC3BA8 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-33%20Track%2033.m4a - File Folder Count4 - Library Folder Count1 - - 9344 - - Track ID9344 - NameTrack 34 - ArtistTroy Nelson - AlbumGuitar Aerobics - Hal Leonard - KindAAC audio file - Size2113655 - Total Time76426 - Disc Number1 - Disc Count2 - Track Number34 - Track Count53 - Date Modified2011-07-24T03:35:34Z - Date Added2011-07-24T03:32:34Z - Bit Rate256 - Sample Rate44100 - Normalization3695 - Artwork Count1 - Persistent IDC456ACBF456E3BFE - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-34%20Track%2034.m4a - File Folder Count4 - Library Folder Count1 - - 9346 - - Track ID9346 - NameTrack 35 - ArtistTroy Nelson - AlbumGuitar Aerobics - Hal Leonard - KindAAC audio file - Size2128653 - Total Time77253 - Disc Number1 - Disc Count2 - Track Number35 - Track Count53 - Date Modified2011-07-24T03:35:34Z - Date Added2011-07-24T03:32:38Z - Bit Rate256 - Sample Rate44100 - Normalization3429 - Artwork Count1 - Persistent IDCD49804576199EE5 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-35%20Track%2035.m4a - File Folder Count4 - Library Folder Count1 - - 9348 - - Track ID9348 - NameTrack 36 - ArtistTroy Nelson - AlbumGuitar Aerobics - Hal Leonard - KindAAC audio file - Size2146701 - Total Time77760 - Disc Number1 - Disc Count2 - Track Number36 - Track Count53 - Date Modified2011-07-24T03:35:34Z - Date Added2011-07-24T03:32:42Z - Bit Rate256 - Sample Rate44100 - Normalization3871 - Artwork Count1 - Persistent ID971C27925F5297D0 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-36%20Track%2036.m4a - File Folder Count4 - Library Folder Count1 - - 9350 - - Track ID9350 - NameTrack 37 - ArtistTroy Nelson - AlbumGuitar Aerobics - Hal Leonard - KindAAC audio file - Size2150956 - Total Time78533 - Disc Number1 - Disc Count2 - Track Number37 - Track Count53 - Date Modified2011-07-24T03:35:34Z - Date Added2011-07-24T03:32:46Z - Bit Rate256 - Sample Rate44100 - Normalization3353 - Artwork Count1 - Persistent IDC822F6BB69DC0AB5 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-37%20Track%2037.m4a - File Folder Count4 - Library Folder Count1 - - 9352 - - Track ID9352 - NameTrack 38 - ArtistTroy Nelson - AlbumGuitar Aerobics - Hal Leonard - KindAAC audio file - Size2104519 - Total Time76746 - Disc Number1 - Disc Count2 - Track Number38 - Track Count53 - Date Modified2011-07-24T03:35:34Z - Date Added2011-07-24T03:32:50Z - Bit Rate256 - Sample Rate44100 - Normalization3280 - Artwork Count1 - Persistent ID86EA1D18AC324F5F - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-38%20Track%2038.m4a - File Folder Count4 - Library Folder Count1 - - 9354 - - Track ID9354 - NameTrack 39 - ArtistTroy Nelson - AlbumGuitar Aerobics - Hal Leonard - KindAAC audio file - Size2127964 - Total Time76746 - Disc Number1 - Disc Count2 - Track Number39 - Track Count53 - Date Modified2011-07-24T03:35:33Z - Date Added2011-07-24T03:32:54Z - Bit Rate256 - Sample Rate44100 - Normalization4015 - Artwork Count1 - Persistent IDD39711717FE488DF - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-39%20Track%2039.m4a - File Folder Count4 - Library Folder Count1 - - 9356 - - Track ID9356 - NameTrack 40 - ArtistTroy Nelson - AlbumGuitar Aerobics - Hal Leonard - KindAAC audio file - Size2370610 - Total Time83480 - Disc Number1 - Disc Count2 - Track Number40 - Track Count53 - Date Modified2011-07-24T03:35:33Z - Date Added2011-07-24T03:32:58Z - Bit Rate256 - Sample Rate44100 - Normalization4234 - Artwork Count1 - Persistent ID7528364170FEE96F - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-40%20Track%2040.m4a - File Folder Count4 - Library Folder Count1 - - 9358 - - Track ID9358 - NameTrack 41 - ArtistTroy Nelson - AlbumGuitar Aerobics - Hal Leonard - KindAAC audio file - Size2420686 - Total Time86160 - Disc Number1 - Disc Count2 - Track Number41 - Track Count53 - Date Modified2011-07-24T03:35:33Z - Date Added2011-07-24T03:33:02Z - Bit Rate256 - Sample Rate44100 - Normalization3829 - Artwork Count1 - Persistent IDE6D7C50DB218757D - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-41%20Track%2041.m4a - File Folder Count4 - Library Folder Count1 - - 9360 - - Track ID9360 - NameTrack 42 - ArtistTroy Nelson - AlbumGuitar Aerobics - Hal Leonard - KindAAC audio file - Size2433994 - Total Time84306 - Disc Number1 - Disc Count2 - Track Number42 - Track Count53 - Date Modified2011-07-24T03:35:33Z - Date Added2011-07-24T03:33:06Z - Bit Rate256 - Sample Rate44100 - Normalization5467 - Artwork Count1 - Persistent ID1006FCA0BBB3996F - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-42%20Track%2042.m4a - File Folder Count4 - Library Folder Count1 - - 9362 - - Track ID9362 - NameTrack 43 - ArtistTroy Nelson - AlbumGuitar Aerobics - Hal Leonard - KindAAC audio file - Size2307864 - Total Time82493 - Disc Number1 - Disc Count2 - Track Number43 - Track Count53 - Date Modified2011-07-24T03:35:33Z - Date Added2011-07-24T03:33:11Z - Bit Rate256 - Sample Rate44100 - Normalization3480 - Artwork Count1 - Persistent ID0A304585C5157DD5 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-43%20Track%2043.m4a - File Folder Count4 - Library Folder Count1 - - 9364 - - Track ID9364 - NameTrack 44 - ArtistTroy Nelson - AlbumGuitar Aerobics - Hal Leonard - KindAAC audio file - Size2343996 - Total Time84240 - Disc Number1 - Disc Count2 - Track Number44 - Track Count53 - Date Modified2011-07-24T03:35:33Z - Date Added2011-07-24T03:33:15Z - Bit Rate256 - Sample Rate44100 - Normalization2270 - Artwork Count1 - Persistent ID9C094C8D8F9DA2A4 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-44%20Track%2044.m4a - File Folder Count4 - Library Folder Count1 - - 9366 - - Track ID9366 - NameTrack 45 - ArtistTroy Nelson - AlbumGuitar Aerobics - Hal Leonard - KindAAC audio file - Size2156361 - Total Time79706 - Disc Number1 - Disc Count2 - Track Number45 - Track Count53 - Date Modified2011-07-24T03:35:33Z - Date Added2011-07-24T03:33:19Z - Bit Rate256 - Sample Rate44100 - Normalization2359 - Artwork Count1 - Persistent ID19A3A88EFBC4038B - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-45%20Track%2045.m4a - File Folder Count4 - Library Folder Count1 - - 9368 - - Track ID9368 - NameTrack 46 - ArtistTroy Nelson - AlbumGuitar Aerobics - Hal Leonard - KindAAC audio file - Size2044478 - Total Time74226 - Disc Number1 - Disc Count2 - Track Number46 - Track Count53 - Date Modified2011-07-24T03:35:32Z - Date Added2011-07-24T03:33:23Z - Bit Rate256 - Sample Rate44100 - Normalization3596 - Artwork Count1 - Persistent ID95F7FE5698EE90EB - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-46%20Track%2046.m4a - File Folder Count4 - Library Folder Count1 - - 9370 - - Track ID9370 - NameTrack 47 - ArtistTroy Nelson - AlbumGuitar Aerobics - Hal Leonard - KindAAC audio file - Size2132219 - Total Time77440 - Disc Number1 - Disc Count2 - Track Number47 - Track Count53 - Date Modified2011-07-24T03:35:32Z - Date Added2011-07-24T03:33:26Z - Bit Rate256 - Sample Rate44100 - Normalization3489 - Artwork Count1 - Persistent ID20BD412D0FE8D95C - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-47%20Track%2047.m4a - File Folder Count4 - Library Folder Count1 - - 9372 - - Track ID9372 - NameTrack 48 - ArtistTroy Nelson - AlbumGuitar Aerobics - Hal Leonard - KindAAC audio file - Size2129941 - Total Time78506 - Disc Number1 - Disc Count2 - Track Number48 - Track Count53 - Date Modified2011-07-24T03:35:32Z - Date Added2011-07-24T03:33:30Z - Bit Rate256 - Sample Rate44100 - Normalization3464 - Artwork Count1 - Persistent ID8CCBAD3024EEC646 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-48%20Track%2048.m4a - File Folder Count4 - Library Folder Count1 - - 9374 - - Track ID9374 - NameTrack 49 - ArtistTroy Nelson - AlbumGuitar Aerobics - Hal Leonard - KindAAC audio file - Size2213254 - Total Time84066 - Disc Number1 - Disc Count2 - Track Number49 - Track Count53 - Date Modified2011-07-24T03:35:32Z - Date Added2011-07-24T03:33:34Z - Bit Rate256 - Sample Rate44100 - Normalization2619 - Artwork Count1 - Persistent IDF390250B9DC00DAE - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-49%20Track%2049.m4a - File Folder Count4 - Library Folder Count1 - - 9376 - - Track ID9376 - NameTrack 50 - ArtistTroy Nelson - AlbumGuitar Aerobics - Hal Leonard - KindAAC audio file - Size2081254 - Total Time79306 - Disc Number1 - Disc Count2 - Track Number50 - Track Count53 - Date Modified2011-07-24T03:35:32Z - Date Added2011-07-24T03:33:38Z - Bit Rate256 - Sample Rate44100 - Normalization3038 - Artwork Count1 - Persistent ID8D73044BCD2ED2CD - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-50%20Track%2050.m4a - File Folder Count4 - Library Folder Count1 - - 9378 - - Track ID9378 - NameTrack 51 - ArtistTroy Nelson - AlbumGuitar Aerobics - Hal Leonard - KindAAC audio file - Size2270938 - Total Time78000 - Disc Number1 - Disc Count2 - Track Number51 - Track Count53 - Date Modified2011-07-24T03:35:32Z - Date Added2011-07-24T03:33:41Z - Bit Rate256 - Sample Rate44100 - Normalization2837 - Artwork Count1 - Persistent IDAC50826BCAB7F280 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-51%20Track%2051.m4a - File Folder Count4 - Library Folder Count1 - - 9380 - - Track ID9380 - NameTrack 52 - ArtistTroy Nelson - AlbumGuitar Aerobics - Hal Leonard - KindAAC audio file - Size2512574 - Total Time87173 - Disc Number1 - Disc Count2 - Track Number52 - Track Count53 - Date Modified2011-07-24T03:35:32Z - Date Added2011-07-24T03:33:45Z - Bit Rate256 - Sample Rate44100 - Normalization3402 - Artwork Count1 - Persistent IDE8D5B77E9135B00D - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-52%20Track%2052.m4a - File Folder Count4 - Library Folder Count1 - - 9382 - - Track ID9382 - NameTrack 53 - ArtistTroy Nelson - AlbumGuitar Aerobics - Hal Leonard - KindAAC audio file - Size1436127 - Total Time52160 - Disc Number1 - Disc Count2 - Track Number53 - Track Count53 - Date Modified2011-07-24T03:35:32Z - Date Added2011-07-24T03:33:49Z - Bit Rate256 - Sample Rate44100 - Normalization1141 - Artwork Count1 - Persistent ID463C434EEA8B7F42 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Troy%20Nelson/Guitar%20Aerobics%20-%20Hal%20Leonard/1-53%20Track%2053.m4a - File Folder Count4 - Library Folder Count1 - - 9396 - - Track ID9396 - NameLa Femme D'argent - ArtistAir - Album ArtistAir - ComposerNicolas Godin - AlbumMoon Safari - GenreDance & DJ - KindMPEG audio file - Size12363750 - Total Time430550 - Disc Number1 - Disc Count1 - Track Number1 - Track Count10 - Year2006 - Date Modified2011-09-15T16:16:10Z - Date Added2011-09-16T01:08:18Z - Bit Rate225 - Sample Rate44100 - CommentsAmazon.com Song ID: 201982125 - Play Count5 - Play Date3471276580 - Play Date UTC2013-12-30T13:59:40Z - Artwork Count1 - Persistent ID05BD2CB7213F0849 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Air/Moon%20Safari/01%20La%20Femme%20D'argent.mp3 - File Folder Count4 - Library Folder Count1 - - 9398 - - Track ID9398 - NameSexy Boy - ArtistAir - Album ArtistAir - ComposerNicolas Godin - AlbumMoon Safari - GenreDance & DJ - KindMPEG audio file - Size8342266 - Total Time298527 - Disc Number1 - Disc Count1 - Track Number2 - Track Count10 - Year2006 - Date Modified2011-09-15T18:52:41Z - Date Added2011-09-16T01:08:18Z - Bit Rate218 - Sample Rate44100 - CommentsAmazon.com Song ID: 201982126 - Play Count3 - Play Date3484891249 - Play Date UTC2014-06-06T03:50:49Z - Skip Count1 - Skip Date2013-07-22T11:16:26Z - Artwork Count1 - Persistent ID3EC6DF3F2D747572 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Air/Moon%20Safari/02%20Sexy%20Boy.mp3 - File Folder Count4 - Library Folder Count1 - - 9400 - - Track ID9400 - NameAll I Need - ArtistAir - Beth Hirsch - Album ArtistAir - ComposerNicolas Godin - AlbumMoon Safari - GenreDance & DJ - KindMPEG audio file - Size7466854 - Total Time268355 - Disc Number1 - Disc Count1 - Track Number3 - Track Count10 - Year2006 - Date Modified2011-09-15T18:24:53Z - Date Added2011-09-16T01:08:18Z - Bit Rate216 - Sample Rate44100 - CommentsAmazon.com Song ID: 201982127 - Play Count1 - Play Date3399090487 - Play Date UTC2011-09-17T02:18:07Z - Artwork Count1 - Persistent ID40FA98C4F454D39E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Air/Moon%20Safari/03%20All%20I%20Need.mp3 - File Folder Count4 - Library Folder Count1 - - 9402 - - Track ID9402 - NameKelly Watch The Stars - ArtistAir - Album ArtistAir - ComposerNicolas Godin - AlbumMoon Safari - GenreDance & DJ - KindMPEG audio file - Size6292318 - Total Time225488 - Disc Number1 - Disc Count1 - Track Number4 - Track Count10 - Year2006 - Date Modified2011-09-15T16:37:40Z - Date Added2011-09-16T01:08:18Z - Bit Rate215 - Sample Rate44100 - CommentsAmazon.com Song ID: 201982128 - Play Count1 - Play Date3427120325 - Play Date UTC2012-08-06T12:22:05Z - Skip Count2 - Skip Date2013-07-22T11:17:11Z - Artwork Count1 - Persistent IDDFA682AE841CDFFA - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Air/Moon%20Safari/04%20Kelly%20Watch%20The%20Stars.mp3 - File Folder Count4 - Library Folder Count1 - - 9404 - - Track ID9404 - NameTalisman - ArtistAir - Album ArtistAir - ComposerNicolas Godin - AlbumMoon Safari - GenreDance & DJ - KindMPEG audio file - Size7628695 - Total Time256757 - Disc Number1 - Disc Count1 - Track Number5 - Track Count10 - Year2006 - Date Modified2011-09-15T17:03:38Z - Date Added2011-09-16T01:08:19Z - Bit Rate231 - Sample Rate44100 - CommentsAmazon.com Song ID: 201982129 - Play Count4 - Play Date3457356688 - Play Date UTC2013-07-22T11:21:28Z - Skip Count1 - Skip Date2013-03-29T12:13:56Z - Artwork Count1 - Persistent IDCDF90CCD5C0DFE97 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Air/Moon%20Safari/05%20Talisman.mp3 - File Folder Count4 - Library Folder Count1 - - 9406 - - Track ID9406 - NameRemember - ArtistAir - Album ArtistAir - ComposerJean Jacques Perey - AlbumMoon Safari - GenreDance & DJ - KindMPEG audio file - Size4499909 - Total Time154357 - Disc Number1 - Disc Count1 - Track Number6 - Track Count10 - Year2006 - Date Modified2011-09-15T15:31:52Z - Date Added2011-09-16T01:08:19Z - Bit Rate222 - Sample Rate44100 - CommentsAmazon.com Song ID: 201982130 - Play Count1 - Play Date3457356843 - Play Date UTC2013-07-22T11:24:03Z - Skip Count1 - Skip Date2013-03-29T12:14:00Z - Artwork Count1 - Persistent ID1A307B38420B4135 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Air/Moon%20Safari/06%20-%20Remember.mp3 - File Folder Count4 - Library Folder Count1 - - 9408 - - Track ID9408 - NameYou Make It Easy - ArtistAir - Beth Hirsch - Album ArtistAir - ComposerNicolas Godin - AlbumMoon Safari - GenreDance & DJ - KindMPEG audio file - Size7630037 - Total Time241580 - Disc Number1 - Disc Count1 - Track Number7 - Track Count10 - Year2006 - Date Modified2011-09-15T14:37:36Z - Date Added2011-09-16T01:08:19Z - Bit Rate245 - Sample Rate44100 - CommentsAmazon.com Song ID: 201982131 - Play Count2 - Play Date3457357084 - Play Date UTC2013-07-22T11:28:04Z - Artwork Count1 - Persistent ID0BDC77EC247F269E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Air/Moon%20Safari/07%20You%20Make%20It%20Easy.mp3 - File Folder Count4 - Library Folder Count1 - - 9410 - - Track ID9410 - NameCe Matin-Là - ArtistAir - Album ArtistAir - ComposerNicolas Godin - AlbumMoon Safari - GenreDance & DJ - KindMPEG audio file - Size6507612 - Total Time219088 - Disc Number1 - Disc Count1 - Track Number8 - Track Count10 - Year2006 - Date Modified2011-09-15T17:30:34Z - Date Added2011-09-16T01:08:20Z - Bit Rate230 - Sample Rate44100 - CommentsAmazon.com Song ID: 201982132 - Play Count2 - Play Date3457357303 - Play Date UTC2013-07-22T11:31:43Z - Artwork Count1 - Persistent ID9BF9628DFA432F0C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Air/Moon%20Safari/08%20-%20Ce%20Matin-La%CC%80.mp3 - File Folder Count4 - Library Folder Count1 - - 9412 - - Track ID9412 - NameNew Star In The Sky - ArtistAir - Album ArtistAir - ComposerNicolas Godin - AlbumMoon Safari - GenreDance & DJ - KindMPEG audio file - Size9374135 - Total Time340662 - Disc Number1 - Disc Count1 - Track Number9 - Track Count10 - Year2006 - Date Modified2011-09-15T18:07:28Z - Date Added2011-09-16T01:08:20Z - Bit Rate215 - Sample Rate44100 - CommentsAmazon.com Song ID: 201982133 - Play Count2 - Play Date3457357644 - Play Date UTC2013-07-22T11:37:24Z - Artwork Count1 - Persistent ID34AE2DF506127A8D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Air/Moon%20Safari/09%20-%20New%20Star%20In%20The%20Sky.mp3 - File Folder Count4 - Library Folder Count1 - - 9414 - - Track ID9414 - NameLe Voyage De Pénélope - ArtistAir - Album ArtistAir - ComposerNicolas Godin - AlbumMoon Safari - GenreDance & DJ - KindMPEG audio file - Size5727315 - Total Time190928 - Disc Number1 - Disc Count1 - Track Number10 - Track Count10 - Year2006 - Date Modified2011-09-15T15:15:36Z - Date Added2011-09-16T01:08:20Z - Bit Rate231 - Sample Rate44100 - CommentsAmazon.com Song ID: 201982134 - Play Count1 - Play Date3457357835 - Play Date UTC2013-07-22T11:40:35Z - Skip Count1 - Skip Date2013-07-25T07:02:47Z - Artwork Count1 - Persistent ID254C1CF84F3E5A0B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Air/Moon%20Safari/10%20-%20Le%20Voyage%20De%20Pe%CC%81ne%CC%81lope.mp3 - File Folder Count4 - Library Folder Count1 - - 9416 - - Track ID9416 - NameRickover's Dream - ArtistMichael Hedges - Album ArtistMichael Hedges - ComposerMichael Hedges - AlbumBeyond Boundaries: Guitar Solos - GenreNew Age - KindMPEG audio file - Size9113846 - Total Time291787 - Disc Number1 - Disc Count1 - Track Number1 - Track Count19 - Year2001 - Date Modified2011-09-15T20:22:41Z - Date Added2011-09-16T01:08:20Z - Bit Rate245 - Sample Rate44100 - CommentsAmazon.com Song ID: 204374233 - Play Count3 - Play Date3460394796 - Play Date UTC2013-08-26T15:16:36Z - Artwork Count1 - Persistent ID74408C8B40DA316C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Michael%20Hedges/Beyond%20Boundaries_%20Guitar%20Solos/01%20Rickover's%20Dream.mp3 - File Folder Count4 - Library Folder Count1 - - 9418 - - Track ID9418 - NameAerial Boundaries - ArtistMichael Hedges - Album ArtistMichael Hedges - ComposerMichael Hedges - AlbumBeyond Boundaries: Guitar Solos - GenreNew Age - KindMPEG audio file - Size8668130 - Total Time283480 - Disc Number1 - Disc Count1 - Track Number2 - Track Count19 - Year2001 - Date Modified2011-09-15T22:31:23Z - Date Added2011-09-16T01:08:21Z - Bit Rate240 - Sample Rate44100 - CommentsAmazon.com Song ID: 204374234 - Play Count2 - Play Date3460395079 - Play Date UTC2013-08-26T15:21:19Z - Artwork Count1 - Persistent ID62174FF1162C880E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Michael%20Hedges/Beyond%20Boundaries_%20Guitar%20Solos/02%20Aerial%20Boundaries.mp3 - File Folder Count4 - Library Folder Count1 - - 9420 - - Track ID9420 - NameEleven Small Roaches - ArtistMichael Hedges - Album ArtistMichael Hedges - ComposerMichael Hedges - AlbumBeyond Boundaries: Guitar Solos - GenreNew Age - KindMPEG audio file - Size5702239 - Total Time183640 - Disc Number1 - Disc Count1 - Track Number3 - Track Count19 - Year2001 - Date Modified2011-09-15T22:45:49Z - Date Added2011-09-16T01:08:21Z - Bit Rate241 - Sample Rate44100 - CommentsAmazon.com Song ID: 204374226 - Play Count2 - Play Date3460395263 - Play Date UTC2013-08-26T15:24:23Z - Artwork Count1 - Persistent IDC7644CD1C955C14E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Michael%20Hedges/Beyond%20Boundaries_%20Guitar%20Solos/03%20Eleven%20Small%20Roaches.mp3 - File Folder Count4 - Library Folder Count1 - - 9422 - - Track ID9422 - NameRagamuffin - ArtistMichael Hedges - Album ArtistMichael Hedges - ComposerMichael Hedges - AlbumBeyond Boundaries: Guitar Solos - GenreNew Age - KindMPEG audio file - Size6178320 - Total Time195657 - Disc Number1 - Disc Count1 - Track Number4 - Track Count19 - Year2001 - Date Modified2011-09-15T19:54:22Z - Date Added2011-09-16T01:08:21Z - Bit Rate246 - Sample Rate44100 - CommentsAmazon.com Song ID: 204374219 - Play Count2 - Play Date3460395458 - Play Date UTC2013-08-26T15:27:38Z - Artwork Count1 - Persistent IDE16D1B95E493F5C5 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Michael%20Hedges/Beyond%20Boundaries_%20Guitar%20Solos/04%20Ragamuffin.mp3 - File Folder Count4 - Library Folder Count1 - - 9424 - - Track ID9424 - NameRitual Dance - ArtistMichael Hedges - Album ArtistMichael Hedges - ComposerMichael Hedges - AlbumBeyond Boundaries: Guitar Solos - GenreNew Age - KindMPEG audio file - Size4616299 - Total Time141035 - Disc Number1 - Disc Count1 - Track Number5 - Track Count19 - Year2001 - Date Modified2011-09-15T23:31:40Z - Date Added2011-09-16T01:08:21Z - Bit Rate252 - Sample Rate44100 - CommentsAmazon.com Song ID: 204374237 - Play Count2 - Play Date3460395599 - Play Date UTC2013-08-26T15:29:59Z - Artwork Count1 - Persistent ID3DD73074DB9EF86D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Michael%20Hedges/Beyond%20Boundaries_%20Guitar%20Solos/05%20Ritual%20Dance.mp3 - File Folder Count4 - Library Folder Count1 - - 9426 - - Track ID9426 - NameChava's Song - ArtistMichael Hedges - Album ArtistMichael Hedges - ComposerMichael Hedges - AlbumBeyond Boundaries: Guitar Solos - GenreNew Age - KindMPEG audio file - Size6311686 - Total Time199523 - Disc Number1 - Disc Count1 - Track Number6 - Track Count19 - Year2001 - Date Modified2011-09-15T21:46:51Z - Date Added2011-09-16T01:08:21Z - Bit Rate246 - Sample Rate44100 - CommentsAmazon.com Song ID: 204374222 - Play Count2 - Play Date3460395799 - Play Date UTC2013-08-26T15:33:19Z - Artwork Count1 - Persistent ID4B7BC773C23DB909 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Michael%20Hedges/Beyond%20Boundaries_%20Guitar%20Solos/06%20Chava's%20Song.mp3 - File Folder Count4 - Library Folder Count1 - - 9428 - - Track ID9428 - NameThe Double Planet - ArtistMichael Hedges - Album ArtistMichael Hedges - ComposerMichael Hedges - AlbumBeyond Boundaries: Guitar Solos - GenreNew Age - KindMPEG audio file - Size6392773 - Total Time205191 - Disc Number1 - Disc Count1 - Track Number7 - Track Count19 - Year2001 - Date Modified2011-09-15T21:28:22Z - Date Added2011-09-16T01:08:22Z - Bit Rate243 - Sample Rate44100 - CommentsAmazon.com Song ID: 204374231 - Play Count3 - Play Date3460396004 - Play Date UTC2013-08-26T15:36:44Z - Artwork Count1 - Sort NameDouble Planet - Persistent IDE8674AED89F7AB84 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Michael%20Hedges/Beyond%20Boundaries_%20Guitar%20Solos/07%20The%20Double%20Planet.mp3 - File Folder Count4 - Library Folder Count1 - - 9430 - - Track ID9430 - NameJitterboogie - ArtistMichael Hedges - Album ArtistMichael Hedges - ComposerMichael Hedges - AlbumBeyond Boundaries: Guitar Solos - GenreNew Age - KindMPEG audio file - Size5260090 - Total Time160809 - Disc Number1 - Disc Count1 - Track Number8 - Track Count19 - Year2001 - Date Modified2011-09-16T00:32:17Z - Date Added2011-09-16T01:08:22Z - Bit Rate253 - Sample Rate44100 - CommentsAmazon.com Song ID: 204374229 - Play Count1 - Play Date3399225643 - Play Date UTC2011-09-18T15:50:43Z - Artwork Count1 - Persistent IDF5E53F7607A08EEB - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Michael%20Hedges/Beyond%20Boundaries_%20Guitar%20Solos/08%20Jitterboogie.mp3 - File Folder Count4 - Library Folder Count1 - - 9432 - - Track ID9432 - NameJava Man - ArtistMichael Hedges - Album ArtistMichael Hedges - ComposerMichael Hedges - AlbumBeyond Boundaries: Guitar Solos - GenreNew Age - KindMPEG audio file - Size7127226 - Total Time226324 - Disc Number1 - Disc Count1 - Track Number9 - Track Count19 - Year2001 - Date Modified2011-09-15T19:25:58Z - Date Added2011-09-16T01:08:22Z - Bit Rate246 - Sample Rate44100 - CommentsAmazon.com Song ID: 204374223 - Play Count1 - Play Date3399225869 - Play Date UTC2011-09-18T15:54:29Z - Artwork Count1 - Persistent ID328EDB49938F8410 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Michael%20Hedges/Beyond%20Boundaries_%20Guitar%20Solos/09%20Java%20Man.mp3 - File Folder Count4 - Library Folder Count1 - - 9434 - - Track ID9434 - NameBensusan - ArtistMichael Hedges - Album ArtistMichael Hedges - ComposerMichael Hedges - AlbumBeyond Boundaries: Guitar Solos - GenreNew Age - KindMPEG audio file - Size4904231 - Total Time153704 - Disc Number1 - Disc Count1 - Track Number10 - Track Count19 - Year2001 - Date Modified2011-09-15T22:00:45Z - Date Added2011-09-16T01:08:22Z - Bit Rate247 - Sample Rate44100 - CommentsAmazon.com Song ID: 204374235 - Play Count1 - Play Date3399226023 - Play Date UTC2011-09-18T15:57:03Z - Artwork Count1 - Persistent ID1C4D05C947FFD82D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Michael%20Hedges/Beyond%20Boundaries_%20Guitar%20Solos/10%20Bensusan.mp3 - File Folder Count4 - Library Folder Count1 - - 9436 - - Track ID9436 - NameBecause It's There - ArtistMichael Hedges - Album ArtistMichael Hedges - ComposerMichael Hedges - AlbumBeyond Boundaries: Guitar Solos - GenreNew Age - KindMPEG audio file - Size5789017 - Total Time185208 - Disc Number1 - Disc Count1 - Track Number11 - Track Count19 - Year2001 - Date Modified2011-09-15T19:08:58Z - Date Added2011-09-16T01:08:22Z - Bit Rate243 - Sample Rate44100 - CommentsAmazon.com Song ID: 204374221 - Play Count1 - Play Date3399226208 - Play Date UTC2011-09-18T16:00:08Z - Artwork Count1 - Persistent ID87305B7A612A8F08 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Michael%20Hedges/Beyond%20Boundaries_%20Guitar%20Solos/11%20Because%20It's%20There.mp3 - File Folder Count4 - Library Folder Count1 - - 9438 - - Track ID9438 - NameThe Unexpected Visitor - ArtistMichael Hedges - Album ArtistMichael Hedges - ComposerMichael Hedges - AlbumBeyond Boundaries: Guitar Solos - GenreNew Age - KindMPEG audio file - Size5245770 - Total Time167836 - Disc Number1 - Disc Count1 - Track Number12 - Track Count19 - Year2001 - Date Modified2011-09-16T00:12:42Z - Date Added2011-09-16T01:08:22Z - Bit Rate242 - Sample Rate44100 - CommentsAmazon.com Song ID: 204374224 - Play Count1 - Play Date3399226375 - Play Date UTC2011-09-18T16:02:55Z - Artwork Count1 - Sort NameUnexpected Visitor - Persistent ID3ECEF77336EB8491 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Michael%20Hedges/Beyond%20Boundaries_%20Guitar%20Solos/12%20The%20Unexpected%20Visitor.mp3 - File Folder Count4 - Library Folder Count1 - - 9440 - - Track ID9440 - NameThe 2nd Law - ArtistMichael Hedges - Album ArtistMichael Hedges - ComposerMichael Hedges - AlbumBeyond Boundaries: Guitar Solos - GenreNew Age - KindMPEG audio file - Size5919222 - Total Time187585 - Disc Number1 - Disc Count1 - Track Number13 - Track Count19 - Year2001 - Date Modified2011-09-16T00:27:21Z - Date Added2011-09-16T01:08:22Z - Bit Rate245 - Sample Rate44100 - CommentsAmazon.com Song ID: 204374228 - Play Count1 - Play Date3399226563 - Play Date UTC2011-09-18T16:06:03Z - Artwork Count1 - Sort Name2nd Law - Persistent IDC6C3186303429034 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Michael%20Hedges/Beyond%20Boundaries_%20Guitar%20Solos/13%20The%202nd%20Law.mp3 - File Folder Count4 - Library Folder Count1 - - 9442 - - Track ID9442 - NameBaal T'shuvah - ArtistMichael Hedges - Album ArtistMichael Hedges - ComposerMichael Hedges - AlbumBeyond Boundaries: Guitar Solos - GenreNew Age - KindMPEG audio file - Size4258817 - Total Time133459 - Disc Number1 - Disc Count1 - Track Number14 - Track Count19 - Year2001 - Date Modified2011-09-15T20:36:34Z - Date Added2011-09-16T01:08:23Z - Bit Rate245 - Sample Rate44100 - CommentsAmazon.com Song ID: 204374232 - Play Count1 - Play Date3399226696 - Play Date UTC2011-09-18T16:08:16Z - Artwork Count1 - Persistent ID9C4EFCD92C39476E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Michael%20Hedges/Beyond%20Boundaries_%20Guitar%20Solos/14%20Baal%20T'shuvah.mp3 - File Folder Count4 - Library Folder Count1 - - 9444 - - Track ID9444 - NameThe Funky Avocado - ArtistMichael Hedges - Album ArtistMichael Hedges - ComposerMichael Hedges - AlbumBeyond Boundaries: Guitar Solos - GenreNew Age - KindMPEG audio file - Size6387788 - Total Time202448 - Disc Number1 - Disc Count1 - Track Number15 - Track Count19 - Year2001 - Date Modified2011-09-15T21:10:44Z - Date Added2011-09-16T01:08:23Z - Bit Rate246 - Sample Rate44100 - CommentsAmazon.com Song ID: 204374230 - Play Count1 - Play Date3399468013 - Play Date UTC2011-09-21T11:10:13Z - Artwork Count1 - Sort NameFunky Avocado - Persistent ID79547EFCA7C1577A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Michael%20Hedges/Beyond%20Boundaries_%20Guitar%20Solos/15%20The%20Funky%20Avocado.mp3 - File Folder Count4 - Library Folder Count1 - - 9446 - - Track ID9446 - NameDream Beach - ArtistMichael Hedges - Album ArtistMichael Hedges - ComposerMichael Hedges - AlbumBeyond Boundaries: Guitar Solos - GenreNew Age - KindMPEG audio file - Size7300421 - Total Time234840 - Disc Number1 - Disc Count1 - Track Number16 - Track Count19 - Year2001 - Date Modified2011-09-15T23:57:17Z - Date Added2011-09-16T01:08:23Z - Bit Rate243 - Sample Rate44100 - CommentsAmazon.com Song ID: 204374227 - Artwork Count1 - Persistent ID67ECC42672E3063D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Michael%20Hedges/Beyond%20Boundaries_%20Guitar%20Solos/16%20Dream%20Beach.mp3 - File Folder Count4 - Library Folder Count1 - - 9448 - - Track ID9448 - NameGospel - ArtistMichael Hedges - Album ArtistMichael Hedges - ComposerMichael Hedges - AlbumBeyond Boundaries: Guitar Solos - GenreNew Age - KindMPEG audio file - Size6971848 - Total Time219350 - Disc Number1 - Disc Count1 - Track Number17 - Track Count19 - Year2001 - Date Modified2011-09-15T23:15:13Z - Date Added2011-09-16T01:08:23Z - Bit Rate248 - Sample Rate44100 - CommentsAmazon.com Song ID: 204374220 - Artwork Count1 - Persistent IDE08BFBCAA8FDDD56 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Michael%20Hedges/Beyond%20Boundaries_%20Guitar%20Solos/17%20Gospel.mp3 - File Folder Count4 - Library Folder Count1 - - 9450 - - Track ID9450 - NameSofa No. 1 - ArtistMichael Hedges - Album ArtistMichael Hedges - ComposerFrank Zappa - AlbumBeyond Boundaries: Guitar Solos - GenreNew Age - KindMPEG audio file - Size5614689 - Total Time175307 - Disc Number1 - Disc Count1 - Track Number18 - Track Count19 - Year2001 - Date Modified2011-09-15T20:52:57Z - Date Added2011-09-16T01:08:23Z - Bit Rate249 - Sample Rate44100 - CommentsAmazon.com Song ID: 204374236 - Artwork Count1 - Persistent IDA4B19FF8495A3DC1 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Michael%20Hedges/Beyond%20Boundaries_%20Guitar%20Solos/18%20Sofa%20No.%201.mp3 - File Folder Count4 - Library Folder Count1 - - 9452 - - Track ID9452 - NameRickover's Dream - ArtistMichael Hedges - Album ArtistMichael Hedges - ComposerMichael Hedges - AlbumBeyond Boundaries: Guitar Solos - GenreNew Age - KindMPEG audio file - Size10786513 - Total Time341681 - Disc Number1 - Disc Count1 - Track Number19 - Track Count19 - Year2001 - Date Modified2011-09-15T19:51:11Z - Date Added2011-09-16T01:08:23Z - Bit Rate248 - Sample Rate44100 - CommentsAmazon.com Song ID: 204374225 - Artwork Count1 - Persistent IDD9E927DFA0F2FADD - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Michael%20Hedges/Beyond%20Boundaries_%20Guitar%20Solos/19%20Rickover's%20Dream.mp3 - File Folder Count4 - Library Folder Count1 - - 9458 - - Track ID9458 - NameLove Me - ArtistThe Little Willies - ComposerMike Stoller/Jerry Leiber - Album...Featuring Norah Jones - GenrePop - KindAAC audio file - Size9210253 - Total Time233373 - Disc Number1 - Disc Count1 - Track Number1 - Track Count18 - Year2010 - Date Modified2011-10-08T11:50:30Z - Date Added2011-10-08T11:30:30Z - Bit Rate256 - Sample Rate44100 - Normalization2486 - Artwork Count1 - Sort ArtistLittle Willies - Persistent ID4EC106ABD8B5F54D - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Little%20Willies/_..Featuring%20Norah%20Jones/01%20Love%20Me.m4a - File Folder Count4 - Library Folder Count1 - - 9460 - - Track ID9460 - NameVirginia Moon - ArtistFoo Fighters Feat. Norah Jones - ComposerTaylor Hawkins & The Coattail Riders/Dave Grohl/Nate Mendel/Christopher A. Shiflett - Album...Featuring Norah Jones - GenrePop - KindAAC audio file - Size8569288 - Total Time231613 - Disc Number1 - Disc Count1 - Track Number2 - Track Count18 - Year2010 - Date Modified2011-10-08T11:50:29Z - Date Added2011-10-08T11:31:13Z - Bit Rate256 - Sample Rate44100 - Normalization1658 - Artwork Count1 - Persistent ID84417EC6979FECF3 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Foo%20Fighters%20Feat.%20Norah%20Jones/_..Featuring%20Norah%20Jones/02%20Virginia%20Moon.m4a - File Folder Count4 - Library Folder Count1 - - 9462 - - Track ID9462 - NameTurn Them - ArtistSean Bones Feat. Norah Jones - ComposerSean Bones - Album...Featuring Norah Jones - GenrePop - KindAAC audio file - Size8967240 - Total Time245786 - Disc Number1 - Disc Count1 - Track Number3 - Track Count18 - Year2010 - Date Modified2011-10-08T11:50:29Z - Date Added2011-10-08T11:31:53Z - Bit Rate256 - Sample Rate44100 - Normalization2687 - Artwork Count1 - Persistent IDD846A71595C0B698 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Sean%20Bones%20Feat.%20Norah%20Jones/_..Featuring%20Norah%20Jones/03%20Turn%20Them.m4a - File Folder Count4 - Library Folder Count1 - - 9464 - - Track ID9464 - NameBaby It's Cold Outside - ArtistWillie Nelson Feat. Norah Jones - ComposerFrank Loesser - Album...Featuring Norah Jones - GenrePop - KindAAC audio file - Size8579107 - Total Time240640 - Disc Number1 - Disc Count1 - Track Number4 - Track Count18 - Year2010 - Date Modified2011-10-08T11:50:29Z - Date Added2011-10-08T11:32:30Z - Bit Rate256 - Sample Rate44100 - Normalization1419 - Artwork Count1 - Persistent ID0E14502DF98A216E - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Willie%20Nelson%20Feat.%20Norah%20Jones/_..Featuring%20Norah%20Jones/04%20Baby%20It's%20Cold%20Outside.m4a - File Folder Count4 - Library Folder Count1 - - 9466 - - Track ID9466 - NameBull Rider - ArtistNorah Jones & Sasha Dobson - ComposerRodney Crowell - Album...Featuring Norah Jones - GenrePop - KindAAC audio file - Size6560085 - Total Time178253 - Disc Number1 - Disc Count1 - Track Number5 - Track Count18 - Year2010 - Date Modified2011-10-08T11:50:28Z - Date Added2011-10-08T11:33:05Z - Bit Rate256 - Sample Rate44100 - Normalization2170 - Artwork Count1 - Persistent IDFFB675BE160ABDF3 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Norah%20Jones%20&%20Sasha%20Dobson/_..Featuring%20Norah%20Jones/05%20Bull%20Rider.m4a - File Folder Count4 - Library Folder Count1 - - 9468 - - Track ID9468 - NameRuler Of My Heart - ArtistDirty Dozen Brass Band Feat. Norah Jones - ComposerNaomi Neville - Album...Featuring Norah Jones - GenrePop - KindAAC audio file - Size6599660 - Total Time180093 - Disc Number1 - Disc Count1 - Track Number6 - Track Count18 - Year2010 - Date Modified2011-10-08T11:50:28Z - Date Added2011-10-08T11:33:30Z - Bit Rate256 - Sample Rate44100 - Normalization1653 - Artwork Count1 - Persistent ID5811A1D0E46D8A0F - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Dirty%20Dozen%20Brass%20Band%20Feat.%20Norah%20Jones/_..Featuring%20Norah%20Jones/06%20Ruler%20Of%20My%20Heart.m4a - File Folder Count4 - Library Folder Count1 - - 9470 - - Track ID9470 - NameThe Best Part - ArtistEl Madmo - ComposerAndrew Borger/Norah Jones/Daru Oda - Album...Featuring Norah Jones - GenrePop - KindAAC audio file - Size7358716 - Total Time205213 - Disc Number1 - Disc Count1 - Track Number7 - Track Count18 - Year2010 - Date Modified2011-10-08T11:50:28Z - Date Added2011-10-08T11:33:54Z - Bit Rate256 - Sample Rate44100 - Normalization1603 - Artwork Count1 - Sort NameBest Part - Persistent ID836E55CA21179BA7 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/El%20Madmo/_..Featuring%20Norah%20Jones/07%20The%20Best%20Part.m4a - File Folder Count4 - Library Folder Count1 - - 9472 - - Track ID9472 - NameTake Off Your Cool - ArtistOutKast Feat. Norah Jones - ComposerAndré Benjamin - Album...Featuring Norah Jones - GenrePop - KindAAC audio file - Size5870588 - Total Time158573 - Disc Number1 - Disc Count1 - Track Number8 - Track Count18 - Year2010 - Date Modified2011-10-08T11:50:27Z - Date Added2011-10-08T11:34:20Z - Bit Rate256 - Sample Rate44100 - Normalization1173 - Artwork Count1 - Persistent IDC54F5591FC82C840 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/OutKast%20Feat.%20Norah%20Jones/_..Featuring%20Norah%20Jones/08%20Take%20Off%20Your%20Cool.m4a - File Folder Count4 - Library Folder Count1 - - 9474 - - Track ID9474 - NameLife Is Better - ArtistQ-Tip Feat. Norah Jones - ComposerRobert Glasper/Kamaal Fareed - Album...Featuring Norah Jones - GenrePop - KindAAC audio file - Size9496970 - Total Time266826 - Disc Number1 - Disc Count1 - Track Number9 - Track Count18 - Year2010 - Date Modified2011-10-08T11:50:27Z - Date Added2011-10-08T11:34:39Z - Bit Rate256 - Sample Rate44100 - Normalization1491 - Artwork Count1 - Persistent ID8CC528AA210B6972 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Q-Tip%20Feat.%20Norah%20Jones/_..Featuring%20Norah%20Jones/09%20Life%20Is%20Better.m4a - File Folder Count4 - Library Folder Count1 - - 9476 - - Track ID9476 - NameSoon The New Day - ArtistTalib Kweli Feat. Norah Jones - ComposerPaul Charles/John Mason/Talib Kweli Greene/Otis Jackson Jr - Album...Featuring Norah Jones - GenrePop - KindAAC audio file - Size8698817 - Total Time244333 - Disc Number1 - Disc Count1 - Track Number10 - Track Count18 - Year2010 - Date Modified2011-10-08T11:50:27Z - Date Added2011-10-08T11:35:10Z - Bit Rate256 - Sample Rate44100 - Normalization1756 - Artwork Count1 - Persistent ID55F933C8F92C3979 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Talib%20Kweli%20Feat.%20Norah%20Jones/_..Featuring%20Norah%20Jones/10%20Soon%20The%20New%20Day.m4a - File Folder Count4 - Library Folder Count1 - - 9478 - - Track ID9478 - NameLittle Lou, Prophet Jack, Ugly John - ArtistBelle & Sebastian Feat. Norah Jones - ComposerChris Geddes/Sarah Martin/Bobby Kildea/Stuart Murdoch/Stevie Jackson/Richard Colburn/Mick Cooke - Album...Featuring Norah Jones - GenrePop - KindAAC audio file - Size9490293 - Total Time265386 - Disc Number1 - Disc Count1 - Track Number11 - Track Count18 - Year2010 - Date Modified2011-10-08T11:50:27Z - Date Added2011-10-08T11:35:38Z - Bit Rate256 - Sample Rate44100 - Skip Count2 - Skip Date2014-06-05T15:50:37Z - Normalization2202 - Artwork Count1 - Persistent IDD913E723444EA60F - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Belle%20&%20Sebastian%20Feat.%20Norah%20Jones/_..Featuring%20Norah%20Jones/11%20Little%20Lou,%20Prophet%20Jack,%20Ugly%20John.m4a - File Folder Count4 - Library Folder Count1 - - 9480 - - Track ID9480 - NameHere We Go Again - ArtistRay Charles Feat. Norah Jones - ComposerDon Lanier/Russell Steagall - Album...Featuring Norah Jones - GenrePop - KindAAC audio file - Size8836829 - Total Time237986 - Disc Number1 - Disc Count1 - Track Number12 - Track Count18 - Year2010 - Date Modified2011-10-08T11:50:26Z - Date Added2011-10-08T11:36:06Z - Bit Rate256 - Sample Rate44100 - Normalization1475 - Artwork Count1 - Persistent ID25449763E11D51CC - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ray%20Charles%20Feat.%20Norah%20Jones/_..Featuring%20Norah%20Jones/12%20Here%20We%20Go%20Again.m4a - File Folder Count4 - Library Folder Count1 - - 9482 - - Track ID9482 - NameLoretta - ArtistNorah Jones Feat. Gillian Welch & David Rawlings - ComposerTownes Van Zandt - Album...Featuring Norah Jones - GenrePop - KindAAC audio file - Size7289167 - Total Time202573 - Disc Number1 - Disc Count1 - Track Number13 - Track Count18 - Year2010 - Date Modified2011-10-08T11:50:26Z - Date Added2011-10-08T11:36:31Z - Bit Rate256 - Sample Rate44100 - Normalization2121 - Artwork Count1 - Persistent ID613CCF59A93B59EF - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Norah%20Jones%20Feat.%20Gillian%20Welch%20&%20David%20Rawlings/_..Featuring%20Norah%20Jones/13%20Loretta.m4a - File Folder Count4 - Library Folder Count1 - - 9484 - - Track ID9484 - NameDear John - ArtistRyan Adams Feat. Norah Jones - ComposerRyan Adams/Norah Jones - Album...Featuring Norah Jones - GenrePop - KindAAC audio file - Size9805646 - Total Time276840 - Disc Number1 - Disc Count1 - Track Number14 - Track Count18 - Year2010 - Date Modified2011-10-08T11:50:26Z - Date Added2011-10-08T11:36:52Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3400956522 - Play Date UTC2011-10-08T16:38:42Z - Normalization2326 - Artwork Count1 - Persistent ID20231B1D40D27906 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Ryan%20Adams%20Feat.%20Norah%20Jones/_..Featuring%20Norah%20Jones/14%20Dear%20John.m4a - File Folder Count4 - Library Folder Count1 - - 9486 - - Track ID9486 - NameCreepin' In - ArtistNorah Jones Feat. Dolly Parton - ComposerLee Alexander - Album...Featuring Norah Jones - GenrePop - KindAAC audio file - Size6631809 - Total Time183840 - Disc Number1 - Disc Count1 - Track Number15 - Track Count18 - Year2010 - Date Modified2011-10-08T11:50:26Z - Date Added2011-10-08T11:37:19Z - Bit Rate256 - Sample Rate44100 - Normalization2050 - Artwork Count1 - Persistent ID135517BE59FAFF2F - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Norah%20Jones%20Feat.%20Dolly%20Parton/_..Featuring%20Norah%20Jones/15%20Creepin'%20In.m4a - File Folder Count4 - Library Folder Count1 - - 9488 - - Track ID9488 - NameCourt & Spark - ArtistHerbie Hancock Feat. Norah Jones - ComposerJoni Mitchell - Album...Featuring Norah Jones - GenrePop - KindAAC audio file - Size15924595 - Total Time456333 - Disc Number1 - Disc Count1 - Track Number16 - Track Count18 - Year2010 - Date Modified2011-10-08T11:50:25Z - Date Added2011-10-08T11:37:37Z - Bit Rate256 - Sample Rate44100 - Normalization1665 - Artwork Count1 - Persistent ID34EB12097801363E - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Herbie%20Hancock%20Feat.%20Norah%20Jones/_..Featuring%20Norah%20Jones/16%20Court%20&%20Spark.m4a - File Folder Count4 - Library Folder Count1 - - 9490 - - Track ID9490 - NameMore Than This - ArtistCharlie Hunter Feat. Norah Jones - ComposerBryan Ferry - Album...Featuring Norah Jones - GenrePop - KindAAC audio file - Size8963854 - Total Time252400 - Disc Number1 - Disc Count1 - Track Number17 - Track Count18 - Year2001 - Date Modified2011-10-08T11:50:25Z - Date Added2011-10-08T11:38:19Z - Bit Rate256 - Sample Rate44100 - Normalization1101 - Artwork Count1 - Persistent ID53E2E5E187B95030 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Charlie%20Hunter%20Feat.%20Norah%20Jones/_..Featuring%20Norah%20Jones/17%20More%20Than%20This.m4a - File Folder Count4 - Library Folder Count1 - - 9492 - - Track ID9492 - NameBlue Bayou - ArtistNorah Jones Feat. M. Ward - ComposerRoy Orbison/Joe Melson - Album...Featuring Norah Jones - GenrePop - KindAAC audio file - Size8088448 - Total Time224386 - Disc Number1 - Disc Count1 - Track Number18 - Track Count18 - Year2010 - Date Modified2011-10-08T11:50:25Z - Date Added2011-10-08T11:38:43Z - Bit Rate256 - Sample Rate44100 - Normalization1208 - Artwork Count1 - Persistent ID085CD2F483C62842 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Norah%20Jones%20Feat.%20M.%20Ward/_..Featuring%20Norah%20Jones/18%20Blue%20Bayou.m4a - File Folder Count4 - Library Folder Count1 - - 9494 - - Track ID9494 - Name25/03/11 4:33 PM - ArtistMahesh Venkitachalam - AlbumVoice Memos - GenreVoice Memo - KindAAC audio file - Size192074 - Total Time23381 - Date Modified2011-03-25T11:05:13Z - Date Added2011-10-08T12:07:58Z - Bit Rate64 - Sample Rate44100 - Persistent ID6216D9AE3B1A95BC - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Voice%20Memos/25_03_11%204_33%20PM.m4a - File Folder Count3 - Library Folder Count1 - - 9496 - - Track ID9496 - Name27/03/11 6:14 PM - ArtistMahesh Venkitachalam - AlbumVoice Memos - GenreVoice Memo - KindAAC audio file - Size91869 - Total Time11120 - Date Modified2011-03-27T12:44:46Z - Date Added2011-10-08T12:07:58Z - Bit Rate64 - Sample Rate44100 - Persistent ID0FC6A6AEDADC3E9D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Voice%20Memos/27_03_11%206_14%20PM.m4a - File Folder Count3 - Library Folder Count1 - - 9498 - - Track ID9498 - Name21/04/11 4:43 PM - ArtistMahesh Venkitachalam - AlbumVoice Memos - GenreVoice Memo - KindAAC audio file - Size1106346 - Total Time135254 - Date Modified2011-04-21T11:16:04Z - Date Added2011-10-08T12:07:58Z - Bit Rate64 - Sample Rate44100 - Persistent ID4CF15F0D69DA643D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Voice%20Memos/21_04_11%204_43%20PM.m4a - File Folder Count3 - Library Folder Count1 - - 9500 - - Track ID9500 - Name21/04/11 6:46 PM - ArtistMahesh Venkitachalam - AlbumVoice Memos - GenreVoice Memo - KindAAC audio file - Size55813 - Total Time6709 - Date Modified2011-04-21T13:16:55Z - Date Added2011-10-08T12:07:58Z - Bit Rate64 - Sample Rate44100 - Persistent ID9453C97FC3D5FA6A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Voice%20Memos/21_04_11%206_46%20PM.m4a - File Folder Count3 - Library Folder Count1 - - 9502 - - Track ID9502 - Name21/04/11 6:47 PM - ArtistMahesh Venkitachalam - AlbumVoice Memos - GenreVoice Memo - KindAAC audio file - Size172715 - Total Time21012 - Date Modified2011-04-21T13:17:29Z - Date Added2011-10-08T12:07:58Z - Bit Rate64 - Sample Rate44100 - Persistent IDD7F768E768219107 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Voice%20Memos/21_04_11%206_47%20PM.m4a - File Folder Count3 - Library Folder Count1 - - 9504 - - Track ID9504 - Name21/04/11 6:47 PM - ArtistMahesh Venkitachalam - AlbumVoice Memos - GenreVoice Memo - KindAAC audio file - Size189224 - Total Time23032 - Date Modified2011-04-21T13:17:55Z - Date Added2011-10-08T12:07:58Z - Bit Rate64 - Sample Rate44100 - Persistent IDE068AE25A10B9C7B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Voice%20Memos/21_04_11%206_47%20PM%201.m4a - File Folder Count3 - Library Folder Count1 - - 9506 - - Track ID9506 - Name21/04/11 6:49 PM - ArtistMahesh Venkitachalam - AlbumVoice Memos - GenreVoice Memo - KindAAC audio file - Size88450 - Total Time10702 - Date Modified2011-04-21T13:19:34Z - Date Added2011-10-08T12:07:58Z - Bit Rate64 - Sample Rate44100 - Persistent ID5CE8E0A83DEBEED4 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Voice%20Memos/21_04_11%206_49%20PM.m4a - File Folder Count3 - Library Folder Count1 - - 9508 - - Track ID9508 - Name21/04/11 6:49 PM - ArtistMahesh Venkitachalam - AlbumVoice Memos - GenreVoice Memo - KindAAC audio file - Size107430 - Total Time13024 - Date Modified2011-04-21T13:20:06Z - Date Added2011-10-08T12:07:58Z - Bit Rate64 - Sample Rate44100 - Persistent ID35638762A9FF2F29 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Voice%20Memos/21_04_11%206_49%20PM%201.m4a - File Folder Count3 - Library Folder Count1 - - 9510 - - Track ID9510 - Name21/04/11 6:51 PM - ArtistMahesh Venkitachalam - AlbumVoice Memos - GenreVoice Memo - KindAAC audio file - Size282968 - Total Time34503 - Date Modified2011-04-21T13:21:46Z - Date Added2011-10-08T12:07:58Z - Bit Rate64 - Sample Rate44100 - Persistent IDCB650B17EFE83D22 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Voice%20Memos/21_04_11%206_51%20PM.m4a - File Folder Count3 - Library Folder Count1 - - 9512 - - Track ID9512 - Name26/04/11 1:23 PM - ArtistMahesh Venkitachalam - AlbumVoice Memos - GenreVoice Memo - KindAAC audio file - Size200603 - Total Time24425 - Date Modified2011-04-26T07:54:04Z - Date Added2011-10-08T12:07:58Z - Bit Rate64 - Sample Rate44100 - Persistent ID1E5D7BA9A5E5E77C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Voice%20Memos/26_04_11%201_23%20PM.m4a - File Folder Count3 - Library Folder Count1 - - 9514 - - Track ID9514 - Name21/07/11 8:53 AM - ArtistMahesh Venkitachalam - AlbumVoice Memos - GenreVoice Memo - KindAAC audio file - Size129077 - Total Time15672 - Date Modified2011-07-21T03:24:14Z - Date Added2011-10-08T12:07:58Z - Bit Rate64 - Sample Rate44100 - Persistent IDC5E056BD24579FA9 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Voice%20Memos/21_07_11%208_53%20AM.m4a - File Folder Count3 - Library Folder Count1 - - 9516 - - Track ID9516 - Name29/07/11 7:54 PM - ArtistMahesh Venkitachalam - AlbumVoice Memos - GenreVoice Memo - KindAAC audio file - Size94344 - Total Time11422 - Date Modified2011-07-29T14:25:08Z - Date Added2011-10-08T12:07:58Z - Bit Rate64 - Sample Rate44100 - Persistent IDE11FCBD353D50260 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Voice%20Memos/29_07_11%207_54%20PM.m4a - File Folder Count3 - Library Folder Count1 - - 9518 - - Track ID9518 - Name29/07/11 7:55 PM - ArtistMahesh Venkitachalam - AlbumVoice Memos - GenreVoice Memo - KindAAC audio file - Size259045 - Total Time31577 - Date Modified2011-07-29T14:26:29Z - Date Added2011-10-08T12:07:58Z - Bit Rate64 - Sample Rate44100 - Persistent IDAD50A107DBA217B9 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Voice%20Memos/29_07_11%207_55%20PM.m4a - File Folder Count3 - Library Folder Count1 - - 9520 - - Track ID9520 - Name29/07/11 7:57 PM - ArtistMahesh Venkitachalam - AlbumVoice Memos - GenreVoice Memo - KindAAC audio file - Size645417 - Total Time78876 - Date Modified2011-07-29T14:28:52Z - Date Added2011-10-08T12:07:58Z - Bit Rate64 - Sample Rate44100 - Persistent ID04666D7DEEF179EC - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Voice%20Memos/29_07_11%207_57%20PM.m4a - File Folder Count3 - Library Folder Count1 - - 9522 - - Track ID9522 - Name29/07/11 8:00 PM - ArtistMahesh Venkitachalam - AlbumVoice Memos - GenreVoice Memo - KindAAC audio file - Size350342 - Total Time42769 - Date Modified2011-07-29T14:31:35Z - Date Added2011-10-08T12:07:58Z - Bit Rate64 - Sample Rate44100 - Persistent IDABDC9E402611D26F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Voice%20Memos/29_07_11%208_00%20PM.m4a - File Folder Count3 - Library Folder Count1 - - 9524 - - Track ID9524 - Name04/08/11 5:23 PM - ArtistMahesh Venkitachalam - AlbumVoice Memos - GenreVoice Memo - KindAAC audio file - Size33990 - Total Time4038 - Date Modified2011-08-04T11:53:35Z - Date Added2011-10-08T12:07:58Z - Bit Rate64 - Sample Rate44100 - Persistent ID7E80533AAED4AE62 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Voice%20Memos/04_08_11%205_23%20PM.m4a - File Folder Count3 - Library Folder Count1 - - 9526 - - Track ID9526 - Name08/08/11 8:15 PM - ArtistMahesh Venkitachalam - AlbumVoice Memos - GenreVoice Memo - KindAAC audio file - Size754709 - Total Time92228 - Date Modified2011-08-08T14:46:34Z - Date Added2011-10-08T12:07:58Z - Bit Rate64 - Sample Rate44100 - Persistent ID3DD4F2D44868954B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Voice%20Memos/08_08_11%208_15%20PM.m4a - File Folder Count3 - Library Folder Count1 - - 9528 - - Track ID9528 - Name01/09/11 8:37 AM - ArtistMahesh Venkitachalam - AlbumVoice Memos - GenreVoice Memo - KindAAC audio file - Size397193 - Total Time48481 - Date Modified2011-09-01T03:08:07Z - Date Added2011-10-08T12:07:58Z - Bit Rate64 - Sample Rate44100 - Persistent ID949DDF264DAD6681 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Voice%20Memos/01_09_11%208_37%20AM.m4a - File Folder Count3 - Library Folder Count1 - - 9530 - - Track ID9530 - Name01/09/11 8:41 AM - ArtistMahesh Venkitachalam - AlbumVoice Memos - GenreVoice Memo - KindAAC audio file - Size494554 - Total Time60393 - Date Modified2011-09-01T03:12:40Z - Date Added2011-10-08T12:07:58Z - Bit Rate64 - Sample Rate44100 - Persistent IDBAD7B488412B25EB - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Voice%20Memos/01_09_11%208_41%20AM.m4a - File Folder Count3 - Library Folder Count1 - - 9532 - - Track ID9532 - NamePrélude à l'après-midi d'un faune (1986 Digital Remaster) - ArtistHerbert Von Karajan: Berlin Philharmonic Orchestra - AlbumDebussy: La mer; Images for Orchestra; Trois Nocturnes; Jeux etc - GenreClassical - KindAAC audio file - Size20097339 - Total Time620920 - Disc Number1 - Disc Count2 - Track Number1 - Track Count9 - Year2011 - Date Modified2011-10-15T13:38:57Z - Date Added2011-10-15T13:18:46Z - Bit Rate256 - Sample Rate44100 - Play Count3 - Play Date3430930213 - Play Date UTC2012-09-19T14:40:13Z - Normalization108 - Artwork Count1 - Persistent ID62141C1C3E9C624A - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Herbert%20Von%20Karajan_%20Berlin%20Philharmonic%20Orchestra/Debussy_%20La%20mer%3B%20Images%20for%20Orchestra%3B%20Trois%20Nocturnes%3B%20Jeux%20etc/1-01%20Pre%CC%81lude%20a%CC%80%20l'apre%CC%80s-midi%20d'un%20faune%20(1986%20Digital%20Remaster).m4a - File Folder Count4 - Library Folder Count1 - - 9534 - - Track ID9534 - NameLa Mer (1986 Digital Remaster): De l'aube à midi sur la mer - ArtistHerbert Von Karajan: Berlin Philharmonic Orchestra - AlbumDebussy: La mer; Images for Orchestra; Trois Nocturnes; Jeux etc - GenreClassical - KindAAC audio file - Size20471024 - Total Time571360 - Disc Number1 - Disc Count2 - Track Number2 - Track Count9 - Year2011 - Date Modified2011-10-15T13:38:58Z - Date Added2011-10-15T13:20:30Z - Bit Rate256 - Sample Rate44100 - Normalization1197 - Artwork Count1 - Persistent ID0D7C184C03BBCAC4 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Herbert%20Von%20Karajan_%20Berlin%20Philharmonic%20Orchestra/Debussy_%20La%20mer%3B%20Images%20for%20Orchestra%3B%20Trois%20Nocturnes%3B%20Jeux%20etc/1-02%20La%20Mer%20(1986%20Digital%20Remaster)_%20De%20l'aube%20a%CC%80%20midi%20sur%20la%20mer.m4a - File Folder Count4 - Library Folder Count1 - - 9536 - - Track ID9536 - NameLa Mer (1986 Digital Remaster): Jeux de vagues - ArtistHerbert Von Karajan: Berlin Philharmonic Orchestra - AlbumDebussy: La mer; Images for Orchestra; Trois Nocturnes; Jeux etc - GenreClassical - KindAAC audio file - Size15394281 - Total Time428533 - Disc Number1 - Disc Count2 - Track Number3 - Track Count9 - Year2011 - Date Modified2011-10-15T13:39:00Z - Date Added2011-10-15T13:21:50Z - Bit Rate256 - Sample Rate44100 - Normalization1064 - Artwork Count1 - Persistent IDE7E963FA005C103D - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Herbert%20Von%20Karajan_%20Berlin%20Philharmonic%20Orchestra/Debussy_%20La%20mer%3B%20Images%20for%20Orchestra%3B%20Trois%20Nocturnes%3B%20Jeux%20etc/1-03%20La%20Mer%20(1986%20Digital%20Remaster)_%20Jeux%20de%20vagues.m4a - File Folder Count4 - Library Folder Count1 - - 9538 - - Track ID9538 - NameLa Mer (1986 Digital Remaster): Dialogue du vent et de la mer - ArtistHerbert Von Karajan: Berlin Philharmonic Orchestra - AlbumDebussy: La mer; Images for Orchestra; Trois Nocturnes; Jeux etc - GenreClassical - KindAAC audio file - Size18551083 - Total Time533840 - Disc Number1 - Disc Count2 - Track Number4 - Track Count9 - Year2011 - Date Modified2011-10-15T13:39:00Z - Date Added2011-10-15T13:22:43Z - Bit Rate256 - Sample Rate44100 - Normalization1359 - Artwork Count1 - Persistent ID1EC2EC332248699F - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Herbert%20Von%20Karajan_%20Berlin%20Philharmonic%20Orchestra/Debussy_%20La%20mer%3B%20Images%20for%20Orchestra%3B%20Trois%20Nocturnes%3B%20Jeux%20etc/1-04%20La%20Mer%20(1986%20Digital%20Remaster)_%20Dialogue%20du%20vent%20et%20de%20la%20mer.m4a - File Folder Count4 - Library Folder Count1 - - 9540 - - Track ID9540 - NameImages: I. Gigues - ArtistLondon Symphony Orchestra/André Previn - AlbumDebussy: La mer; Images for Orchestra; Trois Nocturnes; Jeux etc - GenreClassical - KindAAC audio file - Size14519843 - Total Time437653 - Disc Number1 - Disc Count2 - Track Number5 - Track Count9 - Year2011 - Date Modified2011-10-15T13:39:06Z - Date Added2011-10-15T13:23:43Z - Bit Rate256 - Sample Rate44100 - Normalization1230 - Artwork Count1 - Persistent ID9EDFA3B5E735B10A - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/London%20Symphony%20Orchestra_Andre%CC%81%20Previn/Debussy_%20La%20mer%3B%20Images%20for%20Orchestra%3B%20Trois%20Nocturnes%3B%20Jeux%20etc/1-05%20Images_%20I.%20Gigues.m4a - File Folder Count4 - Library Folder Count1 - - 9542 - - Track ID9542 - NameImages, II. Ibéria: 1. Par les rues et par les chemins - ArtistLondon Symphony Orchestra/André Previn - AlbumDebussy: La mer; Images for Orchestra; Trois Nocturnes; Jeux etc - GenreClassical - KindAAC audio file - Size14798325 - Total Time446306 - Disc Number1 - Disc Count2 - Track Number6 - Track Count9 - Year2011 - Date Modified2011-10-15T13:39:07Z - Date Added2011-10-15T13:24:29Z - Bit Rate256 - Sample Rate44100 - Skip Count1 - Skip Date2011-12-31T06:25:46Z - Normalization1258 - Artwork Count1 - Persistent ID95193BC4BAF83C08 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/London%20Symphony%20Orchestra_Andre%CC%81%20Previn/Debussy_%20La%20mer%3B%20Images%20for%20Orchestra%3B%20Trois%20Nocturnes%3B%20Jeux%20etc/1-06%20Images,%20II.%20Ibe%CC%81ria_%201.%20Par%20les%20rues%20et%20par%20les%20chemins.m4a - File Folder Count4 - Library Folder Count1 - - 9544 - - Track ID9544 - NameImages, II. Ibéria: 2. Les parfums de la nuit - - ArtistLondon Symphony Orchestra/André Previn - AlbumDebussy: La mer; Images for Orchestra; Trois Nocturnes; Jeux etc - GenreClassical - KindAAC audio file - Size19851234 - Total Time596746 - Disc Number1 - Disc Count2 - Track Number7 - Track Count9 - Year2011 - Date Modified2011-10-15T13:39:08Z - Date Added2011-10-15T13:25:13Z - Bit Rate256 - Sample Rate44100 - Normalization455 - Artwork Count1 - Persistent ID5B6E36C11BA1CF90 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/London%20Symphony%20Orchestra_Andre%CC%81%20Previn/Debussy_%20La%20mer%3B%20Images%20for%20Orchestra%3B%20Trois%20Nocturnes%3B%20Jeux%20etc/1-07%20Images,%20II.%20Ibe%CC%81ria_%202.%20Les%20parfums%20de%20la%20nuit%20-.m4a - File Folder Count4 - Library Folder Count1 - - 9546 - - Track ID9546 - NameImages, II. Ibéria: 3. Le matin d'un jour de fête - ArtistLondon Symphony Orchestra/André Previn - AlbumDebussy: La mer; Images for Orchestra; Trois Nocturnes; Jeux etc - GenreClassical - KindAAC audio file - Size10049701 - Total Time300360 - Disc Number1 - Disc Count2 - Track Number8 - Track Count9 - Year2011 - Date Modified2011-10-15T13:39:09Z - Date Added2011-10-15T13:26:08Z - Bit Rate256 - Sample Rate44100 - Normalization1230 - Artwork Count1 - Persistent IDC72D130564780896 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/London%20Symphony%20Orchestra_Andre%CC%81%20Previn/Debussy_%20La%20mer%3B%20Images%20for%20Orchestra%3B%20Trois%20Nocturnes%3B%20Jeux%20etc/1-08%20Images,%20II.%20Ibe%CC%81ria_%203.%20Le%20matin%20d'un%20jour%20de%20fe%CC%82te.m4a - File Folder Count4 - Library Folder Count1 - - 9548 - - Track ID9548 - NameImages: III. Rondes de printemps - ArtistLondon Symphony Orchestra/André Previn - AlbumDebussy: La mer; Images for Orchestra; Trois Nocturnes; Jeux etc - GenreClassical - KindAAC audio file - Size16206379 - Total Time498453 - Disc Number1 - Disc Count2 - Track Number9 - Track Count9 - Year2011 - Date Modified2011-10-15T13:39:10Z - Date Added2011-10-15T13:26:34Z - Bit Rate256 - Sample Rate44100 - Normalization1034 - Artwork Count1 - Persistent ID6C06F4D293871A33 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/London%20Symphony%20Orchestra_Andre%CC%81%20Previn/Debussy_%20La%20mer%3B%20Images%20for%20Orchestra%3B%20Trois%20Nocturnes%3B%20Jeux%20etc/1-09%20Images_%20III.%20Rondes%20de%20printemps.m4a - File Folder Count4 - Library Folder Count1 - - 9550 - - Track ID9550 - NameChildren's Corner Suite (orch. André Caplet) (1998 Digital Remaster): 1. Doctor Gradus ad Parnassum - ArtistJean Martinon: Orchestre National De L'ORTF - AlbumDebussy: La mer; Images for Orchestra; Trois Nocturnes; Jeux etc - GenreClassical - KindAAC audio file - Size6053438 - Total Time161413 - Disc Number2 - Disc Count2 - Track Number1 - Track Count12 - Year2011 - Date Modified2011-10-15T13:39:01Z - Date Added2011-10-15T13:28:32Z - Bit Rate256 - Sample Rate44100 - Normalization551 - Artwork Count1 - Persistent ID7E07E46C91F6AC9A - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jean%20Martinon_%20Orchestre%20National%20De%20L'ORTF/Debussy_%20La%20mer%3B%20Images%20for%20Orchestra%3B%20Trois%20Nocturnes%3B%20Jeux%20etc/2-01%20Children's%20Corner%20Suite%20(orch.%20Andre%CC%81%20Caplet)%20(1998%20Digital%20Remaster)_%201.%20Doctor%20Gradus%20ad%20Parnassum.m4a - File Folder Count4 - Library Folder Count1 - - 9552 - - Track ID9552 - NameChildren's Corner Suite (orch. André Caplet) (1998 Digital Remaster): 2. Jimbo's lullaby - ArtistJean Martinon: Orchestre National De L'ORTF - AlbumDebussy: La mer; Images for Orchestra; Trois Nocturnes; Jeux etc - GenreClassical - KindAAC audio file - Size8226875 - Total Time237706 - Disc Number2 - Disc Count2 - Track Number2 - Track Count12 - Year2011 - Date Modified2011-10-15T13:39:02Z - Date Added2011-10-15T13:29:02Z - Bit Rate256 - Sample Rate44100 - Normalization302 - Artwork Count1 - Persistent ID23EC01480964D48F - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jean%20Martinon_%20Orchestre%20National%20De%20L'ORTF/Debussy_%20La%20mer%3B%20Images%20for%20Orchestra%3B%20Trois%20Nocturnes%3B%20Jeux%20etc/2-02%20Children's%20Corner%20Suite%20(orch.%20Andre%CC%81%20Caplet)%20(1998%20Digital%20Remaster)_%202.%20Jimbo's%20lullaby.m4a - File Folder Count4 - Library Folder Count1 - - 9554 - - Track ID9554 - NameChildren's Corner Suite (orch. André Caplet) (1998 Digital Remaster): 3. Serenade for the doll - ArtistJean Martinon: Orchestre National De L'ORTF - AlbumDebussy: La mer; Images for Orchestra; Trois Nocturnes; Jeux etc - GenreClassical - KindAAC audio file - Size5848021 - Total Time166693 - Disc Number2 - Disc Count2 - Track Number3 - Track Count12 - Year2011 - Date Modified2011-10-15T13:39:03Z - Date Added2011-10-15T13:29:43Z - Bit Rate256 - Sample Rate44100 - Normalization369 - Artwork Count1 - Persistent IDCB261CC993304F5B - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jean%20Martinon_%20Orchestre%20National%20De%20L'ORTF/Debussy_%20La%20mer%3B%20Images%20for%20Orchestra%3B%20Trois%20Nocturnes%3B%20Jeux%20etc/2-03%20Children's%20Corner%20Suite%20(orch.%20Andre%CC%81%20Caplet)%20(1998%20Digital%20Remaster)_%203.%20Serenade%20for%20the%20doll.m4a - File Folder Count4 - Library Folder Count1 - - 9556 - - Track ID9556 - NameChildren's Corner Suite (orch. André Caplet) (1998 Digital Remaster): 4. The snow is dancing - ArtistJean Martinon: Orchestre National De L'ORTF - AlbumDebussy: La mer; Images for Orchestra; Trois Nocturnes; Jeux etc - GenreClassical - KindAAC audio file - Size6328854 - Total Time177066 - Disc Number2 - Disc Count2 - Track Number4 - Track Count12 - Year2011 - Date Modified2011-10-15T13:39:03Z - Date Added2011-10-15T13:30:09Z - Bit Rate256 - Sample Rate44100 - Normalization313 - Artwork Count1 - Persistent ID59339CA0233E8D16 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jean%20Martinon_%20Orchestre%20National%20De%20L'ORTF/Debussy_%20La%20mer%3B%20Images%20for%20Orchestra%3B%20Trois%20Nocturnes%3B%20Jeux%20etc/2-04%20Children's%20Corner%20Suite%20(orch.%20Andre%CC%81%20Caplet)%20(1998%20Digital%20Remaster)_%204.%20The%20snow%20is%20dancing.m4a - File Folder Count4 - Library Folder Count1 - - 9558 - - Track ID9558 - NameChildren's Corner Suite (orch. André Caplet) (1998 Digital Remaster): 5. The little shepherd - ArtistJean Martinon: Orchestre National De L'ORTF - AlbumDebussy: La mer; Images for Orchestra; Trois Nocturnes; Jeux etc - GenreClassical - KindAAC audio file - Size5775025 - Total Time166333 - Disc Number2 - Disc Count2 - Track Number5 - Track Count12 - Year2011 - Date Modified2011-10-15T13:39:04Z - Date Added2011-10-15T13:30:36Z - Bit Rate256 - Sample Rate44100 - Normalization117 - Artwork Count1 - Persistent ID8123E45F48DA29BC - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jean%20Martinon_%20Orchestre%20National%20De%20L'ORTF/Debussy_%20La%20mer%3B%20Images%20for%20Orchestra%3B%20Trois%20Nocturnes%3B%20Jeux%20etc/2-05%20Children's%20Corner%20Suite%20(orch.%20Andre%CC%81%20Caplet)%20(1998%20Digital%20Remaster)_%205.%20The%20little%20shepherd.m4a - File Folder Count4 - Library Folder Count1 - - 9560 - - Track ID9560 - NameChildren's Corner Suite (orch. André Caplet) (1998 Digital Remaster): 6. Golliwogg's cakewalk - ArtistJean Martinon: Orchestre National De L'ORTF - AlbumDebussy: La mer; Images for Orchestra; Trois Nocturnes; Jeux etc - GenreClassical - KindAAC audio file - Size5979494 - Total Time173613 - Disc Number2 - Disc Count2 - Track Number6 - Track Count12 - Year2011 - Date Modified2011-10-15T13:39:05Z - Date Added2011-10-15T13:31:00Z - Bit Rate256 - Sample Rate44100 - Normalization772 - Artwork Count1 - Persistent IDFC71A2737A2C9004 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Jean%20Martinon_%20Orchestre%20National%20De%20L'ORTF/Debussy_%20La%20mer%3B%20Images%20for%20Orchestra%3B%20Trois%20Nocturnes%3B%20Jeux%20etc/2-06%20Children's%20Corner%20Suite%20(orch.%20Andre%CC%81%20Caplet)%20(1998%20Digital%20Remaster)_%206.%20Golliwogg's%20cakewalk.m4a - File Folder Count4 - Library Folder Count1 - - 9562 - - Track ID9562 - NamePrintemps, Suite Symphonique : I Modéré - ArtistMichel Plasson - Martine Laure - Philippe Alegre - Orchestre Du Capitole De Toulouse - AlbumDebussy: La mer; Images for Orchestra; Trois Nocturnes; Jeux etc - GenreClassical - KindAAC audio file - Size18839950 - Total Time569746 - Disc Number2 - Disc Count2 - Track Number7 - Track Count12 - Year2011 - Date Modified2011-10-15T13:39:11Z - Date Added2011-10-15T13:31:24Z - Bit Rate256 - Sample Rate44100 - Normalization380 - Artwork Count1 - Persistent IDA8B9448F661F422C - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Michel%20Plasson%20-%20Martine%20Laure%20-%20Philippe%20Alegre%20-%20Orchestre%20Du%20Capitole%20De%20Toulouse/Debussy_%20La%20mer%3B%20Images%20for%20Orchestra%3B%20Trois%20Nocturnes%3B%20Jeux%20etc/2-07%20Printemps,%20Suite%20Symphonique%20_%20I%20Mode%CC%81re%CC%81.m4a - File Folder Count4 - Library Folder Count1 - - 9564 - - Track ID9564 - NamePrintemps, Suite Symphonique : II Modéré - ArtistMichel Plasson - Martine Laure - Philippe Alegre - Orchestre Du Capitole De Toulouse - AlbumDebussy: La mer; Images for Orchestra; Trois Nocturnes; Jeux etc - GenreClassical - KindAAC audio file - Size12365237 - Total Time372413 - Disc Number2 - Disc Count2 - Track Number8 - Track Count12 - Year2011 - Date Modified2011-10-15T13:39:12Z - Date Added2011-10-15T13:32:35Z - Bit Rate256 - Sample Rate44100 - Normalization794 - Artwork Count1 - Persistent ID35F746B62CC24282 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Michel%20Plasson%20-%20Martine%20Laure%20-%20Philippe%20Alegre%20-%20Orchestre%20Du%20Capitole%20De%20Toulouse/Debussy_%20La%20mer%3B%20Images%20for%20Orchestra%3B%20Trois%20Nocturnes%3B%20Jeux%20etc/2-08%20Printemps,%20Suite%20Symphonique%20_%20II%20Mode%CC%81re%CC%81.m4a - File Folder Count4 - Library Folder Count1 - - 9566 - - Track ID9566 - NameNocturnes (2004 Digital Remaster): I. Nuages - ArtistCarlo Maria Giulini: Philharmonia Orchestra - AlbumDebussy: La mer; Images for Orchestra; Trois Nocturnes; Jeux etc - GenreClassical - KindAAC audio file - Size18495368 - Total Time525906 - Disc Number2 - Disc Count2 - Track Number9 - Track Count12 - Year2011 - Date Modified2011-10-15T13:38:54Z - Date Added2011-10-15T13:33:18Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3408273286 - Play Date UTC2012-01-01T09:04:46Z - Normalization262 - Artwork Count1 - Persistent IDC9F619519D2F4231 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Carlo%20Maria%20Giulini_%20Philharmonia%20Orchestra/Debussy_%20La%20mer%3B%20Images%20for%20Orchestra%3B%20Trois%20Nocturnes%3B%20Jeux%20etc/2-09%20Nocturnes%20(2004%20Digital%20Remaster)_%20I.%20Nuages.m4a - File Folder Count4 - Library Folder Count1 - - 9568 - - Track ID9568 - NameNocturnes (2004 Digital Remaster): II. Fêtes - ArtistCarlo Maria Giulini: Philharmonia Orchestra - ComposerClaude Debussy - AlbumDebussy: La mer; Images for Orchestra; Trois Nocturnes; Jeux etc - GenreClassical - KindAAC audio file - Size13299641 - Total Time373386 - Disc Number2 - Disc Count2 - Track Number10 - Track Count12 - Year2011 - Date Modified2011-10-15T13:38:55Z - Date Added2011-10-15T13:34:14Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3408273659 - Play Date UTC2012-01-01T09:10:59Z - Normalization1658 - Artwork Count1 - Persistent ID3A9E3AD358BAA9E1 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Carlo%20Maria%20Giulini_%20Philharmonia%20Orchestra/Debussy_%20La%20mer%3B%20Images%20for%20Orchestra%3B%20Trois%20Nocturnes%3B%20Jeux%20etc/2-10%20Nocturnes%20(2004%20Digital%20Remaster)_%20II.%20Fe%CC%82tes.m4a - File Folder Count4 - Library Folder Count1 - - 9570 - - Track ID9570 - NameNocturnes (2004 Digital Remaster): III. Sirènes (with women's choir) - ArtistCarlo Maria Giulini: Philharmonia Orchestra - AlbumDebussy: La mer; Images for Orchestra; Trois Nocturnes; Jeux etc - GenreClassical - KindAAC audio file - Size24195941 - Total Time689560 - Disc Number2 - Disc Count2 - Track Number11 - Track Count12 - Year2011 - Date Modified2011-10-15T13:38:56Z - Date Added2011-10-15T13:34:52Z - Bit Rate256 - Sample Rate44100 - Normalization934 - Artwork Count1 - Persistent ID89B39F001929236F - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Carlo%20Maria%20Giulini_%20Philharmonia%20Orchestra/Debussy_%20La%20mer%3B%20Images%20for%20Orchestra%3B%20Trois%20Nocturnes%3B%20Jeux%20etc/2-11%20Nocturnes%20(2004%20Digital%20Remaster)_%20III.%20Sire%CC%80nes%20(with%20women's%20choir).m4a - File Folder Count4 - Library Folder Count1 - - 9572 - - Track ID9572 - NameJeux (Poème dansé) (1998 Digital Remaster) - ArtistOrchestre National De l'O.R.T.F./Jean Martinon - AlbumDebussy: La mer; Images for Orchestra; Trois Nocturnes; Jeux etc - GenreClassical - KindAAC audio file - Size39486005 - Total Time1096280 - Disc Number2 - Disc Count2 - Track Number12 - Track Count12 - Year2011 - Date Modified2011-10-15T13:39:13Z - Date Added2011-10-15T13:35:57Z - Bit Rate256 - Sample Rate44100 - Normalization1219 - Artwork Count1 - Persistent IDDC3154C11569A34C - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Orchestre%20National%20De%20l'O.R.T.F._Jean%20Martinon/Debussy_%20La%20mer%3B%20Images%20for%20Orchestra%3B%20Trois%20Nocturnes%3B%20Jeux%20etc/2-12%20Jeux%20(Poe%CC%80me%20danse%CC%81)%20(1998%20Digital%20Remaster).m4a - File Folder Count4 - Library Folder Count1 - - 9574 - - Track ID9574 - NameBach: Lute Suite In E, BWV 1006A - Gavotte En Rondeau - ArtistSharon Isbin - ComposerJohann Sebastian Bach - Album50 Best Guitar [Disc 1] - GenreClassical - KindAAC audio file - Size6393595 - Total Time192026 - Disc Number1 - Disc Count3 - Track Number1 - Track Count21 - Year1990 - Date Modified2011-10-15T14:05:10Z - Date Added2011-10-15T13:42:12Z - Bit Rate256 - Sample Rate44100 - Play Count2 - Play Date3403633825 - Play Date UTC2011-11-08T16:20:25Z - Skip Count1 - Skip Date2011-11-01T15:32:55Z - Rating20 - Rating Computed - Album Rating20 - Normalization1255 - Compilation - Artwork Count1 - Persistent ID4A93E3AF0C8635CC - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%201%5D/1-01%20Bach_%20Lute%20Suite%20In%20E,%20BWV%201006A%20-%20Gavotte%20En%20Rondeau.m4a - File Folder Count4 - Library Folder Count1 - - 9576 - - Track ID9576 - NameDowland: Allemande - ArtistChristopher Parkening - ComposerJohn Dowland - Album50 Best Guitar [Disc 1] - GenreClassical - KindAAC audio file - Size3305527 - Total Time98866 - Disc Number1 - Disc Count3 - Track Number2 - Track Count21 - Year1986 - Date Modified2011-10-15T14:05:11Z - Date Added2011-10-15T13:42:30Z - Bit Rate256 - Sample Rate44100 - Play Count12 - Play Date3403632718 - Play Date UTC2011-11-08T16:01:58Z - Skip Count2 - Skip Date2011-12-16T13:49:14Z - Rating20 - Rating Computed - Album Rating20 - Normalization660 - Compilation - Artwork Count1 - Persistent ID071A7C2BDA9AEC17 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%201%5D/1-02%20Dowland_%20Allemande.m4a - File Folder Count4 - Library Folder Count1 - - 9578 - - Track ID9578 - NameBach: Prelude, Fugue & Allegro In E Flat, BWV 998 - Prelude - ArtistManuel Barrueco - ComposerJohann Sebastian Bach - Album50 Best Guitar [Disc 1] - GenreClassical - KindAAC audio file - Size5047251 - Total Time153880 - Disc Number1 - Disc Count3 - Track Number3 - Track Count21 - Year1990 - Date Modified2011-10-15T14:05:12Z - Date Added2011-10-15T13:42:39Z - Bit Rate256 - Sample Rate44100 - Play Count4 - Play Date3403631707 - Play Date UTC2011-11-08T15:45:07Z - Rating20 - Rating Computed - Album Rating20 - Normalization342 - Compilation - Artwork Count1 - Persistent ID7FAF9AF82B874342 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%201%5D/1-03%20Bach_%20Prelude,%20Fugue%20&%20Allegro%20In%20E%20Flat,%20BWV%20998%20-%20Prelude.m4a - File Folder Count4 - Library Folder Count1 - - 9580 - - Track ID9580 - NameBach: Violin Partita #2 In D Minor, BWV 1004 - Gigue (Guitar Version) - ArtistManuel Barrueco - ComposerJohann Sebastian Bach - Album50 Best Guitar [Disc 1] - GenreClassical - KindAAC audio file - Size9717257 - Total Time294466 - Disc Number1 - Disc Count3 - Track Number4 - Track Count21 - Year1990 - Date Modified2011-10-15T14:05:13Z - Date Added2011-10-15T13:42:52Z - Bit Rate256 - Sample Rate44100 - Play Count2 - Play Date3403634260 - Play Date UTC2011-11-08T16:27:40Z - Rating20 - Rating Computed - Album Rating20 - Normalization423 - Compilation - Artwork Count1 - Persistent ID96D29144E660CCE2 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%201%5D/1-04%20Bach_%20Violin%20Partita%20%232%20In%20D%20Minor,%20BWV%201004%20-%20Gigue%20(Guitar%20Version).m4a - File Folder Count4 - Library Folder Count1 - - 9582 - - Track ID9582 - NameFroberger: Gigue - ArtistAndrés Segovia - ComposerJohann Froberger - Album50 Best Guitar [Disc 1] - GenreClassical - KindAAC audio file - Size2853943 - Total Time101266 - Disc Number1 - Disc Count3 - Track Number5 - Track Count21 - Year1991 - Date Modified2011-10-15T14:05:14Z - Date Added2011-10-15T13:43:15Z - Bit Rate256 - Sample Rate44100 - Play Count5 - Play Date3403631924 - Play Date UTC2011-11-08T15:48:44Z - Rating20 - Rating Computed - Album Rating20 - Normalization1254 - Compilation - Artwork Count1 - Persistent ID80C2D98999E89AE2 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%201%5D/1-05%20Froberger_%20Gigue.m4a - File Folder Count4 - Library Folder Count1 - - 9584 - - Track ID9584 - NameBach: Jesu, Joy Of Man's Desiring - ArtistChristopher Parkening: Los Angeles Chamber Orchestra - ComposerJohann Sebastian Bach - Album50 Best Guitar [Disc 1] - GenreClassical - KindAAC audio file - Size6449488 - Total Time193306 - Disc Number1 - Disc Count3 - Track Number6 - Track Count21 - Year1985 - Date Modified2011-10-15T14:05:15Z - Date Added2011-10-15T13:43:23Z - Bit Rate256 - Sample Rate44100 - Play Count2 - Play Date3403635515 - Play Date UTC2011-11-08T16:48:35Z - Rating20 - Rating Computed - Album Rating20 - Normalization790 - Compilation - Artwork Count1 - Persistent ID5DA9E3D025CE9A15 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%201%5D/1-06%20Bach_%20Jesu,%20Joy%20Of%20Man's%20Desiring.m4a - File Folder Count4 - Library Folder Count1 - - 9586 - - Track ID9586 - NameVivaldi: Guitar Concerto In D, RV 93 - 2. Largo - ArtistChristopher Parkening; Iona Brown: Academy Of St. Martin In The Fields - ComposerAntonio Vivaldi - Album50 Best Guitar [Disc 1] - GenreClassical - KindAAC audio file - Size9505382 - Total Time277746 - Disc Number1 - Disc Count3 - Track Number7 - Track Count21 - Year1994 - Date Modified2011-10-15T14:05:16Z - Date Added2011-10-15T13:43:37Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3403633264 - Play Date UTC2011-11-08T16:11:04Z - Rating20 - Rating Computed - Album Rating20 - Normalization427 - Compilation - Artwork Count1 - Persistent ID520775452292A7AA - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%201%5D/1-07%20Vivaldi_%20Guitar%20Concerto%20In%20D,%20RV%2093%20-%202.%20Largo.m4a - File Folder Count4 - Library Folder Count1 - - 9588 - - Track ID9588 - NameVisée: Suite #11 B Minor - ArtistManuel Barrueco - ComposerRobert De Visée - Album50 Best Guitar [Disc 1] - GenreClassical - KindAAC audio file - Size8880536 - Total Time268626 - Disc Number1 - Disc Count3 - Track Number8 - Track Count21 - Year1990 - Date Modified2011-10-15T14:05:17Z - Date Added2011-10-15T13:43:55Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3403632986 - Play Date UTC2011-11-08T16:06:26Z - Rating20 - Rating Computed - Album Rating20 - Normalization943 - Compilation - Artwork Count1 - Persistent ID4FC3EFA9A1DEB877 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%201%5D/1-08%20Vise%CC%81e_%20Suite%20%2311%20B%20Minor.m4a - File Folder Count4 - Library Folder Count1 - - 9590 - - Track ID9590 - NameCapirola: O Mia Cieca E Dura Sorte - ArtistAnthony Bailes - ComposerVincenzo Capirola - Album50 Best Guitar [Disc 1] - GenreClassical - KindAAC audio file - Size4694443 - Total Time141240 - Disc Number1 - Disc Count3 - Track Number9 - Track Count21 - Year1984 - Date Modified2011-10-15T14:05:17Z - Date Added2011-10-15T13:44:12Z - Bit Rate256 - Sample Rate44100 - Play Count2 - Play Date3403633966 - Play Date UTC2011-11-08T16:22:46Z - Skip Count1 - Skip Date2011-12-16T13:49:18Z - Rating20 - Rating Computed - Album Rating20 - Normalization1202 - Compilation - Artwork Count1 - Persistent ID4F99E79CFE9AAC07 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%201%5D/1-09%20Capirola_%20O%20Mia%20Cieca%20E%20Dura%20Sorte.m4a - File Folder Count4 - Library Folder Count1 - - 9592 - - Track ID9592 - NameScarlatti (D): Harpsichord Sonata In E, K 380 - ArtistJulian Byzantine - ComposerDomenico Scarlatti - Album50 Best Guitar [Disc 1] - GenreClassical - KindAAC audio file - Size12893034 - Total Time368746 - Disc Number1 - Disc Count3 - Track Number10 - Track Count21 - Year1985 - Date Modified2011-10-15T14:05:18Z - Date Added2011-10-15T13:44:21Z - Bit Rate256 - Sample Rate44100 - Play Count3 - Play Date3403634629 - Play Date UTC2011-11-08T16:33:49Z - Rating20 - Rating Computed - Album Rating20 - Normalization1255 - Compilation - Artwork Count1 - Persistent IDA88755F5BCE0BA54 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%201%5D/1-10%20Scarlatti%20(D)_%20Harpsichord%20Sonata%20In%20E,%20K%20380.m4a - File Folder Count4 - Library Folder Count1 - - 9594 - - Track ID9594 - NameHolborne: Countess Of Pembroke's Paradise (Pavan #15) - ArtistAnthony Bailes - ComposerAnthony Holborne - Album50 Best Guitar [Disc 1] - GenreClassical - KindAAC audio file - Size7730261 - Total Time233240 - Disc Number1 - Disc Count3 - Track Number11 - Track Count21 - Year1984 - Date Modified2011-10-15T14:05:19Z - Date Added2011-10-15T13:44:42Z - Bit Rate256 - Sample Rate44100 - Play Count4 - Play Date3403634862 - Play Date UTC2011-11-08T16:37:42Z - Skip Count1 - Skip Date2011-12-16T13:49:22Z - Rating20 - Rating Computed - Album Rating20 - Normalization1256 - Compilation - Artwork Count1 - Persistent ID9C455E36C22135EA - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%201%5D/1-11%20Holborne_%20Countess%20Of%20Pembroke's%20Paradise%20(Pavan%20%2315).m4a - File Folder Count4 - Library Folder Count1 - - 9596 - - Track ID9596 - NameHolborne: Heigh Ho Holiday (Galliard #13) - ArtistAnthony Bailes - ComposerAnthony Holborne - Album50 Best Guitar [Disc 1] - GenreClassical - KindAAC audio file - Size2821900 - Total Time86466 - Disc Number1 - Disc Count3 - Track Number12 - Track Count21 - Year1984 - Date Modified2011-10-15T14:05:19Z - Date Added2011-10-15T13:44:55Z - Bit Rate256 - Sample Rate44100 - Play Count3 - Play Date3403632276 - Play Date UTC2011-11-08T15:54:36Z - Rating20 - Rating Computed - Album Rating20 - Normalization1256 - Compilation - Artwork Count1 - Persistent ID156DE2C48BD6BA65 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%201%5D/1-12%20Holborne_%20Heigh%20Ho%20Holiday%20(Galliard%20%2313).m4a - File Folder Count4 - Library Folder Count1 - - 9598 - - Track ID9598 - NameNarváez: Variations On "Guardam Las Vacas" - ArtistOscar Ghiglia - ComposerLuis De Narváez - Album50 Best Guitar [Disc 1] - GenreClassical - KindAAC audio file - Size6282548 - Total Time185520 - Disc Number1 - Disc Count3 - Track Number13 - Track Count21 - Year1968 - Date Modified2011-10-15T14:05:20Z - Date Added2011-10-15T13:45:00Z - Bit Rate256 - Sample Rate44100 - Play Count4 - Play Date3403635700 - Play Date UTC2011-11-08T16:51:40Z - Rating20 - Rating Computed - Album Rating20 - Normalization523 - Compilation - Artwork Count1 - Persistent ID18545998B3B20EB1 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%201%5D/1-13%20Narva%CC%81ez_%20Variations%20On%20_Guardam%20Las%20Vacas_.m4a - File Folder Count4 - Library Folder Count1 - - 9600 - - Track ID9600 - NameGaultier: Piece In G For Guitar - ArtistAnthony Bailes - ComposerDenis Gaultier - Album50 Best Guitar [Disc 1] - GenreClassical - KindAAC audio file - Size12174757 - Total Time368413 - Disc Number1 - Disc Count3 - Track Number14 - Track Count21 - Year1977 - Date Modified2011-10-15T14:05:21Z - Date Added2011-10-15T13:45:10Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3403633633 - Play Date UTC2011-11-08T16:17:13Z - Rating20 - Rating Computed - Album Rating20 - Normalization1149 - Compilation - Artwork Count1 - Persistent ID3E4A86648C5D1CA4 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%201%5D/1-14%20Gaultier_%20Piece%20In%20G%20For%20Guitar.m4a - File Folder Count4 - Library Folder Count1 - - 9602 - - Track ID9602 - NamePraetorius: Terpischore - Suite In D: Courante, Ballet, Volte - ArtistChristopher Parkening; Iona Brown: Academy Of St. Martin In The Fields - ComposerMichael Praetorius - Album50 Best Guitar [Disc 1] - GenreClassical - KindAAC audio file - Size11254121 - Total Time343200 - Disc Number1 - Disc Count3 - Track Number15 - Track Count21 - Year1994 - Date Modified2011-10-15T14:05:21Z - Date Added2011-10-15T13:45:29Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3403632619 - Play Date UTC2011-11-08T16:00:19Z - Rating20 - Rating Computed - Album Rating20 - Normalization1256 - Compilation - Artwork Count1 - Persistent ID18B8ADA4459DE3BA - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%201%5D/1-15%20Praetorius_%20Terpischore%20-%20Suite%20In%20D_%20Courante,%20Ballet,%20Volte.m4a - File Folder Count4 - Library Folder Count1 - - 9604 - - Track ID9604 - NameBach: Cantata #169, BWV 169, "Gott Soll Allein Mein Herze Haben" - God Alone Should Have My Heart - ArtistChristopher Parkening; Paul Shure: Los Angeles Chamber Orchestra - ComposerJohann Sebastian Bach - Album50 Best Guitar [Disc 1] - GenreClassical - KindAAC audio file - Size6516886 - Total Time196880 - Disc Number1 - Disc Count3 - Track Number16 - Track Count21 - Year1985 - Date Modified2011-10-15T14:05:22Z - Date Added2011-10-15T13:45:45Z - Bit Rate256 - Sample Rate44100 - Play Count3 - Play Date3403635322 - Play Date UTC2011-11-08T16:45:22Z - Rating20 - Rating Computed - Album Rating20 - Normalization1256 - Compilation - Artwork Count1 - Persistent ID54927B88236C1186 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%201%5D/1-16%20Bach_%20Cantata%20%23169,%20BWV%20169,%20_Gott%20Soll%20Allein%20Mein%20Herze%20Haben_%20-%20God%20Alone%20Should%20Have%20My%20Heart.m4a - File Folder Count4 - Library Folder Count1 - - 9606 - - Track ID9606 - NameMouton: Suite In F Sharp Minor - La Belle Iris (Allemande) - ArtistAnthony Bailes - ComposerJean Mouton - Album50 Best Guitar [Disc 1] - GenreClassical - KindAAC audio file - Size8809029 - Total Time265426 - Disc Number1 - Disc Count3 - Track Number17 - Track Count21 - Year1977 - Date Modified2011-10-15T14:05:23Z - Date Added2011-10-15T13:45:55Z - Bit Rate256 - Sample Rate44100 - Play Count2 - Play Date3403632189 - Play Date UTC2011-11-08T15:53:09Z - Rating20 - Rating Computed - Album Rating20 - Normalization794 - Compilation - Artwork Count1 - Persistent ID793C1AB1693E866D - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%201%5D/1-17%20Mouton_%20Suite%20In%20F%20Sharp%20Minor%20-%20La%20Belle%20Iris%20(Allemande).m4a - File Folder Count4 - Library Folder Count1 - - 9608 - - Track ID9608 - NameVallet: Carillon De Village - ArtistAnthony Bailes - ComposerNicolas Vallet - Album50 Best Guitar [Disc 1] - GenreClassical - KindAAC audio file - Size3785370 - Total Time115773 - Disc Number1 - Disc Count3 - Track Number18 - Track Count21 - Year1984 - Date Modified2011-10-15T14:05:24Z - Date Added2011-10-15T13:46:07Z - Bit Rate256 - Sample Rate44100 - Play Count2 - Play Date3403631823 - Play Date UTC2011-11-08T15:47:03Z - Rating20 - Rating Computed - Album Rating20 - Normalization872 - Compilation - Artwork Count1 - Persistent IDD6A3A5E4B7E6A5A8 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%201%5D/1-18%20Vallet_%20Carillon%20De%20Village.m4a - File Folder Count4 - Library Folder Count1 - - 9610 - - Track ID9610 - NameScarlatti (D): Harpsichord Sonata In A, K 322 - ArtistJulian Byzantine - ComposerDomenico Scarlatti - Album50 Best Guitar [Disc 1] - GenreClassical - KindAAC audio file - Size7708787 - Total Time222026 - Disc Number1 - Disc Count3 - Track Number19 - Track Count21 - Year1985 - Date Modified2011-10-15T14:05:24Z - Date Added2011-10-15T13:46:13Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3403631553 - Play Date UTC2011-11-08T15:42:33Z - Rating20 - Rating Computed - Album Rating20 - Normalization1256 - Compilation - Artwork Count1 - Persistent IDB23501956AB063BF - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%201%5D/1-19%20Scarlatti%20(D)_%20Harpsichord%20Sonata%20In%20A,%20K%20322.m4a - File Folder Count4 - Library Folder Count1 - - 9612 - - Track ID9612 - NameWeiss: Fantasie - ArtistJulian Byzantine - ComposerSilvius Leopold Weiss - Album50 Best Guitar [Disc 1] - GenreClassical - KindAAC audio file - Size5325268 - Total Time152880 - Disc Number1 - Disc Count3 - Track Number20 - Track Count21 - Year1985 - Date Modified2011-10-15T14:05:25Z - Date Added2011-10-15T13:46:23Z - Bit Rate256 - Sample Rate44100 - Play Count2 - Play Date3403631331 - Play Date UTC2011-11-08T15:38:51Z - Rating20 - Rating Computed - Album Rating20 - Normalization1257 - Compilation - Artwork Count1 - Persistent ID08C53E8F98EED6FA - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%201%5D/1-20%20Weiss_%20Fantasie.m4a - File Folder Count4 - Library Folder Count1 - - 9614 - - Track ID9614 - NameVivaldi: Mandolin Concerto In C, RV 425 - 3. Allegro - ArtistChristopher Parkening; Iona Brown: Academy Of St. Martin In The Fields - ComposerAntonio Vivaldi - Album50 Best Guitar [Disc 1] - GenreClassical - KindAAC audio file - Size8930612 - Total Time262280 - Disc Number1 - Disc Count3 - Track Number21 - Track Count21 - Year1984 - Date Modified2011-10-15T14:05:26Z - Date Added2011-10-15T13:46:29Z - Bit Rate256 - Sample Rate44100 - Play Count2 - Play Date3403635125 - Play Date UTC2011-11-08T16:42:05Z - Skip Count1 - Skip Date2011-12-16T13:49:27Z - Rating20 - Rating Computed - Album Rating20 - Normalization1256 - Compilation - Artwork Count1 - Persistent ID407DA7D7BADEC952 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%201%5D/1-21%20Vivaldi_%20Mandolin%20Concerto%20In%20C,%20RV%20425%20-%203.%20Allegro.m4a - File Folder Count4 - Library Folder Count1 - - 9616 - - Track ID9616 - NameSanz: Suite Española - La Miñona De Cataluña - ArtistChristopher Parkening - ComposerGaspar Sanz - Album50 Best Guitar [Disc 2] - GenreClassical - KindAAC audio file - Size2758953 - Total Time84333 - Disc Number2 - Disc Count6 - Track Number1 - Track Count16 - Year1991 - Date Modified2011-10-19T01:54:46Z - Date Added2011-10-15T13:47:35Z - Bit Rate256 - Sample Rate44100 - Normalization1256 - Compilation - Artwork Count1 - Persistent ID827B54921545152D - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%202%5D/2-01%20Sanz_%20Suite%20Espan%CC%83ola%20-%20La%20Min%CC%83ona%20De%20Catalun%CC%83a.m4a - File Folder Count4 - Library Folder Count1 - - 9618 - - Track ID9618 - NameSor: Variations On A Theme Of Mozart - ArtistChristopher Parkening - ComposerFernando Sor - Album50 Best Guitar [Disc 2] - GenreClassical - KindAAC audio file - Size15088853 - Total Time457773 - Disc Number2 - Disc Count6 - Track Number2 - Track Count16 - Year1991 - Date Modified2011-10-19T01:54:47Z - Date Added2011-10-15T13:47:52Z - Bit Rate256 - Sample Rate44100 - Play Count3 - Play Date3401996456 - Play Date UTC2011-10-20T17:30:56Z - Normalization1255 - Compilation - Artwork Count1 - Persistent ID75BC9C6717F0C427 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%202%5D/2-02%20Sor_%20Variations%20On%20A%20Theme%20Of%20Mozart.m4a - File Folder Count4 - Library Folder Count1 - - 9620 - - Track ID9620 - NameSor: Grand Solo In D, Op. 14 - ArtistManuel Barrueco - ComposerFernando Sor - Album50 Best Guitar [Disc 2] - GenreClassical - KindAAC audio file - Size17687257 - Total Time530346 - Disc Number2 - Disc Count6 - Track Number3 - Track Count16 - Year1988 - Date Modified2011-10-19T01:54:48Z - Date Added2011-10-15T13:49:09Z - Bit Rate256 - Sample Rate44100 - Play Count2 - Play Date3401734995 - Play Date UTC2011-10-17T16:53:15Z - Normalization1256 - Compilation - Artwork Count1 - Persistent ID3081BBA4F914694F - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%202%5D/2-03%20Sor_%20Grand%20Solo%20In%20D,%20Op.%2014.m4a - File Folder Count4 - Library Folder Count1 - - 9622 - - Track ID9622 - NameAlbéniz: Suite Española #1, Op. 47 - Granada - ArtistAndrés Segovia - ComposerIsaac Albéniz - Album50 Best Guitar [Disc 2] - GenreClassical - KindAAC audio file - Size8659589 - Total Time261200 - Disc Number2 - Disc Count6 - Track Number4 - Track Count16 - Year1939 - Date Modified2011-10-19T01:54:49Z - Date Added2011-10-15T13:50:25Z - Bit Rate256 - Sample Rate44100 - Normalization928 - Compilation - Artwork Count1 - Persistent ID113F48E17800B85B - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%202%5D/2-04%20Albe%CC%81niz_%20Suite%20Espan%CC%83ola%20%231,%20Op.%2047%20-%20Granada.m4a - File Folder Count4 - Library Folder Count1 - - 9624 - - Track ID9624 - NameAlbéniz: Suite Española #1, Op. 47 - Sevilla - ArtistAndrés Segovia - ComposerIsaac Albéniz - Album50 Best Guitar [Disc 2] - GenreClassical - KindAAC audio file - Size8525485 - Total Time258320 - Disc Number2 - Disc Count6 - Track Number5 - Track Count16 - Year1939 - Date Modified2011-10-19T01:54:49Z - Date Added2011-10-15T13:50:59Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3401735678 - Play Date UTC2011-10-17T17:04:38Z - Normalization804 - Compilation - Artwork Count1 - Persistent IDDE2855EC1EAD3C30 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%202%5D/2-05%20Albe%CC%81niz_%20Suite%20Espan%CC%83ola%20%231,%20Op.%2047%20-%20Sevilla.m4a - File Folder Count4 - Library Folder Count1 - - 9626 - - Track ID9626 - NameTárrega: Capricho Arabe - ArtistWulfin Lieske - ComposerFrancisco Tárrega - Album50 Best Guitar [Disc 2] - GenreClassical - KindAAC audio file - Size10535994 - Total Time317586 - Disc Number2 - Disc Count6 - Track Number6 - Track Count16 - Year1992 - Date Modified2011-10-19T01:54:50Z - Date Added2011-10-15T13:51:31Z - Bit Rate256 - Sample Rate44100 - Play Count5 - Play Date3403628968 - Play Date UTC2011-11-08T14:59:28Z - Skip Count1 - Skip Date2011-10-27T09:50:15Z - Normalization793 - Compilation - Artwork Count1 - Persistent ID740BF28B57B89182 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%202%5D/2-06%20Ta%CC%81rrega_%20Capricho%20Arabe.m4a - File Folder Count4 - Library Folder Count1 - - 9628 - - Track ID9628 - NameTárrega: Lágrima - ArtistWulfin Lieske - ComposerFrancisco Tárrega - Album50 Best Guitar [Disc 2] - GenreClassical - KindAAC audio file - Size3344345 - Total Time101160 - Disc Number2 - Disc Count6 - Track Number7 - Track Count16 - Year1992 - Date Modified2011-10-19T01:54:50Z - Date Added2011-10-15T13:52:08Z - Bit Rate256 - Sample Rate44100 - Play Count5 - Play Date3406907718 - Play Date UTC2011-12-16T13:45:18Z - Normalization382 - Compilation - Artwork Count1 - Persistent ID1ACD6A7578429845 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%202%5D/2-07%20Ta%CC%81rrega_%20La%CC%81grima.m4a - File Folder Count4 - Library Folder Count1 - - 9630 - - Track ID9630 - NameTárrega: Maria - ArtistWulfin Lieske - ComposerFrancisco Tárrega - Album50 Best Guitar [Disc 2] - GenreClassical - KindAAC audio file - Size3189118 - Total Time96560 - Disc Number2 - Disc Count6 - Track Number8 - Track Count16 - Year1992 - Date Modified2011-10-19T01:54:50Z - Date Added2011-10-15T13:52:19Z - Bit Rate256 - Sample Rate44100 - Play Count6 - Play Date3402574240 - Play Date UTC2011-10-27T10:00:40Z - Normalization792 - Compilation - Artwork Count1 - Persistent ID591D962744FF40DE - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%202%5D/2-08%20Ta%CC%81rrega_%20Maria.m4a - File Folder Count4 - Library Folder Count1 - - 9632 - - Track ID9632 - NameTárrega: Mazurken - ArtistWulfin Lieske - ComposerFrancisco Tárrega - Album50 Best Guitar [Disc 2] - GenreClassical - KindAAC audio file - Size3568255 - Total Time107573 - Disc Number2 - Disc Count6 - Track Number9 - Track Count16 - Year1992 - Date Modified2011-10-19T01:54:51Z - Date Added2011-10-15T13:52:30Z - Bit Rate256 - Sample Rate44100 - Play Count3 - Play Date3401995740 - Play Date UTC2011-10-20T17:19:00Z - Normalization315 - Compilation - Artwork Count1 - Persistent IDA309C5458D2E60E0 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%202%5D/2-09%20Ta%CC%81rrega_%20Mazurken.m4a - File Folder Count4 - Library Folder Count1 - - 9634 - - Track ID9634 - NameTárrega: Recuerdos De La Alhambra - ArtistWulfin Lieske - ComposerFrancisco Tárrega - Album50 Best Guitar [Disc 2] - GenreClassical - KindAAC audio file - Size10787467 - Total Time327146 - Disc Number2 - Disc Count6 - Track Number10 - Track Count16 - Year1992 - Date Modified2011-10-19T01:54:51Z - Date Added2011-10-15T13:52:42Z - Bit Rate256 - Sample Rate44100 - Play Count3 - Play Date3402087711 - Play Date UTC2011-10-21T18:51:51Z - Normalization653 - Compilation - Artwork Count1 - Persistent ID8A5A09C20E9373F9 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%202%5D/2-10%20Ta%CC%81rrega_%20Recuerdos%20De%20La%20Alhambra.m4a - File Folder Count4 - Library Folder Count1 - - 9636 - - Track ID9636 - NameAlbéniz: Recuerdos De Viaje, Op. 71 - 1. En El Mar - ArtistJulian Byzantine - ComposerIsaac Albéniz - Album50 Best Guitar [Disc 2] - GenreClassical - KindAAC audio file - Size11405399 - Total Time346173 - Disc Number2 - Disc Count6 - Track Number11 - Track Count16 - Year1993 - Date Modified2011-10-19T01:54:52Z - Date Added2011-10-15T13:53:17Z - Bit Rate256 - Sample Rate44100 - Play Count2 - Play Date3402087232 - Play Date UTC2011-10-21T18:43:52Z - Normalization605 - Compilation - Artwork Count1 - Persistent IDEBC3CF8526564AF3 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%202%5D/2-11%20Albe%CC%81niz_%20Recuerdos%20De%20Viaje,%20Op.%2071%20-%201.%20En%20El%20Mar.m4a - File Folder Count4 - Library Folder Count1 - - 9638 - - Track ID9638 - NameAlbéniz: Recuerdos De Viaje, Op. 71 - 2. Asturias - ArtistJulian Byzantine - ComposerIsaac Albéniz - Album50 Best Guitar [Disc 2] - GenreClassical - KindAAC audio file - Size14442144 - Total Time435933 - Disc Number2 - Disc Count6 - Track Number12 - Track Count16 - Year1993 - Date Modified2011-10-19T01:54:53Z - Date Added2011-10-15T13:53:51Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3401736673 - Play Date UTC2011-10-17T17:21:13Z - Normalization1254 - Compilation - Artwork Count1 - Persistent ID8A9630755EBA28F9 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%202%5D/2-12%20Albe%CC%81niz_%20Recuerdos%20De%20Viaje,%20Op.%2071%20-%202.%20Asturias.m4a - File Folder Count4 - Library Folder Count1 - - 9640 - - Track ID9640 - NameAlbéniz: Recuerdos De Viaje, Op. 71 - 5. Puerta De Tierra (Bolero) - ArtistJulian Byzantine - ComposerIsaac Albéniz - Album50 Best Guitar [Disc 2] - GenreClassical - KindAAC audio file - Size7263585 - Total Time217333 - Disc Number2 - Disc Count6 - Track Number13 - Track Count16 - Year1993 - Date Modified2011-10-19T01:54:53Z - Date Added2011-10-15T13:54:32Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3401735419 - Play Date UTC2011-10-17T17:00:19Z - Skip Count1 - Skip Date2011-10-20T17:38:57Z - Normalization1234 - Compilation - Artwork Count1 - Persistent ID73B208DB1006383F - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%202%5D/2-13%20Albe%CC%81niz_%20Recuerdos%20De%20Viaje,%20Op.%2071%20-%205.%20Puerta%20De%20Tierra%20(Bolero).m4a - File Folder Count4 - Library Folder Count1 - - 9642 - - Track ID9642 - NameAlbéniz: Recuerdos De Viaje, Op. 71 - 6. Rumores De La Caleta (Malagueña) - ArtistJulian Byzantine - ComposerIsaac Albéniz - Album50 Best Guitar [Disc 2] - GenreClassical - KindAAC audio file - Size8527020 - Total Time258306 - Disc Number2 - Disc Count6 - Track Number14 - Track Count16 - Year1993 - Date Modified2011-10-19T01:54:54Z - Date Added2011-10-15T13:54:52Z - Bit Rate256 - Sample Rate44100 - Play Count3 - Play Date3401995998 - Play Date UTC2011-10-20T17:23:18Z - Skip Count1 - Skip Date2011-10-17T17:33:42Z - Normalization553 - Compilation - Artwork Count1 - Persistent IDB172EB7F865C7868 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%202%5D/2-14%20Albe%CC%81niz_%20Recuerdos%20De%20Viaje,%20Op.%2071%20-%206.%20Rumores%20De%20La%20Caleta%20(Malaguen%CC%83a).m4a - File Folder Count4 - Library Folder Count1 - - 9644 - - Track ID9644 - NameMalats: Serenata Española - ArtistJulian Byzantine - ComposerJoaquin Malats - Album50 Best Guitar [Disc 2] - GenreClassical - KindAAC audio file - Size7566793 - Total Time228146 - Disc Number2 - Disc Count6 - Track Number15 - Track Count16 - Year1981 - Date Modified2011-10-19T01:54:55Z - Date Added2011-10-15T13:55:15Z - Bit Rate256 - Sample Rate44100 - Normalization793 - Compilation - Artwork Count1 - Persistent ID96960A21E5DA5A6B - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%202%5D/2-15%20Malats_%20Serenata%20Espan%CC%83ola.m4a - File Folder Count4 - Library Folder Count1 - - 9646 - - Track ID9646 - NameLlobet: Canciones Populares Catalanas - ArtistWulfin Lieske - ComposerMiguel Llobet - Album50 Best Guitar [Disc 2] - GenreClassical - KindAAC audio file - Size3242051 - Total Time99666 - Disc Number2 - Disc Count6 - Track Number16 - Track Count16 - Year1992 - Date Modified2011-10-19T01:54:55Z - Date Added2011-10-15T13:55:35Z - Bit Rate256 - Sample Rate44100 - Play Count3 - Play Date3402166910 - Play Date UTC2011-10-22T16:51:50Z - Normalization398 - Compilation - Artwork Count1 - Persistent IDE7636DD59F77C94C - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%202%5D/2-16%20Llobet_%20Canciones%20Populares%20Catalanas.m4a - File Folder Count4 - Library Folder Count1 - - 9648 - - Track ID9648 - NameYepes: Romance, Jeux Interdits - ArtistPierre Laniau - ComposerNarciso Yepes - Album50 Best Guitar [Disc 3] - GenreClassical - KindAAC audio file - Size5146657 - Total Time156026 - Disc Number3 - Disc Count6 - Track Number1 - Track Count13 - Year2008 - Date Modified2011-10-19T01:55:05Z - Date Added2011-10-15T13:59:56Z - Bit Rate256 - Sample Rate44100 - Play Count2 - Play Date3406907876 - Play Date UTC2011-12-16T13:47:56Z - Normalization829 - Compilation - Artwork Count1 - Persistent IDE62AA4037806FA48 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%203%5D/3-01%20Yepes_%20Romance,%20Jeux%20Interdits.m4a - File Folder Count4 - Library Folder Count1 - - 9650 - - Track ID9650 - NameFalla/Barrueco: El Sombrero De Tres Picos - Die Nacht, Tanz Des Müllers - ArtistManuel Barrueco - ComposerManuel De Falla - Album50 Best Guitar [Disc 3] - GenreClassical - KindAAC audio file - Size13146301 - Total Time396613 - Disc Number3 - Disc Count6 - Track Number2 - Track Count13 - Year2008 - Date Modified2011-10-19T01:55:06Z - Date Added2011-10-15T14:00:11Z - Bit Rate256 - Sample Rate44100 - Normalization1257 - Compilation - Artwork Count1 - Persistent ID17A3982B343CD968 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%203%5D/3-02%20Falla_Barrueco_%20El%20Sombrero%20De%20Tres%20Picos%20-%20Die%20Nacht,%20Tanz%20Des%20Mu%CC%88llers.m4a - File Folder Count4 - Library Folder Count1 - - 9652 - - Track ID9652 - NameFalla/Barrueco: El Sombrero De Tres Picos - Tanz Des Corregidors, Tanz Der Müllerin - ArtistManuel Barrueco - ComposerManuel De Falla - Album50 Best Guitar [Disc 3] - GenreClassical - KindAAC audio file - Size12672884 - Total Time382866 - Disc Number3 - Disc Count6 - Track Number3 - Track Count13 - Year2008 - Date Modified2011-10-19T01:55:07Z - Date Added2011-10-15T14:00:44Z - Bit Rate256 - Sample Rate44100 - Normalization1257 - Compilation - Artwork Count1 - Persistent ID255D3B421BA4D65E - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%203%5D/3-03%20Falla_Barrueco_%20El%20Sombrero%20De%20Tres%20Picos%20-%20Tanz%20Des%20Corregidors,%20Tanz%20Der%20Mu%CC%88llerin.m4a - File Folder Count4 - Library Folder Count1 - - 9654 - - Track ID9654 - NameRodrigo: Sonata A La Española - 1. Allegro Assai; 2. Adagio; 3. Allegro Moderato - ArtistErnesto Bitetti - ComposerJoaquín Rodrigo - Album50 Best Guitar [Disc 3] - GenreClassical - KindAAC audio file - Size15249128 - Total Time460680 - Disc Number3 - Disc Count6 - Track Number4 - Track Count13 - Year2008 - Date Modified2011-10-19T01:55:08Z - Date Added2011-10-15T14:01:12Z - Bit Rate256 - Sample Rate44100 - Normalization1255 - Compilation - Artwork Count1 - Persistent ID70990C5C2F80A2C0 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%203%5D/3-04%20Rodrigo_%20Sonata%20A%20La%20Espan%CC%83ola%20-%201.%20Allegro%20Assai%3B%202.%20Adagio%3B%203.%20Allegro%20Moderato.m4a - File Folder Count4 - Library Folder Count1 - - 9656 - - Track ID9656 - NameGranados: Goyescas - La Maja De Goya, Tonadilla - ArtistEliot Fisk - ComposerEnrique Granados - Album50 Best Guitar [Disc 3] - GenreClassical - KindAAC audio file - Size8877439 - Total Time268306 - Disc Number3 - Disc Count6 - Track Number5 - Track Count13 - Year2008 - Date Modified2011-10-19T01:55:09Z - Date Added2011-10-15T14:01:42Z - Bit Rate256 - Sample Rate44100 - Normalization1255 - Compilation - Artwork Count1 - Persistent ID66A7FDF9CEE12856 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%203%5D/3-05%20Granados_%20Goyescas%20-%20La%20Maja%20De%20Goya,%20Tonadilla.m4a - File Folder Count4 - Library Folder Count1 - - 9658 - - Track ID9658 - NameGranados: Danzas Espanolas - 5. Andaluza - ArtistEliot Fisk - ComposerEnrique Granados - Album50 Best Guitar [Disc 3] - GenreClassical - KindAAC audio file - Size9358723 - Total Time285426 - Disc Number3 - Disc Count6 - Track Number6 - Track Count13 - Year2008 - Date Modified2011-10-19T01:55:09Z - Date Added2011-10-15T14:01:58Z - Bit Rate256 - Sample Rate44100 - Normalization1256 - Compilation - Artwork Count1 - Persistent IDA57471B8D284FA36 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%203%5D/3-06%20Granados_%20Danzas%20Espanolas%20-%205.%20Andaluza.m4a - File Folder Count4 - Library Folder Count1 - - 9660 - - Track ID9660 - NameTurina: Hommage À Tárrega - 1. Garrotin; 2. Soleares - ArtistErnesto Bitetti - ComposerJoaquin Turina - Album50 Best Guitar [Disc 3] - GenreClassical - KindAAC audio file - Size9266103 - Total Time279800 - Disc Number3 - Disc Count6 - Track Number7 - Track Count13 - Year2008 - Date Modified2011-10-19T01:55:10Z - Date Added2011-10-15T14:02:15Z - Bit Rate256 - Sample Rate44100 - Normalization1256 - Compilation - Artwork Count1 - Persistent IDB6C43D3FB4C90506 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%203%5D/3-07%20Turina_%20Hommage%20A%CC%80%20Ta%CC%81rrega%20-%201.%20Garrotin%3B%202.%20Soleares.m4a - File Folder Count4 - Library Folder Count1 - - 9662 - - Track ID9662 - NameGranados: Valses Poeticos - Introduction, Valse 1, Etc. - ArtistDario Rossetti-Bonell - ComposerEnrique Granados - Album50 Best Guitar [Disc 3] - GenreClassical - KindAAC audio file - Size16978884 - Total Time512146 - Disc Number3 - Disc Count6 - Track Number8 - Track Count13 - Year2008 - Date Modified2011-10-19T01:55:11Z - Date Added2011-10-15T14:02:30Z - Bit Rate256 - Sample Rate44100 - Normalization1256 - Compilation - Artwork Count1 - Persistent IDB6455930A9E9300A - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%203%5D/3-08%20Granados_%20Valses%20Poeticos%20-%20Introduction,%20Valse%201,%20Etc..m4a - File Folder Count4 - Library Folder Count1 - - 9664 - - Track ID9664 - NameFalla: Omaggio Per Chitarra - ArtistManuel Barrueco - ComposerManuel De Falla - Album50 Best Guitar [Disc 3] - GenreClassical - KindAAC audio file - Size5323609 - Total Time160640 - Disc Number3 - Disc Count6 - Track Number9 - Track Count13 - Year2008 - Date Modified2011-10-19T01:55:11Z - Date Added2011-10-15T14:02:56Z - Bit Rate256 - Sample Rate44100 - Normalization998 - Compilation - Artwork Count1 - Persistent IDCB40CAD3587BD2E7 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%203%5D/3-09%20Falla_%20Omaggio%20Per%20Chitarra.m4a - File Folder Count4 - Library Folder Count1 - - 9666 - - Track ID9666 - NameRodrigo: Invocation Et Danse - ArtistManuel Barrueco - ComposerJoaquín Rodrigo - Album50 Best Guitar [Disc 3] - GenreClassical - KindAAC audio file - Size14974145 - Total Time454000 - Disc Number3 - Disc Count6 - Track Number10 - Track Count13 - Year2008 - Date Modified2011-10-19T01:55:12Z - Date Added2011-10-15T14:03:04Z - Bit Rate256 - Sample Rate44100 - Normalization1256 - Compilation - Artwork Count1 - Persistent IDEB8446E06FF7CCE2 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%203%5D/3-10%20Rodrigo_%20Invocation%20Et%20Danse.m4a - File Folder Count4 - Library Folder Count1 - - 9668 - - Track ID9668 - NameRodrigo: 3 Piezas Españolas - Fandango - ArtistManuel Barrueco - ComposerJoaquín Rodrigo - Album50 Best Guitar [Disc 3] - GenreClassical - KindAAC audio file - Size7577633 - Total Time229413 - Disc Number3 - Disc Count6 - Track Number11 - Track Count13 - Year2008 - Date Modified2011-10-19T01:55:13Z - Date Added2011-10-15T14:03:25Z - Bit Rate256 - Sample Rate44100 - Normalization1256 - Compilation - Artwork Count1 - Persistent IDBDEC945552077055 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%203%5D/3-11%20Rodrigo_%203%20Piezas%20Espan%CC%83olas%20-%20Fandango.m4a - File Folder Count4 - Library Folder Count1 - - 9670 - - Track ID9670 - NameRodrigo: 3 Piezas Españolas - Passacaglia - ArtistManuel Barrueco - ComposerJoaquín Rodrigo - Album50 Best Guitar [Disc 3] - GenreClassical - KindAAC audio file - Size9212400 - Total Time277386 - Disc Number3 - Disc Count6 - Track Number12 - Track Count13 - Year2008 - Date Modified2011-10-19T01:55:13Z - Date Added2011-10-15T14:03:36Z - Bit Rate256 - Sample Rate44100 - Normalization1256 - Compilation - Artwork Count1 - Persistent IDAD7FB15769236A05 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%203%5D/3-12%20Rodrigo_%203%20Piezas%20Espan%CC%83olas%20-%20Passacaglia.m4a - File Folder Count4 - Library Folder Count1 - - 9672 - - Track ID9672 - NameRodrigo: 3 Piezas Españolas - Zapateado - ArtistManuel Barrueco - ComposerJoaquín Rodrigo - Album50 Best Guitar [Disc 3] - GenreClassical - KindAAC audio file - Size5966469 - Total Time179720 - Disc Number3 - Disc Count6 - Track Number13 - Track Count13 - Year2008 - Date Modified2011-10-19T01:55:14Z - Date Added2011-10-15T14:03:48Z - Bit Rate256 - Sample Rate44100 - Normalization630 - Compilation - Artwork Count1 - Persistent ID46F298E9F9F66327 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%203%5D/3-13%20Rodrigo_%203%20Piezas%20Espan%CC%83olas%20-%20Zapateado.m4a - File Folder Count4 - Library Folder Count1 - - 9674 - - Track ID9674 - NamePulse - Sections I-X - Pulse - ArtistSteve Reich - Album ArtistSteve Reich - ComposerReich, Steve - AlbumMusic For 18 Musicians - GenreClassical - KindMPEG audio file - Size108893762 - Total Time3393515 - Disc Number1 - Disc Count1 - Track Number1 - Track Count1 - Year2000 - Date Modified2011-10-19T09:30:15Z - Date Added2011-10-19T11:14:12Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202892027 - Play Count1 - Play Date3402407004 - Play Date UTC2011-10-25T11:33:24Z - Skip Count4 - Skip Date2011-10-27T11:18:56Z - Artwork Count1 - Persistent ID74639A026B1BF509 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Steve%20Reich/Music%20For%2018%20Musicians/01%20Pulse%20-%20Sections%20I-X%20-%20Pulse.mp3 - File Folder Count4 - Library Folder Count1 - - 9676 - - Track ID9676 - NameSymphony No.5 in E flat, Op.82 - 1. Tempo molto moderato - Largamente - Allegro moderato - ArtistBoston Symphony Orchestra - Album ArtistBoston Symphony Orchestra - ComposerJean Sibelius - AlbumSibelius: Symphonies Nos.5 & 7 - GenreClassical - KindMPEG audio file - Size29261566 - Total Time908199 - Disc Number1 - Disc Count1 - Track Number1 - Track Count8 - Year2001 - Date Modified2011-10-20T11:15:44Z - Date Added2011-10-19T11:14:12Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 205455073 - Artwork Count1 - Persistent IDA5C05C2A16F40431 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Boston%20Symphony%20Orchestra/Sibelius_%20Symphonies%20Nos.5%20&%207/01%20Symphony%20No.5%20in%20E%20flat,%20Op.82%20-%201.%20Tempo%20molto%20moderato%20-%20Largamente%20-%20Allegro%20moderato.mp3 - File Folder Count4 - Library Folder Count1 - - 9678 - - Track ID9678 - NameSymphony No.5 in E flat, Op.82 - 2. Andante mosso, quasi allegretto - ArtistBoston Symphony Orchestra - Album ArtistBoston Symphony Orchestra - ComposerJean Sibelius - AlbumSibelius: Symphonies Nos.5 & 7 - GenreClassical - KindMPEG audio file - Size17612897 - Total Time544182 - Disc Number1 - Disc Count1 - Track Number2 - Track Count8 - Year2001 - Date Modified2011-10-20T11:16:24Z - Date Added2011-10-19T11:14:12Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 205455074 - Artwork Count1 - Persistent IDA0E180F4882CA016 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Boston%20Symphony%20Orchestra/Sibelius_%20Symphonies%20Nos.5%20&%207/02%20Symphony%20No.5%20in%20E%20flat,%20Op.82%20-%202.%20Andante%20mosso,%20quasi%20allegretto.mp3 - File Folder Count4 - Library Folder Count1 - - 9680 - - Track ID9680 - NameSymphony No.5 in E flat, Op.82 - 3. Allegro molto - ArtistBoston Symphony Orchestra - Album ArtistBoston Symphony Orchestra - ComposerJean Sibelius - AlbumSibelius: Symphonies Nos.5 & 7 - GenreClassical - KindMPEG audio file - Size15613609 - Total Time481671 - Disc Number1 - Disc Count1 - Track Number3 - Track Count8 - Year2001 - Date Modified2011-10-20T11:16:40Z - Date Added2011-10-19T11:14:12Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 205455075 - Artwork Count1 - Persistent ID95D67450FD325F1C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Boston%20Symphony%20Orchestra/Sibelius_%20Symphonies%20Nos.5%20&%207/03%20Symphony%20No.5%20in%20E%20flat,%20Op.82%20-%203.%20Allegro%20molto.mp3 - File Folder Count4 - Library Folder Count1 - - 9682 - - Track ID9682 - NameSymphony No.7 in C, Op.105 - Adagio - - ArtistBoston Symphony Orchestra - Album ArtistBoston Symphony Orchestra - ComposerJean Sibelius - AlbumSibelius: Symphonies Nos.5 & 7 - GenreClassical - KindMPEG audio file - Size19637973 - Total Time607791 - Disc Number1 - Disc Count1 - Track Number4 - Track Count8 - Year2001 - Date Modified2011-10-19T09:53:57Z - Date Added2011-10-19T11:14:12Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 205455076 - Artwork Count1 - Persistent ID3BA7282E7197BCD4 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Boston%20Symphony%20Orchestra/Sibelius_%20Symphonies%20Nos.5%20&%207/04%20Symphony%20No.7%20in%20C,%20Op.105%20-%20Adagio%20-.mp3 - File Folder Count4 - Library Folder Count1 - - 9684 - - Track ID9684 - NameSymphony No.7 in C, Op.105 - Vivacissimo - Adagio - - ArtistBoston Symphony Orchestra - Album ArtistBoston Symphony Orchestra - ComposerJean Sibelius - AlbumSibelius: Symphonies Nos.5 & 7 - GenreClassical - KindMPEG audio file - Size5026984 - Total Time151196 - Disc Number1 - Disc Count1 - Track Number5 - Track Count8 - Year2001 - Date Modified2011-10-19T10:15:47Z - Date Added2011-10-19T11:14:12Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 205455077 - Artwork Count1 - Persistent IDFAEDE1DD1696E5DE - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Boston%20Symphony%20Orchestra/Sibelius_%20Symphonies%20Nos.5%20&%207/05%20Symphony%20No.7%20in%20C,%20Op.105%20-%20Vivacissimo%20-%20Adagio%20-.mp3 - File Folder Count4 - Library Folder Count1 - - 9686 - - Track ID9686 - NameSymphony No.7 in C, Op.105 - Allegro molto moderato - Allegro moderato - - ArtistBoston Symphony Orchestra - Album ArtistBoston Symphony Orchestra - ComposerJean Sibelius - AlbumSibelius: Symphonies Nos.5 & 7 - GenreClassical - KindMPEG audio file - Size7680231 - Total Time234109 - Disc Number1 - Disc Count1 - Track Number6 - Track Count8 - Year2001 - Date Modified2011-10-19T10:14:04Z - Date Added2011-10-19T11:14:12Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 205455078 - Artwork Count1 - Persistent IDCD7EBA80B90049C4 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Boston%20Symphony%20Orchestra/Sibelius_%20Symphonies%20Nos.5%20&%207/06%20Symphony%20No.7%20in%20C,%20Op.105%20-%20Allegro%20molto%20moderato%20-%20Allegro%20moderato%20-.mp3 - File Folder Count4 - Library Folder Count1 - - 9688 - - Track ID9688 - NameSymphony No.7 in C, Op.105 - Vivace - Presto - Adagio - Largamente molto - - ArtistBoston Symphony Orchestra - Album ArtistBoston Symphony Orchestra - ComposerJean Sibelius - AlbumSibelius: Symphonies Nos.5 & 7 - GenreClassical - KindMPEG audio file - Size5967438 - Total Time180584 - Disc Number1 - Disc Count1 - Track Number7 - Track Count8 - Year2001 - Date Modified2011-10-19T09:58:23Z - Date Added2011-10-19T11:14:12Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 205455079 - Artwork Count1 - Persistent ID042F7B481AD7FA2F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Boston%20Symphony%20Orchestra/Sibelius_%20Symphonies%20Nos.5%20&%207/07%20Symphony%20No.7%20in%20C,%20Op.105%20-%20Vivace%20-%20Presto%20-%20Adagio%20-%20Largamente%20molto%20-.mp3 - File Folder Count4 - Library Folder Count1 - - 9690 - - Track ID9690 - NameSymphony No.7 in C, Op.105 - Affettuoso - ArtistBoston Symphony Orchestra - Album ArtistBoston Symphony Orchestra - ComposerJean Sibelius - AlbumSibelius: Symphonies Nos.5 & 7 - GenreClassical - KindMPEG audio file - Size4089060 - Total Time121887 - Disc Number1 - Disc Count1 - Track Number8 - Track Count8 - Year2001 - Date Modified2011-10-19T09:55:54Z - Date Added2011-10-19T11:14:12Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 205455080 - Artwork Count1 - Persistent IDC70C564D74CC759B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Boston%20Symphony%20Orchestra/Sibelius_%20Symphonies%20Nos.5%20&%207/08%20Symphony%20No.7%20in%20C,%20Op.105%20-%20Affettuoso.mp3 - File Folder Count4 - Library Folder Count1 - - 9692 - - Track ID9692 - NameThe Rite of Spring (Scenes of Pagan Russia in two parts): Part One - Adoration of the Earth: Introduction. Lento (Instrumental) - ArtistLeonard Bernstein;London Symphony Orchestra - Album ArtistLeonard Bernstein - ComposerIgor Stravinsky - AlbumStravinsky: The Rite of Spring & Suite from "The Firebird" [Expanded Edition] - GenreClassical - KindMPEG audio file - Size6335623 - Total Time200594 - Disc Number1 - Disc Count1 - Track Number1 - Track Count24 - Year2004 - Date Modified2011-10-19T10:51:18Z - Date Added2011-10-19T11:14:12Z - Bit Rate244 - Sample Rate44100 - CommentsAmazon.com Song ID: 203958850 - Artwork Count1 - Sort NameRite of Spring (Scenes of Pagan Russia in two parts): Part One - Adoration of the Earth: Introduction. Lento (Instrumental) - Persistent ID4B91F578D1B43C0B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Leonard%20Bernstein/Stravinsky_%20The%20Rite%20of%20Spring%20&%20Suite%20from%20_The%20Firebird_%20%5BExpanded%20Edition%5D/01%20The%20Rite%20of%20Spring%20(Scenes%20of%20Pagan%20Russia%20in%20two%20parts)_%20Part%20One%20-%20Adoration%20of%20the%20Earth_%20Introduction.%20Lento%20(Instrumental).mp3 - File Folder Count4 - Library Folder Count1 - - 9694 - - Track ID9694 - NameThe Rite of Spring (Scenes of Pagan Russia in two parts): The Augurs of Spring (Instrumental) - ArtistLeonard Bernstein;London Symphony Orchestra - Album ArtistLeonard Bernstein - ComposerIgor Stravinsky - AlbumStravinsky: The Rite of Spring & Suite from "The Firebird" [Expanded Edition] - GenreClassical - KindMPEG audio file - Size6230772 - Total Time192783 - Disc Number1 - Disc Count1 - Track Number2 - Track Count24 - Year2004 - Date Modified2011-10-19T10:44:34Z - Date Added2011-10-19T11:14:12Z - Bit Rate250 - Sample Rate44100 - CommentsAmazon.com Song ID: 203958863 - Artwork Count1 - Sort NameRite of Spring (Scenes of Pagan Russia in two parts): The Augurs of Spring (Instrumental) - Persistent IDECD660F8F81236BF - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Leonard%20Bernstein/Stravinsky_%20The%20Rite%20of%20Spring%20&%20Suite%20from%20_The%20Firebird_%20%5BExpanded%20Edition%5D/02%20The%20Rite%20of%20Spring%20(Scenes%20of%20Pagan%20Russia%20in%20two%20parts)_%20The%20Augurs%20of%20Spring%20(Instrumental).mp3 - File Folder Count4 - Library Folder Count1 - - 9696 - - Track ID9696 - NameThe Rite of Spring (Scenes of Pagan Russia in two parts): Mock Abduction (Instrumental) - ArtistLeonard Bernstein;London Symphony Orchestra - Album ArtistLeonard Bernstein - ComposerIgor Stravinsky - AlbumStravinsky: The Rite of Spring & Suite from "The Firebird" [Expanded Edition] - GenreClassical - KindMPEG audio file - Size2656706 - Total Time78393 - Disc Number1 - Disc Count1 - Track Number3 - Track Count24 - Year2004 - Date Modified2011-10-19T10:32:40Z - Date Added2011-10-19T11:14:12Z - Bit Rate250 - Sample Rate44100 - CommentsAmazon.com Song ID: 203958875 - Artwork Count1 - Sort NameRite of Spring (Scenes of Pagan Russia in two parts): Mock Abduction (Instrumental) - Persistent ID0BD17D793FDE443B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Leonard%20Bernstein/Stravinsky_%20The%20Rite%20of%20Spring%20&%20Suite%20from%20_The%20Firebird_%20%5BExpanded%20Edition%5D/03%20The%20Rite%20of%20Spring%20(Scenes%20of%20Pagan%20Russia%20in%20two%20parts)_%20Mock%20Abduction%20(Instrumental).mp3 - File Folder Count4 - Library Folder Count1 - - 9698 - - Track ID9698 - NameThe Rite of Spring (Scenes of Pagan Russia in two parts): Spring Round Dances (Instrumental) - ArtistLeonard Bernstein;London Symphony Orchestra - Album ArtistLeonard Bernstein - ComposerIgor Stravinsky - AlbumStravinsky: The Rite of Spring & Suite from "The Firebird" [Expanded Edition] - GenreClassical - KindMPEG audio file - Size6793625 - Total Time211539 - Disc Number1 - Disc Count1 - Track Number4 - Track Count24 - Year2004 - Date Modified2011-10-19T10:50:20Z - Date Added2011-10-19T11:14:12Z - Bit Rate249 - Sample Rate44100 - CommentsAmazon.com Song ID: 203958880 - Artwork Count1 - Sort NameRite of Spring (Scenes of Pagan Russia in two parts): Spring Round Dances (Instrumental) - Persistent IDFEFD604D82DB2DBF - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Leonard%20Bernstein/Stravinsky_%20The%20Rite%20of%20Spring%20&%20Suite%20from%20_The%20Firebird_%20%5BExpanded%20Edition%5D/04%20The%20Rite%20of%20Spring%20(Scenes%20of%20Pagan%20Russia%20in%20two%20parts)_%20Spring%20Round%20Dances%20(Instrumental).mp3 - File Folder Count4 - Library Folder Count1 - - 9700 - - Track ID9700 - NameThe Rite of Spring (Scenes of Pagan Russia in two parts): Games of the Rival Tribes (Instrumental) - ArtistLeonard Bernstein;London Symphony Orchestra - Album ArtistLeonard Bernstein - ComposerIgor Stravinsky - AlbumStravinsky: The Rite of Spring & Suite from "The Firebird" [Expanded Edition] - GenreClassical - KindMPEG audio file - Size3820214 - Total Time115722 - Disc Number1 - Disc Count1 - Track Number5 - Track Count24 - Year2004 - Date Modified2011-10-19T10:40:31Z - Date Added2011-10-19T11:14:12Z - Bit Rate250 - Sample Rate44100 - CommentsAmazon.com Song ID: 203958879 - Artwork Count1 - Sort NameRite of Spring (Scenes of Pagan Russia in two parts): Games of the Rival Tribes (Instrumental) - Persistent ID496CA696FA9C312F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Leonard%20Bernstein/Stravinsky_%20The%20Rite%20of%20Spring%20&%20Suite%20from%20_The%20Firebird_%20%5BExpanded%20Edition%5D/05%20The%20Rite%20of%20Spring%20(Scenes%20of%20Pagan%20Russia%20in%20two%20parts)_%20Games%20of%20the%20Rival%20Tribes%20(Instrumental).mp3 - File Folder Count4 - Library Folder Count1 - - 9702 - - Track ID9702 - NameThe Rite of Spring (Scenes of Pagan Russia in two parts): Procession of the Wise Elders (Instrumental) - ArtistLeonard Bernstein;London Symphony Orchestra - Album ArtistLeonard Bernstein - ComposerIgor Stravinsky - AlbumStravinsky: The Rite of Spring & Suite from "The Firebird" [Expanded Edition] - GenreClassical - KindMPEG audio file - Size2273781 - Total Time67448 - Disc Number1 - Disc Count1 - Track Number6 - Track Count24 - Year2004 - Date Modified2011-10-19T10:35:15Z - Date Added2011-10-19T11:14:12Z - Bit Rate245 - Sample Rate44100 - CommentsAmazon.com Song ID: 203958843 - Artwork Count1 - Sort NameRite of Spring (Scenes of Pagan Russia in two parts): Procession of the Wise Elders (Instrumental) - Persistent ID11065429A5F4CFA0 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Leonard%20Bernstein/Stravinsky_%20The%20Rite%20of%20Spring%20&%20Suite%20from%20_The%20Firebird_%20%5BExpanded%20Edition%5D/06%20The%20Rite%20of%20Spring%20(Scenes%20of%20Pagan%20Russia%20in%20two%20parts)_%20Procession%20of%20the%20Wise%20Elders%20(Instrumental).mp3 - File Folder Count4 - Library Folder Count1 - - 9704 - - Track ID9704 - NameThe Rite of Spring (Scenes of Pagan Russia in two parts): Dance of the Earth (Instrumental) - ArtistLeonard Bernstein;London Symphony Orchestra - Album ArtistLeonard Bernstein - ComposerIgor Stravinsky - AlbumStravinsky: The Rite of Spring & Suite from "The Firebird" [Expanded Edition] - GenreClassical - KindMPEG audio file - Size2516345 - Total Time74161 - Disc Number1 - Disc Count1 - Track Number7 - Track Count24 - Year2004 - Date Modified2011-10-19T10:39:55Z - Date Added2011-10-19T11:14:12Z - Bit Rate249 - Sample Rate44100 - CommentsAmazon.com Song ID: 203958860 - Artwork Count1 - Sort NameRite of Spring (Scenes of Pagan Russia in two parts): Dance of the Earth (Instrumental) - Persistent ID9C6B8705B7757F42 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Leonard%20Bernstein/Stravinsky_%20The%20Rite%20of%20Spring%20&%20Suite%20from%20_The%20Firebird_%20%5BExpanded%20Edition%5D/07%20The%20Rite%20of%20Spring%20(Scenes%20of%20Pagan%20Russia%20in%20two%20parts)_%20Dance%20of%20the%20Earth%20(Instrumental).mp3 - File Folder Count4 - Library Folder Count1 - - 9706 - - Track ID9706 - NameThe Rite of Spring (Scenes of Pagan Russia in two parts): Part Two - The Sacrifice: Introduction. Largo (Instrumental) - ArtistLeonard Bernstein;London Symphony Orchestra - Album ArtistLeonard Bernstein - ComposerIgor Stravinsky - AlbumStravinsky: The Rite of Spring & Suite from "The Firebird" [Expanded Edition] - GenreClassical - KindMPEG audio file - Size9470160 - Total Time301714 - Disc Number1 - Disc Count1 - Track Number8 - Track Count24 - Year2004 - Date Modified2011-10-19T10:34:48Z - Date Added2011-10-19T11:14:12Z - Bit Rate245 - Sample Rate44100 - CommentsAmazon.com Song ID: 203958870 - Artwork Count1 - Sort NameRite of Spring (Scenes of Pagan Russia in two parts): Part Two - The Sacrifice: Introduction. Largo (Instrumental) - Persistent IDC15AA4D5264FBAC4 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Leonard%20Bernstein/Stravinsky_%20The%20Rite%20of%20Spring%20&%20Suite%20from%20_The%20Firebird_%20%5BExpanded%20Edition%5D/08%20The%20Rite%20of%20Spring%20(Scenes%20of%20Pagan%20Russia%20in%20two%20parts)_%20Part%20Two%20-%20The%20Sacrifice_%20Introduction.%20Largo%20(Instrumental).mp3 - File Folder Count4 - Library Folder Count1 - - 9708 - - Track ID9708 - NameThe Rite of Spring (Scenes of Pagan Russia in two parts): Mystical Circles of the Young Girls (Instrumental) - ArtistLeonard Bernstein;London Symphony Orchestra - Album ArtistLeonard Bernstein - ComposerIgor Stravinsky - AlbumStravinsky: The Rite of Spring & Suite from "The Firebird" [Expanded Edition] - GenreClassical - KindMPEG audio file - Size6592007 - Total Time207647 - Disc Number1 - Disc Count1 - Track Number9 - Track Count24 - Year2004 - Date Modified2011-10-19T10:46:16Z - Date Added2011-10-19T11:14:12Z - Bit Rate246 - Sample Rate44100 - CommentsAmazon.com Song ID: 203958853 - Artwork Count1 - Sort NameRite of Spring (Scenes of Pagan Russia in two parts): Mystical Circles of the Young Girls (Instrumental) - Persistent ID44B5B8725BD93698 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Leonard%20Bernstein/Stravinsky_%20The%20Rite%20of%20Spring%20&%20Suite%20from%20_The%20Firebird_%20%5BExpanded%20Edition%5D/09%20The%20Rite%20of%20Spring%20(Scenes%20of%20Pagan%20Russia%20in%20two%20parts)_%20Mystical%20Circles%20of%20the%20Young%20Girls%20(Instrumental).mp3 - File Folder Count4 - Library Folder Count1 - - 9710 - - Track ID9710 - NameThe Rite of Spring (Scenes of Pagan Russia in two parts): Glorification of the Chosen Victim (Instrumental) - ArtistLeonard Bernstein;London Symphony Orchestra - Album ArtistLeonard Bernstein - ComposerIgor Stravinsky - AlbumStravinsky: The Rite of Spring & Suite from "The Firebird" [Expanded Edition] - GenreClassical - KindMPEG audio file - Size3372522 - Total Time101250 - Disc Number1 - Disc Count1 - Track Number10 - Track Count24 - Year2004 - Date Modified2011-10-19T10:29:11Z - Date Added2011-10-19T11:14:12Z - Bit Rate250 - Sample Rate44100 - CommentsAmazon.com Song ID: 203958865 - Artwork Count1 - Sort NameRite of Spring (Scenes of Pagan Russia in two parts): Glorification of the Chosen Victim (Instrumental) - Persistent ID4EEE3557B916FBB2 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Leonard%20Bernstein/Stravinsky_%20The%20Rite%20of%20Spring%20&%20Suite%20from%20_The%20Firebird_%20%5BExpanded%20Edition%5D/10%20The%20Rite%20of%20Spring%20(Scenes%20of%20Pagan%20Russia%20in%20two%20parts)_%20Glorification%20of%20the%20Chosen%20Victim%20(Instrumental).mp3 - File Folder Count4 - Library Folder Count1 - - 9712 - - Track ID9712 - NameThe Rite of Spring (Scenes of Pagan Russia in two parts): Summoning of the Ancestors (Instrumental) - ArtistLeonard Bernstein;London Symphony Orchestra - Album ArtistLeonard Bernstein - ComposerIgor Stravinsky - AlbumStravinsky: The Rite of Spring & Suite from "The Firebird" [Expanded Edition] - GenreClassical - KindMPEG audio file - Size2022793 - Total Time58749 - Disc Number1 - Disc Count1 - Track Number11 - Track Count24 - Year2004 - Date Modified2011-10-19T10:45:15Z - Date Added2011-10-19T11:14:12Z - Bit Rate247 - Sample Rate44100 - CommentsAmazon.com Song ID: 203958873 - Artwork Count1 - Sort NameRite of Spring (Scenes of Pagan Russia in two parts): Summoning of the Ancestors (Instrumental) - Persistent ID33BAFA4D14FBC251 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Leonard%20Bernstein/Stravinsky_%20The%20Rite%20of%20Spring%20&%20Suite%20from%20_The%20Firebird_%20%5BExpanded%20Edition%5D/11%20The%20Rite%20of%20Spring%20(Scenes%20of%20Pagan%20Russia%20in%20two%20parts)_%20Summoning%20of%20the%20Ancestors%20(Instrumental).mp3 - File Folder Count4 - Library Folder Count1 - - 9714 - - Track ID9714 - NameThe Rite of Spring (Scenes of Pagan Russia in two parts): Ritual of the Ancestors (Instrumental) - ArtistLeonard Bernstein;London Symphony Orchestra - Album ArtistLeonard Bernstein - ComposerIgor Stravinsky - AlbumStravinsky: The Rite of Spring & Suite from "The Firebird" [Expanded Edition] - GenreClassical - KindMPEG audio file - Size7309235 - Total Time232306 - Disc Number1 - Disc Count1 - Track Number12 - Track Count24 - Year2004 - Date Modified2011-10-19T10:36:57Z - Date Added2011-10-19T11:14:12Z - Bit Rate244 - Sample Rate44100 - CommentsAmazon.com Song ID: 203958877 - Artwork Count1 - Sort NameRite of Spring (Scenes of Pagan Russia in two parts): Ritual of the Ancestors (Instrumental) - Persistent ID17355D519B0512A5 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Leonard%20Bernstein/Stravinsky_%20The%20Rite%20of%20Spring%20&%20Suite%20from%20_The%20Firebird_%20%5BExpanded%20Edition%5D/12%20The%20Rite%20of%20Spring%20(Scenes%20of%20Pagan%20Russia%20in%20two%20parts)_%20Ritual%20of%20the%20Ancestors%20(Instrumental).mp3 - File Folder Count4 - Library Folder Count1 - - 9716 - - Track ID9716 - NameThe Rite of Spring (Scenes of Pagan Russia in two parts): Sacrificial Dance (The Chosen Victim) (Instrumental) - ArtistLeonard Bernstein;London Symphony Orchestra - Album ArtistLeonard Bernstein - ComposerIgor Stravinsky - AlbumStravinsky: The Rite of Spring & Suite from "The Firebird" [Expanded Edition] - GenreClassical - KindMPEG audio file - Size8997299 - Total Time282566 - Disc Number1 - Disc Count1 - Track Number13 - Track Count24 - Year2004 - Date Modified2011-10-19T10:20:02Z - Date Added2011-10-19T11:14:12Z - Bit Rate248 - Sample Rate44100 - CommentsAmazon.com Song ID: 203958847 - Artwork Count1 - Sort NameRite of Spring (Scenes of Pagan Russia in two parts): Sacrificial Dance (The Chosen Victim) (Instrumental) - Persistent ID714103C74FEFDC20 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Leonard%20Bernstein/Stravinsky_%20The%20Rite%20of%20Spring%20&%20Suite%20from%20_The%20Firebird_%20%5BExpanded%20Edition%5D/13%20The%20Rite%20of%20Spring%20(Scenes%20of%20Pagan%20Russia%20in%20two%20parts)_%20Sacrificial%20Dance%20(The%20Chosen%20Victim)%20(Instrumental).mp3 - File Folder Count4 - Library Folder Count1 - - 9718 - - Track ID9718 - NameSuite from "The Firebird" (1919 version): Introduction (Instrumental) - ArtistLeonard Bernstein;New York Philharmonic - Album ArtistLeonard Bernstein - ComposerIgor Stravinsky - AlbumStravinsky: The Rite of Spring & Suite from "The Firebird" [Expanded Edition] - GenreClassical - KindMPEG audio file - Size6279493 - Total Time200228 - Disc Number1 - Disc Count1 - Track Number14 - Track Count24 - Year2004 - Date Modified2011-10-19T10:21:39Z - Date Added2011-10-19T11:14:12Z - Bit Rate242 - Sample Rate44100 - CommentsAmazon.com Song ID: 203958858 - Artwork Count1 - Persistent IDD46B68D9AAD37FAF - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Leonard%20Bernstein/Stravinsky_%20The%20Rite%20of%20Spring%20&%20Suite%20from%20_The%20Firebird_%20%5BExpanded%20Edition%5D/14%20Suite%20from%20_The%20Firebird_%20(1919%20version)_%20Introduction%20(Instrumental).mp3 - File Folder Count4 - Library Folder Count1 - - 9720 - - Track ID9720 - NameSuite from "The Firebird" (1919 version): The Firebird and its Dance (Instrumental) - ArtistLeonard Bernstein;New York Philharmonic - Album ArtistLeonard Bernstein - ComposerIgor Stravinsky - AlbumStravinsky: The Rite of Spring & Suite from "The Firebird" [Expanded Edition] - GenreClassical - KindMPEG audio file - Size647116 - Total Time14524 - Disc Number1 - Disc Count1 - Track Number15 - Track Count24 - Year2004 - Date Modified2011-10-19T10:48:15Z - Date Added2011-10-19T11:14:12Z - Bit Rate244 - Sample Rate44100 - CommentsAmazon.com Song ID: 203958874 - Artwork Count1 - Persistent ID5ABDD526EFFC5CB3 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Leonard%20Bernstein/Stravinsky_%20The%20Rite%20of%20Spring%20&%20Suite%20from%20_The%20Firebird_%20%5BExpanded%20Edition%5D/15%20Suite%20from%20_The%20Firebird_%20(1919%20version)_%20The%20Firebird%20and%20its%20Dance%20(Instrumental).mp3 - File Folder Count4 - Library Folder Count1 - - 9722 - - Track ID9722 - NameSuite from "The Firebird" (1919 version): Variation of the Firebird (Instrumental) - ArtistLeonard Bernstein;New York Philharmonic - Album ArtistLeonard Bernstein - ComposerIgor Stravinsky - AlbumStravinsky: The Rite of Spring & Suite from "The Firebird" [Expanded Edition] - GenreClassical - KindMPEG audio file - Size2324845 - Total Time69511 - Disc Number1 - Disc Count1 - Track Number16 - Track Count24 - Year2004 - Date Modified2011-10-19T10:28:05Z - Date Added2011-10-19T11:14:12Z - Bit Rate244 - Sample Rate44100 - CommentsAmazon.com Song ID: 203958878 - Artwork Count1 - Persistent ID1744564E39531DE9 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Leonard%20Bernstein/Stravinsky_%20The%20Rite%20of%20Spring%20&%20Suite%20from%20_The%20Firebird_%20%5BExpanded%20Edition%5D/16%20Suite%20from%20_The%20Firebird_%20(1919%20version)_%20Variation%20of%20the%20Firebird%20(Instrumental).mp3 - File Folder Count4 - Library Folder Count1 - - 9724 - - Track ID9724 - NameSuite from "The Firebird" (1919 version): The Princesses' Round (Instrumental) - ArtistLeonard Bernstein;New York Philharmonic - Album ArtistLeonard Bernstein - ComposerIgor Stravinsky - AlbumStravinsky: The Rite of Spring & Suite from "The Firebird" [Expanded Edition] - GenreClassical - KindMPEG audio file - Size9625063 - Total Time313808 - Disc Number1 - Disc Count1 - Track Number17 - Track Count24 - Year2004 - Date Modified2011-10-19T10:48:04Z - Date Added2011-10-19T11:14:12Z - Bit Rate240 - Sample Rate44100 - CommentsAmazon.com Song ID: 203958840 - Artwork Count1 - Persistent ID7BF093DB7F7F69B0 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Leonard%20Bernstein/Stravinsky_%20The%20Rite%20of%20Spring%20&%20Suite%20from%20_The%20Firebird_%20%5BExpanded%20Edition%5D/17%20Suite%20from%20_The%20Firebird_%20(1919%20version)_%20The%20Princesses'%20Round%20(Instrumental).mp3 - File Folder Count4 - Library Folder Count1 - - 9726 - - Track ID9726 - NameSuite from "The Firebird" (1919 version): Infernal Dance of King Kashchei (Instrumental) - ArtistLeonard Bernstein;New York Philharmonic - Album ArtistLeonard Bernstein - ComposerIgor Stravinsky - AlbumStravinsky: The Rite of Spring & Suite from "The Firebird" [Expanded Edition] - GenreClassical - KindMPEG audio file - Size7497412 - Total Time237191 - Disc Number1 - Disc Count1 - Track Number18 - Track Count24 - Year2004 - Date Modified2011-10-19T10:23:08Z - Date Added2011-10-19T11:14:12Z - Bit Rate246 - Sample Rate44100 - CommentsAmazon.com Song ID: 203958869 - Artwork Count1 - Persistent IDECBEBF5D7BEBDA03 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Leonard%20Bernstein/Stravinsky_%20The%20Rite%20of%20Spring%20&%20Suite%20from%20_The%20Firebird_%20%5BExpanded%20Edition%5D/18%20Suite%20from%20_The%20Firebird_%20(1919%20version)_%20Infernal%20Dance%20of%20King%20Kashchei%20(Instrumental).mp3 - File Folder Count4 - Library Folder Count1 - - 9728 - - Track ID9728 - NameSuite from "The Firebird" (1919 version): Lullaby (Instrumental) - ArtistLeonard Bernstein;New York Philharmonic - Album ArtistLeonard Bernstein - ComposerIgor Stravinsky - AlbumStravinsky: The Rite of Spring & Suite from "The Firebird" [Expanded Edition] - GenreClassical - KindMPEG audio file - Size7058977 - Total Time230347 - Disc Number1 - Disc Count1 - Track Number19 - Track Count24 - Year2004 - Date Modified2011-10-19T10:38:53Z - Date Added2011-10-19T11:14:12Z - Bit Rate238 - Sample Rate44100 - CommentsAmazon.com Song ID: 203958867 - Artwork Count1 - Persistent ID322688C3EB765240 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Leonard%20Bernstein/Stravinsky_%20The%20Rite%20of%20Spring%20&%20Suite%20from%20_The%20Firebird_%20%5BExpanded%20Edition%5D/19%20Suite%20from%20_The%20Firebird_%20(1919%20version)_%20Lullaby%20(Instrumental).mp3 - File Folder Count4 - Library Folder Count1 - - 9730 - - Track ID9730 - NameSuite from "The Firebird" (1919 version): Finale (Instrumental) - ArtistLeonard Bernstein;New York Philharmonic - Album ArtistLeonard Bernstein - ComposerIgor Stravinsky - AlbumStravinsky: The Rite of Spring & Suite from "The Firebird" [Expanded Edition] - GenreClassical - KindMPEG audio file - Size6436065 - Total Time207281 - Disc Number1 - Disc Count1 - Track Number20 - Track Count24 - Year2004 - Date Modified2011-10-19T10:24:31Z - Date Added2011-10-19T11:14:12Z - Bit Rate240 - Sample Rate44100 - CommentsAmazon.com Song ID: 203958871 - Artwork Count1 - Persistent ID0A42FE460244BCEF - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Leonard%20Bernstein/Stravinsky_%20The%20Rite%20of%20Spring%20&%20Suite%20from%20_The%20Firebird_%20%5BExpanded%20Edition%5D/20%20Suite%20from%20_The%20Firebird_%20(1919%20version)_%20Finale%20(Instrumental).mp3 - File Folder Count4 - Library Folder Count1 - - 9732 - - Track ID9732 - NameScythian Suite, Op. 20: I. The Adoration of Veles and Ala: Allegro feroce. Poco meno mosso (Instrumental) - ArtistLeonard Bernstein;New York Philharmonic - Album ArtistLeonard Bernstein - ComposerSergei Prokofiev - AlbumStravinsky: The Rite of Spring & Suite from "The Firebird" [Expanded Edition] - GenreClassical - KindMPEG audio file - Size11778775 - Total Time378906 - Disc Number1 - Disc Count1 - Track Number21 - Track Count24 - Year2004 - Date Modified2011-10-19T10:32:02Z - Date Added2011-10-19T11:14:12Z - Bit Rate244 - Sample Rate44100 - CommentsAmazon.com Song ID: 203958855 - Artwork Count1 - Persistent ID953C90D9C4BE8FD3 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Leonard%20Bernstein/Stravinsky_%20The%20Rite%20of%20Spring%20&%20Suite%20from%20_The%20Firebird_%20%5BExpanded%20Edition%5D/21%20Scythian%20Suite,%20Op.%2020_%20I.%20The%20Adoration%20of%20Veles%20and%20Ala_%20Allegro%20feroce.%20Poco%20meno%20mosso%20(Instrumental).mp3 - File Folder Count4 - Library Folder Count1 - - 9734 - - Track ID9734 - NameScythian Suite, Op. 20: II. The Enemy God and the Dance of the Black Spirits. Allegro sostenuto (Instrumental) - ArtistLeonard Bernstein;New York Philharmonic - Album ArtistLeonard Bernstein - ComposerSergei Prokofiev - AlbumStravinsky: The Rite of Spring & Suite from "The Firebird" [Expanded Edition] - GenreClassical - KindMPEG audio file - Size5281717 - Total Time162586 - Disc Number1 - Disc Count1 - Track Number22 - Track Count24 - Year2004 - Date Modified2011-10-19T10:29:54Z - Date Added2011-10-19T11:14:12Z - Bit Rate249 - Sample Rate44100 - CommentsAmazon.com Song ID: 203958872 - Artwork Count1 - Persistent IDC0CD20A6AE0CD657 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Leonard%20Bernstein/Stravinsky_%20The%20Rite%20of%20Spring%20&%20Suite%20from%20_The%20Firebird_%20%5BExpanded%20Edition%5D/22%20Scythian%20Suite,%20Op.%2020_%20II.%20The%20Enemy%20God%20and%20the%20Dance%20of%20the%20Black%20Spirits.%20Allegro%20sostenuto%20(Instrumental).mp3 - File Folder Count4 - Library Folder Count1 - - 9736 - - Track ID9736 - NameScythian Suite, Op. 20: III. Night. Andantino - Poco piu mosso (Instrumental) - ArtistLeonard Bernstein;New York Philharmonic - Album ArtistLeonard Bernstein - ComposerSergei Prokofiev - AlbumStravinsky: The Rite of Spring & Suite from "The Firebird" [Expanded Edition] - GenreClassical - KindMPEG audio file - Size9526473 - Total Time302942 - Disc Number1 - Disc Count1 - Track Number23 - Track Count24 - Year2004 - Date Modified2011-10-19T10:42:41Z - Date Added2011-10-19T11:14:12Z - Bit Rate246 - Sample Rate44100 - CommentsAmazon.com Song ID: 203958876 - Artwork Count1 - Persistent IDF830727DDFD5D228 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Leonard%20Bernstein/Stravinsky_%20The%20Rite%20of%20Spring%20&%20Suite%20from%20_The%20Firebird_%20%5BExpanded%20Edition%5D/23%20Scythian%20Suite,%20Op.%2020_%20III.%20Night.%20Andantino%20-%20Poco%20piu%20mosso%20(Instrumental).mp3 - File Folder Count4 - Library Folder Count1 - - 9738 - - Track ID9738 - NameScythian Suite, Op. 20: IV. The Glorious Departure of Lolli and the Procession of the Sun. Tempestoso - Allegro (Quasi doppio movimento) - Andante sostenuto (Instrumental) - ArtistLeonard Bernstein;New York Philharmonic - Album ArtistLeonard Bernstein - ComposerSergei Prokofiev - AlbumStravinsky: The Rite of Spring & Suite from "The Firebird" [Expanded Edition] - GenreClassical - KindMPEG audio file - Size10805678 - Total Time342256 - Disc Number1 - Disc Count1 - Track Number24 - Track Count24 - Year2004 - Date Modified2011-10-19T10:27:02Z - Date Added2011-10-19T11:14:12Z - Bit Rate247 - Sample Rate44100 - CommentsAmazon.com Song ID: 203958845 - Artwork Count1 - Persistent ID64F73F28EEF882D0 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Leonard%20Bernstein/Stravinsky_%20The%20Rite%20of%20Spring%20&%20Suite%20from%20_The%20Firebird_%20%5BExpanded%20Edition%5D/24%20Scythian%20Suite,%20Op.%2020_%20IV.%20The%20Glorious%20Departure%20of%20Lolli%20and%20the%20Procession%20of%20the%20Sun.%20Tempestoso%20-%20Allegro%20(Quasi%20doppio%20movimento)%20-%20Andante%20sostenuto%20(Instrumental).mp3 - File Folder Count4 - Library Folder Count1 - - 9758 - - Track ID9758 - NameDanse Macabre - ArtistCbso - Christopher Robinson - AlbumCarnival Of The Animals, Sympnony No 3 - GenreClassical - KindAAC audio file - Size13872721 - Total Time412733 - Track Number1 - Track Count21 - Date Modified2011-11-19T17:54:04Z - Date Added2011-11-19T05:46:03Z - Bit Rate256 - Sample Rate44100 - Skip Count1 - Skip Date2013-07-25T04:13:30Z - Normalization1225 - Artwork Count1 - Persistent ID5D93178D489A9D6F - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Cbso%20-%20Christopher%20Robinson/Carnival%20Of%20The%20Animals,%20Sympnony%20No%203/01%20Danse%20Macabre.m4a - File Folder Count4 - Library Folder Count1 - - 9760 - - Track ID9760 - NameSaint-Saëns: Carnival Of The Animals - 1. Introduction & Royal March Of The Lion - ArtistLouis Frémaux: City Of Birmingham Symphony Orchestra - ComposerCamille Saint-Saëns - AlbumCarnival Of The Animals, Sympnony No 3 - GenreClassical - KindAAC audio file - Size4470037 - Total Time120346 - Track Number2 - Track Count21 - Date Modified2011-11-19T17:54:05Z - Date Added2011-11-19T05:47:15Z - Bit Rate256 - Sample Rate44100 - Play Count2 - Play Date3404963231 - Play Date UTC2011-11-24T01:37:11Z - Normalization577 - Artwork Count1 - Persistent ID95D5063E012B87EB - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Louis%20Fre%CC%81maux_%20City%20Of%20Birmingham%20Symphony%20Orchestra/Carnival%20Of%20The%20Animals,%20Sympnony%20No%203/02%20Saint-Sae%CC%88ns_%20Carnival%20Of%20The%20Animals%20-%201.%20Introduction%20&%20Royal%20March%20Of%20The%20Lion.m4a - File Folder Count4 - Library Folder Count1 - - 9762 - - Track ID9762 - NameThe Carnival of the Animals: Hens And Cocks - ArtistCbso - Christopher Robinson - AlbumCarnival Of The Animals, Sympnony No 3 - GenreClassical - KindAAC audio file - Size2924287 - Total Time73800 - Track Number3 - Track Count21 - Date Modified2011-11-19T17:54:06Z - Date Added2011-11-19T05:47:35Z - Bit Rate256 - Sample Rate44100 - Play Count3 - Play Date3404963667 - Play Date UTC2011-11-24T01:44:27Z - Normalization310 - Artwork Count1 - Sort NameCarnival of the Animals: Hens And Cocks - Persistent ID4BB24EEBF3C2BA2A - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Cbso%20-%20Christopher%20Robinson/Carnival%20Of%20The%20Animals,%20Sympnony%20No%203/03%20The%20Carnival%20of%20the%20Animals_%20Hens%20And%20Cocks.m4a - File Folder Count4 - Library Folder Count1 - - 9764 - - Track ID9764 - NameSaint-Saëns: Carnival Of The Animals - 3. Wild Asses - ArtistLouis Frémaux: City Of Birmingham Symphony Orchestra - ComposerCamille Saint-Saëns - AlbumCarnival Of The Animals, Sympnony No 3 - GenreClassical - KindAAC audio file - Size1741019 - Total Time40826 - Track Number4 - Track Count21 - Date Modified2011-11-19T17:54:06Z - Date Added2011-11-19T05:47:47Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3404632500 - Play Date UTC2011-11-20T05:45:00Z - Normalization336 - Artwork Count1 - Persistent IDEB402ED1BEB0466B - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Louis%20Fre%CC%81maux_%20City%20Of%20Birmingham%20Symphony%20Orchestra/Carnival%20Of%20The%20Animals,%20Sympnony%20No%203/04%20Saint-Sae%CC%88ns_%20Carnival%20Of%20The%20Animals%20-%203.%20Wild%20Asses.m4a - File Folder Count4 - Library Folder Count1 - - 9766 - - Track ID9766 - NameSaint-Saëns: Carnival Of The Animals - 4. Tortoises - ArtistLouis Frémaux: City Of Birmingham Symphony Orchestra - ComposerCamille Saint-Saëns - AlbumCarnival Of The Animals, Sympnony No 3 - GenreClassical - KindAAC audio file - Size4704378 - Total Time128106 - Track Number5 - Track Count21 - Date Modified2011-11-19T17:54:07Z - Date Added2011-11-19T05:47:54Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3404667871 - Play Date UTC2011-11-20T15:34:31Z - Normalization13 - Artwork Count1 - Persistent ID2B664180DB15DE01 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Louis%20Fre%CC%81maux_%20City%20Of%20Birmingham%20Symphony%20Orchestra/Carnival%20Of%20The%20Animals,%20Sympnony%20No%203/05%20Saint-Sae%CC%88ns_%20Carnival%20Of%20The%20Animals%20-%204.%20Tortoises.m4a - File Folder Count4 - Library Folder Count1 - - 9768 - - Track ID9768 - NameSaint-Saëns: Carnival Of The Animals - 5. The Elephant - ArtistLouis Frémaux: City Of Birmingham Symphony Orchestra - ComposerCamille Saint-Saëns - AlbumCarnival Of The Animals, Sympnony No 3 - GenreClassical - KindAAC audio file - Size3381456 - Total Time90933 - Track Number6 - Track Count21 - Date Modified2011-11-19T17:54:07Z - Date Added2011-11-19T05:48:13Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3404887916 - Play Date UTC2011-11-23T04:41:56Z - Normalization319 - Artwork Count1 - Persistent ID4D0A1BF16571E1AB - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Louis%20Fre%CC%81maux_%20City%20Of%20Birmingham%20Symphony%20Orchestra/Carnival%20Of%20The%20Animals,%20Sympnony%20No%203/06%20Saint-Sae%CC%88ns_%20Carnival%20Of%20The%20Animals%20-%205.%20The%20Elephant.m4a - File Folder Count4 - Library Folder Count1 - - 9770 - - Track ID9770 - NameSaint-Saëns: Carnival Of The Animals - 6. Kangaroos - ArtistLouis Frémaux: City Of Birmingham Symphony Orchestra - ComposerCamille Saint-Saëns - AlbumCarnival Of The Animals, Sympnony No 3 - GenreClassical - KindAAC audio file - Size2042272 - Total Time49560 - Track Number7 - Track Count21 - Date Modified2011-11-19T17:54:08Z - Date Added2011-11-19T05:48:26Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3404963547 - Play Date UTC2011-11-24T01:42:27Z - Normalization174 - Artwork Count1 - Persistent ID06D79549AB493F0B - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Louis%20Fre%CC%81maux_%20City%20Of%20Birmingham%20Symphony%20Orchestra/Carnival%20Of%20The%20Animals,%20Sympnony%20No%203/07%20Saint-Sae%CC%88ns_%20Carnival%20Of%20The%20Animals%20-%206.%20Kangaroos.m4a - File Folder Count4 - Library Folder Count1 - - 9772 - - Track ID9772 - NameSaint-Saëns: Carnival Of The Animals - 7. Aquarium - ArtistLouis Frémaux: City Of Birmingham Symphony Orchestra - ComposerCamille Saint-Saëns - AlbumCarnival Of The Animals, Sympnony No 3 - GenreClassical - KindAAC audio file - Size4909656 - Total Time131640 - Track Number8 - Track Count21 - Date Modified2011-11-19T17:54:09Z - Date Added2011-11-19T05:48:34Z - Bit Rate256 - Sample Rate44100 - Normalization44 - Artwork Count1 - Persistent IDCF6AC25F10BE81B4 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Louis%20Fre%CC%81maux_%20City%20Of%20Birmingham%20Symphony%20Orchestra/Carnival%20Of%20The%20Animals,%20Sympnony%20No%203/08%20Saint-Sae%CC%88ns_%20Carnival%20Of%20The%20Animals%20-%207.%20Aquarium.m4a - File Folder Count4 - Library Folder Count1 - - 9774 - - Track ID9774 - NameThe Carnival of the Animals: Persons With Long Ears - ArtistCbso - Christopher Robinson - AlbumCarnival Of The Animals, Sympnony No 3 - GenreClassical - KindAAC audio file - Size2646942 - Total Time67226 - Track Number9 - Track Count21 - Date Modified2011-11-19T17:54:09Z - Date Added2011-11-19T05:48:52Z - Bit Rate256 - Sample Rate44100 - Normalization85 - Artwork Count1 - Sort NameCarnival of the Animals: Persons With Long Ears - Persistent ID9C63FB38207113E1 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Cbso%20-%20Christopher%20Robinson/Carnival%20Of%20The%20Animals,%20Sympnony%20No%203/09%20The%20Carnival%20of%20the%20Animals_%20Persons%20With%20Long%20Ears.m4a - File Folder Count4 - Library Folder Count1 - - 9776 - - Track ID9776 - NameSaint-Saëns: Carnival Of The Animals - 9. The Cuckoo In The Depths Of The Woods - ArtistLouis Frémaux: City Of Birmingham Symphony Orchestra - ComposerCamille Saint-Saëns - AlbumCarnival Of The Animals, Sympnony No 3 - GenreClassical - KindAAC audio file - Size5096395 - Total Time140440 - Track Number10 - Track Count21 - Date Modified2011-11-19T17:54:10Z - Date Added2011-11-19T05:49:02Z - Bit Rate256 - Sample Rate44100 - Normalization12 - Artwork Count1 - Persistent ID88B9826DBC5327A4 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Louis%20Fre%CC%81maux_%20City%20Of%20Birmingham%20Symphony%20Orchestra/Carnival%20Of%20The%20Animals,%20Sympnony%20No%203/10%20Saint-Sae%CC%88ns_%20Carnival%20Of%20The%20Animals%20-%209.%20The%20Cuckoo%20In%20The%20Depths%20Of%20The%20Woods.m4a - File Folder Count4 - Library Folder Count1 - - 9778 - - Track ID9778 - NameSaint-Saëns: Carnival Of The Animals - 10. Aviary - ArtistLouis Frémaux: City Of Birmingham Symphony Orchestra - ComposerCamille Saint-Saëns - AlbumCarnival Of The Animals, Sympnony No 3 - GenreClassical - KindAAC audio file - Size3011006 - Total Time77466 - Track Number11 - Track Count21 - Date Modified2011-11-19T17:54:10Z - Date Added2011-11-19T05:49:20Z - Bit Rate256 - Sample Rate44100 - Normalization53 - Artwork Count1 - Persistent IDB7AEB23DAE4FCE9D - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Louis%20Fre%CC%81maux_%20City%20Of%20Birmingham%20Symphony%20Orchestra/Carnival%20Of%20The%20Animals,%20Sympnony%20No%203/11%20Saint-Sae%CC%88ns_%20Carnival%20Of%20The%20Animals%20-%2010.%20Aviary.m4a - File Folder Count4 - Library Folder Count1 - - 9780 - - Track ID9780 - NameSaint-Saëns: Carnival Of The Animals - 11. Pianists - ArtistLouis Frémaux: City Of Birmingham Symphony Orchestra - ComposerCamille Saint-Saëns - AlbumCarnival Of The Animals, Sympnony No 3 - GenreClassical - KindAAC audio file - Size2832304 - Total Time74426 - Track Number12 - Track Count21 - Date Modified2011-11-19T17:54:11Z - Date Added2011-11-19T05:49:31Z - Bit Rate256 - Sample Rate44100 - Normalization578 - Artwork Count1 - Persistent IDC822953FC4A47C15 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Louis%20Fre%CC%81maux_%20City%20Of%20Birmingham%20Symphony%20Orchestra/Carnival%20Of%20The%20Animals,%20Sympnony%20No%203/12%20Saint-Sae%CC%88ns_%20Carnival%20Of%20The%20Animals%20-%2011.%20Pianists.m4a - File Folder Count4 - Library Folder Count1 - - 9782 - - Track ID9782 - NameSaint-Saëns: Carnival Of The Animals - 12. Fossils - ArtistLouis Frémaux: City Of Birmingham Symphony Orchestra - ComposerCamille Saint-Saëns - AlbumCarnival Of The Animals, Sympnony No 3 - GenreClassical - KindAAC audio file - Size3194616 - Total Time84266 - Track Number13 - Track Count21 - Date Modified2011-11-19T17:54:11Z - Date Added2011-11-19T05:49:40Z - Bit Rate256 - Sample Rate44100 - Normalization409 - Artwork Count1 - Persistent IDAB219E69EBC3D5F9 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Louis%20Fre%CC%81maux_%20City%20Of%20Birmingham%20Symphony%20Orchestra/Carnival%20Of%20The%20Animals,%20Sympnony%20No%203/13%20Saint-Sae%CC%88ns_%20Carnival%20Of%20The%20Animals%20-%2012.%20Fossils.m4a - File Folder Count4 - Library Folder Count1 - - 9784 - - Track ID9784 - NameSaint-Saëns: Carnival Of The Animals - 13. The Swan - ArtistLouis Frémaux: City Of Birmingham Symphony Orchestra - ComposerCamille Saint-Saëns - AlbumCarnival Of The Animals, Sympnony No 3 - GenreClassical - KindAAC audio file - Size6903980 - Total Time194133 - Track Number14 - Track Count21 - Date Modified2011-11-19T17:54:12Z - Date Added2011-11-19T05:49:51Z - Bit Rate256 - Sample Rate44100 - Normalization40 - Artwork Count1 - Persistent IDC3761C6F6FFF83F3 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Louis%20Fre%CC%81maux_%20City%20Of%20Birmingham%20Symphony%20Orchestra/Carnival%20Of%20The%20Animals,%20Sympnony%20No%203/14%20Saint-Sae%CC%88ns_%20Carnival%20Of%20The%20Animals%20-%2013.%20The%20Swan.m4a - File Folder Count4 - Library Folder Count1 - - 9786 - - Track ID9786 - NameSaint-Saëns: Carnival Of The Animals - 14. Finale - ArtistLouis Frémaux: City Of Birmingham Symphony Orchestra - ComposerCamille Saint-Saëns - AlbumCarnival Of The Animals, Sympnony No 3 - GenreClassical - KindAAC audio file - Size4318628 - Total Time126226 - Track Number15 - Track Count21 - Date Modified2011-11-19T17:54:14Z - Date Added2011-11-19T05:50:15Z - Bit Rate256 - Sample Rate44100 - Normalization775 - Artwork Count1 - Persistent ID36FD748C946FBCA3 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Louis%20Fre%CC%81maux_%20City%20Of%20Birmingham%20Symphony%20Orchestra/Carnival%20Of%20The%20Animals,%20Sympnony%20No%203/15%20Saint-Sae%CC%88ns_%20Carnival%20Of%20The%20Animals%20-%2014.%20Finale.m4a - File Folder Count4 - Library Folder Count1 - - 9788 - - Track ID9788 - NameSaint-Saëns: Allegro Appassionato In B Minor, Op. 43 - ArtistPaul Tortelier; Louis Frémaux: City Of Birmingham Symphony Orchestra - ComposerCamille Saint-Saëns - AlbumCarnival Of The Animals, Sympnony No 3 - GenreClassical - KindAAC audio file - Size7935192 - Total Time236066 - Track Number16 - Track Count21 - Date Modified2011-11-19T17:54:15Z - Date Added2011-11-19T05:50:30Z - Bit Rate256 - Sample Rate44100 - Normalization884 - Artwork Count1 - Persistent ID5A3A386AAFCC2A77 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Paul%20Tortelier%3B%20Louis%20Fre%CC%81maux_%20City%20Of%20Birmingham%20Symphony%20Orchestra/Carnival%20Of%20The%20Animals,%20Sympnony%20No%203/16%20Saint-Sae%CC%88ns_%20Allegro%20Appassionato%20In%20B%20Minor,%20Op.%2043.m4a - File Folder Count4 - Library Folder Count1 - - 9790 - - Track ID9790 - NameSaint-Saëns: Symphony #3 In C Minor, Op. 78, "Organ" - 1A. Adagio, Allegro Moderato - ArtistChristopher Robinson; Louis Frémaux: City Of Birmingham Symphony Orchestra - ComposerCamille Saint-Saëns - AlbumCarnival Of The Animals, Sympnony No 3 - GenreClassical - KindAAC audio file - Size19652495 - Total Time579973 - Track Number17 - Track Count21 - Date Modified2011-11-19T17:54:18Z - Date Added2011-11-19T05:50:57Z - Bit Rate256 - Sample Rate44100 - Normalization767 - Artwork Count1 - Persistent ID37ED40CA87F7B750 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Christopher%20Robinson%3B%20Louis%20Fre%CC%81maux_%20City%20Of%20Birmingham%20Symphony%20Orchestra/Carnival%20Of%20The%20Animals,%20Sympnony%20No%203/17%20Saint-Sae%CC%88ns_%20Symphony%20%233%20In%20C%20Minor,%20Op.%2078,%20_Organ_%20-%201A.%20Adagio,%20Allegro%20Moderato.m4a - File Folder Count4 - Library Folder Count1 - - 9792 - - Track ID9792 - NameSaint-Saëns: Symphony #3 In C Minor, Op. 78, "Organ" - 1B. Poco Adagio - ArtistChristopher Robinson; Louis Frémaux: City Of Birmingham Symphony Orchestra - ComposerCamille Saint-Saëns - AlbumCarnival Of The Animals, Sympnony No 3 - GenreClassical - KindAAC audio file - Size19611936 - Total Time581026 - Track Number18 - Track Count21 - Date Modified2011-11-19T17:54:22Z - Date Added2011-11-19T05:51:58Z - Bit Rate256 - Sample Rate44100 - Normalization505 - Artwork Count1 - Persistent ID653CA59DAF88F2B4 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Christopher%20Robinson%3B%20Louis%20Fre%CC%81maux_%20City%20Of%20Birmingham%20Symphony%20Orchestra/Carnival%20Of%20The%20Animals,%20Sympnony%20No%203/18%20Saint-Sae%CC%88ns_%20Symphony%20%233%20In%20C%20Minor,%20Op.%2078,%20_Organ_%20-%201B.%20Poco%20Adagio.m4a - File Folder Count4 - Library Folder Count1 - - 9794 - - Track ID9794 - NameSaint-Saëns: Symphony #3 In C Minor, Op. 78, "Organ" - 2A. Allegro Moderato, Presto - ArtistChristopher Robinson; Louis Frémaux: City Of Birmingham Symphony Orchestra - ComposerCamille Saint-Saëns - AlbumCarnival Of The Animals, Sympnony No 3 - GenreClassical - KindAAC audio file - Size14981029 - Total Time443773 - Track Number19 - Track Count21 - Date Modified2011-11-19T17:54:24Z - Date Added2011-11-19T05:52:54Z - Bit Rate256 - Sample Rate44100 - Normalization420 - Artwork Count1 - Persistent ID8D91D9F6379C02B7 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Christopher%20Robinson%3B%20Louis%20Fre%CC%81maux_%20City%20Of%20Birmingham%20Symphony%20Orchestra/Carnival%20Of%20The%20Animals,%20Sympnony%20No%203/19%20Saint-Sae%CC%88ns_%20Symphony%20%233%20In%20C%20Minor,%20Op.%2078,%20_Organ_%20-%202A.%20Allegro%20Moderato,%20Presto.m4a - File Folder Count4 - Library Folder Count1 - - 9796 - - Track ID9796 - NameSymphony No 3 In C Min - ArtistCbso - Christopher Robinson - AlbumCarnival Of The Animals, Sympnony No 3 - GenreClassical - KindAAC audio file - Size15264026 - Total Time460293 - Track Number20 - Track Count21 - Date Modified2011-11-19T17:54:26Z - Date Added2011-11-19T05:53:35Z - Bit Rate256 - Sample Rate44100 - Normalization1094 - Artwork Count1 - Persistent ID8A97C07B2A61442F - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Cbso%20-%20Christopher%20Robinson/Carnival%20Of%20The%20Animals,%20Sympnony%20No%203/20%20Symphony%20No%203%20In%20C%20Min.m4a - File Folder Count4 - Library Folder Count1 - - 9798 - - Track ID9798 - NameSaint-Saëns: Samson Et Dalila, Op. 47 - Danse Bacchanale - ArtistGeorges Prêtre: Paris Opera Orchestra - ComposerCamille Saint-Saëns - AlbumCarnival Of The Animals, Sympnony No 3 - GenreClassical - KindAAC audio file - Size13709180 - Total Time404320 - Track Number21 - Track Count21 - Date Modified2011-11-19T17:54:28Z - Date Added2011-11-19T05:54:16Z - Bit Rate256 - Sample Rate44100 - Normalization1283 - Artwork Count1 - Persistent IDC87872481D945DD2 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Georges%20Pre%CC%82tre_%20Paris%20Opera%20Orchestra/Carnival%20Of%20The%20Animals,%20Sympnony%20No%203/21%20Saint-Sae%CC%88ns_%20Samson%20Et%20Dalila,%20Op.%2047%20-%20Danse%20Bacchanale.m4a - File Folder Count4 - Library Folder Count1 - - 9802 - - Track ID9802 - NameTuning - ArtistScott Tennant - Album ArtistAlfred Music Publishing Co., Inc. - AlbumPumping Nylon: Easy to Early Intermediate Repertoire - GenreClassical - KindMPEG audio file - Size3607620 - Total Time88215 - Disc Number1 - Disc Count1 - Track Number1 - Track Count37 - Year1998 - Date Modified2011-11-19T09:45:37Z - Date Added2011-11-19T09:31:17Z - Bit Rate256 - Sample Rate44100 - Normalization454 - Artwork Count1 - Persistent IDC3B4FB4D469B62AB - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Easy%20to%20Early%20Intermediate%20Repertoire/01%20Tuning.mp3 - File Folder Count4 - Library Folder Count1 - - 9804 - - Track ID9804 - NameDifferent Strokes (Tennant/Gunod) - ArtistScott Tennant - Album ArtistAlfred Music Publishing Co., Inc. - ComposerThe Tenants/Gunod - AlbumPumping Nylon: Easy to Early Intermediate Repertoire - GenreClassical - KindMPEG audio file - Size2298624 - Total Time47307 - Disc Number1 - Disc Count1 - Track Number2 - Track Count37 - Year1998 - Date Modified2011-11-19T09:45:38Z - Date Added2011-11-19T09:31:18Z - Bit Rate256 - Sample Rate44100 - Play Count6 - Play Date3409393155 - Play Date UTC2012-01-14T08:09:15Z - Normalization507 - Artwork Count1 - Sort ComposerTenants/Gunod - Persistent IDD52B5F4294A6626F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Easy%20to%20Early%20Intermediate%20Repertoire/02%20Different%20Strokes%20(Tennant_Gunod).mp3 - File Folder Count4 - Library Folder Count1 - - 9806 - - Track ID9806 - NameWalking (Tennant/Gunod) - ArtistScott Tennant - Album ArtistAlfred Music Publishing Co., Inc. - ComposerThe Tenants/Gunod - AlbumPumping Nylon: Easy to Early Intermediate Repertoire - GenreClassical - KindMPEG audio file - Size2332886 - Total Time48378 - Disc Number1 - Disc Count1 - Track Number3 - Track Count37 - Year1998 - Date Modified2011-11-19T09:45:38Z - Date Added2011-11-19T09:31:18Z - Bit Rate256 - Sample Rate44100 - Play Count5 - Play Date3409028206 - Play Date UTC2012-01-10T02:46:46Z - Normalization810 - Artwork Count1 - Sort ComposerTenants/Gunod - Persistent ID2830FC932D658927 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Easy%20to%20Early%20Intermediate%20Repertoire/03%20Walking%20(Tennant_Gunod).mp3 - File Folder Count4 - Library Folder Count1 - - 9808 - - Track ID9808 - NameOpus 44, #6 (Fernando Sor) - ArtistScott Tennant - Album ArtistAlfred Music Publishing Co., Inc. - ComposerFernando Sor - AlbumPumping Nylon: Easy to Early Intermediate Repertoire - GenreClassical - KindMPEG audio file - Size2437374 - Total Time51644 - Disc Number1 - Disc Count1 - Track Number4 - Track Count37 - Year1998 - Date Modified2011-11-19T09:45:38Z - Date Added2011-11-19T09:31:18Z - Bit Rate256 - Sample Rate44100 - Play Count4 - Play Date3409543436 - Play Date UTC2012-01-16T01:53:56Z - Normalization925 - Artwork Count1 - Persistent ID5EC016BCCE11C90F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Easy%20to%20Early%20Intermediate%20Repertoire/04%20Opus%2044,%20%236%20(Fernando%20Sor).mp3 - File Folder Count4 - Library Folder Count1 - - 9810 - - Track ID9810 - NameBit O' Nostalgia (Scott Tennant) - ArtistScott Tennant - Album ArtistAlfred Music Publishing Co., Inc. - ComposerScott Tennant - AlbumPumping Nylon: Easy to Early Intermediate Repertoire - GenreClassical - KindMPEG audio file - Size3025868 - Total Time70034 - Disc Number1 - Disc Count1 - Track Number5 - Track Count37 - Year1998 - Date Modified2011-11-19T09:45:39Z - Date Added2011-11-19T09:31:23Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3409028486 - Play Date UTC2012-01-10T02:51:26Z - Normalization950 - Artwork Count1 - Persistent ID4A02F51053BB74FD - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Easy%20to%20Early%20Intermediate%20Repertoire/05%20Bit%20O'%20Nostalgia%20(Scott%20Tennant).mp3 - File Folder Count4 - Library Folder Count1 - - 9812 - - Track ID9812 - NameBalancing Act (Scott Tennant) - ArtistScott Tennant - Album ArtistAlfred Music Publishing Co., Inc. - ComposerScott Tennant - AlbumPumping Nylon: Easy to Early Intermediate Repertoire - GenreClassical - KindMPEG audio file - Size4029803 - Total Time101407 - Disc Number1 - Disc Count1 - Track Number6 - Track Count37 - Year1998 - Date Modified2011-11-19T09:45:39Z - Date Added2011-11-19T09:31:25Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3409543622 - Play Date UTC2012-01-16T01:57:02Z - Normalization1004 - Artwork Count1 - Persistent IDB2E1A2B2DA1BF0C3 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Easy%20to%20Early%20Intermediate%20Repertoire/06%20Balancing%20Act%20(Scott%20Tennant).mp3 - File Folder Count4 - Library Folder Count1 - - 9814 - - Track ID9814 - NameSnowflight (Andrew York) - ArtistScott Tennant - Album ArtistAlfred Music Publishing Co., Inc. - ComposerAndrew York - AlbumPumping Nylon: Easy to Early Intermediate Repertoire - GenreClassical - KindMPEG audio file - Size4524659 - Total Time116871 - Disc Number1 - Disc Count1 - Track Number7 - Track Count37 - Year1998 - Date Modified2011-11-19T09:45:40Z - Date Added2011-11-19T09:31:27Z - Bit Rate256 - Sample Rate44100 - Play Count3 - Play Date3409393278 - Play Date UTC2012-01-14T08:11:18Z - Normalization648 - Artwork Count1 - Persistent ID34DADA41976D67B5 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Easy%20to%20Early%20Intermediate%20Repertoire/07%20Snowflight%20(Andrew%20York).mp3 - File Folder Count4 - Library Folder Count1 - - 9816 - - Track ID9816 - NameCrispin's Spin (Omid Zounfonoun) - ArtistScott Tennant - Album ArtistAlfred Music Publishing Co., Inc. - ComposerOmid Zounfonoun - AlbumPumping Nylon: Easy to Early Intermediate Repertoire - GenreClassical - KindMPEG audio file - Size2192459 - Total Time43990 - Disc Number1 - Disc Count1 - Track Number8 - Track Count37 - Year1998 - Date Modified2011-11-19T09:45:40Z - Date Added2011-11-19T09:31:30Z - Bit Rate256 - Sample Rate44100 - Normalization724 - Artwork Count1 - Persistent ID7CE2D6C53700FE1A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Easy%20to%20Early%20Intermediate%20Repertoire/08%20Crispin's%20Spin%20(Omid%20Zounfonoun).mp3 - File Folder Count4 - Library Folder Count1 - - 9818 - - Track ID9818 - NameEstudio #2 (Francisco Tarrega) - ArtistScott Tennant - Album ArtistAlfred Music Publishing Co., Inc. - ComposerFrancisco Tárrega - AlbumPumping Nylon: Easy to Early Intermediate Repertoire - GenreClassical - KindMPEG audio file - Size3021690 - Total Time69903 - Disc Number1 - Disc Count1 - Track Number9 - Track Count37 - Year1998 - Date Modified2011-11-19T09:45:40Z - Date Added2011-11-19T09:31:33Z - Bit Rate256 - Sample Rate44100 - Normalization598 - Artwork Count1 - Persistent ID3635A4A64B022337 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Easy%20to%20Early%20Intermediate%20Repertoire/09%20Estudio%20%232%20(Francisco%20Tarrega).mp3 - File Folder Count4 - Library Folder Count1 - - 9820 - - Track ID9820 - NameEtude #19 (Matteo Carcassi) - ArtistScott Tennant - Album ArtistAlfred Music Publishing Co., Inc. - ComposerMatteo Carcassi - AlbumPumping Nylon: Easy to Early Intermediate Repertoire - GenreClassical - KindMPEG audio file - Size5045444 - Total Time133146 - Disc Number1 - Disc Count1 - Track Number10 - Track Count37 - Year1998 - Date Modified2011-11-19T09:45:41Z - Date Added2011-11-19T09:31:38Z - Bit Rate256 - Sample Rate44100 - Normalization732 - Artwork Count1 - Persistent IDF719D6B855C5E8D3 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Easy%20to%20Early%20Intermediate%20Repertoire/10%20Etude%20%2319%20(Matteo%20Carcassi).mp3 - File Folder Count4 - Library Folder Count1 - - 9822 - - Track ID9822 - NameOp. 35, #18 (Fernando Sor) - ArtistScott Tennant - Album ArtistAlfred Music Publishing Co., Inc. - ComposerFernando Sor - AlbumPumping Nylon: Easy to Early Intermediate Repertoire - GenreClassical - KindMPEG audio file - Size3193045 - Total Time75258 - Disc Number1 - Disc Count1 - Track Number11 - Track Count37 - Year1998 - Date Modified2011-11-19T09:45:41Z - Date Added2011-11-19T09:31:43Z - Bit Rate256 - Sample Rate44100 - Normalization585 - Artwork Count1 - Persistent IDF4D195E4642EF6AA - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Easy%20to%20Early%20Intermediate%20Repertoire/11%20Op.%2035,%20%2318%20(Fernando%20Sor).mp3 - File Folder Count4 - Library Folder Count1 - - 9824 - - Track ID9824 - NameScore Study (Sor/Tennant) - ArtistScott Tennant - Album ArtistAlfred Music Publishing Co., Inc. - ComposerThe Tenants/Sor - AlbumPumping Nylon: Easy to Early Intermediate Repertoire - GenreClassical - KindMPEG audio file - Size3103604 - Total Time72463 - Disc Number1 - Disc Count1 - Track Number12 - Track Count37 - Year1998 - Date Modified2011-11-19T09:45:42Z - Date Added2011-11-19T09:31:45Z - Bit Rate256 - Sample Rate44100 - Normalization989 - Artwork Count1 - Sort ComposerTenants/Sor - Persistent IDCCFCD2FCF617E6AE - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Easy%20to%20Early%20Intermediate%20Repertoire/12%20Score%20Study%20(Sor_Tennant).mp3 - File Folder Count4 - Library Folder Count1 - - 9826 - - Track ID9826 - NameOpus 60, #18 (Fernando Sor) - ArtistScott Tennant - Album ArtistAlfred Music Publishing Co., Inc. - ComposerFernando Sor - AlbumPumping Nylon: Easy to Early Intermediate Repertoire - GenreClassical - KindMPEG audio file - Size3594287 - Total Time87797 - Disc Number1 - Disc Count1 - Track Number13 - Track Count37 - Year1998 - Date Modified2011-11-19T09:45:42Z - Date Added2011-11-19T09:31:48Z - Bit Rate256 - Sample Rate44100 - Normalization809 - Artwork Count1 - Persistent ID8C512ADDA1E1B5B5 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Easy%20to%20Early%20Intermediate%20Repertoire/13%20Opus%2060,%20%2318%20(Fernando%20Sor).mp3 - File Folder Count4 - Library Folder Count1 - - 9828 - - Track ID9828 - NameOpus 60, #24 (Fernando Sor) - ArtistScott Tennant - Album ArtistAlfred Music Publishing Co., Inc. - ComposerFernando Sor - AlbumPumping Nylon: Easy to Early Intermediate Repertoire - GenreClassical - KindMPEG audio file - Size3804103 - Total Time94354 - Disc Number1 - Disc Count1 - Track Number14 - Track Count37 - Year1998 - Date Modified2011-11-19T09:45:43Z - Date Added2011-11-19T09:31:54Z - Bit Rate256 - Sample Rate44100 - Normalization905 - Artwork Count1 - Persistent ID77C571EF0857BC65 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Easy%20to%20Early%20Intermediate%20Repertoire/14%20Opus%2060,%20%2324%20(Fernando%20Sor).mp3 - File Folder Count4 - Library Folder Count1 - - 9830 - - Track ID9830 - NameMalaguena (Arr. Tennant) - ArtistScott Tennant - Album ArtistAlfred Music Publishing Co., Inc. - AlbumPumping Nylon: Easy to Early Intermediate Repertoire - GenreClassical - KindMPEG audio file - Size4441049 - Total Time114259 - Disc Number1 - Disc Count1 - Track Number15 - Track Count37 - Year1998 - Date Modified2011-11-19T09:45:43Z - Date Added2011-11-19T09:31:54Z - Bit Rate256 - Sample Rate44100 - Normalization1053 - Artwork Count1 - Persistent IDE080B63914BE444C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Easy%20to%20Early%20Intermediate%20Repertoire/15%20Malaguena%20(Arr.%20Tennant).mp3 - File Folder Count4 - Library Folder Count1 - - 9832 - - Track ID9832 - NameEtude #13 (Matteo Carcassi) - ArtistScott Tennant - Album ArtistAlfred Music Publishing Co., Inc. - ComposerMatteo Carcassi - AlbumPumping Nylon: Easy to Early Intermediate Repertoire - GenreClassical - KindMPEG audio file - Size4845660 - Total Time126902 - Disc Number1 - Disc Count1 - Track Number16 - Track Count37 - Year1998 - Date Modified2011-11-19T09:45:44Z - Date Added2011-11-19T09:31:58Z - Bit Rate256 - Sample Rate44100 - Normalization641 - Artwork Count1 - Persistent IDC4AB85C47A1D2876 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Easy%20to%20Early%20Intermediate%20Repertoire/16%20Etude%20%2313%20(Matteo%20Carcassi).mp3 - File Folder Count4 - Library Folder Count1 - - 9834 - - Track ID9834 - NameEtude #7 (Matteo Carcassi) - ArtistScott Tennant - Album ArtistAlfred Music Publishing Co., Inc. - ComposerMatteo Carcassi - AlbumPumping Nylon: Easy to Early Intermediate Repertoire - GenreClassical - KindMPEG audio file - Size6252510 - Total Time170866 - Disc Number1 - Disc Count1 - Track Number17 - Track Count37 - Year1998 - Date Modified2011-11-19T09:45:45Z - Date Added2011-11-19T09:32:01Z - Bit Rate256 - Sample Rate44100 - Normalization772 - Artwork Count1 - Persistent ID83F2DA0F5343F550 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Easy%20to%20Early%20Intermediate%20Repertoire/17%20Etude%20%237%20(Matteo%20Carcassi).mp3 - File Folder Count4 - Library Folder Count1 - - 9836 - - Track ID9836 - NameLittle Landler (Skot Tennant) - ArtistScott Tennant - Album ArtistAlfred Music Publishing Co., Inc. - ComposerScott Tennant - AlbumPumping Nylon: Easy to Early Intermediate Repertoire - GenreClassical - KindMPEG audio file - Size4921729 - Total Time129280 - Disc Number1 - Disc Count1 - Track Number18 - Track Count37 - Year1998 - Date Modified2011-11-19T09:45:45Z - Date Added2011-11-19T09:32:05Z - Bit Rate256 - Sample Rate44100 - Normalization510 - Artwork Count1 - Persistent ID463981347E261999 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Easy%20to%20Early%20Intermediate%20Repertoire/18%20Little%20Landler%20(Skot%20Tennant).mp3 - File Folder Count4 - Library Folder Count1 - - 9838 - - Track ID9838 - NameEtude #2 (Matteo Carcassi) - ArtistScott Tennant - Album ArtistAlfred Music Publishing Co., Inc. - ComposerMatteo Carcassi - AlbumPumping Nylon: Easy to Early Intermediate Repertoire - GenreClassical - KindMPEG audio file - Size4250485 - Total Time108303 - Disc Number1 - Disc Count1 - Track Number19 - Track Count37 - Year1998 - Date Modified2011-11-19T09:45:46Z - Date Added2011-11-19T09:32:09Z - Bit Rate256 - Sample Rate44100 - Normalization759 - Artwork Count1 - Persistent IDE56848608CB208D7 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Easy%20to%20Early%20Intermediate%20Repertoire/19%20Etude%20%232%20(Matteo%20Carcassi).mp3 - File Folder Count4 - Library Folder Count1 - - 9840 - - Track ID9840 - NameTwo Studies: Etude #12 (Fransisco Terrega) - ArtistScott Tennant - Album ArtistAlfred Music Publishing Co., Inc. - ComposerFrancisco Tárrega - AlbumPumping Nylon: Easy to Early Intermediate Repertoire - GenreClassical - KindMPEG audio file - Size1813801 - Total Time32156 - Disc Number1 - Disc Count1 - Track Number20 - Track Count37 - Year1998 - Date Modified2011-11-19T09:45:46Z - Date Added2011-11-19T09:32:14Z - Bit Rate256 - Sample Rate44100 - Normalization319 - Artwork Count1 - Persistent IDF7B3C686F2AF9E5F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Easy%20to%20Early%20Intermediate%20Repertoire/20%20Two%20Studies_%20Etude%20%2312%20(Fransisco%20Terrega).mp3 - File Folder Count4 - Library Folder Count1 - - 9842 - - Track ID9842 - NameTwo Studies: Etude #3 (Fransisco Terrega) - ArtistScott Tennant - Album ArtistAlfred Music Publishing Co., Inc. - ComposerFrancisco Tárrega - AlbumPumping Nylon: Easy to Early Intermediate Repertoire - GenreClassical - KindMPEG audio file - Size2532690 - Total Time54622 - Disc Number1 - Disc Count1 - Track Number21 - Track Count37 - Year1998 - Date Modified2011-11-19T09:45:47Z - Date Added2011-11-19T09:32:19Z - Bit Rate256 - Sample Rate44100 - Normalization525 - Artwork Count1 - Persistent ID80E51BF7B375AD95 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Easy%20to%20Early%20Intermediate%20Repertoire/21%20Two%20Studies_%20Etude%20%233%20(Fransisco%20Terrega).mp3 - File Folder Count4 - Library Folder Count1 - - 9844 - - Track ID9844 - NameEtude #6 (Matteo Carcassi) - ArtistScott Tennant - Album ArtistAlfred Music Publishing Co., Inc. - ComposerMatteo Carcassi - AlbumPumping Nylon: Easy to Early Intermediate Repertoire - GenreClassical - KindMPEG audio file - Size4444418 - Total Time114364 - Disc Number1 - Disc Count1 - Track Number22 - Track Count37 - Year1998 - Date Modified2011-11-19T09:45:47Z - Date Added2011-11-19T09:32:26Z - Bit Rate256 - Sample Rate44100 - Normalization1113 - Artwork Count1 - Persistent IDAE853A8AED0A1CB2 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Easy%20to%20Early%20Intermediate%20Repertoire/22%20Etude%20%236%20(Matteo%20Carcassi).mp3 - File Folder Count4 - Library Folder Count1 - - 9846 - - Track ID9846 - NameEtude #12 (Matteo Carcassi) - ArtistScott Tennant - Album ArtistAlfred Music Publishing Co., Inc. - ComposerMatteo Carcassi - AlbumPumping Nylon: Easy to Early Intermediate Repertoire - GenreClassical - KindMPEG audio file - Size5837895 - Total Time157910 - Disc Number1 - Disc Count1 - Track Number23 - Track Count37 - Year1998 - Date Modified2011-11-19T09:45:48Z - Date Added2011-11-19T09:32:26Z - Bit Rate256 - Sample Rate44100 - Normalization569 - Artwork Count1 - Persistent IDEDECF30659D03FB0 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Easy%20to%20Early%20Intermediate%20Repertoire/23%20Etude%20%2312%20(Matteo%20Carcassi).mp3 - File Folder Count4 - Library Folder Count1 - - 9848 - - Track ID9848 - NameOpus 6, Studio 4 (Fernando Sor) - ArtistScott Tennant - Album ArtistAlfred Music Publishing Co., Inc. - ComposerFernando Sor - AlbumPumping Nylon: Easy to Early Intermediate Repertoire - GenreClassical - KindMPEG audio file - Size5723375 - Total Time154331 - Disc Number1 - Disc Count1 - Track Number24 - Track Count37 - Year1998 - Date Modified2011-11-19T09:45:50Z - Date Added2011-11-19T09:32:31Z - Bit Rate256 - Sample Rate44100 - Normalization1079 - Artwork Count1 - Persistent IDDC3663A49966769A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Easy%20to%20Early%20Intermediate%20Repertoire/24%20Opus%206,%20Studio%204%20(Fernando%20Sor).mp3 - File Folder Count4 - Library Folder Count1 - - 9850 - - Track ID9850 - NameOpus 35, #19 (Fernando Sor) - ArtistScott Tennant - Album ArtistAlfred Music Publishing Co., Inc. - ComposerFernando Sor - AlbumPumping Nylon: Easy to Early Intermediate Repertoire - GenreClassical - KindMPEG audio file - Size3675371 - Total Time90331 - Disc Number1 - Disc Count1 - Track Number25 - Track Count37 - Year1998 - Date Modified2011-11-19T09:45:50Z - Date Added2011-11-19T09:32:35Z - Bit Rate256 - Sample Rate44100 - Normalization806 - Artwork Count1 - Persistent IDCE553EF7B97B2F92 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Easy%20to%20Early%20Intermediate%20Repertoire/25%20Opus%2035,%20%2319%20(Fernando%20Sor).mp3 - File Folder Count4 - Library Folder Count1 - - 9852 - - Track ID9852 - NameStudio De Campanelas Su Un Tema Della "Folia" Di M. De Fossa (Fransisco Tarrega - ArtistScott Tennant - Album ArtistAlfred Music Publishing Co., Inc. - ComposerFrancisco Tárrega - AlbumPumping Nylon: Easy to Early Intermediate Repertoire - GenreClassical - KindMPEG audio file - Size1793776 - Total Time31529 - Disc Number1 - Disc Count1 - Track Number26 - Track Count37 - Year1998 - Date Modified2011-11-19T09:45:50Z - Date Added2011-11-19T09:32:37Z - Bit Rate256 - Sample Rate44100 - Normalization765 - Artwork Count1 - Persistent ID5CE3C08C8FC66645 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Easy%20to%20Early%20Intermediate%20Repertoire/26%20Studio%20De%20Campanelas%20Su%20Un%20Tema%20Della%20_Folia_%20Di%20M.%20De%20Fossa%20(Fransisco%20Tarrega.mp3 - File Folder Count4 - Library Folder Count1 - - 9854 - - Track ID9854 - Name3 Pavans: Pavan #1 (Luis Milan) - ArtistScott Tennant - Album ArtistAlfred Music Publishing Co., Inc. - ComposerLuis Milan - AlbumPumping Nylon: Easy to Early Intermediate Repertoire - GenreClassical - KindMPEG audio file - Size3468065 - Total Time83853 - Disc Number1 - Disc Count1 - Track Number27 - Track Count37 - Year1998 - Date Modified2011-11-19T09:45:51Z - Date Added2011-11-19T09:32:39Z - Bit Rate256 - Sample Rate44100 - Normalization832 - Artwork Count1 - Persistent ID2EA4ADA897B8B248 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Easy%20to%20Early%20Intermediate%20Repertoire/27%203%20Pavans_%20Pavan%20%231%20(Luis%20Milan).mp3 - File Folder Count4 - Library Folder Count1 - - 9856 - - Track ID9856 - Name3 Pavans: Pavan #2 (Luis Milan) - ArtistScott Tennant - Album ArtistAlfred Music Publishing Co., Inc. - ComposerLuis Milan - AlbumPumping Nylon: Easy to Early Intermediate Repertoire - GenreClassical - KindMPEG audio file - Size4222064 - Total Time107415 - Disc Number1 - Disc Count1 - Track Number28 - Track Count37 - Year1998 - Date Modified2011-11-19T09:45:51Z - Date Added2011-11-19T09:32:44Z - Bit Rate256 - Sample Rate44100 - Normalization1011 - Artwork Count1 - Persistent ID9E3B833719AED05C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Easy%20to%20Early%20Intermediate%20Repertoire/28%203%20Pavans_%20Pavan%20%232%20(Luis%20Milan).mp3 - File Folder Count4 - Library Folder Count1 - - 9858 - - Track ID9858 - Name3 Pavans: Pavan #3 (Luis Milan) - ArtistScott Tennant - Album ArtistAlfred Music Publishing Co., Inc. - ComposerLuis Milan - AlbumPumping Nylon: Easy to Early Intermediate Repertoire - GenreClassical - KindMPEG audio file - Size4224572 - Total Time107493 - Disc Number1 - Disc Count1 - Track Number29 - Track Count37 - Year1998 - Date Modified2011-11-19T09:45:52Z - Date Added2011-11-19T09:32:50Z - Bit Rate256 - Sample Rate44100 - Normalization1033 - Artwork Count1 - Persistent IDB9D7A5AEBFB76104 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Easy%20to%20Early%20Intermediate%20Repertoire/29%203%20Pavans_%20Pavan%20%233%20(Luis%20Milan).mp3 - File Folder Count4 - Library Folder Count1 - - 9860 - - Track ID9860 - NameOpus 44, #8 (Fernando Sor) - ArtistScott Tennant - Album ArtistAlfred Music Publishing Co., Inc. - ComposerFernando Sor - AlbumPumping Nylon: Easy to Early Intermediate Repertoire - GenreClassical - KindMPEG audio file - Size3052611 - Total Time70870 - Disc Number1 - Disc Count1 - Track Number30 - Track Count37 - Year1998 - Date Modified2011-11-19T09:45:52Z - Date Added2011-11-19T09:32:50Z - Bit Rate256 - Sample Rate44100 - Normalization805 - Artwork Count1 - Persistent ID3126EF8039429B4F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Easy%20to%20Early%20Intermediate%20Repertoire/30%20Opus%2044,%20%238%20(Fernando%20Sor).mp3 - File Folder Count4 - Library Folder Count1 - - 9862 - - Track ID9862 - NameExercise In 3rds (Mauro Giuliant) - ArtistScott Tennant - Album ArtistAlfred Music Publishing Co., Inc. - ComposerMauro Giuliani - AlbumPumping Nylon: Easy to Early Intermediate Repertoire - GenreClassical - KindMPEG audio file - Size2713237 - Total Time60264 - Disc Number1 - Disc Count1 - Track Number31 - Track Count37 - Year1998 - Date Modified2011-11-19T09:45:52Z - Date Added2011-11-19T09:32:56Z - Bit Rate256 - Sample Rate44100 - Normalization937 - Artwork Count1 - Persistent ID3B46B8D38AF6B85D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Easy%20to%20Early%20Intermediate%20Repertoire/31%20Exercise%20In%203rds%20(Mauro%20Giuliant).mp3 - File Folder Count4 - Library Folder Count1 - - 9864 - - Track ID9864 - NameExercise In 6ths (Mauro Giuliant) - ArtistScott Tennant - Album ArtistAlfred Music Publishing Co., Inc. - ComposerMauro Giuliani - AlbumPumping Nylon: Easy to Early Intermediate Repertoire - GenreClassical - KindMPEG audio file - Size2514289 - Total Time54047 - Disc Number1 - Disc Count1 - Track Number32 - Track Count37 - Year1998 - Date Modified2011-11-19T09:45:53Z - Date Added2011-11-19T09:32:56Z - Bit Rate256 - Sample Rate44100 - Normalization466 - Artwork Count1 - Persistent ID851DB90909202F05 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Easy%20to%20Early%20Intermediate%20Repertoire/32%20Exercise%20In%206ths%20(Mauro%20Giuliant).mp3 - File Folder Count4 - Library Folder Count1 - - 9866 - - Track ID9866 - NameOpus 35, #5 (Fernando Sor) - ArtistScott Tennant - Album ArtistAlfred Music Publishing Co., Inc. - ComposerFernando Sor - AlbumPumping Nylon: Easy to Early Intermediate Repertoire - GenreClassical - KindMPEG audio file - Size5027886 - Total Time132597 - Disc Number1 - Disc Count1 - Track Number33 - Track Count37 - Year1998 - Date Modified2011-11-19T09:45:53Z - Date Added2011-11-19T09:33:00Z - Bit Rate256 - Sample Rate44100 - Normalization530 - Artwork Count1 - Persistent ID597C6A3877E39EC1 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Easy%20to%20Early%20Intermediate%20Repertoire/33%20Opus%2035,%20%235%20(Fernando%20Sor).mp3 - File Folder Count4 - Library Folder Count1 - - 9868 - - Track ID9868 - NameSlur Study (Mauro Giuliant) - ArtistScott Tennant - Album ArtistAlfred Music Publishing Co., Inc. - ComposerMauro Giuliani - AlbumPumping Nylon: Easy to Early Intermediate Repertoire - GenreClassical - KindMPEG audio file - Size2296108 - Total Time47229 - Disc Number1 - Disc Count1 - Track Number34 - Track Count37 - Year1998 - Date Modified2011-11-19T09:45:54Z - Date Added2011-11-19T09:33:01Z - Bit Rate256 - Sample Rate44100 - Normalization914 - Artwork Count1 - Persistent ID438AE8E8C06E2168 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Easy%20to%20Early%20Intermediate%20Repertoire/34%20Slur%20Study%20(Mauro%20Giuliant).mp3 - File Folder Count4 - Library Folder Count1 - - 9870 - - Track ID9870 - NameOpus 31, Lecon XV (Fernando Sor) - ArtistScott Tennant - Album ArtistAlfred Music Publishing Co., Inc. - ComposerFernando Sor - AlbumPumping Nylon: Easy to Early Intermediate Repertoire - GenreClassical - KindMPEG audio file - Size3605159 - Total Time88137 - Disc Number1 - Disc Count1 - Track Number35 - Track Count37 - Year1998 - Date Modified2011-11-19T09:45:54Z - Date Added2011-11-19T09:33:05Z - Bit Rate256 - Sample Rate44100 - Normalization920 - Artwork Count1 - Persistent IDE11874FFFD503B6E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Easy%20to%20Early%20Intermediate%20Repertoire/35%20Opus%2031,%20Lecon%20XV%20(Fernando%20Sor).mp3 - File Folder Count4 - Library Folder Count1 - - 9872 - - Track ID9872 - NameOpus 31, Lecon XII (Fernando Sor) - ArtistScott Tennant - Album ArtistAlfred Music Publishing Co., Inc. - ComposerFernando Sor - AlbumPumping Nylon: Easy to Early Intermediate Repertoire - GenreClassical - KindMPEG audio file - Size8157572 - Total Time230400 - Disc Number1 - Disc Count1 - Track Number36 - Track Count37 - Year1998 - Date Modified2011-11-19T09:45:55Z - Date Added2011-11-19T09:33:09Z - Bit Rate256 - Sample Rate44100 - Normalization1106 - Artwork Count1 - Persistent IDE10A549AC92B40AC - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Easy%20to%20Early%20Intermediate%20Repertoire/36%20Opus%2031,%20Lecon%20XII%20(Fernando%20Sor).mp3 - File Folder Count4 - Library Folder Count1 - - 9874 - - Track ID9874 - NameA Pale View (David Pritchard) - ArtistScott Tennant - Album ArtistAlfred Music Publishing Co., Inc. - ComposerDavid Pritchard - AlbumPumping Nylon: Easy to Early Intermediate Repertoire - GenreClassical - KindMPEG audio file - Size5646472 - Total Time151928 - Disc Number1 - Disc Count1 - Track Number37 - Track Count37 - Year1998 - Date Modified2011-11-19T09:45:56Z - Date Added2011-11-19T09:33:13Z - Bit Rate256 - Sample Rate44100 - Normalization533 - Artwork Count1 - Sort NamePale View (David Pritchard) - Persistent IDF8710002FF9BE9FD - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Easy%20to%20Early%20Intermediate%20Repertoire/37%20A%20Pale%20View%20(David%20Pritchard).mp3 - File Folder Count4 - Library Folder Count1 - - 9876 - - Track ID9876 - NameThe Frog Galliard - ArtistScott Tennant - Album ArtistAlfred Music Publishing Co., Inc. - ComposerJohn Dowland - AlbumPumping Nylon: Intermediate To Advanced Repertoire - GenreClassical - KindMPEG audio file - Size5001961 - Total Time131787 - Disc Number1 - Disc Count1 - Track Number1 - Track Count13 - Year1999 - Date Modified2011-11-19T09:45:57Z - Date Added2011-11-19T09:33:15Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3404560637 - Play Date UTC2011-11-19T09:47:17Z - Normalization1124 - Artwork Count1 - Sort NameFrog Galliard - Persistent ID4C0860C8B18A78EF - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Intermediate%20To%20Advanced%20Repertoire/01%20The%20Frog%20Galliard.mp3 - File Folder Count4 - Library Folder Count1 - - 9878 - - Track ID9878 - NameFantasia #18 - ArtistScott Tennant - Album ArtistAlfred Music Publishing Co., Inc. - ComposerLuys Milán - AlbumPumping Nylon: Intermediate To Advanced Repertoire - GenreClassical - KindMPEG audio file - Size6605245 - Total Time181890 - Disc Number1 - Disc Count1 - Track Number2 - Track Count13 - Year1999 - Date Modified2011-11-19T09:45:58Z - Date Added2011-11-19T09:33:18Z - Bit Rate256 - Sample Rate44100 - Normalization1025 - Artwork Count1 - Persistent ID9F85B6D27BCA29EB - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Intermediate%20To%20Advanced%20Repertoire/02%20Fantasia%20%2318.mp3 - File Folder Count4 - Library Folder Count1 - - 9880 - - Track ID9880 - NameFantasia #16 - ArtistScott Tennant - Album ArtistAlfred Music Publishing Co., Inc. - ComposerLuys Milán - AlbumPumping Nylon: Intermediate To Advanced Repertoire - GenreClassical - KindMPEG audio file - Size6041000 - Total Time164257 - Disc Number1 - Disc Count1 - Track Number3 - Track Count13 - Year1999 - Date Modified2011-11-19T09:45:59Z - Date Added2011-11-19T09:33:20Z - Bit Rate256 - Sample Rate44100 - Normalization1103 - Artwork Count1 - Persistent IDE682746F900B6759 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Intermediate%20To%20Advanced%20Repertoire/03%20Fantasia%20%2316.mp3 - File Folder Count4 - Library Folder Count1 - - 9882 - - Track ID9882 - NameVeintidos Diferencias De Conde Claros - ArtistScott Tennant - Album ArtistAlfred Music Publishing Co., Inc. - ComposerLuis De Narváez - AlbumPumping Nylon: Intermediate To Advanced Repertoire - GenreClassical - KindMPEG audio file - Size6526699 - Total Time179435 - Disc Number1 - Disc Count1 - Track Number4 - Track Count13 - Year1999 - Date Modified2011-11-19T09:46:00Z - Date Added2011-11-19T09:33:25Z - Bit Rate256 - Sample Rate44100 - Normalization1048 - Artwork Count1 - Persistent IDF4A9022EEE7A5A34 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Intermediate%20To%20Advanced%20Repertoire/04%20Veintidos%20Diferencias%20De%20Conde%20Claros.mp3 - File Folder Count4 - Library Folder Count1 - - 9884 - - Track ID9884 - NameVariations Sur Les "Folies d'Espagne" - Thema - ArtistScott Tennant - Album ArtistAlfred Music Publishing Co., Inc. - ComposerMauro Giulliani - AlbumPumping Nylon: Intermediate To Advanced Repertoire - GenreClassical - KindMPEG audio file - Size9871216 - Total Time283951 - Disc Number1 - Disc Count1 - Track Number5 - Track Count13 - Year1999 - Date Modified2011-11-19T09:46:01Z - Date Added2011-11-19T09:33:27Z - Bit Rate256 - Sample Rate44100 - Normalization1100 - Artwork Count1 - Persistent ID5BF1509E3BDAEC5F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Intermediate%20To%20Advanced%20Repertoire/05%20Variations%20Sur%20Les%20_Folies%20d'Espagne_%20-%20Thema.mp3 - File Folder Count4 - Library Folder Count1 - - 9886 - - Track ID9886 - NameEtude #11 - ArtistScott Tennant - Album ArtistAlfred Music Publishing Co., Inc. - ComposerNapoléon Coste - AlbumPumping Nylon: Intermediate To Advanced Repertoire - GenreClassical - KindMPEG audio file - Size3004110 - Total Time69355 - Disc Number1 - Disc Count1 - Track Number6 - Track Count13 - Year1999 - Date Modified2011-11-19T09:46:02Z - Date Added2011-11-19T09:33:30Z - Bit Rate256 - Sample Rate44100 - Normalization1085 - Artwork Count1 - Persistent ID7A5D84696715B8D7 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Intermediate%20To%20Advanced%20Repertoire/06%20Etude%20%2311.mp3 - File Folder Count4 - Library Folder Count1 - - 9888 - - Track ID9888 - NameFantasia Original - ArtistScott Tennant - Album ArtistAlfred Music Publishing Co., Inc. - ComposerJoes Vinas - AlbumPumping Nylon: Intermediate To Advanced Repertoire - GenreClassical - KindMPEG audio file - Size11313979 - Total Time329038 - Disc Number1 - Disc Count1 - Track Number7 - Track Count13 - Year1999 - Date Modified2011-11-19T09:46:03Z - Date Added2011-11-19T09:33:37Z - Bit Rate256 - Sample Rate44100 - Normalization1144 - Artwork Count1 - Persistent ID7073A796D1A8D497 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Intermediate%20To%20Advanced%20Repertoire/07%20Fantasia%20Original.mp3 - File Folder Count4 - Library Folder Count1 - - 9890 - - Track ID9890 - NameRasgueado Exercise In Solea - ArtistAdam Del Monte - Album ArtistAlfred Music Publishing Co., Inc. - ComposerAdam Del Monte - AlbumPumping Nylon: Intermediate To Advanced Repertoire - GenreClassical - KindMPEG audio file - Size3109405 - Total Time97097 - Disc Number1 - Disc Count1 - Track Number8 - Track Count13 - Year1999 - Date Modified2010-06-30T12:49:08Z - Date Added2011-11-19T09:33:38Z - Bit Rate256 - Sample Rate44100 - Normalization1150 - Persistent ID24ABE177584F317C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Intermediate%20To%20Advanced%20Repertoire/08%20Rasgueado%20Exercise%20In%20Solea.mp3 - File Folder Count4 - Library Folder Count1 - - 9892 - - Track ID9892 - NameAlzapua And Thumb Study In Solea - ArtistAdam Del Monte - Album ArtistAlfred Music Publishing Co., Inc. - ComposerAdam Del Monte - AlbumPumping Nylon: Intermediate To Advanced Repertoire - GenreClassical - KindMPEG audio file - Size3109410 - Total Time97097 - Disc Number1 - Disc Count1 - Track Number9 - Track Count13 - Year1999 - Date Modified2010-06-30T12:49:08Z - Date Added2011-11-19T09:33:44Z - Bit Rate256 - Sample Rate44100 - Normalization1148 - Persistent IDB5DC341F6F202C22 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Intermediate%20To%20Advanced%20Repertoire/09%20Alzapua%20And%20Thumb%20Study%20In%20Solea.mp3 - File Folder Count4 - Library Folder Count1 - - 9894 - - Track ID9894 - NameInspired By Villa-Lobos Etude #1 - ArtistScott Tennant - Album ArtistAlfred Music Publishing Co., Inc. - ComposerJoe Diorio - AlbumPumping Nylon: Intermediate To Advanced Repertoire - GenreClassical - KindMPEG audio file - Size5491823 - Total Time147095 - Disc Number1 - Disc Count1 - Track Number10 - Track Count13 - Year1999 - Date Modified2011-11-19T09:46:04Z - Date Added2011-11-19T09:33:44Z - Bit Rate256 - Sample Rate44100 - Normalization884 - Artwork Count1 - Persistent ID6F1E9A30FF308F94 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Intermediate%20To%20Advanced%20Repertoire/10%20Inspired%20By%20Villa-Lobos%20Etude%20%231.mp3 - File Folder Count4 - Library Folder Count1 - - 9896 - - Track ID9896 - NameStudy #1 - ArtistScott Tennant - Album ArtistAlfred Music Publishing Co., Inc. - ComposerCarlos Rafael Rivera - AlbumPumping Nylon: Intermediate To Advanced Repertoire - GenreClassical - KindMPEG audio file - Size3107770 - Total Time72594 - Disc Number1 - Disc Count1 - Track Number11 - Track Count13 - Year1999 - Date Modified2011-11-19T09:46:04Z - Date Added2011-11-19T09:33:48Z - Bit Rate256 - Sample Rate44100 - Normalization1183 - Artwork Count1 - Persistent IDB7377AF9B06DDCBA - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Intermediate%20To%20Advanced%20Repertoire/11%20Study%20%231.mp3 - File Folder Count4 - Library Folder Count1 - - 9898 - - Track ID9898 - NamePlainte - ArtistScott Tennant - Album ArtistAlfred Music Publishing Co., Inc. - ComposerBrian Head - AlbumPumping Nylon: Intermediate To Advanced Repertoire - GenreClassical - KindMPEG audio file - Size10117770 - Total Time291657 - Disc Number1 - Disc Count1 - Track Number12 - Track Count13 - Year1999 - Date Modified2011-11-19T09:46:06Z - Date Added2011-11-19T09:33:49Z - Bit Rate256 - Sample Rate44100 - Normalization887 - Artwork Count1 - Persistent ID1B7C7E26F1322790 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Intermediate%20To%20Advanced%20Repertoire/12%20Plainte.mp3 - File Folder Count4 - Library Folder Count1 - - 9900 - - Track ID9900 - NameConcierto De Aranjuez - Cadenza - ArtistScott Tennant - Album ArtistAlfred Music Publishing Co., Inc. - ComposerJoaquín Rodrigo - AlbumPumping Nylon: Intermediate To Advanced Repertoire - GenreClassical - KindMPEG audio file - Size4722782 - Total Time123062 - Disc Number1 - Disc Count1 - Track Number13 - Track Count13 - Year1999 - Date Modified2011-11-19T09:46:06Z - Date Added2011-11-19T09:33:55Z - Bit Rate256 - Sample Rate44100 - Normalization1066 - Artwork Count1 - Persistent ID9D65234D082D2BF1 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Alfred%20Music%20Publishing%20Co.,%20Inc_/Pumping%20Nylon_%20Intermediate%20To%20Advanced%20Repertoire/13%20Concierto%20De%20Aranjuez%20-%20Cadenza.mp3 - File Folder Count4 - Library Folder Count1 - - 9902 - - Track ID9902 - NameRide of the Valkyries - ArtistRobert Levine - AlbumThe Story of the Orchestra - GenreChildren's - KindAAC audio file - Size5219986 - Total Time155333 - Track Number1 - Track Count37 - Year2001 - Date Modified2011-11-19T18:05:28Z - Date Added2011-11-19T17:56:22Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3404906118 - Play Date UTC2011-11-23T09:45:18Z - Skip Count1 - Skip Date2013-11-24T09:17:14Z - Normalization1086 - Artwork Count1 - Sort AlbumStory of the Orchestra - Persistent ID7AB2D70463779E30 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/01%20Ride%20of%20the%20Valkyries.m4a - File Folder Count4 - Library Folder Count1 - - 9904 - - Track ID9904 - NameVivaldi: The 4 Seasons, Op. 8/1, RV 269, "Spring" - Allegro - ArtistTakako Nishizaki; Stephen Gunzenhauser: Capella Istropolitana - ComposerAntonio Vivaldi - AlbumThe Story of the Orchestra - GenreChildren's - KindAAC audio file - Size2759476 - Total Time81000 - Track Number2 - Track Count37 - Year2001 - Date Modified2011-11-19T18:05:28Z - Date Added2011-11-19T17:56:53Z - Bit Rate256 - Sample Rate44100 - Play Count2 - Play Date3457590437 - Play Date UTC2013-07-25T04:17:17Z - Normalization611 - Artwork Count1 - Sort AlbumStory of the Orchestra - Persistent ID772E86A4EFCC5E9D - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Takako%20Nishizaki%3B%20Stephen%20Gunzenhauser_%20Capella%20Istropolitana/The%20Story%20of%20the%20Orchestra/02%20Vivaldi_%20The%204%20Seasons,%20Op.%208_1,%20RV%20269,%20_Spring_%20-%20Allegro.m4a - File Folder Count4 - Library Folder Count1 - - 9906 - - Track ID9906 - NameWell-Tempered Clavier - ArtistRobert Levine - AlbumThe Story of the Orchestra - GenreChildren's - KindAAC audio file - Size2424704 - Total Time71493 - Track Number3 - Track Count37 - Year2001 - Date Modified2011-11-19T18:05:28Z - Date Added2011-11-19T17:57:09Z - Bit Rate256 - Sample Rate44100 - Play Count2 - Play Date3405230002 - Play Date UTC2011-11-27T03:43:22Z - Normalization97 - Artwork Count1 - Sort AlbumStory of the Orchestra - Persistent IDB71EDA2B4B4A4654 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/03%20Well-Tempered%20Clavier.m4a - File Folder Count4 - Library Folder Count1 - - 9908 - - Track ID9908 - NameSymphony No. 101"The Clock" - ArtistRobert Levine - AlbumThe Story of the Orchestra - GenreChildren's - KindAAC audio file - Size2448055 - Total Time71840 - Track Number4 - Track Count37 - Year2001 - Date Modified2011-11-19T18:05:29Z - Date Added2011-11-19T17:57:22Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3468149306 - Play Date UTC2013-11-24T09:18:26Z - Normalization178 - Artwork Count1 - Sort AlbumStory of the Orchestra - Persistent ID808B9893DF264C81 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/04%20Symphony%20No.%20101_The%20Clock_.m4a - File Folder Count4 - Library Folder Count1 - - 9910 - - Track ID9910 - NameEine Kleine Nachtmusik - ArtistRobert Levine - AlbumThe Story of the Orchestra - GenreChildren's - KindAAC audio file - Size2118200 - Total Time62333 - Track Number5 - Track Count37 - Year2001 - Date Modified2011-11-19T18:05:29Z - Date Added2011-11-19T17:57:36Z - Bit Rate256 - Sample Rate44100 - Play Count2 - Play Date3468149368 - Play Date UTC2013-11-24T09:19:28Z - Normalization255 - Artwork Count1 - Sort AlbumStory of the Orchestra - Persistent IDD49B2B9A1A1C99A9 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/05%20Eine%20Kleine%20Nachtmusik.m4a - File Folder Count4 - Library Folder Count1 - - 9912 - - Track ID9912 - NameFifth Symphony - ArtistRobert Levine - AlbumThe Story of the Orchestra - GenreChildren's - KindAAC audio file - Size3095446 - Total Time88826 - Track Number6 - Track Count37 - Year2001 - Date Modified2011-11-19T18:05:29Z - Date Added2011-11-19T17:57:47Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3468149457 - Play Date UTC2013-11-24T09:20:57Z - Normalization1083 - Artwork Count1 - Sort AlbumStory of the Orchestra - Persistent IDB2D547C13F6307B7 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/06%20Fifth%20Symphony.m4a - File Folder Count4 - Library Folder Count1 - - 9914 - - Track ID9914 - NameNinth Symphony - ArtistRobert Levine - AlbumThe Story of the Orchestra - GenreChildren's - KindAAC audio file - Size7195041 - Total Time214000 - Track Number7 - Track Count37 - Year2001 - Date Modified2011-11-19T18:05:30Z - Date Added2011-11-19T17:58:02Z - Bit Rate256 - Sample Rate44100 - Normalization987 - Artwork Count1 - Sort AlbumStory of the Orchestra - Persistent ID587702B36EE548C3 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/07%20Ninth%20Symphony.m4a - File Folder Count4 - Library Folder Count1 - - 9916 - - Track ID9916 - NameSleeping Beauty - ArtistRobert Levine - AlbumThe Story of the Orchestra - GenreChildren's - KindAAC audio file - Size3365239 - Total Time100173 - Track Number8 - Track Count37 - Year2001 - Date Modified2011-11-19T18:05:30Z - Date Added2011-11-19T17:58:34Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3468149671 - Play Date UTC2013-11-24T09:24:31Z - Normalization185 - Artwork Count1 - Sort AlbumStory of the Orchestra - Persistent ID3D4F2777958106AE - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/08%20Sleeping%20Beauty.m4a - File Folder Count4 - Library Folder Count1 - - 9918 - - Track ID9918 - NameHungarian Dance - ArtistRobert Levine - AlbumThe Story of the Orchestra - GenreChildren's - KindAAC audio file - Size2382539 - Total Time68000 - Track Number9 - Track Count37 - Year2001 - Date Modified2011-11-19T18:05:30Z - Date Added2011-11-19T17:58:49Z - Bit Rate256 - Sample Rate44100 - Play Count2 - Play Date3462766642 - Play Date UTC2013-09-23T02:07:22Z - Normalization817 - Artwork Count1 - Sort AlbumStory of the Orchestra - Persistent ID106638338A7ACFAF - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/09%20Hungarian%20Dance.m4a - File Folder Count4 - Library Folder Count1 - - 9920 - - Track ID9920 - NameSymphony #4 - ArtistRobert Levine - AlbumThe Story of the Orchestra - GenreChildren's - KindAAC audio file - Size3576577 - Total Time105826 - Track Number10 - Track Count37 - Year2001 - Date Modified2011-11-19T18:05:31Z - Date Added2011-11-19T17:58:59Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3462766748 - Play Date UTC2013-09-23T02:09:08Z - Normalization393 - Artwork Count1 - Sort AlbumStory of the Orchestra - Persistent ID1C4074434755D0AB - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/10%20Symphony%20%234.m4a - File Folder Count4 - Library Folder Count1 - - 9922 - - Track ID9922 - NameArabesque No. 1 - ArtistRobert Levine - AlbumThe Story of the Orchestra - GenreChildren's - KindAAC audio file - Size3044514 - Total Time90333 - Track Number11 - Track Count37 - Year2001 - Date Modified2011-11-19T18:05:31Z - Date Added2011-11-19T17:59:14Z - Bit Rate256 - Sample Rate44100 - Play Count3 - Play Date3462766838 - Play Date UTC2013-09-23T02:10:38Z - Normalization394 - Artwork Count1 - Sort AlbumStory of the Orchestra - Persistent ID46730D41C014DD8D - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/11%20Arabesque%20No.%201.m4a - File Folder Count4 - Library Folder Count1 - - 9924 - - Track ID9924 - NameRite of Spring - ArtistRobert Levine - AlbumThe Story of the Orchestra - GenreChildren's - KindAAC audio file - Size2626462 - Total Time77173 - Track Number12 - Track Count37 - Year2001 - Date Modified2011-11-19T18:05:31Z - Date Added2011-11-19T17:59:27Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3404590728 - Play Date UTC2011-11-19T18:08:48Z - Normalization18 - Artwork Count1 - Sort AlbumStory of the Orchestra - Persistent ID82A664A1DD3580F2 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/12%20Rite%20of%20Spring.m4a - File Folder Count4 - Library Folder Count1 - - 9926 - - Track ID9926 - NameSymphony No.4, Third movement - ArtistRobert Levine - AlbumThe Story of the Orchestra - GenreChildren's - KindAAC audio file - Size2181230 - Total Time64666 - Track Number13 - Track Count37 - Year2001 - Date Modified2011-11-19T18:05:31Z - Date Added2011-11-19T17:59:38Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3404590792 - Play Date UTC2011-11-19T18:09:52Z - Normalization273 - Artwork Count1 - Sort AlbumStory of the Orchestra - Persistent ID530A5FD0ADB3C715 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/13%20Symphony%20No.4,%20Third%20movement.m4a - File Folder Count4 - Library Folder Count1 - - 9928 - - Track ID9928 - NameSonata for Violin and Piano n A Major - ArtistRobert Levine - AlbumThe Story of the Orchestra - GenreChildren's - KindAAC audio file - Size4118907 - Total Time122333 - Track Number14 - Track Count37 - Year2001 - Date Modified2011-11-19T18:05:32Z - Date Added2011-11-19T17:59:47Z - Bit Rate256 - Sample Rate44100 - Normalization309 - Artwork Count1 - Sort AlbumStory of the Orchestra - Persistent IDD2FD290C334DB76C - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/14%20Sonata%20for%20Violin%20and%20Piano%20n%20A%20Major.m4a - File Folder Count4 - Library Folder Count1 - - 9930 - - Track ID9930 - NameConcert for Viola and orchestra - ArtistRobert Levine - AlbumThe Story of the Orchestra - GenreChildren's - KindAAC audio file - Size1849907 - Total Time49160 - Track Number15 - Track Count37 - Year2001 - Date Modified2011-11-19T18:05:32Z - Date Added2011-11-19T18:00:03Z - Bit Rate256 - Sample Rate44100 - Normalization271 - Artwork Count1 - Sort AlbumStory of the Orchestra - Persistent IDEA8C4922A3E5CEA5 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/15%20Concert%20for%20Viola%20and%20orchestra.m4a - File Folder Count4 - Library Folder Count1 - - 9932 - - Track ID9932 - NameWillaim Tell Overture - ArtistRobert Levine - AlbumThe Story of the Orchestra - GenreChildren's - KindAAC audio file - Size6212931 - Total Time186000 - Track Number16 - Track Count37 - Year2001 - Date Modified2011-11-19T18:05:32Z - Date Added2011-11-19T18:00:09Z - Bit Rate256 - Sample Rate44100 - Normalization35 - Artwork Count1 - Sort AlbumStory of the Orchestra - Persistent ID83ED6C986E5DA545 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/16%20Willaim%20Tell%20Overture.m4a - File Folder Count4 - Library Folder Count1 - - 9934 - - Track ID9934 - NameSaint-Saëns: Carnival Of The Animals, The Elephant - ArtistMarián Lapšanský, Peter Toperczer, Etc.; Ondrej Lenárd: Czechoslovak Radio Symphony Orchestra - ComposerCamille Saint-Saëns - AlbumThe Story of the Orchestra - GenreChildren's - KindAAC audio file - Size3284572 - Total Time97333 - Track Number17 - Track Count37 - Year2001 - Date Modified2011-11-19T18:05:34Z - Date Added2011-11-19T18:00:32Z - Bit Rate256 - Sample Rate44100 - Normalization113 - Artwork Count1 - Sort AlbumStory of the Orchestra - Persistent IDCBB0AF51347C918F - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Maria%CC%81n%20Laps%CC%8Cansky%CC%81,%20Peter%20Toperczer,%20Etc.%3B%20Ondrej%20Lena%CC%81rd_%20Czechoslovak%20Radio%20Symphony%20Orchestra/The%20Story%20of%20the%20Orchestra/17%20Saint-Sae%CC%88ns_%20Carnival%20Of%20The%20Animals,%20The%20Elephant.m4a - File Folder Count4 - Library Folder Count1 - - 9936 - - Track ID9936 - NameDance of the Blessed Spirits - ArtistRobert Levine - AlbumThe Story of the Orchestra - GenreChildren's - KindAAC audio file - Size2879751 - Total Time85506 - Track Number18 - Track Count37 - Year2001 - Date Modified2011-11-19T18:05:34Z - Date Added2011-11-19T18:00:44Z - Bit Rate256 - Sample Rate44100 - Normalization246 - Artwork Count1 - Sort AlbumStory of the Orchestra - Persistent IDC2ECD9A569745D17 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/18%20Dance%20of%20the%20Blessed%20Spirits.m4a - File Folder Count4 - Library Folder Count1 - - 9938 - - Track ID9938 - NameBach: Orchestral Suite #2 In B Minor - Badinerie - ArtistHelmut Müller-Brühl: Cologne Chamber Orchestra - ComposerJohann Sebastian Bach - AlbumThe Story of the Orchestra - GenreChildren's - KindAAC audio file - Size2856961 - Total Time81493 - Track Number19 - Track Count37 - Year2001 - Date Modified2011-11-19T18:05:34Z - Date Added2011-11-19T18:00:54Z - Bit Rate256 - Sample Rate44100 - Skip Count1 - Skip Date2013-11-24T09:17:08Z - Normalization318 - Artwork Count1 - Sort AlbumStory of the Orchestra - Persistent IDD486BD57711C4391 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Helmut%20Mu%CC%88ller-Bru%CC%88hl_%20Cologne%20Chamber%20Orchestra/The%20Story%20of%20the%20Orchestra/19%20Bach_%20Orchestral%20Suite%20%232%20In%20B%20Minor%20-%20Badinerie.m4a - File Folder Count4 - Library Folder Count1 - - 9940 - - Track ID9940 - NameSymphony No. 4, Third Movement - ArtistRobert Levine - AlbumThe Story of the Orchestra - GenreChildren's - KindAAC audio file - Size1257633 - Total Time36173 - Track Number20 - Track Count37 - Year2001 - Date Modified2011-11-19T18:05:35Z - Date Added2011-11-19T18:01:04Z - Bit Rate256 - Sample Rate44100 - Normalization234 - Artwork Count1 - Sort AlbumStory of the Orchestra - Persistent ID916F38FD166C6099 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/20%20Symphony%20No.%204,%20Third%20Movement.m4a - File Folder Count4 - Library Folder Count1 - - 9942 - - Track ID9942 - NameSinfonia in G Major for Two Oboes - ArtistRobert Levine - AlbumThe Story of the Orchestra - GenreChildren's - KindAAC audio file - Size2471588 - Total Time71666 - Track Number21 - Track Count37 - Year2001 - Date Modified2011-11-19T18:05:35Z - Date Added2011-11-19T18:01:09Z - Bit Rate256 - Sample Rate44100 - Normalization303 - Artwork Count1 - Sort AlbumStory of the Orchestra - Persistent IDBF85C57C497D95F2 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/21%20Sinfonia%20in%20G%20Major%20for%20Two%20Oboes.m4a - File Folder Count4 - Library Folder Count1 - - 9944 - - Track ID9944 - NameConcerto for Clarinet and Orchestra - ArtistRobert Levine - AlbumThe Story of the Orchestra - GenreChildren's - KindAAC audio file - Size3148737 - Total Time90826 - Track Number22 - Track Count37 - Year2001 - Date Modified2011-11-19T18:05:35Z - Date Added2011-11-19T18:01:18Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3405229929 - Play Date UTC2011-11-27T03:42:09Z - Normalization500 - Artwork Count1 - Sort AlbumStory of the Orchestra - Persistent IDDB2E63C59286F632 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/22%20Concerto%20for%20Clarinet%20and%20Orchestra.m4a - File Folder Count4 - Library Folder Count1 - - 9946 - - Track ID9946 - NameBolero - ArtistRobert Levine - AlbumThe Story of the Orchestra - GenreChildren's - KindAAC audio file - Size3709629 - Total Time110666 - Track Number23 - Track Count37 - Year2001 - Date Modified2011-11-19T18:05:35Z - Date Added2011-11-19T18:01:30Z - Bit Rate256 - Sample Rate44100 - Normalization32 - Artwork Count1 - Sort AlbumStory of the Orchestra - Persistent ID59D7E69EB2859730 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/23%20Bolero.m4a - File Folder Count4 - Library Folder Count1 - - 9948 - - Track ID9948 - NameSorcerer's Apprentice - ArtistRobert Levine - AlbumThe Story of the Orchestra - GenreChildren's - KindAAC audio file - Size2472096 - Total Time72333 - Track Number24 - Track Count37 - Year2001 - Date Modified2011-11-19T18:05:36Z - Date Added2011-11-19T18:01:43Z - Bit Rate256 - Sample Rate44100 - Normalization159 - Artwork Count1 - Sort AlbumStory of the Orchestra - Persistent ID2127CBE074F3126B - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/24%20Sorcerer's%20Apprentice.m4a - File Folder Count4 - Library Folder Count1 - - 9950 - - Track ID9950 - NameMother Good Suiteq - ArtistRobert Levine - AlbumThe Story of the Orchestra - GenreChildren's - KindAAC audio file - Size4101013 - Total Time121173 - Track Number25 - Track Count37 - Year2001 - Date Modified2011-11-19T18:05:36Z - Date Added2011-11-19T18:01:51Z - Bit Rate256 - Sample Rate44100 - Normalization660 - Artwork Count1 - Sort AlbumStory of the Orchestra - Persistent IDFC78F5E806B0D7C5 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/25%20Mother%20Good%20Suiteq.m4a - File Folder Count4 - Library Folder Count1 - - 9952 - - Track ID9952 - NameConcert for trumpet in E Flat - ArtistRobert Levine - AlbumThe Story of the Orchestra - GenreChildren's - KindAAC audio file - Size3902752 - Total Time115493 - Track Number26 - Track Count37 - Year2001 - Date Modified2011-11-19T18:05:36Z - Date Added2011-11-19T18:02:04Z - Bit Rate256 - Sample Rate44100 - Normalization389 - Artwork Count1 - Sort AlbumStory of the Orchestra - Persistent IDA584A2F3050356E7 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/26%20Concert%20for%20trumpet%20in%20E%20Flat.m4a - File Folder Count4 - Library Folder Count1 - - 9954 - - Track ID9954 - NameHorn Concerto No. 1 - ArtistRobert Levine - AlbumThe Story of the Orchestra - GenreChildren's - KindAAC audio file - Size4029984 - Total Time119666 - Track Number27 - Track Count37 - Year2001 - Date Modified2011-11-19T18:05:37Z - Date Added2011-11-19T18:02:16Z - Bit Rate256 - Sample Rate44100 - Normalization90 - Artwork Count1 - Sort AlbumStory of the Orchestra - Persistent IDC6AACA7DF1F3152E - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/27%20Horn%20Concerto%20No.%201.m4a - File Folder Count4 - Library Folder Count1 - - 9956 - - Track ID9956 - NameSymphony No.3 - ArtistRobert Levine - AlbumThe Story of the Orchestra - GenreChildren's - KindAAC audio file - Size2641781 - Total Time80333 - Track Number28 - Track Count37 - Year2001 - Date Modified2011-11-19T18:05:37Z - Date Added2011-11-19T18:02:30Z - Bit Rate256 - Sample Rate44100 - Normalization480 - Artwork Count1 - Sort AlbumStory of the Orchestra - Persistent IDC7D26FF6D654AFD2 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/28%20Symphony%20No.3.m4a - File Folder Count4 - Library Folder Count1 - - 9958 - - Track ID9958 - NamePictures at an Exhibition - ArtistRobert Levine - AlbumThe Story of the Orchestra - GenreChildren's - KindAAC audio file - Size5335126 - Total Time158840 - Track Number29 - Track Count37 - Year2001 - Date Modified2011-11-19T18:05:37Z - Date Added2011-11-19T18:02:39Z - Bit Rate256 - Sample Rate44100 - Normalization841 - Artwork Count1 - Sort AlbumStory of the Orchestra - Persistent ID55237604C77E3863 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/29%20Pictures%20at%20an%20Exhibition.m4a - File Folder Count4 - Library Folder Count1 - - 9960 - - Track ID9960 - NameShchedrin: Carmen Suite - Changing Of The Guard - ArtistTheodore Kuchar: Ukranian State Symphony Orchestra - ComposerRodion K. Shchedrin - AlbumThe Story of the Orchestra - GenreChildren's - KindAAC audio file - Size4022470 - Total Time119333 - Track Number30 - Track Count37 - Year2001 - Date Modified2011-11-19T18:05:38Z - Date Added2011-11-19T18:02:56Z - Bit Rate256 - Sample Rate44100 - Normalization385 - Artwork Count1 - Sort AlbumStory of the Orchestra - Persistent ID19843D1DA0D02359 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Theodore%20Kuchar_%20Ukranian%20State%20Symphony%20Orchestra/The%20Story%20of%20the%20Orchestra/30%20Shchedrin_%20Carmen%20Suite%20-%20Changing%20Of%20The%20Guard.m4a - File Folder Count4 - Library Folder Count1 - - 9962 - - Track ID9962 - NameSynphony No.7 - ArtistRobert Levine - AlbumThe Story of the Orchestra - GenreChildren's - KindAAC audio file - Size2085247 - Total Time59160 - Track Number31 - Track Count37 - Year2001 - Date Modified2011-11-19T18:05:38Z - Date Added2011-11-19T18:03:09Z - Bit Rate256 - Sample Rate44100 - Normalization345 - Artwork Count1 - Sort AlbumStory of the Orchestra - Persistent ID4BE85908E5FE8173 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/31%20Synphony%20No.7.m4a - File Folder Count4 - Library Folder Count1 - - 9964 - - Track ID9964 - NameSynphony No.4 - ArtistRobert Levine - AlbumThe Story of the Orchestra - GenreChildren's - KindAAC audio file - Size3492768 - Total Time104666 - Track Number32 - Track Count37 - Year2001 - Date Modified2011-11-19T18:05:38Z - Date Added2011-11-19T18:03:15Z - Bit Rate256 - Sample Rate44100 - Normalization668 - Artwork Count1 - Sort AlbumStory of the Orchestra - Persistent ID6F8D1BF792EE43CF - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/32%20Synphony%20No.4.m4a - File Folder Count4 - Library Folder Count1 - - 9966 - - Track ID9966 - NamePeer Gynt - ArtistRobert Levine - AlbumThe Story of the Orchestra - GenreChildren's - KindAAC audio file - Size4262412 - Total Time126333 - Track Number33 - Track Count37 - Year2001 - Date Modified2011-11-19T18:05:39Z - Date Added2011-11-19T18:03:26Z - Bit Rate256 - Sample Rate44100 - Normalization123 - Artwork Count1 - Sort AlbumStory of the Orchestra - Persistent IDFC8BA6998175909B - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/33%20Peer%20Gynt.m4a - File Folder Count4 - Library Folder Count1 - - 9968 - - Track ID9968 - NameNutcracker - ArtistRobert Levine - AlbumThe Story of the Orchestra - GenreChildren's - KindAAC audio file - Size4291894 - Total Time128173 - Track Number34 - Track Count37 - Year2001 - Date Modified2011-11-19T18:05:39Z - Date Added2011-11-19T18:03:39Z - Bit Rate256 - Sample Rate44100 - Normalization132 - Artwork Count1 - Sort AlbumStory of the Orchestra - Persistent IDD716867F8AD78023 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/34%20Nutcracker.m4a - File Folder Count4 - Library Folder Count1 - - 9970 - - Track ID9970 - NameToccata and Fugue in D Minor - ArtistRobert Levine - AlbumThe Story of the Orchestra - GenreChildren's - KindAAC audio file - Size5935304 - Total Time176000 - Track Number35 - Track Count37 - Year2001 - Date Modified2011-11-19T18:05:39Z - Date Added2011-11-19T18:03:52Z - Bit Rate256 - Sample Rate44100 - Normalization278 - Artwork Count1 - Sort AlbumStory of the Orchestra - Persistent ID617D4C91459670CA - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/35%20Toccata%20and%20Fugue%20in%20D%20Minor.m4a - File Folder Count4 - Library Folder Count1 - - 9972 - - Track ID9972 - NameMoonlight Sonata - ArtistRobert Levine - AlbumThe Story of the Orchestra - GenreChildren's - KindAAC audio file - Size4329767 - Total Time143000 - Track Number36 - Track Count37 - Year2001 - Date Modified2011-11-19T18:05:40Z - Date Added2011-11-19T18:04:09Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3468165310 - Play Date UTC2013-11-24T13:45:10Z - Normalization101 - Artwork Count1 - Sort AlbumStory of the Orchestra - Persistent ID06F7145188A8A1AC - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/36%20Moonlight%20Sonata.m4a - File Folder Count4 - Library Folder Count1 - - 9974 - - Track ID9974 - NameConcerto Champetre - ArtistRobert Levine - AlbumThe Story of the Orchestra - GenreChildren's - KindAAC audio file - Size5843082 - Total Time174666 - Track Number37 - Track Count37 - Year2001 - Date Modified2011-11-19T18:05:40Z - Date Added2011-11-19T18:04:23Z - Bit Rate256 - Sample Rate44100 - Normalization218 - Artwork Count1 - Sort AlbumStory of the Orchestra - Persistent IDC05E0EEA15F58BE0 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Robert%20Levine/The%20Story%20of%20the%20Orchestra/37%20Concerto%20Champetre.m4a - File Folder Count4 - Library Folder Count1 - - 10060 - - Track ID10060 - NameSpanish Study - ArtistFrederick M. Noad - AlbumSolo Guitar Playing 1 - GenreTraditional - KindAAC audio file - Size2346943 - Total Time64133 - Disc Number1 - Disc Count1 - Track Number1 - Track Count40 - Date Modified2012-01-10T11:31:58Z - Date Added2012-01-10T11:23:19Z - Bit Rate256 - Sample Rate44100 - Play Count2 - Play Date3409126311 - Play Date UTC2012-01-11T06:01:51Z - Normalization1336 - Artwork Count1 - Persistent IDCBBA6455DC69AC11 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Frederick%20M.%20Noad/Solo%20Guitar%20Playing%201/01%20Spanish%20Study.m4a - File Folder Count4 - Library Folder Count1 - - 10062 - - Track ID10062 - NameMalaguena - ArtistFrederick M. Noad - AlbumSolo Guitar Playing 1 - GenreTraditional - KindAAC audio file - Size1637089 - Total Time48293 - Disc Number1 - Disc Count1 - Track Number2 - Track Count40 - Date Modified2012-01-10T11:31:58Z - Date Added2012-01-10T11:23:34Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3409060173 - Play Date UTC2012-01-10T11:39:33Z - Normalization1259 - Artwork Count1 - Persistent IDF62637A2042C56C9 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Frederick%20M.%20Noad/Solo%20Guitar%20Playing%201/02%20Malaguena.m4a - File Folder Count4 - Library Folder Count1 - - 10064 - - Track ID10064 - NameWaltz By Ferdinando Carulli - ArtistFrederick M. Noad - AlbumSolo Guitar Playing 1 - GenreTraditional - KindAAC audio file - Size2870347 - Total Time86773 - Disc Number1 - Disc Count1 - Track Number3 - Track Count40 - Date Modified2012-01-10T11:31:59Z - Date Added2012-01-10T11:23:45Z - Bit Rate256 - Sample Rate44100 - Normalization1240 - Artwork Count1 - Persistent IDDFE4056AE2B29794 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Frederick%20M.%20Noad/Solo%20Guitar%20Playing%201/03%20Waltz%20By%20Ferdinando%20Carulli.m4a - File Folder Count4 - Library Folder Count1 - - 10066 - - Track ID10066 - NameAndantino By Ferdinando Carulli - ArtistFrederick M. Noad - AlbumSolo Guitar Playing 1 - GenreTraditional - KindAAC audio file - Size1713228 - Total Time46293 - Disc Number1 - Disc Count1 - Track Number4 - Track Count40 - Date Modified2012-01-10T11:31:59Z - Date Added2012-01-10T11:24:03Z - Bit Rate256 - Sample Rate44100 - Play Count4 - Play Date3409199528 - Play Date UTC2012-01-12T02:22:08Z - Normalization1259 - Artwork Count1 - Persistent ID02C0560669931434 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Frederick%20M.%20Noad/Solo%20Guitar%20Playing%201/04%20Andantino%20By%20Ferdinando%20Carulli.m4a - File Folder Count4 - Library Folder Count1 - - 10068 - - Track ID10068 - NameGreensleeves - ArtistFrederick M. Noad - AlbumSolo Guitar Playing 1 - GenreTraditional - KindAAC audio file - Size1651040 - Total Time44426 - Disc Number1 - Disc Count1 - Track Number5 - Track Count40 - Date Modified2012-01-10T11:31:59Z - Date Added2012-01-10T11:24:13Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3409060279 - Play Date UTC2012-01-10T11:41:19Z - Normalization1259 - Artwork Count1 - Persistent IDDFD7542FA3965FED - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Frederick%20M.%20Noad/Solo%20Guitar%20Playing%201/05%20Greensleeves.m4a - File Folder Count4 - Library Folder Count1 - - 10070 - - Track ID10070 - NameEtude By Ferdinando Carulli - ArtistFrederick M. Noad - AlbumSolo Guitar Playing 1 - GenreTraditional - KindAAC audio file - Size3561098 - Total Time95546 - Disc Number1 - Disc Count1 - Track Number6 - Track Count40 - Date Modified2012-01-10T11:31:59Z - Date Added2012-01-10T11:24:23Z - Bit Rate256 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Persistent IDF0775157EB2DA9B9 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Frederick%20M.%20Noad/Solo%20Guitar%20Playing%201/06%20Etude%20By%20Ferdinando%20Carulli.m4a - File Folder Count4 - Library Folder Count1 - - 10072 - - Track ID10072 - NameAlegretto By Frederick Noad - ArtistFrederick M. Noad - AlbumSolo Guitar Playing 1 - GenreTraditional - KindAAC audio file - Size2754850 - Total Time74960 - Disc Number1 - Disc Count1 - Track Number7 - Track Count40 - Date Modified2012-01-10T11:31:59Z - Date Added2012-01-10T11:24:41Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3409071726 - Play Date UTC2012-01-10T14:52:06Z - Normalization1259 - Artwork Count1 - Persistent ID6977FAB818BCFAEE - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Frederick%20M.%20Noad/Solo%20Guitar%20Playing%201/07%20Alegretto%20By%20Frederick%20Noad.m4a - File Folder Count4 - Library Folder Count1 - - 10074 - - Track ID10074 - NameStudy In Ligados By Frederick Noad - ArtistFrederick M. Noad - AlbumSolo Guitar Playing 1 - GenreTraditional - KindAAC audio file - Size1157574 - Total Time31573 - Disc Number1 - Disc Count1 - Track Number8 - Track Count40 - Date Modified2012-01-10T11:31:59Z - Date Added2012-01-10T11:24:55Z - Bit Rate256 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Persistent ID065C0E790B256807 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Frederick%20M.%20Noad/Solo%20Guitar%20Playing%201/08%20Study%20In%20Ligados%20By%20Frederick%20Noad.m4a - File Folder Count4 - Library Folder Count1 - - 10076 - - Track ID10076 - NameSaraband By Robert De Visee - ArtistFrederick M. Noad - AlbumSolo Guitar Playing 1 - GenreTraditional - KindAAC audio file - Size3872334 - Total Time106626 - Disc Number1 - Disc Count1 - Track Number9 - Track Count40 - Date Modified2012-01-10T11:31:59Z - Date Added2012-01-10T11:25:03Z - Bit Rate256 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Persistent ID47949A8B4F048474 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Frederick%20M.%20Noad/Solo%20Guitar%20Playing%201/09%20Saraband%20By%20Robert%20De%20Visee.m4a - File Folder Count4 - Library Folder Count1 - - 10078 - - Track ID10078 - NameRondo By Ferdinando Carulli - ArtistFrederick M. Noad - AlbumSolo Guitar Playing 1 - GenreTraditional - KindAAC audio file - Size1858856 - Total Time54040 - Disc Number1 - Disc Count1 - Track Number10 - Track Count40 - Date Modified2012-01-10T11:31:59Z - Date Added2012-01-10T11:25:22Z - Bit Rate256 - Sample Rate44100 - Normalization1322 - Artwork Count1 - Persistent ID9BCBD47DCCD85054 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Frederick%20M.%20Noad/Solo%20Guitar%20Playing%201/10%20Rondo%20By%20Ferdinando%20Carulli.m4a - File Folder Count4 - Library Folder Count1 - - 10080 - - Track ID10080 - NameCanari Jig - ArtistFrederick M. Noad - AlbumSolo Guitar Playing 1 - GenreTraditional - KindAAC audio file - Size1558782 - Total Time41133 - Disc Number1 - Disc Count1 - Track Number11 - Track Count40 - Date Modified2012-01-10T11:32:00Z - Date Added2012-01-10T11:25:32Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3409145569 - Play Date UTC2012-01-11T11:22:49Z - Normalization1241 - Artwork Count1 - Persistent ID3E85A13C25644A6B - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Frederick%20M.%20Noad/Solo%20Guitar%20Playing%201/11%20Canari%20Jig.m4a - File Folder Count4 - Library Folder Count1 - - 10082 - - Track ID10082 - NameMinuet By Robert De Visee - ArtistFrederick M. Noad - AlbumSolo Guitar Playing 1 - GenreTraditional - KindAAC audio file - Size1853239 - Total Time48293 - Disc Number1 - Disc Count1 - Track Number12 - Track Count40 - Date Modified2012-01-10T11:32:00Z - Date Added2012-01-10T11:25:41Z - Bit Rate256 - Sample Rate44100 - Normalization1224 - Artwork Count1 - Persistent ID2144050F163BD43F - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Frederick%20M.%20Noad/Solo%20Guitar%20Playing%201/12%20Minuet%20By%20Robert%20De%20Visee.m4a - File Folder Count4 - Library Folder Count1 - - 10084 - - Track ID10084 - NameBuree By Robert De Visee - ArtistFrederick M. Noad - AlbumSolo Guitar Playing 1 - GenreTraditional - KindAAC audio file - Size1810920 - Total Time47306 - Disc Number1 - Disc Count1 - Track Number13 - Track Count40 - Date Modified2012-01-10T11:32:00Z - Date Added2012-01-10T11:25:49Z - Bit Rate256 - Sample Rate44100 - Normalization1250 - Artwork Count1 - Persistent ID7F2EED1263C579EC - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Frederick%20M.%20Noad/Solo%20Guitar%20Playing%201/13%20Buree%20By%20Robert%20De%20Visee.m4a - File Folder Count4 - Library Folder Count1 - - 10086 - - Track ID10086 - NameTheme By G. F. Handel - ArtistFrederick M. Noad - AlbumSolo Guitar Playing 1 - GenreTraditional - KindAAC audio file - Size2440061 - Total Time65533 - Disc Number1 - Disc Count1 - Track Number14 - Track Count40 - Date Modified2012-01-10T11:32:00Z - Date Added2012-01-10T11:25:58Z - Bit Rate256 - Sample Rate44100 - Normalization1242 - Artwork Count1 - Persistent ID755DBC06481BAA9E - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Frederick%20M.%20Noad/Solo%20Guitar%20Playing%201/14%20Theme%20By%20G.%20F.%20Handel.m4a - File Folder Count4 - Library Folder Count1 - - 10088 - - Track ID10088 - NameBouree By J. S. Bach - ArtistFrederick M. Noad - AlbumSolo Guitar Playing 1 - GenreTraditional - KindAAC audio file - Size1629942 - Total Time44760 - Disc Number1 - Disc Count1 - Track Number15 - Track Count40 - Date Modified2012-01-10T11:32:00Z - Date Added2012-01-10T11:26:09Z - Bit Rate256 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Persistent IDEFB0D03CD639FB54 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Frederick%20M.%20Noad/Solo%20Guitar%20Playing%201/15%20Bouree%20By%20J.%20S.%20Bach.m4a - File Folder Count4 - Library Folder Count1 - - 10090 - - Track ID10090 - NamePezzo Tedesco - ArtistFrederick M. Noad - AlbumSolo Guitar Playing 1 - GenreTraditional - KindAAC audio file - Size2359551 - Total Time63400 - Disc Number1 - Disc Count1 - Track Number16 - Track Count40 - Date Modified2012-01-10T11:32:00Z - Date Added2012-01-10T11:26:17Z - Bit Rate256 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Persistent IDEB490C2030D2D76B - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Frederick%20M.%20Noad/Solo%20Guitar%20Playing%201/16%20Pezzo%20Tedesco.m4a - File Folder Count4 - Library Folder Count1 - - 10092 - - Track ID10092 - NameOrlando Sleepeth By John Dowland - ArtistFrederick M. Noad - AlbumSolo Guitar Playing 1 - GenreTraditional - KindAAC audio file - Size3823520 - Total Time102600 - Disc Number1 - Disc Count1 - Track Number17 - Track Count40 - Date Modified2012-01-10T11:32:00Z - Date Added2012-01-10T11:26:28Z - Bit Rate256 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Persistent ID7085E86A7F50BA95 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Frederick%20M.%20Noad/Solo%20Guitar%20Playing%201/17%20Orlando%20Sleepeth%20By%20John%20Dowland.m4a - File Folder Count4 - Library Folder Count1 - - 10094 - - Track ID10094 - NameMrs. Winter's Jump By John Dowland - ArtistFrederick M. Noad - AlbumSolo Guitar Playing 1 - GenreTraditional - KindAAC audio file - Size1086477 - Total Time32506 - Disc Number1 - Disc Count1 - Track Number18 - Track Count40 - Date Modified2012-01-10T11:32:01Z - Date Added2012-01-10T11:26:44Z - Bit Rate256 - Sample Rate44100 - Normalization1232 - Artwork Count1 - Persistent ID87CF7BA29904E89F - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Frederick%20M.%20Noad/Solo%20Guitar%20Playing%201/18%20Mrs.%20Winter's%20Jump%20By%20John%20Dowland.m4a - File Folder Count4 - Library Folder Count1 - - 10096 - - Track ID10096 - NameAir By Thomas Robinson - ArtistFrederick M. Noad - AlbumSolo Guitar Playing 1 - GenreTraditional - KindAAC audio file - Size2501236 - Total Time66560 - Disc Number1 - Disc Count1 - Track Number19 - Track Count40 - Date Modified2012-01-10T11:32:01Z - Date Added2012-01-10T11:26:50Z - Bit Rate256 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Persistent IDBB31EF39F809E184 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Frederick%20M.%20Noad/Solo%20Guitar%20Playing%201/19%20Air%20By%20Thomas%20Robinson.m4a - File Folder Count4 - Library Folder Count1 - - 10098 - - Track ID10098 - NameDove Son Quei Fieri Occhi - ArtistFrederick M. Noad - AlbumSolo Guitar Playing 1 - GenreTraditional - KindAAC audio file - Size3110003 - Total Time81240 - Disc Number1 - Disc Count1 - Track Number20 - Track Count40 - Date Modified2012-01-10T11:32:01Z - Date Added2012-01-10T11:27:01Z - Bit Rate256 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Persistent IDFECE50EC8A04D301 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Frederick%20M.%20Noad/Solo%20Guitar%20Playing%201/20%20Dove%20Son%20Quei%20Fieri%20Occhi.m4a - File Folder Count4 - Library Folder Count1 - - 10100 - - Track ID10100 - NameSe Io M'Accorgo - ArtistFrederick M. Noad - AlbumSolo Guitar Playing 1 - GenreTraditional - KindAAC audio file - Size3892808 - Total Time104333 - Disc Number1 - Disc Count1 - Track Number21 - Track Count40 - Date Modified2012-01-10T11:32:01Z - Date Added2012-01-10T11:27:13Z - Bit Rate256 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Persistent IDB97F9803A0B69B58 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Frederick%20M.%20Noad/Solo%20Guitar%20Playing%201/21%20Se%20Io%20M'Accorgo.m4a - File Folder Count4 - Library Folder Count1 - - 10102 - - Track ID10102 - NameItalian Vicenzo By Vicenzo Galilei - ArtistFrederick M. Noad - AlbumSolo Guitar Playing 1 - GenreTraditional - KindAAC audio file - Size2180747 - Total Time58093 - Disc Number1 - Disc Count1 - Track Number22 - Track Count40 - Date Modified2012-01-10T11:32:01Z - Date Added2012-01-10T11:27:28Z - Bit Rate256 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Persistent ID44D07BD4B9545758 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Frederick%20M.%20Noad/Solo%20Guitar%20Playing%201/22%20Italian%20Vicenzo%20By%20Vicenzo%20Galilei.m4a - File Folder Count4 - Library Folder Count1 - - 10104 - - Track ID10104 - NamePavane By Luis Milan - ArtistFrederick M. Noad - AlbumSolo Guitar Playing 1 - GenreTraditional - KindAAC audio file - Size2655804 - Total Time69000 - Disc Number1 - Disc Count1 - Track Number23 - Track Count40 - Date Modified2012-01-10T11:32:01Z - Date Added2012-01-10T11:27:37Z - Bit Rate256 - Sample Rate44100 - Normalization1257 - Artwork Count1 - Persistent ID03483AD8561903C5 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Frederick%20M.%20Noad/Solo%20Guitar%20Playing%201/23%20Pavane%20By%20Luis%20Milan.m4a - File Folder Count4 - Library Folder Count1 - - 10106 - - Track ID10106 - NameEtude In D By Fernando Sor - ArtistFrederick M. Noad - AlbumSolo Guitar Playing 1 - GenreTraditional - KindAAC audio file - Size3064124 - Total Time83066 - Disc Number1 - Disc Count1 - Track Number24 - Track Count40 - Date Modified2012-01-10T11:32:02Z - Date Added2012-01-10T11:27:47Z - Bit Rate256 - Sample Rate44100 - Normalization1237 - Artwork Count1 - Persistent ID5B18EF830D67F7D0 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Frederick%20M.%20Noad/Solo%20Guitar%20Playing%201/24%20Etude%20In%20D%20By%20Fernando%20Sor.m4a - File Folder Count4 - Library Folder Count1 - - 10108 - - Track ID10108 - NameEtude In B Minor By Fernando Sor - ArtistFrederick M. Noad - AlbumSolo Guitar Playing 1 - GenreTraditional - KindAAC audio file - Size4258189 - Total Time110573 - Disc Number1 - Disc Count1 - Track Number25 - Track Count40 - Date Modified2012-01-10T11:32:02Z - Date Added2012-01-10T11:27:57Z - Bit Rate256 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Persistent IDBCBD4FFA1B3E219A - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Frederick%20M.%20Noad/Solo%20Guitar%20Playing%201/25%20Etude%20In%20B%20Minor%20By%20Fernando%20Sor.m4a - File Folder Count4 - Library Folder Count1 - - 10110 - - Track ID10110 - NamePavan In A Minor By Gaspar Sanz - ArtistFrederick M. Noad - AlbumSolo Guitar Playing 1 - GenreTraditional - KindAAC audio file - Size3346778 - Total Time98600 - Disc Number1 - Disc Count1 - Track Number26 - Track Count40 - Date Modified2012-01-10T11:32:02Z - Date Added2012-01-10T11:28:13Z - Bit Rate256 - Sample Rate44100 - Normalization1258 - Artwork Count1 - Persistent ID1D3D35C68C9E8590 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Frederick%20M.%20Noad/Solo%20Guitar%20Playing%201/26%20Pavan%20In%20A%20Minor%20By%20Gaspar%20Sanz.m4a - File Folder Count4 - Library Folder Count1 - - 10112 - - Track ID10112 - NameProlude By Robert De Visee - ArtistFrederick M. Noad - AlbumSolo Guitar Playing 1 - GenreTraditional - KindAAC audio file - Size1490681 - Total Time40133 - Disc Number1 - Disc Count1 - Track Number27 - Track Count40 - Date Modified2012-01-10T11:32:02Z - Date Added2012-01-10T11:28:25Z - Bit Rate256 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Persistent IDFF71D7A4D1603812 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Frederick%20M.%20Noad/Solo%20Guitar%20Playing%201/27%20Prolude%20By%20Robert%20De%20Visee.m4a - File Folder Count4 - Library Folder Count1 - - 10114 - - Track ID10114 - NameAllemand By Robert De Visee - ArtistFrederick M. Noad - AlbumSolo Guitar Playing 1 - GenreTraditional - KindAAC audio file - Size3501419 - Total Time93026 - Disc Number1 - Disc Count1 - Track Number28 - Track Count40 - Date Modified2012-01-10T11:32:02Z - Date Added2012-01-10T11:28:30Z - Bit Rate256 - Sample Rate44100 - Normalization1252 - Artwork Count1 - Persistent ID7D68896556E788CC - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Frederick%20M.%20Noad/Solo%20Guitar%20Playing%201/28%20Allemand%20By%20Robert%20De%20Visee.m4a - File Folder Count4 - Library Folder Count1 - - 10116 - - Track ID10116 - NameSaraband By Robert De Visee - ArtistFrederick M. Noad - AlbumSolo Guitar Playing 1 - GenreTraditional - KindAAC audio file - Size4159498 - Total Time109640 - Disc Number1 - Disc Count1 - Track Number29 - Track Count40 - Date Modified2012-01-10T11:32:03Z - Date Added2012-01-10T11:28:43Z - Bit Rate256 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Persistent IDC0575F106561941C - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Frederick%20M.%20Noad/Solo%20Guitar%20Playing%201/29%20Saraband%20By%20Robert%20De%20Visee.m4a - File Folder Count4 - Library Folder Count1 - - 10118 - - Track ID10118 - NameGigue By Robert De Visee - ArtistFrederick M. Noad - AlbumSolo Guitar Playing 1 - GenreTraditional - KindAAC audio file - Size2487554 - Total Time64933 - Disc Number1 - Disc Count1 - Track Number30 - Track Count40 - Date Modified2012-01-10T11:32:03Z - Date Added2012-01-10T11:28:56Z - Bit Rate256 - Sample Rate44100 - Normalization1205 - Artwork Count1 - Persistent ID6CC9B17BDE9E25C6 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Frederick%20M.%20Noad/Solo%20Guitar%20Playing%201/30%20Gigue%20By%20Robert%20De%20Visee.m4a - File Folder Count4 - Library Folder Count1 - - 10120 - - Track ID10120 - NameEtude In A By Matteo Carcassi - ArtistFrederick M. Noad - AlbumSolo Guitar Playing 1 - GenreTraditional - KindAAC audio file - Size2828666 - Total Time74533 - Disc Number1 - Disc Count1 - Track Number31 - Track Count40 - Date Modified2012-01-10T11:32:03Z - Date Added2012-01-10T11:29:05Z - Bit Rate256 - Sample Rate44100 - Normalization1232 - Artwork Count1 - Persistent IDDDBB8132F4790560 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Frederick%20M.%20Noad/Solo%20Guitar%20Playing%201/31%20Etude%20In%20A%20By%20Matteo%20Carcassi.m4a - File Folder Count4 - Library Folder Count1 - - 10122 - - Track ID10122 - NameEtude In F By Matteo Carcassi - ArtistFrederick M. Noad - AlbumSolo Guitar Playing 1 - GenreTraditional - KindAAC audio file - Size2384323 - Total Time68760 - Disc Number1 - Disc Count1 - Track Number32 - Track Count40 - Date Modified2012-01-10T11:32:03Z - Date Added2012-01-10T11:29:16Z - Bit Rate256 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Persistent ID1CFFD4B96BA53A67 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Frederick%20M.%20Noad/Solo%20Guitar%20Playing%201/32%20Etude%20In%20F%20By%20Matteo%20Carcassi.m4a - File Folder Count4 - Library Folder Count1 - - 10124 - - Track ID10124 - NameMinuet In C By Fernando Sor - ArtistFrederick M. Noad - AlbumSolo Guitar Playing 1 - GenreTraditional - KindAAC audio file - Size6015406 - Total Time160173 - Disc Number1 - Disc Count1 - Track Number33 - Track Count40 - Date Modified2012-01-10T11:32:03Z - Date Added2012-01-10T11:29:24Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3409199904 - Play Date UTC2012-01-12T02:28:24Z - Normalization1259 - Artwork Count1 - Persistent ID095532BFA0F98F08 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Frederick%20M.%20Noad/Solo%20Guitar%20Playing%201/33%20Minuet%20In%20C%20By%20Fernando%20Sor.m4a - File Folder Count4 - Library Folder Count1 - - 10126 - - Track ID10126 - NameAndantino By Mauro Giuliani - ArtistFrederick M. Noad - AlbumSolo Guitar Playing 1 - GenreTraditional - KindAAC audio file - Size2932668 - Total Time84960 - Disc Number1 - Disc Count1 - Track Number34 - Track Count40 - Date Modified2012-01-10T11:32:03Z - Date Added2012-01-10T11:29:43Z - Bit Rate256 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Persistent ID93C566FF08E64F6B - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Frederick%20M.%20Noad/Solo%20Guitar%20Playing%201/34%20Andantino%20By%20Mauro%20Giuliani.m4a - File Folder Count4 - Library Folder Count1 - - 10128 - - Track ID10128 - NameAndante By Dionisio Aguado - ArtistFrederick M. Noad - AlbumSolo Guitar Playing 1 - GenreTraditional - KindAAC audio file - Size4130453 - Total Time119306 - Disc Number1 - Disc Count1 - Track Number35 - Track Count40 - Date Modified2012-01-10T11:32:04Z - Date Added2012-01-10T11:29:52Z - Bit Rate256 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Persistent ID3EE36597585205F9 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Frederick%20M.%20Noad/Solo%20Guitar%20Playing%201/35%20Andante%20By%20Dionisio%20Aguado.m4a - File Folder Count4 - Library Folder Count1 - - 10130 - - Track ID10130 - NameEtude In C By Fernando Sor - ArtistFrederick M. Noad - AlbumSolo Guitar Playing 1 - GenreTraditional - KindAAC audio file - Size3441843 - Total Time93533 - Disc Number1 - Disc Count1 - Track Number36 - Track Count40 - Date Modified2012-01-10T11:32:04Z - Date Added2012-01-10T11:30:05Z - Bit Rate256 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Persistent ID7EBD1DE02A1E2076 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Frederick%20M.%20Noad/Solo%20Guitar%20Playing%201/36%20Etude%20In%20C%20By%20Fernando%20Sor.m4a - File Folder Count4 - Library Folder Count1 - - 10132 - - Track ID10132 - NameAdelita By Francisco Tarrego - ArtistFrederick M. Noad - AlbumSolo Guitar Playing 1 - GenreTraditional - KindAAC audio file - Size3034313 - Total Time81426 - Disc Number1 - Disc Count1 - Track Number37 - Track Count40 - Date Modified2012-01-10T11:32:04Z - Date Added2012-01-10T11:30:15Z - Bit Rate256 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Persistent ID6893A52240221DF0 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Frederick%20M.%20Noad/Solo%20Guitar%20Playing%201/37%20Adelita%20By%20Francisco%20Tarrego.m4a - File Folder Count4 - Library Folder Count1 - - 10134 - - Track ID10134 - NameLagrima By Francisco Tarrego - ArtistFrederick M. Noad - AlbumSolo Guitar Playing 1 - GenreTraditional - KindAAC audio file - Size3807734 - Total Time103466 - Disc Number1 - Disc Count1 - Track Number38 - Track Count40 - Date Modified2012-01-10T11:32:04Z - Date Added2012-01-10T11:30:24Z - Bit Rate256 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Persistent IDDCF3F3EDE745AE9A - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Frederick%20M.%20Noad/Solo%20Guitar%20Playing%201/38%20Lagrima%20By%20Francisco%20Tarrego.m4a - File Folder Count4 - Library Folder Count1 - - 10136 - - Track ID10136 - NameRomance - ArtistFrederick M. Noad - AlbumSolo Guitar Playing 1 - GenreTraditional - KindAAC audio file - Size4467014 - Total Time119240 - Disc Number1 - Disc Count1 - Track Number39 - Track Count40 - Date Modified2012-01-10T11:32:04Z - Date Added2012-01-10T11:30:34Z - Bit Rate256 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Persistent IDD595FF49AB8B41EB - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Frederick%20M.%20Noad/Solo%20Guitar%20Playing%201/39%20Romance.m4a - File Folder Count4 - Library Folder Count1 - - 10138 - - Track ID10138 - NameEl Testamen De N'Amelia By Miguel Llobet - ArtistFrederick M. Noad - AlbumSolo Guitar Playing 1 - GenreTraditional - KindAAC audio file - Size4091939 - Total Time107493 - Disc Number1 - Disc Count1 - Track Number40 - Track Count40 - Date Modified2012-01-10T11:32:05Z - Date Added2012-01-10T11:30:47Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3409199748 - Play Date UTC2012-01-12T02:25:48Z - Normalization1259 - Artwork Count1 - Persistent IDF22624A5CFAA8FD1 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Frederick%20M.%20Noad/Solo%20Guitar%20Playing%201/40%20El%20Testamen%20De%20N'Amelia%20By%20Miguel%20Llobet.m4a - File Folder Count4 - Library Folder Count1 - - 10140 - - Track ID10140 - Name25/03/11 4:33 PM - ArtistMahesh Venkitachalam - AlbumVoice Memos - GenreVoice Memo - KindAAC audio file - Size192074 - Total Time23381 - Date Modified2011-03-25T11:05:13Z - Date Added2012-01-10T11:34:37Z - Bit Rate64 - Sample Rate44100 - Persistent IDE9FD67DA30239486 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Voice%20Memos/20110325%20163308.m4a - File Folder Count3 - Library Folder Count1 - - 10142 - - Track ID10142 - Name27/03/11 6:14 PM - ArtistMahesh Venkitachalam - AlbumVoice Memos - GenreVoice Memo - KindAAC audio file - Size91869 - Total Time11120 - Date Modified2011-03-27T12:44:46Z - Date Added2012-01-10T11:34:37Z - Bit Rate64 - Sample Rate44100 - Persistent ID8F4B512FE44E393A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Voice%20Memos/20110327%20181433.m4a - File Folder Count3 - Library Folder Count1 - - 10144 - - Track ID10144 - Name21/04/11 4:43 PM - ArtistMahesh Venkitachalam - AlbumVoice Memos - GenreVoice Memo - KindAAC audio file - Size1106346 - Total Time135254 - Date Modified2011-04-21T11:16:04Z - Date Added2012-01-10T11:34:37Z - Bit Rate64 - Sample Rate44100 - Persistent ID4583264992C17850 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Voice%20Memos/20110421%20164344.m4a - File Folder Count3 - Library Folder Count1 - - 10146 - - Track ID10146 - Name21/04/11 6:46 PM - ArtistMahesh Venkitachalam - AlbumVoice Memos - GenreVoice Memo - KindAAC audio file - Size55813 - Total Time6709 - Date Modified2011-04-21T13:16:55Z - Date Added2012-01-10T11:34:37Z - Bit Rate64 - Sample Rate44100 - Persistent IDE76EF26342C2657C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Voice%20Memos/20110421%20184647.m4a - File Folder Count3 - Library Folder Count1 - - 10148 - - Track ID10148 - Name21/04/11 6:47 PM - ArtistMahesh Venkitachalam - AlbumVoice Memos - GenreVoice Memo - KindAAC audio file - Size172715 - Total Time21012 - Date Modified2011-04-21T13:17:29Z - Date Added2012-01-10T11:34:37Z - Bit Rate64 - Sample Rate44100 - Persistent IDE6DA87C22BFB2678 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Voice%20Memos/20110421%20184708.m4a - File Folder Count3 - Library Folder Count1 - - 10150 - - Track ID10150 - Name21/04/11 6:47 PM - ArtistMahesh Venkitachalam - AlbumVoice Memos - GenreVoice Memo - KindAAC audio file - Size189224 - Total Time23032 - Date Modified2011-04-21T13:17:55Z - Date Added2012-01-10T11:34:37Z - Bit Rate64 - Sample Rate44100 - Persistent IDF1C319BD7227136C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Voice%20Memos/20110421%20184731.m4a - File Folder Count3 - Library Folder Count1 - - 10152 - - Track ID10152 - Name21/04/11 6:49 PM - ArtistMahesh Venkitachalam - AlbumVoice Memos - GenreVoice Memo - KindAAC audio file - Size88450 - Total Time10702 - Date Modified2011-04-21T13:19:34Z - Date Added2012-01-10T11:34:37Z - Bit Rate64 - Sample Rate44100 - Persistent IDFF61FC22F6A11A11 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Voice%20Memos/20110421%20184923.m4a - File Folder Count3 - Library Folder Count1 - - 10154 - - Track ID10154 - Name21/04/11 6:49 PM - ArtistMahesh Venkitachalam - AlbumVoice Memos - GenreVoice Memo - KindAAC audio file - Size107430 - Total Time13024 - Date Modified2011-04-21T13:20:06Z - Date Added2012-01-10T11:34:37Z - Bit Rate64 - Sample Rate44100 - Persistent ID642731EC8238205C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Voice%20Memos/20110421%20184953.m4a - File Folder Count3 - Library Folder Count1 - - 10156 - - Track ID10156 - Name21/04/11 6:51 PM - ArtistMahesh Venkitachalam - AlbumVoice Memos - GenreVoice Memo - KindAAC audio file - Size282968 - Total Time34503 - Date Modified2011-04-21T13:21:46Z - Date Added2012-01-10T11:34:37Z - Bit Rate64 - Sample Rate44100 - Persistent ID8F56D27A3C47DA8B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Voice%20Memos/20110421%20185111.m4a - File Folder Count3 - Library Folder Count1 - - 10158 - - Track ID10158 - Name26/04/11 1:23 PM - ArtistMahesh Venkitachalam - AlbumVoice Memos - GenreVoice Memo - KindAAC audio file - Size200603 - Total Time24425 - Date Modified2011-04-26T07:54:04Z - Date Added2012-01-10T11:34:37Z - Bit Rate64 - Sample Rate44100 - Persistent ID94770909A350D858 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Voice%20Memos/20110426%20132338.m4a - File Folder Count3 - Library Folder Count1 - - 10160 - - Track ID10160 - Name21/07/11 8:53 AM - ArtistMahesh Venkitachalam - AlbumVoice Memos - GenreVoice Memo - KindAAC audio file - Size129077 - Total Time15672 - Date Modified2011-07-21T03:24:14Z - Date Added2012-01-10T11:34:37Z - Bit Rate64 - Sample Rate44100 - Persistent IDCC41CE825961D427 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Voice%20Memos/20110721%20085357.m4a - File Folder Count3 - Library Folder Count1 - - 10162 - - Track ID10162 - Name29/07/11 7:54 PM - ArtistMahesh Venkitachalam - AlbumVoice Memos - GenreVoice Memo - KindAAC audio file - Size94344 - Total Time11422 - Date Modified2011-07-29T14:25:08Z - Date Added2012-01-10T11:34:37Z - Bit Rate64 - Sample Rate44100 - Persistent ID558042A450F0E826 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Voice%20Memos/20110729%20195455.m4a - File Folder Count3 - Library Folder Count1 - - 10164 - - Track ID10164 - Name29/07/11 7:55 PM - ArtistMahesh Venkitachalam - AlbumVoice Memos - GenreVoice Memo - KindAAC audio file - Size259045 - Total Time31577 - Date Modified2011-07-29T14:26:29Z - Date Added2012-01-10T11:34:37Z - Bit Rate64 - Sample Rate44100 - Persistent ID8EDA5D38CE6FCBC0 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Voice%20Memos/20110729%20195557.m4a - File Folder Count3 - Library Folder Count1 - - 10166 - - Track ID10166 - Name29/07/11 7:57 PM - ArtistMahesh Venkitachalam - AlbumVoice Memos - GenreVoice Memo - KindAAC audio file - Size645417 - Total Time78876 - Date Modified2011-07-29T14:28:52Z - Date Added2012-01-10T11:34:37Z - Bit Rate64 - Sample Rate44100 - Persistent ID70C1841DE1C0FA31 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Voice%20Memos/20110729%20195730.m4a - File Folder Count3 - Library Folder Count1 - - 10168 - - Track ID10168 - Name29/07/11 8:00 PM - ArtistMahesh Venkitachalam - AlbumVoice Memos - GenreVoice Memo - KindAAC audio file - Size350342 - Total Time42769 - Date Modified2011-07-29T14:31:35Z - Date Added2012-01-10T11:34:37Z - Bit Rate64 - Sample Rate44100 - Persistent IDA6BCE95A37117BAB - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Voice%20Memos/20110729%20200039.m4a - File Folder Count3 - Library Folder Count1 - - 10170 - - Track ID10170 - Name04/08/11 5:23 PM - ArtistMahesh Venkitachalam - AlbumVoice Memos - GenreVoice Memo - KindAAC audio file - Size33990 - Total Time4038 - Date Modified2011-08-04T11:53:35Z - Date Added2012-01-10T11:34:37Z - Bit Rate64 - Sample Rate44100 - Persistent IDB111291E51812630 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Voice%20Memos/20110804%20172329.m4a - File Folder Count3 - Library Folder Count1 - - 10172 - - Track ID10172 - Name08/08/11 8:15 PM - ArtistMahesh Venkitachalam - AlbumVoice Memos - GenreVoice Memo - KindAAC audio file - Size754709 - Total Time92228 - Date Modified2011-08-08T14:46:34Z - Date Added2012-01-10T11:34:37Z - Bit Rate64 - Sample Rate44100 - Persistent ID9029DE84ED64B3F0 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Voice%20Memos/20110808%20201500.m4a - File Folder Count3 - Library Folder Count1 - - 10174 - - Track ID10174 - Name01/09/11 8:37 AM - ArtistMahesh Venkitachalam - AlbumVoice Memos - GenreVoice Memo - KindAAC audio file - Size397193 - Total Time48481 - Date Modified2011-09-01T03:08:07Z - Date Added2012-01-10T11:34:37Z - Bit Rate64 - Sample Rate44100 - Persistent ID5AA8E6EC51B3981B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Voice%20Memos/20110901%20083717.m4a - File Folder Count3 - Library Folder Count1 - - 10176 - - Track ID10176 - Name01/09/11 8:41 AM - ArtistMahesh Venkitachalam - AlbumVoice Memos - GenreVoice Memo - KindAAC audio file - Size494554 - Total Time60393 - Date Modified2011-09-01T03:12:40Z - Date Added2012-01-10T11:34:37Z - Bit Rate64 - Sample Rate44100 - Persistent ID7292B54BEFB18237 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Voice%20Memos/20110901%20084139.m4a - File Folder Count3 - Library Folder Count1 - - 10178 - - Track ID10178 - Name27/12/11 1:21 PM - ArtistMahesh Venkitachalam - AlbumVoice Memos - GenreVoice Memo - KindAAC audio file - Size211657 - Total Time25749 - Date Modified2011-12-27T05:22:18Z - Date Added2012-01-10T11:34:37Z - Bit Rate64 - Sample Rate44100 - Persistent IDC3911E47A1AFBB3B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Voice%20Memos/20111227%20132147.m4a - File Folder Count3 - Library Folder Count1 - - 10180 - - Track ID10180 - Name27/12/11 3:07 PM - ArtistMahesh Venkitachalam - AlbumVoice Memos - GenreVoice Memo - KindAAC audio file - Size238060 - Total Time28977 - Date Modified2011-12-27T07:07:50Z - Date Added2012-01-10T11:34:37Z - Bit Rate64 - Sample Rate44100 - Persistent IDAD3675F5617989F1 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Voice%20Memos/20111227%20150718.m4a - File Folder Count3 - Library Folder Count1 - - 10210 - - Track ID10210 - NameKreasi Bebaturan - ArtistGusti Putu Oka - AlbumSolo Bamboo Flute - GenreTraditional - KindAAC audio file - Size12625500 - Total Time330520 - Track Number1 - Track Count9 - Date Modified2012-05-20T09:16:52Z - Date Added2012-05-20T09:15:54Z - Bit Rate256 - Sample Rate44100 - Play Count2 - Play Date3420682952 - Play Date UTC2012-05-24T00:12:32Z - Normalization3703 - Persistent IDA284124F0174131B - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Gusti%20Putu%20Oka/Solo%20Bamboo%20Flute/01%20Kreasi%20Bebaturan.m4a - File Folder Count4 - Library Folder Count1 - - 10212 - - Track ID10212 - NamePangkung Condong - ArtistGusti Putu Oka - AlbumSolo Bamboo Flute - GenreTraditional - KindAAC audio file - Size7887674 - Total Time238546 - Track Number2 - Track Count9 - Date Modified2012-05-20T09:17:31Z - Date Added2012-05-20T09:16:55Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3420683190 - Play Date UTC2012-05-24T00:16:30Z - Normalization5206 - Persistent ID3EC4C00544ECE077 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Gusti%20Putu%20Oka/Solo%20Bamboo%20Flute/02%20Pangkung%20Condong.m4a - File Folder Count4 - Library Folder Count1 - - 10214 - - Track ID10214 - NameDandang Genis - ArtistGusti Putu Oka - AlbumSolo Bamboo Flute - GenreTraditional - KindAAC audio file - Size16538603 - Total Time494653 - Track Number3 - Track Count9 - Date Modified2012-05-20T09:18:41Z - Date Added2012-05-20T09:17:33Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3420683685 - Play Date UTC2012-05-24T00:24:45Z - Normalization5115 - Persistent ID8FFD9ED27F799006 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Gusti%20Putu%20Oka/Solo%20Bamboo%20Flute/03%20Dandang%20Genis.m4a - File Folder Count4 - Library Folder Count1 - - 10216 - - Track ID10216 - NameSinom - ArtistGusti Putu Oka - AlbumSolo Bamboo Flute - GenreTraditional - KindAAC audio file - Size8342069 - Total Time251013 - Track Number4 - Track Count9 - Date Modified2012-05-20T09:19:14Z - Date Added2012-05-20T09:18:44Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3420683936 - Play Date UTC2012-05-24T00:28:56Z - Normalization4987 - Persistent IDE8D8C9CF2D4F414E - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Gusti%20Putu%20Oka/Solo%20Bamboo%20Flute/04%20Sinom.m4a - File Folder Count4 - Library Folder Count1 - - 10218 - - Track ID10218 - NameSekar Eled - ArtistGusti Putu Oka - AlbumSolo Bamboo Flute - GenreTraditional - KindAAC audio file - Size12396909 - Total Time339160 - Track Number5 - Track Count9 - Date Modified2012-05-20T09:19:55Z - Date Added2012-05-20T09:19:15Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3420684275 - Play Date UTC2012-05-24T00:34:35Z - Normalization3655 - Persistent IDCD5CB6F2A731CCBE - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Gusti%20Putu%20Oka/Solo%20Bamboo%20Flute/05%20Sekar%20Eled.m4a - File Folder Count4 - Library Folder Count1 - - 10220 - - Track ID10220 - NameDurma - ArtistGusti Putu Oka - AlbumSolo Bamboo Flute - GenreTraditional - KindAAC audio file - Size11774142 - Total Time334666 - Track Number6 - Track Count9 - Date Modified2012-05-20T09:20:32Z - Date Added2012-05-20T09:19:56Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3420684610 - Play Date UTC2012-05-24T00:40:10Z - Normalization3740 - Persistent ID462F49FB93F53CE5 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Gusti%20Putu%20Oka/Solo%20Bamboo%20Flute/06%20Durma.m4a - File Folder Count4 - Library Folder Count1 - - 10222 - - Track ID10222 - NameKarang Andis - ArtistGusti Putu Oka - AlbumSolo Bamboo Flute - GenreTraditional - KindAAC audio file - Size19729449 - Total Time592680 - Track Number7 - Track Count9 - Date Modified2012-05-20T09:21:33Z - Date Added2012-05-20T09:20:34Z - Bit Rate256 - Sample Rate44100 - Normalization8621 - Persistent ID6EF229B79F43926B - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Gusti%20Putu%20Oka/Solo%20Bamboo%20Flute/07%20Karang%20Andis.m4a - File Folder Count4 - Library Folder Count1 - - 10224 - - Track ID10224 - NameSemaradhana - ArtistGusti Putu Oka - AlbumSolo Bamboo Flute - GenreTraditional - KindAAC audio file - Size20111028 - Total Time604093 - Track Number8 - Track Count9 - Date Modified2012-05-20T09:22:29Z - Date Added2012-05-20T09:21:34Z - Bit Rate256 - Sample Rate44100 - Normalization5028 - Persistent ID98CA1F33CAC55189 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Gusti%20Putu%20Oka/Solo%20Bamboo%20Flute/08%20Semaradhana.m4a - File Folder Count4 - Library Folder Count1 - - 10226 - - Track ID10226 - NameWug Payangan - ArtistGusti Putu Oka - AlbumSolo Bamboo Flute - GenreTraditional - KindAAC audio file - Size19539168 - Total Time563373 - Track Number9 - Track Count9 - Date Modified2012-05-20T09:23:19Z - Date Added2012-05-20T09:22:31Z - Bit Rate256 - Sample Rate44100 - Normalization6213 - Persistent ID40093421866BC361 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Gusti%20Putu%20Oka/Solo%20Bamboo%20Flute/09%20Wug%20Payangan.m4a - File Folder Count4 - Library Folder Count1 - - 10228 - - Track ID10228 - NameLetters - ArtistThe John Brothers' Piano Company - ComposerJohn Steven Morgan & John Thatcher Boomer - AlbumThe John Brothers' Piano Company - GenreJazz - KindAAC audio file - Size6594775 - Total Time200466 - Disc Number1 - Disc Count1 - Track Number1 - Track Count15 - Year2010 - Date Modified2013-11-14T01:39:45Z - Date Added2012-05-26T01:45:09Z - Bit Rate256 - Sample Rate44100 - Normalization875 - Artwork Count1 - Sort AlbumJohn Brothers' Piano Company - Sort ArtistJohn Brothers' Piano Company - Persistent ID6E489F398A870BC0 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20John%20Brothers'%20Piano%20Company/The%20John%20Brothers'%20Piano%20Company/01%20Letters.m4a - File Folder Count4 - Library Folder Count1 - - 10230 - - Track ID10230 - NameRoadhouse Jackaround - ArtistThe John Brothers' Piano Company - ComposerJohn Steven Morgan & John Thatcher Boomer - AlbumThe John Brothers' Piano Company - GenreJazz - KindAAC audio file - Size9674848 - Total Time289920 - Disc Number1 - Disc Count1 - Track Number2 - Track Count15 - Year2010 - Date Modified2013-11-14T01:39:46Z - Date Added2012-05-26T01:45:28Z - Bit Rate256 - Sample Rate44100 - Normalization1289 - Artwork Count1 - Sort AlbumJohn Brothers' Piano Company - Sort ArtistJohn Brothers' Piano Company - Persistent ID9079A1E5DD0D5694 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20John%20Brothers'%20Piano%20Company/The%20John%20Brothers'%20Piano%20Company/02%20Roadhouse%20Jackaround.m4a - File Folder Count4 - Library Folder Count1 - - 10232 - - Track ID10232 - NameTerra Damnatta - ArtistThe John Brothers' Piano Company - ComposerJohn Steven Morgan & John Thatcher Boomer - AlbumThe John Brothers' Piano Company - GenreJazz - KindAAC audio file - Size10853878 - Total Time328213 - Disc Number1 - Disc Count1 - Track Number3 - Track Count15 - Year2010 - Date Modified2013-11-14T01:39:47Z - Date Added2012-05-26T01:45:53Z - Bit Rate256 - Sample Rate44100 - Normalization1287 - Artwork Count1 - Sort AlbumJohn Brothers' Piano Company - Sort ArtistJohn Brothers' Piano Company - Persistent IDA6144733F78E0D67 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20John%20Brothers'%20Piano%20Company/The%20John%20Brothers'%20Piano%20Company/03%20Terra%20Damnatta.m4a - File Folder Count4 - Library Folder Count1 - - 10234 - - Track ID10234 - NameMint Julep - ArtistThe John Brothers' Piano Company - ComposerJohn Steven Morgan & John Thatcher Boomer - AlbumThe John Brothers' Piano Company - GenreJazz - KindAAC audio file - Size14683069 - Total Time442946 - Disc Number1 - Disc Count1 - Track Number4 - Track Count15 - Year2010 - Date Modified2013-11-14T01:39:49Z - Date Added2012-05-26T01:46:18Z - Bit Rate256 - Sample Rate44100 - Normalization631 - Artwork Count1 - Sort AlbumJohn Brothers' Piano Company - Sort ArtistJohn Brothers' Piano Company - Persistent ID7784E58A531C2B41 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20John%20Brothers'%20Piano%20Company/The%20John%20Brothers'%20Piano%20Company/04%20Mint%20Julep.m4a - File Folder Count4 - Library Folder Count1 - - 10236 - - Track ID10236 - NameComputer Duster - ArtistThe John Brothers' Piano Company - ComposerJohn Steven Morgan & John Thatcher Boomer - AlbumThe John Brothers' Piano Company - GenreJazz - KindAAC audio file - Size8459300 - Total Time254173 - Disc Number1 - Disc Count1 - Track Number5 - Track Count15 - Year2010 - Date Modified2013-11-14T01:39:50Z - Date Added2012-05-26T01:46:49Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3428047881 - Play Date UTC2012-08-17T06:01:21Z - Normalization637 - Artwork Count1 - Sort AlbumJohn Brothers' Piano Company - Sort ArtistJohn Brothers' Piano Company - Persistent ID071C738F8307552C - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20John%20Brothers'%20Piano%20Company/The%20John%20Brothers'%20Piano%20Company/05%20Computer%20Duster.m4a - File Folder Count4 - Library Folder Count1 - - 10238 - - Track ID10238 - NameDaffey Duckin' - ArtistThe John Brothers' Piano Company - ComposerJohn Steven Morgan & John Thatcher Boomer - AlbumThe John Brothers' Piano Company - GenreJazz - KindAAC audio file - Size8006544 - Total Time239026 - Disc Number1 - Disc Count1 - Track Number6 - Track Count15 - Year2010 - Date Modified2013-11-14T01:39:51Z - Date Added2012-05-26T01:47:06Z - Bit Rate256 - Sample Rate44100 - Normalization1217 - Artwork Count1 - Sort AlbumJohn Brothers' Piano Company - Sort ArtistJohn Brothers' Piano Company - Persistent ID0777EDF975131525 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20John%20Brothers'%20Piano%20Company/The%20John%20Brothers'%20Piano%20Company/06%20Daffey%20Duckin'.m4a - File Folder Count4 - Library Folder Count1 - - 10240 - - Track ID10240 - NameThe Gambler - ArtistThe John Brothers' Piano Company - ComposerJohn Steven Morgan & John Thatcher Boomer - AlbumThe John Brothers' Piano Company - GenreJazz - KindAAC audio file - Size16779136 - Total Time505973 - Disc Number1 - Disc Count1 - Track Number7 - Track Count15 - Year2010 - Date Modified2013-11-14T01:39:53Z - Date Added2012-05-26T01:47:20Z - Bit Rate256 - Sample Rate44100 - Normalization327 - Artwork Count1 - Sort AlbumJohn Brothers' Piano Company - Sort ArtistJohn Brothers' Piano Company - Sort NameGambler - Persistent ID61E12E0ADE2E7682 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20John%20Brothers'%20Piano%20Company/The%20John%20Brothers'%20Piano%20Company/07%20The%20Gambler.m4a - File Folder Count4 - Library Folder Count1 - - 10242 - - Track ID10242 - NameRobots - ArtistThe John Brothers' Piano Company - ComposerJohn Steven Morgan & John Thatcher Boomer - AlbumThe John Brothers' Piano Company - GenreJazz - KindAAC audio file - Size5474745 - Total Time164346 - Disc Number1 - Disc Count1 - Track Number8 - Track Count15 - Year2010 - Date Modified2013-11-14T01:39:54Z - Date Added2012-05-26T01:47:50Z - Bit Rate256 - Sample Rate44100 - Normalization631 - Artwork Count1 - Sort AlbumJohn Brothers' Piano Company - Sort ArtistJohn Brothers' Piano Company - Persistent ID9EE2027D691FFF28 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20John%20Brothers'%20Piano%20Company/The%20John%20Brothers'%20Piano%20Company/08%20Robots.m4a - File Folder Count4 - Library Folder Count1 - - 10244 - - Track ID10244 - NameThe Mind Of The Dolphin - ArtistThe John Brothers' Piano Company - ComposerJohn Steven Morgan & John Thatcher Boomer - AlbumThe John Brothers' Piano Company - GenreJazz - KindAAC audio file - Size14141828 - Total Time426000 - Disc Number1 - Disc Count1 - Track Number9 - Track Count15 - Year2010 - Date Modified2013-11-14T01:39:56Z - Date Added2012-05-26T01:47:59Z - Bit Rate256 - Sample Rate44100 - Normalization1471 - Artwork Count1 - Sort AlbumJohn Brothers' Piano Company - Sort ArtistJohn Brothers' Piano Company - Sort NameMind Of The Dolphin - Persistent IDE37FE9EF65760259 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20John%20Brothers'%20Piano%20Company/The%20John%20Brothers'%20Piano%20Company/09%20The%20Mind%20Of%20The%20Dolphin.m4a - File Folder Count4 - Library Folder Count1 - - 10246 - - Track ID10246 - NameThe Scythe Of Time (A Predicament) - ArtistThe John Brothers' Piano Company - ComposerJohn Steven Morgan & John Thatcher Boomer - AlbumThe John Brothers' Piano Company - GenreJazz - KindAAC audio file - Size6571267 - Total Time198146 - Disc Number1 - Disc Count1 - Track Number10 - Track Count15 - Year2010 - Date Modified2013-11-14T01:39:57Z - Date Added2012-05-26T01:48:22Z - Bit Rate256 - Sample Rate44100 - Normalization714 - Artwork Count1 - Sort AlbumJohn Brothers' Piano Company - Sort ArtistJohn Brothers' Piano Company - Sort NameScythe Of Time (A Predicament) - Persistent ID7CBEAC2F2558FEC2 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20John%20Brothers'%20Piano%20Company/The%20John%20Brothers'%20Piano%20Company/10%20The%20Scythe%20Of%20Time%20(A%20Predicament).m4a - File Folder Count4 - Library Folder Count1 - - 10248 - - Track ID10248 - NameCat Stridin' Blues - ArtistThe John Brothers' Piano Company - ComposerJohn Steven Morgan & John Thatcher Boomer - AlbumThe John Brothers' Piano Company - GenreJazz - KindAAC audio file - Size4684727 - Total Time139880 - Disc Number1 - Disc Count1 - Track Number11 - Track Count15 - Year2010 - Date Modified2013-11-14T01:39:57Z - Date Added2012-05-26T01:48:32Z - Bit Rate256 - Sample Rate44100 - Normalization1130 - Artwork Count1 - Sort AlbumJohn Brothers' Piano Company - Sort ArtistJohn Brothers' Piano Company - Persistent ID0925177E5CC4890A - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20John%20Brothers'%20Piano%20Company/The%20John%20Brothers'%20Piano%20Company/11%20Cat%20Stridin'%20Blues.m4a - File Folder Count4 - Library Folder Count1 - - 10250 - - Track ID10250 - NameGhost Town Stride - ArtistThe John Brothers' Piano Company - ComposerJohn Steven Morgan & John Thatcher Boomer - AlbumThe John Brothers' Piano Company - GenreJazz - KindAAC audio file - Size8807132 - Total Time262853 - Disc Number1 - Disc Count1 - Track Number12 - Track Count15 - Year2010 - Date Modified2013-11-14T01:39:58Z - Date Added2012-05-26T01:48:39Z - Bit Rate256 - Sample Rate44100 - Normalization631 - Artwork Count1 - Sort AlbumJohn Brothers' Piano Company - Sort ArtistJohn Brothers' Piano Company - Persistent ID90C1EB6DC7AE9041 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20John%20Brothers'%20Piano%20Company/The%20John%20Brothers'%20Piano%20Company/12%20Ghost%20Town%20Stride.m4a - File Folder Count4 - Library Folder Count1 - - 10252 - - Track ID10252 - NameJane The Birdfeeder Lady - ArtistThe John Brothers' Piano Company - ComposerJohn Steven Morgan & John Thatcher Boomer - AlbumThe John Brothers' Piano Company - GenreJazz - KindAAC audio file - Size11089728 - Total Time332626 - Disc Number1 - Disc Count1 - Track Number13 - Track Count15 - Year2010 - Date Modified2013-11-14T01:40:00Z - Date Added2012-05-26T01:48:52Z - Bit Rate256 - Sample Rate44100 - Normalization631 - Artwork Count1 - Sort AlbumJohn Brothers' Piano Company - Sort ArtistJohn Brothers' Piano Company - Persistent ID58673D6843B7F32C - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20John%20Brothers'%20Piano%20Company/The%20John%20Brothers'%20Piano%20Company/13%20Jane%20The%20Birdfeeder%20Lady.m4a - File Folder Count4 - Library Folder Count1 - - 10254 - - Track ID10254 - NameRocket Ship - ArtistThe John Brothers' Piano Company - ComposerJohn Steven Morgan & John Thatcher Boomer - AlbumThe John Brothers' Piano Company - GenreJazz - KindAAC audio file - Size13269737 - Total Time399626 - Disc Number1 - Disc Count1 - Track Number14 - Track Count15 - Year2010 - Date Modified2013-11-14T01:40:01Z - Date Added2012-05-26T01:49:07Z - Bit Rate256 - Sample Rate44100 - Normalization918 - Artwork Count1 - Sort AlbumJohn Brothers' Piano Company - Sort ArtistJohn Brothers' Piano Company - Persistent IDFF2902A49359BBEA - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20John%20Brothers'%20Piano%20Company/The%20John%20Brothers'%20Piano%20Company/14%20Rocket%20Ship.m4a - File Folder Count4 - Library Folder Count1 - - 10256 - - Track ID10256 - NameEpilogue - ArtistThe John Brothers' Piano Company - ComposerJohn Steven Morgan & John Thatcher Boomer - AlbumThe John Brothers' Piano Company - GenreJazz - KindAAC audio file - Size12979497 - Total Time386453 - Disc Number1 - Disc Count1 - Track Number15 - Track Count15 - Year2010 - Date Modified2013-11-14T01:40:03Z - Date Added2012-05-26T01:49:25Z - Bit Rate256 - Sample Rate44100 - Normalization631 - Artwork Count1 - Sort AlbumJohn Brothers' Piano Company - Sort ArtistJohn Brothers' Piano Company - Persistent ID672ABC3FA766C640 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20John%20Brothers'%20Piano%20Company/The%20John%20Brothers'%20Piano%20Company/15%20Epilogue.m4a - File Folder Count4 - Library Folder Count1 - - 10328 - - Track ID10328 - NameThe Art of Fugue, BWV 1080 - - - No.12a - ArtistKarl Münchinger - Album ArtistStuttgarter Kammerorchester - ComposerBach, Johann Sebastian - AlbumBach, J.S.: The Art of Fugue; A Musical Offering - GenreClassical - KindMPEG audio file - Size6538069 - Total Time197720 - Disc Number2 - Disc Count2 - Track Number1 - Track Count19 - Year2001 - Date Modified2012-08-06T01:46:56Z - Date Added2012-08-06T03:09:59Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202544764 - Artwork Count1 - Sort NameArt of Fugue, BWV 1080 - - - No.12a - Persistent ID3C9297C61D2D7307 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stuttgarter%20Kammerorchester/Bach,%20J.S._%20The%20Art%20of%20Fugue%3B%20A%20Musical%20Offering/(Disc%202)%2001%20-%20The%20Art%20of%20Fugue,%20BWV%201080%20-%20-%20-%20No.12a.mp3 - File Folder Count4 - Library Folder Count1 - - 10330 - - Track ID10330 - NameThe Art of Fugue, BWV 1080 - - - No.12b - ArtistKarl Münchinger - Album ArtistStuttgarter Kammerorchester - ComposerBach, Johann Sebastian - AlbumBach, J.S.: The Art of Fugue; A Musical Offering - GenreClassical - KindMPEG audio file - Size6159398 - Total Time185887 - Disc Number2 - Disc Count2 - Track Number2 - Track Count19 - Year2001 - Date Modified2012-08-06T01:46:25Z - Date Added2012-08-06T03:09:59Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202544766 - Artwork Count1 - Sort NameArt of Fugue, BWV 1080 - - - No.12b - Persistent ID0AC4881E87850B7E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stuttgarter%20Kammerorchester/Bach,%20J.S._%20The%20Art%20of%20Fugue%3B%20A%20Musical%20Offering/(Disc%202)%2002%20-%20The%20Art%20of%20Fugue,%20BWV%201080%20-%20-%20-%20No.12b.mp3 - File Folder Count4 - Library Folder Count1 - - 10332 - - Track ID10332 - NameThe Art of Fugue, BWV 1080 - - - No.18. Chorale: "Wenn wir in höchsten Nöten sein" - ArtistKarl Münchinger - Album ArtistStuttgarter Kammerorchester - ComposerBach, Johann Sebastian - AlbumBach, J.S.: The Art of Fugue; A Musical Offering - GenreClassical - KindMPEG audio file - Size27844878 - Total Time863555 - Disc Number2 - Disc Count2 - Track Number3 - Track Count19 - Year2001 - Date Modified2012-08-06T01:45:19Z - Date Added2012-08-06T03:09:59Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202544768 - Artwork Count1 - Sort NameArt of Fugue, BWV 1080 - - - No.18. Chorale: "Wenn wir in höchsten Nöten sein" - Persistent IDF8B54D99C163109E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stuttgarter%20Kammerorchester/Bach,%20J.S._%20The%20Art%20of%20Fugue%3B%20A%20Musical%20Offering/(Disc%202)%2003%20-%20The%20Art%20of%20Fugue,%20BWV%201080%20-%20-%20-%20No.18.%20Chorale_%20_Wenn%20wir%20in%20h%25F6chsten%20N%25F6ten%20sein_.mp3 - File Folder Count4 - Library Folder Count1 - - 10334 - - Track ID10334 - NameMusical Offering, BWV 1079 - Ricercar a 3 - ArtistKarl Münchinger - Album ArtistStuttgarter Kammerorchester - ComposerBach, Johann Sebastian - AlbumBach, J.S.: The Art of Fugue; A Musical Offering - GenreClassical - KindMPEG audio file - Size14463415 - Total Time445387 - Disc Number2 - Disc Count2 - Track Number4 - Track Count19 - Year2001 - Date Modified2012-08-06T01:52:17Z - Date Added2012-08-06T03:09:59Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202544769 - Artwork Count1 - Persistent ID3927B85DFD852A1E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stuttgarter%20Kammerorchester/Bach,%20J.S._%20The%20Art%20of%20Fugue%3B%20A%20Musical%20Offering/(Disc%202)%2004%20-%20Musical%20Offering,%20BWV%201079%20-%20Ricercar%20a%203.mp3 - File Folder Count4 - Library Folder Count1 - - 10336 - - Track ID10336 - NameMusical Offering, BWV 1079 - Canon perpetuus a 2 - ArtistKarl Münchinger - Album ArtistStuttgarter Kammerorchester - ComposerBach, Johann Sebastian - AlbumBach, J.S.: The Art of Fugue; A Musical Offering - GenreClassical - KindMPEG audio file - Size3235374 - Total Time94511 - Disc Number2 - Disc Count2 - Track Number5 - Track Count19 - Year2001 - Date Modified2012-08-06T01:42:56Z - Date Added2012-08-06T03:09:59Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202544770 - Artwork Count1 - Persistent IDA02E6375CD85FBCF - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stuttgarter%20Kammerorchester/Bach,%20J.S._%20The%20Art%20of%20Fugue%3B%20A%20Musical%20Offering/(Disc%202)%2005%20-%20Musical%20Offering,%20BWV%201079%20-%20Canon%20perpetuus%20a%202.mp3 - File Folder Count4 - Library Folder Count1 - - 10338 - - Track ID10338 - NameMusical Offering, BWV 1079 - Canon a 2 violini in unisono - ArtistKarl Münchinger - Album ArtistStuttgarter Kammerorchester - ComposerBach, Johann Sebastian - AlbumBach, J.S.: The Art of Fugue; A Musical Offering - GenreClassical - KindMPEG audio file - Size1743277 - Total Time47882 - Disc Number2 - Disc Count2 - Track Number6 - Track Count19 - Year2001 - Date Modified2012-08-06T01:34:53Z - Date Added2012-08-06T03:09:59Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202544771 - Artwork Count1 - Persistent ID1077196A59F43BE3 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stuttgarter%20Kammerorchester/Bach,%20J.S._%20The%20Art%20of%20Fugue%3B%20A%20Musical%20Offering/(Disc%202)%2006%20-%20Musical%20Offering,%20BWV%201079%20-%20Canon%20a%202%20violini%20in%20unisono.mp3 - File Folder Count4 - Library Folder Count1 - - 10340 - - Track ID10340 - NameMusical Offering, BWV 1079 - Canon a 2 per motum contrarium - ArtistKarl Münchinger - Album ArtistStuttgarter Kammerorchester - ComposerBach, Johann Sebastian - AlbumBach, J.S.: The Art of Fugue; A Musical Offering - GenreClassical - KindMPEG audio file - Size1834396 - Total Time50729 - Disc Number2 - Disc Count2 - Track Number7 - Track Count19 - Year2001 - Date Modified2012-08-06T01:38:41Z - Date Added2012-08-06T03:09:59Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202544772 - Artwork Count1 - Persistent ID760B43530D937FA5 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stuttgarter%20Kammerorchester/Bach,%20J.S._%20The%20Art%20of%20Fugue%3B%20A%20Musical%20Offering/(Disc%202)%2007%20-%20Musical%20Offering,%20BWV%201079%20-%20Canon%20a%202%20per%20motum%20contrarium.mp3 - File Folder Count4 - Library Folder Count1 - - 10342 - - Track ID10342 - NameMusical Offering, BWV 1079 - Canon a 2 per augmentationem, contrario motu - ArtistKarl Münchinger - Album ArtistStuttgarter Kammerorchester - ComposerBach, Johann Sebastian - AlbumBach, J.S.: The Art of Fugue; A Musical Offering - GenreClassical - KindMPEG audio file - Size4660664 - Total Time139049 - Disc Number2 - Disc Count2 - Track Number8 - Track Count19 - Year2001 - Date Modified2012-08-06T01:47:25Z - Date Added2012-08-06T03:10:00Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202544773 - Artwork Count1 - Persistent ID8A410D0FF131B121 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stuttgarter%20Kammerorchester/Bach,%20J.S._%20The%20Art%20of%20Fugue%3B%20A%20Musical%20Offering/(Disc%202)%2008%20-%20Musical%20Offering,%20BWV%201079%20-%20Canon%20a%202%20per%20augmentationem,%20contrario%20motu.mp3 - File Folder Count4 - Library Folder Count1 - - 10344 - - Track ID10344 - NameMusical Offering, BWV 1079 - Canon a 2 - ArtistKarl Münchinger - Album ArtistStuttgarter Kammerorchester - ComposerBach, Johann Sebastian - AlbumBach, J.S.: The Art of Fugue; A Musical Offering - GenreClassical - KindMPEG audio file - Size1683889 - Total Time46027 - Disc Number2 - Disc Count2 - Track Number9 - Track Count19 - Year2001 - Date Modified2012-08-06T01:52:26Z - Date Added2012-08-06T03:10:00Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202544774 - Artwork Count1 - Persistent IDBB7265E5997DA85F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stuttgarter%20Kammerorchester/Bach,%20J.S._%20The%20Art%20of%20Fugue%3B%20A%20Musical%20Offering/(Disc%202)%2009%20-%20Musical%20Offering,%20BWV%201079%20-%20Canon%20a%202.mp3 - File Folder Count4 - Library Folder Count1 - - 10346 - - Track ID10346 - NameMusical Offering, BWV 1079 - Canon a 2 - ArtistKarl Münchinger - Album ArtistStuttgarter Kammerorchester - ComposerBach, Johann Sebastian - AlbumBach, J.S.: The Art of Fugue; A Musical Offering - GenreClassical - KindMPEG audio file - Size3935855 - Total Time116401 - Disc Number2 - Disc Count2 - Track Number10 - Track Count19 - Year2001 - Date Modified2012-08-06T01:39:01Z - Date Added2012-08-06T03:10:00Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202544775 - Artwork Count1 - Persistent ID735F555F4DFC059D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stuttgarter%20Kammerorchester/Bach,%20J.S._%20The%20Art%20of%20Fugue%3B%20A%20Musical%20Offering/(Disc%202)%2010%20-%20Musical%20Offering,%20BWV%201079%20-%20Canon%20a%202.mp3 - File Folder Count4 - Library Folder Count1 - - 10348 - - Track ID10348 - NameMusical Offering, BWV 1079 - Canon a 2 per tonos - ArtistKarl Münchinger - Album ArtistStuttgarter Kammerorchester - ComposerBach, Johann Sebastian - AlbumBach, J.S.: The Art of Fugue; A Musical Offering - GenreClassical - KindMPEG audio file - Size3801088 - Total Time112195 - Disc Number2 - Disc Count2 - Track Number11 - Track Count19 - Year2001 - Date Modified2012-08-06T01:42:08Z - Date Added2012-08-06T03:10:00Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202544776 - Artwork Count1 - Persistent ID9745CF0F0D634C8B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stuttgarter%20Kammerorchester/Bach,%20J.S._%20The%20Art%20of%20Fugue%3B%20A%20Musical%20Offering/2-11%20Musical%20Offering,%20BWV%201079%20-%20Canon%20a%202%20per%20tonos.mp3 - File Folder Count4 - Library Folder Count1 - - 10350 - - Track ID10350 - NameMusical Offering, BWV 1079 - Canon perpetuus contrario motu - ArtistKarl Münchinger - Album ArtistStuttgarter Kammerorchester - ComposerBach, Johann Sebastian - AlbumBach, J.S.: The Art of Fugue; A Musical Offering - GenreClassical - KindMPEG audio file - Size2783166 - Total Time80378 - Disc Number2 - Disc Count2 - Track Number12 - Track Count19 - Year2001 - Date Modified2012-08-06T01:43:09Z - Date Added2012-08-06T03:10:01Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202544777 - Play Count1 - Play Date3427127638 - Play Date UTC2012-08-06T14:23:58Z - Artwork Count1 - Persistent ID026CDACE329A0985 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stuttgarter%20Kammerorchester/Bach,%20J.S._%20The%20Art%20of%20Fugue%3B%20A%20Musical%20Offering/2-12%20Musical%20Offering,%20BWV%201079%20-%20Canon%20perpetuus%20contrario%20motu.mp3 - File Folder Count4 - Library Folder Count1 - - 10352 - - Track ID10352 - NameMusical Offering, BWV 1079 - Canon a 4 - ArtistKarl Münchinger - Album ArtistStuttgarter Kammerorchester - ComposerBach, Johann Sebastian - AlbumBach, J.S.: The Art of Fugue; A Musical Offering - GenreClassical - KindMPEG audio file - Size10143385 - Total Time310386 - Disc Number2 - Disc Count2 - Track Number13 - Track Count19 - Year2001 - Date Modified2012-08-06T01:36:47Z - Date Added2012-08-06T03:10:02Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202544778 - Artwork Count1 - Persistent IDFF7793AEBFDBF453 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stuttgarter%20Kammerorchester/Bach,%20J.S._%20The%20Art%20of%20Fugue%3B%20A%20Musical%20Offering/(Disc%202)%2013%20-%20Musical%20Offering,%20BWV%201079%20-%20Canon%20a%204.mp3 - File Folder Count4 - Library Folder Count1 - - 10354 - - Track ID10354 - NameMusical Offering, BWV 1079 - Fuga canonica - ArtistKarl Münchinger - Album ArtistStuttgarter Kammerorchester - ComposerBach, Johann Sebastian - AlbumBach, J.S.: The Art of Fugue; A Musical Offering - GenreClassical - KindMPEG audio file - Size3935027 - Total Time116375 - Disc Number2 - Disc Count2 - Track Number14 - Track Count19 - Year2001 - Date Modified2012-08-06T01:49:30Z - Date Added2012-08-06T03:10:02Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202544779 - Artwork Count1 - Persistent IDA3EC74D9D0D28245 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stuttgarter%20Kammerorchester/Bach,%20J.S._%20The%20Art%20of%20Fugue%3B%20A%20Musical%20Offering/(Disc%202)%2014%20-%20Musical%20Offering,%20BWV%201079%20-%20Fuga%20canonica.mp3 - File Folder Count4 - Library Folder Count1 - - 10356 - - Track ID10356 - NameMusical Offering, BWV 1079 - Sonata a 3 - I Largo - ArtistKarl Münchinger - Album ArtistStuttgarter Kammerorchester - ComposerBach, Johann Sebastian - AlbumBach, J.S.: The Art of Fugue; A Musical Offering - GenreClassical - KindMPEG audio file - Size9657738 - Total Time295209 - Disc Number2 - Disc Count2 - Track Number15 - Track Count19 - Year2001 - Date Modified2012-08-06T01:56:09Z - Date Added2012-08-06T03:10:02Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202544780 - Artwork Count1 - Persistent IDE32DBE06E8EA1F8F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stuttgarter%20Kammerorchester/Bach,%20J.S._%20The%20Art%20of%20Fugue%3B%20A%20Musical%20Offering/2-15%20Musical%20Offering,%20BWV%201079%20-%20Sonata%20a%203%20-%20I%20Largo.mp3 - File Folder Count4 - Library Folder Count1 - - 10358 - - Track ID10358 - NameMusical Offering, BWV 1079 - Sonata a 3 - II Allegro - ArtistKarl Münchinger - Album ArtistStuttgarter Kammerorchester - ComposerBach, Johann Sebastian - AlbumBach, J.S.: The Art of Fugue; A Musical Offering - GenreClassical - KindMPEG audio file - Size12244912 - Total Time376058 - Disc Number2 - Disc Count2 - Track Number16 - Track Count19 - Year2001 - Date Modified2012-08-06T01:40:54Z - Date Added2012-08-06T03:10:02Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202544781 - Artwork Count1 - Persistent IDDAB35684979D0054 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stuttgarter%20Kammerorchester/Bach,%20J.S._%20The%20Art%20of%20Fugue%3B%20A%20Musical%20Offering/2-16%20Musical%20Offering,%20BWV%201079%20-%20Sonata%20a%203%20-%20II%20Allegro.mp3 - File Folder Count4 - Library Folder Count1 - - 10360 - - Track ID10360 - NameMusical Offering, BWV 1079 - Sonata a 3 - III Andante - ArtistKarl Münchinger - Album ArtistStuttgarter Kammerorchester - ComposerBach, Johann Sebastian - AlbumBach, J.S.: The Art of Fugue; A Musical Offering - GenreClassical - KindMPEG audio file - Size5839271 - Total Time175882 - Disc Number2 - Disc Count2 - Track Number17 - Track Count19 - Year2001 - Date Modified2012-08-06T01:53:03Z - Date Added2012-08-06T03:10:03Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202544782 - Artwork Count1 - Persistent ID3B2D7625ADBCD8AA - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stuttgarter%20Kammerorchester/Bach,%20J.S._%20The%20Art%20of%20Fugue%3B%20A%20Musical%20Offering/2-17%20Musical%20Offering,%20BWV%201079%20-%20Sonata%20a%203%20-%20III%20Andante.mp3 - File Folder Count4 - Library Folder Count1 - - 10362 - - Track ID10362 - NameMusical Offering, BWV 1079 - Sonata a 3 - IV Allegro - ArtistKarl Münchinger - Album ArtistStuttgarter Kammerorchester - ComposerBach, Johann Sebastian - AlbumBach, J.S.: The Art of Fugue; A Musical Offering - GenreClassical - KindMPEG audio file - Size6399335 - Total Time193384 - Disc Number2 - Disc Count2 - Track Number18 - Track Count19 - Year2001 - Date Modified2012-08-06T01:42:40Z - Date Added2012-08-06T03:10:03Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202544783 - Artwork Count1 - Persistent IDF3B6283F74CFBAFA - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stuttgarter%20Kammerorchester/Bach,%20J.S._%20The%20Art%20of%20Fugue%3B%20A%20Musical%20Offering/2-18%20Musical%20Offering,%20BWV%201079%20-%20Sonata%20a%203%20-%20IV%20Allegro.mp3 - File Folder Count4 - Library Folder Count1 - - 10364 - - Track ID10364 - NameMusical Offering, BWV 1079 - Ricercar a 6 - ArtistKarl Münchinger - Album ArtistStuttgarter Kammerorchester - ComposerBach, Johann Sebastian - AlbumBach, J.S.: The Art of Fugue; A Musical Offering - GenreClassical - KindMPEG audio file - Size17903221 - Total Time552881 - Disc Number2 - Disc Count2 - Track Number19 - Track Count19 - Year2001 - Date Modified2012-08-06T01:34:02Z - Date Added2012-08-06T03:10:03Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202544784 - Artwork Count1 - Persistent IDCBFBBDF5CA682BAF - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stuttgarter%20Kammerorchester/Bach,%20J.S._%20The%20Art%20of%20Fugue%3B%20A%20Musical%20Offering/2-19%20Musical%20Offering,%20BWV%201079%20-%20Ricercar%20a%206.mp3 - File Folder Count4 - Library Folder Count1 - - 10366 - - Track ID10366 - NameThe Art of Fugue, BWV 1080 - - - No.1 Contrapunctus I - ArtistKarl Münchinger - Album ArtistStuttgarter Kammerorchester - ComposerBach, Johann Sebastian - AlbumBach, J.S.: The Art of Fugue; A Musical Offering - GenreClassical - KindMPEG audio file - Size8442319 - Total Time257227 - Disc Number1 - Disc Count2 - Track Number1 - Track Count19 - Year2001 - Date Modified2012-08-06T01:55:22Z - Date Added2012-08-06T03:10:03Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202544724 - Artwork Count1 - Sort NameArt of Fugue, BWV 1080 - - - No.1 Contrapunctus I - Persistent ID0E743C37C22EB5AD - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stuttgarter%20Kammerorchester/Bach,%20J.S._%20The%20Art%20of%20Fugue%3B%20A%20Musical%20Offering/1-01%20The%20Art%20of%20Fugue,%20BWV%201080%20-%20-%20-%20No.1%20Contrapunctus%20I.mp3 - File Folder Count4 - Library Folder Count1 - - 10368 - - Track ID10368 - NameThe Art of Fugue, BWV 1080 - - - No.2 Contrapunctus II - ArtistKarl Münchinger - Album ArtistStuttgarter Kammerorchester - ComposerBach, Johann Sebastian - AlbumBach, J.S.: The Art of Fugue; A Musical Offering - GenreClassical - KindMPEG audio file - Size5482334 - Total Time164728 - Disc Number1 - Disc Count2 - Track Number2 - Track Count19 - Year2001 - Date Modified2012-08-06T01:49:57Z - Date Added2012-08-06T03:10:04Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202544726 - Artwork Count1 - Sort NameArt of Fugue, BWV 1080 - - - No.2 Contrapunctus II - Persistent ID08471B1F985EBA21 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stuttgarter%20Kammerorchester/Bach,%20J.S._%20The%20Art%20of%20Fugue%3B%20A%20Musical%20Offering/1-02%20The%20Art%20of%20Fugue,%20BWV%201080%20-%20-%20-%20No.2%20Contrapunctus%20II.mp3 - File Folder Count4 - Library Folder Count1 - - 10370 - - Track ID10370 - NameThe Art of Fugue, BWV 1080 - - - No.3 Contrapunctus III - ArtistKarl Münchinger - Album ArtistStuttgarter Kammerorchester - ComposerBach, Johann Sebastian - AlbumBach, J.S.: The Art of Fugue; A Musical Offering - GenreClassical - KindMPEG audio file - Size8313592 - Total Time253204 - Disc Number1 - Disc Count2 - Track Number3 - Track Count19 - Year2001 - Date Modified2012-08-06T01:50:38Z - Date Added2012-08-06T03:10:04Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202544728 - Artwork Count1 - Sort NameArt of Fugue, BWV 1080 - - - No.3 Contrapunctus III - Persistent IDF8A6B543E2F3DA6C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stuttgarter%20Kammerorchester/Bach,%20J.S._%20The%20Art%20of%20Fugue%3B%20A%20Musical%20Offering/1-03%20The%20Art%20of%20Fugue,%20BWV%201080%20-%20-%20-%20No.3%20Contrapunctus%20III.mp3 - File Folder Count4 - Library Folder Count1 - - 10372 - - Track ID10372 - NameThe Art of Fugue, BWV 1080 - - - No.4 Contrapunctus IV - ArtistKarl Münchinger - Album ArtistStuttgarter Kammerorchester - ComposerBach, Johann Sebastian - AlbumBach, J.S.: The Art of Fugue; A Musical Offering - GenreClassical - KindMPEG audio file - Size6639245 - Total Time200881 - Disc Number1 - Disc Count2 - Track Number4 - Track Count19 - Year2001 - Date Modified2012-08-06T01:48:43Z - Date Added2012-08-06T03:10:04Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202544729 - Artwork Count1 - Sort NameArt of Fugue, BWV 1080 - - - No.4 Contrapunctus IV - Persistent ID2FE5163D1493E7D7 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stuttgarter%20Kammerorchester/Bach,%20J.S._%20The%20Art%20of%20Fugue%3B%20A%20Musical%20Offering/1-04%20The%20Art%20of%20Fugue,%20BWV%201080%20-%20-%20-%20No.4%20Contrapunctus%20IV.mp3 - File Folder Count4 - Library Folder Count1 - - 10374 - - Track ID10374 - NameThe Art of Fugue, BWV 1080 - - - No.5 Contrapunctus V - ArtistKarl Münchinger - Album ArtistStuttgarter Kammerorchester - ComposerBach, Johann Sebastian - AlbumBach, J.S.: The Art of Fugue; A Musical Offering - GenreClassical - KindMPEG audio file - Size9663596 - Total Time295392 - Disc Number1 - Disc Count2 - Track Number5 - Track Count19 - Year2001 - Date Modified2012-08-06T01:37:33Z - Date Added2012-08-06T03:10:04Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202544731 - Artwork Count1 - Sort NameArt of Fugue, BWV 1080 - - - No.5 Contrapunctus V - Persistent ID4A14BFDA17C330E7 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stuttgarter%20Kammerorchester/Bach,%20J.S._%20The%20Art%20of%20Fugue%3B%20A%20Musical%20Offering/1-05%20The%20Art%20of%20Fugue,%20BWV%201080%20-%20-%20-%20No.5%20Contrapunctus%20V.mp3 - File Folder Count4 - Library Folder Count1 - - 10376 - - Track ID10376 - NameThe Art of Fugue, BWV 1080 - - - No.6 Contrapunctus VI - ArtistKarl Münchinger - Album ArtistStuttgarter Kammerorchester - ComposerBach, Johann Sebastian - AlbumBach, J.S.: The Art of Fugue; A Musical Offering - GenreClassical - KindMPEG audio file - Size6954386 - Total Time210729 - Disc Number1 - Disc Count2 - Track Number6 - Track Count19 - Year2001 - Date Modified2012-08-06T01:51:12Z - Date Added2012-08-06T03:10:05Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202544733 - Artwork Count1 - Sort NameArt of Fugue, BWV 1080 - - - No.6 Contrapunctus VI - Persistent IDB54EEA9DFB06527C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stuttgarter%20Kammerorchester/Bach,%20J.S._%20The%20Art%20of%20Fugue%3B%20A%20Musical%20Offering/1-06%20The%20Art%20of%20Fugue,%20BWV%201080%20-%20-%20-%20No.6%20Contrapunctus%20VI.mp3 - File Folder Count4 - Library Folder Count1 - - 10378 - - Track ID10378 - NameThe Art of Fugue, BWV 1080 - - - No.7 Contrapunctus VII - ArtistKarl Münchinger - Album ArtistStuttgarter Kammerorchester - ComposerBach, Johann Sebastian - AlbumBach, J.S.: The Art of Fugue; A Musical Offering - GenreClassical - KindMPEG audio file - Size5780759 - Total Time174053 - Disc Number1 - Disc Count2 - Track Number7 - Track Count19 - Year2001 - Date Modified2012-08-06T01:53:30Z - Date Added2012-08-06T03:10:05Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202544736 - Artwork Count1 - Sort NameArt of Fugue, BWV 1080 - - - No.7 Contrapunctus VII - Persistent ID277DEE01E019E01D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stuttgarter%20Kammerorchester/Bach,%20J.S._%20The%20Art%20of%20Fugue%3B%20A%20Musical%20Offering/1-07%20The%20Art%20of%20Fugue,%20BWV%201080%20-%20-%20-%20No.7%20Contrapunctus%20VII.mp3 - File Folder Count4 - Library Folder Count1 - - 10380 - - Track ID10380 - NameThe Art Of Fugue, Bwv 1080 - - - No.8 Contrapunctus VIII - ArtistKarl Münchinger - Album ArtistStuttgarter Kammerorchester - ComposerBach, Johann Sebastian - AlbumBach, J.S.: The Art of Fugue; A Musical Offering - GenreClassical - KindMPEG audio file - Size11999158 - Total Time368378 - Disc Number1 - Disc Count2 - Track Number8 - Track Count19 - Year2001 - Date Modified2012-08-06T01:35:54Z - Date Added2012-08-06T03:10:05Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202544739 - Artwork Count1 - Sort NameArt Of Fugue, Bwv 1080 - - - No.8 Contrapunctus VIII - Persistent ID1830A21C46FD75A4 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stuttgarter%20Kammerorchester/Bach,%20J.S._%20The%20Art%20of%20Fugue%3B%20A%20Musical%20Offering/1-08%20The%20Art%20Of%20Fugue,%20Bwv%201080%20-%20-%20-%20No.8%20Contrapunctus%20VIII.mp3 - File Folder Count4 - Library Folder Count1 - - 10382 - - Track ID10382 - NameThe Art of Fugue, BWV 1080 - - - No.9 Contrapunctus IX - ArtistKarl Münchinger - Album ArtistStuttgarter Kammerorchester - ComposerBach, Johann Sebastian - AlbumBach, J.S.: The Art of Fugue; A Musical Offering - GenreClassical - KindMPEG audio file - Size5220692 - Total Time156551 - Disc Number1 - Disc Count2 - Track Number9 - Track Count19 - Year2001 - Date Modified2012-08-06T01:32:34Z - Date Added2012-08-06T03:10:05Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202544741 - Artwork Count1 - Sort NameArt of Fugue, BWV 1080 - - - No.9 Contrapunctus IX - Persistent ID42BE668D22504CCF - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stuttgarter%20Kammerorchester/Bach,%20J.S._%20The%20Art%20of%20Fugue%3B%20A%20Musical%20Offering/1-09%20The%20Art%20of%20Fugue,%20BWV%201080%20-%20-%20-%20No.9%20Contrapunctus%20IX.mp3 - File Folder Count4 - Library Folder Count1 - - 10384 - - Track ID10384 - NameThe Art of Fugue, BWV 1080 - - - No.10 Contrapunctus X - ArtistKarl Münchinger - Album ArtistStuttgarter Kammerorchester - ComposerBach, Johann Sebastian - AlbumBach, J.S.: The Art of Fugue; A Musical Offering - GenreClassical - KindMPEG audio file - Size9375208 - Total Time286380 - Disc Number1 - Disc Count2 - Track Number10 - Track Count19 - Year2001 - Date Modified2012-08-06T01:41:45Z - Date Added2012-08-06T03:10:05Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202544744 - Artwork Count1 - Sort NameArt of Fugue, BWV 1080 - - - No.10 Contrapunctus X - Persistent IDC2D226B8BED431B9 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stuttgarter%20Kammerorchester/Bach,%20J.S._%20The%20Art%20of%20Fugue%3B%20A%20Musical%20Offering/1-10%20The%20Art%20of%20Fugue,%20BWV%201080%20-%20-%20-%20No.10%20Contrapunctus%20X.mp3 - File Folder Count4 - Library Folder Count1 - - 10386 - - Track ID10386 - NameThe Art of Fugue, BWV 1080 - - - No.11 Contrapunctus XI - ArtistKarl Münchinger - Album ArtistStuttgarter Kammerorchester - ComposerBach, Johann Sebastian - AlbumBach, J.S.: The Art of Fugue; A Musical Offering - GenreClassical - KindMPEG audio file - Size13881646 - Total Time427206 - Disc Number1 - Disc Count2 - Track Number11 - Track Count19 - Year2001 - Date Modified2012-08-06T01:54:41Z - Date Added2012-08-06T03:10:05Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202544746 - Artwork Count1 - Sort NameArt of Fugue, BWV 1080 - - - No.11 Contrapunctus XI - Persistent ID7B3282FFD50359DF - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stuttgarter%20Kammerorchester/Bach,%20J.S._%20The%20Art%20of%20Fugue%3B%20A%20Musical%20Offering/1-11%20The%20Art%20of%20Fugue,%20BWV%201080%20-%20-%20-%20No.11%20Contrapunctus%20XI.mp3 - File Folder Count4 - Library Folder Count1 - - 10388 - - Track ID10388 - NameThe Art of Fugue, BWV 1080 - - - No.15 Fuga per canonem - ArtistKarl Münchinger - Album ArtistStuttgarter Kammerorchester - ComposerBach, Johann Sebastian - AlbumBach, J.S.: The Art of Fugue; A Musical Offering - GenreClassical - KindMPEG audio file - Size5503236 - Total Time165381 - Disc Number1 - Disc Count2 - Track Number12 - Track Count19 - Year2001 - Date Modified2012-08-06T01:49:11Z - Date Added2012-08-06T03:10:05Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202544748 - Artwork Count1 - Sort NameArt of Fugue, BWV 1080 - - - No.15 Fuga per canonem - Persistent IDADDD28FAAC573185 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stuttgarter%20Kammerorchester/Bach,%20J.S._%20The%20Art%20of%20Fugue%3B%20A%20Musical%20Offering/1-12%20The%20Art%20of%20Fugue,%20BWV%201080%20-%20-%20-%20No.15%20Fuga%20per%20canonem.mp3 - File Folder Count4 - Library Folder Count1 - - 10390 - - Track ID10390 - NameThe Art of Fugue, BWV 1080 - - - No.17 Fuga per canonem - ArtistKarl Münchinger - Album ArtistStuttgarter Kammerorchester - ComposerBach, Johann Sebastian - AlbumBach, J.S.: The Art of Fugue; A Musical Offering - GenreClassical - KindMPEG audio file - Size5305959 - Total Time159216 - Disc Number1 - Disc Count2 - Track Number13 - Track Count19 - Year2001 - Date Modified2012-08-06T01:38:05Z - Date Added2012-08-06T03:10:05Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202544750 - Artwork Count1 - Sort NameArt of Fugue, BWV 1080 - - - No.17 Fuga per canonem - Persistent ID937481F9B98DB864 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stuttgarter%20Kammerorchester/Bach,%20J.S._%20The%20Art%20of%20Fugue%3B%20A%20Musical%20Offering/1-13%20The%20Art%20of%20Fugue,%20BWV%201080%20-%20-%20-%20No.17%20Fuga%20per%20canonem.mp3 - File Folder Count4 - Library Folder Count1 - - 10392 - - Track ID10392 - NameThe Art of Fugue, BWV 1080 - - - No.16 Fuga per canonem - ArtistKarl Münchinger - Album ArtistStuttgarter Kammerorchester - ComposerBach, Johann Sebastian - AlbumBach, J.S.: The Art of Fugue; A Musical Offering - GenreClassical - KindMPEG audio file - Size7935759 - Total Time241397 - Disc Number1 - Disc Count2 - Track Number14 - Track Count19 - Year2001 - Date Modified2012-08-06T01:34:45Z - Date Added2012-08-06T03:10:06Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202544752 - Artwork Count1 - Sort NameArt of Fugue, BWV 1080 - - - No.16 Fuga per canonem - Persistent ID8EB5EDD32B1482AE - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stuttgarter%20Kammerorchester/Bach,%20J.S._%20The%20Art%20of%20Fugue%3B%20A%20Musical%20Offering/1-14%20The%20Art%20of%20Fugue,%20BWV%201080%20-%20-%20-%20No.16%20Fuga%20per%20canonem.mp3 - File Folder Count4 - Library Folder Count1 - - 10394 - - Track ID10394 - NameThe Art of Fugue, BWV 1080 - - - No.14a Fuga per canonem - ArtistKarl Münchinger - Album ArtistStuttgarter Kammerorchester - ComposerBach, Johann Sebastian - AlbumBach, J.S.: The Art of Fugue; A Musical Offering - GenreClassical - KindMPEG audio file - Size9354314 - Total Time285727 - Disc Number1 - Disc Count2 - Track Number15 - Track Count19 - Year2001 - Date Modified2012-08-06T01:48:12Z - Date Added2012-08-06T03:10:06Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202544754 - Artwork Count1 - Sort NameArt of Fugue, BWV 1080 - - - No.14a Fuga per canonem - Persistent IDB0964B8E742DCB85 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stuttgarter%20Kammerorchester/Bach,%20J.S._%20The%20Art%20of%20Fugue%3B%20A%20Musical%20Offering/1-15%20The%20Art%20of%20Fugue,%20BWV%201080%20-%20-%20-%20No.14a%20Fuga%20per%20canonem.mp3 - File Folder Count4 - Library Folder Count1 - - 10396 - - Track ID10396 - NameThe Art of Fugue, BWV 1080 - - - No.13a - ArtistKarl Münchinger - Album ArtistStuttgarter Kammerorchester - ComposerBach, Johann Sebastian - AlbumBach, J.S.: The Art of Fugue; A Musical Offering - GenreClassical - KindMPEG audio file - Size4954006 - Total Time148218 - Disc Number1 - Disc Count2 - Track Number16 - Track Count19 - Year2001 - Date Modified2012-08-06T01:39:36Z - Date Added2012-08-06T03:10:06Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202544756 - Artwork Count1 - Sort NameArt of Fugue, BWV 1080 - - - No.13a - Persistent ID39344A74FCBDF095 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stuttgarter%20Kammerorchester/Bach,%20J.S._%20The%20Art%20of%20Fugue%3B%20A%20Musical%20Offering/1-16%20The%20Art%20of%20Fugue,%20BWV%201080%20-%20-%20-%20No.13a.mp3 - File Folder Count4 - Library Folder Count1 - - 10398 - - Track ID10398 - NameThe Art of Fugue, BWV 1080 - - - No.13b - ArtistKarl Münchinger - Album ArtistStuttgarter Kammerorchester - ComposerBach, Johann Sebastian - AlbumBach, J.S.: The Art of Fugue; A Musical Offering - GenreClassical - KindMPEG audio file - Size4933108 - Total Time147565 - Disc Number1 - Disc Count2 - Track Number17 - Track Count19 - Year2001 - Date Modified2012-08-06T01:45:54Z - Date Added2012-08-06T03:10:06Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202544758 - Artwork Count1 - Sort NameArt of Fugue, BWV 1080 - - - No.13b - Persistent ID414E19D83009BBC4 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stuttgarter%20Kammerorchester/Bach,%20J.S._%20The%20Art%20of%20Fugue%3B%20A%20Musical%20Offering/1-17%20The%20Art%20of%20Fugue,%20BWV%201080%20-%20-%20-%20No.13b.mp3 - File Folder Count4 - Library Folder Count1 - - 10400 - - Track ID10400 - NameThe Art of Fugue, BWV 1080 - - - No.19a - ArtistKarl Münchinger - Album ArtistStuttgarter Kammerorchester - ComposerBach, Johann Sebastian - AlbumBach, J.S.: The Art of Fugue; A Musical Offering - GenreClassical - KindMPEG audio file - Size5092768 - Total Time152555 - Disc Number1 - Disc Count2 - Track Number18 - Track Count19 - Year2001 - Date Modified2012-08-06T01:32:02Z - Date Added2012-08-06T03:10:07Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202544760 - Artwork Count1 - Sort NameArt of Fugue, BWV 1080 - - - No.19a - Persistent IDF0B419395A266E06 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stuttgarter%20Kammerorchester/Bach,%20J.S._%20The%20Art%20of%20Fugue%3B%20A%20Musical%20Offering/1-18%20The%20Art%20of%20Fugue,%20BWV%201080%20-%20-%20-%20No.19a.mp3 - File Folder Count4 - Library Folder Count1 - - 10402 - - Track ID10402 - NameThe Art of Fugue, BWV 1080 - - - No.19b - ArtistKarl Münchinger - Album ArtistStuttgarter Kammerorchester - ComposerBach, Johann Sebastian - AlbumBach, J.S.: The Art of Fugue; A Musical Offering - GenreClassical - KindMPEG audio file - Size5274163 - Total Time158223 - Disc Number1 - Disc Count2 - Track Number19 - Track Count19 - Year2001 - Date Modified2012-08-06T01:38:32Z - Date Added2012-08-06T03:10:07Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202544762 - Artwork Count1 - Sort NameArt of Fugue, BWV 1080 - - - No.19b - Persistent IDBB0DE28E96D61A01 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stuttgarter%20Kammerorchester/Bach,%20J.S._%20The%20Art%20of%20Fugue%3B%20A%20Musical%20Offering/1-19%20The%20Art%20of%20Fugue,%20BWV%201080%20-%20-%20-%20No.19b.mp3 - File Folder Count4 - Library Folder Count1 - - 10416 - - Track ID10416 - NameSuite bergamasque, L 75: I. Prélude - ArtistPeter Schmalfuss - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size6582950 - Total Time247902 - Disc Number1 - Disc Count1 - Track Number1 - Track Count100 - Year2011 - Date Modified2012-08-22T02:56:48Z - Date Added2012-08-22T03:42:19Z - Bit Rate204 - Sample Rate44100 - CommentsAmazon.com Song ID: 225476881 - Artwork Count1 - Persistent ID0FB16FD9A7BF4C26 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/01%20-%20Suite%20bergamasque,%20L%2075_%20I.%20Pr%25E9lude.mp3 - File Folder Count4 - Library Folder Count1 - - 10418 - - Track ID10418 - NameSuite bergamasque, L 75: II. Menuet - ArtistPeter Schmalfuss - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size6568373 - Total Time255791 - Disc Number1 - Disc Count1 - Track Number2 - Track Count100 - Year2011 - Date Modified2012-08-22T02:26:53Z - Date Added2012-08-22T03:42:19Z - Bit Rate197 - Sample Rate44100 - CommentsAmazon.com Song ID: 225476883 - Artwork Count1 - Persistent IDD0DED0C3D7606FB2 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/02%20-%20Suite%20bergamasque,%20L%2075_%20II.%20Menuet.mp3 - File Folder Count4 - Library Folder Count1 - - 10420 - - Track ID10420 - NameSuite bergamasque, L 75: III. Clair de lune - ArtistPeter Schmalfuss - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size7876333 - Total Time312320 - Disc Number1 - Disc Count1 - Track Number3 - Track Count100 - Year2011 - Date Modified2012-08-22T01:47:48Z - Date Added2012-08-22T03:42:19Z - Bit Rate195 - Sample Rate44100 - CommentsAmazon.com Song ID: 225476885 - Artwork Count1 - Persistent ID8E1BAA1468DD3884 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/03%20-%20Suite%20bergamasque,%20L%2075_%20III.%20Clair%20de%20lune.mp3 - File Folder Count4 - Library Folder Count1 - - 10422 - - Track ID10422 - NameSuite bergamasque, L 75: IV. Passepied - ArtistPeter Schmalfuss - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size5641299 - Total Time223190 - Disc Number1 - Disc Count1 - Track Number4 - Track Count100 - Year2011 - Date Modified2012-08-22T02:28:40Z - Date Added2012-08-22T03:42:19Z - Bit Rate193 - Sample Rate44100 - CommentsAmazon.com Song ID: 225476887 - Artwork Count1 - Persistent ID98F3722A4F275B5E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/04%20-%20Suite%20bergamasque,%20L%2075_%20IV.%20Passepied.mp3 - File Folder Count4 - Library Folder Count1 - - 10424 - - Track ID10424 - NameDeux arabesques (Two Arabesques), L 66: No. 1 - ArtistPeter Schmalfuss - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size6027339 - Total Time235023 - Disc Number1 - Disc Count1 - Track Number5 - Track Count100 - Year2011 - Date Modified2012-08-22T02:24:04Z - Date Added2012-08-22T03:42:20Z - Bit Rate196 - Sample Rate44100 - CommentsAmazon.com Song ID: 225476889 - Play Count2 - Play Date3430930714 - Play Date UTC2012-09-19T14:48:34Z - Artwork Count1 - Persistent ID2127269659374E16 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/05%20Deux%20arabesques%20(Two%20Arabesques),%20L%2066_%20No.%201.mp3 - File Folder Count4 - Library Folder Count1 - - 10426 - - Track ID10426 - NameDeux arabesques (Two Arabesques), L 66: No. 2 - ArtistPeter Schmalfuss - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size5683463 - Total Time216659 - Disc Number1 - Disc Count1 - Track Number6 - Track Count100 - Year2011 - Date Modified2012-08-22T02:52:54Z - Date Added2012-08-22T03:42:20Z - Bit Rate200 - Sample Rate44100 - CommentsAmazon.com Song ID: 225476891 - Play Count2 - Play Date3430930930 - Play Date UTC2012-09-19T14:52:10Z - Artwork Count1 - Persistent ID09E1C21800E338FE - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/06%20Deux%20arabesques%20(Two%20Arabesques),%20L%2066_%20No.%202.mp3 - File Folder Count4 - Library Folder Count1 - - 10428 - - Track ID10428 - NameLa plus que lente, L 121 - ArtistNoriko Ogawa - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size7330353 - Total Time339043 - Disc Number1 - Disc Count1 - Track Number7 - Track Count100 - Year2011 - Date Modified2012-08-22T01:40:25Z - Date Added2012-08-22T03:42:20Z - Bit Rate167 - Sample Rate44100 - CommentsAmazon.com Song ID: 225476893 - Play Count1 - Play Date3430931269 - Play Date UTC2012-09-19T14:57:49Z - Artwork Count1 - Persistent ID7D419B38AE7D9BC6 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/07%20La%20plus%20que%20lente,%20L%20121.mp3 - File Folder Count4 - Library Folder Count1 - - 10430 - - Track ID10430 - NameImages pour Piano, Set 1, L 110: I. Reflets dans l'eau (Reflections on the Water) - ArtistNoriko Ogawa - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size7342964 - Total Time347062 - Disc Number1 - Disc Count1 - Track Number8 - Track Count100 - Year2011 - Date Modified2012-08-22T02:01:31Z - Date Added2012-08-22T03:42:20Z - Bit Rate163 - Sample Rate44100 - CommentsAmazon.com Song ID: 225476895 - Artwork Count1 - Persistent ID88ADEDA53387D78A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/08%20Images%20pour%20Piano,%20Set%201,%20L%20110_%20I.%20Reflets%20dans%20l'eau%20(Reflections%20on%20the%20Water).mp3 - File Folder Count4 - Library Folder Count1 - - 10432 - - Track ID10432 - NameImages pour Piano, Set 1, L 110: II. Hommage à Rameau - ArtistNoriko Ogawa - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size8670097 - Total Time417044 - Disc Number1 - Disc Count1 - Track Number9 - Track Count100 - Year2011 - Date Modified2012-08-22T02:35:59Z - Date Added2012-08-22T03:42:21Z - Bit Rate161 - Sample Rate44100 - CommentsAmazon.com Song ID: 225476897 - Artwork Count1 - Persistent ID3CE065E3A05B4B43 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/09%20-%20Images%20pour%20Piano,%20Set%201,%20L%20110_%20II.%20Hommage%20%25E0%20Rameau.mp3 - File Folder Count4 - Library Folder Count1 - - 10434 - - Track ID10434 - NameImages pour Piano, Set 1, L 110: III. Mouvement - ArtistNoriko Ogawa - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size5020254 - Total Time210050 - Disc Number1 - Disc Count1 - Track Number10 - Track Count100 - Year2011 - Date Modified2012-08-22T01:58:02Z - Date Added2012-08-22T03:42:21Z - Bit Rate182 - Sample Rate44100 - CommentsAmazon.com Song ID: 225476899 - Artwork Count1 - Persistent IDA70CE2996BF6C8A4 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/10%20-%20Images%20pour%20Piano,%20Set%201,%20L%20110_%20III.%20Mouvement.mp3 - File Folder Count4 - Library Folder Count1 - - 10436 - - Track ID10436 - NameSyrinx for Solo Flute, L 129 - ArtistJadwiga Kotnowska - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size3970334 - Total Time148218 - Disc Number1 - Disc Count1 - Track Number100 - Track Count100 - Year2011 - Date Modified2012-08-22T02:20:13Z - Date Added2012-08-22T03:42:22Z - Bit Rate201 - Sample Rate44100 - CommentsAmazon.com Song ID: 225477074 - Play Count3 - Play Date3430929593 - Play Date UTC2012-09-19T14:29:53Z - Artwork Count1 - Persistent IDE249331E7631A5B8 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/100%20Syrinx%20for%20Solo%20Flute,%20L%20129.mp3 - File Folder Count4 - Library Folder Count1 - - 10438 - - Track ID10438 - NameImages pour Piano, Set 2, L 111: I. Cloches à travers les feuilles (Bells heard through the Leaves) - ArtistNoriko Ogawa - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size5930631 - Total Time284551 - Disc Number1 - Disc Count1 - Track Number11 - Track Count100 - Year2011 - Date Modified2012-08-22T02:48:59Z - Date Added2012-08-22T03:42:22Z - Bit Rate159 - Sample Rate44100 - CommentsAmazon.com Song ID: 225476901 - Artwork Count1 - Persistent ID66E99828717397F9 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/11%20-%20Images%20pour%20Piano,%20Set%202,%20L%20111_%20I.%20Cloches%20%25E0%20travers%20les%20feuilles%20(Bells%20heard%20through%20the%20Leaves).mp3 - File Folder Count4 - Library Folder Count1 - - 10440 - - Track ID10440 - NameImages pour Piano, Set 2, L 111: II. Et la lune descend sur le temple qui fût (And the Moon sets over the Ruined Temple) - ArtistNoriko Ogawa - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size7827362 - Total Time389041 - Disc Number1 - Disc Count1 - Track Number12 - Track Count100 - Year2011 - Date Modified2012-08-22T02:51:34Z - Date Added2012-08-22T03:42:22Z - Bit Rate156 - Sample Rate44100 - CommentsAmazon.com Song ID: 225476903 - Artwork Count1 - Persistent ID3048D490B81D763A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/12%20-%20Images%20pour%20Piano,%20Set%202,%20L%20111_%20II.%20Et%20la%20lune%20descend%20sur%20le%20temple%20qui%20f%25FBt%20(And%20the%20Moon%20sets%20over%20the%20Ruined%20Temple).mp3 - File Folder Count4 - Library Folder Count1 - - 10442 - - Track ID10442 - NameImages pour Piano, Set 2, L 111: III. Poissons d'or (Goldfish in a Bowl) - ArtistNoriko Ogawa - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size6206339 - Total Time272039 - Disc Number1 - Disc Count1 - Track Number13 - Track Count100 - Year2011 - Date Modified2012-08-22T01:52:57Z - Date Added2012-08-22T03:42:23Z - Bit Rate175 - Sample Rate44100 - CommentsAmazon.com Song ID: 225476904 - Artwork Count1 - Persistent IDE4D20958EED568EE - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/13%20-%20Images%20pour%20Piano,%20Set%202,%20L%20111_%20III.%20Poissons%20d'or%20(Goldfish%20in%20a%20Bowl).mp3 - File Folder Count4 - Library Folder Count1 - - 10444 - - Track ID10444 - NameImages inédites (Oubliées), L 87: I. Lent: Mélancolique et doux - ArtistNoriko Ogawa - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size4978556 - Total Time238053 - Disc Number1 - Disc Count1 - Track Number14 - Track Count100 - Year2011 - Date Modified2012-08-22T02:03:34Z - Date Added2012-08-22T03:42:23Z - Bit Rate159 - Sample Rate44100 - CommentsAmazon.com Song ID: 225476907 - Artwork Count1 - Persistent IDEA6E62E5B7EE4468 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/14%20-%20Images%20in%25E9dites%20(Oubli%25E9es),%20L%2087_%20I.%20Lent_%20M%25E9lancolique%20et%20doux.mp3 - File Folder Count4 - Library Folder Count1 - - 10446 - - Track ID10446 - NameImages inédites (Oubliées), L 87: II. Souvenir du Louvre - ArtistNoriko Ogawa - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size7635283 - Total Time366550 - Disc Number1 - Disc Count1 - Track Number15 - Track Count100 - Year2011 - Date Modified2012-08-22T02:24:45Z - Date Added2012-08-22T03:42:23Z - Bit Rate161 - Sample Rate44100 - CommentsAmazon.com Song ID: 225476909 - Artwork Count1 - Persistent ID6385D7B1F8EB7F24 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/15%20-%20Images%20in%25E9dites%20(Oubli%25E9es),%20L%2087_%20II.%20Souvenir%20du%20Louvre.mp3 - File Folder Count4 - Library Folder Count1 - - 10448 - - Track ID10448 - NameImages inédites (Oubliées), L 87: III. Quelques aspects de "nous n'irons plus au bois" parce qu'il fait un temps insupportable - ArtistNoriko Ogawa - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size6032673 - Total Time265064 - Disc Number1 - Disc Count1 - Track Number16 - Track Count100 - Year2011 - Date Modified2012-08-22T01:39:28Z - Date Added2012-08-22T03:42:24Z - Bit Rate174 - Sample Rate44100 - CommentsAmazon.com Song ID: 225476910 - Artwork Count1 - Persistent ID8D5FD8A53C84DB85 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/16%20-%20Images%20in%25E9dites%20(Oubli%25E9es),%20L%2087_%20III.%20Quelques%20aspects%20de%20_nous%20n'irons%20plus%20au%20bois_%20parce%20qu'il%20fait%20un%20temps%20insupportable.mp3 - File Folder Count4 - Library Folder Count1 - - 10450 - - Track ID10450 - NameElégie, L 138 - ArtistNoriko Ogawa - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size3386356 - Total Time134243 - Disc Number1 - Disc Count1 - Track Number17 - Track Count100 - Year2011 - Date Modified2012-08-22T02:19:45Z - Date Added2012-08-22T03:42:24Z - Bit Rate187 - Sample Rate44100 - CommentsAmazon.com Song ID: 225476913 - Play Count1 - Play Date3430417811 - Play Date UTC2012-09-13T16:20:11Z - Artwork Count1 - Persistent ID1795C7D186F72207 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/17%20Ele%CC%81gie,%20L%20138.mp3 - File Folder Count4 - Library Folder Count1 - - 10452 - - Track ID10452 - NameEstampes (Woodcuts), L 100: I. Pagodes (Pagodas) - ArtistNoriko Ogawa - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size6777281 - Total Time319059 - Disc Number1 - Disc Count1 - Track Number18 - Track Count100 - Year2011 - Date Modified2012-08-22T02:13:08Z - Date Added2012-08-22T03:42:24Z - Bit Rate163 - Sample Rate44100 - CommentsAmazon.com Song ID: 225476914 - Artwork Count1 - Persistent ID1D007C83FF68EAAD - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/18%20Estampes%20(Woodcuts),%20L%20100_%20I.%20Pagodes%20(Pagodas).mp3 - File Folder Count4 - Library Folder Count1 - - 10454 - - Track ID10454 - NameEstampes (Woodcuts), L 100: II. La soirée dans Grenade (Evening in Granada) - ArtistNoriko Ogawa - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size7254062 - Total Time344058 - Disc Number1 - Disc Count1 - Track Number19 - Track Count100 - Year2011 - Date Modified2012-08-22T02:36:35Z - Date Added2012-08-22T03:42:25Z - Bit Rate163 - Sample Rate44100 - CommentsAmazon.com Song ID: 225476917 - Artwork Count1 - Persistent ID13C2440EFE01D890 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/19%20-%20Estampes%20(Woodcuts),%20L%20100_%20II.%20La%20soir%25E9e%20dans%20Grenade%20(Evening%20in%20Granada).mp3 - File Folder Count4 - Library Folder Count1 - - 10456 - - Track ID10456 - NameEstampes (Woodcuts), L 100: III. Jardins sous la pluie (Gardens in the Rain) - ArtistNoriko Ogawa - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size5638390 - Total Time241057 - Disc Number1 - Disc Count1 - Track Number20 - Track Count100 - Year2011 - Date Modified2012-08-22T01:35:09Z - Date Added2012-08-22T03:42:25Z - Bit Rate179 - Sample Rate44100 - CommentsAmazon.com Song ID: 225476919 - Artwork Count1 - Persistent ID5F53D3DE14B873E4 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/20%20-%20Estampes%20(Woodcuts),%20L%20100_%20III.%20Jardins%20sous%20la%20pluie%20(Gardens%20in%20the%20Rain).mp3 - File Folder Count4 - Library Folder Count1 - - 10458 - - Track ID10458 - NameMasques pour Piano, L 105 - ArtistNoriko Ogawa - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size7510346 - Total Time319059 - Disc Number1 - Disc Count1 - Track Number21 - Track Count100 - Year2011 - Date Modified2012-08-22T01:49:22Z - Date Added2012-08-22T03:42:25Z - Bit Rate182 - Sample Rate44100 - CommentsAmazon.com Song ID: 225476921 - Artwork Count1 - Persistent ID6B245F1DE145B72C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/21%20Masques%20pour%20Piano,%20L%20105.mp3 - File Folder Count4 - Library Folder Count1 - - 10460 - - Track ID10460 - NamePréludes for Piano (Book 1), L 117: I. Danseuses de Delphes (Dancers of Delphi): Lent et grave - ArtistNoriko Ogawa - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size3860620 - Total Time171049 - Disc Number1 - Disc Count1 - Track Number22 - Track Count100 - Year2011 - Date Modified2012-08-22T02:57:53Z - Date Added2012-08-22T03:42:25Z - Bit Rate169 - Sample Rate44100 - CommentsAmazon.com Song ID: 225476923 - Artwork Count1 - Persistent IDC05B6FAC7FD5D561 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/22%20Pre%CC%81ludes%20for%20Piano%20(Book%201),%20L%20117_%20I.%20Danseuses%20de%20Delphes%20(Dancers%20of%20Delphi)_%20Lent%20et%20grave.mp3 - File Folder Count4 - Library Folder Count1 - - 10462 - - Track ID10462 - NamePréludes for Piano (Book 1), L 117: II. Voiles (Veils) - ArtistNoriko Ogawa - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size5137824 - Total Time237061 - Disc Number1 - Disc Count1 - Track Number23 - Track Count100 - Year2011 - Date Modified2012-08-22T02:28:13Z - Date Added2012-08-22T03:42:26Z - Bit Rate165 - Sample Rate44100 - CommentsAmazon.com Song ID: 225476925 - Artwork Count1 - Persistent IDF928949003AAF16B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/23%20-%20Pr%25E9ludes%20for%20Piano%20(Book%201),%20L%20117_%20II.%20Voiles%20(Veils).mp3 - File Folder Count4 - Library Folder Count1 - - 10464 - - Track ID10464 - NamePréludes for Piano (Book 1), L 117: III. Le vent dans la plaine (The Wind in the Plaine): Animé - ArtistNoriko Ogawa - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size3419025 - Total Time144248 - Disc Number1 - Disc Count1 - Track Number24 - Track Count100 - Year2011 - Date Modified2012-08-22T02:36:59Z - Date Added2012-08-22T03:42:26Z - Bit Rate176 - Sample Rate44100 - CommentsAmazon.com Song ID: 225476927 - Artwork Count1 - Persistent ID951763DA63085F1A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/24%20-%20Pr%25E9ludes%20for%20Piano%20(Book%201),%20L%20117_%20III.%20Le%20vent%20dans%20la%20plaine%20(The%20Wind%20in%20the%20Plaine)_%20Anim%25E9.mp3 - File Folder Count4 - Library Folder Count1 - - 10466 - - Track ID10466 - NamePréludes for Piano (Book 1), L 117: V. Les collines d'Anacapri (The Hills of Anacapri): Très Modéré - ArtistNoriko Ogawa - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size4832061 - Total Time202057 - Disc Number1 - Disc Count1 - Track Number26 - Track Count100 - Year2011 - Date Modified2012-08-22T01:40:51Z - Date Added2012-08-22T03:42:26Z - Bit Rate181 - Sample Rate44100 - CommentsAmazon.com Song ID: 225476931 - Artwork Count1 - Persistent IDFCABE2AAF2498583 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/26%20-%20Pr%25E9ludes%20for%20Piano%20(Book%201),%20L%20117_%20V.%20Les%20collines%20d'Anacapri%20(The%20Hills%20of%20Anacapri)_%20Tr%25E8s%20Mod%25E9r%25E9.mp3 - File Folder Count4 - Library Folder Count1 - - 10468 - - Track ID10468 - NamePréludes for Piano (Book 1), L 117: VI. Des pas sur la neige (Footsteps in the Snow): Triste et lent - ArtistNoriko Ogawa - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size5731862 - Total Time267859 - Disc Number1 - Disc Count1 - Track Number27 - Track Count100 - Year2011 - Date Modified2012-08-22T02:33:31Z - Date Added2012-08-22T03:42:26Z - Bit Rate164 - Sample Rate44100 - CommentsAmazon.com Song ID: 225476934 - Artwork Count1 - Persistent ID423BF9FFF4F54B69 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/27%20-%20Pr%25E9ludes%20for%20Piano%20(Book%201),%20L%20117_%20VI.%20Des%20pas%20sur%20la%20neige%20(Footsteps%20in%20the%20Snow)_%20Triste%20et%20lent.mp3 - File Folder Count4 - Library Folder Count1 - - 10470 - - Track ID10470 - NamePréludes for Piano (Book 1), L 117: VII. Ce qu'a vu le d'Ouest (What the West has Seen): Animé et tumultueux - ArtistNoriko Ogawa - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size5930604 - Total Time227918 - Disc Number1 - Disc Count1 - Track Number28 - Track Count100 - Year2011 - Date Modified2012-08-22T02:58:29Z - Date Added2012-08-22T03:42:27Z - Bit Rate199 - Sample Rate44100 - CommentsAmazon.com Song ID: 225476936 - Artwork Count1 - Persistent IDF288A91702868348 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/28%20-%20Pr%25E9ludes%20for%20Piano%20(Book%201),%20L%20117_%20VII.%20Ce%20qu'a%20vu%20le%20d'Ouest%20(What%20the%20West%20has%20Seen)_%20Anim%25E9%20et%20tumultueux.mp3 - File Folder Count4 - Library Folder Count1 - - 10472 - - Track ID10472 - NamePréludes For Piano (Book 1), L 117: VIII. La Fille Aux Cheveux De Lin (The Girl With The Flaxen Hair): Très Calme Et Doucement Expressif - ArtistNoriko Ogawa - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size3692538 - Total Time164884 - Disc Number1 - Disc Count1 - Track Number29 - Track Count100 - Year2011 - Date Modified2012-08-22T02:29:34Z - Date Added2012-08-22T03:42:27Z - Bit Rate167 - Sample Rate44100 - CommentsAmazon.com Song ID: 225476938 - Artwork Count1 - Persistent ID3AE54546FD4AE3AD - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/29%20-%20Pr%25E9ludes%20For%20Piano%20(Book%201),%20L%20117_%20VIII.%20La%20Fille%20Aux%20Cheveux%20De%20Lin%20(The%20Girl%20With%20The%20Flaxen%20Hair)_%20Tr%25E8s%20Calme%20Et%20Doucement%20Expressif.mp3 - File Folder Count4 - Library Folder Count1 - - 10474 - - Track ID10474 - NamePréludes for Piano (Book 1), L 117: IX. La sérénade interrompue (Interrupted Serenade): Modérément animé - ArtistNoriko Ogawa - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size3977000 - Total Time170213 - Disc Number1 - Disc Count1 - Track Number30 - Track Count100 - Year2011 - Date Modified2012-08-22T02:42:07Z - Date Added2012-08-22T03:42:27Z - Bit Rate175 - Sample Rate44100 - CommentsAmazon.com Song ID: 225476940 - Artwork Count1 - Persistent IDEAB5EF2B64AC482E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/30%20-%20Pr%25E9ludes%20for%20Piano%20(Book%201),%20L%20117_%20IX.%20La%20s%25E9r%25E9nade%20interrompue%20(Interrupted%20Serenade)_%20Mod%25E9r%25E9ment%20anim%25E9.mp3 - File Folder Count4 - Library Folder Count1 - - 10476 - - Track ID10476 - NamePréludes for Piano (Book 1), L 117: X. La Cathédrale engloutie (The Sunken Cathedral): Profondément calme - ArtistNoriko Ogawa - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size8663794 - Total Time384052 - Disc Number1 - Disc Count1 - Track Number31 - Track Count100 - Year2011 - Date Modified2012-08-22T01:52:21Z - Date Added2012-08-22T03:42:27Z - Bit Rate175 - Sample Rate44100 - CommentsAmazon.com Song ID: 225476942 - Artwork Count1 - Persistent ID54AE2D40D46D41ED - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/31%20-%20Pr%25E9ludes%20for%20Piano%20(Book%201),%20L%20117_%20X.%20La%20Cath%25E9drale%20engloutie%20(The%20Sunken%20Cathedral)_%20Profond%25E9ment%20calme.mp3 - File Folder Count4 - Library Folder Count1 - - 10478 - - Track ID10478 - NamePréludes for Piano (Book 1), L 117: XI. La danse de Puck (Puck's Dance): Capricieux et léger - ArtistNoriko Ogawa - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size4504912 - Total Time198060 - Disc Number1 - Disc Count1 - Track Number32 - Track Count100 - Year2011 - Date Modified2012-08-22T02:27:19Z - Date Added2012-08-22T03:42:28Z - Bit Rate172 - Sample Rate44100 - CommentsAmazon.com Song ID: 225476944 - Artwork Count1 - Persistent IDF8835FEA36207976 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/32%20-%20Pr%25E9ludes%20for%20Piano%20(Book%201),%20L%20117_%20XI.%20La%20danse%20de%20Puck%20(Puck's%20Dance)_%20Capricieux%20et%20l%25E9ger.mp3 - File Folder Count4 - Library Folder Count1 - - 10480 - - Track ID10480 - NamePréludes for Piano (Book 1), L 117: XII. Minstrels: Modéré - ArtistNoriko Ogawa - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size4059617 - Total Time167183 - Disc Number1 - Disc Count1 - Track Number33 - Track Count100 - Year2011 - Date Modified2012-08-22T02:30:39Z - Date Added2012-08-22T03:42:28Z - Bit Rate182 - Sample Rate44100 - CommentsAmazon.com Song ID: 225476946 - Artwork Count1 - Persistent ID9163A0C405841950 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/33%20-%20Pr%25E9ludes%20for%20Piano%20(Book%201),%20L%20117_%20XII.%20Minstrels_%20Mod%25E9r%25E9.mp3 - File Folder Count4 - Library Folder Count1 - - 10482 - - Track ID10482 - NameL'Isle Joyeuse, L 106 - ArtistNoriko Ogawa - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size9099876 - Total Time394057 - Disc Number1 - Disc Count1 - Track Number34 - Track Count100 - Year2011 - Date Modified2012-08-22T01:59:58Z - Date Added2012-08-22T03:42:28Z - Bit Rate179 - Sample Rate44100 - CommentsAmazon.com Song ID: 225476948 - Artwork Count1 - Persistent ID8A8BED4700377E9E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/34%20-%20L'Isle%20Joyeuse,%20L%20106.mp3 - File Folder Count4 - Library Folder Count1 - - 10484 - - Track ID10484 - NamePréludes for Piano (Book 2), L 123: I. Brouillards (Mists): Modéré - ArtistNoriko Ogawa - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size4742739 - Total Time192391 - Disc Number1 - Disc Count1 - Track Number35 - Track Count100 - Year2011 - Date Modified2012-08-22T02:53:18Z - Date Added2012-08-22T03:42:29Z - Bit Rate187 - Sample Rate44100 - CommentsAmazon.com Song ID: 225476950 - Artwork Count1 - Persistent ID86F2DF1293F306BA - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/35%20-%20Pr%25E9ludes%20for%20Piano%20(Book%202),%20L%20123_%20I.%20Brouillards%20(Mists)_%20Mod%25E9r%25E9.mp3 - File Folder Count4 - Library Folder Count1 - - 10486 - - Track ID10486 - NamePréludes for Piano (Book 2), L 123: II. Feuilles mortes (Dead Leaves): Lent et mélancolique - ArtistNoriko Ogawa - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size4314817 - Total Time174341 - Disc Number1 - Disc Count1 - Track Number36 - Track Count100 - Year2011 - Date Modified2012-08-22T02:14:21Z - Date Added2012-08-22T03:42:29Z - Bit Rate186 - Sample Rate44100 - CommentsAmazon.com Song ID: 225476952 - Artwork Count1 - Persistent ID0CF869AFBA17656C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/36%20-%20Pr%25E9ludes%20for%20Piano%20(Book%202),%20L%20123_%20II.%20Feuilles%20mortes%20(Dead%20Leaves)_%20Lent%20et%20m%25E9lancolique.mp3 - File Folder Count4 - Library Folder Count1 - - 10488 - - Track ID10488 - NamePréludes for Piano (Book 2), L 123: III. La puerta del Vino (The Wine Gate): Mouvement de Habanera - ArtistNoriko Ogawa - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size4860404 - Total Time191111 - Disc Number1 - Disc Count1 - Track Number37 - Track Count100 - Year2011 - Date Modified2012-08-22T01:38:49Z - Date Added2012-08-22T03:42:29Z - Bit Rate193 - Sample Rate44100 - CommentsAmazon.com Song ID: 225476954 - Artwork Count1 - Persistent IDCDEE4531E06290D4 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/37%20-%20Pr%25E9ludes%20for%20Piano%20(Book%202),%20L%20123_%20III.%20La%20puerta%20del%20Vino%20(The%20Wine%20Gate)_%20Mouvement%20de%20Habanera.mp3 - File Folder Count4 - Library Folder Count1 - - 10490 - - Track ID10490 - NamePréludes for Piano (Book 2), L 123: IV. Les fées sont d'exquises danseuses (The Fairies are Exquisite Dancers): Rapide et léger - ArtistNoriko Ogawa - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size4829383 - Total Time195082 - Disc Number1 - Disc Count1 - Track Number38 - Track Count100 - Year2011 - Date Modified2012-08-22T02:25:38Z - Date Added2012-08-22T03:42:30Z - Bit Rate188 - Sample Rate44100 - CommentsAmazon.com Song ID: 225476956 - Artwork Count1 - Persistent IDF5614C52045A38C8 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/38%20-%20Pr%25E9ludes%20for%20Piano%20(Book%202),%20L%20123_%20IV.%20Les%20f%25E9es%20sont%20d'exquises%20danseuses%20(The%20Fairies%20are%20Exquisite%20Dancers)_%20Rapide%20et%20l%25E9ger.mp3 - File Folder Count4 - Library Folder Count1 - - 10492 - - Track ID10492 - NamePréludes for Piano (Book 2), L 123: V. Bruyères (Heather): Calme, doucement expressif - ArtistNoriko Ogawa - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size4224227 - Total Time165668 - Disc Number1 - Disc Count1 - Track Number39 - Track Count100 - Year2011 - Date Modified2012-08-22T01:43:56Z - Date Added2012-08-22T03:42:30Z - Bit Rate192 - Sample Rate44100 - CommentsAmazon.com Song ID: 225476958 - Artwork Count1 - Persistent IDBC5F00762413CE63 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/39%20-%20Pr%25E9ludes%20for%20Piano%20(Book%202),%20L%20123_%20V.%20Bruy%25E8res%20(Heather)_%20Calme,%20doucement%20expressif.mp3 - File Folder Count4 - Library Folder Count1 - - 10494 - - Track ID10494 - NamePréludes for Piano (Book 2), L 123: VI. Général Lavine - eccentric: Dans le style et le mouvement d'un Cakewalk - ArtistNoriko Ogawa - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size4081218 - Total Time152320 - Disc Number1 - Disc Count1 - Track Number40 - Track Count100 - Year2011 - Date Modified2012-08-22T02:13:37Z - Date Added2012-08-22T03:42:30Z - Bit Rate201 - Sample Rate44100 - CommentsAmazon.com Song ID: 225476960 - Artwork Count1 - Persistent IDA70AEE3AC6E5AD9D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/40%20-%20Pr%25E9ludes%20for%20Piano%20(Book%202),%20L%20123_%20VI.%20G%25E9n%25E9ral%20Lavine%20-%20eccentric_%20Dans%20le%20style%20et%20le%20mouvement%20d'un%20Cakewalk.mp3 - File Folder Count4 - Library Folder Count1 - - 10496 - - Track ID10496 - NamePréludes for Piano (Book 2), L 123: VII. La terrasse des audiences du clair de lune (The Terrace for Moonlit Audiences): Lent - ArtistNoriko Ogawa - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size6156101 - Total Time246543 - Disc Number1 - Disc Count1 - Track Number41 - Track Count100 - Year2011 - Date Modified2012-08-22T02:50:38Z - Date Added2012-08-22T03:42:30Z - Bit Rate191 - Sample Rate44100 - CommentsAmazon.com Song ID: 225476962 - Artwork Count1 - Persistent IDADA30B30513B30E8 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/41%20-%20Pr%25E9ludes%20for%20Piano%20(Book%202),%20L%20123_%20VII.%20La%20terrasse%20des%20audiences%20du%20clair%20de%20lune%20(The%20Terrace%20for%20Moonlit%20Audiences)_%20Lent.mp3 - File Folder Count4 - Library Folder Count1 - - 10498 - - Track ID10498 - NamePréludes For Piano (Book 2), L 123: VIII. Ondine (Undine): Scherzando - ArtistNoriko Ogawa - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size4875025 - Total Time195709 - Disc Number1 - Disc Count1 - Track Number42 - Track Count100 - Year2011 - Date Modified2012-08-22T02:44:43Z - Date Added2012-08-22T03:42:30Z - Bit Rate189 - Sample Rate44100 - CommentsAmazon.com Song ID: 225476963 - Artwork Count1 - Persistent ID155B207081937A49 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/42%20-%20Pr%25E9ludes%20For%20Piano%20(Book%202),%20L%20123_%20VIII.%20Ondine%20(Undine)_%20Scherzando.mp3 - File Folder Count4 - Library Folder Count1 - - 10500 - - Track ID10500 - NamePréludes for Piano (Book 2), L 123: IX. Hommage à S. Pickwick Esq. P.P.M.P.C. (Homage to S. Pickwick): Grave - ArtistNoriko Ogawa - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size3887064 - Total Time147879 - Disc Number1 - Disc Count1 - Track Number43 - Track Count100 - Year2011 - Date Modified2012-08-22T02:34:00Z - Date Added2012-08-22T03:42:31Z - Bit Rate197 - Sample Rate44100 - CommentsAmazon.com Song ID: 225476966 - Artwork Count1 - Persistent IDE410594AEC4AF77B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/43%20-%20Pr%25E9ludes%20for%20Piano%20(Book%202),%20L%20123_%20IX.%20Hommage%20%25E0%20S.%20Pickwick%20Esq.%20P.P.M.P.C.%20(Homage%20to%20S.%20Pickwick)_%20Grave.mp3 - File Folder Count4 - Library Folder Count1 - - 10502 - - Track ID10502 - NamePréludes for Piano (Book 2), L 123: X. Canope (Canopic jar): Très calme et doucement triste - ArtistNoriko Ogawa - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size3965044 - Total Time159529 - Disc Number1 - Disc Count1 - Track Number44 - Track Count100 - Year2011 - Date Modified2012-08-22T01:42:43Z - Date Added2012-08-22T03:42:31Z - Bit Rate186 - Sample Rate44100 - CommentsAmazon.com Song ID: 225476968 - Artwork Count1 - Persistent ID1A181D65C98F386A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/44%20-%20Pr%25E9ludes%20for%20Piano%20(Book%202),%20L%20123_%20X.%20Canope%20(Canopic%20jar)_%20Tr%25E8s%20calme%20et%20doucement%20triste.mp3 - File Folder Count4 - Library Folder Count1 - - 10504 - - Track ID10504 - NamePréludes for Piano (Book 2), L 123: XI. Les tierces alternées (Alternating Thirds): Modérément animé - ArtistNoriko Ogawa - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size4210029 - Total Time161227 - Disc Number1 - Disc Count1 - Track Number45 - Track Count100 - Year2011 - Date Modified2012-08-22T02:27:48Z - Date Added2012-08-22T03:42:31Z - Bit Rate196 - Sample Rate44100 - CommentsAmazon.com Song ID: 225476970 - Artwork Count1 - Persistent IDB5B7D8DB17130800 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/45%20-%20Pr%25E9ludes%20for%20Piano%20(Book%202),%20L%20123_%20XI.%20Les%20tierces%20altern%25E9es%20(Alternating%20Thirds)_%20Mod%25E9r%25E9ment%20anim%25E9.mp3 - File Folder Count4 - Library Folder Count1 - - 10506 - - Track ID10506 - NamePréludes for Piano (Book 2), L 123: XII. Feux d'artifice (Fireworks): Modérément animé - ArtistNoriko Ogawa - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size8169582 - Total Time318720 - Disc Number1 - Disc Count1 - Track Number46 - Track Count100 - Year2011 - Date Modified2012-08-22T01:53:55Z - Date Added2012-08-22T03:42:32Z - Bit Rate199 - Sample Rate44100 - CommentsAmazon.com Song ID: 225476972 - Artwork Count1 - Persistent ID1413D274BE6D93CD - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/46%20-%20Pr%25E9ludes%20for%20Piano%20(Book%202),%20L%20123_%20XII.%20Feux%20d'artifice%20(Fireworks)_%20Mod%25E9r%25E9ment%20anim%25E9.mp3 - File Folder Count4 - Library Folder Count1 - - 10508 - - Track ID10508 - NameÉtude retrouvée - ArtistNoriko Ogawa - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size8004424 - Total Time326948 - Disc Number1 - Disc Count1 - Track Number47 - Track Count100 - Year2011 - Date Modified2012-08-22T02:32:24Z - Date Added2012-08-22T03:42:32Z - Bit Rate189 - Sample Rate44100 - CommentsAmazon.com Song ID: 225476974 - Artwork Count1 - Persistent ID91901C27C649B93E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/47%20E%CC%81tude%20retrouve%CC%81e.mp3 - File Folder Count4 - Library Folder Count1 - - 10510 - - Track ID10510 - NameChildren's Corner, L 113: I. Doctor Gradus ad Parnassum - ArtistNoriko Ogawa - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size3635109 - Total Time149864 - Disc Number1 - Disc Count1 - Track Number48 - Track Count100 - Year2011 - Date Modified2012-08-22T02:34:45Z - Date Added2012-08-22T03:42:32Z - Bit Rate181 - Sample Rate44100 - CommentsAmazon.com Song ID: 225476976 - Play Count1 - Play Date3438966389 - Play Date UTC2012-12-21T14:56:29Z - Artwork Count1 - Persistent IDC78CFDF50FC71AB6 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/48%20Children's%20Corner,%20L%20113_%20I.%20Doctor%20Gradus%20ad%20Parnassum.mp3 - File Folder Count4 - Library Folder Count1 - - 10512 - - Track ID10512 - NameChildren's Corner, L 113: II. Jimbo's Lullaby - ArtistNoriko Ogawa - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size5142994 - Total Time227552 - Disc Number1 - Disc Count1 - Track Number49 - Track Count100 - Year2011 - Date Modified2012-08-22T01:34:15Z - Date Added2012-08-22T03:42:32Z - Bit Rate172 - Sample Rate44100 - CommentsAmazon.com Song ID: 225476977 - Play Count1 - Play Date3438966616 - Play Date UTC2012-12-21T15:00:16Z - Artwork Count1 - Persistent IDF491672F426BE85B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/49%20Children's%20Corner,%20L%20113_%20II.%20Jimbo's%20Lullaby.mp3 - File Folder Count4 - Library Folder Count1 - - 10514 - - Track ID10514 - NameChildren's Corner, L 113: III. Serenade for the Doll - ArtistNoriko Ogawa - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size3546688 - Total Time157048 - Disc Number1 - Disc Count1 - Track Number50 - Track Count100 - Year2011 - Date Modified2012-08-22T02:12:14Z - Date Added2012-08-22T03:42:32Z - Bit Rate168 - Sample Rate44100 - CommentsAmazon.com Song ID: 225476980 - Play Count1 - Play Date3438966773 - Play Date UTC2012-12-21T15:02:53Z - Artwork Count1 - Persistent IDCC0A8243EEF0356C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/50%20Children's%20Corner,%20L%20113_%20III.%20Serenade%20for%20the%20Doll.mp3 - File Folder Count4 - Library Folder Count1 - - 10516 - - Track ID10516 - NameChildren's Corner, L 113: IV. The Snow is Dancing - ArtistNoriko Ogawa - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size3519966 - Total Time152555 - Disc Number1 - Disc Count1 - Track Number51 - Track Count100 - Year2011 - Date Modified2012-08-22T01:58:49Z - Date Added2012-08-22T03:42:32Z - Bit Rate171 - Sample Rate44100 - CommentsAmazon.com Song ID: 225476982 - Play Count1 - Play Date3438966926 - Play Date UTC2012-12-21T15:05:26Z - Artwork Count1 - Persistent ID91170B142CA3EE0E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/51%20Children's%20Corner,%20L%20113_%20IV.%20The%20Snow%20is%20Dancing.mp3 - File Folder Count4 - Library Folder Count1 - - 10518 - - Track ID10518 - NameChildren's Corner, L 113: V. The Little Shepherd - ArtistNoriko Ogawa - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size3499161 - Total Time161253 - Disc Number1 - Disc Count1 - Track Number52 - Track Count100 - Year2011 - Date Modified2012-08-22T02:16:20Z - Date Added2012-08-22T03:42:32Z - Bit Rate161 - Sample Rate44100 - CommentsAmazon.com Song ID: 225476984 - Play Count1 - Play Date3438967087 - Play Date UTC2012-12-21T15:08:07Z - Artwork Count1 - Persistent IDDFCD5EBC32C06CC6 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/52%20Children's%20Corner,%20L%20113_%20V.%20The%20Little%20Shepherd.mp3 - File Folder Count4 - Library Folder Count1 - - 10520 - - Track ID10520 - NameChildren's Corner, L 113: VI. Golliwogg's Cake-walk - ArtistNoriko Ogawa - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size4643845 - Total Time194063 - Disc Number1 - Disc Count1 - Track Number53 - Track Count100 - Year2011 - Date Modified2012-08-22T02:06:07Z - Date Added2012-08-22T03:42:33Z - Bit Rate181 - Sample Rate44100 - CommentsAmazon.com Song ID: 225476986 - Play Count1 - Play Date3438967281 - Play Date UTC2012-12-21T15:11:21Z - Artwork Count1 - Persistent ID1445832E7DCCDC92 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/53%20Children's%20Corner,%20L%20113_%20VI.%20Golliwogg's%20Cake-walk.mp3 - File Folder Count4 - Library Folder Count1 - - 10522 - - Track ID10522 - NameD'un cahier d'esquisses, L 99 - ArtistNoriko Ogawa - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size6390760 - Total Time288052 - Disc Number1 - Disc Count1 - Track Number54 - Track Count100 - Year2011 - Date Modified2012-08-22T01:48:33Z - Date Added2012-08-22T03:42:33Z - Bit Rate170 - Sample Rate44100 - CommentsAmazon.com Song ID: 225476988 - Artwork Count1 - Persistent IDE6C1A0E9A296C2FC - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/54%20D'un%20cahier%20d'esquisses,%20L%2099.mp3 - File Folder Count4 - Library Folder Count1 - - 10524 - - Track ID10524 - NameLa boîte à joujoux (The Toy Box), Ballet for Children: Scene 1 - Le magasin de jouets (The Toy Store) - ArtistNoriko Ogawa - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size22173849 - Total Time870791 - Disc Number1 - Disc Count1 - Track Number55 - Track Count100 - Year2011 - Date Modified2012-08-22T01:46:43Z - Date Added2012-08-22T03:42:34Z - Bit Rate201 - Sample Rate44100 - CommentsAmazon.com Song ID: 225476990 - Artwork Count1 - Persistent ID21B13CBDF070242D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/55%20-%20La%20bo%25EEte%20%25E0%20joujoux%20(The%20Toy%20Box),%20Ballet%20for%20Children_%20Scene%201%20-%20Le%20magasin%20de%20jouets%20(The%20Toy%20Store).mp3 - File Folder Count4 - Library Folder Count1 - - 10526 - - Track ID10526 - NameLa boîte à joujoux (The Toy Box), Ballet for Children: Scene 2 - Le champ de bataille (The Battlefield) - ArtistNoriko Ogawa - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size14593228 - Total Time575582 - Disc Number1 - Disc Count1 - Track Number56 - Track Count100 - Year2011 - Date Modified2012-08-22T02:17:43Z - Date Added2012-08-22T03:42:34Z - Bit Rate199 - Sample Rate44100 - CommentsAmazon.com Song ID: 225476992 - Artwork Count1 - Persistent IDD23FC93293E58D69 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/56%20-%20La%20bo%25EEte%20%25E0%20joujoux%20(The%20Toy%20Box),%20Ballet%20for%20Children_%20Scene%202%20-%20Le%20champ%20de%20bataille%20(The%20Battlefield).mp3 - File Folder Count4 - Library Folder Count1 - - 10528 - - Track ID10528 - NameLa boîte à joujoux (The Toy Box), Ballet for Children: Scene 3 - La bergerie à vendre (The Sheep for Sale) - ArtistNoriko Ogawa - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size9163414 - Total Time356022 - Disc Number1 - Disc Count1 - Track Number57 - Track Count100 - Year2011 - Date Modified2012-08-22T02:54:39Z - Date Added2012-08-22T03:42:34Z - Bit Rate200 - Sample Rate44100 - CommentsAmazon.com Song ID: 225476994 - Artwork Count1 - Persistent IDA47506A1CCE74ACD - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/57%20-%20La%20bo%25EEte%20%25E0%20joujoux%20(The%20Toy%20Box),%20Ballet%20for%20Children_%20Scene%203%20-%20La%20bergerie%20%25E0%20vendre%20(The%20Sheep%20for%20Sale).mp3 - File Folder Count4 - Library Folder Count1 - - 10530 - - Track ID10530 - NameHommage à Joseph Haydn, L 115 - ArtistNoriko Ogawa - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size3642504 - Total Time151222 - Disc Number1 - Disc Count1 - Track Number58 - Track Count100 - Year2011 - Date Modified2012-08-22T02:58:47Z - Date Added2012-08-22T03:42:34Z - Bit Rate179 - Sample Rate44100 - CommentsAmazon.com Song ID: 225476996 - Artwork Count1 - Persistent ID2942ACC9F8718476 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/58%20-%20Hommage%20%25E0%20Joseph%20Haydn,%20L%20115.mp3 - File Folder Count4 - Library Folder Count1 - - 10532 - - Track ID10532 - NameTwelve Études for Piano, L 136: Étude 1 pour les cinq doigts d'après Monsieur Czerny (Five Fingers, after Monsieur Czerny) - ArtistNoriko Ogawa - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size5408707 - Total Time207490 - Disc Number1 - Disc Count1 - Track Number59 - Track Count100 - Year2011 - Date Modified2012-08-22T02:50:03Z - Date Added2012-08-22T03:42:35Z - Bit Rate199 - Sample Rate44100 - CommentsAmazon.com Song ID: 225476997 - Artwork Count1 - Persistent ID10C759258965F129 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/59%20-%20Twelve%20%25C9tudes%20for%20Piano,%20L%20136_%20%25C9tude%201%20pour%20les%20cinq%20doigts%20d'apr%25E8s%20Monsieur%20Czerny%20(Five%20Fingers,%20after%20Monsieur%20Czerny).mp3 - File Folder Count4 - Library Folder Count1 - - 10534 - - Track ID10534 - NameLa boîte à joujoux (The Toy Box), Ballet for Children: Scene 4 - Après fortune faite (After Making a Fortune) - ArtistNoriko Ogawa - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size5595221 - Total Time214726 - Disc Number1 - Disc Count1 - Track Number60 - Track Count100 - Year2011 - Date Modified2012-08-22T02:56:11Z - Date Added2012-08-22T03:42:35Z - Bit Rate199 - Sample Rate44100 - CommentsAmazon.com Song ID: 225477000 - Artwork Count1 - Persistent ID783C96641021035E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/60%20-%20La%20bo%25EEte%20%25E0%20joujoux%20(The%20Toy%20Box),%20Ballet%20for%20Children_%20Scene%204%20-%20Apr%25E8s%20fortune%20faite%20(After%20Making%20a%20Fortune).mp3 - File Folder Count4 - Library Folder Count1 - - 10536 - - Track ID10536 - NameTwelve Études for Piano, L 136: Étude 2 pour les tierces (Thirds) - ArtistNoriko Ogawa - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size6911734 - Total Time272744 - Disc Number1 - Disc Count1 - Track Number61 - Track Count100 - Year2011 - Date Modified2012-08-22T02:53:51Z - Date Added2012-08-22T03:42:35Z - Bit Rate195 - Sample Rate44100 - CommentsAmazon.com Song ID: 225477002 - Artwork Count1 - Persistent ID5CC0CE79A8082D44 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/61%20-%20Twelve%20%25C9tudes%20for%20Piano,%20L%20136_%20%25C9tude%202%20pour%20les%20tierces%20(Thirds).mp3 - File Folder Count4 - Library Folder Count1 - - 10538 - - Track ID10538 - NameTwelve Études for Piano, L 136: Étude 3 pour les quartes (Fourths) - ArtistNoriko Ogawa - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size8185401 - Total Time335072 - Disc Number1 - Disc Count1 - Track Number62 - Track Count100 - Year2011 - Date Modified2012-08-22T01:38:16Z - Date Added2012-08-22T03:42:35Z - Bit Rate189 - Sample Rate44100 - CommentsAmazon.com Song ID: 225477004 - Artwork Count1 - Persistent ID63C6A933C0053041 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/62%20-%20Twelve%20%25C9tudes%20for%20Piano,%20L%20136_%20%25C9tude%203%20pour%20les%20quartes%20(Fourths).mp3 - File Folder Count4 - Library Folder Count1 - - 10540 - - Track ID10540 - NameTwelve Études for Piano, L 136: Étude 4 pour les sixtes (Sixths) - ArtistNoriko Ogawa - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size7353717 - Total Time297377 - Disc Number1 - Disc Count1 - Track Number63 - Track Count100 - Year2011 - Date Modified2012-08-22T02:00:40Z - Date Added2012-08-22T03:42:35Z - Bit Rate191 - Sample Rate44100 - CommentsAmazon.com Song ID: 225477006 - Artwork Count1 - Persistent ID8C9A0120C83D14B1 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/63%20-%20Twelve%20%25C9tudes%20for%20Piano,%20L%20136_%20%25C9tude%204%20pour%20les%20sixtes%20(Sixths).mp3 - File Folder Count4 - Library Folder Count1 - - 10542 - - Track ID10542 - NameTwelve Études for Piano, L 136: Étude 5 pour les octaves (Octaves) - ArtistNoriko Ogawa - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size4896347 - Total Time173714 - Disc Number1 - Disc Count1 - Track Number64 - Track Count100 - Year2011 - Date Modified2012-08-22T02:04:23Z - Date Added2012-08-22T03:42:36Z - Bit Rate214 - Sample Rate44100 - CommentsAmazon.com Song ID: 225477007 - Artwork Count1 - Persistent IDF2A86AFFCA8D0E2B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/64%20-%20Twelve%20%25C9tudes%20for%20Piano,%20L%20136_%20%25C9tude%205%20pour%20les%20octaves%20(Octaves).mp3 - File Folder Count4 - Library Folder Count1 - - 10544 - - Track ID10544 - NameTwelve Études for Piano, L 136: Étude 6 pour les huit doigts (Eight Fingers) - ArtistNoriko Ogawa - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size3000921 - Total Time111307 - Disc Number1 - Disc Count1 - Track Number65 - Track Count100 - Year2011 - Date Modified2012-08-22T01:49:40Z - Date Added2012-08-22T03:42:36Z - Bit Rate198 - Sample Rate44100 - CommentsAmazon.com Song ID: 225477009 - Artwork Count1 - Persistent IDA85CB84659BF10E2 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/65%20Twelve%20E%CC%81tudes%20for%20Piano,%20L%20136_%20E%CC%81tude%206%20pour%20les%20huit%20doigts%20(Eight%20Fingers).mp3 - File Folder Count4 - Library Folder Count1 - - 10546 - - Track ID10546 - NameTwelve Études for Piano, L 136: Étude 7 pour les degrés chromatiques (Chromatic Degrees) - ArtistNoriko Ogawa - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size3867587 - Total Time151431 - Disc Number1 - Disc Count1 - Track Number66 - Track Count100 - Year2011 - Date Modified2012-08-22T02:13:57Z - Date Added2012-08-22T03:42:36Z - Bit Rate191 - Sample Rate44100 - CommentsAmazon.com Song ID: 225477011 - Artwork Count1 - Persistent ID491A83D2848F1568 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/66%20Twelve%20E%CC%81tudes%20for%20Piano,%20L%20136_%20E%CC%81tude%207%20pour%20les%20degre%CC%81s%20chromatiques%20(Chromatic%20Degrees).mp3 - File Folder Count4 - Library Folder Count1 - - 10548 - - Track ID10548 - NameTwelve Études for Piano, L 136: Étude 8 pour les agréments (Ornaments) - ArtistNoriko Ogawa - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size7639499 - Total Time308218 - Disc Number1 - Disc Count1 - Track Number67 - Track Count100 - Year2011 - Date Modified2012-08-22T02:05:19Z - Date Added2012-08-22T03:42:36Z - Bit Rate192 - Sample Rate44100 - CommentsAmazon.com Song ID: 225477014 - Artwork Count1 - Persistent IDE8A124C4220A1AF7 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/67%20Twelve%20E%CC%81tudes%20for%20Piano,%20L%20136_%20E%CC%81tude%208%20pour%20les%20agre%CC%81ments%20(Ornaments).mp3 - File Folder Count4 - Library Folder Count1 - - 10550 - - Track ID10550 - NameTwelve Études for Piano, L 136: Étude 9 pour les notes répétées (Repeated Notes) - ArtistNoriko Ogawa - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size5248260 - Total Time201822 - Disc Number1 - Disc Count1 - Track Number68 - Track Count100 - Year2011 - Date Modified2012-08-22T01:37:04Z - Date Added2012-08-22T03:42:37Z - Bit Rate198 - Sample Rate44100 - CommentsAmazon.com Song ID: 225477015 - Artwork Count1 - Persistent ID15EA5F9D8AB7A4A2 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/68%20Twelve%20E%CC%81tudes%20for%20Piano,%20L%20136_%20E%CC%81tude%209%20pour%20les%20notes%20re%CC%81pe%CC%81te%CC%81es%20(Repeated%20Notes).mp3 - File Folder Count4 - Library Folder Count1 - - 10552 - - Track ID10552 - NameTwelve Études for Piano, L 136: Étude 10 pour les sonorités opposées (Opposing Sonorities) - ArtistNoriko Ogawa - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size7503442 - Total Time308218 - Disc Number1 - Disc Count1 - Track Number69 - Track Count100 - Year2011 - Date Modified2012-08-22T02:21:28Z - Date Added2012-08-22T03:42:37Z - Bit Rate188 - Sample Rate44100 - CommentsAmazon.com Song ID: 225477017 - Artwork Count1 - Persistent ID2D240B3342947C48 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/69%20Twelve%20E%CC%81tudes%20for%20Piano,%20L%20136_%20E%CC%81tude%2010%20pour%20les%20sonorite%CC%81s%20oppose%CC%81es%20(Opposing%20Sonorities).mp3 - File Folder Count4 - Library Folder Count1 - - 10554 - - Track ID10554 - NameTwelve Études for Piano, L 136: Étude 11 pour les arpèges composés (Composite Arpeggios) - ArtistNoriko Ogawa - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size7352456 - Total Time295235 - Disc Number1 - Disc Count1 - Track Number70 - Track Count100 - Year2011 - Date Modified2012-08-22T02:55:14Z - Date Added2012-08-22T03:42:37Z - Bit Rate192 - Sample Rate44100 - CommentsAmazon.com Song ID: 225477019 - Artwork Count1 - Persistent ID1D0E28DDDFA517C8 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/70%20Twelve%20E%CC%81tudes%20for%20Piano,%20L%20136_%20E%CC%81tude%2011%20pour%20les%20arpe%CC%80ges%20compose%CC%81s%20(Composite%20Arpeggios).mp3 - File Folder Count4 - Library Folder Count1 - - 10556 - - Track ID10556 - NameTwelve Études for Piano, L 136: Étude 12 pour les accords (Chords) - ArtistNoriko Ogawa - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size8694333 - Total Time343275 - Disc Number1 - Disc Count1 - Track Number71 - Track Count100 - Year2011 - Date Modified2012-08-22T01:56:41Z - Date Added2012-08-22T03:42:37Z - Bit Rate197 - Sample Rate44100 - CommentsAmazon.com Song ID: 225477021 - Artwork Count1 - Persistent IDC0EE2D5C02232E23 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/71%20Twelve%20E%CC%81tudes%20for%20Piano,%20L%20136_%20E%CC%81tude%2012%20pour%20les%20accords%20(Chords).mp3 - File Folder Count4 - Library Folder Count1 - - 10558 - - Track ID10558 - NameLe Petit Nègre (Cake-Walk), L 114 - ArtistNoriko Ogawa - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size2855109 - Total Time118386 - Disc Number1 - Disc Count1 - Track Number72 - Track Count100 - Year2011 - Date Modified2012-08-22T02:43:38Z - Date Added2012-08-22T03:42:37Z - Bit Rate176 - Sample Rate44100 - CommentsAmazon.com Song ID: 225477023 - Artwork Count1 - Persistent ID8D86DEF4B6E41CC4 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/72%20Le%20Petit%20Ne%CC%80gre%20(Cake-Walk),%20L%20114.mp3 - File Folder Count4 - Library Folder Count1 - - 10560 - - Track ID10560 - NameSix Épigraphes antiques, L 131: I. Pour invoquer Pan, dieu du vent d’été (For invoking Pan, God of the Summer Breeze) - ArtistNoriko Ogawa - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size4240409 - Total Time172773 - Disc Number1 - Disc Count1 - Track Number73 - Track Count100 - Year2011 - Date Modified2012-08-22T02:18:04Z - Date Added2012-08-22T03:42:38Z - Bit Rate185 - Sample Rate44100 - CommentsAmazon.com Song ID: 225477026 - Artwork Count1 - Persistent IDBAE089F95D693A19 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/73%20Six%20E%CC%81pigraphes%20antiques,%20L%20131_%20I.%20Pour%20invoquer%20Pan,%20dieu%20du%20vent%20d_e%CC%81te%CC%81%20(For%20invoking%20Pan,%20God%20of%20the%20Summer%20Breeze).mp3 - File Folder Count4 - Library Folder Count1 - - 10562 - - Track ID10562 - NameSix Épigraphes antiques, L 131: II. Pour un tombeau sans nom (For a Nameless Tombstone) - ArtistNoriko Ogawa - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size5942663 - Total Time247066 - Disc Number1 - Disc Count1 - Track Number74 - Track Count100 - Year2011 - Date Modified2012-08-22T02:18:45Z - Date Added2012-08-22T03:42:38Z - Bit Rate184 - Sample Rate44100 - CommentsAmazon.com Song ID: 225477028 - Artwork Count1 - Persistent IDCB7C3DE94894B6DD - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/74%20Six%20E%CC%81pigraphes%20antiques,%20L%20131_%20II.%20Pour%20un%20tombeau%20sans%20nom%20(For%20a%20Nameless%20Tombstone).mp3 - File Folder Count4 - Library Folder Count1 - - 10564 - - Track ID10564 - NameSix Épigraphes antiques, L 131: III. Pour que la nuit soit propice (For the Auspicious Night) - ArtistNoriko Ogawa - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size4562911 - Total Time182204 - Disc Number1 - Disc Count1 - Track Number75 - Track Count100 - Year2011 - Date Modified2012-08-22T01:58:31Z - Date Added2012-08-22T03:42:38Z - Bit Rate189 - Sample Rate44100 - CommentsAmazon.com Song ID: 225477030 - Artwork Count1 - Persistent ID7840E92D7F61C7D4 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/75%20Six%20E%CC%81pigraphes%20antiques,%20L%20131_%20III.%20Pour%20que%20la%20nuit%20soit%20propice%20(For%20the%20Auspicious%20Night).mp3 - File Folder Count4 - Library Folder Count1 - - 10566 - - Track ID10566 - NameSix Épigraphes antiques, L 131: IV. Pour la danseuse aux crotales (For the Dancer with Castanets) - ArtistNoriko Ogawa - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size4202918 - Total Time166426 - Disc Number1 - Disc Count1 - Track Number76 - Track Count100 - Year2011 - Date Modified2012-08-22T02:15:51Z - Date Added2012-08-22T03:42:38Z - Bit Rate190 - Sample Rate44100 - CommentsAmazon.com Song ID: 225477032 - Artwork Count1 - Persistent IDAEFA98863AB24070 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/76%20Six%20E%CC%81pigraphes%20antiques,%20L%20131_%20IV.%20Pour%20la%20danseuse%20aux%20crotales%20(For%20the%20Dancer%20with%20Castanets).mp3 - File Folder Count4 - Library Folder Count1 - - 10568 - - Track ID10568 - NameSix Épigraphes antiques, L 131: V. Pour l’Égyptienne (For the Egyptian) - ArtistNoriko Ogawa - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size5449295 - Total Time224444 - Disc Number1 - Disc Count1 - Track Number77 - Track Count100 - Year2011 - Date Modified2012-08-22T02:30:19Z - Date Added2012-08-22T03:42:39Z - Bit Rate185 - Sample Rate44100 - CommentsAmazon.com Song ID: 225477034 - Artwork Count1 - Persistent IDC369529431C6394C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/77%20Six%20E%CC%81pigraphes%20antiques,%20L%20131_%20V.%20Pour%20l_E%CC%81gyptienne%20(For%20the%20Egyptian).mp3 - File Folder Count4 - Library Folder Count1 - - 10570 - - Track ID10570 - NameSix Épigraphes antiques, L 131: VI. Pour remercier la pluie au matin (For Thanking the Morning Rain) - ArtistNoriko Ogawa - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size4117563 - Total Time167235 - Disc Number1 - Disc Count1 - Track Number78 - Track Count100 - Year2011 - Date Modified2012-08-22T02:45:19Z - Date Added2012-08-22T03:42:39Z - Bit Rate185 - Sample Rate44100 - CommentsAmazon.com Song ID: 225477036 - Artwork Count1 - Persistent IDDA1FB58AA182EC24 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/78%20Six%20E%CC%81pigraphes%20antiques,%20L%20131_%20VI.%20Pour%20remercier%20la%20pluie%20au%20matin%20(For%20Thanking%20the%20Morning%20Rain).mp3 - File Folder Count4 - Library Folder Count1 - - 10572 - - Track ID10572 - NameLes Soirs illuminés par l’ardeur du charbon (The Evenings Illuminated by the Burning Coal), L 150 - ArtistNoriko Ogawa - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size3627206 - Total Time154148 - Disc Number1 - Disc Count1 - Track Number79 - Track Count100 - Year2011 - Date Modified2012-08-22T01:33:28Z - Date Added2012-08-22T03:42:39Z - Bit Rate175 - Sample Rate44100 - CommentsAmazon.com Song ID: 225477038 - Artwork Count1 - Persistent IDC86717591239AC5A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/79%20Les%20Soirs%20illumine%CC%81s%20par%20l_ardeur%20du%20charbon%20(The%20Evenings%20Illuminated%20by%20the%20Burning%20Coal),%20L%20150.mp3 - File Folder Count4 - Library Folder Count1 - - 10574 - - Track ID10574 - NameSonata in D Minor for Cello and Piano, L 135: I. Prologue: Lent - Sostenuto molto resoluto - ArtistFrans Helmerson and Hans Pålsson - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size8916531 - Total Time300068 - Disc Number1 - Disc Count1 - Track Number80 - Track Count100 - Year2011 - Date Modified2012-08-22T02:10:06Z - Date Added2012-08-22T03:42:39Z - Bit Rate231 - Sample Rate44100 - CommentsAmazon.com Song ID: 225477040 - Artwork Count1 - Persistent ID53498E3FDCD0DEF9 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/80%20Sonata%20in%20D%20Minor%20for%20Cello%20and%20Piano,%20L%20135_%20I.%20Prologue_%20Lent%20-%20Sostenuto%20molto%20resoluto.mp3 - File Folder Count4 - Library Folder Count1 - - 10576 - - Track ID10576 - NameSonata in D Minor for Cello and Piano, L 135: II. Sérénade: Modérément animé - ArtistFrans Helmerson and Hans Pålsson - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size6068184 - Total Time209084 - Disc Number1 - Disc Count1 - Track Number81 - Track Count100 - Year2011 - Date Modified2012-08-22T02:06:39Z - Date Added2012-08-22T03:42:39Z - Bit Rate222 - Sample Rate44100 - CommentsAmazon.com Song ID: 225477041 - Artwork Count1 - Persistent ID292D746BA95E7938 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/81%20Sonata%20in%20D%20Minor%20for%20Cello%20and%20Piano,%20L%20135_%20II.%20Se%CC%81re%CC%81nade_%20Mode%CC%81re%CC%81ment%20anime%CC%81.mp3 - File Folder Count4 - Library Folder Count1 - - 10578 - - Track ID10578 - NameSonata in D Minor for Cello and Piano, L 135: III. Finale: Animé - ArtistFrans Helmerson and Hans Pålsson - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size6292536 - Total Time216973 - Disc Number1 - Disc Count1 - Track Number82 - Track Count100 - Year2011 - Date Modified2012-08-22T02:26:10Z - Date Added2012-08-22T03:42:39Z - Bit Rate223 - Sample Rate44100 - CommentsAmazon.com Song ID: 225477043 - Artwork Count1 - Persistent ID866CE08518C5CC12 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/82%20Sonata%20in%20D%20Minor%20for%20Cello%20and%20Piano,%20L%20135_%20III.%20Finale_%20Anime%CC%81.mp3 - File Folder Count4 - Library Folder Count1 - - 10580 - - Track ID10580 - NameString Quartet in G Minor, Op. 10, L 85: I. Animé et trè décidé - ArtistTravnicek Quartet - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size11324827 - Total Time392359 - Disc Number1 - Disc Count1 - Track Number83 - Track Count100 - Year2011 - Date Modified2012-08-22T02:15:31Z - Date Added2012-08-22T03:42:40Z - Bit Rate226 - Sample Rate44100 - CommentsAmazon.com Song ID: 225477046 - Artwork Count1 - Persistent ID2E91691F4F2B5897 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/83%20String%20Quartet%20in%20G%20Minor,%20Op.%2010,%20L%2085_%20I.%20Anime%CC%81%20et%20tre%CC%80%20de%CC%81cide%CC%81.mp3 - File Folder Count4 - Library Folder Count1 - - 10582 - - Track ID10582 - NameString Quartet in G Minor, Op. 10, L 85: II. Assez vif et jeu bien rythmé - ArtistTravnicek Quartet - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size6582553 - Total Time226115 - Disc Number1 - Disc Count1 - Track Number84 - Track Count100 - Year2011 - Date Modified2012-08-22T01:37:36Z - Date Added2012-08-22T03:42:40Z - Bit Rate224 - Sample Rate44100 - CommentsAmazon.com Song ID: 225477048 - Artwork Count1 - Persistent ID0B011EFDAAD45563 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/84%20String%20Quartet%20in%20G%20Minor,%20Op.%2010,%20L%2085_%20II.%20Assez%20vif%20et%20jeu%20bien%20rythme%CC%81.mp3 - File Folder Count4 - Library Folder Count1 - - 10584 - - Track ID10584 - NameString Quartet in G Minor, Op. 10, L 85: III. Andantino - doucement expressif - ArtistTravnicek Quartet - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size12781284 - Total Time456359 - Disc Number1 - Disc Count1 - Track Number85 - Track Count100 - Year2011 - Date Modified2012-08-22T02:09:19Z - Date Added2012-08-22T03:42:40Z - Bit Rate219 - Sample Rate44100 - CommentsAmazon.com Song ID: 225477050 - Artwork Count1 - Persistent ID24FAE46C50C6A8BC - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/85%20String%20Quartet%20in%20G%20Minor,%20Op.%2010,%20L%2085_%20III.%20Andantino%20-%20doucement%20expressif.mp3 - File Folder Count4 - Library Folder Count1 - - 10586 - - Track ID10586 - NameString Quartet in G Minor, Op. 10, L 85: IV. Très modéré - ArtistTravnicek Quartet - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size12315948 - Total Time427206 - Disc Number1 - Disc Count1 - Track Number86 - Track Count100 - Year2011 - Date Modified2012-08-22T02:11:14Z - Date Added2012-08-22T03:42:41Z - Bit Rate226 - Sample Rate44100 - CommentsAmazon.com Song ID: 225477052 - Artwork Count1 - Persistent ID28865F045331C987 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/86%20String%20Quartet%20in%20G%20Minor,%20Op.%2010,%20L%2085_%20IV.%20Tre%CC%80s%20mode%CC%81re%CC%81.mp3 - File Folder Count4 - Library Folder Count1 - - 10588 - - Track ID10588 - NamePetite Suite (1889): En bateau - ArtistDag Achatz and Yukie Nagai - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size720896 - Total Time247040 - Disc Number1 - Disc Count1 - Track Number87 - Track Count100 - Year2011 - Date Modified2012-08-22T01:33:41Z - Date Added2012-08-22T03:42:41Z - Bit Rate218 - Sample Rate44100 - CommentsAmazon.com Song ID: 225477054 - Artwork Count1 - Persistent IDA8346FBD5AF8E96F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/87%20Petite%20Suite%20(1889)_%20En%20bateau.mp3 - File Folder Count4 - Library Folder Count1 - - 10590 - - Track ID10590 - NamePetite Suite (1889): Cortège - ArtistDag Achatz and Yukie Nagai - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size6409406 - Total Time219062 - Disc Number1 - Disc Count1 - Track Number88 - Track Count100 - Year2011 - Date Modified2012-08-22T01:57:31Z - Date Added2012-08-22T03:42:42Z - Bit Rate225 - Sample Rate44100 - CommentsAmazon.com Song ID: 225477056 - Artwork Count1 - Persistent ID35C8F484DB00492C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/88%20Petite%20Suite%20(1889)_%20Corte%CC%80ge.mp3 - File Folder Count4 - Library Folder Count1 - - 10592 - - Track ID10592 - NamePetite Suite (1889): Menuet - ArtistDag Achatz and Yukie Nagai - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size5239927 - Total Time182047 - Disc Number1 - Disc Count1 - Track Number89 - Track Count100 - Year2011 - Date Modified2012-08-22T01:41:24Z - Date Added2012-08-22T03:42:42Z - Bit Rate219 - Sample Rate44100 - CommentsAmazon.com Song ID: 225477058 - Artwork Count1 - Persistent IDE7E8F2856F6CF927 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/89%20Petite%20Suite%20(1889)_%20Menuet.mp3 - File Folder Count4 - Library Folder Count1 - - 10594 - - Track ID10594 - NamePetite Suite (1889): Ballet - ArtistDag Achatz and Yukie Nagai - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size6830242 - Total Time231053 - Disc Number1 - Disc Count1 - Track Number90 - Track Count100 - Year2011 - Date Modified2012-08-22T02:07:15Z - Date Added2012-08-22T03:42:42Z - Bit Rate228 - Sample Rate44100 - CommentsAmazon.com Song ID: 225477060 - Artwork Count1 - Persistent ID581554B1A648747B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/90%20Petite%20Suite%20(1889)_%20Ballet.mp3 - File Folder Count4 - Library Folder Count1 - - 10596 - - Track ID10596 - NamePrélude à l'après-midi d'un faune (Prelude to a Faun's Afternoon), L 86 - ArtistTbilisi Symphony Orchestra and Jansug Kakhidze - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size16109058 - Total Time568189 - Disc Number1 - Disc Count1 - Track Number91 - Track Count100 - Year2011 - Date Modified2012-08-22T02:40:10Z - Date Added2012-08-22T03:42:42Z - Bit Rate223 - Sample Rate44100 - CommentsAmazon.com Song ID: 225477062 - Artwork Count1 - Persistent ID2BBB15C5007EB29D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/91%20Pre%CC%81lude%20a%CC%80%20l'apre%CC%80s-midi%20d'un%20faune%20(Prelude%20to%20a%20Faun's%20Afternoon),%20L%2086.mp3 - File Folder Count4 - Library Folder Count1 - - 10598 - - Track ID10598 - NameNocturnes, L 91: I. Nuages (Clouds) - ArtistTbilisi Symphony Orchestra and Jansug Kakhidze - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size13118236 - Total Time464091 - Disc Number1 - Disc Count1 - Track Number92 - Track Count100 - Year2011 - Date Modified2012-08-22T01:36:37Z - Date Added2012-08-22T03:42:43Z - Bit Rate221 - Sample Rate44100 - CommentsAmazon.com Song ID: 225477064 - Artwork Count1 - Persistent ID4A01796DD5A52F57 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/92%20Nocturnes,%20L%2091_%20I.%20Nuages%20(Clouds).mp3 - File Folder Count4 - Library Folder Count1 - - 10600 - - Track ID10600 - NameNocturnes, L 91: II. Fêtes (Festivals) - ArtistTbilisi Symphony Orchestra and Jansug Kakhidze - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size11143637 - Total Time385358 - Disc Number1 - Disc Count1 - Track Number93 - Track Count100 - Year2011 - Date Modified2012-08-22T02:02:29Z - Date Added2012-08-22T03:42:43Z - Bit Rate226 - Sample Rate44100 - CommentsAmazon.com Song ID: 225477066 - Artwork Count1 - Persistent ID171E0370C069FF77 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/93%20Nocturnes,%20L%2091_%20II.%20Fe%CC%82tes%20(Festivals).mp3 - File Folder Count4 - Library Folder Count1 - - 10602 - - Track ID10602 - NameNocturnes, L 91: III. Sirènes (Sirens) - ArtistTbilisi Symphony Orchestra and Jansug Kakhidze - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size21100735 - Total Time747467 - Disc Number1 - Disc Count1 - Track Number94 - Track Count100 - Year2011 - Date Modified2012-08-22T02:23:35Z - Date Added2012-08-22T03:42:43Z - Bit Rate223 - Sample Rate44100 - CommentsAmazon.com Song ID: 225477068 - Artwork Count1 - Persistent ID5B92A7B04141E3F2 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/94%20Nocturnes,%20L%2091_%20III.%20Sire%CC%80nes%20(Sirens).mp3 - File Folder Count4 - Library Folder Count1 - - 10604 - - Track ID10604 - NameDances for Harp and Strings, L 103: I. Danse sacrée: Tres modere - ArtistTbilisi Symphony Orchestra and Jansug Kakhidze - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size9386784 - Total Time327941 - Disc Number1 - Disc Count1 - Track Number95 - Track Count100 - Year2011 - Date Modified2012-08-22T01:54:44Z - Date Added2012-08-22T03:42:44Z - Bit Rate223 - Sample Rate44100 - CommentsAmazon.com Song ID: 225477069 - Play Count2 - Play Date3430417214 - Play Date UTC2012-09-13T16:10:14Z - Artwork Count1 - Persistent ID0ED27B39B5D717E6 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/95%20Dances%20for%20Harp%20and%20Strings,%20L%20103_%20I.%20Danse%20sacre%CC%81e_%20Tres%20modere.mp3 - File Folder Count4 - Library Folder Count1 - - 10606 - - Track ID10606 - NameDances for Harp and Strings, L 103: II. Danse profane: Modere - ArtistTbilisi Symphony Orchestra and Jansug Kakhidze - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size8890701 - Total Time314435 - Disc Number1 - Disc Count1 - Track Number96 - Track Count100 - Year2011 - Date Modified2012-08-22T02:41:29Z - Date Added2012-08-22T03:42:44Z - Bit Rate220 - Sample Rate44100 - CommentsAmazon.com Song ID: 225477070 - Play Count2 - Play Date3430417528 - Play Date UTC2012-09-13T16:15:28Z - Artwork Count1 - Persistent IDB163F9C349DCECF1 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/96%20Dances%20for%20Harp%20and%20Strings,%20L%20103_%20II.%20Danse%20profane_%20Modere.mp3 - File Folder Count4 - Library Folder Count1 - - 10608 - - Track ID10608 - NameLa Mer (The Sea), L 109: I. De l'aube à midi sur la mer (From Dawn to Noon on the Sea) - ArtistTbilisi Symphony Orchestra and Jansug Kakhidze - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size15898114 - Total Time558706 - Disc Number1 - Disc Count1 - Track Number97 - Track Count100 - Year2011 - Date Modified2012-08-22T02:48:23Z - Date Added2012-08-22T03:42:44Z - Bit Rate224 - Sample Rate44100 - CommentsAmazon.com Song ID: 225477071 - Artwork Count1 - Persistent ID7F000D64CB9D9C38 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/97%20La%20Mer%20(The%20Sea),%20L%20109_%20I.%20De%20l'aube%20a%CC%80%20midi%20sur%20la%20mer%20(From%20Dawn%20to%20Noon%20on%20the%20Sea).mp3 - File Folder Count4 - Library Folder Count1 - - 10610 - - Track ID10610 - NameLa Mer (The Sea), L 109: II. Jeux de vagues (Waves playing) - ArtistTbilisi Symphony Orchestra and Jansug Kakhidze - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size12784047 - Total Time428277 - Disc Number1 - Disc Count1 - Track Number98 - Track Count100 - Year2011 - Date Modified2012-08-22T02:31:40Z - Date Added2012-08-22T03:42:44Z - Bit Rate234 - Sample Rate44100 - CommentsAmazon.com Song ID: 225477072 - Artwork Count1 - Persistent IDE97743193C366DE9 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/98%20La%20Mer%20(The%20Sea),%20L%20109_%20II.%20Jeux%20de%20vagues%20(Waves%20playing).mp3 - File Folder Count4 - Library Folder Count1 - - 10612 - - Track ID10612 - NameLa Mer (The Sea), L 109: III. Dialogue du vent et de la mer (Dialogue of the Wind and Sea) - ArtistTbilisi Symphony Orchestra and Jansug Kakhidze - Album ArtistVarious Artists - AlbumDebussy - 100 Supreme Classical Masterpieces: Rise of the Masters - GenreClassical - KindMPEG audio file - Size17498741 - Total Time586579 - Disc Number1 - Disc Count1 - Track Number99 - Track Count100 - Year2011 - Date Modified2012-08-22T01:51:35Z - Date Added2012-08-22T03:42:45Z - Bit Rate235 - Sample Rate44100 - CommentsAmazon.com Song ID: 225477073 - Artwork Count1 - Persistent IDC6641312E9E21C9A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Debussy%20-%20100%20Supreme%20Classical%20Masterpieces_%20Rise%20of%20the%20Masters/99%20La%20Mer%20(The%20Sea),%20L%20109_%20III.%20Dialogue%20du%20vent%20et%20de%20la%20mer%20(Dialogue%20of%20the%20Wind%20and%20Sea).mp3 - File Folder Count4 - Library Folder Count1 - - 10614 - - Track ID10614 - NameJesu Joy Of Man's Desiring (From Cantata BWV 147) - ArtistGabriela Montero - Album ArtistGabriela Montero - ComposerJohann Sebastian Bach - AlbumBach And Beyond - GenreClassical - KindMPEG audio file - Size7402836 - Total Time325825 - Disc Number1 - Disc Count1 - Track Number1 - Track Count15 - Year2006 - Date Modified2012-08-22T03:05:19Z - Date Added2012-08-22T03:42:45Z - Bit Rate176 - Sample Rate44100 - CommentsAmazon.com Song ID: 201980464 - Play Count3 - Play Date3429249099 - Play Date UTC2012-08-31T03:41:39Z - Artwork Count1 - Persistent IDC983F5C63DA0DF0D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Gabriela%20Montero/Bach%20And%20Beyond/01%20Jesu%20Joy%20Of%20Man's%20Desiring%20(From%20Cantata%20BWV%20147).mp3 - File Folder Count4 - Library Folder Count1 - - 10616 - - Track ID10616 - NameIII. Presto from Italian Concerto, BWV 971 - ArtistGabriela Montero - Album ArtistGabriela Montero - ComposerJohann Sebastian Bach - AlbumBach And Beyond - GenreClassical - KindMPEG audio file - Size4163551 - Total Time153965 - Disc Number1 - Disc Count1 - Track Number2 - Track Count15 - Year2006 - Date Modified2012-08-22T03:01:18Z - Date Added2012-08-22T03:42:45Z - Bit Rate204 - Sample Rate44100 - CommentsAmazon.com Song ID: 201980465 - Play Count4 - Play Date3429249253 - Play Date UTC2012-08-31T03:44:13Z - Artwork Count1 - Persistent ID50D9E6311CF52AF3 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Gabriela%20Montero/Bach%20And%20Beyond/02%20III.%20Presto%20from%20Italian%20Concerto,%20BWV%20971.mp3 - File Folder Count4 - Library Folder Count1 - - 10618 - - Track ID10618 - NameBeyond Bach - ArtistGabriela Montero - Album ArtistGabriela Montero - ComposerGabriela Montero - AlbumBach And Beyond - GenreClassical - KindMPEG audio file - Size5828826 - Total Time263340 - Disc Number1 - Disc Count1 - Track Number3 - Track Count15 - Year2006 - Date Modified2012-08-22T03:07:43Z - Date Added2012-08-22T03:42:45Z - Bit Rate170 - Sample Rate44100 - CommentsAmazon.com Song ID: 201980467 - Play Count2 - Play Date3428649110 - Play Date UTC2012-08-24T05:01:50Z - Artwork Count1 - Persistent ID0ECC93C096434957 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Gabriela%20Montero/Bach%20And%20Beyond/03%20Beyond%20Bach.mp3 - File Folder Count4 - Library Folder Count1 - - 10620 - - Track ID10620 - NameAir In G (From Suite No.3 In D Major BWV 1068) - ArtistGabriela Montero - Album ArtistGabriela Montero - ComposerJohann Sebastian Bach - AlbumBach And Beyond - GenreClassical - KindMPEG audio file - Size5226938 - Total Time209319 - Disc Number1 - Disc Count1 - Track Number4 - Track Count15 - Year2006 - Date Modified2012-08-22T03:00:41Z - Date Added2012-08-22T03:42:45Z - Bit Rate191 - Sample Rate44100 - CommentsAmazon.com Song ID: 201980469 - Play Count3 - Play Date3428649319 - Play Date UTC2012-08-24T05:05:19Z - Artwork Count1 - Persistent IDA036490FCFCA56A4 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Gabriela%20Montero/Bach%20And%20Beyond/04%20Air%20In%20G%20(From%20Suite%20No.3%20In%20D%20Major%20BWV%201068).mp3 - File Folder Count4 - Library Folder Count1 - - 10622 - - Track ID10622 - NameAria (From Goldberg Variations BWV 988) - ArtistGabriela Montero - Album ArtistGabriela Montero - ComposerJohann Sebastian Bach - AlbumBach And Beyond - GenreClassical - KindMPEG audio file - Size10492858 - Total Time456881 - Disc Number1 - Disc Count1 - Track Number5 - Track Count15 - Year2006 - Date Modified2012-08-22T03:02:49Z - Date Added2012-08-22T03:42:45Z - Bit Rate179 - Sample Rate44100 - CommentsAmazon.com Song ID: 201980471 - Play Count2 - Play Date3428475058 - Play Date UTC2012-08-22T04:40:58Z - Artwork Count1 - Persistent ID8644264C64F177E1 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Gabriela%20Montero/Bach%20And%20Beyond/05%20Aria%20(From%20Goldberg%20Variations%20BWV%20988).mp3 - File Folder Count4 - Library Folder Count1 - - 10624 - - Track ID10624 - NameViolin Concerto In E (Movement 2 - Adagio BWV 1042) - ArtistGabriela Montero - Album ArtistGabriela Montero - ComposerJohann Sebastian Bach - AlbumBach And Beyond - GenreClassical - KindMPEG audio file - Size6514581 - Total Time301453 - Disc Number1 - Disc Count1 - Track Number6 - Track Count15 - Year2006 - Date Modified2012-08-22T03:00:14Z - Date Added2012-08-22T03:42:45Z - Bit Rate167 - Sample Rate44100 - CommentsAmazon.com Song ID: 201980473 - Play Count2 - Play Date3428475360 - Play Date UTC2012-08-22T04:46:00Z - Artwork Count1 - Persistent IDEF322FC58B0EC8D5 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Gabriela%20Montero/Bach%20And%20Beyond/06%20Violin%20Concerto%20In%20E%20(Movement%202%20-%20Adagio%20BWV%201042).mp3 - File Folder Count4 - Library Folder Count1 - - 10626 - - Track ID10626 - NamePrelude In C (From The Well Tempered Clavier BWV 846) - ArtistGabriela Montero - Album ArtistGabriela Montero - ComposerJohann Sebastian Bach - AlbumBach And Beyond - GenreClassical - KindMPEG audio file - Size6069986 - Total Time258272 - Disc Number1 - Disc Count1 - Track Number7 - Track Count15 - Year2006 - Date Modified2012-08-22T03:03:53Z - Date Added2012-08-22T03:42:45Z - Bit Rate181 - Sample Rate44100 - CommentsAmazon.com Song ID: 201980477 - Play Count1 - Play Date3428475618 - Play Date UTC2012-08-22T04:50:18Z - Artwork Count1 - Persistent ID1ACEEA74808C6B52 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Gabriela%20Montero/Bach%20And%20Beyond/07%20Prelude%20In%20C%20(From%20The%20Well%20Tempered%20Clavier%20BWV%20846).mp3 - File Folder Count4 - Library Folder Count1 - - 10628 - - Track ID10628 - NameSheep May Safely Graze (From Cantata BWV 208) - ArtistGabriela Montero - Album ArtistGabriela Montero - ComposerJohann Sebastian Bach - AlbumBach And Beyond - GenreClassical - KindMPEG audio file - Size5136949 - Total Time226142 - Disc Number1 - Disc Count1 - Track Number8 - Track Count15 - Year2006 - Date Modified2012-08-22T03:07:12Z - Date Added2012-08-22T03:42:45Z - Bit Rate173 - Sample Rate44100 - CommentsAmazon.com Song ID: 201980481 - Play Count2 - Play Date3429636142 - Play Date UTC2012-09-04T15:12:22Z - Artwork Count1 - Persistent ID481E3F843B0C8352 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Gabriela%20Montero/Bach%20And%20Beyond/08%20Sheep%20May%20Safely%20Graze%20(From%20Cantata%20BWV%20208).mp3 - File Folder Count4 - Library Folder Count1 - - 10630 - - Track ID10630 - Name2 Part Invention In D Minor (No.4 BWV 775) - ArtistGabriela Montero - Album ArtistGabriela Montero - ComposerJohann Sebastian Bach - AlbumBach And Beyond - GenreClassical - KindMPEG audio file - Size4098241 - Total Time160130 - Disc Number1 - Disc Count1 - Track Number9 - Track Count15 - Year2006 - Date Modified2012-08-22T03:08:18Z - Date Added2012-08-22T03:42:45Z - Bit Rate193 - Sample Rate44100 - CommentsAmazon.com Song ID: 201980483 - Play Count2 - Play Date3428819277 - Play Date UTC2012-08-26T04:17:57Z - Artwork Count1 - Persistent IDECDBCFB9F645FB56 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Gabriela%20Montero/Bach%20And%20Beyond/09%202%20Part%20Invention%20In%20D%20Minor%20(No.4%20BWV%20775).mp3 - File Folder Count4 - Library Folder Count1 - - 10632 - - Track ID10632 - NameBrandenburg Concerto No.3 (Movement 3 - Allegro BWV 1048) - ArtistGabriela Montero - Album ArtistGabriela Montero - ComposerJohann Sebastian Bach - AlbumBach And Beyond - GenreClassical - KindMPEG audio file - Size9347111 - Total Time363363 - Disc Number1 - Disc Count1 - Track Number10 - Track Count15 - Year2006 - Date Modified2012-08-22T02:59:35Z - Date Added2012-08-22T03:42:46Z - Bit Rate200 - Sample Rate44100 - CommentsAmazon.com Song ID: 201980484 - Artwork Count1 - Persistent ID5537A92E50DD3A99 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Gabriela%20Montero/Bach%20And%20Beyond/10%20Brandenburg%20Concerto%20No.3%20(Movement%203%20-%20Allegro%20BWV%201048).mp3 - File Folder Count4 - Library Folder Count1 - - 10634 - - Track ID10634 - NameKeyboard Concerto In D Minor (Movement 2 - Adagio BWV 974) - ArtistGabriela Montero - Album ArtistGabriela Montero - ComposerJohann Sebastian Bach - AlbumBach And Beyond - GenreClassical - KindMPEG audio file - Size8361104 - Total Time383373 - Disc Number1 - Disc Count1 - Track Number11 - Track Count15 - Year2006 - Date Modified2012-08-22T03:01:58Z - Date Added2012-08-22T03:42:46Z - Bit Rate169 - Sample Rate44100 - CommentsAmazon.com Song ID: 201980486 - Artwork Count1 - Persistent IDFB1C0EEB138DE178 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Gabriela%20Montero/Bach%20And%20Beyond/11%20Keyboard%20Concerto%20In%20D%20Minor%20(Movement%202%20-%20Adagio%20BWV%20974).mp3 - File Folder Count4 - Library Folder Count1 - - 10636 - - Track ID10636 - NameToccata In D Minor (BWV 556) - ArtistGabriela Montero - Album ArtistGabriela Montero - ComposerJohann Sebastian Bach - AlbumBach And Beyond - GenreClassical - KindMPEG audio file - Size5342363 - Total Time191346 - Disc Number1 - Disc Count1 - Track Number12 - Track Count15 - Year2006 - Date Modified2012-08-22T03:11:18Z - Date Added2012-08-22T03:42:46Z - Bit Rate214 - Sample Rate44100 - CommentsAmazon.com Song ID: 201980487 - Artwork Count1 - Persistent IDF01FDBA03ACDAA0D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Gabriela%20Montero/Bach%20And%20Beyond/12%20Toccata%20In%20D%20Minor%20(BWV%20556).mp3 - File Folder Count4 - Library Folder Count1 - - 10638 - - Track ID10638 - NameSuite No.2, BWV 1067: Rondo - ArtistGabriela Montero - Album ArtistGabriela Montero - ComposerJohann Sebastian Bach - AlbumBach And Beyond - GenreClassical - KindMPEG audio file - Size6664113 - Total Time260806 - Disc Number1 - Disc Count1 - Track Number13 - Track Count15 - Year2006 - Date Modified2012-08-22T03:10:43Z - Date Added2012-08-22T03:42:46Z - Bit Rate197 - Sample Rate44100 - CommentsAmazon.com Song ID: 201980489 - Artwork Count1 - Persistent ID0347C3BD189ED8BB - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Gabriela%20Montero/Bach%20And%20Beyond/13%20Suite%20No.2,%20BWV%201067_%20Rondo.mp3 - File Folder Count4 - Library Folder Count1 - - 10640 - - Track ID10640 - NameAnna Magdalena Songbook - ArtistGabriela Montero - Album ArtistGabriela Montero - ComposerJohann Sebastian Bach - AlbumBach And Beyond - GenreClassical - KindMPEG audio file - Size6945479 - Total Time258821 - Disc Number1 - Disc Count1 - Track Number14 - Track Count15 - Year2006 - Date Modified2012-08-22T03:03:24Z - Date Added2012-08-22T03:42:46Z - Bit Rate207 - Sample Rate44100 - CommentsAmazon.com Song ID: 201980491 - Artwork Count1 - Persistent ID84700AD7E2E74F21 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Gabriela%20Montero/Bach%20And%20Beyond/14%20Anna%20Magdalena%20Songbook.mp3 - File Folder Count4 - Library Folder Count1 - - 10642 - - Track ID10642 - NameChaconne (From Violin Partita In D Minor BWV 1004) - ArtistGabriela Montero - Album ArtistGabriela Montero - ComposerJohann Sebastian Bach - AlbumBach And Beyond - GenreClassical - KindMPEG audio file - Size7958898 - Total Time297900 - Disc Number1 - Disc Count1 - Track Number15 - Track Count15 - Year2006 - Date Modified2012-08-22T03:09:46Z - Date Added2012-08-22T03:42:46Z - Bit Rate207 - Sample Rate44100 - CommentsAmazon.com Song ID: 201980493 - Artwork Count1 - Persistent IDA1841BD93A29C267 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Gabriela%20Montero/Bach%20And%20Beyond/15%20Chaconne%20(From%20Violin%20Partita%20In%20D%20Minor%20BWV%201004).mp3 - File Folder Count4 - Library Folder Count1 - - 10644 - - Track ID10644 - NameAngel - ArtistMassive Attack - Album ArtistMassive Attack - ComposerRobert Del Naja - AlbumMezzanine - GenreRap & Hip-Hop - KindMPEG audio file - Size11245978 - Total Time379324 - Disc Number1 - Disc Count1 - Track Number1 - Track Count11 - Year2006 - Date Modified2012-08-22T03:14:44Z - Date Added2012-08-22T03:42:46Z - Bit Rate233 - Sample Rate44100 - CommentsAmazon.com Song ID: 202078697 - Play Count1 - Play Date3482848188 - Play Date UTC2014-05-13T12:19:48Z - Artwork Count1 - Persistent ID30A4D4CA7A641B2E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Massive%20Attack/Mezzanine/01%20Angel.mp3 - File Folder Count4 - Library Folder Count1 - - 10646 - - Track ID10646 - NameRisingson - ArtistMassive Attack - Album ArtistMassive Attack - ComposerRobert Del Naja - AlbumMezzanine - GenreRap & Hip-Hop - KindMPEG audio file - Size8874569 - Total Time298866 - Disc Number1 - Disc Count1 - Track Number2 - Track Count11 - Year2006 - Date Modified2012-08-22T03:29:05Z - Date Added2012-08-22T03:42:46Z - Bit Rate232 - Sample Rate44100 - CommentsAmazon.com Song ID: 202078704 - Artwork Count1 - Persistent ID55B4B7FC2D4D0D63 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Massive%20Attack/Mezzanine/02%20Risingson.mp3 - File Folder Count4 - Library Folder Count1 - - 10648 - - Track ID10648 - NameTeardrop - ArtistMassive Attack - Album ArtistMassive Attack - ComposerLiz Fraser - AlbumMezzanine - GenreRap & Hip-Hop - KindMPEG audio file - Size8732624 - Total Time330814 - Disc Number1 - Disc Count1 - Track Number3 - Track Count11 - Year2006 - Date Modified2012-08-22T03:12:13Z - Date Added2012-08-22T03:42:46Z - Bit Rate206 - Sample Rate44100 - CommentsAmazon.com Song ID: 202078712 - Play Count4 - Play Date3453390595 - Play Date UTC2013-06-06T13:39:55Z - Skip Count2 - Skip Date2014-05-13T12:13:28Z - Artwork Count1 - Persistent ID764997BE2CD075BA - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Massive%20Attack/Mezzanine/03%20Teardrop.mp3 - File Folder Count4 - Library Folder Count1 - - 10650 - - Track ID10650 - NameInertia Creeps - ArtistMassive Attack - Album ArtistMassive Attack - ComposerRobert Del Naja - AlbumMezzanine - GenreRap & Hip-Hop - KindMPEG audio file - Size10557998 - Total Time357198 - Disc Number1 - Disc Count1 - Track Number4 - Track Count11 - Year2006 - Date Modified2012-08-22T03:19:56Z - Date Added2012-08-22T03:42:46Z - Bit Rate232 - Sample Rate44100 - CommentsAmazon.com Song ID: 202078713 - Play Count2 - Play Date3453391353 - Play Date UTC2013-06-06T13:52:33Z - Skip Count1 - Skip Date2013-01-20T15:48:28Z - Artwork Count1 - Persistent ID972A6772373A1EF3 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Massive%20Attack/Mezzanine/04%20Inertia%20Creeps.mp3 - File Folder Count4 - Library Folder Count1 - - 10652 - - Track ID10652 - NameExchange - ArtistMassive Attack - Album ArtistMassive Attack - ComposerBob Hilliard - AlbumMezzanine - GenreRap & Hip-Hop - KindMPEG audio file - Size6866927 - Total Time251245 - Disc Number1 - Disc Count1 - Track Number5 - Track Count11 - Year2006 - Date Modified2012-08-22T03:28:22Z - Date Added2012-08-22T03:42:46Z - Bit Rate213 - Sample Rate44100 - CommentsAmazon.com Song ID: 202078714 - Play Count1 - Play Date3433569163 - Play Date UTC2012-10-20T03:42:43Z - Artwork Count1 - Persistent IDE22216B86C967A34 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Massive%20Attack/Mezzanine/05%20Exchange.mp3 - File Folder Count4 - Library Folder Count1 - - 10654 - - Track ID10654 - NameDissolved Girl - ArtistMassive Attack - Album ArtistMassive Attack - ComposerRobert Del Naja - AlbumMezzanine - GenreRap & Hip-Hop - KindMPEG audio file - Size10652102 - Total Time366942 - Disc Number1 - Disc Count1 - Track Number6 - Track Count11 - Year2006 - Date Modified2012-08-22T03:24:29Z - Date Added2012-08-22T03:42:46Z - Bit Rate228 - Sample Rate44100 - CommentsAmazon.com Song ID: 202078715 - Artwork Count1 - Persistent ID6A760C8BA60F8295 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Massive%20Attack/Mezzanine/06%20Dissolved%20Girl.mp3 - File Folder Count4 - Library Folder Count1 - - 10656 - - Track ID10656 - NameMan Next Door - ArtistMassive Attack - Album ArtistMassive Attack - ComposerTyrone Evans - AlbumMezzanine - GenreRap & Hip-Hop - KindMPEG audio file - Size8577820 - Total Time356153 - Disc Number1 - Disc Count1 - Track Number7 - Track Count11 - Year2006 - Date Modified2012-08-22T03:21:01Z - Date Added2012-08-22T03:42:46Z - Bit Rate188 - Sample Rate44100 - CommentsAmazon.com Song ID: 202078716 - Artwork Count1 - Persistent ID5749641639167638 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Massive%20Attack/Mezzanine/07%20Man%20Next%20Door.mp3 - File Folder Count4 - Library Folder Count1 - - 10658 - - Track ID10658 - NameBlack Milk - ArtistMassive Attack - Album ArtistMassive Attack - ComposerLiz Fraser - AlbumMezzanine - GenreRap & Hip-Hop - KindMPEG audio file - Size10130774 - Total Time381727 - Disc Number1 - Disc Count1 - Track Number8 - Track Count11 - Year2006 - Date Modified2012-08-22T03:16:54Z - Date Added2012-08-22T03:42:46Z - Bit Rate208 - Sample Rate44100 - CommentsAmazon.com Song ID: 202078717 - Artwork Count1 - Persistent IDD66FFE585940E534 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Massive%20Attack/Mezzanine/08%20Black%20Milk.mp3 - File Folder Count4 - Library Folder Count1 - - 10660 - - Track ID10660 - NameMezzanine - ArtistMassive Attack - Album ArtistMassive Attack - ComposerRobert Del Naja - AlbumMezzanine - GenreRap & Hip-Hop - KindMPEG audio file - Size9651552 - Total Time356858 - Disc Number1 - Disc Count1 - Track Number9 - Track Count11 - Year2006 - Date Modified2012-08-22T03:18:39Z - Date Added2012-08-22T03:42:47Z - Bit Rate212 - Sample Rate44100 - CommentsAmazon.com Song ID: 202078718 - Artwork Count1 - Persistent ID71A69D6B31CF45EB - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Massive%20Attack/Mezzanine/09%20Mezzanine.mp3 - File Folder Count4 - Library Folder Count1 - - 10662 - - Track ID10662 - NameGroup Four - ArtistMassive Attack - Album ArtistMassive Attack - ComposerLiz Fraser - AlbumMezzanine - GenreRap & Hip-Hop - KindMPEG audio file - Size14872027 - Total Time492329 - Disc Number1 - Disc Count1 - Track Number10 - Track Count11 - Year2006 - Date Modified2012-08-22T03:27:45Z - Date Added2012-08-22T03:42:47Z - Bit Rate238 - Sample Rate44100 - CommentsAmazon.com Song ID: 202078719 - Artwork Count1 - Persistent IDEDFE48644EDF754D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Massive%20Attack/Mezzanine/10%20Group%20Four.mp3 - File Folder Count4 - Library Folder Count1 - - 10664 - - Track ID10664 - Name(Exchange) - ArtistMassive Attack - Album ArtistMassive Attack - ComposerBob Hilliard - AlbumMezzanine - GenreRap & Hip-Hop - KindMPEG audio file - Size6805284 - Total Time250906 - Disc Number1 - Disc Count1 - Track Number11 - Track Count11 - Year2006 - Date Modified2012-08-22T03:21:51Z - Date Added2012-08-22T03:42:47Z - Bit Rate211 - Sample Rate44100 - CommentsAmazon.com Song ID: 202078720 - Artwork Count1 - Persistent ID233C223155861C4B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Massive%20Attack/Mezzanine/11%20(Exchange).mp3 - File Folder Count4 - Library Folder Count1 - - 10666 - - Track ID10666 - NameMysterons - ArtistPortishead - Album ArtistPortishead - ComposerGeoff Barrow - AlbumDummy - GenrePop - KindMPEG audio file - Size9903112 - Total Time306259 - Disc Number1 - Disc Count1 - Track Number1 - Track Count11 - Year1994 - Date Modified2012-08-22T03:35:25Z - Date Added2012-08-22T03:42:47Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202640613 - Play Count1 - Play Date3428494843 - Play Date UTC2012-08-22T10:10:43Z - Skip Count1 - Skip Date2014-01-12T15:49:34Z - Artwork Count1 - Persistent IDF798EC4F2580E57C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Portishead/Dummy/01%20Mysterons.mp3 - File Folder Count4 - Library Folder Count1 - - 10668 - - Track ID10668 - NameSour Times - ArtistPortishead - Album ArtistPortishead - ComposerHenry Roscoe Brooks - AlbumDummy - GenrePop - KindMPEG audio file - Size8232127 - Total Time254040 - Disc Number1 - Disc Count1 - Track Number2 - Track Count11 - Year1994 - Date Modified2012-08-22T03:36:04Z - Date Added2012-08-22T03:42:47Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202640614 - Play Count4 - Play Date3472406629 - Play Date UTC2014-01-12T15:53:49Z - Skip Count1 - Skip Date2014-05-16T15:46:00Z - Artwork Count1 - Persistent ID84EFA4AA42D4DD03 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Portishead/Dummy/02%20Sour%20Times.mp3 - File Folder Count4 - Library Folder Count1 - - 10670 - - Track ID10670 - NameStrangers - ArtistPortishead - Album ArtistPortishead - ComposerGeoff Barrow - AlbumDummy - GenrePop - KindMPEG audio file - Size7720529 - Total Time238053 - Disc Number1 - Disc Count1 - Track Number3 - Track Count11 - Year1994 - Date Modified2012-08-22T03:34:23Z - Date Added2012-08-22T03:42:47Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202640615 - Play Count1 - Play Date3430642081 - Play Date UTC2012-09-16T06:38:01Z - Artwork Count1 - Persistent IDCC690F8F4C0B1725 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Portishead/Dummy/03%20Strangers.mp3 - File Folder Count4 - Library Folder Count1 - - 10672 - - Track ID10672 - NameIt Could Be Sweet - ArtistPortishead - Album ArtistPortishead - ComposerGeoff Barrow - AlbumDummy - GenrePop - KindMPEG audio file - Size8423552 - Total Time260022 - Disc Number1 - Disc Count1 - Track Number4 - Track Count11 - Year1994 - Date Modified2012-08-22T03:32:42Z - Date Added2012-08-22T03:42:47Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202640616 - Play Count1 - Play Date3430642341 - Play Date UTC2012-09-16T06:42:21Z - Artwork Count1 - Persistent ID22BDA9B65E78AD24 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Portishead/Dummy/04%20It%20Could%20Be%20Sweet.mp3 - File Folder Count4 - Library Folder Count1 - - 10674 - - Track ID10674 - NameWandering Star - ArtistPortishead - Album ArtistPortishead - ComposerCharles William Miller - AlbumDummy - GenrePop - KindMPEG audio file - Size9511932 - Total Time294034 - Disc Number1 - Disc Count1 - Track Number5 - Track Count11 - Year1994 - Date Modified2012-08-22T03:32:02Z - Date Added2012-08-22T03:42:47Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202640617 - Play Count1 - Play Date3430642635 - Play Date UTC2012-09-16T06:47:15Z - Artwork Count1 - Persistent IDB78212ADE6EF7DF1 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Portishead/Dummy/05%20Wandering%20Star.mp3 - File Folder Count4 - Library Folder Count1 - - 10676 - - Track ID10676 - NameIt's A Fire - ArtistPortishead - Album ArtistPortishead - ComposerGeoff Barrow - AlbumDummy - GenreRock - KindMPEG audio file - Size7442174 - Total Time229355 - Disc Number1 - Disc Count1 - Track Number6 - Track Count11 - Year1994 - Date Modified2012-08-22T03:30:19Z - Date Added2012-08-22T03:42:47Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202640618 - Play Count1 - Play Date3430642864 - Play Date UTC2012-09-16T06:51:04Z - Artwork Count1 - Persistent ID2E19ADB87CE82984 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Portishead/Dummy/06%20It's%20A%20Fire.mp3 - File Folder Count4 - Library Folder Count1 - - 10678 - - Track ID10678 - NameNumb - ArtistPortishead - Album ArtistPortishead - ComposerGeoff Barrow - AlbumDummy - GenrePop - KindMPEG audio file - Size7719683 - Total Time238027 - Disc Number1 - Disc Count1 - Track Number7 - Track Count11 - Year1994 - Date Modified2012-08-22T03:37:31Z - Date Added2012-08-22T03:42:47Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202640619 - Play Count1 - Play Date3430643102 - Play Date UTC2012-09-16T06:55:02Z - Artwork Count1 - Persistent IDEF7F62FA2E047E63 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Portishead/Dummy/07%20Numb.mp3 - File Folder Count4 - Library Folder Count1 - - 10680 - - Track ID10680 - NameRoads - ArtistPortishead - Album ArtistPortishead - ComposerGeoff Barrow - AlbumDummy - GenrePop - KindMPEG audio file - Size9869667 - Total Time305214 - Disc Number1 - Disc Count1 - Track Number8 - Track Count11 - Year1994 - Date Modified2012-08-22T03:33:34Z - Date Added2012-08-22T03:42:47Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202640620 - Play Count1 - Play Date3430643407 - Play Date UTC2012-09-16T07:00:07Z - Artwork Count1 - Persistent ID94A2ECA6CDF65A9C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Portishead/Dummy/08%20Roads.mp3 - File Folder Count4 - Library Folder Count1 - - 10682 - - Track ID10682 - NamePedestal - ArtistPortishead - Album ArtistPortishead - ComposerGeoff Barrow - AlbumDummy - GenrePop - KindMPEG audio file - Size7176344 - Total Time221048 - Disc Number1 - Disc Count1 - Track Number9 - Track Count11 - Year1994 - Date Modified2012-08-22T03:29:44Z - Date Added2012-08-22T03:42:47Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202640621 - Play Count1 - Play Date3430643628 - Play Date UTC2012-09-16T07:03:48Z - Artwork Count1 - Persistent ID09EA65E8C18487A1 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Portishead/Dummy/09%20Pedestal.mp3 - File Folder Count4 - Library Folder Count1 - - 10684 - - Track ID10684 - NameBiscuit - ArtistPortishead - Album ArtistPortishead - ComposerGeoff Barrow - AlbumDummy - GenrePop - KindMPEG audio file - Size9836236 - Total Time304169 - Disc Number1 - Disc Count1 - Track Number10 - Track Count11 - Year1994 - Date Modified2012-08-22T03:36:53Z - Date Added2012-08-22T03:42:47Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202640622 - Play Count1 - Play Date3430643932 - Play Date UTC2012-09-16T07:08:52Z - Artwork Count1 - Persistent ID76610A9E4CB58E42 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Portishead/Dummy/10%20Biscuit.mp3 - File Folder Count4 - Library Folder Count1 - - 10686 - - Track ID10686 - NameGlory Box - ArtistPortishead - Album ArtistPortishead - ComposerGeoff Barrow - AlbumDummy - GenrePop - KindMPEG audio file - Size9882216 - Total Time305606 - Disc Number1 - Disc Count1 - Track Number11 - Track Count11 - Year1994 - Date Modified2012-08-22T03:31:14Z - Date Added2012-08-22T03:42:47Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202640623 - Play Count1 - Play Date3430644238 - Play Date UTC2012-09-16T07:13:58Z - Artwork Count1 - Persistent ID2DCFD7B1271B59C7 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Portishead/Dummy/11%20Glory%20Box.mp3 - File Folder Count4 - Library Folder Count1 - - 10688 - - Track ID10688 - NameVaralandu (Raga: Gurjari; Tala: Adi) - ArtistP. Unnikrishnan - ComposerThyagaraja - AlbumAanandam - GenreTraditional - KindAAC audio file - Size7826646 - Total Time231226 - Disc Number1 - Disc Count1 - Track Number1 - Track Count8 - Year1997 - Date Modified2012-08-25T02:38:37Z - Date Added2012-08-25T02:31:35Z - Bit Rate256 - Sample Rate44100 - Normalization2027 - Artwork Count1 - Persistent ID8555BE9CC9EE276A - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/P.%20Unnikrishnan/Aanandam/01%20Varalandu%20(Raga_%20Gurjari%3B%20Tala_%20Adi).m4a - File Folder Count4 - Library Folder Count1 - - 10690 - - Track ID10690 - NameNee Irangaayanil (Unni) (Raga: Ataana; Tala: Adi) - ArtistP. Unnikrishnan - ComposerPapanasam Sivan - AlbumAanandam - GenreTraditional - KindAAC audio file - Size12637967 - Total Time378506 - Disc Number1 - Disc Count1 - Track Number2 - Track Count8 - Year1997 - Date Modified2012-08-25T02:38:38Z - Date Added2012-08-25T02:31:57Z - Bit Rate256 - Sample Rate44100 - Normalization2343 - Artwork Count1 - Persistent ID780C36AF09E6E57E - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/P.%20Unnikrishnan/Aanandam/02%20Nee%20Irangaayanil%20(Unni)%20(Raga_%20Ataana%3B%20Tala_%20Adi).m4a - File Folder Count4 - Library Folder Count1 - - 10692 - - Track ID10692 - NameUnnai Allaal (Unni) (Raga: Simhendra Madhyamam; Tala: Adi) - ArtistP. Unnikrishnan - ComposerKoteeswara Iyer - AlbumAanandam - GenreTraditional - KindAAC audio file - Size34560845 - Total Time1042426 - Disc Number1 - Disc Count1 - Track Number3 - Track Count8 - Year1997 - Date Modified2012-08-25T02:38:38Z - Date Added2012-08-25T02:32:28Z - Bit Rate256 - Sample Rate44100 - Normalization1469 - Artwork Count1 - Persistent ID59D03CC393046EBF - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/P.%20Unnikrishnan/Aanandam/03%20Unnai%20Allaal%20(Unni)%20(Raga_%20Simhendra%20Madhyamam%3B%20Tala_%20Adi).m4a - File Folder Count4 - Library Folder Count1 - - 10694 - - Track ID10694 - NameNannubrovu (Unni) (Raga: Lalitha; Tala: Misra Chapu) - ArtistP. Unnikrishnan - ComposerSyama Sastri - AlbumAanandam - GenreTraditional - KindAAC audio file - Size20936378 - Total Time628173 - Disc Number1 - Disc Count1 - Track Number4 - Track Count8 - Year1997 - Date Modified2012-08-25T02:38:40Z - Date Added2012-08-25T02:33:38Z - Bit Rate256 - Sample Rate44100 - Normalization1253 - Artwork Count1 - Persistent ID07959A33E6DD7A6B - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/P.%20Unnikrishnan/Aanandam/04%20Nannubrovu%20(Unni)%20(Raga_%20Lalitha%3B%20Tala_%20Misra%20Chapu).m4a - File Folder Count4 - Library Folder Count1 - - 10696 - - Track ID10696 - NamePankajaaksha (Raga: Thodi; Tala: Rupakam) - ArtistP. Unnikrishnan - ComposerSwathi Thirunal - AlbumAanandam - GenreTraditional - KindAAC audio file - Size38949156 - Total Time1173533 - Disc Number1 - Disc Count1 - Track Number5 - Track Count8 - Year1997 - Date Modified2012-08-25T02:38:41Z - Date Added2012-08-25T02:34:14Z - Bit Rate256 - Sample Rate44100 - Normalization1253 - Artwork Count1 - Persistent ID5F5273ECBD32CA73 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/P.%20Unnikrishnan/Aanandam/05%20Pankajaaksha%20(Raga_%20Thodi%3B%20Tala_%20Rupakam).m4a - File Folder Count4 - Library Folder Count1 - - 10698 - - Track ID10698 - NameKrishnam Kalaya (C-606) (Raga: Mand; Tala: Adi) - ArtistP. Unnikrishnan - ComposerNarayana Theerthar - AlbumAanandam - GenreTraditional - KindAAC audio file - Size6550330 - Total Time195960 - Disc Number1 - Disc Count1 - Track Number6 - Track Count8 - Year1997 - Date Modified2012-08-25T02:38:41Z - Date Added2012-08-25T02:35:24Z - Bit Rate256 - Sample Rate44100 - Normalization1929 - Artwork Count1 - Persistent IDD93439C271C8177F - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/P.%20Unnikrishnan/Aanandam/06%20Krishnam%20Kalaya%20(C-606)%20(Raga_%20Mand%3B%20Tala_%20Adi).m4a - File Folder Count4 - Library Folder Count1 - - 10700 - - Track ID10700 - NameKandu Nee Sollavendum (Raga: Sindhu Bhairavi; Tala: Adi) - ArtistP. Unnikrishnan - ComposerKrishnaiah - AlbumAanandam - GenreTraditional - KindAAC audio file - Size15659993 - Total Time467200 - Disc Number1 - Disc Count1 - Track Number7 - Track Count8 - Year1997 - Date Modified2012-08-25T02:38:42Z - Date Added2012-08-25T02:35:43Z - Bit Rate256 - Sample Rate44100 - Normalization1931 - Artwork Count1 - Persistent ID3F762C68264ABC04 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/P.%20Unnikrishnan/Aanandam/07%20Kandu%20Nee%20Sollavendum%20(Raga_%20Sindhu%20Bhairavi%3B%20Tala_%20Adi).m4a - File Folder Count4 - Library Folder Count1 - - 10702 - - Track ID10702 - NameThillana (Unni) (Raga: Chenchuruti; Tala: Adi) - ArtistP. Unnikrishnan - ComposerVeena Seshanna - AlbumAanandam - GenreTraditional - KindAAC audio file - Size7886850 - Total Time232040 - Disc Number1 - Disc Count1 - Track Number8 - Track Count8 - Year1997 - Date Modified2012-08-25T02:38:42Z - Date Added2012-08-25T02:36:22Z - Bit Rate256 - Sample Rate44100 - Normalization3278 - Artwork Count1 - Persistent ID3C357B666AC092F7 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/P.%20Unnikrishnan/Aanandam/08%20Thillana%20(Unni)%20(Raga_%20Chenchuruti%3B%20Tala_%20Adi).m4a - File Folder Count4 - Library Folder Count1 - - 10706 - - Track ID10706 - Nameks - KindWAV audio file - Size176444 - Total Time2000 - Date Modified2012-09-17T15:19:14Z - Date Added2012-09-22T02:16:52Z - Bit Rate705 - Sample Rate44100 - Play Count1 - Play Date3431144815 - Play Date UTC2012-09-22T02:16:55Z - Persistent ID5E92950D61316E89 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Unknown%20Artist/Unknown%20Album/ks.wav - File Folder Count4 - Library Folder Count1 - - 10738 - - Track ID10738 - Name12000hz - KindWAV audio file - Size44226 - Total Time500 - Date Modified1998-02-10T20:17:36Z - Date Added2012-11-16T12:04:40Z - Bit Rate705 - Sample Rate44100 - Play Count2 - Play Date3435932093 - Play Date UTC2012-11-16T12:04:53Z - Persistent ID2CA657BF49DB5E8A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Unknown%20Artist/Unknown%20Album/12000hz.wav - File Folder Count4 - Library Folder Count1 - - 10740 - - Track ID10740 - Name1 Allegro Moderato - ArtistArthur Grumiaux Violin/Eva Czako Cello/Georges Janzer Viola - ComposerFranz Composer/Schubert - AlbumSchubert Complete Trios - GenreClassical - KindMPEG audio file - Size13395103 - Total Time334419 - Year1994 - Date Modified2012-12-08T03:11:21Z - Date Added2012-12-08T03:15:56Z - Bit Rate320 - Sample Rate44100 - Play Count1 - Play Date3437805821 - Play Date UTC2012-12-08T04:33:41Z - Artwork Count1 - Persistent ID2833D35B6C3DC975 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Arthur%20Grumiaux%20Violin_Eva%20Czako%20Cello_Georges%20Janzer%20Viola/Schubert%20Complete%20Trios/1%20Allegro%20Moderato.mp3 - File Folder Count4 - Library Folder Count1 - - 10742 - - Track ID10742 - Name1 Allegro Moderato - ArtistBeaux Arts Trio Ensemble/Bernard Greenhouse Cello/Daniel Guilet Violin/Menahem Pressler Piano - ComposerFranz Composer/Schubert - AlbumSchubert Complete Trios - GenreClassical - KindMPEG audio file - Size25790702 - Total Time644310 - Year1994 - Date Modified2012-12-08T03:10:49Z - Date Added2012-12-08T03:15:56Z - Bit Rate320 - Sample Rate44100 - Skip Count1 - Skip Date2013-07-25T04:12:31Z - Artwork Count1 - Persistent IDD92C341E4B8D0EC2 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Beaux%20Arts%20Trio%20Ensemble_Bernard%20Greenhouse%20Cello_Daniel%20Guilet%20Violin_Menahem%20Pressler%20Piano/Schubert%20Complete%20Trios/1%20Allegro%20Moderato.mp3 - File Folder Count4 - Library Folder Count1 - - 10744 - - Track ID10744 - Name1 Allegro - ArtistArthur Grumiaux Violin/Eva Czako Cello/Georges Janzer Viola - ComposerFranz Composer/Schubert - AlbumSchubert Complete Trios - GenreClassical - KindMPEG audio file - Size20088982 - Total Time501760 - Year1994 - Date Modified2012-12-08T03:12:33Z - Date Added2012-12-08T03:15:56Z - Bit Rate320 - Sample Rate44100 - Play Count2 - Play Date3437824482 - Play Date UTC2012-12-08T09:44:42Z - Artwork Count1 - Persistent ID269E624DE4DE6C09 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Arthur%20Grumiaux%20Violin_Eva%20Czako%20Cello_Georges%20Janzer%20Viola/Schubert%20Complete%20Trios/1%20Allegro.mp3 - File Folder Count4 - Library Folder Count1 - - 10746 - - Track ID10746 - Name1 Allegro - ArtistBeaux Arts Trio Ensemble/Bernard Greenhouse Cello/Daniel Guilet Violin/Menahem Pressler Piano - ComposerFranz Composer/Schubert - AlbumSchubert Complete Trios - GenreClassical - KindMPEG audio file - Size30414053 - Total Time759875 - Year1994 - Date Modified2012-12-08T03:06:11Z - Date Added2012-12-08T03:15:56Z - Bit Rate320 - Sample Rate44100 - Artwork Count1 - Persistent ID22C0DF9BBF670AF5 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Beaux%20Arts%20Trio%20Ensemble_Bernard%20Greenhouse%20Cello_Daniel%20Guilet%20Violin_Menahem%20Pressler%20Piano/Schubert%20Complete%20Trios/1%20Allegro.mp3 - File Folder Count4 - Library Folder Count1 - - 10748 - - Track ID10748 - Name2 Andante Con Moto - ArtistBeaux Arts Trio Ensemble/Bernard Greenhouse Cello/Daniel Guilet Violin/Menahem Pressler Piano - ComposerFranz Composer/Schubert - AlbumSchubert Complete Trios - GenreClassical - KindMPEG audio file - Size21477614 - Total Time536476 - Year1994 - Date Modified2012-12-08T03:07:55Z - Date Added2012-12-08T03:15:56Z - Bit Rate320 - Sample Rate44100 - Artwork Count1 - Persistent ID4254001EC6143685 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Beaux%20Arts%20Trio%20Ensemble_Bernard%20Greenhouse%20Cello_Daniel%20Guilet%20Violin_Menahem%20Pressler%20Piano/Schubert%20Complete%20Trios/2%20Andante%20Con%20Moto.mp3 - File Folder Count4 - Library Folder Count1 - - 10750 - - Track ID10750 - Name2 Andante Un Poco Mosso - ArtistBeaux Arts Trio Ensemble/Bernard Greenhouse Cello/Daniel Guilet Violin/Menahem Pressler Piano - ComposerFranz Composer/Schubert - AlbumSchubert Complete Trios - GenreClassical - KindMPEG audio file - Size24228038 - Total Time605231 - Year1994 - Date Modified2012-12-08T03:04:54Z - Date Added2012-12-08T03:15:56Z - Bit Rate320 - Sample Rate44100 - Artwork Count1 - Persistent ID56EDE0DF9691A469 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Beaux%20Arts%20Trio%20Ensemble_Bernard%20Greenhouse%20Cello_Daniel%20Guilet%20Violin_Menahem%20Pressler%20Piano/Schubert%20Complete%20Trios/2%20Andante%20Un%20Poco%20Mosso.mp3 - File Folder Count4 - Library Folder Count1 - - 10752 - - Track ID10752 - Name2 Andante - ArtistArthur Grumiaux Violin/Eva Czako Cello/Georges Janzer Viola - ComposerFranz Composer/Schubert - AlbumSchubert Complete Trios - GenreClassical - KindMPEG audio file - Size12174486 - Total Time303908 - Year1994 - Date Modified2012-12-08T03:05:50Z - Date Added2012-12-08T03:15:56Z - Bit Rate320 - Sample Rate44100 - Play Count1 - Play Date3437806124 - Play Date UTC2012-12-08T04:38:44Z - Artwork Count1 - Persistent IDF5B28BD255D6693C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Arthur%20Grumiaux%20Violin_Eva%20Czako%20Cello_Georges%20Janzer%20Viola/Schubert%20Complete%20Trios/2%20Andante.mp3 - File Folder Count4 - Library Folder Count1 - - 10754 - - Track ID10754 - Name3 Menuetto Allegretto - ArtistArthur Grumiaux Violin/Eva Czako Cello/Georges Janzer Viola - ComposerFranz Composer/Schubert - AlbumSchubert Complete Trios - GenreClassical - KindMPEG audio file - Size9619618 - Total Time240013 - Year1994 - Date Modified2012-12-08T03:10:24Z - Date Added2012-12-08T03:15:56Z - Bit Rate320 - Sample Rate44100 - Artwork Count1 - Persistent IDEC3789394B1B9985 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Arthur%20Grumiaux%20Violin_Eva%20Czako%20Cello_Georges%20Janzer%20Viola/Schubert%20Complete%20Trios/3%20Menuetto%20Allegretto.mp3 - File Folder Count4 - Library Folder Count1 - - 10756 - - Track ID10756 - Name3 Scherzo Allegro Moderato Trio - ArtistBeaux Arts Trio Ensemble/Bernard Greenhouse Cello/Daniel Guilet Violin/Menahem Pressler Piano - ComposerFranz Composer/Schubert - AlbumSchubert Complete Trios - GenreClassical - KindMPEG audio file - Size16652494 - Total Time415843 - Year1994 - Date Modified2012-12-08T03:08:59Z - Date Added2012-12-08T03:15:57Z - Bit Rate320 - Sample Rate44100 - Artwork Count1 - Persistent ID146B8899A9A08028 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Beaux%20Arts%20Trio%20Ensemble_Bernard%20Greenhouse%20Cello_Daniel%20Guilet%20Violin_Menahem%20Pressler%20Piano/Schubert%20Complete%20Trios/3%20Scherzo%20Allegro%20Moderato%20Trio.mp3 - File Folder Count4 - Library Folder Count1 - - 10758 - - Track ID10758 - Name3 Scherzo Allegro - ArtistBeaux Arts Trio Ensemble/Bernard Greenhouse Cello/Daniel Guilet Violin/Menahem Pressler Piano - ComposerFranz Composer/Schubert - AlbumSchubert Complete Trios - GenreClassical - KindMPEG audio file - Size14771392 - Total Time368822 - Year1994 - Date Modified2012-12-08T03:12:11Z - Date Added2012-12-08T03:15:57Z - Bit Rate320 - Sample Rate44100 - Artwork Count1 - Persistent ID5297A28BF3A6A623 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Beaux%20Arts%20Trio%20Ensemble_Bernard%20Greenhouse%20Cello_Daniel%20Guilet%20Violin_Menahem%20Pressler%20Piano/Schubert%20Complete%20Trios/3%20Scherzo%20Allegro.mp3 - File Folder Count4 - Library Folder Count1 - - 10760 - - Track ID10760 - Name4 Allegro Moderato - ArtistBeaux Arts Trio Ensemble/Bernard Greenhouse Cello/Daniel Guilet Violin/Menahem Pressler Piano - ComposerFranz Composer/Schubert - AlbumSchubert Complete Trios - GenreClassical - KindMPEG audio file - Size30264558 - Total Time756140 - Year1994 - Date Modified2012-12-08T03:03:52Z - Date Added2012-12-08T03:15:57Z - Bit Rate320 - Sample Rate44100 - Artwork Count1 - Persistent IDF0A882555F73D8D7 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Beaux%20Arts%20Trio%20Ensemble_Bernard%20Greenhouse%20Cello_Daniel%20Guilet%20Violin_Menahem%20Pressler%20Piano/Schubert%20Complete%20Trios/4%20Allegro%20Moderato.mp3 - File Folder Count4 - Library Folder Count1 - - 10762 - - Track ID10762 - Name4 Rondo Allegretto - ArtistArthur Grumiaux Violin/Eva Czako Cello/Georges Janzer Viola - ComposerFranz Composer/Schubert - AlbumSchubert Complete Trios - GenreClassical - KindMPEG audio file - Size13861068 - Total Time346070 - Year1994 - Date Modified2012-12-08T03:12:57Z - Date Added2012-12-08T03:15:57Z - Bit Rate320 - Sample Rate44100 - Artwork Count1 - Persistent ID0CF4D806B0EE3865 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Arthur%20Grumiaux%20Violin_Eva%20Czako%20Cello_Georges%20Janzer%20Viola/Schubert%20Complete%20Trios/4%20Rondo%20Allegretto.mp3 - File Folder Count4 - Library Folder Count1 - - 10764 - - Track ID10764 - Name4 Rondo Allegro Vivace - ArtistBeaux Arts Trio Ensemble/Bernard Greenhouse Cello/Daniel Guilet Violin/Menahem Pressler Piano - ComposerFranz Composer/Schubert - AlbumSchubert Complete Trios - GenreClassical - KindMPEG audio file - Size20932850 - Total Time522866 - Year1994 - Date Modified2012-12-08T03:03:07Z - Date Added2012-12-08T03:15:57Z - Bit Rate320 - Sample Rate44100 - Artwork Count1 - Persistent ID28C2638CB742DC3D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Beaux%20Arts%20Trio%20Ensemble_Bernard%20Greenhouse%20Cello_Daniel%20Guilet%20Violin_Menahem%20Pressler%20Piano/Schubert%20Complete%20Trios/4%20Rondo%20Allegro%20Vivace.mp3 - File Folder Count4 - Library Folder Count1 - - 10766 - - Track ID10766 - NameAdagio In E Flat Op Posth 148 D 897 Notturno - ArtistBeaux Arts Trio Ensemble/Bernard Greenhouse Cello/Daniel Guilet Violin/Menahem Pressler Piano - ComposerFranz Composer/Schubert - AlbumSchubert Complete Trios - GenreClassical - KindMPEG audio file - Size31186184 - Total Time779180 - Year1994 - Date Modified2012-12-08T03:09:46Z - Date Added2012-12-08T03:15:57Z - Bit Rate320 - Sample Rate44100 - Play Count1 - Play Date3437806923 - Play Date UTC2012-12-08T04:52:03Z - Artwork Count1 - Persistent ID8DEC0D1278647AB9 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Beaux%20Arts%20Trio%20Ensemble_Bernard%20Greenhouse%20Cello_Daniel%20Guilet%20Violin_Menahem%20Pressler%20Piano/Schubert%20Complete%20Trios/Adagio%20In%20E%20Flat%20Op%20Posth%20148%20D%20897%20Notturno.mp3 - File Folder Count4 - Library Folder Count1 - - 10768 - - Track ID10768 - NamePiano Trio In One Movement In B Flat D 28 Sonata Allegro - ArtistBeaux Arts Trio Ensemble/Bernard Greenhouse Cello/Daniel Guilet Violin/Menahem Pressler Piano - ComposerFranz Composer/Schubert - AlbumSchubert Complete Trios - GenreClassical - KindMPEG audio file - Size20273383 - Total Time506357 - Year1994 - Date Modified2012-12-08T03:07:21Z - Date Added2012-12-08T03:15:58Z - Bit Rate320 - Sample Rate44100 - Artwork Count1 - Persistent IDDB0C447F6D56E9F0 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Beaux%20Arts%20Trio%20Ensemble_Bernard%20Greenhouse%20Cello_Daniel%20Guilet%20Violin_Menahem%20Pressler%20Piano/Schubert%20Complete%20Trios/Piano%20Trio%20In%20One%20Movement%20In%20B%20Flat%20D%2028%20Sonata%20Allegro.mp3 - File Folder Count4 - Library Folder Count1 - - 10770 - - Track ID10770 - NameChannels And Winds - ArtistMadras/Pandit Ravi Shankar/Partha Sarathy/T Srinivasan - ComposerPandit Ravi Shankar/Philip Glass - AlbumPassages - GenreWorld Music - KindMPEG audio file - Size19259169 - Total Time480914 - Year2005 - Date Modified2012-12-14T10:35:39Z - Date Added2012-12-14T10:38:25Z - Bit Rate320 - Sample Rate44100 - Artwork Count1 - Persistent IDF973AB9524E0271F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Madras_Pandit%20Ravi%20Shankar_Partha%20Sarathy_T%20Srinivasan/Passages/Channels%20And%20Winds.mp3 - File Folder Count4 - Library Folder Count1 - - 10772 - - Track ID10772 - NameMeetings Along The Edge - ArtistMadras/Pandit Ravi Shankar/Partha Sarathy/T Srinivasan - ComposerPandit Ravi Shankar/Philip Glass - AlbumPassages - GenreWorld Music - KindMPEG audio file - Size19588888 - Total Time489168 - Year2005 - Date Modified2012-12-14T10:34:17Z - Date Added2012-12-14T10:38:25Z - Bit Rate320 - Sample Rate44100 - Artwork Count1 - Persistent ID9D9A08791E4575E4 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Madras_Pandit%20Ravi%20Shankar_Partha%20Sarathy_T%20Srinivasan/Passages/Meetings%20Along%20The%20Edge.mp3 - File Folder Count4 - Library Folder Count1 - - 10774 - - Track ID10774 - NameOffering - ArtistMadras/Pandit Ravi Shankar/Partha Sarathy/T Srinivasan - ComposerPandit Ravi Shankar/Philip Glass - AlbumPassages - GenreWorld Music - KindMPEG audio file - Size23296791 - Total Time581851 - Year2005 - Date Modified2012-12-14T10:37:17Z - Date Added2012-12-14T10:38:25Z - Bit Rate320 - Sample Rate44100 - Play Count1 - Play Date3438348060 - Play Date UTC2012-12-14T11:11:00Z - Skip Count1 - Skip Date2013-07-25T04:23:55Z - Artwork Count1 - Persistent ID605537B716B4A408 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Madras_Pandit%20Ravi%20Shankar_Partha%20Sarathy_T%20Srinivasan/Passages/Offering.mp3 - File Folder Count4 - Library Folder Count1 - - 10776 - - Track ID10776 - NamePrashanti - ArtistMadras/Pandit Ravi Shankar/Partha Sarathy/T Srinivasan - ComposerPandit Ravi Shankar/Philip Glass - AlbumPassages - GenreWorld Music - KindMPEG audio file - Size32857880 - Total Time820897 - Year2005 - Date Modified2012-12-14T10:34:25Z - Date Added2012-12-14T10:38:25Z - Bit Rate320 - Sample Rate44100 - Play Count1 - Play Date3438347478 - Play Date UTC2012-12-14T11:01:18Z - Artwork Count1 - Persistent ID424F6992D22C5BF9 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Madras_Pandit%20Ravi%20Shankar_Partha%20Sarathy_T%20Srinivasan/Passages/Prashanti.mp3 - File Folder Count4 - Library Folder Count1 - - 10778 - - Track ID10778 - NameSadhanipa - ArtistMadras/Pandit Ravi Shankar/Partha Sarathy/T Srinivasan - ComposerPandit Ravi Shankar/Philip Glass - AlbumPassages - GenreWorld Music - KindMPEG audio file - Size20655896 - Total Time515840 - Year2005 - Date Modified2012-12-14T10:36:23Z - Date Added2012-12-14T10:38:25Z - Bit Rate320 - Sample Rate44100 - Play Count1 - Play Date3438346657 - Play Date UTC2012-12-14T10:47:37Z - Artwork Count1 - Persistent IDB00042D861F9D504 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Madras_Pandit%20Ravi%20Shankar_Partha%20Sarathy_T%20Srinivasan/Passages/Sadhanipa.mp3 - File Folder Count4 - Library Folder Count1 - - 10782 - - Track ID10782 - NameRagas In Minor Scale - ArtistPandit Ravi Shankar - ComposerPhilip Glass - AlbumBridges The Best Of The Private Music Recordings - GenreWorld Music - KindMPEG audio file - Size18308158 - Total Time457038 - Year2005 - Date Modified2012-12-14T10:32:56Z - Date Added2012-12-14T10:41:19Z - Bit Rate320 - Sample Rate44100 - Artwork Count1 - Persistent ID1A57BB950F7E7F83 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pandit%20Ravi%20Shankar/Bridges%20The%20Best%20Of%20The%20Private%20Music%20Recordings/Ragas%20In%20Minor%20Scale.mp3 - File Folder Count4 - Library Folder Count1 - - 10784 - - Track ID10784 - NameFinding the Balance - ArtistKevin MacLeod - AlbumRoyalty Free - KindMPEG audio file - Size8324362 - Total Time208056 - Year2010 - BPM75 - Date Modified2012-12-22T06:34:46Z - Date Added2012-12-22T06:32:37Z - Bit Rate320 - Sample Rate48000 - CommentsThe beginning is calm with the Middle Eastern dudek playing the melody. As the electronic elements melt into the dudek and the plucked strings, the groove is established. Just into the third minute the melody changes to beautiful and touching, but returns - Normalization1259 - Persistent IDCDBA311C8F251427 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kevin%20MacLeod/Royalty%20Free/Finding%20the%20Balance.mp3 - File Folder Count4 - Library Folder Count1 - - 10788 - - Track ID10788 - NameRising - ArtistKevin MacLeod - ComposerKevin MacLeod - AlbumRoyalty Free - GenreTV & Film - KindMPEG audio file - Size6061587 - Total Time151484 - Year2010 - BPM84 - Date Modified2012-12-22T08:51:00Z - Date Added2012-12-25T04:17:42Z - Bit Rate320 - Sample Rate44100 - Normalization1259 - Persistent ID3B8679BE81716213 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kevin%20MacLeod/Royalty%20Free/Rising.mp3 - File Folder Count4 - Library Folder Count1 - - 10790 - - Track ID10790 - NamePadanaya Blokov - ArtistKevin MacLeod - ComposerKevin MacLeod - AlbumVideoClassica - KindMPEG audio file - Size5198348 - Total Time127686 - Year2009 - BPM126 - Date Modified2012-12-29T02:56:52Z - Date Added2012-12-29T02:56:58Z - Bit Rate320 - Sample Rate44100 - Normalization1298 - Artwork Count1 - Persistent IDA420244BB3AE6A60 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kevin%20MacLeod/VideoClassica/Padanaya%20Blokov.mp3 - File Folder Count4 - Library Folder Count1 - - 10832 - - Track ID10832 - NameAdhitya Hrudyam - ArtistK J Yesudas - ComposerIlayaraja - AlbumSindhu Bairavi - KindMPEG audio file - Size2559072 - Total Time63451 - Year1985 - Date Modified2013-01-08T07:16:58Z - Date Added2013-01-14T03:11:27Z - Bit Rate320 - Sample Rate44100 - Artwork Count1 - Persistent IDE750225908DFDFD4 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/K%20J%20Yesudas/Sindhu%20Bairavi/Adhitya%20Hrudyam.mp3 - File Folder Count4 - Library Folder Count1 - - 10834 - - Track ID10834 - NameKalaivani - ArtistK J Yesudas - ComposerIlayaraja - AlbumSindhu Bairavi - KindMPEG audio file - Size9202797 - Total Time229564 - Year1985 - Date Modified2013-01-08T07:16:15Z - Date Added2013-01-14T03:11:27Z - Bit Rate320 - Sample Rate44100 - Artwork Count1 - Persistent ID1F037864E8DE0EC2 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/K%20J%20Yesudas/Sindhu%20Bairavi/Kalaivani.mp3 - File Folder Count4 - Library Folder Count1 - - 10836 - - Track ID10836 - NameLochana - ArtistK J Yesudas - ComposerIlayaraja - AlbumSindhu Bairavi - KindMPEG audio file - Size5166168 - Total Time128653 - Year1985 - Date Modified2013-01-08T07:14:59Z - Date Added2013-01-14T03:11:27Z - Bit Rate320 - Sample Rate44100 - Artwork Count1 - Persistent ID0E8204DCAE64BE56 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/K%20J%20Yesudas/Sindhu%20Bairavi/Lochana.mp3 - File Folder Count4 - Library Folder Count1 - - 10838 - - Track ID10838 - NameMahaganapathim - ArtistK J Yesudas - ComposerIlayaraja - AlbumSindhu Bairavi - KindMPEG audio file - Size10952799 - Total Time273293 - Year1985 - Date Modified2013-01-08T07:17:42Z - Date Added2013-01-14T03:11:27Z - Bit Rate320 - Sample Rate44100 - Artwork Count1 - Persistent ID9840D23C53246F17 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/K%20J%20Yesudas/Sindhu%20Bairavi/Mahaganapathim.mp3 - File Folder Count4 - Library Folder Count1 - - 10840 - - Track ID10840 - NameManathil Urudhi Vendum - ArtistK J Yesudas - ComposerIlayaraja - AlbumSindhu Bairavi - KindMPEG audio file - Size3513454 - Total Time87327 - Year1985 - Date Modified2013-01-08T07:15:23Z - Date Added2013-01-14T03:11:27Z - Bit Rate320 - Sample Rate44100 - Artwork Count1 - Persistent ID4222E21A7810EF93 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/K%20J%20Yesudas/Sindhu%20Bairavi/Manathil%20Urudhi%20Vendum.mp3 - File Folder Count4 - Library Folder Count1 - - 10842 - - Track ID10842 - NameMari Mari - ArtistK J Yesudas - ComposerIlayaraja - AlbumSindhu Bairavi - KindMPEG audio file - Size6744169 - Total Time168097 - Year1985 - Date Modified2013-01-08T07:15:14Z - Date Added2013-01-14T03:11:27Z - Bit Rate320 - Sample Rate44100 - Artwork Count1 - Persistent ID74B78341BD190583 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/K%20J%20Yesudas/Sindhu%20Bairavi/Mari%20Mari.mp3 - File Folder Count4 - Library Folder Count1 - - 10844 - - Track ID10844 - NameMoham Enum - ArtistK J Yesudas - ComposerIlayaraja - AlbumSindhu Bairavi - KindMPEG audio file - Size5878894 - Total Time146468 - Year1985 - Date Modified2013-01-08T07:15:44Z - Date Added2013-01-14T03:11:27Z - Bit Rate320 - Sample Rate44100 - Artwork Count1 - Persistent IDC594CF7A72750158 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/K%20J%20Yesudas/Sindhu%20Bairavi/Moham%20Enum.mp3 - File Folder Count4 - Library Folder Count1 - - 10846 - - Track ID10846 - NameNanoru Sindhu - ArtistChitra - ComposerIlayaraja - AlbumSindhu Bairavi - KindMPEG audio file - Size10592364 - Total Time264306 - Year1985 - Date Modified2013-01-08T07:18:20Z - Date Added2013-01-14T03:11:27Z - Bit Rate320 - Sample Rate44100 - Skip Count1 - Skip Date2013-01-16T06:29:45Z - Artwork Count1 - Persistent ID16981BE7F3B0F27A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chitra/Sindhu%20Bairavi/Nanoru%20Sindhu.mp3 - File Folder Count4 - Library Folder Count1 - - 10848 - - Track ID10848 - NameNee Daya Radha - ArtistK J Yesudas - ComposerIlayaraja - AlbumSindhu Bairavi - KindMPEG audio file - Size6854771 - Total Time170866 - Year1985 - Date Modified2013-01-08T07:18:14Z - Date Added2013-01-14T03:11:27Z - Bit Rate320 - Sample Rate44100 - Artwork Count1 - Persistent ID119EA8CC5BA52FA0 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/K%20J%20Yesudas/Sindhu%20Bairavi/Nee%20Daya%20Radha.mp3 - File Folder Count4 - Library Folder Count1 - - 10850 - - Track ID10850 - NamePadariyen Padippariyen - ArtistChitra - ComposerIlayaraja - AlbumSindhu Bairavi - KindMPEG audio file - Size11440245 - Total Time285492 - Year1985 - Date Modified2013-01-08T07:16:47Z - Date Added2013-01-14T03:11:27Z - Bit Rate320 - Sample Rate44100 - Artwork Count1 - Persistent ID8A50200E93FF0AD8 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Chitra/Sindhu%20Bairavi/Padariyen%20Padippariyen.mp3 - File Folder Count4 - Library Folder Count1 - - 10852 - - Track ID10852 - NamePoo Malai - ArtistK J Yesudas - ComposerIlayaraja - AlbumSindhu Bairavi - KindMPEG audio file - Size10849389 - Total Time270733 - Year1985 - Date Modified2013-01-08T07:17:28Z - Date Added2013-01-14T03:11:27Z - Bit Rate320 - Sample Rate44100 - Artwork Count1 - Persistent ID1BA13BF5FE3E226A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/K%20J%20Yesudas/Sindhu%20Bairavi/Poo%20Malai.mp3 - File Folder Count4 - Library Folder Count1 - - 10854 - - Track ID10854 - NameThanneer Thotti - ArtistK J Yesudas - ComposerIlayaraja - AlbumSindhu Bairavi - KindMPEG audio file - Size11186286 - Total Time279144 - Year1985 - Date Modified2013-01-08T07:21:36Z - Date Added2013-01-14T03:11:27Z - Bit Rate320 - Sample Rate44100 - Skip Count1 - Skip Date2013-01-14T03:22:14Z - Artwork Count1 - Persistent IDB53F16F3A5D0275A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/K%20J%20Yesudas/Sindhu%20Bairavi/Thanneer%20Thotti.mp3 - File Folder Count4 - Library Folder Count1 - - 10856 - - Track ID10856 - NameAnandi - ArtistAnwar Khurshid / Aruna Kalle / Cardinal Vaughan Memorial School / Chris Bleth / Courtney Grueschow / Evergreen Club Contemporary Gamelan / Jatinder Jeetu / Jeetu Prakesh / Mychael Danna / Rajesh Srinivasan / Thomas Fetherstonhaugh / Ulhas Bapat / V Selvag - AlbumLife Of Pi - GenreClassical - KindMPEG audio file - Size2237022 - Total Time55457 - Year2012 - Date Modified2013-01-14T03:20:28Z - Date Added2013-01-14T03:21:05Z - Bit Rate320 - Sample Rate44100 - Artwork Count1 - Persistent ID06230E666E4120D9 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Anwar%20Khurshid%20_%20Aruna%20Kalle%20_%20Cardinal%20Vaughan%20Memorial%20School%20_%20Chris%20Bleth%20_%20Courtney%20Grueschow%20_%20Evergreen%20Club%20Contemporary%20Gamelan%20_%20Jatinder%20Jeetu%20_%20Jeetu%20Prakesh%20_%20Mychael%20Danna%20_%20Rajesh%20Srinivasan%20_%20Thomas%20Fetherstonhaugh%20_%20Ulhas%20Bapat%20_%20V%20Selv/Life%20Of%20Pi/Anandi.mp3 - File Folder Count4 - Library Folder Count1 - - 10858 - - Track ID10858 - NameAppa's Lesson - ArtistAnwar Khurshid / Aruna Kalle / Cardinal Vaughan Memorial School / Chris Bleth / Courtney Grueschow / Evergreen Club Contemporary Gamelan / Jatinder Jeetu / Jeetu Prakesh / Mychael Danna / Rajesh Srinivasan / Thomas Fetherstonhaugh / Ulhas Bapat / V Selvag - AlbumLife Of Pi - GenreClassical - KindMPEG audio file - Size2702009 - Total Time67082 - Year2012 - Date Modified2013-01-14T03:19:47Z - Date Added2013-01-14T03:21:05Z - Bit Rate320 - Sample Rate44100 - Artwork Count1 - Persistent ID4AFC1A849E7D960E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Anwar%20Khurshid%20_%20Aruna%20Kalle%20_%20Cardinal%20Vaughan%20Memorial%20School%20_%20Chris%20Bleth%20_%20Courtney%20Grueschow%20_%20Evergreen%20Club%20Contemporary%20Gamelan%20_%20Jatinder%20Jeetu%20_%20Jeetu%20Prakesh%20_%20Mychael%20Danna%20_%20Rajesh%20Srinivasan%20_%20Thomas%20Fetherstonhaugh%20_%20Ulhas%20Bapat%20_%20V%20Selv/Life%20Of%20Pi/Appa's%20Lesson.mp3 - File Folder Count4 - Library Folder Count1 - - 10860 - - Track ID10860 - NameBack To The World - ArtistAnwar Khurshid / Aruna Kalle / Cardinal Vaughan Memorial School / Chris Bleth / Courtney Grueschow / Evergreen Club Contemporary Gamelan / Jatinder Jeetu / Jeetu Prakesh / Mychael Danna / Rajesh Srinivasan / Thomas Fetherstonhaugh / Ulhas Bapat / V Selvag - AlbumLife Of Pi - GenreClassical - KindMPEG audio file - Size20048364 - Total Time500741 - Year2012 - Date Modified2013-01-14T03:18:44Z - Date Added2013-01-14T03:21:05Z - Bit Rate320 - Sample Rate44100 - Artwork Count1 - Persistent IDB307E85B60158CCD - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Anwar%20Khurshid%20_%20Aruna%20Kalle%20_%20Cardinal%20Vaughan%20Memorial%20School%20_%20Chris%20Bleth%20_%20Courtney%20Grueschow%20_%20Evergreen%20Club%20Contemporary%20Gamelan%20_%20Jatinder%20Jeetu%20_%20Jeetu%20Prakesh%20_%20Mychael%20Danna%20_%20Rajesh%20Srinivasan%20_%20Thomas%20Fetherstonhaugh%20_%20Ulhas%20Bapat%20_%20V%20Selv/Life%20Of%20Pi/Back%20To%20The%20World.mp3 - File Folder Count4 - Library Folder Count1 - - 10862 - - Track ID10862 - NameChrist In The Mountains - ArtistAnwar Khurshid / Aruna Kalle / Cardinal Vaughan Memorial School / Chris Bleth / Courtney Grueschow / Evergreen Club Contemporary Gamelan / Jatinder Jeetu / Jeetu Prakesh / Mychael Danna / Rajesh Srinivasan / Thomas Fetherstonhaugh / Ulhas Bapat / V Selvag - AlbumLife Of Pi - GenreClassical - KindMPEG audio file - Size2949659 - Total Time73273 - Year2012 - Date Modified2013-01-14T03:18:55Z - Date Added2013-01-14T03:21:05Z - Bit Rate320 - Sample Rate44100 - Artwork Count1 - Persistent IDAFB861AF47B043AB - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Anwar%20Khurshid%20_%20Aruna%20Kalle%20_%20Cardinal%20Vaughan%20Memorial%20School%20_%20Chris%20Bleth%20_%20Courtney%20Grueschow%20_%20Evergreen%20Club%20Contemporary%20Gamelan%20_%20Jatinder%20Jeetu%20_%20Jeetu%20Prakesh%20_%20Mychael%20Danna%20_%20Rajesh%20Srinivasan%20_%20Thomas%20Fetherstonhaugh%20_%20Ulhas%20Bapat%20_%20V%20Selv/Life%20Of%20Pi/Christ%20In%20The%20Mountains.mp3 - File Folder Count4 - Library Folder Count1 - - 10864 - - Track ID10864 - NameDeath Of The Zebra - ArtistAnwar Khurshid / Aruna Kalle / Cardinal Vaughan Memorial School / Chris Bleth / Courtney Grueschow / Evergreen Club Contemporary Gamelan / Jatinder Jeetu / Jeetu Prakesh / Mychael Danna / Rajesh Srinivasan / Thomas Fetherstonhaugh / Ulhas Bapat / V Selvag - AlbumLife Of Pi - GenreClassical - KindMPEG audio file - Size1373948 - Total Time33880 - Year2012 - Date Modified2013-01-14T03:19:58Z - Date Added2013-01-14T03:21:05Z - Bit Rate320 - Sample Rate44100 - Play Count1 - Play Date3441036194 - Play Date UTC2013-01-14T13:53:14Z - Artwork Count1 - Persistent ID64C718B2CA7CDEE2 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Anwar%20Khurshid%20_%20Aruna%20Kalle%20_%20Cardinal%20Vaughan%20Memorial%20School%20_%20Chris%20Bleth%20_%20Courtney%20Grueschow%20_%20Evergreen%20Club%20Contemporary%20Gamelan%20_%20Jatinder%20Jeetu%20_%20Jeetu%20Prakesh%20_%20Mychael%20Danna%20_%20Rajesh%20Srinivasan%20_%20Thomas%20Fetherstonhaugh%20_%20Ulhas%20Bapat%20_%20V%20Selv/Life%20Of%20Pi/Death%20Of%20The%20Zebra.mp3 - File Folder Count4 - Library Folder Count1 - - 10866 - - Track ID10866 - NameFirst Night First Day - ArtistAnwar Khurshid / Aruna Kalle / Cardinal Vaughan Memorial School / Chris Bleth / Courtney Grueschow / Evergreen Club Contemporary Gamelan / Jatinder Jeetu / Jeetu Prakesh / Mychael Danna / Rajesh Srinivasan / Thomas Fetherstonhaugh / Ulhas Bapat / V Selvag - AlbumLife Of Pi - GenreClassical - KindMPEG audio file - Size9039323 - Total Time225515 - Year2012 - Date Modified2013-01-14T03:18:53Z - Date Added2013-01-14T03:21:05Z - Bit Rate320 - Sample Rate44100 - Artwork Count1 - Persistent ID5044152E84C52B91 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Anwar%20Khurshid%20_%20Aruna%20Kalle%20_%20Cardinal%20Vaughan%20Memorial%20School%20_%20Chris%20Bleth%20_%20Courtney%20Grueschow%20_%20Evergreen%20Club%20Contemporary%20Gamelan%20_%20Jatinder%20Jeetu%20_%20Jeetu%20Prakesh%20_%20Mychael%20Danna%20_%20Rajesh%20Srinivasan%20_%20Thomas%20Fetherstonhaugh%20_%20Ulhas%20Bapat%20_%20V%20Selv/Life%20Of%20Pi/First%20Night%20First%20Day.mp3 - File Folder Count4 - Library Folder Count1 - - 10868 - - Track ID10868 - NameFlying Fish - ArtistAnwar Khurshid / Aruna Kalle / Cardinal Vaughan Memorial School / Chris Bleth / Courtney Grueschow / Evergreen Club Contemporary Gamelan / Jatinder Jeetu / Jeetu Prakesh / Mychael Danna / Rajesh Srinivasan / Thomas Fetherstonhaugh / Ulhas Bapat / V Selvag - AlbumLife Of Pi - GenreClassical - KindMPEG audio file - Size2021778 - Total Time50076 - Year2012 - Date Modified2013-01-14T03:14:58Z - Date Added2013-01-14T03:21:05Z - Bit Rate320 - Sample Rate44100 - Artwork Count1 - Persistent ID2364C738DEA1D25C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Anwar%20Khurshid%20_%20Aruna%20Kalle%20_%20Cardinal%20Vaughan%20Memorial%20School%20_%20Chris%20Bleth%20_%20Courtney%20Grueschow%20_%20Evergreen%20Club%20Contemporary%20Gamelan%20_%20Jatinder%20Jeetu%20_%20Jeetu%20Prakesh%20_%20Mychael%20Danna%20_%20Rajesh%20Srinivasan%20_%20Thomas%20Fetherstonhaugh%20_%20Ulhas%20Bapat%20_%20V%20Selv/Life%20Of%20Pi/Flying%20Fish.mp3 - File Folder Count4 - Library Folder Count1 - - 10870 - - Track ID10870 - NameGod Storm - ArtistAnwar Khurshid / Aruna Kalle / Cardinal Vaughan Memorial School / Chris Bleth / Courtney Grueschow / Evergreen Club Contemporary Gamelan / Jatinder Jeetu / Jeetu Prakesh / Mychael Danna / Rajesh Srinivasan / Thomas Fetherstonhaugh / Ulhas Bapat / V Selvag - AlbumLife Of Pi - GenreClassical - KindMPEG audio file - Size8917058 - Total Time222458 - Year2012 - Date Modified2013-01-14T03:16:15Z - Date Added2013-01-14T03:21:05Z - Bit Rate320 - Sample Rate44100 - Artwork Count1 - Persistent ID8D7350D31F1F9452 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Anwar%20Khurshid%20_%20Aruna%20Kalle%20_%20Cardinal%20Vaughan%20Memorial%20School%20_%20Chris%20Bleth%20_%20Courtney%20Grueschow%20_%20Evergreen%20Club%20Contemporary%20Gamelan%20_%20Jatinder%20Jeetu%20_%20Jeetu%20Prakesh%20_%20Mychael%20Danna%20_%20Rajesh%20Srinivasan%20_%20Thomas%20Fetherstonhaugh%20_%20Ulhas%20Bapat%20_%20V%20Selv/Life%20Of%20Pi/God%20Storm.mp3 - File Folder Count4 - Library Folder Count1 - - 10872 - - Track ID10872 - NameI'm Ready Now - ArtistAnwar Khurshid / Aruna Kalle / Cardinal Vaughan Memorial School / Chris Bleth / Courtney Grueschow / Evergreen Club Contemporary Gamelan / Jatinder Jeetu / Jeetu Prakesh / Mychael Danna / Rajesh Srinivasan / Thomas Fetherstonhaugh / Ulhas Bapat / V Selvag - AlbumLife Of Pi - GenreClassical - KindMPEG audio file - Size8075919 - Total Time201430 - Year2012 - Date Modified2013-01-14T03:18:00Z - Date Added2013-01-14T03:21:05Z - Bit Rate320 - Sample Rate44100 - Artwork Count1 - Persistent ID4DA45FCBE80AD152 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Anwar%20Khurshid%20_%20Aruna%20Kalle%20_%20Cardinal%20Vaughan%20Memorial%20School%20_%20Chris%20Bleth%20_%20Courtney%20Grueschow%20_%20Evergreen%20Club%20Contemporary%20Gamelan%20_%20Jatinder%20Jeetu%20_%20Jeetu%20Prakesh%20_%20Mychael%20Danna%20_%20Rajesh%20Srinivasan%20_%20Thomas%20Fetherstonhaugh%20_%20Ulhas%20Bapat%20_%20V%20Selv/Life%20Of%20Pi/I'm%20Ready%20Now.mp3 - File Folder Count4 - Library Folder Count1 - - 10874 - - Track ID10874 - NameLeaving India - ArtistAnwar Khurshid / Aruna Kalle / Cardinal Vaughan Memorial School / Chris Bleth / Courtney Grueschow / Evergreen Club Contemporary Gamelan / Jatinder Jeetu / Jeetu Prakesh / Mychael Danna / Rajesh Srinivasan / Thomas Fetherstonhaugh / Ulhas Bapat / V Selvag - AlbumLife Of Pi - GenreClassical - KindMPEG audio file - Size3247445 - Total Time80718 - Year2012 - Date Modified2013-01-14T03:20:26Z - Date Added2013-01-14T03:21:05Z - Bit Rate320 - Sample Rate44100 - Artwork Count1 - Persistent IDC4BD64BAD752C6AF - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Anwar%20Khurshid%20_%20Aruna%20Kalle%20_%20Cardinal%20Vaughan%20Memorial%20School%20_%20Chris%20Bleth%20_%20Courtney%20Grueschow%20_%20Evergreen%20Club%20Contemporary%20Gamelan%20_%20Jatinder%20Jeetu%20_%20Jeetu%20Prakesh%20_%20Mychael%20Danna%20_%20Rajesh%20Srinivasan%20_%20Thomas%20Fetherstonhaugh%20_%20Ulhas%20Bapat%20_%20V%20Selv/Life%20Of%20Pi/Leaving%20India.mp3 - File Folder Count4 - Library Folder Count1 - - 10876 - - Track ID10876 - NameMeeting Krishna - ArtistAnwar Khurshid / Aruna Kalle / Cardinal Vaughan Memorial School / Chris Bleth / Courtney Grueschow / Evergreen Club Contemporary Gamelan / Jatinder Jeetu / Jeetu Prakesh / Mychael Danna / Rajesh Srinivasan / Thomas Fetherstonhaugh / Ulhas Bapat / V Selvag - AlbumLife Of Pi - GenreClassical - KindMPEG audio file - Size4481472 - Total Time111568 - Year2012 - Date Modified2013-01-14T03:19:12Z - Date Added2013-01-14T03:21:05Z - Bit Rate320 - Sample Rate44100 - Artwork Count1 - Persistent IDFDDCCDD11736CD91 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Anwar%20Khurshid%20_%20Aruna%20Kalle%20_%20Cardinal%20Vaughan%20Memorial%20School%20_%20Chris%20Bleth%20_%20Courtney%20Grueschow%20_%20Evergreen%20Club%20Contemporary%20Gamelan%20_%20Jatinder%20Jeetu%20_%20Jeetu%20Prakesh%20_%20Mychael%20Danna%20_%20Rajesh%20Srinivasan%20_%20Thomas%20Fetherstonhaugh%20_%20Ulhas%20Bapat%20_%20V%20Selv/Life%20Of%20Pi/Meeting%20Krishna.mp3 - File Folder Count4 - Library Folder Count1 - - 10878 - - Track ID10878 - NameOrphans - ArtistAnwar Khurshid / Aruna Kalle / Cardinal Vaughan Memorial School / Chris Bleth / Courtney Grueschow / Evergreen Club Contemporary Gamelan / Jatinder Jeetu / Jeetu Prakesh / Mychael Danna / Rajesh Srinivasan / Thomas Fetherstonhaugh / Ulhas Bapat / V Selvag - AlbumLife Of Pi - GenreClassical - KindMPEG audio file - Size3878558 - Total Time96496 - Year2012 - Date Modified2013-01-14T03:15:01Z - Date Added2013-01-14T03:21:05Z - Bit Rate320 - Sample Rate44100 - Artwork Count1 - Persistent ID76526C0BB6E3CCDD - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Anwar%20Khurshid%20_%20Aruna%20Kalle%20_%20Cardinal%20Vaughan%20Memorial%20School%20_%20Chris%20Bleth%20_%20Courtney%20Grueschow%20_%20Evergreen%20Club%20Contemporary%20Gamelan%20_%20Jatinder%20Jeetu%20_%20Jeetu%20Prakesh%20_%20Mychael%20Danna%20_%20Rajesh%20Srinivasan%20_%20Thomas%20Fetherstonhaugh%20_%20Ulhas%20Bapat%20_%20V%20Selv/Life%20Of%20Pi/Orphans.mp3 - File Folder Count4 - Library Folder Count1 - - 10880 - - Track ID10880 - NamePi And Richard Parker - ArtistAnwar Khurshid / Aruna Kalle / Cardinal Vaughan Memorial School / Chris Bleth / Courtney Grueschow / Evergreen Club Contemporary Gamelan / Jatinder Jeetu / Jeetu Prakesh / Mychael Danna / Rajesh Srinivasan / Thomas Fetherstonhaugh / Ulhas Bapat / V Selvag - AlbumLife Of Pi - GenreClassical - KindMPEG audio file - Size5388449 - Total Time134243 - Year2012 - Date Modified2013-01-14T03:15:37Z - Date Added2013-01-14T03:21:05Z - Bit Rate320 - Sample Rate44100 - Artwork Count1 - Persistent IDF1419996F8793E3B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Anwar%20Khurshid%20_%20Aruna%20Kalle%20_%20Cardinal%20Vaughan%20Memorial%20School%20_%20Chris%20Bleth%20_%20Courtney%20Grueschow%20_%20Evergreen%20Club%20Contemporary%20Gamelan%20_%20Jatinder%20Jeetu%20_%20Jeetu%20Prakesh%20_%20Mychael%20Danna%20_%20Rajesh%20Srinivasan%20_%20Thomas%20Fetherstonhaugh%20_%20Ulhas%20Bapat%20_%20V%20Selv/Life%20Of%20Pi/Pi%20And%20Richard%20Parker.mp3 - File Folder Count4 - Library Folder Count1 - - 10882 - - Track ID10882 - NamePi's Lullaby - ArtistAnwar Khurshid / Aruna Kalle / Cardinal Vaughan Memorial School / Chris Bleth / Courtney Grueschow / Evergreen Club Contemporary Gamelan / Jatinder Jeetu / Jeetu Prakesh / Mychael Danna / Rajesh Srinivasan / Thomas Fetherstonhaugh / Ulhas Bapat / V Selvag - AlbumLife Of Pi - GenreClassical - KindMPEG audio file - Size8930644 - Total Time222798 - Year2012 - Date Modified2013-01-14T03:20:50Z - Date Added2013-01-14T03:21:05Z - Bit Rate320 - Sample Rate44100 - Play Count3 - Play Date3462766551 - Play Date UTC2013-09-23T02:05:51Z - Artwork Count1 - Persistent ID566F6E4DE27704C5 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Anwar%20Khurshid%20_%20Aruna%20Kalle%20_%20Cardinal%20Vaughan%20Memorial%20School%20_%20Chris%20Bleth%20_%20Courtney%20Grueschow%20_%20Evergreen%20Club%20Contemporary%20Gamelan%20_%20Jatinder%20Jeetu%20_%20Jeetu%20Prakesh%20_%20Mychael%20Danna%20_%20Rajesh%20Srinivasan%20_%20Thomas%20Fetherstonhaugh%20_%20Ulhas%20Bapat%20_%20V%20Selv/Life%20Of%20Pi/Pi's%20Lullaby.mp3 - File Folder Count4 - Library Folder Count1 - - 10884 - - Track ID10884 - NamePiscine Molitor Patel - ArtistAnwar Khurshid / Aruna Kalle / Cardinal Vaughan Memorial School / Chris Bleth / Courtney Grueschow / Evergreen Club Contemporary Gamelan / Jatinder Jeetu / Jeetu Prakesh / Mychael Danna / Rajesh Srinivasan / Thomas Fetherstonhaugh / Ulhas Bapat / V Selvag - AlbumLife Of Pi - GenreClassical - KindMPEG audio file - Size8801086 - Total Time219559 - Year2012 - Date Modified2013-01-14T03:19:48Z - Date Added2013-01-14T03:21:05Z - Bit Rate320 - Sample Rate44100 - Artwork Count1 - Persistent IDA034B3E191B00726 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Anwar%20Khurshid%20_%20Aruna%20Kalle%20_%20Cardinal%20Vaughan%20Memorial%20School%20_%20Chris%20Bleth%20_%20Courtney%20Grueschow%20_%20Evergreen%20Club%20Contemporary%20Gamelan%20_%20Jatinder%20Jeetu%20_%20Jeetu%20Prakesh%20_%20Mychael%20Danna%20_%20Rajesh%20Srinivasan%20_%20Thomas%20Fetherstonhaugh%20_%20Ulhas%20Bapat%20_%20V%20Selv/Life%20Of%20Pi/Piscine%20Molitor%20Patel.mp3 - File Folder Count4 - Library Folder Count1 - - 10886 - - Track ID10886 - NamePondicherry - ArtistAnwar Khurshid / Aruna Kalle / Cardinal Vaughan Memorial School / Chris Bleth / Courtney Grueschow / Evergreen Club Contemporary Gamelan / Jatinder Jeetu / Jeetu Prakesh / Mychael Danna / Rajesh Srinivasan / Thomas Fetherstonhaugh / Ulhas Bapat / V Selvag - AlbumLife Of Pi - GenreClassical - KindMPEG audio file - Size2905762 - Total Time72176 - Year2012 - Date Modified2013-01-14T03:19:26Z - Date Added2013-01-14T03:21:05Z - Bit Rate320 - Sample Rate44100 - Artwork Count1 - Persistent IDCC42A1780E679D9B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Anwar%20Khurshid%20_%20Aruna%20Kalle%20_%20Cardinal%20Vaughan%20Memorial%20School%20_%20Chris%20Bleth%20_%20Courtney%20Grueschow%20_%20Evergreen%20Club%20Contemporary%20Gamelan%20_%20Jatinder%20Jeetu%20_%20Jeetu%20Prakesh%20_%20Mychael%20Danna%20_%20Rajesh%20Srinivasan%20_%20Thomas%20Fetherstonhaugh%20_%20Ulhas%20Bapat%20_%20V%20Selv/Life%20Of%20Pi/Pondicherry.mp3 - File Folder Count4 - Library Folder Count1 - - 10888 - - Track ID10888 - NameRichard Parker - ArtistAnwar Khurshid / Aruna Kalle / Cardinal Vaughan Memorial School / Chris Bleth / Courtney Grueschow / Evergreen Club Contemporary Gamelan / Jatinder Jeetu / Jeetu Prakesh / Mychael Danna / Rajesh Srinivasan / Thomas Fetherstonhaugh / Ulhas Bapat / V Selvag - AlbumLife Of Pi - GenreClassical - KindMPEG audio file - Size2182695 - Total Time54099 - Year2012 - Date Modified2013-01-14T03:19:36Z - Date Added2013-01-14T03:21:05Z - Bit Rate320 - Sample Rate44100 - Artwork Count1 - Persistent IDF2CA1233360D83E6 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Anwar%20Khurshid%20_%20Aruna%20Kalle%20_%20Cardinal%20Vaughan%20Memorial%20School%20_%20Chris%20Bleth%20_%20Courtney%20Grueschow%20_%20Evergreen%20Club%20Contemporary%20Gamelan%20_%20Jatinder%20Jeetu%20_%20Jeetu%20Prakesh%20_%20Mychael%20Danna%20_%20Rajesh%20Srinivasan%20_%20Thomas%20Fetherstonhaugh%20_%20Ulhas%20Bapat%20_%20V%20Selv/Life%20Of%20Pi/Richard%20Parker.mp3 - File Folder Count4 - Library Folder Count1 - - 10890 - - Track ID10890 - NameSet Your House In Order - ArtistAnwar Khurshid / Aruna Kalle / Cardinal Vaughan Memorial School / Chris Bleth / Courtney Grueschow / Evergreen Club Contemporary Gamelan / Jatinder Jeetu / Jeetu Prakesh / Mychael Danna / Rajesh Srinivasan / Thomas Fetherstonhaugh / Ulhas Bapat / V Selvag - AlbumLife Of Pi - GenreClassical - KindMPEG audio file - Size5227537 - Total Time130220 - Year2012 - Date Modified2013-01-14T03:18:20Z - Date Added2013-01-14T03:21:05Z - Bit Rate320 - Sample Rate44100 - Artwork Count1 - Persistent ID0EA6B56B3ACDDBB0 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Anwar%20Khurshid%20_%20Aruna%20Kalle%20_%20Cardinal%20Vaughan%20Memorial%20School%20_%20Chris%20Bleth%20_%20Courtney%20Grueschow%20_%20Evergreen%20Club%20Contemporary%20Gamelan%20_%20Jatinder%20Jeetu%20_%20Jeetu%20Prakesh%20_%20Mychael%20Danna%20_%20Rajesh%20Srinivasan%20_%20Thomas%20Fetherstonhaugh%20_%20Ulhas%20Bapat%20_%20V%20Selv/Life%20Of%20Pi/Set%20Your%20House%20In%20Order.mp3 - File Folder Count4 - Library Folder Count1 - - 10892 - - Track ID10892 - NameSkinny Vegetarian Boy - ArtistAnwar Khurshid / Aruna Kalle / Cardinal Vaughan Memorial School / Chris Bleth / Courtney Grueschow / Evergreen Club Contemporary Gamelan / Jatinder Jeetu / Jeetu Prakesh / Mychael Danna / Rajesh Srinivasan / Thomas Fetherstonhaugh / Ulhas Bapat / V Selvag - AlbumLife Of Pi - GenreClassical - KindMPEG audio file - Size5468906 - Total Time136254 - Year2012 - Date Modified2013-01-14T03:15:21Z - Date Added2013-01-14T03:21:05Z - Bit Rate320 - Sample Rate44100 - Artwork Count1 - Persistent IDE1B9706C31D176DB - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Anwar%20Khurshid%20_%20Aruna%20Kalle%20_%20Cardinal%20Vaughan%20Memorial%20School%20_%20Chris%20Bleth%20_%20Courtney%20Grueschow%20_%20Evergreen%20Club%20Contemporary%20Gamelan%20_%20Jatinder%20Jeetu%20_%20Jeetu%20Prakesh%20_%20Mychael%20Danna%20_%20Rajesh%20Srinivasan%20_%20Thomas%20Fetherstonhaugh%20_%20Ulhas%20Bapat%20_%20V%20Selv/Life%20Of%20Pi/Skinny%20Vegetarian%20Boy.mp3 - File Folder Count4 - Library Folder Count1 - - 10894 - - Track ID10894 - NameThank You Vishnu For Introducing Me To Christ - ArtistAnwar Khurshid / Aruna Kalle / Cardinal Vaughan Memorial School / Chris Bleth / Courtney Grueschow / Evergreen Club Contemporary Gamelan / Jatinder Jeetu / Jeetu Prakesh / Mychael Danna / Rajesh Srinivasan / Thomas Fetherstonhaugh / Ulhas Bapat / V Selvag - AlbumLife Of Pi - GenreClassical - KindMPEG audio file - Size2256914 - Total Time55954 - Year2012 - Date Modified2013-01-14T03:19:04Z - Date Added2013-01-14T03:21:06Z - Bit Rate320 - Sample Rate44100 - Artwork Count1 - Persistent ID1E89FF73B10AEB5F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Anwar%20Khurshid%20_%20Aruna%20Kalle%20_%20Cardinal%20Vaughan%20Memorial%20School%20_%20Chris%20Bleth%20_%20Courtney%20Grueschow%20_%20Evergreen%20Club%20Contemporary%20Gamelan%20_%20Jatinder%20Jeetu%20_%20Jeetu%20Prakesh%20_%20Mychael%20Danna%20_%20Rajesh%20Srinivasan%20_%20Thomas%20Fetherstonhaugh%20_%20Ulhas%20Bapat%20_%20V%20Selv/Life%20Of%20Pi/Thank%20You%20Vishnu%20For%20Introducing%20Me%20To%20Christ.mp3 - File Folder Count4 - Library Folder Count1 - - 10896 - - Track ID10896 - NameThe Deepest Spot On Earth - ArtistAnwar Khurshid / Aruna Kalle / Cardinal Vaughan Memorial School / Chris Bleth / Courtney Grueschow / Evergreen Club Contemporary Gamelan / Jatinder Jeetu / Jeetu Prakesh / Mychael Danna / Rajesh Srinivasan / Thomas Fetherstonhaugh / Ulhas Bapat / V Selvag - AlbumLife Of Pi - GenreClassical - KindMPEG audio file - Size1972682 - Total Time48848 - Year2012 - Date Modified2013-01-14T03:20:13Z - Date Added2013-01-14T03:21:06Z - Bit Rate320 - Sample Rate44100 - Artwork Count1 - Sort NameDeepest Spot On Earth - Persistent IDA239B015887D4DCF - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Anwar%20Khurshid%20_%20Aruna%20Kalle%20_%20Cardinal%20Vaughan%20Memorial%20School%20_%20Chris%20Bleth%20_%20Courtney%20Grueschow%20_%20Evergreen%20Club%20Contemporary%20Gamelan%20_%20Jatinder%20Jeetu%20_%20Jeetu%20Prakesh%20_%20Mychael%20Danna%20_%20Rajesh%20Srinivasan%20_%20Thomas%20Fetherstonhaugh%20_%20Ulhas%20Bapat%20_%20V%20Selv/Life%20Of%20Pi/The%20Deepest%20Spot%20On%20Earth.mp3 - File Folder Count4 - Library Folder Count1 - - 10898 - - Track ID10898 - NameThe Island - ArtistAnwar Khurshid / Aruna Kalle / Cardinal Vaughan Memorial School / Chris Bleth / Courtney Grueschow / Evergreen Club Contemporary Gamelan / Jatinder Jeetu / Jeetu Prakesh / Mychael Danna / Rajesh Srinivasan / Thomas Fetherstonhaugh / Ulhas Bapat / V Selvag - AlbumLife Of Pi - GenreClassical - KindMPEG audio file - Size4782397 - Total Time119092 - Year2012 - Date Modified2013-01-14T03:17:30Z - Date Added2013-01-14T03:21:06Z - Bit Rate320 - Sample Rate44100 - Artwork Count1 - Sort NameIsland - Persistent ID85669F9418D4386B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Anwar%20Khurshid%20_%20Aruna%20Kalle%20_%20Cardinal%20Vaughan%20Memorial%20School%20_%20Chris%20Bleth%20_%20Courtney%20Grueschow%20_%20Evergreen%20Club%20Contemporary%20Gamelan%20_%20Jatinder%20Jeetu%20_%20Jeetu%20Prakesh%20_%20Mychael%20Danna%20_%20Rajesh%20Srinivasan%20_%20Thomas%20Fetherstonhaugh%20_%20Ulhas%20Bapat%20_%20V%20Selv/Life%20Of%20Pi/The%20Island.mp3 - File Folder Count4 - Library Folder Count1 - - 10900 - - Track ID10900 - NameThe Second Story - ArtistAnwar Khurshid / Aruna Kalle / Cardinal Vaughan Memorial School / Chris Bleth / Courtney Grueschow / Evergreen Club Contemporary Gamelan / Jatinder Jeetu / Jeetu Prakesh / Mychael Danna / Rajesh Srinivasan / Thomas Fetherstonhaugh / Ulhas Bapat / V Selvag - AlbumLife Of Pi - GenreClassical - KindMPEG audio file - Size9726861 - Total Time242703 - Year2012 - Date Modified2013-01-14T03:17:01Z - Date Added2013-01-14T03:21:06Z - Bit Rate320 - Sample Rate44100 - Artwork Count1 - Sort NameSecond Story - Persistent ID0AD3139C5F278A80 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Anwar%20Khurshid%20_%20Aruna%20Kalle%20_%20Cardinal%20Vaughan%20Memorial%20School%20_%20Chris%20Bleth%20_%20Courtney%20Grueschow%20_%20Evergreen%20Club%20Contemporary%20Gamelan%20_%20Jatinder%20Jeetu%20_%20Jeetu%20Prakesh%20_%20Mychael%20Danna%20_%20Rajesh%20Srinivasan%20_%20Thomas%20Fetherstonhaugh%20_%20Ulhas%20Bapat%20_%20V%20Selv/Life%20Of%20Pi/The%20Second%20Story.mp3 - File Folder Count4 - Library Folder Count1 - - 10902 - - Track ID10902 - NameThe Whale - ArtistAnwar Khurshid / Aruna Kalle / Cardinal Vaughan Memorial School / Chris Bleth / Courtney Grueschow / Evergreen Club Contemporary Gamelan / Jatinder Jeetu / Jeetu Prakesh / Mychael Danna / Rajesh Srinivasan / Thomas Fetherstonhaugh / Ulhas Bapat / V Selvag - AlbumLife Of Pi - GenreClassical - KindMPEG audio file - Size4931817 - Total Time122827 - Year2012 - Date Modified2013-01-14T03:15:29Z - Date Added2013-01-14T03:21:06Z - Bit Rate320 - Sample Rate44100 - Artwork Count1 - Sort NameWhale - Persistent ID4C0887C4F3E92968 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Anwar%20Khurshid%20_%20Aruna%20Kalle%20_%20Cardinal%20Vaughan%20Memorial%20School%20_%20Chris%20Bleth%20_%20Courtney%20Grueschow%20_%20Evergreen%20Club%20Contemporary%20Gamelan%20_%20Jatinder%20Jeetu%20_%20Jeetu%20Prakesh%20_%20Mychael%20Danna%20_%20Rajesh%20Srinivasan%20_%20Thomas%20Fetherstonhaugh%20_%20Ulhas%20Bapat%20_%20V%20Selv/Life%20Of%20Pi/The%20Whale.mp3 - File Folder Count4 - Library Folder Count1 - - 10904 - - Track ID10904 - NameTiger Training - ArtistAnwar Khurshid / Aruna Kalle / Cardinal Vaughan Memorial School / Chris Bleth / Courtney Grueschow / Evergreen Club Contemporary Gamelan / Jatinder Jeetu / Jeetu Prakesh / Mychael Danna / Rajesh Srinivasan / Thomas Fetherstonhaugh / Ulhas Bapat / V Selvag - AlbumLife Of Pi - GenreClassical - KindMPEG audio file - Size3322679 - Total Time82599 - Year2012 - Date Modified2013-01-14T03:14:50Z - Date Added2013-01-14T03:21:06Z - Bit Rate320 - Sample Rate44100 - Artwork Count1 - Persistent ID0322E09CC2B0A776 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Anwar%20Khurshid%20_%20Aruna%20Kalle%20_%20Cardinal%20Vaughan%20Memorial%20School%20_%20Chris%20Bleth%20_%20Courtney%20Grueschow%20_%20Evergreen%20Club%20Contemporary%20Gamelan%20_%20Jatinder%20Jeetu%20_%20Jeetu%20Prakesh%20_%20Mychael%20Danna%20_%20Rajesh%20Srinivasan%20_%20Thomas%20Fetherstonhaugh%20_%20Ulhas%20Bapat%20_%20V%20Selv/Life%20Of%20Pi/Tiger%20Training.mp3 - File Folder Count4 - Library Folder Count1 - - 10906 - - Track ID10906 - NameTiger Vision - ArtistAnwar Khurshid / Aruna Kalle / Cardinal Vaughan Memorial School / Chris Bleth / Courtney Grueschow / Evergreen Club Contemporary Gamelan / Jatinder Jeetu / Jeetu Prakesh / Mychael Danna / Rajesh Srinivasan / Thomas Fetherstonhaugh / Ulhas Bapat / V Selvag - AlbumLife Of Pi - GenreClassical - KindMPEG audio file - Size10895053 - Total Time271908 - Year2012 - Date Modified2013-01-14T03:16:37Z - Date Added2013-01-14T03:21:06Z - Bit Rate320 - Sample Rate44100 - Artwork Count1 - Persistent IDA4723ED4BA201423 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Anwar%20Khurshid%20_%20Aruna%20Kalle%20_%20Cardinal%20Vaughan%20Memorial%20School%20_%20Chris%20Bleth%20_%20Courtney%20Grueschow%20_%20Evergreen%20Club%20Contemporary%20Gamelan%20_%20Jatinder%20Jeetu%20_%20Jeetu%20Prakesh%20_%20Mychael%20Danna%20_%20Rajesh%20Srinivasan%20_%20Thomas%20Fetherstonhaugh%20_%20Ulhas%20Bapat%20_%20V%20Selv/Life%20Of%20Pi/Tiger%20Vision.mp3 - File Folder Count4 - Library Folder Count1 - - 10908 - - Track ID10908 - NameTsimtsum - ArtistAnwar Khurshid / Aruna Kalle / Cardinal Vaughan Memorial School / Chris Bleth / Courtney Grueschow / Evergreen Club Contemporary Gamelan / Jatinder Jeetu / Jeetu Prakesh / Mychael Danna / Rajesh Srinivasan / Thomas Fetherstonhaugh / Ulhas Bapat / V Selvag - AlbumLife Of Pi - GenreClassical - KindMPEG audio file - Size6804273 - Total Time169639 - Year2012 - Date Modified2013-01-14T03:20:18Z - Date Added2013-01-14T03:21:06Z - Bit Rate320 - Sample Rate44100 - Artwork Count1 - Persistent IDADD543CAD4479731 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Anwar%20Khurshid%20_%20Aruna%20Kalle%20_%20Cardinal%20Vaughan%20Memorial%20School%20_%20Chris%20Bleth%20_%20Courtney%20Grueschow%20_%20Evergreen%20Club%20Contemporary%20Gamelan%20_%20Jatinder%20Jeetu%20_%20Jeetu%20Prakesh%20_%20Mychael%20Danna%20_%20Rajesh%20Srinivasan%20_%20Thomas%20Fetherstonhaugh%20_%20Ulhas%20Bapat%20_%20V%20Selv/Life%20Of%20Pi/Tsimtsum.mp3 - File Folder Count4 - Library Folder Count1 - - 10910 - - Track ID10910 - NameWhich Story Do You Prefer? - ArtistAnwar Khurshid / Aruna Kalle / Cardinal Vaughan Memorial School / Chris Bleth / Courtney Grueschow / Evergreen Club Contemporary Gamelan / Jatinder Jeetu / Jeetu Prakesh / Mychael Danna / Rajesh Srinivasan / Thomas Fetherstonhaugh / Ulhas Bapat / V Selvag - AlbumLife Of Pi - GenreClassical - KindMPEG audio file - Size5033189 - Total Time125361 - Year2012 - Date Modified2013-01-14T03:17:01Z - Date Added2013-01-14T03:21:06Z - Bit Rate320 - Sample Rate44100 - Artwork Count1 - Persistent IDE8474ED0A07E2F48 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Anwar%20Khurshid%20_%20Aruna%20Kalle%20_%20Cardinal%20Vaughan%20Memorial%20School%20_%20Chris%20Bleth%20_%20Courtney%20Grueschow%20_%20Evergreen%20Club%20Contemporary%20Gamelan%20_%20Jatinder%20Jeetu%20_%20Jeetu%20Prakesh%20_%20Mychael%20Danna%20_%20Rajesh%20Srinivasan%20_%20Thomas%20Fetherstonhaugh%20_%20Ulhas%20Bapat%20_%20V%20Selv/Life%20Of%20Pi/Which%20Story%20Do%20You%20Prefer_.mp3 - File Folder Count4 - Library Folder Count1 - - 10914 - - Track ID10914 - NameDeliberate Thought - ArtistKevin MacLeod - ComposerKevin MacLeod - AlbumLight - GenreElectronic - KindMPEG audio file - Size7224606 - Total Time177456 - Year2007 - BPM69 - Date Modified2013-01-18T04:33:27Z - Date Added2013-01-18T04:35:47Z - Bit Rate320 - Sample Rate48000 - Normalization770 - Artwork Count1 - Persistent ID60EB76893AF9E51A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kevin%20MacLeod/Light/Deliberate%20Thought.mp3 - File Folder Count4 - Library Folder Count1 - - 10920 - - Track ID10920 - NameSenbazuru - ArtistKevin MacLeod - ComposerKevin MacLeod - AlbumRoyalty Free - GenreWorld - KindMPEG audio file - Size3766774 - Total Time94066 - Year2011 - BPM48 - Date Modified2013-01-27T03:13:48Z - Date Added2013-01-27T03:14:26Z - Bit Rate320 - Sample Rate44100 - Normalization1230 - Persistent IDD892855B25E92FF7 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kevin%20MacLeod/Royalty%20Free/Senbazuru.mp3 - File Folder Count4 - Library Folder Count1 - - 10922 - - Track ID10922 - NameWet Riffs - ArtistKevin MacLeod - AlbumRoyalty Free - GenreContemporary - KindMPEG audio file - Size10118930 - Total Time252917 - Year2011 - BPM41 - Date Modified2013-01-27T03:12:17Z - Date Added2013-01-27T03:14:27Z - Bit Rate320 - Sample Rate44100 - CommentsBassman project - Normalization1186 - Persistent IDDAB50F1289580602 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kevin%20MacLeod/Royalty%20Free/Wet%20Riffs.mp3 - File Folder Count4 - Library Folder Count1 - - 10924 - - Track ID10924 - NameCattails - ArtistKevin MacLeod - ComposerKevin MacLeod - AlbumRoyalty Free - GenreWorld - KindMPEG audio file - Size6365435 - Total Time159033 - Year2010 - Date Modified2013-01-27T03:09:22Z - Date Added2013-01-27T03:14:27Z - Bit Rate320 - Sample Rate44100 - Normalization1347 - Persistent ID24AE6F3B72999975 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kevin%20MacLeod/Royalty%20Free/Cattails.mp3 - File Folder Count4 - Library Folder Count1 - - 10952 - - Track ID10952 - NameOff to Osaka - ArtistKevin MacLeod - ComposerKevin MacLeod - AlbumJazz - GenreJazz - KindMPEG audio file - Size4021693 - Total Time109740 - Year2006 - Date Modified2013-02-25T06:24:11Z - Date Added2013-02-25T06:26:10Z - Bit Rate284 - Sample Rate44100 - Commentsincompetech.com - Normalization1255 - Artwork Count1 - Persistent IDA67578008D93FCAF - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Kevin%20MacLeod/Jazz/Off%20to%20Osaka.mp3 - File Folder Count4 - Library Folder Count1 - - 11010 - - Track ID11010 - NameO Saiyyan - ArtistAjay-Atul/Roop Kumar Rathod - Album ArtistVarious Artists - ComposerAjay Gogavale/Atul Gogavale - AlbumAgneepath - GenreSoundtrack - KindMPEG audio file - Size11253958 - Total Time278595 - Track Number2 - Track Count6 - Year2013 - Date Modified2013-05-13T09:15:18Z - Date Added2013-05-13T09:15:27Z - Bit Rate320 - Sample Rate44100 - Artwork Count1 - Persistent IDABAC54629E84B525 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Agneepath/02%20O%20Saiyyan.mp3 - File Folder Count4 - Library Folder Count1 - - 11040 - - Track ID11040 - Nametest - KindWAV audio file - Size444 - Total Time4 - Date Modified2013-07-07T08:50:21Z - Date Added2013-07-07T08:50:41Z - Bit Rate705 - Sample Rate44100 - Persistent ID55828103A6C1FA3F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Unknown%20Artist/Unknown%20Album/test.wav - File Folder Count4 - Library Folder Count1 - - 11042 - - Track ID11042 - Namesimple - KindWAV audio file - Size88244 - Total Time1000 - Date Modified2013-07-07T08:51:14Z - Date Added2013-07-07T08:51:19Z - Bit Rate705 - Sample Rate44100 - Persistent IDD30F5FA735E971D3 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Unknown%20Artist/Unknown%20Album/simple.wav - File Folder Count4 - Library Folder Count1 - - 11044 - - Track ID11044 - Namesimple 1 - KindWAV audio file - Size444 - Total Time4 - Date Modified2013-07-07T08:53:26Z - Date Added2013-07-07T08:53:28Z - Bit Rate705 - Sample Rate44100 - Persistent ID51CBE534A6FE028D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Unknown%20Artist/Unknown%20Album/simple%201.wav - File Folder Count4 - Library Folder Count1 - - 11046 - - Track ID11046 - Namesimple 2 - KindWAV audio file - Size444 - Total Time4 - Date Modified2013-07-07T08:53:26Z - Date Added2013-07-07T08:53:33Z - Bit Rate705 - Sample Rate44100 - Persistent IDC93B42C762D43317 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Unknown%20Artist/Unknown%20Album/simple%202.wav - File Folder Count4 - Library Folder Count1 - - 11054 - - Track ID11054 - NameStd 3 Lesson No 2 Part1 - ArtistNPS 3rd STD HINDI LESSONS - KindMPEG audio file - Size11803065 - Total Time368927 - Track Number1 - Year2012 - Date Modified2013-07-14T14:18:13Z - Date Added2013-07-14T13:47:30Z - Bit Rate256 - Sample Rate44100 - Persistent IDBFAC9F05B189EC45 - Track TypeFile - File Type860311629 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/NPS%203rd%20STD%20HINDI%20LESSONS/Unknown%20Album/Std%203%20Lesson%20No%202%20Part1.mp3 - File Folder Count4 - Library Folder Count1 - - 11056 - - Track ID11056 - NameStd 3 Lesson No 2 Part2 - ArtistNPS 3rd STD HINDI LESSONS - KindMPEG audio file - Size9202875 - Total Time287582 - Track Number1 - Year2012 - Date Modified2013-07-14T14:18:13Z - Date Added2013-07-14T13:48:19Z - Bit Rate256 - Sample Rate44100 - Persistent ID35F34436194E463D - Track TypeFile - File Type860311629 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/NPS%203rd%20STD%20HINDI%20LESSONS/Unknown%20Album/Std%203%20Lesson%20No%202%20Part2.mp3 - File Folder Count4 - Library Folder Count1 - - 11058 - - Track ID11058 - NameStd 3 Lesson No 2 Part3 - ArtistNPS 3rd STD HINDI LESSONS - KindMPEG audio file - Size12923635 - Total Time403539 - Track Number1 - Year2012 - Date Modified2013-07-14T14:18:14Z - Date Added2013-07-14T13:48:41Z - Bit Rate256 - Sample Rate44100 - Persistent ID26D461A781ACFF1E - Track TypeFile - File Type860311629 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/NPS%203rd%20STD%20HINDI%20LESSONS/Unknown%20Album/Std%203%20Lesson%20No%202%20Part3.mp3 - File Folder Count4 - Library Folder Count1 - - 11060 - - Track ID11060 - NameStd 3 Lesson No 3 Part1 - ArtistNPS 3rd STD HINDI LESSONS - KindMPEG audio file - Size15539690 - Total Time485825 - Track Number1 - Year2012 - Date Modified2013-07-14T14:18:15Z - Date Added2013-07-14T13:48:42Z - Bit Rate256 - Sample Rate44100 - Persistent ID6FCE9135349C0E17 - Track TypeFile - File Type860311629 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/NPS%203rd%20STD%20HINDI%20LESSONS/Unknown%20Album/Std%203%20Lesson%20No%203%20Part1.mp3 - File Folder Count4 - Library Folder Count1 - - 11062 - - Track ID11062 - NameStd 3 Lesson No 3 Part2 - ArtistNPS 3rd STD HINDI LESSONS - KindMPEG audio file - Size12309075 - Total Time384757 - Track Number1 - Year2012 - Date Modified2013-07-14T14:18:16Z - Date Added2013-07-14T13:49:18Z - Bit Rate256 - Sample Rate44100 - Persistent ID1228B89C0B047062 - Track TypeFile - File Type860311629 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/NPS%203rd%20STD%20HINDI%20LESSONS/Unknown%20Album/Std%203%20Lesson%20No%203%20Part2.mp3 - File Folder Count4 - Library Folder Count1 - - 11064 - - Track ID11064 - NameStd 3 Lesson No 3 Part3 - ArtistNPS 3rd STD HINDI LESSONS - KindMPEG audio file - Size8544895 - Total Time266997 - Track Number1 - Year2012 - Date Modified2013-07-14T14:18:17Z - Date Added2013-07-14T13:51:21Z - Bit Rate256 - Sample Rate44100 - Persistent ID37CC372522D55DB3 - Track TypeFile - File Type860311629 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/NPS%203rd%20STD%20HINDI%20LESSONS/Unknown%20Album/Std%203%20Lesson%20No%203%20Part3.mp3 - File Folder Count4 - Library Folder Count1 - - 11066 - - Track ID11066 - NameStd 3 Lesson No 4 Part1 - ArtistNPS 3rd STD HINDI LESSONS - KindMPEG audio file - Size11330455 - Total Time354142 - Track Number1 - Year2012 - Date Modified2013-07-14T14:18:17Z - Date Added2013-07-14T13:51:41Z - Bit Rate256 - Sample Rate44100 - Persistent IDA6AF632BA46BC514 - Track TypeFile - File Type860311629 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/NPS%203rd%20STD%20HINDI%20LESSONS/Unknown%20Album/Std%203%20Lesson%20No%204%20Part1.mp3 - File Folder Count4 - Library Folder Count1 - - 11068 - - Track ID11068 - NameStd 3 Lesson No 4 Part2 - ArtistNPS 3rd STD HINDI LESSONS - KindMPEG audio file - Size11341310 - Total Time354481 - Track Number1 - Year2012 - Date Modified2013-07-14T14:18:18Z - Date Added2013-07-14T13:52:08Z - Bit Rate256 - Sample Rate44100 - Persistent IDBB8465379E0D631D - Track TypeFile - File Type860311629 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/NPS%203rd%20STD%20HINDI%20LESSONS/Unknown%20Album/Std%203%20Lesson%20No%204%20Part2.mp3 - File Folder Count4 - Library Folder Count1 - - 11070 - - Track ID11070 - NameStd 3 Lesson No 6 Part1 - ArtistNPS 3rd STD HINDI LESSONS - KindMPEG audio file - Size12005135 - Total Time375248 - Track Number1 - Year2012 - Date Modified2013-07-14T14:18:19Z - Date Added2013-07-14T13:52:34Z - Bit Rate256 - Sample Rate44100 - Persistent ID45FD8754E9F9CD78 - Track TypeFile - File Type860311629 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/NPS%203rd%20STD%20HINDI%20LESSONS/Unknown%20Album/Std%203%20Lesson%20No%206%20Part1.mp3 - File Folder Count4 - Library Folder Count1 - - 11072 - - Track ID11072 - NameStd 3 Lesson No 6 Part2 - ArtistNPS 3rd STD HINDI LESSONS - KindMPEG audio file - Size8405450 - Total Time262347 - Track Number1 - Year2012 - Date Modified2013-07-14T14:18:19Z - Date Added2013-07-14T13:53:02Z - Bit Rate256 - Sample Rate44100 - Persistent IDA17F8205FC753DD0 - Track TypeFile - File Type860311629 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/NPS%203rd%20STD%20HINDI%20LESSONS/Unknown%20Album/Std%203%20Lesson%20No%206%20Part2.mp3 - File Folder Count4 - Library Folder Count1 - - 11074 - - Track ID11074 - NameStd 3 Lesson No 6 Part3 - ArtistNPS 3rd STD HINDI LESSONS - KindMPEG audio file - Size13318590 - Total Time416339 - Track Number1 - Year2012 - Date Modified2013-07-14T14:18:20Z - Date Added2013-07-14T13:53:03Z - Bit Rate256 - Sample Rate44100 - Persistent ID13E5AE86DA969077 - Track TypeFile - File Type860311629 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/NPS%203rd%20STD%20HINDI%20LESSONS/Unknown%20Album/Std%203%20Lesson%20No%206%20Part3.mp3 - File Folder Count4 - Library Folder Count1 - - 11076 - - Track ID11076 - NameLesson no 07 Part1 - ArtistNPS 3rd STD HINDI LESSONS - KindWAV audio file - Size96576044 - Total Time502994 - Date Modified2012-01-09T08:35:48Z - Date Added2013-07-14T14:15:37Z - Bit Rate1536 - Sample Rate48000 - Persistent ID21AC594E09B279B8 - Track TypeFile - File Type1463899717 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/NPS%203rd%20STD%20HINDI%20LESSONS/Unknown%20Album/Lesson%20no%2007%20Part1.wav - File Folder Count4 - Library Folder Count1 - - 11078 - - Track ID11078 - NameLesson no 07 Part2 - ArtistNPS 3rd STD HINDI LESSONS - KindWAV audio file - Size50562092 - Total Time263338 - Date Modified2012-01-09T08:35:53Z - Date Added2013-07-14T14:15:38Z - Bit Rate1536 - Sample Rate48000 - Persistent ID36BB4F1FFB91A474 - Track TypeFile - File Type1463899717 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/NPS%203rd%20STD%20HINDI%20LESSONS/Unknown%20Album/Lesson%20no%2007%20Part2.wav - File Folder Count4 - Library Folder Count1 - - 11080 - - Track ID11080 - NameLesson no 07 Part3 - ArtistNPS 3rd STD HINDI LESSONS - KindWAV audio file - Size64533548 - Total Time336106 - Date Modified2012-01-09T08:36:00Z - Date Added2013-07-14T14:15:39Z - Bit Rate1536 - Sample Rate48000 - Persistent ID69B5D0D74B39A88A - Track TypeFile - File Type1463899717 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/NPS%203rd%20STD%20HINDI%20LESSONS/Unknown%20Album/Lesson%20no%2007%20Part3.wav - File Folder Count4 - Library Folder Count1 - - 11082 - - Track ID11082 - NameLesson no 10 Part1 - ArtistNPS 3rd STD HINDI LESSONS - KindMPEG audio file - Size6702277 - Total Time278832 - Date Modified2013-07-14T14:18:21Z - Date Added2013-07-14T14:15:39Z - Bit Rate192 - Sample Rate48000 - Persistent IDC71CE4162FC8B15A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/NPS%203rd%20STD%20HINDI%20LESSONS/Unknown%20Album/Lesson%20no%2010%20Part1.mp3 - File Folder Count4 - Library Folder Count1 - - 11084 - - Track ID11084 - NameLesson no 10 Part2 - ArtistNPS 3rd STD HINDI LESSONS - KindMPEG audio file - Size5731717 - Total Time238392 - Date Modified2013-07-14T14:18:21Z - Date Added2013-07-14T14:15:39Z - Bit Rate192 - Sample Rate48000 - Persistent ID447F173FBCC40CFF - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/NPS%203rd%20STD%20HINDI%20LESSONS/Unknown%20Album/Lesson%20no%2010%20Part2.mp3 - File Folder Count4 - Library Folder Count1 - - 11086 - - Track ID11086 - NameLesson no 10 Part3 - ArtistNPS 3rd STD HINDI LESSONS - KindMPEG audio file - Size10558597 - Total Time439512 - Date Modified2013-07-14T14:18:21Z - Date Added2013-07-14T14:15:39Z - Bit Rate192 - Sample Rate48000 - Persistent IDEBB71425C2515CA0 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/NPS%203rd%20STD%20HINDI%20LESSONS/Unknown%20Album/Lesson%20no%2010%20Part3.mp3 - File Folder Count4 - Library Folder Count1 - - 11088 - - Track ID11088 - NameLesson no 11 Part1 - ArtistNPS 3rd STD HINDI LESSONS - KindMPEG audio file - Size11728453 - Total Time488256 - Date Modified2013-07-14T14:18:24Z - Date Added2013-07-14T14:15:40Z - Bit Rate192 - Sample Rate48000 - Persistent ID8E492C27CEFAAA57 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/NPS%203rd%20STD%20HINDI%20LESSONS/Unknown%20Album/Lesson%20no%2011%20Part1.mp3 - File Folder Count4 - Library Folder Count1 - - 11090 - - Track ID11090 - NameLesson no 11 Part2 - ArtistNPS 3rd STD HINDI LESSONS - KindMPEG audio file - Size6672325 - Total Time277584 - Date Modified2013-07-14T14:18:23Z - Date Added2013-07-14T14:15:40Z - Bit Rate192 - Sample Rate48000 - Persistent ID5D42B944FA430DFF - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/NPS%203rd%20STD%20HINDI%20LESSONS/Unknown%20Album/Lesson%20no%2011%20Part2.mp3 - File Folder Count4 - Library Folder Count1 - - 11092 - - Track ID11092 - NameLesson no 11 Part3 - ArtistNPS 3rd STD HINDI LESSONS - KindMPEG audio file - Size12099973 - Total Time503736 - Date Modified2013-07-14T14:18:23Z - Date Added2013-07-14T14:15:40Z - Bit Rate192 - Sample Rate48000 - Persistent ID605D1C7EA4C2D657 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/NPS%203rd%20STD%20HINDI%20LESSONS/Unknown%20Album/Lesson%20no%2011%20Part3.mp3 - File Folder Count4 - Library Folder Count1 - - 11094 - - Track ID11094 - NameLesson no 12 Part1 - ArtistNPS 3rd STD HINDI LESSONS - KindMPEG audio file - Size13072261 - Total Time544248 - Date Modified2013-07-14T14:18:22Z - Date Added2013-07-14T14:15:40Z - Bit Rate192 - Sample Rate48000 - Persistent ID2F1C0E04D279FFEE - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/NPS%203rd%20STD%20HINDI%20LESSONS/Unknown%20Album/Lesson%20no%2012%20Part1.mp3 - File Folder Count4 - Library Folder Count1 - - 11096 - - Track ID11096 - NameLesson no 12 Part2 - ArtistNPS 3rd STD HINDI LESSONS - KindMPEG audio file - Size7031749 - Total Time292560 - Date Modified2013-07-14T14:18:27Z - Date Added2013-07-14T14:15:41Z - Bit Rate192 - Sample Rate48000 - Persistent ID9DDA345FF29B32EF - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/NPS%203rd%20STD%20HINDI%20LESSONS/Unknown%20Album/Lesson%20no%2012%20Part2.mp3 - File Folder Count4 - Library Folder Count1 - - 11098 - - Track ID11098 - NameLesson no 12 Part3 - ArtistNPS 3rd STD HINDI LESSONS - KindMPEG audio file - Size9024133 - Total Time375576 - Date Modified2013-07-14T14:18:26Z - Date Added2013-07-14T14:15:41Z - Bit Rate192 - Sample Rate48000 - Persistent ID98D5140EA4814008 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/NPS%203rd%20STD%20HINDI%20LESSONS/Unknown%20Album/Lesson%20no%2012%20Part3.mp3 - File Folder Count4 - Library Folder Count1 - - 11100 - - Track ID11100 - NameLesson no 14 Part1 - ArtistNPS 3rd STD HINDI LESSONS - KindMPEG audio file - Size12737605 - Total Time530304 - Date Modified2013-07-14T14:18:26Z - Date Added2013-07-14T14:15:41Z - Bit Rate192 - Sample Rate48000 - Persistent ID9C0DF302BB866FC2 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/NPS%203rd%20STD%20HINDI%20LESSONS/Unknown%20Album/Lesson%20no%2014%20Part1.mp3 - File Folder Count4 - Library Folder Count1 - - 11102 - - Track ID11102 - NameLesson no 14 Part2 - ArtistNPS 3rd STD HINDI LESSONS - KindMPEG audio file - Size8496517 - Total Time353592 - Date Modified2013-07-14T14:18:25Z - Date Added2013-07-14T14:15:41Z - Bit Rate192 - Sample Rate48000 - Persistent ID3CA83FE92AAE2C8F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/NPS%203rd%20STD%20HINDI%20LESSONS/Unknown%20Album/Lesson%20no%2014%20Part2.mp3 - File Folder Count4 - Library Folder Count1 - - 11104 - - Track ID11104 - NameLesson no 15 Part1 - ArtistNPS 3rd STD HINDI LESSONS - KindMPEG audio file - Size10949701 - Total Time455808 - Date Modified2013-07-14T14:18:25Z - Date Added2013-07-14T14:15:41Z - Bit Rate192 - Sample Rate48000 - Persistent IDE7E15494BBA45686 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/NPS%203rd%20STD%20HINDI%20LESSONS/Unknown%20Album/Lesson%20no%2015%20Part1.mp3 - File Folder Count4 - Library Folder Count1 - - 11106 - - Track ID11106 - NameLesson no 15 Part2 - ArtistNPS 3rd STD HINDI LESSONS - KindMPEG audio file - Size7604293 - Total Time316416 - Date Modified2013-07-14T14:18:27Z - Date Added2013-07-14T14:15:42Z - Bit Rate192 - Sample Rate48000 - Persistent ID30CB5F2062CA01BC - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/NPS%203rd%20STD%20HINDI%20LESSONS/Unknown%20Album/Lesson%20no%2015%20Part2.mp3 - File Folder Count4 - Library Folder Count1 - - 11108 - - Track ID11108 - NameLesson no 15 Part3 - ArtistNPS 3rd STD HINDI LESSONS - KindMPEG audio file - Size6342277 - Total Time263832 - Date Modified2013-07-14T14:18:27Z - Date Added2013-07-14T14:15:42Z - Bit Rate192 - Sample Rate48000 - Persistent ID1E50031D40C1AD14 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/NPS%203rd%20STD%20HINDI%20LESSONS/Unknown%20Album/Lesson%20no%2015%20Part3.mp3 - File Folder Count4 - Library Folder Count1 - - 11110 - - Track ID11110 - Namedot - KindWAV audio file - Size17768 - Total Time1603 - Date Modified2013-07-15T14:53:51Z - Date Added2013-07-15T14:54:54Z - Bit Rate88 - Sample Rate11050 - Persistent ID4D23FD241AEE3A57 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Unknown%20Artist/Unknown%20Album/dot.wav - File Folder Count4 - Library Folder Count1 - - 11112 - - Track ID11112 - Namedash - KindWAV audio file - Size19456 - Total Time1756 - Date Modified2013-07-15T14:56:05Z - Date Added2013-07-15T14:56:08Z - Bit Rate88 - Sample Rate11050 - Persistent ID18F49497F62D3F0D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Unknown%20Artist/Unknown%20Album/dash.wav - File Folder Count4 - Library Folder Count1 - - 11124 - - Track ID11124 - Name13/02/13 10:16 PM - ArtistMahesh Venkitachalam - AlbumVoice Memos - GenreVoice Memo - KindAAC audio file - Size137810 - Total Time16484 - Date Modified2013-02-13T14:17:15Z - Date Added2013-07-28T11:40:45Z - Bit Rate64 - Sample Rate44100 - Persistent ID1B7A5BD9B2AE109B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Voice%20Memos/20130213%20221653.m4a - File Folder Count3 - Library Folder Count1 - - 11126 - - Track ID11126 - Name05/03/13 6:08 PM - ArtistMahesh Venkitachalam - AlbumVoice Memos - GenreVoice Memo - KindAAC audio file - Size168919 - Total Time20455 - Date Modified2013-03-05T12:38:31Z - Date Added2013-07-28T11:40:45Z - Bit Rate64 - Sample Rate44100 - Persistent ID6C77AE3FE259886F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Voice%20Memos/20130305%20180810.m4a - File Folder Count3 - Library Folder Count1 - - 11128 - - Track ID11128 - Namesin - KindWAV audio file - Size88244 - Total Time1000 - Date Modified2013-07-30T15:45:44Z - Date Added2013-07-30T15:46:05Z - Bit Rate705 - Sample Rate44100 - Persistent IDDAAE1E3BEE2A4478 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Unknown%20Artist/Unknown%20Album/sin.wav - File Folder Count4 - Library Folder Count1 - - 11186 - - Track ID11186 - NameHarmonica For Dummies - ArtistHarmonica For Dummies - Album ArtistHarmonica For Dummies - AlbumWinslow Yerxa - GenreOther - KindMPEG audio file - Size787467 - Total Time41116 - Track Number1 - Year2010 - Date Modified2013-12-29T12:42:10Z - Date Added2013-12-29T12:40:05Z - Bit Rate128 - Sample Rate44100 - CommentsfileRename @ sourceforge.net - Artwork Count1 - Persistent ID138AD7F17CB9F222 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/01%20Harmonica%20For%20Dummies.mp3 - File Folder Count4 - Library Folder Count1 - - 11188 - - Track ID11188 - NameHarmonica For Dummies - ArtistHarmonica For Dummies - Album ArtistHarmonica For Dummies - AlbumWinslow Yerxa - GenreOther - KindMPEG audio file - Size353370 - Total Time13923 - Track Number2 - Year2010 - Date Modified2013-12-29T12:42:11Z - Date Added2013-12-29T12:40:06Z - Bit Rate128 - Sample Rate44100 - CommentsfileRename @ sourceforge.net - Artwork Count1 - Persistent IDF424468D42581A99 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/02%20Harmonica%20For%20Dummies.mp3 - File Folder Count4 - Library Folder Count1 - - 11190 - - Track ID11190 - NameHarmonica For Dummies - ArtistHarmonica For Dummies - Album ArtistHarmonica For Dummies - AlbumWinslow Yerxa - GenreOther - KindMPEG audio file - Size385896 - Total Time15960 - Track Number3 - Year2010 - Date Modified2013-12-29T12:42:11Z - Date Added2013-12-29T12:40:06Z - Bit Rate128 - Sample Rate44100 - CommentsfileRename @ sourceforge.net - Artwork Count1 - Persistent ID8B490677A92F4C6A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/03%20Harmonica%20For%20Dummies.mp3 - File Folder Count4 - Library Folder Count1 - - 11192 - - Track ID11192 - NameHarmonica For Dummies - ArtistHarmonica For Dummies - Album ArtistHarmonica For Dummies - AlbumWinslow Yerxa - GenreOther - KindMPEG audio file - Size308334 - Total Time11075 - Track Number4 - Year2010 - Date Modified2013-12-29T12:42:11Z - Date Added2013-12-29T12:40:06Z - Bit Rate128 - Sample Rate44100 - CommentsfileRename @ sourceforge.net - Artwork Count1 - Persistent ID6281856BC26A41BA - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/04%20Harmonica%20For%20Dummies.mp3 - File Folder Count4 - Library Folder Count1 - - 11194 - - Track ID11194 - NameHarmonica For Dummies - ArtistHarmonica For Dummies - Album ArtistHarmonica For Dummies - AlbumWinslow Yerxa - GenreOther - KindMPEG audio file - Size656946 - Total Time32940 - Track Number5 - Year2010 - Date Modified2013-12-29T12:42:11Z - Date Added2013-12-29T12:40:06Z - Bit Rate128 - Sample Rate44100 - CommentsfileRename @ sourceforge.net - Artwork Count1 - Persistent ID654402150F331634 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/05%20Harmonica%20For%20Dummies.mp3 - File Folder Count4 - Library Folder Count1 - - 11196 - - Track ID11196 - NameHarmonica For Dummies - ArtistHarmonica For Dummies - Album ArtistHarmonica For Dummies - AlbumWinslow Yerxa - GenreOther - KindMPEG audio file - Size2778226 - Total Time165825 - Track Number6 - Year2010 - Date Modified2013-12-29T12:42:11Z - Date Added2013-12-29T12:40:06Z - Bit Rate128 - Sample Rate44100 - CommentsfileRename @ sourceforge.net - Artwork Count1 - Persistent ID8DC765B8E8C0BAB2 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/06%20Harmonica%20For%20Dummies.mp3 - File Folder Count4 - Library Folder Count1 - - 11198 - - Track ID11198 - NameHarmonica For Dummies - ArtistHarmonica For Dummies - Album ArtistHarmonica For Dummies - AlbumWinslow Yerxa - GenreOther - KindMPEG audio file - Size685719 - Total Time34664 - Track Number7 - Year2010 - Date Modified2013-12-29T12:42:11Z - Date Added2013-12-29T12:40:08Z - Bit Rate128 - Sample Rate44100 - CommentsfileRename @ sourceforge.net - Artwork Count1 - Persistent ID47F1BBBC31C4592C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/07%20Harmonica%20For%20Dummies.mp3 - File Folder Count4 - Library Folder Count1 - - 11200 - - Track ID11200 - NameHarmonica For Dummies - ArtistHarmonica For Dummies - Album ArtistHarmonica For Dummies - AlbumWinslow Yerxa - GenreOther - KindMPEG audio file - Size1096881 - Total Time60499 - Track Number8 - Year2010 - Date Modified2013-12-29T12:42:11Z - Date Added2013-12-29T12:40:08Z - Bit Rate128 - Sample Rate44100 - CommentsfileRename @ sourceforge.net - Artwork Count1 - Persistent ID0A1084A6686AB977 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/08%20Harmonica%20For%20Dummies.mp3 - File Folder Count4 - Library Folder Count1 - - 11202 - - Track ID11202 - NameHarmonica For Dummies - ArtistHarmonica For Dummies - Album ArtistHarmonica For Dummies - AlbumWinslow Yerxa - GenreOther - KindMPEG audio file - Size440106 - Total Time19356 - Track Number9 - Year2010 - Date Modified2013-12-29T12:42:11Z - Date Added2013-12-29T12:40:08Z - Bit Rate128 - Sample Rate44100 - CommentsfileRename @ sourceforge.net - Artwork Count1 - Persistent IDF2B642E0FDB29FF5 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/09%20Harmonica%20For%20Dummies.mp3 - File Folder Count4 - Library Folder Count1 - - 11204 - - Track ID11204 - NameHarmonica For Dummies - ArtistHarmonica For Dummies - Album ArtistHarmonica For Dummies - AlbumWinslow Yerxa - GenreOther - KindMPEG audio file - Size440523 - Total Time19382 - Track Number10 - Year2010 - Date Modified2013-12-29T12:42:11Z - Date Added2013-12-29T12:40:08Z - Bit Rate128 - Sample Rate44100 - CommentsfileRename @ sourceforge.net - Artwork Count1 - Persistent ID75E54625553D38DF - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/10%20Harmonica%20For%20Dummies.mp3 - File Folder Count4 - Library Folder Count1 - - 11206 - - Track ID11206 - NameHarmonica For Dummies - ArtistHarmonica For Dummies - Album ArtistHarmonica For Dummies - AlbumWinslow Yerxa - GenreOther - KindMPEG audio file - Size430515 - Total Time18755 - Track Number11 - Year2010 - Date Modified2013-12-29T12:42:12Z - Date Added2013-12-29T12:40:09Z - Bit Rate128 - Sample Rate44100 - CommentsfileRename @ sourceforge.net - Artwork Count1 - Persistent ID10F584AA4FE1259A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/11%20Harmonica%20For%20Dummies.mp3 - File Folder Count4 - Library Folder Count1 - - 11208 - - Track ID11208 - NameHarmonica For Dummies - ArtistHarmonica For Dummies - Album ArtistHarmonica For Dummies - AlbumWinslow Yerxa - GenreOther - KindMPEG audio file - Size658197 - Total Time33018 - Track Number12 - Year2010 - Date Modified2013-12-29T12:42:12Z - Date Added2013-12-29T12:40:09Z - Bit Rate128 - Sample Rate44100 - CommentsfileRename @ sourceforge.net - Artwork Count1 - Persistent IDAC0E4E7F1D59DC86 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/12%20Harmonica%20For%20Dummies.mp3 - File Folder Count4 - Library Folder Count1 - - 11210 - - Track ID11210 - NameHarmonica For Dummies - ArtistHarmonica For Dummies - Album ArtistHarmonica For Dummies - AlbumWinslow Yerxa - GenreOther - KindMPEG audio file - Size574380 - Total Time27768 - Track Number13 - Year2010 - Date Modified2013-12-29T12:42:11Z - Date Added2013-12-29T12:40:09Z - Bit Rate128 - Sample Rate44100 - CommentsfileRename @ sourceforge.net - Artwork Count1 - Persistent IDE32314D15BEBF9B8 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/13%20Harmonica%20For%20Dummies.mp3 - File Folder Count4 - Library Folder Count1 - - 11212 - - Track ID11212 - NameHarmonica For Dummies - ArtistHarmonica For Dummies - Album ArtistHarmonica For Dummies - AlbumWinslow Yerxa - GenreOther - KindMPEG audio file - Size523665 - Total Time32574 - Track Number14 - Year2010 - Date Modified2013-12-29T12:42:11Z - Date Added2013-12-29T12:40:09Z - Bit Rate96 - Sample Rate22050 - CommentsfileRename @ sourceforge.net - Artwork Count1 - Persistent ID2B479DFC570A009A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/14%20Harmonica%20For%20Dummies.mp3 - File Folder Count4 - Library Folder Count1 - - 11214 - - Track ID11214 - NameHarmonica For Dummies - ArtistHarmonica For Dummies - Album ArtistHarmonica For Dummies - AlbumWinslow Yerxa - GenreOther - KindMPEG audio file - Size534765 - Total Time25286 - Track Number15 - Year2010 - Date Modified2013-12-29T12:42:11Z - Date Added2013-12-29T12:40:09Z - Bit Rate128 - Sample Rate44100 - CommentsfileRename @ sourceforge.net - Artwork Count1 - Persistent ID1EB497623E2C8FBC - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/15%20Harmonica%20For%20Dummies.mp3 - File Folder Count4 - Library Folder Count1 - - 11216 - - Track ID11216 - NameHarmonica For Dummies - ArtistHarmonica For Dummies - Album ArtistHarmonica For Dummies - AlbumWinslow Yerxa - GenreOther - KindMPEG audio file - Size529344 - Total Time24946 - Track Number16 - Year2010 - Date Modified2013-12-29T12:42:11Z - Date Added2013-12-29T12:40:09Z - Bit Rate128 - Sample Rate44100 - CommentsfileRename @ sourceforge.net - Artwork Count1 - Persistent ID13DD7A40E4C99E10 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/16%20Harmonica%20For%20Dummies.mp3 - File Folder Count4 - Library Folder Count1 - - 11218 - - Track ID11218 - NameHarmonica For Dummies - ArtistHarmonica For Dummies - Album ArtistHarmonica For Dummies - AlbumWinslow Yerxa - GenreOther - KindMPEG audio file - Size383394 - Total Time15804 - Track Number17 - Year2010 - Date Modified2013-12-29T12:42:12Z - Date Added2013-12-29T12:40:10Z - Bit Rate128 - Sample Rate44100 - CommentsfileRename @ sourceforge.net - Artwork Count1 - Persistent ID64D5C86EFD8160BF - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/17%20Harmonica%20For%20Dummies.mp3 - File Folder Count4 - Library Folder Count1 - - 11220 - - Track ID11220 - NameHarmonica For Dummies - ArtistHarmonica For Dummies - Album ArtistHarmonica For Dummies - AlbumWinslow Yerxa - GenreOther - KindMPEG audio file - Size554700 - Total Time35160 - Track Number18 - Year2010 - Date Modified2013-12-29T12:42:12Z - Date Added2013-12-29T12:40:10Z - Bit Rate96 - Sample Rate22050 - CommentsfileRename @ sourceforge.net - Artwork Count1 - Persistent ID4DF533B95EDD0C04 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/18%20Harmonica%20For%20Dummies.mp3 - File Folder Count4 - Library Folder Count1 - - 11222 - - Track ID11222 - NameHarmonica For Dummies - ArtistHarmonica For Dummies - Album ArtistHarmonica For Dummies - AlbumWinslow Yerxa - GenreOther - KindMPEG audio file - Size768702 - Total Time39941 - Track Number19 - Year2010 - Date Modified2013-12-29T12:42:12Z - Date Added2013-12-29T12:40:10Z - Bit Rate128 - Sample Rate44100 - CommentsfileRename @ sourceforge.net - Artwork Count1 - Persistent ID29AD155B2A52F2EE - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/19%20Harmonica%20For%20Dummies.mp3 - File Folder Count4 - Library Folder Count1 - - 11224 - - Track ID11224 - NameHarmonica For Dummies - ArtistHarmonica For Dummies - Album ArtistHarmonica For Dummies - AlbumWinslow Yerxa - GenreOther - KindMPEG audio file - Size631498 - Total Time41560 - Track Number20 - Year2010 - Date Modified2013-12-29T12:42:12Z - Date Added2013-12-29T12:40:10Z - Bit Rate96 - Sample Rate22050 - CommentsfileRename @ sourceforge.net - Artwork Count1 - Persistent ID0663E015A3909108 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/20%20Harmonica%20For%20Dummies.mp3 - File Folder Count4 - Library Folder Count1 - - 11226 - - Track ID11226 - NameHarmonica For Dummies - ArtistHarmonica For Dummies - Album ArtistHarmonica For Dummies - AlbumWinslow Yerxa - GenreOther - KindMPEG audio file - Size488478 - Total Time22334 - Track Number21 - Year2010 - Date Modified2013-12-29T12:42:12Z - Date Added2013-12-29T12:40:10Z - Bit Rate128 - Sample Rate44100 - CommentsfileRename @ sourceforge.net - Artwork Count1 - Persistent IDAB0B8C08C6A2E0E8 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/21%20Harmonica%20For%20Dummies.mp3 - File Folder Count4 - Library Folder Count1 - - 11228 - - Track ID11228 - NameHarmonica For Dummies - ArtistHarmonica For Dummies - Album ArtistHarmonica For Dummies - AlbumWinslow Yerxa - GenreOther - KindMPEG audio file - Size814989 - Total Time42840 - Track Number22 - Year2010 - Date Modified2013-12-29T12:42:12Z - Date Added2013-12-29T12:40:10Z - Bit Rate128 - Sample Rate44100 - CommentsfileRename @ sourceforge.net - Artwork Count1 - Persistent ID5EDED2496225DD0B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/22%20Harmonica%20For%20Dummies.mp3 - File Folder Count4 - Library Folder Count1 - - 11230 - - Track ID11230 - NameHarmonica For Dummies - ArtistHarmonica For Dummies - Album ArtistHarmonica For Dummies - AlbumWinslow Yerxa - GenreOther - KindMPEG audio file - Size353370 - Total Time13923 - Track Number23 - Year2010 - Date Modified2013-12-29T12:42:12Z - Date Added2013-12-29T12:40:10Z - Bit Rate128 - Sample Rate44100 - CommentsfileRename @ sourceforge.net - Artwork Count1 - Persistent IDF266963BAEDCF358 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/23%20Harmonica%20For%20Dummies.mp3 - File Folder Count4 - Library Folder Count1 - - 11232 - - Track ID11232 - NameHarmonica For Dummies - ArtistHarmonica For Dummies - Album ArtistHarmonica For Dummies - AlbumWinslow Yerxa - GenreOther - KindMPEG audio file - Size369633 - Total Time14942 - Track Number24 - Year2010 - Date Modified2013-12-29T12:42:12Z - Date Added2013-12-29T12:40:11Z - Bit Rate128 - Sample Rate44100 - CommentsfileRename @ sourceforge.net - Artwork Count1 - Persistent IDBEDDBF2A070E8486 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/24%20Harmonica%20For%20Dummies.mp3 - File Folder Count4 - Library Folder Count1 - - 11234 - - Track ID11234 - NameHarmonica For Dummies - ArtistHarmonica For Dummies - Album ArtistHarmonica For Dummies - AlbumWinslow Yerxa - GenreOther - KindMPEG audio file - Size881709 - Total Time47020 - Track Number25 - Year2010 - Date Modified2013-12-29T12:42:12Z - Date Added2013-12-29T12:40:11Z - Bit Rate128 - Sample Rate44100 - CommentsfileRename @ sourceforge.net - Artwork Count1 - Persistent IDE962AE109896A2FE - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/25%20Harmonica%20For%20Dummies.mp3 - File Folder Count4 - Library Folder Count1 - - 11236 - - Track ID11236 - NameHarmonica For Dummies - ArtistHarmonica For Dummies - Album ArtistHarmonica For Dummies - AlbumWinslow Yerxa - GenreOther - KindMPEG audio file - Size326265 - Total Time12225 - Track Number26 - Year2010 - Date Modified2013-12-29T12:42:12Z - Date Added2013-12-29T12:40:11Z - Bit Rate128 - Sample Rate44100 - CommentsfileRename @ sourceforge.net - Artwork Count1 - Persistent ID15E4358DAE64B7DD - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/26%20Harmonica%20For%20Dummies.mp3 - File Folder Count4 - Library Folder Count1 - - 11238 - - Track ID11238 - NameHarmonica For Dummies - ArtistHarmonica For Dummies - Album ArtistHarmonica For Dummies - AlbumWinslow Yerxa - GenreOther - KindMPEG audio file - Size1345830 - Total Time76094 - Track Number27 - Year2010 - Date Modified2013-12-29T12:42:12Z - Date Added2013-12-29T12:40:11Z - Bit Rate128 - Sample Rate44100 - CommentsfileRename @ sourceforge.net - Artwork Count1 - Persistent IDFE9824E4D46632A7 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/27%20Harmonica%20For%20Dummies.mp3 - File Folder Count4 - Library Folder Count1 - - 11240 - - Track ID11240 - NameHarmonica For Dummies - ArtistHarmonica For Dummies - Album ArtistHarmonica For Dummies - AlbumWinslow Yerxa - GenreOther - KindMPEG audio file - Size646104 - Total Time32261 - Track Number28 - Year2010 - Date Modified2013-12-29T12:42:13Z - Date Added2013-12-29T12:40:12Z - Bit Rate128 - Sample Rate44100 - CommentsfileRename @ sourceforge.net - Artwork Count1 - Persistent ID51A0E6D6E3B9F386 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/28%20Harmonica%20For%20Dummies.mp3 - File Folder Count4 - Library Folder Count1 - - 11242 - - Track ID11242 - NameHarmonica For Dummies - ArtistHarmonica For Dummies - Album ArtistHarmonica For Dummies - AlbumWinslow Yerxa - GenreOther - KindMPEG audio file - Size628366 - Total Time41299 - Track Number29 - Year2010 - Date Modified2013-12-29T12:42:13Z - Date Added2013-12-29T12:40:12Z - Bit Rate96 - Sample Rate22050 - CommentsfileRename @ sourceforge.net - Artwork Count1 - Persistent ID2ABBBBA40E9C6D15 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/29%20Harmonica%20For%20Dummies.mp3 - File Folder Count4 - Library Folder Count1 - - 11244 - - Track ID11244 - NameHarmonica For Dummies - ArtistHarmonica For Dummies - Album ArtistHarmonica For Dummies - AlbumWinslow Yerxa - GenreOther - KindMPEG audio file - Size319593 - Total Time11781 - Track Number30 - Year2010 - Date Modified2013-12-29T12:42:13Z - Date Added2013-12-29T12:40:12Z - Bit Rate128 - Sample Rate44100 - CommentsfileRename @ sourceforge.net - Artwork Count1 - Persistent ID131D5B844086AFA5 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/30%20Harmonica%20For%20Dummies.mp3 - File Folder Count4 - Library Folder Count1 - - 11246 - - Track ID11246 - NameHarmonica For Dummies - ArtistHarmonica For Dummies - Album ArtistHarmonica For Dummies - AlbumWinslow Yerxa - GenreOther - KindMPEG audio file - Size810819 - Total Time42579 - Track Number31 - Year2010 - Date Modified2013-12-29T12:42:13Z - Date Added2013-12-29T12:40:12Z - Bit Rate128 - Sample Rate44100 - CommentsfileRename @ sourceforge.net - Artwork Count1 - Persistent ID5CF5F02B08C1FC0A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/31%20Harmonica%20For%20Dummies.mp3 - File Folder Count4 - Library Folder Count1 - - 11248 - - Track ID11248 - NameHarmonica For Dummies - ArtistHarmonica For Dummies - Album ArtistHarmonica For Dummies - AlbumWinslow Yerxa - GenreOther - KindMPEG audio file - Size928413 - Total Time49946 - Track Number32 - Year2010 - Date Modified2013-12-29T12:42:13Z - Date Added2013-12-29T12:40:13Z - Bit Rate128 - Sample Rate44100 - CommentsfileRename @ sourceforge.net - Artwork Count1 - Persistent ID65B2D3140A572371 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/32%20Harmonica%20For%20Dummies.mp3 - File Folder Count4 - Library Folder Count1 - - 11250 - - Track ID11250 - NameHarmonica For Dummies - ArtistHarmonica For Dummies - Album ArtistHarmonica For Dummies - AlbumWinslow Yerxa - GenreOther - KindMPEG audio file - Size568959 - Total Time27428 - Track Number33 - Year2010 - Date Modified2013-12-29T12:42:13Z - Date Added2013-12-29T12:40:13Z - Bit Rate128 - Sample Rate44100 - CommentsfileRename @ sourceforge.net - Artwork Count1 - Persistent ID9C85DAB184463589 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/33%20Harmonica%20For%20Dummies.mp3 - File Folder Count4 - Library Folder Count1 - - 11252 - - Track ID11252 - NameHarmonica For Dummies - ArtistHarmonica For Dummies - Album ArtistHarmonica For Dummies - AlbumWinslow Yerxa - GenreOther - KindMPEG audio file - Size401742 - Total Time16953 - Track Number34 - Year2010 - Date Modified2013-12-29T12:42:13Z - Date Added2013-12-29T12:40:13Z - Bit Rate128 - Sample Rate44100 - CommentsfileRename @ sourceforge.net - Artwork Count1 - Persistent ID101D968FF58CAD48 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/34%20Harmonica%20For%20Dummies.mp3 - File Folder Count4 - Library Folder Count1 - - 11254 - - Track ID11254 - NameHarmonica For Dummies - ArtistHarmonica For Dummies - Album ArtistHarmonica For Dummies - AlbumWinslow Yerxa - GenreOther - KindMPEG audio file - Size661950 - Total Time33253 - Track Number35 - Year2010 - Date Modified2013-12-29T12:42:13Z - Date Added2013-12-29T12:40:14Z - Bit Rate128 - Sample Rate44100 - CommentsfileRename @ sourceforge.net - Artwork Count1 - Persistent IDD92D6AF504108BE4 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/35%20Harmonica%20For%20Dummies.mp3 - File Folder Count4 - Library Folder Count1 - - 11256 - - Track ID11256 - NameHarmonica For Dummies - ArtistHarmonica For Dummies - Album ArtistHarmonica For Dummies - AlbumWinslow Yerxa - GenreOther - KindMPEG audio file - Size701148 - Total Time35709 - Track Number36 - Year2010 - Date Modified2013-12-29T12:42:13Z - Date Added2013-12-29T12:40:15Z - Bit Rate128 - Sample Rate44100 - CommentsfileRename @ sourceforge.net - Artwork Count1 - Persistent IDB490448A1FCB455E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/36%20Harmonica%20For%20Dummies.mp3 - File Folder Count4 - Library Folder Count1 - - 11258 - - Track ID11258 - NameHarmonica For Dummies - ArtistHarmonica For Dummies - Album ArtistHarmonica For Dummies - AlbumWinslow Yerxa - GenreOther - KindMPEG audio file - Size260378 - Total Time8097 - Track Number37 - Year2010 - Date Modified2013-12-29T12:42:13Z - Date Added2013-12-29T12:40:15Z - Bit Rate128 - Sample Rate44100 - CommentsfileRename @ sourceforge.net - Artwork Count1 - Persistent ID5D9239C375A8C144 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/37%20Harmonica%20For%20Dummies.mp3 - File Folder Count4 - Library Folder Count1 - - 11260 - - Track ID11260 - NameHarmonica For Dummies - ArtistHarmonica For Dummies - Album ArtistHarmonica For Dummies - AlbumWinslow Yerxa - GenreOther - KindMPEG audio file - Size1226568 - Total Time68466 - Track Number38 - Year2010 - Date Modified2013-12-29T12:42:13Z - Date Added2013-12-29T12:40:15Z - Bit Rate128 - Sample Rate44100 - CommentsfileRename @ sourceforge.net - Artwork Count1 - Persistent IDBACF9A5BE00423EA - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/38%20Harmonica%20For%20Dummies.mp3 - File Folder Count4 - Library Folder Count1 - - 11262 - - Track ID11262 - NameHarmonica For Dummies - ArtistHarmonica For Dummies - Album ArtistHarmonica For Dummies - AlbumWinslow Yerxa - GenreOther - KindMPEG audio file - Size355872 - Total Time14080 - Track Number39 - Year2010 - Date Modified2013-12-29T12:42:13Z - Date Added2013-12-29T12:40:15Z - Bit Rate128 - Sample Rate44100 - CommentsfileRename @ sourceforge.net - Artwork Count1 - Persistent ID94C7653EAC230DD6 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/39%20Harmonica%20For%20Dummies.mp3 - File Folder Count4 - Library Folder Count1 - - 11264 - - Track ID11264 - NameHarmonica For Dummies - ArtistHarmonica For Dummies - Album ArtistHarmonica For Dummies - AlbumWinslow Yerxa - GenreOther - KindMPEG audio file - Size394236 - Total Time16483 - Track Number40 - Year2010 - Date Modified2013-12-29T12:42:14Z - Date Added2013-12-29T12:40:16Z - Bit Rate128 - Sample Rate44100 - CommentsfileRename @ sourceforge.net - Artwork Count1 - Persistent IDE1CF9FD58D7440AD - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/40%20Harmonica%20For%20Dummies.mp3 - File Folder Count4 - Library Folder Count1 - - 11266 - - Track ID11266 - NameHarmonica For Dummies - ArtistHarmonica For Dummies - Album ArtistHarmonica For Dummies - AlbumWinslow Yerxa - GenreOther - KindMPEG audio file - Size224516 - Total Time5851 - Track Number41 - Year2010 - Date Modified2013-12-29T12:42:14Z - Date Added2013-12-29T12:40:16Z - Bit Rate128 - Sample Rate44100 - CommentsfileRename @ sourceforge.net - Artwork Count1 - Persistent ID570AB6CA65C6AA4D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/41%20Harmonica%20For%20Dummies.mp3 - File Folder Count4 - Library Folder Count1 - - 11268 - - Track ID11268 - NameHarmonica For Dummies - ArtistHarmonica For Dummies - Album ArtistHarmonica For Dummies - AlbumWinslow Yerxa - GenreOther - KindMPEG audio file - Size232856 - Total Time6373 - Track Number42 - Year2010 - Date Modified2013-12-29T12:42:14Z - Date Added2013-12-29T12:40:16Z - Bit Rate128 - Sample Rate44100 - CommentsfileRename @ sourceforge.net - Artwork Count1 - Persistent IDD5055206AA371B40 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/42%20Harmonica%20For%20Dummies.mp3 - File Folder Count4 - Library Folder Count1 - - 11270 - - Track ID11270 - NameHarmonica For Dummies - ArtistHarmonica For Dummies - Album ArtistHarmonica For Dummies - AlbumWinslow Yerxa - GenreOther - KindMPEG audio file - Size1332903 - Total Time75284 - Track Number43 - Year2010 - Date Modified2013-12-29T12:42:13Z - Date Added2013-12-29T12:40:16Z - Bit Rate128 - Sample Rate44100 - CommentsfileRename @ sourceforge.net - Artwork Count1 - Persistent IDB4F3C0D45C699979 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/43%20Harmonica%20For%20Dummies.mp3 - File Folder Count4 - Library Folder Count1 - - 11272 - - Track ID11272 - NameHarmonica For Dummies - ArtistHarmonica For Dummies - Album ArtistHarmonica For Dummies - AlbumWinslow Yerxa - GenreOther - KindMPEG audio file - Size1072695 - Total Time58984 - Track Number44 - Year2010 - Date Modified2013-12-29T12:42:14Z - Date Added2013-12-29T12:40:17Z - Bit Rate128 - Sample Rate44100 - CommentsfileRename @ sourceforge.net - Artwork Count1 - Persistent ID02A67450D79159D0 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/44%20Harmonica%20For%20Dummies.mp3 - File Folder Count4 - Library Folder Count1 - - 11274 - - Track ID11274 - NameHarmonica For Dummies - ArtistHarmonica For Dummies - Album ArtistHarmonica For Dummies - AlbumWinslow Yerxa - GenreOther - KindMPEG audio file - Size513081 - Total Time23928 - Track Number45 - Year2010 - Date Modified2013-12-29T12:42:14Z - Date Added2013-12-29T12:40:17Z - Bit Rate128 - Sample Rate44100 - CommentsfileRename @ sourceforge.net - Artwork Count1 - Persistent ID4BABFE94C4097428 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/45%20Harmonica%20For%20Dummies.mp3 - File Folder Count4 - Library Folder Count1 - - 11276 - - Track ID11276 - NameHarmonica For Dummies - ArtistHarmonica For Dummies - Album ArtistHarmonica For Dummies - AlbumWinslow Yerxa - GenreOther - KindMPEG audio file - Size1505541 - Total Time86099 - Track Number46 - Year2010 - Date Modified2013-12-29T12:42:14Z - Date Added2013-12-29T12:40:17Z - Bit Rate128 - Sample Rate44100 - CommentsfileRename @ sourceforge.net - Artwork Count1 - Persistent ID29E1D8BA25537C8B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/46%20Harmonica%20For%20Dummies.mp3 - File Folder Count4 - Library Folder Count1 - - 11278 - - Track ID11278 - NameHarmonica For Dummies - ArtistHarmonica For Dummies - Album ArtistHarmonica For Dummies - AlbumWinslow Yerxa - GenreOther - KindMPEG audio file - Size1186968 - Total Time87849 - Track Number47 - Year2010 - Date Modified2013-12-29T12:42:14Z - Date Added2013-12-29T12:40:18Z - Bit Rate96 - Sample Rate22050 - CommentsfileRename @ sourceforge.net - Artwork Count1 - Persistent IDEE16A53D0F4EEF99 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/47%20Harmonica%20For%20Dummies.mp3 - File Folder Count4 - Library Folder Count1 - - 11280 - - Track ID11280 - NameHarmonica For Dummies - ArtistHarmonica For Dummies - Album ArtistHarmonica For Dummies - AlbumWinslow Yerxa - GenreOther - KindMPEG audio file - Size1913785 - Total Time111673 - Track Number48 - Year2010 - Date Modified2013-12-29T12:42:14Z - Date Added2013-12-29T12:40:18Z - Bit Rate128 - Sample Rate44100 - CommentsfileRename @ sourceforge.net - Artwork Count1 - Persistent ID36A715FD516E3AD2 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/48%20Harmonica%20For%20Dummies.mp3 - File Folder Count4 - Library Folder Count1 - - 11282 - - Track ID11282 - NameHarmonica For Dummies - ArtistHarmonica For Dummies - Album ArtistHarmonica For Dummies - AlbumWinslow Yerxa - GenreOther - KindMPEG audio file - Size1912951 - Total Time111621 - Track Number49 - Year2010 - Date Modified2013-12-29T12:42:14Z - Date Added2013-12-29T12:40:19Z - Bit Rate128 - Sample Rate44100 - CommentsfileRename @ sourceforge.net - Artwork Count1 - Persistent IDBFFDDFD684C5044E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/49%20Harmonica%20For%20Dummies.mp3 - File Folder Count4 - Library Folder Count1 - - 11284 - - Track ID11284 - NameHarmonica For Dummies - ArtistHarmonica For Dummies - Album ArtistHarmonica For Dummies - AlbumWinslow Yerxa - GenreOther - KindMPEG audio file - Size1480693 - Total Time112326 - Track Number50 - Year2010 - Date Modified2013-12-29T12:42:15Z - Date Added2013-12-29T12:40:20Z - Bit Rate96 - Sample Rate22050 - CommentsfileRename @ sourceforge.net - Artwork Count1 - Persistent ID19EB1048F6582964 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/50%20Harmonica%20For%20Dummies.mp3 - File Folder Count4 - Library Folder Count1 - - 11286 - - Track ID11286 - NameHarmonica For Dummies - ArtistHarmonica For Dummies - Album ArtistHarmonica For Dummies - AlbumWinslow Yerxa - GenreOther - KindMPEG audio file - Size1916704 - Total Time111856 - Track Number51 - Year2010 - Date Modified2013-12-29T12:42:15Z - Date Added2013-12-29T12:40:20Z - Bit Rate128 - Sample Rate44100 - CommentsfileRename @ sourceforge.net - Artwork Count1 - Persistent ID31D904995AD08BD0 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/51%20Harmonica%20For%20Dummies.mp3 - File Folder Count4 - Library Folder Count1 - - 11288 - - Track ID11288 - NameHarmonica For Dummies - ArtistHarmonica For Dummies - Album ArtistHarmonica For Dummies - AlbumWinslow Yerxa - GenreOther - KindMPEG audio file - Size1917955 - Total Time111934 - Track Number52 - Year2010 - Date Modified2013-12-29T12:42:15Z - Date Added2013-12-29T12:40:21Z - Bit Rate128 - Sample Rate44100 - CommentsfileRename @ sourceforge.net - Artwork Count1 - Persistent IDC1E283119955283B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/52%20Harmonica%20For%20Dummies.mp3 - File Folder Count4 - Library Folder Count1 - - 11290 - - Track ID11290 - NameHarmonica For Dummies - ArtistHarmonica For Dummies - Album ArtistHarmonica For Dummies - AlbumWinslow Yerxa - GenreOther - KindMPEG audio file - Size1919206 - Total Time112013 - Track Number53 - Year2010 - Date Modified2013-12-29T12:42:15Z - Date Added2013-12-29T12:40:21Z - Bit Rate128 - Sample Rate44100 - CommentsfileRename @ sourceforge.net - Artwork Count1 - Persistent ID7DE839B4D4C15DB5 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/53%20Harmonica%20For%20Dummies.mp3 - File Folder Count4 - Library Folder Count1 - - 11292 - - Track ID11292 - NameHarmonica For Dummies - ArtistHarmonica For Dummies - Album ArtistHarmonica For Dummies - AlbumWinslow Yerxa - GenreOther - KindMPEG audio file - Size794556 - Total Time41560 - Track Number54 - Year2010 - Date Modified2013-12-29T12:42:16Z - Date Added2013-12-29T12:40:22Z - Bit Rate128 - Sample Rate44100 - CommentsfileRename @ sourceforge.net - Artwork Count1 - Persistent ID5EE1452218B167E1 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/54%20Harmonica%20For%20Dummies.mp3 - File Folder Count4 - Library Folder Count1 - - 11294 - - Track ID11294 - NameHarmonica For Dummies - ArtistHarmonica For Dummies - Album ArtistHarmonica For Dummies - AlbumWinslow Yerxa - GenreOther - KindMPEG audio file - Size677265 - Total Time45374 - Track Number55 - Year2010 - Date Modified2013-12-29T12:42:15Z - Date Added2013-12-29T12:40:22Z - Bit Rate96 - Sample Rate22050 - CommentsfileRename @ sourceforge.net - Artwork Count1 - Persistent IDDE33E11B2FF3322B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/55%20Harmonica%20For%20Dummies.mp3 - File Folder Count4 - Library Folder Count1 - - 11296 - - Track ID11296 - NameHarmonica For Dummies - ArtistHarmonica For Dummies - Album ArtistHarmonica For Dummies - AlbumWinslow Yerxa - GenreOther - KindMPEG audio file - Size648745 - Total Time42997 - Track Number56 - Year2010 - Date Modified2013-12-29T12:42:15Z - Date Added2013-12-29T12:40:22Z - Bit Rate96 - Sample Rate22050 - CommentsfileRename @ sourceforge.net - Artwork Count1 - Persistent IDDF4B0A1A22260C66 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/56%20Harmonica%20For%20Dummies.mp3 - File Folder Count4 - Library Folder Count1 - - 11298 - - Track ID11298 - NameHarmonica For Dummies - ArtistHarmonica For Dummies - Album ArtistHarmonica For Dummies - AlbumWinslow Yerxa - GenreOther - KindMPEG audio file - Size765040 - Total Time52688 - Track Number57 - Year2010 - Date Modified2013-12-29T12:42:15Z - Date Added2013-12-29T12:40:22Z - Bit Rate96 - Sample Rate22050 - CommentsfileRename @ sourceforge.net - Artwork Count1 - Persistent ID57C7B3807FFEC228 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/57%20Harmonica%20For%20Dummies.mp3 - File Folder Count4 - Library Folder Count1 - - 11300 - - Track ID11300 - NameHarmonica For Dummies - ArtistHarmonica For Dummies - Album ArtistHarmonica For Dummies - AlbumWinslow Yerxa - GenreOther - KindMPEG audio file - Size955518 - Total Time51644 - Track Number58 - Year2010 - Date Modified2013-12-29T12:42:15Z - Date Added2013-12-29T12:40:22Z - Bit Rate128 - Sample Rate44100 - CommentsfileRename @ sourceforge.net - Artwork Count1 - Persistent ID9C4DBDE84B721D91 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/58%20Harmonica%20For%20Dummies.mp3 - File Folder Count4 - Library Folder Count1 - - 11302 - - Track ID11302 - NameHarmonica For Dummies - ArtistHarmonica For Dummies - Album ArtistHarmonica For Dummies - AlbumWinslow Yerxa - GenreOther - KindMPEG audio file - Size382294 - Total Time20793 - Track Number59 - Year2010 - Date Modified2013-12-29T12:42:16Z - Date Added2013-12-29T12:40:23Z - Bit Rate96 - Sample Rate22050 - CommentsfileRename @ sourceforge.net - Artwork Count1 - Persistent ID4C10ADB34CEEFE0D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/59%20Harmonica%20For%20Dummies.mp3 - File Folder Count4 - Library Folder Count1 - - 11304 - - Track ID11304 - NameHarmonica For Dummies - ArtistHarmonica For Dummies - Album ArtistHarmonica For Dummies - AlbumWinslow Yerxa - GenreOther - KindMPEG audio file - Size707820 - Total Time36127 - Track Number60 - Year2010 - Date Modified2013-12-29T12:42:16Z - Date Added2013-12-29T12:40:23Z - Bit Rate128 - Sample Rate44100 - CommentsfileRename @ sourceforge.net - Artwork Count1 - Persistent ID7B7EC87C32A70F69 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/60%20Harmonica%20For%20Dummies.mp3 - File Folder Count4 - Library Folder Count1 - - 11306 - - Track ID11306 - NameHarmonica For Dummies - ArtistHarmonica For Dummies - Album ArtistHarmonica For Dummies - AlbumWinslow Yerxa - GenreOther - KindMPEG audio file - Size731172 - Total Time37590 - Track Number61 - Year2010 - Date Modified2013-12-29T12:42:16Z - Date Added2013-12-29T12:40:23Z - Bit Rate128 - Sample Rate44100 - CommentsfileRename @ sourceforge.net - Artwork Count1 - Persistent ID07FDF7694D6CA28A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/61%20Harmonica%20For%20Dummies.mp3 - File Folder Count4 - Library Folder Count1 - - 11308 - - Track ID11308 - NameHarmonica For Dummies - ArtistHarmonica For Dummies - Album ArtistHarmonica For Dummies - AlbumWinslow Yerxa - GenreOther - KindMPEG audio file - Size760362 - Total Time39418 - Track Number62 - Year2010 - Date Modified2013-12-29T12:42:16Z - Date Added2013-12-29T12:40:23Z - Bit Rate128 - Sample Rate44100 - CommentsfileRename @ sourceforge.net - Artwork Count1 - Persistent ID0D91C56A512F7524 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/62%20Harmonica%20For%20Dummies.mp3 - File Folder Count4 - Library Folder Count1 - - 11310 - - Track ID11310 - NameHarmonica For Dummies - ArtistHarmonica For Dummies - Album ArtistHarmonica For Dummies - AlbumWinslow Yerxa - GenreOther - KindMPEG audio file - Size725334 - Total Time37224 - Track Number63 - Year2010 - Date Modified2013-12-29T12:42:16Z - Date Added2013-12-29T12:40:24Z - Bit Rate128 - Sample Rate44100 - CommentsfileRename @ sourceforge.net - Artwork Count1 - Persistent ID9250A0AFE89450FB - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/63%20Harmonica%20For%20Dummies.mp3 - File Folder Count4 - Library Folder Count1 - - 11312 - - Track ID11312 - NameHarmonica For Dummies - ArtistHarmonica For Dummies - Album ArtistHarmonica For Dummies - AlbumWinslow Yerxa - GenreOther - KindMPEG audio file - Size345864 - Total Time13453 - Track Number64 - Year2010 - Date Modified2013-12-29T12:42:16Z - Date Added2013-12-29T12:40:24Z - Bit Rate128 - Sample Rate44100 - CommentsfileRename @ sourceforge.net - Artwork Count1 - Persistent IDD389110B1E2351DD - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/64%20Harmonica%20For%20Dummies.mp3 - File Folder Count4 - Library Folder Count1 - - 11314 - - Track ID11314 - NameHarmonica For Dummies - ArtistHarmonica For Dummies - Album ArtistHarmonica For Dummies - AlbumWinslow Yerxa - GenreOther - KindMPEG audio file - Size245366 - Total Time7157 - Track Number65 - Year2010 - Date Modified2013-12-29T12:42:16Z - Date Added2013-12-29T12:40:24Z - Bit Rate128 - Sample Rate44100 - CommentsfileRename @ sourceforge.net - Artwork Count1 - Persistent IDF64231A000FEB7FA - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/65%20Harmonica%20For%20Dummies.mp3 - File Folder Count4 - Library Folder Count1 - - 11316 - - Track ID11316 - NameHarmonica For Dummies - ArtistHarmonica For Dummies - Album ArtistHarmonica For Dummies - AlbumWinslow Yerxa - GenreOther - KindMPEG audio file - Size297909 - Total Time10448 - Track Number66 - Year2010 - Date Modified2013-12-29T12:42:16Z - Date Added2013-12-29T12:40:24Z - Bit Rate128 - Sample Rate44100 - CommentsfileRename @ sourceforge.net - Artwork Count1 - Persistent ID8AD6F6C182D16B6D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/66%20Harmonica%20For%20Dummies.mp3 - File Folder Count4 - Library Folder Count1 - - 11318 - - Track ID11318 - NameHarmonica For Dummies - ArtistHarmonica For Dummies - Album ArtistHarmonica For Dummies - AlbumWinslow Yerxa - GenreOther - KindMPEG audio file - Size513081 - Total Time23928 - Track Number67 - Year2010 - Date Modified2013-12-29T12:42:16Z - Date Added2013-12-29T12:40:24Z - Bit Rate128 - Sample Rate44100 - CommentsfileRename @ sourceforge.net - Artwork Count1 - Persistent ID4642978DBA68AF6C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/67%20Harmonica%20For%20Dummies.mp3 - File Folder Count4 - Library Folder Count1 - - 11320 - - Track ID11320 - NameHarmonica For Dummies - ArtistHarmonica For Dummies - Album ArtistHarmonica For Dummies - AlbumWinslow Yerxa - GenreOther - KindMPEG audio file - Size1098132 - Total Time60577 - Track Number68 - Year2010 - Date Modified2013-12-29T12:42:16Z - Date Added2013-12-29T12:40:24Z - Bit Rate128 - Sample Rate44100 - CommentsfileRename @ sourceforge.net - Artwork Count1 - Persistent ID7CD3A71EC2151835 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/68%20Harmonica%20For%20Dummies.mp3 - File Folder Count4 - Library Folder Count1 - - 11322 - - Track ID11322 - NameHarmonica For Dummies - ArtistHarmonica For Dummies - Album ArtistHarmonica For Dummies - AlbumWinslow Yerxa - GenreOther - KindMPEG audio file - Size446361 - Total Time19748 - Track Number69 - Year2010 - Date Modified2013-12-29T12:42:17Z - Date Added2013-12-29T12:40:25Z - Bit Rate128 - Sample Rate44100 - CommentsfileRename @ sourceforge.net - Artwork Count1 - Persistent ID5FA157665288342B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/69%20Harmonica%20For%20Dummies.mp3 - File Folder Count4 - Library Folder Count1 - - 11324 - - Track ID11324 - NameHarmonica For Dummies - ArtistHarmonica For Dummies - Album ArtistHarmonica For Dummies - AlbumWinslow Yerxa - GenreOther - KindMPEG audio file - Size910482 - Total Time48822 - Track Number70 - Year2010 - Date Modified2013-12-29T12:42:17Z - Date Added2013-12-29T12:40:25Z - Bit Rate128 - Sample Rate44100 - CommentsfileRename @ sourceforge.net - Artwork Count1 - Persistent ID180F0E3D6A99E1A3 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/70%20Harmonica%20For%20Dummies.mp3 - File Folder Count4 - Library Folder Count1 - - 11326 - - Track ID11326 - NameHarmonica For Dummies - ArtistHarmonica For Dummies - Album ArtistHarmonica For Dummies - AlbumWinslow Yerxa - GenreOther - KindMPEG audio file - Size461373 - Total Time20688 - Track Number71 - Year2010 - Date Modified2013-12-29T12:42:17Z - Date Added2013-12-29T12:40:25Z - Bit Rate128 - Sample Rate44100 - CommentsfileRename @ sourceforge.net - Artwork Count1 - Persistent IDD791B54A691BEF6C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/71%20Harmonica%20For%20Dummies.mp3 - File Folder Count4 - Library Folder Count1 - - 11328 - - Track ID11328 - NameHarmonica For Dummies - ArtistHarmonica For Dummies - Album ArtistHarmonica For Dummies - AlbumWinslow Yerxa - GenreOther - KindMPEG audio file - Size656946 - Total Time32940 - Track Number72 - Year2010 - Date Modified2013-12-29T12:42:17Z - Date Added2013-12-29T12:40:25Z - Bit Rate128 - Sample Rate44100 - CommentsfileRename @ sourceforge.net - Artwork Count1 - Persistent ID3BDE67351F0BEEF7 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/72%20Harmonica%20For%20Dummies.mp3 - File Folder Count4 - Library Folder Count1 - - 11330 - - Track ID11330 - NameHarmonica For Dummies - ArtistHarmonica For Dummies - Album ArtistHarmonica For Dummies - AlbumWinslow Yerxa - GenreOther - KindMPEG audio file - Size1451748 - Total Time82729 - Track Number73 - Year2010 - Date Modified2013-12-29T12:42:16Z - Date Added2013-12-29T12:40:25Z - Bit Rate128 - Sample Rate44100 - CommentsfileRename @ sourceforge.net - Artwork Count1 - Persistent IDFE4BD423A2249F0A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/73%20Harmonica%20For%20Dummies.mp3 - File Folder Count4 - Library Folder Count1 - - 11332 - - Track ID11332 - NameHarmonica For Dummies - ArtistHarmonica For Dummies - Album ArtistHarmonica For Dummies - AlbumWinslow Yerxa - GenreOther - KindMPEG audio file - Size713658 - Total Time36493 - Track Number74 - Year2010 - Date Modified2013-12-29T12:42:18Z - Date Added2013-12-29T12:40:26Z - Bit Rate128 - Sample Rate44100 - CommentsfileRename @ sourceforge.net - Artwork Count1 - Persistent ID862BF307B9395347 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/74%20Harmonica%20For%20Dummies.mp3 - File Folder Count4 - Library Folder Count1 - - 11334 - - Track ID11334 - NameHarmonica For Dummies - ArtistHarmonica For Dummies - Album ArtistHarmonica For Dummies - AlbumWinslow Yerxa - GenreOther - KindMPEG audio file - Size724500 - Total Time37172 - Track Number75 - Year2010 - Date Modified2013-12-29T12:42:18Z - Date Added2013-12-29T12:40:26Z - Bit Rate128 - Sample Rate44100 - CommentsfileRename @ sourceforge.net - Artwork Count1 - Persistent IDBE8B801230ADF8FF - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/75%20Harmonica%20For%20Dummies.mp3 - File Folder Count4 - Library Folder Count1 - - 11336 - - Track ID11336 - NameHarmonica For Dummies - ArtistHarmonica For Dummies - Album ArtistHarmonica For Dummies - AlbumWinslow Yerxa - GenreOther - KindMPEG audio file - Size711990 - Total Time36388 - Track Number76 - Year2010 - Date Modified2013-12-29T12:42:18Z - Date Added2013-12-29T12:40:26Z - Bit Rate128 - Sample Rate44100 - CommentsfileRename @ sourceforge.net - Artwork Count1 - Persistent IDE1B9881B500AB8E4 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/76%20Harmonica%20For%20Dummies.mp3 - File Folder Count4 - Library Folder Count1 - - 11338 - - Track ID11338 - NameHarmonica For Dummies - ArtistHarmonica For Dummies - Album ArtistHarmonica For Dummies - AlbumWinslow Yerxa - GenreOther - KindMPEG audio file - Size613161 - Total Time30197 - Track Number77 - Year2010 - Date Modified2013-12-29T12:42:18Z - Date Added2013-12-29T12:40:27Z - Bit Rate128 - Sample Rate44100 - CommentsfileRename @ sourceforge.net - Artwork Count1 - Persistent IDA0B0B506F6507C72 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/77%20Harmonica%20For%20Dummies.mp3 - File Folder Count4 - Library Folder Count1 - - 11340 - - Track ID11340 - NameHarmonica For Dummies - ArtistHarmonica For Dummies - Album ArtistHarmonica For Dummies - AlbumWinslow Yerxa - GenreOther - KindMPEG audio file - Size1260762 - Total Time70765 - Track Number78 - Year2010 - Date Modified2013-12-29T12:42:18Z - Date Added2013-12-29T12:40:27Z - Bit Rate128 - Sample Rate44100 - CommentsfileRename @ sourceforge.net - Artwork Count1 - Persistent ID3940123B7991AF6C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/78%20Harmonica%20For%20Dummies.mp3 - File Folder Count4 - Library Folder Count1 - - 11342 - - Track ID11342 - NameHarmonica For Dummies - ArtistHarmonica For Dummies - Album ArtistHarmonica For Dummies - AlbumWinslow Yerxa - GenreOther - KindMPEG audio file - Size958073 - Total Time69015 - Track Number79 - Year2010 - Date Modified2013-12-29T12:42:18Z - Date Added2013-12-29T12:40:27Z - Bit Rate96 - Sample Rate22050 - CommentsfileRename @ sourceforge.net - Artwork Count1 - Persistent ID55F98F7808CA7F61 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/79%20Harmonica%20For%20Dummies.mp3 - File Folder Count4 - Library Folder Count1 - - 11344 - - Track ID11344 - NameHarmonica For Dummies - ArtistHarmonica For Dummies - Album ArtistHarmonica For Dummies - AlbumWinslow Yerxa - GenreOther - KindMPEG audio file - Size413010 - Total Time23353 - Track Number80 - Year2010 - Date Modified2013-12-29T12:42:18Z - Date Added2013-12-29T12:40:27Z - Bit Rate96 - Sample Rate22050 - CommentsfileRename @ sourceforge.net - Artwork Count1 - Persistent IDB21A9617487FFB34 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/80%20Harmonica%20For%20Dummies.mp3 - File Folder Count4 - Library Folder Count1 - - 11346 - - Track ID11346 - NameHarmonica For Dummies - ArtistHarmonica For Dummies - Album ArtistHarmonica For Dummies - AlbumWinslow Yerxa - GenreOther - KindMPEG audio file - Size510162 - Total Time23745 - Track Number81 - Year2010 - Date Modified2013-12-29T12:42:19Z - Date Added2013-12-29T12:40:28Z - Bit Rate128 - Sample Rate44100 - CommentsfileRename @ sourceforge.net - Artwork Count1 - Persistent ID5EE281C3D6E5D76B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/81%20Harmonica%20For%20Dummies.mp3 - File Folder Count4 - Library Folder Count1 - - 11348 - - Track ID11348 - NameHarmonica For Dummies - ArtistHarmonica For Dummies - Album ArtistHarmonica For Dummies - AlbumWinslow Yerxa - GenreOther - KindMPEG audio file - Size490563 - Total Time22465 - Track Number82 - Year2010 - Date Modified2013-12-29T12:42:19Z - Date Added2013-12-29T12:40:28Z - Bit Rate128 - Sample Rate44100 - CommentsfileRename @ sourceforge.net - Artwork Count1 - Persistent ID48E1314CBBCAE832 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/82%20Harmonica%20For%20Dummies.mp3 - File Folder Count4 - Library Folder Count1 - - 11350 - - Track ID11350 - NameHarmonica For Dummies - ArtistHarmonica For Dummies - Album ArtistHarmonica For Dummies - AlbumWinslow Yerxa - GenreOther - KindMPEG audio file - Size586473 - Total Time28525 - Track Number83 - Year2010 - Date Modified2013-12-29T12:42:19Z - Date Added2013-12-29T12:40:28Z - Bit Rate128 - Sample Rate44100 - CommentsfileRename @ sourceforge.net - Artwork Count1 - Persistent ID965DD5D924D4C220 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/83%20Harmonica%20For%20Dummies.mp3 - File Folder Count4 - Library Folder Count1 - - 11352 - - Track ID11352 - NameHarmonica For Dummies - ArtistHarmonica For Dummies - Album ArtistHarmonica For Dummies - AlbumWinslow Yerxa - GenreOther - KindMPEG audio file - Size444046 - Total Time25939 - Track Number84 - Year2010 - Date Modified2013-12-29T12:42:19Z - Date Added2013-12-29T12:40:28Z - Bit Rate96 - Sample Rate22050 - CommentsfileRename @ sourceforge.net - Artwork Count1 - Persistent ID01E28D793506C2A6 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/84%20Harmonica%20For%20Dummies.mp3 - File Folder Count4 - Library Folder Count1 - - 11354 - - Track ID11354 - NameHarmonica For Dummies - ArtistHarmonica For Dummies - Album ArtistHarmonica For Dummies - AlbumWinslow Yerxa - GenreOther - KindMPEG audio file - Size541854 - Total Time25730 - Track Number85 - Year2010 - Date Modified2013-12-29T12:42:18Z - Date Added2013-12-29T12:40:28Z - Bit Rate128 - Sample Rate44100 - CommentsfileRename @ sourceforge.net - Artwork Count1 - Persistent ID1D758149D5135236 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/85%20Harmonica%20For%20Dummies.mp3 - File Folder Count4 - Library Folder Count1 - - 11356 - - Track ID11356 - NameHarmonica For Dummies - ArtistHarmonica For Dummies - Album ArtistHarmonica For Dummies - AlbumWinslow Yerxa - GenreOther - KindMPEG audio file - Size497235 - Total Time22883 - Track Number86 - Year2010 - Date Modified2013-12-29T12:42:18Z - Date Added2013-12-29T12:40:28Z - Bit Rate128 - Sample Rate44100 - CommentsfileRename @ sourceforge.net - Artwork Count1 - Persistent ID9CB1EEF44ACA6615 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/86%20Harmonica%20For%20Dummies.mp3 - File Folder Count4 - Library Folder Count1 - - 11358 - - Track ID11358 - NameHarmonica For Dummies - ArtistHarmonica For Dummies - Album ArtistHarmonica For Dummies - AlbumWinslow Yerxa - GenreOther - KindMPEG audio file - Size529344 - Total Time24946 - Track Number87 - Year2010 - Date Modified2013-12-29T12:42:18Z - Date Added2013-12-29T12:40:28Z - Bit Rate128 - Sample Rate44100 - CommentsfileRename @ sourceforge.net - Artwork Count1 - Persistent ID19BAE7DE41F30299 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/87%20Harmonica%20For%20Dummies.mp3 - File Folder Count4 - Library Folder Count1 - - 11360 - - Track ID11360 - NameHarmonica For Dummies - ArtistHarmonica For Dummies - Album ArtistHarmonica For Dummies - AlbumWinslow Yerxa - GenreOther - KindMPEG audio file - Size526842 - Total Time24790 - Track Number88 - Year2010 - Date Modified2013-12-29T12:42:18Z - Date Added2013-12-29T12:40:28Z - Bit Rate128 - Sample Rate44100 - CommentsfileRename @ sourceforge.net - Artwork Count1 - Persistent ID2CC6B329193469A2 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/88%20Harmonica%20For%20Dummies.mp3 - File Folder Count4 - Library Folder Count1 - - 11362 - - Track ID11362 - NameHarmonica For Dummies - ArtistHarmonica For Dummies - Album ArtistHarmonica For Dummies - AlbumWinslow Yerxa - GenreOther - KindMPEG audio file - Size767034 - Total Time39836 - Track Number89 - Year2010 - Date Modified2013-12-29T12:42:18Z - Date Added2013-12-29T12:40:28Z - Bit Rate128 - Sample Rate44100 - CommentsfileRename @ sourceforge.net - Artwork Count1 - Persistent ID4DC10283B6A7E59D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/89%20Harmonica%20For%20Dummies.mp3 - File Folder Count4 - Library Folder Count1 - - 11364 - - Track ID11364 - NameHarmonica For Dummies - ArtistHarmonica For Dummies - Album ArtistHarmonica For Dummies - AlbumWinslow Yerxa - GenreOther - KindMPEG audio file - Size880458 - Total Time46942 - Track Number90 - Year2010 - Date Modified2013-12-29T12:42:19Z - Date Added2013-12-29T12:40:29Z - Bit Rate128 - Sample Rate44100 - CommentsfileRename @ sourceforge.net - Artwork Count1 - Persistent ID43E45F41EF8E5EA4 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/90%20Harmonica%20For%20Dummies.mp3 - File Folder Count4 - Library Folder Count1 - - 11366 - - Track ID11366 - NameHarmonica For Dummies - ArtistHarmonica For Dummies - Album ArtistHarmonica For Dummies - AlbumWinslow Yerxa - GenreOther - KindMPEG audio file - Size531012 - Total Time25051 - Track Number91 - Year2010 - Date Modified2013-12-29T12:42:19Z - Date Added2013-12-29T12:40:29Z - Bit Rate128 - Sample Rate44100 - CommentsfileRename @ sourceforge.net - Artwork Count1 - Persistent IDBFFD85530D7188E9 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/91%20Harmonica%20For%20Dummies.mp3 - File Folder Count4 - Library Folder Count1 - - 11368 - - Track ID11368 - NameHarmonica For Dummies - ArtistHarmonica For Dummies - Album ArtistHarmonica For Dummies - AlbumWinslow Yerxa - GenreOther - KindMPEG audio file - Size749937 - Total Time38765 - Track Number92 - Year2010 - Date Modified2013-12-29T12:42:19Z - Date Added2013-12-29T12:40:29Z - Bit Rate128 - Sample Rate44100 - CommentsfileRename @ sourceforge.net - Artwork Count1 - Persistent ID69312C2223A9D0B0 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/92%20Harmonica%20For%20Dummies.mp3 - File Folder Count4 - Library Folder Count1 - - 11370 - - Track ID11370 - NameHarmonica For Dummies - ArtistHarmonica For Dummies - Album ArtistHarmonica For Dummies - AlbumWinslow Yerxa - GenreOther - KindMPEG audio file - Size526008 - Total Time24737 - Track Number93 - Year2010 - Date Modified2013-12-29T12:42:20Z - Date Added2013-12-29T12:40:30Z - Bit Rate128 - Sample Rate44100 - CommentsfileRename @ sourceforge.net - Artwork Count1 - Persistent ID85BADF39EC631830 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/93%20Harmonica%20For%20Dummies.mp3 - File Folder Count4 - Library Folder Count1 - - 11372 - - Track ID11372 - NameHarmonica For Dummies - ArtistHarmonica For Dummies - Album ArtistHarmonica For Dummies - AlbumWinslow Yerxa - GenreOther - KindMPEG audio file - Size711990 - Total Time36388 - Track Number94 - Year2010 - Date Modified2013-12-29T12:42:20Z - Date Added2013-12-29T12:40:30Z - Bit Rate128 - Sample Rate44100 - CommentsfileRename @ sourceforge.net - Artwork Count1 - Persistent IDFFA2F5923CBA7D85 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/94%20Harmonica%20For%20Dummies.mp3 - File Folder Count4 - Library Folder Count1 - - 11374 - - Track ID11374 - NameHarmonica For Dummies - ArtistHarmonica For Dummies - Album ArtistHarmonica For Dummies - AlbumWinslow Yerxa - GenreOther - KindMPEG audio file - Size532263 - Total Time25129 - Track Number95 - Year2010 - Date Modified2013-12-29T12:42:19Z - Date Added2013-12-29T12:40:30Z - Bit Rate128 - Sample Rate44100 - CommentsfileRename @ sourceforge.net - Artwork Count1 - Persistent ID84A7A210D9D9F1AB - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/95%20Harmonica%20For%20Dummies.mp3 - File Folder Count4 - Library Folder Count1 - - 11376 - - Track ID11376 - NameHarmonica For Dummies - ArtistHarmonica For Dummies - Album ArtistHarmonica For Dummies - AlbumWinslow Yerxa - GenreOther - KindMPEG audio file - Size505992 - Total Time23405 - Track Number96 - Year2010 - Date Modified2013-12-29T12:42:19Z - Date Added2013-12-29T12:40:30Z - Bit Rate128 - Sample Rate44100 - CommentsfileRename @ sourceforge.net - Artwork Count1 - Persistent ID2504A711B899BFD5 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/96%20Harmonica%20For%20Dummies.mp3 - File Folder Count4 - Library Folder Count1 - - 11378 - - Track ID11378 - NameHarmonica For Dummies - ArtistHarmonica For Dummies - Album ArtistHarmonica For Dummies - AlbumWinslow Yerxa - GenreOther - KindMPEG audio file - Size1087596 - Total Time79568 - Track Number97 - Year2010 - Date Modified2013-12-29T12:42:19Z - Date Added2013-12-29T12:40:30Z - Bit Rate96 - Sample Rate22050 - CommentsfileRename @ sourceforge.net - Artwork Count1 - Persistent ID1E34691E2CE4BEEB - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/97%20Harmonica%20For%20Dummies.mp3 - File Folder Count4 - Library Folder Count1 - - 11380 - - Track ID11380 - NameHarmonica For Dummies - ArtistHarmonica For Dummies - Album ArtistHarmonica For Dummies - AlbumWinslow Yerxa - GenreOther - KindMPEG audio file - Size1815790 - Total Time105534 - Track Number98 - Year2010 - Date Modified2013-12-29T12:42:19Z - Date Added2013-12-29T12:40:30Z - Bit Rate128 - Sample Rate44100 - CommentsfileRename @ sourceforge.net - Artwork Count1 - Persistent IDFE768BF2913F5726 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Harmonica%20For%20Dummies/Winslow%20Yerxa/98%20Harmonica%20For%20Dummies.mp3 - File Folder Count4 - Library Folder Count1 - - 11382 - - Track ID11382 - NameUnexplainable Stories - ArtistCloud Cult - Album ArtistCloud Cult - ComposerCraig Minowa - AlbumLight Chasers - GenreAlternative - KindPurchased AAC audio file - Size9910999 - Total Time279360 - Disc Number1 - Disc Count1 - Track Number1 - Track Count16 - Year2010 - Date Modified2013-12-29T13:05:01Z - Date Added2013-12-29T13:04:48Z - Bit Rate256 - Sample Rate44100 - Release Date2010-09-14T07:00:00Z - Normalization3649 - Artwork Count1 - Persistent ID0186FCBD79B199A9 - Track TypeFile - Purchased - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Cloud%20Cult/Light%20Chasers/01%20Unexplainable%20Stories.m4a - File Folder Count4 - Library Folder Count1 - - 11384 - - Track ID11384 - NameToday We Give Ourselves to the Fire - ArtistCloud Cult - Album ArtistCloud Cult - ComposerCraig Minowa - AlbumLight Chasers - GenreAlternative - KindPurchased AAC audio file - Size6677697 - Total Time180560 - Disc Number1 - Disc Count1 - Track Number2 - Track Count16 - Year2010 - Date Modified2013-12-29T13:05:07Z - Date Added2013-12-29T13:04:48Z - Bit Rate256 - Sample Rate44100 - Release Date2010-09-14T07:00:00Z - Normalization4470 - Artwork Count1 - Persistent ID0186FCBD79B199AA - Track TypeFile - Purchased - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Cloud%20Cult/Light%20Chasers/02%20Today%20We%20Give%20Ourselves%20to%20the%20Fire.m4a - File Folder Count4 - Library Folder Count1 - - 11386 - - Track ID11386 - NameYou'll Be Bright (Invocation Part 1) - ArtistCloud Cult - Album ArtistCloud Cult - ComposerCraig Minowa - AlbumLight Chasers - GenreAlternative - KindPurchased AAC audio file - Size8307083 - Total Time236133 - Disc Number1 - Disc Count1 - Track Number3 - Track Count16 - Year2010 - Date Modified2013-12-29T13:05:03Z - Date Added2013-12-29T13:04:49Z - Bit Rate256 - Sample Rate44100 - Release Date2010-09-14T07:00:00Z - Normalization5915 - Artwork Count1 - Persistent ID0186FCBD79B199AB - Track TypeFile - Purchased - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Cloud%20Cult/Light%20Chasers/03%20You'll%20Be%20Bright%20(Invocation%20Part%201).m4a - File Folder Count4 - Library Folder Count1 - - 11388 - - Track ID11388 - NameThe Birth (Journey to the Light Part 2) - ArtistCloud Cult - Album ArtistCloud Cult - ComposerCraig Minowa - AlbumLight Chasers - GenreAlternative - KindPurchased AAC audio file - Size3359424 - Total Time87760 - Disc Number1 - Disc Count1 - Track Number4 - Track Count16 - Year2010 - Date Modified2013-12-29T13:04:59Z - Date Added2013-12-29T13:04:49Z - Bit Rate256 - Sample Rate44100 - Release Date2010-09-14T07:00:00Z - Normalization597 - Artwork Count1 - Sort NameBirth (Journey to the Light Part 2) - Persistent ID0186FCBD79B199AC - Track TypeFile - Purchased - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Cloud%20Cult/Light%20Chasers/04%20The%20Birth%20(Journey%20to%20the%20Light%20Part%202).m4a - File Folder Count4 - Library Folder Count1 - - 11390 - - Track ID11390 - NameYou Were Born - ArtistCloud Cult - Album ArtistCloud Cult - ComposerCraig Minowa - AlbumLight Chasers - GenreAlternative - KindPurchased AAC audio file - Size5627244 - Total Time153813 - Disc Number1 - Disc Count1 - Track Number5 - Track Count16 - Year2010 - Date Modified2013-12-29T13:05:05Z - Date Added2013-12-29T13:04:49Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3482386800 - Play Date UTC2014-05-08T04:10:00Z - Release Date2010-09-14T07:00:00Z - Normalization1186 - Artwork Count1 - Persistent ID0186FCBD79B199AD - Track TypeFile - Purchased - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Cloud%20Cult/Light%20Chasers/05%20You%20Were%20Born.m4a - File Folder Count4 - Library Folder Count1 - - 11392 - - Track ID11392 - NameThe Exploding People - ArtistCloud Cult - Album ArtistCloud Cult - ComposerCraig Minowa - AlbumLight Chasers - GenreAlternative - KindPurchased AAC audio file - Size9625334 - Total Time268986 - Disc Number1 - Disc Count1 - Track Number6 - Track Count16 - Year2010 - Date Modified2013-12-29T13:05:02Z - Date Added2013-12-29T13:04:49Z - Bit Rate256 - Sample Rate44100 - Release Date2010-09-14T07:00:00Z - Normalization2658 - Artwork Count1 - Sort NameExploding People - Persistent ID0186FCBD79B199AE - Track TypeFile - Purchased - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Cloud%20Cult/Light%20Chasers/06%20The%20Exploding%20People.m4a - File Folder Count4 - Library Folder Count1 - - 11394 - - Track ID11394 - NameThe Interference (Journey to the Light Part 3) - ArtistCloud Cult - Album ArtistCloud Cult - ComposerCraig Minowa - AlbumLight Chasers - GenreAlternative - KindPurchased AAC audio file - Size3659781 - Total Time95600 - Disc Number1 - Disc Count1 - Track Number7 - Track Count16 - Year2010 - Date Modified2013-12-29T13:04:56Z - Date Added2013-12-29T13:04:49Z - Bit Rate256 - Sample Rate44100 - Release Date2010-09-14T07:00:00Z - Normalization378 - Artwork Count1 - Sort NameInterference (Journey to the Light Part 3) - Persistent ID0186FCBD79B199AF - Track TypeFile - Purchased - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Cloud%20Cult/Light%20Chasers/07%20The%20Interference%20(Journey%20to%20the%20Light%20Part%203).m4a - File Folder Count4 - Library Folder Count1 - - 11396 - - Track ID11396 - NameRoom Full of People in Your Head - ArtistCloud Cult - Album ArtistCloud Cult - ComposerCraig Minowa - AlbumLight Chasers - GenreAlternative - KindPurchased AAC audio file - Size9495285 - Total Time270960 - Disc Number1 - Disc Count1 - Track Number8 - Track Count16 - Year2010 - Date Modified2013-12-29T13:05:04Z - Date Added2013-12-29T13:04:49Z - Bit Rate256 - Sample Rate44100 - Release Date2010-09-14T07:00:00Z - Normalization4837 - Artwork Count1 - Persistent ID0186FCBD79B199B0 - Track TypeFile - Purchased - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Cloud%20Cult/Light%20Chasers/08%20Room%20Full%20of%20People%20in%20Your%20Head.m4a - File Folder Count4 - Library Folder Count1 - - 11398 - - Track ID11398 - NameRunning With the Wolves - ArtistCloud Cult - Album ArtistCloud Cult - ComposerCraig Minowa - AlbumLight Chasers - GenreAlternative - KindPurchased AAC audio file - Size7664561 - Total Time211360 - Disc Number1 - Disc Count1 - Track Number9 - Track Count16 - Year2010 - Date Modified2013-12-29T13:04:59Z - Date Added2013-12-29T13:04:49Z - Bit Rate256 - Sample Rate44100 - Release Date2010-09-14T07:00:00Z - Normalization3915 - Artwork Count1 - Persistent ID0186FCBD79B199B1 - Track TypeFile - Purchased - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Cloud%20Cult/Light%20Chasers/09%20Running%20With%20the%20Wolves.m4a - File Folder Count4 - Library Folder Count1 - - 11400 - - Track ID11400 - NameResponsible - ArtistCloud Cult - Album ArtistCloud Cult - ComposerCraig Minowa - AlbumLight Chasers - GenreAlternative - KindPurchased AAC audio file - Size5902217 - Total Time164053 - Disc Number1 - Disc Count1 - Track Number10 - Track Count16 - Year2010 - Date Modified2013-12-29T13:04:58Z - Date Added2013-12-29T13:04:49Z - Bit Rate256 - Sample Rate44100 - Release Date2010-09-14T07:00:00Z - Normalization1432 - Artwork Count1 - Persistent ID0186FCBD79B199B2 - Track TypeFile - Purchased - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Cloud%20Cult/Light%20Chasers/10%20Responsible.m4a - File Folder Count4 - Library Folder Count1 - - 11402 - - Track ID11402 - NameThe Guessing Game (Journey to the Light Part 4) - ArtistCloud Cult - Album ArtistCloud Cult - ComposerCraig Minowa - AlbumLight Chasers - GenreAlternative - KindPurchased AAC audio file - Size4263661 - Total Time111093 - Disc Number1 - Disc Count1 - Track Number11 - Track Count16 - Year2010 - Date Modified2013-12-29T13:05:05Z - Date Added2013-12-29T13:04:49Z - Bit Rate256 - Sample Rate44100 - Release Date2010-09-14T07:00:00Z - Normalization2034 - Artwork Count1 - Sort NameGuessing Game (Journey to the Light Part 4) - Persistent ID0186FCBD79B199B3 - Track TypeFile - Purchased - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Cloud%20Cult/Light%20Chasers/11%20The%20Guessing%20Game%20(Journey%20to%20the%20Light%20Part%204).m4a - File Folder Count4 - Library Folder Count1 - - 11404 - - Track ID11404 - NameForces of the Unseen - ArtistCloud Cult - Album ArtistCloud Cult - ComposerCraig Minowa - AlbumLight Chasers - GenreAlternative - KindPurchased AAC audio file - Size8218398 - Total Time227840 - Disc Number1 - Disc Count1 - Track Number12 - Track Count16 - Year2010 - Date Modified2013-12-29T13:05:01Z - Date Added2013-12-29T13:04:49Z - Bit Rate256 - Sample Rate44100 - Release Date2010-09-14T07:00:00Z - Normalization3472 - Artwork Count1 - Persistent ID0186FCBD79B199B4 - Track TypeFile - Purchased - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Cloud%20Cult/Light%20Chasers/12%20Forces%20of%20the%20Unseen.m4a - File Folder Count4 - Library Folder Count1 - - 11406 - - Track ID11406 - NameBlessings (Invocation Part 2) - ArtistCloud Cult - Album ArtistCloud Cult - ComposerCraig Minowa - AlbumLight Chasers - GenreAlternative - KindPurchased AAC audio file - Size13903753 - Total Time397280 - Disc Number1 - Disc Count1 - Track Number13 - Track Count16 - Year2010 - Date Modified2013-12-29T13:04:57Z - Date Added2013-12-29T13:04:49Z - Bit Rate256 - Sample Rate44100 - Release Date2010-09-14T07:00:00Z - Normalization2769 - Artwork Count1 - Persistent ID0186FCBD79B199B5 - Track TypeFile - Purchased - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Cloud%20Cult/Light%20Chasers/13%20Blessings%20(Invocation%20Part%202).m4a - File Folder Count4 - Library Folder Count1 - - 11408 - - Track ID11408 - NameDawn - ArtistCloud Cult - Album ArtistCloud Cult - ComposerCraig Minowa - AlbumLight Chasers - GenreAlternative - KindPurchased AAC audio file - Size7056178 - Total Time184586 - Disc Number1 - Disc Count1 - Track Number14 - Track Count16 - Year2010 - Date Modified2013-12-29T13:05:04Z - Date Added2013-12-29T13:04:49Z - Bit Rate256 - Sample Rate44100 - Release Date2010-09-14T07:00:00Z - Normalization1161 - Artwork Count1 - Persistent ID0186FCBD79B199B6 - Track TypeFile - Purchased - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Cloud%20Cult/Light%20Chasers/14%20Dawn.m4a - File Folder Count4 - Library Folder Count1 - - 11410 - - Track ID11410 - NameThe Contact (Journey to the Light Part 5) - ArtistCloud Cult - Album ArtistCloud Cult - ComposerCraig Minowa - AlbumLight Chasers - GenreAlternative - KindPurchased AAC audio file - Size3234354 - Total Time81920 - Disc Number1 - Disc Count1 - Track Number15 - Track Count16 - Year2010 - Date Modified2013-12-29T13:05:00Z - Date Added2013-12-29T13:04:49Z - Bit Rate256 - Sample Rate44100 - Release Date2010-09-14T07:00:00Z - Normalization256 - Artwork Count1 - Sort NameContact (Journey to the Light Part 5) - Persistent ID0186FCBD79B199B7 - Track TypeFile - Purchased - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Cloud%20Cult/Light%20Chasers/15%20The%20Contact%20(Journey%20to%20the%20Light%20Part%205).m4a - File Folder Count4 - Library Folder Count1 - - 11412 - - Track ID11412 - NameThere's So Much Energy in Us - ArtistCloud Cult - Album ArtistCloud Cult - ComposerCraig Minowa - AlbumLight Chasers - GenreAlternative - KindPurchased AAC audio file - Size15403660 - Total Time443386 - Disc Number1 - Disc Count1 - Track Number16 - Track Count16 - Year2010 - Date Modified2013-12-29T13:05:06Z - Date Added2013-12-29T13:04:49Z - Bit Rate256 - Sample Rate44100 - Release Date2010-09-14T07:00:00Z - Normalization3164 - Artwork Count1 - Persistent ID0186FCBD79B199B8 - Track TypeFile - Purchased - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Cloud%20Cult/Light%20Chasers/16%20There's%20So%20Much%20Energy%20in%20Us.m4a - File Folder Count4 - Library Folder Count1 - - 11434 - - Track ID11434 - NameTrack 01 - KindAAC audio file - Size40409397 - Total Time1223400 - Track Number1 - Track Count1 - Date Modified2014-04-28T07:20:49Z - Date Added2014-04-28T07:19:15Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3482581720 - Play Date UTC2014-05-10T10:18:40Z - Normalization1221 - Persistent ID6AD0D7AA8446CB0C - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Unknown%20Artist/Unknown%20Album/01%20Track%2001.m4a - File Folder Count4 - Library Folder Count1 - - 11450 - - Track ID11450 - NameIntroduction By H.H.Sri Sri Ravi Shankar - ArtistSri Sri Ravi Shankar - ComposerThe Art Of Living - AlbumHari Om - GenreReligious - KindAAC audio file - Size11406651 - Total Time348706 - Disc Number1 - Disc Count1 - Track Number1 - Track Count4 - Year2008 - Date Modified2014-05-10T15:39:17Z - Date Added2014-05-10T15:38:18Z - Bit Rate256 - Sample Rate44100 - Normalization664 - Sort ComposerArt Of Living - Persistent ID01C11D6C46405BD0 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Sri%20Sri%20Ravi%20Shankar/Hari%20Om/01%20Introduction%20By%20H.H.Sri%20Sri%20Ravi%20Shankar.m4a - File Folder Count4 - Library Folder Count1 - - 11452 - - Track ID11452 - NameHari Om Meditation (Hindi) - ArtistSri Sri Ravi Shankar - ComposerThe Art Of Living - AlbumHari Om - GenreReligious - KindAAC audio file - Size43038080 - Total Time1354040 - Disc Number1 - Disc Count1 - Track Number2 - Track Count4 - Date Modified2014-05-10T15:42:18Z - Date Added2014-05-10T15:39:19Z - Bit Rate256 - Sample Rate44100 - Normalization1022 - Sort ComposerArt Of Living - Persistent IDEBE30962C0B48981 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Sri%20Sri%20Ravi%20Shankar/Hari%20Om/02%20Hari%20Om%20Meditation%20(Hindi).m4a - File Folder Count4 - Library Folder Count1 - - 11454 - - Track ID11454 - NameIntroduction By H.H.Sri Sri Ravi Shankar (Hindi) - ArtistSri Sri Ravi Shankar - ComposerThe Art Of Living - AlbumHari Om - GenreReligious - KindAAC audio file - Size8461210 - Total Time258026 - Disc Number1 - Disc Count1 - Track Number3 - Track Count4 - Date Modified2014-05-10T15:42:47Z - Date Added2014-05-10T15:42:20Z - Bit Rate256 - Sample Rate44100 - Normalization676 - Sort ComposerArt Of Living - Persistent ID6AC5CDDB2DE9D176 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Sri%20Sri%20Ravi%20Shankar/Hari%20Om/03%20Introduction%20By%20H.H.Sri%20Sri%20Ravi%20Shankar%20(Hindi).m4a - File Folder Count4 - Library Folder Count1 - - 11456 - - Track ID11456 - NameHari Om Meditation (English Version) - ArtistSri Sri Ravi Shankar - ComposerThe Art Of Living - AlbumHari Om - GenreReligious - KindAAC audio file - Size44359288 - Total Time1341653 - Disc Number1 - Disc Count1 - Track Number4 - Track Count4 - Date Modified2014-05-10T15:45:12Z - Date Added2014-05-10T15:42:49Z - Bit Rate256 - Sample Rate44100 - Normalization1259 - Sort ComposerArt Of Living - Persistent ID18B355ED28F061B4 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Sri%20Sri%20Ravi%20Shankar/Hari%20Om/04%20Hari%20Om%20Meditation%20(English%20Version).m4a - File Folder Count4 - Library Folder Count1 - - 11458 - - Track ID11458 - NameAcross The Universe - ArtistThe Beatles - ComposerLennon/McCartney - AlbumLet It Be - GenreRock - KindAAC audio file - Size7468987 - Total Time228586 - Disc Number1 - Disc Count1 - Track Number3 - Track Count12 - Year1970 - Date Modified2014-05-16T15:54:27Z - Date Added2014-05-16T15:54:21Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3393072210 - Play Date UTC2011-07-09T10:33:30Z - Normalization1254 - Artwork Count1 - Sort ArtistBeatles - Persistent ID630A363BCBE8B766 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Let%20It%20Be/03%20Across%20The%20Universe%201.m4a - File Folder Count4 - Library Folder Count1 - - 11460 - - Track ID11460 - NameBlowin' In The Wind - ArtistBob Dylan - ComposerBob Dylan & B. Dylan/H. Thomas - AlbumThe Freewheelin' Bob Dylan - GenreFolk - KindAAC audio file - Size5549967 - Total Time169026 - Disc Number1 - Disc Count1 - Track Number1 - Track Count13 - Year1963 - Date Modified2014-05-16T15:54:31Z - Date Added2014-05-16T15:54:27Z - Bit Rate256 - Sample Rate44100 - Play Count3 - Play Date3457109046 - Play Date UTC2013-07-19T14:34:06Z - Normalization1610 - Artwork Count1 - Sort AlbumFreewheelin' Bob Dylan - Persistent IDCBC84D105A4ED144 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Dylan/The%20Freewheelin'%20Bob%20Dylan/01%20Blowin'%20In%20The%20Wind%201.m4a - File Folder Count4 - Library Folder Count1 - - 11462 - - Track ID11462 - NameExodus - ArtistBob Marley & The Wailers - ComposerBob Marley - AlbumExodus - GenreReggae - KindAAC audio file - Size15093483 - Total Time455426 - Disc Number1 - Disc Count1 - Track Number5 - Track Count10 - Year1977 - Date Modified2014-05-16T15:54:43Z - Date Added2014-05-16T15:54:32Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3430645553 - Play Date UTC2012-09-16T07:35:53Z - Normalization1140 - Artwork Count1 - Persistent ID93F13731D5379F10 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Marley%20&%20The%20Wailers/Exodus/05%20Exodus%201.m4a - File Folder Count4 - Library Folder Count1 - - 11464 - - Track ID11464 - NameGod Shuffled His Feet - ArtistCrash Test Dummies - ComposerBrad Roberts - AlbumGod Shuffled His Feet - GenreAlternative & Punk - KindAAC audio file - Size10308010 - Total Time310480 - Disc Number1 - Disc Count1 - Track Number1 - Track Count12 - Year1993 - Date Modified2014-05-16T15:54:51Z - Date Added2014-05-16T15:54:43Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3360253487 - Play Date UTC2010-06-24T14:14:47Z - Skip Count1 - Skip Date2014-05-16T15:38:55Z - Normalization3242 - Artwork Count1 - Persistent IDD09038E6EE0F1746 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Crash%20Test%20Dummies/God%20Shuffled%20His%20Feet/01%20God%20Shuffled%20His%20Feet%201.m4a - File Folder Count4 - Library Folder Count1 - - 11466 - - Track ID11466 - NameTears In Heaven - ArtistEric Clapton - ComposerEric Clapton & Will Jennings - AlbumUnplugged - GenreBlues - KindAAC audio file - Size9191428 - Total Time276093 - Disc Number1 - Disc Count1 - Track Number4 - Track Count14 - Year1992 - Date Modified2014-05-16T15:54:58Z - Date Added2014-05-16T15:54:51Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3441737928 - Play Date UTC2013-01-22T16:48:48Z - Normalization1340 - Artwork Count1 - Persistent IDAE1F1514AF0C9BF1 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Eric%20Clapton/Unplugged/04%20Tears%20In%20Heaven%201.m4a - File Folder Count4 - Library Folder Count1 - - 11468 - - Track ID11468 - NameFloe - ArtistPhilip Glass - Album ArtistPhilip Glass Ensemble: Philip Glass - ComposerPHILIP GLASS (b. 1937) - AlbumGlassworks - Expanded Edition - GenreClassical - KindAAC audio file - Size11856182 - Total Time359506 - Disc Number1 - Disc Count1 - Track Number2 - Track Count11 - Year2003 - Date Modified2014-05-16T15:55:07Z - Date Added2014-05-16T15:54:58Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3467302891 - Play Date UTC2013-11-14T14:11:31Z - Normalization1162 - Compilation - Artwork Count1 - Persistent IDC90BECA1D16769D7 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Glassworks%20-%20Expanded%20Edition/02%20Floe%201.m4a - File Folder Count4 - Library Folder Count1 - - 11470 - - Track ID11470 - NameRubric - ArtistPhilip Glass - Album ArtistPhilip Glass Ensemble: Philip Glass - ComposerPHILIP GLASS (b. 1937) - AlbumGlassworks - Expanded Edition - GenreClassical - KindAAC audio file - Size12098729 - Total Time364573 - Disc Number1 - Disc Count1 - Track Number4 - Track Count11 - Year2003 - Date Modified2014-05-16T15:55:17Z - Date Added2014-05-16T15:55:07Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3467303716 - Play Date UTC2013-11-14T14:25:16Z - Normalization1741 - Compilation - Artwork Count1 - Persistent ID363080ED255D0079 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Glassworks%20-%20Expanded%20Edition/04%20Rubric%201.m4a - File Folder Count4 - Library Folder Count1 - - 11472 - - Track ID11472 - NameOnly Time (Original Version) - ArtistEnya - Album ArtistEnya - AlbumA Day Without Rain [with booklet artwork] - GenrePop - KindAAC audio file - Size7431933 - Total Time216133 - Disc Number1 - Disc Count1 - Track Number3 - Track Count12 - Year2005 - Date Modified2014-05-16T15:55:22Z - Date Added2014-05-16T15:55:17Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 212707113 - Play Count4 - Play Date3431279277 - Play Date UTC2012-09-23T15:37:57Z - Normalization1733 - Artwork Count1 - Sort AlbumDay Without Rain [with booklet artwork] - Persistent IDADC1302B07980324 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enya/A%20Day%20Without%20Rain%20%5Bwith%20booklet%20artwork%5D/03%20Only%20Time%20(Original%20Version).m4a - File Folder Count4 - Library Folder Count1 - - 11474 - - Track ID11474 - NameDance Me To The End Of Love - ArtistMadeleine Peyroux - ComposerLeonard Cohen - AlbumCareless Love - GenrePop - KindAAC audio file - Size7868947 - Total Time239666 - Disc Number1 - Disc Count1 - Track Number1 - Track Count12 - Year2004 - Date Modified2014-05-16T15:55:29Z - Date Added2014-05-16T15:55:23Z - Bit Rate256 - Sample Rate44100 - Play Count2 - Play Date3430070775 - Play Date UTC2012-09-09T15:56:15Z - Normalization2608 - Artwork Count1 - Persistent IDB0FC185A83C7CB43 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Madeleine%20Peyroux/Careless%20Love/01%20Dance%20Me%20To%20The%20End%20Of%20Love%201.m4a - File Folder Count4 - Library Folder Count1 - - 11476 - - Track ID11476 - NameCome Away With Me - ArtistNorah Jones - ComposerNorah Jones - AlbumCome Away With Me - GenrePop - KindAAC audio file - Size6555335 - Total Time198133 - Disc Number1 - Disc Count1 - Track Number5 - Track Count14 - Year2002 - Date Modified2014-05-16T15:55:35Z - Date Added2014-05-16T15:55:30Z - Bit Rate256 - Sample Rate44100 - Play Count5 - Play Date3403722850 - Play Date UTC2011-11-09T17:04:10Z - Normalization1128 - Artwork Count1 - Persistent ID4E3C5AABF8D6AA12 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Norah%20Jones/Come%20Away%20With%20Me/05%20Come%20Away%20With%20Me%201.m4a - File Folder Count4 - Library Folder Count1 - - 11478 - - Track ID11478 - NameSour Times - ArtistPortishead - Album ArtistPortishead - ComposerHenry Roscoe Brooks - AlbumDummy - GenrePop - KindAAC audio file - Size8850337 - Total Time254013 - Disc Number1 - Disc Count1 - Track Number2 - Track Count11 - Year1994 - Date Modified2014-05-16T15:55:42Z - Date Added2014-05-16T15:55:35Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202640614 - Play Count4 - Play Date3472406629 - Play Date UTC2014-01-12T15:53:49Z - Skip Count1 - Skip Date2014-05-16T15:46:00Z - Normalization3554 - Artwork Count1 - Persistent ID927CD594CD34B1FB - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Portishead/Dummy/02%20Sour%20Times.m4a - File Folder Count4 - Library Folder Count1 - - 11480 - - Track ID11480 - NameParanoid Android - ArtistRadiohead - ComposerThom Yorke, Jonny Greenwood, Phil Selway, Ed O'Brien, Colin Greenwood - AlbumOK Computer - GenreAlternative & Punk - KindAAC audio file - Size12823519 - Total Time383493 - Disc Number1 - Disc Count1 - Track Number2 - Track Count12 - Year1997 - Date Modified2014-05-16T15:55:52Z - Date Added2014-05-16T15:55:42Z - Bit Rate256 - Sample Rate44100 - Normalization3194 - Artwork Count1 - Persistent IDB8C493BBD89903A9 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Radiohead/OK%20Computer/02%20Paranoid%20Android%201.m4a - File Folder Count4 - Library Folder Count1 - - 11482 - - Track ID11482 - NameStairway To Heaven - ArtistRodrigo Y Gabriela - Album ArtistRodrigo y Gabriela - ComposerJimmy Page.Robert Plant - AlbumRodrigo Y Gabriela - GenreJazz - KindAAC audio file - Size9536552 - Total Time284200 - Disc Number1 - Disc Count1 - Track Number6 - Track Count9 - Year2006 - Date Modified2014-05-16T15:55:59Z - Date Added2014-05-16T15:55:52Z - Bit Rate256 - Sample Rate44100 - Play Count12 - Play Date3463328692 - Play Date UTC2013-09-29T14:14:52Z - Normalization1660 - Artwork Count1 - Persistent ID17346F9210DA0A40 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rodrigo%20y%20Gabriela/Rodrigo%20Y%20Gabriela/06%20Stairway%20To%20Heaven%201.m4a - File Folder Count4 - Library Folder Count1 - - 11484 - - Track ID11484 - NameKiss From A Rose - ArtistSeal - ComposerSeal - AlbumSeal - GenrePop - KindAAC audio file - Size9569998 - Total Time287960 - Disc Number1 - Disc Count1 - Track Number6 - Track Count11 - Year1994 - Date Modified2014-05-16T15:56:06Z - Date Added2014-05-16T15:56:00Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3472648288 - Play Date UTC2014-01-15T11:01:28Z - Normalization2746 - Artwork Count1 - Persistent IDCA310F19C0D531AE - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Seal/Seal/06%20Kiss%20From%20A%20Rose%201.m4a - File Folder Count4 - Library Folder Count1 - - 11486 - - Track ID11486 - NameThe Girl From Ipanema - ArtistStan Getz & João Gilberto - ComposerAntonio Carlos Brasiliero de Almeida Jobim, Marcus Vinícius da Cruz de Melo Moraes, Norman Gimbel - AlbumGetz/Gilberto - GenreLatin - KindAAC audio file - Size10872673 - Total Time324586 - Disc Number1 - Disc Count1 - Track Number1 - Track Count10 - Year1989 - Date Modified2014-05-16T15:56:13Z - Date Added2014-05-16T15:56:07Z - Bit Rate256 - Sample Rate44100 - Play Count4 - Play Date3471623176 - Play Date UTC2014-01-03T14:16:16Z - Normalization883 - Artwork Count1 - Sort NameGirl From Ipanema - Persistent ID6F29380F9941C72E - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stan%20Getz%20&%20Joa%CC%83o%20Gilberto/Getz_Gilberto/01%20The%20Girl%20From%20Ipanema%201.m4a - File Folder Count4 - Library Folder Count1 - - 11488 - - Track ID11488 - NameDesert Rose - ArtistSting - ComposerSting, Kipper - AlbumBrand New Day - GenreRock - KindAAC audio file - Size9450948 - Total Time285866 - Disc Number1 - Disc Count1 - Track Number2 - Track Count10 - Year2000 - Date Modified2014-05-16T15:56:20Z - Date Added2014-05-16T15:56:14Z - Bit Rate256 - Sample Rate44100 - Skip Count1 - Skip Date2013-01-20T15:54:34Z - Normalization3481 - Artwork Count1 - Persistent IDE4A643730374597D - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Sting/Brand%20New%20Day/02%20Desert%20Rose%201.m4a - File Folder Count4 - Library Folder Count1 - - 11490 - - Track ID11490 - NameA Thousand Years - ArtistSting - ComposerSting, Kipper - AlbumBrand New Day - GenreRock - KindAAC audio file - Size11867060 - Total Time358040 - Disc Number1 - Disc Count1 - Track Number1 - Track Count10 - Year2000 - Date Modified2014-05-16T15:56:28Z - Date Added2014-05-16T15:56:27Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3441561867 - Play Date UTC2013-01-20T15:54:27Z - Normalization1428 - Artwork Count1 - Sort NameThousand Years - Persistent IDEA0D903F92D8AAAD - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Sting/Brand%20New%20Day/01%20A%20Thousand%20Years%201.m4a - File Folder Count4 - Library Folder Count1 - - 11492 - - Track ID11492 - NameTalkin' Bout A Revolution - ArtistTracy Chapman - AlbumTracy Chapman - GenreFolk - KindAAC audio file - Size5239379 - Total Time160320 - Disc Number1 - Disc Count1 - Track Number1 - Track Count11 - Year1982 - Date Modified2014-05-16T15:56:42Z - Date Added2014-05-16T15:56:28Z - Bit Rate256 - Sample Rate44100 - Play Count3 - Play Date3456245680 - Play Date UTC2013-07-09T14:44:40Z - Album Rating60 - Album Rating Computed - Normalization1073 - Artwork Count1 - Persistent ID47E1C9CE78721D0C - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tracy%20Chapman/Tracy%20Chapman/01%20Talkin'%20Bout%20A%20Revolution%201.m4a - File Folder Count4 - Library Folder Count1 - - 11494 - - Track ID11494 - NameSocha Hai - ArtistFarhan Akhtar - ComposerShankar Ehsaan Loy - AlbumRock On!! - GenreWorld - KindAAC audio file - Size8232952 - Total Time251533 - Disc Number1 - Disc Count1 - Track Number1 - Track Count9 - Year2008 - Date Modified2014-05-16T15:56:48Z - Date Added2014-05-16T15:56:43Z - Bit Rate256 - Sample Rate44100 - Normalization3573 - Compilation - Artwork Count1 - Persistent ID09F198BD1D245315 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Rock%20On!!/01%20Socha%20Hai%201.m4a - File Folder Count4 - Library Folder Count1 - - 11496 - - Track ID11496 - NameRock On!! - ArtistFarhan Akhtar - ComposerShankar Ehsaan Loy - AlbumRock On!! - GenreWorld - KindAAC audio file - Size7793220 - Total Time235200 - Disc Number1 - Disc Count1 - Track Number3 - Track Count9 - Year2008 - Date Modified2014-05-16T15:56:54Z - Date Added2014-05-16T15:56:49Z - Bit Rate256 - Sample Rate44100 - Normalization3941 - Compilation - Artwork Count1 - Persistent ID79531C51E7836618 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Rock%20On!!/03%20Rock%20On!!%201.m4a - File Folder Count4 - Library Folder Count1 - - 11498 - - Track ID11498 - NameDown To The River To Pray - ArtistAlison Krauss - ComposerJimmie Rodgers/Traditional, arr. by Allison Krauss - AlbumO Brother, Where Art Thou? - GenreSoundtrack - KindAAC audio file - Size5863847 - Total Time175973 - Disc Number1 - Disc Count1 - Track Number4 - Track Count19 - Year2000 - Date Modified2014-05-16T15:56:58Z - Date Added2014-05-16T15:56:54Z - Bit Rate256 - Sample Rate44100 - Play Count4 - Play Date3483120271 - Play Date UTC2014-05-16T15:54:31Z - Normalization1002 - Compilation - Artwork Count1 - Persistent ID352942882FB4BED1 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/O%20Brother,%20Where%20Art%20Thou_/04%20Down%20To%20The%20River%20To%20Pray%201.m4a - File Folder Count4 - Library Folder Count1 - - 11500 - - Track ID11500 - NameAcross The Universe - ArtistThe Beatles - ComposerLennon/McCartney - AlbumLet It Be - GenreRock - KindMPEG audio file - Size4606643 - Total Time228649 - Disc Number1 - Disc Count1 - Track Number3 - Track Count12 - Year1970 - Date Modified2014-05-16T15:57:13Z - Date Added2014-05-16T15:57:08Z - Bit Rate160 - Sample Rate44100 - Play Count1 - Play Date3393072210 - Play Date UTC2011-07-09T10:33:30Z - Normalization1252 - Artwork Count1 - Sort ArtistBeatles - Persistent IDA9FAB94E26E005FE - Track TypeFile - File Type1297106739 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Let%20It%20Be/03%20Across%20The%20Universe.mp3 - File Folder Count4 - Library Folder Count1 - - 11502 - - Track ID11502 - NameBlowin' In The Wind - ArtistBob Dylan - ComposerBob Dylan & B. Dylan/H. Thomas - AlbumThe Freewheelin' Bob Dylan - GenreFolk - KindMPEG audio file - Size3404516 - Total Time169090 - Disc Number1 - Disc Count1 - Track Number1 - Track Count13 - Year1963 - Date Modified2014-05-16T15:57:16Z - Date Added2014-05-16T15:57:13Z - Bit Rate160 - Sample Rate44100 - Play Count3 - Play Date3457109046 - Play Date UTC2013-07-19T14:34:06Z - Normalization1610 - Artwork Count1 - Sort AlbumFreewheelin' Bob Dylan - Persistent ID695DA439CCAAB593 - Track TypeFile - File Type1297106739 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Dylan/The%20Freewheelin'%20Bob%20Dylan/01%20Blowin'%20In%20The%20Wind.mp3 - File Folder Count4 - Library Folder Count1 - - 11504 - - Track ID11504 - NameExodus - ArtistBob Marley & The Wailers - ComposerBob Marley - AlbumExodus - GenreReggae - KindMPEG audio file - Size9123848 - Total Time455497 - Disc Number1 - Disc Count1 - Track Number5 - Track Count10 - Year1977 - Date Modified2014-05-16T15:57:24Z - Date Added2014-05-16T15:57:16Z - Bit Rate160 - Sample Rate44100 - Play Count1 - Play Date3430645553 - Play Date UTC2012-09-16T07:35:53Z - Normalization1162 - Artwork Count1 - Persistent IDF22C6495979C1111 - Track TypeFile - File Type1297106739 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Marley%20&%20The%20Wailers/Exodus/05%20Exodus.mp3 - File Folder Count4 - Library Folder Count1 - - 11506 - - Track ID11506 - NameGod Shuffled His Feet - ArtistCrash Test Dummies - ComposerBrad Roberts - AlbumGod Shuffled His Feet - GenreAlternative & Punk - KindMPEG audio file - Size6256402 - Total Time310543 - Disc Number1 - Disc Count1 - Track Number1 - Track Count12 - Year1993 - Date Modified2014-05-16T15:57:30Z - Date Added2014-05-16T15:57:30Z - Bit Rate160 - Sample Rate44100 - Play Count1 - Play Date3360253487 - Play Date UTC2010-06-24T14:14:47Z - Skip Count1 - Skip Date2014-05-16T15:38:55Z - Normalization3238 - Artwork Count1 - Persistent IDF44EEB8D03AEDA47 - Track TypeFile - File Type1297106739 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Crash%20Test%20Dummies/God%20Shuffled%20His%20Feet/01%20God%20Shuffled%20His%20Feet.mp3 - File Folder Count4 - Library Folder Count1 - - 11508 - - Track ID11508 - NameTears In Heaven - ArtistEric Clapton - ComposerEric Clapton & Will Jennings - AlbumUnplugged - GenreBlues - KindMPEG audio file - Size5556321 - Total Time276166 - Disc Number1 - Disc Count1 - Track Number4 - Track Count14 - Year1992 - Date Modified2014-05-16T15:57:35Z - Date Added2014-05-16T15:57:34Z - Bit Rate160 - Sample Rate44100 - Play Count1 - Play Date3441737928 - Play Date UTC2013-01-22T16:48:48Z - Normalization1329 - Artwork Count1 - Persistent ID26B3CE071A763754 - Track TypeFile - File Type1297106739 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Eric%20Clapton/Unplugged/04%20Tears%20In%20Heaven.mp3 - File Folder Count4 - Library Folder Count1 - - 11510 - - Track ID11510 - NameFloe - ArtistPhilip Glass - Album ArtistPhilip Glass Ensemble: Philip Glass - ComposerPHILIP GLASS (b. 1937) - AlbumGlassworks - Expanded Edition - GenreClassical - KindMPEG audio file - Size7215809 - Total Time359575 - Disc Number1 - Disc Count1 - Track Number2 - Track Count11 - Year2003 - Date Modified2014-05-16T15:57:40Z - Date Added2014-05-16T15:57:40Z - Bit Rate160 - Sample Rate44100 - Play Count1 - Play Date3467302891 - Play Date UTC2013-11-14T14:11:31Z - Normalization1162 - Compilation - Artwork Count1 - Persistent ID532195CDAD6610DC - Track TypeFile - File Type1297106739 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Glassworks%20-%20Expanded%20Edition/02%20Floe.mp3 - File Folder Count4 - Library Folder Count1 - - 11512 - - Track ID11512 - NameRubric - ArtistPhilip Glass - Album ArtistPhilip Glass Ensemble: Philip Glass - ComposerPHILIP GLASS (b. 1937) - AlbumGlassworks - Expanded Edition - GenreClassical - KindMPEG audio file - Size7317166 - Total Time364643 - Disc Number1 - Disc Count1 - Track Number4 - Track Count11 - Year2003 - Date Modified2014-05-16T15:57:46Z - Date Added2014-05-16T15:57:44Z - Bit Rate160 - Sample Rate44100 - Play Count1 - Play Date3467303716 - Play Date UTC2013-11-14T14:25:16Z - Normalization1735 - Compilation - Artwork Count1 - Persistent ID04794A8300E20189 - Track TypeFile - File Type1297106739 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Glassworks%20-%20Expanded%20Edition/04%20Rubric.mp3 - File Folder Count4 - Library Folder Count1 - - 11514 - - Track ID11514 - NameOnly Time (Original Version) - ArtistEnya - Album ArtistEnya - AlbumA Day Without Rain [with booklet artwork] - GenrePop - KindMPEG audio file - Size4618203 - Total Time216189 - Disc Number1 - Disc Count1 - Track Number3 - Track Count12 - Year2005 - Date Modified2014-05-16T15:57:52Z - Date Added2014-05-16T15:57:51Z - Bit Rate160 - Sample Rate44100 - CommentsAmazon.com Song ID: 212707113 - Play Count4 - Play Date3431279277 - Play Date UTC2012-09-23T15:37:57Z - Normalization1728 - Artwork Count1 - Sort AlbumDay Without Rain [with booklet artwork] - Persistent ID26534CDA432642D0 - Track TypeFile - File Type1297106739 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enya/A%20Day%20Without%20Rain%20%5Bwith%20booklet%20artwork%5D/03%20Only%20Time%20(Original%20Version)%201.mp3 - File Folder Count4 - Library Folder Count1 - - 11516 - - Track ID11516 - NameDance Me To The End Of Love - ArtistMadeleine Peyroux - ComposerLeonard Cohen - AlbumCareless Love - GenrePop - KindMPEG audio file - Size4861858 - Total Time239725 - Disc Number1 - Disc Count1 - Track Number1 - Track Count12 - Year2004 - Date Modified2014-05-16T15:57:56Z - Date Added2014-05-16T15:57:55Z - Bit Rate160 - Sample Rate44100 - Play Count2 - Play Date3430070775 - Play Date UTC2012-09-09T15:56:15Z - Normalization2595 - Artwork Count1 - Persistent ID3F643A86FD7F9A38 - Track TypeFile - File Type1297106739 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Madeleine%20Peyroux/Careless%20Love/01%20Dance%20Me%20To%20The%20End%20Of%20Love.mp3 - File Folder Count4 - Library Folder Count1 - - 11518 - - Track ID11518 - NameCome Away With Me - ArtistNorah Jones - ComposerNorah Jones - AlbumCome Away With Me - GenrePop - KindMPEG audio file - Size3992050 - Total Time198191 - Disc Number1 - Disc Count1 - Track Number5 - Track Count14 - Year2002 - Date Modified2014-05-16T15:58:00Z - Date Added2014-05-16T15:57:57Z - Bit Rate160 - Sample Rate44100 - Play Count5 - Play Date3403722850 - Play Date UTC2011-11-09T17:04:10Z - Normalization1153 - Artwork Count1 - Persistent IDFD5702E16CDAE231 - Track TypeFile - File Type1297106739 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Norah%20Jones/Come%20Away%20With%20Me/05%20Come%20Away%20With%20Me.mp3 - File Folder Count4 - Library Folder Count1 - - 11520 - - Track ID11520 - NameSour Times - ArtistPortishead - Album ArtistPortishead - ComposerHenry Roscoe Brooks - AlbumDummy - GenrePop - KindMPEG audio file - Size5185883 - Total Time254066 - Disc Number1 - Disc Count1 - Track Number2 - Track Count11 - Year1994 - Date Modified2014-05-16T15:58:05Z - Date Added2014-05-16T15:58:00Z - Bit Rate160 - Sample Rate44100 - CommentsAmazon.com Song ID: 202640614 - Play Count5 - Play Date3484152913 - Play Date UTC2014-05-28T14:45:13Z - Skip Count1 - Skip Date2014-05-16T15:46:00Z - Normalization3547 - Artwork Count1 - Persistent ID172A4B00CCCA117F - Track TypeFile - File Type1297106739 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Portishead/Dummy/02%20Sour%20Times%201.mp3 - File Folder Count4 - Library Folder Count1 - - 11522 - - Track ID11522 - NameParanoid Android - ArtistRadiohead - ComposerThom Yorke, Jonny Greenwood, Phil Selway, Ed O'Brien, Colin Greenwood - AlbumOK Computer - GenreAlternative & Punk - KindMPEG audio file - Size7709786 - Total Time383555 - Disc Number1 - Disc Count1 - Track Number2 - Track Count12 - Year1997 - Date Modified2014-05-16T15:58:11Z - Date Added2014-05-16T15:58:05Z - Bit Rate160 - Sample Rate44100 - Play Count1 - Play Date3484152659 - Play Date UTC2014-05-28T14:40:59Z - Normalization3190 - Artwork Count1 - Persistent ID510EB20CABFC8793 - Track TypeFile - File Type1297106739 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Radiohead/OK%20Computer/02%20Paranoid%20Android.mp3 - File Folder Count4 - Library Folder Count1 - - 11524 - - Track ID11524 - NameStairway To Heaven - ArtistRodrigo Y Gabriela - Album ArtistRodrigo y Gabriela - ComposerJimmy Page.Robert Plant - AlbumRodrigo Y Gabriela - GenreJazz - KindMPEG audio file - Size5748606 - Total Time284264 - Disc Number1 - Disc Count1 - Track Number6 - Track Count9 - Year2006 - Date Modified2014-05-16T15:58:16Z - Date Added2014-05-16T15:58:11Z - Bit Rate160 - Sample Rate44100 - Play Count12 - Play Date3463328692 - Play Date UTC2013-09-29T14:14:52Z - Normalization1690 - Artwork Count1 - Persistent ID8DF4FFBDF2ABADFE - Track TypeFile - File Type1297106739 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rodrigo%20y%20Gabriela/Rodrigo%20Y%20Gabriela/06%20Stairway%20To%20Heaven.mp3 - File Folder Count4 - Library Folder Count1 - - 11526 - - Track ID11526 - NameKiss From A Rose - ArtistSeal - ComposerSeal - AlbumSeal - GenrePop - KindMPEG audio file - Size5779661 - Total Time288026 - Disc Number1 - Disc Count1 - Track Number6 - Track Count11 - Year1994 - Date Modified2014-05-16T15:58:20Z - Date Added2014-05-16T15:58:16Z - Bit Rate160 - Sample Rate44100 - Play Count3 - Play Date3484153616 - Play Date UTC2014-05-28T14:56:56Z - Normalization2746 - Artwork Count1 - Persistent IDFB0DD24DC3802EAE - Track TypeFile - File Type1297106739 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Seal/Seal/06%20Kiss%20From%20A%20Rose.mp3 - File Folder Count4 - Library Folder Count1 - - 11528 - - Track ID11528 - NameThe Girl From Ipanema - ArtistStan Getz & João Gilberto - ComposerAntonio Carlos Brasiliero de Almeida Jobim, Marcus Vinícius da Cruz de Melo Moraes, Norman Gimbel - AlbumGetz/Gilberto - GenreLatin - KindMPEG audio file - Size6536352 - Total Time324649 - Disc Number1 - Disc Count1 - Track Number1 - Track Count10 - Year1989 - Date Modified2014-05-16T15:58:25Z - Date Added2014-05-16T15:58:21Z - Bit Rate160 - Sample Rate44100 - Play Count5 - Play Date3483884742 - Play Date UTC2014-05-25T12:15:42Z - Normalization882 - Artwork Count1 - Sort NameGirl From Ipanema - Persistent ID8C88EBD27474B166 - Track TypeFile - File Type1297106739 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stan%20Getz%20&%20Joa%CC%83o%20Gilberto/Getz_Gilberto/01%20The%20Girl%20From%20Ipanema.mp3 - File Folder Count4 - Library Folder Count1 - - 11530 - - Track ID11530 - NameDesert Rose - ArtistSting - ComposerSting, Kipper - AlbumBrand New Day - GenreRock - KindMPEG audio file - Size5737967 - Total Time285936 - Disc Number1 - Disc Count1 - Track Number2 - Track Count10 - Year2000 - Date Modified2014-05-16T15:58:29Z - Date Added2014-05-16T15:58:25Z - Bit Rate160 - Sample Rate44100 - Play Count1 - Play Date3483884409 - Play Date UTC2014-05-25T12:10:09Z - Skip Count1 - Skip Date2013-01-20T15:54:34Z - Normalization3471 - Artwork Count1 - Persistent ID05423A25A9F92D88 - Track TypeFile - File Type1297106739 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Sting/Brand%20New%20Day/02%20Desert%20Rose.mp3 - File Folder Count4 - Library Folder Count1 - - 11532 - - Track ID11532 - NameA Thousand Years - ArtistSting - ComposerSting, Kipper - AlbumBrand New Day - GenreRock - KindMPEG audio file - Size7181499 - Total Time358112 - Disc Number1 - Disc Count1 - Track Number1 - Track Count10 - Year2000 - Date Modified2014-05-16T15:58:34Z - Date Added2014-05-16T15:58:29Z - Bit Rate160 - Sample Rate44100 - Play Count1 - Play Date3441561867 - Play Date UTC2013-01-20T15:54:27Z - Normalization1457 - Artwork Count1 - Sort NameThousand Years - Persistent ID5372DA73C0200FBE - Track TypeFile - File Type1297106739 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Sting/Brand%20New%20Day/01%20A%20Thousand%20Years.mp3 - File Folder Count4 - Library Folder Count1 - - 11534 - - Track ID11534 - NameTalkin' Bout A Revolution - ArtistTracy Chapman - AlbumTracy Chapman - GenreFolk - KindMPEG audio file - Size3242906 - Total Time160391 - Disc Number1 - Disc Count1 - Track Number1 - Track Count11 - Year1982 - Date Modified2014-05-16T15:58:37Z - Date Added2014-05-16T15:58:35Z - Bit Rate160 - Sample Rate44100 - Play Count3 - Play Date3456245680 - Play Date UTC2013-07-09T14:44:40Z - Album Rating60 - Album Rating Computed - Normalization1037 - Artwork Count1 - Persistent ID87009FCFDBB4F38B - Track TypeFile - File Type1297106739 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tracy%20Chapman/Tracy%20Chapman/01%20Talkin'%20Bout%20A%20Revolution.mp3 - File Folder Count4 - Library Folder Count1 - - 11536 - - Track ID11536 - NameSocha Hai - ArtistFarhan Akhtar - ComposerShankar Ehsaan Loy - AlbumRock On!! - GenreWorld - KindMPEG audio file - Size5140123 - Total Time251611 - Disc Number1 - Disc Count1 - Track Number1 - Track Count9 - Year2008 - Date Modified2014-05-16T15:58:41Z - Date Added2014-05-16T15:58:37Z - Bit Rate160 - Sample Rate44100 - Skip Count1 - Skip Date2014-06-02T14:35:45Z - Normalization3559 - Compilation - Artwork Count1 - Persistent IDD38F3E2983EE6D81 - Track TypeFile - File Type1297106739 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Rock%20On!!/01%20Socha%20Hai.mp3 - File Folder Count4 - Library Folder Count1 - - 11538 - - Track ID11538 - NameRock On!! - ArtistFarhan Akhtar - ComposerShankar Ehsaan Loy - AlbumRock On!! - GenreWorld - KindMPEG audio file - Size4813070 - Total Time235258 - Disc Number1 - Disc Count1 - Track Number3 - Track Count9 - Year2008 - Date Modified2014-05-16T15:58:44Z - Date Added2014-05-16T15:58:41Z - Bit Rate160 - Sample Rate44100 - Normalization3935 - Compilation - Artwork Count1 - Persistent IDB24EE14D61D28799 - Track TypeFile - File Type1297106739 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Rock%20On!!/03%20Rock%20On!!.mp3 - File Folder Count4 - Library Folder Count1 - - 11540 - - Track ID11540 - NameDown To The River To Pray - ArtistAlison Krauss - ComposerJimmie Rodgers/Traditional, arr. by Allison Krauss - AlbumO Brother, Where Art Thou? - GenreSoundtrack - KindMPEG audio file - Size3539467 - Total Time176039 - Disc Number1 - Disc Count1 - Track Number4 - Track Count19 - Year2000 - Date Modified2014-05-16T15:58:47Z - Date Added2014-05-16T15:58:44Z - Bit Rate160 - Sample Rate44100 - Play Count5 - Play Date3484232059 - Play Date UTC2014-05-29T12:44:19Z - Normalization1009 - Compilation - Artwork Count1 - Persistent IDCB3B27511FBE5A3C - Track TypeFile - File Type1297106739 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/O%20Brother,%20Where%20Art%20Thou_/04%20Down%20To%20The%20River%20To%20Pray.mp3 - File Folder Count4 - Library Folder Count1 - - 11542 - - Track ID11542 - NameOne - ArtistAimee Mann - ComposerHarry Nilsson - AlbumMagnolia - GenreFolk - KindMPEG audio file - Size3505476 - Total Time173453 - Disc Number1 - Disc Count1 - Track Number1 - Track Count13 - Year1999 - Date Modified2014-05-16T15:58:49Z - Date Added2014-05-16T15:58:47Z - Bit Rate160 - Sample Rate44100 - Play Count6 - Play Date3483120464 - Play Date UTC2014-05-16T15:57:44Z - Skip Count1 - Skip Date2013-01-22T16:38:41Z - Normalization1259 - Compilation - Artwork Count1 - Persistent IDE6CCEE7DE9BC6B3E - Track TypeFile - File Type1297106739 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Magnolia/01%20One.mp3 - File Folder Count4 - Library Folder Count1 - - 11544 - - Track ID11544 - NameYesterday - ArtistThe Beatles - ComposerJohn Lennon & Paul McCartney - Album1 - GenrePop - KindMPEG audio file - Size2566173 - Total Time125466 - Disc Number1 - Disc Count1 - Track Number11 - Track Count27 - Year1965 - BPM100 - Date Modified2014-05-18T01:27:24Z - Date Added2014-05-18T01:27:21Z - Bit Rate160 - Sample Rate44100 - Skip Count1 - Skip Date2014-05-24T05:08:40Z - Normalization1747 - Artwork Count1 - Sort ArtistBeatles - Persistent IDCEDA02F0D43BB081 - Track TypeFile - File Type1297106739 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/1/11%20Yesterday.mp3 - File Folder Count4 - Library Folder Count1 - - 22969 - - Track ID22969 - NameSineWave_440Hz - KindWAV audio file - Size264644 - Total Time3000 - Date Modified2013-07-31T09:11:58Z - Date Added2014-06-04T05:20:08Z - Bit Rate705 - Sample Rate44100 - Play Count12 - Play Date3484811026 - Play Date UTC2014-06-05T05:33:46Z - Persistent ID4E594946FAAFE907 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Unknown%20Artist/Unknown%20Album/SineWave_440Hz.wav - File Folder Count4 - Library Folder Count1 - - - Playlists - - - NameMusic - Playlist ID16176 - Playlist Persistent ID5DAA1B5BE0792F05 - Distinguished Kind4 - Music - All Items - Playlist Items - - - Track ID22969 - - - Track ID11544 - - - Track ID11542 - - - Track ID11540 - - - Track ID11538 - - - Track ID11536 - - - Track ID11534 - - - Track ID11532 - - - Track ID11530 - - - Track ID11528 - - - Track ID11526 - - - Track ID11524 - - - Track ID11522 - - - Track ID11520 - - - Track ID11518 - - - Track ID11516 - - - Track ID11514 - - - Track ID11512 - - - Track ID11510 - - - Track ID11508 - - - Track ID11506 - - - Track ID11504 - - - Track ID11502 - - - Track ID11500 - - - Track ID11498 - - - Track ID11496 - - - Track ID11494 - - - Track ID11492 - - - Track ID11490 - - - Track ID11488 - - - Track ID11486 - - - Track ID11484 - - - Track ID11482 - - - Track ID11480 - - - Track ID11478 - - - Track ID11476 - - - Track ID11474 - - - Track ID11472 - - - Track ID11470 - - - Track ID11468 - - - Track ID11466 - - - Track ID11464 - - - Track ID11462 - - - Track ID11460 - - - Track ID11458 - - - Track ID11456 - - - Track ID11454 - - - Track ID11452 - - - Track ID11450 - - - Track ID11434 - - - Track ID11386 - - - Track ID11388 - - - Track ID11390 - - - Track ID11392 - - - Track ID11394 - - - Track ID11396 - - - Track ID11398 - - - Track ID11400 - - - Track ID11402 - - - Track ID11404 - - - Track ID11406 - - - Track ID11408 - - - Track ID11410 - - - Track ID11412 - - - Track ID11382 - - - Track ID11384 - - - Track ID11370 - - - Track ID11372 - - - Track ID11374 - - - Track ID11376 - - - Track ID11378 - - - Track ID11380 - - - Track ID11364 - - - Track ID11366 - - - Track ID11368 - - - Track ID11346 - - - Track ID11348 - - - Track ID11350 - - - Track ID11352 - - - Track ID11354 - - - Track ID11356 - - - Track ID11358 - - - Track ID11360 - - - Track ID11362 - - - Track ID11338 - - - Track ID11340 - - - Track ID11342 - - - Track ID11344 - - - Track ID11332 - - - Track ID11334 - - - Track ID11336 - - - Track ID11322 - - - Track ID11324 - - - Track ID11326 - - - Track ID11328 - - - Track ID11330 - - - Track ID11310 - - - Track ID11312 - - - Track ID11314 - - - Track ID11316 - - - Track ID11318 - - - Track ID11320 - - - Track ID11302 - - - Track ID11304 - - - Track ID11306 - - - Track ID11308 - - - Track ID11292 - - - Track ID11294 - - - Track ID11296 - - - Track ID11298 - - - Track ID11300 - - - Track ID11288 - - - Track ID11290 - - - Track ID11284 - - - Track ID11286 - - - Track ID11282 - - - Track ID11278 - - - Track ID11280 - - - Track ID11272 - - - Track ID11274 - - - Track ID11276 - - - Track ID11264 - - - Track ID11266 - - - Track ID11268 - - - Track ID11270 - - - Track ID11256 - - - Track ID11258 - - - Track ID11260 - - - Track ID11262 - - - Track ID11254 - - - Track ID11248 - - - Track ID11250 - - - Track ID11252 - - - Track ID11240 - - - Track ID11242 - - - Track ID11244 - - - Track ID11246 - - - Track ID11232 - - - Track ID11234 - - - Track ID11236 - - - Track ID11238 - - - Track ID11218 - - - Track ID11220 - - - Track ID11222 - - - Track ID11224 - - - Track ID11226 - - - Track ID11228 - - - Track ID11230 - - - Track ID11206 - - - Track ID11208 - - - Track ID11210 - - - Track ID11212 - - - Track ID11214 - - - Track ID11216 - - - Track ID11198 - - - Track ID11200 - - - Track ID11202 - - - Track ID11204 - - - Track ID11188 - - - Track ID11190 - - - Track ID11192 - - - Track ID11194 - - - Track ID11196 - - - Track ID11186 - - - Track ID11128 - - - Track ID11126 - - - Track ID11124 - - - Track ID11112 - - - Track ID11110 - - - Track ID11106 - - - Track ID11108 - - - Track ID11096 - - - Track ID11098 - - - Track ID11100 - - - Track ID11102 - - - Track ID11104 - - - Track ID11088 - - - Track ID11090 - - - Track ID11092 - - - Track ID11094 - - - Track ID11080 - - - Track ID11082 - - - Track ID11084 - - - Track ID11086 - - - Track ID11078 - - - Track ID11076 - - - Track ID11074 - - - Track ID11072 - - - Track ID11070 - - - Track ID11068 - - - Track ID11066 - - - Track ID11064 - - - Track ID11062 - - - Track ID11060 - - - Track ID11058 - - - Track ID11056 - - - Track ID11054 - - - Track ID11046 - - - Track ID11044 - - - Track ID11042 - - - Track ID11040 - - - Track ID11010 - - - Track ID10952 - - - Track ID10924 - - - Track ID10922 - - - Track ID10920 - - - Track ID10914 - - - Track ID10896 - - - Track ID10898 - - - Track ID10900 - - - Track ID10894 - - - Track ID10904 - - - Track ID10906 - - - Track ID10908 - - - Track ID10902 - - - Track ID10910 - - - Track ID10856 - - - Track ID10858 - - - Track ID10860 - - - Track ID10862 - - - Track ID10864 - - - Track ID10866 - - - Track ID10868 - - - Track ID10870 - - - Track ID10872 - - - Track ID10874 - - - Track ID10876 - - - Track ID10878 - - - Track ID10880 - - - Track ID10882 - - - Track ID10884 - - - Track ID10886 - - - Track ID10888 - - - Track ID10890 - - - Track ID10892 - - - Track ID10846 - - - Track ID10850 - - - Track ID10832 - - - Track ID10834 - - - Track ID10836 - - - Track ID10838 - - - Track ID10840 - - - Track ID10842 - - - Track ID10844 - - - Track ID10848 - - - Track ID10852 - - - Track ID10854 - - - Track ID10790 - - - Track ID10788 - - - Track ID10784 - - - Track ID10782 - - - Track ID10770 - - - Track ID10772 - - - Track ID10774 - - - Track ID10776 - - - Track ID10778 - - - Track ID10768 - - - Track ID10762 - - - Track ID10766 - - - Track ID10758 - - - Track ID10756 - - - Track ID10760 - - - Track ID10764 - - - Track ID10744 - - - Track ID10740 - - - Track ID10752 - - - Track ID10754 - - - Track ID10746 - - - Track ID10742 - - - Track ID10748 - - - Track ID10750 - - - Track ID10738 - - - Track ID10706 - - - Track ID10702 - - - Track ID10700 - - - Track ID10698 - - - Track ID10696 - - - Track ID10694 - - - Track ID10692 - - - Track ID10690 - - - Track ID10688 - - - Track ID10660 - - - Track ID10662 - - - Track ID10664 - - - Track ID10666 - - - Track ID10668 - - - Track ID10670 - - - Track ID10672 - - - Track ID10674 - - - Track ID10676 - - - Track ID10678 - - - Track ID10680 - - - Track ID10682 - - - Track ID10684 - - - Track ID10686 - - - Track ID10632 - - - Track ID10634 - - - Track ID10636 - - - Track ID10638 - - - Track ID10640 - - - Track ID10642 - - - Track ID10644 - - - Track ID10646 - - - Track ID10648 - - - Track ID10650 - - - Track ID10652 - - - Track ID10654 - - - Track ID10656 - - - Track ID10658 - - - Track ID10614 - - - Track ID10616 - - - Track ID10618 - - - Track ID10620 - - - Track ID10622 - - - Track ID10624 - - - Track ID10626 - - - Track ID10628 - - - Track ID10630 - - - Track ID10612 - - - Track ID10604 - - - Track ID10606 - - - Track ID10608 - - - Track ID10610 - - - Track ID10598 - - - Track ID10600 - - - Track ID10602 - - - Track ID10590 - - - Track ID10592 - - - Track ID10594 - - - Track ID10596 - - - Track ID10588 - - - Track ID10586 - - - Track ID10580 - - - Track ID10582 - - - Track ID10584 - - - Track ID10574 - - - Track ID10576 - - - Track ID10578 - - - Track ID10568 - - - Track ID10570 - - - Track ID10572 - - - Track ID10560 - - - Track ID10562 - - - Track ID10564 - - - Track ID10566 - - - Track ID10550 - - - Track ID10552 - - - Track ID10554 - - - Track ID10556 - - - Track ID10558 - - - Track ID10542 - - - Track ID10544 - - - Track ID10546 - - - Track ID10548 - - - Track ID10532 - - - Track ID10534 - - - Track ID10536 - - - Track ID10538 - - - Track ID10540 - - - Track ID10524 - - - Track ID10526 - - - Track ID10528 - - - Track ID10530 - - - Track ID10520 - - - Track ID10522 - - - Track ID10506 - - - Track ID10508 - - - Track ID10510 - - - Track ID10512 - - - Track ID10514 - - - Track ID10516 - - - Track ID10518 - - - Track ID10500 - - - Track ID10502 - - - Track ID10504 - - - Track ID10490 - - - Track ID10492 - - - Track ID10494 - - - Track ID10496 - - - Track ID10498 - - - Track ID10484 - - - Track ID10486 - - - Track ID10488 - - - Track ID10478 - - - Track ID10480 - - - Track ID10482 - - - Track ID10470 - - - Track ID10472 - - - Track ID10474 - - - Track ID10476 - - - Track ID10462 - - - Track ID10464 - - - Track ID10466 - - - Track ID10468 - - - Track ID10454 - - - Track ID10456 - - - Track ID10458 - - - Track ID10460 - - - Track ID10448 - - - Track ID10450 - - - Track ID10452 - - - Track ID10442 - - - Track ID10444 - - - Track ID10446 - - - Track ID10436 - - - Track ID10438 - - - Track ID10440 - - - Track ID10432 - - - Track ID10434 - - - Track ID10428 - - - Track ID10430 - - - Track ID10424 - - - Track ID10426 - - - Track ID10416 - - - Track ID10418 - - - Track ID10420 - - - Track ID10422 - - - Track ID10400 - - - Track ID10402 - - - Track ID10392 - - - Track ID10394 - - - Track ID10396 - - - Track ID10398 - - - Track ID10376 - - - Track ID10378 - - - Track ID10380 - - - Track ID10382 - - - Track ID10384 - - - Track ID10386 - - - Track ID10388 - - - Track ID10390 - - - Track ID10368 - - - Track ID10370 - - - Track ID10372 - - - Track ID10374 - - - Track ID10366 - - - Track ID10360 - - - Track ID10362 - - - Track ID10364 - - - Track ID10352 - - - Track ID10354 - - - Track ID10356 - - - Track ID10358 - - - Track ID10350 - - - Track ID10342 - - - Track ID10344 - - - Track ID10346 - - - Track ID10348 - - - Track ID10328 - - - Track ID10330 - - - Track ID10332 - - - Track ID10334 - - - Track ID10336 - - - Track ID10338 - - - Track ID10340 - - - Track ID10256 - - - Track ID10254 - - - Track ID10252 - - - Track ID10250 - - - Track ID10248 - - - Track ID10246 - - - Track ID10244 - - - Track ID10242 - - - Track ID10240 - - - Track ID10238 - - - Track ID10236 - - - Track ID10234 - - - Track ID10232 - - - Track ID10230 - - - Track ID10228 - - - Track ID10226 - - - Track ID10224 - - - Track ID10222 - - - Track ID10220 - - - Track ID10218 - - - Track ID10216 - - - Track ID10214 - - - Track ID10212 - - - Track ID10210 - - - Track ID10174 - - - Track ID10176 - - - Track ID10170 - - - Track ID10172 - - - Track ID10144 - - - Track ID10146 - - - Track ID10148 - - - Track ID10150 - - - Track ID10152 - - - Track ID10154 - - - Track ID10156 - - - Track ID10160 - - - Track ID10140 - - - Track ID10158 - - - Track ID10142 - - - Track ID10178 - - - Track ID10180 - - - Track ID10162 - - - Track ID10164 - - - Track ID10166 - - - Track ID10168 - - - Track ID10138 - - - Track ID10136 - - - Track ID10134 - - - Track ID10132 - - - Track ID10130 - - - Track ID10128 - - - Track ID10126 - - - Track ID10124 - - - Track ID10122 - - - Track ID10120 - - - Track ID10118 - - - Track ID10116 - - - Track ID10114 - - - Track ID10112 - - - Track ID10110 - - - Track ID10108 - - - Track ID10106 - - - Track ID10104 - - - Track ID10102 - - - Track ID10100 - - - Track ID10098 - - - Track ID10096 - - - Track ID10094 - - - Track ID10092 - - - Track ID10090 - - - Track ID10088 - - - Track ID10086 - - - Track ID10084 - - - Track ID10082 - - - Track ID10080 - - - Track ID10078 - - - Track ID10076 - - - Track ID10074 - - - Track ID10072 - - - Track ID10070 - - - Track ID10068 - - - Track ID10066 - - - Track ID10064 - - - Track ID10062 - - - Track ID10060 - - - Track ID9974 - - - Track ID9972 - - - Track ID9970 - - - Track ID9968 - - - Track ID9966 - - - Track ID9964 - - - Track ID9962 - - - Track ID9960 - - - Track ID9958 - - - Track ID9956 - - - Track ID9954 - - - Track ID9952 - - - Track ID9950 - - - Track ID9948 - - - Track ID9946 - - - Track ID9944 - - - Track ID9942 - - - Track ID9940 - - - Track ID9938 - - - Track ID9936 - - - Track ID9934 - - - Track ID9932 - - - Track ID9930 - - - Track ID9928 - - - Track ID9926 - - - Track ID9924 - - - Track ID9922 - - - Track ID9920 - - - Track ID9918 - - - Track ID9916 - - - Track ID9914 - - - Track ID9912 - - - Track ID9910 - - - Track ID9908 - - - Track ID9906 - - - Track ID9904 - - - Track ID9902 - - - Track ID9900 - - - Track ID9898 - - - Track ID9896 - - - Track ID9892 - - - Track ID9894 - - - Track ID9890 - - - Track ID9888 - - - Track ID9886 - - - Track ID9884 - - - Track ID9882 - - - Track ID9880 - - - Track ID9878 - - - Track ID9876 - - - Track ID9874 - - - Track ID9872 - - - Track ID9870 - - - Track ID9868 - - - Track ID9866 - - - Track ID9862 - - - Track ID9864 - - - Track ID9858 - - - Track ID9860 - - - Track ID9856 - - - Track ID9854 - - - Track ID9852 - - - Track ID9850 - - - Track ID9848 - - - Track ID9844 - - - Track ID9846 - - - Track ID9842 - - - Track ID9840 - - - Track ID9838 - - - Track ID9836 - - - Track ID9834 - - - Track ID9832 - - - Track ID9828 - - - Track ID9830 - - - Track ID9826 - - - Track ID9824 - - - Track ID9822 - - - Track ID9820 - - - Track ID9818 - - - Track ID9816 - - - Track ID9814 - - - Track ID9812 - - - Track ID9810 - - - Track ID9804 - - - Track ID9806 - - - Track ID9808 - - - Track ID9802 - - - Track ID9798 - - - Track ID9796 - - - Track ID9794 - - - Track ID9792 - - - Track ID9790 - - - Track ID9788 - - - Track ID9786 - - - Track ID9784 - - - Track ID9782 - - - Track ID9780 - - - Track ID9778 - - - Track ID9776 - - - Track ID9774 - - - Track ID9772 - - - Track ID9770 - - - Track ID9768 - - - Track ID9766 - - - Track ID9764 - - - Track ID9762 - - - Track ID9760 - - - Track ID9758 - - - Track ID9676 - - - Track ID9678 - - - Track ID9680 - - - Track ID9682 - - - Track ID9684 - - - Track ID9686 - - - Track ID9688 - - - Track ID9690 - - - Track ID9692 - - - Track ID9694 - - - Track ID9696 - - - Track ID9698 - - - Track ID9700 - - - Track ID9702 - - - Track ID9704 - - - Track ID9706 - - - Track ID9708 - - - Track ID9710 - - - Track ID9712 - - - Track ID9714 - - - Track ID9716 - - - Track ID9718 - - - Track ID9720 - - - Track ID9722 - - - Track ID9724 - - - Track ID9726 - - - Track ID9728 - - - Track ID9730 - - - Track ID9732 - - - Track ID9734 - - - Track ID9736 - - - Track ID9738 - - - Track ID9674 - - - Track ID9672 - - - Track ID9670 - - - Track ID9668 - - - Track ID9666 - - - Track ID9664 - - - Track ID9662 - - - Track ID9660 - - - Track ID9658 - - - Track ID9656 - - - Track ID9654 - - - Track ID9652 - - - Track ID9650 - - - Track ID9648 - - - Track ID9646 - - - Track ID9644 - - - Track ID9642 - - - Track ID9640 - - - Track ID9638 - - - Track ID9636 - - - Track ID9634 - - - Track ID9632 - - - Track ID9630 - - - Track ID9628 - - - Track ID9626 - - - Track ID9624 - - - Track ID9622 - - - Track ID9620 - - - Track ID9618 - - - Track ID9616 - - - Track ID9614 - - - Track ID9612 - - - Track ID9610 - - - Track ID9608 - - - Track ID9606 - - - Track ID9604 - - - Track ID9602 - - - Track ID9600 - - - Track ID9598 - - - Track ID9596 - - - Track ID9594 - - - Track ID9592 - - - Track ID9590 - - - Track ID9588 - - - Track ID9586 - - - Track ID9584 - - - Track ID9582 - - - Track ID9580 - - - Track ID9578 - - - Track ID9576 - - - Track ID9574 - - - Track ID9572 - - - Track ID9570 - - - Track ID9568 - - - Track ID9566 - - - Track ID9564 - - - Track ID9562 - - - Track ID9560 - - - Track ID9558 - - - Track ID9556 - - - Track ID9554 - - - Track ID9552 - - - Track ID9550 - - - Track ID9548 - - - Track ID9546 - - - Track ID9544 - - - Track ID9542 - - - Track ID9540 - - - Track ID9538 - - - Track ID9536 - - - Track ID9534 - - - Track ID9532 - - - Track ID9528 - - - Track ID9530 - - - Track ID9524 - - - Track ID9526 - - - Track ID9498 - - - Track ID9500 - - - Track ID9502 - - - Track ID9504 - - - Track ID9506 - - - Track ID9508 - - - Track ID9510 - - - Track ID9514 - - - Track ID9494 - - - Track ID9512 - - - Track ID9496 - - - Track ID9516 - - - Track ID9518 - - - Track ID9520 - - - Track ID9522 - - - Track ID9492 - - - Track ID9490 - - - Track ID9488 - - - Track ID9486 - - - Track ID9484 - - - Track ID9482 - - - Track ID9480 - - - Track ID9478 - - - Track ID9476 - - - Track ID9474 - - - Track ID9472 - - - Track ID9470 - - - Track ID9468 - - - Track ID9466 - - - Track ID9464 - - - Track ID9462 - - - Track ID9460 - - - Track ID9458 - - - Track ID9442 - - - Track ID9444 - - - Track ID9446 - - - Track ID9448 - - - Track ID9450 - - - Track ID9452 - - - Track ID9428 - - - Track ID9430 - - - Track ID9432 - - - Track ID9434 - - - Track ID9436 - - - Track ID9438 - - - Track ID9440 - - - Track ID9418 - - - Track ID9420 - - - Track ID9422 - - - Track ID9424 - - - Track ID9426 - - - Track ID9410 - - - Track ID9412 - - - Track ID9414 - - - Track ID9416 - - - Track ID9404 - - - Track ID9406 - - - Track ID9408 - - - Track ID9396 - - - Track ID9398 - - - Track ID9402 - - - Track ID9400 - - - Track ID9382 - - - Track ID9380 - - - Track ID9378 - - - Track ID9376 - - - Track ID9374 - - - Track ID9372 - - - Track ID9370 - - - Track ID9368 - - - Track ID9366 - - - Track ID9364 - - - Track ID9362 - - - Track ID9360 - - - Track ID9358 - - - Track ID9356 - - - Track ID9354 - - - Track ID9352 - - - Track ID9350 - - - Track ID9348 - - - Track ID9346 - - - Track ID9344 - - - Track ID9342 - - - Track ID9340 - - - Track ID9338 - - - Track ID9336 - - - Track ID9334 - - - Track ID9332 - - - Track ID9330 - - - Track ID9328 - - - Track ID9326 - - - Track ID9324 - - - Track ID9322 - - - Track ID9320 - - - Track ID9318 - - - Track ID9316 - - - Track ID9314 - - - Track ID9312 - - - Track ID9310 - - - Track ID9308 - - - Track ID9306 - - - Track ID9304 - - - Track ID9302 - - - Track ID9300 - - - Track ID9298 - - - Track ID9296 - - - Track ID9294 - - - Track ID9292 - - - Track ID9290 - - - Track ID9288 - - - Track ID9286 - - - Track ID9284 - - - Track ID9282 - - - Track ID9280 - - - Track ID9278 - - - Track ID9276 - - - Track ID9274 - - - Track ID9272 - - - Track ID9270 - - - Track ID9268 - - - Track ID9266 - - - Track ID9264 - - - Track ID9262 - - - Track ID9260 - - - Track ID9258 - - - Track ID9256 - - - Track ID9254 - - - Track ID9252 - - - Track ID9250 - - - Track ID9248 - - - Track ID9246 - - - Track ID9244 - - - Track ID9242 - - - Track ID9240 - - - Track ID9238 - - - Track ID9236 - - - Track ID9234 - - - Track ID9232 - - - Track ID9230 - - - Track ID9228 - - - Track ID9226 - - - Track ID9224 - - - Track ID9222 - - - Track ID9220 - - - Track ID9218 - - - Track ID9216 - - - Track ID9214 - - - Track ID9212 - - - Track ID9210 - - - Track ID9208 - - - Track ID9206 - - - Track ID9204 - - - Track ID9202 - - - Track ID9200 - - - Track ID9198 - - - Track ID9196 - - - Track ID9194 - - - Track ID9192 - - - Track ID9190 - - - Track ID9188 - - - Track ID9186 - - - Track ID9184 - - - Track ID9182 - - - Track ID9180 - - - Track ID9178 - - - Track ID9176 - - - Track ID9174 - - - Track ID9172 - - - Track ID9170 - - - Track ID9168 - - - Track ID9166 - - - Track ID9164 - - - Track ID9162 - - - Track ID9160 - - - Track ID9158 - - - Track ID9156 - - - Track ID9154 - - - Track ID9152 - - - Track ID9150 - - - Track ID9148 - - - Track ID9146 - - - Track ID9144 - - - Track ID9142 - - - Track ID9140 - - - Track ID9138 - - - Track ID9136 - - - Track ID9134 - - - Track ID9132 - - - Track ID9130 - - - Track ID9128 - - - Track ID9126 - - - Track ID9124 - - - Track ID9122 - - - Track ID9120 - - - Track ID9118 - - - Track ID9116 - - - Track ID9114 - - - Track ID9112 - - - Track ID9110 - - - Track ID9108 - - - Track ID9106 - - - Track ID9104 - - - Track ID9102 - - - Track ID9100 - - - Track ID9098 - - - Track ID9096 - - - Track ID9094 - - - Track ID9092 - - - Track ID9090 - - - Track ID9088 - - - Track ID9086 - - - Track ID9084 - - - Track ID9082 - - - Track ID9080 - - - Track ID9076 - - - Track ID9074 - - - Track ID9072 - - - Track ID9070 - - - Track ID9068 - - - Track ID9066 - - - Track ID9064 - - - Track ID9062 - - - Track ID9060 - - - Track ID9058 - - - Track ID9056 - - - Track ID9054 - - - Track ID9052 - - - Track ID9050 - - - Track ID9048 - - - Track ID9046 - - - Track ID9044 - - - Track ID9042 - - - Track ID9040 - - - Track ID9038 - - - Track ID9036 - - - Track ID9034 - - - Track ID9032 - - - Track ID9030 - - - Track ID9028 - - - Track ID9026 - - - Track ID9024 - - - Track ID9022 - - - Track ID9020 - - - Track ID9018 - - - Track ID9016 - - - Track ID9014 - - - Track ID9012 - - - Track ID9010 - - - Track ID9008 - - - Track ID9006 - - - Track ID9004 - - - Track ID9002 - - - Track ID9000 - - - Track ID8998 - - - Track ID8996 - - - Track ID8994 - - - Track ID8992 - - - Track ID8990 - - - Track ID8988 - - - Track ID8986 - - - Track ID8984 - - - Track ID8982 - - - Track ID8980 - - - Track ID8978 - - - Track ID8976 - - - Track ID8974 - - - Track ID8972 - - - Track ID8970 - - - Track ID8968 - - - Track ID8966 - - - Track ID8964 - - - Track ID8962 - - - Track ID8960 - - - Track ID8958 - - - Track ID8956 - - - Track ID8954 - - - Track ID8952 - - - Track ID8950 - - - Track ID8948 - - - Track ID8946 - - - Track ID8944 - - - Track ID8942 - - - Track ID8940 - - - Track ID8938 - - - Track ID8936 - - - Track ID8934 - - - Track ID8932 - - - Track ID8930 - - - Track ID8928 - - - Track ID8926 - - - Track ID8924 - - - Track ID8922 - - - Track ID8920 - - - Track ID8918 - - - Track ID8916 - - - Track ID8914 - - - Track ID8912 - - - Track ID8910 - - - Track ID8908 - - - Track ID8906 - - - Track ID8904 - - - Track ID8902 - - - Track ID8900 - - - Track ID8898 - - - Track ID8896 - - - Track ID8894 - - - Track ID8892 - - - Track ID8890 - - - Track ID8888 - - - Track ID8886 - - - Track ID8884 - - - Track ID8882 - - - Track ID8880 - - - Track ID8878 - - - Track ID8876 - - - Track ID8874 - - - Track ID8872 - - - Track ID8870 - - - Track ID8868 - - - Track ID8866 - - - Track ID8864 - - - Track ID8862 - - - Track ID8860 - - - Track ID8858 - - - Track ID8856 - - - Track ID8854 - - - Track ID8852 - - - Track ID8850 - - - Track ID8848 - - - Track ID8846 - - - Track ID8844 - - - Track ID8842 - - - Track ID8840 - - - Track ID8838 - - - Track ID8836 - - - Track ID8834 - - - Track ID8832 - - - Track ID8830 - - - Track ID8828 - - - Track ID8826 - - - Track ID8824 - - - Track ID8822 - - - Track ID8820 - - - Track ID8818 - - - Track ID8816 - - - Track ID8814 - - - Track ID8812 - - - Track ID8810 - - - Track ID8808 - - - Track ID8806 - - - Track ID8804 - - - Track ID8802 - - - Track ID8800 - - - Track ID8798 - - - Track ID8796 - - - Track ID8794 - - - Track ID8792 - - - Track ID8790 - - - Track ID8788 - - - Track ID8786 - - - Track ID8784 - - - Track ID8782 - - - Track ID8780 - - - Track ID8778 - - - Track ID8776 - - - Track ID8774 - - - Track ID8772 - - - Track ID8770 - - - Track ID8768 - - - Track ID8766 - - - Track ID8764 - - - Track ID8762 - - - Track ID8760 - - - Track ID8758 - - - Track ID8756 - - - Track ID8754 - - - Track ID8752 - - - Track ID8750 - - - Track ID8748 - - - Track ID8746 - - - Track ID8744 - - - Track ID8742 - - - Track ID8740 - - - Track ID8738 - - - Track ID8736 - - - Track ID8734 - - - Track ID8732 - - - Track ID8730 - - - Track ID8728 - - - Track ID8726 - - - Track ID8724 - - - Track ID8710 - - - Track ID8712 - - - Track ID8714 - - - Track ID8716 - - - Track ID8718 - - - Track ID8720 - - - Track ID8722 - - - Track ID8696 - - - Track ID8698 - - - Track ID8700 - - - Track ID8702 - - - Track ID8704 - - - Track ID8706 - - - Track ID8708 - - - Track ID8686 - - - Track ID8688 - - - Track ID8690 - - - Track ID8692 - - - Track ID8694 - - - Track ID8672 - - - Track ID8674 - - - Track ID8676 - - - Track ID8678 - - - Track ID8680 - - - Track ID8682 - - - Track ID8684 - - - Track ID8670 - - - Track ID8658 - - - Track ID8660 - - - Track ID8662 - - - Track ID8664 - - - Track ID8666 - - - Track ID8668 - - - Track ID8654 - - - Track ID8656 - - - Track ID8648 - - - Track ID8650 - - - Track ID8652 - - - Track ID8632 - - - Track ID8634 - - - Track ID8636 - - - Track ID8638 - - - Track ID8640 - - - Track ID8642 - - - Track ID8644 - - - Track ID8646 - - - Track ID8630 - - - Track ID8628 - - - Track ID8586 - - - Track ID8588 - - - Track ID8590 - - - Track ID8592 - - - Track ID8594 - - - Track ID8596 - - - Track ID8598 - - - Track ID8600 - - - Track ID8602 - - - Track ID8604 - - - Track ID8606 - - - Track ID8608 - - - Track ID8610 - - - Track ID8612 - - - Track ID8614 - - - Track ID8616 - - - Track ID8618 - - - Track ID8620 - - - Track ID8622 - - - Track ID8624 - - - Track ID8626 - - - Track ID8582 - - - Track ID8584 - - - Track ID8580 - - - Track ID8578 - - - Track ID8576 - - - Track ID8574 - - - Track ID8572 - - - Track ID8570 - - - Track ID8568 - - - Track ID8566 - - - Track ID8564 - - - Track ID8562 - - - Track ID8560 - - - Track ID8558 - - - Track ID8556 - - - Track ID8554 - - - Track ID8552 - - - Track ID8550 - - - Track ID8548 - - - Track ID8546 - - - Track ID8544 - - - Track ID8542 - - - Track ID8540 - - - Track ID8538 - - - Track ID8536 - - - Track ID8534 - - - Track ID8532 - - - Track ID8530 - - - Track ID8528 - - - Track ID8526 - - - Track ID8524 - - - Track ID8522 - - - Track ID8520 - - - Track ID8518 - - - Track ID8516 - - - Track ID8514 - - - Track ID8512 - - - Track ID8510 - - - Track ID8508 - - - Track ID8506 - - - Track ID8504 - - - Track ID8502 - - - Track ID8500 - - - Track ID8498 - - - Track ID8496 - - - Track ID8494 - - - Track ID8492 - - - Track ID8490 - - - Track ID8488 - - - Track ID8486 - - - Track ID8484 - - - Track ID8482 - - - Track ID8480 - - - Track ID8474 - - - Track ID8476 - - - Track ID8478 - - - Track ID8456 - - - Track ID8458 - - - Track ID8460 - - - Track ID8462 - - - Track ID8464 - - - Track ID8466 - - - Track ID8468 - - - Track ID8470 - - - Track ID8472 - - - Track ID8442 - - - Track ID8444 - - - Track ID8446 - - - Track ID8448 - - - Track ID8450 - - - Track ID8452 - - - Track ID8454 - - - Track ID8440 - - - Track ID8436 - - - Track ID8438 - - - Track ID8430 - - - Track ID8432 - - - Track ID8434 - - - Track ID8422 - - - Track ID8424 - - - Track ID8426 - - - Track ID8428 - - - Track ID8416 - - - Track ID8418 - - - Track ID8420 - - - Track ID8414 - - - Track ID8412 - - - Track ID8384 - - - Track ID8410 - - - Track ID8386 - - - Track ID8388 - - - Track ID8390 - - - Track ID8392 - - - Track ID8394 - - - Track ID8396 - - - Track ID8398 - - - Track ID8400 - - - Track ID8402 - - - Track ID8404 - - - Track ID8406 - - - Track ID8408 - - - Track ID8362 - - - Track ID8364 - - - Track ID8366 - - - Track ID8368 - - - Track ID8370 - - - Track ID8372 - - - Track ID8374 - - - Track ID8376 - - - Track ID8378 - - - Track ID8380 - - - Track ID8382 - - - Track ID8346 - - - Track ID8348 - - - Track ID8350 - - - Track ID8354 - - - Track ID8358 - - - Track ID8360 - - - Track ID8344 - - - Track ID8352 - - - Track ID8356 - - - Track ID8330 - - - Track ID8332 - - - Track ID8334 - - - Track ID8336 - - - Track ID8338 - - - Track ID8340 - - - Track ID8342 - - - Track ID8306 - - - Track ID8308 - - - Track ID8310 - - - Track ID8312 - - - Track ID8314 - - - Track ID8316 - - - Track ID8318 - - - Track ID8320 - - - Track ID8322 - - - Track ID8324 - - - Track ID8326 - - - Track ID8304 - - - Track ID8218 - - - Track ID8220 - - - Track ID8222 - - - Track ID8224 - - - Track ID8226 - - - Track ID8228 - - - Track ID8230 - - - Track ID8232 - - - Track ID8234 - - - Track ID8236 - - - Track ID8238 - - - Track ID8240 - - - Track ID8242 - - - Track ID8244 - - - Track ID8246 - - - Track ID8248 - - - Track ID8250 - - - Track ID8252 - - - Track ID8254 - - - Track ID8256 - - - Track ID8258 - - - Track ID8260 - - - Track ID8262 - - - Track ID8264 - - - Track ID8266 - - - Track ID8268 - - - Track ID8270 - - - Track ID8272 - - - Track ID8274 - - - Track ID8276 - - - Track ID8278 - - - Track ID8280 - - - Track ID8282 - - - Track ID8284 - - - Track ID8286 - - - Track ID8288 - - - Track ID8290 - - - Track ID8292 - - - Track ID8298 - - - Track ID8294 - - - Track ID8296 - - - Track ID8208 - - - Track ID8206 - - - Track ID8210 - - - Track ID8212 - - - Track ID8214 - - - Track ID8216 - - - Track ID8152 - - - Track ID8194 - - - Track ID8094 - - - Track ID8096 - - - Track ID8098 - - - Track ID8100 - - - Track ID8102 - - - Track ID8104 - - - Track ID8106 - - - Track ID8108 - - - Track ID8110 - - - Track ID8112 - - - Track ID8114 - - - Track ID8116 - - - Track ID8118 - - - Track ID8120 - - - Track ID8122 - - - Track ID8124 - - - Track ID8126 - - - Track ID8128 - - - Track ID8170 - - - Track ID8172 - - - Track ID8174 - - - Track ID8176 - - - Track ID8178 - - - Track ID8180 - - - Track ID8182 - - - Track ID8184 - - - Track ID8186 - - - Track ID8188 - - - Track ID8190 - - - Track ID8192 - - - Track ID8162 - - - Track ID8130 - - - Track ID8132 - - - Track ID8134 - - - Track ID8136 - - - Track ID8138 - - - Track ID8140 - - - Track ID8142 - - - Track ID8144 - - - Track ID8146 - - - Track ID8148 - - - Track ID8150 - - - Track ID8154 - - - Track ID8156 - - - Track ID8158 - - - Track ID8160 - - - Track ID8164 - - - Track ID8166 - - - Track ID8168 - - - Track ID8196 - - - Track ID8198 - - - Track ID8200 - - - Track ID8202 - - - Track ID8204 - - - Track ID8040 - - - Track ID8042 - - - Track ID8044 - - - Track ID8046 - - - Track ID8048 - - - Track ID8050 - - - Track ID8052 - - - Track ID8054 - - - Track ID8056 - - - Track ID8058 - - - Track ID8060 - - - Track ID8062 - - - Track ID8064 - - - Track ID8066 - - - Track ID8068 - - - Track ID8070 - - - Track ID8072 - - - Track ID8074 - - - Track ID8076 - - - Track ID8078 - - - Track ID8080 - - - Track ID8082 - - - Track ID8084 - - - Track ID8086 - - - Track ID8038 - - - Track ID8036 - - - Track ID8034 - - - Track ID8032 - - - Track ID8030 - - - Track ID8028 - - - Track ID8026 - - - Track ID8024 - - - Track ID8022 - - - Track ID8020 - - - Track ID8018 - - - Track ID8016 - - - Track ID8014 - - - Track ID8012 - - - Track ID8010 - - - Track ID8008 - - - Track ID8006 - - - Track ID8004 - - - Track ID8002 - - - Track ID8000 - - - Track ID7976 - - - Track ID7974 - - - Track ID7972 - - - Track ID7970 - - - Track ID7968 - - - Track ID7966 - - - Track ID7964 - - - Track ID7962 - - - Track ID7960 - - - Track ID7958 - - - Track ID7956 - - - Track ID7954 - - - Track ID7952 - - - Track ID7950 - - - Track ID7948 - - - Track ID7946 - - - Track ID7944 - - - Track ID7942 - - - Track ID7940 - - - Track ID7938 - - - Track ID7936 - - - Track ID7934 - - - Track ID7932 - - - Track ID7930 - - - Track ID7906 - - - Track ID7904 - - - Track ID7902 - - - Track ID7900 - - - Track ID7898 - - - Track ID7896 - - - Track ID7894 - - - Track ID7892 - - - Track ID7890 - - - Track ID7888 - - - Track ID7886 - - - Track ID7884 - - - Track ID7876 - - - Track ID7874 - - - Track ID7872 - - - Track ID7870 - - - Track ID7868 - - - Track ID7866 - - - Track ID7864 - - - Track ID7862 - - - Track ID7860 - - - Track ID7858 - - - Track ID7856 - - - Track ID7854 - - - Track ID7852 - - - Track ID7850 - - - Track ID7848 - - - Track ID7846 - - - Track ID7844 - - - Track ID7842 - - - Track ID7840 - - - Track ID7838 - - - Track ID7798 - - - Track ID7796 - - - Track ID7790 - - - Track ID7792 - - - Track ID7794 - - - Track ID7780 - - - Track ID7782 - - - Track ID7784 - - - Track ID7786 - - - Track ID7788 - - - Track ID7774 - - - Track ID7776 - - - Track ID7778 - - - Track ID7772 - - - Track ID7770 - - - Track ID7768 - - - Track ID7766 - - - Track ID7764 - - - Track ID7762 - - - Track ID7760 - - - Track ID7758 - - - Track ID7756 - - - Track ID7754 - - - Track ID7752 - - - Track ID7750 - - - Track ID7748 - - - Track ID7746 - - - Track ID7744 - - - Track ID7742 - - - Track ID7740 - - - Track ID7738 - - - Track ID7736 - - - Track ID7734 - - - Track ID7732 - - - Track ID7730 - - - Track ID7728 - - - Track ID7726 - - - Track ID7724 - - - Track ID7722 - - - Track ID7720 - - - Track ID7718 - - - Track ID7716 - - - Track ID7714 - - - Track ID7712 - - - Track ID7710 - - - Track ID7708 - - - Track ID7706 - - - Track ID7704 - - - Track ID7702 - - - Track ID7700 - - - Track ID7698 - - - Track ID7696 - - - Track ID7694 - - - Track ID7692 - - - Track ID7690 - - - Track ID7688 - - - Track ID7686 - - - Track ID7684 - - - Track ID7682 - - - Track ID7680 - - - Track ID7678 - - - Track ID7676 - - - Track ID7674 - - - Track ID7672 - - - Track ID7670 - - - Track ID7668 - - - Track ID7666 - - - Track ID7664 - - - Track ID7662 - - - Track ID7660 - - - Track ID7658 - - - Track ID7656 - - - Track ID7654 - - - Track ID7652 - - - Track ID7650 - - - Track ID7648 - - - Track ID7646 - - - Track ID7644 - - - Track ID7642 - - - Track ID7640 - - - Track ID7638 - - - Track ID7636 - - - Track ID7634 - - - Track ID7632 - - - Track ID7630 - - - Track ID7628 - - - Track ID7626 - - - Track ID7624 - - - Track ID7622 - - - Track ID7620 - - - Track ID7618 - - - Track ID7616 - - - Track ID7614 - - - Track ID7612 - - - Track ID7610 - - - Track ID7608 - - - Track ID7606 - - - Track ID7604 - - - Track ID7602 - - - Track ID7600 - - - Track ID7598 - - - Track ID7596 - - - Track ID7594 - - - Track ID7592 - - - Track ID7590 - - - Track ID7588 - - - Track ID7586 - - - Track ID7584 - - - Track ID7582 - - - Track ID7580 - - - Track ID7578 - - - Track ID7576 - - - Track ID7574 - - - Track ID7572 - - - Track ID7570 - - - Track ID7568 - - - Track ID7566 - - - Track ID7564 - - - Track ID7562 - - - Track ID7536 - - - Track ID7538 - - - Track ID7540 - - - Track ID7542 - - - Track ID7544 - - - Track ID7546 - - - Track ID7548 - - - Track ID7550 - - - Track ID7552 - - - Track ID7554 - - - Track ID7556 - - - Track ID7558 - - - Track ID7560 - - - Track ID7534 - - - Track ID7532 - - - Track ID7530 - - - Track ID7528 - - - Track ID7526 - - - Track ID7524 - - - Track ID7522 - - - Track ID7520 - - - Track ID7518 - - - Track ID7516 - - - Track ID7514 - - - Track ID7512 - - - Track ID7510 - - - Track ID7508 - - - Track ID7506 - - - Track ID7504 - - - Track ID7502 - - - Track ID7500 - - - Track ID7498 - - - Track ID7496 - - - Track ID7494 - - - Track ID7492 - - - Track ID7490 - - - Track ID7488 - - - Track ID7486 - - - Track ID7484 - - - Track ID7482 - - - Track ID7480 - - - Track ID7478 - - - Track ID7476 - - - Track ID7474 - - - Track ID7472 - - - Track ID7470 - - - Track ID7468 - - - Track ID7466 - - - Track ID7464 - - - Track ID7462 - - - Track ID7460 - - - Track ID7458 - - - Track ID7456 - - - Track ID7454 - - - Track ID7452 - - - Track ID7450 - - - Track ID7448 - - - Track ID7446 - - - Track ID7444 - - - Track ID7442 - - - Track ID7440 - - - Track ID7438 - - - Track ID7436 - - - Track ID7434 - - - Track ID7432 - - - Track ID7430 - - - Track ID7428 - - - Track ID7426 - - - Track ID7424 - - - Track ID7422 - - - Track ID7420 - - - Track ID7418 - - - Track ID7416 - - - Track ID7414 - - - Track ID7412 - - - Track ID7410 - - - Track ID7408 - - - Track ID7406 - - - Track ID7404 - - - Track ID7402 - - - Track ID7400 - - - Track ID7398 - - - Track ID7396 - - - Track ID7394 - - - Track ID7392 - - - Track ID7390 - - - Track ID7388 - - - Track ID7386 - - - Track ID7384 - - - Track ID7382 - - - Track ID7380 - - - Track ID7378 - - - Track ID7376 - - - Track ID7374 - - - Track ID7372 - - - Track ID7370 - - - Track ID7368 - - - Track ID7366 - - - Track ID7364 - - - Track ID7362 - - - Track ID7360 - - - Track ID7358 - - - Track ID7356 - - - Track ID7354 - - - Track ID7352 - - - Track ID7350 - - - Track ID7348 - - - Track ID7346 - - - Track ID7344 - - - Track ID7342 - - - Track ID7340 - - - Track ID7338 - - - Track ID7336 - - - Track ID7334 - - - Track ID7332 - - - Track ID7330 - - - Track ID7328 - - - Track ID7326 - - - Track ID7324 - - - Track ID7322 - - - Track ID7320 - - - Track ID7318 - - - Track ID7316 - - - Track ID7314 - - - Track ID7312 - - - Track ID7310 - - - Track ID7308 - - - Track ID7306 - - - Track ID7304 - - - Track ID7302 - - - Track ID7300 - - - Track ID7298 - - - Track ID7296 - - - Track ID7294 - - - Track ID7292 - - - Track ID7290 - - - Track ID7288 - - - Track ID7286 - - - Track ID7284 - - - Track ID7282 - - - Track ID7280 - - - Track ID7278 - - - Track ID7276 - - - Track ID7274 - - - Track ID7272 - - - Track ID7270 - - - Track ID7268 - - - Track ID7266 - - - Track ID7264 - - - Track ID7262 - - - Track ID7260 - - - Track ID7258 - - - Track ID7256 - - - Track ID7254 - - - Track ID7252 - - - Track ID7250 - - - Track ID7248 - - - Track ID7246 - - - Track ID7244 - - - Track ID7242 - - - Track ID7240 - - - Track ID7238 - - - Track ID7236 - - - Track ID7234 - - - Track ID7232 - - - Track ID7230 - - - Track ID7228 - - - Track ID7226 - - - Track ID7224 - - - Track ID7222 - - - Track ID7220 - - - Track ID7218 - - - Track ID7216 - - - Track ID7214 - - - Track ID7212 - - - Track ID7210 - - - Track ID7208 - - - Track ID7206 - - - Track ID7204 - - - Track ID7202 - - - Track ID7200 - - - Track ID7198 - - - Track ID7196 - - - Track ID7194 - - - Track ID7192 - - - Track ID7190 - - - Track ID7188 - - - Track ID7186 - - - Track ID7184 - - - Track ID7182 - - - Track ID7180 - - - Track ID7178 - - - Track ID7176 - - - Track ID7174 - - - Track ID7172 - - - Track ID7170 - - - Track ID7168 - - - Track ID7166 - - - Track ID7164 - - - Track ID7162 - - - Track ID7160 - - - Track ID7158 - - - Track ID7156 - - - Track ID7154 - - - Track ID7152 - - - Track ID7150 - - - Track ID7148 - - - Track ID7146 - - - Track ID7144 - - - Track ID7142 - - - Track ID7140 - - - Track ID7138 - - - Track ID7136 - - - Track ID7134 - - - Track ID7132 - - - Track ID7130 - - - Track ID7128 - - - Track ID7126 - - - Track ID7124 - - - Track ID7122 - - - Track ID7120 - - - Track ID7118 - - - Track ID7116 - - - Track ID7114 - - - Track ID7112 - - - Track ID7110 - - - Track ID7108 - - - Track ID7106 - - - Track ID7102 - - - Track ID7100 - - - Track ID7098 - - - Track ID7096 - - - Track ID7094 - - - Track ID7092 - - - Track ID7090 - - - Track ID7088 - - - Track ID7086 - - - Track ID7084 - - - Track ID7082 - - - Track ID7080 - - - Track ID7078 - - - Track ID7076 - - - Track ID7074 - - - Track ID7072 - - - Track ID7070 - - - Track ID7068 - - - Track ID7066 - - - Track ID7064 - - - Track ID7062 - - - Track ID7060 - - - Track ID7058 - - - Track ID7056 - - - Track ID7054 - - - Track ID7052 - - - Track ID7050 - - - Track ID7048 - - - Track ID7046 - - - Track ID7044 - - - Track ID7042 - - - Track ID7040 - - - Track ID7038 - - - Track ID7036 - - - Track ID7034 - - - Track ID7032 - - - Track ID7030 - - - Track ID7028 - - - Track ID7026 - - - Track ID7024 - - - Track ID7022 - - - Track ID7020 - - - Track ID7018 - - - Track ID7016 - - - Track ID7014 - - - Track ID7012 - - - Track ID7010 - - - Track ID7008 - - - Track ID7006 - - - Track ID7004 - - - Track ID7002 - - - Track ID7000 - - - Track ID6998 - - - Track ID6996 - - - Track ID6994 - - - Track ID6992 - - - Track ID6990 - - - Track ID6988 - - - Track ID6986 - - - Track ID6984 - - - Track ID6982 - - - Track ID6980 - - - Track ID6978 - - - Track ID6976 - - - Track ID6974 - - - Track ID6972 - - - Track ID6970 - - - Track ID6968 - - - Track ID6966 - - - Track ID6964 - - - Track ID6962 - - - Track ID6960 - - - Track ID6958 - - - Track ID6956 - - - Track ID6954 - - - Track ID6952 - - - Track ID6950 - - - Track ID6948 - - - Track ID6946 - - - Track ID6944 - - - Track ID6942 - - - Track ID6940 - - - Track ID6938 - - - Track ID6936 - - - Track ID6934 - - - Track ID6932 - - - Track ID6930 - - - Track ID6928 - - - Track ID6926 - - - Track ID6924 - - - Track ID6922 - - - Track ID6920 - - - Track ID6918 - - - Track ID6916 - - - Track ID6914 - - - Track ID6912 - - - Track ID6910 - - - Track ID6908 - - - Track ID6906 - - - Track ID6904 - - - Track ID6902 - - - Track ID6900 - - - Track ID6898 - - - Track ID6896 - - - Track ID6894 - - - Track ID6892 - - - Track ID6890 - - - Track ID6888 - - - Track ID6886 - - - Track ID6884 - - - Track ID6882 - - - Track ID6880 - - - Track ID6878 - - - Track ID6876 - - - Track ID6874 - - - Track ID6872 - - - Track ID6870 - - - Track ID6866 - - - Track ID6868 - - - Track ID6862 - - - Track ID6846 - - - Track ID6848 - - - Track ID6850 - - - Track ID6844 - - - Track ID6840 - - - Track ID6842 - - - Track ID6830 - - - Track ID6832 - - - Track ID6834 - - - Track ID6836 - - - Track ID6838 - - - Track ID6812 - - - Track ID6814 - - - Track ID6816 - - - Track ID6818 - - - Track ID6820 - - - Track ID6822 - - - Track ID6824 - - - Track ID6826 - - - Track ID6828 - - - Track ID6746 - - - Track ID6748 - - - Track ID6754 - - - Track ID6756 - - - Track ID6794 - - - Track ID6796 - - - Track ID6758 - - - Track ID6786 - - - Track ID6790 - - - Track ID6800 - - - Track ID6806 - - - Track ID6740 - - - Track ID6760 - - - Track ID6762 - - - Track ID6766 - - - Track ID6768 - - - Track ID6774 - - - Track ID6784 - - - Track ID6798 - - - Track ID6804 - - - Track ID6770 - - - Track ID6792 - - - Track ID6752 - - - Track ID6764 - - - Track ID6810 - - - Track ID6772 - - - Track ID6776 - - - Track ID6778 - - - Track ID6780 - - - Track ID6782 - - - Track ID6788 - - - Track ID6802 - - - Track ID6808 - - - Track ID6738 - - - Track ID6742 - - - Track ID6744 - - - Track ID6750 - - - Track ID6734 - - - Track ID6710 - - - Track ID6726 - - - Track ID6706 - - - Track ID6730 - - - Track ID6732 - - - Track ID6718 - - - Track ID6722 - - - Track ID6712 - - - Track ID6716 - - - Track ID6736 - - - Track ID6724 - - - Track ID6728 - - - Track ID6720 - - - Track ID6708 - - - Track ID6714 - - - Track ID6692 - - - Track ID6690 - - - Track ID6688 - - - Track ID6686 - - - Track ID6684 - - - Track ID6682 - - - Track ID6680 - - - Track ID6678 - - - Track ID6676 - - - Track ID6668 - - - Track ID6670 - - - Track ID6672 - - - Track ID6674 - - - Track ID6664 - - - Track ID6666 - - - Track ID6658 - - - Track ID6652 - - - Track ID6654 - - - Track ID6656 - - - Track ID6660 - - - Track ID6662 - - - Track ID6650 - - - Track ID6644 - - - Track ID6646 - - - Track ID6648 - - - Track ID6630 - - - Track ID6632 - - - Track ID6634 - - - Track ID6636 - - - Track ID6638 - - - Track ID6640 - - - Track ID6642 - - - Track ID6612 - - - Track ID6614 - - - Track ID6616 - - - Track ID6618 - - - Track ID6620 - - - Track ID6622 - - - Track ID6624 - - - Track ID6626 - - - Track ID6628 - - - Track ID6604 - - - Track ID6606 - - - Track ID6608 - - - Track ID6610 - - - Track ID6600 - - - Track ID6602 - - - Track ID6586 - - - Track ID6588 - - - Track ID6590 - - - Track ID6592 - - - Track ID6594 - - - Track ID6596 - - - Track ID6598 - - - Track ID6580 - - - Track ID6582 - - - Track ID6584 - - - Track ID6576 - - - Track ID6578 - - - Track ID6560 - - - Track ID6562 - - - Track ID6564 - - - Track ID6566 - - - Track ID6568 - - - Track ID6570 - - - Track ID6572 - - - Track ID6574 - - - Track ID6554 - - - Track ID6556 - - - Track ID6558 - - - Track ID6548 - - - Track ID6550 - - - Track ID6552 - - - Track ID6538 - - - Track ID6540 - - - Track ID6542 - - - Track ID6544 - - - Track ID6546 - - - Track ID6536 - - - Track ID6534 - - - Track ID6526 - - - Track ID6528 - - - Track ID6530 - - - Track ID6532 - - - Track ID6524 - - - Track ID6514 - - - Track ID6516 - - - Track ID6518 - - - Track ID6520 - - - Track ID6522 - - - Track ID6510 - - - Track ID6512 - - - Track ID6508 - - - Track ID6498 - - - Track ID6500 - - - Track ID6502 - - - Track ID6504 - - - Track ID6506 - - - Track ID6488 - - - Track ID6490 - - - Track ID6492 - - - Track ID6494 - - - Track ID6496 - - - Track ID6484 - - - Track ID6486 - - - Track ID6472 - - - Track ID6474 - - - Track ID6476 - - - Track ID6478 - - - Track ID6480 - - - Track ID6482 - - - Track ID6470 - - - Track ID6460 - - - Track ID6458 - - - Track ID6468 - - - Track ID6456 - - - Track ID6464 - - - Track ID6466 - - - Track ID6462 - - - Track ID6454 - - - Track ID6450 - - - Track ID6444 - - - Track ID6452 - - - Track ID6440 - - - Track ID6438 - - - Track ID6442 - - - Track ID6448 - - - Track ID6446 - - - Track ID6428 - - - Track ID6430 - - - Track ID6432 - - - Track ID6434 - - - Track ID6436 - - - Track ID6418 - - - Track ID6420 - - - Track ID6422 - - - Track ID6424 - - - Track ID6426 - - - Track ID6404 - - - Track ID6406 - - - Track ID6408 - - - Track ID6410 - - - Track ID6412 - - - Track ID6414 - - - Track ID6416 - - - Track ID6400 - - - Track ID6402 - - - Track ID6396 - - - Track ID6398 - - - Track ID6394 - - - Track ID6382 - - - Track ID6384 - - - Track ID6386 - - - Track ID6388 - - - Track ID6390 - - - Track ID6392 - - - Track ID6376 - - - Track ID6378 - - - Track ID6380 - - - Track ID6370 - - - Track ID6372 - - - Track ID6374 - - - Track ID6368 - - - Track ID6356 - - - Track ID6358 - - - Track ID6360 - - - Track ID6362 - - - Track ID6364 - - - Track ID6366 - - - Track ID6350 - - - Track ID6352 - - - Track ID6354 - - - Track ID6342 - - - Track ID6344 - - - Track ID6346 - - - Track ID6348 - - - Track ID6324 - - - Track ID6326 - - - Track ID6328 - - - Track ID6330 - - - Track ID6332 - - - Track ID6334 - - - Track ID6336 - - - Track ID6338 - - - Track ID6340 - - - Track ID6306 - - - Track ID6308 - - - Track ID6310 - - - Track ID6312 - - - Track ID6314 - - - Track ID6316 - - - Track ID6318 - - - Track ID6320 - - - Track ID6322 - - - Track ID6300 - - - Track ID6302 - - - Track ID6304 - - - Track ID6294 - - - Track ID6296 - - - Track ID6298 - - - Track ID6280 - - - Track ID6282 - - - Track ID6284 - - - Track ID6286 - - - Track ID6288 - - - Track ID6290 - - - Track ID6292 - - - Track ID6276 - - - Track ID6278 - - - Track ID6258 - - - Track ID6260 - - - Track ID6262 - - - Track ID6264 - - - Track ID6266 - - - Track ID6268 - - - Track ID6270 - - - Track ID6272 - - - Track ID6274 - - - Track ID6256 - - - Track ID6252 - - - Track ID6254 - - - Track ID6248 - - - Track ID6250 - - - Track ID6240 - - - Track ID6242 - - - Track ID6244 - - - Track ID6246 - - - Track ID6228 - - - Track ID6230 - - - Track ID6232 - - - Track ID6234 - - - Track ID6236 - - - Track ID6238 - - - Track ID6220 - - - Track ID6222 - - - Track ID6224 - - - Track ID6226 - - - Track ID6214 - - - Track ID6216 - - - Track ID6218 - - - Track ID6198 - - - Track ID6200 - - - Track ID6202 - - - Track ID6204 - - - Track ID6206 - - - Track ID6208 - - - Track ID6210 - - - Track ID6212 - - - Track ID6184 - - - Track ID6186 - - - Track ID6188 - - - Track ID6190 - - - Track ID6192 - - - Track ID6194 - - - Track ID6196 - - - Track ID6172 - - - Track ID6174 - - - Track ID6176 - - - Track ID6178 - - - Track ID6180 - - - Track ID6182 - - - Track ID6158 - - - Track ID6160 - - - Track ID6162 - - - Track ID6164 - - - Track ID6166 - - - Track ID6168 - - - Track ID6170 - - - Track ID6150 - - - Track ID6152 - - - Track ID6154 - - - Track ID6156 - - - Track ID6148 - - - Track ID6140 - - - Track ID6142 - - - Track ID6144 - - - Track ID6146 - - - Track ID6132 - - - Track ID6134 - - - Track ID6136 - - - Track ID6138 - - - Track ID6128 - - - Track ID6130 - - - Track ID6120 - - - Track ID6122 - - - Track ID6124 - - - Track ID6126 - - - Track ID6114 - - - Track ID6116 - - - Track ID6118 - - - Track ID6110 - - - Track ID6112 - - - Track ID6098 - - - Track ID6094 - - - Track ID6096 - - - Track ID6100 - - - Track ID6102 - - - Track ID6104 - - - Track ID6106 - - - Track ID6108 - - - Track ID6078 - - - Track ID6080 - - - Track ID6082 - - - Track ID6084 - - - Track ID6086 - - - Track ID6088 - - - Track ID6090 - - - Track ID6092 - - - Track ID6058 - - - Track ID6060 - - - Track ID6062 - - - Track ID6064 - - - Track ID6066 - - - Track ID6068 - - - Track ID6070 - - - Track ID6072 - - - Track ID6074 - - - Track ID6076 - - - Track ID6046 - - - Track ID6048 - - - Track ID6050 - - - Track ID6052 - - - Track ID6054 - - - Track ID6056 - - - Track ID6040 - - - Track ID6038 - - - Track ID6034 - - - Track ID6042 - - - Track ID6030 - - - Track ID6032 - - - Track ID6036 - - - Track ID6044 - - - Track ID6016 - - - Track ID6022 - - - Track ID6018 - - - Track ID6020 - - - Track ID6026 - - - Track ID6024 - - - Track ID6028 - - - Track ID6004 - - - Track ID6012 - - - Track ID6014 - - - Track ID6010 - - - Track ID6008 - - - Track ID6006 - - - Track ID6000 - - - Track ID6002 - - - Track ID5988 - - - Track ID5998 - - - Track ID5992 - - - Track ID5986 - - - Track ID5994 - - - Track ID5990 - - - Track ID5996 - - - Track ID5980 - - - Track ID5978 - - - Track ID5984 - - - Track ID5982 - - - Track ID5974 - - - Track ID5976 - - - Track ID5958 - - - Track ID5960 - - - Track ID5970 - - - Track ID5972 - - - Track ID5962 - - - Track ID5964 - - - Track ID5966 - - - Track ID5968 - - - Track ID5944 - - - Track ID5954 - - - Track ID5956 - - - Track ID5946 - - - Track ID5948 - - - Track ID5950 - - - Track ID5952 - - - Track ID5942 - - - Track ID5936 - - - Track ID5932 - - - Track ID5934 - - - Track ID5938 - - - Track ID5940 - - - Track ID5922 - - - Track ID5924 - - - Track ID5926 - - - Track ID5928 - - - Track ID5930 - - - Track ID5916 - - - Track ID5918 - - - Track ID5920 - - - Track ID5900 - - - Track ID5908 - - - Track ID5910 - - - Track ID5912 - - - Track ID5914 - - - Track ID5902 - - - Track ID5904 - - - Track ID5898 - - - Track ID5906 - - - Track ID5890 - - - Track ID5884 - - - Track ID5886 - - - Track ID5882 - - - Track ID5888 - - - Track ID5892 - - - Track ID5896 - - - Track ID5894 - - - Track ID5876 - - - Track ID5868 - - - Track ID5870 - - - Track ID5872 - - - Track ID5874 - - - Track ID5878 - - - Track ID5880 - - - Track ID5848 - - - Track ID5850 - - - Track ID5852 - - - Track ID5854 - - - Track ID5856 - - - Track ID5858 - - - Track ID5860 - - - Track ID5862 - - - Track ID5864 - - - Track ID5866 - - - Track ID5842 - - - Track ID5844 - - - Track ID5846 - - - Track ID5834 - - - Track ID5836 - - - Track ID5838 - - - Track ID5840 - - - Track ID5820 - - - Track ID5822 - - - Track ID5824 - - - Track ID5826 - - - Track ID5828 - - - Track ID5830 - - - Track ID5832 - - - Track ID5808 - - - Track ID5810 - - - Track ID5812 - - - Track ID5814 - - - Track ID5816 - - - Track ID5818 - - - Track ID5794 - - - Track ID5796 - - - Track ID5798 - - - Track ID5800 - - - Track ID5802 - - - Track ID5804 - - - Track ID5806 - - - Track ID5790 - - - Track ID5792 - - - Track ID5768 - - - Track ID5770 - - - Track ID5772 - - - Track ID5774 - - - Track ID5776 - - - Track ID5778 - - - Track ID5780 - - - Track ID5782 - - - Track ID5784 - - - Track ID5786 - - - Track ID5788 - - - Track ID5762 - - - Track ID5764 - - - Track ID5766 - - - Track ID5758 - - - Track ID5760 - - - Track ID5748 - - - Track ID5756 - - - Track ID5750 - - - Track ID5754 - - - Track ID5752 - - - Track ID5746 - - - Track ID5744 - - - Track ID5742 - - - Track ID5740 - - - Track ID5732 - - - Track ID5734 - - - Track ID5738 - - - Track ID5736 - - - Track ID5722 - - - Track ID5724 - - - Track ID5726 - - - Track ID5728 - - - Track ID5730 - - - Track ID5716 - - - Track ID5718 - - - Track ID5720 - - - Track ID5708 - - - Track ID5710 - - - Track ID5712 - - - Track ID5714 - - - Track ID5700 - - - Track ID5702 - - - Track ID5704 - - - Track ID5706 - - - Track ID5692 - - - Track ID5694 - - - Track ID5696 - - - Track ID5698 - - - Track ID5688 - - - Track ID5690 - - - Track ID5682 - - - Track ID5674 - - - Track ID5676 - - - Track ID5678 - - - Track ID5684 - - - Track ID5686 - - - Track ID5680 - - - Track ID5662 - - - Track ID5668 - - - Track ID5672 - - - Track ID5664 - - - Track ID5660 - - - Track ID5670 - - - Track ID5666 - - - Track ID5648 - - - Track ID5654 - - - Track ID5652 - - - Track ID5650 - - - Track ID5656 - - - Track ID5658 - - - Track ID5644 - - - Track ID5646 - - - Track ID5630 - - - Track ID5632 - - - Track ID5634 - - - Track ID5636 - - - Track ID5638 - - - Track ID5640 - - - Track ID5642 - - - Track ID5628 - - - Track ID5614 - - - Track ID5620 - - - Track ID5622 - - - Track ID5616 - - - Track ID5618 - - - Track ID5624 - - - Track ID5626 - - - Track ID5612 - - - Track ID5604 - - - Track ID5606 - - - Track ID5608 - - - Track ID5610 - - - Track ID5600 - - - Track ID5602 - - - Track ID5588 - - - Track ID5590 - - - Track ID5596 - - - Track ID5598 - - - Track ID5584 - - - Track ID5586 - - - Track ID5592 - - - Track ID5594 - - - Track ID5576 - - - Track ID5578 - - - Track ID5580 - - - Track ID5582 - - - Track ID5572 - - - Track ID5574 - - - Track ID5556 - - - Track ID5558 - - - Track ID5560 - - - Track ID5562 - - - Track ID5564 - - - Track ID5566 - - - Track ID5568 - - - Track ID5570 - - - Track ID5548 - - - Track ID5542 - - - Track ID5550 - - - Track ID5546 - - - Track ID5552 - - - Track ID5554 - - - Track ID5544 - - - Track ID5524 - - - Track ID5534 - - - Track ID5526 - - - Track ID5528 - - - Track ID5532 - - - Track ID5536 - - - Track ID5538 - - - Track ID5540 - - - Track ID5530 - - - Track ID5510 - - - Track ID5512 - - - Track ID5514 - - - Track ID5516 - - - Track ID5518 - - - Track ID5520 - - - Track ID5522 - - - Track ID5508 - - - Track ID5498 - - - Track ID5500 - - - Track ID5502 - - - Track ID5504 - - - Track ID5506 - - - Track ID5494 - - - Track ID5496 - - - Track ID5490 - - - Track ID5492 - - - Track ID5488 - - - Track ID5476 - - - Track ID5478 - - - Track ID5480 - - - Track ID5484 - - - Track ID5486 - - - Track ID5482 - - - Track ID5460 - - - Track ID5462 - - - Track ID5464 - - - Track ID5466 - - - Track ID5468 - - - Track ID5470 - - - Track ID5472 - - - Track ID5474 - - - Track ID5444 - - - Track ID5446 - - - Track ID5448 - - - Track ID5450 - - - Track ID5452 - - - Track ID5454 - - - Track ID5456 - - - Track ID5458 - - - Track ID5438 - - - Track ID5440 - - - Track ID5442 - - - Track ID5426 - - - Track ID5434 - - - Track ID5436 - - - Track ID5424 - - - Track ID5432 - - - Track ID5428 - - - Track ID5430 - - - Track ID5410 - - - Track ID5414 - - - Track ID5418 - - - Track ID5420 - - - Track ID5416 - - - Track ID5412 - - - Track ID5422 - - - Track ID5400 - - - Track ID5402 - - - Track ID5408 - - - Track ID5396 - - - Track ID5398 - - - Track ID5404 - - - Track ID5406 - - - Track ID5394 - - - Track ID5384 - - - Track ID5386 - - - Track ID5388 - - - Track ID5390 - - - Track ID5382 - - - Track ID5392 - - - Track ID5376 - - - Track ID5378 - - - Track ID5372 - - - Track ID5374 - - - Track ID5380 - - - Track ID5368 - - - Track ID5370 - - - Track ID5354 - - - Track ID5356 - - - Track ID5358 - - - Track ID5360 - - - Track ID5362 - - - Track ID5364 - - - Track ID5366 - - - Track ID5352 - - - Track ID5340 - - - Track ID5342 - - - Track ID5344 - - - Track ID5346 - - - Track ID5348 - - - Track ID5350 - - - Track ID5326 - - - Track ID5328 - - - Track ID5330 - - - Track ID5332 - - - Track ID5334 - - - Track ID5336 - - - Track ID5338 - - - Track ID5310 - - - Track ID5312 - - - Track ID5314 - - - Track ID5316 - - - Track ID5318 - - - Track ID5320 - - - Track ID5322 - - - Track ID5324 - - - Track ID5306 - - - Track ID5308 - - - Track ID5296 - - - Track ID5298 - - - Track ID5300 - - - Track ID5302 - - - Track ID5304 - - - Track ID5284 - - - Track ID5286 - - - Track ID5288 - - - Track ID5290 - - - Track ID5292 - - - Track ID5294 - - - Track ID5282 - - - Track ID5266 - - - Track ID5268 - - - Track ID5270 - - - Track ID5272 - - - Track ID5274 - - - Track ID5276 - - - Track ID5278 - - - Track ID5280 - - - Track ID5260 - - - Track ID5264 - - - Track ID5262 - - - Track ID5258 - - - Track ID5256 - - - Track ID5254 - - - Track ID5252 - - - Track ID5246 - - - Track ID5244 - - - Track ID5248 - - - Track ID5250 - - - Track ID5242 - - - Track ID5230 - - - Track ID5232 - - - Track ID5238 - - - Track ID5234 - - - Track ID5236 - - - Track ID5240 - - - Track ID5214 - - - Track ID5216 - - - Track ID5218 - - - Track ID5220 - - - Track ID5226 - - - Track ID5228 - - - Track ID5222 - - - Track ID5224 - - - Track ID5204 - - - Track ID5206 - - - Track ID5208 - - - Track ID5210 - - - Track ID5212 - - - Track ID5202 - - - Track ID5200 - - - Track ID5198 - - - Track ID5184 - - - Track ID5194 - - - Track ID5186 - - - Track ID5192 - - - Track ID5190 - - - Track ID5188 - - - Track ID5196 - - - Track ID5182 - - - Track ID5180 - - - Track ID5170 - - - Track ID5172 - - - Track ID5174 - - - Track ID5176 - - - Track ID5178 - - - Track ID5156 - - - Track ID5158 - - - Track ID5160 - - - Track ID5162 - - - Track ID5164 - - - Track ID5166 - - - Track ID5168 - - - Track ID5154 - - - Track ID5144 - - - Track ID5146 - - - Track ID5148 - - - Track ID5150 - - - Track ID5152 - - - Track ID5136 - - - Track ID5138 - - - Track ID5140 - - - Track ID5142 - - - Track ID5126 - - - Track ID5128 - - - Track ID5130 - - - Track ID5132 - - - Track ID5134 - - - Track ID5114 - - - Track ID5116 - - - Track ID5118 - - - Track ID5120 - - - Track ID5122 - - - Track ID5124 - - - Track ID5094 - - - Track ID5096 - - - Track ID5098 - - - Track ID5100 - - - Track ID5102 - - - Track ID5104 - - - Track ID5106 - - - Track ID5108 - - - Track ID5110 - - - Track ID5112 - - - Track ID5088 - - - Track ID5090 - - - Track ID5092 - - - Track ID5084 - - - Track ID5082 - - - Track ID5080 - - - Track ID5086 - - - Track ID5066 - - - Track ID5072 - - - Track ID5068 - - - Track ID5062 - - - Track ID5074 - - - Track ID5070 - - - Track ID5076 - - - Track ID5078 - - - Track ID5064 - - - Track ID5056 - - - Track ID5060 - - - Track ID5052 - - - Track ID5050 - - - Track ID5046 - - - Track ID5048 - - - Track ID5054 - - - Track ID5058 - - - Track ID5036 - - - Track ID5038 - - - Track ID5040 - - - Track ID5042 - - - Track ID5044 - - - Track ID5034 - - - Track ID5020 - - - Track ID5024 - - - Track ID5026 - - - Track ID5028 - - - Track ID5032 - - - Track ID5022 - - - Track ID5030 - - - Track ID5016 - - - Track ID5010 - - - Track ID5018 - - - Track ID5014 - - - Track ID5012 - - - Track ID4998 - - - Track ID4994 - - - Track ID5000 - - - Track ID5004 - - - Track ID5002 - - - Track ID5008 - - - Track ID5006 - - - Track ID4996 - - - Track ID4992 - - - Track ID4990 - - - Track ID4988 - - - Track ID4982 - - - Track ID4986 - - - Track ID4984 - - - Track ID4978 - - - Track ID4972 - - - Track ID4974 - - - Track ID4976 - - - Track ID4980 - - - Track ID4970 - - - Track ID4958 - - - Track ID4960 - - - Track ID4962 - - - Track ID4964 - - - Track ID4966 - - - Track ID4968 - - - Track ID4942 - - - Track ID4944 - - - Track ID4946 - - - Track ID4948 - - - Track ID4950 - - - Track ID4952 - - - Track ID4954 - - - Track ID4956 - - - Track ID4926 - - - Track ID4928 - - - Track ID4930 - - - Track ID4932 - - - Track ID4934 - - - Track ID4936 - - - Track ID4938 - - - Track ID4940 - - - Track ID4924 - - - Track ID4912 - - - Track ID4914 - - - Track ID4916 - - - Track ID4918 - - - Track ID4920 - - - Track ID4922 - - - Track ID4900 - - - Track ID4902 - - - Track ID4904 - - - Track ID4906 - - - Track ID4908 - - - Track ID4910 - - - Track ID4886 - - - Track ID4888 - - - Track ID4890 - - - Track ID4892 - - - Track ID4894 - - - Track ID4896 - - - Track ID4898 - - - Track ID4878 - - - Track ID4880 - - - Track ID4868 - - - Track ID4882 - - - Track ID4884 - - - Track ID4874 - - - Track ID4876 - - - Track ID4870 - - - Track ID4872 - - - Track ID4854 - - - Track ID4856 - - - Track ID4858 - - - Track ID4860 - - - Track ID4866 - - - Track ID4862 - - - Track ID4864 - - - Track ID4846 - - - Track ID4848 - - - Track ID4838 - - - Track ID4840 - - - Track ID4850 - - - Track ID4852 - - - Track ID4842 - - - Track ID4844 - - - Track ID4826 - - - Track ID4828 - - - Track ID4834 - - - Track ID4836 - - - Track ID4830 - - - Track ID4832 - - - Track ID4810 - - - Track ID4812 - - - Track ID4814 - - - Track ID4816 - - - Track ID4818 - - - Track ID4820 - - - Track ID4822 - - - Track ID4824 - - - Track ID4796 - - - Track ID4798 - - - Track ID4800 - - - Track ID4802 - - - Track ID4804 - - - Track ID4806 - - - Track ID4808 - - - Track ID4782 - - - Track ID4784 - - - Track ID4786 - - - Track ID4788 - - - Track ID4790 - - - Track ID4792 - - - Track ID4794 - - - Track ID4774 - - - Track ID4776 - - - Track ID4778 - - - Track ID4780 - - - Track ID4768 - - - Track ID4770 - - - Track ID4772 - - - Track ID4756 - - - Track ID4758 - - - Track ID4752 - - - Track ID4754 - - - Track ID4760 - - - Track ID4762 - - - Track ID4764 - - - Track ID4766 - - - Track ID4740 - - - Track ID4742 - - - Track ID4750 - - - Track ID4734 - - - Track ID4736 - - - Track ID4738 - - - Track ID4744 - - - Track ID4746 - - - Track ID4748 - - - Track ID4724 - - - Track ID4726 - - - Track ID4728 - - - Track ID4730 - - - Track ID4732 - - - Track ID4722 - - - Track ID4718 - - - Track ID4720 - - - Track ID4704 - - - Track ID4716 - - - Track ID4714 - - - Track ID4710 - - - Track ID4706 - - - Track ID4700 - - - Track ID4702 - - - Track ID4712 - - - Track ID4708 - - - Track ID4686 - - - Track ID4688 - - - Track ID4690 - - - Track ID4692 - - - Track ID4694 - - - Track ID4696 - - - Track ID4698 - - - Track ID4672 - - - Track ID4674 - - - Track ID4676 - - - Track ID4678 - - - Track ID4680 - - - Track ID4682 - - - Track ID4684 - - - Track ID4666 - - - Track ID4668 - - - Track ID4670 - - - Track ID4664 - - - Track ID4652 - - - Track ID4654 - - - Track ID4656 - - - Track ID4658 - - - Track ID4660 - - - Track ID4662 - - - Track ID4634 - - - Track ID4636 - - - Track ID4638 - - - Track ID4640 - - - Track ID4642 - - - Track ID4644 - - - Track ID4646 - - - Track ID4648 - - - Track ID4650 - - - Track ID4620 - - - Track ID4628 - - - Track ID4622 - - - Track ID4630 - - - Track ID4626 - - - Track ID4624 - - - Track ID4632 - - - Track ID4608 - - - Track ID4616 - - - Track ID4610 - - - Track ID4612 - - - Track ID4618 - - - Track ID4614 - - - Track ID4602 - - - Track ID4600 - - - Track ID4604 - - - Track ID4598 - - - Track ID4594 - - - Track ID4606 - - - Track ID4596 - - - Track ID4592 - - - Track ID4584 - - - Track ID4586 - - - Track ID4588 - - - Track ID4590 - - - Track ID4568 - - - Track ID4570 - - - Track ID4572 - - - Track ID4574 - - - Track ID4576 - - - Track ID4578 - - - Track ID4580 - - - Track ID4582 - - - Track ID4566 - - - Track ID4558 - - - Track ID4560 - - - Track ID4562 - - - Track ID4564 - - - Track ID4554 - - - Track ID4556 - - - Track ID4538 - - - Track ID4540 - - - Track ID4542 - - - Track ID4544 - - - Track ID4546 - - - Track ID4548 - - - Track ID4550 - - - Track ID4552 - - - Track ID4534 - - - Track ID4536 - - - Track ID4526 - - - Track ID4528 - - - Track ID4530 - - - Track ID4532 - - - Track ID4512 - - - Track ID4514 - - - Track ID4516 - - - Track ID4518 - - - Track ID4520 - - - Track ID4522 - - - Track ID4524 - - - Track ID4500 - - - Track ID4502 - - - Track ID4504 - - - Track ID4506 - - - Track ID4508 - - - Track ID4510 - - - Track ID4484 - - - Track ID4486 - - - Track ID4488 - - - Track ID4490 - - - Track ID4492 - - - Track ID4494 - - - Track ID4496 - - - Track ID4498 - - - Track ID4468 - - - Track ID4470 - - - Track ID4472 - - - Track ID4474 - - - Track ID4476 - - - Track ID4478 - - - Track ID4480 - - - Track ID4482 - - - Track ID4462 - - - Track ID4464 - - - Track ID4466 - - - Track ID4458 - - - Track ID4460 - - - Track ID4456 - - - Track ID4436 - - - Track ID4438 - - - Track ID4440 - - - Track ID4442 - - - Track ID4444 - - - Track ID4446 - - - Track ID4448 - - - Track ID4450 - - - Track ID4452 - - - Track ID4454 - - - Track ID4432 - - - Track ID4434 - - - Track ID4428 - - - Track ID4430 - - - Track ID4426 - - - Track ID4422 - - - Track ID4424 - - - Track ID4418 - - - Track ID4420 - - - Track ID4414 - - - Track ID4416 - - - Track ID4412 - - - Track ID4406 - - - Track ID4408 - - - Track ID4410 - - - Track ID4398 - - - Track ID4400 - - - Track ID4402 - - - Track ID4404 - - - Track ID4392 - - - Track ID4394 - - - Track ID4396 - - - Track ID4378 - - - Track ID4380 - - - Track ID4382 - - - Track ID4384 - - - Track ID4386 - - - Track ID4388 - - - Track ID4390 - - - Track ID4372 - - - Track ID4374 - - - Track ID4376 - - - Track ID4366 - - - Track ID4368 - - - Track ID4370 - - - Track ID4362 - - - Track ID4364 - - - Track ID4358 - - - Track ID4360 - - - Track ID4356 - - - Track ID4352 - - - Track ID4354 - - - Track ID4348 - - - Track ID4350 - - - Track ID4344 - - - Track ID4346 - - - Track ID4342 - - - Track ID4336 - - - Track ID4338 - - - Track ID4340 - - - Track ID4334 - - - Track ID4318 - - - Track ID4320 - - - Track ID4322 - - - Track ID4324 - - - Track ID4326 - - - Track ID4328 - - - Track ID4330 - - - Track ID4332 - - - Track ID4306 - - - Track ID4308 - - - Track ID4310 - - - Track ID4312 - - - Track ID4314 - - - Track ID4316 - - - Track ID4302 - - - Track ID4304 - - - Track ID4296 - - - Track ID4298 - - - Track ID4300 - - - Track ID4288 - - - Track ID4290 - - - Track ID4292 - - - Track ID4294 - - - Track ID4276 - - - Track ID4278 - - - Track ID4280 - - - Track ID4282 - - - Track ID4284 - - - Track ID4286 - - - Track ID4264 - - - Track ID4266 - - - Track ID4268 - - - Track ID4270 - - - Track ID4272 - - - Track ID4274 - - - Track ID4248 - - - Track ID4250 - - - Track ID4252 - - - Track ID4254 - - - Track ID4256 - - - Track ID4258 - - - Track ID4260 - - - Track ID4262 - - - Track ID4232 - - - Track ID4234 - - - Track ID4236 - - - Track ID4238 - - - Track ID4240 - - - Track ID4242 - - - Track ID4244 - - - Track ID4246 - - - Track ID4216 - - - Track ID4218 - - - Track ID4220 - - - Track ID4222 - - - Track ID4224 - - - Track ID4226 - - - Track ID4228 - - - Track ID4230 - - - Track ID4200 - - - Track ID4202 - - - Track ID4204 - - - Track ID4206 - - - Track ID4208 - - - Track ID4210 - - - Track ID4212 - - - Track ID4214 - - - Track ID4190 - - - Track ID4192 - - - Track ID4194 - - - Track ID4196 - - - Track ID4198 - - - Track ID4188 - - - Track ID4180 - - - Track ID4182 - - - Track ID4184 - - - Track ID4186 - - - Track ID4174 - - - Track ID4176 - - - Track ID4178 - - - Track ID4160 - - - Track ID4162 - - - Track ID4164 - - - Track ID4166 - - - Track ID4168 - - - Track ID4170 - - - Track ID4172 - - - Track ID4146 - - - Track ID4148 - - - Track ID4150 - - - Track ID4152 - - - Track ID4154 - - - Track ID4156 - - - Track ID4158 - - - Track ID4138 - - - Track ID4140 - - - Track ID4142 - - - Track ID4144 - - - Track ID4130 - - - Track ID4132 - - - Track ID4134 - - - Track ID4136 - - - Track ID4120 - - - Track ID4122 - - - Track ID4124 - - - Track ID4126 - - - Track ID4128 - - - Track ID4116 - - - Track ID4118 - - - Track ID4112 - - - Track ID4114 - - - Track ID4102 - - - Track ID4104 - - - Track ID4106 - - - Track ID4108 - - - Track ID4110 - - - Track ID4100 - - - Track ID4088 - - - Track ID4090 - - - Track ID4092 - - - Track ID4094 - - - Track ID4096 - - - Track ID4098 - - - Track ID4078 - - - Track ID4080 - - - Track ID4082 - - - Track ID4084 - - - Track ID4086 - - - Track ID4074 - - - Track ID4076 - - - Track ID4062 - - - Track ID4064 - - - Track ID4066 - - - Track ID4068 - - - Track ID4070 - - - Track ID4072 - - - Track ID4058 - - - Track ID4060 - - - Track ID4052 - - - Track ID4054 - - - Track ID4056 - - - Track ID4050 - - - Track ID4048 - - - Track ID4046 - - - Track ID4030 - - - Track ID4032 - - - Track ID4034 - - - Track ID4036 - - - Track ID4038 - - - Track ID4040 - - - Track ID4042 - - - Track ID4044 - - - Track ID4028 - - - Track ID4026 - - - Track ID4018 - - - Track ID4020 - - - Track ID4022 - - - Track ID4024 - - - Track ID4002 - - - Track ID4004 - - - Track ID4006 - - - Track ID4008 - - - Track ID4010 - - - Track ID4012 - - - Track ID4014 - - - Track ID4016 - - - Track ID3982 - - - Track ID3984 - - - Track ID3986 - - - Track ID3988 - - - Track ID3990 - - - Track ID3992 - - - Track ID3994 - - - Track ID3996 - - - Track ID3998 - - - Track ID4000 - - - Track ID3980 - - - Track ID3976 - - - Track ID3978 - - - Track ID3972 - - - Track ID3974 - - - Track ID3970 - - - Track ID3966 - - - Track ID3968 - - - Track ID3964 - - - Track ID3962 - - - Track ID3944 - - - Track ID3946 - - - Track ID3948 - - - Track ID3950 - - - Track ID3952 - - - Track ID3954 - - - Track ID3956 - - - Track ID3958 - - - Track ID3960 - - - Track ID3930 - - - Track ID3932 - - - Track ID3934 - - - Track ID3936 - - - Track ID3938 - - - Track ID3940 - - - Track ID3942 - - - Track ID3926 - - - Track ID3928 - - - Track ID3918 - - - Track ID3920 - - - Track ID3922 - - - Track ID3924 - - - Track ID3910 - - - Track ID3912 - - - Track ID3914 - - - Track ID3916 - - - Track ID3900 - - - Track ID3902 - - - Track ID3904 - - - Track ID3906 - - - Track ID3908 - - - Track ID3894 - - - Track ID3896 - - - Track ID3898 - - - Track ID3878 - - - Track ID3880 - - - Track ID3882 - - - Track ID3884 - - - Track ID3886 - - - Track ID3888 - - - Track ID3890 - - - Track ID3892 - - - Track ID3874 - - - Track ID3876 - - - Track ID3862 - - - Track ID3864 - - - Track ID3866 - - - Track ID3868 - - - Track ID3870 - - - Track ID3872 - - - Track ID3848 - - - Track ID3850 - - - Track ID3852 - - - Track ID3854 - - - Track ID3856 - - - Track ID3858 - - - Track ID3860 - - - Track ID3844 - - - Track ID3846 - - - Track ID3832 - - - Track ID3834 - - - Track ID3836 - - - Track ID3838 - - - Track ID3840 - - - Track ID3842 - - - Track ID3830 - - - Track ID3826 - - - Track ID3828 - - - Track ID3824 - - - Track ID3816 - - - Track ID3818 - - - Track ID3820 - - - Track ID3822 - - - Track ID3814 - - - Track ID3812 - - - Track ID3802 - - - Track ID3804 - - - Track ID3806 - - - Track ID3808 - - - Track ID3810 - - - Track ID3800 - - - Track ID3790 - - - Track ID3792 - - - Track ID3794 - - - Track ID3796 - - - Track ID3798 - - - Track ID3784 - - - Track ID3786 - - - Track ID3788 - - - Track ID3776 - - - Track ID3778 - - - Track ID3780 - - - Track ID3782 - - - Track ID3762 - - - Track ID3766 - - - Track ID3770 - - - Track ID3774 - - - Track ID3760 - - - Track ID3764 - - - Track ID3768 - - - Track ID3772 - - - Track ID3744 - - - Track ID3748 - - - Track ID3750 - - - Track ID3756 - - - Track ID3758 - - - Track ID3746 - - - Track ID3752 - - - Track ID3754 - - - Track ID3732 - - - Track ID3736 - - - Track ID3738 - - - Track ID3730 - - - Track ID3734 - - - Track ID3740 - - - Track ID3742 - - - Track ID3728 - - - Track ID3708 - - - Track ID3710 - - - Track ID3712 - - - Track ID3714 - - - Track ID3716 - - - Track ID3718 - - - Track ID3720 - - - Track ID3722 - - - Track ID3724 - - - Track ID3726 - - - Track ID3688 - - - Track ID3690 - - - Track ID3692 - - - Track ID3694 - - - Track ID3696 - - - Track ID3698 - - - Track ID3700 - - - Track ID3702 - - - Track ID3704 - - - Track ID3706 - - - Track ID3686 - - - Track ID3678 - - - Track ID3680 - - - Track ID3682 - - - Track ID3684 - - - Track ID3676 - - - Track ID3674 - - - Track ID3658 - - - Track ID3660 - - - Track ID3662 - - - Track ID3664 - - - Track ID3666 - - - Track ID3668 - - - Track ID3670 - - - Track ID3672 - - - Track ID3648 - - - Track ID3650 - - - Track ID3652 - - - Track ID3654 - - - Track ID3656 - - - Track ID3634 - - - Track ID3636 - - - Track ID3638 - - - Track ID3640 - - - Track ID3642 - - - Track ID3644 - - - Track ID3646 - - - Track ID3630 - - - Track ID3632 - - - Track ID3614 - - - Track ID3616 - - - Track ID3618 - - - Track ID3620 - - - Track ID3622 - - - Track ID3624 - - - Track ID3626 - - - Track ID3628 - - - Track ID3598 - - - Track ID3600 - - - Track ID3602 - - - Track ID3604 - - - Track ID3606 - - - Track ID3608 - - - Track ID3610 - - - Track ID3612 - - - Track ID3592 - - - Track ID3594 - - - Track ID3596 - - - Track ID3582 - - - Track ID3584 - - - Track ID3586 - - - Track ID3588 - - - Track ID3590 - - - Track ID3578 - - - Track ID3580 - - - Track ID3570 - - - Track ID3572 - - - Track ID3574 - - - Track ID3576 - - - Track ID3564 - - - Track ID3566 - - - Track ID3568 - - - Track ID3554 - - - Track ID3556 - - - Track ID3558 - - - Track ID3560 - - - Track ID3562 - - - Track ID3550 - - - Track ID3552 - - - Track ID3538 - - - Track ID3540 - - - Track ID3542 - - - Track ID3544 - - - Track ID3546 - - - Track ID3548 - - - Track ID3520 - - - Track ID3522 - - - Track ID3524 - - - Track ID3526 - - - Track ID3528 - - - Track ID3530 - - - Track ID3532 - - - Track ID3534 - - - Track ID3536 - - - Track ID3510 - - - Track ID3512 - - - Track ID3514 - - - Track ID3516 - - - Track ID3518 - - - Track ID3506 - - - Track ID3508 - - - Track ID3490 - - - Track ID3492 - - - Track ID3494 - - - Track ID3496 - - - Track ID3498 - - - Track ID3500 - - - Track ID3502 - - - Track ID3504 - - - Track ID3484 - - - Track ID3486 - - - Track ID3488 - - - Track ID3474 - - - Track ID3476 - - - Track ID3478 - - - Track ID3480 - - - Track ID3482 - - - Track ID3466 - - - Track ID3468 - - - Track ID3470 - - - Track ID3472 - - - Track ID3458 - - - Track ID3460 - - - Track ID3462 - - - Track ID3464 - - - Track ID3442 - - - Track ID3444 - - - Track ID3446 - - - Track ID3448 - - - Track ID3450 - - - Track ID3452 - - - Track ID3454 - - - Track ID3456 - - - Track ID3432 - - - Track ID3434 - - - Track ID3436 - - - Track ID3438 - - - Track ID3440 - - - Track ID3428 - - - Track ID3430 - - - Track ID3416 - - - Track ID3418 - - - Track ID3420 - - - Track ID3422 - - - Track ID3424 - - - Track ID3426 - - - Track ID3412 - - - Track ID3414 - - - Track ID3408 - - - Track ID3410 - - - Track ID3398 - - - Track ID3400 - - - Track ID3402 - - - Track ID3404 - - - Track ID3406 - - - Track ID3374 - - - Track ID3376 - - - Track ID3378 - - - Track ID3380 - - - Track ID3382 - - - Track ID3384 - - - Track ID3386 - - - Track ID3388 - - - Track ID3390 - - - Track ID3392 - - - Track ID3394 - - - Track ID3396 - - - Track ID3366 - - - Track ID3368 - - - Track ID3370 - - - Track ID3372 - - - Track ID3358 - - - Track ID3360 - - - Track ID3362 - - - Track ID3364 - - - Track ID3350 - - - Track ID3352 - - - Track ID3354 - - - Track ID3356 - - - Track ID3336 - - - Track ID3338 - - - Track ID3340 - - - Track ID3342 - - - Track ID3344 - - - Track ID3346 - - - Track ID3348 - - - Track ID3334 - - - Track ID3324 - - - Track ID3326 - - - Track ID3328 - - - Track ID3330 - - - Track ID3332 - - - Track ID3306 - - - Track ID3308 - - - Track ID3310 - - - Track ID3312 - - - Track ID3314 - - - Track ID3316 - - - Track ID3318 - - - Track ID3320 - - - Track ID3322 - - - Track ID3290 - - - Track ID3292 - - - Track ID3294 - - - Track ID3296 - - - Track ID3298 - - - Track ID3300 - - - Track ID3302 - - - Track ID3304 - - - Track ID3280 - - - Track ID3282 - - - Track ID3284 - - - Track ID3286 - - - Track ID3288 - - - Track ID3274 - - - Track ID3276 - - - Track ID3278 - - - Track ID3268 - - - Track ID3270 - - - Track ID3272 - - - Track ID3258 - - - Track ID3260 - - - Track ID3262 - - - Track ID3264 - - - Track ID3266 - - - Track ID3256 - - - Track ID3244 - - - Track ID3246 - - - Track ID3248 - - - Track ID3250 - - - Track ID3252 - - - Track ID3254 - - - Track ID3236 - - - Track ID3238 - - - Track ID3240 - - - Track ID3242 - - - Track ID3228 - - - Track ID3230 - - - Track ID3232 - - - Track ID3234 - - - Track ID3214 - - - Track ID3216 - - - Track ID3218 - - - Track ID3220 - - - Track ID3222 - - - Track ID3224 - - - Track ID3226 - - - Track ID3208 - - - Track ID3210 - - - Track ID3212 - - - Track ID3202 - - - Track ID3204 - - - Track ID3206 - - - Track ID3190 - - - Track ID3192 - - - Track ID3194 - - - Track ID3196 - - - Track ID3198 - - - Track ID3200 - - - Track ID3180 - - - Track ID3182 - - - Track ID3184 - - - Track ID3186 - - - Track ID3188 - - - Track ID3176 - - - Track ID3178 - - - Track ID3168 - - - Track ID3170 - - - Track ID3172 - - - Track ID3174 - - - Track ID3164 - - - Track ID3162 - - - Track ID3166 - - - Track ID3160 - - - Track ID3156 - - - Track ID3158 - - - Track ID3148 - - - Track ID3152 - - - Track ID3154 - - - Track ID3144 - - - Track ID3150 - - - Track ID3146 - - - Track ID3138 - - - Track ID3136 - - - Track ID3132 - - - Track ID3134 - - - Track ID3140 - - - Track ID3142 - - - Track ID3122 - - - Track ID3124 - - - Track ID3126 - - - Track ID3128 - - - Track ID3130 - - - Track ID3120 - - - Track ID3104 - - - Track ID3106 - - - Track ID3108 - - - Track ID3110 - - - Track ID3112 - - - Track ID3114 - - - Track ID3116 - - - Track ID3118 - - - Track ID3102 - - - Track ID3094 - - - Track ID3096 - - - Track ID3098 - - - Track ID3100 - - - Track ID3086 - - - Track ID3088 - - - Track ID3090 - - - Track ID3092 - - - Track ID3082 - - - Track ID3084 - - - Track ID3076 - - - Track ID3078 - - - Track ID3080 - - - Track ID3060 - - - Track ID3062 - - - Track ID3064 - - - Track ID3066 - - - Track ID3068 - - - Track ID3070 - - - Track ID3072 - - - Track ID3074 - - - Track ID3056 - - - Track ID3058 - - - Track ID3040 - - - Track ID3042 - - - Track ID3044 - - - Track ID3046 - - - Track ID3048 - - - Track ID3050 - - - Track ID3052 - - - Track ID3054 - - - Track ID3030 - - - Track ID3032 - - - Track ID3034 - - - Track ID3036 - - - Track ID3038 - - - Track ID3026 - - - Track ID3028 - - - Track ID3020 - - - Track ID3022 - - - Track ID3024 - - - Track ID2994 - - - Track ID2996 - - - Track ID2980 - - - Track ID2982 - - - Track ID2984 - - - Track ID2986 - - - Track ID2988 - - - Track ID2990 - - - Track ID2992 - - - Track ID2968 - - - Track ID2970 - - - Track ID2972 - - - Track ID2974 - - - Track ID2976 - - - Track ID2978 - - - Track ID2958 - - - Track ID2960 - - - Track ID2962 - - - Track ID2964 - - - Track ID2966 - - - Track ID2948 - - - Track ID2950 - - - Track ID2952 - - - Track ID2954 - - - Track ID2956 - - - Track ID2938 - - - Track ID2940 - - - Track ID2942 - - - Track ID2944 - - - Track ID2946 - - - Track ID2922 - - - Track ID2924 - - - Track ID2926 - - - Track ID2928 - - - Track ID2930 - - - Track ID2932 - - - Track ID2934 - - - Track ID2936 - - - Track ID2918 - - - Track ID2920 - - - Track ID2904 - - - Track ID2906 - - - Track ID2908 - - - Track ID2910 - - - Track ID2912 - - - Track ID2914 - - - Track ID2916 - - - Track ID2886 - - - Track ID2888 - - - Track ID2890 - - - Track ID2892 - - - Track ID2894 - - - Track ID2896 - - - Track ID2898 - - - Track ID2900 - - - Track ID2902 - - - Track ID2872 - - - Track ID2874 - - - Track ID2876 - - - Track ID2878 - - - Track ID2880 - - - Track ID2882 - - - Track ID2884 - - - Track ID2866 - - - Track ID2868 - - - Track ID2870 - - - Track ID2862 - - - Track ID2864 - - - Track ID2856 - - - Track ID2860 - - - Track ID2858 - - - Track ID2854 - - - Track ID2844 - - - Track ID2846 - - - Track ID2848 - - - Track ID2850 - - - Track ID2852 - - - Track ID2842 - - - Track ID2840 - - - Track ID2838 - - - Track ID2824 - - - Track ID2826 - - - Track ID2828 - - - Track ID2830 - - - Track ID2832 - - - Track ID2834 - - - Track ID2836 - - - Track ID2822 - - - Track ID2814 - - - Track ID2816 - - - Track ID2818 - - - Track ID2820 - - - Track ID2808 - - - Track ID2810 - - - Track ID2812 - - - Track ID2806 - - - Track ID2788 - - - Track ID2790 - - - Track ID2792 - - - Track ID2794 - - - Track ID2796 - - - Track ID2798 - - - Track ID2800 - - - Track ID2802 - - - Track ID2804 - - - Track ID2784 - - - Track ID2786 - - - Track ID2778 - - - Track ID2780 - - - Track ID2782 - - - Track ID2776 - - - Track ID2770 - - - Track ID2772 - - - Track ID2774 - - - Track ID2760 - - - Track ID2762 - - - Track ID2764 - - - Track ID2766 - - - Track ID2768 - - - Track ID2748 - - - Track ID2750 - - - Track ID2752 - - - Track ID2754 - - - Track ID2756 - - - Track ID2758 - - - Track ID2744 - - - Track ID2746 - - - Track ID2736 - - - Track ID2738 - - - Track ID2740 - - - Track ID2742 - - - Track ID2728 - - - Track ID2730 - - - Track ID2732 - - - Track ID2734 - - - Track ID2726 - - - Track ID2718 - - - Track ID2720 - - - Track ID2722 - - - Track ID2724 - - - Track ID2714 - - - Track ID2716 - - - Track ID2696 - - - Track ID2698 - - - Track ID2700 - - - Track ID2702 - - - Track ID2704 - - - Track ID2706 - - - Track ID2708 - - - Track ID2710 - - - Track ID2712 - - - Track ID2680 - - - Track ID2682 - - - Track ID2684 - - - Track ID2686 - - - Track ID2688 - - - Track ID2690 - - - Track ID2692 - - - Track ID2694 - - - Track ID2674 - - - Track ID2676 - - - Track ID2678 - - - Track ID2660 - - - Track ID2662 - - - Track ID2664 - - - Track ID2666 - - - Track ID2668 - - - Track ID2670 - - - Track ID2672 - - - Track ID2646 - - - Track ID2648 - - - Track ID2650 - - - Track ID2652 - - - Track ID2654 - - - Track ID2656 - - - Track ID2658 - - - Track ID2642 - - - Track ID2644 - - - Track ID2634 - - - Track ID2636 - - - Track ID2638 - - - Track ID2640 - - - Track ID2632 - - - Track ID2620 - - - Track ID2630 - - - Track ID2628 - - - Track ID2626 - - - Track ID2624 - - - Track ID2622 - - - Track ID2612 - - - Track ID2616 - - - Track ID2618 - - - Track ID2614 - - - Track ID2600 - - - Track ID2602 - - - Track ID2604 - - - Track ID2606 - - - Track ID2608 - - - Track ID2610 - - - Track ID2592 - - - Track ID2594 - - - Track ID2596 - - - Track ID2598 - - - Track ID2588 - - - Track ID2590 - - - Track ID2572 - - - Track ID2574 - - - Track ID2576 - - - Track ID2578 - - - Track ID2580 - - - Track ID2582 - - - Track ID2584 - - - Track ID2586 - - - Track ID2554 - - - Track ID2556 - - - Track ID2558 - - - Track ID2560 - - - Track ID2562 - - - Track ID2564 - - - Track ID2566 - - - Track ID2568 - - - Track ID2570 - - - Track ID2542 - - - Track ID2544 - - - Track ID2546 - - - Track ID2548 - - - Track ID2550 - - - Track ID2552 - - - Track ID2534 - - - Track ID2536 - - - Track ID2538 - - - Track ID2540 - - - Track ID2530 - - - Track ID2532 - - - Track ID2522 - - - Track ID2524 - - - Track ID2526 - - - Track ID2528 - - - Track ID2508 - - - Track ID2510 - - - Track ID2512 - - - Track ID2514 - - - Track ID2516 - - - Track ID2518 - - - Track ID2520 - - - Track ID2490 - - - Track ID2492 - - - Track ID2494 - - - Track ID2496 - - - Track ID2498 - - - Track ID2500 - - - Track ID2502 - - - Track ID2504 - - - Track ID2506 - - - Track ID2474 - - - Track ID2476 - - - Track ID2478 - - - Track ID2480 - - - Track ID2482 - - - Track ID2484 - - - Track ID2486 - - - Track ID2488 - - - Track ID2454 - - - Track ID2456 - - - Track ID2458 - - - Track ID2460 - - - Track ID2462 - - - Track ID2464 - - - Track ID2466 - - - Track ID2468 - - - Track ID2470 - - - Track ID2472 - - - Track ID2442 - - - Track ID2444 - - - Track ID2446 - - - Track ID2448 - - - Track ID2450 - - - Track ID2452 - - - Track ID2440 - - - Track ID2426 - - - Track ID2428 - - - Track ID2430 - - - Track ID2432 - - - Track ID2434 - - - Track ID2436 - - - Track ID2438 - - - Track ID2414 - - - Track ID2416 - - - Track ID2418 - - - Track ID2420 - - - Track ID2422 - - - Track ID2424 - - - Track ID2410 - - - Track ID2412 - - - Track ID2392 - - - Track ID2394 - - - Track ID2396 - - - Track ID2398 - - - Track ID2400 - - - Track ID2402 - - - Track ID2404 - - - Track ID2406 - - - Track ID2408 - - - Track ID2390 - - - Track ID2378 - - - Track ID2380 - - - Track ID2382 - - - Track ID2384 - - - Track ID2386 - - - Track ID2388 - - - Track ID2364 - - - Track ID2366 - - - Track ID2368 - - - Track ID2370 - - - Track ID2372 - - - Track ID2374 - - - Track ID2376 - - - Track ID2362 - - - Track ID2346 - - - Track ID2348 - - - Track ID2350 - - - Track ID2352 - - - Track ID2354 - - - Track ID2356 - - - Track ID2358 - - - Track ID2360 - - - Track ID2330 - - - Track ID2332 - - - Track ID2334 - - - Track ID2336 - - - Track ID2338 - - - Track ID2340 - - - Track ID2342 - - - Track ID2344 - - - Track ID2324 - - - Track ID2326 - - - Track ID2328 - - - Track ID2316 - - - Track ID2318 - - - Track ID2320 - - - Track ID2322 - - - Track ID2300 - - - Track ID2302 - - - Track ID2304 - - - Track ID2306 - - - Track ID2308 - - - Track ID2310 - - - Track ID2312 - - - Track ID2314 - - - Track ID2282 - - - Track ID2284 - - - Track ID2286 - - - Track ID2288 - - - Track ID2290 - - - Track ID2292 - - - Track ID2294 - - - Track ID2296 - - - Track ID2298 - - - Track ID2276 - - - Track ID2278 - - - Track ID2280 - - - Track ID2268 - - - Track ID2270 - - - Track ID2272 - - - Track ID2274 - - - Track ID2262 - - - Track ID2264 - - - Track ID2266 - - - Track ID2258 - - - Track ID2260 - - - Track ID2250 - - - Track ID2252 - - - Track ID2254 - - - Track ID2256 - - - Track ID2242 - - - Track ID2244 - - - Track ID2246 - - - Track ID2248 - - - Track ID2234 - - - Track ID2236 - - - Track ID2238 - - - Track ID2240 - - - Track ID2232 - - - Track ID2222 - - - Track ID2224 - - - Track ID2226 - - - Track ID2228 - - - Track ID2230 - - - Track ID2206 - - - Track ID2208 - - - Track ID2210 - - - Track ID2212 - - - Track ID2214 - - - Track ID2216 - - - Track ID2218 - - - Track ID2220 - - - Track ID2202 - - - Track ID2198 - - - Track ID2204 - - - Track ID2194 - - - Track ID2192 - - - Track ID2200 - - - Track ID2196 - - - Track ID2186 - - - Track ID2180 - - - Track ID2184 - - - Track ID2182 - - - Track ID2190 - - - Track ID2188 - - - Track ID2178 - - - Track ID2168 - - - Track ID2176 - - - Track ID2174 - - - Track ID2166 - - - Track ID2170 - - - Track ID2172 - - - Track ID2164 - - - Track ID2162 - - - Track ID2160 - - - Track ID2154 - - - Track ID2156 - - - Track ID2158 - - - Track ID2138 - - - Track ID2140 - - - Track ID2142 - - - Track ID2144 - - - Track ID2146 - - - Track ID2148 - - - Track ID2150 - - - Track ID2152 - - - Track ID2130 - - - Track ID2132 - - - Track ID2134 - - - Track ID2136 - - - Track ID2128 - - - Track ID2124 - - - Track ID2126 - - - Track ID2122 - - - Track ID2114 - - - Track ID2116 - - - Track ID2118 - - - Track ID2120 - - - Track ID2108 - - - Track ID2112 - - - Track ID2106 - - - Track ID2110 - - - Track ID2104 - - - Track ID2102 - - - Track ID2094 - - - Track ID2100 - - - Track ID2092 - - - Track ID2088 - - - Track ID2090 - - - Track ID2096 - - - Track ID2098 - - - Track ID2086 - - - Track ID2084 - - - Track ID2082 - - - Track ID2080 - - - Track ID2078 - - - Track ID2068 - - - Track ID2070 - - - Track ID2072 - - - Track ID2074 - - - Track ID2076 - - - Track ID2060 - - - Track ID2056 - - - Track ID2058 - - - Track ID2062 - - - Track ID2064 - - - Track ID2066 - - - Track ID2050 - - - Track ID2046 - - - Track ID2048 - - - Track ID2052 - - - Track ID2054 - - - Track ID2038 - - - Track ID2036 - - - Track ID2042 - - - Track ID2044 - - - Track ID2040 - - - Track ID2034 - - - Track ID2028 - - - Track ID2032 - - - Track ID2026 - - - Track ID2024 - - - Track ID2030 - - - Track ID2014 - - - Track ID2016 - - - Track ID2020 - - - Track ID2018 - - - Track ID2022 - - - Track ID2000 - - - Track ID2004 - - - Track ID2002 - - - Track ID2010 - - - Track ID2008 - - - Track ID2006 - - - Track ID2012 - - - Track ID1998 - - - Track ID1994 - - - Track ID1986 - - - Track ID1988 - - - Track ID1992 - - - Track ID1996 - - - Track ID1990 - - - Track ID1978 - - - Track ID1982 - - - Track ID1980 - - - Track ID1984 - - - Track ID1976 - - - Track ID1966 - - - Track ID1970 - - - Track ID1968 - - - Track ID1972 - - - Track ID1974 - - - Track ID1962 - - - Track ID1964 - - - Track ID1954 - - - Track ID1956 - - - Track ID1958 - - - Track ID1960 - - - Track ID1942 - - - Track ID1944 - - - Track ID1946 - - - Track ID1948 - - - Track ID1950 - - - Track ID1952 - - - Track ID1934 - - - Track ID1936 - - - Track ID1938 - - - Track ID1940 - - - Track ID1932 - - - Track ID1930 - - - Track ID1926 - - - Track ID1928 - - - Track ID1918 - - - Track ID1922 - - - Track ID1924 - - - Track ID1920 - - - Track ID1916 - - - Track ID1902 - - - Track ID1904 - - - Track ID1906 - - - Track ID1908 - - - Track ID1910 - - - Track ID1912 - - - Track ID1914 - - - Track ID1900 - - - Track ID1898 - - - Track ID1888 - - - Track ID1890 - - - Track ID1892 - - - Track ID1894 - - - Track ID1896 - - - Track ID1880 - - - Track ID1882 - - - Track ID1884 - - - Track ID1886 - - - Track ID1872 - - - Track ID1874 - - - Track ID1876 - - - Track ID1878 - - - Track ID1870 - - - Track ID1862 - - - Track ID1864 - - - Track ID1866 - - - Track ID1868 - - - Track ID1854 - - - Track ID1856 - - - Track ID1858 - - - Track ID1860 - - - Track ID1852 - - - Track ID1846 - - - Track ID1848 - - - Track ID1850 - - - Track ID1836 - - - Track ID1838 - - - Track ID1840 - - - Track ID1842 - - - Track ID1844 - - - Track ID1832 - - - Track ID1834 - - - Track ID1822 - - - Track ID1824 - - - Track ID1826 - - - Track ID1828 - - - Track ID1830 - - - Track ID1818 - - - Track ID1820 - - - Track ID1814 - - - Track ID1816 - - - Track ID1802 - - - Track ID1804 - - - Track ID1806 - - - Track ID1808 - - - Track ID1810 - - - Track ID1812 - - - Track ID1792 - - - Track ID1794 - - - Track ID1796 - - - Track ID1798 - - - Track ID1800 - - - Track ID1782 - - - Track ID1784 - - - Track ID1786 - - - Track ID1788 - - - Track ID1790 - - - Track ID1772 - - - Track ID1774 - - - Track ID1776 - - - Track ID1778 - - - Track ID1780 - - - Track ID1768 - - - Track ID1770 - - - Track ID1764 - - - Track ID1766 - - - Track ID1758 - - - Track ID1760 - - - Track ID1762 - - - Track ID1752 - - - Track ID1754 - - - Track ID1756 - - - Track ID1738 - - - Track ID1740 - - - Track ID1742 - - - Track ID1744 - - - Track ID1746 - - - Track ID1748 - - - Track ID1750 - - - Track ID1724 - - - Track ID1726 - - - Track ID1728 - - - Track ID1730 - - - Track ID1732 - - - Track ID1734 - - - Track ID1736 - - - Track ID1720 - - - Track ID1722 - - - Track ID1716 - - - Track ID1718 - - - Track ID1704 - - - Track ID1706 - - - Track ID1708 - - - Track ID1710 - - - Track ID1712 - - - Track ID1714 - - - Track ID1694 - - - Track ID1696 - - - Track ID1698 - - - Track ID1700 - - - Track ID1702 - - - - - - diff --git a/GeekyProjects/C1_ParsingMusicList/pl1.xml b/GeekyProjects/C1_ParsingMusicList/pl1.xml deleted file mode 100644 index 6c605f8..0000000 --- a/GeekyProjects/C1_ParsingMusicList/pl1.xml +++ /dev/null @@ -1,3234 +0,0 @@ - - - - - Major Version1 - Minor Version1 - Date2012-10-13T05:49:08Z - Application Version10.7 - Features5 - Show Content Ratings - Music Folderfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/ - Library Persistent ID5E7B8CC1F12D8073 - Tracks - - 3083 - - Track ID3083 - NameDon't Know Why - ArtistNorah Jones - ComposerJesse Harris - AlbumCome Away With Me - GenrePop - KindAAC audio file - Size4541105 - Total Time186152 - Disc Number1 - Disc Count1 - Track Number1 - Track Count14 - Year2002 - Date Modified2006-08-07T05:24:28Z - Date Added2009-10-03T14:55:11Z - Bit Rate192 - Sample Rate44100 - Play Count3 - Play Date3389372040 - Play Date UTC2011-05-27T14:44:00Z - Normalization1983 - Artwork Count1 - Persistent ID5689E1B7D789DB2A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Norah%20Jones/Come%20Away%20With%20Me/01%20Don't%20Know%20Why.m4a - File Folder Count4 - Library Folder Count1 - - 3085 - - Track ID3085 - NameSeven Years - ArtistNorah Jones - ComposerLee Alexander - AlbumCome Away With Me - GenrePop - KindAAC audio file - Size3541604 - Total Time145285 - Disc Number1 - Disc Count1 - Track Number2 - Track Count14 - Year2002 - Date Modified2006-08-07T05:24:28Z - Date Added2009-10-03T14:55:11Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3381677171 - Play Date UTC2011-02-27T13:16:11Z - Normalization1310 - Artwork Count1 - Persistent ID1B90E5159B1ACEEC - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Norah%20Jones/Come%20Away%20With%20Me/02%20Seven%20Years.m4a - File Folder Count4 - Library Folder Count1 - - 3087 - - Track ID3087 - NameCold Cold Heart - ArtistNorah Jones - ComposerHank Williams - AlbumCome Away With Me - GenrePop - KindAAC audio file - Size5321333 - Total Time218637 - Disc Number1 - Disc Count1 - Track Number3 - Track Count14 - Year2002 - Date Modified2006-08-07T05:24:28Z - Date Added2009-10-03T14:55:11Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3381677390 - Play Date UTC2011-02-27T13:19:50Z - Normalization1060 - Artwork Count1 - Persistent ID654C01ACECA3323E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Norah%20Jones/Come%20Away%20With%20Me/03%20Cold%20Cold%20Heart.m4a - File Folder Count4 - Library Folder Count1 - - 3089 - - Track ID3089 - NameFeelin' The Same Way - ArtistNorah Jones - ComposerLee Alexander - AlbumCome Away With Me - GenrePop - KindAAC audio file - Size4327100 - Total Time177259 - Disc Number1 - Disc Count1 - Track Number4 - Track Count14 - Year2002 - Date Modified2006-08-07T05:24:28Z - Date Added2009-10-03T14:55:11Z - Bit Rate192 - Sample Rate44100 - Normalization1796 - Artwork Count1 - Persistent IDF68251A3B2E26BD6 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Norah%20Jones/Come%20Away%20With%20Me/04%20Feelin'%20The%20Same%20Way.m4a - File Folder Count4 - Library Folder Count1 - - 3091 - - Track ID3091 - NameCome Away With Me - ArtistNorah Jones - ComposerNorah Jones - AlbumCome Away With Me - GenrePop - KindAAC audio file - Size4829635 - Total Time198157 - Disc Number1 - Disc Count1 - Track Number5 - Track Count14 - Year2002 - Date Modified2006-08-07T05:24:28Z - Date Added2009-10-03T14:55:11Z - Bit Rate192 - Sample Rate44100 - Play Count5 - Play Date3403722850 - Play Date UTC2011-11-09T17:04:10Z - Normalization1088 - Artwork Count1 - Persistent ID3FAB50E83AB08B5F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Norah%20Jones/Come%20Away%20With%20Me/05%20Come%20Away%20With%20Me.m4a - File Folder Count4 - Library Folder Count1 - - 3093 - - Track ID3093 - NameShoot The Moon - ArtistNorah Jones - ComposerJesse Harris - AlbumCome Away With Me - GenrePop - KindAAC audio file - Size5767324 - Total Time237190 - Disc Number1 - Disc Count1 - Track Number6 - Track Count14 - Year2002 - Date Modified2006-08-07T05:24:28Z - Date Added2009-10-03T14:55:11Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3389511623 - Play Date UTC2011-05-29T05:30:23Z - Normalization1259 - Artwork Count1 - Persistent IDB3CF6A1584218FB4 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Norah%20Jones/Come%20Away%20With%20Me/06%20Shoot%20The%20Moon.m4a - File Folder Count4 - Library Folder Count1 - - 3095 - - Track ID3095 - NameTurn Me On - ArtistNorah Jones - ComposerJ.D. Loudermilk - AlbumCome Away With Me - GenrePop - KindAAC audio file - Size3766213 - Total Time154643 - Disc Number1 - Disc Count1 - Track Number7 - Track Count14 - Year2002 - Date Modified2006-08-07T05:24:28Z - Date Added2009-10-03T14:55:11Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3389511778 - Play Date UTC2011-05-29T05:32:58Z - Normalization1756 - Artwork Count1 - Persistent ID1AA0D6FE32CCFA35 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Norah%20Jones/Come%20Away%20With%20Me/07%20Turn%20Me%20On.m4a - File Folder Count4 - Library Folder Count1 - - 3097 - - Track ID3097 - NameLonestar - ArtistNorah Jones - ComposerLee Alexander - AlbumCome Away With Me - GenrePop - KindAAC audio file - Size4539612 - Total Time186083 - Disc Number1 - Disc Count1 - Track Number8 - Track Count14 - Year2002 - Date Modified2006-08-07T05:24:28Z - Date Added2009-10-03T14:55:11Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3389511964 - Play Date UTC2011-05-29T05:36:04Z - Normalization1062 - Artwork Count1 - Persistent IDFC4C1B830A689A0A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Norah%20Jones/Come%20Away%20With%20Me/08%20Lonestar.m4a - File Folder Count4 - Library Folder Count1 - - 3099 - - Track ID3099 - NameI've Got To See You Again - ArtistNorah Jones - ComposerJesse Harris - AlbumCome Away With Me - GenrePop - KindAAC audio file - Size6154861 - Total Time253328 - Disc Number1 - Disc Count1 - Track Number9 - Track Count14 - Year2002 - Date Modified2006-08-07T05:24:28Z - Date Added2009-10-03T14:55:11Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3389512217 - Play Date UTC2011-05-29T05:40:17Z - Normalization1318 - Artwork Count1 - Persistent IDAE078C5C4C578C8D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Norah%20Jones/Come%20Away%20With%20Me/09%20I've%20Got%20To%20See%20You%20Again.m4a - File Folder Count4 - Library Folder Count1 - - 3101 - - Track ID3101 - NamePainter Song - ArtistNorah Jones - ComposerJ.C. Hopkins/Lee Alexander - AlbumCome Away With Me - GenrePop - KindAAC audio file - Size3948960 - Total Time162259 - Disc Number1 - Disc Count1 - Track Number10 - Track Count14 - Year2002 - Date Modified2006-08-07T05:24:28Z - Date Added2009-10-03T14:55:12Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3389512379 - Play Date UTC2011-05-29T05:42:59Z - Normalization1094 - Artwork Count1 - Persistent ID6EF014009BBE0453 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Norah%20Jones/Come%20Away%20With%20Me/10%20Painter%20Song.m4a - File Folder Count4 - Library Folder Count1 - - 3103 - - Track ID3103 - NameOne Flight Down - ArtistNorah Jones - ComposerJesse Harris - AlbumCome Away With Me - GenrePop - KindAAC audio file - Size4530246 - Total Time185688 - Disc Number1 - Disc Count1 - Track Number11 - Track Count14 - Year2002 - Date Modified2006-08-07T05:24:28Z - Date Added2009-10-03T14:55:12Z - Bit Rate192 - Sample Rate44100 - Normalization1775 - Artwork Count1 - Persistent ID1A77E3058CBC1B33 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Norah%20Jones/Come%20Away%20With%20Me/11%20One%20Flight%20Down.m4a - File Folder Count4 - Library Folder Count1 - - 3105 - - Track ID3105 - NameNightingale - ArtistNorah Jones - ComposerNorah Jones - AlbumCome Away With Me - GenrePop - KindAAC audio file - Size6129129 - Total Time252260 - Disc Number1 - Disc Count1 - Track Number12 - Track Count14 - Year2002 - Date Modified2006-08-07T05:24:28Z - Date Added2009-10-03T14:55:12Z - Bit Rate192 - Sample Rate44100 - Normalization1610 - Artwork Count1 - Persistent IDD7F9E54BF5A06457 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Norah%20Jones/Come%20Away%20With%20Me/12%20Nightingale.m4a - File Folder Count4 - Library Folder Count1 - - 3107 - - Track ID3107 - NameThe Long Day Is Over - ArtistNorah Jones - ComposerJesse Harris/Norah Jones - AlbumCome Away With Me - GenrePop - KindAAC audio file - Size4005595 - Total Time164581 - Disc Number1 - Disc Count1 - Track Number13 - Track Count14 - Year2002 - Date Modified2006-08-07T05:24:26Z - Date Added2009-10-03T14:55:12Z - Bit Rate192 - Sample Rate44100 - Normalization1060 - Artwork Count1 - Sort NameLong Day Is Over - Persistent ID905316609998CE72 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Norah%20Jones/Come%20Away%20With%20Me/13%20The%20Long%20Day%20Is%20Over.m4a - File Folder Count4 - Library Folder Count1 - - 3109 - - Track ID3109 - NameThe Nearness Of You - ArtistNorah Jones - ComposerHoagy Carmichael/Ned Washington - AlbumCome Away With Me - GenrePop - KindAAC audio file - Size4577341 - Total Time187685 - Disc Number1 - Disc Count1 - Track Number14 - Track Count14 - Year2002 - Date Modified2006-08-07T05:24:26Z - Date Added2009-10-03T14:55:12Z - Bit Rate192 - Sample Rate44100 - Normalization1009 - Artwork Count1 - Sort NameNearness Of You - Persistent ID53F9F50A04A60E20 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Norah%20Jones/Come%20Away%20With%20Me/14%20The%20Nearness%20Of%20You.m4a - File Folder Count4 - Library Folder Count1 - - 3261 - - Track ID3261 - NameUdu Chant - ArtistMickey Hart - ComposerSikiru Adepoju, Mickey Hart, Zakir Hussain, Airto Moreira - AlbumPlanet Drum - GenreWorld - KindAAC audio file - Size5394974 - Total Time221145 - Disc Number1 - Disc Count1 - Track Number1 - Track Count13 - Year1991 - Date Modified2006-08-07T15:15:10Z - Date Added2009-10-03T14:55:23Z - Bit Rate192 - Sample Rate44100 - Play Count3 - Play Date3378127219 - Play Date UTC2011-01-17T11:10:19Z - Normalization1259 - Artwork Count1 - Persistent ID2B032417AE44DC20 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mickey%20Hart/Planet%20Drum/01%20Udu%20Chant.m4a - File Folder Count4 - Library Folder Count1 - - 3263 - - Track ID3263 - NameIsland Groove - ArtistMickey Hart - ComposerSikiru Adepoju, Mickey Hart, Zakir Hussain, Airto Moreira, Babatunde Olatunji - AlbumPlanet Drum - GenreWorld - KindAAC audio file - Size8359244 - Total Time343909 - Disc Number1 - Disc Count1 - Track Number2 - Track Count13 - Year1991 - Date Modified2006-08-07T15:15:10Z - Date Added2009-10-03T14:55:23Z - Bit Rate192 - Sample Rate44100 - Normalization1151 - Artwork Count1 - Persistent ID5915F196039F13B3 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mickey%20Hart/Planet%20Drum/02%20Island%20Groove.m4a - File Folder Count4 - Library Folder Count1 - - 3265 - - Track ID3265 - NameLight Over Shadow - ArtistMickey Hart - ComposerAirto Moreira, Babatunde Olatunji, Flora Purim - AlbumPlanet Drum - GenreWorld - KindAAC audio file - Size5649122 - Total Time231455 - Disc Number1 - Disc Count1 - Track Number3 - Track Count13 - Year1991 - Date Modified2006-08-07T15:15:10Z - Date Added2009-10-03T14:55:23Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Persistent ID5FE92046266D7F16 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mickey%20Hart/Planet%20Drum/03%20Light%20Over%20Shadow.m4a - File Folder Count4 - Library Folder Count1 - - 3267 - - Track ID3267 - NameDance Of The Hunter's Fire - ArtistMickey Hart - ComposerSikiru Adepoju, Airto Moreira, Babatunde Olatunji, Flora Purim, T. H. “Vikku” Vinayakram - AlbumPlanet Drum - GenreWorld - KindAAC audio file - Size4453553 - Total Time181671 - Disc Number1 - Disc Count1 - Track Number4 - Track Count13 - Year1991 - Date Modified2006-08-07T15:15:10Z - Date Added2009-10-03T14:55:24Z - Bit Rate192 - Sample Rate44100 - Normalization1200 - Artwork Count1 - Persistent IDA32F78AE2438D783 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mickey%20Hart/Planet%20Drum/04%20Dance%20Of%20The%20Hunter's%20Fire.m4a - File Folder Count4 - Library Folder Count1 - - 3269 - - Track ID3269 - NameJewe (You Are The One) - ArtistMickey Hart - ComposerBabatunde Olatunji - AlbumPlanet Drum - GenreWorld - KindAAC audio file - Size6024645 - Total Time247082 - Disc Number1 - Disc Count1 - Track Number5 - Track Count13 - Year1991 - Date Modified2006-08-07T15:15:10Z - Date Added2009-10-03T14:55:24Z - Bit Rate192 - Sample Rate44100 - Normalization1159 - Artwork Count1 - Persistent IDA6303BD922A35C82 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mickey%20Hart/Planet%20Drum/05%20Jewe%20(You%20Are%20The%20One).m4a - File Folder Count4 - Library Folder Count1 - - 3271 - - Track ID3271 - NameThe Hunt - ArtistMickey Hart - ComposerSikiru Adepoju, Mickey Hart, Zakir Hussain, Airto Moreira, Babatunde Olatunji, T. H. “Vikku” Vinayakram - AlbumPlanet Drum - GenreWorld - KindAAC audio file - Size5515948 - Total Time225905 - Disc Number1 - Disc Count1 - Track Number6 - Track Count13 - Year1991 - Date Modified2006-08-07T15:15:10Z - Date Added2009-10-03T14:55:24Z - Bit Rate192 - Sample Rate44100 - Normalization1183 - Artwork Count1 - Sort NameHunt - Persistent IDEE7577CD7CC1DFF1 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mickey%20Hart/Planet%20Drum/06%20The%20Hunt.m4a - File Folder Count4 - Library Folder Count1 - - 3273 - - Track ID3273 - NameTemple Caves - ArtistMickey Hart - ComposerSikiru Adepoju, Mickey Hart, Zakir Hussain, Airto Moreira, Babatunde Olatunji - AlbumPlanet Drum - GenreWorld - KindAAC audio file - Size4849679 - Total Time199179 - Disc Number1 - Disc Count1 - Track Number7 - Track Count13 - Year1991 - Date Modified2006-08-07T15:15:10Z - Date Added2009-10-03T14:55:24Z - Bit Rate192 - Sample Rate44100 - Normalization1117 - Artwork Count1 - Persistent ID99E9D0C5A8B2051E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mickey%20Hart/Planet%20Drum/07%20Temple%20Caves.m4a - File Folder Count4 - Library Folder Count1 - - 3275 - - Track ID3275 - NameThe Dancing Sorcerer - ArtistMickey Hart - ComposerZakir Hussain, Airto Moreira - AlbumPlanet Drum - GenreWorld - KindAAC audio file - Size4343732 - Total Time177097 - Disc Number1 - Disc Count1 - Track Number8 - Track Count13 - Year1991 - Date Modified2006-08-07T15:15:12Z - Date Added2009-10-03T14:55:24Z - Bit Rate192 - Sample Rate44100 - Normalization976 - Artwork Count1 - Sort NameDancing Sorcerer - Persistent ID57FFEB75A2BD3F17 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mickey%20Hart/Planet%20Drum/08%20The%20Dancing%20Sorcerer.m4a - File Folder Count4 - Library Folder Count1 - - 3277 - - Track ID3277 - NameBones - ArtistMickey Hart - ComposerMickey Hart, Zakir Hussain, Babatunde Olatunji, Flora Purim - AlbumPlanet Drum - GenreWorld - KindAAC audio file - Size6169530 - Total Time253119 - Disc Number1 - Disc Count1 - Track Number9 - Track Count13 - Year1991 - Date Modified2006-08-07T15:15:12Z - Date Added2009-10-03T14:55:24Z - Bit Rate192 - Sample Rate44100 - Normalization930 - Artwork Count1 - Persistent IDBCD8FF9FB18D6D78 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mickey%20Hart/Planet%20Drum/09%20Bones.m4a - File Folder Count4 - Library Folder Count1 - - 3279 - - Track ID3279 - NameLost River - ArtistMickey Hart - ComposerSikiru Adepoju, Mickey Hart, Zakir Hussain, Airto Moreira, Babatunde Olatunji, Flora Purim - AlbumPlanet Drum - GenreWorld - KindAAC audio file - Size4363201 - Total Time177909 - Disc Number1 - Disc Count1 - Track Number10 - Track Count13 - Year1991 - Date Modified2006-08-07T15:15:12Z - Date Added2009-10-03T14:55:24Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Persistent ID6F04FA6851B75949 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mickey%20Hart/Planet%20Drum/10%20Lost%20River.m4a - File Folder Count4 - Library Folder Count1 - - 3281 - - Track ID3281 - NameEvening Samba - ArtistMickey Hart - ComposerSikiru Adepoju, Mickey Hart, Zakir Hussain, Airto Moreira, Babatunde Olatunji, T. H. “Vikku” Vinayakram - AlbumPlanet Drum - GenreWorld - KindAAC audio file - Size6661701 - Total Time273529 - Disc Number1 - Disc Count1 - Track Number11 - Track Count13 - Year1991 - Date Modified2006-08-07T15:15:12Z - Date Added2009-10-03T14:55:24Z - Bit Rate192 - Sample Rate44100 - Normalization1090 - Artwork Count1 - Persistent ID21676665E3B08FDD - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mickey%20Hart/Planet%20Drum/11%20Evening%20Samba.m4a - File Folder Count4 - Library Folder Count1 - - 3283 - - Track ID3283 - NameIyanu (Surprises) - ArtistMickey Hart - ComposerBabatunde Olatunji - AlbumPlanet Drum - GenreWorld - KindAAC audio file - Size3052699 - Total Time123342 - Disc Number1 - Disc Count1 - Track Number12 - Track Count13 - Year1991 - Date Modified2006-08-07T15:15:12Z - Date Added2009-10-03T14:55:25Z - Bit Rate192 - Sample Rate44100 - Normalization1189 - Artwork Count1 - Persistent IDE27691D2F2EA77AB - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mickey%20Hart/Planet%20Drum/12%20Iyanu%20(Surprises).m4a - File Folder Count4 - Library Folder Count1 - - 3285 - - Track ID3285 - NameMysterious Island - ArtistMickey Hart - ComposerMickey Hart, Airto Moreira, Flora Purim, Jeff Sterling - AlbumPlanet Drum - GenreWorld - KindAAC audio file - Size8363902 - Total Time343886 - Disc Number1 - Disc Count1 - Track Number13 - Track Count13 - Year1991 - Date Modified2006-08-07T15:15:12Z - Date Added2009-10-03T14:55:25Z - Bit Rate192 - Sample Rate44100 - Normalization1000 - Artwork Count1 - Persistent IDC1E7B9E8EE5967EE - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Mickey%20Hart/Planet%20Drum/13%20Mysterious%20Island.m4a - File Folder Count4 - Library Folder Count1 - - 3391 - - Track ID3391 - NamePrologue - ArtistLoreena McKennitt - ComposerLoreena McKennitt - AlbumThe Book Of Secrets - GenreNew Age - KindAAC audio file - Size6377436 - Total Time265240 - Disc Number1 - Disc Count1 - Track Number1 - Track Count8 - Year1997 - Date Modified2006-07-31T03:38:30Z - Date Added2009-10-03T14:55:37Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3389617969 - Play Date UTC2011-05-30T11:02:49Z - Normalization1061 - Artwork Count1 - Sort AlbumBook Of Secrets - Persistent ID885F82670F5BFB3C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Loreena%20McKennitt/The%20Book%20Of%20Secrets/01%20Prologue.m4a - File Folder Count4 - Library Folder Count1 - - 3393 - - Track ID3393 - NameThe Mummers' Dance - ArtistLoreena McKennitt - ComposerLoreena McKennitt - AlbumThe Book Of Secrets - GenreNew Age - KindAAC audio file - Size8911392 - Total Time370681 - Disc Number1 - Disc Count1 - Track Number2 - Track Count8 - Year1997 - Date Modified2006-07-31T03:38:30Z - Date Added2009-10-03T14:55:37Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3389618339 - Play Date UTC2011-05-30T11:08:59Z - Normalization1408 - Artwork Count1 - Sort AlbumBook Of Secrets - Sort NameMummers' Dance - Persistent ID3A91637475846A5D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Loreena%20McKennitt/The%20Book%20Of%20Secrets/02%20The%20Mummers'%20Dance.m4a - File Folder Count4 - Library Folder Count1 - - 3395 - - Track ID3395 - NameSkellig - ArtistLoreena McKennitt - ComposerLoreena McKennitt - AlbumThe Book Of Secrets - GenreNew Age - KindAAC audio file - Size8919847 - Total Time370681 - Disc Number1 - Disc Count1 - Track Number3 - Track Count8 - Year1997 - Date Modified2006-07-31T03:38:30Z - Date Added2009-10-03T14:55:37Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3389618710 - Play Date UTC2011-05-30T11:15:10Z - Normalization1495 - Artwork Count1 - Sort AlbumBook Of Secrets - Persistent ID0537EF58BB0FF5E5 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Loreena%20McKennitt/The%20Book%20Of%20Secrets/03%20Skellig.m4a - File Folder Count4 - Library Folder Count1 - - 3397 - - Track ID3397 - NameMarco Polo - ArtistLoreena McKennitt - ComposerLoreena McKennitt - AlbumThe Book Of Secrets - GenreNew Age - KindAAC audio file - Size7657442 - Total Time319133 - Disc Number1 - Disc Count1 - Track Number4 - Track Count8 - Year1997 - Date Modified2006-07-31T03:38:30Z - Date Added2009-10-03T14:55:37Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3389619029 - Play Date UTC2011-05-30T11:20:29Z - Normalization1744 - Artwork Count1 - Sort AlbumBook Of Secrets - Persistent IDF6248302AA5939F5 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Loreena%20McKennitt/The%20Book%20Of%20Secrets/04%20Marco%20Polo.m4a - File Folder Count4 - Library Folder Count1 - - 3399 - - Track ID3399 - NameThe Highwayman - ArtistLoreena McKennitt - ComposerAlfred Noyes - AlbumThe Book Of Secrets - GenreNew Age - KindAAC audio file - Size14989127 - Total Time620667 - Disc Number1 - Disc Count1 - Track Number5 - Track Count8 - Year1997 - Date Modified2006-07-31T03:38:30Z - Date Added2009-10-03T14:55:37Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Sort AlbumBook Of Secrets - Sort NameHighwayman - Persistent ID64D32AB78E932D09 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Loreena%20McKennitt/The%20Book%20Of%20Secrets/05%20The%20Highwayman.m4a - File Folder Count4 - Library Folder Count1 - - 3401 - - Track ID3401 - NameLa Serenissima - ArtistLoreena McKennitt - ComposerLoreena McKennitt - AlbumThe Book Of Secrets - GenreNew Age - KindAAC audio file - Size7513168 - Total Time310008 - Disc Number1 - Disc Count1 - Track Number6 - Track Count8 - Year1997 - Date Modified2006-07-31T03:38:30Z - Date Added2009-10-03T14:55:37Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Sort AlbumBook Of Secrets - Persistent ID50FF2816CB4804E3 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Loreena%20McKennitt/The%20Book%20Of%20Secrets/06%20La%20Serenissima.m4a - File Folder Count4 - Library Folder Count1 - - 3403 - - Track ID3403 - NameNight Ride Across The Caucasus - ArtistLoreena McKennitt - ComposerLoreena McKennitt - AlbumThe Book Of Secrets - GenreNew Age - KindAAC audio file - Size12386918 - Total Time512648 - Disc Number1 - Disc Count1 - Track Number7 - Track Count8 - Year1997 - Date Modified2006-08-07T08:53:04Z - Date Added2009-10-03T14:55:37Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3383588163 - Play Date UTC2011-03-21T16:06:03Z - Normalization1378 - Artwork Count2 - Sort AlbumBook Of Secrets - Persistent ID0B41640737DF5278 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Loreena%20McKennitt/The%20Book%20Of%20Secrets/07%20Night%20Ride%20Across%20The%20Caucasus.m4a - File Folder Count4 - Library Folder Count1 - - 3405 - - Track ID3405 - NameDante's Prayer - ArtistLoreena McKennitt - ComposerLoreena McKennitt - AlbumThe Book Of Secrets - GenreNew Age - KindAAC audio file - Size10443284 - Total Time431077 - Disc Number1 - Disc Count1 - Track Number8 - Track Count8 - Year1997 - Date Modified2006-07-31T03:38:32Z - Date Added2009-10-03T14:55:37Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Sort AlbumBook Of Secrets - Persistent ID05A6BBABC4F0F411 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Loreena%20McKennitt/The%20Book%20Of%20Secrets/08%20Dante's%20Prayer.m4a - File Folder Count4 - Library Folder Count1 - - 3593 - - Track ID3593 - NamePart I - ArtistKeith Jarrett - ComposerKeith Jarrett - AlbumThe Koln Concert - GenreJazz - KindAAC audio file - Size37811783 - Total Time1561610 - Disc Number1 - Disc Count1 - Track Number1 - Track Count4 - Year1975 - Date Modified2006-07-27T16:19:42Z - Date Added2009-10-03T14:55:50Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3389984791 - Play Date UTC2011-06-03T16:56:31Z - Normalization874 - Artwork Count1 - Sort AlbumKoln Concert - Persistent ID510557EFCBAD559F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Keith%20Jarrett/The%20Koln%20Concert/01%20Part%20I.m4a - File Folder Count4 - Library Folder Count1 - - 3595 - - Track ID3595 - NamePart II A - ArtistKeith Jarrett - ComposerKeith Jarrett - AlbumThe Koln Concert - GenreJazz - KindAAC audio file - Size21674287 - Total Time894756 - Disc Number1 - Disc Count1 - Track Number2 - Track Count4 - Year1975 - Date Modified2006-07-27T16:19:44Z - Date Added2009-10-03T14:55:50Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3389985685 - Play Date UTC2011-06-03T17:11:25Z - Normalization774 - Artwork Count1 - Sort AlbumKoln Concert - Persistent ID7BE6157C7A944DEE - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Keith%20Jarrett/The%20Koln%20Concert/02%20Part%20II%20A.m4a - File Folder Count4 - Library Folder Count1 - - 3597 - - Track ID3597 - NamePart II B - ArtistKeith Jarrett - ComposerKeith Jarrett - AlbumThe Koln Concert - GenreJazz - KindAAC audio file - Size26508430 - Total Time1094517 - Disc Number1 - Disc Count1 - Track Number3 - Track Count4 - Year1975 - Date Modified2006-07-27T16:19:46Z - Date Added2009-10-03T14:55:50Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3389986780 - Play Date UTC2011-06-03T17:29:40Z - Normalization781 - Artwork Count1 - Sort AlbumKoln Concert - Persistent IDF14B6F46956F15A5 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Keith%20Jarrett/The%20Koln%20Concert/03%20Part%20II%20B.m4a - File Folder Count4 - Library Folder Count1 - - 3599 - - Track ID3599 - NamePart II C - ArtistKeith Jarrett - ComposerKeith Jarrett - AlbumThe Koln Concert - GenreJazz - KindAAC audio file - Size10098304 - Total Time416843 - Disc Number1 - Disc Count1 - Track Number4 - Track Count4 - Year1975 - Date Modified2006-07-27T16:19:48Z - Date Added2009-10-03T14:55:50Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3389987197 - Play Date UTC2011-06-03T17:36:37Z - Normalization948 - Artwork Count1 - Sort AlbumKoln Concert - Persistent ID29B257311FC05657 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Keith%20Jarrett/The%20Koln%20Concert/04%20Part%20II%20C.m4a - File Folder Count4 - Library Folder Count1 - - 3621 - - Track ID3621 - NameSayonee - ArtistJunoon - AlbumAzadi - GenreWorld - KindAAC audio file - Size7416200 - Total Time305526 - Track Number1 - Track Count15 - Date Modified2006-08-13T06:39:50Z - Date Added2009-10-03T14:55:53Z - Bit Rate192 - Sample Rate44100 - Normalization918 - Artwork Count1 - Persistent IDE00D1FC101EF9DAF - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Junoon/Azadi/01%20Sayonee.m4a - File Folder Count4 - Library Folder Count1 - - 3623 - - Track ID3623 - NameMeri Awaaz Suno - ArtistJunoon - AlbumAzadi - GenreWorld - KindAAC audio file - Size8072232 - Total Time332647 - Track Number2 - Track Count15 - Date Modified2006-08-13T06:39:46Z - Date Added2009-10-03T14:55:53Z - Bit Rate192 - Sample Rate44100 - Normalization1014 - Artwork Count1 - Persistent IDDE82B341A348847D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Junoon/Azadi/02%20Meri%20Awaaz%20Suno.m4a - File Folder Count4 - Library Folder Count1 - - 3625 - - Track ID3625 - NameKhudi - ArtistJunoon - AlbumAzadi - GenreWorld - KindAAC audio file - Size6058236 - Total Time249311 - Track Number3 - Track Count15 - Date Modified2006-08-13T06:39:42Z - Date Added2009-10-03T14:55:54Z - Bit Rate192 - Sample Rate44100 - Normalization1092 - Artwork Count1 - Persistent ID6AB6983D144D3680 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Junoon/Azadi/03%20Khudi.m4a - File Folder Count4 - Library Folder Count1 - - 3627 - - Track ID3627 - NameYaar Bina - ArtistJunoon - AlbumAzadi - GenreWorld - KindAAC audio file - Size5526756 - Total Time227182 - Track Number4 - Track Count15 - Date Modified2006-08-13T06:39:40Z - Date Added2009-10-03T14:55:54Z - Bit Rate192 - Sample Rate44100 - Normalization1059 - Artwork Count1 - Persistent IDA93B567A32741520 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Junoon/Azadi/04%20Yaar%20Bina.m4a - File Folder Count4 - Library Folder Count1 - - 3629 - - Track ID3629 - NameMukh Gae - ArtistJunoon - AlbumAzadi - GenreWorld - KindAAC audio file - Size8098433 - Total Time333715 - Track Number5 - Track Count15 - Date Modified2006-08-13T06:39:38Z - Date Added2009-10-03T14:55:54Z - Bit Rate192 - Sample Rate44100 - Normalization924 - Artwork Count1 - Persistent ID687CE56748388723 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Junoon/Azadi/05%20Mukh%20Gae.m4a - File Folder Count4 - Library Folder Count1 - - 3631 - - Track ID3631 - NameHeer - ArtistJunoon - AlbumAzadi - GenreWorld - KindAAC audio file - Size7062398 - Total Time290898 - Track Number6 - Track Count15 - Date Modified2006-08-13T06:39:34Z - Date Added2009-10-03T14:55:54Z - Bit Rate192 - Sample Rate44100 - Normalization943 - Artwork Count1 - Persistent ID43AB15622BF10A3E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Junoon/Azadi/06%20Heer.m4a - File Folder Count4 - Library Folder Count1 - - 3633 - - Track ID3633 - NameWahda Hoo - ArtistJunoon - AlbumAzadi - GenreWorld - KindAAC audio file - Size7087509 - Total Time291943 - Track Number7 - Track Count15 - Date Modified2006-08-13T06:39:30Z - Date Added2009-10-03T14:55:54Z - Bit Rate192 - Sample Rate44100 - Normalization899 - Artwork Count1 - Persistent IDCF4A02ACE1A2B1F3 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Junoon/Azadi/07%20Wahda%20Hoo.m4a - File Folder Count4 - Library Folder Count1 - - 3635 - - Track ID3635 - NameKyun Parishan - ArtistJunoon - AlbumAzadi - GenreWorld - KindAAC audio file - Size5737137 - Total Time235936 - Track Number8 - Track Count15 - Date Modified2006-08-13T06:39:28Z - Date Added2009-10-03T14:55:54Z - Bit Rate192 - Sample Rate44100 - Normalization963 - Artwork Count1 - Persistent ID1293852C7E2937CB - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Junoon/Azadi/08%20Kyun%20Parishan.m4a - File Folder Count4 - Library Folder Count1 - - 3637 - - Track ID3637 - NameMahiwal - ArtistJunoon - AlbumAzadi - GenreWorld - KindAAC audio file - Size8754082 - Total Time360813 - Track Number9 - Track Count15 - Date Modified2006-08-13T06:39:24Z - Date Added2009-10-03T14:55:54Z - Bit Rate192 - Sample Rate44100 - Normalization1030 - Artwork Count1 - Persistent ID0C762D78D78C7DB1 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Junoon/Azadi/09%20Mahiwal.m4a - File Folder Count4 - Library Folder Count1 - - 3639 - - Track ID3639 - NameKisne Suna - ArtistJunoon - AlbumAzadi - GenreWorld - KindAAC audio file - Size5763699 - Total Time237051 - Track Number10 - Track Count15 - Date Modified2006-08-13T06:39:20Z - Date Added2009-10-03T14:55:55Z - Bit Rate192 - Sample Rate44100 - Normalization909 - Artwork Count1 - Persistent IDE0CB4CF446887C04 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Junoon/Azadi/10%20Kisne%20Suna.m4a - File Folder Count4 - Library Folder Count1 - - 3641 - - Track ID3641 - NameLal Meri Pat - ArtistJunoon - AlbumAzadi - GenreWorld - KindAAC audio file - Size7748353 - Total Time319249 - Track Number11 - Track Count15 - Date Modified2006-08-13T06:39:18Z - Date Added2009-10-03T14:55:55Z - Bit Rate192 - Sample Rate44100 - Normalization906 - Artwork Count1 - Persistent ID6514CDA229D09DBD - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Junoon/Azadi/11%20Lal%20Meri%20Pat.m4a - File Folder Count4 - Library Folder Count1 - - 3643 - - Track ID3643 - NameDil Nahin Lag Raha - ArtistJunoon - AlbumAzadi - GenreWorld - KindAAC audio file - Size5734991 - Total Time235843 - Track Number12 - Track Count15 - Date Modified2006-08-13T06:39:14Z - Date Added2009-10-03T14:55:55Z - Bit Rate192 - Sample Rate44100 - Normalization949 - Artwork Count1 - Persistent ID18C965876072104E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Junoon/Azadi/12%20Dil%20Nahin%20Lag%20Raha.m4a - File Folder Count4 - Library Folder Count1 - - 3645 - - Track ID3645 - NameLoishay - ArtistJunoon - AlbumAzadi - GenreWorld - KindAAC audio file - Size5300292 - Total Time217755 - Track Number13 - Track Count15 - Date Modified2006-08-13T06:39:12Z - Date Added2009-10-03T14:55:55Z - Bit Rate192 - Sample Rate44100 - Normalization910 - Artwork Count1 - Persistent ID7E543F949F7465D2 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Junoon/Azadi/13%20Loishay.m4a - File Folder Count4 - Library Folder Count1 - - 3647 - - Track ID3647 - NameSaeein Alaap - ArtistJunoon - AlbumAzadi - GenreWorld - KindAAC audio file - Size1325568 - Total Time53009 - Track Number14 - Track Count15 - Date Modified2006-08-13T06:39:10Z - Date Added2009-10-03T14:55:55Z - Bit Rate192 - Sample Rate44100 - Normalization1207 - Artwork Count1 - Persistent ID5EB968A945AE2176 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Junoon/Azadi/14%20Saeein%20Alaap.m4a - File Folder Count4 - Library Folder Count1 - - 3649 - - Track ID3649 - NameSaeein - ArtistJunoon - AlbumAzadi - GenreWorld - KindAAC audio file - Size6784242 - Total Time279427 - Track Number15 - Track Count15 - Date Modified2006-08-13T06:39:10Z - Date Added2009-10-03T14:55:55Z - Bit Rate192 - Sample Rate44100 - Normalization877 - Artwork Count1 - Persistent ID2F31B1864638D709 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Junoon/Azadi/15%20Saeein.m4a - File Folder Count4 - Library Folder Count1 - - 4053 - - Track ID4053 - NameThe Esio Trot - ArtistGeorge Brooks - AlbumNight Spinner - GenreJazz - KindAAC audio file - Size10514925 - Total Time433770 - Track Number1 - Track Count10 - Date Modified2006-07-29T04:36:06Z - Date Added2009-10-03T14:56:37Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Sort NameEsio Trot - Persistent ID7685DCB23B82A22A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Brooks/Night%20Spinner/01%20The%20Esio%20Trot.m4a - File Folder Count4 - Library Folder Count1 - - 4055 - - Track ID4055 - NameWater Dance - ArtistGeorge Brooks - AlbumNight Spinner - GenreJazz - KindAAC audio file - Size10159717 - Total Time419095 - Track Number2 - Track Count10 - Date Modified2006-07-29T04:36:06Z - Date Added2009-10-03T14:56:37Z - Bit Rate192 - Sample Rate44100 - Normalization1243 - Artwork Count1 - Persistent ID4CC983DB8EE26174 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Brooks/Night%20Spinner/02%20Water%20Dance.m4a - File Folder Count4 - Library Folder Count1 - - 4057 - - Track ID4057 - NameHymn - ArtistGeorge Brooks - AlbumNight Spinner - GenreJazz - KindAAC audio file - Size3892899 - Total Time159891 - Track Number3 - Track Count10 - Date Modified2006-07-29T04:36:08Z - Date Added2009-10-03T14:56:37Z - Bit Rate192 - Sample Rate44100 - Normalization1383 - Artwork Count1 - Persistent ID02D7DDD50DADFF60 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Brooks/Night%20Spinner/03%20Hymn.m4a - File Folder Count4 - Library Folder Count1 - - 4059 - - Track ID4059 - NameNight Spinner - ArtistGeorge Brooks - AlbumNight Spinner - GenreJazz - KindAAC audio file - Size7209204 - Total Time297167 - Track Number4 - Track Count10 - Date Modified2006-07-29T04:36:08Z - Date Added2009-10-03T14:56:37Z - Bit Rate192 - Sample Rate44100 - Normalization1249 - Artwork Count1 - Persistent IDC37FEE66D7CA29CA - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Brooks/Night%20Spinner/04%20Night%20Spinner.m4a - File Folder Count4 - Library Folder Count1 - - 4061 - - Track ID4061 - NameIn The Grotto - ArtistGeorge Brooks - AlbumNight Spinner - GenreJazz - KindAAC audio file - Size14034114 - Total Time582656 - Track Number5 - Track Count10 - Date Modified2006-07-29T04:36:08Z - Date Added2009-10-03T14:56:37Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Persistent ID2D5BD74BA272B2BE - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Brooks/Night%20Spinner/05%20In%20The%20Grotto.m4a - File Folder Count4 - Library Folder Count1 - - 4063 - - Track ID4063 - NameLooking East - ArtistGeorge Brooks - AlbumNight Spinner - GenreJazz - KindAAC audio file - Size6766964 - Total Time278893 - Track Number6 - Track Count10 - Date Modified2006-07-29T04:36:08Z - Date Added2009-10-03T14:56:37Z - Bit Rate192 - Sample Rate44100 - Normalization1256 - Artwork Count1 - Persistent ID62C27FDF1BD1023A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Brooks/Night%20Spinner/06%20Looking%20East.m4a - File Folder Count4 - Library Folder Count1 - - 4065 - - Track ID4065 - NameImages - ArtistGeorge Brooks - AlbumNight Spinner - GenreJazz - KindAAC audio file - Size8841345 - Total Time364621 - Track Number7 - Track Count10 - Date Modified2006-07-29T04:36:10Z - Date Added2009-10-03T14:56:38Z - Bit Rate192 - Sample Rate44100 - Normalization1464 - Artwork Count1 - Persistent IDD5D90BF95FB6C41A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Brooks/Night%20Spinner/07%20Images.m4a - File Folder Count4 - Library Folder Count1 - - 4067 - - Track ID4067 - NameRomance - ArtistGeorge Brooks - AlbumNight Spinner - GenreJazz - KindAAC audio file - Size9935184 - Total Time409877 - Track Number8 - Track Count10 - Date Modified2006-07-29T04:36:10Z - Date Added2009-10-03T14:56:38Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Persistent ID3728F4A381D17CCD - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Brooks/Night%20Spinner/08%20Romance.m4a - File Folder Count4 - Library Folder Count1 - - 4069 - - Track ID4069 - NameMidnight Meeting - ArtistGeorge Brooks - AlbumNight Spinner - GenreJazz - KindAAC audio file - Size5659993 - Total Time233173 - Track Number9 - Track Count10 - Date Modified2006-07-29T04:36:10Z - Date Added2009-10-03T14:56:38Z - Bit Rate192 - Sample Rate44100 - Normalization1253 - Artwork Count1 - Persistent ID6CD18B31E820FC5A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Brooks/Night%20Spinner/09%20Midnight%20Meeting.m4a - File Folder Count4 - Library Folder Count1 - - 4071 - - Track ID4071 - NameThe Light Never Leaves Your Eyes - ArtistGeorge Brooks - AlbumNight Spinner - GenreJazz - KindAAC audio file - Size7930364 - Total Time327353 - Track Number10 - Track Count10 - Date Modified2006-07-29T04:36:10Z - Date Added2009-10-03T14:56:38Z - Bit Rate192 - Sample Rate44100 - Normalization917 - Artwork Count1 - Sort NameLight Never Leaves Your Eyes - Persistent IDC06E1ED22CD39104 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Brooks/Night%20Spinner/10%20The%20Light%20Never%20Leaves%20Your%20Eyes.m4a - File Folder Count4 - Library Folder Count1 - - 4931 - - Track ID4931 - NameWhat Silence Said - ArtistSusheela Raman - AlbumMusic For Crocodiles - GenreWorld - KindAAC audio file - Size6784515 - Total Time280983 - Track Number1 - Track Count13 - Year2005 - Date Modified2006-08-07T09:55:14Z - Date Added2009-10-03T14:57:56Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3424522441 - Play Date UTC2012-07-07T10:44:01Z - Normalization1244 - Compilation - Artwork Count1 - Persistent ID268362DDAF5C2F6F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Music%20For%20Crocodiles/01%20What%20Silence%20Said.m4a - File Folder Count4 - Library Folder Count1 - - 4933 - - Track ID4933 - NameMusic For Crocodiles - ArtistSusheela Raman - AlbumMusic For Crocodiles - GenreWorld - KindAAC audio file - Size7263665 - Total Time299977 - Track Number2 - Track Count13 - Year2005 - Date Modified2006-08-07T09:55:14Z - Date Added2009-10-03T14:57:57Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3424522742 - Play Date UTC2012-07-07T10:49:02Z - Normalization1299 - Compilation - Artwork Count1 - Persistent ID428D83A4763E1377 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Music%20For%20Crocodiles/02%20Music%20For%20Crocodiles.m4a - File Folder Count4 - Library Folder Count1 - - 4935 - - Track ID4935 - NameLight Years Intro - ArtistSusheela Raman - AlbumMusic For Crocodiles - GenreWorld - KindAAC audio file - Size2473260 - Total Time100796 - Track Number3 - Track Count13 - Year2005 - Date Modified2006-08-07T09:55:14Z - Date Added2009-10-03T14:57:57Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3424522843 - Play Date UTC2012-07-07T10:50:43Z - Normalization543 - Compilation - Artwork Count1 - Persistent IDCD7A03226BC79769 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Music%20For%20Crocodiles/03%20Light%20Years%20Intro.m4a - File Folder Count4 - Library Folder Count1 - - 4937 - - Track ID4937 - NameLight Years - ArtistSusheela Raman - AlbumMusic For Crocodiles - GenreWorld - KindAAC audio file - Size8670568 - Total Time357748 - Track Number4 - Track Count13 - Year2005 - Date Modified2006-08-07T09:55:14Z - Date Added2009-10-03T14:57:57Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3424523201 - Play Date UTC2012-07-07T10:56:41Z - Normalization1259 - Compilation - Artwork Count1 - Persistent ID7EFA7FD30D0F2680 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Music%20For%20Crocodiles/04%20Light%20Years.m4a - File Folder Count4 - Library Folder Count1 - - 4939 - - Track ID4939 - NameThe Same Song - ArtistSusheela Raman - AlbumMusic For Crocodiles - GenreWorld - KindAAC audio file - Size6041432 - Total Time249148 - Track Number5 - Track Count13 - Year2005 - Date Modified2006-08-07T09:55:12Z - Date Added2009-10-03T14:57:57Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3424523450 - Play Date UTC2012-07-07T11:00:50Z - Normalization1244 - Compilation - Artwork Count1 - Sort NameSame Song - Persistent ID6D9EE18D975C9227 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Music%20For%20Crocodiles/05%20The%20Same%20Song.m4a - File Folder Count4 - Library Folder Count1 - - 4941 - - Track ID4941 - NameIntro - ArtistSusheela Raman - AlbumMusic For Crocodiles - GenreWorld - KindAAC audio file - Size2373275 - Total Time96616 - Track Number6 - Track Count13 - Year2005 - Date Modified2006-08-07T09:55:12Z - Date Added2009-10-03T14:57:57Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3424523547 - Play Date UTC2012-07-07T11:02:27Z - Normalization254 - Compilation - Artwork Count1 - Persistent IDC8F0C5688B3E7BC0 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Music%20For%20Crocodiles/06%20Intro.m4a - File Folder Count4 - Library Folder Count1 - - 4943 - - Track ID4943 - NameMeanwhile - ArtistSusheela Raman - AlbumMusic For Crocodiles - GenreWorld - KindAAC audio file - Size5622381 - Total Time232430 - Track Number7 - Track Count13 - Year2005 - Date Modified2006-08-07T09:55:12Z - Date Added2009-10-03T14:57:57Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3424523779 - Play Date UTC2012-07-07T11:06:19Z - Normalization1244 - Compilation - Artwork Count1 - Persistent ID30F61BA41C1F98D6 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Music%20For%20Crocodiles/07%20Meanwhile.m4a - File Folder Count4 - Library Folder Count1 - - 4945 - - Track ID4945 - NameChordhiya - ArtistSusheela Raman - AlbumMusic For Crocodiles - GenreWorld - KindAAC audio file - Size8189375 - Total Time337872 - Track Number8 - Track Count13 - Year2005 - Date Modified2006-08-07T09:55:12Z - Date Added2009-10-03T14:57:57Z - Bit Rate192 - Sample Rate44100 - Normalization1420 - Compilation - Artwork Count1 - Persistent IDBC25E5F0C4E2CF87 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Music%20For%20Crocodiles/08%20Chordhiya.m4a - File Folder Count4 - Library Folder Count1 - - 4947 - - Track ID4947 - NameIdi Samayam - ArtistSusheela Raman - AlbumMusic For Crocodiles - GenreWorld - KindAAC audio file - Size8068233 - Total Time332856 - Track Number9 - Track Count13 - Year2005 - Date Modified2006-08-07T09:55:12Z - Date Added2009-10-03T14:57:58Z - Bit Rate192 - Sample Rate44100 - Normalization1231 - Compilation - Artwork Count1 - Persistent IDE72B722E95A58A58 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Music%20For%20Crocodiles/09%20Idi%20Samayam.m4a - File Folder Count4 - Library Folder Count1 - - 4949 - - Track ID4949 - NameL'ame Volatile - ArtistSusheela Raman - AlbumMusic For Crocodiles - GenreWorld - KindAAC audio file - Size5242362 - Total Time216083 - Track Number10 - Track Count13 - Year2005 - Date Modified2006-08-07T09:55:12Z - Date Added2009-10-03T14:57:58Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Compilation - Artwork Count1 - Persistent IDC920E073626B1A99 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Music%20For%20Crocodiles/10%20L'ame%20Volatile.m4a - File Folder Count4 - Library Folder Count1 - - 4951 - - Track ID4951 - NameIntro - ArtistSusheela Raman - AlbumMusic For Crocodiles - GenreWorld - KindAAC audio file - Size2591553 - Total Time105719 - Track Number11 - Track Count13 - Year2005 - Date Modified2006-08-07T09:55:12Z - Date Added2009-10-03T14:57:58Z - Bit Rate192 - Sample Rate44100 - Normalization1148 - Compilation - Artwork Count1 - Persistent IDBDF0294676AFF8F1 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Music%20For%20Crocodiles/11%20Intro.m4a - File Folder Count4 - Library Folder Count1 - - 4953 - - Track ID4953 - NameSharavana - ArtistSusheela Raman - AlbumMusic For Crocodiles - GenreWorld - KindAAC audio file - Size8920276 - Total Time368081 - Track Number12 - Track Count13 - Year2005 - Date Modified2006-08-07T09:55:12Z - Date Added2009-10-03T14:57:58Z - Bit Rate192 - Sample Rate44100 - Normalization1149 - Compilation - Artwork Count1 - Persistent ID4B00A657F97D7C4A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Music%20For%20Crocodiles/12%20Sharavana.m4a - File Folder Count4 - Library Folder Count1 - - 4955 - - Track ID4955 - NameLeela - ArtistSusheela Raman - AlbumMusic For Crocodiles - GenreWorld - KindAAC audio file - Size5517932 - Total Time229202 - Track Number13 - Track Count13 - Year2005 - Date Modified2006-08-07T09:55:12Z - Date Added2009-10-03T14:57:58Z - Bit Rate192 - Sample Rate44100 - Normalization1248 - Compilation - Artwork Count1 - Persistent ID3BB35D00AD68044F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Music%20For%20Crocodiles/13%20Leela.m4a - File Folder Count4 - Library Folder Count1 - - 5723 - - Track ID5723 - NameA -Tisket, a-Tasket - ArtistElla Fitzgerald - Album4 By 4 - The Ladies - Ella, Billie, Sarah, Dinah - GenreJazz - KindAAC audio file - Size2784627 - Total Time116167 - Disc Number1 - Disc Count16 - Track Number1 - Track Count16 - Year1999 - Date Modified2006-08-07T09:09:10Z - Date Added2009-10-03T14:58:57Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3337490953 - Play Date UTC2009-10-04T03:19:13Z - Normalization1931 - Compilation - Artwork Count1 - Sort Name-Tisket, a-Tasket - Persistent ID540F7B2D287A4BEA - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/4%20By%204%20-%20The%20Ladies%20-%20Ella,%20Billie,%20Sarah,%20Dinah/1-01%20A%20-Tisket,%20a-Tasket.m4a - File Folder Count4 - Library Folder Count1 - - 5725 - - Track ID5725 - NameMack the Knife - ArtistElla Fitzgerald - Album4 By 4 - The Ladies - Ella, Billie, Sarah, Dinah - GenreJazz - KindAAC audio file - Size6868905 - Total Time285069 - Disc Number1 - Disc Count16 - Track Number2 - Track Count16 - Year1999 - Date Modified2006-08-07T09:09:10Z - Date Added2009-10-03T14:58:57Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3337491238 - Play Date UTC2009-10-04T03:23:58Z - Normalization1610 - Compilation - Artwork Count1 - Persistent ID3A12B018255583A6 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/4%20By%204%20-%20The%20Ladies%20-%20Ella,%20Billie,%20Sarah,%20Dinah/1-02%20Mack%20the%20Knife.m4a - File Folder Count4 - Library Folder Count1 - - 5727 - - Track ID5727 - NameMr. Paganini - ArtistElla Fitzgerald - Album4 By 4 - The Ladies - Ella, Billie, Sarah, Dinah - GenreJazz - KindAAC audio file - Size5915091 - Total Time246013 - Disc Number1 - Disc Count16 - Track Number3 - Track Count16 - Year1999 - Date Modified2006-08-07T09:09:10Z - Date Added2009-10-03T14:58:57Z - Bit Rate192 - Sample Rate44100 - Normalization3534 - Compilation - Artwork Count1 - Persistent ID0100B23C34EA0054 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/4%20By%204%20-%20The%20Ladies%20-%20Ella,%20Billie,%20Sarah,%20Dinah/1-03%20Mr.%20Paganini.m4a - File Folder Count4 - Library Folder Count1 - - 5729 - - Track ID5729 - NameHow High the Moon - ArtistElla Fitzgerald - Album4 By 4 - The Ladies - Ella, Billie, Sarah, Dinah - GenreJazz - KindAAC audio file - Size10179348 - Total Time422346 - Disc Number1 - Disc Count16 - Track Number4 - Track Count16 - Year1999 - Date Modified2006-08-07T09:09:10Z - Date Added2009-10-03T14:58:57Z - Bit Rate192 - Sample Rate44100 - Normalization1813 - Compilation - Artwork Count1 - Persistent ID3411808F935A2418 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/4%20By%204%20-%20The%20Ladies%20-%20Ella,%20Billie,%20Sarah,%20Dinah/1-04%20How%20High%20the%20Moon.m4a - File Folder Count4 - Library Folder Count1 - - 5731 - - Track ID5731 - NameGod Bless the Child - ArtistBillie Holiday - Album4 By 4 - The Ladies - Ella, Billie, Sarah, Dinah - GenreJazz - KindAAC audio file - Size5761266 - Total Time239512 - Disc Number1 - Disc Count16 - Track Number5 - Track Count16 - Year1999 - Date Modified2006-08-07T09:09:10Z - Date Added2009-10-03T14:58:57Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3337491582 - Play Date UTC2009-10-04T03:29:42Z - Normalization1848 - Compilation - Artwork Count1 - Persistent IDCC687BD99FDC94DD - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/4%20By%204%20-%20The%20Ladies%20-%20Ella,%20Billie,%20Sarah,%20Dinah/1-05%20God%20Bless%20the%20Child.m4a - File Folder Count4 - Library Folder Count1 - - 5733 - - Track ID5733 - NameStrange Fruit - ArtistBillie Holiday - Album4 By 4 - The Ladies - Ella, Billie, Sarah, Dinah - GenreJazz - KindAAC audio file - Size4404996 - Total Time183668 - Disc Number1 - Disc Count16 - Track Number6 - Track Count16 - Year1999 - Date Modified2006-08-07T09:09:10Z - Date Added2009-10-03T14:58:57Z - Bit Rate192 - Sample Rate44100 - Skip Count1 - Skip Date2009-10-04T03:29:49Z - Normalization2543 - Compilation - Artwork Count1 - Persistent ID41A83274C57BCEB4 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/4%20By%204%20-%20The%20Ladies%20-%20Ella,%20Billie,%20Sarah,%20Dinah/1-06%20Strange%20Fruit.m4a - File Folder Count4 - Library Folder Count1 - - 5735 - - Track ID5735 - NameWhat a Little Moonlight Can Do - ArtistBillie Holiday - Album4 By 4 - The Ladies - Ella, Billie, Sarah, Dinah - GenreJazz - KindAAC audio file - Size4614979 - Total Time191911 - Disc Number1 - Disc Count16 - Track Number7 - Track Count16 - Year1999 - Date Modified2006-08-07T09:09:10Z - Date Added2009-10-03T14:58:58Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3337491781 - Play Date UTC2009-10-04T03:33:01Z - Normalization1533 - Compilation - Artwork Count1 - Persistent IDD5DD4FECCF6BFB79 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/4%20By%204%20-%20The%20Ladies%20-%20Ella,%20Billie,%20Sarah,%20Dinah/1-07%20What%20a%20Little%20Moonlight%20Can%20Do.m4a - File Folder Count4 - Library Folder Count1 - - 5737 - - Track ID5737 - NameGood Morning Heartache - ArtistBillie Holiday - Album4 By 4 - The Ladies - Ella, Billie, Sarah, Dinah - GenreJazz - KindAAC audio file - Size5055367 - Total Time211067 - Disc Number1 - Disc Count16 - Track Number8 - Track Count16 - Year1999 - Date Modified2006-08-07T09:09:10Z - Date Added2009-10-03T14:58:58Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3337491992 - Play Date UTC2009-10-04T03:36:32Z - Normalization1259 - Compilation - Artwork Count1 - Persistent IDE69FCFE1890477AA - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/4%20By%204%20-%20The%20Ladies%20-%20Ella,%20Billie,%20Sarah,%20Dinah/1-08%20Good%20Morning%20Heartache.m4a - File Folder Count4 - Library Folder Count1 - - 5739 - - Track ID5739 - NameMisty - ArtistSarah Vaughan - Album4 By 4 - The Ladies - Ella, Billie, Sarah, Dinah - GenreJazz - KindAAC audio file - Size4366419 - Total Time181717 - Disc Number1 - Disc Count16 - Track Number9 - Track Count16 - Year1999 - Date Modified2006-08-07T09:09:10Z - Date Added2009-10-03T14:58:58Z - Bit Rate192 - Sample Rate44100 - Normalization1852 - Compilation - Artwork Count1 - Persistent ID4F645E89F05C6C15 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/4%20By%204%20-%20The%20Ladies%20-%20Ella,%20Billie,%20Sarah,%20Dinah/1-09%20Misty.m4a - File Folder Count4 - Library Folder Count1 - - 5741 - - Track ID5741 - NameLullaby of Birdland - ArtistSarah Vaughan - Album4 By 4 - The Ladies - Ella, Billie, Sarah, Dinah - GenreJazz - KindAAC audio file - Size5790257 - Total Time240441 - Disc Number1 - Disc Count16 - Track Number10 - Track Count16 - Year1999 - Date Modified2006-08-07T09:09:10Z - Date Added2009-10-03T14:58:58Z - Bit Rate192 - Sample Rate44100 - Normalization1379 - Compilation - Artwork Count1 - Persistent IDF1A338488061D000 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/4%20By%204%20-%20The%20Ladies%20-%20Ella,%20Billie,%20Sarah,%20Dinah/1-10%20Lullaby%20of%20Birdland.m4a - File Folder Count4 - Library Folder Count1 - - 5743 - - Track ID5743 - NameLover Man - ArtistSarah Vaughan - Album4 By 4 - The Ladies - Ella, Billie, Sarah, Dinah - GenreJazz - KindAAC audio file - Size4766186 - Total Time198180 - Disc Number1 - Disc Count16 - Track Number11 - Track Count16 - Year1999 - Date Modified2006-08-07T09:09:10Z - Date Added2009-10-03T14:58:58Z - Bit Rate192 - Sample Rate44100 - Normalization1266 - Compilation - Artwork Count1 - Persistent IDF7801E10DC0FD415 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/4%20By%204%20-%20The%20Ladies%20-%20Ella,%20Billie,%20Sarah,%20Dinah/1-11%20Lover%20Man.m4a - File Folder Count4 - Library Folder Count1 - - 5745 - - Track ID5745 - NameLush Life - ArtistSarah Vaughan - Album4 By 4 - The Ladies - Ella, Billie, Sarah, Dinah - GenreJazz - KindAAC audio file - Size5852926 - Total Time243715 - Disc Number1 - Disc Count16 - Track Number12 - Track Count16 - Year1999 - Date Modified2006-08-07T09:09:08Z - Date Added2009-10-03T14:58:58Z - Bit Rate192 - Sample Rate44100 - Normalization1812 - Compilation - Artwork Count1 - Persistent IDDE38DBBB679E95F9 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/4%20By%204%20-%20The%20Ladies%20-%20Ella,%20Billie,%20Sarah,%20Dinah/1-12%20Lush%20Life.m4a - File Folder Count4 - Library Folder Count1 - - 5747 - - Track ID5747 - NameThis Bitter Earth - ArtistDinah Washington - Album4 By 4 - The Ladies - Ella, Billie, Sarah, Dinah - GenreJazz - KindAAC audio file - Size3534166 - Total Time147723 - Disc Number1 - Disc Count16 - Track Number13 - Track Count16 - Year1999 - Date Modified2006-08-07T09:09:08Z - Date Added2009-10-03T14:58:58Z - Bit Rate192 - Sample Rate44100 - Normalization3930 - Compilation - Artwork Count1 - Persistent ID9C0D55EA35B9665A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/4%20By%204%20-%20The%20Ladies%20-%20Ella,%20Billie,%20Sarah,%20Dinah/1-13%20This%20Bitter%20Earth.m4a - File Folder Count4 - Library Folder Count1 - - 5749 - - Track ID5749 - NameUnforgettable - ArtistDinah Washington - Album4 By 4 - The Ladies - Ella, Billie, Sarah, Dinah - GenreJazz - KindAAC audio file - Size3915939 - Total Time162886 - Disc Number1 - Disc Count16 - Track Number14 - Track Count16 - Year1999 - Date Modified2006-08-07T09:09:08Z - Date Added2009-10-03T14:58:58Z - Bit Rate192 - Sample Rate44100 - Normalization2889 - Compilation - Artwork Count1 - Persistent IDC77B0348F4503E6A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/4%20By%204%20-%20The%20Ladies%20-%20Ella,%20Billie,%20Sarah,%20Dinah/1-14%20Unforgettable.m4a - File Folder Count4 - Library Folder Count1 - - 5751 - - Track ID5751 - NameMad About the Boy - ArtistDinah Washington - Album4 By 4 - The Ladies - Ella, Billie, Sarah, Dinah - GenreJazz - KindAAC audio file - Size4322586 - Total Time179163 - Disc Number1 - Disc Count16 - Track Number15 - Track Count16 - Year1999 - Date Modified2006-08-07T09:09:08Z - Date Added2009-10-03T14:58:59Z - Bit Rate192 - Sample Rate44100 - Normalization3755 - Compilation - Artwork Count1 - Persistent IDB04E8095C75F7D83 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/4%20By%204%20-%20The%20Ladies%20-%20Ella,%20Billie,%20Sarah,%20Dinah/1-15%20Mad%20About%20the%20Boy.m4a - File Folder Count4 - Library Folder Count1 - - 5753 - - Track ID5753 - NameWhat A Differance A Day Made - ArtistDinah Washington - Album4 By 4 - The Ladies - Ella, Billie, Sarah, Dinah - GenreJazz - KindAAC audio file - Size3591295 - Total Time147654 - Disc Number1 - Disc Count16 - Track Number16 - Track Count16 - Year1999 - Date Modified2006-08-07T09:09:08Z - Date Added2009-10-03T14:58:59Z - Bit Rate192 - Sample Rate44100 - Normalization1252 - Compilation - Artwork Count1 - Persistent IDE4B4D2D0354C0222 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/4%20By%204%20-%20The%20Ladies%20-%20Ella,%20Billie,%20Sarah,%20Dinah/1-16%20What%20A%20Differance%20A%20Day%20Made.m4a - File Folder Count4 - Library Folder Count1 - - 8437 - - Track ID8437 - NameTamacun - ArtistRodrigo Y Gabriela - Album ArtistRodrigo y Gabriela - ComposerRodrigo Y Gabriela - AlbumRodrigo Y Gabriela - GenreJazz - KindAAC audio file - Size5273539 - Total Time205800 - Disc Number1 - Disc Count1 - Track Number1 - Track Count9 - Year2006 - Date Modified2011-06-21T02:13:49Z - Date Added2011-06-21T02:23:40Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3403623282 - Play Date UTC2011-11-08T13:24:42Z - Skip Count1 - Skip Date2011-10-21T12:21:16Z - Normalization4338 - Artwork Count1 - Persistent ID793E09AC5E50E5D8 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rodrigo%20y%20Gabriela/Rodrigo%20Y%20Gabriela/01%20Tamacun.m4a - File Folder Count4 - Library Folder Count1 - - 8439 - - Track ID8439 - NameDiablo Rojo - ArtistRodrigo Y Gabriela - Album ArtistRodrigo y Gabriela - ComposerRodrigo Y Gabriela - AlbumRodrigo Y Gabriela - GenreJazz - KindAAC audio file - Size7557131 - Total Time296800 - Disc Number1 - Disc Count1 - Track Number2 - Track Count9 - Year2006 - Date Modified2011-06-21T02:16:34Z - Date Added2011-06-21T02:23:40Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3402407506 - Play Date UTC2011-10-25T11:41:46Z - Skip Count3 - Skip Date2011-10-27T11:19:19Z - Normalization3352 - Artwork Count1 - Persistent IDDCE9A6C1FFBE3F7B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rodrigo%20y%20Gabriela/Rodrigo%20Y%20Gabriela/02%20Diablo%20Rojo.m4a - File Folder Count4 - Library Folder Count1 - - 8441 - - Track ID8441 - NameVikingman - ArtistRodrigo Y Gabriela - Album ArtistRodrigo y Gabriela - ComposerRodrigo Y Gabriela - AlbumRodrigo Y Gabriela - GenreJazz - KindAAC audio file - Size6141565 - Total Time243320 - Disc Number1 - Disc Count1 - Track Number3 - Track Count9 - Year2006 - Date Modified2011-06-21T02:11:49Z - Date Added2011-06-21T02:23:41Z - Bit Rate192 - Sample Rate44100 - Play Count3 - Play Date3403627537 - Play Date UTC2011-11-08T14:35:37Z - Skip Count3 - Skip Date2011-10-27T11:19:12Z - Normalization3659 - Artwork Count1 - Persistent IDAC15374D8359CE9C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rodrigo%20y%20Gabriela/Rodrigo%20Y%20Gabriela/03%20Vikingman.m4a - File Folder Count4 - Library Folder Count1 - - 8443 - - Track ID8443 - NameSatori - ArtistRodrigo Y Gabriela - Album ArtistRodrigo y Gabriela - ComposerRodrigo Y Gabriela - AlbumRodrigo Y Gabriela - GenreJazz - KindAAC audio file - Size7584629 - Total Time304400 - Disc Number1 - Disc Count1 - Track Number4 - Track Count9 - Year2006 - Date Modified2011-06-21T02:12:26Z - Date Added2011-06-21T02:23:41Z - Bit Rate192 - Sample Rate44100 - Play Count5 - Play Date3403628126 - Play Date UTC2011-11-08T14:45:26Z - Skip Count2 - Skip Date2011-10-27T11:19:31Z - Normalization1776 - Artwork Count1 - Persistent ID8C4B664170B0AF64 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rodrigo%20y%20Gabriela/Rodrigo%20Y%20Gabriela/04%20Satori.m4a - File Folder Count4 - Library Folder Count1 - - 8445 - - Track ID8445 - NameIxtapa - ArtistRodrigo Y Gabriela - Album ArtistRodrigo y Gabriela - ComposerRodrigo Y Gabriela - AlbumRodrigo Y Gabriela - GenreJazz - KindAAC audio file - Size7913274 - Total Time313973 - Disc Number1 - Disc Count1 - Track Number5 - Track Count9 - Year2006 - Date Modified2011-06-21T02:15:57Z - Date Added2011-06-21T02:23:41Z - Bit Rate192 - Sample Rate44100 - Play Count8 - Play Date3402408368 - Play Date UTC2011-10-25T11:56:08Z - Skip Count2 - Skip Date2011-10-25T10:35:32Z - Normalization3094 - Artwork Count1 - Persistent ID16F8F7AD3C2AD0DB - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rodrigo%20y%20Gabriela/Rodrigo%20Y%20Gabriela/05%20Ixtapa.m4a - File Folder Count4 - Library Folder Count1 - - 8447 - - Track ID8447 - NameStairway To Heaven - ArtistRodrigo Y Gabriela - Album ArtistRodrigo y Gabriela - ComposerJimmy Page.Robert Plant - AlbumRodrigo Y Gabriela - GenreJazz - KindAAC audio file - Size7282326 - Total Time284200 - Disc Number1 - Disc Count1 - Track Number6 - Track Count9 - Year2006 - Date Modified2011-06-21T02:15:18Z - Date Added2011-06-21T02:23:41Z - Bit Rate192 - Sample Rate44100 - Play Count10 - Play Date3430146066 - Play Date UTC2012-09-10T12:51:06Z - Normalization1615 - Artwork Count1 - Persistent ID4D45998A35B14ACB - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rodrigo%20y%20Gabriela/Rodrigo%20Y%20Gabriela/06%20Stairway%20To%20Heaven.m4a - File Folder Count4 - Library Folder Count1 - - 8449 - - Track ID8449 - NameOrion - ArtistRodrigo Y Gabriela - Album ArtistRodrigo y Gabriela - ComposerCliford Lee Burton,James Alan Hetfield+Lars Ulrich - AlbumRodrigo Y Gabriela - GenreJazz - KindAAC audio file - Size11736010 - Total Time464000 - Disc Number1 - Disc Count1 - Track Number7 - Track Count9 - Year2006 - Date Modified2011-06-21T02:14:44Z - Date Added2011-06-21T02:23:41Z - Bit Rate192 - Sample Rate44100 - Play Count9 - Play Date3430146530 - Play Date UTC2012-09-10T12:58:50Z - Skip Count1 - Skip Date2011-10-19T12:08:33Z - Normalization3105 - Artwork Count1 - Persistent ID2BA34FDE67F8C1D6 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rodrigo%20y%20Gabriela/Rodrigo%20Y%20Gabriela/07%20Orion.m4a - File Folder Count4 - Library Folder Count1 - - 8451 - - Track ID8451 - NameJuan Loco - ArtistRodrigo Y Gabriela - Album ArtistRodrigo y Gabriela - ComposerRodrigo Y Gabriela - AlbumRodrigo Y Gabriela - GenreJazz - KindAAC audio file - Size5299008 - Total Time207413 - Disc Number1 - Disc Count1 - Track Number8 - Track Count9 - Year2006 - Date Modified2011-06-21T02:12:51Z - Date Added2011-06-21T02:23:41Z - Bit Rate192 - Sample Rate44100 - Play Count8 - Play Date3430146738 - Play Date UTC2012-09-10T13:02:18Z - Skip Count2 - Skip Date2011-10-27T11:19:28Z - Normalization3852 - Artwork Count1 - Persistent ID1F5B47824495483D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rodrigo%20y%20Gabriela/Rodrigo%20Y%20Gabriela/08%20Juan%20Loco.m4a - File Folder Count4 - Library Folder Count1 - - 8453 - - Track ID8453 - NamePPA - ArtistRodrigo Y Gabriela - Album ArtistRodrigo y Gabriela - ComposerRodrigo Y Gabriela - AlbumRodrigo Y Gabriela - GenreJazz - KindAAC audio file - Size6589124 - Total Time252346 - Disc Number1 - Disc Count1 - Track Number9 - Track Count9 - Year2006 - Date Modified2011-06-21T02:13:24Z - Date Added2011-06-21T02:23:42Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3427389410 - Play Date UTC2012-08-09T15:06:50Z - Skip Count3 - Skip Date2011-10-27T10:55:51Z - Normalization3555 - Artwork Count1 - Persistent ID7A0D0B0D474CFD59 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rodrigo%20y%20Gabriela/Rodrigo%20Y%20Gabriela/09%20PPA.m4a - File Folder Count4 - Library Folder Count1 - - - Playlists - - - Namechirag-1 - Playlist ID20111 - Playlist Persistent ID16F77129EA5C7E62 - All Items - Playlist Items - - - Track ID4931 - - - Track ID4933 - - - Track ID4935 - - - Track ID4937 - - - Track ID4939 - - - Track ID4941 - - - Track ID4943 - - - Track ID4945 - - - Track ID4947 - - - Track ID4949 - - - Track ID4951 - - - Track ID4953 - - - Track ID4955 - - - Track ID3593 - - - Track ID3595 - - - Track ID3597 - - - Track ID3599 - - - Track ID3391 - - - Track ID3393 - - - Track ID3395 - - - Track ID3397 - - - Track ID3399 - - - Track ID3401 - - - Track ID3403 - - - Track ID3405 - - - Track ID3083 - - - Track ID3085 - - - Track ID3087 - - - Track ID3089 - - - Track ID3091 - - - Track ID3093 - - - Track ID3095 - - - Track ID3097 - - - Track ID3099 - - - Track ID3101 - - - Track ID3103 - - - Track ID3105 - - - Track ID3107 - - - Track ID3109 - - - Track ID4053 - - - Track ID4055 - - - Track ID4057 - - - Track ID4059 - - - Track ID4061 - - - Track ID4063 - - - Track ID4065 - - - Track ID4067 - - - Track ID4069 - - - Track ID4071 - - - Track ID3261 - - - Track ID3263 - - - Track ID3265 - - - Track ID3267 - - - Track ID3269 - - - Track ID3271 - - - Track ID3273 - - - Track ID3275 - - - Track ID3277 - - - Track ID3279 - - - Track ID3281 - - - Track ID3283 - - - Track ID3285 - - - Track ID8437 - - - Track ID8439 - - - Track ID8441 - - - Track ID8443 - - - Track ID8445 - - - Track ID8447 - - - Track ID8449 - - - Track ID8451 - - - Track ID8453 - - - Track ID5723 - - - Track ID5725 - - - Track ID5727 - - - Track ID5729 - - - Track ID5731 - - - Track ID5733 - - - Track ID5735 - - - Track ID5737 - - - Track ID5739 - - - Track ID5741 - - - Track ID5743 - - - Track ID5745 - - - Track ID5747 - - - Track ID5749 - - - Track ID5751 - - - Track ID5753 - - - Track ID3621 - - - Track ID3623 - - - Track ID3625 - - - Track ID3627 - - - Track ID3629 - - - Track ID3631 - - - Track ID3633 - - - Track ID3635 - - - Track ID3637 - - - Track ID3639 - - - Track ID3641 - - - Track ID3643 - - - Track ID3645 - - - Track ID3647 - - - Track ID3649 - - - - - - diff --git a/GeekyProjects/C1_ParsingMusicList/pl2.xml b/GeekyProjects/C1_ParsingMusicList/pl2.xml deleted file mode 100644 index cd4ec5b..0000000 --- a/GeekyProjects/C1_ParsingMusicList/pl2.xml +++ /dev/null @@ -1,4120 +0,0 @@ - - - - - Major Version1 - Minor Version1 - Date2012-08-25T02:36:44Z - Application Version10.6.3 - Features5 - Show Content Ratings - Music Folderfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/ - Library Persistent ID5E7B8CC1F12D8073 - Tracks - - 2266 - - Track ID2266 - NameNavaragamalika Varnam - ArtistString Quartet - AlbumResonance - GenreWorld - KindAAC audio file - Size6304012 - Total Time262035 - Track Number1 - Track Count9 - Year2001 - Date Modified2006-07-30T08:38:34Z - Date Added2009-10-03T14:52:49Z - Bit Rate192 - Sample Rate44100 - Normalization1175 - Artwork Count1 - Persistent ID77E144A95A9E661C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/String%20Quartet/Resonance/01%20Navaragamalika%20Varnam.m4a - File Folder Count4 - Library Folder Count1 - - 2268 - - Track ID2268 - NamePalukavademira - ArtistString Quartet - AlbumResonance - GenreWorld - KindAAC audio file - Size5494285 - Total Time229016 - Track Number2 - Track Count9 - Year2001 - Date Modified2006-07-30T08:38:34Z - Date Added2009-10-03T14:52:49Z - Bit Rate192 - Sample Rate44100 - Normalization1293 - Artwork Count1 - Persistent ID99EB841BC15BA780 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/String%20Quartet/Resonance/02%20Palukavademira.m4a - File Folder Count4 - Library Folder Count1 - - 2270 - - Track ID2270 - NameEsane - ArtistString Quartet - AlbumResonance - GenreWorld - KindAAC audio file - Size9089233 - Total Time376835 - Track Number3 - Track Count9 - Year2001 - Date Modified2006-07-30T08:38:34Z - Date Added2009-10-03T14:52:49Z - Bit Rate192 - Sample Rate44100 - Normalization768 - Artwork Count1 - Persistent IDD95A75999346C1BE - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/String%20Quartet/Resonance/03%20Esane.m4a - File Folder Count4 - Library Folder Count1 - - 2272 - - Track ID2272 - NameRaghuvamsa - ArtistString Quartet - AlbumResonance - GenreWorld - KindAAC audio file - Size11988996 - Total Time496928 - Track Number4 - Track Count9 - Year2001 - Date Modified2006-07-30T08:38:34Z - Date Added2009-10-03T14:52:49Z - Bit Rate192 - Sample Rate44100 - Normalization872 - Artwork Count1 - Persistent IDB6F358356DFF9E31 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/String%20Quartet/Resonance/04%20Raghuvamsa.m4a - File Folder Count4 - Library Folder Count1 - - 2274 - - Track ID2274 - NameAmba Kamakshi - ArtistString Quartet - AlbumResonance - GenreWorld - KindAAC audio file - Size8654457 - Total Time360209 - Track Number5 - Track Count9 - Year2001 - Date Modified2006-07-30T08:38:34Z - Date Added2009-10-03T14:52:49Z - Bit Rate192 - Sample Rate44100 - Normalization1383 - Artwork Count1 - Persistent ID300B92928FF380F0 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/String%20Quartet/Resonance/05%20Amba%20Kamakshi.m4a - File Folder Count4 - Library Folder Count1 - - 2276 - - Track ID2276 - NameMokshamu - ArtistString Quartet - AlbumResonance - GenreWorld - KindAAC audio file - Size9264808 - Total Time384056 - Track Number6 - Track Count9 - Year2001 - Date Modified2006-07-30T08:38:34Z - Date Added2009-10-03T14:52:49Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3340458300 - Play Date UTC2009-11-07T11:35:00Z - Normalization1120 - Artwork Count1 - Persistent ID4AA9D0B5C479CA4C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/String%20Quartet/Resonance/06%20Mokshamu.m4a - File Folder Count4 - Library Folder Count1 - - 2278 - - Track ID2278 - NameSara Sara Samarai - ArtistString Quartet - AlbumResonance - GenreWorld - KindAAC audio file - Size4045660 - Total Time168807 - Track Number7 - Track Count9 - Year2001 - Date Modified2006-07-30T08:38:34Z - Date Added2009-10-03T14:52:49Z - Bit Rate192 - Sample Rate44100 - Normalization1000 - Artwork Count1 - Persistent IDB57999E06DD6A4F4 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/String%20Quartet/Resonance/07%20Sara%20Sara%20Samarai.m4a - File Folder Count4 - Library Folder Count1 - - 2280 - - Track ID2280 - NameMohanalahari - ArtistString Quartet - AlbumResonance - GenreWorld - KindAAC audio file - Size13511868 - Total Time560342 - Track Number8 - Track Count9 - Year2001 - Date Modified2006-07-30T08:38:34Z - Date Added2009-10-03T14:52:49Z - Bit Rate192 - Sample Rate44100 - Normalization784 - Artwork Count1 - Persistent ID7D2802E18E50803D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/String%20Quartet/Resonance/08%20Mohanalahari.m4a - File Folder Count4 - Library Folder Count1 - - 2282 - - Track ID2282 - NameKrishna Nee Begane - ArtistString Quartet - AlbumResonance - GenreWorld - KindAAC audio file - Size10506998 - Total Time433538 - Track Number9 - Track Count9 - Year2001 - Date Modified2006-07-30T08:38:36Z - Date Added2009-10-03T14:52:49Z - Bit Rate192 - Sample Rate44100 - Normalization1259 - Artwork Count1 - Persistent IDFA60481B99EE702E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/String%20Quartet/Resonance/09%20Krishna%20Nee%20Begane.m4a - File Folder Count4 - Library Folder Count1 - - 3556 - - Track ID3556 - NameSayonee - ArtistJunoon - AlbumAzadi - GenreWorld - KindAAC audio file - Size7416200 - Total Time305526 - Track Number1 - Track Count15 - Date Modified2006-08-13T06:39:50Z - Date Added2009-10-03T14:55:53Z - Bit Rate192 - Sample Rate44100 - Normalization918 - Artwork Count1 - Persistent IDE00D1FC101EF9DAF - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Junoon/Azadi/01%20Sayonee.m4a - File Folder Count4 - Library Folder Count1 - - 3558 - - Track ID3558 - NameMeri Awaaz Suno - ArtistJunoon - AlbumAzadi - GenreWorld - KindAAC audio file - Size8072232 - Total Time332647 - Track Number2 - Track Count15 - Date Modified2006-08-13T06:39:46Z - Date Added2009-10-03T14:55:53Z - Bit Rate192 - Sample Rate44100 - Normalization1014 - Artwork Count1 - Persistent IDDE82B341A348847D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Junoon/Azadi/02%20Meri%20Awaaz%20Suno.m4a - File Folder Count4 - Library Folder Count1 - - 3560 - - Track ID3560 - NameKhudi - ArtistJunoon - AlbumAzadi - GenreWorld - KindAAC audio file - Size6058236 - Total Time249311 - Track Number3 - Track Count15 - Date Modified2006-08-13T06:39:42Z - Date Added2009-10-03T14:55:54Z - Bit Rate192 - Sample Rate44100 - Normalization1092 - Artwork Count1 - Persistent ID6AB6983D144D3680 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Junoon/Azadi/03%20Khudi.m4a - File Folder Count4 - Library Folder Count1 - - 3562 - - Track ID3562 - NameYaar Bina - ArtistJunoon - AlbumAzadi - GenreWorld - KindAAC audio file - Size5526756 - Total Time227182 - Track Number4 - Track Count15 - Date Modified2006-08-13T06:39:40Z - Date Added2009-10-03T14:55:54Z - Bit Rate192 - Sample Rate44100 - Normalization1059 - Artwork Count1 - Persistent IDA93B567A32741520 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Junoon/Azadi/04%20Yaar%20Bina.m4a - File Folder Count4 - Library Folder Count1 - - 3564 - - Track ID3564 - NameMukh Gae - ArtistJunoon - AlbumAzadi - GenreWorld - KindAAC audio file - Size8098433 - Total Time333715 - Track Number5 - Track Count15 - Date Modified2006-08-13T06:39:38Z - Date Added2009-10-03T14:55:54Z - Bit Rate192 - Sample Rate44100 - Normalization924 - Artwork Count1 - Persistent ID687CE56748388723 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Junoon/Azadi/05%20Mukh%20Gae.m4a - File Folder Count4 - Library Folder Count1 - - 3566 - - Track ID3566 - NameHeer - ArtistJunoon - AlbumAzadi - GenreWorld - KindAAC audio file - Size7062398 - Total Time290898 - Track Number6 - Track Count15 - Date Modified2006-08-13T06:39:34Z - Date Added2009-10-03T14:55:54Z - Bit Rate192 - Sample Rate44100 - Normalization943 - Artwork Count1 - Persistent ID43AB15622BF10A3E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Junoon/Azadi/06%20Heer.m4a - File Folder Count4 - Library Folder Count1 - - 3568 - - Track ID3568 - NameWahda Hoo - ArtistJunoon - AlbumAzadi - GenreWorld - KindAAC audio file - Size7087509 - Total Time291943 - Track Number7 - Track Count15 - Date Modified2006-08-13T06:39:30Z - Date Added2009-10-03T14:55:54Z - Bit Rate192 - Sample Rate44100 - Normalization899 - Artwork Count1 - Persistent IDCF4A02ACE1A2B1F3 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Junoon/Azadi/07%20Wahda%20Hoo.m4a - File Folder Count4 - Library Folder Count1 - - 3570 - - Track ID3570 - NameKyun Parishan - ArtistJunoon - AlbumAzadi - GenreWorld - KindAAC audio file - Size5737137 - Total Time235936 - Track Number8 - Track Count15 - Date Modified2006-08-13T06:39:28Z - Date Added2009-10-03T14:55:54Z - Bit Rate192 - Sample Rate44100 - Normalization963 - Artwork Count1 - Persistent ID1293852C7E2937CB - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Junoon/Azadi/08%20Kyun%20Parishan.m4a - File Folder Count4 - Library Folder Count1 - - 3572 - - Track ID3572 - NameMahiwal - ArtistJunoon - AlbumAzadi - GenreWorld - KindAAC audio file - Size8754082 - Total Time360813 - Track Number9 - Track Count15 - Date Modified2006-08-13T06:39:24Z - Date Added2009-10-03T14:55:54Z - Bit Rate192 - Sample Rate44100 - Normalization1030 - Artwork Count1 - Persistent ID0C762D78D78C7DB1 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Junoon/Azadi/09%20Mahiwal.m4a - File Folder Count4 - Library Folder Count1 - - 3574 - - Track ID3574 - NameKisne Suna - ArtistJunoon - AlbumAzadi - GenreWorld - KindAAC audio file - Size5763699 - Total Time237051 - Track Number10 - Track Count15 - Date Modified2006-08-13T06:39:20Z - Date Added2009-10-03T14:55:55Z - Bit Rate192 - Sample Rate44100 - Normalization909 - Artwork Count1 - Persistent IDE0CB4CF446887C04 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Junoon/Azadi/10%20Kisne%20Suna.m4a - File Folder Count4 - Library Folder Count1 - - 3576 - - Track ID3576 - NameLal Meri Pat - ArtistJunoon - AlbumAzadi - GenreWorld - KindAAC audio file - Size7748353 - Total Time319249 - Track Number11 - Track Count15 - Date Modified2006-08-13T06:39:18Z - Date Added2009-10-03T14:55:55Z - Bit Rate192 - Sample Rate44100 - Normalization906 - Artwork Count1 - Persistent ID6514CDA229D09DBD - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Junoon/Azadi/11%20Lal%20Meri%20Pat.m4a - File Folder Count4 - Library Folder Count1 - - 3578 - - Track ID3578 - NameDil Nahin Lag Raha - ArtistJunoon - AlbumAzadi - GenreWorld - KindAAC audio file - Size5734991 - Total Time235843 - Track Number12 - Track Count15 - Date Modified2006-08-13T06:39:14Z - Date Added2009-10-03T14:55:55Z - Bit Rate192 - Sample Rate44100 - Normalization949 - Artwork Count1 - Persistent ID18C965876072104E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Junoon/Azadi/12%20Dil%20Nahin%20Lag%20Raha.m4a - File Folder Count4 - Library Folder Count1 - - 3580 - - Track ID3580 - NameLoishay - ArtistJunoon - AlbumAzadi - GenreWorld - KindAAC audio file - Size5300292 - Total Time217755 - Track Number13 - Track Count15 - Date Modified2006-08-13T06:39:12Z - Date Added2009-10-03T14:55:55Z - Bit Rate192 - Sample Rate44100 - Normalization910 - Artwork Count1 - Persistent ID7E543F949F7465D2 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Junoon/Azadi/13%20Loishay.m4a - File Folder Count4 - Library Folder Count1 - - 3582 - - Track ID3582 - NameSaeein Alaap - ArtistJunoon - AlbumAzadi - GenreWorld - KindAAC audio file - Size1325568 - Total Time53009 - Track Number14 - Track Count15 - Date Modified2006-08-13T06:39:10Z - Date Added2009-10-03T14:55:55Z - Bit Rate192 - Sample Rate44100 - Normalization1207 - Artwork Count1 - Persistent ID5EB968A945AE2176 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Junoon/Azadi/14%20Saeein%20Alaap.m4a - File Folder Count4 - Library Folder Count1 - - 3584 - - Track ID3584 - NameSaeein - ArtistJunoon - AlbumAzadi - GenreWorld - KindAAC audio file - Size6784242 - Total Time279427 - Track Number15 - Track Count15 - Date Modified2006-08-13T06:39:10Z - Date Added2009-10-03T14:55:55Z - Bit Rate192 - Sample Rate44100 - Normalization877 - Artwork Count1 - Persistent ID2F31B1864638D709 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Junoon/Azadi/15%20Saeein.m4a - File Folder Count4 - Library Folder Count1 - - 3622 - - Track ID3622 - NameMy Favorite Things - ArtistJohn Coltrane - ComposerRichard Rodgers & Oscar Hammerstein - AlbumMy Favorite Things - GenreJazz - KindAAC audio file - Size19857464 - Total Time824005 - Disc Number1 - Disc Count1 - Track Number1 - Track Count4 - Year1961 - Date Modified2006-07-29T02:14:42Z - Date Added2009-10-03T14:56:00Z - Bit Rate192 - Sample Rate44100 - Play Count3 - Play Date3421814491 - Play Date UTC2012-06-06T02:31:31Z - Normalization986 - Artwork Count1 - Persistent ID9D22C3369D79BDD6 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/John%20Coltrane/My%20Favorite%20Things/01%20My%20Favorite%20Things.m4a - File Folder Count4 - Library Folder Count1 - - 3624 - - Track ID3624 - NameEverytime We Say Goodbye - ArtistJohn Coltrane - ComposerCole Porter - AlbumMy Favorite Things - GenreJazz - KindAAC audio file - Size8224551 - Total Time343212 - Disc Number1 - Disc Count1 - Track Number2 - Track Count4 - Year1961 - Date Modified2006-07-29T02:14:42Z - Date Added2009-10-03T14:56:00Z - Bit Rate192 - Sample Rate44100 - Normalization501 - Artwork Count1 - Persistent ID66630F00EAF672CA - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/John%20Coltrane/My%20Favorite%20Things/02%20Everytime%20We%20Say%20Goodbye.m4a - File Folder Count4 - Library Folder Count1 - - 3626 - - Track ID3626 - NameSummertime - ArtistJohn Coltrane - ComposerDu Bose Heyward & George Gershwin - AlbumMy Favorite Things - GenreJazz - KindAAC audio file - Size16752341 - Total Time695668 - Disc Number1 - Disc Count1 - Track Number3 - Track Count4 - Year1961 - Date Modified2006-07-29T02:14:42Z - Date Added2009-10-03T14:56:00Z - Bit Rate192 - Sample Rate44100 - Normalization1184 - Artwork Count1 - Persistent IDC9F6ED7879179675 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/John%20Coltrane/My%20Favorite%20Things/03%20Summertime.m4a - File Folder Count4 - Library Folder Count1 - - 3628 - - Track ID3628 - NameBut Not For Me - ArtistJohn Coltrane - ComposerGeorge & Ira Gershwin - AlbumMy Favorite Things - GenreJazz - KindAAC audio file - Size13916857 - Total Time574483 - Disc Number1 - Disc Count1 - Track Number4 - Track Count4 - Year1961 - Date Modified2006-07-29T02:14:44Z - Date Added2009-10-03T14:56:00Z - Bit Rate192 - Sample Rate44100 - Normalization972 - Artwork Count1 - Persistent IDB80A79285431AB29 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/John%20Coltrane/My%20Favorite%20Things/04%20But%20Not%20For%20Me.m4a - File Folder Count4 - Library Folder Count1 - - 4278 - - Track ID4278 - NameGod Shuffled His Feet - ArtistCrash Test Dummies - ComposerBrad Roberts - AlbumGod Shuffled His Feet - GenreAlternative & Punk - KindAAC audio file - Size7538532 - Total Time310495 - Disc Number1 - Disc Count1 - Track Number1 - Track Count12 - Year1993 - Date Modified2006-07-27T16:19:00Z - Date Added2009-10-03T14:57:13Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3360253487 - Play Date UTC2010-06-24T14:14:47Z - Normalization3377 - Artwork Count1 - Persistent ID84AB5B8C75DA415F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Crash%20Test%20Dummies/God%20Shuffled%20His%20Feet/01%20God%20Shuffled%20His%20Feet.m4a - File Folder Count4 - Library Folder Count1 - - 4280 - - Track ID4280 - NameAfternoons And Coffeespoons - ArtistCrash Test Dummies - ComposerBrad Roberts - AlbumGod Shuffled His Feet - GenreAlternative & Punk - KindAAC audio file - Size5754546 - Total Time235936 - Disc Number1 - Disc Count1 - Track Number2 - Track Count12 - Year1993 - Date Modified2006-07-27T16:19:00Z - Date Added2009-10-03T14:57:14Z - Bit Rate192 - Sample Rate44100 - Normalization3204 - Artwork Count1 - Persistent IDF8D901F3D02C90AA - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Crash%20Test%20Dummies/God%20Shuffled%20His%20Feet/02%20Afternoons%20And%20Coffeespoons.m4a - File Folder Count4 - Library Folder Count1 - - 4282 - - Track ID4282 - NameMmm Mmm Mmm Mmm - ArtistCrash Test Dummies - ComposerBrad Roberts - AlbumGod Shuffled His Feet - GenreAlternative & Punk - KindAAC audio file - Size5736923 - Total Time235193 - Disc Number1 - Disc Count1 - Track Number3 - Track Count12 - Year1993 - Date Modified2006-07-27T16:19:00Z - Date Added2009-10-03T14:57:14Z - Bit Rate192 - Sample Rate44100 - Normalization2251 - Artwork Count1 - Persistent ID2A017CA67C79A3DE - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Crash%20Test%20Dummies/God%20Shuffled%20His%20Feet/03%20Mmm%20Mmm%20Mmm%20Mmm.m4a - File Folder Count4 - Library Folder Count1 - - 4284 - - Track ID4284 - NameIn The Days Of The Caveman - ArtistCrash Test Dummies - ComposerBrad Roberts - AlbumGod Shuffled His Feet - GenreAlternative & Punk - KindAAC audio file - Size5383706 - Total Time220495 - Disc Number1 - Disc Count1 - Track Number4 - Track Count12 - Year1993 - Date Modified2006-07-27T16:19:02Z - Date Added2009-10-03T14:57:14Z - Bit Rate192 - Sample Rate44100 - Normalization2887 - Artwork Count1 - Persistent ID24BE71F31B440151 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Crash%20Test%20Dummies/God%20Shuffled%20His%20Feet/04%20In%20The%20Days%20Of%20The%20Caveman.m4a - File Folder Count4 - Library Folder Count1 - - 4286 - - Track ID4286 - NameSwimming In Your Ocean - ArtistCrash Test Dummies - ComposerBrad Roberts - AlbumGod Shuffled His Feet - GenreAlternative & Punk - KindAAC audio file - Size5589911 - Total Time229086 - Disc Number1 - Disc Count1 - Track Number5 - Track Count12 - Year1993 - Date Modified2006-07-27T16:19:02Z - Date Added2009-10-03T14:57:14Z - Bit Rate192 - Sample Rate44100 - Normalization2487 - Artwork Count1 - Persistent ID6D0DB2951E782900 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Crash%20Test%20Dummies/God%20Shuffled%20His%20Feet/05%20Swimming%20In%20Your%20Ocean.m4a - File Folder Count4 - Library Folder Count1 - - 4288 - - Track ID4288 - NameHere I Stand Before Me - ArtistCrash Test Dummies - ComposerBrad Roberts - AlbumGod Shuffled His Feet - GenreAlternative & Punk - KindAAC audio file - Size4570558 - Total Time186640 - Disc Number1 - Disc Count1 - Track Number6 - Track Count12 - Year1993 - Date Modified2006-07-27T16:19:02Z - Date Added2009-10-03T14:57:14Z - Bit Rate192 - Sample Rate44100 - Normalization5096 - Artwork Count1 - Persistent ID6245505E2DE84B12 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Crash%20Test%20Dummies/God%20Shuffled%20His%20Feet/06%20Here%20I%20Stand%20Before%20Me.m4a - File Folder Count4 - Library Folder Count1 - - 4290 - - Track ID4290 - NameI Think I'll Disappear Now - ArtistCrash Test Dummies - ComposerBrad Roberts - AlbumGod Shuffled His Feet - GenreAlternative & Punk - KindAAC audio file - Size7109370 - Total Time292152 - Disc Number1 - Disc Count1 - Track Number7 - Track Count12 - Year1993 - Date Modified2006-07-27T16:19:04Z - Date Added2009-10-03T14:57:14Z - Bit Rate192 - Sample Rate44100 - Normalization3863 - Artwork Count1 - Persistent ID7B945259794F9A44 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Crash%20Test%20Dummies/God%20Shuffled%20His%20Feet/07%20I%20Think%20I'll%20Disappear%20Now.m4a - File Folder Count4 - Library Folder Count1 - - 4292 - - Track ID4292 - NameHow Does A Duck Know - ArtistCrash Test Dummies - ComposerBrad Roberts - AlbumGod Shuffled His Feet - GenreAlternative & Punk - KindAAC audio file - Size5430269 - Total Time222445 - Disc Number1 - Disc Count1 - Track Number8 - Track Count12 - Year1993 - Date Modified2006-07-27T16:19:04Z - Date Added2009-10-03T14:57:14Z - Bit Rate192 - Sample Rate44100 - Normalization2932 - Artwork Count1 - Persistent ID7D386A553B83E41C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Crash%20Test%20Dummies/God%20Shuffled%20His%20Feet/08%20How%20Does%20A%20Duck%20Know.m4a - File Folder Count4 - Library Folder Count1 - - 4294 - - Track ID4294 - NameWhen I Go Out With Artists - ArtistCrash Test Dummies - ComposerBrad Roberts - AlbumGod Shuffled His Feet - GenreAlternative & Punk - KindAAC audio file - Size5458917 - Total Time223653 - Disc Number1 - Disc Count1 - Track Number9 - Track Count12 - Year1993 - Date Modified2006-07-27T16:19:04Z - Date Added2009-10-03T14:57:14Z - Bit Rate192 - Sample Rate44100 - Normalization3785 - Artwork Count1 - Persistent ID1A56EB0BA1FEA778 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Crash%20Test%20Dummies/God%20Shuffled%20His%20Feet/09%20When%20I%20Go%20Out%20With%20Artists.m4a - File Folder Count4 - Library Folder Count1 - - 4296 - - Track ID4296 - NameThe Psychic - ArtistCrash Test Dummies - ComposerBrad Roberts - AlbumGod Shuffled His Feet - GenreAlternative & Punk - KindAAC audio file - Size5562106 - Total Time227948 - Disc Number1 - Disc Count1 - Track Number10 - Track Count12 - Year1993 - Date Modified2006-07-27T16:19:06Z - Date Added2009-10-03T14:57:15Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3427199693 - Play Date UTC2012-08-07T10:24:53Z - Normalization1255 - Artwork Count1 - Sort NamePsychic - Persistent IDC55BE6C9D5993C17 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Crash%20Test%20Dummies/God%20Shuffled%20His%20Feet/10%20The%20Psychic.m4a - File Folder Count4 - Library Folder Count1 - - 4298 - - Track ID4298 - NameTwo Knights And Maidens - ArtistCrash Test Dummies - ComposerBrad Roberts - AlbumGod Shuffled His Feet - GenreAlternative & Punk - KindAAC audio file - Size4998894 - Total Time204473 - Disc Number1 - Disc Count1 - Track Number11 - Track Count12 - Year1993 - Date Modified2006-07-27T16:19:06Z - Date Added2009-10-03T14:57:15Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3427199898 - Play Date UTC2012-08-07T10:28:18Z - Normalization2678 - Artwork Count1 - Persistent ID8247F6BB713BABF5 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Crash%20Test%20Dummies/God%20Shuffled%20His%20Feet/11%20Two%20Knights%20And%20Maidens.m4a - File Folder Count4 - Library Folder Count1 - - 4300 - - Track ID4300 - NameCrash Course - ArtistCrash Test Dummies - ComposerBrad Roberts - AlbumGod Shuffled His Feet - GenreAlternative & Punk - KindAAC audio file - Size2559127 - Total Time102909 - Disc Number1 - Disc Count1 - Track Number12 - Track Count12 - Year1993 - Date Modified2006-07-27T16:19:06Z - Date Added2009-10-03T14:57:15Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3427200001 - Play Date UTC2012-08-07T10:30:01Z - Normalization143 - Artwork Count1 - Persistent ID125C2AE46A81607B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Crash%20Test%20Dummies/God%20Shuffled%20His%20Feet/12%20Crash%20Course.m4a - File Folder Count4 - Library Folder Count1 - - 4416 - - Track ID4416 - NameIntroduction And Rondo Capriccioso, Op.28 - ArtistCamille Saint-Saëns - AlbumThe Magic Violin - GenreClassical - KindAAC audio file - Size12594717 - Total Time523678 - Disc Number1 - Track Number1 - Track Count15 - Date Modified2006-08-08T03:05:14Z - Date Added2009-10-03T14:57:24Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3361080929 - Play Date UTC2010-07-04T04:05:29Z - Normalization898 - Compilation - Artwork Count1 - Sort AlbumMagic Violin - Persistent IDD57A15C6BDC652F3 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Magic%20Violin/1-01%20Introduction%20And%20Rondo%20Capriccioso,%20Op.28.m4a - File Folder Count4 - Library Folder Count1 - - 4418 - - Track ID4418 - NameRomance For Violin And Orchestra, Op.26 - ArtistJohann Svendsen - AlbumThe Magic Violin - GenreClassical - KindAAC audio file - Size11390631 - Total Time473337 - Disc Number1 - Track Number2 - Track Count15 - Date Modified2006-08-08T03:05:14Z - Date Added2009-10-03T14:57:24Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3361081402 - Play Date UTC2010-07-04T04:13:22Z - Normalization871 - Compilation - Artwork Count1 - Sort AlbumMagic Violin - Persistent ID3026718D1D264477 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Magic%20Violin/1-02%20Romance%20For%20Violin%20And%20Orchestra,%20Op.26.m4a - File Folder Count4 - Library Folder Count1 - - 4420 - - Track ID4420 - NameLa Campanella: Rondo In b, Op.7 - ArtistNiccolò Paganini - AlbumThe Magic Violin - GenreClassical - KindAAC audio file - Size8710037 - Total Time363669 - Disc Number1 - Track Number3 - Track Count15 - Date Modified2006-08-08T03:05:14Z - Date Added2009-10-03T14:57:24Z - Bit Rate192 - Sample Rate44100 - Normalization1037 - Compilation - Artwork Count1 - Sort AlbumMagic Violin - Persistent ID8DFBE5948823D64F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Magic%20Violin/1-03%20La%20Campanella_%20Rondo%20In%20b,%20Op.7.m4a - File Folder Count4 - Library Folder Count1 - - 4422 - - Track ID4422 - NameSuite In D: Air - ArtistJohann Sebastian Bach - AlbumThe Magic Violin - GenreClassical - KindAAC audio file - Size5547965 - Total Time232685 - Disc Number1 - Track Number4 - Track Count15 - Date Modified2006-08-08T03:05:16Z - Date Added2009-10-03T14:57:24Z - Bit Rate192 - Sample Rate44100 - Normalization150 - Compilation - Artwork Count1 - Sort AlbumMagic Violin - Persistent ID4A5A34439CD31F30 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Magic%20Violin/1-04%20Suite%20In%20D_%20Air.m4a - File Folder Count4 - Library Folder Count1 - - 4424 - - Track ID4424 - NameMinuet In G - ArtistLudwig Van Beethoven - AlbumThe Magic Violin - GenreClassical - KindAAC audio file - Size3869297 - Total Time162700 - Disc Number1 - Track Number5 - Track Count15 - Date Modified2006-08-08T03:05:16Z - Date Added2009-10-03T14:57:24Z - Bit Rate192 - Sample Rate44100 - Normalization416 - Compilation - Artwork Count1 - Sort AlbumMagic Violin - Persistent ID70AD67C87818D005 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Magic%20Violin/1-05%20Minuet%20In%20G.m4a - File Folder Count4 - Library Folder Count1 - - 4426 - - Track ID4426 - NameLittle Bee, Op.13/9 - ArtistFranz Schubert - AlbumThe Magic Violin - GenreClassical - KindAAC audio file - Size1484960 - Total Time63319 - Disc Number1 - Track Number6 - Track Count15 - Date Modified2006-08-08T03:05:16Z - Date Added2009-10-03T14:57:24Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3340458369 - Play Date UTC2009-11-07T11:36:09Z - Normalization326 - Compilation - Artwork Count1 - Sort AlbumMagic Violin - Persistent IDBB6C9540DFA0140E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Magic%20Violin/1-06%20Little%20Bee,%20Op.13_9.m4a - File Folder Count4 - Library Folder Count1 - - 4428 - - Track ID4428 - NamePrld I/8: La fille aux cheveux de lin - ArtistClaude Debussy - AlbumThe Magic Violin - GenreClassical - KindAAC audio file - Size3192546 - Total Time135742 - Disc Number1 - Track Number7 - Track Count15 - Date Modified2006-08-08T03:05:16Z - Date Added2009-10-03T14:57:24Z - Bit Rate192 - Sample Rate44100 - Normalization443 - Compilation - Artwork Count1 - Sort AlbumMagic Violin - Persistent ID86B2E3CF1132387D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Magic%20Violin/1-07%20Prld%20I_8_%20La%20fille%20aux%20cheveux%20de%20lin.m4a - File Folder Count4 - Library Folder Count1 - - 4430 - - Track ID4430 - NameSadko: The song of the Indian Merchant - ArtistNikolai Rimsky-Korsakov - AlbumThe Magic Violin - GenreClassical - KindAAC audio file - Size4424036 - Total Time185943 - Disc Number1 - Track Number8 - Track Count15 - Date Modified2006-08-08T03:05:16Z - Date Added2009-10-03T14:57:25Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3401282453 - Play Date UTC2011-10-12T11:10:53Z - Normalization370 - Compilation - Artwork Count1 - Sort AlbumMagic Violin - Persistent ID1E55DD6476019C97 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Magic%20Violin/1-08%20Sadko_%20The%20song%20of%20the%20Indian%20Merchant.m4a - File Folder Count4 - Library Folder Count1 - - 4432 - - Track ID4432 - NameThe Nightingale's Song - ArtistVaclav Trojan - AlbumThe Magic Violin - GenreClassical - KindAAC audio file - Size4074211 - Total Time170827 - Disc Number1 - Track Number9 - Track Count15 - Date Modified2006-08-08T03:05:16Z - Date Added2009-10-03T14:57:25Z - Bit Rate192 - Sample Rate44100 - Normalization605 - Compilation - Artwork Count1 - Sort AlbumMagic Violin - Sort NameNightingale's Song - Persistent IDDDA51DAE59439070 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Magic%20Violin/1-09%20The%20Nightingale's%20Song.m4a - File Folder Count4 - Library Folder Count1 - - 4434 - - Track ID4434 - NameDas Blumenleben Op.30: Zephyr Op.30/5 - ArtistJeno Hubay - AlbumThe Magic Violin - GenreClassical - KindAAC audio file - Size5002108 - Total Time212182 - Disc Number1 - Track Number10 - Track Count15 - Date Modified2006-08-08T03:05:16Z - Date Added2009-10-03T14:57:25Z - Bit Rate192 - Sample Rate44100 - Normalization386 - Compilation - Artwork Count1 - Sort AlbumMagic Violin - Persistent IDAE9351EE850E5555 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Magic%20Violin/1-10%20Das%20Blumenleben%20Op.30_%20Zephyr%20Op.30_5.m4a - File Folder Count4 - Library Folder Count1 - - 4436 - - Track ID4436 - NameSymphonie Espagnole In d Op.21: Allegro no Troppo - ArtistEdouard Lalo - AlbumThe Magic Violin - GenreClassical - KindAAC audio file - Size11228996 - Total Time463097 - Disc Number1 - Track Number11 - Track Count15 - Date Modified2006-08-08T03:05:16Z - Date Added2009-10-03T14:57:25Z - Bit Rate192 - Sample Rate44100 - Normalization989 - Compilation - Artwork Count1 - Sort AlbumMagic Violin - Persistent ID3E75BF24FFF87B16 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Magic%20Violin/1-11%20Symphonie%20Espagnole%20In%20d%20Op.21_%20Allegro%20no%20Troppo.m4a - File Folder Count4 - Library Folder Count1 - - 4438 - - Track ID4438 - NameSymphonie Espagnole In d Op.21: Sherzando - ArtistEdouard Lalo - AlbumThe Magic Violin - GenreClassical - KindAAC audio file - Size6428585 - Total Time264729 - Disc Number1 - Track Number12 - Track Count15 - Date Modified2006-08-08T03:05:16Z - Date Added2009-10-03T14:57:25Z - Bit Rate192 - Sample Rate44100 - Skip Count1 - Normalization817 - Compilation - Artwork Count1 - Sort AlbumMagic Violin - Persistent ID66DB88606BE68852 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Magic%20Violin/1-12%20Symphonie%20Espagnole%20In%20d%20Op.21_%20Sherzando.m4a - File Folder Count4 - Library Folder Count1 - - 4440 - - Track ID4440 - NameSymphonie Espagnole In d Op.21: Intermezzo (Allegretto non Troppo) - ArtistEdouard Lalo - AlbumThe Magic Violin - GenreClassical - KindAAC audio file - Size8890802 - Total Time366479 - Disc Number1 - Track Number13 - Track Count15 - Date Modified2006-08-08T03:05:16Z - Date Added2009-10-03T14:57:25Z - Bit Rate192 - Sample Rate44100 - Normalization876 - Compilation - Artwork Count1 - Sort AlbumMagic Violin - Persistent IDA452DD9F31377DE7 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Magic%20Violin/1-13%20Symphonie%20Espagnole%20In%20d%20Op.21_%20Intermezzo%20(Allegretto%20non%20Troppo).m4a - File Folder Count4 - Library Folder Count1 - - 4442 - - Track ID4442 - NameSymphonie Espagnole In d Op.21: Adante - ArtistEdouard Lalo - AlbumThe Magic Violin - GenreClassical - KindAAC audio file - Size9847743 - Total Time406022 - Disc Number1 - Track Number14 - Track Count15 - Date Modified2006-08-08T03:05:18Z - Date Added2009-10-03T14:57:25Z - Bit Rate192 - Sample Rate44100 - Skip Count1 - Normalization852 - Compilation - Artwork Count1 - Sort AlbumMagic Violin - Persistent ID421381DCCF9C8D0F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Magic%20Violin/1-14%20Symphonie%20Espagnole%20In%20d%20Op.21_%20Adante.m4a - File Folder Count4 - Library Folder Count1 - - 4444 - - Track ID4444 - NameSymphonie Espagnole In d Op.21: Molto Moderato e maestoso - ArtistEdouard Lalo - AlbumThe Magic Violin - GenreClassical - KindAAC audio file - Size11701185 - Total Time482602 - Disc Number1 - Track Number15 - Track Count15 - Date Modified2006-08-08T03:05:18Z - Date Added2009-10-03T14:57:25Z - Bit Rate192 - Sample Rate44100 - Skip Count1 - Normalization1246 - Compilation - Artwork Count1 - Sort AlbumMagic Violin - Persistent ID4B8FB66CED0D338F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/The%20Magic%20Violin/1-15%20Symphonie%20Espagnole%20In%20d%20Op.21_%20Molto%20Moderato%20e%20maestoso.m4a - File Folder Count4 - Library Folder Count1 - - 4762 - - Track ID4762 - NamePo' Lazarus - ArtistJames Carter & The Prisoners - ComposerTraditional, arr. by Alan Lomax - AlbumO Brother, Where Art Thou? - GenreSoundtrack - KindAAC audio file - Size6548776 - Total Time270812 - Disc Number1 - Disc Count1 - Track Number1 - Track Count19 - Year1959 - Date Modified2006-08-13T06:34:22Z - Date Added2009-10-03T14:57:49Z - Bit Rate192 - Sample Rate44100 - Skip Count1 - Normalization1381 - Compilation - Artwork Count1 - Persistent ID2A579B25D6C79EF3 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/O%20Brother,%20Where%20Art%20Thou_/01%20Po'%20Lazarus.m4a - File Folder Count4 - Library Folder Count1 - - 4764 - - Track ID4764 - NameBig Rock Candy Mountain - ArtistHarry McClintock - ComposerHarry McClintock - AlbumO Brother, Where Art Thou? - GenreSoundtrack - KindAAC audio file - Size3325693 - Total Time137716 - Disc Number1 - Disc Count1 - Track Number2 - Track Count19 - Year1928 - Date Modified2006-08-13T06:34:20Z - Date Added2009-10-03T14:57:49Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3389530598 - Play Date UTC2011-05-29T10:46:38Z - Normalization1230 - Compilation - Artwork Count1 - Persistent ID3A2EBBC3A2587230 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/O%20Brother,%20Where%20Art%20Thou_/02%20Big%20Rock%20Candy%20Mountain.m4a - File Folder Count4 - Library Folder Count1 - - 4766 - - Track ID4766 - NameYou Are My Sunshine - ArtistNorman Blake - ComposerJimmie Davis, Charles Mitchell - AlbumO Brother, Where Art Thou? - GenreSoundtrack - KindAAC audio file - Size6489295 - Total Time267608 - Disc Number1 - Disc Count1 - Track Number3 - Track Count19 - Year2000 - Date Modified2006-08-13T06:34:18Z - Date Added2009-10-03T14:57:49Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3389530866 - Play Date UTC2011-05-29T10:51:06Z - Normalization1047 - Compilation - Artwork Count1 - Persistent ID5BE34E1E51309D67 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/O%20Brother,%20Where%20Art%20Thou_/03%20You%20Are%20My%20Sunshine.m4a - File Folder Count4 - Library Folder Count1 - - 4768 - - Track ID4768 - NameDown To The River To Pray - ArtistAlison Krauss - ComposerJimmie Rodgers/Traditional, arr. by Allison Krauss - AlbumO Brother, Where Art Thou? - GenreSoundtrack - KindAAC audio file - Size4279470 - Total Time175982 - Disc Number1 - Disc Count1 - Track Number4 - Track Count19 - Year2000 - Date Modified2006-08-13T06:34:14Z - Date Added2009-10-03T14:57:49Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3389531042 - Play Date UTC2011-05-29T10:54:02Z - Normalization1057 - Compilation - Artwork Count1 - Persistent IDC5808AE0985283A8 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/O%20Brother,%20Where%20Art%20Thou_/04%20Down%20To%20The%20River%20To%20Pray.m4a - File Folder Count4 - Library Folder Count1 - - 4770 - - Track ID4770 - NameI Am A Man Of Constant Sorrow - ArtistThe Soggy Bottom Boys - ComposerTraditional, arr. by Carter Stanley - AlbumO Brother, Where Art Thou? - GenreSoundtrack - KindAAC audio file - Size4616382 - Total Time190007 - Disc Number1 - Disc Count1 - Track Number5 - Track Count19 - Year2000 - Date Modified2006-08-13T06:34:12Z - Date Added2009-10-03T14:57:49Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3389531232 - Play Date UTC2011-05-29T10:57:12Z - Normalization926 - Compilation - Artwork Count1 - Sort ArtistSoggy Bottom Boys - Persistent IDADD47F08F4641389 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/O%20Brother,%20Where%20Art%20Thou_/05%20I%20Am%20A%20Man%20Of%20Constant%20Sorrow.m4a - File Folder Count4 - Library Folder Count1 - - 4772 - - Track ID4772 - NameHard Time Killing Floor Blues - ArtistChris Thomas King - ComposerNehemiah "Skip" James - AlbumO Brother, Where Art Thou? - GenreSoundtrack - KindAAC audio file - Size3948906 - Total Time162445 - Disc Number1 - Disc Count1 - Track Number6 - Track Count19 - Year2000 - Date Modified2006-08-13T06:34:10Z - Date Added2009-10-03T14:57:49Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3389531394 - Play Date UTC2011-05-29T10:59:54Z - Normalization714 - Compilation - Artwork Count1 - Persistent IDE3BCA575052CC74F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/O%20Brother,%20Where%20Art%20Thou_/06%20Hard%20Time%20Killing%20Floor%20Blues.m4a - File Folder Count4 - Library Folder Count1 - - 4774 - - Track ID4774 - NameI Am A Man Of Constant Sorrow (Instrumental) - ArtistJohn Hartford - ComposerTraditional, arr. by Norman Blake - AlbumO Brother, Where Art Thou? - GenreSoundtrack - KindAAC audio file - Size6532582 - Total Time269419 - Disc Number1 - Disc Count1 - Track Number7 - Track Count19 - Year2000 - Date Modified2006-08-13T06:34:08Z - Date Added2009-10-03T14:57:50Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3389531664 - Play Date UTC2011-05-29T11:04:24Z - Normalization493 - Compilation - Artwork Count1 - Persistent ID4AE883903F89BCDD - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/O%20Brother,%20Where%20Art%20Thou_/07%20I%20Am%20A%20Man%20Of%20Constant%20Sorrow%20(Instrumental).m4a - File Folder Count4 - Library Folder Count1 - - 4776 - - Track ID4776 - NameKeep On The Sunny Side - ArtistThe Whites - ComposerA.P. Carter - AlbumO Brother, Where Art Thou? - GenreSoundtrack - KindAAC audio file - Size5200282 - Total Time214318 - Disc Number1 - Disc Count1 - Track Number8 - Track Count19 - Year2000 - Date Modified2006-08-13T06:34:06Z - Date Added2009-10-03T14:57:50Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3427382124 - Play Date UTC2012-08-09T13:05:24Z - Normalization908 - Compilation - Artwork Count1 - Sort ArtistWhites - Persistent ID8106C0A07415D208 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/O%20Brother,%20Where%20Art%20Thou_/08%20Keep%20On%20The%20Sunny%20Side.m4a - File Folder Count4 - Library Folder Count1 - - 4778 - - Track ID4778 - NameI'll Fly Away - ArtistAlison Krauss & Gillian Welch - ComposerAlbert E. Brumley - AlbumO Brother, Where Art Thou? - GenreSoundtrack - KindAAC audio file - Size5773826 - Total Time237886 - Disc Number1 - Disc Count1 - Track Number9 - Track Count19 - Year2000 - Date Modified2006-08-13T06:34:04Z - Date Added2009-10-03T14:57:50Z - Bit Rate192 - Sample Rate44100 - Normalization1056 - Compilation - Artwork Count1 - Persistent IDC9D278ACE1006EAE - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/O%20Brother,%20Where%20Art%20Thou_/09%20I'll%20Fly%20Away.m4a - File Folder Count4 - Library Folder Count1 - - 4780 - - Track ID4780 - NameDidn't Leave Nobody But The Baby - ArtistEmmylou Harris, Alison Krauss & Gillian Welch - ComposerTraditional, arr. by Alan Lomax, Mrs. Sidney Carter, Gillian Welch, and T Bone Burnett - AlbumO Brother, Where Art Thou? - GenreSoundtrack - KindAAC audio file - Size2882366 - Total Time117816 - Disc Number1 - Disc Count1 - Track Number10 - Track Count19 - Year2000 - Date Modified2006-08-13T06:34:02Z - Date Added2009-10-03T14:57:50Z - Bit Rate192 - Sample Rate44100 - Normalization616 - Compilation - Artwork Count1 - Persistent ID50CE2D60589CB100 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/O%20Brother,%20Where%20Art%20Thou_/10%20Didn't%20Leave%20Nobody%20But%20The%20Baby.m4a - File Folder Count4 - Library Folder Count1 - - 4782 - - Track ID4782 - NameIn the Highways - ArtistThe Peasall Sisters - ComposerMaybelle Carter - AlbumO Brother, Where Art Thou? - GenreSoundtrack - KindAAC audio file - Size2362155 - Total Time96152 - Disc Number1 - Disc Count1 - Track Number11 - Track Count19 - Year2000 - Date Modified2006-08-13T06:34:00Z - Date Added2009-10-03T14:57:50Z - Bit Rate192 - Sample Rate44100 - Normalization1332 - Compilation - Artwork Count1 - Sort ArtistPeasall Sisters - Persistent ID6BC700F7B255FFEA - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/O%20Brother,%20Where%20Art%20Thou_/11%20In%20the%20Highways.m4a - File Folder Count4 - Library Folder Count1 - - 4784 - - Track ID4784 - NameI Am Weary (Let Me Rest) - ArtistThe Cox Family - ComposerPete Roberts - AlbumO Brother, Where Art Thou? - GenreSoundtrack - KindAAC audio file - Size4718664 - Total Time194279 - Disc Number1 - Disc Count1 - Track Number12 - Track Count19 - Year2000 - Date Modified2006-08-13T06:33:58Z - Date Added2009-10-03T14:57:50Z - Bit Rate192 - Sample Rate44100 - Normalization713 - Compilation - Artwork Count1 - Sort ArtistCox Family - Persistent IDE065E4AC855E7469 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/O%20Brother,%20Where%20Art%20Thou_/12%20I%20Am%20Weary%20(Let%20Me%20Rest).m4a - File Folder Count4 - Library Folder Count1 - - 4786 - - Track ID4786 - NameI Am A Man Of Constant Sorrow (Instrumental) - ArtistJohn Hartford - ComposerTraditional, arr. by Ed Haley - AlbumO Brother, Where Art Thou? - GenreSoundtrack - KindAAC audio file - Size3755075 - Total Time154155 - Disc Number1 - Disc Count1 - Track Number13 - Track Count19 - Year2000 - Date Modified2006-08-13T06:33:56Z - Date Added2009-10-03T14:57:50Z - Bit Rate192 - Sample Rate44100 - Normalization187 - Compilation - Artwork Count1 - Persistent IDF6F1AAECA97CA1CB - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/O%20Brother,%20Where%20Art%20Thou_/13%20I%20Am%20A%20Man%20Of%20Constant%20Sorrow%20(Instrumental).m4a - File Folder Count4 - Library Folder Count1 - - 4788 - - Track ID4788 - NameO Death - ArtistRalph Stanley - ComposerTraditional, arr. by Ralph Stanley - AlbumO Brother, Where Art Thou? - GenreSoundtrack - KindAAC audio file - Size4847041 - Total Time199620 - Disc Number1 - Disc Count1 - Track Number14 - Track Count19 - Year2000 - Date Modified2006-08-13T06:33:54Z - Date Added2009-10-03T14:57:50Z - Bit Rate192 - Sample Rate44100 - Normalization587 - Compilation - Artwork Count1 - Persistent ID2CB73AE3DA730052 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/O%20Brother,%20Where%20Art%20Thou_/14%20O%20Death.m4a - File Folder Count4 - Library Folder Count1 - - 4790 - - Track ID4790 - NameIn The Jailhouse Now - ArtistThe Soggy Bottom Boys - ComposerJimmie Rodgers - AlbumO Brother, Where Art Thou? - GenreSoundtrack - KindAAC audio file - Size5243089 - Total Time216106 - Disc Number1 - Disc Count1 - Track Number15 - Track Count19 - Year2000 - Date Modified2006-08-13T06:33:52Z - Date Added2009-10-03T14:57:50Z - Bit Rate192 - Sample Rate44100 - Normalization1184 - Compilation - Artwork Count1 - Sort ArtistSoggy Bottom Boys - Persistent ID88F629F468389C54 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/O%20Brother,%20Where%20Art%20Thou_/15%20In%20The%20Jailhouse%20Now.m4a - File Folder Count4 - Library Folder Count1 - - 4792 - - Track ID4792 - NameI Am A Man Of Constant Sorrow - ArtistThe Soggy Bottom Boys - ComposerTraditional, arr. by Carter Stanley - AlbumO Brother, Where Art Thou? - GenreSoundtrack - KindAAC audio file - Size6232749 - Total Time256973 - Disc Number1 - Disc Count1 - Track Number16 - Track Count19 - Year2000 - Date Modified2006-08-13T06:33:50Z - Date Added2009-10-03T14:57:51Z - Bit Rate192 - Sample Rate44100 - Normalization1301 - Compilation - Artwork Count1 - Sort ArtistSoggy Bottom Boys - Persistent ID9C7AB944E53F3315 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/O%20Brother,%20Where%20Art%20Thou_/16%20I%20Am%20A%20Man%20Of%20Constant%20Sorrow.m4a - File Folder Count4 - Library Folder Count1 - - 4794 - - Track ID4794 - NameIndian War Whoop - ArtistJohn Hartford - ComposerHoyt Ming - AlbumO Brother, Where Art Thou? - GenreSoundtrack - KindAAC audio file - Size2224980 - Total Time90440 - Disc Number1 - Disc Count1 - Track Number17 - Track Count19 - Year2000 - Date Modified2006-08-13T06:33:48Z - Date Added2009-10-03T14:57:51Z - Bit Rate192 - Sample Rate44100 - Normalization1244 - Compilation - Artwork Count1 - Persistent ID7AC66E5A2188ECCD - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/O%20Brother,%20Where%20Art%20Thou_/17%20Indian%20War%20Whoop.m4a - File Folder Count4 - Library Folder Count1 - - 4796 - - Track ID4796 - NameLonesome Valley - ArtistThe Fairfield Four - ComposerTraditional, arr. by the Fairfield Four - AlbumO Brother, Where Art Thou? - GenreSoundtrack - KindAAC audio file - Size5997485 - Total Time247174 - Disc Number1 - Disc Count1 - Track Number18 - Track Count19 - Year2000 - Date Modified2006-08-13T06:33:46Z - Date Added2009-10-03T14:57:51Z - Bit Rate192 - Sample Rate44100 - Normalization1387 - Compilation - Artwork Count1 - Sort ArtistFairfield Four - Persistent IDD0DA1542F8DA4951 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/O%20Brother,%20Where%20Art%20Thou_/18%20Lonesome%20Valley.m4a - File Folder Count4 - Library Folder Count1 - - 4798 - - Track ID4798 - NameAngel Band - ArtistThe Stanley Brothers - ComposerTraditional, arr. by Ralph Stanley - AlbumO Brother, Where Art Thou? - GenreSoundtrack - KindAAC audio file - Size3312765 - Total Time135835 - Disc Number1 - Disc Count1 - Track Number19 - Track Count19 - Year1955 - Date Modified2006-08-13T06:33:44Z - Date Added2009-10-03T14:57:51Z - Bit Rate192 - Sample Rate44100 - Normalization723 - Compilation - Artwork Count1 - Sort ArtistStanley Brothers - Persistent ID7820EFED4F6C2F43 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/O%20Brother,%20Where%20Art%20Thou_/19%20Angel%20Band.m4a - File Folder Count4 - Library Folder Count1 - - 5210 - - Track ID5210 - NameThe English Patient - ArtistGabriel Yared - Academy Of St. Martin In The Fields - ComposerGabriel Yared - AlbumEnglish Patient - GenreClassical - KindAAC audio file - Size5266976 - Total Time217314 - Disc Number1 - Disc Count1 - Track Number1 - Track Count28 - Year1996 - Date Modified2006-07-31T04:23:32Z - Date Added2009-10-03T14:58:24Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3389529334 - Play Date UTC2011-05-29T10:25:34Z - Normalization618 - Compilation - Artwork Count1 - Sort NameEnglish Patient - Persistent ID4C3E47F1A0C5165E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/01%20The%20English%20Patient.m4a - File Folder Count4 - Library Folder Count1 - - 5212 - - Track ID5212 - NameA Retreat - ArtistGabriel Yared - Academy Of St. Martin In The Fields - ComposerGabriel Yared - AlbumEnglish Patient - GenreClassical - KindAAC audio file - Size2123996 - Total Time86260 - Disc Number1 - Disc Count1 - Track Number2 - Track Count28 - Year1996 - Date Modified2006-07-31T04:23:32Z - Date Added2009-10-03T14:58:24Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3389529420 - Play Date UTC2011-05-29T10:27:00Z - Normalization428 - Compilation - Artwork Count1 - Sort NameRetreat - Persistent IDCBC8F819CFC4C526 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/02%20A%20Retreat.m4a - File Folder Count4 - Library Folder Count1 - - 5214 - - Track ID5214 - NameRupert Bear - ArtistGabriel Yared - Academy Of St. Martin In The Fields - ComposerGabriel Yared - AlbumEnglish Patient - GenreClassical - KindAAC audio file - Size2138327 - Total Time87003 - Disc Number1 - Disc Count1 - Track Number3 - Track Count28 - Year1996 - Date Modified2006-07-31T04:23:32Z - Date Added2009-10-03T14:58:24Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3389529507 - Play Date UTC2011-05-29T10:28:27Z - Normalization814 - Compilation - Artwork Count1 - Persistent IDD238E33657334788 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/03%20Rupert%20Bear.m4a - File Folder Count4 - Library Folder Count1 - - 5216 - - Track ID5216 - NameWhat Else Do You Love - ArtistGabriel Yared - Academy Of St. Martin In The Fields - ComposerGabriel Yared - AlbumEnglish Patient - GenreClassical - KindAAC audio file - Size1634656 - Total Time65873 - Disc Number1 - Disc Count1 - Track Number4 - Track Count28 - Year1996 - Date Modified2006-07-31T04:23:32Z - Date Added2009-10-03T14:58:24Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3389529573 - Play Date UTC2011-05-29T10:29:33Z - Normalization352 - Compilation - Artwork Count1 - Persistent ID612A7D10F498BAED - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/04%20What%20Else%20Do%20You%20Love.m4a - File Folder Count4 - Library Folder Count1 - - 5218 - - Track ID5218 - NameWhy Picton? - ArtistGabriel Yared - Academy Of St. Martin In The Fields - ComposerGabriel Yared - AlbumEnglish Patient - GenreClassical - KindAAC audio file - Size1711740 - Total Time69077 - Disc Number1 - Disc Count1 - Track Number5 - Track Count28 - Year1996 - Date Modified2006-07-31T04:23:32Z - Date Added2009-10-03T14:58:24Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3389529642 - Play Date UTC2011-05-29T10:30:42Z - Normalization508 - Compilation - Artwork Count1 - Persistent IDF155ECF082404F21 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/05%20Why%20Picton_.m4a - File Folder Count4 - Library Folder Count1 - - 5220 - - Track ID5220 - NameCheek To Cheek - ArtistFred Astaire - ComposerGabriel Yared - AlbumEnglish Patient - GenreClassical - KindAAC audio file - Size4765385 - Total Time200340 - Disc Number1 - Disc Count1 - Track Number6 - Track Count28 - Year1996 - Date Modified2006-07-31T04:23:32Z - Date Added2009-10-03T14:58:24Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3389529842 - Play Date UTC2011-05-29T10:34:02Z - Normalization1257 - Compilation - Artwork Count1 - Persistent ID794315A154A1C873 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/06%20Cheek%20To%20Cheek.m4a - File Folder Count4 - Library Folder Count1 - - 5222 - - Track ID5222 - NameKip's Lights - ArtistGabriel Yared - Academy Of St. Martin In The Fields - ComposerGabriel Yared - AlbumEnglish Patient - GenreClassical - KindAAC audio file - Size2180241 - Total Time89743 - Disc Number1 - Disc Count1 - Track Number7 - Track Count28 - Year1996 - Date Modified2006-07-31T04:23:32Z - Date Added2009-10-03T14:58:25Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3389529932 - Play Date UTC2011-05-29T10:35:32Z - Normalization1229 - Compilation - Artwork Count1 - Persistent IDF7C7AD26AFB41DE7 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/07%20Kip's%20Lights.m4a - File Folder Count4 - Library Folder Count1 - - 5224 - - Track ID5224 - NameHana's Curse - ArtistGabriel Yared - Academy Of St. Martin In The Fields - ComposerGabriel Yared - AlbumEnglish Patient - GenreClassical - KindAAC audio file - Size3205805 - Total Time131400 - Disc Number1 - Disc Count1 - Track Number8 - Track Count28 - Year1996 - Date Modified2006-07-31T04:23:32Z - Date Added2009-10-03T14:58:25Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3389530063 - Play Date UTC2011-05-29T10:37:43Z - Normalization931 - Compilation - Artwork Count1 - Persistent IDC7027955CB3530DE - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/08%20Hana's%20Curse.m4a - File Folder Count4 - Library Folder Count1 - - 5226 - - Track ID5226 - NameI'll Always Go Back To That Church - ArtistGabriel Yared - Academy Of St. Martin In The Fields - ComposerGabriel Yared - AlbumEnglish Patient - GenreClassical - KindAAC audio file - Size2786931 - Total Time113845 - Disc Number1 - Disc Count1 - Track Number9 - Track Count28 - Year1996 - Date Modified2006-07-31T04:23:32Z - Date Added2009-10-03T14:58:25Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3389530177 - Play Date UTC2011-05-29T10:39:37Z - Normalization661 - Compilation - Artwork Count1 - Persistent IDDBF0FA5525F7D7E8 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/09%20I'll%20Always%20Go%20Back%20To%20That%20Church.m4a - File Folder Count4 - Library Folder Count1 - - 5228 - - Track ID5228 - NameBlack Nights - ArtistGabriel Yared - Academy Of St. Martin In The Fields - ComposerGabriel Yared - AlbumEnglish Patient - GenreClassical - KindAAC audio file - Size2854485 - Total Time117143 - Disc Number1 - Disc Count1 - Track Number10 - Track Count28 - Year1996 - Date Modified2006-07-31T04:23:32Z - Date Added2009-10-03T14:58:25Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3365788107 - Play Date UTC2010-08-27T15:38:27Z - Normalization228 - Compilation - Artwork Count1 - Persistent IDE311869DEA108BC7 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/10%20Black%20Nights.m4a - File Folder Count4 - Library Folder Count1 - - 5230 - - Track ID5230 - NameSwoon, I'll Catch You - ArtistGabriel Yared - Academy Of St. Martin In The Fields - ComposerGabriel Yared - AlbumEnglish Patient - GenreClassical - KindAAC audio file - Size2755646 - Total Time112615 - Disc Number1 - Disc Count1 - Track Number11 - Track Count28 - Year1996 - Date Modified2006-07-31T04:23:32Z - Date Added2009-10-03T14:58:25Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3365788220 - Play Date UTC2010-08-27T15:40:20Z - Normalization1155 - Compilation - Artwork Count1 - Persistent ID3F7D26A37BA7AE71 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/11%20Swoon,%20I'll%20Catch%20You.m4a - File Folder Count4 - Library Folder Count1 - - 5232 - - Track ID5232 - NameAm I K. In Your Book? - ArtistGabriel Yared - Academy Of St. Martin In The Fields - ComposerGabriel Yared - AlbumEnglish Patient - GenreClassical - KindAAC audio file - Size1494150 - Total Time60022 - Disc Number1 - Disc Count1 - Track Number12 - Track Count28 - Year1996 - Date Modified2006-07-31T04:23:32Z - Date Added2009-10-03T14:58:25Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3365788280 - Play Date UTC2010-08-27T15:41:20Z - Normalization879 - Compilation - Artwork Count1 - Persistent ID8D1123CEE630D75C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/12%20Am%20I%20K.%20In%20Your%20Book_.m4a - File Folder Count4 - Library Folder Count1 - - 5234 - - Track ID5234 - NameLet Me Come In - ArtistGabriel Yared - Academy Of St. Martin In The Fields - ComposerGabriel Yared - AlbumEnglish Patient - GenreClassical - KindAAC audio file - Size3914110 - Total Time160773 - Disc Number1 - Disc Count1 - Track Number13 - Track Count28 - Year1996 - Date Modified2006-07-31T04:23:32Z - Date Added2009-10-03T14:58:25Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3365788440 - Play Date UTC2010-08-27T15:44:00Z - Normalization894 - Compilation - Artwork Count1 - Persistent IDB68303DCE85979FC - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/13%20Let%20Me%20Come%20In.m4a - File Folder Count4 - Library Folder Count1 - - 5236 - - Track ID5236 - NameWang Wang Blues - ArtistBenny Goodman - ComposerGabriel Yared - AlbumEnglish Patient - GenreClassical - KindAAC audio file - Size4098473 - Total Time173149 - Disc Number1 - Disc Count1 - Track Number14 - Track Count28 - Year1996 - Date Modified2006-07-31T04:23:32Z - Date Added2009-10-03T14:58:26Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3365788614 - Play Date UTC2010-08-27T15:46:54Z - Normalization1376 - Compilation - Artwork Count1 - Persistent IDE8B633ECCB4C2C39 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/14%20Wang%20Wang%20Blues.m4a - File Folder Count4 - Library Folder Count1 - - 5238 - - Track ID5238 - NameConvento Di Santa'Anna - ArtistGabriel Yared - Academy Of St. Martin In The Fields - ComposerGabriel Yared - AlbumEnglish Patient - GenreClassical - KindAAC audio file - Size13293694 - Total Time552215 - Disc Number1 - Disc Count1 - Track Number15 - Track Count28 - Year1996 - Date Modified2006-07-31T04:23:32Z - Date Added2009-10-03T14:58:26Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3365789166 - Play Date UTC2010-08-27T15:56:06Z - Normalization667 - Compilation - Artwork Count1 - Persistent ID34FA5586386FFB5F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/15%20Convento%20Di%20Santa'Anna.m4a - File Folder Count4 - Library Folder Count1 - - 5240 - - Track ID5240 - NameHerodotus - ArtistGabriel Yared - Academy Of St. Martin In The Fields - ComposerGabriel Yared - AlbumEnglish Patient - GenreClassical - KindAAC audio file - Size1666678 - Total Time71841 - Disc Number1 - Disc Count1 - Track Number16 - Track Count28 - Year1996 - Date Modified2006-07-31T04:23:32Z - Date Added2009-10-03T14:58:26Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3365789238 - Play Date UTC2010-08-27T15:57:18Z - Normalization1252 - Compilation - Artwork Count1 - Persistent ID2B9638B71AE3A7D6 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/16%20Herodotus.m4a - File Folder Count4 - Library Folder Count1 - - 5242 - - Track ID5242 - NameMuzsikás - Szerelem, Szerelem - ArtistMárta Sebestyén - ComposerGabriel Yared - AlbumEnglish Patient - GenreClassical - KindAAC audio file - Size6675676 - Total Time276687 - Disc Number1 - Disc Count1 - Track Number17 - Track Count28 - Year1996 - Date Modified2006-07-31T04:23:32Z - Date Added2009-10-03T14:58:26Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3365789514 - Play Date UTC2010-08-27T16:01:54Z - Normalization357 - Compilation - Artwork Count1 - Persistent IDD444698E2D389B95 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/17%20Muzsika%CC%81s%20-%20Szerelem,%20Szerelem.m4a - File Folder Count4 - Library Folder Count1 - - 5244 - - Track ID5244 - NameAsk Your Saint Who He's Killed - ArtistGabriel Yared - Academy Of St. Martin In The Fields - ComposerGabriel Yared - AlbumEnglish Patient - GenreClassical - KindAAC audio file - Size1731001 - Total Time69937 - Disc Number1 - Disc Count1 - Track Number18 - Track Count28 - Year1996 - Date Modified2006-07-31T04:23:32Z - Date Added2009-10-03T14:58:26Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3365789584 - Play Date UTC2010-08-27T16:03:04Z - Normalization179 - Compilation - Artwork Count1 - Persistent IDF92B7C707BEC44FA - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/18%20Ask%20Your%20Saint%20Who%20He's%20Killed.m4a - File Folder Count4 - Library Folder Count1 - - 5246 - - Track ID5246 - NameOne O'Clock Jump - ArtistBenny Goodman - ComposerGabriel Yared - AlbumEnglish Patient - GenreClassical - KindAAC audio file - Size4676267 - Total Time195951 - Disc Number1 - Disc Count1 - Track Number19 - Track Count28 - Year1996 - Date Modified2006-07-31T04:23:32Z - Date Added2009-10-03T14:58:26Z - Bit Rate192 - Sample Rate44100 - Normalization1031 - Compilation - Artwork Count1 - Persistent ID8DA2BEE53500D989 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/19%20One%20O'Clock%20Jump.m4a - File Folder Count4 - Library Folder Count1 - - 5248 - - Track ID5248 - NameI'll Be Back - ArtistGabriel Yared - Academy Of St. Martin In The Fields - ComposerGabriel Yared - AlbumEnglish Patient - GenreClassical - KindAAC audio file - Size5902990 - Total Time243320 - Disc Number1 - Disc Count1 - Track Number20 - Track Count28 - Year1996 - Date Modified2006-07-31T04:23:32Z - Date Added2009-10-03T14:58:26Z - Bit Rate192 - Sample Rate44100 - Normalization737 - Compilation - Artwork Count1 - Persistent ID255C447E4BD63D45 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/20%20I'll%20Be%20Back.m4a - File Folder Count4 - Library Folder Count1 - - 5250 - - Track ID5250 - NameLet Me Tell You About Winds - ArtistGabriel Yared - Academy Of St. Martin In The Fields - ComposerGabriel Yared - AlbumEnglish Patient - GenreClassical - KindAAC audio file - Size1505975 - Total Time60509 - Disc Number1 - Disc Count1 - Track Number21 - Track Count28 - Year1996 - Date Modified2006-07-31T04:23:32Z - Date Added2009-10-03T14:58:26Z - Bit Rate192 - Sample Rate44100 - Normalization1157 - Compilation - Artwork Count1 - Persistent ID91C3289A54BBB5B6 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/21%20Let%20Me%20Tell%20You%20About%20Winds.m4a - File Folder Count4 - Library Folder Count1 - - 5252 - - Track ID5252 - NameRead Me To Sleep - ArtistGabriel Yared - Academy Of St. Martin In The Fields - ComposerGabriel Yared - AlbumEnglish Patient - GenreClassical - KindAAC audio file - Size7279616 - Total Time301857 - Disc Number1 - Disc Count1 - Track Number22 - Track Count28 - Year1996 - Date Modified2006-07-31T04:23:32Z - Date Added2009-10-03T14:58:26Z - Bit Rate192 - Sample Rate44100 - Normalization1074 - Compilation - Artwork Count1 - Persistent ID1BAF64E178E3ECE3 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/22%20Read%20Me%20To%20Sleep.m4a - File Folder Count4 - Library Folder Count1 - - 5254 - - Track ID5254 - NameThe Cave Of Swimmers - ArtistGabriel Yared - Academy Of St. Martin In The Fields - ComposerGabriel Yared - AlbumEnglish Patient - GenreClassical - KindAAC audio file - Size2947567 - Total Time120533 - Disc Number1 - Disc Count1 - Track Number23 - Track Count28 - Year1996 - Date Modified2006-07-31T04:23:32Z - Date Added2009-10-03T14:58:27Z - Bit Rate192 - Sample Rate44100 - Normalization1088 - Compilation - Artwork Count1 - Sort NameCave Of Swimmers - Persistent ID7B2A38C4EB28FC27 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/23%20The%20Cave%20Of%20Swimmers.m4a - File Folder Count4 - Library Folder Count1 - - 5256 - - Track ID5256 - NameWhere Or When - ArtistShepheard's Hotel Jazz Orchestra - ComposerGabriel Yared - AlbumEnglish Patient - GenreClassical - KindAAC audio file - Size3299982 - Total Time139016 - Disc Number1 - Disc Count1 - Track Number24 - Track Count28 - Year1996 - Date Modified2006-07-31T04:23:32Z - Date Added2009-10-03T14:58:27Z - Bit Rate192 - Sample Rate44100 - Normalization1084 - Compilation - Artwork Count1 - Persistent ID7738C27FE9F7E9F1 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/24%20Where%20Or%20When.m4a - File Folder Count4 - Library Folder Count1 - - 5258 - - Track ID5258 - NameAria From The Goldberg Variations - ArtistJulie Steinberg - ComposerGabriel Yared - AlbumEnglish Patient - GenreClassical - KindAAC audio file - Size4418855 - Total Time184481 - Disc Number1 - Disc Count1 - Track Number25 - Track Count28 - Year1996 - Date Modified2006-07-31T04:23:32Z - Date Added2009-10-03T14:58:27Z - Bit Rate192 - Sample Rate44100 - Normalization290 - Compilation - Artwork Count1 - Persistent ID3092478A17DB6C29 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/25%20Aria%20From%20The%20Goldberg%20Variations.m4a - File Folder Count4 - Library Folder Count1 - - 5260 - - Track ID5260 - NameCheek To Cheek - ArtistElla Fitzgerald - ComposerGabriel Yared - AlbumEnglish Patient - GenreClassical - KindAAC audio file - Size5439860 - Total Time227089 - Disc Number1 - Disc Count1 - Track Number26 - Track Count28 - Year1996 - Date Modified2006-07-31T04:23:32Z - Date Added2009-10-03T14:58:27Z - Bit Rate192 - Sample Rate44100 - Normalization1400 - Compilation - Artwork Count1 - Persistent ID6C75078951819EAB - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/26%20Cheek%20To%20Cheek.m4a - File Folder Count4 - Library Folder Count1 - - 5262 - - Track ID5262 - NameAs Far As Florence - ArtistGabriel Yared - Academy Of St. Martin In The Fields - ComposerGabriel Yared - AlbumEnglish Patient - GenreClassical - KindAAC audio file - Size7569637 - Total Time312306 - Disc Number1 - Disc Count1 - Track Number27 - Track Count28 - Year1996 - Date Modified2006-07-31T04:23:34Z - Date Added2009-10-03T14:58:27Z - Bit Rate192 - Sample Rate44100 - Normalization890 - Compilation - Artwork Count1 - Persistent IDD90D9CEA48CD95DD - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/27%20As%20Far%20As%20Florence.m4a - File Folder Count4 - Library Folder Count1 - - 5264 - - Track ID5264 - NameÉn Csak AZT Csodálom (Lullaby For Katharine) - ArtistMárta Sebestyén - ComposerGabriel Yared - AlbumEnglish Patient - GenreClassical - KindAAC audio file - Size1743363 - Total Time70401 - Disc Number1 - Disc Count1 - Track Number28 - Track Count28 - Year1996 - Date Modified2006-07-31T04:23:34Z - Date Added2009-10-03T14:58:27Z - Bit Rate192 - Sample Rate44100 - Normalization74 - Compilation - Artwork Count1 - Persistent IDEC84DC92D57E6691 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/English%20Patient/28%20E%CC%81n%20Csak%20AZT%20Csoda%CC%81lom%20(Lullaby%20For%20Katharine).m4a - File Folder Count4 - Library Folder Count1 - - 48552 - - Track ID48552 - NameJesu Joy Of Man's Desiring (From Cantata BWV 147) - ArtistGabriela Montero - Album ArtistGabriela Montero - ComposerJohann Sebastian Bach - AlbumBach And Beyond - GenreClassical - KindMPEG audio file - Size7402836 - Total Time325825 - Disc Number1 - Disc Count1 - Track Number1 - Track Count15 - Year2006 - Date Modified2012-08-22T03:05:19Z - Date Added2012-08-22T03:42:45Z - Bit Rate176 - Sample Rate44100 - CommentsAmazon.com Song ID: 201980464 - Play Count2 - Play Date3428647819 - Play Date UTC2012-08-24T04:40:19Z - Artwork Count1 - Persistent IDC983F5C63DA0DF0D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Gabriela%20Montero/Bach%20And%20Beyond/01%20Jesu%20Joy%20Of%20Man's%20Desiring%20(From%20Cantata%20BWV%20147).mp3 - File Folder Count4 - Library Folder Count1 - - 48555 - - Track ID48555 - NameIII. Presto from Italian Concerto, BWV 971 - ArtistGabriela Montero - Album ArtistGabriela Montero - ComposerJohann Sebastian Bach - AlbumBach And Beyond - GenreClassical - KindMPEG audio file - Size4163551 - Total Time153965 - Disc Number1 - Disc Count1 - Track Number2 - Track Count15 - Year2006 - Date Modified2012-08-22T03:01:18Z - Date Added2012-08-22T03:42:45Z - Bit Rate204 - Sample Rate44100 - CommentsAmazon.com Song ID: 201980465 - Play Count3 - Play Date3428648847 - Play Date UTC2012-08-24T04:57:27Z - Artwork Count1 - Persistent ID50D9E6311CF52AF3 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Gabriela%20Montero/Bach%20And%20Beyond/02%20III.%20Presto%20from%20Italian%20Concerto,%20BWV%20971.mp3 - File Folder Count4 - Library Folder Count1 - - 48558 - - Track ID48558 - NameBeyond Bach - ArtistGabriela Montero - Album ArtistGabriela Montero - ComposerGabriela Montero - AlbumBach And Beyond - GenreClassical - KindMPEG audio file - Size5828826 - Total Time263340 - Disc Number1 - Disc Count1 - Track Number3 - Track Count15 - Year2006 - Date Modified2012-08-22T03:07:43Z - Date Added2012-08-22T03:42:45Z - Bit Rate170 - Sample Rate44100 - CommentsAmazon.com Song ID: 201980467 - Play Count2 - Play Date3428649110 - Play Date UTC2012-08-24T05:01:50Z - Artwork Count1 - Persistent ID0ECC93C096434957 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Gabriela%20Montero/Bach%20And%20Beyond/03%20Beyond%20Bach.mp3 - File Folder Count4 - Library Folder Count1 - - 48561 - - Track ID48561 - NameAir In G (From Suite No.3 In D Major BWV 1068) - ArtistGabriela Montero - Album ArtistGabriela Montero - ComposerJohann Sebastian Bach - AlbumBach And Beyond - GenreClassical - KindMPEG audio file - Size5226938 - Total Time209319 - Disc Number1 - Disc Count1 - Track Number4 - Track Count15 - Year2006 - Date Modified2012-08-22T03:00:41Z - Date Added2012-08-22T03:42:45Z - Bit Rate191 - Sample Rate44100 - CommentsAmazon.com Song ID: 201980469 - Play Count3 - Play Date3428649319 - Play Date UTC2012-08-24T05:05:19Z - Artwork Count1 - Persistent IDA036490FCFCA56A4 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Gabriela%20Montero/Bach%20And%20Beyond/04%20Air%20In%20G%20(From%20Suite%20No.3%20In%20D%20Major%20BWV%201068).mp3 - File Folder Count4 - Library Folder Count1 - - 48564 - - Track ID48564 - NameAria (From Goldberg Variations BWV 988) - ArtistGabriela Montero - Album ArtistGabriela Montero - ComposerJohann Sebastian Bach - AlbumBach And Beyond - GenreClassical - KindMPEG audio file - Size10492858 - Total Time456881 - Disc Number1 - Disc Count1 - Track Number5 - Track Count15 - Year2006 - Date Modified2012-08-22T03:02:49Z - Date Added2012-08-22T03:42:45Z - Bit Rate179 - Sample Rate44100 - CommentsAmazon.com Song ID: 201980471 - Play Count2 - Play Date3428475058 - Play Date UTC2012-08-22T04:40:58Z - Artwork Count1 - Persistent ID8644264C64F177E1 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Gabriela%20Montero/Bach%20And%20Beyond/05%20Aria%20(From%20Goldberg%20Variations%20BWV%20988).mp3 - File Folder Count4 - Library Folder Count1 - - 48567 - - Track ID48567 - NameViolin Concerto In E (Movement 2 - Adagio BWV 1042) - ArtistGabriela Montero - Album ArtistGabriela Montero - ComposerJohann Sebastian Bach - AlbumBach And Beyond - GenreClassical - KindMPEG audio file - Size6514581 - Total Time301453 - Disc Number1 - Disc Count1 - Track Number6 - Track Count15 - Year2006 - Date Modified2012-08-22T03:00:14Z - Date Added2012-08-22T03:42:45Z - Bit Rate167 - Sample Rate44100 - CommentsAmazon.com Song ID: 201980473 - Play Count2 - Play Date3428475360 - Play Date UTC2012-08-22T04:46:00Z - Artwork Count1 - Persistent IDEF322FC58B0EC8D5 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Gabriela%20Montero/Bach%20And%20Beyond/06%20Violin%20Concerto%20In%20E%20(Movement%202%20-%20Adagio%20BWV%201042).mp3 - File Folder Count4 - Library Folder Count1 - - 48570 - - Track ID48570 - NamePrelude In C (From The Well Tempered Clavier BWV 846) - ArtistGabriela Montero - Album ArtistGabriela Montero - ComposerJohann Sebastian Bach - AlbumBach And Beyond - GenreClassical - KindMPEG audio file - Size6069986 - Total Time258272 - Disc Number1 - Disc Count1 - Track Number7 - Track Count15 - Year2006 - Date Modified2012-08-22T03:03:53Z - Date Added2012-08-22T03:42:45Z - Bit Rate181 - Sample Rate44100 - CommentsAmazon.com Song ID: 201980477 - Play Count1 - Play Date3428475618 - Play Date UTC2012-08-22T04:50:18Z - Artwork Count1 - Persistent ID1ACEEA74808C6B52 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Gabriela%20Montero/Bach%20And%20Beyond/07%20Prelude%20In%20C%20(From%20The%20Well%20Tempered%20Clavier%20BWV%20846).mp3 - File Folder Count4 - Library Folder Count1 - - 48573 - - Track ID48573 - NameSheep May Safely Graze (From Cantata BWV 208) - ArtistGabriela Montero - Album ArtistGabriela Montero - ComposerJohann Sebastian Bach - AlbumBach And Beyond - GenreClassical - KindMPEG audio file - Size5136949 - Total Time226142 - Disc Number1 - Disc Count1 - Track Number8 - Track Count15 - Year2006 - Date Modified2012-08-22T03:07:12Z - Date Added2012-08-22T03:42:45Z - Bit Rate173 - Sample Rate44100 - CommentsAmazon.com Song ID: 201980481 - Play Count1 - Play Date3428475844 - Play Date UTC2012-08-22T04:54:04Z - Artwork Count1 - Persistent ID481E3F843B0C8352 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Gabriela%20Montero/Bach%20And%20Beyond/08%20Sheep%20May%20Safely%20Graze%20(From%20Cantata%20BWV%20208).mp3 - File Folder Count4 - Library Folder Count1 - - 48576 - - Track ID48576 - Name2 Part Invention In D Minor (No.4 BWV 775) - ArtistGabriela Montero - Album ArtistGabriela Montero - ComposerJohann Sebastian Bach - AlbumBach And Beyond - GenreClassical - KindMPEG audio file - Size4098241 - Total Time160130 - Disc Number1 - Disc Count1 - Track Number9 - Track Count15 - Year2006 - Date Modified2012-08-22T03:08:18Z - Date Added2012-08-22T03:42:45Z - Bit Rate193 - Sample Rate44100 - CommentsAmazon.com Song ID: 201980483 - Play Count1 - Play Date3428476001 - Play Date UTC2012-08-22T04:56:41Z - Artwork Count1 - Persistent IDECDBCFB9F645FB56 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Gabriela%20Montero/Bach%20And%20Beyond/09%202%20Part%20Invention%20In%20D%20Minor%20(No.4%20BWV%20775).mp3 - File Folder Count4 - Library Folder Count1 - - 48579 - - Track ID48579 - NameBrandenburg Concerto No.3 (Movement 3 - Allegro BWV 1048) - ArtistGabriela Montero - Album ArtistGabriela Montero - ComposerJohann Sebastian Bach - AlbumBach And Beyond - GenreClassical - KindMPEG audio file - Size9347111 - Total Time363363 - Disc Number1 - Disc Count1 - Track Number10 - Track Count15 - Year2006 - Date Modified2012-08-22T02:59:35Z - Date Added2012-08-22T03:42:46Z - Bit Rate200 - Sample Rate44100 - CommentsAmazon.com Song ID: 201980484 - Artwork Count1 - Persistent ID5537A92E50DD3A99 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Gabriela%20Montero/Bach%20And%20Beyond/10%20Brandenburg%20Concerto%20No.3%20(Movement%203%20-%20Allegro%20BWV%201048).mp3 - File Folder Count4 - Library Folder Count1 - - 48582 - - Track ID48582 - NameKeyboard Concerto In D Minor (Movement 2 - Adagio BWV 974) - ArtistGabriela Montero - Album ArtistGabriela Montero - ComposerJohann Sebastian Bach - AlbumBach And Beyond - GenreClassical - KindMPEG audio file - Size8361104 - Total Time383373 - Disc Number1 - Disc Count1 - Track Number11 - Track Count15 - Year2006 - Date Modified2012-08-22T03:01:58Z - Date Added2012-08-22T03:42:46Z - Bit Rate169 - Sample Rate44100 - CommentsAmazon.com Song ID: 201980486 - Artwork Count1 - Persistent IDFB1C0EEB138DE178 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Gabriela%20Montero/Bach%20And%20Beyond/11%20Keyboard%20Concerto%20In%20D%20Minor%20(Movement%202%20-%20Adagio%20BWV%20974).mp3 - File Folder Count4 - Library Folder Count1 - - 48585 - - Track ID48585 - NameToccata In D Minor (BWV 556) - ArtistGabriela Montero - Album ArtistGabriela Montero - ComposerJohann Sebastian Bach - AlbumBach And Beyond - GenreClassical - KindMPEG audio file - Size5342363 - Total Time191346 - Disc Number1 - Disc Count1 - Track Number12 - Track Count15 - Year2006 - Date Modified2012-08-22T03:11:18Z - Date Added2012-08-22T03:42:46Z - Bit Rate214 - Sample Rate44100 - CommentsAmazon.com Song ID: 201980487 - Artwork Count1 - Persistent IDF01FDBA03ACDAA0D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Gabriela%20Montero/Bach%20And%20Beyond/12%20Toccata%20In%20D%20Minor%20(BWV%20556).mp3 - File Folder Count4 - Library Folder Count1 - - 48588 - - Track ID48588 - NameSuite No.2, BWV 1067: Rondo - ArtistGabriela Montero - Album ArtistGabriela Montero - ComposerJohann Sebastian Bach - AlbumBach And Beyond - GenreClassical - KindMPEG audio file - Size6664113 - Total Time260806 - Disc Number1 - Disc Count1 - Track Number13 - Track Count15 - Year2006 - Date Modified2012-08-22T03:10:43Z - Date Added2012-08-22T03:42:46Z - Bit Rate197 - Sample Rate44100 - CommentsAmazon.com Song ID: 201980489 - Artwork Count1 - Persistent ID0347C3BD189ED8BB - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Gabriela%20Montero/Bach%20And%20Beyond/13%20Suite%20No.2,%20BWV%201067_%20Rondo.mp3 - File Folder Count4 - Library Folder Count1 - - 48591 - - Track ID48591 - NameAnna Magdalena Songbook - ArtistGabriela Montero - Album ArtistGabriela Montero - ComposerJohann Sebastian Bach - AlbumBach And Beyond - GenreClassical - KindMPEG audio file - Size6945479 - Total Time258821 - Disc Number1 - Disc Count1 - Track Number14 - Track Count15 - Year2006 - Date Modified2012-08-22T03:03:24Z - Date Added2012-08-22T03:42:46Z - Bit Rate207 - Sample Rate44100 - CommentsAmazon.com Song ID: 201980491 - Artwork Count1 - Persistent ID84700AD7E2E74F21 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Gabriela%20Montero/Bach%20And%20Beyond/14%20Anna%20Magdalena%20Songbook.mp3 - File Folder Count4 - Library Folder Count1 - - 48594 - - Track ID48594 - NameChaconne (From Violin Partita In D Minor BWV 1004) - ArtistGabriela Montero - Album ArtistGabriela Montero - ComposerJohann Sebastian Bach - AlbumBach And Beyond - GenreClassical - KindMPEG audio file - Size7958898 - Total Time297900 - Disc Number1 - Disc Count1 - Track Number15 - Track Count15 - Year2006 - Date Modified2012-08-22T03:09:46Z - Date Added2012-08-22T03:42:46Z - Bit Rate207 - Sample Rate44100 - CommentsAmazon.com Song ID: 201980493 - Artwork Count1 - Persistent IDA1841BD93A29C267 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Gabriela%20Montero/Bach%20And%20Beyond/15%20Chaconne%20(From%20Violin%20Partita%20In%20D%20Minor%20BWV%201004).mp3 - File Folder Count4 - Library Folder Count1 - - 48597 - - Track ID48597 - NameAngel - ArtistMassive Attack - Album ArtistMassive Attack - ComposerRobert Del Naja - AlbumMezzanine - GenreRap & Hip-Hop - KindMPEG audio file - Size11245978 - Total Time379324 - Disc Number1 - Disc Count1 - Track Number1 - Track Count11 - Year2006 - Date Modified2012-08-22T03:14:44Z - Date Added2012-08-22T03:42:46Z - Bit Rate233 - Sample Rate44100 - CommentsAmazon.com Song ID: 202078697 - Artwork Count1 - Persistent ID30A4D4CA7A641B2E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Massive%20Attack/Mezzanine/01%20Angel.mp3 - File Folder Count4 - Library Folder Count1 - - 48600 - - Track ID48600 - NameRisingson - ArtistMassive Attack - Album ArtistMassive Attack - ComposerRobert Del Naja - AlbumMezzanine - GenreRap & Hip-Hop - KindMPEG audio file - Size8874569 - Total Time298866 - Disc Number1 - Disc Count1 - Track Number2 - Track Count11 - Year2006 - Date Modified2012-08-22T03:29:05Z - Date Added2012-08-22T03:42:46Z - Bit Rate232 - Sample Rate44100 - CommentsAmazon.com Song ID: 202078704 - Artwork Count1 - Persistent ID55B4B7FC2D4D0D63 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Massive%20Attack/Mezzanine/02%20Risingson.mp3 - File Folder Count4 - Library Folder Count1 - - 48603 - - Track ID48603 - NameTeardrop - ArtistMassive Attack - Album ArtistMassive Attack - ComposerLiz Fraser - AlbumMezzanine - GenreRap & Hip-Hop - KindMPEG audio file - Size8732624 - Total Time330814 - Disc Number1 - Disc Count1 - Track Number3 - Track Count11 - Year2006 - Date Modified2012-08-22T03:12:13Z - Date Added2012-08-22T03:42:46Z - Bit Rate206 - Sample Rate44100 - CommentsAmazon.com Song ID: 202078712 - Play Count1 - Play Date3428648666 - Play Date UTC2012-08-24T04:54:26Z - Artwork Count1 - Persistent ID764997BE2CD075BA - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Massive%20Attack/Mezzanine/03%20Teardrop.mp3 - File Folder Count4 - Library Folder Count1 - - 48606 - - Track ID48606 - NameInertia Creeps - ArtistMassive Attack - Album ArtistMassive Attack - ComposerRobert Del Naja - AlbumMezzanine - GenreRap & Hip-Hop - KindMPEG audio file - Size10557998 - Total Time357198 - Disc Number1 - Disc Count1 - Track Number4 - Track Count11 - Year2006 - Date Modified2012-08-22T03:19:56Z - Date Added2012-08-22T03:42:46Z - Bit Rate232 - Sample Rate44100 - CommentsAmazon.com Song ID: 202078713 - Artwork Count1 - Persistent ID972A6772373A1EF3 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Massive%20Attack/Mezzanine/04%20Inertia%20Creeps.mp3 - File Folder Count4 - Library Folder Count1 - - 48609 - - Track ID48609 - NameExchange - ArtistMassive Attack - Album ArtistMassive Attack - ComposerBob Hilliard - AlbumMezzanine - GenreRap & Hip-Hop - KindMPEG audio file - Size6866927 - Total Time251245 - Disc Number1 - Disc Count1 - Track Number5 - Track Count11 - Year2006 - Date Modified2012-08-22T03:28:22Z - Date Added2012-08-22T03:42:46Z - Bit Rate213 - Sample Rate44100 - CommentsAmazon.com Song ID: 202078714 - Artwork Count1 - Persistent IDE22216B86C967A34 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Massive%20Attack/Mezzanine/05%20Exchange.mp3 - File Folder Count4 - Library Folder Count1 - - 48612 - - Track ID48612 - NameDissolved Girl - ArtistMassive Attack - Album ArtistMassive Attack - ComposerRobert Del Naja - AlbumMezzanine - GenreRap & Hip-Hop - KindMPEG audio file - Size10652102 - Total Time366942 - Disc Number1 - Disc Count1 - Track Number6 - Track Count11 - Year2006 - Date Modified2012-08-22T03:24:29Z - Date Added2012-08-22T03:42:46Z - Bit Rate228 - Sample Rate44100 - CommentsAmazon.com Song ID: 202078715 - Artwork Count1 - Persistent ID6A760C8BA60F8295 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Massive%20Attack/Mezzanine/06%20Dissolved%20Girl.mp3 - File Folder Count4 - Library Folder Count1 - - 48615 - - Track ID48615 - NameMan Next Door - ArtistMassive Attack - Album ArtistMassive Attack - ComposerTyrone Evans - AlbumMezzanine - GenreRap & Hip-Hop - KindMPEG audio file - Size8577820 - Total Time356153 - Disc Number1 - Disc Count1 - Track Number7 - Track Count11 - Year2006 - Date Modified2012-08-22T03:21:01Z - Date Added2012-08-22T03:42:46Z - Bit Rate188 - Sample Rate44100 - CommentsAmazon.com Song ID: 202078716 - Artwork Count1 - Persistent ID5749641639167638 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Massive%20Attack/Mezzanine/07%20Man%20Next%20Door.mp3 - File Folder Count4 - Library Folder Count1 - - 48618 - - Track ID48618 - NameBlack Milk - ArtistMassive Attack - Album ArtistMassive Attack - ComposerLiz Fraser - AlbumMezzanine - GenreRap & Hip-Hop - KindMPEG audio file - Size10130774 - Total Time381727 - Disc Number1 - Disc Count1 - Track Number8 - Track Count11 - Year2006 - Date Modified2012-08-22T03:16:54Z - Date Added2012-08-22T03:42:46Z - Bit Rate208 - Sample Rate44100 - CommentsAmazon.com Song ID: 202078717 - Artwork Count1 - Persistent IDD66FFE585940E534 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Massive%20Attack/Mezzanine/08%20Black%20Milk.mp3 - File Folder Count4 - Library Folder Count1 - - 48621 - - Track ID48621 - NameMezzanine - ArtistMassive Attack - Album ArtistMassive Attack - ComposerRobert Del Naja - AlbumMezzanine - GenreRap & Hip-Hop - KindMPEG audio file - Size9651552 - Total Time356858 - Disc Number1 - Disc Count1 - Track Number9 - Track Count11 - Year2006 - Date Modified2012-08-22T03:18:39Z - Date Added2012-08-22T03:42:47Z - Bit Rate212 - Sample Rate44100 - CommentsAmazon.com Song ID: 202078718 - Artwork Count1 - Persistent ID71A69D6B31CF45EB - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Massive%20Attack/Mezzanine/09%20Mezzanine.mp3 - File Folder Count4 - Library Folder Count1 - - 48624 - - Track ID48624 - NameGroup Four - ArtistMassive Attack - Album ArtistMassive Attack - ComposerLiz Fraser - AlbumMezzanine - GenreRap & Hip-Hop - KindMPEG audio file - Size14872027 - Total Time492329 - Disc Number1 - Disc Count1 - Track Number10 - Track Count11 - Year2006 - Date Modified2012-08-22T03:27:45Z - Date Added2012-08-22T03:42:47Z - Bit Rate238 - Sample Rate44100 - CommentsAmazon.com Song ID: 202078719 - Artwork Count1 - Persistent IDEDFE48644EDF754D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Massive%20Attack/Mezzanine/10%20Group%20Four.mp3 - File Folder Count4 - Library Folder Count1 - - 48627 - - Track ID48627 - Name(Exchange) - ArtistMassive Attack - Album ArtistMassive Attack - ComposerBob Hilliard - AlbumMezzanine - GenreRap & Hip-Hop - KindMPEG audio file - Size6805284 - Total Time250906 - Disc Number1 - Disc Count1 - Track Number11 - Track Count11 - Year2006 - Date Modified2012-08-22T03:21:51Z - Date Added2012-08-22T03:42:47Z - Bit Rate211 - Sample Rate44100 - CommentsAmazon.com Song ID: 202078720 - Artwork Count1 - Persistent ID233C223155861C4B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Massive%20Attack/Mezzanine/11%20(Exchange).mp3 - File Folder Count4 - Library Folder Count1 - - - Playlists - - - Namechirag-2 - Playlist ID63740 - Playlist Persistent ID82AAEC295B105FF6 - All Items - Playlist Items - - - Track ID48552 - - - Track ID48555 - - - Track ID48558 - - - Track ID48561 - - - Track ID48564 - - - Track ID48567 - - - Track ID48570 - - - Track ID48573 - - - Track ID48576 - - - Track ID48579 - - - Track ID48582 - - - Track ID48585 - - - Track ID48588 - - - Track ID48591 - - - Track ID48594 - - - Track ID48597 - - - Track ID48600 - - - Track ID48603 - - - Track ID48606 - - - Track ID48609 - - - Track ID48612 - - - Track ID48615 - - - Track ID48618 - - - Track ID48621 - - - Track ID48624 - - - Track ID48627 - - - Track ID4278 - - - Track ID4280 - - - Track ID4282 - - - Track ID4284 - - - Track ID4286 - - - Track ID4288 - - - Track ID4290 - - - Track ID4292 - - - Track ID4294 - - - Track ID4296 - - - Track ID4298 - - - Track ID4300 - - - Track ID3622 - - - Track ID3624 - - - Track ID3626 - - - Track ID3628 - - - Track ID3556 - - - Track ID3558 - - - Track ID3560 - - - Track ID3562 - - - Track ID3564 - - - Track ID3566 - - - Track ID3568 - - - Track ID3570 - - - Track ID3572 - - - Track ID3574 - - - Track ID3576 - - - Track ID3578 - - - Track ID3580 - - - Track ID3582 - - - Track ID3584 - - - Track ID2266 - - - Track ID2268 - - - Track ID2270 - - - Track ID2272 - - - Track ID2274 - - - Track ID2276 - - - Track ID2278 - - - Track ID2280 - - - Track ID2282 - - - Track ID5210 - - - Track ID5212 - - - Track ID5214 - - - Track ID5216 - - - Track ID5218 - - - Track ID5220 - - - Track ID5222 - - - Track ID5224 - - - Track ID5226 - - - Track ID5228 - - - Track ID5230 - - - Track ID5232 - - - Track ID5234 - - - Track ID5236 - - - Track ID5238 - - - Track ID5240 - - - Track ID5242 - - - Track ID5244 - - - Track ID5246 - - - Track ID5248 - - - Track ID5250 - - - Track ID5252 - - - Track ID5254 - - - Track ID5256 - - - Track ID5258 - - - Track ID5260 - - - Track ID5262 - - - Track ID5264 - - - Track ID4416 - - - Track ID4418 - - - Track ID4420 - - - Track ID4422 - - - Track ID4424 - - - Track ID4426 - - - Track ID4428 - - - Track ID4430 - - - Track ID4432 - - - Track ID4434 - - - Track ID4436 - - - Track ID4438 - - - Track ID4440 - - - Track ID4442 - - - Track ID4444 - - - Track ID4762 - - - Track ID4764 - - - Track ID4766 - - - Track ID4768 - - - Track ID4770 - - - Track ID4772 - - - Track ID4774 - - - Track ID4776 - - - Track ID4778 - - - Track ID4780 - - - Track ID4782 - - - Track ID4784 - - - Track ID4786 - - - Track ID4788 - - - Track ID4790 - - - Track ID4792 - - - Track ID4794 - - - Track ID4796 - - - Track ID4798 - - - - - - diff --git a/GeekyProjects/C1_ParsingMusicList/playlist.py b/GeekyProjects/C1_ParsingMusicList/playlist.py index 67140ce..0af25b8 100644 --- a/GeekyProjects/C1_ParsingMusicList/playlist.py +++ b/GeekyProjects/C1_ParsingMusicList/playlist.py @@ -1,4 +1,8 @@ +import re, argparse +import sys +from matplotlib import pyplot import plistlib +import numpy as np def findDuplicates(fileName): ''' Find the duplicate track in the specific file @@ -108,4 +112,4 @@ def findCommonTracks(fileNames): # findDuplicates('mymusic.xml') -findCommonTracks(['maya.xml', 'mymusic.xml']) \ No newline at end of file +findCommonTracks(['.\\test-data\maya.xml', '.\\test-data\\mymusic.xml']) \ No newline at end of file diff --git a/GeekyProjects/C1_ParsingMusicList/rating.xml b/GeekyProjects/C1_ParsingMusicList/rating.xml deleted file mode 100644 index bcddd1f..0000000 --- a/GeekyProjects/C1_ParsingMusicList/rating.xml +++ /dev/null @@ -1,4188 +0,0 @@ - - - - - Major Version1 - Minor Version1 - Date2014-06-12T14:28:58Z - Application Version11.2.2 - Features5 - Show Content Ratings - Music Folderfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/ - Library Persistent ID5E7B8CC1F12D8073 - Tracks - - 2138 - - Track ID2138 - NameTalkin' Bout A Revolution - ArtistTracy Chapman - AlbumTracy Chapman - GenreFolk - KindAAC audio file - Size3902717 - Total Time160332 - Disc Number1 - Disc Count1 - Track Number1 - Track Count11 - Year1982 - Date Modified2006-08-01T08:20:38Z - Date Added2009-10-03T14:51:38Z - Bit Rate192 - Sample Rate44100 - Play Count6 - Play Date3484294145 - Play Date UTC2014-05-30T05:59:05Z - Rating60 - Album Rating80 - Album Rating Computed - Normalization1047 - Artwork Count1 - Persistent ID623F96C1E865B876 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tracy%20Chapman/Tracy%20Chapman/01%20Talkin'%20Bout%20A%20Revolution.m4a - File Folder Count4 - Library Folder Count1 - - 2854 - - Track ID2854 - NameAirbag - ArtistRadiohead - ComposerThom Yorke, Jonny Greenwood, Phil Selway, Ed O'Brien, Colin Greenwood - AlbumOK Computer - GenreAlternative & Punk - KindAAC audio file - Size7039685 - Total Time284400 - Disc Number1 - Disc Count1 - Track Number1 - Track Count12 - Year1997 - Date Modified2008-10-09T15:52:27Z - Date Added2009-10-03T14:54:31Z - Bit Rate192 - Sample Rate44100 - Skip Count1 - Skip Date2014-05-16T15:46:06Z - Rating60 - Album Rating60 - Album Rating Computed - Normalization7105 - Artwork Count1 - Persistent IDC5CD828B38A8A7B0 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Radiohead/OK%20Computer/01%20Airbag.m4a - File Folder Count4 - Library Folder Count1 - - 2856 - - Track ID2856 - NameExit Music (For A Film) - ArtistRadiohead - ComposerThom Yorke, Jonny Greenwood, Phil Selway, Ed O'Brien, Colin Greenwood - AlbumOK Computer - GenreAlternative & Punk - KindAAC audio file - Size6462848 - Total Time264800 - Disc Number1 - Disc Count1 - Track Number4 - Track Count12 - Year1997 - Date Modified2007-09-20T19:47:28Z - Date Added2009-10-03T14:54:32Z - Bit Rate192 - Sample Rate44100 - Rating60 - Album Rating60 - Album Rating Computed - Normalization2004 - Artwork Count1 - Persistent ID257CFFF5AF9F7A59 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Radiohead/OK%20Computer/04%20Exit%20Music%20(For%20A%20Film).m4a - File Folder Count4 - Library Folder Count1 - - 2938 - - Track ID2938 - NameBohemian Rhapsody - ArtistQueen - ComposerMercury, Freddie - AlbumGreatest Hits I - GenreRock - KindAAC audio file - Size8968180 - Total Time358293 - Disc Number1 - Disc Count1 - Track Number1 - Track Count17 - Year1975 - Date Modified2008-10-01T01:25:43Z - Date Added2009-10-03T14:54:37Z - Bit Rate191 - Sample Rate44100 - Skip Count1 - Skip Date2014-06-09T15:48:38Z - Rating80 - Album Rating60 - Album Rating Computed - Normalization1202 - Artwork Count1 - Persistent ID9BAC1C9759997523 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Queen/Greatest%20Hits%20I/01%20Bohemian%20Rhapsody.m4a - File Folder Count4 - Library Folder Count1 - - 2940 - - Track ID2940 - NameAnother One Bites The Dust - ArtistQueen - ComposerDeacon, John - AlbumGreatest Hits I - GenreRock - KindAAC audio file - Size5446841 - Total Time216906 - Disc Number1 - Disc Count1 - Track Number2 - Track Count17 - Year1980 - Date Modified2008-10-01T01:25:42Z - Date Added2009-10-03T14:54:37Z - Bit Rate187 - Sample Rate44100 - Rating80 - Album Rating60 - Album Rating Computed - Normalization1202 - Artwork Count1 - Persistent ID1819FA315B9C3F13 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Queen/Greatest%20Hits%20I/02%20Another%20One%20Bites%20The%20Dust.m4a - File Folder Count4 - Library Folder Count1 - - 2944 - - Track ID2944 - NameFat Bottomed Girls - ArtistQueen - ComposerMay, Brian - AlbumGreatest Hits I - GenreRock - KindAAC audio file - Size5236599 - Total Time204560 - Disc Number1 - Disc Count1 - Track Number4 - Track Count17 - Year1978 - Date Modified2008-10-01T01:25:40Z - Date Added2009-10-03T14:54:37Z - Bit Rate190 - Sample Rate44100 - Rating40 - Album Rating60 - Album Rating Computed - Normalization1611 - Artwork Count1 - Persistent ID563B9DB3206885EC - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Queen/Greatest%20Hits%20I/04%20Fat%20Bottomed%20Girls.m4a - File Folder Count4 - Library Folder Count1 - - 2970 - - Track ID2970 - NameWe Will Rock You - ArtistQueen - ComposerMay, Brian - AlbumGreatest Hits I - GenreRock - KindAAC audio file - Size3271976 - Total Time122773 - Disc Number1 - Disc Count1 - Track Number16 - Track Count17 - Year1977 - Date Modified2008-10-01T01:25:28Z - Date Added2009-10-03T14:54:40Z - Bit Rate191 - Sample Rate44100 - Play Count1 - Play Date3484153326 - Play Date UTC2014-05-28T14:52:06Z - Skip Count1 - Skip Date2014-06-12T14:16:30Z - Rating60 - Album Rating60 - Album Rating Computed - Normalization2644 - Artwork Count1 - Persistent IDF68310BB8B9250BD - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Queen/Greatest%20Hits%20I/16%20We%20Will%20Rock%20You.m4a - File Folder Count4 - Library Folder Count1 - - 2994 - - Track ID2994 - NameBohemian Rhapsody - ArtistQueen - ComposerMercury - AlbumA Night At The Opera - GenreRock - KindAAC audio file - Size11573019 - Total Time354346 - Disc Number1 - Disc Count1 - Track Number11 - Track Count12 - Year1975 - Date Modified2008-10-15T13:41:24Z - Date Added2009-10-03T14:54:42Z - Bit Rate256 - Sample Rate44100 - Rating100 - Album Rating100 - Album Rating Computed - Normalization2516 - Artwork Count1 - Sort AlbumNight At The Opera - Persistent ID316EC2E7A08C13D8 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Queen/A%20Night%20At%20The%20Opera/11%20Bohemian%20Rhapsody.m4a - File Folder Count4 - Library Folder Count1 - - 3020 - - Track ID3020 - NameShine On You Crazy Diamond (Parts I-V) - ArtistPink Floyd - ComposerDavid Gilmour, Roger Waters, Richard Wright - AlbumWish You Were Here - GenreRock - KindAAC audio file - Size19874872 - Total Time820266 - Disc Number1 - Disc Count1 - Track Number1 - Track Count5 - Year1975 - BPM192 - Date Modified2006-08-13T06:45:50Z - Date Added2009-10-03T14:54:45Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3389528756 - Play Date UTC2011-05-29T10:15:56Z - Rating80 - Album Rating80 - Album Rating Computed - Normalization1703 - Artwork Count1 - Persistent IDF5D244D92BDA0086 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/Wish%20You%20Were%20Here/01%20Shine%20On%20You%20Crazy%20Diamond%20(Parts%20I-V).m4a - File Folder Count4 - Library Folder Count1 - - 3022 - - Track ID3022 - NameWelcome to the Machine - ArtistPink Floyd - ComposerRoger Waters - AlbumWish You Were Here - GenreRock - KindAAC audio file - Size10943614 - Total Time451162 - Disc Number1 - Disc Count1 - Track Number2 - Track Count5 - Year1975 - BPM192 - Date Modified2006-08-13T06:45:42Z - Date Added2009-10-03T14:54:45Z - Bit Rate192 - Sample Rate44100 - Rating40 - Album Rating80 - Album Rating Computed - Normalization2061 - Artwork Count1 - Persistent IDC021DD7293F29AF4 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/Wish%20You%20Were%20Here/02%20Welcome%20to%20the%20Machine.m4a - File Folder Count4 - Library Folder Count1 - - 3024 - - Track ID3024 - NameHave A Cigar - ArtistPink Floyd - ComposerRoger Waters - AlbumWish You Were Here - GenreRock - KindAAC audio file - Size7497620 - Total Time308754 - Disc Number1 - Disc Count1 - Track Number3 - Track Count5 - Year1975 - BPM192 - Date Modified2006-08-13T06:45:36Z - Date Added2009-10-03T14:54:45Z - Bit Rate192 - Sample Rate44100 - Rating60 - Album Rating80 - Album Rating Computed - Normalization2536 - Artwork Count1 - Persistent ID94ADE859464E9F84 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/Wish%20You%20Were%20Here/03%20Have%20A%20Cigar.m4a - File Folder Count4 - Library Folder Count1 - - 3026 - - Track ID3026 - NameWish You Were Here - ArtistPink Floyd - ComposerRoger Waters, David Gilmour - AlbumWish You Were Here - GenreRock - KindAAC audio file - Size8117727 - Total Time334389 - Disc Number1 - Disc Count1 - Track Number4 - Track Count5 - Year1975 - BPM192 - Date Modified2006-08-13T06:45:34Z - Date Added2009-10-03T14:54:46Z - Bit Rate192 - Sample Rate44100 - Rating100 - Album Rating80 - Album Rating Computed - Normalization993 - Artwork Count1 - Persistent ID81EAC05E8DE4546D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/Wish%20You%20Were%20Here/04%20Wish%20You%20Were%20Here.m4a - File Folder Count4 - Library Folder Count1 - - 3028 - - Track ID3028 - NameShine On You Crazy Diamond (Parts VI-IX) - ArtistPink Floyd - ComposerRoger Waters, Richard Wright, David Gilmour - AlbumWish You Were Here - GenreRock - KindAAC audio file - Size18209792 - Total Time751489 - Disc Number1 - Disc Count1 - Track Number5 - Track Count5 - Year1975 - BPM192 - Date Modified2006-08-13T06:45:30Z - Date Added2009-10-03T14:54:46Z - Bit Rate192 - Sample Rate44100 - Rating80 - Album Rating80 - Album Rating Computed - Normalization1341 - Artwork Count1 - Persistent IDB483A0BD8FE15A6A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Pink%20Floyd/Wish%20You%20Were%20Here/05%20Shine%20On%20You%20Crazy%20Diamond%20(Parts%20VI-IX).m4a - File Folder Count4 - Library Folder Count1 - - 3982 - - Track ID3982 - NamePiano Theme - ArtistJaved Akhtar - ComposerA.R. Rahman/Javed Akhtar - Album1947 - GenreSoundtrack - KindAAC audio file - Size2697906 - Total Time113313 - Track Number5 - Year1999 - Date Modified2007-07-27T05:54:58Z - Date Added2009-10-03T14:56:13Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3383451522 - Play Date UTC2011-03-20T02:08:42Z - Rating60 - Album Rating60 - Album Rating Computed - Normalization830 - Persistent IDBFCB37B0BA55EDFA - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Javed%20Akhtar/1947/05%20Piano%20Theme.m4a - File Folder Count4 - Library Folder Count1 - - 4232 - - Track ID4232 - NameArrival O T Queen O Sheba - ArtistGeorge Frideric Handel - ComposerGeorge Frederick Handel (1685-1759) - AlbumGreatest Hits - GenreClassical - KindAAC audio file - Size4559441 - Total Time187639 - Track Number1 - Track Count22 - Date Modified2006-07-30T12:55:14Z - Date Added2009-10-03T14:56:31Z - Bit Rate192 - Sample Rate44100 - Rating60 - Rating Computed - Album Rating60 - Normalization383 - Artwork Count1 - Persistent IDFF8E9A784EB2ECB2 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Frideric%20Handel/Greatest%20Hits/01%20Arrival%20O%20T%20Queen%20O%20Sheba.m4a - File Folder Count4 - Library Folder Count1 - - 4234 - - Track ID4234 - NameWater Music SuN1_Allegro_Andante_Allegro da capo - ArtistGeorge Frideric Handel - ComposerGeorge Frederick Handel (1685-1759) - AlbumGreatest Hits - GenreClassical - KindAAC audio file - Size11070748 - Total Time457083 - Track Number2 - Track Count22 - Date Modified2006-07-30T12:55:14Z - Date Added2009-10-03T14:56:31Z - Bit Rate192 - Sample Rate44100 - Rating60 - Rating Computed - Album Rating60 - Normalization936 - Artwork Count1 - Persistent IDBB3D67E74BBB276C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Frideric%20Handel/Greatest%20Hits/02%20Water%20Music%20SuN1_Allegro_Andante_Allegro%20da%20capo.m4a - File Folder Count4 - Library Folder Count1 - - 4236 - - Track ID4236 - NameWater Music SuN1_Air - ArtistGeorge Frideric Handel - ComposerGeorge Frederick Handel (1685-1759) - AlbumGreatest Hits - GenreClassical - KindAAC audio file - Size3854424 - Total Time158288 - Track Number3 - Track Count22 - Date Modified2006-07-30T12:55:14Z - Date Added2009-10-03T14:56:31Z - Bit Rate192 - Sample Rate44100 - Rating60 - Rating Computed - Album Rating60 - Normalization66 - Artwork Count1 - Persistent ID8A99DE362807DF2F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Frideric%20Handel/Greatest%20Hits/03%20Water%20Music%20SuN1_Air.m4a - File Folder Count4 - Library Folder Count1 - - 4238 - - Track ID4238 - NameWater Music SuN1_Minuet - ArtistGeorge Frideric Handel - ComposerGeorge Frederick Handel (1685-1759) - AlbumGreatest Hits - GenreClassical - KindAAC audio file - Size5633160 - Total Time232337 - Track Number4 - Track Count22 - Date Modified2006-07-30T12:55:14Z - Date Added2009-10-03T14:56:31Z - Bit Rate192 - Sample Rate44100 - Rating60 - Rating Computed - Album Rating60 - Normalization450 - Artwork Count1 - Persistent IDE6C92D407E6AEFDD - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Frideric%20Handel/Greatest%20Hits/04%20Water%20Music%20SuN1_Minuet.m4a - File Folder Count4 - Library Folder Count1 - - 4240 - - Track ID4240 - NameWater Music SuN1_Bourree - ArtistGeorge Frideric Handel - ComposerGeorge Frederick Handel (1685-1759) - AlbumGreatest Hits - GenreClassical - KindAAC audio file - Size1665531 - Total Time67150 - Track Number5 - Track Count22 - Date Modified2006-07-30T12:55:14Z - Date Added2009-10-03T14:56:31Z - Bit Rate192 - Sample Rate44100 - Rating60 - Rating Computed - Album Rating60 - Normalization130 - Artwork Count1 - Persistent ID28AABC0896142A3D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Frideric%20Handel/Greatest%20Hits/05%20Water%20Music%20SuN1_Bourree.m4a - File Folder Count4 - Library Folder Count1 - - 4242 - - Track ID4242 - NameWater Music SuN1_Hornpipe - ArtistGeorge Frideric Handel - ComposerGeorge Frederick Handel (1685-1759) - AlbumGreatest Hits - GenreClassical - KindAAC audio file - Size2327915 - Total Time94735 - Track Number6 - Track Count22 - Date Modified2006-07-30T12:55:14Z - Date Added2009-10-03T14:56:31Z - Bit Rate192 - Sample Rate44100 - Rating60 - Rating Computed - Album Rating60 - Normalization580 - Artwork Count1 - Persistent ID331F96F72D32336F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Frideric%20Handel/Greatest%20Hits/06%20Water%20Music%20SuN1_Hornpipe.m4a - File Folder Count4 - Library Folder Count1 - - 4244 - - Track ID4244 - NameLargo Fr "Xerxes" - ArtistGeorge Frideric Handel - ComposerGeorge Frederick Handel (1685-1759) - AlbumGreatest Hits - GenreClassical - KindAAC audio file - Size8575893 - Total Time353986 - Track Number7 - Track Count22 - Date Modified2006-07-30T12:55:14Z - Date Added2009-10-03T14:56:31Z - Bit Rate192 - Sample Rate44100 - Rating60 - Rating Computed - Album Rating60 - Normalization585 - Artwork Count1 - Persistent IDA49317089ED94651 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Frideric%20Handel/Greatest%20Hits/07%20Largo%20Fr%20_Xerxes_.m4a - File Folder Count4 - Library Folder Count1 - - 4246 - - Track ID4246 - NameMusic F T Royal Fireworks_Ov - ArtistGeorge Frideric Handel - ComposerGeorge Frederick Handel (1685-1759) - AlbumGreatest Hits - GenreClassical - KindAAC audio file - Size12427207 - Total Time513136 - Track Number8 - Track Count22 - Date Modified2006-07-30T12:55:16Z - Date Added2009-10-03T14:56:31Z - Bit Rate192 - Sample Rate44100 - Rating60 - Rating Computed - Album Rating60 - Normalization1461 - Artwork Count1 - Persistent ID130F6DEF45B155D2 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Frideric%20Handel/Greatest%20Hits/08%20Music%20F%20T%20Royal%20Fireworks_Ov.m4a - File Folder Count4 - Library Folder Count1 - - 4248 - - Track ID4248 - NameMusic F T Royal Fireworks_La rejouissance, Allegro - ArtistGeorge Frideric Handel - ComposerGeorge Frederick Handel (1685-1759) - AlbumGreatest Hits - GenreClassical - KindAAC audio file - Size3076440 - Total Time125897 - Track Number9 - Track Count22 - Date Modified2006-07-30T12:55:16Z - Date Added2009-10-03T14:56:32Z - Bit Rate192 - Sample Rate44100 - Rating60 - Rating Computed - Album Rating60 - Normalization1579 - Artwork Count1 - Persistent IDBA04BD3BB9D30216 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Frideric%20Handel/Greatest%20Hits/09%20Music%20F%20T%20Royal%20Fireworks_La%20rejouissance,%20Allegro.m4a - File Folder Count4 - Library Folder Count1 - - 4250 - - Track ID4250 - NameT Harmonious Blacksmith - ArtistGeorge Frideric Handel - ComposerGeorge Frederick Handel (1685-1759) - AlbumGreatest Hits - GenreClassical - KindAAC audio file - Size6314530 - Total Time260526 - Track Number10 - Track Count22 - Date Modified2006-07-30T12:55:16Z - Date Added2009-10-03T14:56:32Z - Bit Rate192 - Sample Rate44100 - Rating60 - Rating Computed - Album Rating60 - Normalization74 - Artwork Count1 - Persistent IDDCE22A5F5EB897C8 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Frideric%20Handel/Greatest%20Hits/10%20T%20Harmonious%20Blacksmith.m4a - File Folder Count4 - Library Folder Count1 - - 4252 - - Track ID4252 - NameLet T Bright Seraphim Fr Samson - ArtistGeorge Frideric Handel - ComposerGeorge Frederick Handel (1685-1759) - AlbumGreatest Hits - GenreClassical - KindAAC audio file - Size8419221 - Total Time347508 - Track Number11 - Track Count22 - Date Modified2006-07-30T12:55:16Z - Date Added2009-10-03T14:56:32Z - Bit Rate192 - Sample Rate44100 - Rating60 - Rating Computed - Album Rating60 - Normalization1141 - Artwork Count1 - Persistent ID78F1A149CAF9395E - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Frideric%20Handel/Greatest%20Hits/11%20Let%20T%20Bright%20Seraphim%20Fr%20Samson.m4a - File Folder Count4 - Library Folder Count1 - - 4254 - - Track ID4254 - NameSuN11 F Harpsichord_Sarabande - ArtistGeorge Frideric Handel - ComposerGeorge Frederick Handel (1685-1759) - AlbumGreatest Hits - GenreClassical - KindAAC audio file - Size4364185 - Total Time179512 - Track Number12 - Track Count22 - Date Modified2006-07-30T12:55:16Z - Date Added2009-10-03T14:56:32Z - Bit Rate192 - Sample Rate44100 - Rating60 - Rating Computed - Album Rating60 - Normalization287 - Artwork Count1 - Persistent ID0BC07A80AA7DDD3A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Frideric%20Handel/Greatest%20Hits/12%20SuN11%20F%20Harpsichord_Sarabande.m4a - File Folder Count4 - Library Folder Count1 - - 4256 - - Track ID4256 - NameWater Music SuN2_WO tempo indication - ArtistGeorge Frideric Handel - ComposerGeorge Frederick Handel (1685-1759) - AlbumGreatest Hits - GenreClassical - KindAAC audio file - Size2829967 - Total Time115633 - Track Number13 - Track Count22 - Date Modified2006-07-30T12:55:16Z - Date Added2009-10-03T14:56:32Z - Bit Rate192 - Sample Rate44100 - Rating60 - Rating Computed - Album Rating60 - Normalization601 - Artwork Count1 - Persistent IDF8A39E63146501AB - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Frideric%20Handel/Greatest%20Hits/13%20Water%20Music%20SuN2_WO%20tempo%20indication.m4a - File Folder Count4 - Library Folder Count1 - - 4258 - - Track ID4258 - NameWater Music SuN2_Alla Hornpipe - ArtistGeorge Frideric Handel - ComposerGeorge Frederick Handel (1685-1759) - AlbumGreatest Hits - GenreClassical - KindAAC audio file - Size5677534 - Total Time234195 - Track Number14 - Track Count22 - Date Modified2006-07-30T12:55:16Z - Date Added2009-10-03T14:56:32Z - Bit Rate192 - Sample Rate44100 - Rating60 - Rating Computed - Album Rating60 - Normalization914 - Artwork Count1 - Persistent ID59BA63369DBF1690 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Frideric%20Handel/Greatest%20Hits/14%20Water%20Music%20SuN2_Alla%20Hornpipe.m4a - File Folder Count4 - Library Folder Count1 - - 4260 - - Track ID4260 - NameWater Music Suite #2: Minuet - ArtistGeorge Frideric Handel - ComposerGeorge Frederick Handel (1685-1759) - AlbumGreatest Hits - GenreClassical - KindAAC audio file - Size1852885 - Total Time74952 - Track Number15 - Track Count22 - Date Modified2006-07-30T12:55:16Z - Date Added2009-10-03T14:56:32Z - Bit Rate192 - Sample Rate44100 - Rating60 - Rating Computed - Album Rating60 - Normalization738 - Artwork Count1 - Persistent IDFFBAC6B786127B6B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Frideric%20Handel/Greatest%20Hits/15%20Water%20Music%20Suite%20%232_%20Minuet.m4a - File Folder Count4 - Library Folder Count1 - - 4262 - - Track ID4262 - NameWater Music Suite #2: Lentement - ArtistGeorge Frideric Handel - ComposerGeorge Frederick Handel (1685-1759) - AlbumGreatest Hits - GenreClassical - KindAAC audio file - Size2920492 - Total Time119418 - Track Number16 - Track Count22 - Date Modified2006-07-30T12:55:16Z - Date Added2009-10-03T14:56:32Z - Bit Rate192 - Sample Rate44100 - Rating60 - Rating Computed - Album Rating60 - Normalization544 - Artwork Count1 - Persistent ID3F44A1B34A751FD3 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Frideric%20Handel/Greatest%20Hits/16%20Water%20Music%20Suite%20%232_%20Lentement.m4a - File Folder Count4 - Library Folder Count1 - - 4264 - - Track ID4264 - NameWater Music Suite #2: Bourree - ArtistGeorge Frideric Handel - ComposerGeorge Frederick Handel (1685-1759) - AlbumGreatest Hits - GenreClassical - KindAAC audio file - Size1562780 - Total Time62878 - Track Number17 - Track Count22 - Date Modified2006-07-30T12:55:16Z - Date Added2009-10-03T14:56:33Z - Bit Rate192 - Sample Rate44100 - Rating60 - Rating Computed - Album Rating60 - Normalization891 - Artwork Count1 - Persistent ID5E4C28A0CC4A176A - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Frideric%20Handel/Greatest%20Hits/17%20Water%20Music%20Suite%20%232_%20Bourree.m4a - File Folder Count4 - Library Folder Count1 - - 4266 - - Track ID4266 - NameMinuet from "Berenice" - ArtistGeorge Frideric Handel - ComposerGeorge Frederick Handel (1685-1759) - AlbumGreatest Hits - GenreClassical - KindAAC audio file - Size3955758 - Total Time162515 - Track Number18 - Track Count22 - Date Modified2006-07-30T12:55:16Z - Date Added2009-10-03T14:56:33Z - Bit Rate192 - Sample Rate44100 - Rating60 - Rating Computed - Album Rating60 - Normalization104 - Artwork Count1 - Persistent ID4A970E7C5715A574 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Frideric%20Handel/Greatest%20Hits/18%20Minuet%20from%20_Berenice_.m4a - File Folder Count4 - Library Folder Count1 - - 4268 - - Track ID4268 - NameThe Cuckoo and the Nightingale - ArtistGeorge Frideric Handel - ComposerGeorge Frederick Handel (1685-1759) - AlbumGreatest Hits - GenreClassical - KindAAC audio file - Size5623252 - Total Time231942 - Track Number19 - Track Count22 - Date Modified2006-07-30T12:55:16Z - Date Added2009-10-03T14:56:33Z - Bit Rate192 - Sample Rate44100 - Rating60 - Rating Computed - Album Rating60 - Normalization399 - Artwork Count1 - Sort NameCuckoo and the Nightingale - Persistent ID9076CA66B52D1E76 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Frideric%20Handel/Greatest%20Hits/19%20The%20Cuckoo%20and%20the%20Nightingale.m4a - File Folder Count4 - Library Folder Count1 - - 4270 - - Track ID4270 - NameSee, The Conquering Hero Come - ArtistGeorge Frideric Handel - ComposerGeorge Frederick Handel (1685-1759) - AlbumGreatest Hits - GenreClassical - KindAAC audio file - Size5615103 - Total Time231594 - Track Number20 - Track Count22 - Date Modified2006-07-30T12:55:16Z - Date Added2009-10-03T14:56:33Z - Bit Rate192 - Sample Rate44100 - Rating60 - Rating Computed - Album Rating60 - Normalization492 - Artwork Count1 - Persistent ID35988583E1443A6D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Frideric%20Handel/Greatest%20Hits/20%20See,%20The%20Conquering%20Hero%20Come.m4a - File Folder Count4 - Library Folder Count1 - - 4272 - - Track ID4272 - NameEternal Source of Light Divine - ArtistGeorge Frideric Handel - ComposerGeorge Frederick Handel (1685-1759) - AlbumGreatest Hits - GenreClassical - KindAAC audio file - Size3547127 - Total Time145494 - Track Number21 - Track Count22 - Date Modified2006-07-30T12:55:16Z - Date Added2009-10-03T14:56:33Z - Bit Rate192 - Sample Rate44100 - Rating60 - Rating Computed - Album Rating60 - Normalization1252 - Artwork Count1 - Persistent IDC9B9F4E4D5E3912B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Frideric%20Handel/Greatest%20Hits/21%20Eternal%20Source%20of%20Light%20Divine.m4a - File Folder Count4 - Library Folder Count1 - - 4274 - - Track ID4274 - NameHallelujah Chorus - ArtistGeorge Frideric Handel - ComposerGeorge Frederick Handel (1685-1759) - AlbumGreatest Hits - GenreClassical - KindAAC audio file - Size5772900 - Total Time238188 - Track Number22 - Track Count22 - Date Modified2006-07-30T12:55:16Z - Date Added2009-10-03T14:56:33Z - Bit Rate192 - Sample Rate44100 - Rating60 - Rating Computed - Album Rating60 - Normalization1644 - Artwork Count1 - Persistent ID69C282532D62283F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/George%20Frideric%20Handel/Greatest%20Hits/22%20Hallelujah%20Chorus.m4a - File Folder Count4 - Library Folder Count1 - - 4534 - - Track ID4534 - NameAnasthasia - ArtistDeep Forest - ComposerEric Mouquet, Michel Sanchez - AlbumBoheme - GenreWorld - KindAAC audio file - Size2741027 - Total Time108482 - Disc Number1 - Disc Count1 - Track Number1 - Track Count12 - Year1995 - Date Modified2006-08-07T06:40:38Z - Date Added2009-10-03T14:57:11Z - Bit Rate192 - Sample Rate44100 - Rating40 - Rating Computed - Album Rating40 - Normalization1202 - Artwork Count1 - Persistent ID0266154AE3FA6EAB - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Deep%20Forest/Boheme/01%20Anasthasia.m4a - File Folder Count4 - Library Folder Count1 - - 4536 - - Track ID4536 - NameBohemian Ballet - ArtistDeep Forest - ComposerEric Mouquet, Michel Sanchez - AlbumBoheme - GenreWorld - KindAAC audio file - Size7731672 - Total Time317508 - Disc Number1 - Disc Count1 - Track Number2 - Track Count12 - Year1995 - Date Modified2006-08-07T06:40:38Z - Date Added2009-10-03T14:57:11Z - Bit Rate192 - Sample Rate44100 - Rating40 - Rating Computed - Album Rating40 - Normalization2220 - Artwork Count1 - Persistent IDD45BAC9C513A222C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Deep%20Forest/Boheme/02%20Bohemian%20Ballet.m4a - File Folder Count4 - Library Folder Count1 - - 4538 - - Track ID4538 - NameMarta's Song - ArtistDeep Forest - ComposerEric Mouquet, Michel Sanchez - AlbumBoheme - GenreWorld - KindAAC audio file - Size6210038 - Total Time252608 - Disc Number1 - Disc Count1 - Track Number3 - Track Count12 - Year1995 - Date Modified2006-08-07T06:40:38Z - Date Added2009-10-03T14:57:12Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3441736576 - Play Date UTC2013-01-22T16:26:16Z - Rating40 - Rating Computed - Album Rating40 - Normalization1519 - Artwork Count1 - Persistent ID8B8F63BAA8906E8D - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Deep%20Forest/Boheme/03%20Marta's%20Song.m4a - File Folder Count4 - Library Folder Count1 - - 4540 - - Track ID4540 - NameGathering - ArtistDeep Forest - ComposerEric Mouquet, Michel Sanchez - AlbumBoheme - GenreWorld - KindAAC audio file - Size6831353 - Total Time279334 - Disc Number1 - Disc Count1 - Track Number4 - Track Count12 - Year1995 - Date Modified2006-08-07T06:40:38Z - Date Added2009-10-03T14:57:12Z - Bit Rate192 - Sample Rate44100 - Rating40 - Rating Computed - Album Rating40 - Normalization2306 - Artwork Count1 - Persistent IDAA91A7833835F57C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Deep%20Forest/Boheme/04%20Gathering.m4a - File Folder Count4 - Library Folder Count1 - - 4542 - - Track ID4542 - NameLament - ArtistDeep Forest - ComposerEric Mouquet, Michel Sanchez - AlbumBoheme - GenreWorld - KindAAC audio file - Size4704572 - Total Time189914 - Disc Number1 - Disc Count1 - Track Number5 - Track Count12 - Year1995 - Date Modified2006-08-07T06:40:38Z - Date Added2009-10-03T14:57:12Z - Bit Rate192 - Sample Rate44100 - Rating40 - Rating Computed - Album Rating40 - Normalization2020 - Artwork Count1 - Persistent IDE4D11D5B41CE65CA - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Deep%20Forest/Boheme/05%20Lament.m4a - File Folder Count4 - Library Folder Count1 - - 4544 - - Track ID4544 - NameBulgarian Melody - ArtistDeep Forest - ComposerEric Mouquet, Michel Sanchez - AlbumBoheme - GenreWorld - KindAAC audio file - Size4661946 - Total Time188149 - Disc Number1 - Disc Count1 - Track Number6 - Track Count12 - Year1995 - Date Modified2006-08-07T06:40:38Z - Date Added2009-10-03T14:57:12Z - Bit Rate192 - Sample Rate44100 - Rating40 - Rating Computed - Album Rating40 - Normalization1202 - Artwork Count1 - Persistent IDE133488328008F5B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Deep%20Forest/Boheme/06%20Bulgarian%20Melody.m4a - File Folder Count4 - Library Folder Count1 - - 4546 - - Track ID4546 - NameDeep Folk Song - ArtistDeep Forest - ComposerEric Mouquet, Michel Sanchez - AlbumBoheme - GenreWorld - KindAAC audio file - Size1933328 - Total Time74534 - Disc Number1 - Disc Count1 - Track Number7 - Track Count12 - Year1995 - Date Modified2006-08-07T06:40:38Z - Date Added2009-10-03T14:57:12Z - Bit Rate192 - Sample Rate44100 - Rating40 - Rating Computed - Album Rating40 - Normalization1202 - Artwork Count1 - Persistent ID042AE4184165DCC8 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Deep%20Forest/Boheme/07%20Deep%20Folk%20Song.m4a - File Folder Count4 - Library Folder Count1 - - 4548 - - Track ID4548 - NameFreedom Cry - ArtistDeep Forest - ComposerEric Mouquet, Michel Sanchez - AlbumBoheme - GenreWorld - KindAAC audio file - Size4879241 - Total Time199968 - Disc Number1 - Disc Count1 - Track Number8 - Track Count12 - Year1995 - Date Modified2006-08-07T06:40:38Z - Date Added2009-10-03T14:57:12Z - Bit Rate192 - Sample Rate44100 - Rating40 - Album Rating40 - Normalization1804 - Artwork Count1 - Persistent ID2E59D8976C34831C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Deep%20Forest/Boheme/08%20Freedom%20Cry.m4a - File Folder Count4 - Library Folder Count1 - - 4550 - - Track ID4550 - NameTwosome - ArtistDeep Forest - ComposerEric Mouquet, Michel Sanchez - AlbumBoheme - GenreWorld - KindAAC audio file - Size6060881 - Total Time247221 - Disc Number1 - Disc Count1 - Track Number9 - Track Count12 - Year1995 - Date Modified2006-08-07T06:40:38Z - Date Added2009-10-03T14:57:12Z - Bit Rate192 - Sample Rate44100 - Rating40 - Rating Computed - Album Rating40 - Normalization1510 - Artwork Count1 - Persistent ID377181C023F2CB71 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Deep%20Forest/Boheme/09%20Twosome.m4a - File Folder Count4 - Library Folder Count1 - - 4552 - - Track ID4552 - NameCafé Europa - ArtistDeep Forest - ComposerEric Mouquet, Michel Sanchez - AlbumBoheme - GenreWorld - KindAAC audio file - Size6336610 - Total Time257856 - Disc Number1 - Disc Count1 - Track Number10 - Track Count12 - Year1995 - Date Modified2006-08-07T06:40:38Z - Date Added2009-10-03T14:57:12Z - Bit Rate192 - Sample Rate44100 - Rating40 - Rating Computed - Album Rating40 - Normalization1343 - Artwork Count1 - Persistent ID314631390F4B1E27 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Deep%20Forest/Boheme/10%20Cafe%CC%81%20Europa.m4a - File Folder Count4 - Library Folder Count1 - - 4554 - - Track ID4554 - NameKatharina - ArtistDeep Forest - ComposerEric Mouquet, Michel Sanchez - AlbumBoheme - GenreWorld - KindAAC audio file - Size4301728 - Total Time173149 - Disc Number1 - Disc Count1 - Track Number11 - Track Count12 - Year1995 - Date Modified2006-08-07T06:40:38Z - Date Added2009-10-03T14:57:13Z - Bit Rate192 - Sample Rate44100 - Rating40 - Rating Computed - Album Rating40 - Normalization1345 - Artwork Count1 - Persistent IDA94131EB41219CAF - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Deep%20Forest/Boheme/11%20Katharina.m4a - File Folder Count4 - Library Folder Count1 - - 4556 - - Track ID4556 - NameBoheme - ArtistDeep Forest - ComposerEric Mouquet, Michel Sanchez - AlbumBoheme - GenreWorld - KindAAC audio file - Size6784539 - Total Time276617 - Disc Number1 - Disc Count1 - Track Number12 - Track Count12 - Year1995 - Date Modified2006-08-07T06:40:36Z - Date Added2009-10-03T14:57:13Z - Bit Rate192 - Sample Rate44100 - Rating40 - Rating Computed - Album Rating40 - Normalization1767 - Artwork Count1 - Persistent ID25C46E56F92C9B68 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Deep%20Forest/Boheme/12%20Boheme.m4a - File Folder Count4 - Library Folder Count1 - - 5136 - - Track ID5136 - NameWater Poems - ArtistPt. Hari Prasad Chaurasia and others - ComposerHari Prasad Chaurasia - AlbumMusic of the Rivers - GenreWorld - KindAAC audio file - Size42094058 - Total Time1738940 - Disc Number1 - Disc Count1 - Track Number1 - Track Count3 - Year1993 - Date Modified2006-07-30T08:18:08Z - Date Added2009-10-03T14:57:55Z - Bit Rate192 - Sample Rate44100 - Rating80 - Album Rating80 - Album Rating Computed - Normalization1259 - Compilation - Artwork Count1 - Persistent IDAB6C99C63A7A724B - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Music%20of%20the%20Rivers/01%20Water%20Poems%201.m4a - File Folder Count4 - Library Folder Count1 - - 5138 - - Track ID5138 - NameSong of the River - ArtistPt. Hari Prasad Chaurasia and others - ComposerHari Prasad Chaurasia - AlbumMusic of the Rivers - GenreWorld - KindAAC audio file - Size23286402 - Total Time961745 - Disc Number1 - Disc Count1 - Track Number2 - Track Count3 - Year1993 - Date Modified2006-07-30T08:18:08Z - Date Added2009-10-03T14:57:55Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3349418689 - Play Date UTC2010-02-19T04:34:49Z - Rating80 - Album Rating80 - Album Rating Computed - Normalization696 - Compilation - Artwork Count1 - Persistent IDEB9A74A2207FF8E8 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Music%20of%20the%20Rivers/02%20Song%20of%20the%20River%201.m4a - File Folder Count4 - Library Folder Count1 - - 5140 - - Track ID5140 - NameDelta - Journey to the Sea - ArtistPt. Hari Prasad Chaurasia and others - ComposerHari Prasad Chaurasia - AlbumMusic of the Rivers - GenreWorld - KindAAC audio file - Size19790369 - Total Time817271 - Disc Number1 - Disc Count1 - Track Number3 - Track Count3 - Year1993 - Date Modified2006-07-30T08:18:10Z - Date Added2009-10-03T14:57:55Z - Bit Rate192 - Sample Rate44100 - Rating80 - Album Rating80 - Album Rating Computed - Normalization1215 - Compilation - Artwork Count1 - Persistent IDADADF5D23F45CC80 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Music%20of%20the%20Rivers/03%20Delta%20-%20Journey%20to%20the%20Sea%201.m4a - File Folder Count4 - Library Folder Count1 - - 6400 - - Track ID6400 - NameLa Mer - 1. From Dawn till Noon on the Sea (De l'aube à midi sur la mer) - ArtistBerliner Philharmoniker - Album ArtistBerliner Philharmoniker - ComposerClaude Debussy - AlbumRavel: Boléro / Debussy: La Mer / Mussorgsky: Pictures at an Exhibition - GenreClassical - KindMPEG audio file - Size16604877 - Total Time515082 - Disc Number1 - Disc Count1 - Track Number1 - Track Count19 - Year1996 - Date Modified2008-11-23T17:19:23Z - Date Added2009-10-03T14:59:33Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 204929326 - Play Count3 - Play Date3408275072 - Play Date UTC2012-01-01T09:34:32Z - Rating80 - Album Rating80 - Album Rating Computed - Artwork Count1 - Persistent IDC6F460041F8369F6 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Berliner%20Philharmoniker/Ravel_%20Bole%CC%81ro%20_%20Debussy_%20La%20Mer%20_%20Mussorgsky_%20Pictures%20at%20an%20Exhibition/01%20La%20Mer%20-%201.%20From%20Dawn%20till%20Noon%20on%20the%20Sea%20(De%20l'aube%20a%CC%80%20midi%20sur%20la%20mer).mp3 - File Folder Count4 - Library Folder Count1 - - 6668 - - Track ID6668 - NameKhalbali - ArtistA R Rahman, Aslam, Nacim - ComposerA R Rahman - AlbumRang De Basanti - GenreSoundtracks - KindAAC audio file - Size9168274 - Total Time379250 - Track Number5 - Date Modified2007-04-09T09:37:02Z - Date Added2009-10-03T15:00:51Z - Bit Rate192 - Sample Rate44100 - Rating80 - Album Rating80 - Album Rating Computed - Normalization2495 - Artwork Count2 - Sort ArtistR Rahman, Aslam, Nacim - Sort ComposerR Rahman - Persistent ID2B2C617EC4E37CAF - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/A%20R%20Rahman,%20Aslam,%20Nacim/Rang%20De%20Basanti/05%20Khalbali.m4a - File Folder Count4 - Library Folder Count1 - - 6776 - - Track ID6776 - NameConcierto de Aranjuez for Guitar and Orchestra - 1. Allegro con spirito - ArtistPepe Romero - Album ArtistVarious Artists - ComposerRodrigo, Joaquin - AlbumEssential Guitar - GenreClassical - KindMPEG audio file - Size11733911 - Total Time362945 - Disc Number1 - Disc Count2 - Track Number1 - Track Count18 - Year2002 - Date Modified2009-11-14T14:37:28Z - Date Added2009-11-14T15:03:01Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202532098 - Play Count3 - Play Date3399818796 - Play Date UTC2011-09-25T12:36:36Z - Rating100 - Album Rating80 - Album Rating Computed - Artwork Count1 - Persistent ID3245FADF198007E6 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Essential%20Guitar/1-01%20Concierto%20de%20Aranjuez%20for%20Guitar%20and%20Orchestra%20-%201.%20Allegro%20con%20spirito.mp3 - File Folder Count4 - Library Folder Count1 - - 6804 - - Track ID6804 - Name5 Preludes - No. 1 in E minor - ArtistJulian Bream - Album ArtistVarious Artists - ComposerVilla-Lobos, Heitor - AlbumEssential Guitar - GenreClassical - KindMPEG audio file - Size8508045 - Total Time262138 - Disc Number1 - Disc Count2 - Track Number15 - Track Count18 - Year2002 - Date Modified2009-11-14T14:52:29Z - Date Added2009-11-14T15:03:01Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202532112 - Play Count9 - Play Date3400432218 - Play Date UTC2011-10-02T15:00:18Z - Rating60 - Album Rating80 - Album Rating Computed - Artwork Count1 - Persistent IDE31BCFCEE14DAB58 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Essential%20Guitar/1-15%205%20Preludes%20-%20No.%201%20in%20E%20minor.mp3 - File Folder Count4 - Library Folder Count1 - - 9574 - - Track ID9574 - NameBach: Lute Suite In E, BWV 1006A - Gavotte En Rondeau - ArtistSharon Isbin - ComposerJohann Sebastian Bach - Album50 Best Guitar [Disc 1] - GenreClassical - KindAAC audio file - Size6393595 - Total Time192026 - Disc Number1 - Disc Count3 - Track Number1 - Track Count21 - Year1990 - Date Modified2011-10-15T14:05:10Z - Date Added2011-10-15T13:42:12Z - Bit Rate256 - Sample Rate44100 - Play Count2 - Play Date3403633825 - Play Date UTC2011-11-08T16:20:25Z - Skip Count1 - Skip Date2011-11-01T15:32:55Z - Rating20 - Rating Computed - Album Rating20 - Normalization1255 - Compilation - Artwork Count1 - Persistent ID4A93E3AF0C8635CC - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%201%5D/1-01%20Bach_%20Lute%20Suite%20In%20E,%20BWV%201006A%20-%20Gavotte%20En%20Rondeau.m4a - File Folder Count4 - Library Folder Count1 - - 9576 - - Track ID9576 - NameDowland: Allemande - ArtistChristopher Parkening - ComposerJohn Dowland - Album50 Best Guitar [Disc 1] - GenreClassical - KindAAC audio file - Size3305527 - Total Time98866 - Disc Number1 - Disc Count3 - Track Number2 - Track Count21 - Year1986 - Date Modified2011-10-15T14:05:11Z - Date Added2011-10-15T13:42:30Z - Bit Rate256 - Sample Rate44100 - Play Count12 - Play Date3403632718 - Play Date UTC2011-11-08T16:01:58Z - Skip Count2 - Skip Date2011-12-16T13:49:14Z - Rating20 - Rating Computed - Album Rating20 - Normalization660 - Compilation - Artwork Count1 - Persistent ID071A7C2BDA9AEC17 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%201%5D/1-02%20Dowland_%20Allemande.m4a - File Folder Count4 - Library Folder Count1 - - 9578 - - Track ID9578 - NameBach: Prelude, Fugue & Allegro In E Flat, BWV 998 - Prelude - ArtistManuel Barrueco - ComposerJohann Sebastian Bach - Album50 Best Guitar [Disc 1] - GenreClassical - KindAAC audio file - Size5047251 - Total Time153880 - Disc Number1 - Disc Count3 - Track Number3 - Track Count21 - Year1990 - Date Modified2011-10-15T14:05:12Z - Date Added2011-10-15T13:42:39Z - Bit Rate256 - Sample Rate44100 - Play Count4 - Play Date3403631707 - Play Date UTC2011-11-08T15:45:07Z - Rating20 - Rating Computed - Album Rating20 - Normalization342 - Compilation - Artwork Count1 - Persistent ID7FAF9AF82B874342 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%201%5D/1-03%20Bach_%20Prelude,%20Fugue%20&%20Allegro%20In%20E%20Flat,%20BWV%20998%20-%20Prelude.m4a - File Folder Count4 - Library Folder Count1 - - 9580 - - Track ID9580 - NameBach: Violin Partita #2 In D Minor, BWV 1004 - Gigue (Guitar Version) - ArtistManuel Barrueco - ComposerJohann Sebastian Bach - Album50 Best Guitar [Disc 1] - GenreClassical - KindAAC audio file - Size9717257 - Total Time294466 - Disc Number1 - Disc Count3 - Track Number4 - Track Count21 - Year1990 - Date Modified2011-10-15T14:05:13Z - Date Added2011-10-15T13:42:52Z - Bit Rate256 - Sample Rate44100 - Play Count2 - Play Date3403634260 - Play Date UTC2011-11-08T16:27:40Z - Rating20 - Rating Computed - Album Rating20 - Normalization423 - Compilation - Artwork Count1 - Persistent ID96D29144E660CCE2 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%201%5D/1-04%20Bach_%20Violin%20Partita%20%232%20In%20D%20Minor,%20BWV%201004%20-%20Gigue%20(Guitar%20Version).m4a - File Folder Count4 - Library Folder Count1 - - 9582 - - Track ID9582 - NameFroberger: Gigue - ArtistAndrés Segovia - ComposerJohann Froberger - Album50 Best Guitar [Disc 1] - GenreClassical - KindAAC audio file - Size2853943 - Total Time101266 - Disc Number1 - Disc Count3 - Track Number5 - Track Count21 - Year1991 - Date Modified2011-10-15T14:05:14Z - Date Added2011-10-15T13:43:15Z - Bit Rate256 - Sample Rate44100 - Play Count5 - Play Date3403631924 - Play Date UTC2011-11-08T15:48:44Z - Rating20 - Rating Computed - Album Rating20 - Normalization1254 - Compilation - Artwork Count1 - Persistent ID80C2D98999E89AE2 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%201%5D/1-05%20Froberger_%20Gigue.m4a - File Folder Count4 - Library Folder Count1 - - 9584 - - Track ID9584 - NameBach: Jesu, Joy Of Man's Desiring - ArtistChristopher Parkening: Los Angeles Chamber Orchestra - ComposerJohann Sebastian Bach - Album50 Best Guitar [Disc 1] - GenreClassical - KindAAC audio file - Size6449488 - Total Time193306 - Disc Number1 - Disc Count3 - Track Number6 - Track Count21 - Year1985 - Date Modified2011-10-15T14:05:15Z - Date Added2011-10-15T13:43:23Z - Bit Rate256 - Sample Rate44100 - Play Count2 - Play Date3403635515 - Play Date UTC2011-11-08T16:48:35Z - Rating20 - Rating Computed - Album Rating20 - Normalization790 - Compilation - Artwork Count1 - Persistent ID5DA9E3D025CE9A15 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%201%5D/1-06%20Bach_%20Jesu,%20Joy%20Of%20Man's%20Desiring.m4a - File Folder Count4 - Library Folder Count1 - - 9586 - - Track ID9586 - NameVivaldi: Guitar Concerto In D, RV 93 - 2. Largo - ArtistChristopher Parkening; Iona Brown: Academy Of St. Martin In The Fields - ComposerAntonio Vivaldi - Album50 Best Guitar [Disc 1] - GenreClassical - KindAAC audio file - Size9505382 - Total Time277746 - Disc Number1 - Disc Count3 - Track Number7 - Track Count21 - Year1994 - Date Modified2011-10-15T14:05:16Z - Date Added2011-10-15T13:43:37Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3403633264 - Play Date UTC2011-11-08T16:11:04Z - Rating20 - Rating Computed - Album Rating20 - Normalization427 - Compilation - Artwork Count1 - Persistent ID520775452292A7AA - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%201%5D/1-07%20Vivaldi_%20Guitar%20Concerto%20In%20D,%20RV%2093%20-%202.%20Largo.m4a - File Folder Count4 - Library Folder Count1 - - 9588 - - Track ID9588 - NameVisée: Suite #11 B Minor - ArtistManuel Barrueco - ComposerRobert De Visée - Album50 Best Guitar [Disc 1] - GenreClassical - KindAAC audio file - Size8880536 - Total Time268626 - Disc Number1 - Disc Count3 - Track Number8 - Track Count21 - Year1990 - Date Modified2011-10-15T14:05:17Z - Date Added2011-10-15T13:43:55Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3403632986 - Play Date UTC2011-11-08T16:06:26Z - Rating20 - Rating Computed - Album Rating20 - Normalization943 - Compilation - Artwork Count1 - Persistent ID4FC3EFA9A1DEB877 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%201%5D/1-08%20Vise%CC%81e_%20Suite%20%2311%20B%20Minor.m4a - File Folder Count4 - Library Folder Count1 - - 9590 - - Track ID9590 - NameCapirola: O Mia Cieca E Dura Sorte - ArtistAnthony Bailes - ComposerVincenzo Capirola - Album50 Best Guitar [Disc 1] - GenreClassical - KindAAC audio file - Size4694443 - Total Time141240 - Disc Number1 - Disc Count3 - Track Number9 - Track Count21 - Year1984 - Date Modified2011-10-15T14:05:17Z - Date Added2011-10-15T13:44:12Z - Bit Rate256 - Sample Rate44100 - Play Count2 - Play Date3403633966 - Play Date UTC2011-11-08T16:22:46Z - Skip Count1 - Skip Date2011-12-16T13:49:18Z - Rating20 - Rating Computed - Album Rating20 - Normalization1202 - Compilation - Artwork Count1 - Persistent ID4F99E79CFE9AAC07 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%201%5D/1-09%20Capirola_%20O%20Mia%20Cieca%20E%20Dura%20Sorte.m4a - File Folder Count4 - Library Folder Count1 - - 9592 - - Track ID9592 - NameScarlatti (D): Harpsichord Sonata In E, K 380 - ArtistJulian Byzantine - ComposerDomenico Scarlatti - Album50 Best Guitar [Disc 1] - GenreClassical - KindAAC audio file - Size12893034 - Total Time368746 - Disc Number1 - Disc Count3 - Track Number10 - Track Count21 - Year1985 - Date Modified2011-10-15T14:05:18Z - Date Added2011-10-15T13:44:21Z - Bit Rate256 - Sample Rate44100 - Play Count3 - Play Date3403634629 - Play Date UTC2011-11-08T16:33:49Z - Rating20 - Rating Computed - Album Rating20 - Normalization1255 - Compilation - Artwork Count1 - Persistent IDA88755F5BCE0BA54 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%201%5D/1-10%20Scarlatti%20(D)_%20Harpsichord%20Sonata%20In%20E,%20K%20380.m4a - File Folder Count4 - Library Folder Count1 - - 9594 - - Track ID9594 - NameHolborne: Countess Of Pembroke's Paradise (Pavan #15) - ArtistAnthony Bailes - ComposerAnthony Holborne - Album50 Best Guitar [Disc 1] - GenreClassical - KindAAC audio file - Size7730261 - Total Time233240 - Disc Number1 - Disc Count3 - Track Number11 - Track Count21 - Year1984 - Date Modified2011-10-15T14:05:19Z - Date Added2011-10-15T13:44:42Z - Bit Rate256 - Sample Rate44100 - Play Count4 - Play Date3403634862 - Play Date UTC2011-11-08T16:37:42Z - Skip Count1 - Skip Date2011-12-16T13:49:22Z - Rating20 - Rating Computed - Album Rating20 - Normalization1256 - Compilation - Artwork Count1 - Persistent ID9C455E36C22135EA - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%201%5D/1-11%20Holborne_%20Countess%20Of%20Pembroke's%20Paradise%20(Pavan%20%2315).m4a - File Folder Count4 - Library Folder Count1 - - 9596 - - Track ID9596 - NameHolborne: Heigh Ho Holiday (Galliard #13) - ArtistAnthony Bailes - ComposerAnthony Holborne - Album50 Best Guitar [Disc 1] - GenreClassical - KindAAC audio file - Size2821900 - Total Time86466 - Disc Number1 - Disc Count3 - Track Number12 - Track Count21 - Year1984 - Date Modified2011-10-15T14:05:19Z - Date Added2011-10-15T13:44:55Z - Bit Rate256 - Sample Rate44100 - Play Count3 - Play Date3403632276 - Play Date UTC2011-11-08T15:54:36Z - Rating20 - Rating Computed - Album Rating20 - Normalization1256 - Compilation - Artwork Count1 - Persistent ID156DE2C48BD6BA65 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%201%5D/1-12%20Holborne_%20Heigh%20Ho%20Holiday%20(Galliard%20%2313).m4a - File Folder Count4 - Library Folder Count1 - - 9598 - - Track ID9598 - NameNarváez: Variations On "Guardam Las Vacas" - ArtistOscar Ghiglia - ComposerLuis De Narváez - Album50 Best Guitar [Disc 1] - GenreClassical - KindAAC audio file - Size6282548 - Total Time185520 - Disc Number1 - Disc Count3 - Track Number13 - Track Count21 - Year1968 - Date Modified2011-10-15T14:05:20Z - Date Added2011-10-15T13:45:00Z - Bit Rate256 - Sample Rate44100 - Play Count4 - Play Date3403635700 - Play Date UTC2011-11-08T16:51:40Z - Rating20 - Rating Computed - Album Rating20 - Normalization523 - Compilation - Artwork Count1 - Persistent ID18545998B3B20EB1 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%201%5D/1-13%20Narva%CC%81ez_%20Variations%20On%20_Guardam%20Las%20Vacas_.m4a - File Folder Count4 - Library Folder Count1 - - 9600 - - Track ID9600 - NameGaultier: Piece In G For Guitar - ArtistAnthony Bailes - ComposerDenis Gaultier - Album50 Best Guitar [Disc 1] - GenreClassical - KindAAC audio file - Size12174757 - Total Time368413 - Disc Number1 - Disc Count3 - Track Number14 - Track Count21 - Year1977 - Date Modified2011-10-15T14:05:21Z - Date Added2011-10-15T13:45:10Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3403633633 - Play Date UTC2011-11-08T16:17:13Z - Rating20 - Rating Computed - Album Rating20 - Normalization1149 - Compilation - Artwork Count1 - Persistent ID3E4A86648C5D1CA4 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%201%5D/1-14%20Gaultier_%20Piece%20In%20G%20For%20Guitar.m4a - File Folder Count4 - Library Folder Count1 - - 9602 - - Track ID9602 - NamePraetorius: Terpischore - Suite In D: Courante, Ballet, Volte - ArtistChristopher Parkening; Iona Brown: Academy Of St. Martin In The Fields - ComposerMichael Praetorius - Album50 Best Guitar [Disc 1] - GenreClassical - KindAAC audio file - Size11254121 - Total Time343200 - Disc Number1 - Disc Count3 - Track Number15 - Track Count21 - Year1994 - Date Modified2011-10-15T14:05:21Z - Date Added2011-10-15T13:45:29Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3403632619 - Play Date UTC2011-11-08T16:00:19Z - Rating20 - Rating Computed - Album Rating20 - Normalization1256 - Compilation - Artwork Count1 - Persistent ID18B8ADA4459DE3BA - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%201%5D/1-15%20Praetorius_%20Terpischore%20-%20Suite%20In%20D_%20Courante,%20Ballet,%20Volte.m4a - File Folder Count4 - Library Folder Count1 - - 9604 - - Track ID9604 - NameBach: Cantata #169, BWV 169, "Gott Soll Allein Mein Herze Haben" - God Alone Should Have My Heart - ArtistChristopher Parkening; Paul Shure: Los Angeles Chamber Orchestra - ComposerJohann Sebastian Bach - Album50 Best Guitar [Disc 1] - GenreClassical - KindAAC audio file - Size6516886 - Total Time196880 - Disc Number1 - Disc Count3 - Track Number16 - Track Count21 - Year1985 - Date Modified2011-10-15T14:05:22Z - Date Added2011-10-15T13:45:45Z - Bit Rate256 - Sample Rate44100 - Play Count3 - Play Date3403635322 - Play Date UTC2011-11-08T16:45:22Z - Rating20 - Rating Computed - Album Rating20 - Normalization1256 - Compilation - Artwork Count1 - Persistent ID54927B88236C1186 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%201%5D/1-16%20Bach_%20Cantata%20%23169,%20BWV%20169,%20_Gott%20Soll%20Allein%20Mein%20Herze%20Haben_%20-%20God%20Alone%20Should%20Have%20My%20Heart.m4a - File Folder Count4 - Library Folder Count1 - - 9606 - - Track ID9606 - NameMouton: Suite In F Sharp Minor - La Belle Iris (Allemande) - ArtistAnthony Bailes - ComposerJean Mouton - Album50 Best Guitar [Disc 1] - GenreClassical - KindAAC audio file - Size8809029 - Total Time265426 - Disc Number1 - Disc Count3 - Track Number17 - Track Count21 - Year1977 - Date Modified2011-10-15T14:05:23Z - Date Added2011-10-15T13:45:55Z - Bit Rate256 - Sample Rate44100 - Play Count2 - Play Date3403632189 - Play Date UTC2011-11-08T15:53:09Z - Rating20 - Rating Computed - Album Rating20 - Normalization794 - Compilation - Artwork Count1 - Persistent ID793C1AB1693E866D - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%201%5D/1-17%20Mouton_%20Suite%20In%20F%20Sharp%20Minor%20-%20La%20Belle%20Iris%20(Allemande).m4a - File Folder Count4 - Library Folder Count1 - - 9608 - - Track ID9608 - NameVallet: Carillon De Village - ArtistAnthony Bailes - ComposerNicolas Vallet - Album50 Best Guitar [Disc 1] - GenreClassical - KindAAC audio file - Size3785370 - Total Time115773 - Disc Number1 - Disc Count3 - Track Number18 - Track Count21 - Year1984 - Date Modified2011-10-15T14:05:24Z - Date Added2011-10-15T13:46:07Z - Bit Rate256 - Sample Rate44100 - Play Count2 - Play Date3403631823 - Play Date UTC2011-11-08T15:47:03Z - Rating20 - Rating Computed - Album Rating20 - Normalization872 - Compilation - Artwork Count1 - Persistent IDD6A3A5E4B7E6A5A8 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%201%5D/1-18%20Vallet_%20Carillon%20De%20Village.m4a - File Folder Count4 - Library Folder Count1 - - 9610 - - Track ID9610 - NameScarlatti (D): Harpsichord Sonata In A, K 322 - ArtistJulian Byzantine - ComposerDomenico Scarlatti - Album50 Best Guitar [Disc 1] - GenreClassical - KindAAC audio file - Size7708787 - Total Time222026 - Disc Number1 - Disc Count3 - Track Number19 - Track Count21 - Year1985 - Date Modified2011-10-15T14:05:24Z - Date Added2011-10-15T13:46:13Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3403631553 - Play Date UTC2011-11-08T15:42:33Z - Rating20 - Rating Computed - Album Rating20 - Normalization1256 - Compilation - Artwork Count1 - Persistent IDB23501956AB063BF - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%201%5D/1-19%20Scarlatti%20(D)_%20Harpsichord%20Sonata%20In%20A,%20K%20322.m4a - File Folder Count4 - Library Folder Count1 - - 9612 - - Track ID9612 - NameWeiss: Fantasie - ArtistJulian Byzantine - ComposerSilvius Leopold Weiss - Album50 Best Guitar [Disc 1] - GenreClassical - KindAAC audio file - Size5325268 - Total Time152880 - Disc Number1 - Disc Count3 - Track Number20 - Track Count21 - Year1985 - Date Modified2011-10-15T14:05:25Z - Date Added2011-10-15T13:46:23Z - Bit Rate256 - Sample Rate44100 - Play Count2 - Play Date3403631331 - Play Date UTC2011-11-08T15:38:51Z - Rating20 - Rating Computed - Album Rating20 - Normalization1257 - Compilation - Artwork Count1 - Persistent ID08C53E8F98EED6FA - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%201%5D/1-20%20Weiss_%20Fantasie.m4a - File Folder Count4 - Library Folder Count1 - - 9614 - - Track ID9614 - NameVivaldi: Mandolin Concerto In C, RV 425 - 3. Allegro - ArtistChristopher Parkening; Iona Brown: Academy Of St. Martin In The Fields - ComposerAntonio Vivaldi - Album50 Best Guitar [Disc 1] - GenreClassical - KindAAC audio file - Size8930612 - Total Time262280 - Disc Number1 - Disc Count3 - Track Number21 - Track Count21 - Year1984 - Date Modified2011-10-15T14:05:26Z - Date Added2011-10-15T13:46:29Z - Bit Rate256 - Sample Rate44100 - Play Count2 - Play Date3403635125 - Play Date UTC2011-11-08T16:42:05Z - Skip Count1 - Skip Date2011-12-16T13:49:27Z - Rating20 - Rating Computed - Album Rating20 - Normalization1256 - Compilation - Artwork Count1 - Persistent ID407DA7D7BADEC952 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/50%20Best%20Guitar%20%5BDisc%201%5D/1-21%20Vivaldi_%20Mandolin%20Concerto%20In%20C,%20RV%20425%20-%203.%20Allegro.m4a - File Folder Count4 - Library Folder Count1 - - 10666 - - Track ID10666 - NameMysterons - ArtistPortishead - Album ArtistPortishead - ComposerGeoff Barrow - AlbumDummy - GenrePop - KindMPEG audio file - Size9903112 - Total Time306259 - Disc Number1 - Disc Count1 - Track Number1 - Track Count11 - Year1994 - Date Modified2012-08-22T03:35:25Z - Date Added2012-08-22T03:42:47Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202640613 - Play Count1 - Play Date3428494843 - Play Date UTC2012-08-22T10:10:43Z - Skip Count1 - Skip Date2014-01-12T15:49:34Z - Rating40 - Album Rating60 - Album Rating Computed - Artwork Count1 - Persistent IDF798EC4F2580E57C - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Portishead/Dummy/01%20Mysterons.mp3 - File Folder Count4 - Library Folder Count1 - - 10668 - - Track ID10668 - NameSour Times - ArtistPortishead - Album ArtistPortishead - ComposerHenry Roscoe Brooks - AlbumDummy - GenrePop - KindMPEG audio file - Size8232127 - Total Time254040 - Disc Number1 - Disc Count1 - Track Number2 - Track Count11 - Year1994 - Date Modified2012-08-22T03:36:04Z - Date Added2012-08-22T03:42:47Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202640614 - Play Count4 - Play Date3472406629 - Play Date UTC2014-01-12T15:53:49Z - Skip Count1 - Skip Date2014-05-16T15:46:00Z - Rating80 - Album Rating60 - Album Rating Computed - Artwork Count1 - Persistent ID84EFA4AA42D4DD03 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Portishead/Dummy/02%20Sour%20Times.mp3 - File Folder Count4 - Library Folder Count1 - - 10670 - - Track ID10670 - NameStrangers - ArtistPortishead - Album ArtistPortishead - ComposerGeoff Barrow - AlbumDummy - GenrePop - KindMPEG audio file - Size7720529 - Total Time238053 - Disc Number1 - Disc Count1 - Track Number3 - Track Count11 - Year1994 - Date Modified2012-08-22T03:34:23Z - Date Added2012-08-22T03:42:47Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202640615 - Play Count1 - Play Date3430642081 - Play Date UTC2012-09-16T06:38:01Z - Rating60 - Album Rating60 - Album Rating Computed - Artwork Count1 - Persistent IDCC690F8F4C0B1725 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Portishead/Dummy/03%20Strangers.mp3 - File Folder Count4 - Library Folder Count1 - - 10678 - - Track ID10678 - NameNumb - ArtistPortishead - Album ArtistPortishead - ComposerGeoff Barrow - AlbumDummy - GenrePop - KindMPEG audio file - Size7719683 - Total Time238027 - Disc Number1 - Disc Count1 - Track Number7 - Track Count11 - Year1994 - Date Modified2012-08-22T03:37:31Z - Date Added2012-08-22T03:42:47Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202640619 - Play Count1 - Play Date3430643102 - Play Date UTC2012-09-16T06:55:02Z - Rating40 - Album Rating60 - Album Rating Computed - Artwork Count1 - Persistent IDEF7F62FA2E047E63 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Portishead/Dummy/07%20Numb.mp3 - File Folder Count4 - Library Folder Count1 - - 10770 - - Track ID10770 - NameChannels And Winds - ArtistMadras/Pandit Ravi Shankar/Partha Sarathy/T Srinivasan - ComposerPandit Ravi Shankar/Philip Glass - AlbumPassages - GenreWorld Music - KindMPEG audio file - Size19259169 - Total Time480914 - Year2005 - Date Modified2012-12-14T10:35:39Z - Date Added2012-12-14T10:38:25Z - Bit Rate320 - Sample Rate44100 - Play Count1 - Play Date3485445186 - Play Date UTC2014-06-12T13:43:06Z - Rating60 - Album Rating60 - Album Rating Computed - Artwork Count1 - Persistent IDF973AB9524E0271F - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Madras_Pandit%20Ravi%20Shankar_Partha%20Sarathy_T%20Srinivasan/Passages/Channels%20And%20Winds.mp3 - File Folder Count4 - Library Folder Count1 - - 10882 - - Track ID10882 - NamePi's Lullaby - ArtistAnwar Khurshid / Aruna Kalle / Cardinal Vaughan Memorial School / Chris Bleth / Courtney Grueschow / Evergreen Club Contemporary Gamelan / Jatinder Jeetu / Jeetu Prakesh / Mychael Danna / Rajesh Srinivasan / Thomas Fetherstonhaugh / Ulhas Bapat / V Selvag - AlbumLife Of Pi - GenreClassical - KindMPEG audio file - Size8930644 - Total Time222798 - Year2012 - Date Modified2013-01-14T03:20:50Z - Date Added2013-01-14T03:21:05Z - Bit Rate320 - Sample Rate44100 - Play Count4 - Play Date3485103823 - Play Date UTC2014-06-08T14:53:43Z - Rating100 - Album Rating100 - Album Rating Computed - Artwork Count1 - Persistent ID566F6E4DE27704C5 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Anwar%20Khurshid%20_%20Aruna%20Kalle%20_%20Cardinal%20Vaughan%20Memorial%20School%20_%20Chris%20Bleth%20_%20Courtney%20Grueschow%20_%20Evergreen%20Club%20Contemporary%20Gamelan%20_%20Jatinder%20Jeetu%20_%20Jeetu%20Prakesh%20_%20Mychael%20Danna%20_%20Rajesh%20Srinivasan%20_%20Thomas%20Fetherstonhaugh%20_%20Ulhas%20Bapat%20_%20V%20Selv/Life%20Of%20Pi/Pi's%20Lullaby.mp3 - File Folder Count4 - Library Folder Count1 - - 11010 - - Track ID11010 - NameO Saiyyan - ArtistAjay-Atul/Roop Kumar Rathod - Album ArtistVarious Artists - ComposerAjay Gogavale/Atul Gogavale - AlbumAgneepath - GenreSoundtrack - KindMPEG audio file - Size11253958 - Total Time278595 - Track Number2 - Track Count6 - Year2013 - Date Modified2013-05-13T09:15:18Z - Date Added2013-05-13T09:15:27Z - Bit Rate320 - Sample Rate44100 - Play Count1 - Play Date3485104102 - Play Date UTC2014-06-08T14:58:22Z - Rating80 - Album Rating80 - Album Rating Computed - Artwork Count1 - Persistent IDABAC54629E84B525 - Track TypeFile - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Various%20Artists/Agneepath/02%20O%20Saiyyan.mp3 - File Folder Count4 - Library Folder Count1 - - 11382 - - Track ID11382 - NameUnexplainable Stories - ArtistCloud Cult - Album ArtistCloud Cult - ComposerCraig Minowa - AlbumLight Chasers - GenreAlternative - KindPurchased AAC audio file - Size9910999 - Total Time279360 - Disc Number1 - Disc Count1 - Track Number1 - Track Count16 - Year2010 - Date Modified2014-06-12T13:28:49Z - Date Added2013-12-29T13:04:48Z - Bit Rate256 - Sample Rate44100 - Release Date2010-09-14T07:00:00Z - Rating100 - Album Rating60 - Album Rating Computed - Normalization3649 - Artwork Count1 - Persistent ID0186FCBD79B199A9 - Track TypeFile - Purchased - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Cloud%20Cult/Light%20Chasers/01%20Unexplainable%20Stories.m4a - File Folder Count4 - Library Folder Count1 - - 11386 - - Track ID11386 - NameYou'll Be Bright (Invocation Part 1) - ArtistCloud Cult - Album ArtistCloud Cult - ComposerCraig Minowa - AlbumLight Chasers - GenreAlternative - KindPurchased AAC audio file - Size8307083 - Total Time236133 - Disc Number1 - Disc Count1 - Track Number3 - Track Count16 - Year2010 - Date Modified2014-06-12T13:28:08Z - Date Added2013-12-29T13:04:49Z - Bit Rate256 - Sample Rate44100 - Skip Count1 - Skip Date2014-06-12T13:28:26Z - Release Date2010-09-14T07:00:00Z - Rating60 - Album Rating60 - Album Rating Computed - Normalization5915 - Artwork Count1 - Persistent ID0186FCBD79B199AB - Track TypeFile - Purchased - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Cloud%20Cult/Light%20Chasers/03%20You'll%20Be%20Bright%20(Invocation%20Part%201).m4a - File Folder Count4 - Library Folder Count1 - - 11392 - - Track ID11392 - NameThe Exploding People - ArtistCloud Cult - Album ArtistCloud Cult - ComposerCraig Minowa - AlbumLight Chasers - GenreAlternative - KindPurchased AAC audio file - Size9625334 - Total Time268986 - Disc Number1 - Disc Count1 - Track Number6 - Track Count16 - Year2010 - Date Modified2014-06-12T13:28:25Z - Date Added2013-12-29T13:04:49Z - Bit Rate256 - Sample Rate44100 - Release Date2010-09-14T07:00:00Z - Rating40 - Album Rating60 - Album Rating Computed - Normalization2658 - Artwork Count1 - Sort NameExploding People - Persistent ID0186FCBD79B199AE - Track TypeFile - Purchased - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Cloud%20Cult/Light%20Chasers/06%20The%20Exploding%20People.m4a - File Folder Count4 - Library Folder Count1 - - 11478 - - Track ID11478 - NameSour Times - ArtistPortishead - Album ArtistPortishead - ComposerHenry Roscoe Brooks - AlbumDummy - GenrePop - KindAAC audio file - Size8850337 - Total Time254013 - Disc Number1 - Disc Count1 - Track Number2 - Track Count11 - Year1994 - Date Modified2014-05-16T15:55:42Z - Date Added2014-05-16T15:55:35Z - Bit Rate256 - Sample Rate44100 - CommentsAmazon.com Song ID: 202640614 - Play Count4 - Play Date3472406629 - Play Date UTC2014-01-12T15:53:49Z - Skip Count1 - Skip Date2014-05-16T15:46:00Z - Rating80 - Album Rating60 - Album Rating Computed - Normalization3554 - Artwork Count1 - Persistent ID927CD594CD34B1FB - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Portishead/Dummy/02%20Sour%20Times.m4a - File Folder Count4 - Library Folder Count1 - - 11496 - - Track ID11496 - NameRock On!! - ArtistFarhan Akhtar - ComposerShankar Ehsaan Loy - AlbumRock On!! - GenreWorld - KindAAC audio file - Size7793220 - Total Time235200 - Disc Number1 - Disc Count1 - Track Number3 - Track Count9 - Year2008 - Date Modified2014-05-16T15:56:54Z - Date Added2014-05-16T15:56:49Z - Bit Rate256 - Sample Rate44100 - Skip Count1 - Skip Date2014-06-12T13:28:09Z - Rating80 - Album Rating80 - Album Rating Computed - Normalization3941 - Compilation - Artwork Count1 - Persistent ID79531C51E7836618 - Track TypeFile - File Type1295270176 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Rock%20On!!/03%20Rock%20On!!%201.m4a - File Folder Count4 - Library Folder Count1 - - 11500 - - Track ID11500 - NameAcross The Universe - ArtistThe Beatles - ComposerLennon/McCartney - AlbumLet It Be - GenreRock - KindMPEG audio file - Size4606643 - Total Time228649 - Disc Number1 - Disc Count1 - Track Number3 - Track Count12 - Year1970 - Date Modified2014-05-16T15:57:13Z - Date Added2014-05-16T15:57:08Z - Bit Rate160 - Sample Rate44100 - Play Count1 - Play Date3393072210 - Play Date UTC2011-07-09T10:33:30Z - Skip Count1 - Skip Date2014-06-12T13:27:52Z - Rating60 - Album Rating60 - Album Rating Computed - Normalization1252 - Artwork Count1 - Sort ArtistBeatles - Persistent IDA9FAB94E26E005FE - Track TypeFile - File Type1297106739 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/Let%20It%20Be/03%20Across%20The%20Universe.mp3 - File Folder Count4 - Library Folder Count1 - - 11502 - - Track ID11502 - NameBlowin' In The Wind - ArtistBob Dylan - ComposerBob Dylan & B. Dylan/H. Thomas - AlbumThe Freewheelin' Bob Dylan - GenreFolk - KindMPEG audio file - Size3404516 - Total Time169090 - Disc Number1 - Disc Count1 - Track Number1 - Track Count13 - Year1963 - Date Modified2014-05-16T15:57:16Z - Date Added2014-05-16T15:57:13Z - Bit Rate160 - Sample Rate44100 - Play Count3 - Play Date3457109046 - Play Date UTC2013-07-19T14:34:06Z - Rating100 - Album Rating100 - Album Rating Computed - Normalization1610 - Artwork Count1 - Sort AlbumFreewheelin' Bob Dylan - Persistent ID695DA439CCAAB593 - Track TypeFile - File Type1297106739 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Dylan/The%20Freewheelin'%20Bob%20Dylan/01%20Blowin'%20In%20The%20Wind.mp3 - File Folder Count4 - Library Folder Count1 - - 11504 - - Track ID11504 - NameExodus - ArtistBob Marley & The Wailers - ComposerBob Marley - AlbumExodus - GenreReggae - KindMPEG audio file - Size9123848 - Total Time455497 - Disc Number1 - Disc Count1 - Track Number5 - Track Count10 - Year1977 - Date Modified2014-05-16T15:57:24Z - Date Added2014-05-16T15:57:16Z - Bit Rate160 - Sample Rate44100 - Play Count1 - Play Date3430645553 - Play Date UTC2012-09-16T07:35:53Z - Rating60 - Album Rating60 - Album Rating Computed - Normalization1162 - Artwork Count1 - Persistent IDF22C6495979C1111 - Track TypeFile - File Type1297106739 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Bob%20Marley%20&%20The%20Wailers/Exodus/05%20Exodus.mp3 - File Folder Count4 - Library Folder Count1 - - 11506 - - Track ID11506 - NameGod Shuffled His Feet - ArtistCrash Test Dummies - ComposerBrad Roberts - AlbumGod Shuffled His Feet - GenreAlternative & Punk - KindMPEG audio file - Size6256402 - Total Time310543 - Disc Number1 - Disc Count1 - Track Number1 - Track Count12 - Year1993 - Date Modified2014-05-16T15:57:30Z - Date Added2014-05-16T15:57:30Z - Bit Rate160 - Sample Rate44100 - Play Count1 - Play Date3360253487 - Play Date UTC2010-06-24T14:14:47Z - Skip Count2 - Skip Date2014-06-12T12:10:15Z - Rating80 - Album Rating80 - Album Rating Computed - Normalization3238 - Artwork Count1 - Persistent IDF44EEB8D03AEDA47 - Track TypeFile - File Type1297106739 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Crash%20Test%20Dummies/God%20Shuffled%20His%20Feet/01%20God%20Shuffled%20His%20Feet.mp3 - File Folder Count4 - Library Folder Count1 - - 11508 - - Track ID11508 - NameTears In Heaven - ArtistEric Clapton - ComposerEric Clapton & Will Jennings - AlbumUnplugged - GenreBlues - KindMPEG audio file - Size5556321 - Total Time276166 - Disc Number1 - Disc Count1 - Track Number4 - Track Count14 - Year1992 - Date Modified2014-05-16T15:57:35Z - Date Added2014-05-16T15:57:34Z - Bit Rate160 - Sample Rate44100 - Play Count1 - Play Date3441737928 - Play Date UTC2013-01-22T16:48:48Z - Skip Count1 - Skip Date2014-06-12T12:10:07Z - Rating80 - Album Rating80 - Album Rating Computed - Normalization1329 - Artwork Count1 - Persistent ID26B3CE071A763754 - Track TypeFile - File Type1297106739 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Eric%20Clapton/Unplugged/04%20Tears%20In%20Heaven.mp3 - File Folder Count4 - Library Folder Count1 - - 11510 - - Track ID11510 - NameFloe - ArtistPhilip Glass - Album ArtistPhilip Glass Ensemble: Philip Glass - ComposerPHILIP GLASS (b. 1937) - AlbumGlassworks - Expanded Edition - GenreClassical - KindMPEG audio file - Size7215809 - Total Time359575 - Disc Number1 - Disc Count1 - Track Number2 - Track Count11 - Year2003 - Date Modified2014-05-16T15:57:40Z - Date Added2014-05-16T15:57:40Z - Bit Rate160 - Sample Rate44100 - Play Count1 - Play Date3467302891 - Play Date UTC2013-11-14T14:11:31Z - Rating60 - Album Rating60 - Album Rating Computed - Normalization1162 - Compilation - Artwork Count1 - Persistent ID532195CDAD6610DC - Track TypeFile - File Type1297106739 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Glassworks%20-%20Expanded%20Edition/02%20Floe.mp3 - File Folder Count4 - Library Folder Count1 - - 11512 - - Track ID11512 - NameRubric - ArtistPhilip Glass - Album ArtistPhilip Glass Ensemble: Philip Glass - ComposerPHILIP GLASS (b. 1937) - AlbumGlassworks - Expanded Edition - GenreClassical - KindMPEG audio file - Size7317166 - Total Time364643 - Disc Number1 - Disc Count1 - Track Number4 - Track Count11 - Year2003 - Date Modified2014-05-16T15:57:46Z - Date Added2014-05-16T15:57:44Z - Bit Rate160 - Sample Rate44100 - Play Count1 - Play Date3467303716 - Play Date UTC2013-11-14T14:25:16Z - Rating40 - Album Rating60 - Album Rating Computed - Normalization1735 - Compilation - Artwork Count1 - Persistent ID04794A8300E20189 - Track TypeFile - File Type1297106739 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Glassworks%20-%20Expanded%20Edition/04%20Rubric.mp3 - File Folder Count4 - Library Folder Count1 - - 11514 - - Track ID11514 - NameOnly Time (Original Version) - ArtistEnya - Album ArtistEnya - AlbumA Day Without Rain [with booklet artwork] - GenrePop - KindMPEG audio file - Size4618203 - Total Time216189 - Disc Number1 - Disc Count1 - Track Number3 - Track Count12 - Year2005 - Date Modified2014-05-16T15:57:52Z - Date Added2014-05-16T15:57:51Z - Bit Rate160 - Sample Rate44100 - CommentsAmazon.com Song ID: 212707113 - Play Count4 - Play Date3431279277 - Play Date UTC2012-09-23T15:37:57Z - Skip Count1 - Skip Date2014-06-12T12:09:54Z - Rating80 - Album Rating80 - Album Rating Computed - Normalization1728 - Artwork Count1 - Sort AlbumDay Without Rain [with booklet artwork] - Persistent ID26534CDA432642D0 - Track TypeFile - File Type1297106739 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Enya/A%20Day%20Without%20Rain%20%5Bwith%20booklet%20artwork%5D/03%20Only%20Time%20(Original%20Version)%201.mp3 - File Folder Count4 - Library Folder Count1 - - 11516 - - Track ID11516 - NameDance Me To The End Of Love - ArtistMadeleine Peyroux - ComposerLeonard Cohen - AlbumCareless Love - GenrePop - KindMPEG audio file - Size4861858 - Total Time239725 - Disc Number1 - Disc Count1 - Track Number1 - Track Count12 - Year2004 - Date Modified2014-05-16T15:57:56Z - Date Added2014-05-16T15:57:55Z - Bit Rate160 - Sample Rate44100 - Play Count2 - Play Date3430070775 - Play Date UTC2012-09-09T15:56:15Z - Rating100 - Album Rating100 - Album Rating Computed - Normalization2595 - Artwork Count1 - Persistent ID3F643A86FD7F9A38 - Track TypeFile - File Type1297106739 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Madeleine%20Peyroux/Careless%20Love/01%20Dance%20Me%20To%20The%20End%20Of%20Love.mp3 - File Folder Count4 - Library Folder Count1 - - 11518 - - Track ID11518 - NameCome Away With Me - ArtistNorah Jones - ComposerNorah Jones - AlbumCome Away With Me - GenrePop - KindMPEG audio file - Size3992050 - Total Time198191 - Disc Number1 - Disc Count1 - Track Number5 - Track Count14 - Year2002 - Date Modified2014-05-16T15:58:00Z - Date Added2014-05-16T15:57:57Z - Bit Rate160 - Sample Rate44100 - Play Count5 - Play Date3403722850 - Play Date UTC2011-11-09T17:04:10Z - Rating100 - Album Rating100 - Album Rating Computed - Normalization1153 - Artwork Count1 - Persistent IDFD5702E16CDAE231 - Track TypeFile - File Type1297106739 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Norah%20Jones/Come%20Away%20With%20Me/05%20Come%20Away%20With%20Me.mp3 - File Folder Count4 - Library Folder Count1 - - 11520 - - Track ID11520 - NameSour Times - ArtistPortishead - Album ArtistPortishead - ComposerHenry Roscoe Brooks - AlbumDummy - GenrePop - KindMPEG audio file - Size5185883 - Total Time254066 - Disc Number1 - Disc Count1 - Track Number2 - Track Count11 - Year1994 - Date Modified2014-05-16T15:58:05Z - Date Added2014-05-16T15:58:00Z - Bit Rate160 - Sample Rate44100 - CommentsAmazon.com Song ID: 202640614 - Play Count5 - Play Date3484152913 - Play Date UTC2014-05-28T14:45:13Z - Skip Count2 - Skip Date2014-06-12T12:09:21Z - Rating80 - Album Rating60 - Album Rating Computed - Normalization3547 - Artwork Count1 - Persistent ID172A4B00CCCA117F - Track TypeFile - File Type1297106739 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Portishead/Dummy/02%20Sour%20Times%201.mp3 - File Folder Count4 - Library Folder Count1 - - 11522 - - Track ID11522 - NameParanoid Android - ArtistRadiohead - ComposerThom Yorke, Jonny Greenwood, Phil Selway, Ed O'Brien, Colin Greenwood - AlbumOK Computer - GenreAlternative & Punk - KindMPEG audio file - Size7709786 - Total Time383555 - Disc Number1 - Disc Count1 - Track Number2 - Track Count12 - Year1997 - Date Modified2014-05-16T15:58:11Z - Date Added2014-05-16T15:58:05Z - Bit Rate160 - Sample Rate44100 - Play Count1 - Play Date3484152659 - Play Date UTC2014-05-28T14:40:59Z - Rating80 - Album Rating60 - Album Rating Computed - Normalization3190 - Artwork Count1 - Persistent ID510EB20CABFC8793 - Track TypeFile - File Type1297106739 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Radiohead/OK%20Computer/02%20Paranoid%20Android.mp3 - File Folder Count4 - Library Folder Count1 - - 11524 - - Track ID11524 - NameStairway To Heaven - ArtistRodrigo Y Gabriela - Album ArtistRodrigo y Gabriela - ComposerJimmy Page.Robert Plant - AlbumRodrigo Y Gabriela - GenreJazz - KindMPEG audio file - Size5748606 - Total Time284264 - Disc Number1 - Disc Count1 - Track Number6 - Track Count9 - Year2006 - Date Modified2014-05-16T15:58:16Z - Date Added2014-05-16T15:58:11Z - Bit Rate160 - Sample Rate44100 - Play Count12 - Play Date3463328692 - Play Date UTC2013-09-29T14:14:52Z - Skip Count1 - Skip Date2014-06-12T12:09:34Z - Rating100 - Album Rating100 - Album Rating Computed - Normalization1690 - Artwork Count1 - Persistent ID8DF4FFBDF2ABADFE - Track TypeFile - File Type1297106739 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Rodrigo%20y%20Gabriela/Rodrigo%20Y%20Gabriela/06%20Stairway%20To%20Heaven.mp3 - File Folder Count4 - Library Folder Count1 - - 11526 - - Track ID11526 - NameKiss From A Rose - ArtistSeal - ComposerSeal - AlbumSeal - GenrePop - KindMPEG audio file - Size5779661 - Total Time288026 - Disc Number1 - Disc Count1 - Track Number6 - Track Count11 - Year1994 - Date Modified2014-05-16T15:58:20Z - Date Added2014-05-16T15:58:16Z - Bit Rate160 - Sample Rate44100 - Play Count3 - Play Date3484153616 - Play Date UTC2014-05-28T14:56:56Z - Rating60 - Album Rating60 - Album Rating Computed - Normalization2746 - Artwork Count1 - Persistent IDFB0DD24DC3802EAE - Track TypeFile - File Type1297106739 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Seal/Seal/06%20Kiss%20From%20A%20Rose.mp3 - File Folder Count4 - Library Folder Count1 - - 11528 - - Track ID11528 - NameThe Girl From Ipanema - ArtistStan Getz & João Gilberto - ComposerAntonio Carlos Brasiliero de Almeida Jobim, Marcus Vinícius da Cruz de Melo Moraes, Norman Gimbel - AlbumGetz/Gilberto - GenreLatin - KindMPEG audio file - Size6536352 - Total Time324649 - Disc Number1 - Disc Count1 - Track Number1 - Track Count10 - Year1989 - Date Modified2014-05-16T15:58:25Z - Date Added2014-05-16T15:58:21Z - Bit Rate160 - Sample Rate44100 - Play Count5 - Play Date3483884742 - Play Date UTC2014-05-25T12:15:42Z - Rating80 - Album Rating80 - Album Rating Computed - Normalization882 - Artwork Count1 - Sort NameGirl From Ipanema - Persistent ID8C88EBD27474B166 - Track TypeFile - File Type1297106739 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Stan%20Getz%20&%20Joa%CC%83o%20Gilberto/Getz_Gilberto/01%20The%20Girl%20From%20Ipanema.mp3 - File Folder Count4 - Library Folder Count1 - - 11530 - - Track ID11530 - NameDesert Rose - ArtistSting - ComposerSting, Kipper - AlbumBrand New Day - GenreRock - KindMPEG audio file - Size5737967 - Total Time285936 - Disc Number1 - Disc Count1 - Track Number2 - Track Count10 - Year2000 - Date Modified2014-05-16T15:58:29Z - Date Added2014-05-16T15:58:25Z - Bit Rate160 - Sample Rate44100 - Play Count1 - Play Date3483884409 - Play Date UTC2014-05-25T12:10:09Z - Skip Count1 - Skip Date2013-01-20T15:54:34Z - Rating60 - Album Rating60 - Album Rating Computed - Normalization3471 - Artwork Count1 - Persistent ID05423A25A9F92D88 - Track TypeFile - File Type1297106739 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Sting/Brand%20New%20Day/02%20Desert%20Rose.mp3 - File Folder Count4 - Library Folder Count1 - - 11532 - - Track ID11532 - NameA Thousand Years - ArtistSting - ComposerSting, Kipper - AlbumBrand New Day - GenreRock - KindMPEG audio file - Size7181499 - Total Time358112 - Disc Number1 - Disc Count1 - Track Number1 - Track Count10 - Year2000 - Date Modified2014-05-16T15:58:34Z - Date Added2014-05-16T15:58:29Z - Bit Rate160 - Sample Rate44100 - Play Count1 - Play Date3441561867 - Play Date UTC2013-01-20T15:54:27Z - Rating60 - Album Rating60 - Album Rating Computed - Normalization1457 - Artwork Count1 - Sort NameThousand Years - Persistent ID5372DA73C0200FBE - Track TypeFile - File Type1297106739 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Sting/Brand%20New%20Day/01%20A%20Thousand%20Years.mp3 - File Folder Count4 - Library Folder Count1 - - 11534 - - Track ID11534 - NameTalkin' Bout A Revolution - ArtistTracy Chapman - AlbumTracy Chapman - GenreFolk - KindMPEG audio file - Size3242906 - Total Time160391 - Disc Number1 - Disc Count1 - Track Number1 - Track Count11 - Year1982 - Date Modified2014-05-16T15:58:37Z - Date Added2014-05-16T15:58:35Z - Bit Rate160 - Sample Rate44100 - Play Count3 - Play Date3456245680 - Play Date UTC2013-07-09T14:44:40Z - Rating100 - Album Rating80 - Album Rating Computed - Normalization1037 - Artwork Count1 - Persistent ID87009FCFDBB4F38B - Track TypeFile - File Type1297106739 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Tracy%20Chapman/Tracy%20Chapman/01%20Talkin'%20Bout%20A%20Revolution.mp3 - File Folder Count4 - Library Folder Count1 - - 11536 - - Track ID11536 - NameSocha Hai - ArtistFarhan Akhtar - ComposerShankar Ehsaan Loy - AlbumRock On!! - GenreWorld - KindMPEG audio file - Size5140123 - Total Time251611 - Disc Number1 - Disc Count1 - Track Number1 - Track Count9 - Year2008 - Date Modified2014-05-16T15:58:41Z - Date Added2014-05-16T15:58:37Z - Bit Rate160 - Sample Rate44100 - Skip Count1 - Skip Date2014-06-02T14:35:45Z - Rating60 - Album Rating80 - Album Rating Computed - Normalization3559 - Compilation - Artwork Count1 - Persistent IDD38F3E2983EE6D81 - Track TypeFile - File Type1297106739 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Rock%20On!!/01%20Socha%20Hai.mp3 - File Folder Count4 - Library Folder Count1 - - 11538 - - Track ID11538 - NameRock On!! - ArtistFarhan Akhtar - ComposerShankar Ehsaan Loy - AlbumRock On!! - GenreWorld - KindMPEG audio file - Size4813070 - Total Time235258 - Disc Number1 - Disc Count1 - Track Number3 - Track Count9 - Year2008 - Date Modified2014-05-16T15:58:44Z - Date Added2014-05-16T15:58:41Z - Bit Rate160 - Sample Rate44100 - Rating80 - Album Rating80 - Album Rating Computed - Normalization3935 - Compilation - Artwork Count1 - Persistent IDB24EE14D61D28799 - Track TypeFile - File Type1297106739 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Rock%20On!!/03%20Rock%20On!!.mp3 - File Folder Count4 - Library Folder Count1 - - 11540 - - Track ID11540 - NameDown To The River To Pray - ArtistAlison Krauss - ComposerJimmie Rodgers/Traditional, arr. by Allison Krauss - AlbumO Brother, Where Art Thou? - GenreSoundtrack - KindMPEG audio file - Size3539467 - Total Time176039 - Disc Number1 - Disc Count1 - Track Number4 - Track Count19 - Year2000 - Date Modified2014-05-16T15:58:47Z - Date Added2014-05-16T15:58:44Z - Bit Rate160 - Sample Rate44100 - Play Count5 - Play Date3484232059 - Play Date UTC2014-05-29T12:44:19Z - Rating100 - Album Rating100 - Album Rating Computed - Normalization1009 - Compilation - Artwork Count1 - Persistent IDCB3B27511FBE5A3C - Track TypeFile - File Type1297106739 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/O%20Brother,%20Where%20Art%20Thou_/04%20Down%20To%20The%20River%20To%20Pray.mp3 - File Folder Count4 - Library Folder Count1 - - 11542 - - Track ID11542 - NameOne - ArtistAimee Mann - ComposerHarry Nilsson - AlbumMagnolia - GenreFolk - KindMPEG audio file - Size3505476 - Total Time173453 - Disc Number1 - Disc Count1 - Track Number1 - Track Count13 - Year1999 - Date Modified2014-05-16T15:58:49Z - Date Added2014-05-16T15:58:47Z - Bit Rate160 - Sample Rate44100 - Play Count6 - Play Date3483120464 - Play Date UTC2014-05-16T15:57:44Z - Skip Count1 - Skip Date2013-01-22T16:38:41Z - Rating80 - Album Rating80 - Album Rating Computed - Normalization1259 - Compilation - Artwork Count1 - Persistent IDE6CCEE7DE9BC6B3E - Track TypeFile - File Type1297106739 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Compilations/Magnolia/01%20One.mp3 - File Folder Count4 - Library Folder Count1 - - 11544 - - Track ID11544 - NameYesterday - ArtistThe Beatles - ComposerJohn Lennon & Paul McCartney - Album1 - GenrePop - KindMPEG audio file - Size2566173 - Total Time125466 - Disc Number1 - Disc Count1 - Track Number11 - Track Count27 - Year1965 - BPM100 - Date Modified2014-05-18T01:27:24Z - Date Added2014-05-18T01:27:21Z - Bit Rate160 - Sample Rate44100 - Skip Count1 - Skip Date2014-05-24T05:08:40Z - Rating100 - Album Rating100 - Album Rating Computed - Normalization1747 - Artwork Count1 - Sort ArtistBeatles - Persistent IDCEDA02F0D43BB081 - Track TypeFile - File Type1297106739 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/The%20Beatles/1/11%20Yesterday.mp3 - File Folder Count4 - Library Folder Count1 - - 31171 - - Track ID31171 - NameIntroduction By H.H.Sri Sri Ravi Shankar - ArtistSri Sri Ravi Shankar - ComposerThe Art Of Living - AlbumHari Om - GenreReligious - KindMPEG audio file - Size6977484 - Total Time348760 - Disc Number1 - Disc Count1 - Track Number1 - Track Count4 - Year2008 - Date Modified2014-06-12T08:25:52Z - Date Added2014-06-12T08:24:52Z - Bit Rate160 - Sample Rate44100 - Rating20 - Album Rating20 - Album Rating Computed - Normalization649 - Sort ComposerArt Of Living - Persistent IDC40141E8164F81C8 - Track TypeFile - File Type1297106739 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Sri%20Sri%20Ravi%20Shankar/Hari%20Om/01%20Introduction%20By%20H.H.Sri%20Sri%20Ravi%20Shankar.mp3 - File Folder Count4 - Library Folder Count1 - - 31180 - - Track ID31180 - NameHari Om Meditation (Hindi) - ArtistSri Sri Ravi Shankar - ComposerThe Art Of Living - AlbumHari Om - GenreReligious - KindMPEG audio file - Size27084429 - Total Time1354109 - Disc Number1 - Disc Count1 - Track Number2 - Track Count4 - Date Modified2014-06-12T08:28:53Z - Date Added2014-06-12T08:25:54Z - Bit Rate160 - Sample Rate44100 - Rating20 - Album Rating20 - Album Rating Computed - Normalization1070 - Sort ComposerArt Of Living - Persistent IDB1342FA45A72E6DC - Track TypeFile - File Type1297106739 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Sri%20Sri%20Ravi%20Shankar/Hari%20Om/02%20Hari%20Om%20Meditation%20(Hindi).mp3 - File Folder Count4 - Library Folder Count1 - - 31189 - - Track ID31189 - NameIntroduction By H.H.Sri Sri Ravi Shankar (Hindi) - ArtistSri Sri Ravi Shankar - ComposerThe Art Of Living - AlbumHari Om - GenreReligious - KindMPEG audio file - Size5164060 - Total Time258089 - Disc Number1 - Disc Count1 - Track Number3 - Track Count4 - Date Modified2014-06-12T08:29:23Z - Date Added2014-06-12T08:28:55Z - Bit Rate160 - Sample Rate44100 - Rating20 - Album Rating20 - Album Rating Computed - Normalization662 - Sort ComposerArt Of Living - Persistent ID7146C69750F07F51 - Track TypeFile - File Type1297106739 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Sri%20Sri%20Ravi%20Shankar/Hari%20Om/03%20Introduction%20By%20H.H.Sri%20Sri%20Ravi%20Shankar%20(Hindi).mp3 - File Folder Count4 - Library Folder Count1 - - 31197 - - Track ID31197 - NameHari Om Meditation (English Version) - ArtistSri Sri Ravi Shankar - ComposerThe Art Of Living - AlbumHari Om - GenreReligious - KindMPEG audio file - Size26836799 - Total Time1341727 - Disc Number1 - Disc Count1 - Track Number4 - Track Count4 - Date Modified2014-06-12T08:31:44Z - Date Added2014-06-12T08:29:24Z - Bit Rate160 - Sample Rate44100 - Rating20 - Album Rating20 - Album Rating Computed - Normalization1288 - Sort ComposerArt Of Living - Persistent ID135CBA55A131343A - Track TypeFile - File Type1297106739 - Locationfile://localhost/Users/mahesh/Music/iTunes/iTunes%20Music/Sri%20Sri%20Ravi%20Shankar/Hari%20Om/04%20Hari%20Om%20Meditation%20(English%20Version).mp3 - File Folder Count4 - Library Folder Count1 - - - Playlists - - - Namerating - Playlist ID31781 - Playlist Persistent ID492BBB5307569327 - All Items - Playlist Items - - - Track ID11540 - - - Track ID10882 - - - Track ID11544 - - - Track ID11502 - - - Track ID11382 - - - Track ID11516 - - - Track ID11518 - - - Track ID6776 - - - Track ID3026 - - - Track ID2994 - - - Track ID11524 - - - Track ID11534 - - - Track ID11542 - - - Track ID11010 - - - Track ID6400 - - - Track ID11506 - - - Track ID11514 - - - Track ID11508 - - - Track ID11496 - - - Track ID11538 - - - Track ID3020 - - - Track ID3028 - - - Track ID10668 - - - Track ID11478 - - - Track ID11520 - - - Track ID5136 - - - Track ID5138 - - - Track ID5140 - - - Track ID2938 - - - Track ID2940 - - - Track ID6668 - - - Track ID11522 - - - Track ID11528 - - - Track ID11500 - - - Track ID11504 - - - Track ID11386 - - - Track ID11536 - - - Track ID4232 - - - Track ID4234 - - - Track ID4236 - - - Track ID4238 - - - Track ID4240 - - - Track ID4242 - - - Track ID4244 - - - Track ID4246 - - - Track ID4248 - - - Track ID4250 - - - Track ID4252 - - - Track ID4254 - - - Track ID4256 - - - Track ID4258 - - - Track ID4260 - - - Track ID4262 - - - Track ID4264 - - - Track ID4266 - - - Track ID4268 - - - Track ID4270 - - - Track ID4272 - - - Track ID4274 - - - Track ID3982 - - - Track ID6804 - - - Track ID10770 - - - Track ID11510 - - - Track ID3024 - - - Track ID10670 - - - Track ID2970 - - - Track ID2854 - - - Track ID2856 - - - Track ID11526 - - - Track ID11532 - - - Track ID11530 - - - Track ID2138 - - - Track ID11392 - - - Track ID4534 - - - Track ID4536 - - - Track ID4538 - - - Track ID4540 - - - Track ID4542 - - - Track ID4544 - - - Track ID4546 - - - Track ID4548 - - - Track ID4550 - - - Track ID4552 - - - Track ID4554 - - - Track ID4556 - - - Track ID11512 - - - Track ID3022 - - - Track ID10666 - - - Track ID10678 - - - Track ID2944 - - - Track ID9582 - - - Track ID9590 - - - Track ID9594 - - - Track ID9596 - - - Track ID9600 - - - Track ID9606 - - - Track ID9608 - - - Track ID9576 - - - Track ID9586 - - - Track ID9602 - - - Track ID9614 - - - Track ID9604 - - - Track ID9584 - - - Track ID9592 - - - Track ID9610 - - - Track ID9612 - - - Track ID9578 - - - Track ID9580 - - - Track ID9588 - - - Track ID9598 - - - Track ID9574 - - - Track ID31171 - - - Track ID31180 - - - Track ID31189 - - - Track ID31197 - - - - - -